]> git.proxmox.com Git - qemu.git/blame - dyngen.c
update
[qemu.git] / dyngen.c
CommitLineData
7d13299d
FB
1/*
2 * Generic Dynamic compiler generator
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
367e86e8
FB
20#include <stdlib.h>
21#include <stdio.h>
04369ff2 22#include <string.h>
367e86e8
FB
23#include <stdarg.h>
24#include <inttypes.h>
367e86e8
FB
25#include <unistd.h>
26#include <fcntl.h>
27
ce11fedc
FB
28#include "config.h"
29
30/* elf format definitions. We use these macros to test the CPU to
31 allow cross compilation (this tool must be ran on the build
32 platform) */
33#if defined(HOST_I386)
34
35#define ELF_CLASS ELFCLASS32
36#define ELF_ARCH EM_386
37#define elf_check_arch(x) ( ((x) == EM_386) || ((x) == EM_486) )
38#undef ELF_USES_RELOCA
39
40#elif defined(HOST_PPC)
41
42#define ELF_CLASS ELFCLASS32
43#define ELF_ARCH EM_PPC
44#define elf_check_arch(x) ((x) == EM_PPC)
45#define ELF_USES_RELOCA
46
47#elif defined(HOST_S390)
48
49#define ELF_CLASS ELFCLASS32
50#define ELF_ARCH EM_S390
51#define elf_check_arch(x) ((x) == EM_S390)
52#define ELF_USES_RELOCA
367e86e8 53
ce11fedc
FB
54#elif defined(HOST_ALPHA)
55
56#define ELF_CLASS ELFCLASS64
57#define ELF_ARCH EM_ALPHA
58#define elf_check_arch(x) ((x) == EM_ALPHA)
59#define ELF_USES_RELOCA
60
efdea7bf
FB
61#elif defined(HOST_IA64)
62
63#define ELF_CLASS ELFCLASS64
64#define ELF_ARCH EM_IA_64
65#define elf_check_arch(x) ((x) == EM_IA_64)
66#define ELF_USES_RELOCA
67
d014c98c
FB
68#elif defined(HOST_SPARC)
69
70#define ELF_CLASS ELFCLASS32
71#define ELF_ARCH EM_SPARC
72#define elf_check_arch(x) ((x) == EM_SPARC || (x) == EM_SPARC32PLUS)
73#define ELF_USES_RELOCA
74
75#elif defined(HOST_SPARC64)
76
77#define ELF_CLASS ELFCLASS64
78#define ELF_ARCH EM_SPARCV9
79#define elf_check_arch(x) ((x) == EM_SPARCV9)
80#define ELF_USES_RELOCA
81
ff1f20a3
FB
82#elif defined(HOST_ARM)
83
84#define ELF_CLASS ELFCLASS32
85#define ELF_ARCH EM_ARM
86#define elf_check_arch(x) ((x) == EM_ARM)
87#define ELF_USES_RELOC
88
ce11fedc
FB
89#else
90#error unsupported CPU - please update the code
91#endif
92
efdea7bf
FB
93#include "elf.h"
94
ce11fedc
FB
95#if ELF_CLASS == ELFCLASS32
96typedef int32_t host_long;
97typedef uint32_t host_ulong;
efdea7bf 98#define swabls(x) swab32s(x)
ce11fedc
FB
99#else
100typedef int64_t host_long;
101typedef uint64_t host_ulong;
efdea7bf 102#define swabls(x) swab64s(x)
fb3e5849
FB
103#endif
104
fe319756
FB
105#ifdef ELF_USES_RELOCA
106#define SHT_RELOC SHT_RELA
107#else
108#define SHT_RELOC SHT_REL
109#endif
110
ce11fedc
FB
111#include "thunk.h"
112
d219f7e7
FB
113enum {
114 OUT_GEN_OP,
115 OUT_CODE,
116 OUT_INDEX_OP,
117};
118
367e86e8 119/* all dynamically generated functions begin with this code */
dc99065b 120#define OP_PREFIX "op_"
367e86e8 121
ce11fedc 122int elf_must_swap(struct elfhdr *h)
367e86e8
FB
123{
124 union {
125 uint32_t i;
126 uint8_t b[4];
127 } swaptest;
128
129 swaptest.i = 1;
130 return (h->e_ident[EI_DATA] == ELFDATA2MSB) !=
131 (swaptest.b[0] == 0);
132}
133
134void swab16s(uint16_t *p)
135{
136 *p = bswap16(*p);
137}
138
139void swab32s(uint32_t *p)
140{
141 *p = bswap32(*p);
142}
143
ce11fedc 144void swab64s(uint64_t *p)
367e86e8
FB
145{
146 *p = bswap64(*p);
147}
148
ce11fedc 149void elf_swap_ehdr(struct elfhdr *h)
367e86e8
FB
150{
151 swab16s(&h->e_type); /* Object file type */
152 swab16s(&h-> e_machine); /* Architecture */
153 swab32s(&h-> e_version); /* Object file version */
ce11fedc
FB
154 swabls(&h-> e_entry); /* Entry point virtual address */
155 swabls(&h-> e_phoff); /* Program header table file offset */
156 swabls(&h-> e_shoff); /* Section header table file offset */
367e86e8
FB
157 swab32s(&h-> e_flags); /* Processor-specific flags */
158 swab16s(&h-> e_ehsize); /* ELF header size in bytes */
159 swab16s(&h-> e_phentsize); /* Program header table entry size */
160 swab16s(&h-> e_phnum); /* Program header table entry count */
161 swab16s(&h-> e_shentsize); /* Section header table entry size */
162 swab16s(&h-> e_shnum); /* Section header table entry count */
163 swab16s(&h-> e_shstrndx); /* Section header string table index */
164}
165
ce11fedc 166void elf_swap_shdr(struct elf_shdr *h)
367e86e8
FB
167{
168 swab32s(&h-> sh_name); /* Section name (string tbl index) */
169 swab32s(&h-> sh_type); /* Section type */
ce11fedc
FB
170 swabls(&h-> sh_flags); /* Section flags */
171 swabls(&h-> sh_addr); /* Section virtual addr at execution */
172 swabls(&h-> sh_offset); /* Section file offset */
173 swabls(&h-> sh_size); /* Section size in bytes */
367e86e8
FB
174 swab32s(&h-> sh_link); /* Link to another section */
175 swab32s(&h-> sh_info); /* Additional section information */
ce11fedc
FB
176 swabls(&h-> sh_addralign); /* Section alignment */
177 swabls(&h-> sh_entsize); /* Entry size if section holds table */
367e86e8
FB
178}
179
ce11fedc 180void elf_swap_phdr(struct elf_phdr *h)
367e86e8
FB
181{
182 swab32s(&h->p_type); /* Segment type */
ce11fedc
FB
183 swabls(&h->p_offset); /* Segment file offset */
184 swabls(&h->p_vaddr); /* Segment virtual address */
185 swabls(&h->p_paddr); /* Segment physical address */
186 swabls(&h->p_filesz); /* Segment size in file */
187 swabls(&h->p_memsz); /* Segment size in memory */
367e86e8 188 swab32s(&h->p_flags); /* Segment flags */
ce11fedc 189 swabls(&h->p_align); /* Segment alignment */
367e86e8
FB
190}
191
fe319756
FB
192void elf_swap_rel(ELF_RELOC *rel)
193{
194 swabls(&rel->r_offset);
195 swabls(&rel->r_info);
196#ifdef ELF_USES_RELOCA
197 swabls(&rel->r_addend);
198#endif
199}
200
d4e8164f 201/* ELF file info */
367e86e8 202int do_swap;
d4e8164f 203struct elf_shdr *shdr;
fe319756 204uint8_t **sdata;
d4e8164f
FB
205struct elfhdr ehdr;
206ElfW(Sym) *symtab;
207int nb_syms;
208char *strtab;
fe319756 209int text_shndx;
367e86e8
FB
210
211uint16_t get16(uint16_t *p)
212{
213 uint16_t val;
214 val = *p;
215 if (do_swap)
216 val = bswap16(val);
217 return val;
218}
219
220uint32_t get32(uint32_t *p)
221{
222 uint32_t val;
223 val = *p;
224 if (do_swap)
225 val = bswap32(val);
226 return val;
227}
228
229void put16(uint16_t *p, uint16_t val)
230{
231 if (do_swap)
232 val = bswap16(val);
233 *p = val;
234}
235
236void put32(uint32_t *p, uint32_t val)
237{
238 if (do_swap)
239 val = bswap32(val);
240 *p = val;
241}
242
efdea7bf 243void __attribute__((noreturn)) __attribute__((format (printf, 1, 2))) error(const char *fmt, ...)
367e86e8
FB
244{
245 va_list ap;
246 va_start(ap, fmt);
247 fprintf(stderr, "dyngen: ");
248 vfprintf(stderr, fmt, ap);
249 fprintf(stderr, "\n");
250 va_end(ap);
251 exit(1);
252}
253
254
ce11fedc
FB
255struct elf_shdr *find_elf_section(struct elf_shdr *shdr, int shnum, const char *shstr,
256 const char *name)
367e86e8
FB
257{
258 int i;
259 const char *shname;
ce11fedc 260 struct elf_shdr *sec;
367e86e8
FB
261
262 for(i = 0; i < shnum; i++) {
263 sec = &shdr[i];
264 if (!sec->sh_name)
265 continue;
266 shname = shstr + sec->sh_name;
267 if (!strcmp(shname, name))
268 return sec;
269 }
270 return NULL;
271}
272
fe319756
FB
273int find_reloc(int sh_index)
274{
275 struct elf_shdr *sec;
276 int i;
277
278 for(i = 0; i < ehdr.e_shnum; i++) {
279 sec = &shdr[i];
280 if (sec->sh_type == SHT_RELOC && sec->sh_info == sh_index)
281 return i;
282 }
283 return 0;
284}
285
367e86e8
FB
286void *load_data(int fd, long offset, unsigned int size)
287{
288 char *data;
289
290 data = malloc(size);
291 if (!data)
292 return NULL;
293 lseek(fd, offset, SEEK_SET);
294 if (read(fd, data, size) != size) {
295 free(data);
296 return NULL;
297 }
298 return data;
299}
300
301int strstart(const char *str, const char *val, const char **ptr)
302{
303 const char *p, *q;
304 p = str;
305 q = val;
306 while (*q != '\0') {
307 if (*p != *q)
308 return 0;
309 p++;
310 q++;
311 }
312 if (ptr)
313 *ptr = p;
314 return 1;
315}
316
ff1f20a3
FB
317#ifdef HOST_ARM
318
319int arm_emit_ldr_info(const char *name, unsigned long start_offset,
320 FILE *outfile, uint8_t *p_start, uint8_t *p_end,
321 ELF_RELOC *relocs, int nb_relocs)
322{
323 uint8_t *p;
324 uint32_t insn;
325 int offset, min_offset, pc_offset, data_size;
326 uint8_t data_allocated[1024];
327 unsigned int data_index;
328
329 memset(data_allocated, 0, sizeof(data_allocated));
330
331 p = p_start;
332 min_offset = p_end - p_start;
333 while (p < p_start + min_offset) {
334 insn = get32((uint32_t *)p);
335 if ((insn & 0x0d5f0000) == 0x051f0000) {
336 /* ldr reg, [pc, #im] */
337 offset = insn & 0xfff;
338 if (!(insn & 0x00800000))
339 offset = -offset;
340 if ((offset & 3) !=0)
341 error("%s:%04x: ldr pc offset must be 32 bit aligned",
342 name, start_offset + p - p_start);
343 pc_offset = p - p_start + offset + 8;
344 if (pc_offset <= (p - p_start) ||
345 pc_offset >= (p_end - p_start))
346 error("%s:%04x: ldr pc offset must point inside the function code",
347 name, start_offset + p - p_start);
348 if (pc_offset < min_offset)
349 min_offset = pc_offset;
350 if (outfile) {
351 /* ldr position */
352 fprintf(outfile, " arm_ldr_ptr->ptr = gen_code_ptr + %d;\n",
353 p - p_start);
354 /* ldr data index */
355 data_index = ((p_end - p_start) - pc_offset - 4) >> 2;
356 fprintf(outfile, " arm_ldr_ptr->data_ptr = arm_data_ptr + %d;\n",
357 data_index);
358 fprintf(outfile, " arm_ldr_ptr++;\n");
359 if (data_index >= sizeof(data_allocated))
360 error("%s: too many data", name);
361 if (!data_allocated[data_index]) {
362 ELF_RELOC *rel;
363 int i, addend, type;
364 const char *sym_name, *p;
365 char relname[1024];
366
367 data_allocated[data_index] = 1;
368
369 /* data value */
370 addend = get32((uint32_t *)(p_start + pc_offset));
371 relname[0] = '\0';
372 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
373 if (rel->r_offset == (pc_offset + start_offset)) {
374 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
375 /* the compiler leave some unnecessary references to the code */
376 if (strstart(sym_name, "__op_param", &p)) {
377 snprintf(relname, sizeof(relname), "param%s", p);
378 } else {
379 snprintf(relname, sizeof(relname), "(long)(&%s)", sym_name);
380 }
381 type = ELF32_R_TYPE(rel->r_info);
382 if (type != R_ARM_ABS32)
383 error("%s: unsupported data relocation", name);
384 break;
385 }
386 }
387 fprintf(outfile, " arm_data_ptr[%d] = 0x%x",
388 data_index, addend);
389 if (relname[0] != '\0')
390 fprintf(outfile, " + %s", relname);
391 fprintf(outfile, ";\n");
392 }
393 }
394 }
395 p += 4;
396 }
397 data_size = (p_end - p_start) - min_offset;
398 if (data_size > 0 && outfile) {
399 fprintf(outfile, " arm_data_ptr += %d;\n", data_size >> 2);
400 }
401
402 /* the last instruction must be a mov pc, lr */
403 if (p == p_start)
404 goto arm_ret_error;
405 p -= 4;
406 insn = get32((uint32_t *)p);
407 if ((insn & 0xffff0000) != 0xe91b0000) {
408 arm_ret_error:
409 if (!outfile)
410 printf("%s: invalid epilog\n", name);
411 }
412 return p - p_start;
413}
414#endif
415
416
367e86e8
FB
417#define MAX_ARGS 3
418
419/* generate op code */
ce11fedc 420void gen_code(const char *name, host_ulong offset, host_ulong size,
fe319756 421 FILE *outfile, uint8_t *text, ELF_RELOC *relocs, int nb_relocs,
d4e8164f 422 int gen_switch)
367e86e8
FB
423{
424 int copy_size = 0;
425 uint8_t *p_start, *p_end;
ae228531 426 host_ulong start_offset;
ce11fedc 427 int nb_args, i, n;
367e86e8
FB
428 uint8_t args_present[MAX_ARGS];
429 const char *sym_name, *p;
ce11fedc 430 ELF_RELOC *rel;
367e86e8 431
ae228531
FB
432 /* Compute exact size excluding prologue and epilogue instructions.
433 * Increment start_offset to skip epilogue instructions, then compute
434 * copy_size the indicate the size of the remaining instructions (in
435 * bytes).
436 */
367e86e8
FB
437 p_start = text + offset;
438 p_end = p_start + size;
ae228531 439 start_offset = offset;
ce11fedc 440 switch(ELF_ARCH) {
367e86e8
FB
441 case EM_386:
442 {
d4e8164f
FB
443 int len;
444 len = p_end - p_start;
445 if (len == 0)
367e86e8 446 error("empty code for %s", name);
d4e8164f
FB
447 if (p_end[-1] == 0xc3) {
448 len--;
449 } else {
450 error("ret or jmp expected at the end of %s", name);
451 }
452 copy_size = len;
367e86e8
FB
453 }
454 break;
455 case EM_PPC:
456 {
457 uint8_t *p;
458 p = (void *)(p_end - 4);
367e86e8
FB
459 if (p == p_start)
460 error("empty code for %s", name);
04369ff2
FB
461 if (get32((uint32_t *)p) != 0x4e800020)
462 error("blr expected at the end of %s", name);
367e86e8
FB
463 copy_size = p - p_start;
464 }
465 break;
fb3e5849
FB
466 case EM_S390:
467 {
468 uint8_t *p;
469 p = (void *)(p_end - 2);
470 if (p == p_start)
471 error("empty code for %s", name);
472 if (get16((uint16_t *)p) != 0x07fe && get16((uint16_t *)p) != 0x07f4)
efdea7bf 473 error("br %%r14 expected at the end of %s", name);
fb3e5849
FB
474 copy_size = p - p_start;
475 }
476 break;
efdea7bf
FB
477 case EM_ALPHA:
478 {
479 uint8_t *p;
480 p = p_end - 4;
481 if (p == p_start)
482 error("empty code for %s", name);
483 if (get32((uint32_t *)p) != 0x6bfa8001)
484 error("ret expected at the end of %s", name);
485 copy_size = p - p_start;
486 }
487 break;
488 case EM_IA_64:
489 {
490 uint8_t *p;
491 p = (void *)(p_end - 4);
492 if (p == p_start)
493 error("empty code for %s", name);
494 /* br.ret.sptk.many b0;; */
495 /* 08 00 84 00 */
496 if (get32((uint32_t *)p) != 0x00840008)
497 error("br.ret.sptk.many b0;; expected at the end of %s", name);
498 copy_size = p - p_start;
499 }
500 break;
d014c98c
FB
501 case EM_SPARC:
502 case EM_SPARC32PLUS:
503 {
ff1f20a3 504 uint32_t start_insn, end_insn1, end_insn2;
d014c98c
FB
505 uint8_t *p;
506 p = (void *)(p_end - 8);
507 if (p <= p_start)
508 error("empty code for %s", name);
ae228531
FB
509 start_insn = get32((uint32_t *)(p_start + 0x0));
510 end_insn1 = get32((uint32_t *)(p + 0x0));
511 end_insn2 = get32((uint32_t *)(p + 0x4));
512 if ((start_insn & ~0x1fff) == 0x9de3a000) {
513 p_start += 0x4;
514 start_offset += 0x4;
515 if ((int)(start_insn | ~0x1fff) < -128)
516 error("Found bogus save at the start of %s", name);
517 if (end_insn1 != 0x81c7e008 || end_insn2 != 0x81e80000)
518 error("ret; restore; not found at end of %s", name);
519 } else {
520 error("No save at the beginning of %s", name);
521 }
ff1f20a3 522#if 0
ae228531
FB
523 /* Skip a preceeding nop, if present. */
524 if (p > p_start) {
525 skip_insn = get32((uint32_t *)(p - 0x4));
526 if (skip_insn == 0x01000000)
527 p -= 4;
528 }
ff1f20a3 529#endif
d014c98c
FB
530 copy_size = p - p_start;
531 }
532 break;
533 case EM_SPARCV9:
534 {
ae228531 535 uint32_t start_insn, end_insn1, end_insn2, skip_insn;
d014c98c
FB
536 uint8_t *p;
537 p = (void *)(p_end - 8);
538 if (p <= p_start)
539 error("empty code for %s", name);
ae228531
FB
540 start_insn = get32((uint32_t *)(p_start + 0x0));
541 end_insn1 = get32((uint32_t *)(p + 0x0));
542 end_insn2 = get32((uint32_t *)(p + 0x4));
543 if ((start_insn & ~0x1fff) == 0x9de3a000) {
544 p_start += 0x4;
545 start_offset += 0x4;
546 if ((int)(start_insn | ~0x1fff) < -256)
547 error("Found bogus save at the start of %s", name);
548 if (end_insn1 != 0x81c7e008 || end_insn2 != 0x81e80000)
549 error("ret; restore; not found at end of %s", name);
550 } else {
551 error("No save at the beginning of %s", name);
552 }
553
554 /* Skip a preceeding nop, if present. */
555 if (p > p_start) {
556 skip_insn = get32((uint32_t *)(p - 0x4));
557 if (skip_insn == 0x01000000)
558 p -= 4;
559 }
560
d014c98c
FB
561 copy_size = p - p_start;
562 }
563 break;
ff1f20a3
FB
564#ifdef HOST_ARM
565 case EM_ARM:
566 if ((p_end - p_start) <= 16)
567 error("%s: function too small", name);
568 if (get32((uint32_t *)p_start) != 0xe1a0c00d ||
569 (get32((uint32_t *)(p_start + 4)) & 0xffff0000) != 0xe92d0000 ||
570 get32((uint32_t *)(p_start + 8)) != 0xe24cb004)
571 error("%s: invalid prolog", name);
572 p_start += 12;
573 start_offset += 12;
574 copy_size = arm_emit_ldr_info(name, start_offset, NULL, p_start, p_end,
575 relocs, nb_relocs);
576 break;
577#endif
efdea7bf
FB
578 default:
579 error("unknown ELF architecture");
367e86e8
FB
580 }
581
582 /* compute the number of arguments by looking at the relocations */
583 for(i = 0;i < MAX_ARGS; i++)
584 args_present[i] = 0;
585
ce11fedc 586 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531 587 if (rel->r_offset >= start_offset &&
ff1f20a3 588 rel->r_offset < start_offset + (p_end - p_start)) {
ce11fedc
FB
589 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
590 if (strstart(sym_name, "__op_param", &p)) {
591 n = strtoul(p, NULL, 10);
d4e8164f 592 if (n > MAX_ARGS)
ce11fedc
FB
593 error("too many arguments in %s", name);
594 args_present[n - 1] = 1;
367e86e8
FB
595 }
596 }
597 }
598
599 nb_args = 0;
600 while (nb_args < MAX_ARGS && args_present[nb_args])
601 nb_args++;
602 for(i = nb_args; i < MAX_ARGS; i++) {
603 if (args_present[i])
604 error("inconsistent argument numbering in %s", name);
605 }
606
0ea00c9a 607 if (gen_switch == 2) {
a513fe19 608 fprintf(outfile, "DEF(%s, %d, %d)\n", name + 3, nb_args, copy_size);
0ea00c9a 609 } else if (gen_switch == 1) {
dc99065b
FB
610
611 /* output C code */
612 fprintf(outfile, "case INDEX_%s: {\n", name);
613 if (nb_args > 0) {
614 fprintf(outfile, " long ");
615 for(i = 0; i < nb_args; i++) {
616 if (i != 0)
617 fprintf(outfile, ", ");
618 fprintf(outfile, "param%d", i + 1);
619 }
620 fprintf(outfile, ";\n");
367e86e8 621 }
dc99065b
FB
622 fprintf(outfile, " extern void %s();\n", name);
623
ce11fedc 624 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531 625 if (rel->r_offset >= start_offset &&
ff1f20a3 626 rel->r_offset < start_offset + (p_end - p_start)) {
efdea7bf 627 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
d4e8164f
FB
628 if (*sym_name &&
629 !strstart(sym_name, "__op_param", NULL) &&
630 !strstart(sym_name, "__op_jmp", NULL)) {
d014c98c
FB
631#if defined(HOST_SPARC)
632 if (sym_name[0] == '.') {
633 fprintf(outfile,
634 "extern char __dot_%s __asm__(\"%s\");\n",
635 sym_name+1, sym_name);
636 continue;
637 }
638#endif
ce11fedc 639 fprintf(outfile, "extern char %s;\n", sym_name);
dc99065b
FB
640 }
641 }
642 }
643
ae228531 644 fprintf(outfile, " memcpy(gen_code_ptr, (void *)((char *)&%s+%d), %d);\n", name, start_offset - offset, copy_size);
d4e8164f
FB
645
646 /* emit code offset information */
647 {
648 ElfW(Sym) *sym;
649 const char *sym_name, *p;
650 target_ulong val;
651 int n;
652
653 for(i = 0, sym = symtab; i < nb_syms; i++, sym++) {
654 sym_name = strtab + sym->st_name;
655 if (strstart(sym_name, "__op_label", &p)) {
c1e42a13 656 uint8_t *ptr;
fe319756
FB
657 unsigned long offset;
658
d4e8164f
FB
659 /* test if the variable refers to a label inside
660 the code we are generating */
fe319756
FB
661 ptr = sdata[sym->st_shndx];
662 if (!ptr)
663 error("__op_labelN in invalid section");
664 offset = sym->st_value;
039de852 665 val = *(target_ulong *)(ptr + offset);
fe319756
FB
666#ifdef ELF_USES_RELOCA
667 {
668 int reloc_shndx, nb_relocs1, j;
669
670 /* try to find a matching relocation */
671 reloc_shndx = find_reloc(sym->st_shndx);
672 if (reloc_shndx) {
673 nb_relocs1 = shdr[reloc_shndx].sh_size /
674 shdr[reloc_shndx].sh_entsize;
675 rel = (ELF_RELOC *)sdata[reloc_shndx];
676 for(j = 0; j < nb_relocs1; j++) {
677 if (rel->r_offset == offset) {
039de852 678 val = rel->r_addend;
fe319756
FB
679 break;
680 }
681 rel++;
682 }
683 }
684 }
685#endif
fe319756 686
d4e8164f
FB
687 if (val >= start_offset && val < start_offset + copy_size) {
688 n = strtol(p, NULL, 10);
689 fprintf(outfile, " label_offsets[%d] = %d + (gen_code_ptr - gen_code_buf);\n", n, val - start_offset);
690 }
691 }
692 }
693 }
694
695 /* load parameres in variables */
dc99065b
FB
696 for(i = 0; i < nb_args; i++) {
697 fprintf(outfile, " param%d = *opparam_ptr++;\n", i + 1);
698 }
699
700 /* patch relocations */
ce11fedc 701#if defined(HOST_I386)
dc99065b 702 {
dc99065b
FB
703 char name[256];
704 int type;
ce11fedc 705 int addend;
dc99065b 706 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531
FB
707 if (rel->r_offset >= start_offset &&
708 rel->r_offset < start_offset + copy_size) {
efdea7bf 709 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
367e86e8
FB
710 if (strstart(sym_name, "__op_param", &p)) {
711 snprintf(name, sizeof(name), "param%s", p);
712 } else {
713 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
714 }
715 type = ELF32_R_TYPE(rel->r_info);
716 addend = get32((uint32_t *)(text + rel->r_offset));
717 switch(type) {
718 case R_386_32:
ce11fedc 719 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 720 rel->r_offset - start_offset, name, addend);
367e86e8
FB
721 break;
722 case R_386_PC32:
ce11fedc 723 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s - (long)(gen_code_ptr + %d) + %d;\n",
ae228531 724 rel->r_offset - start_offset, name, rel->r_offset - start_offset, addend);
367e86e8
FB
725 break;
726 default:
727 error("unsupported i386 relocation (%d)", type);
728 }
729 }
dc99065b
FB
730 }
731 }
ce11fedc 732#elif defined(HOST_PPC)
04369ff2 733 {
04369ff2
FB
734 char name[256];
735 int type;
ce11fedc 736 int addend;
04369ff2 737 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531
FB
738 if (rel->r_offset >= start_offset &&
739 rel->r_offset < start_offset + copy_size) {
efdea7bf 740 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
d4e8164f
FB
741 if (strstart(sym_name, "__op_jmp", &p)) {
742 int n;
743 n = strtol(p, NULL, 10);
744 /* __op_jmp relocations are done at
745 runtime to do translated block
746 chaining: the offset of the instruction
747 needs to be stored */
748 fprintf(outfile, " jmp_offsets[%d] = %d + (gen_code_ptr - gen_code_buf);\n",
749 n, rel->r_offset - start_offset);
750 continue;
751 }
752
04369ff2
FB
753 if (strstart(sym_name, "__op_param", &p)) {
754 snprintf(name, sizeof(name), "param%s", p);
755 } else {
756 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
757 }
758 type = ELF32_R_TYPE(rel->r_info);
759 addend = rel->r_addend;
760 switch(type) {
761 case R_PPC_ADDR32:
ce11fedc 762 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 763 rel->r_offset - start_offset, name, addend);
04369ff2
FB
764 break;
765 case R_PPC_ADDR16_LO:
ce11fedc 766 fprintf(outfile, " *(uint16_t *)(gen_code_ptr + %d) = (%s + %d);\n",
ae228531 767 rel->r_offset - start_offset, name, addend);
04369ff2
FB
768 break;
769 case R_PPC_ADDR16_HI:
ce11fedc 770 fprintf(outfile, " *(uint16_t *)(gen_code_ptr + %d) = (%s + %d) >> 16;\n",
ae228531 771 rel->r_offset - start_offset, name, addend);
04369ff2
FB
772 break;
773 case R_PPC_ADDR16_HA:
ce11fedc 774 fprintf(outfile, " *(uint16_t *)(gen_code_ptr + %d) = (%s + %d + 0x8000) >> 16;\n",
ae228531 775 rel->r_offset - start_offset, name, addend);
04369ff2
FB
776 break;
777 case R_PPC_REL24:
778 /* warning: must be at 32 MB distancy */
ce11fedc 779 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = (*(uint32_t *)(gen_code_ptr + %d) & ~0x03fffffc) | ((%s - (long)(gen_code_ptr + %d) + %d) & 0x03fffffc);\n",
ae228531 780 rel->r_offset - start_offset, rel->r_offset - start_offset, name, rel->r_offset - start_offset, addend);
04369ff2
FB
781 break;
782 default:
783 error("unsupported powerpc relocation (%d)", type);
784 }
785 }
786 }
787 }
ce11fedc 788#elif defined(HOST_S390)
fb3e5849 789 {
fb3e5849
FB
790 char name[256];
791 int type;
ce11fedc 792 int addend;
fb3e5849 793 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531
FB
794 if (rel->r_offset >= start_offset &&
795 rel->r_offset < start_offset + copy_size) {
efdea7bf 796 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
fb3e5849
FB
797 if (strstart(sym_name, "__op_param", &p)) {
798 snprintf(name, sizeof(name), "param%s", p);
799 } else {
800 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
801 }
802 type = ELF32_R_TYPE(rel->r_info);
803 addend = rel->r_addend;
804 switch(type) {
805 case R_390_32:
ce11fedc 806 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 807 rel->r_offset - start_offset, name, addend);
fb3e5849
FB
808 break;
809 case R_390_16:
ce11fedc 810 fprintf(outfile, " *(uint16_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 811 rel->r_offset - start_offset, name, addend);
fb3e5849
FB
812 break;
813 case R_390_8:
ce11fedc 814 fprintf(outfile, " *(uint8_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 815 rel->r_offset - start_offset, name, addend);
fb3e5849
FB
816 break;
817 default:
818 error("unsupported s390 relocation (%d)", type);
819 }
820 }
821 }
822 }
efdea7bf
FB
823#elif defined(HOST_ALPHA)
824 {
825 for (i = 0, rel = relocs; i < nb_relocs; i++, rel++) {
ae228531 826 if (rel->r_offset >= start_offset && rel->r_offset < start_offset + copy_size) {
efdea7bf 827 int type;
74c95119 828
efdea7bf 829 type = ELF64_R_TYPE(rel->r_info);
74c95119 830 sym_name = strtab + symtab[ELF64_R_SYM(rel->r_info)].st_name;
efdea7bf
FB
831 switch (type) {
832 case R_ALPHA_GPDISP:
74c95119
FB
833 /* The gp is just 32 bit, and never changes, so it's easiest to emit it
834 as an immediate instead of constructing it from the pv or ra. */
835 fprintf(outfile, " immediate_ldah(gen_code_ptr + %ld, gp);\n",
ae228531 836 rel->r_offset - start_offset);
74c95119 837 fprintf(outfile, " immediate_lda(gen_code_ptr + %ld, gp);\n",
ae228531 838 rel->r_offset - start_offset + rel->r_addend);
efdea7bf
FB
839 break;
840 case R_ALPHA_LITUSE:
841 /* jsr to literal hint. Could be used to optimize to bsr. Ignore for
842 now, since some called functions (libc) need pv to be set up. */
843 break;
844 case R_ALPHA_HINT:
845 /* Branch target prediction hint. Ignore for now. Should be already
846 correct for in-function jumps. */
847 break;
848 case R_ALPHA_LITERAL:
74c95119
FB
849 /* Load a literal from the GOT relative to the gp. Since there's only a
850 single gp, nothing is to be done. */
851 break;
852 case R_ALPHA_GPRELHIGH:
853 /* Handle fake relocations against __op_param symbol. Need to emit the
854 high part of the immediate value instead. Other symbols need no
855 special treatment. */
856 if (strstart(sym_name, "__op_param", &p))
857 fprintf(outfile, " immediate_ldah(gen_code_ptr + %ld, param%s);\n",
ae228531 858 rel->r_offset - start_offset, p);
74c95119
FB
859 break;
860 case R_ALPHA_GPRELLOW:
861 if (strstart(sym_name, "__op_param", &p))
862 fprintf(outfile, " immediate_lda(gen_code_ptr + %ld, param%s);\n",
ae228531 863 rel->r_offset - start_offset, p);
74c95119
FB
864 break;
865 case R_ALPHA_BRSGP:
866 /* PC-relative jump. Tweak offset to skip the two instructions that try to
867 set up the gp from the pv. */
2f87c607 868 fprintf(outfile, " fix_bsr(gen_code_ptr + %ld, (uint8_t *) &%s - (gen_code_ptr + %ld + 4) + 8);\n",
ae228531 869 rel->r_offset - start_offset, sym_name, rel->r_offset - start_offset);
efdea7bf
FB
870 break;
871 default:
872 error("unsupported Alpha relocation (%d)", type);
873 }
874 }
875 }
876 }
877#elif defined(HOST_IA64)
878 {
879 char name[256];
880 int type;
881 int addend;
882 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531 883 if (rel->r_offset >= start_offset && rel->r_offset < start_offset + copy_size) {
efdea7bf
FB
884 sym_name = strtab + symtab[ELF64_R_SYM(rel->r_info)].st_name;
885 if (strstart(sym_name, "__op_param", &p)) {
886 snprintf(name, sizeof(name), "param%s", p);
887 } else {
888 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
889 }
890 type = ELF64_R_TYPE(rel->r_info);
891 addend = rel->r_addend;
892 switch(type) {
893 case R_IA64_LTOFF22:
894 error("must implemnt R_IA64_LTOFF22 relocation");
895 case R_IA64_PCREL21B:
896 error("must implemnt R_IA64_PCREL21B relocation");
897 default:
898 error("unsupported ia64 relocation (%d)", type);
899 }
900 }
901 }
902 }
d014c98c
FB
903#elif defined(HOST_SPARC)
904 {
905 char name[256];
906 int type;
907 int addend;
908 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531
FB
909 if (rel->r_offset >= start_offset &&
910 rel->r_offset < start_offset + copy_size) {
d014c98c
FB
911 sym_name = strtab + symtab[ELF32_R_SYM(rel->r_info)].st_name;
912 if (strstart(sym_name, "__op_param", &p)) {
913 snprintf(name, sizeof(name), "param%s", p);
914 } else {
915 if (sym_name[0] == '.')
916 snprintf(name, sizeof(name),
917 "(long)(&__dot_%s)",
918 sym_name + 1);
919 else
920 snprintf(name, sizeof(name),
921 "(long)(&%s)", sym_name);
922 }
923 type = ELF32_R_TYPE(rel->r_info);
924 addend = rel->r_addend;
925 switch(type) {
926 case R_SPARC_32:
927 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 928 rel->r_offset - start_offset, name, addend);
d014c98c
FB
929 break;
930 case R_SPARC_HI22:
931 fprintf(outfile,
932 " *(uint32_t *)(gen_code_ptr + %d) = "
933 "((*(uint32_t *)(gen_code_ptr + %d)) "
934 " & ~0x3fffff) "
ae228531
FB
935 " | (((%s + %d) >> 10) & 0x3fffff);\n",
936 rel->r_offset - start_offset,
937 rel->r_offset - start_offset,
d014c98c
FB
938 name, addend);
939 break;
940 case R_SPARC_LO10:
941 fprintf(outfile,
942 " *(uint32_t *)(gen_code_ptr + %d) = "
943 "((*(uint32_t *)(gen_code_ptr + %d)) "
944 " & ~0x3ff) "
945 " | ((%s + %d) & 0x3ff);\n",
ae228531
FB
946 rel->r_offset - start_offset,
947 rel->r_offset - start_offset,
d014c98c
FB
948 name, addend);
949 break;
950 case R_SPARC_WDISP30:
951 fprintf(outfile,
952 " *(uint32_t *)(gen_code_ptr + %d) = "
953 "((*(uint32_t *)(gen_code_ptr + %d)) "
954 " & ~0x3fffffff) "
ae228531 955 " | ((((%s + %d) - (long)(gen_code_ptr + %d))>>2) "
d014c98c 956 " & 0x3fffffff);\n",
ae228531
FB
957 rel->r_offset - start_offset,
958 rel->r_offset - start_offset,
959 name, addend,
960 rel->r_offset - start_offset);
d014c98c
FB
961 break;
962 default:
963 error("unsupported sparc relocation (%d)", type);
964 }
965 }
966 }
967 }
968#elif defined(HOST_SPARC64)
969 {
970 char name[256];
971 int type;
972 int addend;
973 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
ae228531
FB
974 if (rel->r_offset >= start_offset &&
975 rel->r_offset < start_offset + copy_size) {
d014c98c
FB
976 sym_name = strtab + symtab[ELF64_R_SYM(rel->r_info)].st_name;
977 if (strstart(sym_name, "__op_param", &p)) {
978 snprintf(name, sizeof(name), "param%s", p);
979 } else {
980 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
981 }
982 type = ELF64_R_TYPE(rel->r_info);
983 addend = rel->r_addend;
984 switch(type) {
985 case R_SPARC_32:
986 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
ae228531 987 rel->r_offset - start_offset, name, addend);
d014c98c
FB
988 break;
989 case R_SPARC_HI22:
990 fprintf(outfile,
991 " *(uint32_t *)(gen_code_ptr + %d) = "
992 "((*(uint32_t *)(gen_code_ptr + %d)) "
993 " & ~0x3fffff) "
ae228531
FB
994 " | (((%s + %d) >> 10) & 0x3fffff);\n",
995 rel->r_offset - start_offset,
996 rel->r_offset - start_offset,
d014c98c
FB
997 name, addend);
998 break;
999 case R_SPARC_LO10:
1000 fprintf(outfile,
1001 " *(uint32_t *)(gen_code_ptr + %d) = "
1002 "((*(uint32_t *)(gen_code_ptr + %d)) "
1003 " & ~0x3ff) "
1004 " | ((%s + %d) & 0x3ff);\n",
ae228531
FB
1005 rel->r_offset - start_offset,
1006 rel->r_offset - start_offset,
d014c98c
FB
1007 name, addend);
1008 break;
1009 case R_SPARC_WDISP30:
1010 fprintf(outfile,
1011 " *(uint32_t *)(gen_code_ptr + %d) = "
1012 "((*(uint32_t *)(gen_code_ptr + %d)) "
1013 " & ~0x3fffffff) "
ae228531 1014 " | ((((%s + %d) - (long)(gen_code_ptr + %d))>>2) "
d014c98c 1015 " & 0x3fffffff);\n",
ae228531
FB
1016 rel->r_offset - start_offset,
1017 rel->r_offset - start_offset,
1018 name, addend,
1019 rel->r_offset - start_offset);
d014c98c
FB
1020 break;
1021 default:
1022 error("unsupported sparc64 relocation (%d)", type);
1023 }
1024 }
1025 }
1026 }
ff1f20a3
FB
1027#elif defined(HOST_ARM)
1028 {
1029 char name[256];
1030 int type;
1031 int addend;
1032
1033 arm_emit_ldr_info(name, start_offset, outfile, p_start, p_end,
1034 relocs, nb_relocs);
1035
1036 for(i = 0, rel = relocs;i < nb_relocs; i++, rel++) {
1037 if (rel->r_offset >= start_offset &&
1038 rel->r_offset < start_offset + copy_size) {
1039 sym_name = strtab + symtab[ELFW(R_SYM)(rel->r_info)].st_name;
1040 /* the compiler leave some unnecessary references to the code */
1041 if (sym_name[0] == '\0')
1042 continue;
1043 if (strstart(sym_name, "__op_param", &p)) {
1044 snprintf(name, sizeof(name), "param%s", p);
1045 } else {
1046 snprintf(name, sizeof(name), "(long)(&%s)", sym_name);
1047 }
1048 type = ELF32_R_TYPE(rel->r_info);
1049 addend = get32((uint32_t *)(text + rel->r_offset));
1050 switch(type) {
1051 case R_ARM_ABS32:
1052 fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
1053 rel->r_offset - start_offset, name, addend);
1054 break;
1055 case R_ARM_PC24:
1056 fprintf(outfile, " arm_reloc_pc24((uint32_t *)(gen_code_ptr + %d), 0x%x, %s);\n",
1057 rel->r_offset - start_offset, addend, name);
1058 break;
1059 default:
1060 error("unsupported arm relocation (%d)", type);
1061 }
1062 }
1063 }
1064 }
ce11fedc
FB
1065#else
1066#error unsupported CPU
1067#endif
dc99065b
FB
1068 fprintf(outfile, " gen_code_ptr += %d;\n", copy_size);
1069 fprintf(outfile, "}\n");
1070 fprintf(outfile, "break;\n\n");
1071 } else {
1072 fprintf(outfile, "static inline void gen_%s(", name);
1073 if (nb_args == 0) {
1074 fprintf(outfile, "void");
1075 } else {
1076 for(i = 0; i < nb_args; i++) {
1077 if (i != 0)
1078 fprintf(outfile, ", ");
1079 fprintf(outfile, "long param%d", i + 1);
367e86e8
FB
1080 }
1081 }
dc99065b
FB
1082 fprintf(outfile, ")\n");
1083 fprintf(outfile, "{\n");
1084 for(i = 0; i < nb_args; i++) {
1085 fprintf(outfile, " *gen_opparam_ptr++ = param%d;\n", i + 1);
1086 }
1087 fprintf(outfile, " *gen_opc_ptr++ = INDEX_%s;\n", name);
1088 fprintf(outfile, "}\n\n");
367e86e8 1089 }
367e86e8
FB
1090}
1091
1092/* load an elf object file */
d219f7e7 1093int load_elf(const char *filename, FILE *outfile, int out_type)
367e86e8
FB
1094{
1095 int fd;
d4e8164f
FB
1096 struct elf_shdr *sec, *symtab_sec, *strtab_sec, *text_sec;
1097 int i, j;
1098 ElfW(Sym) *sym;
c1e42a13 1099 char *shstr;
367e86e8 1100 uint8_t *text;
fe319756
FB
1101 ELF_RELOC *relocs;
1102 int nb_relocs;
1103 ELF_RELOC *rel;
367e86e8
FB
1104
1105 fd = open(filename, O_RDONLY);
1106 if (fd < 0)
1107 error("can't open file '%s'", filename);
1108
1109 /* Read ELF header. */
1110 if (read(fd, &ehdr, sizeof (ehdr)) != sizeof (ehdr))
1111 error("unable to read file header");
1112
1113 /* Check ELF identification. */
1114 if (ehdr.e_ident[EI_MAG0] != ELFMAG0
1115 || ehdr.e_ident[EI_MAG1] != ELFMAG1
1116 || ehdr.e_ident[EI_MAG2] != ELFMAG2
1117 || ehdr.e_ident[EI_MAG3] != ELFMAG3
367e86e8
FB
1118 || ehdr.e_ident[EI_VERSION] != EV_CURRENT) {
1119 error("bad ELF header");
1120 }
1121
1122 do_swap = elf_must_swap(&ehdr);
1123 if (do_swap)
1124 elf_swap_ehdr(&ehdr);
ce11fedc
FB
1125 if (ehdr.e_ident[EI_CLASS] != ELF_CLASS)
1126 error("Unsupported ELF class");
367e86e8
FB
1127 if (ehdr.e_type != ET_REL)
1128 error("ELF object file expected");
1129 if (ehdr.e_version != EV_CURRENT)
1130 error("Invalid ELF version");
ce11fedc
FB
1131 if (!elf_check_arch(ehdr.e_machine))
1132 error("Unsupported CPU (e_machine=%d)", ehdr.e_machine);
367e86e8
FB
1133
1134 /* read section headers */
ce11fedc 1135 shdr = load_data(fd, ehdr.e_shoff, ehdr.e_shnum * sizeof(struct elf_shdr));
367e86e8
FB
1136 if (do_swap) {
1137 for(i = 0; i < ehdr.e_shnum; i++) {
1138 elf_swap_shdr(&shdr[i]);
1139 }
1140 }
1141
fe319756
FB
1142 /* read all section data */
1143 sdata = malloc(sizeof(void *) * ehdr.e_shnum);
1144 memset(sdata, 0, sizeof(void *) * ehdr.e_shnum);
1145
1146 for(i = 0;i < ehdr.e_shnum; i++) {
1147 sec = &shdr[i];
1148 if (sec->sh_type != SHT_NOBITS)
1149 sdata[i] = load_data(fd, sec->sh_offset, sec->sh_size);
1150 }
1151
367e86e8 1152 sec = &shdr[ehdr.e_shstrndx];
fe319756 1153 shstr = sdata[ehdr.e_shstrndx];
367e86e8 1154
fe319756
FB
1155 /* swap relocations */
1156 for(i = 0; i < ehdr.e_shnum; i++) {
1157 sec = &shdr[i];
1158 if (sec->sh_type == SHT_RELOC) {
1159 nb_relocs = sec->sh_size / sec->sh_entsize;
1160 if (do_swap) {
1161 for(j = 0, rel = (ELF_RELOC *)sdata[i]; j < nb_relocs; j++, rel++)
1162 elf_swap_rel(rel);
1163 }
1164 }
1165 }
367e86e8
FB
1166 /* text section */
1167
1168 text_sec = find_elf_section(shdr, ehdr.e_shnum, shstr, ".text");
1169 if (!text_sec)
1170 error("could not find .text section");
fe319756
FB
1171 text_shndx = text_sec - shdr;
1172 text = sdata[text_shndx];
367e86e8
FB
1173
1174 /* find text relocations, if any */
367e86e8 1175 relocs = NULL;
fe319756
FB
1176 nb_relocs = 0;
1177 i = find_reloc(text_shndx);
1178 if (i != 0) {
1179 relocs = (ELF_RELOC *)sdata[i];
1180 nb_relocs = shdr[i].sh_size / shdr[i].sh_entsize;
367e86e8
FB
1181 }
1182
1183 symtab_sec = find_elf_section(shdr, ehdr.e_shnum, shstr, ".symtab");
1184 if (!symtab_sec)
1185 error("could not find .symtab section");
1186 strtab_sec = &shdr[symtab_sec->sh_link];
1187
fe319756
FB
1188 symtab = (ElfW(Sym) *)sdata[symtab_sec - shdr];
1189 strtab = sdata[symtab_sec->sh_link];
367e86e8 1190
efdea7bf 1191 nb_syms = symtab_sec->sh_size / sizeof(ElfW(Sym));
367e86e8
FB
1192 if (do_swap) {
1193 for(i = 0, sym = symtab; i < nb_syms; i++, sym++) {
1194 swab32s(&sym->st_name);
ce11fedc
FB
1195 swabls(&sym->st_value);
1196 swabls(&sym->st_size);
367e86e8
FB
1197 swab16s(&sym->st_shndx);
1198 }
1199 }
1200
d219f7e7 1201 if (out_type == OUT_INDEX_OP) {
a513fe19 1202 fprintf(outfile, "DEF(end, 0, 0)\n");
dc99065b
FB
1203 for(i = 0, sym = symtab; i < nb_syms; i++, sym++) {
1204 const char *name, *p;
1205 name = strtab + sym->st_name;
1206 if (strstart(name, OP_PREFIX, &p)) {
0ea00c9a 1207 gen_code(name, sym->st_value, sym->st_size, outfile,
fe319756 1208 text, relocs, nb_relocs, 2);
dc99065b
FB
1209 }
1210 }
d219f7e7
FB
1211 } else if (out_type == OUT_GEN_OP) {
1212 /* generate gen_xxx functions */
1213
1214 for(i = 0, sym = symtab; i < nb_syms; i++, sym++) {
1215 const char *name;
1216 name = strtab + sym->st_name;
1217 if (strstart(name, OP_PREFIX, NULL)) {
1218 if (sym->st_shndx != (text_sec - shdr))
1219 error("invalid section for opcode (0x%x)", sym->st_shndx);
1220 gen_code(name, sym->st_value, sym->st_size, outfile,
1221 text, relocs, nb_relocs, 0);
1222 }
1223 }
1224
dc99065b
FB
1225 } else {
1226 /* generate big code generation switch */
1227fprintf(outfile,
1228"int dyngen_code(uint8_t *gen_code_buf,\n"
d4e8164f 1229" uint16_t *label_offsets, uint16_t *jmp_offsets,\n"
dc99065b
FB
1230" const uint16_t *opc_buf, const uint32_t *opparam_buf)\n"
1231"{\n"
1232" uint8_t *gen_code_ptr;\n"
1233" const uint16_t *opc_ptr;\n"
ff1f20a3
FB
1234" const uint32_t *opparam_ptr;\n");
1235
1236#ifdef HOST_ARM
1237fprintf(outfile,
1238" uint8_t *last_gen_code_ptr = gen_code_buf;\n"
1239" LDREntry *arm_ldr_ptr = arm_ldr_table;\n"
1240" uint32_t *arm_data_ptr = arm_data_table;\n");
1241#endif
1242
1243fprintf(outfile,
1244"\n"
dc99065b
FB
1245" gen_code_ptr = gen_code_buf;\n"
1246" opc_ptr = opc_buf;\n"
ae228531
FB
1247" opparam_ptr = opparam_buf;\n");
1248
1249 /* Generate prologue, if needed. */
ae228531
FB
1250
1251fprintf(outfile,
dc99065b
FB
1252" for(;;) {\n"
1253" switch(*opc_ptr++) {\n"
1254);
367e86e8 1255
dc99065b
FB
1256 for(i = 0, sym = symtab; i < nb_syms; i++, sym++) {
1257 const char *name;
1258 name = strtab + sym->st_name;
1259 if (strstart(name, OP_PREFIX, NULL)) {
367e86e8 1260#if 0
dc99065b
FB
1261 printf("%4d: %s pos=0x%08x len=%d\n",
1262 i, name, sym->st_value, sym->st_size);
367e86e8 1263#endif
dc99065b
FB
1264 if (sym->st_shndx != (text_sec - shdr))
1265 error("invalid section for opcode (0x%x)", sym->st_shndx);
1266 gen_code(name, sym->st_value, sym->st_size, outfile,
fe319756 1267 text, relocs, nb_relocs, 1);
dc99065b
FB
1268 }
1269 }
1270
1271fprintf(outfile,
1272" default:\n"
1273" goto the_end;\n"
ff1f20a3
FB
1274" }\n");
1275
1276#ifdef HOST_ARM
1277/* generate constant table if needed */
1278fprintf(outfile,
1279" if ((gen_code_ptr - last_gen_code_ptr) >= (MAX_FRAG_SIZE - MAX_OP_SIZE)) {\n"
1280" gen_code_ptr = arm_flush_ldr(gen_code_ptr, arm_ldr_table, arm_ldr_ptr, arm_data_table, arm_data_ptr, 1);\n"
1281" last_gen_code_ptr = gen_code_ptr;\n"
1282" arm_ldr_ptr = arm_ldr_table;\n"
1283" arm_data_ptr = arm_data_table;\n"
1284" }\n");
1285#endif
1286
1287
1288fprintf(outfile,
dc99065b
FB
1289" }\n"
1290" the_end:\n"
1291);
1292
ae228531 1293/* generate epilogue */
ce11fedc 1294 switch(ELF_ARCH) {
dc99065b
FB
1295 case EM_386:
1296 fprintf(outfile, "*gen_code_ptr++ = 0xc3; /* ret */\n");
1297 break;
04369ff2
FB
1298 case EM_PPC:
1299 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x4e800020; /* blr */\n");
1300 break;
fb3e5849
FB
1301 case EM_S390:
1302 fprintf(outfile, "*((uint16_t *)gen_code_ptr)++ = 0x07fe; /* br %%r14 */\n");
1303 break;
efdea7bf
FB
1304 case EM_ALPHA:
1305 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x6bfa8001; /* ret */\n");
1306 break;
1307 case EM_IA_64:
1308 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x00840008; /* br.ret.sptk.many b0;; */\n");
1309 break;
d014c98c
FB
1310 case EM_SPARC:
1311 case EM_SPARC32PLUS:
ae228531 1312 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x81c62008; /* jmpl %%i0 + 8, %%g0 */\n");
ff1f20a3 1313 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x01000000; /* nop */\n");
ae228531 1314 break;
d014c98c 1315 case EM_SPARCV9:
ae228531
FB
1316 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x81c7e008; /* ret */\n");
1317 fprintf(outfile, "*((uint32_t *)gen_code_ptr)++ = 0x81e80000; /* restore */\n");
d014c98c 1318 break;
ff1f20a3
FB
1319 case EM_ARM:
1320 fprintf(outfile, "gen_code_ptr = arm_flush_ldr(gen_code_ptr, arm_ldr_table, arm_ldr_ptr, arm_data_table, arm_data_ptr, 0);\n");
1321 break;
efdea7bf
FB
1322 default:
1323 error("unknown ELF architecture");
dc99065b 1324 }
d219f7e7
FB
1325 /* flush instruction cache */
1326 fprintf(outfile, "flush_icache_range((unsigned long)gen_code_buf, (unsigned long)gen_code_ptr);\n");
1327
dc99065b
FB
1328 fprintf(outfile, "return gen_code_ptr - gen_code_buf;\n");
1329 fprintf(outfile, "}\n\n");
1330
367e86e8
FB
1331 }
1332
1333 close(fd);
1334 return 0;
1335}
1336
1337void usage(void)
1338{
1339 printf("dyngen (c) 2003 Fabrice Bellard\n"
dc99065b
FB
1340 "usage: dyngen [-o outfile] [-c] objfile\n"
1341 "Generate a dynamic code generator from an object file\n"
1342 "-c output enum of operations\n"
d219f7e7 1343 "-g output gen_op_xx() functions\n"
dc99065b 1344 );
367e86e8
FB
1345 exit(1);
1346}
1347
1348int main(int argc, char **argv)
1349{
d219f7e7 1350 int c, out_type;
367e86e8
FB
1351 const char *filename, *outfilename;
1352 FILE *outfile;
1353
1354 outfilename = "out.c";
d219f7e7 1355 out_type = OUT_CODE;
367e86e8 1356 for(;;) {
d219f7e7 1357 c = getopt(argc, argv, "ho:cg");
367e86e8
FB
1358 if (c == -1)
1359 break;
1360 switch(c) {
1361 case 'h':
1362 usage();
1363 break;
1364 case 'o':
1365 outfilename = optarg;
1366 break;
dc99065b 1367 case 'c':
d219f7e7
FB
1368 out_type = OUT_INDEX_OP;
1369 break;
1370 case 'g':
1371 out_type = OUT_GEN_OP;
dc99065b 1372 break;
367e86e8
FB
1373 }
1374 }
1375 if (optind >= argc)
1376 usage();
1377 filename = argv[optind];
1378 outfile = fopen(outfilename, "w");
1379 if (!outfile)
1380 error("could not open '%s'", outfilename);
d219f7e7 1381 load_elf(filename, outfile, out_type);
367e86e8
FB
1382 fclose(outfile);
1383 return 0;
1384}