2008-03-01 Marek Habersack <mhabersack@novell.com>
[mono.git] / mono / mini / aot-compiler.c
1 /*
2  * aot.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  */
10
11 #include "config.h"
12 #include <sys/types.h>
13 #ifdef HAVE_UNISTD_H
14 #include <unistd.h>
15 #endif
16 #include <fcntl.h>
17 #include <string.h>
18 #ifndef PLATFORM_WIN32
19 #include <sys/mman.h>
20 #else
21 #include <winsock2.h>
22 #include <windows.h>
23 #endif
24
25 #include <errno.h>
26 #include <sys/stat.h>
27 #include <limits.h>    /* for PAGESIZE */
28 #ifndef PAGESIZE
29 #define PAGESIZE 4096
30 #endif
31
32 #include <mono/metadata/tabledefs.h>
33 #include <mono/metadata/class.h>
34 #include <mono/metadata/object.h>
35 #include <mono/metadata/tokentype.h>
36 #include <mono/metadata/appdomain.h>
37 #include <mono/metadata/debug-helpers.h>
38 #include <mono/metadata/assembly.h>
39 #include <mono/metadata/metadata-internals.h>
40 #include <mono/metadata/marshal.h>
41 #include <mono/metadata/gc-internal.h>
42 #include <mono/utils/mono-logger.h>
43 #include "mono/utils/mono-compiler.h"
44
45 #include "mini.h"
46 #include "version.h"
47
48 #ifndef DISABLE_AOT
49
50 #ifdef PLATFORM_WIN32
51 #define SHARED_EXT ".dll"
52 #elif defined(__ppc__) && defined(__MACH__)
53 #define SHARED_EXT ".dylib"
54 #else
55 #define SHARED_EXT ".so"
56 #endif
57
58 #if defined(sparc) || defined(__ppc__)
59 #define AS_STRING_DIRECTIVE ".asciz"
60 #else
61 /* GNU as */
62 #define AS_STRING_DIRECTIVE ".string"
63 #endif
64
65 #define ALIGN_PTR_TO(ptr,align) (gpointer)((((gssize)(ptr)) + (align - 1)) & (~(align - 1)))
66 #define ROUND_DOWN(VALUE,SIZE)  ((VALUE) & ~((SIZE) - 1))
67
68 typedef struct MonoAotOptions {
69         char *outfile;
70         gboolean save_temps;
71         gboolean write_symbols;
72         gboolean metadata_only;
73         gboolean bind_to_runtime_version;
74 } MonoAotOptions;
75
76 typedef struct MonoAotStats {
77         int ccount, mcount, lmfcount, abscount, wrappercount, gcount, ocount, genericcount;
78         int code_size, info_size, ex_info_size, got_size, class_info_size, got_info_size, got_info_offsets_size;
79         int methods_without_got_slots, direct_calls, all_calls;
80         int got_slots;
81         int got_slot_types [MONO_PATCH_INFO_NONE];
82 } MonoAotStats;
83
84 /*#define USE_ELF_WRITER 1*/
85
86 #if defined(USE_ELF_WRITER)
87 #define USE_BIN_WRITER 1
88 #endif
89
90 #ifdef USE_BIN_WRITER
91
92 typedef struct _BinSymbol BinSymbol;
93 typedef struct _BinReloc BinReloc;
94 typedef struct _BinSection BinSection;
95
96 #else
97
98 /* emit mode */
99 enum {
100         EMIT_NONE,
101         EMIT_BYTE,
102         EMIT_WORD,
103         EMIT_LONG
104 };
105
106 #endif
107
108 typedef struct MonoAotCompile {
109         MonoImage *image;
110         MonoCompile **cfgs;
111         GHashTable *patch_to_plt_offset;
112         GHashTable **patch_to_plt_offset_wrapper;
113         GHashTable *plt_offset_to_patch;
114         GHashTable *patch_to_shared_got_offset;
115         GPtrArray *shared_patches;
116         GHashTable *image_hash;
117         GHashTable *method_to_cfg;
118         GHashTable *wrapper_to_method;
119         GHashTable *token_info_hash;
120         GPtrArray *image_table;
121         GList *method_order;
122         guint32 got_offset, plt_offset;
123         guint32 *method_got_offsets;
124         gboolean *has_got_slots;
125         MonoAotOptions aot_opts;
126         guint32 nmethods;
127         guint32 opts;
128         MonoMemPool *mempool;
129         MonoAotStats stats;
130 #ifdef USE_BIN_WRITER
131         BinSymbol *symbols;
132         BinSection *sections;
133         BinSection *cur_section;
134         BinReloc *relocations;
135         GHashTable *labels;
136         int num_relocs;
137 #else
138         FILE *fp;
139         char *tmpfname;
140         int mode; /* emit mode */
141         int col_count; /* bytes emitted per .byte line */
142 #endif
143 } MonoAotCompile;
144
145 #ifdef HAVE_ARRAY_ELEM_INIT
146 #define MSGSTRFIELD(line) MSGSTRFIELD1(line)
147 #define MSGSTRFIELD1(line) str##line
148 static const struct msgstr_t {
149 #define PATCH_INFO(a,b) char MSGSTRFIELD(__LINE__) [sizeof (b)];
150 #include "patch-info.h"
151 #undef PATCH_INFO
152 } opstr = {
153 #define PATCH_INFO(a,b) b,
154 #include "patch-info.h"
155 #undef PATCH_INFO
156 };
157 static const gint16 opidx [] = {
158 #define PATCH_INFO(a,b) [MONO_PATCH_INFO_ ## a] = offsetof (struct msgstr_t, MSGSTRFIELD(__LINE__)),
159 #include "patch-info.h"
160 #undef PATCH_INFO
161 };
162
163 static const char*
164 get_patch_name (int info)
165 {
166         return (const char*)&opstr + opidx [info];
167 }
168
169 #else
170 #define PATCH_INFO(a,b) b,
171 static const char* const
172 patch_types [MONO_PATCH_INFO_NUM + 1] = {
173 #include "patch-info.h"
174         NULL
175 };
176
177 static const char*
178 get_patch_name (int info)
179 {
180         return patch_types [info];
181 }
182
183 #endif
184
185 static gboolean 
186 is_got_patch (MonoJumpInfoType patch_type)
187 {
188         return TRUE;
189 }
190
191 static G_GNUC_UNUSED int
192 ilog2(register int value)
193 {
194         int count = -1;
195         while (value & ~0xf) count += 4, value >>= 4;
196         while (value) count++, value >>= 1;
197         return count;
198 }
199
200 #ifdef USE_BIN_WRITER
201
202 typedef struct _BinLabel BinLabel;
203 struct _BinLabel {
204         char *name;
205         BinSection *section;
206         int offset;
207 };
208
209 struct _BinReloc {
210         BinReloc *next;
211         char *val1;
212         char *val2;
213         BinSection *val2_section;
214         int val2_offset;
215         int offset;
216         BinSection *section;
217         int section_offset;
218 };
219
220 struct _BinSymbol {
221         BinSymbol *next;
222         char *name;
223         BinSection *section;
224         int offset;
225         gboolean is_function;
226         gboolean is_global;
227 };
228
229 struct _BinSection {
230         BinSection *next;
231         BinSection *parent;
232         char *name;
233         int subsection;
234         guint8 *data;
235         int data_len;
236         int cur_offset;
237         int file_offset;
238         int virt_offset;
239         int shidx;
240 };
241
242 static void
243 emit_start (MonoAotCompile *acfg)
244 {
245         acfg->labels = g_hash_table_new (g_str_hash, g_str_equal);
246 }
247
248 static void
249 emit_section_change (MonoAotCompile *acfg, const char *section_name, int subsection_index)
250 {
251         BinSection *section;
252
253         if (acfg->cur_section && acfg->cur_section->subsection == subsection_index
254                         && strcmp (acfg->cur_section->name, section_name) == 0)
255                 return;
256         for (section = acfg->sections; section; section = section->next) {
257                 if (section->subsection == subsection_index && strcmp (section->name, section_name) == 0) {
258                         acfg->cur_section = section;
259                         return;
260                 }
261         }
262         if (!section) {
263                 section = g_new0 (BinSection, 1);
264                 section->name = g_strdup (section_name);
265                 section->subsection = subsection_index;
266                 section->next = acfg->sections;
267                 acfg->sections = section;
268                 acfg->cur_section = section;
269         }
270 }
271
272 static void
273 emit_global (MonoAotCompile *acfg, const char *name, gboolean func)
274 {
275         BinSymbol *symbol = g_new0 (BinSymbol, 1);
276         symbol->name = g_strdup (name);
277         symbol->is_function = func;
278         symbol->is_global = TRUE;
279         symbol->section = acfg->cur_section;
280         /* FIXME: we align after this call... */
281         symbol->offset = symbol->section->cur_offset;
282         symbol->next = acfg->symbols;
283         acfg->symbols = symbol;
284 }
285
286 static void
287 emit_label (MonoAotCompile *acfg, const char *name)
288 {
289         BinLabel *label = g_new0 (BinLabel, 1);
290         label->name = g_strdup (name);
291         label->section = acfg->cur_section;
292         label->offset = acfg->cur_section->cur_offset;
293         g_hash_table_insert (acfg->labels, label->name, label);
294 }
295
296 static void
297 emit_ensure_buffer (BinSection *section, int size)
298 {
299         int new_offset = section->cur_offset + size;
300         if (new_offset >= section->data_len) {
301                 int new_size = section->data_len? section->data_len * 2: 256;
302                 guint8 *data;
303                 while (new_size <= new_offset)
304                         new_size *= 2;
305                 data = g_malloc0 (new_size);
306                 memcpy (data, section->data, section->data_len);
307                 g_free (section->data);
308                 section->data = data;
309                 section->data_len = new_size;
310         }
311 }
312
313 static void
314 emit_bytes (MonoAotCompile *acfg, const guint8* buf, int size)
315 {
316         emit_ensure_buffer (acfg->cur_section, size);
317         memcpy (acfg->cur_section->data + acfg->cur_section->cur_offset, buf, size);
318         acfg->cur_section->cur_offset += size;
319 }
320
321 static void
322 emit_string (MonoAotCompile *acfg, const char *value)
323 {
324         int size = strlen (value) + 1;
325         emit_bytes (acfg, (const guint8*)value, size);
326 }
327
328 static void
329 emit_line (MonoAotCompile *acfg)
330 {
331         /* Nothing to do in binary writer */
332 }
333
334 static void
335 emit_string_symbol (MonoAotCompile *acfg, const char *name, const char *value)
336 {
337         emit_section_change (acfg, ".text", 1);
338         emit_global (acfg, name, FALSE);
339         emit_label (acfg, name);
340         emit_string (acfg, value);
341 }
342
343 static void 
344 emit_alignment (MonoAotCompile *acfg, int size)
345 {
346         int offset = acfg->cur_section->cur_offset;
347         int add;
348         offset += (size - 1);
349         offset &= ~(size - 1);
350         add = offset - acfg->cur_section->cur_offset;
351         if (add) {
352                 emit_ensure_buffer (acfg->cur_section, add);
353                 acfg->cur_section->cur_offset += add;
354         }
355 }
356
357 static void
358 emit_pointer (MonoAotCompile *acfg, const char *target)
359 {
360         BinReloc *reloc;
361         emit_alignment (acfg, sizeof (gpointer));
362         reloc = g_new0 (BinReloc, 1);
363         reloc->val1 = g_strdup (target);
364         reloc->section = acfg->cur_section;
365         reloc->section_offset = acfg->cur_section->cur_offset;
366         reloc->next = acfg->relocations;
367         acfg->relocations = reloc;
368         if (strcmp (reloc->section->name, ".data") == 0) {
369                 acfg->num_relocs++;
370                 g_print ("reloc: %s at %d\n", target, acfg->cur_section->cur_offset);
371         }
372         acfg->cur_section->cur_offset += sizeof (gpointer);
373 }
374
375 static void
376 emit_int16 (MonoAotCompile *acfg, int value)
377 {
378         guint8 *data;
379         emit_ensure_buffer (acfg->cur_section, 2);
380         data = acfg->cur_section->data + acfg->cur_section->cur_offset;
381         acfg->cur_section->cur_offset += 2;
382         /* FIXME: little endian */
383         data [0] = value;
384         data [1] = value >> 8;
385 }
386
387 static void
388 emit_int32 (MonoAotCompile *acfg, int value)
389 {
390         guint8 *data;
391         emit_ensure_buffer (acfg->cur_section, 4);
392         data = acfg->cur_section->data + acfg->cur_section->cur_offset;
393         acfg->cur_section->cur_offset += 4;
394         /* FIXME: little endian */
395         data [0] = value;
396         data [1] = value >> 8;
397         data [2] = value >> 16;
398         data [3] = value >> 24;
399 }
400
401 static void
402 emit_symbol_diff (MonoAotCompile *acfg, const char *end, const char* start, int offset)
403 {
404         BinReloc *reloc;
405         reloc = g_new0 (BinReloc, 1);
406         reloc->val1 = g_strdup (end);
407         if (strcmp (start, ".") == 0) {
408                 reloc->val2_section = acfg->cur_section;
409                 reloc->val2_offset = acfg->cur_section->cur_offset;
410         } else {
411                 reloc->val2 = g_strdup (start);
412         }
413         reloc->offset = offset;
414         reloc->section = acfg->cur_section;
415         reloc->section_offset = acfg->cur_section->cur_offset;
416         reloc->next = acfg->relocations;
417         acfg->relocations = reloc;
418         acfg->cur_section->cur_offset += 4;
419         /*if (strcmp (reloc->section->name, ".data") == 0) {
420                 acfg->num_relocs++;
421                 g_print ("reloc: %s - %s + %d at %d\n", end, start, offset, acfg->cur_section->cur_offset - 4);
422         }*/
423 }
424
425 static void
426 emit_zero_bytes (MonoAotCompile *acfg, int num)
427 {
428         emit_ensure_buffer (acfg->cur_section, num);
429         acfg->cur_section->cur_offset += num;
430 }
431
432 #ifdef USE_ELF_WRITER
433 enum {
434         SYM_LOCAL = 0 << 4,
435         SYM_GLOBAL = 1 << 4,
436         SYM_OBJECT = 1,
437         SYM_FUNC = 2,
438         SYM_SECTION = 3
439 };
440
441 enum {
442         SECT_NULL,
443         SECT_HASH,
444         SECT_DYNSYM,
445         SECT_DYNSTR,
446         SECT_REL_DYN,
447         SECT_TEXT,
448         SECT_DYNAMIC,
449         SECT_GOT_PLT,
450         SECT_DATA,
451         SECT_BSS,
452         SECT_SHSTRTAB,
453         SECT_SYMTAB,
454         SECT_STRTAB,
455         SECT_NUM
456 };
457
458 enum {
459         DYN_HASH = 4,
460         DYN_STRTAB = 5,
461         DYN_SYMTAB = 6,
462         DYN_STRSZ = 10,
463         DYN_SYMENT = 11,
464         DYN_REL = 17,
465         DYN_RELSZ = 18,
466         DYN_RELENT = 19,
467         DYN_RELCOUNT = 0x6ffffffa
468 };
469
470 static const char* section_names [] = {
471         "",
472         ".hash",
473         ".dynsym",
474         ".dynstr",
475         ".rel.dyn",
476         ".text",
477         ".dynamic",
478         ".got.plt",
479         ".data",
480         ".bss",
481         ".shstrtab",
482         ".symtab",
483         ".strtab"
484 };
485
486 static const guint8 section_type [] = {
487         0, 5, 11, 3, 9, 1,
488         6, 1, 1, 8, 3, 2, 3
489 };
490
491 static const guint8 section_link [] = {
492         0, 2, 3, 0, 2, 0, 3, 0, 0, 0, 0, 12, 0
493 };
494
495 static const guint8 section_esize [] = {
496         0, 4, 16, 0, 8, 0, 8, 4, 0, 0, 0, 16, 0
497 };
498
499 static const guint8 section_flags [] = {
500         0, 2, 2, 2, 2, 6, 3, 3, 3, 3, 0, 0, 0
501 };
502
503 static const guint16 section_align [] = {
504         0, 4, 4, 1, 4, 4096, 4, 4, 8, 8, 1, 4, 1
505 };
506
507 struct ElfHeader {
508         guint8  e_ident [16];
509         guint16 e_type;
510         guint16 e_machine;
511         guint32 e_version;
512         gsize   e_entry;
513         gsize   e_phoff;
514         gsize   e_shoff;
515         guint32 e_flags;
516         guint16 e_ehsize;
517         guint16 e_phentsize;
518         guint16 e_phnum;
519         guint16 e_shentsize;
520         guint16 e_shnum;
521         guint16 e_shstrndx;
522 };
523
524 struct ElfSectHeader {
525         guint32 sh_name;
526         guint32 sh_type;
527         gsize   sh_flags;
528         gsize   sh_addr;
529         gsize   sh_offset;
530         gsize   sh_size;
531         guint32 sh_link;
532         guint32 sh_info;
533         gsize   sh_addralign;
534         gsize   sh_entsize;
535 };
536
537 #if SIZEOF_VOID_P == 4
538
539 struct ElfProgHeader {
540         guint32 p_type;
541         guint32 p_offset;
542         guint32 p_vaddr;
543         guint32 p_paddr;
544         guint32 p_filesz;
545         guint32 p_memsz;
546         guint32 p_flags;
547         guint32 p_align;
548 };
549
550 typedef struct {
551         guint32 st_name;
552         guint32 st_value;
553         guint32 st_size;
554         guint8  st_info;
555         guint8  st_other;
556         guint16 st_shndx;
557 } ElfSymbol;
558
559 typedef struct {
560         guint32 addr;
561         guint32 value;
562 } ElfReloc;
563
564 typedef struct {
565         guint32 d_tag;
566         guint32 d_val;
567 } ElfDynamic;
568
569 #else
570
571 struct ElfProgHeader {
572         guint32 p_type;
573         guint32 p_flags;
574         guint64 p_offset;
575         guint64 p_vaddr;
576         guint64 p_paddr;
577         guint64 p_filesz;
578         guint64 p_memsz;
579         guint64 p_align;
580 };
581
582 typedef struct {
583         guint32 st_name;
584         guint8  st_info;
585         guint8  st_other;
586         guint16 st_shndx;
587         guint64 st_value;
588         guint64 st_size;
589 } ElfSymbol;
590
591 typedef struct {
592         guint64 addr;
593         guint64 value;
594 } ElfReloc;
595
596 typedef struct {
597         guint64 addr;
598         guint64 value;
599         guint64 addend;
600 } ElfRelocA;
601
602 typedef struct {
603         guint64 d_tag;
604         guint64 d_val;
605 } ElfDynamic;
606
607 #endif
608
609 typedef struct {
610         GString *data;
611         GHashTable *hash;
612 } ElfStrTable;
613
614 static int
615 str_table_add (ElfStrTable *table, const char* value)
616 {
617         int idx;
618         if (!table->data) {
619                 table->data = g_string_new_len ("", 1);
620                 table->hash = g_hash_table_new (g_str_hash, g_str_equal);
621         }
622         idx = GPOINTER_TO_UINT (g_hash_table_lookup (table->hash, value));
623         if (idx)
624                 return idx;
625         idx = table->data->len;
626         g_string_append (table->data, value);
627         g_string_append_c (table->data, 0);
628         g_hash_table_insert (table->hash, (void*)value, GUINT_TO_POINTER (idx));
629         return idx;
630 }
631
632 static void
633 append_subsection (MonoAotCompile *acfg, struct ElfSectHeader *sheaders, BinSection *sect, BinSection *add)
634 {
635         int offset = sect->cur_offset;
636         /*offset += (sheaders [sect->shidx].sh_addralign - 1);
637         offset &= ~(sheaders [sect->shidx].sh_addralign - 1);*/
638         offset += (8 - 1);
639         offset &= ~(8 - 1);
640         emit_ensure_buffer (sect, offset);
641         g_print ("section %s aligned to %d from %d\n", sect->name, offset, sect->cur_offset);
642         sect->cur_offset = offset;
643
644         emit_ensure_buffer (sect, add->cur_offset);
645         memcpy (sect->data + sect->cur_offset, add->data, add->cur_offset);
646         add->parent = sect;
647         sect->cur_offset += add->cur_offset;
648         add->cur_offset = offset; /* it becomes the offset in the parent section */
649         g_print ("subsection %d of %s added at offset %d (align: %d)\n", add->subsection, sect->name, add->cur_offset, sheaders [sect->shidx].sh_addralign);
650         add->data = NULL;
651         add->data_len = 0;
652 }
653
654 /* merge the subsections */
655 static int
656 collect_sections (MonoAotCompile *acfg, struct ElfSectHeader *sheaders, BinSection **out, int num)
657 {
658         int i, j, maxs, num_sections;
659         BinSection *sect;
660
661         num_sections = 0;
662         maxs = 0;
663         for (sect = acfg->sections; sect; sect = sect->next) {
664                 if (sect->subsection == 0) {
665                         out [num_sections++] = sect;
666                         g_assert (num_sections < num);
667                         if (strcmp (sect->name, ".text") == 0) {
668                                 sect->shidx = SECT_TEXT;
669                         } else if (strcmp (sect->name, ".data") == 0) {
670                                 sect->shidx = SECT_DATA;
671                         } else if (strcmp (sect->name, ".bss") == 0) {
672                                 sect->shidx = SECT_BSS;
673                         }
674                 }
675                 maxs = MAX (maxs, sect->subsection);
676         }
677         for (i = 0; i < num_sections; i++) {
678                 for (j = 1; j <= maxs; ++j) {
679                         for (sect = acfg->sections; sect; sect = sect->next) {
680                                 if (sect->subsection == j && strcmp (out [i]->name, sect->name) == 0) {
681                                         append_subsection (acfg, sheaders, out [i], sect);
682                                 }
683                         }
684                 }
685         }
686         return num_sections;
687 }
688
689 static unsigned long
690 elf_hash (const unsigned char *name)
691 {
692         unsigned long h = 0, g;
693         while (*name) {
694                 h = (h << 4) + *name++;
695                 if ((g = h & 0xf0000000))
696                         h ^= g >> 24;
697                 h &= ~g;
698         }
699         return h;
700 }
701
702 #define NUM_BUCKETS 17
703
704 static int*
705 build_hash (MonoAotCompile *acfg, int num_sections, ElfStrTable *dynstr)
706 {
707         int *data;
708         int num_symbols = 1 + num_sections + 3;
709         BinSymbol *symbol;
710
711         for (symbol = acfg->symbols; symbol; symbol = symbol->next) {
712                 if (!symbol->is_global)
713                         continue;
714                 num_symbols++;
715                 str_table_add (dynstr, symbol->name);
716                 /*g_print ("adding sym: %s\n", symbol->name);*/
717         }
718         str_table_add (dynstr, "__bss_start");
719         str_table_add (dynstr, "_edata");
720         str_table_add (dynstr, "_end");
721
722         data = g_new0 (int, num_symbols + 2 + NUM_BUCKETS);
723         data [0] = NUM_BUCKETS;
724         data [1] = num_symbols;
725
726         return data;
727 }
728
729 static gsize
730 get_label_addr (MonoAotCompile *acfg, const char *name)
731 {
732         int offset;
733         BinLabel *lab;
734         BinSection *section;
735         gsize value;
736
737         lab = g_hash_table_lookup (acfg->labels, name);
738         section = lab->section;
739         offset = lab->offset;
740         if (section->parent) {
741                 value = section->parent->file_offset + section->cur_offset + offset;
742         } else {
743                 value = section->file_offset + offset;
744         }
745         return value;
746 }
747
748 static ElfSymbol*
749 collect_syms (MonoAotCompile *acfg, int *hash, ElfStrTable *strtab, struct ElfSectHeader *sheaders, int *num_syms)
750 {
751         ElfSymbol *symbols;
752         BinSymbol *symbol;
753         BinSection *section;
754         int i;
755         int *bucket;
756         int *chain;
757         unsigned long hashc;
758
759         if (hash)
760                 symbols = g_new0 (ElfSymbol, hash [1]);
761         else
762                 symbols = g_new0 (ElfSymbol, *num_syms + SECT_NUM + 10); /* FIXME */
763
764         /* the first symbol is undef, all zeroes */
765         i = 1;
766         if (sheaders) {
767                 int j;
768                 for (j = 1; j < SECT_NUM; ++j) {
769                         symbols [i].st_info = SYM_LOCAL | SYM_SECTION;
770                         symbols [i].st_shndx = j;
771                         symbols [i].st_value = sheaders [j].sh_addr;
772                         ++i;
773                 }
774         } else {
775                 for (section = acfg->sections; section; section = section->next) {
776                         if (section->parent)
777                                 continue;
778                         symbols [i].st_info = SYM_LOCAL | SYM_SECTION;
779                         if (strcmp (section->name, ".text") == 0) {
780                                 symbols [i].st_shndx = SECT_TEXT;
781                                 section->shidx = SECT_TEXT;
782                                 section->file_offset = 4096;
783                                 symbols [i].st_value = section->file_offset;
784                         } else if (strcmp (section->name, ".data") == 0) {
785                                 symbols [i].st_shndx = SECT_DATA;
786                                 section->shidx = SECT_DATA;
787                                 section->file_offset = 4096 + 28; /* FIXME */
788                                 symbols [i].st_value = section->file_offset;
789                         } else if (strcmp (section->name, ".bss") == 0) {
790                                 symbols [i].st_shndx = SECT_BSS;
791                                 section->shidx = SECT_BSS;
792                                 section->file_offset = 4096 + 28 + 8; /* FIXME */
793                                 symbols [i].st_value = section->file_offset;
794                         }
795                         ++i;
796                 }
797         }
798         for (symbol = acfg->symbols; symbol; symbol = symbol->next) {
799                 int offset;
800                 BinLabel *lab;
801                 if (!symbol->is_global)
802                         continue;
803                 symbols [i].st_info = (symbol->is_function? SYM_FUNC : SYM_OBJECT) | SYM_GLOBAL;
804                 symbols [i].st_name = str_table_add (strtab, symbol->name);
805                 /*g_print ("sym name %s tabled to %d\n", symbol->name, symbols [i].st_name);*/
806                 section = symbol->section;
807                 symbols [i].st_shndx = section->parent? section->parent->shidx: section->shidx;
808                 lab = g_hash_table_lookup (acfg->labels, symbol->name);
809                 offset = lab->offset;
810                 if (section->parent) {
811                         symbols [i].st_value = section->parent->file_offset + section->cur_offset + offset;
812                 } else {
813                         symbols [i].st_value = section->file_offset + offset;
814                 }
815                 ++i;
816         }
817         /* add special symbols */
818         symbols [i].st_name = str_table_add (strtab, "__bss_start");
819         symbols [i].st_shndx = 0xfff1;
820         symbols [i].st_info = SYM_GLOBAL;
821         ++i;
822         symbols [i].st_name = str_table_add (strtab, "_edata");
823         symbols [i].st_shndx = 0xfff1;
824         symbols [i].st_info = SYM_GLOBAL;
825         ++i;
826         symbols [i].st_name = str_table_add (strtab, "_end");
827         symbols [i].st_shndx = 0xfff1;
828         symbols [i].st_info = SYM_GLOBAL;
829         ++i;
830
831         if (num_syms)
832                 *num_syms = i;
833
834         /* add to hash table */
835         if (hash) {
836                 bucket = hash + 2;
837                 chain = hash + 2 + hash [0];
838                 for (i = 0; i < hash [1]; ++i) {
839                         int slot;
840                         /*g_print ("checking %d '%s' (sym %d)\n", symbols [i].st_name, strtab->data->str + symbols [i].st_name, i);*/
841                         if (!symbols [i].st_name)
842                                 continue;
843                         hashc = elf_hash ((guint8*)strtab->data->str + symbols [i].st_name);
844                         slot = hashc % hash [0];
845                         /*g_print ("hashing '%s' at slot %d (sym %d)\n", strtab->data->str + symbols [i].st_name, slot, i);*/
846                         if (bucket [slot]) {
847                                 chain [i] = bucket [slot];
848                                 bucket [slot] = i;
849                         } else {
850                                 bucket [slot] = i;
851                         }
852                 }
853         }
854         return symbols;
855 }
856
857 static void
858 reloc_symbols (MonoAotCompile *acfg, ElfSymbol *symbols, struct ElfSectHeader *sheaders, ElfStrTable *strtab, gboolean dynamic)
859 {
860         BinSection *section;
861         BinSymbol *symbol;
862         int i;
863
864         i = 1;
865         if (dynamic) {
866                 for (section = acfg->sections; section; section = section->next) {
867                         if (section->parent)
868                                 continue;
869                         symbols [i].st_value = sheaders [section->shidx].sh_addr;
870                         ++i;
871                 }
872         } else {
873                 for (i = 1; i < SECT_NUM; ++i) {
874                         symbols [i].st_value = sheaders [i].sh_addr;
875                 }
876         }
877         for (symbol = acfg->symbols; symbol; symbol = symbol->next) {
878                 int offset;
879                 BinLabel *lab;
880                 if (dynamic && !symbol->is_global)
881                         continue;
882                 section = symbol->section;
883                 lab = g_hash_table_lookup (acfg->labels, symbol->name);
884                 offset = lab->offset;
885                 if (section->parent) {
886                         symbols [i].st_value = sheaders [section->parent->shidx].sh_addr + section->cur_offset + offset;
887                 } else {
888                         symbols [i].st_value = sheaders [section->shidx].sh_addr + offset;
889                 }
890                 ++i;
891         }
892         /* __bss_start */
893         symbols [i].st_value = sheaders [SECT_BSS].sh_addr;
894         ++i;
895         /* _edata */
896         symbols [i].st_value = sheaders [SECT_DATA].sh_addr + sheaders [SECT_DATA].sh_size;
897         ++i;
898         /* _end */
899         symbols [i].st_value = sheaders [SECT_BSS].sh_addr + sheaders [SECT_BSS].sh_size;
900         ++i;
901 }
902
903 static ElfReloc*
904 resolve_relocations (MonoAotCompile *acfg)
905 {
906         BinReloc *reloc;
907         guint8 *data;
908         gsize end_val, start_val;
909         ElfReloc *rr;
910         int i;
911         gsize vaddr;
912
913         rr = g_new0 (ElfReloc, acfg->num_relocs);
914         i = 0;
915
916         for (reloc = acfg->relocations; reloc; reloc = reloc->next) {
917                 end_val = get_label_addr (acfg, reloc->val1);
918                 if (reloc->val2) {
919                         start_val = get_label_addr (acfg, reloc->val2);
920                 } else if (reloc->val2_section) {
921                         start_val = reloc->val2_offset;
922                         if (reloc->val2_section->parent)
923                                 start_val += reloc->val2_section->parent->file_offset + reloc->val2_section->cur_offset;
924                         else
925                                 start_val += reloc->val2_section->file_offset;
926                 } else {
927                         start_val = 0;
928                 }
929                 end_val = end_val - start_val + reloc->offset;
930                 if (reloc->section->parent) {
931                         data = reloc->section->parent->data;
932                         data += reloc->section->cur_offset;
933                         data += reloc->section_offset;
934                         vaddr = reloc->section->parent->file_offset;
935                         vaddr += reloc->section->cur_offset;
936                         vaddr += reloc->section_offset;
937                 } else {
938                         data = reloc->section->data;
939                         data += reloc->section_offset;
940                         vaddr = reloc->section->file_offset;
941                         vaddr += reloc->section_offset;
942                 }
943                 /* FIXME: little endian */
944                 data [0] = end_val;
945                 data [1] = end_val >> 8;
946                 data [2] = end_val >> 16;
947                 data [3] = end_val >> 24;
948                 if (start_val == 0) {
949                         rr [i].addr = vaddr;
950                         rr [i].value = 8; /* FIXME: 386_RELATIVE */
951                         ++i;
952                         g_assert (i <= acfg->num_relocs);
953                 }
954         }
955         return rr;
956 }
957
958 static void
959 emit_writeout (MonoAotCompile *acfg)
960 {
961         char *outfile_name, *tmp_outfile_name;
962         FILE *file;
963         struct ElfHeader header;
964         struct ElfProgHeader progh [3];
965         struct ElfSectHeader secth [SECT_NUM];
966         ElfReloc *relocs;
967         ElfStrTable str_table = {NULL, NULL};
968         ElfStrTable sh_str_table = {NULL, NULL};
969         ElfStrTable dyn_str_table = {NULL, NULL};
970         BinSection* sections [6];
971         BinSection *text_section = NULL, *data_section = NULL, *bss_section = NULL;
972         ElfSymbol *dynsym;
973         ElfSymbol *symtab;
974         ElfDynamic dynamic [14];
975         int *hash;
976         int i, num_sections, file_offset, virt_offset, size, num_symtab;
977         int num_local_syms;
978
979         if (acfg->aot_opts.outfile)
980                 outfile_name = g_strdup_printf ("%s", acfg->aot_opts.outfile);
981         else
982                 outfile_name = g_strdup_printf ("%s%s", acfg->image->name, SHARED_EXT);
983
984         tmp_outfile_name = g_strdup_printf ("%s.tmp", outfile_name);
985
986         unlink (tmp_outfile_name);
987         file = fopen (tmp_outfile_name, "w");
988         g_assert (file);
989
990         /* Section headers */
991         memset (&secth, 0, sizeof (secth));
992         memset (&dynamic, 0, sizeof (dynamic));
993         memset (&header, 0, sizeof (header));
994
995         for (i = 1; i < SECT_NUM; ++i) {
996                 secth [i].sh_name = str_table_add (&sh_str_table, section_names [i]);
997                 secth [i].sh_type = section_type [i];
998                 secth [i].sh_link = section_link [i];
999                 secth [i].sh_addralign = section_align [i];
1000                 secth [i].sh_flags = section_flags [i];
1001                 secth [i].sh_entsize = section_esize [i];
1002         }
1003         secth [SECT_DYNSYM].sh_info = 4;
1004         secth [SECT_SYMTAB].sh_info = 20;
1005
1006         num_sections = collect_sections (acfg, secth, sections, 6);
1007         hash = build_hash (acfg, num_sections, &dyn_str_table);
1008         num_symtab = hash [1]; /* FIXME */
1009         g_print ("num_sections: %d\n", num_sections);
1010         g_print ("dynsym: %d, dynstr size: %d\n", hash [1], dyn_str_table.data->len);
1011         for (i = 0; i < num_sections; ++i) {
1012                 g_print ("section %s, size: %d, %x\n", sections [i]->name, sections [i]->cur_offset, sections [i]->cur_offset);
1013         }
1014
1015         /* at this point we know where in the file the first segment sections go */
1016         dynsym = collect_syms (acfg, hash, &dyn_str_table, NULL, NULL);
1017         num_local_syms = hash [1];
1018         symtab = collect_syms (acfg, NULL, &str_table, secth, &num_local_syms);
1019
1020         for (i = 0; i < num_sections; ++i) {
1021                 if (sections [i]->shidx == SECT_TEXT) {
1022                         text_section = sections [i];
1023                 } else if (sections [i]->shidx == SECT_DATA) {
1024                         data_section = sections [i];
1025                 } else if (sections [i]->shidx == SECT_BSS) {
1026                         bss_section = sections [i];
1027                 }
1028         }
1029
1030         file_offset = virt_offset = sizeof (header) + sizeof (progh);
1031         secth [SECT_HASH].sh_addr = secth [SECT_HASH].sh_offset = file_offset;
1032         size = sizeof (int) * (2 + hash [0] + hash [1]);
1033         virt_offset = (file_offset += size);
1034         secth [SECT_HASH].sh_size = size;
1035         secth [SECT_DYNSYM].sh_addr = secth [SECT_DYNSYM].sh_offset = file_offset;
1036         size = sizeof (ElfSymbol) * hash [1];
1037         virt_offset = (file_offset += size);
1038         secth [SECT_DYNSYM].sh_size = size;
1039         secth [SECT_DYNSTR].sh_addr = secth [SECT_DYNSTR].sh_offset = file_offset;
1040         size = dyn_str_table.data->len;
1041         virt_offset = (file_offset += size);
1042         secth [SECT_DYNSTR].sh_size = size;
1043         file_offset += 4-1;
1044         file_offset &= ~(4-1);
1045         secth [SECT_REL_DYN].sh_addr = secth [SECT_REL_DYN].sh_offset = file_offset;
1046         size = sizeof (ElfReloc) * acfg->num_relocs;
1047         secth [SECT_REL_DYN].sh_size = size;
1048         virt_offset = (file_offset += size);
1049         secth [SECT_REL_DYN].sh_size = size;
1050         file_offset += 4096-1;
1051         file_offset &= ~(4096-1);
1052         virt_offset = file_offset;
1053         secth [SECT_TEXT].sh_addr = secth [SECT_TEXT].sh_offset = file_offset;
1054         size = text_section->cur_offset;
1055         secth [SECT_TEXT].sh_size = size;
1056         file_offset += size;
1057         file_offset += 4-1;
1058         file_offset &= ~(4-1);
1059         virt_offset = file_offset;
1060         /* .dynamic, .got.plt, .data, .bss here */
1061         secth [SECT_DYNAMIC].sh_addr = virt_offset;
1062         secth [SECT_DYNAMIC].sh_offset = file_offset;
1063         size = sizeof (dynamic);
1064         secth [SECT_DYNAMIC].sh_size = size;
1065         size += 4-1;
1066         size &= ~(4-1);
1067         file_offset += size;
1068         virt_offset += size;
1069         secth [SECT_GOT_PLT].sh_addr = virt_offset;
1070         secth [SECT_GOT_PLT].sh_offset = file_offset;
1071         size = 12;
1072         secth [SECT_GOT_PLT].sh_size = size;
1073         size += 8-1;
1074         size &= ~(8-1);
1075         file_offset += size;
1076         virt_offset += size;
1077         secth [SECT_DATA].sh_addr = virt_offset;
1078         secth [SECT_DATA].sh_offset = file_offset;
1079         size = data_section->cur_offset;
1080         secth [SECT_DATA].sh_size = size;
1081         size += 8-1;
1082         size &= ~(8-1);
1083         file_offset += size;
1084         virt_offset += size;
1085         secth [SECT_BSS].sh_addr = virt_offset;
1086         secth [SECT_BSS].sh_offset = file_offset;
1087         size = bss_section->cur_offset;
1088         secth [SECT_BSS].sh_size = size;
1089
1090         /* virtual doesn't matter anymore */
1091         secth [SECT_SHSTRTAB].sh_offset = file_offset;
1092         size = sh_str_table.data->len;
1093         secth [SECT_SHSTRTAB].sh_size = size;
1094         size += 4-1;
1095         size &= ~(4-1);
1096         file_offset += size;
1097         secth [SECT_SYMTAB].sh_offset = file_offset;
1098         size = sizeof (ElfSymbol) * num_local_syms;
1099         secth [SECT_SYMTAB].sh_size = size;
1100         file_offset += size;
1101         secth [SECT_STRTAB].sh_offset = file_offset;
1102         size = str_table.data->len;
1103         secth [SECT_STRTAB].sh_size = size;
1104         file_offset += size;
1105         file_offset += 4-1;
1106         file_offset &= ~(4-1);
1107
1108         text_section->file_offset = secth [SECT_TEXT].sh_offset;
1109         data_section->file_offset = secth [SECT_DATA].sh_offset;
1110         bss_section->file_offset = secth [SECT_BSS].sh_offset;
1111
1112         header.e_ident [0] = 0x7f; header.e_ident [1] = 'E';
1113         header.e_ident [2] = 'L'; header.e_ident [3] = 'F';
1114         header.e_ident [4] = SIZEOF_VOID_P == 4? 1: 2;
1115         header.e_ident [5] = 1; /* FIXME: little endian, bigendian is 2 */
1116         header.e_ident [6] = 1; /* version */
1117         header.e_ident [7] = 0; /* FIXME: */
1118         header.e_ident [8] = 0; /* FIXME: */
1119         for (i = 9; i < 16; ++i)
1120                 header.e_ident [i] = 0;
1121
1122         header.e_type = 3; /* shared library */
1123         header.e_machine = 3; /* FIXME: 386 */
1124         header.e_version = 1; /* FIXME:  */
1125
1126         header.e_phoff = sizeof (header);
1127         header.e_ehsize = sizeof (header);
1128         header.e_phentsize = sizeof (struct ElfProgHeader);
1129         header.e_phnum = 3;
1130         header.e_entry = secth [SECT_TEXT].sh_addr;
1131         header.e_shstrndx = 10;
1132         header.e_shentsize = sizeof (struct ElfSectHeader);
1133         header.e_shnum = SECT_NUM;
1134         header.e_shoff = file_offset;
1135
1136         /* dynamic data */
1137         i = 0;
1138         dynamic [i].d_tag = DYN_HASH;
1139         dynamic [i].d_val = secth [SECT_HASH].sh_offset;
1140         ++i;
1141         dynamic [i].d_tag = DYN_STRTAB;
1142         dynamic [i].d_val = secth [SECT_DYNSTR].sh_offset;
1143         ++i;
1144         dynamic [i].d_tag = DYN_SYMTAB;
1145         dynamic [i].d_val = secth [SECT_DYNSYM].sh_offset;
1146         ++i;
1147         dynamic [i].d_tag = DYN_STRSZ;
1148         dynamic [i].d_val = dyn_str_table.data->len;
1149         ++i;
1150         dynamic [i].d_tag = DYN_SYMENT;
1151         dynamic [i].d_val = sizeof (ElfSymbol);
1152         ++i;
1153         dynamic [i].d_tag = DYN_REL;
1154         dynamic [i].d_val = secth [SECT_REL_DYN].sh_offset;
1155         ++i;
1156         dynamic [i].d_tag = DYN_RELSZ;
1157         dynamic [i].d_val = secth [SECT_REL_DYN].sh_size;
1158         ++i;
1159         dynamic [i].d_tag = DYN_RELENT;
1160         dynamic [i].d_val = sizeof (ElfReloc);
1161         ++i;
1162         dynamic [i].d_tag = DYN_RELCOUNT;
1163         dynamic [i].d_val = acfg->num_relocs;
1164         ++i;
1165
1166         /* Program header */
1167         memset (&progh, 0, sizeof (progh));
1168         progh [0].p_type = 1; /* LOAD */
1169         progh [0].p_filesz = progh [0].p_memsz = secth [SECT_DYNAMIC].sh_offset;
1170         progh [0].p_align = 4096;
1171         progh [0].p_flags = 5;
1172
1173         progh [1].p_type = 1;
1174         progh [1].p_offset = secth [SECT_DYNAMIC].sh_offset;
1175         progh [1].p_vaddr = progh [1].p_paddr = secth [SECT_DYNAMIC].sh_addr;
1176         progh [1].p_filesz = secth [SECT_BSS].sh_offset  - secth [SECT_DYNAMIC].sh_offset;
1177         progh [1].p_memsz = secth [SECT_BSS].sh_addr + secth [SECT_BSS].sh_size - secth [SECT_DYNAMIC].sh_addr;
1178         progh [1].p_align = 4096;
1179         progh [1].p_flags = 6;
1180
1181         progh [2].p_type = 2; /* DYNAMIC */
1182         progh [2].p_offset = secth [SECT_DYNAMIC].sh_offset;
1183         progh [2].p_vaddr = progh [2].p_paddr = secth [SECT_DYNAMIC].sh_addr;
1184         progh [2].p_filesz = progh [2].p_memsz = secth [SECT_DYNAMIC].sh_size;
1185         progh [2].p_align = 4;
1186         progh [2].p_flags = 6;
1187
1188         reloc_symbols (acfg, dynsym, secth, &dyn_str_table, TRUE);
1189         reloc_symbols (acfg, symtab, secth, &str_table, FALSE);
1190         relocs = resolve_relocations (acfg);
1191
1192         fwrite (&header, sizeof (header), 1, file);
1193         fwrite (&progh, sizeof (progh), 1, file);
1194         fwrite (hash, sizeof (int) * (hash [0] + hash [1] + 2), 1, file);
1195         fwrite (dynsym, sizeof (ElfSymbol) * hash [1], 1, file);
1196         fwrite (dyn_str_table.data->str, dyn_str_table.data->len, 1, file);
1197         /* .rel.dyn */
1198         fseek (file, secth [SECT_REL_DYN].sh_offset, SEEK_SET);
1199         fwrite (relocs, sizeof (ElfReloc), acfg->num_relocs, file);
1200
1201         fseek (file, secth [SECT_TEXT].sh_offset, SEEK_SET);
1202         /* write .text, .data, .bss sections */
1203         fwrite (text_section->data, text_section->cur_offset, 1, file);
1204
1205         /* .dynamic */
1206         fwrite (dynamic, sizeof (dynamic), 1, file);
1207         /* .got.plt */
1208         size = secth [SECT_DYNAMIC].sh_addr;
1209         fwrite (&size, sizeof (size), 1, file);
1210         fseek (file, secth [SECT_DATA].sh_offset, SEEK_SET);
1211         fwrite (data_section->data, data_section->cur_offset, 1, file);
1212
1213         fseek (file, secth [SECT_SHSTRTAB].sh_offset, SEEK_SET);
1214         fwrite (sh_str_table.data->str, sh_str_table.data->len, 1, file);
1215         fseek (file, secth [SECT_SYMTAB].sh_offset, SEEK_SET);
1216         fwrite (symtab, sizeof (ElfSymbol) * num_local_syms, 1, file);
1217         fseek (file, secth [SECT_STRTAB].sh_offset, SEEK_SET);
1218         fwrite (str_table.data->str, str_table.data->len, 1, file);
1219         /*g_print ("file_offset %d vs %d\n", file_offset, ftell (file));*/
1220         /*g_assert (file_offset >= ftell (file));*/
1221         fseek (file, file_offset, SEEK_SET);
1222         fwrite (&secth, sizeof (secth), 1, file);
1223         fclose (file);
1224         rename (tmp_outfile_name, outfile_name);
1225
1226         g_free (tmp_outfile_name);
1227         g_free (outfile_name);
1228 }
1229
1230 #endif /* USE_ELF_WRITER */
1231
1232 #else
1233
1234 static void
1235 emit_start (MonoAotCompile *acfg)
1236 {
1237         int i = g_file_open_tmp ("mono_aot_XXXXXX", &acfg->tmpfname, NULL);
1238         acfg->fp = fdopen (i, "w+");
1239         g_assert (acfg->fp);
1240 }
1241
1242 static void
1243 emit_unset_mode (MonoAotCompile *acfg)
1244 {
1245         if (acfg->mode == EMIT_NONE)
1246                 return;
1247         fprintf (acfg->fp, "\n");
1248         acfg->mode = EMIT_NONE;
1249 }
1250
1251 static void
1252 emit_section_change (MonoAotCompile *acfg, const char *section_name, int subsection_index)
1253 {
1254         emit_unset_mode (acfg);
1255 #if defined(PLATFORM_WIN32)
1256         fprintf (acfg->fp, ".section %s\n", section_name);
1257 #elif defined(sparc) || defined(__arm__)
1258         /* For solaris as, GNU as should accept the same */
1259         fprintf (acfg->fp, ".section \"%s\"\n", section_name);
1260 #elif defined(__ppc__) && defined(__MACH__)
1261         /* This needs to be made more precise on mach. */
1262         fprintf (acfg->fp, "%s\n", subsection_index == 0 ? ".text" : ".data");
1263 #else
1264         fprintf (acfg->fp, "%s %d\n", section_name, subsection_index);
1265 #endif
1266 }
1267
1268 static void
1269 emit_symbol_type (MonoAotCompile *acfg, const char *name, gboolean func)
1270 {
1271         const char *stype;
1272
1273         if (func)
1274                 stype = "function";
1275         else
1276                 stype = "object";
1277
1278         emit_unset_mode (acfg);
1279 #if defined(sparc) || defined(__arm__)
1280         fprintf (acfg->fp, "\t.type %s,#%s\n", name, stype);
1281 #elif defined(PLATFORM_WIN32)
1282
1283 #elif !(defined(__ppc__) && defined(__MACH__))
1284         fprintf (acfg->fp, "\t.type %s,@%s\n", name, stype);
1285 #elif defined(__x86_64__) || defined(__i386__)
1286         fprintf (acfg->fp, "\t.type %s,@%s\n", name, stype);
1287 #endif
1288 }
1289
1290 static void
1291 emit_global (MonoAotCompile *acfg, const char *name, gboolean func)
1292 {
1293         emit_unset_mode (acfg);
1294 #if  (defined(__ppc__) && defined(__MACH__)) || defined(PLATFORM_WIN32)
1295     // mach-o always uses a '_' prefix.
1296         fprintf (acfg->fp, "\t.globl _%s\n", name);
1297 #else
1298         fprintf (acfg->fp, "\t.globl %s\n", name);
1299 #endif
1300
1301         emit_symbol_type (acfg, name, func);
1302 }
1303
1304 static void
1305 emit_label (MonoAotCompile *acfg, const char *name)
1306 {
1307         emit_unset_mode (acfg);
1308 #if (defined(__ppc__) && defined(__MACH__)) || defined(PLATFORM_WIN32)
1309     // mach-o always uses a '_' prefix.
1310         fprintf (acfg->fp, "_%s:\n", name);
1311 #else
1312         fprintf (acfg->fp, "%s:\n", name);
1313 #endif
1314
1315 #if defined(PLATFORM_WIN32)
1316         /* Emit a normal label too */
1317         fprintf (acfg->fp, "%s:\n", name);
1318 #endif
1319 }
1320
1321 static void
1322 emit_string (MonoAotCompile *acfg, const char *value)
1323 {
1324         emit_unset_mode (acfg);
1325         fprintf (acfg->fp, "\t%s \"%s\"\n", AS_STRING_DIRECTIVE, value);
1326 }
1327
1328 static void
1329 emit_line (MonoAotCompile *acfg)
1330 {
1331         emit_unset_mode (acfg);
1332         fprintf (acfg->fp, "\n");
1333 }
1334
1335 static void
1336 emit_string_symbol (MonoAotCompile *acfg, const char *name, const char *value)
1337 {
1338         emit_unset_mode (acfg);
1339         emit_section_change (acfg, ".text", 1);
1340         emit_global (acfg, name, FALSE);
1341         emit_label (acfg, name);
1342         emit_string (acfg, value);
1343 }
1344
1345 static void 
1346 emit_alignment (MonoAotCompile *acfg, int size)
1347 {
1348         emit_unset_mode (acfg);
1349 #if defined(__arm__)
1350         fprintf (acfg->fp, "\t.align %d\n", ilog2 (size));
1351 #elif defined(__ppc__) && defined(__MACH__)
1352         // the mach-o assembler specifies alignments as powers of 2.
1353         fprintf (acfg->fp, "\t.align %d\t; ilog2\n", ilog2(size));
1354 #elif defined(__powerpc__)
1355         /* ignore on linux/ppc */
1356 #else
1357         fprintf (acfg->fp, "\t.align %d\n", size);
1358 #endif
1359 }
1360
1361 static void
1362 emit_pointer (MonoAotCompile *acfg, const char *target)
1363 {
1364         emit_unset_mode (acfg);
1365         emit_alignment (acfg, sizeof (gpointer));
1366 #if defined(__x86_64__)
1367         fprintf (acfg->fp, "\t.quad %s\n", target);
1368 #elif defined(sparc) && SIZEOF_VOID_P == 8
1369         fprintf (acfg->fp, "\t.xword %s\n", target);
1370 #else
1371         fprintf (acfg->fp, "\t.long %s\n", target);
1372 #endif
1373 }
1374
1375 static void
1376 emit_bytes (MonoAotCompile *acfg, const guint8* buf, int size)
1377 {
1378         int i;
1379         if (acfg->mode != EMIT_BYTE) {
1380                 acfg->mode = EMIT_BYTE;
1381                 acfg->col_count = 0;
1382         }
1383         for (i = 0; i < size; ++i, ++acfg->col_count) {
1384                 if ((acfg->col_count % 32) == 0)
1385                         fprintf (acfg->fp, "\n\t.byte ");
1386                 else
1387                         fprintf (acfg->fp, ", ");
1388                 fprintf (acfg->fp, "0x%x", buf [i]);
1389         }
1390 }
1391
1392 static inline void
1393 emit_int16 (MonoAotCompile *acfg, int value)
1394 {
1395         if (acfg->mode != EMIT_WORD) {
1396                 acfg->mode = EMIT_WORD;
1397                 acfg->col_count = 0;
1398         }
1399         if ((acfg->col_count++ % 8) == 0)
1400 #if defined(__arm__)
1401                 /* FIXME: Use .hword on other archs as well */
1402                 fprintf (acfg->fp, "\n\t.hword ");
1403 #else
1404                 fprintf (acfg->fp, "\n\t.word ");
1405 #endif
1406         else
1407                 fprintf (acfg->fp, ", ");
1408         fprintf (acfg->fp, "%d", value);
1409 }
1410
1411 static inline void
1412 emit_int32 (MonoAotCompile *acfg, int value)
1413 {
1414         if (acfg->mode != EMIT_LONG) {
1415                 acfg->mode = EMIT_LONG;
1416                 acfg->col_count = 0;
1417         }
1418         if ((acfg->col_count++ % 8) == 0)
1419                 fprintf (acfg->fp, "\n\t.long ");
1420         else
1421                 fprintf (acfg->fp, ", ");
1422         fprintf (acfg->fp, "%d", value);
1423 }
1424
1425 static void
1426 emit_symbol_diff (MonoAotCompile *acfg, const char *end, const char* start, int offset)
1427 {
1428         if (acfg->mode != EMIT_LONG) {
1429                 acfg->mode = EMIT_LONG;
1430                 acfg->col_count = 0;
1431         }
1432         if ((acfg->col_count++ % 8) == 0)
1433                 fprintf (acfg->fp, "\n\t.long ");
1434         else
1435                 fprintf (acfg->fp, ", ");
1436         if (offset)
1437                 fprintf (acfg->fp, "%s - %s %c %d", end, start, offset < 0? ' ': '+', offset);
1438         else
1439                 fprintf (acfg->fp, "%s - %s", end, start);
1440 }
1441
1442 static void
1443 emit_zero_bytes (MonoAotCompile *acfg, int num)
1444 {
1445         emit_unset_mode (acfg);
1446         fprintf (acfg->fp, "\t.skip %d\n", num);
1447 }
1448
1449 static void
1450 emit_writeout (MonoAotCompile *acfg)
1451 {
1452         char *command, *objfile;
1453         char *outfile_name, *tmp_outfile_name;
1454
1455         fclose (acfg->fp);
1456
1457 #if defined(__x86_64__)
1458 #define AS_OPTIONS "--64"
1459 #elif defined(sparc) && SIZEOF_VOID_P == 8
1460 #define AS_OPTIONS "-xarch=v9"
1461 #else
1462 #define AS_OPTIONS ""
1463 #endif
1464         command = g_strdup_printf ("as %s %s -o %s.o", AS_OPTIONS, acfg->tmpfname, acfg->tmpfname);
1465         printf ("Executing the native assembler: %s\n", command);
1466         if (system (command) != 0) {
1467                 g_free (command);
1468                 return;
1469         }
1470
1471         g_free (command);
1472
1473         if (acfg->aot_opts.outfile)
1474                 outfile_name = g_strdup_printf ("%s", acfg->aot_opts.outfile);
1475         else
1476                 outfile_name = g_strdup_printf ("%s%s", acfg->image->name, SHARED_EXT);
1477
1478         tmp_outfile_name = g_strdup_printf ("%s.tmp", outfile_name);
1479
1480 #if defined(sparc)
1481         command = g_strdup_printf ("ld -shared -G -o %s %s.o", outfile_name, acfg->tmpfname);
1482 #elif defined(__ppc__) && defined(__MACH__)
1483         command = g_strdup_printf ("gcc -dynamiclib -o %s %s.o", outfile_name, acfg->tmpfname);
1484 #elif defined(PLATFORM_WIN32)
1485         command = g_strdup_printf ("gcc -shared --dll -mno-cygwin -o %s %s.o", outfile_name, acfg->tmpfname);
1486 #else
1487         command = g_strdup_printf ("ld -shared -o %s %s.o", outfile_name, acfg->tmpfname);
1488 #endif
1489         printf ("Executing the native linker: %s\n", command);
1490         if (system (command) != 0) {
1491                 g_free (tmp_outfile_name);
1492                 g_free (outfile_name);
1493                 g_free (command);
1494                 return;
1495         }
1496
1497         g_free (command);
1498         objfile = g_strdup_printf ("%s.o", acfg->tmpfname);
1499         unlink (objfile);
1500         g_free (objfile);
1501         /*com = g_strdup_printf ("strip --strip-unneeded %s%s", acfg->image->name, SHARED_EXT);
1502         printf ("Stripping the binary: %s\n", com);
1503         system (com);
1504         g_free (com);*/
1505
1506         rename (tmp_outfile_name, outfile_name);
1507
1508         g_free (tmp_outfile_name);
1509         g_free (outfile_name);
1510
1511         if (acfg->aot_opts.save_temps)
1512                 printf ("Retained input file.\n");
1513         else
1514                 unlink (acfg->tmpfname);
1515
1516 }
1517
1518 #endif /* ASM_WRITER */
1519
1520 static void
1521 emit_byte (MonoAotCompile *acfg, guint8 val)
1522 {
1523         emit_bytes (acfg, &val, 1);
1524 }
1525
1526 static guint32
1527 mono_get_field_token (MonoClassField *field) 
1528 {
1529         MonoClass *klass = field->parent;
1530         int i;
1531
1532         for (i = 0; i < klass->field.count; ++i) {
1533                 if (field == &klass->fields [i])
1534                         return MONO_TOKEN_FIELD_DEF | (klass->field.first + 1 + i);
1535         }
1536
1537         g_assert_not_reached ();
1538         return 0;
1539 }
1540
1541 static inline void
1542 encode_value (gint32 value, guint8 *buf, guint8 **endbuf)
1543 {
1544         guint8 *p = buf;
1545
1546         //printf ("ENCODE: %d 0x%x.\n", value, value);
1547
1548         /* 
1549          * Same encoding as the one used in the metadata, extended to handle values
1550          * greater than 0x1fffffff.
1551          */
1552         if ((value >= 0) && (value <= 127))
1553                 *p++ = value;
1554         else if ((value >= 0) && (value <= 16383)) {
1555                 p [0] = 0x80 | (value >> 8);
1556                 p [1] = value & 0xff;
1557                 p += 2;
1558         } else if ((value >= 0) && (value <= 0x1fffffff)) {
1559                 p [0] = (value >> 24) | 0xc0;
1560                 p [1] = (value >> 16) & 0xff;
1561                 p [2] = (value >> 8) & 0xff;
1562                 p [3] = value & 0xff;
1563                 p += 4;
1564         }
1565         else {
1566                 p [0] = 0xff;
1567                 p [1] = (value >> 24) & 0xff;
1568                 p [2] = (value >> 16) & 0xff;
1569                 p [3] = (value >> 8) & 0xff;
1570                 p [4] = value & 0xff;
1571                 p += 5;
1572         }
1573         if (endbuf)
1574                 *endbuf = p;
1575 }
1576
1577 static guint32
1578 get_image_index (MonoAotCompile *cfg, MonoImage *image)
1579 {
1580         guint32 index;
1581
1582         index = GPOINTER_TO_UINT (g_hash_table_lookup (cfg->image_hash, image));
1583         if (index)
1584                 return index - 1;
1585         else {
1586                 index = g_hash_table_size (cfg->image_hash);
1587                 g_hash_table_insert (cfg->image_hash, image, GUINT_TO_POINTER (index + 1));
1588                 g_ptr_array_add (cfg->image_table, image);
1589                 return index;
1590         }
1591 }
1592
1593 static guint32
1594 find_typespec_for_class (MonoAotCompile *acfg, MonoClass *klass)
1595 {
1596         int i;
1597         MonoClass *k = NULL;
1598
1599         /* FIXME: Search referenced images as well */
1600         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows; ++i) {
1601                 k = mono_class_get_full (acfg->image, MONO_TOKEN_TYPE_SPEC | (i + 1), NULL);
1602                 if (k == klass)
1603                         break;
1604         }
1605
1606         if (i < acfg->image->tables [MONO_TABLE_TYPESPEC].rows)
1607                 return MONO_TOKEN_TYPE_SPEC | (i + 1);
1608         else
1609                 return 0;
1610 }
1611
1612 static void
1613 encode_klass_ref (MonoAotCompile *acfg, MonoClass *klass, guint8 *buf, guint8 **endbuf)
1614 {
1615         if (klass->generic_class) {
1616                 guint32 token;
1617                 g_assert (klass->type_token);
1618
1619                 /* Find a typespec for a class if possible */
1620                 token = find_typespec_for_class (acfg, klass);
1621                 if (token) {
1622                         encode_value (token, buf, &buf);
1623                         encode_value (get_image_index (acfg, acfg->image), buf, &buf);
1624                 } else {
1625                         MonoClass *gclass = klass->generic_class->container_class;
1626                         MonoGenericInst *inst = klass->generic_class->context.class_inst;
1627                         int i;
1628
1629                         /* Encode it ourselves */
1630                         /* Marker */
1631                         encode_value (MONO_TOKEN_TYPE_SPEC, buf, &buf);
1632                         encode_klass_ref (acfg, gclass, buf, &buf);
1633                         encode_value (inst->type_argc, buf, &buf);
1634                         for (i = 0; i < inst->type_argc; ++i)
1635                                 encode_klass_ref (acfg, mono_class_from_mono_type (inst->type_argv [i]), buf, &buf);
1636                 }
1637         } else if (klass->type_token) {
1638                 g_assert (mono_metadata_token_code (klass->type_token) == MONO_TOKEN_TYPE_DEF);
1639                 encode_value (klass->type_token - MONO_TOKEN_TYPE_DEF, buf, &buf);
1640                 encode_value (get_image_index (acfg, klass->image), buf, &buf);
1641         } else {
1642                 /* Array class */
1643                 g_assert (klass->rank > 0);
1644                 encode_value (MONO_TOKEN_TYPE_DEF, buf, &buf);
1645                 encode_value (get_image_index (acfg, klass->image), buf, &buf);
1646                 encode_value (klass->rank, buf, &buf);
1647                 encode_klass_ref (acfg, klass->element_class, buf, &buf);
1648         }
1649         *endbuf = buf;
1650 }
1651
1652 static void
1653 encode_field_info (MonoAotCompile *cfg, MonoClassField *field, guint8 *buf, guint8 **endbuf)
1654 {
1655         guint32 token = mono_get_field_token (field);
1656
1657         encode_klass_ref (cfg, field->parent, buf, &buf);
1658         g_assert (mono_metadata_token_code (token) == MONO_TOKEN_FIELD_DEF);
1659         encode_value (token - MONO_TOKEN_FIELD_DEF, buf, &buf);
1660         *endbuf = buf;
1661 }
1662
1663 #if 0
1664 static guint32
1665 find_methodspec_for_method (MonoAotCompile *acfg, MonoMethod *method)
1666 {
1667         int i;
1668         MonoMethod *m = NULL;
1669
1670         /* FIXME: Search referenced images as well */
1671         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHODSPEC].rows; ++i) {
1672                 /* Since we don't compile generic methods, the context is empty */
1673                 m = mono_get_method_full (acfg->image, MONO_TOKEN_METHOD_SPEC | (i + 1), NULL, NULL);
1674                 if (m == method)
1675                         break;
1676         }
1677
1678         g_assert (i < acfg->image->tables [MONO_TABLE_METHODSPEC].rows);
1679
1680         return MONO_TOKEN_METHOD_SPEC | (i + 1);
1681 }
1682 #endif
1683
1684 static void
1685 encode_method_ref (MonoAotCompile *acfg, MonoMethod *method, guint8 *buf, guint8 **endbuf)
1686 {
1687         guint32 image_index = get_image_index (acfg, method->klass->image);
1688         guint32 token = method->token;
1689         MonoJumpInfoToken *ji;
1690
1691         g_assert (image_index < 255);
1692
1693         if (mono_method_signature (method)->is_inflated) {
1694                 /* 
1695                  * This is a generic method, find the original token which referenced it and
1696                  * encode that.
1697                  */
1698                 /* This doesn't work for some reason */
1699                 /*
1700                 image_index = get_image_index (acfg, acfg->image);
1701                 g_assert (image_index < 255);
1702                 token = find_methodspec_for_method (acfg, method);
1703                 */
1704                 /* Obtain the token from information recorded by the JIT */
1705                 ji = g_hash_table_lookup (acfg->token_info_hash, method);
1706                 g_assert (ji);
1707                 image_index = get_image_index (acfg, ji->image);
1708                 g_assert (image_index < 255);
1709                 token = ji->token;
1710
1711                 /* Marker */
1712                 encode_value ((255 << 24), buf, &buf);
1713                 encode_value (image_index, buf, &buf);
1714                 encode_value (token, buf, &buf);
1715         } else {
1716                 g_assert (mono_metadata_token_table (token) == MONO_TABLE_METHOD);
1717                 encode_value ((image_index << 24) | mono_metadata_token_index (token), buf, &buf);
1718         }
1719         *endbuf = buf;
1720 }
1721
1722 static gint
1723 compare_patches (gconstpointer a, gconstpointer b)
1724 {
1725         int i, j;
1726
1727         i = (*(MonoJumpInfo**)a)->ip.i;
1728         j = (*(MonoJumpInfo**)b)->ip.i;
1729
1730         if (i < j)
1731                 return -1;
1732         else
1733                 if (i > j)
1734                         return 1;
1735         else
1736                 return 0;
1737 }
1738
1739 static int
1740 get_plt_index (MonoAotCompile *acfg, MonoJumpInfo *patch_info)
1741 {
1742         int res = -1;
1743         int idx;
1744         GHashTable *hash = acfg->patch_to_plt_offset;
1745
1746         switch (patch_info->type) {
1747         case MONO_PATCH_INFO_METHOD:
1748         case MONO_PATCH_INFO_WRAPPER:
1749         case MONO_PATCH_INFO_INTERNAL_METHOD:
1750         case MONO_PATCH_INFO_CLASS_INIT: {
1751                 MonoJumpInfo *new_ji = mono_patch_info_dup_mp (acfg->mempool, patch_info);
1752                 gpointer patch_id = NULL;
1753
1754                 /* First check for an existing patch */
1755                 switch (patch_info->type) {
1756                 case MONO_PATCH_INFO_METHOD:
1757                         patch_id = patch_info->data.method;
1758                         break;
1759                 case MONO_PATCH_INFO_INTERNAL_METHOD:
1760                         patch_id = (gpointer)patch_info->data.name;
1761                         break;
1762                 case MONO_PATCH_INFO_CLASS_INIT:
1763                         patch_id = patch_info->data.klass;
1764                         break;
1765                 case MONO_PATCH_INFO_WRAPPER:
1766                         hash = acfg->patch_to_plt_offset_wrapper [patch_info->data.method->wrapper_type];
1767                         if (!hash) {
1768                                 acfg->patch_to_plt_offset_wrapper [patch_info->data.method->wrapper_type] = g_hash_table_new (NULL, NULL);
1769                                 hash = acfg->patch_to_plt_offset_wrapper [patch_info->data.method->wrapper_type];
1770                         }
1771                         patch_id = patch_info->data.method;
1772                         break;
1773                 default:
1774                         g_assert_not_reached ();
1775                 }
1776
1777                 if (patch_id) {
1778                         idx = GPOINTER_TO_UINT (g_hash_table_lookup (hash, patch_id));
1779                         if (idx)
1780                                 res = idx;
1781                         else
1782                                 g_hash_table_insert (hash, patch_id, GUINT_TO_POINTER (acfg->plt_offset));
1783                 }
1784
1785                 if (res == -1) {
1786                         res = acfg->plt_offset;
1787                         g_hash_table_insert (acfg->plt_offset_to_patch, GUINT_TO_POINTER (acfg->plt_offset), new_ji);
1788                         acfg->plt_offset ++;
1789                 }
1790
1791                 /* Nullify the patch */
1792                 patch_info->type = MONO_PATCH_INFO_NONE;
1793
1794                 return res;
1795         }
1796         default:
1797                 return -1;
1798         }
1799 }
1800
1801 /**
1802  * get_got_offset:
1803  *
1804  *   Returns the offset of the GOT slot where the runtime object resulting from resolving
1805  * JI could be found if it exists, otherwise allocates a new one.
1806  */
1807 static guint32
1808 get_got_offset (MonoAotCompile *acfg, MonoJumpInfo *ji)
1809 {
1810         guint32 got_offset;
1811
1812         got_offset = GPOINTER_TO_UINT (g_hash_table_lookup (acfg->patch_to_shared_got_offset, ji));
1813         if (got_offset)
1814                 return got_offset - 1;
1815
1816         got_offset = acfg->got_offset;
1817         acfg->got_offset ++;
1818
1819         acfg->stats.got_slots ++;
1820         acfg->stats.got_slot_types [ji->type] ++;
1821
1822         return got_offset;
1823 }
1824
1825 static guint32
1826 get_shared_got_offset (MonoAotCompile *acfg, MonoJumpInfo *ji)
1827 {
1828         MonoJumpInfo *copy;
1829         guint32 got_offset;
1830
1831         if (!g_hash_table_lookup (acfg->patch_to_shared_got_offset, ji)) {
1832                 got_offset = get_got_offset (acfg, ji);
1833                 copy = mono_patch_info_dup_mp (acfg->mempool, ji);
1834                 g_hash_table_insert (acfg->patch_to_shared_got_offset, copy, GUINT_TO_POINTER (got_offset + 1));
1835                 g_ptr_array_add (acfg->shared_patches, copy);
1836         }
1837
1838         return get_got_offset (acfg, ji);
1839 }
1840
1841 static guint32
1842 get_method_index (MonoAotCompile *acfg, MonoMethod *method)
1843 {
1844         int method_index = mono_metadata_token_index (method->token);
1845
1846         if (method_index == 0) {
1847                 MonoMethod *wrapped = g_hash_table_lookup (acfg->wrapper_to_method, method);
1848                 g_assert (wrapped);
1849                 method_index = mono_metadata_token_index (wrapped->token);
1850         }
1851
1852         return method_index;
1853 }
1854
1855 static void
1856 emit_method_code (MonoAotCompile *acfg, MonoCompile *cfg)
1857 {
1858         MonoMethod *method;
1859         int i, pindex, start_index, method_index;
1860         guint8 *code;
1861         char *symbol;
1862         int func_alignment = 16;
1863         GPtrArray *patches;
1864         MonoJumpInfo *patch_info;
1865         MonoMethodHeader *header;
1866         gboolean skip;
1867         guint32 got_slot;
1868
1869         method = cfg->method;
1870         code = cfg->native_code;
1871         header = mono_method_get_header (method);
1872
1873         method_index = get_method_index (acfg, method);
1874
1875         /* Make the labels local */
1876         symbol = g_strdup_printf (".Lm_%x", method_index);
1877
1878         emit_alignment (acfg, func_alignment);
1879         emit_label (acfg, symbol);
1880         if (acfg->aot_opts.write_symbols)
1881                 emit_global (acfg, symbol, TRUE);
1882
1883         if (cfg->verbose_level > 0)
1884                 g_print ("Method %s emitted as %s\n", mono_method_full_name (method, TRUE), symbol);
1885
1886         acfg->stats.code_size += cfg->code_len;
1887
1888         /* Collect and sort relocations */
1889         patches = g_ptr_array_new ();
1890         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next)
1891                 g_ptr_array_add (patches, patch_info);
1892         g_ptr_array_sort (patches, compare_patches);
1893
1894         acfg->method_got_offsets [method_index] = acfg->got_offset;
1895         start_index = 0;
1896         for (i = 0; i < cfg->code_len; i++) {
1897                 patch_info = NULL;
1898                 for (pindex = start_index; pindex < patches->len; ++pindex) {
1899                         patch_info = g_ptr_array_index (patches, pindex);
1900                         if (patch_info->ip.i >= i)
1901                                 break;
1902                 }
1903
1904 #ifdef MONO_ARCH_AOT_SUPPORTED
1905                 skip = FALSE;
1906                 if (patch_info && (patch_info->ip.i == i) && (pindex < patches->len)) {
1907                         start_index = pindex;
1908
1909                         switch (patch_info->type) {
1910                         case MONO_PATCH_INFO_LABEL:
1911                         case MONO_PATCH_INFO_BB:
1912                         case MONO_PATCH_INFO_NONE:
1913                                 break;
1914                         case MONO_PATCH_INFO_GOT_OFFSET: {
1915                                 guint32 offset = mono_arch_get_patch_offset (code + i);
1916                                 emit_bytes (acfg, code + i, offset);
1917                                 emit_symbol_diff (acfg, "got", ".", offset);
1918
1919                                 i += offset + 4 - 1;
1920                                 skip = TRUE;
1921                                 break;
1922                         }
1923                         default: {
1924                                 int plt_index;
1925                                 char *direct_call_target;
1926
1927                                 if (!is_got_patch (patch_info->type))
1928                                         break;
1929
1930                                 /*
1931                                  * If this patch is a call, try emitting a direct call instead of
1932                                  * through a PLT entry. This is possible if the called method is in
1933                                  * the same assembly and requires no initialization.
1934                                  */
1935                                 direct_call_target = NULL;
1936                                 if ((patch_info->type == MONO_PATCH_INFO_METHOD) && (patch_info->data.method->klass->image == cfg->method->klass->image)) {
1937                                         MonoCompile *callee_cfg = g_hash_table_lookup (acfg->method_to_cfg, patch_info->data.method);
1938                                         if (callee_cfg) {
1939                                                 guint32 callee_idx = mono_metadata_token_index (callee_cfg->method->token);
1940                                                 if (!acfg->has_got_slots [callee_idx] && (callee_cfg->method->klass->flags & TYPE_ATTRIBUTE_BEFORE_FIELD_INIT)) {
1941                                                         //printf ("DIRECT: %s %s\n", mono_method_full_name (cfg->method, TRUE), mono_method_full_name (callee_cfg->method, TRUE));
1942                                                         direct_call_target = g_strdup_printf (".Lm_%x", mono_metadata_token_index (callee_cfg->method->token));
1943                                                         patch_info->type = MONO_PATCH_INFO_NONE;
1944                                                         acfg->stats.direct_calls ++;
1945                                                 }
1946                                         }
1947
1948                                         acfg->stats.all_calls ++;
1949                                 }
1950
1951                                 if (!direct_call_target) {
1952                                         plt_index = get_plt_index (acfg, patch_info);
1953                                         if (plt_index != -1) {
1954                                                 /* This patch has a PLT entry, so we must emit a call to the PLT entry */
1955                                                 direct_call_target = g_strdup_printf (".Lp_%d", plt_index);
1956                                         }
1957                                 }
1958
1959                                 if (direct_call_target) {
1960 #if defined(__i386__) || defined(__x86_64__)
1961                                         g_assert (code [i] == 0xe8);
1962                                         /* Need to make sure this is exactly 5 bytes long */
1963                                         emit_byte (acfg, '\xe8');
1964                                         emit_symbol_diff (acfg, direct_call_target, ".", -4);
1965                                         i += 4;
1966 #elif defined(__arm__)
1967 #ifdef USE_BIN_WRITER
1968                                         /* FIXME: Can't encode this using the current symbol writer functions */
1969                                         g_assert_not_reached ();
1970 #else
1971                                         emit_unset_mode (acfg);
1972                                         fprintf (acfg->fp, "bl %s\n", direct_call_target);
1973                                         i += 4 - 1;
1974 #endif
1975 #endif
1976                                 } else {
1977                                         got_slot = get_got_offset (acfg, patch_info);
1978
1979                                         emit_bytes (acfg, code + i, mono_arch_get_patch_offset (code + i));
1980 #ifdef __x86_64__
1981                                         emit_symbol_diff (acfg, "got", ".", (unsigned int) ((got_slot * sizeof (gpointer)) - 4));
1982 #elif defined(__i386__)
1983                                         emit_int32 (acfg, (unsigned int) ((got_slot * sizeof (gpointer))));
1984 #elif defined(__arm__)
1985                                         emit_symbol_diff (acfg, "got", ".", (unsigned int) ((got_slot * sizeof (gpointer))) - 12);
1986 #else
1987                                         g_assert_not_reached ();
1988 #endif
1989                                         
1990                                         i += mono_arch_get_patch_offset (code + i) + 4 - 1;
1991                                 }
1992                                 skip = TRUE;
1993                         }
1994                         }
1995                 }
1996 #endif /* MONO_ARCH_AOT_SUPPORTED */
1997
1998                 if (!skip)
1999                         emit_bytes (acfg, code + i, 1);
2000         }
2001         emit_line (acfg);
2002 }
2003
2004 /**
2005  * encode_patch:
2006  *
2007  *  Encode PATCH_INFO into its disk representation. If SHARED is true, encode some types
2008  * of patches by allocating a GOT entry for them, and encode the GOT offset instead.
2009  */
2010 static void
2011 encode_patch (MonoAotCompile *acfg, MonoJumpInfo *patch_info, guint8 *buf, guint8 **endbuf, gboolean shared)
2012 {
2013         guint8 *p = buf;
2014
2015         switch (patch_info->type) {
2016         case MONO_PATCH_INFO_NONE:
2017                 break;
2018         case MONO_PATCH_INFO_IMAGE:
2019                 encode_value (get_image_index (acfg, patch_info->data.image), p, &p);
2020                 break;
2021         case MONO_PATCH_INFO_METHOD_REL:
2022                 encode_value ((gint)patch_info->data.offset, p, &p);
2023                 break;
2024         case MONO_PATCH_INFO_SWITCH: {
2025                 gpointer *table = (gpointer *)patch_info->data.table->table;
2026                 int k;
2027
2028                 encode_value (patch_info->data.table->table_size, p, &p);
2029                 for (k = 0; k < patch_info->data.table->table_size; k++)
2030                         encode_value ((int)(gssize)table [k], p, &p);
2031                 break;
2032         }
2033         case MONO_PATCH_INFO_METHODCONST:
2034         case MONO_PATCH_INFO_METHOD:
2035         case MONO_PATCH_INFO_METHOD_JUMP:
2036         case MONO_PATCH_INFO_ICALL_ADDR:
2037                 encode_method_ref (acfg, patch_info->data.method, p, &p);
2038                 break;
2039         case MONO_PATCH_INFO_INTERNAL_METHOD: {
2040                 guint32 len = strlen (patch_info->data.name);
2041
2042                 encode_value (len, p, &p);
2043
2044                 memcpy (p, patch_info->data.name, len);
2045                 p += len;
2046                 *p++ = '\0';
2047                 break;
2048         }
2049         case MONO_PATCH_INFO_LDSTR: {
2050                 guint32 image_index = get_image_index (acfg, patch_info->data.token->image);
2051                 guint32 token = patch_info->data.token->token;
2052                 g_assert (mono_metadata_token_code (token) == MONO_TOKEN_STRING);
2053                 encode_value (image_index, p, &p);
2054                 encode_value (patch_info->data.token->token - MONO_TOKEN_STRING, p, &p);
2055                 break;
2056         }
2057         case MONO_PATCH_INFO_RVA:
2058         case MONO_PATCH_INFO_DECLSEC:
2059         case MONO_PATCH_INFO_LDTOKEN:
2060         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
2061                 if (shared) {
2062                         guint32 offset = get_got_offset (acfg, patch_info);
2063                         encode_value (offset, p, &p);
2064                 } else {
2065                         encode_value (get_image_index (acfg, patch_info->data.token->image), p, &p);
2066                         encode_value (patch_info->data.token->token, p, &p);
2067                 }
2068                 break;
2069         case MONO_PATCH_INFO_EXC_NAME: {
2070                 MonoClass *ex_class;
2071
2072                 ex_class =
2073                         mono_class_from_name (mono_defaults.exception_class->image,
2074                                                                   "System", patch_info->data.target);
2075                 g_assert (ex_class);
2076                 encode_klass_ref (acfg, ex_class, p, &p);
2077                 break;
2078         }
2079         case MONO_PATCH_INFO_R4:
2080                 encode_value (*((guint32 *)patch_info->data.target), p, &p);
2081                 break;
2082         case MONO_PATCH_INFO_R8:
2083                 encode_value (*((guint32 *)patch_info->data.target), p, &p);
2084                 encode_value (*(((guint32 *)patch_info->data.target) + 1), p, &p);
2085                 break;
2086         case MONO_PATCH_INFO_VTABLE:
2087         case MONO_PATCH_INFO_CLASS:
2088         case MONO_PATCH_INFO_IID:
2089         case MONO_PATCH_INFO_ADJUSTED_IID:
2090                 if (shared) {
2091                         guint32 offset = get_got_offset (acfg, patch_info);
2092                         encode_value (offset, p, &p);
2093                 } else {
2094                         encode_klass_ref (acfg, patch_info->data.klass, p, &p);
2095                 }
2096                 break;
2097         case MONO_PATCH_INFO_CLASS_INIT:
2098         case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
2099                 encode_klass_ref (acfg, patch_info->data.klass, p, &p);
2100                 break;
2101         case MONO_PATCH_INFO_FIELD:
2102         case MONO_PATCH_INFO_SFLDA:
2103                 if (shared) {
2104                         guint32 offset = get_got_offset (acfg, patch_info);
2105                         encode_value (offset, p, &p);
2106                 } else {
2107                         encode_field_info (acfg, patch_info->data.field, p, &p);
2108                 }
2109                 break;
2110         case MONO_PATCH_INFO_WRAPPER:
2111                 encode_value (patch_info->data.method->wrapper_type, p, &p);
2112
2113                 switch (patch_info->data.method->wrapper_type) {
2114                 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK: {
2115                         MonoMethod *m;
2116                         guint32 image_index;
2117                         guint32 token;
2118
2119                         m = mono_marshal_method_from_wrapper (patch_info->data.method);
2120                         image_index = get_image_index (acfg, m->klass->image);
2121                         token = m->token;
2122                         g_assert (image_index < 256);
2123                         g_assert (mono_metadata_token_table (token) == MONO_TABLE_METHOD);
2124
2125                         encode_value ((image_index << 24) + (mono_metadata_token_index (token)), p, &p);
2126                         break;
2127                 }
2128                 case MONO_WRAPPER_PROXY_ISINST:
2129                 case MONO_WRAPPER_LDFLD:
2130                 case MONO_WRAPPER_LDFLDA:
2131                 case MONO_WRAPPER_STFLD:
2132                 case MONO_WRAPPER_LDFLD_REMOTE:
2133                 case MONO_WRAPPER_STFLD_REMOTE:
2134                 case MONO_WRAPPER_ISINST: {
2135                         MonoClass *proxy_class = (MonoClass*)mono_marshal_method_from_wrapper (patch_info->data.method);
2136                         encode_klass_ref (acfg, proxy_class, p, &p);
2137                         break;
2138                 }
2139                 case MONO_WRAPPER_ALLOC: {
2140                         int alloc_type = mono_gc_get_managed_allocator_type (patch_info->data.method);
2141                         g_assert (alloc_type != -1);
2142                         encode_value (alloc_type, p, &p);
2143                         break;
2144                 }
2145                 case MONO_WRAPPER_STELEMREF:
2146                         break;
2147                 default:
2148                         g_assert_not_reached ();
2149                 }
2150                 break;
2151         default:
2152                 g_warning ("unable to handle jump info %d", patch_info->type);
2153                 g_assert_not_reached ();
2154         }
2155
2156         *endbuf = p;
2157 }
2158
2159 static void
2160 emit_method_info (MonoAotCompile *acfg, MonoCompile *cfg)
2161 {
2162         MonoMethod *method;
2163         GList *l;
2164         int j, pindex, buf_size, n_patches;
2165         guint8 *code;
2166         char *symbol;
2167         GPtrArray *patches;
2168         MonoJumpInfo *patch_info;
2169         MonoMethodHeader *header;
2170         guint32 last_offset, method_index;
2171         guint8 *p, *buf;
2172         guint32 first_got_offset;
2173
2174         method = cfg->method;
2175         code = cfg->native_code;
2176         header = mono_method_get_header (method);
2177
2178         method_index = get_method_index (acfg, method);
2179
2180         /* Make the labels local */
2181         symbol = g_strdup_printf (".Lm_%x_p", method_index);
2182
2183         /* Sort relocations */
2184         patches = g_ptr_array_new ();
2185         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next)
2186                 g_ptr_array_add (patches, patch_info);
2187         g_ptr_array_sort (patches, compare_patches);
2188
2189         first_got_offset = acfg->method_got_offsets [method_index];
2190
2191         /**********************/
2192         /* Encode method info */
2193         /**********************/
2194
2195         buf_size = (patches->len < 1000) ? 40960 : 40960 + (patches->len * 64);
2196         p = buf = g_malloc (buf_size);
2197
2198         if (mono_class_get_cctor (method->klass))
2199                 encode_klass_ref (acfg, method->klass, p, &p);
2200         else
2201                 /* Not needed when loading the method */
2202                 encode_value (0, p, &p);
2203
2204         /* String table */
2205         if (cfg->opt & MONO_OPT_SHARED) {
2206                 encode_value (g_list_length (cfg->ldstr_list), p, &p);
2207                 for (l = cfg->ldstr_list; l; l = l->next) {
2208                         encode_value ((long)l->data, p, &p);
2209                 }
2210         }
2211         else
2212                 /* Used only in shared mode */
2213                 g_assert (!cfg->ldstr_list);
2214
2215         n_patches = 0;
2216         for (pindex = 0; pindex < patches->len; ++pindex) {
2217                 patch_info = g_ptr_array_index (patches, pindex);
2218                 
2219                 if ((patch_info->type == MONO_PATCH_INFO_LABEL) ||
2220                         (patch_info->type == MONO_PATCH_INFO_BB) ||
2221                         (patch_info->type == MONO_PATCH_INFO_GOT_OFFSET) ||
2222                         (patch_info->type == MONO_PATCH_INFO_NONE)) {
2223                         patch_info->type = MONO_PATCH_INFO_NONE;
2224                         /* Nothing to do */
2225                         continue;
2226                 }
2227
2228                 if ((patch_info->type == MONO_PATCH_INFO_IMAGE) && (patch_info->data.image == acfg->image)) {
2229                         /* Stored in a GOT slot initialized at module load time */
2230                         patch_info->type = MONO_PATCH_INFO_NONE;
2231                         continue;
2232                 }
2233
2234                 if ((patch_info->type == MONO_PATCH_INFO_METHOD) ||
2235                         (patch_info->type == MONO_PATCH_INFO_INTERNAL_METHOD) ||
2236                         (patch_info->type == MONO_PATCH_INFO_WRAPPER) ||
2237                         (patch_info->type == MONO_PATCH_INFO_CLASS_INIT)) {
2238                         /* Calls are made through the PLT */
2239                         patch_info->type = MONO_PATCH_INFO_NONE;
2240                         continue;
2241                 }
2242
2243                 n_patches ++;
2244         }
2245
2246         if (n_patches)
2247                 g_assert (acfg->has_got_slots [method_index]);
2248
2249         encode_value (n_patches, p, &p);
2250
2251         if (n_patches)
2252                 encode_value (first_got_offset, p, &p);
2253
2254         /* First encode the type+position table */
2255         last_offset = 0;
2256         j = 0;
2257         for (pindex = 0; pindex < patches->len; ++pindex) {
2258                 guint32 offset;
2259                 patch_info = g_ptr_array_index (patches, pindex);
2260                 
2261                 if (patch_info->type == MONO_PATCH_INFO_NONE)
2262                         /* Nothing to do */
2263                         continue;
2264
2265                 j ++;
2266                 //printf ("T: %d O: %d.\n", patch_info->type, patch_info->ip.i);
2267                 offset = patch_info->ip.i - last_offset;
2268                 last_offset = patch_info->ip.i;
2269
2270                 /* Only the type is needed */
2271                 *p = patch_info->type;
2272                 p++;
2273         }
2274
2275         /*
2276         if (n_patches) {
2277                 printf ("%s:\n", mono_method_full_name (cfg->method, TRUE));
2278                 for (pindex = 0; pindex < patches->len; ++pindex) {
2279                         patch_info = g_ptr_array_index (patches, pindex);
2280                         if (patch_info->type != MONO_PATCH_INFO_NONE) {
2281                                 printf ("\t%s", get_patch_name (patch_info->type));
2282                                 if (patch_info->type == MONO_PATCH_INFO_VTABLE)
2283                                         printf (": %s\n", patch_info->data.klass->name);
2284                                 else
2285                                         printf ("\n");
2286                         }
2287                 }
2288         }
2289         */
2290
2291         /* Then encode the other info */
2292         for (pindex = 0; pindex < patches->len; ++pindex) {
2293                 patch_info = g_ptr_array_index (patches, pindex);
2294
2295                 encode_patch (acfg, patch_info, p, &p, TRUE);
2296         }
2297
2298         acfg->stats.info_size += p - buf;
2299
2300         /* Emit method info */
2301
2302         emit_label (acfg, symbol);
2303
2304         g_assert (p - buf < buf_size);
2305         emit_bytes (acfg, buf, p - buf);
2306         g_free (buf);
2307
2308         g_free (symbol);
2309 }
2310
2311 static void
2312 emit_exception_debug_info (MonoAotCompile *acfg, MonoCompile *cfg)
2313 {
2314         MonoMethod *method;
2315         int k, buf_size, method_index;
2316         guint32 debug_info_size;
2317         guint8 *code;
2318         char *symbol;
2319         MonoMethodHeader *header;
2320         guint8 *p, *buf, *debug_info;
2321
2322         method = cfg->method;
2323         code = cfg->native_code;
2324         header = mono_method_get_header (method);
2325
2326         method_index = get_method_index (acfg, method);
2327
2328         /* Make the labels local */
2329         symbol = g_strdup_printf (".Le_%x_p", method_index);
2330
2331         buf_size = header->num_clauses * 256 + 128;
2332         p = buf = g_malloc (buf_size);
2333
2334         encode_value (cfg->code_len, p, &p);
2335         encode_value (cfg->used_int_regs, p, &p);
2336
2337         /* Exception table */
2338         if (header->num_clauses) {
2339                 MonoJitInfo *jinfo = cfg->jit_info;
2340
2341                 for (k = 0; k < header->num_clauses; ++k) {
2342                         MonoJitExceptionInfo *ei = &jinfo->clauses [k];
2343
2344                         encode_value (ei->exvar_offset, p, &p);
2345
2346                         if (ei->flags == MONO_EXCEPTION_CLAUSE_FILTER)
2347                                 encode_value ((gint)((guint8*)ei->data.filter - code), p, &p);
2348
2349                         encode_value ((gint)((guint8*)ei->try_start - code), p, &p);
2350                         encode_value ((gint)((guint8*)ei->try_end - code), p, &p);
2351                         encode_value ((gint)((guint8*)ei->handler_start - code), p, &p);
2352                 }
2353         }
2354
2355         mono_debug_serialize_debug_info (cfg, &debug_info, &debug_info_size);
2356
2357         encode_value (debug_info_size, p, &p);
2358         if (debug_info_size) {
2359                 memcpy (p, debug_info, debug_info_size);
2360                 p += debug_info_size;
2361                 g_free (debug_info);
2362         }
2363
2364         acfg->stats.ex_info_size += p - buf;
2365
2366         /* Emit info */
2367
2368         emit_label (acfg, symbol);
2369
2370         g_assert (p - buf < buf_size);
2371         emit_bytes (acfg, buf, p - buf);
2372         g_free (buf);
2373
2374         g_free (symbol);
2375 }
2376
2377 static void
2378 emit_klass_info (MonoAotCompile *acfg, guint32 token)
2379 {
2380         MonoClass *klass = mono_class_get (acfg->image, token);
2381         guint8 *p, *buf;
2382         int i, buf_size;
2383         char *label;
2384         gboolean no_special_static, cant_encode;
2385
2386         buf_size = 10240 + (klass->vtable_size * 16);
2387         p = buf = g_malloc (buf_size);
2388
2389         g_assert (klass);
2390
2391         mono_class_init (klass);
2392
2393         /* 
2394          * Emit all the information which is required for creating vtables so
2395          * the runtime does not need to create the MonoMethod structures which
2396          * take up a lot of space.
2397          */
2398
2399         no_special_static = !mono_class_has_special_static_fields (klass);
2400
2401         /* Check whenever we have enough info to encode the vtable */
2402         cant_encode = FALSE;
2403         for (i = 0; i < klass->vtable_size; ++i) {
2404                 MonoMethod *cm = klass->vtable [i];
2405
2406                 if (cm && mono_method_signature (cm)->is_inflated && !g_hash_table_lookup (acfg->token_info_hash, cm))
2407                         cant_encode = TRUE;
2408         }
2409
2410         if (klass->generic_container || cant_encode) {
2411                 encode_value (-1, p, &p);
2412         } else {
2413                 encode_value (klass->vtable_size, p, &p);
2414                 encode_value ((no_special_static << 7) | (klass->has_static_refs << 6) | (klass->has_references << 5) | ((klass->blittable << 4) | (klass->nested_classes ? 1 : 0) << 3) | (klass->has_cctor << 2) | (klass->has_finalize << 1) | klass->ghcimpl, p, &p);
2415                 if (klass->has_cctor)
2416                         encode_method_ref (acfg, mono_class_get_cctor (klass), p, &p);
2417                 if (klass->has_finalize)
2418                         encode_method_ref (acfg, mono_class_get_finalizer (klass), p, &p);
2419  
2420                 encode_value (klass->instance_size, p, &p);
2421                 encode_value (mono_class_data_size (klass), p, &p);
2422                 encode_value (klass->packing_size, p, &p);
2423                 encode_value (klass->min_align, p, &p);
2424
2425                 for (i = 0; i < klass->vtable_size; ++i) {
2426                         MonoMethod *cm = klass->vtable [i];
2427
2428                         if (cm)
2429                                 encode_method_ref (acfg, cm, p, &p);
2430                         else
2431                                 encode_value (0, p, &p);
2432                 }
2433         }
2434
2435         acfg->stats.class_info_size += p - buf;
2436
2437         /* Emit the info */
2438         label = g_strdup_printf (".LK_I_%x", token - MONO_TOKEN_TYPE_DEF - 1);
2439         emit_label (acfg, label);
2440
2441         g_assert (p - buf < buf_size);
2442         emit_bytes (acfg, buf, p - buf);
2443         g_free (buf);
2444 }
2445
2446 /*
2447  * Calls made from AOTed code are routed through a table of jumps similar to the
2448  * ELF PLT (Program Linkage Table). The differences are the following:
2449  * - the ELF PLT entries make an indirect jump though the GOT so they expect the
2450  *   GOT pointer to be in EBX. We want to avoid this, so our table contains direct
2451  *   jumps. This means the jumps need to be patched when the address of the callee is
2452  *   known. Initially the PLT entries jump to code which transfers control to the
2453  *   AOT runtime through the first PLT entry.
2454  */
2455 static void
2456 emit_plt (MonoAotCompile *acfg)
2457 {
2458         char *symbol;
2459         int i, buf_size;
2460         guint8 *p, *buf;
2461         guint32 *plt_info_offsets;
2462
2463         /*
2464          * Encode info need to resolve PLT entries.
2465          */
2466         buf_size = acfg->plt_offset * 128;
2467         p = buf = g_malloc (buf_size);
2468
2469         plt_info_offsets = g_new0 (guint32, acfg->plt_offset);
2470
2471         for (i = 1; i < acfg->plt_offset; ++i) {
2472                 MonoJumpInfo *patch_info = g_hash_table_lookup (acfg->plt_offset_to_patch, GUINT_TO_POINTER (i));
2473
2474                 plt_info_offsets [i] = p - buf;
2475                 encode_value (patch_info->type, p, &p);
2476                 encode_patch (acfg, patch_info, p, &p, FALSE);
2477         }
2478
2479         emit_line (acfg);
2480         symbol = g_strdup_printf ("plt");
2481
2482         /* This section will be made read-write by the AOT loader */
2483         emit_section_change (acfg, ".text", 0);
2484         emit_global (acfg, symbol, TRUE);
2485         emit_alignment (acfg, PAGESIZE);
2486         emit_label (acfg, symbol);
2487
2488 #if defined(USE_BIN_WRITER) && defined(__arm__)
2489         /* FIXME: */
2490         g_assert_not_reached ();
2491 #endif
2492
2493         /* 
2494          * The first plt entry is used to transfer code to the AOT loader. 
2495          */
2496         emit_label (acfg, ".Lp_0");
2497 #if defined(__i386__)
2498         /* It is filled up during loading by the AOT loader. */
2499         emit_zero_bytes (acfg, 16);
2500 #elif defined(__x86_64__)
2501         /* This should be exactly 16 bytes long */
2502         /* jmpq *<offset>(%rip) */
2503         emit_byte (acfg, '\xff');
2504         emit_byte (acfg, '\x25');
2505         emit_symbol_diff (acfg, "plt_jump_table", ".", -4);
2506         emit_zero_bytes (acfg, 10);
2507 #elif defined(__arm__)
2508         /* This is 8 bytes long, init_plt () depends on this */
2509         emit_unset_mode (acfg);
2510         fprintf (acfg->fp, "\tldr pc, [pc, #-4]\n");
2511         /* This is filled up during loading by the AOT loader */
2512         fprintf (acfg->fp, "\t.word 0\n");
2513 #else
2514         g_assert_not_reached ();
2515 #endif
2516
2517         for (i = 1; i < acfg->plt_offset; ++i) {
2518                 char *label;
2519
2520                 label = g_strdup_printf (".Lp_%d", i);
2521                 emit_label (acfg, label);
2522                 g_free (label);
2523 #if defined(__i386__)
2524                 /* Need to make sure this is 5 bytes long */
2525                 emit_byte (acfg, '\xe9');
2526                 label = g_strdup_printf (".Lpd_%d", i);
2527                 emit_symbol_diff (acfg, label, ".", -4);
2528                 g_free (label);
2529 #elif defined(__x86_64__)
2530                 /*
2531                  * We can't emit jumps because they are 32 bits only so they can't be patched.
2532                  * So we emit a jump table instead whose entries are patched by the AOT loader to
2533                  * point to .Lpd entries. ELF stores these in the GOT too, but we don't, since
2534                  * methods with GOT entries can't be called directly.
2535                  * We also emit the default PLT code here since the PLT code will not be patched.
2536                  * An x86_64 plt entry is 16 bytes long, init_plt () depends on this.
2537                  */
2538                 /* jmpq *<offset>(%rip) */
2539                 emit_byte (acfg, '\xff');
2540                 emit_byte (acfg, '\x25');
2541                 emit_symbol_diff (acfg, "plt_jump_table", ".", (i * sizeof (gpointer)) -4);
2542                 /* mov <plt info offset>, %eax */
2543                 emit_byte (acfg, '\xb8');
2544                 emit_int32 (acfg, plt_info_offsets [i]);
2545                 /* jmp .Lp_0 */
2546                 emit_byte (acfg, '\xe9');
2547                 emit_symbol_diff (acfg, ".Lp_0", ".", -4);
2548 #elif defined(__arm__)
2549                 /* 
2550                  * Emit an indirect call since branch displacements are limited to 24 bits on 
2551                  * ARM. Put the jump table entries inline since offsets are even smaller on
2552                  * ARM.
2553                  * FIXME:
2554                  * - optimize OP_AOTCONST implementation
2555                  * - optimize the PLT entries
2556                  * - optimize SWITCH AOT implementation
2557                  * - implement IMT support
2558                  */
2559                 /* This is 8 bytes long, init_plt () depends on this */
2560                 emit_unset_mode (acfg);
2561                 fprintf (acfg->fp, "\tldr pc, [pc, #-4]\n");
2562                 /* This is filled up during loading by the AOT loader */
2563                 fprintf (acfg->fp, "\t.word 0\n");
2564 #else
2565                 g_assert_not_reached ();
2566 #endif
2567         }
2568
2569         symbol = g_strdup_printf ("plt_end");
2570         emit_global (acfg, symbol, TRUE);
2571         emit_label (acfg, symbol);
2572
2573         /* 
2574          * Emit the default targets for the PLT entries separately since these will not
2575          * be modified at runtime.
2576          */
2577         for (i = 1; i < acfg->plt_offset; ++i) {
2578                 char *label;
2579
2580                 label = g_strdup_printf (".Lpd_%d", i);
2581                 emit_label (acfg, label);
2582                 g_free (label);
2583
2584                 /* Put the offset into the register expected by mono_aot_plt_trampoline */
2585 #if defined(__i386__)
2586                 /* movl $const, %eax */
2587                 emit_byte (acfg, '\xb8');
2588                 emit_int32 (acfg, plt_info_offsets [i]);
2589                 /* jmp .Lp_0 */
2590                 emit_byte (acfg, '\xe9');
2591                 emit_symbol_diff (acfg, ".Lp_0", ".", -4);
2592 #elif defined(__x86_64__)
2593                 /* Emitted along with the PLT entries since they will not be patched */
2594 #elif defined(__arm__)
2595                 /* This is 12 bytes long, init_plt () depends on this */
2596                 emit_unset_mode (acfg);
2597                 fprintf (acfg->fp, "\tldr ip, [pc, #0]\n");
2598                 fprintf (acfg->fp, "\tb .Lp_0\n");
2599                 fprintf (acfg->fp, "\t.word %d\n", plt_info_offsets [i]);
2600 #else
2601                 g_assert_not_reached ();
2602 #endif
2603         }
2604
2605         /* Emit PLT info */
2606         symbol = g_strdup_printf ("plt_info");
2607         emit_global (acfg, symbol, FALSE);
2608         emit_label (acfg, symbol);
2609
2610         g_assert (p - buf < buf_size);
2611         emit_bytes (acfg, buf, p - buf);
2612         g_free (buf);
2613
2614         symbol = g_strdup_printf ("plt_jump_table_addr");
2615         emit_section_change (acfg, ".data", 0);
2616         emit_global (acfg, symbol, FALSE);
2617         emit_alignment (acfg, 8);
2618         emit_label (acfg, symbol);
2619         emit_pointer (acfg, "plt_jump_table");
2620
2621         symbol = g_strdup_printf ("plt_jump_table_size");
2622         emit_section_change (acfg, ".data", 0);
2623         emit_global (acfg, symbol, FALSE);
2624         emit_alignment (acfg, 8);
2625         emit_label (acfg, symbol);
2626         emit_symbol_diff (acfg, "plt_jump_table_end", "plt_jump_table", 0);
2627
2628         /* Don't make this a global so accesses don't need relocations */
2629         symbol = g_strdup_printf ("plt_jump_table");
2630         emit_section_change (acfg, ".bss", 0);
2631         emit_label (acfg, symbol);
2632
2633 #ifdef __x86_64__
2634         emit_zero_bytes (acfg, (int)(acfg->plt_offset * sizeof (gpointer)));
2635 #endif  
2636
2637         symbol = g_strdup_printf ("plt_jump_table_end");
2638         emit_label (acfg, symbol);
2639 }
2640
2641 static gboolean
2642 str_begins_with (const char *str1, const char *str2)
2643 {
2644         int len = strlen (str2);
2645         return strncmp (str1, str2, len) == 0;
2646 }
2647
2648 static void
2649 mono_aot_parse_options (const char *aot_options, MonoAotOptions *opts)
2650 {
2651         gchar **args, **ptr;
2652
2653         memset (opts, 0, sizeof (*opts));
2654
2655         args = g_strsplit (aot_options ? aot_options : "", ",", -1);
2656         for (ptr = args; ptr && *ptr; ptr ++) {
2657                 const char *arg = *ptr;
2658
2659                 if (str_begins_with (arg, "outfile=")) {
2660                         opts->outfile = g_strdup (arg + strlen ("outfile="));
2661                 } else if (str_begins_with (arg, "save-temps")) {
2662                         opts->save_temps = TRUE;
2663                 } else if (str_begins_with (arg, "keep-temps")) {
2664                         opts->save_temps = TRUE;
2665                 } else if (str_begins_with (arg, "write-symbols")) {
2666                         opts->write_symbols = TRUE;
2667                 } else if (str_begins_with (arg, "metadata-only")) {
2668                         opts->metadata_only = TRUE;
2669                 } else if (str_begins_with (arg, "bind-to-runtime-version")) {
2670                         opts->bind_to_runtime_version = TRUE;
2671                 } else {
2672                         fprintf (stderr, "AOT : Unknown argument '%s'.\n", arg);
2673                         exit (1);
2674                 }
2675         }
2676 }
2677
2678 static void
2679 add_token_info_hash (gpointer key, gpointer value, gpointer user_data)
2680 {
2681         MonoMethod *method = (MonoMethod*)key;
2682         MonoJumpInfoToken *ji = (MonoJumpInfoToken*)value;
2683         MonoJumpInfoToken *new_ji = g_new0 (MonoJumpInfoToken, 1);
2684         MonoAotCompile *acfg = user_data;
2685
2686         new_ji->image = ji->image;
2687         new_ji->token = ji->token;
2688         g_hash_table_insert (acfg->token_info_hash, method, new_ji);
2689 }
2690
2691 static void
2692 compile_method (MonoAotCompile *acfg, int index)
2693 {
2694         MonoCompile *cfg;
2695         MonoMethod *method;
2696         MonoJumpInfo *patch_info;
2697         gboolean skip;
2698         guint32 token = MONO_TOKEN_METHOD_DEF | (index + 1);
2699         guint32 method_idx;
2700
2701         if (acfg->aot_opts.metadata_only)
2702                 return;
2703
2704         method = mono_get_method (acfg->image, token, NULL);
2705
2706         method_idx = mono_metadata_token_index (method->token); 
2707                 
2708         /* fixme: maybe we can also precompile wrapper methods */
2709         if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
2710                 (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) ||
2711                 (method->flags & METHOD_ATTRIBUTE_ABSTRACT)) {
2712                 //printf ("Skip (impossible): %s\n", mono_method_full_name (method, TRUE));
2713                 return;
2714         }
2715
2716         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL)
2717                 return;
2718
2719 #if 0
2720         if (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) {
2721                 /* Compile the wrapper instead */
2722                 MonoMethod *wrapper = mono_marshal_get_native_wrapper (method, check_for_pending_exc);
2723                 g_hash_table_insert (acfg->wrapper_to_method, wrapper, method);
2724                 method = wrapper;
2725         }
2726 #endif
2727
2728         acfg->stats.mcount++;
2729
2730         if (method->iflags & METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED) {
2731                 /* 
2732                  * FIXME: Enabling this causes virtual-sync.exe to fail, since the trampoline
2733                  * code can't determine that it needs to insert a sync wrapper in the AOT case.
2734                  */
2735                 return;
2736         }
2737
2738         //acfg->opts &= ~MONO_OPT_GSHARED;
2739
2740         if (!(acfg->opts & MONO_OPT_GSHARED)) {
2741                 if (method->generic_container || method->klass->generic_container) {
2742                         acfg->stats.genericcount ++;
2743                         return;
2744                 }
2745         }
2746
2747         /*
2748          * Since these methods are the only ones which are compiled with
2749          * AOT support, and they are not used by runtime startup/shutdown code,
2750          * the runtime will not see AOT methods during AOT compilation,so it
2751          * does not need to support them by creating a fake GOT etc.
2752          */
2753         cfg = mini_method_compile (method, acfg->opts, mono_get_root_domain (), FALSE, TRUE, 0);
2754         if (cfg->exception_type == MONO_EXCEPTION_GENERIC_SHARING_FAILED) {
2755                 //printf ("F: %s\n", mono_method_full_name (method, TRUE));
2756                 acfg->stats.genericcount ++;
2757                 return;
2758         }
2759         if (cfg->exception_type != MONO_EXCEPTION_NONE) {
2760                 /* Let the exception happen at runtime */
2761                 return;
2762         }
2763
2764         if (cfg->disable_aot) {
2765                 //printf ("Skip (other): %s\n", mono_method_full_name (method, TRUE));
2766                 acfg->stats.ocount++;
2767                 mono_destroy_compile (cfg);
2768                 return;
2769         }
2770
2771         /* Collect method->token associations from the cfg */
2772         g_hash_table_foreach (cfg->token_info_hash, add_token_info_hash, acfg);
2773
2774         skip = FALSE;
2775         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2776                 switch (patch_info->type) {
2777                 case MONO_PATCH_INFO_ABS:
2778                         /* unable to handle this */
2779                         //printf ("Skip (abs addr):   %s %d\n", mono_method_full_name (method, TRUE), patch_info->type);
2780                         skip = TRUE;    
2781                         break;
2782                 default:
2783                         break;
2784                 }
2785         }
2786
2787         if (skip) {
2788                 acfg->stats.abscount++;
2789                 mono_destroy_compile (cfg);
2790                 return;
2791         }
2792
2793         skip = FALSE;
2794         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2795                 if (patch_info->type == MONO_PATCH_INFO_METHOD_JUMP) {
2796                         /* 
2797                          * FIXME: We can't handle this because mono_jit_compile_method_inner will try
2798                          * to patch the AOT code when the target of the jump is compiled.
2799                          */
2800                         skip = TRUE;
2801                         break;
2802                 }
2803         }
2804
2805         if (skip) {
2806                 acfg->stats.ocount++;
2807                 mono_destroy_compile (cfg);
2808                 return;
2809         }
2810
2811         /* some wrappers are very common */
2812         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2813                 if (patch_info->type == MONO_PATCH_INFO_METHODCONST) {
2814                         switch (patch_info->data.method->wrapper_type) {
2815                         case MONO_WRAPPER_PROXY_ISINST:
2816                                 patch_info->type = MONO_PATCH_INFO_WRAPPER;
2817                         }
2818                 }
2819
2820                 if (patch_info->type == MONO_PATCH_INFO_METHOD) {
2821                         switch (patch_info->data.method->wrapper_type) {
2822                         case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK:
2823                         case MONO_WRAPPER_STFLD:
2824                         case MONO_WRAPPER_LDFLD:
2825                         case MONO_WRAPPER_LDFLDA:
2826                         case MONO_WRAPPER_LDFLD_REMOTE:
2827                         case MONO_WRAPPER_STFLD_REMOTE:
2828                         case MONO_WRAPPER_STELEMREF:
2829                         case MONO_WRAPPER_ISINST:
2830                         case MONO_WRAPPER_PROXY_ISINST:
2831                         case MONO_WRAPPER_ALLOC:
2832                                 patch_info->type = MONO_PATCH_INFO_WRAPPER;
2833                                 break;
2834                         }
2835                 }
2836         }
2837
2838         skip = FALSE;
2839         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2840                 switch (patch_info->type) {
2841                 case MONO_PATCH_INFO_METHOD:
2842                 case MONO_PATCH_INFO_METHODCONST:
2843                         if (patch_info->data.method->wrapper_type) {
2844                                 /* unable to handle this */
2845                                 //printf ("Skip (wrapper call):   %s %d -> %s\n", mono_method_full_name (method, TRUE), patch_info->type, mono_method_full_name (patch_info->data.method, TRUE));
2846                                 skip = TRUE;
2847                                 break;
2848                         }
2849                         if (!patch_info->data.method->token)
2850                                 /*
2851                                  * The method is part of a constructed type like Int[,].Set (). It doesn't
2852                                  * have a token, and we can't make one, since the parent type is part of
2853                                  * assembly which contains the element type, and not the assembly which
2854                                  * referenced this type.
2855                                  */
2856                                 skip = TRUE;
2857                         if (patch_info->data.method->is_inflated && !g_hash_table_lookup (acfg->token_info_hash, patch_info->data.method))
2858                                 /* FIXME: Can't encode these */
2859                                 skip = TRUE;
2860                         break;
2861                 case MONO_PATCH_INFO_VTABLE:
2862                 case MONO_PATCH_INFO_CLASS_INIT:
2863                 case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE:
2864                 case MONO_PATCH_INFO_CLASS:
2865                 case MONO_PATCH_INFO_IID:
2866                 case MONO_PATCH_INFO_ADJUSTED_IID:
2867                         if (!patch_info->data.klass->type_token)
2868                                 if (!patch_info->data.klass->element_class->type_token && !(patch_info->data.klass->element_class->rank && patch_info->data.klass->element_class->element_class->type_token))
2869                                         skip = TRUE;
2870                         break;
2871                 default:
2872                         break;
2873                 }
2874         }
2875
2876         if (skip) {
2877                 acfg->stats.wrappercount++;
2878                 mono_destroy_compile (cfg);
2879                 return;
2880         }
2881
2882         /* Determine whenever the method has GOT slots */
2883         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2884                 switch (patch_info->type) {
2885                 case MONO_PATCH_INFO_LABEL:
2886                 case MONO_PATCH_INFO_BB:
2887                 case MONO_PATCH_INFO_GOT_OFFSET:
2888                 case MONO_PATCH_INFO_NONE:
2889                 case MONO_PATCH_INFO_METHOD:
2890                 case MONO_PATCH_INFO_INTERNAL_METHOD:
2891                 case MONO_PATCH_INFO_WRAPPER:
2892                         break;
2893                 case MONO_PATCH_INFO_IMAGE:
2894                         if (patch_info->data.image == acfg->image)
2895                                 /* Stored in GOT slot 0 */
2896                                 break;
2897                         /* Fall through */
2898                 default:
2899                         acfg->has_got_slots [method_idx] = TRUE;
2900                         break;
2901                 }
2902         }
2903
2904         if (!acfg->has_got_slots [method_idx])
2905                 acfg->stats.methods_without_got_slots ++;
2906
2907         /* Make a copy of the patch info which is in the mempool */
2908         {
2909                 MonoJumpInfo *patches = NULL, *patches_end = NULL;
2910
2911                 for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
2912                         MonoJumpInfo *new_patch_info = mono_patch_info_dup_mp (acfg->mempool, patch_info);
2913
2914                         if (!patches)
2915                                 patches = new_patch_info;
2916                         else
2917                                 patches_end->next = new_patch_info;
2918                         patches_end = new_patch_info;
2919                 }
2920                 cfg->patch_info = patches;
2921         }
2922
2923         /* Free some fields used by cfg to conserve memory */
2924         mono_mempool_destroy (cfg->mempool);
2925         cfg->mempool = NULL;
2926         g_free (cfg->varinfo);
2927         cfg->varinfo = NULL;
2928         g_free (cfg->vars);
2929         cfg->vars = NULL;
2930         if (cfg->rs) {
2931                 mono_regstate_free (cfg->rs);
2932                 cfg->rs = NULL;
2933         }
2934
2935         //printf ("Compile:           %s\n", mono_method_full_name (method, TRUE));
2936
2937         acfg->cfgs [index] = cfg;
2938
2939         g_hash_table_insert (acfg->method_to_cfg, cfg->method, cfg);
2940
2941         acfg->stats.ccount++;
2942 }
2943
2944 static void
2945 load_profile_files (MonoAotCompile *acfg)
2946 {
2947         FILE *infile;
2948         char *tmp;
2949         int file_index, res, method_index, i;
2950         char ver [256];
2951         guint32 token;
2952         GList *unordered;
2953
2954         file_index = 0;
2955         while (TRUE) {
2956                 tmp = g_strdup_printf ("%s/.mono/aot-profile-data/%s-%s-%d", g_get_home_dir (), acfg->image->assembly_name, acfg->image->guid, file_index);
2957
2958                 if (!g_file_test (tmp, G_FILE_TEST_IS_REGULAR))
2959                         break;
2960
2961                 infile = fopen (tmp, "r");
2962                 g_assert (infile);
2963
2964                 printf ("Using profile data file '%s'\n", tmp);
2965
2966                 file_index ++;
2967
2968                 res = fscanf (infile, "%32s\n", ver);
2969                 if ((res != 1) || strcmp (ver, "#VER:1") != 0) {
2970                         printf ("Profile file has wrong version or invalid.\n");
2971                         fclose (infile);
2972                         continue;
2973                 }
2974
2975                 while (TRUE) {
2976                         res = fscanf (infile, "%d\n", &token);
2977                         if (res < 1)
2978                                 break;
2979
2980                         method_index = mono_metadata_token_index (token) - 1;
2981
2982                         if (!g_list_find (acfg->method_order, GUINT_TO_POINTER (method_index)))
2983                                 acfg->method_order = g_list_append (acfg->method_order, GUINT_TO_POINTER (method_index));
2984                 }
2985                 fclose (infile);
2986         }
2987
2988         /* Add missing methods */
2989         unordered = NULL;
2990         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
2991                 if (!g_list_find (acfg->method_order, GUINT_TO_POINTER (i)))
2992                         unordered = g_list_prepend (unordered, GUINT_TO_POINTER (i));
2993         }
2994         unordered = g_list_reverse (unordered);
2995         if (acfg->method_order)
2996                 g_list_last (acfg->method_order)->next = unordered;
2997         else
2998                 acfg->method_order = unordered;
2999 }
3000
3001 /**
3002  * alloc_got_slots:
3003  *
3004  *  Collect all patches which have shared GOT entries and alloc entries for them. The
3005  * rest will get entries allocated during emit_code ().
3006  */
3007 static void
3008 alloc_got_slots (MonoAotCompile *acfg)
3009 {
3010         int i;
3011         GList *l;
3012         MonoJumpInfo *ji;
3013
3014         /* Slot 0 is reserved for the address of the current assembly */
3015         ji = mono_mempool_alloc0 (acfg->mempool, sizeof (MonoAotCompile));
3016         ji->type = MONO_PATCH_INFO_IMAGE;
3017         ji->data.image = acfg->image;
3018
3019         get_shared_got_offset (acfg, ji);
3020
3021         for (l = acfg->method_order; l != NULL; l = l->next) {
3022                 i = GPOINTER_TO_UINT (l->data);
3023
3024                 if (acfg->cfgs [i]) {
3025                         MonoCompile *cfg = acfg->cfgs [i];
3026
3027                         for (ji = cfg->patch_info; ji; ji = ji->next) {
3028                                 switch (ji->type) {
3029                                 case MONO_PATCH_INFO_VTABLE:
3030                                 case MONO_PATCH_INFO_CLASS:
3031                                 case MONO_PATCH_INFO_IID:
3032                                 case MONO_PATCH_INFO_ADJUSTED_IID:
3033                                 case MONO_PATCH_INFO_FIELD:
3034                                 case MONO_PATCH_INFO_SFLDA:
3035                                 case MONO_PATCH_INFO_DECLSEC:
3036                                 case MONO_PATCH_INFO_LDTOKEN:
3037                                 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3038                                 case MONO_PATCH_INFO_RVA:
3039                                         get_shared_got_offset (acfg, ji);
3040                                         break;
3041                                 default:
3042                                         break;
3043                                 }
3044                         }
3045                 }
3046         }
3047 }
3048
3049 static void
3050 emit_code (MonoAotCompile *acfg)
3051 {
3052         int i;
3053         char *symbol;
3054         GList *l;
3055
3056         symbol = g_strdup_printf ("methods");
3057         emit_section_change (acfg, ".text", 0);
3058         emit_global (acfg, symbol, TRUE);
3059         emit_alignment (acfg, 8);
3060         emit_label (acfg, symbol);
3061
3062         for (l = acfg->method_order; l != NULL; l = l->next) {
3063                 i = GPOINTER_TO_UINT (l->data);
3064
3065                 if (acfg->cfgs [i])
3066                         emit_method_code (acfg, acfg->cfgs [i]);
3067         }
3068
3069         symbol = g_strdup_printf ("methods_end");
3070         emit_section_change (acfg, ".text", 0);
3071         emit_global (acfg, symbol, FALSE);
3072         emit_alignment (acfg, 8);
3073         emit_label (acfg, symbol);
3074
3075         symbol = g_strdup_printf ("method_offsets");
3076         emit_section_change (acfg, ".text", 1);
3077         emit_global (acfg, symbol, FALSE);
3078         emit_alignment (acfg, 8);
3079         emit_label (acfg, symbol);
3080
3081         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
3082                 if (acfg->cfgs [i]) {
3083                         symbol = g_strdup_printf (".Lm_%x", i + 1);
3084                         emit_symbol_diff (acfg, symbol, "methods", 0);
3085                 } else {
3086                         emit_int32 (acfg, 0xffffffff);
3087                 }
3088         }
3089         emit_line (acfg);
3090 }
3091
3092 static void
3093 emit_info (MonoAotCompile *acfg)
3094 {
3095         int i;
3096         char *symbol;
3097         GList *l;
3098
3099         /* Emit method info */
3100         symbol = g_strdup_printf ("method_info");
3101         emit_section_change (acfg, ".text", 1);
3102         emit_global (acfg, symbol, FALSE);
3103         emit_alignment (acfg, 8);
3104         emit_label (acfg, symbol);
3105
3106         /* To reduce size of generated assembly code */
3107         symbol = g_strdup_printf ("mi");
3108         emit_label (acfg, symbol);
3109
3110         for (l = acfg->method_order; l != NULL; l = l->next) {
3111                 i = GPOINTER_TO_UINT (l->data);
3112
3113                 if (acfg->cfgs [i])
3114                         emit_method_info (acfg, acfg->cfgs [i]);
3115         }
3116
3117         symbol = g_strdup_printf ("method_info_offsets");
3118         emit_section_change (acfg, ".text", 1);
3119         emit_global (acfg, symbol, FALSE);
3120         emit_alignment (acfg, 8);
3121         emit_label (acfg, symbol);
3122
3123         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
3124                 if (acfg->cfgs [i]) {
3125                         symbol = g_strdup_printf (".Lm_%x_p", i + 1);
3126                         emit_symbol_diff (acfg, symbol, "mi", 0);
3127                 } else {
3128                         emit_int32 (acfg, 0);
3129                 }
3130         }
3131         emit_line (acfg);
3132 }
3133
3134 static void
3135 emit_method_order (MonoAotCompile *acfg)
3136 {
3137         int i, index, len;
3138         char *symbol;
3139         GList *l;
3140
3141         symbol = g_strdup_printf ("method_order");
3142         emit_section_change (acfg, ".text", 1);
3143         emit_global (acfg, symbol, FALSE);
3144         emit_alignment (acfg, 8);
3145         emit_label (acfg, symbol);
3146
3147         /* First emit an index table */
3148         index = 0;
3149         len = 0;
3150         for (l = acfg->method_order; l != NULL; l = l->next) {
3151                 i = GPOINTER_TO_UINT (l->data);
3152
3153                 if (acfg->cfgs [i]) {
3154                         if ((index % 1024) == 0) {
3155                                 emit_int32 (acfg, i);
3156                         }
3157
3158                         index ++;
3159                 }
3160
3161                 len ++;
3162         }
3163         emit_int32 (acfg, 0xffffff);
3164
3165         /* Then emit the whole method order */
3166         for (l = acfg->method_order; l != NULL; l = l->next) {
3167                 i = GPOINTER_TO_UINT (l->data);
3168
3169                 if (acfg->cfgs [i]) {
3170                         emit_int32 (acfg, i);
3171                 }
3172         }       
3173         emit_line (acfg);
3174
3175         symbol = g_strdup_printf ("method_order_end");
3176         emit_section_change (acfg, ".text", 1);
3177         emit_global (acfg, symbol, FALSE);
3178         emit_label (acfg, symbol);
3179 }
3180
3181 static void
3182 emit_exception_info (MonoAotCompile *acfg)
3183 {
3184         int i;
3185         char *symbol;
3186
3187         symbol = g_strdup_printf ("ex_info");
3188         emit_section_change (acfg, ".text", 1);
3189         emit_global (acfg, symbol, FALSE);
3190         emit_alignment (acfg, 8);
3191         emit_label (acfg, symbol);
3192
3193         /* To reduce size of generated assembly */
3194         symbol = g_strdup_printf ("ex");
3195         emit_label (acfg, symbol);
3196
3197         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
3198                 if (acfg->cfgs [i])
3199                         emit_exception_debug_info (acfg, acfg->cfgs [i]);
3200         }
3201
3202         symbol = g_strdup_printf ("ex_info_offsets");
3203         emit_section_change (acfg, ".text", 1);
3204         emit_global (acfg, symbol, FALSE);
3205         emit_alignment (acfg, 8);
3206         emit_label (acfg, symbol);
3207
3208         for (i = 0; i < acfg->image->tables [MONO_TABLE_METHOD].rows; ++i) {
3209                 if (acfg->cfgs [i]) {
3210                         symbol = g_strdup_printf (".Le_%x_p", i + 1);
3211                         emit_symbol_diff (acfg, symbol, "ex", 0);
3212                 } else {
3213                         emit_int32 (acfg, 0);
3214                 }
3215         }
3216         emit_line (acfg);
3217 }
3218
3219 static void
3220 emit_class_info (MonoAotCompile *acfg)
3221 {
3222         int i;
3223         char *symbol;
3224
3225         symbol = g_strdup_printf ("class_info");
3226         emit_section_change (acfg, ".text", 1);
3227         emit_global (acfg, symbol, FALSE);
3228         emit_alignment (acfg, 8);
3229         emit_label (acfg, symbol);
3230
3231         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i)
3232                 emit_klass_info (acfg, MONO_TOKEN_TYPE_DEF | (i + 1));
3233
3234         symbol = g_strdup_printf ("class_info_offsets");
3235         emit_section_change (acfg, ".text", 1);
3236         emit_global (acfg, symbol, FALSE);
3237         emit_alignment (acfg, 8);
3238         emit_label (acfg, symbol);
3239
3240         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
3241                 symbol = g_strdup_printf (".LK_I_%x", i);
3242                 emit_symbol_diff (acfg, symbol, "class_info", 0);
3243         }
3244         emit_line (acfg);
3245 }
3246
3247 typedef struct ClassNameTableEntry {
3248         guint32 token, index;
3249         struct ClassNameTableEntry *next;
3250 } ClassNameTableEntry;
3251
3252 static void
3253 emit_class_name_table (MonoAotCompile *acfg)
3254 {
3255         int i, table_size;
3256         guint32 token, hash;
3257         MonoClass *klass;
3258         GPtrArray *table;
3259         char *full_name;
3260         char *symbol;
3261         ClassNameTableEntry *entry, *new_entry;
3262
3263         /*
3264          * Construct a chained hash table for mapping class names to typedef tokens.
3265          */
3266         table_size = g_spaced_primes_closest ((int)(acfg->image->tables [MONO_TABLE_TYPEDEF].rows * 1.5));
3267         table = g_ptr_array_sized_new (table_size);
3268         for (i = 0; i < table_size; ++i)
3269                 g_ptr_array_add (table, NULL);
3270         for (i = 0; i < acfg->image->tables [MONO_TABLE_TYPEDEF].rows; ++i) {
3271                 token = MONO_TOKEN_TYPE_DEF | (i + 1);
3272                 klass = mono_class_get (acfg->image, token);
3273                 full_name = mono_type_get_name_full (mono_class_get_type (klass), MONO_TYPE_NAME_FORMAT_FULL_NAME);
3274                 hash = g_str_hash (full_name) % table_size;
3275                 g_free (full_name);
3276
3277                 /* FIXME: Allocate from the mempool */
3278                 new_entry = g_new0 (ClassNameTableEntry, 1);
3279                 new_entry->token = token;
3280
3281                 entry = g_ptr_array_index (table, hash);
3282                 if (entry == NULL) {
3283                         new_entry->index = hash;
3284                         g_ptr_array_index (table, hash) = new_entry;
3285                 } else {
3286                         while (entry->next)
3287                                 entry = entry->next;
3288                         
3289                         entry->next = new_entry;
3290                         new_entry->index = table->len;
3291                         g_ptr_array_add (table, new_entry);
3292                 }
3293         }
3294
3295         /* Emit the table */
3296         symbol = g_strdup_printf ("class_name_table");
3297         emit_section_change (acfg, ".text", 0);
3298         emit_global (acfg, symbol, FALSE);
3299         emit_alignment (acfg, 8);
3300         emit_label (acfg, symbol);
3301
3302         /* FIXME: Optimize memory usage */
3303         g_assert (table_size < 65000);
3304         emit_int16 (acfg, table_size);
3305         g_assert (table->len < 65000);
3306         for (i = 0; i < table->len; ++i) {
3307                 ClassNameTableEntry *entry = g_ptr_array_index (table, i);
3308
3309                 if (entry == NULL) {
3310                         emit_int16 (acfg, 0);
3311                         emit_int16 (acfg, 0);
3312                 } else {
3313                         emit_int16 (acfg, mono_metadata_token_index (entry->token));
3314                         if (entry->next)
3315                                 emit_int16 (acfg, entry->next->index);
3316                         else
3317                                 emit_int16 (acfg, 0);
3318                 }
3319         }
3320 }
3321
3322 static void
3323 emit_image_table (MonoAotCompile *acfg)
3324 {
3325         int i;
3326         char *symbol;
3327
3328         /*
3329          * The image table is small but referenced in a lot of places.
3330          * So we emit it at once, and reference its elements by an index.
3331          */
3332
3333         symbol = g_strdup_printf ("mono_image_table");
3334         emit_section_change (acfg, ".text", 1);
3335         emit_global (acfg, symbol, FALSE);
3336         emit_alignment (acfg, 8);
3337         emit_label (acfg, symbol);
3338         emit_int32 (acfg, acfg->image_table->len);
3339         for (i = 0; i < acfg->image_table->len; i++) {
3340                 MonoImage *image = (MonoImage*)g_ptr_array_index (acfg->image_table, i);
3341                 MonoAssemblyName *aname = &image->assembly->aname;
3342
3343                 /* FIXME: Support multi-module assemblies */
3344                 g_assert (image->assembly->image == image);
3345
3346                 emit_string (acfg, image->assembly_name);
3347                 emit_string (acfg, image->guid);
3348                 emit_string (acfg, aname->culture ? aname->culture : "");
3349                 emit_string (acfg, (const char*)aname->public_key_token);
3350
3351                 emit_alignment (acfg, 8);
3352                 emit_int32 (acfg, aname->flags);
3353                 emit_int32 (acfg, aname->major);
3354                 emit_int32 (acfg, aname->minor);
3355                 emit_int32 (acfg, aname->build);
3356                 emit_int32 (acfg, aname->revision);
3357         }
3358 }
3359
3360 static void
3361 emit_got_info (MonoAotCompile *acfg)
3362 {
3363         char *symbol;
3364         int i, buf_size;
3365         guint8 *p, *buf;
3366         guint32 *got_info_offsets;
3367
3368         /**
3369          * FIXME: 
3370          * - optimize offsets table.
3371          * - reduce number of exported symbols.
3372          * - emit info for a klass only once.
3373          * - determine when a method uses a GOT slot which is guaranteed to be already 
3374          *   initialized.
3375          * - clean up and document the code.
3376          * - use String.Empty in class libs.
3377          */
3378
3379         /* Encode info required to decode shared GOT entries */
3380         buf_size = acfg->shared_patches->len * 64;
3381         p = buf = mono_mempool_alloc (acfg->mempool, buf_size);
3382         got_info_offsets = mono_mempool_alloc (acfg->mempool, acfg->shared_patches->len * sizeof (guint32));
3383         for (i = 0; i < acfg->shared_patches->len; ++i) {
3384                 MonoJumpInfo *ji = g_ptr_array_index (acfg->shared_patches, i);
3385
3386                 /* No need to encode the patch type */
3387                 got_info_offsets [i] = p - buf;
3388                 encode_patch (acfg, ji, p, &p, FALSE);
3389         }
3390
3391         g_assert (p - buf <= buf_size);
3392
3393         acfg->stats.got_info_size = p - buf;
3394
3395         /* Emit got_info table */
3396         symbol = g_strdup_printf ("got_info");
3397         emit_section_change (acfg, ".text", 1);
3398         emit_global (acfg, symbol, FALSE);
3399         emit_alignment (acfg, 8);
3400         emit_label (acfg, symbol);
3401
3402         emit_bytes (acfg, buf, p - buf);
3403
3404         /* Emit got_info_offsets table */
3405         symbol = g_strdup_printf ("got_info_offsets");
3406         emit_section_change (acfg, ".text", 1);
3407         emit_global (acfg, symbol, FALSE);
3408         emit_alignment (acfg, 8);
3409         emit_label (acfg, symbol);
3410
3411         for (i = 0; i < acfg->shared_patches->len; ++i)
3412                 emit_int32 (acfg, got_info_offsets [i]);
3413
3414         acfg->stats.got_info_offsets_size = acfg->shared_patches->len * 4;
3415 }
3416
3417 static void
3418 emit_got (MonoAotCompile *acfg)
3419 {
3420         char *symbol;
3421
3422         /* Don't make GOT global so accesses to it don't need relocations */
3423         symbol = g_strdup_printf ("got");
3424         emit_section_change (acfg, ".bss", 1);
3425         emit_alignment (acfg, 8);
3426         emit_label (acfg, symbol);
3427         if (acfg->got_offset > 0)
3428                 emit_zero_bytes (acfg, (int)(acfg->got_offset * sizeof (gpointer)));
3429
3430         symbol = g_strdup_printf ("got_addr");
3431         emit_section_change (acfg, ".data", 1);
3432         emit_global (acfg, symbol, FALSE);
3433         emit_alignment (acfg, 8);
3434         emit_label (acfg, symbol);
3435         emit_pointer (acfg, "got");
3436
3437         symbol = g_strdup_printf ("got_size");
3438         emit_section_change (acfg, ".data", 1);
3439         emit_global (acfg, symbol, FALSE);
3440         emit_alignment (acfg, 8);
3441         emit_label (acfg, symbol);
3442         emit_int32 (acfg, (int)(acfg->got_offset * sizeof (gpointer)));
3443 }
3444
3445 static void
3446 emit_globals (MonoAotCompile *acfg)
3447 {
3448         char *opts_str;
3449
3450         emit_string_symbol (acfg, "mono_assembly_guid" , acfg->image->guid);
3451
3452         emit_string_symbol (acfg, "mono_aot_version", MONO_AOT_FILE_VERSION);
3453
3454         opts_str = g_strdup_printf ("%d", acfg->opts);
3455         emit_string_symbol (acfg, "mono_aot_opt_flags", opts_str);
3456         g_free (opts_str);
3457
3458         if (acfg->aot_opts.bind_to_runtime_version)
3459                 emit_string_symbol (acfg, "mono_runtime_version", FULL_VERSION);
3460         else
3461                 emit_string_symbol (acfg, "mono_runtime_version", "");
3462 }
3463
3464 int
3465 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
3466 {
3467         MonoImage *image = ass->image;
3468         char *symbol;
3469         int i;
3470         MonoAotCompile *acfg;
3471         MonoCompile **cfgs;
3472
3473         printf ("Mono Ahead of Time compiler - compiling assembly %s\n", image->name);
3474
3475         acfg = g_new0 (MonoAotCompile, 1);
3476         acfg->plt_offset_to_patch = g_hash_table_new (NULL, NULL);
3477         acfg->patch_to_plt_offset = g_hash_table_new (NULL, NULL);
3478         acfg->patch_to_plt_offset_wrapper = g_malloc0 (sizeof (GHashTable*) * 128);
3479         acfg->patch_to_shared_got_offset = g_hash_table_new (mono_patch_info_hash, mono_patch_info_equal);
3480         acfg->shared_patches = g_ptr_array_new ();
3481         acfg->method_to_cfg = g_hash_table_new (NULL, NULL);
3482         acfg->wrapper_to_method = g_hash_table_new (NULL, NULL);
3483         acfg->token_info_hash = g_hash_table_new (NULL, NULL);
3484         acfg->image_hash = g_hash_table_new (NULL, NULL);
3485         acfg->image_table = g_ptr_array_new ();
3486         acfg->image = image;
3487         acfg->opts = opts;
3488         acfg->mempool = mono_mempool_new ();
3489
3490         mono_aot_parse_options (aot_options, &acfg->aot_opts);
3491
3492         load_profile_files (acfg);
3493
3494         emit_start (acfg);
3495
3496         cfgs = g_new0 (MonoCompile*, image->tables [MONO_TABLE_METHOD].rows + 32);
3497         acfg->cfgs = cfgs;
3498         acfg->nmethods = image->tables [MONO_TABLE_METHOD].rows;
3499         acfg->method_got_offsets = g_new0 (guint32, image->tables [MONO_TABLE_METHOD].rows + 32);
3500         acfg->has_got_slots = g_new0 (gboolean, image->tables [MONO_TABLE_METHOD].rows + 32);
3501
3502         /* PLT offset 0 is reserved for the PLT trampoline */
3503         acfg->plt_offset = 1;
3504
3505         /* Compile methods */
3506         for (i = 0; i < acfg->nmethods; ++i)
3507                 compile_method (acfg, i);
3508
3509         alloc_got_slots (acfg);
3510
3511         emit_code (acfg);
3512
3513         emit_info (acfg);
3514
3515         emit_method_order (acfg);
3516
3517         emit_class_name_table (acfg);
3518
3519         emit_got_info (acfg);
3520
3521         emit_exception_info (acfg);
3522
3523         emit_class_info (acfg);
3524
3525         emit_plt (acfg);
3526
3527         emit_image_table (acfg);
3528
3529         emit_got (acfg);
3530
3531         emit_globals (acfg);
3532
3533         symbol = g_strdup_printf ("mem_end");
3534         emit_section_change (acfg, ".text", 1);
3535         emit_global (acfg, symbol, FALSE);
3536         emit_alignment (acfg, 8);
3537         emit_label (acfg, symbol);
3538
3539         printf ("Code: %d Info: %d Ex Info: %d Class Info: %d PLT: %d GOT Info: %d GOT Info Offsets: %d GOT: %d\n", acfg->stats.code_size, acfg->stats.info_size, acfg->stats.ex_info_size, acfg->stats.class_info_size, acfg->plt_offset, acfg->stats.got_info_size, acfg->stats.got_info_offsets_size, (int)(acfg->got_offset * sizeof (gpointer)));
3540
3541         emit_writeout (acfg);
3542
3543         printf ("Compiled %d out of %d methods (%d%%)\n", acfg->stats.ccount, acfg->stats.mcount, acfg->stats.mcount ? (acfg->stats.ccount * 100) / acfg->stats.mcount : 100);
3544         printf ("%d methods are generic (%d%%)\n", acfg->stats.genericcount, acfg->stats.mcount ? (acfg->stats.genericcount * 100) / acfg->stats.mcount : 100);
3545         printf ("%d methods contain absolute addresses (%d%%)\n", acfg->stats.abscount, acfg->stats.mcount ? (acfg->stats.abscount * 100) / acfg->stats.mcount : 100);
3546         printf ("%d methods contain wrapper references (%d%%)\n", acfg->stats.wrappercount, acfg->stats.mcount ? (acfg->stats.wrappercount * 100) / acfg->stats.mcount : 100);
3547         printf ("%d methods contain lmf pointers (%d%%)\n", acfg->stats.lmfcount, acfg->stats.mcount ? (acfg->stats.lmfcount * 100) / acfg->stats.mcount : 100);
3548         printf ("%d methods have other problems (%d%%)\n", acfg->stats.ocount, acfg->stats.mcount ? (acfg->stats.ocount * 100) / acfg->stats.mcount : 100);
3549         printf ("Methods without GOT slots: %d (%d%%)\n", acfg->stats.methods_without_got_slots, acfg->stats.mcount ? (acfg->stats.methods_without_got_slots * 100) / acfg->stats.mcount : 100);
3550         printf ("Direct calls: %d (%d%%)\n", acfg->stats.direct_calls, acfg->stats.all_calls ? (acfg->stats.direct_calls * 100) / acfg->stats.all_calls : 100);
3551
3552         printf ("GOT slot distribution:\n");
3553         for (i = 0; i < MONO_PATCH_INFO_NONE; ++i)
3554                 if (acfg->stats.got_slot_types [i])
3555                         printf ("\t%s: %d\n", get_patch_name (i), acfg->stats.got_slot_types [i]);
3556
3557         return 0;
3558 }
3559
3560 #else
3561
3562 /* AOT disabled */
3563
3564 int
3565 mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options)
3566 {
3567         return 0;
3568 }
3569
3570 #endif