1 /* dlltool.c -- tool to generate stuff for PE style DLLs
2 Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA
23 This program allows you to build the files necessary to create
24 DLLs to run on a system which understands PE format image files.
27 See "Peering Inside the PE: A Tour of the Win32 Portable Executable
28 File Format", MSJ 1994, Volume 9 for more information.
29 Also see "Microsoft Portable Executable and Common Object File Format,
30 Specification 4.1" for more information.
32 A DLL contains an export table which contains the information
33 which the runtime loader needs to tie up references from a
36 The export table is generated by this program by reading
37 in a .DEF file or scanning the .a and .o files which will be in the
38 DLL. A .o file can contain information in special ".drectve" sections
39 with export information.
41 A DEF file contains any number of the following commands:
44 NAME <name> [ , <base> ]
45 The result is going to be <name>.EXE
47 LIBRARY <name> [ , <base> ]
48 The result is going to be <name>.DLL
50 EXPORTS ( <name1> [ = <name2> ] [ @ <integer> ] [ NONAME ] [CONSTANT] [DATA] ) *
51 Declares name1 as an exported symbol from the
52 DLL, with optional ordinal number <integer>
54 IMPORTS ( ( <internal-name> = <module-name> . <integer> )
55 | ( [ <internal-name> = ] <module-name> . <external-name> )) *
56 Declares that <external-name> or the exported function whoes ordinal number
57 is <integer> is to be imported from the file <module-name>. If
58 <internal-name> is specified then this is the name that the imported
59 function will be refered to in the body of the DLL.
62 Puts <string> into output .exp file in the .rdata section
64 [STACKSIZE|HEAPSIZE] <number-reserve> [ , <number-commit> ]
65 Generates --stack|--heap <number-reserve>,<number-commit>
66 in the output .drectve section. The linker will
67 see this and act upon it.
70 SECTIONS ( <sectionname> <attr>+ )*
71 <attr> = READ | WRITE | EXECUTE | SHARED
72 Generates --attr <sectionname> <attr> in the output
73 .drectve section. The linker will see this and act
77 A -export:<name> in a .drectve section in an input .o or .a
78 file to this program is equivalent to a EXPORTS <name>
83 The program generates output files with the prefix supplied
84 on the command line, or in the def file, or taken from the first
87 The .exp.s file contains the information necessary to export
88 the routines in the DLL. The .lib.s file contains the information
89 necessary to use the DLL's routines from a referencing program.
96 asm (".section .drectve");
97 asm (".ascii \"-export:adef\"");
101 printf ("hello from the dll %s\n", s);
106 printf ("hello from the dll and the other entry point %s\n", s);
110 asm (".section .drectve");
111 asm (".ascii \"-export:cdef\"");
112 asm (".ascii \"-export:ddef\"");
116 printf ("hello from the dll %s\n", s);
121 printf ("hello from the dll and the other entry point %s\n", s);
139 HEAPSIZE 0x40000, 0x2000
143 SECTIONS donkey READ WRITE
146 # Compile up the parts of the dll and the program
148 gcc -c file1.c file2.c themain.c
150 # Optional: put the dll objects into a library
151 # (you don't have to, you could name all the object
152 # files on the dlltool line)
154 ar qcv thedll.in file1.o file2.o
157 # Run this tool over the DLL's .def file and generate an exports
158 # file (thedll.o) and an imports file (thedll.a).
159 # (You may have to use -S to tell dlltool where to find the assembler).
161 dlltool --def thedll.def --output-exp thedll.o --output-lib thedll.a
163 # Build the dll with the library and the export table
165 ld -o thedll.dll thedll.o thedll.in
167 # Link the executable with the import library
169 gcc -o themain.exe themain.o thedll.a
171 This example can be extended if relocations are needed in the DLL:
173 # Compile up the parts of the dll and the program
175 gcc -c file1.c file2.c themain.c
177 # Run this tool over the DLL's .def file and generate an imports file.
179 dlltool --def thedll.def --output-lib thedll.lib
181 # Link the executable with the import library and generate a base file
184 gcc -o themain.exe themain.o thedll.lib -Wl,--base-file -Wl,themain.base
186 # Run this tool over the DLL's .def file and generate an exports file
187 # which includes the relocations from the base file.
189 dlltool --def thedll.def --base-file themain.base --output-exp thedll.exp
191 # Build the dll with file1.o, file2.o and the export table
193 ld -o thedll.dll thedll.exp file1.o file2.o
196 /* .idata section description
198 The .idata section is the import table. It is a collection of several
199 subsections used to keep the pieces for each dll together: .idata$[234567].
200 IE: Each dll's .idata$2's are catenated together, each .idata$3's, etc.
202 .idata$2 = Import Directory Table
203 = array of IMAGE_IMPORT_DESCRIPTOR's.
205 DWORD Import Lookup Table; - pointer to .idata$4
206 DWORD TimeDateStamp; - currently always 0
207 DWORD ForwarderChain; - currently always 0
208 DWORD Name; - pointer to dll's name
209 PIMAGE_THUNK_DATA FirstThunk; - pointer to .idata$5
211 .idata$3 = null terminating entry for .idata$2.
213 .idata$4 = Import Lookup Table
214 = array of array of pointers to hint name table.
215 There is one for each dll being imported from, and each dll's set is
216 terminated by a trailing NULL.
218 .idata$5 = Import Address Table
219 = array of array of pointers to hint name table.
220 There is one for each dll being imported from, and each dll's set is
221 terminated by a trailing NULL.
222 Initially, this table is identical to the Import Lookup Table. However,
223 at load time, the loader overwrites the entries with the address of the
226 .idata$6 = Hint Name Table
227 = Array of { short, asciz } entries, one for each imported function.
228 The `short' is the function's ordinal number.
230 .idata$7 = dll name (eg: "kernel32.dll"). (.idata$6 for ppc)
233 /* AIX requires this to be the first thing in the file. */
240 #define show_allnames 0
242 #define PAGE_SIZE 4096
243 #define PAGE_MASK (-PAGE_SIZE)
245 #include "libiberty.h"
248 #include "demangle.h"
249 #include "dyn-string.h"
254 #include <sys/stat.h>
256 #ifdef ANSI_PROTOTYPES
263 #include "coff/arm.h"
264 #include "coff/internal.h"
267 /* Forward references. */
268 static char *look_for_prog
PARAMS ((const char *, const char *, int));
269 static char *deduce_name
PARAMS ((const char *));
271 #ifdef DLLTOOL_MCORE_ELF
272 static void mcore_elf_cache_filename (char *);
273 static void mcore_elf_gen_out_file (void);
276 #ifdef HAVE_SYS_WAIT_H
277 #include <sys/wait.h>
278 #else /* ! HAVE_SYS_WAIT_H */
279 #if ! defined (_WIN32) || defined (__CYGWIN32__)
281 #define WIFEXITED(w) (((w)&0377) == 0)
284 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0)
287 #define WTERMSIG(w) ((w) & 0177)
290 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
292 #else /* defined (_WIN32) && ! defined (__CYGWIN32__) */
294 #define WIFEXITED(w) (((w) & 0xff) == 0)
297 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
300 #define WTERMSIG(w) ((w) & 0x7f)
303 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
305 #endif /* defined (_WIN32) && ! defined (__CYGWIN32__) */
306 #endif /* ! HAVE_SYS_WAIT_H */
308 /* ifunc and ihead data structures: ttk@cygnus.com 1997
310 When IMPORT declarations are encountered in a .def file the
311 function import information is stored in a structure referenced by
312 the global variable IMPORT_LIST. The structure is a linked list
313 containing the names of the dll files each function is imported
314 from and a linked list of functions being imported from that dll
315 file. This roughly parallels the structure of the .idata section
316 in the PE object file.
318 The contents of .def file are interpreted from within the
319 process_def_file function. Every time an IMPORT declaration is
320 encountered, it is broken up into its component parts and passed to
321 def_import. IMPORT_LIST is initialized to NULL in function main. */
323 typedef struct ifunct
325 char *name
; /* name of function being imported */
326 int ord
; /* two-byte ordinal value associated with function */
330 typedef struct iheadt
332 char *dllname
; /* name of dll file imported from */
333 long nfuncs
; /* number of functions in list */
334 struct ifunct
*funchead
; /* first function in list */
335 struct ifunct
*functail
; /* last function in list */
336 struct iheadt
*next
; /* next dll file in list */
339 /* Structure containing all import information as defined in .def file
340 (qv "ihead structure"). */
342 static iheadtype
*import_list
= NULL
;
344 static char *as_name
= NULL
;
345 static char * as_flags
= "";
347 static int no_idata4
;
348 static int no_idata5
;
349 static char *exp_name
;
350 static char *imp_name
;
351 static char *head_label
;
352 static char *imp_name_lab
;
353 static char *dll_name
;
355 static int add_indirect
= 0;
356 static int add_underscore
= 0;
357 static int dontdeltemps
= 0;
359 /* True if we should export all symbols. Otherwise, we only export
360 symbols listed in .drectve sections or in the def file. */
361 static boolean export_all_symbols
;
363 /* True if we should exclude the symbols in DEFAULT_EXCLUDES when
364 exporting all symbols. */
365 static boolean do_default_excludes
;
367 /* Default symbols to exclude when exporting all the symbols. */
368 static const char *default_excludes
= "DllMain@12,DllEntryPoint@0,impure_ptr";
370 /* True if we should add __imp_<SYMBOL> to import libraries for backward
371 compatibility to old Cygwin releases. */
372 static boolean create_compat_implib
;
374 static char *def_file
;
376 extern char * program_name
;
380 static int add_stdcall_alias
;
382 static FILE *output_def
;
383 static FILE *base_file
;
386 static const char *mname
= "arm";
390 static const char *mname
= "i386";
394 static const char *mname
= "ppc";
398 static const char *mname
= "sh";
402 static const char *mname
= "mips";
406 static const char * mname
= "mcore-le";
409 #ifdef DLLTOOL_MCORE_ELF
410 static const char * mname
= "mcore-elf";
411 static char * mcore_elf_out_file
= NULL
;
412 static char * mcore_elf_linker
= NULL
;
413 static char * mcore_elf_linker_flags
= NULL
;
415 #define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
418 #ifndef DRECTVE_SECTION_NAME
419 #define DRECTVE_SECTION_NAME ".drectve"
422 #define PATHMAX 250 /* What's the right name for this ? */
424 #define TMP_ASM "dc.s"
425 #define TMP_HEAD_S "dh.s"
426 #define TMP_HEAD_O "dh.o"
427 #define TMP_TAIL_S "dt.s"
428 #define TMP_TAIL_O "dt.o"
429 #define TMP_STUB "ds"
431 /* This bit of assemly does jmp * .... */
432 static const unsigned char i386_jtab
[] =
434 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
437 static const unsigned char arm_jtab
[] =
439 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
440 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
444 static const unsigned char arm_interwork_jtab
[] =
446 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
447 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
448 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
452 static const unsigned char thumb_jtab
[] =
454 0x40, 0xb4, /* push {r6} */
455 0x02, 0x4e, /* ldr r6, [pc, #8] */
456 0x36, 0x68, /* ldr r6, [r6] */
457 0xb4, 0x46, /* mov ip, r6 */
458 0x40, 0xbc, /* pop {r6} */
459 0x60, 0x47, /* bx ip */
463 static const unsigned char mcore_be_jtab
[] =
465 0x71, 0x02, /* lrw r1,2 */
466 0x81, 0x01, /* ld.w r1,(r1,0) */
467 0x00, 0xC1, /* jmp r1 */
468 0x12, 0x00, /* nop */
469 0x00, 0x00, 0x00, 0x00 /* <address> */
472 static const unsigned char mcore_le_jtab
[] =
474 0x02, 0x71, /* lrw r1,2 */
475 0x01, 0x81, /* ld.w r1,(r1,0) */
476 0xC1, 0x00, /* jmp r1 */
477 0x00, 0x12, /* nop */
478 0x00, 0x00, 0x00, 0x00 /* <address> */
481 /* This is the glue sequence for PowerPC PE. There is a */
482 /* tocrel16-tocdefn reloc against the first instruction. */
483 /* We also need a IMGLUE reloc against the glue function */
484 /* to restore the toc saved by the third instruction in */
486 static const unsigned char ppc_jtab
[] =
488 0x00, 0x00, 0x62, 0x81, /* lwz r11,0(r2) */
489 /* Reloc TOCREL16 __imp_xxx */
490 0x00, 0x00, 0x8B, 0x81, /* lwz r12,0(r11) */
491 0x04, 0x00, 0x41, 0x90, /* stw r2,4(r1) */
492 0xA6, 0x03, 0x89, 0x7D, /* mtctr r12 */
493 0x04, 0x00, 0x4B, 0x80, /* lwz r2,4(r11) */
494 0x20, 0x04, 0x80, 0x4E /* bctr */
498 /* the glue instruction, picks up the toc from the stw in */
499 /* the above code: "lwz r2,4(r1)" */
500 static bfd_vma ppc_glue_insn
= 0x80410004;
506 const char *how_byte
;
507 const char *how_short
;
508 const char *how_long
;
509 const char *how_asciz
;
510 const char *how_comment
;
511 const char *how_jump
;
512 const char *how_global
;
513 const char *how_space
;
514 const char *how_align_short
;
515 const char *how_align_long
;
516 const char *how_default_as_switches
;
517 const char *how_bfd_target
;
518 enum bfd_architecture how_bfd_arch
;
519 const unsigned char *how_jtab
;
520 int how_jtab_size
; /* size of the jtab entry */
521 int how_jtab_roff
; /* offset into it for the ind 32 reloc into idata 5 */
524 static const struct mac
529 "arm", ".byte", ".short", ".long", ".asciz", "@",
530 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
531 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
532 "pe-arm-little", bfd_arch_arm
,
533 arm_jtab
, sizeof (arm_jtab
), 8
538 "i386", ".byte", ".short", ".long", ".asciz", "#",
539 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
540 "pe-i386",bfd_arch_i386
,
541 i386_jtab
, sizeof (i386_jtab
), 2
546 "ppc", ".byte", ".short", ".long", ".asciz", "#",
547 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
548 "pe-powerpcle",bfd_arch_powerpc
,
549 ppc_jtab
, sizeof (ppc_jtab
), 0
554 "thumb", ".byte", ".short", ".long", ".asciz", "@",
555 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
556 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
557 "pe-arm-little", bfd_arch_arm
,
558 thumb_jtab
, sizeof (thumb_jtab
), 12
561 #define MARM_INTERWORK 4
563 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
564 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
565 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
566 "pe-arm-little", bfd_arch_arm
,
567 arm_interwork_jtab
, sizeof (arm_interwork_jtab
), 12
572 "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
573 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
574 ".global", ".space", ".align\t2",".align\t4", "",
575 "pe-mcore-big", bfd_arch_mcore
,
576 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
581 "mcore-le", ".byte", ".short", ".long", ".asciz", "//",
582 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
583 ".global", ".space", ".align\t2",".align\t4", "-EL",
584 "pe-mcore-little", bfd_arch_mcore
,
585 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
590 "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
591 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
592 ".global", ".space", ".align\t2",".align\t4", "",
593 "elf32-mcore-big", bfd_arch_mcore
,
594 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
598 #define MMCORE_ELF_LE 8
599 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
600 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
601 ".global", ".space", ".align\t2",".align\t4", "-EL",
602 "elf32-mcore-little", bfd_arch_mcore
,
603 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
608 "arm", ".byte", ".short", ".long", ".asciz", "@",
609 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
610 ".global", ".space", ".align\t2",".align\t4", "",
611 "epoc-pe-arm-little", bfd_arch_arm
,
612 arm_jtab
, sizeof (arm_jtab
), 8
615 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
625 typedef struct export
628 const char *internal_name
;
638 /* A list of symbols which we should not export. */
642 struct string_list
*next
;
646 static struct string_list
*excludes
;
648 static const char *rvaafter
PARAMS ((int));
649 static const char *rvabefore
PARAMS ((int));
650 static const char *asm_prefix
PARAMS ((int));
651 static void append_import
PARAMS ((const char *, const char *, int));
652 static void run
PARAMS ((const char *, char *));
653 static void scan_drectve_symbols
PARAMS ((bfd
*));
654 static void scan_filtered_symbols
PARAMS ((bfd
*, PTR
, long, unsigned int));
655 static void add_excludes
PARAMS ((const char *));
656 static boolean match_exclude
PARAMS ((const char *));
657 static void set_default_excludes
PARAMS ((void));
658 static long filter_symbols
PARAMS ((bfd
*, PTR
, long, unsigned int));
659 static void scan_all_symbols
PARAMS ((bfd
*));
660 static void scan_open_obj_file
PARAMS ((bfd
*));
661 static void scan_obj_file
PARAMS ((const char *));
662 static void dump_def_info
PARAMS ((FILE *));
663 static int sfunc
PARAMS ((const void *, const void *));
664 static void flush_page
PARAMS ((FILE *, long *, int, int));
665 static void gen_def_file
PARAMS ((void));
666 static void generate_idata_ofile
PARAMS ((FILE *));
667 static void gen_exp_file
PARAMS ((void));
668 static const char *xlate
PARAMS ((const char *));
670 static void dump_iat
PARAMS ((FILE *, export_type
*));
672 static char *make_label
PARAMS ((const char *, const char *));
673 static bfd
*make_one_lib_file
PARAMS ((export_type
*, int));
674 static bfd
*make_head
PARAMS ((void));
675 static bfd
*make_tail
PARAMS ((void));
676 static void gen_lib_file
PARAMS ((void));
677 static int pfunc
PARAMS ((const void *, const void *));
678 static int nfunc
PARAMS ((const void *, const void *));
679 static void remove_null_names
PARAMS ((export_type
**));
680 static void dtab
PARAMS ((export_type
**));
681 static void process_duplicates
PARAMS ((export_type
**));
682 static void fill_ordinals
PARAMS ((export_type
**));
683 static int alphafunc
PARAMS ((const void *, const void *));
684 static void mangle_defs
PARAMS ((void));
685 static void usage
PARAMS ((FILE *, int));
686 static void inform
PARAMS ((const char *, ...));
691 inform (const char * message
, ...)
693 inform (message
, va_alist
)
694 const char * message
;
704 va_start (args
, message
);
709 report (message
, args
);
731 /* xgettext:c-format */
732 fatal (_("Internal error: Unknown machine type: %d"), machine
);
755 /* xgettext:c-format */
756 fatal (_("Internal error: Unknown machine type: %d"), machine
);
780 /* xgettext:c-format */
781 fatal (_("Internal error: Unknown machine type: %d"), machine
);
787 #define ASM_BYTE mtable[machine].how_byte
788 #define ASM_SHORT mtable[machine].how_short
789 #define ASM_LONG mtable[machine].how_long
790 #define ASM_TEXT mtable[machine].how_asciz
791 #define ASM_C mtable[machine].how_comment
792 #define ASM_JUMP mtable[machine].how_jump
793 #define ASM_GLOBAL mtable[machine].how_global
794 #define ASM_SPACE mtable[machine].how_space
795 #define ASM_ALIGN_SHORT mtable[machine].how_align_short
796 #define ASM_RVA_BEFORE rvabefore(machine)
797 #define ASM_RVA_AFTER rvaafter(machine)
798 #define ASM_PREFIX asm_prefix(machine)
799 #define ASM_ALIGN_LONG mtable[machine].how_align_long
800 #define HOW_BFD_READ_TARGET 0 /* always default*/
801 #define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
802 #define HOW_BFD_ARCH mtable[machine].how_bfd_arch
803 #define HOW_JTAB mtable[machine].how_jtab
804 #define HOW_JTAB_SIZE mtable[machine].how_jtab_size
805 #define HOW_JTAB_ROFF mtable[machine].how_jtab_roff
806 #define ASM_SWITCHES mtable[machine].how_default_as_switches
811 process_def_file (name
)
814 FILE *f
= fopen (name
, FOPEN_RT
);
817 /* xgettext:c-format */
818 fatal (_("Can't open def file: %s"), name
);
822 /* xgettext:c-format */
823 inform (_("Processing def file: %s"), name
);
827 inform (_("Processed def file"));
830 /**********************************************************************/
832 /* Communications with the parser */
834 static const char *d_name
; /* Arg to NAME or LIBRARY */
835 static int d_nfuncs
; /* Number of functions exported */
836 static int d_named_nfuncs
; /* Number of named functions exported */
837 static int d_low_ord
; /* Lowest ordinal index */
838 static int d_high_ord
; /* Highest ordinal index */
839 static export_type
*d_exports
; /*list of exported functions */
840 static export_type
**d_exports_lexically
; /* vector of exported functions in alpha order */
841 static dlist_type
*d_list
; /* Descriptions */
842 static dlist_type
*a_list
; /* Stuff to go in directives */
849 const char * err ATTRIBUTE_UNUSED
;
851 /* xgettext:c-format */
852 non_fatal (_("Syntax error in def file %s:%d"), def_file
, linenumber
);
858 def_exports (name
, internal_name
, ordinal
, noname
, constant
, data
)
860 const char *internal_name
;
866 struct export
*p
= (struct export
*) xmalloc (sizeof (*p
));
869 p
->internal_name
= internal_name
? internal_name
: name
;
870 p
->ordinal
= ordinal
;
871 p
->constant
= constant
;
880 def_name (name
, base
)
884 /* xgettext:c-format */
885 inform (_("NAME: %s base: %x"), name
, base
);
888 non_fatal (_("Can't have LIBRARY and NAME"));
891 /* if --dllname not provided, use the one in the DEF file.
892 FIXME: Is this appropriate for executables? */
894 dll_name
= xstrdup (name
);
899 def_library (name
, base
)
903 /* xgettext:c-format */
904 inform (_("LIBRARY: %s base: %x"), name
, base
);
907 non_fatal (_("Can't have LIBRARY and NAME"));
910 /* if --dllname not provided, use the one in the DEF file. */
912 dll_name
= xstrdup (name
);
917 def_description (desc
)
920 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
921 d
->text
= xstrdup (desc
);
930 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
931 d
->text
= xstrdup (dir
);
937 def_heapsize (reserve
, commit
)
943 sprintf (b
, "-heap 0x%x,0x%x ", reserve
, commit
);
945 sprintf (b
, "-heap 0x%x ", reserve
);
946 new_directive (xstrdup (b
));
950 def_stacksize (reserve
, commit
)
956 sprintf (b
, "-stack 0x%x,0x%x ", reserve
, commit
);
958 sprintf (b
, "-stack 0x%x ", reserve
);
959 new_directive (xstrdup (b
));
962 /* append_import simply adds the given import definition to the global
963 import_list. It is used by def_import. */
966 append_import (symbol_name
, dll_name
, func_ordinal
)
967 const char *symbol_name
;
968 const char *dll_name
;
974 for (pq
= &import_list
; *pq
!= NULL
; pq
= &(*pq
)->next
)
976 if (strcmp ((*pq
)->dllname
, dll_name
) == 0)
979 q
->functail
->next
= xmalloc (sizeof (ifunctype
));
980 q
->functail
= q
->functail
->next
;
981 q
->functail
->ord
= func_ordinal
;
982 q
->functail
->name
= xstrdup (symbol_name
);
983 q
->functail
->next
= NULL
;
989 q
= xmalloc (sizeof (iheadtype
));
990 q
->dllname
= xstrdup (dll_name
);
992 q
->funchead
= xmalloc (sizeof (ifunctype
));
993 q
->functail
= q
->funchead
;
995 q
->functail
->name
= xstrdup (symbol_name
);
996 q
->functail
->ord
= func_ordinal
;
997 q
->functail
->next
= NULL
;
1002 /* def_import is called from within defparse.y when an IMPORT
1003 declaration is encountered. Depending on the form of the
1004 declaration, the module name may or may not need ".dll" to be
1005 appended to it, the name of the function may be stored in internal
1006 or entry, and there may or may not be an ordinal value associated
1009 /* A note regarding the parse modes:
1010 In defparse.y we have to accept import declarations which follow
1011 any one of the following forms:
1012 <func_name_in_app> = <dll_name>.<func_name_in_dll>
1013 <func_name_in_app> = <dll_name>.<number>
1014 <dll_name>.<func_name_in_dll>
1016 Furthermore, the dll's name may or may not end with ".dll", which
1017 complicates the parsing a little. Normally the dll's name is
1018 passed to def_import() in the "module" parameter, but when it ends
1019 with ".dll" it gets passed in "module" sans ".dll" and that needs
1022 def_import gets five parameters:
1023 APP_NAME - the name of the function in the application, if
1024 present, or NULL if not present.
1025 MODULE - the name of the dll, possibly sans extension (ie, '.dll').
1026 DLLEXT - the extension of the dll, if present, NULL if not present.
1027 ENTRY - the name of the function in the dll, if present, or NULL.
1028 ORD_VAL - the numerical tag of the function in the dll, if present,
1029 or NULL. Exactly one of <entry> or <ord_val> must be
1030 present (i.e., not NULL). */
1033 def_import (app_name
, module
, dllext
, entry
, ord_val
)
1034 const char *app_name
;
1040 const char *application_name
;
1044 application_name
= entry
;
1047 if (app_name
!= NULL
)
1048 application_name
= app_name
;
1050 application_name
= "";
1055 buf
= (char *) alloca (strlen (module
) + strlen (dllext
) + 2);
1056 sprintf (buf
, "%s.%s", module
, dllext
);
1060 append_import (application_name
, module
, ord_val
);
1064 def_version (major
, minor
)
1068 printf ("VERSION %d.%d\n", major
, minor
);
1072 def_section (name
, attr
)
1089 sprintf (buf
, "-attr %s %s", name
, atts
);
1090 new_directive (xstrdup (buf
));
1098 def_section ("CODE", attr
);
1105 def_section ("DATA", attr
);
1108 /**********************************************************************/
1116 int pid
, wait_status
;
1119 char *errmsg_fmt
, *errmsg_arg
;
1120 char *temp_base
= choose_temp_base ();
1122 inform ("run: %s %s", what
, args
);
1124 /* Count the args */
1126 for (s
= args
; *s
; s
++)
1130 argv
= alloca (sizeof (char *) * (i
+ 3));
1139 while (*s
!= ' ' && *s
!= 0)
1147 pid
= pexecute (argv
[0], (char * const *) argv
, program_name
, temp_base
,
1148 &errmsg_fmt
, &errmsg_arg
, PEXECUTE_ONE
| PEXECUTE_SEARCH
);
1152 inform (strerror (errno
));
1154 fatal (errmsg_fmt
, errmsg_arg
);
1157 pid
= pwait (pid
, & wait_status
, 0);
1161 /* xgettext:c-format */
1162 fatal (_("wait: %s"), strerror (errno
));
1164 else if (WIFSIGNALED (wait_status
))
1166 /* xgettext:c-format */
1167 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status
));
1169 else if (WIFEXITED (wait_status
))
1171 if (WEXITSTATUS (wait_status
) != 0)
1172 /* xgettext:c-format */
1173 non_fatal (_("%s exited with status %d"),
1174 what
, WEXITSTATUS (wait_status
));
1180 /* Look for a list of symbols to export in the .drectve section of
1181 ABFD. Pass each one to def_exports. */
1184 scan_drectve_symbols (abfd
)
1193 /* Look for .drectve's */
1194 s
= bfd_get_section_by_name (abfd
, DRECTVE_SECTION_NAME
);
1199 size
= bfd_get_section_size_before_reloc (s
);
1200 buf
= xmalloc (size
);
1202 bfd_get_section_contents (abfd
, s
, buf
, 0, size
);
1204 /* xgettext:c-format */
1205 inform (_("Sucking in info from %s section in %s"),
1206 DRECTVE_SECTION_NAME
, bfd_get_filename (abfd
));
1208 /* Search for -export: strings. The exported symbols can optionally
1209 have type tags (eg., -export:foo,data), so handle those as well.
1210 Currently only data tag is supported. */
1216 && strncmp (p
, "-export:", 8) == 0)
1220 flagword flags
= BSF_FUNCTION
;
1224 while (p
< e
&& *p
!= ',' && *p
!= ' ' && *p
!= '-')
1226 c
= xmalloc (p
- name
+ 1);
1227 memcpy (c
, name
, p
- name
);
1229 if (p
< e
&& *p
== ',') /* found type tag. */
1231 char *tag_start
= ++p
;
1232 while (p
< e
&& *p
!= ' ' && *p
!= '-')
1234 if (strncmp (tag_start
, "data", 4) == 0)
1235 flags
&= ~BSF_FUNCTION
;
1238 /* FIXME: The 5th arg is for the `constant' field.
1239 What should it be? Not that it matters since it's not
1240 currently useful. */
1241 def_exports (c
, 0, -1, 0, 0, ! (flags
& BSF_FUNCTION
));
1243 if (add_stdcall_alias
&& strchr (c
, '@'))
1245 char *exported_name
= xstrdup (c
);
1246 char *atsym
= strchr (exported_name
, '@');
1248 /* Note: stdcall alias symbols can never be data. */
1249 def_exports (exported_name
, xstrdup (c
), -1, 0, 0, 0);
1258 /* Look through the symbols in MINISYMS, and add each one to list of
1259 symbols to export. */
1262 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
)
1269 bfd_byte
*from
, *fromend
;
1271 store
= bfd_make_empty_symbol (abfd
);
1273 bfd_fatal (bfd_get_filename (abfd
));
1275 from
= (bfd_byte
*) minisyms
;
1276 fromend
= from
+ symcount
* size
;
1277 for (; from
< fromend
; from
+= size
)
1280 const char *symbol_name
;
1282 sym
= bfd_minisymbol_to_symbol (abfd
, false, from
, store
);
1284 bfd_fatal (bfd_get_filename (abfd
));
1286 symbol_name
= bfd_asymbol_name (sym
);
1287 if (bfd_get_symbol_leading_char (abfd
) == symbol_name
[0])
1290 def_exports (xstrdup (symbol_name
) , 0, -1, 0, 0,
1291 ! (sym
->flags
& BSF_FUNCTION
));
1293 if (add_stdcall_alias
&& strchr (symbol_name
, '@'))
1295 char *exported_name
= xstrdup (symbol_name
);
1296 char *atsym
= strchr (exported_name
, '@');
1298 /* Note: stdcall alias symbols can never be data. */
1299 def_exports (exported_name
, xstrdup (symbol_name
), -1, 0, 0, 0);
1304 /* Add a list of symbols to exclude. */
1307 add_excludes (new_excludes
)
1308 const char *new_excludes
;
1311 char *exclude_string
;
1313 local_copy
= xstrdup (new_excludes
);
1315 exclude_string
= strtok (local_copy
, ",:");
1316 for (; exclude_string
; exclude_string
= strtok (NULL
, ",:"))
1318 struct string_list
*new_exclude
;
1320 new_exclude
= ((struct string_list
*)
1321 xmalloc (sizeof (struct string_list
)));
1322 new_exclude
->string
= (char *) xmalloc (strlen (exclude_string
) + 2);
1323 /* FIXME: Is it always right to add a leading underscore? */
1324 sprintf (new_exclude
->string
, "_%s", exclude_string
);
1325 new_exclude
->next
= excludes
;
1326 excludes
= new_exclude
;
1328 /* xgettext:c-format */
1329 inform (_("Excluding symbol: %s"), exclude_string
);
1335 /* See if STRING is on the list of symbols to exclude. */
1338 match_exclude (string
)
1341 struct string_list
*excl_item
;
1343 for (excl_item
= excludes
; excl_item
; excl_item
= excl_item
->next
)
1344 if (strcmp (string
, excl_item
->string
) == 0)
1349 /* Add the default list of symbols to exclude. */
1352 set_default_excludes (void)
1354 add_excludes (default_excludes
);
1357 /* Choose which symbols to export. */
1360 filter_symbols (abfd
, minisyms
, symcount
, size
)
1366 bfd_byte
*from
, *fromend
, *to
;
1369 store
= bfd_make_empty_symbol (abfd
);
1371 bfd_fatal (bfd_get_filename (abfd
));
1373 from
= (bfd_byte
*) minisyms
;
1374 fromend
= from
+ symcount
* size
;
1375 to
= (bfd_byte
*) minisyms
;
1377 for (; from
< fromend
; from
+= size
)
1382 sym
= bfd_minisymbol_to_symbol (abfd
, false, (const PTR
) from
, store
);
1384 bfd_fatal (bfd_get_filename (abfd
));
1386 /* Check for external and defined only symbols. */
1387 keep
= (((sym
->flags
& BSF_GLOBAL
) != 0
1388 || (sym
->flags
& BSF_WEAK
) != 0
1389 || bfd_is_com_section (sym
->section
))
1390 && ! bfd_is_und_section (sym
->section
));
1392 keep
= keep
&& ! match_exclude (sym
->name
);
1396 memcpy (to
, from
, size
);
1401 return (to
- (bfd_byte
*) minisyms
) / size
;
1404 /* Export all symbols in ABFD, except for ones we were told not to
1408 scan_all_symbols (abfd
)
1415 /* Ignore bfds with an import descriptor table. We assume that any
1416 such BFD contains symbols which are exported from another DLL,
1417 and we don't want to reexport them from here. */
1418 if (bfd_get_section_by_name (abfd
, ".idata$4"))
1421 if (! (bfd_get_file_flags (abfd
) & HAS_SYMS
))
1423 /* xgettext:c-format */
1424 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1428 symcount
= bfd_read_minisymbols (abfd
, false, &minisyms
, &size
);
1430 bfd_fatal (bfd_get_filename (abfd
));
1434 /* xgettext:c-format */
1435 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1439 /* Discard the symbols we don't want to export. It's OK to do this
1440 in place; we'll free the storage anyway. */
1442 symcount
= filter_symbols (abfd
, minisyms
, symcount
, size
);
1443 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
);
1448 /* Look at the object file to decide which symbols to export. */
1451 scan_open_obj_file (abfd
)
1454 if (export_all_symbols
)
1455 scan_all_symbols (abfd
);
1457 scan_drectve_symbols (abfd
);
1459 /* FIXME: we ought to read in and block out the base relocations */
1461 /* xgettext:c-format */
1462 inform (_("Done reading %s"), bfd_get_filename (abfd
));
1466 scan_obj_file (filename
)
1467 const char *filename
;
1469 bfd
* f
= bfd_openr (filename
, 0);
1472 /* xgettext:c-format */
1473 fatal (_("Unable to open object file: %s"), filename
);
1475 /* xgettext:c-format */
1476 inform (_("Scanning object file %s"), filename
);
1478 if (bfd_check_format (f
, bfd_archive
))
1480 bfd
*arfile
= bfd_openr_next_archived_file (f
, 0);
1483 if (bfd_check_format (arfile
, bfd_object
))
1484 scan_open_obj_file (arfile
);
1486 arfile
= bfd_openr_next_archived_file (f
, arfile
);
1489 #ifdef DLLTOOL_MCORE_ELF
1490 if (mcore_elf_out_file
)
1491 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename
);
1494 else if (bfd_check_format (f
, bfd_object
))
1496 scan_open_obj_file (f
);
1498 #ifdef DLLTOOL_MCORE_ELF
1499 if (mcore_elf_out_file
)
1500 mcore_elf_cache_filename ((char *) filename
);
1507 /**********************************************************************/
1515 fprintf (f
, "%s ", ASM_C
);
1516 for (i
= 0; oav
[i
]; i
++)
1517 fprintf (f
, "%s ", oav
[i
]);
1519 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1521 fprintf (f
, "%s %d = %s %s @ %d %s%s%s\n",
1527 exp
->noname
? "NONAME " : "",
1528 exp
->constant
? "CONSTANT" : "",
1529 exp
->data
? "DATA" : "");
1533 /* Generate the .exp file */
1540 return *(const long *) a
- *(const long *) b
;
1544 flush_page (f
, need
, page_addr
, on_page
)
1552 /* Flush this page */
1553 fprintf (f
, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1557 fprintf (f
, "\t%s\t0x%x\t%s Size of block\n",
1559 (on_page
* 2) + (on_page
& 1) * 2 + 8,
1562 for (i
= 0; i
< on_page
; i
++)
1564 long needed
= need
[i
];
1567 needed
= ((needed
- page_addr
) | 0x3000) & 0xffff;
1569 fprintf (f
, "\t%s\t0x%lx\n", ASM_SHORT
, needed
);
1574 fprintf (f
, "\t%s\t0x%x\n", ASM_SHORT
, 0 | 0x0000);
1583 inform (_("Adding exports to output file"));
1585 fprintf (output_def
, ";");
1586 for (i
= 0; oav
[i
]; i
++)
1587 fprintf (output_def
, " %s", oav
[i
]);
1589 fprintf (output_def
, "\nEXPORTS\n");
1591 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1593 char *quote
= strchr (exp
->name
, '.') ? "\"" : "";
1594 char *res
= cplus_demangle (exp
->internal_name
, DMGL_ANSI
| DMGL_PARAMS
);
1596 if (strcmp (exp
->name
, exp
->internal_name
) == 0)
1599 fprintf (output_def
, "\t%s%s%s @ %d%s%s ; %s\n",
1604 exp
->noname
? " NONAME" : "",
1605 exp
->data
? " DATA" : "",
1610 char *quote1
= strchr (exp
->internal_name
, '.') ? "\"" : "";
1612 fprintf (output_def
, "\t%s%s%s = %s%s%s @ %d%s%s ; %s\n",
1620 exp
->noname
? " NONAME" : "",
1621 exp
->data
? " DATA" : "",
1628 inform (_("Added exports to output file"));
1631 /* generate_idata_ofile generates the portable assembly source code
1632 for the idata sections. It appends the source code to the end of
1636 generate_idata_ofile (filvar
)
1645 if (import_list
== NULL
)
1648 fprintf (filvar
, "%s Import data sections\n", ASM_C
);
1649 fprintf (filvar
, "\n\t.section\t.idata$2\n");
1650 fprintf (filvar
, "\t%s\tdoi_idata\n", ASM_GLOBAL
);
1651 fprintf (filvar
, "doi_idata:\n");
1654 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1656 fprintf (filvar
, "\t%slistone%d%s\t%s %s\n",
1657 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
,
1658 ASM_C
, headptr
->dllname
);
1659 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1660 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1661 fprintf (filvar
, "\t%sdllname%d%s\n",
1662 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1663 fprintf (filvar
, "\t%slisttwo%d%s\n\n",
1664 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1668 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL record at */
1669 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* end of idata$2 */
1670 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* section */
1671 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1672 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1674 fprintf (filvar
, "\n\t.section\t.idata$4\n");
1676 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1678 fprintf (filvar
, "listone%d:\n", headindex
);
1679 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1680 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1681 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1682 fprintf (filvar
,"\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1686 fprintf (filvar
, "\n\t.section\t.idata$5\n");
1688 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1690 fprintf (filvar
, "listtwo%d:\n", headindex
);
1691 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1692 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1693 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1694 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1698 fprintf (filvar
, "\n\t.section\t.idata$6\n");
1700 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1703 for (funcptr
= headptr
->funchead
; funcptr
!= NULL
;
1704 funcptr
= funcptr
->next
)
1706 fprintf (filvar
,"funcptr%d_%d:\n", headindex
, funcindex
);
1707 fprintf (filvar
,"\t%s\t%d\n", ASM_SHORT
,
1708 ((funcptr
->ord
) & 0xFFFF));
1709 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, funcptr
->name
);
1710 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1716 fprintf (filvar
, "\n\t.section\t.idata$7\n");
1718 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1720 fprintf (filvar
,"dllname%d:\n", headindex
);
1721 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, headptr
->dllname
);
1722 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1727 /* Assemble the specified file. */
1729 assemble_file (source
, dest
)
1730 const char * source
;
1735 cmd
= (char *) alloca (strlen (ASM_SWITCHES
) + strlen (as_flags
)
1736 + strlen (source
) + strlen (dest
) + 50);
1738 sprintf (cmd
, "%s %s -o %s %s", ASM_SWITCHES
, as_flags
, dest
, source
);
1751 /* xgettext:c-format */
1752 inform (_("Generating export file: %s"), exp_name
);
1754 f
= fopen (TMP_ASM
, FOPEN_WT
);
1756 /* xgettext:c-format */
1757 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM
);
1759 /* xgettext:c-format */
1760 inform (_("Opened temporary file: %s"), TMP_ASM
);
1766 fprintf (f
, "\t.section .edata\n\n");
1767 fprintf (f
, "\t%s 0 %s Allways 0\n", ASM_LONG
, ASM_C
);
1768 fprintf (f
, "\t%s 0x%lx %s Time and date\n", ASM_LONG
, (long) time(0),
1770 fprintf (f
, "\t%s 0 %s Major and Minor version\n", ASM_LONG
, ASM_C
);
1771 fprintf (f
, "\t%sname%s %s Ptr to name of dll\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1772 fprintf (f
, "\t%s %d %s Starting ordinal of exports\n", ASM_LONG
, d_low_ord
, ASM_C
);
1775 fprintf (f
, "\t%s %d %s Number of functions\n", ASM_LONG
, d_high_ord
- d_low_ord
+ 1, ASM_C
);
1776 fprintf(f
,"\t%s named funcs %d, low ord %d, high ord %d\n",
1778 d_named_nfuncs
, d_low_ord
, d_high_ord
);
1779 fprintf (f
, "\t%s %d %s Number of names\n", ASM_LONG
,
1780 show_allnames
? d_high_ord
- d_low_ord
+ 1 : d_named_nfuncs
, ASM_C
);
1781 fprintf (f
, "\t%safuncs%s %s Address of functions\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1783 fprintf (f
, "\t%sanames%s %s Address of Name Pointer Table\n",
1784 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1786 fprintf (f
, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1788 fprintf (f
, "name: %s \"%s\"\n", ASM_TEXT
, dll_name
);
1791 fprintf(f
,"%s Export address Table\n", ASM_C
);
1792 fprintf(f
,"\t%s\n", ASM_ALIGN_LONG
);
1793 fprintf (f
, "afuncs:\n");
1796 for (exp
= d_exports
; exp
; exp
= exp
->next
)
1798 if (exp
->ordinal
!= i
)
1801 fprintf (f
, "\t%s\t%d\t%s %d..%d missing\n",
1803 (exp
->ordinal
- i
) * 4,
1805 i
, exp
->ordinal
- 1);
1808 while (i
< exp
->ordinal
)
1810 fprintf(f
,"\t%s\t0\n", ASM_LONG
);
1814 fprintf (f
, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE
,
1816 exp
->internal_name
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1820 fprintf (f
,"%s Export Name Pointer Table\n", ASM_C
);
1821 fprintf (f
, "anames:\n");
1823 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1825 if (!exp
->noname
|| show_allnames
)
1826 fprintf (f
, "\t%sn%d%s\n",
1827 ASM_RVA_BEFORE
, exp
->ordinal
, ASM_RVA_AFTER
);
1830 fprintf (f
,"%s Export Oridinal Table\n", ASM_C
);
1831 fprintf (f
, "anords:\n");
1832 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1834 if (!exp
->noname
|| show_allnames
)
1835 fprintf (f
, "\t%s %d\n", ASM_SHORT
, exp
->ordinal
- d_low_ord
);
1838 fprintf(f
,"%s Export Name Table\n", ASM_C
);
1839 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1840 if (!exp
->noname
|| show_allnames
)
1841 fprintf (f
, "n%d: %s \"%s\"\n",
1842 exp
->ordinal
, ASM_TEXT
, exp
->name
);
1846 fprintf (f
, "\t.section %s\n", DRECTVE_SECTION_NAME
);
1847 for (dl
= a_list
; dl
; dl
= dl
->next
)
1849 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, dl
->text
);
1855 fprintf (f
, "\t.section .rdata\n");
1856 for (dl
= d_list
; dl
; dl
= dl
->next
)
1861 /* We don't output as ascii because there can
1862 be quote characters in the string. */
1864 for (p
= dl
->text
; *p
; p
++)
1867 fprintf (f
, "\t%s\t", ASM_BYTE
);
1870 fprintf (f
, "%d", *p
);
1873 fprintf (f
, ",0\n");
1887 /* Add to the output file a way of getting to the exported names
1888 without using the import library. */
1891 fprintf (f
, "\t.section\t.rdata\n");
1892 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1893 if (!exp
->noname
|| show_allnames
)
1895 /* We use a single underscore for MS compatibility, and a
1896 double underscore for backward compatibility with old
1898 if (create_compat_implib
)
1899 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
1900 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
1901 if (create_compat_implib
)
1902 fprintf (f
, "__imp_%s:\n", exp
->name
);
1903 fprintf (f
, "_imp__%s:\n", exp
->name
);
1904 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, exp
->name
);
1908 /* Dump the reloc section if a base file is provided */
1912 long need
[PAGE_SIZE
];
1919 fprintf (f
, "\t.section\t.init\n");
1920 fprintf (f
, "lab:\n");
1922 fseek (base_file
, 0, SEEK_END
);
1923 numbytes
= ftell (base_file
);
1924 fseek (base_file
, 0, SEEK_SET
);
1925 copy
= xmalloc (numbytes
);
1926 fread (copy
, 1, numbytes
, base_file
);
1927 num_entries
= numbytes
/ sizeof (long);
1930 fprintf (f
, "\t.section\t.reloc\n");
1936 qsort (copy
, num_entries
, sizeof (long), sfunc
);
1937 /* Delete duplcates */
1938 for (src
= 0; src
< num_entries
; src
++)
1940 if (last
!= copy
[src
])
1941 last
= copy
[dst
++] = copy
[src
];
1945 page_addr
= addr
& PAGE_MASK
; /* work out the page addr */
1947 for (j
= 0; j
< num_entries
; j
++)
1950 if ((addr
& PAGE_MASK
) != page_addr
)
1952 flush_page (f
, need
, page_addr
, on_page
);
1954 page_addr
= addr
& PAGE_MASK
;
1956 need
[on_page
++] = addr
;
1958 flush_page (f
, need
, page_addr
, on_page
);
1960 /* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
1964 generate_idata_ofile (f
);
1968 /* assemble the file */
1969 assemble_file (TMP_ASM
, exp_name
);
1971 if (dontdeltemps
== 0)
1974 inform (_("Generated exports file"));
1983 char *copy
= xmalloc (strlen (name
) + 2);
1985 strcpy (copy
+ 1, name
);
1992 p
= strchr (name
, '@');
1999 /**********************************************************************/
2008 if (exp
->noname
&& !show_allnames
)
2010 fprintf (f
, "\t%s\t0x%08x\n",
2012 exp
->ordinal
| 0x80000000); /* hint or orindal ?? */
2016 fprintf (f
, "\t%sID%d%s\n", ASM_RVA_BEFORE
,
2034 unsigned char *data
;
2049 #define INIT_SEC_DATA(id, name, flags, align) { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
2050 static sinfo secdata
[NSECS
] =
2052 INIT_SEC_DATA (TEXT
, ".text", SEC_CODE
| SEC_HAS_CONTENTS
, 2),
2053 INIT_SEC_DATA (DATA
, ".data", SEC_DATA
, 2),
2054 INIT_SEC_DATA (BSS
, ".bss", 0, 2),
2055 INIT_SEC_DATA (IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2),
2056 INIT_SEC_DATA (IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2),
2057 INIT_SEC_DATA (IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2),
2058 INIT_SEC_DATA (IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1)
2063 /* Sections numbered to make the order the same as other PowerPC NT */
2064 /* compilers. This also keeps funny alignment thingies from happening. */
2077 static sinfo secdata
[NSECS
] =
2079 { TEXT
, ".text", SEC_CODE
| SEC_HAS_CONTENTS
, 3},
2080 { PDATA
, ".pdata", SEC_HAS_CONTENTS
, 2},
2081 { RDATA
, ".reldata", SEC_HAS_CONTENTS
, 2},
2082 { IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2},
2083 { IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2},
2084 { IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1},
2085 { IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2},
2086 { DATA
, ".data", SEC_DATA
, 2},
2087 { BSS
, ".bss", 0, 2}
2093 This is what we're trying to make. We generate the imp symbols with
2094 both single and double underscores, for compatibility.
2097 .global _GetFileVersionInfoSizeW@8
2098 .global __imp_GetFileVersionInfoSizeW@8
2099 _GetFileVersionInfoSizeW@8:
2100 jmp * __imp_GetFileVersionInfoSizeW@8
2101 .section .idata$7 # To force loading of head
2102 .long __version_a_head
2103 # Import Address Table
2105 __imp_GetFileVersionInfoSizeW@8:
2108 # Import Lookup Table
2114 .asciz "GetFileVersionInfoSizeW"
2117 For the PowerPC, here's the variation on the above scheme:
2119 # Rather than a simple "jmp *", the code to get to the dll function
2122 lwz r11,[tocv]__imp_function_name(r2)
2123 # RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2132 make_label (prefix
, name
)
2136 int len
= strlen (ASM_PREFIX
) + strlen (prefix
) + strlen (name
);
2137 char *copy
= xmalloc (len
+1 );
2138 strcpy (copy
, ASM_PREFIX
);
2139 strcat (copy
, prefix
);
2140 strcat (copy
, name
);
2145 make_one_lib_file (exp
, i
)
2153 const char *prefix
= "d";
2156 name
= (char *) alloca (strlen (prefix
) + 10);
2157 sprintf (name
, "%ss%05d.s", prefix
, i
);
2158 f
= fopen (name
, FOPEN_WT
);
2159 fprintf (f
, "\t.text\n");
2160 fprintf (f
, "\t%s\t%s%s\n", ASM_GLOBAL
, ASM_PREFIX
, exp
->name
);
2161 if (create_compat_implib
)
2162 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
2163 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
2164 if (create_compat_implib
)
2165 fprintf (f
, "%s%s:\n\t%s\t__imp_%s\n", ASM_PREFIX
,
2166 exp
->name
, ASM_JUMP
, exp
->name
);
2168 fprintf (f
, "\t.section\t.idata$7\t%s To force loading of head\n", ASM_C
);
2169 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, head_label
);
2172 fprintf (f
,"%s Import Address Table\n", ASM_C
);
2174 fprintf (f
, "\t.section .idata$5\n");
2175 if (create_compat_implib
)
2176 fprintf (f
, "__imp_%s:\n", exp
->name
);
2177 fprintf (f
, "_imp__%s:\n", exp
->name
);
2181 fprintf (f
, "\n%s Import Lookup Table\n", ASM_C
);
2182 fprintf (f
, "\t.section .idata$4\n");
2186 if(!exp
->noname
|| show_allnames
)
2188 fprintf (f
, "%s Hint/Name table\n", ASM_C
);
2189 fprintf (f
, "\t.section .idata$6\n");
2190 fprintf (f
, "ID%d:\t%s\t%d\n", exp
->ordinal
, ASM_SHORT
, exp
->hint
);
2191 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, xlate (exp
->name
));
2196 dest
= (char *) alloca (strlen (prefix
) + 10);
2197 sprintf (dest
, "%ss%05d.o", prefix
, i
);
2198 assemble_file (name
, dest
);
2203 asymbol
* exp_label
;
2206 asymbol
* iname_lab
;
2207 asymbol
** iname_lab_pp
;
2208 asymbol
** iname_pp
;
2217 asymbol
* ptrs
[NSECS
+ 4 + EXTRA
+ 1];
2219 char * outname
= xmalloc (10);
2223 sprintf (outname
, "%s%05d.o", TMP_STUB
, i
);
2225 abfd
= bfd_openw (outname
, HOW_BFD_WRITE_TARGET
);
2228 /* xgettext:c-format */
2229 fatal (_("bfd_open failed open stub file: %s"), outname
);
2231 /* xgettext:c-format */
2232 inform (_("Creating stub file: %s"), outname
);
2234 bfd_set_format (abfd
, bfd_object
);
2235 bfd_set_arch_mach (abfd
, HOW_BFD_ARCH
, 0);
2238 if (machine
== MARM_INTERWORK
|| machine
== MTHUMB
)
2239 bfd_set_private_flags (abfd
, F_INTERWORK
);
2242 /* First make symbols for the sections */
2243 for (i
= 0; i
< NSECS
; i
++)
2245 sinfo
*si
= secdata
+ i
;
2248 si
->sec
= bfd_make_section_old_way (abfd
, si
->name
);
2249 bfd_set_section_flags (abfd
,
2253 bfd_set_section_alignment(abfd
, si
->sec
, si
->align
);
2254 si
->sec
->output_section
= si
->sec
;
2255 si
->sym
= bfd_make_empty_symbol(abfd
);
2256 si
->sym
->name
= si
->sec
->name
;
2257 si
->sym
->section
= si
->sec
;
2258 si
->sym
->flags
= BSF_LOCAL
;
2260 ptrs
[oidx
] = si
->sym
;
2261 si
->sympp
= ptrs
+ oidx
;
2270 exp_label
= bfd_make_empty_symbol (abfd
);
2271 exp_label
->name
= make_label ("", exp
->name
);
2273 /* On PowerPC, the function name points to a descriptor in
2274 the rdata section, the first element of which is a
2275 pointer to the code (..function_name), and the second
2276 points to the .toc */
2278 if (machine
== MPPC
)
2279 exp_label
->section
= secdata
[RDATA
].sec
;
2282 exp_label
->section
= secdata
[TEXT
].sec
;
2284 exp_label
->flags
= BSF_GLOBAL
;
2285 exp_label
->value
= 0;
2288 if (machine
== MTHUMB
)
2289 bfd_coff_set_symbol_class (abfd
, exp_label
, C_THUMBEXTFUNC
);
2291 ptrs
[oidx
++] = exp_label
;
2294 /* Generate imp symbols with one underscore for Microsoft
2295 compatibility, and with two underscores for backward
2296 compatibility with old versions of cygwin. */
2297 if (create_compat_implib
)
2299 iname
= bfd_make_empty_symbol (abfd
);
2300 iname
->name
= make_label ("__imp_", exp
->name
);
2301 iname
->section
= secdata
[IDATA5
].sec
;
2302 iname
->flags
= BSF_GLOBAL
;
2306 iname2
= bfd_make_empty_symbol (abfd
);
2307 iname2
->name
= make_label ("_imp__", exp
->name
);
2308 iname2
->section
= secdata
[IDATA5
].sec
;
2309 iname2
->flags
= BSF_GLOBAL
;
2312 iname_lab
= bfd_make_empty_symbol(abfd
);
2314 iname_lab
->name
= head_label
;
2315 iname_lab
->section
= (asection
*)&bfd_und_section
;
2316 iname_lab
->flags
= 0;
2317 iname_lab
->value
= 0;
2320 iname_pp
= ptrs
+ oidx
;
2321 if (create_compat_implib
)
2322 ptrs
[oidx
++] = iname
;
2323 ptrs
[oidx
++] = iname2
;
2325 iname_lab_pp
= ptrs
+ oidx
;
2326 ptrs
[oidx
++] = iname_lab
;
2329 /* The symbol refering to the code (.text) */
2331 asymbol
*function_name
;
2333 function_name
= bfd_make_empty_symbol(abfd
);
2334 function_name
->name
= make_label ("..", exp
->name
);
2335 function_name
->section
= secdata
[TEXT
].sec
;
2336 function_name
->flags
= BSF_GLOBAL
;
2337 function_name
->value
= 0;
2339 fn_pp
= ptrs
+ oidx
;
2340 ptrs
[oidx
++] = function_name
;
2343 /* The .toc symbol */
2345 asymbol
*toc_symbol
; /* The .toc symbol */
2347 toc_symbol
= bfd_make_empty_symbol (abfd
);
2348 toc_symbol
->name
= make_label (".", "toc");
2349 toc_symbol
->section
= (asection
*)&bfd_und_section
;
2350 toc_symbol
->flags
= BSF_GLOBAL
;
2351 toc_symbol
->value
= 0;
2353 toc_pp
= ptrs
+ oidx
;
2354 ptrs
[oidx
++] = toc_symbol
;
2360 for (i
= 0; i
< NSECS
; i
++)
2362 sinfo
*si
= secdata
+ i
;
2363 asection
*sec
= si
->sec
;
2372 si
->size
= HOW_JTAB_SIZE
;
2373 si
->data
= xmalloc (HOW_JTAB_SIZE
);
2374 memcpy (si
->data
, HOW_JTAB
, HOW_JTAB_SIZE
);
2376 /* add the reloc into idata$5 */
2377 rel
= xmalloc (sizeof (arelent
));
2379 rpp
= xmalloc (sizeof (arelent
*) * 2);
2383 rel
->address
= HOW_JTAB_ROFF
;
2386 if (machine
== MPPC
)
2388 rel
->howto
= bfd_reloc_type_lookup (abfd
,
2389 BFD_RELOC_16_GOTOFF
);
2390 rel
->sym_ptr_ptr
= iname_pp
;
2394 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2395 rel
->sym_ptr_ptr
= secdata
[IDATA5
].sympp
;
2397 sec
->orelocation
= rpp
;
2398 sec
->reloc_count
= 1;
2403 /* An idata$4 or idata$5 is one word long, and has an
2406 si
->data
= xmalloc (4);
2411 si
->data
[0] = exp
->ordinal
;
2412 si
->data
[1] = exp
->ordinal
>> 8;
2413 si
->data
[2] = exp
->ordinal
>> 16;
2418 sec
->reloc_count
= 1;
2419 memset (si
->data
, 0, si
->size
);
2420 rel
= xmalloc (sizeof (arelent
));
2421 rpp
= xmalloc (sizeof (arelent
*) * 2);
2426 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2427 rel
->sym_ptr_ptr
= secdata
[IDATA6
].sympp
;
2428 sec
->orelocation
= rpp
;
2436 /* This used to add 1 to exp->hint. I don't know
2437 why it did that, and it does not match what I see
2438 in programs compiled with the MS tools. */
2439 int idx
= exp
->hint
;
2440 si
->size
= strlen (xlate (exp
->name
)) + 3;
2441 si
->data
= xmalloc (si
->size
);
2442 si
->data
[0] = idx
& 0xff;
2443 si
->data
[1] = idx
>> 8;
2444 strcpy (si
->data
+ 2, xlate (exp
->name
));
2449 si
->data
=xmalloc(4);
2450 memset (si
->data
, 0, si
->size
);
2451 rel
= xmalloc (sizeof (arelent
));
2452 rpp
= xmalloc (sizeof (arelent
*) * 2);
2456 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2457 rel
->sym_ptr_ptr
= iname_lab_pp
;
2458 sec
->orelocation
= rpp
;
2459 sec
->reloc_count
= 1;
2465 /* The .pdata section is 5 words long. */
2466 /* Think of it as: */
2469 /* bfd_vma BeginAddress, [0x00] */
2470 /* EndAddress, [0x04] */
2471 /* ExceptionHandler, [0x08] */
2472 /* HandlerData, [0x0c] */
2473 /* PrologEndAddress; [0x10] */
2476 /* So this pdata section setups up this as a glue linkage to
2477 a dll routine. There are a number of house keeping things
2480 1. In the name of glue trickery, the ADDR32 relocs for 0,
2481 4, and 0x10 are set to point to the same place:
2483 2. There is one more reloc needed in the pdata section.
2484 The actual glue instruction to restore the toc on
2485 return is saved as the offset in an IMGLUE reloc.
2486 So we need a total of four relocs for this section.
2488 3. Lastly, the HandlerData field is set to 0x03, to indicate
2489 that this is a glue routine.
2491 arelent
*imglue
, *ba_rel
, *ea_rel
, *pea_rel
;
2493 /* alignment must be set to 2**2 or you get extra stuff */
2494 bfd_set_section_alignment(abfd
, sec
, 2);
2497 si
->data
=xmalloc(4 * 5);
2498 memset (si
->data
, 0, si
->size
);
2499 rpp
= xmalloc (sizeof (arelent
*) * 5);
2500 rpp
[0] = imglue
= xmalloc (sizeof (arelent
));
2501 rpp
[1] = ba_rel
= xmalloc (sizeof (arelent
));
2502 rpp
[2] = ea_rel
= xmalloc (sizeof (arelent
));
2503 rpp
[3] = pea_rel
= xmalloc (sizeof (arelent
));
2506 /* stick the toc reload instruction in the glue reloc */
2507 bfd_put_32(abfd
, ppc_glue_insn
, (char *) &imglue
->address
);
2510 imglue
->howto
= bfd_reloc_type_lookup (abfd
,
2511 BFD_RELOC_32_GOTOFF
);
2512 imglue
->sym_ptr_ptr
= fn_pp
;
2514 ba_rel
->address
= 0;
2516 ba_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2517 ba_rel
->sym_ptr_ptr
= fn_pp
;
2519 bfd_put_32(abfd
, 0x18, si
->data
+ 0x04);
2520 ea_rel
->address
= 4;
2522 ea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2523 ea_rel
->sym_ptr_ptr
= fn_pp
;
2525 /* mark it as glue */
2526 bfd_put_32(abfd
, 0x03, si
->data
+ 0x0c);
2528 /* mark the prolog end address */
2529 bfd_put_32(abfd
, 0x0D, si
->data
+ 0x10);
2530 pea_rel
->address
= 0x10;
2531 pea_rel
->addend
= 0;
2532 pea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2533 pea_rel
->sym_ptr_ptr
= fn_pp
;
2535 sec
->orelocation
= rpp
;
2536 sec
->reloc_count
= 4;
2540 /* Each external function in a PowerPC PE file has a two word
2541 descriptor consisting of:
2542 1. The address of the code.
2543 2. The address of the appropriate .toc
2544 We use relocs to build this.
2548 si
->data
= xmalloc (8);
2549 memset (si
->data
, 0, si
->size
);
2551 rpp
= xmalloc (sizeof (arelent
*) * 3);
2552 rpp
[0] = rel
= xmalloc (sizeof (arelent
));
2553 rpp
[1] = xmalloc (sizeof (arelent
));
2558 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2559 rel
->sym_ptr_ptr
= fn_pp
;
2565 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2566 rel
->sym_ptr_ptr
= toc_pp
;
2568 sec
->orelocation
= rpp
;
2569 sec
->reloc_count
= 2;
2571 #endif /* DLLTOOL_PPC */
2577 /* Size up all the sections */
2578 for (i
= 0; i
< NSECS
; i
++)
2580 sinfo
*si
= secdata
+ i
;
2582 bfd_set_section_size (abfd
, si
->sec
, si
->size
);
2583 bfd_set_section_vma (abfd
, si
->sec
, vma
);
2585 /* vma += si->size;*/
2588 /* Write them out */
2589 for (i
= 0; i
< NSECS
; i
++)
2591 sinfo
*si
= secdata
+ i
;
2593 if (i
== IDATA5
&& no_idata5
)
2596 if (i
== IDATA4
&& no_idata4
)
2599 bfd_set_section_contents (abfd
, si
->sec
,
2604 bfd_set_symtab (abfd
, ptrs
, oidx
);
2606 abfd
= bfd_openr (outname
, HOW_BFD_READ_TARGET
);
2615 FILE *f
= fopen (TMP_HEAD_S
, FOPEN_WT
);
2619 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S
);
2623 fprintf (f
, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C
);
2624 fprintf (f
, "\t.section .idata$2\n");
2626 fprintf(f
,"\t%s\t%s\n", ASM_GLOBAL
,head_label
);
2628 fprintf (f
, "%s:\n", head_label
);
2630 fprintf (f
, "\t%shname%s\t%sPtr to image import by name list\n",
2631 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
2633 fprintf (f
, "\t%sthis should be the timestamp, but NT sometimes\n", ASM_C
);
2634 fprintf (f
, "\t%sdoesn't load DLLs when this is set.\n", ASM_C
);
2635 fprintf (f
, "\t%s\t0\t%s loaded time\n", ASM_LONG
, ASM_C
);
2636 fprintf (f
, "\t%s\t0\t%s Forwarder chain\n", ASM_LONG
, ASM_C
);
2637 fprintf (f
, "\t%s__%s_iname%s\t%s imported dll's name\n",
2642 fprintf (f
, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2644 ASM_RVA_AFTER
, ASM_C
);
2646 fprintf (f
, "%sStuff for compatibility\n", ASM_C
);
2650 fprintf (f
, "\t.section\t.idata$5\n");
2651 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2652 fprintf (f
, "fthunk:\n");
2657 fprintf (f
, "\t.section\t.idata$4\n");
2659 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2660 fprintf (f
, "\t.section .idata$4\n");
2661 fprintf (f
, "hname:\n");
2666 assemble_file (TMP_HEAD_S
, TMP_HEAD_O
);
2668 return bfd_openr (TMP_HEAD_O
, HOW_BFD_READ_TARGET
);
2674 FILE *f
= fopen (TMP_TAIL_S
, FOPEN_WT
);
2678 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S
);
2684 fprintf (f
, "\t.section .idata$4\n");
2685 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2690 fprintf (f
, "\t.section .idata$5\n");
2691 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2695 /* Normally, we need to see a null descriptor built in idata$3 to
2696 act as the terminator for the list. The ideal way, I suppose,
2697 would be to mark this section as a comdat type 2 section, so
2698 only one would appear in the final .exe (if our linker supported
2699 comdat, that is) or cause it to be inserted by something else (say
2703 fprintf (f
, "\t.section .idata$3\n");
2704 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2705 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2706 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2707 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2708 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2712 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
2713 do too. Original, huh? */
2714 fprintf (f
, "\t.section .idata$6\n");
2716 fprintf (f
, "\t.section .idata$7\n");
2719 fprintf (f
, "\t%s\t__%s_iname\n", ASM_GLOBAL
, imp_name_lab
);
2720 fprintf (f
, "__%s_iname:\t%s\t\"%s\"\n",
2721 imp_name_lab
, ASM_TEXT
, dll_name
);
2725 assemble_file (TMP_TAIL_S
, TMP_TAIL_O
);
2727 return bfd_openr (TMP_TAIL_O
, HOW_BFD_READ_TARGET
);
2742 outarch
= bfd_openw (imp_name
, HOW_BFD_WRITE_TARGET
);
2745 /* xgettext:c-format */
2746 fatal (_("Can't open .lib file: %s"), imp_name
);
2748 /* xgettext:c-format */
2749 inform (_("Creating library file: %s"), imp_name
);
2751 bfd_set_format (outarch
, bfd_archive
);
2752 outarch
->has_armap
= 1;
2754 /* Work out a reasonable size of things to put onto one line. */
2756 ar_head
= make_head ();
2757 ar_tail
= make_tail();
2759 if (ar_head
== NULL
|| ar_tail
== NULL
)
2762 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
2764 bfd
*n
= make_one_lib_file (exp
, i
);
2769 /* Now stick them all into the archive */
2771 ar_head
->next
= head
;
2772 ar_tail
->next
= ar_head
;
2775 if (! bfd_set_archive_head (outarch
, head
))
2776 bfd_fatal ("bfd_set_archive_head");
2778 if (! bfd_close (outarch
))
2779 bfd_fatal (imp_name
);
2781 while (head
!= NULL
)
2783 bfd
*n
= head
->next
;
2788 /* Delete all the temp files */
2790 if (dontdeltemps
== 0)
2792 unlink (TMP_HEAD_O
);
2793 unlink (TMP_HEAD_S
);
2794 unlink (TMP_TAIL_O
);
2795 unlink (TMP_TAIL_S
);
2798 if (dontdeltemps
< 2)
2802 name
= (char *) alloca (sizeof TMP_STUB
+ 10);
2803 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
2805 sprintf (name
, "%s%05d.o", TMP_STUB
, i
);
2806 if (unlink (name
) < 0)
2807 /* xgettext:c-format */
2808 non_fatal (_("cannot delete %s: %s"), name
, strerror (errno
));
2812 inform (_("Created lib file"));
2815 /**********************************************************************/
2817 /* Run through the information gathered from the .o files and the
2818 .def file and work out the best stuff */
2824 export_type
*ap
= *(export_type
**) a
;
2825 export_type
*bp
= *(export_type
**) b
;
2826 if (ap
->ordinal
== bp
->ordinal
)
2829 /* unset ordinals go to the bottom */
2830 if (ap
->ordinal
== -1)
2832 if (bp
->ordinal
== -1)
2834 return (ap
->ordinal
- bp
->ordinal
);
2842 export_type
*ap
= *(export_type
**) a
;
2843 export_type
*bp
= *(export_type
**) b
;
2845 return (strcmp (ap
->name
, bp
->name
));
2849 remove_null_names (ptr
)
2854 for (dst
= src
= 0; src
< d_nfuncs
; src
++)
2858 ptr
[dst
] = ptr
[src
];
2875 for (i
= 0; i
< d_nfuncs
; i
++)
2879 printf ("%d %s @ %d %s%s%s\n",
2880 i
, ptr
[i
]->name
, ptr
[i
]->ordinal
,
2881 ptr
[i
]->noname
? "NONAME " : "",
2882 ptr
[i
]->constant
? "CONSTANT" : "",
2883 ptr
[i
]->data
? "DATA" : "");
2892 process_duplicates (d_export_vec
)
2893 export_type
**d_export_vec
;
2901 /* Remove duplicates */
2902 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), nfunc
);
2904 dtab (d_export_vec
);
2905 for (i
= 0; i
< d_nfuncs
- 1; i
++)
2907 if (strcmp (d_export_vec
[i
]->name
,
2908 d_export_vec
[i
+ 1]->name
) == 0)
2911 export_type
*a
= d_export_vec
[i
];
2912 export_type
*b
= d_export_vec
[i
+ 1];
2916 /* xgettext:c-format */
2917 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
2918 a
->name
, a
->ordinal
, b
->ordinal
);
2920 if (a
->ordinal
!= -1
2921 && b
->ordinal
!= -1)
2922 /* xgettext:c-format */
2923 fatal (_("Error, duplicate EXPORT with oridinals: %s"),
2926 /* Merge attributes */
2927 b
->ordinal
= a
->ordinal
> 0 ? a
->ordinal
: b
->ordinal
;
2928 b
->constant
|= a
->constant
;
2929 b
->noname
|= a
->noname
;
2931 d_export_vec
[i
] = 0;
2934 dtab (d_export_vec
);
2935 remove_null_names (d_export_vec
);
2936 dtab (d_export_vec
);
2941 /* Count the names */
2942 for (i
= 0; i
< d_nfuncs
; i
++)
2944 if (!d_export_vec
[i
]->noname
)
2950 fill_ordinals (d_export_vec
)
2951 export_type
**d_export_vec
;
2958 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
2960 /* fill in the unset ordinals with ones from our range */
2962 ptr
= (char *) xmalloc (size
);
2964 memset (ptr
, 0, size
);
2966 /* Mark in our large vector all the numbers that are taken */
2967 for (i
= 0; i
< d_nfuncs
; i
++)
2969 if (d_export_vec
[i
]->ordinal
!= -1)
2971 ptr
[d_export_vec
[i
]->ordinal
] = 1;
2972 if (lowest
== -1 || d_export_vec
[i
]->ordinal
< lowest
)
2974 lowest
= d_export_vec
[i
]->ordinal
;
2979 /* Start at 1 for compatibility with MS toolchain. */
2983 /* Now fill in ordinals where the user wants us to choose. */
2984 for (i
= 0; i
< d_nfuncs
; i
++)
2986 if (d_export_vec
[i
]->ordinal
== -1)
2990 /* First try within or after any user supplied range. */
2991 for (j
= lowest
; j
< size
; j
++)
2995 d_export_vec
[i
]->ordinal
= j
;
2999 /* Then try before the range. */
3000 for (j
= lowest
; j
>0; j
--)
3004 d_export_vec
[i
]->ordinal
= j
;
3015 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
3017 /* Work out the lowest and highest ordinal numbers. */
3020 if (d_export_vec
[0])
3021 d_low_ord
= d_export_vec
[0]->ordinal
;
3022 if (d_export_vec
[d_nfuncs
-1])
3023 d_high_ord
= d_export_vec
[d_nfuncs
-1]->ordinal
;
3032 const export_type
**a
= (const export_type
**) av
;
3033 const export_type
**b
= (const export_type
**) bv
;
3035 return strcmp ((*a
)->name
, (*b
)->name
);
3041 /* First work out the minimum ordinal chosen */
3047 export_type
**d_export_vec
3048 = (export_type
**) xmalloc (sizeof (export_type
*) * d_nfuncs
);
3050 inform (_("Processing definitions"));
3052 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3054 d_export_vec
[i
] = exp
;
3057 process_duplicates (d_export_vec
);
3058 fill_ordinals (d_export_vec
);
3060 /* Put back the list in the new order */
3062 for (i
= d_nfuncs
- 1; i
>= 0; i
--)
3064 d_export_vec
[i
]->next
= d_exports
;
3065 d_exports
= d_export_vec
[i
];
3068 /* Build list in alpha order */
3069 d_exports_lexically
= (export_type
**)
3070 xmalloc (sizeof (export_type
*) * (d_nfuncs
+ 1));
3072 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3074 d_exports_lexically
[i
] = exp
;
3076 d_exports_lexically
[i
] = 0;
3078 qsort (d_exports_lexically
, i
, sizeof (export_type
*), alphafunc
);
3080 /* Fill exp entries with their hint values */
3082 for (i
= 0; i
< d_nfuncs
; i
++)
3084 if (!d_exports_lexically
[i
]->noname
|| show_allnames
)
3085 d_exports_lexically
[i
]->hint
= hint
++;
3088 inform (_("Processed definitions"));
3091 /**********************************************************************/
3094 usage (file
, status
)
3098 /* xgetext:c-format */
3099 fprintf (file
, _("Usage %s <options> <object-files>\n"), program_name
);
3100 /* xgetext:c-format */
3101 fprintf (file
, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname
);
3102 fprintf (file
, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
3103 fprintf (file
, _(" -e --output-exp <outname> Generate an export file.\n"));
3104 fprintf (file
, _(" -l --output-lib <outname> Generate an interface library.\n"));
3105 fprintf (file
, _(" -a --add-indirect Add dll indirects to export file.\n"));
3106 fprintf (file
, _(" -D --dllname <name> Name of input dll to put into interface lib.\n"));
3107 fprintf (file
, _(" -d --input-def <deffile> Name of .def file to be read in.\n"));
3108 fprintf (file
, _(" -z --output-def <deffile> Name of .def file to be created.\n"));
3109 fprintf (file
, _(" --export-all-symbols Export all symbols to .def\n"));
3110 fprintf (file
, _(" --no-export-all-symbols Only export listed symbols\n"));
3111 fprintf (file
, _(" --exclude-symbols <list> Don't export <list>\n"));
3112 fprintf (file
, _(" --no-default-excludes Clear default exclude symbols\n"));
3113 fprintf (file
, _(" -b --base-file <basefile> Read linker generated base file.\n"));
3114 fprintf (file
, _(" -x --no-idata4 Don't generate idata$4 section.\n"));
3115 fprintf (file
, _(" -c --no-idata5 Don't generate idata$5 section.\n"));
3116 fprintf (file
, _(" -U --add-underscore Add underscores to symbols in interface library.\n"));
3117 fprintf (file
, _(" -k --kill-at Kill @<n> from exported names.\n"));
3118 fprintf (file
, _(" -A --add-stdcall-alias Add aliases without @<n>.\n"));
3119 fprintf (file
, _(" -S --as <name> Use <name> for assembler.\n"));
3120 fprintf (file
, _(" -f --as-flags <flags> Pass <flags> to the assembler.\n"));
3121 fprintf (file
, _(" -C --compat-implib Create backward compatible import library.\n"));
3122 fprintf (file
, _(" -n --no-delete Keep temp files (repeat for extra preservation).\n"));
3123 fprintf (file
, _(" -v --verbose Be verbose.\n"));
3124 fprintf (file
, _(" -V --version Display the program version.\n"));
3125 fprintf (file
, _(" -h --help Display this information.\n"));
3126 #ifdef DLLTOOL_MCORE_ELF
3127 fprintf (file
, _(" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n"));
3128 fprintf (file
, _(" -L --linker <name> Use <name> as the linker.\n"));
3129 fprintf (file
, _(" -F --linker-flags <flags> Pass <flags> to the linker.\n"));
3134 #define OPTION_EXPORT_ALL_SYMS 150
3135 #define OPTION_NO_EXPORT_ALL_SYMS (OPTION_EXPORT_ALL_SYMS + 1)
3136 #define OPTION_EXCLUDE_SYMS (OPTION_NO_EXPORT_ALL_SYMS + 1)
3137 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_EXCLUDE_SYMS + 1)
3139 static const struct option long_options
[] =
3141 {"no-delete", no_argument
, NULL
, 'n'},
3142 {"dllname", required_argument
, NULL
, 'D'},
3143 {"no-idata4", no_argument
, NULL
, 'x'},
3144 {"no-idata5", no_argument
, NULL
, 'c'},
3145 {"output-exp", required_argument
, NULL
, 'e'},
3146 {"output-def", required_argument
, NULL
, 'z'},
3147 {"export-all-symbols", no_argument
, NULL
, OPTION_EXPORT_ALL_SYMS
},
3148 {"no-export-all-symbols", no_argument
, NULL
, OPTION_NO_EXPORT_ALL_SYMS
},
3149 {"exclude-symbols", required_argument
, NULL
, OPTION_EXCLUDE_SYMS
},
3150 {"no-default-excludes", no_argument
, NULL
, OPTION_NO_DEFAULT_EXCLUDES
},
3151 {"output-lib", required_argument
, NULL
, 'l'},
3152 {"def", required_argument
, NULL
, 'd'}, /* for compatiblity with older versions */
3153 {"input-def", required_argument
, NULL
, 'd'},
3154 {"add-underscore", no_argument
, NULL
, 'U'},
3155 {"kill-at", no_argument
, NULL
, 'k'},
3156 {"add-stdcall-alias", no_argument
, NULL
, 'A'},
3157 {"verbose", no_argument
, NULL
, 'v'},
3158 {"version", no_argument
, NULL
, 'V'},
3159 {"help", no_argument
, NULL
, 'h'},
3160 {"machine", required_argument
, NULL
, 'm'},
3161 {"add-indirect", no_argument
, NULL
, 'a'},
3162 {"base-file", required_argument
, NULL
, 'b'},
3163 {"as", required_argument
, NULL
, 'S'},
3164 {"as-flags", required_argument
, NULL
, 'f'},
3165 {"mcore-elf", required_argument
, NULL
, 'M'},
3166 {"compat-implib", no_argument
, NULL
, 'C'},
3178 program_name
= av
[0];
3181 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
3182 setlocale (LC_MESSAGES
, "");
3184 bindtextdomain (PACKAGE
, LOCALEDIR
);
3185 textdomain (PACKAGE
);
3187 while ((c
= getopt_long (ac
, av
,
3188 #ifdef DLLTOOL_MCORE_ELF
3189 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVhM:L:F:",
3191 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVh",
3198 case OPTION_EXPORT_ALL_SYMS
:
3199 export_all_symbols
= true;
3201 case OPTION_NO_EXPORT_ALL_SYMS
:
3202 export_all_symbols
= false;
3204 case OPTION_EXCLUDE_SYMS
:
3205 add_excludes (optarg
);
3207 case OPTION_NO_DEFAULT_EXCLUDES
:
3208 do_default_excludes
= false;
3223 /* ignored for compatibility */
3230 output_def
= fopen (optarg
, FOPEN_WT
);
3251 print_version (program_name
);
3260 add_stdcall_alias
= 1;
3269 base_file
= fopen (optarg
, FOPEN_RB
);
3272 /* xgettext:c-format */
3273 fatal (_("Unable to open base-file: %s"), optarg
);
3276 #ifdef DLLTOOL_MCORE_ELF
3278 mcore_elf_out_file
= optarg
;
3281 mcore_elf_linker
= optarg
;
3284 mcore_elf_linker_flags
= optarg
;
3288 create_compat_implib
= 1;
3296 for (i
= 0; mtable
[i
].type
; i
++)
3297 if (strcmp (mtable
[i
].type
, mname
) == 0)
3300 if (!mtable
[i
].type
)
3301 /* xgettext:c-format */
3302 fatal (_("Machine '%s' not supported"), mname
);
3306 if (!dll_name
&& exp_name
)
3308 int len
= strlen (exp_name
) + 5;
3309 dll_name
= xmalloc (len
);
3310 strcpy (dll_name
, exp_name
);
3311 strcat (dll_name
, ".dll");
3314 if (as_name
== NULL
)
3315 as_name
= deduce_name ("as");
3317 /* Don't use the default exclude list if we're reading only the
3318 symbols in the .drectve section. The default excludes are meant
3319 to avoid exporting DLL entry point and Cygwin32 impure_ptr. */
3320 if (! export_all_symbols
)
3321 do_default_excludes
= false;
3323 if (do_default_excludes
)
3324 set_default_excludes ();
3327 process_def_file (def_file
);
3332 firstarg
= av
[optind
];
3333 scan_obj_file (av
[optind
]);
3344 /* Make imp_name safe for use as a label. */
3347 imp_name_lab
= xstrdup (imp_name
);
3348 for (p
= imp_name_lab
; *p
; p
++)
3350 if (!isalpha ((unsigned char) *p
) && !isdigit ((unsigned char) *p
))
3353 head_label
= make_label("_head_", imp_name_lab
);
3360 #ifdef DLLTOOL_MCORE_ELF
3361 if (mcore_elf_out_file
)
3362 mcore_elf_gen_out_file ();
3368 /* Look for the program formed by concatenating PROG_NAME and the
3369 string running from PREFIX to END_PREFIX. If the concatenated
3370 string contains a '/', try appending EXECUTABLE_SUFFIX if it is
3374 look_for_prog (prog_name
, prefix
, end_prefix
)
3375 const char *prog_name
;
3382 cmd
= xmalloc (strlen (prefix
)
3383 + strlen (prog_name
)
3384 #ifdef HAVE_EXECUTABLE_SUFFIX
3385 + strlen (EXECUTABLE_SUFFIX
)
3388 strcpy (cmd
, prefix
);
3390 sprintf (cmd
+ end_prefix
, "%s", prog_name
);
3392 if (strchr (cmd
, '/') != NULL
)
3396 found
= (stat (cmd
, &s
) == 0
3397 #ifdef HAVE_EXECUTABLE_SUFFIX
3398 || stat (strcat (cmd
, EXECUTABLE_SUFFIX
), &s
) == 0
3404 /* xgettext:c-format */
3405 inform (_("Tried file: %s"), cmd
);
3411 /* xgettext:c-format */
3412 inform (_("Using file: %s"), cmd
);
3417 /* Deduce the name of the program we are want to invoke.
3418 PROG_NAME is the basic name of the program we want to run,
3419 eg "as" or "ld". The catch is that we might want actually
3420 run "i386-pe-as" or "ppc-pe-ld".
3422 If argv[0] contains the full path, then try to find the program
3423 in the same place, with and then without a target-like prefix.
3425 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
3426 deduce_name("as") uses the following search order:
3428 /usr/local/bin/i586-cygwin32-as
3432 If there's an EXECUTABLE_SUFFIX, it'll use that as well; for each
3433 name, it'll try without and then with EXECUTABLE_SUFFIX.
3435 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
3436 as the fallback, but rather return i586-cygwin32-as.
3438 Oh, and given, argv[0] = dlltool, it'll return "as".
3440 Returns a dynamically allocated string. */
3443 deduce_name (prog_name
)
3444 const char *prog_name
;
3447 char *dash
, *slash
, *cp
;
3451 for (cp
= program_name
; *cp
!= '\0'; ++cp
)
3456 #if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
3457 *cp
== ':' || *cp
== '\\' ||
3470 /* First, try looking for a prefixed PROG_NAME in the
3471 PROGRAM_NAME directory, with the same prefix as PROGRAM_NAME. */
3472 cmd
= look_for_prog (prog_name
, program_name
, dash
- program_name
+ 1);
3475 if (slash
!= NULL
&& cmd
== NULL
)
3477 /* Next, try looking for a PROG_NAME in the same directory as
3478 that of this program. */
3479 cmd
= look_for_prog (prog_name
, program_name
, slash
- program_name
+ 1);
3484 /* Just return PROG_NAME as is. */
3485 cmd
= xstrdup (prog_name
);
3491 #ifdef DLLTOOL_MCORE_ELF
3492 typedef struct fname_cache
3495 struct fname_cache
* next
;
3499 static fname_cache fnames
;
3502 mcore_elf_cache_filename (char * filename
)
3508 while (ptr
->next
!= NULL
)
3511 ptr
->filename
= filename
;
3512 ptr
->next
= (fname_cache
*) malloc (sizeof (fname_cache
));
3513 if (ptr
->next
!= NULL
)
3514 ptr
->next
->next
= NULL
;
3517 #define MCORE_ELF_TMP_OBJ "mcoreelf.o"
3518 #define MCORE_ELF_TMP_EXP "mcoreelf.exp"
3519 #define MCORE_ELF_TMP_LIB "mcoreelf.lib"
3522 mcore_elf_gen_out_file (void)
3527 /* Step one. Run 'ld -r' on the input object files in order to resolve
3528 any internal references and to generate a single .exports section. */
3531 ds
= dyn_string_new (100);
3532 dyn_string_append (ds
, "-r ");
3534 if (mcore_elf_linker_flags
!= NULL
)
3535 dyn_string_append (ds
, mcore_elf_linker_flags
);
3537 while (ptr
->next
!= NULL
)
3539 dyn_string_append (ds
, ptr
->filename
);
3540 dyn_string_append (ds
, " ");
3545 dyn_string_append (ds
, "-o ");
3546 dyn_string_append (ds
, MCORE_ELF_TMP_OBJ
);
3548 if (mcore_elf_linker
== NULL
)
3549 mcore_elf_linker
= deduce_name ("ld");
3551 run (mcore_elf_linker
, ds
->s
);
3553 dyn_string_delete (ds
);
3555 /* Step two. Create a .exp file and a .lib file from the temporary file.
3556 Do this by recursively invoking dlltool....*/
3557 ds
= dyn_string_new (100);
3559 dyn_string_append (ds
, "-S ");
3560 dyn_string_append (ds
, as_name
);
3562 dyn_string_append (ds
, " -e ");
3563 dyn_string_append (ds
, MCORE_ELF_TMP_EXP
);
3564 dyn_string_append (ds
, " -l ");
3565 dyn_string_append (ds
, MCORE_ELF_TMP_LIB
);
3566 dyn_string_append (ds
, " " );
3567 dyn_string_append (ds
, MCORE_ELF_TMP_OBJ
);
3570 dyn_string_append (ds
, " -v");
3574 dyn_string_append (ds
, " -n");
3576 if (dontdeltemps
> 1)
3577 dyn_string_append (ds
, " -n");
3580 /* XXX - FIME: ought to check/copy other command line options as well. */
3582 run (program_name
, ds
->s
);
3584 dyn_string_delete (ds
);
3586 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
3587 ds
= dyn_string_new (100);
3589 dyn_string_append (ds
, "-shared ");
3591 if (mcore_elf_linker_flags
)
3592 dyn_string_append (ds
, mcore_elf_linker_flags
);
3594 dyn_string_append (ds
, " ");
3595 dyn_string_append (ds
, MCORE_ELF_TMP_EXP
);
3596 dyn_string_append (ds
, " ");
3597 dyn_string_append (ds
, MCORE_ELF_TMP_OBJ
);
3598 dyn_string_append (ds
, " -o ");
3599 dyn_string_append (ds
, mcore_elf_out_file
);
3601 run (mcore_elf_linker
, ds
->s
);
3603 dyn_string_delete (ds
);
3605 if (dontdeltemps
== 0)
3606 unlink (MCORE_ELF_TMP_EXP
);
3608 if (dontdeltemps
< 2)
3609 unlink (MCORE_ELF_TMP_OBJ
);
3611 #endif /* DLLTOOL_MCORE_ELF */