1 /* dlltool.c -- tool to generate stuff for PE style DLLs
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 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> ] )
51 | ( <name1> = <module-name> . <external-name>))
52 [ @ <integer> ] [ NONAME ] [CONSTANT] [DATA] ) *
53 Declares name1 as an exported symbol from the
54 DLL, with optional ordinal number <integer>.
55 Or declares name1 as an alias (forward) of the function <external-name>
56 in the DLL <module-name>.
58 IMPORTS ( ( <internal-name> = <module-name> . <integer> )
59 | ( [ <internal-name> = ] <module-name> . <external-name> )) *
60 Declares that <external-name> or the exported function whoes ordinal number
61 is <integer> is to be imported from the file <module-name>. If
62 <internal-name> is specified then this is the name that the imported
63 function will be refered to in the body of the DLL.
66 Puts <string> into output .exp file in the .rdata section
68 [STACKSIZE|HEAPSIZE] <number-reserve> [ , <number-commit> ]
69 Generates --stack|--heap <number-reserve>,<number-commit>
70 in the output .drectve section. The linker will
71 see this and act upon it.
74 SECTIONS ( <sectionname> <attr>+ )*
75 <attr> = READ | WRITE | EXECUTE | SHARED
76 Generates --attr <sectionname> <attr> in the output
77 .drectve section. The linker will see this and act
81 A -export:<name> in a .drectve section in an input .o or .a
82 file to this program is equivalent to a EXPORTS <name>
87 The program generates output files with the prefix supplied
88 on the command line, or in the def file, or taken from the first
91 The .exp.s file contains the information necessary to export
92 the routines in the DLL. The .lib.s file contains the information
93 necessary to use the DLL's routines from a referencing program.
100 asm (".section .drectve");
101 asm (".ascii \"-export:adef\"");
105 printf ("hello from the dll %s\n", s);
110 printf ("hello from the dll and the other entry point %s\n", s);
114 asm (".section .drectve");
115 asm (".ascii \"-export:cdef\"");
116 asm (".ascii \"-export:ddef\"");
120 printf ("hello from the dll %s\n", s);
125 printf ("hello from the dll and the other entry point %s\n", s);
143 HEAPSIZE 0x40000, 0x2000
147 SECTIONS donkey READ WRITE
150 # Compile up the parts of the dll and the program
152 gcc -c file1.c file2.c themain.c
154 # Optional: put the dll objects into a library
155 # (you don't have to, you could name all the object
156 # files on the dlltool line)
158 ar qcv thedll.in file1.o file2.o
161 # Run this tool over the DLL's .def file and generate an exports
162 # file (thedll.o) and an imports file (thedll.a).
163 # (You may have to use -S to tell dlltool where to find the assembler).
165 dlltool --def thedll.def --output-exp thedll.o --output-lib thedll.a
167 # Build the dll with the library and the export table
169 ld -o thedll.dll thedll.o thedll.in
171 # Link the executable with the import library
173 gcc -o themain.exe themain.o thedll.a
175 This example can be extended if relocations are needed in the DLL:
177 # Compile up the parts of the dll and the program
179 gcc -c file1.c file2.c themain.c
181 # Run this tool over the DLL's .def file and generate an imports file.
183 dlltool --def thedll.def --output-lib thedll.lib
185 # Link the executable with the import library and generate a base file
188 gcc -o themain.exe themain.o thedll.lib -Wl,--base-file -Wl,themain.base
190 # Run this tool over the DLL's .def file and generate an exports file
191 # which includes the relocations from the base file.
193 dlltool --def thedll.def --base-file themain.base --output-exp thedll.exp
195 # Build the dll with file1.o, file2.o and the export table
197 ld -o thedll.dll thedll.exp file1.o file2.o */
199 /* .idata section description
201 The .idata section is the import table. It is a collection of several
202 subsections used to keep the pieces for each dll together: .idata$[234567].
203 IE: Each dll's .idata$2's are catenated together, each .idata$3's, etc.
205 .idata$2 = Import Directory Table
206 = array of IMAGE_IMPORT_DESCRIPTOR's.
208 DWORD Import Lookup Table; - pointer to .idata$4
209 DWORD TimeDateStamp; - currently always 0
210 DWORD ForwarderChain; - currently always 0
211 DWORD Name; - pointer to dll's name
212 PIMAGE_THUNK_DATA FirstThunk; - pointer to .idata$5
214 .idata$3 = null terminating entry for .idata$2.
216 .idata$4 = Import Lookup Table
217 = array of array of pointers to hint name table.
218 There is one for each dll being imported from, and each dll's set is
219 terminated by a trailing NULL.
221 .idata$5 = Import Address Table
222 = array of array of pointers to hint name table.
223 There is one for each dll being imported from, and each dll's set is
224 terminated by a trailing NULL.
225 Initially, this table is identical to the Import Lookup Table. However,
226 at load time, the loader overwrites the entries with the address of the
229 .idata$6 = Hint Name Table
230 = Array of { short, asciz } entries, one for each imported function.
231 The `short' is the function's ordinal number.
233 .idata$7 = dll name (eg: "kernel32.dll"). (.idata$6 for ppc). */
235 /* AIX requires this to be the first thing in the file. */
242 #define show_allnames 0
244 #define PAGE_SIZE 4096
245 #define PAGE_MASK (-PAGE_SIZE)
247 #include "libiberty.h"
250 #include "demangle.h"
251 #include "dyn-string.h"
253 #include "safe-ctype.h"
256 #include <sys/stat.h>
258 #ifdef ANSI_PROTOTYPES
265 #include "coff/arm.h"
266 #include "coff/internal.h"
269 /* Forward references. */
270 static char *look_for_prog
271 PARAMS ((const char *, const char *, int));
272 static char *deduce_name
273 PARAMS ((const char *));
275 #ifdef DLLTOOL_MCORE_ELF
276 static void mcore_elf_cache_filename
278 static void mcore_elf_gen_out_file
282 #ifdef HAVE_SYS_WAIT_H
283 #include <sys/wait.h>
284 #else /* ! HAVE_SYS_WAIT_H */
285 #if ! defined (_WIN32) || defined (__CYGWIN32__)
287 #define WIFEXITED(w) (((w) & 0377) == 0)
290 #define WIFSIGNALED(w) (((w) & 0377) != 0177 && ((w) & ~0377) == 0)
293 #define WTERMSIG(w) ((w) & 0177)
296 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
298 #else /* defined (_WIN32) && ! defined (__CYGWIN32__) */
300 #define WIFEXITED(w) (((w) & 0xff) == 0)
303 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
306 #define WTERMSIG(w) ((w) & 0x7f)
309 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
311 #endif /* defined (_WIN32) && ! defined (__CYGWIN32__) */
312 #endif /* ! HAVE_SYS_WAIT_H */
314 /* ifunc and ihead data structures: ttk@cygnus.com 1997
316 When IMPORT declarations are encountered in a .def file the
317 function import information is stored in a structure referenced by
318 the global variable IMPORT_LIST. The structure is a linked list
319 containing the names of the dll files each function is imported
320 from and a linked list of functions being imported from that dll
321 file. This roughly parallels the structure of the .idata section
322 in the PE object file.
324 The contents of .def file are interpreted from within the
325 process_def_file function. Every time an IMPORT declaration is
326 encountered, it is broken up into its component parts and passed to
327 def_import. IMPORT_LIST is initialized to NULL in function main. */
329 typedef struct ifunct
331 char * name
; /* Name of function being imported. */
332 int ord
; /* Two-byte ordinal value associated with function. */
336 typedef struct iheadt
338 char *dllname
; /* Name of dll file imported from. */
339 long nfuncs
; /* Number of functions in list. */
340 struct ifunct
*funchead
; /* First function in list. */
341 struct ifunct
*functail
; /* Last function in list. */
342 struct iheadt
*next
; /* Next dll file in list. */
345 /* Structure containing all import information as defined in .def file
346 (qv "ihead structure"). */
348 static iheadtype
*import_list
= NULL
;
350 static char *as_name
= NULL
;
351 static char * as_flags
= "";
353 static int no_idata4
;
354 static int no_idata5
;
355 static char *exp_name
;
356 static char *imp_name
;
357 static char *head_label
;
358 static char *imp_name_lab
;
359 static char *dll_name
;
361 static int add_indirect
= 0;
362 static int add_underscore
= 0;
363 static int dontdeltemps
= 0;
365 /* TRUE if we should export all symbols. Otherwise, we only export
366 symbols listed in .drectve sections or in the def file. */
367 static bfd_boolean export_all_symbols
;
369 /* TRUE if we should exclude the symbols in DEFAULT_EXCLUDES when
370 exporting all symbols. */
371 static bfd_boolean do_default_excludes
= TRUE
;
373 /* Default symbols to exclude when exporting all the symbols. */
374 static const char *default_excludes
= "DllMain@12,DllEntryPoint@0,impure_ptr";
376 /* TRUE if we should add __imp_<SYMBOL> to import libraries for backward
377 compatibility to old Cygwin releases. */
378 static bfd_boolean create_compat_implib
;
380 static char *def_file
;
382 extern char * program_name
;
386 static int add_stdcall_alias
;
388 static FILE *output_def
;
389 static FILE *base_file
;
392 #ifdef DLLTOOL_ARM_EPOC
393 static const char *mname
= "arm-epoc";
395 static const char *mname
= "arm";
400 static const char *mname
= "i386";
404 static const char *mname
= "ppc";
408 static const char *mname
= "sh";
412 static const char *mname
= "mips";
416 static const char * mname
= "mcore-le";
419 #ifdef DLLTOOL_MCORE_ELF
420 static const char * mname
= "mcore-elf";
421 static char * mcore_elf_out_file
= NULL
;
422 static char * mcore_elf_linker
= NULL
;
423 static char * mcore_elf_linker_flags
= NULL
;
425 #define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
428 #ifndef DRECTVE_SECTION_NAME
429 #define DRECTVE_SECTION_NAME ".drectve"
432 #define PATHMAX 250 /* What's the right name for this ? */
434 #define TMP_ASM "dc.s"
435 #define TMP_HEAD_S "dh.s"
436 #define TMP_HEAD_O "dh.o"
437 #define TMP_TAIL_S "dt.s"
438 #define TMP_TAIL_O "dt.o"
439 #define TMP_STUB "ds"
441 /* This bit of assemly does jmp * .... */
442 static const unsigned char i386_jtab
[] =
444 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
447 static const unsigned char arm_jtab
[] =
449 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
450 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
454 static const unsigned char arm_interwork_jtab
[] =
456 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
457 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
458 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
462 static const unsigned char thumb_jtab
[] =
464 0x40, 0xb4, /* push {r6} */
465 0x02, 0x4e, /* ldr r6, [pc, #8] */
466 0x36, 0x68, /* ldr r6, [r6] */
467 0xb4, 0x46, /* mov ip, r6 */
468 0x40, 0xbc, /* pop {r6} */
469 0x60, 0x47, /* bx ip */
473 static const unsigned char mcore_be_jtab
[] =
475 0x71, 0x02, /* lrw r1,2 */
476 0x81, 0x01, /* ld.w r1,(r1,0) */
477 0x00, 0xC1, /* jmp r1 */
478 0x12, 0x00, /* nop */
479 0x00, 0x00, 0x00, 0x00 /* <address> */
482 static const unsigned char mcore_le_jtab
[] =
484 0x02, 0x71, /* lrw r1,2 */
485 0x01, 0x81, /* ld.w r1,(r1,0) */
486 0xC1, 0x00, /* jmp r1 */
487 0x00, 0x12, /* nop */
488 0x00, 0x00, 0x00, 0x00 /* <address> */
491 /* This is the glue sequence for PowerPC PE. There is a
492 tocrel16-tocdefn reloc against the first instruction.
493 We also need a IMGLUE reloc against the glue function
494 to restore the toc saved by the third instruction in
496 static const unsigned char ppc_jtab
[] =
498 0x00, 0x00, 0x62, 0x81, /* lwz r11,0(r2) */
499 /* Reloc TOCREL16 __imp_xxx */
500 0x00, 0x00, 0x8B, 0x81, /* lwz r12,0(r11) */
501 0x04, 0x00, 0x41, 0x90, /* stw r2,4(r1) */
502 0xA6, 0x03, 0x89, 0x7D, /* mtctr r12 */
503 0x04, 0x00, 0x4B, 0x80, /* lwz r2,4(r11) */
504 0x20, 0x04, 0x80, 0x4E /* bctr */
508 /* The glue instruction, picks up the toc from the stw in
509 the above code: "lwz r2,4(r1)". */
510 static bfd_vma ppc_glue_insn
= 0x80410004;
516 const char *how_byte
;
517 const char *how_short
;
518 const char *how_long
;
519 const char *how_asciz
;
520 const char *how_comment
;
521 const char *how_jump
;
522 const char *how_global
;
523 const char *how_space
;
524 const char *how_align_short
;
525 const char *how_align_long
;
526 const char *how_default_as_switches
;
527 const char *how_bfd_target
;
528 enum bfd_architecture how_bfd_arch
;
529 const unsigned char *how_jtab
;
530 int how_jtab_size
; /* Size of the jtab entry. */
531 int how_jtab_roff
; /* Offset into it for the ind 32 reloc into idata 5. */
534 static const struct mac
539 "arm", ".byte", ".short", ".long", ".asciz", "@",
540 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
541 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
542 "pe-arm-little", bfd_arch_arm
,
543 arm_jtab
, sizeof (arm_jtab
), 8
548 "i386", ".byte", ".short", ".long", ".asciz", "#",
549 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
550 "pe-i386",bfd_arch_i386
,
551 i386_jtab
, sizeof (i386_jtab
), 2
556 "ppc", ".byte", ".short", ".long", ".asciz", "#",
557 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
558 "pe-powerpcle",bfd_arch_powerpc
,
559 ppc_jtab
, sizeof (ppc_jtab
), 0
564 "thumb", ".byte", ".short", ".long", ".asciz", "@",
565 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
566 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
567 "pe-arm-little", bfd_arch_arm
,
568 thumb_jtab
, sizeof (thumb_jtab
), 12
571 #define MARM_INTERWORK 4
573 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
574 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
575 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
576 "pe-arm-little", bfd_arch_arm
,
577 arm_interwork_jtab
, sizeof (arm_interwork_jtab
), 12
582 "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
583 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
584 ".global", ".space", ".align\t2",".align\t4", "",
585 "pe-mcore-big", bfd_arch_mcore
,
586 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
591 "mcore-le", ".byte", ".short", ".long", ".asciz", "//",
592 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
593 ".global", ".space", ".align\t2",".align\t4", "-EL",
594 "pe-mcore-little", bfd_arch_mcore
,
595 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
600 "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
601 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
602 ".global", ".space", ".align\t2",".align\t4", "",
603 "elf32-mcore-big", bfd_arch_mcore
,
604 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
608 #define MMCORE_ELF_LE 8
609 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
610 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
611 ".global", ".space", ".align\t2",".align\t4", "-EL",
612 "elf32-mcore-little", bfd_arch_mcore
,
613 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
618 "arm-epoc", ".byte", ".short", ".long", ".asciz", "@",
619 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
620 ".global", ".space", ".align\t2",".align\t4", "",
621 "epoc-pe-arm-little", bfd_arch_arm
,
622 arm_jtab
, sizeof (arm_jtab
), 8
625 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
635 typedef struct export
638 const char *internal_name
;
644 int forward
; /* Number of forward label, 0 means no forward. */
649 /* A list of symbols which we should not export. */
653 struct string_list
*next
;
657 static struct string_list
*excludes
;
659 static const char *rvaafter
661 static const char *rvabefore
663 static const char *asm_prefix
665 static void process_def_file
666 PARAMS ((const char *));
667 static void new_directive
669 static void append_import
670 PARAMS ((const char *, const char *, int));
672 PARAMS ((const char *, char *));
673 static void scan_drectve_symbols
675 static void scan_filtered_symbols
676 PARAMS ((bfd
*, PTR
, long, unsigned int));
677 static void add_excludes
678 PARAMS ((const char *));
679 static bfd_boolean match_exclude
680 PARAMS ((const char *));
681 static void set_default_excludes
683 static long filter_symbols
684 PARAMS ((bfd
*, PTR
, long, unsigned int));
685 static void scan_all_symbols
687 static void scan_open_obj_file
689 static void scan_obj_file
690 PARAMS ((const char *));
691 static void dump_def_info
694 PARAMS ((const void *, const void *));
695 static void flush_page
696 PARAMS ((FILE *, long *, int, int));
697 static void gen_def_file
699 static void generate_idata_ofile
701 static void assemble_file
702 PARAMS ((const char *, const char *));
703 static void gen_exp_file
705 static const char *xlate
706 PARAMS ((const char *));
709 PARAMS ((FILE *, export_type
*));
711 static char *make_label
712 PARAMS ((const char *, const char *));
713 static char *make_imp_label
714 PARAMS ((const char *, const char *));
715 static bfd
*make_one_lib_file
716 PARAMS ((export_type
*, int));
717 static bfd
*make_head
719 static bfd
*make_tail
721 static void gen_lib_file
724 PARAMS ((const void *, const void *));
726 PARAMS ((const void *, const void *));
727 static void remove_null_names
728 PARAMS ((export_type
**));
730 PARAMS ((export_type
**));
731 static void process_duplicates
732 PARAMS ((export_type
**));
733 static void fill_ordinals
734 PARAMS ((export_type
**));
736 PARAMS ((const void *, const void *));
737 static void mangle_defs
740 PARAMS ((FILE *, int));
742 PARAMS ((const char *, ...));
746 inform
VPARAMS ((const char * message
, ...))
748 VA_OPEN (args
, message
);
749 VA_FIXEDARG (args
, const char *, message
);
754 report (message
, args
);
777 /* xgettext:c-format */
778 fatal (_("Internal error: Unknown machine type: %d"), machine
);
802 /* xgettext:c-format */
803 fatal (_("Internal error: Unknown machine type: %d"), machine
);
828 /* xgettext:c-format */
829 fatal (_("Internal error: Unknown machine type: %d"), machine
);
835 #define ASM_BYTE mtable[machine].how_byte
836 #define ASM_SHORT mtable[machine].how_short
837 #define ASM_LONG mtable[machine].how_long
838 #define ASM_TEXT mtable[machine].how_asciz
839 #define ASM_C mtable[machine].how_comment
840 #define ASM_JUMP mtable[machine].how_jump
841 #define ASM_GLOBAL mtable[machine].how_global
842 #define ASM_SPACE mtable[machine].how_space
843 #define ASM_ALIGN_SHORT mtable[machine].how_align_short
844 #define ASM_RVA_BEFORE rvabefore(machine)
845 #define ASM_RVA_AFTER rvaafter(machine)
846 #define ASM_PREFIX asm_prefix(machine)
847 #define ASM_ALIGN_LONG mtable[machine].how_align_long
848 #define HOW_BFD_READ_TARGET 0 /* always default*/
849 #define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
850 #define HOW_BFD_ARCH mtable[machine].how_bfd_arch
851 #define HOW_JTAB mtable[machine].how_jtab
852 #define HOW_JTAB_SIZE mtable[machine].how_jtab_size
853 #define HOW_JTAB_ROFF mtable[machine].how_jtab_roff
854 #define ASM_SWITCHES mtable[machine].how_default_as_switches
859 process_def_file (name
)
862 FILE *f
= fopen (name
, FOPEN_RT
);
865 /* xgettext:c-format */
866 fatal (_("Can't open def file: %s"), name
);
870 /* xgettext:c-format */
871 inform (_("Processing def file: %s"), name
);
875 inform (_("Processed def file"));
878 /**********************************************************************/
880 /* Communications with the parser. */
882 static const char *d_name
; /* Arg to NAME or LIBRARY. */
883 static int d_nfuncs
; /* Number of functions exported. */
884 static int d_named_nfuncs
; /* Number of named functions exported. */
885 static int d_low_ord
; /* Lowest ordinal index. */
886 static int d_high_ord
; /* Highest ordinal index. */
887 static export_type
*d_exports
; /* List of exported functions. */
888 static export_type
**d_exports_lexically
; /* Vector of exported functions in alpha order. */
889 static dlist_type
*d_list
; /* Descriptions. */
890 static dlist_type
*a_list
; /* Stuff to go in directives. */
891 static int d_nforwards
= 0; /* Number of forwarded exports. */
898 const char * err ATTRIBUTE_UNUSED
;
900 /* xgettext:c-format */
901 non_fatal (_("Syntax error in def file %s:%d"), def_file
, linenumber
);
907 def_exports (name
, internal_name
, ordinal
, noname
, constant
, data
)
909 const char *internal_name
;
915 struct export
*p
= (struct export
*) xmalloc (sizeof (*p
));
918 p
->internal_name
= internal_name
? internal_name
: name
;
919 p
->ordinal
= ordinal
;
920 p
->constant
= constant
;
927 if ((internal_name
!= NULL
)
928 && (strchr (internal_name
, '.') != NULL
))
929 p
->forward
= ++d_nforwards
;
931 p
->forward
= 0; /* no forward */
935 def_name (name
, base
)
939 /* xgettext:c-format */
940 inform (_("NAME: %s base: %x"), name
, base
);
943 non_fatal (_("Can't have LIBRARY and NAME"));
946 /* If --dllname not provided, use the one in the DEF file.
947 FIXME: Is this appropriate for executables? */
949 dll_name
= xstrdup (name
);
954 def_library (name
, base
)
958 /* xgettext:c-format */
959 inform (_("LIBRARY: %s base: %x"), name
, base
);
962 non_fatal (_("Can't have LIBRARY and NAME"));
965 /* If --dllname not provided, use the one in the DEF file. */
967 dll_name
= xstrdup (name
);
972 def_description (desc
)
975 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
976 d
->text
= xstrdup (desc
);
985 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
986 d
->text
= xstrdup (dir
);
992 def_heapsize (reserve
, commit
)
998 sprintf (b
, "-heap 0x%x,0x%x ", reserve
, commit
);
1000 sprintf (b
, "-heap 0x%x ", reserve
);
1001 new_directive (xstrdup (b
));
1005 def_stacksize (reserve
, commit
)
1011 sprintf (b
, "-stack 0x%x,0x%x ", reserve
, commit
);
1013 sprintf (b
, "-stack 0x%x ", reserve
);
1014 new_directive (xstrdup (b
));
1017 /* append_import simply adds the given import definition to the global
1018 import_list. It is used by def_import. */
1021 append_import (symbol_name
, dll_name
, func_ordinal
)
1022 const char *symbol_name
;
1023 const char *dll_name
;
1029 for (pq
= &import_list
; *pq
!= NULL
; pq
= &(*pq
)->next
)
1031 if (strcmp ((*pq
)->dllname
, dll_name
) == 0)
1034 q
->functail
->next
= xmalloc (sizeof (ifunctype
));
1035 q
->functail
= q
->functail
->next
;
1036 q
->functail
->ord
= func_ordinal
;
1037 q
->functail
->name
= xstrdup (symbol_name
);
1038 q
->functail
->next
= NULL
;
1044 q
= xmalloc (sizeof (iheadtype
));
1045 q
->dllname
= xstrdup (dll_name
);
1047 q
->funchead
= xmalloc (sizeof (ifunctype
));
1048 q
->functail
= q
->funchead
;
1050 q
->functail
->name
= xstrdup (symbol_name
);
1051 q
->functail
->ord
= func_ordinal
;
1052 q
->functail
->next
= NULL
;
1057 /* def_import is called from within defparse.y when an IMPORT
1058 declaration is encountered. Depending on the form of the
1059 declaration, the module name may or may not need ".dll" to be
1060 appended to it, the name of the function may be stored in internal
1061 or entry, and there may or may not be an ordinal value associated
1064 /* A note regarding the parse modes:
1065 In defparse.y we have to accept import declarations which follow
1066 any one of the following forms:
1067 <func_name_in_app> = <dll_name>.<func_name_in_dll>
1068 <func_name_in_app> = <dll_name>.<number>
1069 <dll_name>.<func_name_in_dll>
1071 Furthermore, the dll's name may or may not end with ".dll", which
1072 complicates the parsing a little. Normally the dll's name is
1073 passed to def_import() in the "module" parameter, but when it ends
1074 with ".dll" it gets passed in "module" sans ".dll" and that needs
1077 def_import gets five parameters:
1078 APP_NAME - the name of the function in the application, if
1079 present, or NULL if not present.
1080 MODULE - the name of the dll, possibly sans extension (ie, '.dll').
1081 DLLEXT - the extension of the dll, if present, NULL if not present.
1082 ENTRY - the name of the function in the dll, if present, or NULL.
1083 ORD_VAL - the numerical tag of the function in the dll, if present,
1084 or NULL. Exactly one of <entry> or <ord_val> must be
1085 present (i.e., not NULL). */
1088 def_import (app_name
, module
, dllext
, entry
, ord_val
)
1089 const char *app_name
;
1095 const char *application_name
;
1099 application_name
= entry
;
1102 if (app_name
!= NULL
)
1103 application_name
= app_name
;
1105 application_name
= "";
1110 buf
= (char *) alloca (strlen (module
) + strlen (dllext
) + 2);
1111 sprintf (buf
, "%s.%s", module
, dllext
);
1115 append_import (application_name
, module
, ord_val
);
1119 def_version (major
, minor
)
1123 printf ("VERSION %d.%d\n", major
, minor
);
1127 def_section (name
, attr
)
1144 sprintf (buf
, "-attr %s %s", name
, atts
);
1145 new_directive (xstrdup (buf
));
1153 def_section ("CODE", attr
);
1160 def_section ("DATA", attr
);
1163 /**********************************************************************/
1171 int pid
, wait_status
;
1174 char *errmsg_fmt
, *errmsg_arg
;
1175 char *temp_base
= choose_temp_base ();
1177 inform ("run: %s %s", what
, args
);
1179 /* Count the args */
1181 for (s
= args
; *s
; s
++)
1185 argv
= alloca (sizeof (char *) * (i
+ 3));
1194 while (*s
!= ' ' && *s
!= 0)
1202 pid
= pexecute (argv
[0], (char * const *) argv
, program_name
, temp_base
,
1203 &errmsg_fmt
, &errmsg_arg
, PEXECUTE_ONE
| PEXECUTE_SEARCH
);
1207 inform (strerror (errno
));
1209 fatal (errmsg_fmt
, errmsg_arg
);
1212 pid
= pwait (pid
, & wait_status
, 0);
1216 /* xgettext:c-format */
1217 fatal (_("wait: %s"), strerror (errno
));
1219 else if (WIFSIGNALED (wait_status
))
1221 /* xgettext:c-format */
1222 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status
));
1224 else if (WIFEXITED (wait_status
))
1226 if (WEXITSTATUS (wait_status
) != 0)
1227 /* xgettext:c-format */
1228 non_fatal (_("%s exited with status %d"),
1229 what
, WEXITSTATUS (wait_status
));
1235 /* Look for a list of symbols to export in the .drectve section of
1236 ABFD. Pass each one to def_exports. */
1239 scan_drectve_symbols (abfd
)
1248 /* Look for .drectve's */
1249 s
= bfd_get_section_by_name (abfd
, DRECTVE_SECTION_NAME
);
1254 size
= bfd_get_section_size_before_reloc (s
);
1255 buf
= xmalloc (size
);
1257 bfd_get_section_contents (abfd
, s
, buf
, 0, size
);
1259 /* xgettext:c-format */
1260 inform (_("Sucking in info from %s section in %s"),
1261 DRECTVE_SECTION_NAME
, bfd_get_filename (abfd
));
1263 /* Search for -export: strings. The exported symbols can optionally
1264 have type tags (eg., -export:foo,data), so handle those as well.
1265 Currently only data tag is supported. */
1271 && strncmp (p
, "-export:", 8) == 0)
1275 flagword flags
= BSF_FUNCTION
;
1279 while (p
< e
&& *p
!= ',' && *p
!= ' ' && *p
!= '-')
1281 c
= xmalloc (p
- name
+ 1);
1282 memcpy (c
, name
, p
- name
);
1284 if (p
< e
&& *p
== ',') /* found type tag. */
1286 char *tag_start
= ++p
;
1287 while (p
< e
&& *p
!= ' ' && *p
!= '-')
1289 if (strncmp (tag_start
, "data", 4) == 0)
1290 flags
&= ~BSF_FUNCTION
;
1293 /* FIXME: The 5th arg is for the `constant' field.
1294 What should it be? Not that it matters since it's not
1295 currently useful. */
1296 def_exports (c
, 0, -1, 0, 0, ! (flags
& BSF_FUNCTION
));
1298 if (add_stdcall_alias
&& strchr (c
, '@'))
1300 int lead_at
= (*c
== '@') ;
1301 char *exported_name
= xstrdup (c
+ lead_at
);
1302 char *atsym
= strchr (exported_name
, '@');
1304 /* Note: stdcall alias symbols can never be data. */
1305 def_exports (exported_name
, xstrdup (c
), -1, 0, 0, 0);
1314 /* Look through the symbols in MINISYMS, and add each one to list of
1315 symbols to export. */
1318 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
)
1325 bfd_byte
*from
, *fromend
;
1327 store
= bfd_make_empty_symbol (abfd
);
1329 bfd_fatal (bfd_get_filename (abfd
));
1331 from
= (bfd_byte
*) minisyms
;
1332 fromend
= from
+ symcount
* size
;
1333 for (; from
< fromend
; from
+= size
)
1336 const char *symbol_name
;
1338 sym
= bfd_minisymbol_to_symbol (abfd
, FALSE
, from
, store
);
1340 bfd_fatal (bfd_get_filename (abfd
));
1342 symbol_name
= bfd_asymbol_name (sym
);
1343 if (bfd_get_symbol_leading_char (abfd
) == symbol_name
[0])
1346 def_exports (xstrdup (symbol_name
) , 0, -1, 0, 0,
1347 ! (sym
->flags
& BSF_FUNCTION
));
1349 if (add_stdcall_alias
&& strchr (symbol_name
, '@'))
1351 int lead_at
= (*symbol_name
== '@');
1352 char *exported_name
= xstrdup (symbol_name
+ lead_at
);
1353 char *atsym
= strchr (exported_name
, '@');
1355 /* Note: stdcall alias symbols can never be data. */
1356 def_exports (exported_name
, xstrdup (symbol_name
), -1, 0, 0, 0);
1361 /* Add a list of symbols to exclude. */
1364 add_excludes (new_excludes
)
1365 const char *new_excludes
;
1368 char *exclude_string
;
1370 local_copy
= xstrdup (new_excludes
);
1372 exclude_string
= strtok (local_copy
, ",:");
1373 for (; exclude_string
; exclude_string
= strtok (NULL
, ",:"))
1375 struct string_list
*new_exclude
;
1377 new_exclude
= ((struct string_list
*)
1378 xmalloc (sizeof (struct string_list
)));
1379 new_exclude
->string
= (char *) xmalloc (strlen (exclude_string
) + 2);
1380 /* Don't add a leading underscore for fastcall symbols. */
1381 if (*exclude_string
== '@')
1382 sprintf (new_exclude
->string
, "%s", exclude_string
);
1384 sprintf (new_exclude
->string
, "_%s", exclude_string
);
1385 new_exclude
->next
= excludes
;
1386 excludes
= new_exclude
;
1388 /* xgettext:c-format */
1389 inform (_("Excluding symbol: %s"), exclude_string
);
1395 /* See if STRING is on the list of symbols to exclude. */
1398 match_exclude (string
)
1401 struct string_list
*excl_item
;
1403 for (excl_item
= excludes
; excl_item
; excl_item
= excl_item
->next
)
1404 if (strcmp (string
, excl_item
->string
) == 0)
1409 /* Add the default list of symbols to exclude. */
1412 set_default_excludes (void)
1414 add_excludes (default_excludes
);
1417 /* Choose which symbols to export. */
1420 filter_symbols (abfd
, minisyms
, symcount
, size
)
1426 bfd_byte
*from
, *fromend
, *to
;
1429 store
= bfd_make_empty_symbol (abfd
);
1431 bfd_fatal (bfd_get_filename (abfd
));
1433 from
= (bfd_byte
*) minisyms
;
1434 fromend
= from
+ symcount
* size
;
1435 to
= (bfd_byte
*) minisyms
;
1437 for (; from
< fromend
; from
+= size
)
1442 sym
= bfd_minisymbol_to_symbol (abfd
, FALSE
, (const PTR
) from
, store
);
1444 bfd_fatal (bfd_get_filename (abfd
));
1446 /* Check for external and defined only symbols. */
1447 keep
= (((sym
->flags
& BSF_GLOBAL
) != 0
1448 || (sym
->flags
& BSF_WEAK
) != 0
1449 || bfd_is_com_section (sym
->section
))
1450 && ! bfd_is_und_section (sym
->section
));
1452 keep
= keep
&& ! match_exclude (sym
->name
);
1456 memcpy (to
, from
, size
);
1461 return (to
- (bfd_byte
*) minisyms
) / size
;
1464 /* Export all symbols in ABFD, except for ones we were told not to
1468 scan_all_symbols (abfd
)
1475 /* Ignore bfds with an import descriptor table. We assume that any
1476 such BFD contains symbols which are exported from another DLL,
1477 and we don't want to reexport them from here. */
1478 if (bfd_get_section_by_name (abfd
, ".idata$4"))
1481 if (! (bfd_get_file_flags (abfd
) & HAS_SYMS
))
1483 /* xgettext:c-format */
1484 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1488 symcount
= bfd_read_minisymbols (abfd
, FALSE
, &minisyms
, &size
);
1490 bfd_fatal (bfd_get_filename (abfd
));
1494 /* xgettext:c-format */
1495 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1499 /* Discard the symbols we don't want to export. It's OK to do this
1500 in place; we'll free the storage anyway. */
1502 symcount
= filter_symbols (abfd
, minisyms
, symcount
, size
);
1503 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
);
1508 /* Look at the object file to decide which symbols to export. */
1511 scan_open_obj_file (abfd
)
1514 if (export_all_symbols
)
1515 scan_all_symbols (abfd
);
1517 scan_drectve_symbols (abfd
);
1519 /* FIXME: we ought to read in and block out the base relocations. */
1521 /* xgettext:c-format */
1522 inform (_("Done reading %s"), bfd_get_filename (abfd
));
1526 scan_obj_file (filename
)
1527 const char *filename
;
1529 bfd
* f
= bfd_openr (filename
, 0);
1532 /* xgettext:c-format */
1533 fatal (_("Unable to open object file: %s"), filename
);
1535 /* xgettext:c-format */
1536 inform (_("Scanning object file %s"), filename
);
1538 if (bfd_check_format (f
, bfd_archive
))
1540 bfd
*arfile
= bfd_openr_next_archived_file (f
, 0);
1543 if (bfd_check_format (arfile
, bfd_object
))
1544 scan_open_obj_file (arfile
);
1546 arfile
= bfd_openr_next_archived_file (f
, arfile
);
1549 #ifdef DLLTOOL_MCORE_ELF
1550 if (mcore_elf_out_file
)
1551 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename
);
1554 else if (bfd_check_format (f
, bfd_object
))
1556 scan_open_obj_file (f
);
1558 #ifdef DLLTOOL_MCORE_ELF
1559 if (mcore_elf_out_file
)
1560 mcore_elf_cache_filename ((char *) filename
);
1567 /**********************************************************************/
1575 fprintf (f
, "%s ", ASM_C
);
1576 for (i
= 0; oav
[i
]; i
++)
1577 fprintf (f
, "%s ", oav
[i
]);
1579 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1581 fprintf (f
, "%s %d = %s %s @ %d %s%s%s\n",
1587 exp
->noname
? "NONAME " : "",
1588 exp
->constant
? "CONSTANT" : "",
1589 exp
->data
? "DATA" : "");
1593 /* Generate the .exp file. */
1600 return *(const long *) a
- *(const long *) b
;
1604 flush_page (f
, need
, page_addr
, on_page
)
1612 /* Flush this page. */
1613 fprintf (f
, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1617 fprintf (f
, "\t%s\t0x%x\t%s Size of block\n",
1619 (on_page
* 2) + (on_page
& 1) * 2 + 8,
1622 for (i
= 0; i
< on_page
; i
++)
1624 long needed
= need
[i
];
1627 needed
= ((needed
- page_addr
) | 0x3000) & 0xffff;
1629 fprintf (f
, "\t%s\t0x%lx\n", ASM_SHORT
, needed
);
1634 fprintf (f
, "\t%s\t0x%x\n", ASM_SHORT
, 0 | 0x0000);
1643 inform (_("Adding exports to output file"));
1645 fprintf (output_def
, ";");
1646 for (i
= 0; oav
[i
]; i
++)
1647 fprintf (output_def
, " %s", oav
[i
]);
1649 fprintf (output_def
, "\nEXPORTS\n");
1651 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1653 char *quote
= strchr (exp
->name
, '.') ? "\"" : "";
1654 char *res
= cplus_demangle (exp
->internal_name
, DMGL_ANSI
| DMGL_PARAMS
);
1656 if (strcmp (exp
->name
, exp
->internal_name
) == 0)
1659 fprintf (output_def
, "\t%s%s%s @ %d%s%s ; %s\n",
1664 exp
->noname
? " NONAME" : "",
1665 exp
->data
? " DATA" : "",
1670 char *quote1
= strchr (exp
->internal_name
, '.') ? "\"" : "";
1672 fprintf (output_def
, "\t%s%s%s = %s%s%s @ %d%s%s ; %s\n",
1680 exp
->noname
? " NONAME" : "",
1681 exp
->data
? " DATA" : "",
1688 inform (_("Added exports to output file"));
1691 /* generate_idata_ofile generates the portable assembly source code
1692 for the idata sections. It appends the source code to the end of
1696 generate_idata_ofile (filvar
)
1705 if (import_list
== NULL
)
1708 fprintf (filvar
, "%s Import data sections\n", ASM_C
);
1709 fprintf (filvar
, "\n\t.section\t.idata$2\n");
1710 fprintf (filvar
, "\t%s\tdoi_idata\n", ASM_GLOBAL
);
1711 fprintf (filvar
, "doi_idata:\n");
1714 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1716 fprintf (filvar
, "\t%slistone%d%s\t%s %s\n",
1717 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
,
1718 ASM_C
, headptr
->dllname
);
1719 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1720 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1721 fprintf (filvar
, "\t%sdllname%d%s\n",
1722 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1723 fprintf (filvar
, "\t%slisttwo%d%s\n\n",
1724 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1728 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL record at */
1729 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* end of idata$2 */
1730 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* section */
1731 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1732 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1734 fprintf (filvar
, "\n\t.section\t.idata$4\n");
1736 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1738 fprintf (filvar
, "listone%d:\n", headindex
);
1739 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1740 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1741 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1742 fprintf (filvar
,"\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1746 fprintf (filvar
, "\n\t.section\t.idata$5\n");
1748 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1750 fprintf (filvar
, "listtwo%d:\n", headindex
);
1751 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1752 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1753 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1754 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1758 fprintf (filvar
, "\n\t.section\t.idata$6\n");
1760 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1763 for (funcptr
= headptr
->funchead
; funcptr
!= NULL
;
1764 funcptr
= funcptr
->next
)
1766 fprintf (filvar
,"funcptr%d_%d:\n", headindex
, funcindex
);
1767 fprintf (filvar
,"\t%s\t%d\n", ASM_SHORT
,
1768 ((funcptr
->ord
) & 0xFFFF));
1769 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, funcptr
->name
);
1770 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1776 fprintf (filvar
, "\n\t.section\t.idata$7\n");
1778 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1780 fprintf (filvar
,"dllname%d:\n", headindex
);
1781 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, headptr
->dllname
);
1782 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1787 /* Assemble the specified file. */
1789 assemble_file (source
, dest
)
1790 const char * source
;
1795 cmd
= (char *) alloca (strlen (ASM_SWITCHES
) + strlen (as_flags
)
1796 + strlen (source
) + strlen (dest
) + 50);
1798 sprintf (cmd
, "%s %s -o %s %s", ASM_SWITCHES
, as_flags
, dest
, source
);
1811 /* xgettext:c-format */
1812 inform (_("Generating export file: %s"), exp_name
);
1814 f
= fopen (TMP_ASM
, FOPEN_WT
);
1816 /* xgettext:c-format */
1817 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM
);
1819 /* xgettext:c-format */
1820 inform (_("Opened temporary file: %s"), TMP_ASM
);
1826 fprintf (f
, "\t.section .edata\n\n");
1827 fprintf (f
, "\t%s 0 %s Allways 0\n", ASM_LONG
, ASM_C
);
1828 fprintf (f
, "\t%s 0x%lx %s Time and date\n", ASM_LONG
, (long) time(0),
1830 fprintf (f
, "\t%s 0 %s Major and Minor version\n", ASM_LONG
, ASM_C
);
1831 fprintf (f
, "\t%sname%s %s Ptr to name of dll\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1832 fprintf (f
, "\t%s %d %s Starting ordinal of exports\n", ASM_LONG
, d_low_ord
, ASM_C
);
1835 fprintf (f
, "\t%s %d %s Number of functions\n", ASM_LONG
, d_high_ord
- d_low_ord
+ 1, ASM_C
);
1836 fprintf(f
,"\t%s named funcs %d, low ord %d, high ord %d\n",
1838 d_named_nfuncs
, d_low_ord
, d_high_ord
);
1839 fprintf (f
, "\t%s %d %s Number of names\n", ASM_LONG
,
1840 show_allnames
? d_high_ord
- d_low_ord
+ 1 : d_named_nfuncs
, ASM_C
);
1841 fprintf (f
, "\t%safuncs%s %s Address of functions\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1843 fprintf (f
, "\t%sanames%s %s Address of Name Pointer Table\n",
1844 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1846 fprintf (f
, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1848 fprintf (f
, "name: %s \"%s\"\n", ASM_TEXT
, dll_name
);
1851 fprintf(f
,"%s Export address Table\n", ASM_C
);
1852 fprintf(f
,"\t%s\n", ASM_ALIGN_LONG
);
1853 fprintf (f
, "afuncs:\n");
1856 for (exp
= d_exports
; exp
; exp
= exp
->next
)
1858 if (exp
->ordinal
!= i
)
1861 fprintf (f
, "\t%s\t%d\t%s %d..%d missing\n",
1863 (exp
->ordinal
- i
) * 4,
1865 i
, exp
->ordinal
- 1);
1868 while (i
< exp
->ordinal
)
1870 fprintf(f
,"\t%s\t0\n", ASM_LONG
);
1875 if (exp
->forward
== 0)
1877 if (exp
->internal_name
[0] == '@')
1878 fprintf (f
, "\t%s%s%s\t%s %d\n", ASM_RVA_BEFORE
,
1879 exp
->internal_name
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1881 fprintf (f
, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE
,
1883 exp
->internal_name
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1886 fprintf (f
, "\t%sf%d%s\t%s %d\n", ASM_RVA_BEFORE
,
1887 exp
->forward
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1891 fprintf (f
,"%s Export Name Pointer Table\n", ASM_C
);
1892 fprintf (f
, "anames:\n");
1894 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1896 if (!exp
->noname
|| show_allnames
)
1897 fprintf (f
, "\t%sn%d%s\n",
1898 ASM_RVA_BEFORE
, exp
->ordinal
, ASM_RVA_AFTER
);
1901 fprintf (f
,"%s Export Oridinal Table\n", ASM_C
);
1902 fprintf (f
, "anords:\n");
1903 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1905 if (!exp
->noname
|| show_allnames
)
1906 fprintf (f
, "\t%s %d\n", ASM_SHORT
, exp
->ordinal
- d_low_ord
);
1909 fprintf(f
,"%s Export Name Table\n", ASM_C
);
1910 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1911 if (!exp
->noname
|| show_allnames
)
1913 fprintf (f
, "n%d: %s \"%s\"\n",
1914 exp
->ordinal
, ASM_TEXT
, xlate (exp
->name
));
1915 if (exp
->forward
!= 0)
1916 fprintf (f
, "f%d: %s \"%s\"\n",
1917 exp
->forward
, ASM_TEXT
, exp
->internal_name
);
1922 fprintf (f
, "\t.section %s\n", DRECTVE_SECTION_NAME
);
1923 for (dl
= a_list
; dl
; dl
= dl
->next
)
1925 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, dl
->text
);
1931 fprintf (f
, "\t.section .rdata\n");
1932 for (dl
= d_list
; dl
; dl
= dl
->next
)
1937 /* We don't output as ascii because there can
1938 be quote characters in the string. */
1940 for (p
= dl
->text
; *p
; p
++)
1943 fprintf (f
, "\t%s\t", ASM_BYTE
);
1946 fprintf (f
, "%d", *p
);
1949 fprintf (f
, ",0\n");
1963 /* Add to the output file a way of getting to the exported names
1964 without using the import library. */
1967 fprintf (f
, "\t.section\t.rdata\n");
1968 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1969 if (!exp
->noname
|| show_allnames
)
1971 /* We use a single underscore for MS compatibility, and a
1972 double underscore for backward compatibility with old
1974 if (create_compat_implib
)
1975 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
1976 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
1977 if (create_compat_implib
)
1978 fprintf (f
, "__imp_%s:\n", exp
->name
);
1979 fprintf (f
, "_imp__%s:\n", exp
->name
);
1980 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, exp
->name
);
1984 /* Dump the reloc section if a base file is provided. */
1988 long need
[PAGE_SIZE
];
1995 fprintf (f
, "\t.section\t.init\n");
1996 fprintf (f
, "lab:\n");
1998 fseek (base_file
, 0, SEEK_END
);
1999 numbytes
= ftell (base_file
);
2000 fseek (base_file
, 0, SEEK_SET
);
2001 copy
= xmalloc (numbytes
);
2002 fread (copy
, 1, numbytes
, base_file
);
2003 num_entries
= numbytes
/ sizeof (long);
2006 fprintf (f
, "\t.section\t.reloc\n");
2012 qsort (copy
, num_entries
, sizeof (long), sfunc
);
2013 /* Delete duplcates */
2014 for (src
= 0; src
< num_entries
; src
++)
2016 if (last
!= copy
[src
])
2017 last
= copy
[dst
++] = copy
[src
];
2021 page_addr
= addr
& PAGE_MASK
; /* work out the page addr */
2023 for (j
= 0; j
< num_entries
; j
++)
2026 if ((addr
& PAGE_MASK
) != page_addr
)
2028 flush_page (f
, need
, page_addr
, on_page
);
2030 page_addr
= addr
& PAGE_MASK
;
2032 need
[on_page
++] = addr
;
2034 flush_page (f
, need
, page_addr
, on_page
);
2036 /* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
2040 generate_idata_ofile (f
);
2044 /* Assemble the file. */
2045 assemble_file (TMP_ASM
, exp_name
);
2047 if (dontdeltemps
== 0)
2050 inform (_("Generated exports file"));
2057 int lead_at
= (*name
== '@');
2059 if (add_underscore
&& !lead_at
)
2061 char *copy
= xmalloc (strlen (name
) + 2);
2064 strcpy (copy
+ 1, name
);
2073 p
= strchr (name
, '@');
2080 /**********************************************************************/
2089 if (exp
->noname
&& !show_allnames
)
2091 fprintf (f
, "\t%s\t0x%08x\n",
2093 exp
->ordinal
| 0x80000000); /* hint or orindal ?? */
2097 fprintf (f
, "\t%sID%d%s\n", ASM_RVA_BEFORE
,
2115 unsigned char *data
;
2130 #define TEXT_SEC_FLAGS \
2131 (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS)
2132 #define DATA_SEC_FLAGS (SEC_ALLOC | SEC_LOAD | SEC_DATA)
2133 #define BSS_SEC_FLAGS SEC_ALLOC
2135 #define INIT_SEC_DATA(id, name, flags, align) \
2136 { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
2137 static sinfo secdata
[NSECS
] =
2139 INIT_SEC_DATA (TEXT
, ".text", TEXT_SEC_FLAGS
, 2),
2140 INIT_SEC_DATA (DATA
, ".data", DATA_SEC_FLAGS
, 2),
2141 INIT_SEC_DATA (BSS
, ".bss", BSS_SEC_FLAGS
, 2),
2142 INIT_SEC_DATA (IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2),
2143 INIT_SEC_DATA (IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2),
2144 INIT_SEC_DATA (IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2),
2145 INIT_SEC_DATA (IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1)
2150 /* Sections numbered to make the order the same as other PowerPC NT
2151 compilers. This also keeps funny alignment thingies from happening. */
2164 static sinfo secdata
[NSECS
] =
2166 { TEXT
, ".text", SEC_CODE
| SEC_HAS_CONTENTS
, 3},
2167 { PDATA
, ".pdata", SEC_HAS_CONTENTS
, 2},
2168 { RDATA
, ".reldata", SEC_HAS_CONTENTS
, 2},
2169 { IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2},
2170 { IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2},
2171 { IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1},
2172 { IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2},
2173 { DATA
, ".data", SEC_DATA
, 2},
2174 { BSS
, ".bss", 0, 2}
2179 /* This is what we're trying to make. We generate the imp symbols with
2180 both single and double underscores, for compatibility.
2183 .global _GetFileVersionInfoSizeW@8
2184 .global __imp_GetFileVersionInfoSizeW@8
2185 _GetFileVersionInfoSizeW@8:
2186 jmp * __imp_GetFileVersionInfoSizeW@8
2187 .section .idata$7 # To force loading of head
2188 .long __version_a_head
2189 # Import Address Table
2191 __imp_GetFileVersionInfoSizeW@8:
2194 # Import Lookup Table
2200 .asciz "GetFileVersionInfoSizeW"
2203 For the PowerPC, here's the variation on the above scheme:
2205 # Rather than a simple "jmp *", the code to get to the dll function
2208 lwz r11,[tocv]__imp_function_name(r2)
2209 # RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2217 make_label (prefix
, name
)
2221 int len
= strlen (ASM_PREFIX
) + strlen (prefix
) + strlen (name
);
2222 char *copy
= xmalloc (len
+1 );
2224 strcpy (copy
, ASM_PREFIX
);
2225 strcat (copy
, prefix
);
2226 strcat (copy
, name
);
2231 make_imp_label (prefix
, name
)
2240 len
= strlen (prefix
) + strlen (name
);
2241 copy
= xmalloc (len
+ 1);
2242 strcpy (copy
, prefix
);
2243 strcat (copy
, name
);
2247 len
= strlen (ASM_PREFIX
) + strlen (prefix
) + strlen (name
);
2248 copy
= xmalloc (len
+ 1);
2249 strcpy (copy
, prefix
);
2250 strcat (copy
, ASM_PREFIX
);
2251 strcat (copy
, name
);
2257 make_one_lib_file (exp
, i
)
2265 const char *prefix
= "d";
2268 name
= (char *) alloca (strlen (prefix
) + 10);
2269 sprintf (name
, "%ss%05d.s", prefix
, i
);
2270 f
= fopen (name
, FOPEN_WT
);
2271 fprintf (f
, "\t.text\n");
2272 fprintf (f
, "\t%s\t%s%s\n", ASM_GLOBAL
, ASM_PREFIX
, exp
->name
);
2273 if (create_compat_implib
)
2274 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
2275 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
2276 if (create_compat_implib
)
2277 fprintf (f
, "%s%s:\n\t%s\t__imp_%s\n", ASM_PREFIX
,
2278 exp
->name
, ASM_JUMP
, exp
->name
);
2280 fprintf (f
, "\t.section\t.idata$7\t%s To force loading of head\n", ASM_C
);
2281 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, head_label
);
2284 fprintf (f
,"%s Import Address Table\n", ASM_C
);
2286 fprintf (f
, "\t.section .idata$5\n");
2287 if (create_compat_implib
)
2288 fprintf (f
, "__imp_%s:\n", exp
->name
);
2289 fprintf (f
, "_imp__%s:\n", exp
->name
);
2293 fprintf (f
, "\n%s Import Lookup Table\n", ASM_C
);
2294 fprintf (f
, "\t.section .idata$4\n");
2298 if(!exp
->noname
|| show_allnames
)
2300 fprintf (f
, "%s Hint/Name table\n", ASM_C
);
2301 fprintf (f
, "\t.section .idata$6\n");
2302 fprintf (f
, "ID%d:\t%s\t%d\n", exp
->ordinal
, ASM_SHORT
, exp
->hint
);
2303 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, xlate (exp
->name
));
2308 dest
= (char *) alloca (strlen (prefix
) + 10);
2309 sprintf (dest
, "%ss%05d.o", prefix
, i
);
2310 assemble_file (name
, dest
);
2315 asymbol
* exp_label
;
2316 asymbol
* iname
= 0;
2318 asymbol
* iname_lab
;
2319 asymbol
** iname_lab_pp
;
2320 asymbol
** iname_pp
;
2329 asymbol
* ptrs
[NSECS
+ 4 + EXTRA
+ 1];
2330 flagword applicable
;
2332 char * outname
= xmalloc (10);
2336 sprintf (outname
, "%s%05d.o", TMP_STUB
, i
);
2338 abfd
= bfd_openw (outname
, HOW_BFD_WRITE_TARGET
);
2341 /* xgettext:c-format */
2342 fatal (_("bfd_open failed open stub file: %s"), outname
);
2344 /* xgettext:c-format */
2345 inform (_("Creating stub file: %s"), outname
);
2347 bfd_set_format (abfd
, bfd_object
);
2348 bfd_set_arch_mach (abfd
, HOW_BFD_ARCH
, 0);
2351 if (machine
== MARM_INTERWORK
|| machine
== MTHUMB
)
2352 bfd_set_private_flags (abfd
, F_INTERWORK
);
2355 applicable
= bfd_applicable_section_flags (abfd
);
2357 /* First make symbols for the sections. */
2358 for (i
= 0; i
< NSECS
; i
++)
2360 sinfo
*si
= secdata
+ i
;
2363 si
->sec
= bfd_make_section_old_way (abfd
, si
->name
);
2364 bfd_set_section_flags (abfd
,
2366 si
->flags
& applicable
);
2368 bfd_set_section_alignment(abfd
, si
->sec
, si
->align
);
2369 si
->sec
->output_section
= si
->sec
;
2370 si
->sym
= bfd_make_empty_symbol(abfd
);
2371 si
->sym
->name
= si
->sec
->name
;
2372 si
->sym
->section
= si
->sec
;
2373 si
->sym
->flags
= BSF_LOCAL
;
2375 ptrs
[oidx
] = si
->sym
;
2376 si
->sympp
= ptrs
+ oidx
;
2385 exp_label
= bfd_make_empty_symbol (abfd
);
2386 exp_label
->name
= make_imp_label ("", exp
->name
);
2388 /* On PowerPC, the function name points to a descriptor in
2389 the rdata section, the first element of which is a
2390 pointer to the code (..function_name), and the second
2391 points to the .toc. */
2393 if (machine
== MPPC
)
2394 exp_label
->section
= secdata
[RDATA
].sec
;
2397 exp_label
->section
= secdata
[TEXT
].sec
;
2399 exp_label
->flags
= BSF_GLOBAL
;
2400 exp_label
->value
= 0;
2403 if (machine
== MTHUMB
)
2404 bfd_coff_set_symbol_class (abfd
, exp_label
, C_THUMBEXTFUNC
);
2406 ptrs
[oidx
++] = exp_label
;
2409 /* Generate imp symbols with one underscore for Microsoft
2410 compatibility, and with two underscores for backward
2411 compatibility with old versions of cygwin. */
2412 if (create_compat_implib
)
2414 iname
= bfd_make_empty_symbol (abfd
);
2415 iname
->name
= make_imp_label ("___imp", exp
->name
);
2416 iname
->section
= secdata
[IDATA5
].sec
;
2417 iname
->flags
= BSF_GLOBAL
;
2421 iname2
= bfd_make_empty_symbol (abfd
);
2422 iname2
->name
= make_imp_label ("__imp_", exp
->name
);
2423 iname2
->section
= secdata
[IDATA5
].sec
;
2424 iname2
->flags
= BSF_GLOBAL
;
2427 iname_lab
= bfd_make_empty_symbol(abfd
);
2429 iname_lab
->name
= head_label
;
2430 iname_lab
->section
= (asection
*)&bfd_und_section
;
2431 iname_lab
->flags
= 0;
2432 iname_lab
->value
= 0;
2434 iname_pp
= ptrs
+ oidx
;
2435 if (create_compat_implib
)
2436 ptrs
[oidx
++] = iname
;
2437 ptrs
[oidx
++] = iname2
;
2439 iname_lab_pp
= ptrs
+ oidx
;
2440 ptrs
[oidx
++] = iname_lab
;
2443 /* The symbol refering to the code (.text). */
2445 asymbol
*function_name
;
2447 function_name
= bfd_make_empty_symbol(abfd
);
2448 function_name
->name
= make_label ("..", exp
->name
);
2449 function_name
->section
= secdata
[TEXT
].sec
;
2450 function_name
->flags
= BSF_GLOBAL
;
2451 function_name
->value
= 0;
2453 fn_pp
= ptrs
+ oidx
;
2454 ptrs
[oidx
++] = function_name
;
2457 /* The .toc symbol. */
2459 asymbol
*toc_symbol
;
2461 toc_symbol
= bfd_make_empty_symbol (abfd
);
2462 toc_symbol
->name
= make_label (".", "toc");
2463 toc_symbol
->section
= (asection
*)&bfd_und_section
;
2464 toc_symbol
->flags
= BSF_GLOBAL
;
2465 toc_symbol
->value
= 0;
2467 toc_pp
= ptrs
+ oidx
;
2468 ptrs
[oidx
++] = toc_symbol
;
2474 for (i
= 0; i
< NSECS
; i
++)
2476 sinfo
*si
= secdata
+ i
;
2477 asection
*sec
= si
->sec
;
2486 si
->size
= HOW_JTAB_SIZE
;
2487 si
->data
= xmalloc (HOW_JTAB_SIZE
);
2488 memcpy (si
->data
, HOW_JTAB
, HOW_JTAB_SIZE
);
2490 /* add the reloc into idata$5 */
2491 rel
= xmalloc (sizeof (arelent
));
2493 rpp
= xmalloc (sizeof (arelent
*) * 2);
2497 rel
->address
= HOW_JTAB_ROFF
;
2500 if (machine
== MPPC
)
2502 rel
->howto
= bfd_reloc_type_lookup (abfd
,
2503 BFD_RELOC_16_GOTOFF
);
2504 rel
->sym_ptr_ptr
= iname_pp
;
2508 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2509 rel
->sym_ptr_ptr
= secdata
[IDATA5
].sympp
;
2511 sec
->orelocation
= rpp
;
2512 sec
->reloc_count
= 1;
2517 /* An idata$4 or idata$5 is one word long, and has an
2520 si
->data
= xmalloc (4);
2525 si
->data
[0] = exp
->ordinal
;
2526 si
->data
[1] = exp
->ordinal
>> 8;
2527 si
->data
[2] = exp
->ordinal
>> 16;
2532 sec
->reloc_count
= 1;
2533 memset (si
->data
, 0, si
->size
);
2534 rel
= xmalloc (sizeof (arelent
));
2535 rpp
= xmalloc (sizeof (arelent
*) * 2);
2540 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2541 rel
->sym_ptr_ptr
= secdata
[IDATA6
].sympp
;
2542 sec
->orelocation
= rpp
;
2550 /* This used to add 1 to exp->hint. I don't know
2551 why it did that, and it does not match what I see
2552 in programs compiled with the MS tools. */
2553 int idx
= exp
->hint
;
2554 si
->size
= strlen (xlate (exp
->name
)) + 3;
2555 si
->data
= xmalloc (si
->size
);
2556 si
->data
[0] = idx
& 0xff;
2557 si
->data
[1] = idx
>> 8;
2558 strcpy (si
->data
+ 2, xlate (exp
->name
));
2563 si
->data
=xmalloc (4);
2564 memset (si
->data
, 0, si
->size
);
2565 rel
= xmalloc (sizeof (arelent
));
2566 rpp
= xmalloc (sizeof (arelent
*) * 2);
2570 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2571 rel
->sym_ptr_ptr
= iname_lab_pp
;
2572 sec
->orelocation
= rpp
;
2573 sec
->reloc_count
= 1;
2579 /* The .pdata section is 5 words long.
2583 bfd_vma BeginAddress, [0x00]
2585 ExceptionHandler, [0x08]
2587 PrologEndAddress; [0x10]
2590 /* So this pdata section setups up this as a glue linkage to
2591 a dll routine. There are a number of house keeping things
2594 1. In the name of glue trickery, the ADDR32 relocs for 0,
2595 4, and 0x10 are set to point to the same place:
2597 2. There is one more reloc needed in the pdata section.
2598 The actual glue instruction to restore the toc on
2599 return is saved as the offset in an IMGLUE reloc.
2600 So we need a total of four relocs for this section.
2602 3. Lastly, the HandlerData field is set to 0x03, to indicate
2603 that this is a glue routine. */
2604 arelent
*imglue
, *ba_rel
, *ea_rel
, *pea_rel
;
2606 /* Alignment must be set to 2**2 or you get extra stuff. */
2607 bfd_set_section_alignment(abfd
, sec
, 2);
2610 si
->data
= xmalloc (si
->size
);
2611 memset (si
->data
, 0, si
->size
);
2612 rpp
= xmalloc (sizeof (arelent
*) * 5);
2613 rpp
[0] = imglue
= xmalloc (sizeof (arelent
));
2614 rpp
[1] = ba_rel
= xmalloc (sizeof (arelent
));
2615 rpp
[2] = ea_rel
= xmalloc (sizeof (arelent
));
2616 rpp
[3] = pea_rel
= xmalloc (sizeof (arelent
));
2619 /* Stick the toc reload instruction in the glue reloc. */
2620 bfd_put_32(abfd
, ppc_glue_insn
, (char *) &imglue
->address
);
2623 imglue
->howto
= bfd_reloc_type_lookup (abfd
,
2624 BFD_RELOC_32_GOTOFF
);
2625 imglue
->sym_ptr_ptr
= fn_pp
;
2627 ba_rel
->address
= 0;
2629 ba_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2630 ba_rel
->sym_ptr_ptr
= fn_pp
;
2632 bfd_put_32 (abfd
, 0x18, si
->data
+ 0x04);
2633 ea_rel
->address
= 4;
2635 ea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2636 ea_rel
->sym_ptr_ptr
= fn_pp
;
2638 /* Mark it as glue. */
2639 bfd_put_32 (abfd
, 0x03, si
->data
+ 0x0c);
2641 /* Mark the prolog end address. */
2642 bfd_put_32 (abfd
, 0x0D, si
->data
+ 0x10);
2643 pea_rel
->address
= 0x10;
2644 pea_rel
->addend
= 0;
2645 pea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2646 pea_rel
->sym_ptr_ptr
= fn_pp
;
2648 sec
->orelocation
= rpp
;
2649 sec
->reloc_count
= 4;
2653 /* Each external function in a PowerPC PE file has a two word
2654 descriptor consisting of:
2655 1. The address of the code.
2656 2. The address of the appropriate .toc
2657 We use relocs to build this. */
2659 si
->data
= xmalloc (8);
2660 memset (si
->data
, 0, si
->size
);
2662 rpp
= xmalloc (sizeof (arelent
*) * 3);
2663 rpp
[0] = rel
= xmalloc (sizeof (arelent
));
2664 rpp
[1] = xmalloc (sizeof (arelent
));
2669 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2670 rel
->sym_ptr_ptr
= fn_pp
;
2676 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2677 rel
->sym_ptr_ptr
= toc_pp
;
2679 sec
->orelocation
= rpp
;
2680 sec
->reloc_count
= 2;
2682 #endif /* DLLTOOL_PPC */
2688 /* Size up all the sections. */
2689 for (i
= 0; i
< NSECS
; i
++)
2691 sinfo
*si
= secdata
+ i
;
2693 bfd_set_section_size (abfd
, si
->sec
, si
->size
);
2694 bfd_set_section_vma (abfd
, si
->sec
, vma
);
2696 /* vma += si->size;*/
2699 /* Write them out. */
2700 for (i
= 0; i
< NSECS
; i
++)
2702 sinfo
*si
= secdata
+ i
;
2704 if (i
== IDATA5
&& no_idata5
)
2707 if (i
== IDATA4
&& no_idata4
)
2710 bfd_set_section_contents (abfd
, si
->sec
,
2715 bfd_set_symtab (abfd
, ptrs
, oidx
);
2717 abfd
= bfd_openr (outname
, HOW_BFD_READ_TARGET
);
2726 FILE *f
= fopen (TMP_HEAD_S
, FOPEN_WT
);
2730 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S
);
2734 fprintf (f
, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C
);
2735 fprintf (f
, "\t.section .idata$2\n");
2737 fprintf(f
,"\t%s\t%s\n", ASM_GLOBAL
,head_label
);
2739 fprintf (f
, "%s:\n", head_label
);
2741 fprintf (f
, "\t%shname%s\t%sPtr to image import by name list\n",
2742 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
2744 fprintf (f
, "\t%sthis should be the timestamp, but NT sometimes\n", ASM_C
);
2745 fprintf (f
, "\t%sdoesn't load DLLs when this is set.\n", ASM_C
);
2746 fprintf (f
, "\t%s\t0\t%s loaded time\n", ASM_LONG
, ASM_C
);
2747 fprintf (f
, "\t%s\t0\t%s Forwarder chain\n", ASM_LONG
, ASM_C
);
2748 fprintf (f
, "\t%s__%s_iname%s\t%s imported dll's name\n",
2753 fprintf (f
, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2755 ASM_RVA_AFTER
, ASM_C
);
2757 fprintf (f
, "%sStuff for compatibility\n", ASM_C
);
2761 fprintf (f
, "\t.section\t.idata$5\n");
2762 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2763 fprintf (f
, "fthunk:\n");
2768 fprintf (f
, "\t.section\t.idata$4\n");
2770 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2771 fprintf (f
, "\t.section .idata$4\n");
2772 fprintf (f
, "hname:\n");
2777 assemble_file (TMP_HEAD_S
, TMP_HEAD_O
);
2779 return bfd_openr (TMP_HEAD_O
, HOW_BFD_READ_TARGET
);
2785 FILE *f
= fopen (TMP_TAIL_S
, FOPEN_WT
);
2789 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S
);
2795 fprintf (f
, "\t.section .idata$4\n");
2796 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2801 fprintf (f
, "\t.section .idata$5\n");
2802 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2806 /* Normally, we need to see a null descriptor built in idata$3 to
2807 act as the terminator for the list. The ideal way, I suppose,
2808 would be to mark this section as a comdat type 2 section, so
2809 only one would appear in the final .exe (if our linker supported
2810 comdat, that is) or cause it to be inserted by something else (say
2813 fprintf (f
, "\t.section .idata$3\n");
2814 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2815 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2816 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2817 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2818 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2822 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
2823 do too. Original, huh? */
2824 fprintf (f
, "\t.section .idata$6\n");
2826 fprintf (f
, "\t.section .idata$7\n");
2829 fprintf (f
, "\t%s\t__%s_iname\n", ASM_GLOBAL
, imp_name_lab
);
2830 fprintf (f
, "__%s_iname:\t%s\t\"%s\"\n",
2831 imp_name_lab
, ASM_TEXT
, dll_name
);
2835 assemble_file (TMP_TAIL_S
, TMP_TAIL_O
);
2837 return bfd_openr (TMP_TAIL_O
, HOW_BFD_READ_TARGET
);
2852 outarch
= bfd_openw (imp_name
, HOW_BFD_WRITE_TARGET
);
2855 /* xgettext:c-format */
2856 fatal (_("Can't open .lib file: %s"), imp_name
);
2858 /* xgettext:c-format */
2859 inform (_("Creating library file: %s"), imp_name
);
2861 bfd_set_format (outarch
, bfd_archive
);
2862 outarch
->has_armap
= 1;
2864 /* Work out a reasonable size of things to put onto one line. */
2865 ar_head
= make_head ();
2866 ar_tail
= make_tail();
2868 if (ar_head
== NULL
|| ar_tail
== NULL
)
2871 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
2873 bfd
*n
= make_one_lib_file (exp
, i
);
2878 /* Now stick them all into the archive. */
2879 ar_head
->next
= head
;
2880 ar_tail
->next
= ar_head
;
2883 if (! bfd_set_archive_head (outarch
, head
))
2884 bfd_fatal ("bfd_set_archive_head");
2886 if (! bfd_close (outarch
))
2887 bfd_fatal (imp_name
);
2889 while (head
!= NULL
)
2891 bfd
*n
= head
->next
;
2896 /* Delete all the temp files. */
2897 if (dontdeltemps
== 0)
2899 unlink (TMP_HEAD_O
);
2900 unlink (TMP_HEAD_S
);
2901 unlink (TMP_TAIL_O
);
2902 unlink (TMP_TAIL_S
);
2905 if (dontdeltemps
< 2)
2909 name
= (char *) alloca (sizeof TMP_STUB
+ 10);
2910 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
2912 sprintf (name
, "%s%05d.o", TMP_STUB
, i
);
2913 if (unlink (name
) < 0)
2914 /* xgettext:c-format */
2915 non_fatal (_("cannot delete %s: %s"), name
, strerror (errno
));
2919 inform (_("Created lib file"));
2922 /**********************************************************************/
2924 /* Run through the information gathered from the .o files and the
2925 .def file and work out the best stuff. */
2931 export_type
*ap
= *(export_type
**) a
;
2932 export_type
*bp
= *(export_type
**) b
;
2933 if (ap
->ordinal
== bp
->ordinal
)
2936 /* Unset ordinals go to the bottom. */
2937 if (ap
->ordinal
== -1)
2939 if (bp
->ordinal
== -1)
2941 return (ap
->ordinal
- bp
->ordinal
);
2949 export_type
*ap
= *(export_type
**) a
;
2950 export_type
*bp
= *(export_type
**) b
;
2952 return (strcmp (ap
->name
, bp
->name
));
2956 remove_null_names (ptr
)
2962 for (dst
= src
= 0; src
< d_nfuncs
; src
++)
2966 ptr
[dst
] = ptr
[src
];
2983 for (i
= 0; i
< d_nfuncs
; i
++)
2987 printf ("%d %s @ %d %s%s%s\n",
2988 i
, ptr
[i
]->name
, ptr
[i
]->ordinal
,
2989 ptr
[i
]->noname
? "NONAME " : "",
2990 ptr
[i
]->constant
? "CONSTANT" : "",
2991 ptr
[i
]->data
? "DATA" : "");
3000 process_duplicates (d_export_vec
)
3001 export_type
**d_export_vec
;
3010 /* Remove duplicates. */
3011 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), nfunc
);
3013 dtab (d_export_vec
);
3014 for (i
= 0; i
< d_nfuncs
- 1; i
++)
3016 if (strcmp (d_export_vec
[i
]->name
,
3017 d_export_vec
[i
+ 1]->name
) == 0)
3020 export_type
*a
= d_export_vec
[i
];
3021 export_type
*b
= d_export_vec
[i
+ 1];
3025 /* xgettext:c-format */
3026 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
3027 a
->name
, a
->ordinal
, b
->ordinal
);
3029 if (a
->ordinal
!= -1
3030 && b
->ordinal
!= -1)
3031 /* xgettext:c-format */
3032 fatal (_("Error, duplicate EXPORT with oridinals: %s"),
3035 /* Merge attributes. */
3036 b
->ordinal
= a
->ordinal
> 0 ? a
->ordinal
: b
->ordinal
;
3037 b
->constant
|= a
->constant
;
3038 b
->noname
|= a
->noname
;
3040 d_export_vec
[i
] = 0;
3043 dtab (d_export_vec
);
3044 remove_null_names (d_export_vec
);
3045 dtab (d_export_vec
);
3050 /* Count the names. */
3051 for (i
= 0; i
< d_nfuncs
; i
++)
3053 if (!d_export_vec
[i
]->noname
)
3059 fill_ordinals (d_export_vec
)
3060 export_type
**d_export_vec
;
3067 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
3069 /* Fill in the unset ordinals with ones from our range. */
3070 ptr
= (char *) xmalloc (size
);
3072 memset (ptr
, 0, size
);
3074 /* Mark in our large vector all the numbers that are taken. */
3075 for (i
= 0; i
< d_nfuncs
; i
++)
3077 if (d_export_vec
[i
]->ordinal
!= -1)
3079 ptr
[d_export_vec
[i
]->ordinal
] = 1;
3081 if (lowest
== -1 || d_export_vec
[i
]->ordinal
< lowest
)
3082 lowest
= d_export_vec
[i
]->ordinal
;
3086 /* Start at 1 for compatibility with MS toolchain. */
3090 /* Now fill in ordinals where the user wants us to choose. */
3091 for (i
= 0; i
< d_nfuncs
; i
++)
3093 if (d_export_vec
[i
]->ordinal
== -1)
3097 /* First try within or after any user supplied range. */
3098 for (j
= lowest
; j
< size
; j
++)
3102 d_export_vec
[i
]->ordinal
= j
;
3106 /* Then try before the range. */
3107 for (j
= lowest
; j
>0; j
--)
3111 d_export_vec
[i
]->ordinal
= j
;
3121 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
3123 /* Work out the lowest and highest ordinal numbers. */
3126 if (d_export_vec
[0])
3127 d_low_ord
= d_export_vec
[0]->ordinal
;
3128 if (d_export_vec
[d_nfuncs
-1])
3129 d_high_ord
= d_export_vec
[d_nfuncs
-1]->ordinal
;
3138 const export_type
**a
= (const export_type
**) av
;
3139 const export_type
**b
= (const export_type
**) bv
;
3141 return strcmp ((*a
)->name
, (*b
)->name
);
3147 /* First work out the minimum ordinal chosen. */
3152 export_type
**d_export_vec
3153 = (export_type
**) xmalloc (sizeof (export_type
*) * d_nfuncs
);
3155 inform (_("Processing definitions"));
3157 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3158 d_export_vec
[i
] = exp
;
3160 process_duplicates (d_export_vec
);
3161 fill_ordinals (d_export_vec
);
3163 /* Put back the list in the new order. */
3165 for (i
= d_nfuncs
- 1; i
>= 0; i
--)
3167 d_export_vec
[i
]->next
= d_exports
;
3168 d_exports
= d_export_vec
[i
];
3171 /* Build list in alpha order. */
3172 d_exports_lexically
= (export_type
**)
3173 xmalloc (sizeof (export_type
*) * (d_nfuncs
+ 1));
3175 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3176 d_exports_lexically
[i
] = exp
;
3178 d_exports_lexically
[i
] = 0;
3180 qsort (d_exports_lexically
, i
, sizeof (export_type
*), alphafunc
);
3182 /* Fill exp entries with their hint values. */
3183 for (i
= 0; i
< d_nfuncs
; i
++)
3184 if (!d_exports_lexically
[i
]->noname
|| show_allnames
)
3185 d_exports_lexically
[i
]->hint
= hint
++;
3187 inform (_("Processed definitions"));
3190 /**********************************************************************/
3193 usage (file
, status
)
3197 /* xgetext:c-format */
3198 fprintf (file
, _("Usage %s <option(s)> <object-file(s)>\n"), program_name
);
3199 /* xgetext:c-format */
3200 fprintf (file
, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname
);
3201 fprintf (file
, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
3202 fprintf (file
, _(" -e --output-exp <outname> Generate an export file.\n"));
3203 fprintf (file
, _(" -l --output-lib <outname> Generate an interface library.\n"));
3204 fprintf (file
, _(" -a --add-indirect Add dll indirects to export file.\n"));
3205 fprintf (file
, _(" -D --dllname <name> Name of input dll to put into interface lib.\n"));
3206 fprintf (file
, _(" -d --input-def <deffile> Name of .def file to be read in.\n"));
3207 fprintf (file
, _(" -z --output-def <deffile> Name of .def file to be created.\n"));
3208 fprintf (file
, _(" --export-all-symbols Export all symbols to .def\n"));
3209 fprintf (file
, _(" --no-export-all-symbols Only export listed symbols\n"));
3210 fprintf (file
, _(" --exclude-symbols <list> Don't export <list>\n"));
3211 fprintf (file
, _(" --no-default-excludes Clear default exclude symbols\n"));
3212 fprintf (file
, _(" -b --base-file <basefile> Read linker generated base file.\n"));
3213 fprintf (file
, _(" -x --no-idata4 Don't generate idata$4 section.\n"));
3214 fprintf (file
, _(" -c --no-idata5 Don't generate idata$5 section.\n"));
3215 fprintf (file
, _(" -U --add-underscore Add underscores to symbols in interface library.\n"));
3216 fprintf (file
, _(" -k --kill-at Kill @<n> from exported names.\n"));
3217 fprintf (file
, _(" -A --add-stdcall-alias Add aliases without @<n>.\n"));
3218 fprintf (file
, _(" -S --as <name> Use <name> for assembler.\n"));
3219 fprintf (file
, _(" -f --as-flags <flags> Pass <flags> to the assembler.\n"));
3220 fprintf (file
, _(" -C --compat-implib Create backward compatible import library.\n"));
3221 fprintf (file
, _(" -n --no-delete Keep temp files (repeat for extra preservation).\n"));
3222 fprintf (file
, _(" -v --verbose Be verbose.\n"));
3223 fprintf (file
, _(" -V --version Display the program version.\n"));
3224 fprintf (file
, _(" -h --help Display this information.\n"));
3225 #ifdef DLLTOOL_MCORE_ELF
3226 fprintf (file
, _(" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n"));
3227 fprintf (file
, _(" -L --linker <name> Use <name> as the linker.\n"));
3228 fprintf (file
, _(" -F --linker-flags <flags> Pass <flags> to the linker.\n"));
3233 #define OPTION_EXPORT_ALL_SYMS 150
3234 #define OPTION_NO_EXPORT_ALL_SYMS (OPTION_EXPORT_ALL_SYMS + 1)
3235 #define OPTION_EXCLUDE_SYMS (OPTION_NO_EXPORT_ALL_SYMS + 1)
3236 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_EXCLUDE_SYMS + 1)
3238 static const struct option long_options
[] =
3240 {"no-delete", no_argument
, NULL
, 'n'},
3241 {"dllname", required_argument
, NULL
, 'D'},
3242 {"no-idata4", no_argument
, NULL
, 'x'},
3243 {"no-idata5", no_argument
, NULL
, 'c'},
3244 {"output-exp", required_argument
, NULL
, 'e'},
3245 {"output-def", required_argument
, NULL
, 'z'},
3246 {"export-all-symbols", no_argument
, NULL
, OPTION_EXPORT_ALL_SYMS
},
3247 {"no-export-all-symbols", no_argument
, NULL
, OPTION_NO_EXPORT_ALL_SYMS
},
3248 {"exclude-symbols", required_argument
, NULL
, OPTION_EXCLUDE_SYMS
},
3249 {"no-default-excludes", no_argument
, NULL
, OPTION_NO_DEFAULT_EXCLUDES
},
3250 {"output-lib", required_argument
, NULL
, 'l'},
3251 {"def", required_argument
, NULL
, 'd'}, /* for compatiblity with older versions */
3252 {"input-def", required_argument
, NULL
, 'd'},
3253 {"add-underscore", no_argument
, NULL
, 'U'},
3254 {"kill-at", no_argument
, NULL
, 'k'},
3255 {"add-stdcall-alias", no_argument
, NULL
, 'A'},
3256 {"verbose", no_argument
, NULL
, 'v'},
3257 {"version", no_argument
, NULL
, 'V'},
3258 {"help", no_argument
, NULL
, 'h'},
3259 {"machine", required_argument
, NULL
, 'm'},
3260 {"add-indirect", no_argument
, NULL
, 'a'},
3261 {"base-file", required_argument
, NULL
, 'b'},
3262 {"as", required_argument
, NULL
, 'S'},
3263 {"as-flags", required_argument
, NULL
, 'f'},
3264 {"mcore-elf", required_argument
, NULL
, 'M'},
3265 {"compat-implib", no_argument
, NULL
, 'C'},
3269 int main
PARAMS ((int, char **));
3279 program_name
= av
[0];
3282 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
3283 setlocale (LC_MESSAGES
, "");
3285 #if defined (HAVE_SETLOCALE)
3286 setlocale (LC_CTYPE
, "");
3288 bindtextdomain (PACKAGE
, LOCALEDIR
);
3289 textdomain (PACKAGE
);
3291 while ((c
= getopt_long (ac
, av
,
3292 #ifdef DLLTOOL_MCORE_ELF
3293 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHhM:L:F:",
3295 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHh",
3302 case OPTION_EXPORT_ALL_SYMS
:
3303 export_all_symbols
= TRUE
;
3305 case OPTION_NO_EXPORT_ALL_SYMS
:
3306 export_all_symbols
= FALSE
;
3308 case OPTION_EXCLUDE_SYMS
:
3309 add_excludes (optarg
);
3311 case OPTION_NO_DEFAULT_EXCLUDES
:
3312 do_default_excludes
= FALSE
;
3327 /* ignored for compatibility */
3334 output_def
= fopen (optarg
, FOPEN_WT
);
3356 print_version (program_name
);
3365 add_stdcall_alias
= 1;
3374 base_file
= fopen (optarg
, FOPEN_RB
);
3377 /* xgettext:c-format */
3378 fatal (_("Unable to open base-file: %s"), optarg
);
3381 #ifdef DLLTOOL_MCORE_ELF
3383 mcore_elf_out_file
= optarg
;
3386 mcore_elf_linker
= optarg
;
3389 mcore_elf_linker_flags
= optarg
;
3393 create_compat_implib
= 1;
3401 for (i
= 0; mtable
[i
].type
; i
++)
3402 if (strcmp (mtable
[i
].type
, mname
) == 0)
3405 if (!mtable
[i
].type
)
3406 /* xgettext:c-format */
3407 fatal (_("Machine '%s' not supported"), mname
);
3411 if (!dll_name
&& exp_name
)
3413 int len
= strlen (exp_name
) + 5;
3414 dll_name
= xmalloc (len
);
3415 strcpy (dll_name
, exp_name
);
3416 strcat (dll_name
, ".dll");
3419 if (as_name
== NULL
)
3420 as_name
= deduce_name ("as");
3422 /* Don't use the default exclude list if we're reading only the
3423 symbols in the .drectve section. The default excludes are meant
3424 to avoid exporting DLL entry point and Cygwin32 impure_ptr. */
3425 if (! export_all_symbols
)
3426 do_default_excludes
= FALSE
;
3428 if (do_default_excludes
)
3429 set_default_excludes ();
3432 process_def_file (def_file
);
3437 firstarg
= av
[optind
];
3438 scan_obj_file (av
[optind
]);
3449 /* Make imp_name safe for use as a label. */
3452 imp_name_lab
= xstrdup (imp_name
);
3453 for (p
= imp_name_lab
; *p
; p
++)
3458 head_label
= make_label("_head_", imp_name_lab
);
3465 #ifdef DLLTOOL_MCORE_ELF
3466 if (mcore_elf_out_file
)
3467 mcore_elf_gen_out_file ();
3473 /* Look for the program formed by concatenating PROG_NAME and the
3474 string running from PREFIX to END_PREFIX. If the concatenated
3475 string contains a '/', try appending EXECUTABLE_SUFFIX if it is
3479 look_for_prog (prog_name
, prefix
, end_prefix
)
3480 const char *prog_name
;
3487 cmd
= xmalloc (strlen (prefix
)
3488 + strlen (prog_name
)
3489 #ifdef HAVE_EXECUTABLE_SUFFIX
3490 + strlen (EXECUTABLE_SUFFIX
)
3493 strcpy (cmd
, prefix
);
3495 sprintf (cmd
+ end_prefix
, "%s", prog_name
);
3497 if (strchr (cmd
, '/') != NULL
)
3501 found
= (stat (cmd
, &s
) == 0
3502 #ifdef HAVE_EXECUTABLE_SUFFIX
3503 || stat (strcat (cmd
, EXECUTABLE_SUFFIX
), &s
) == 0
3509 /* xgettext:c-format */
3510 inform (_("Tried file: %s"), cmd
);
3516 /* xgettext:c-format */
3517 inform (_("Using file: %s"), cmd
);
3522 /* Deduce the name of the program we are want to invoke.
3523 PROG_NAME is the basic name of the program we want to run,
3524 eg "as" or "ld". The catch is that we might want actually
3525 run "i386-pe-as" or "ppc-pe-ld".
3527 If argv[0] contains the full path, then try to find the program
3528 in the same place, with and then without a target-like prefix.
3530 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
3531 deduce_name("as") uses the following search order:
3533 /usr/local/bin/i586-cygwin32-as
3537 If there's an EXECUTABLE_SUFFIX, it'll use that as well; for each
3538 name, it'll try without and then with EXECUTABLE_SUFFIX.
3540 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
3541 as the fallback, but rather return i586-cygwin32-as.
3543 Oh, and given, argv[0] = dlltool, it'll return "as".
3545 Returns a dynamically allocated string. */
3548 deduce_name (prog_name
)
3549 const char *prog_name
;
3552 char *dash
, *slash
, *cp
;
3556 for (cp
= program_name
; *cp
!= '\0'; ++cp
)
3561 #if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
3562 *cp
== ':' || *cp
== '\\' ||
3575 /* First, try looking for a prefixed PROG_NAME in the
3576 PROGRAM_NAME directory, with the same prefix as PROGRAM_NAME. */
3577 cmd
= look_for_prog (prog_name
, program_name
, dash
- program_name
+ 1);
3580 if (slash
!= NULL
&& cmd
== NULL
)
3582 /* Next, try looking for a PROG_NAME in the same directory as
3583 that of this program. */
3584 cmd
= look_for_prog (prog_name
, program_name
, slash
- program_name
+ 1);
3589 /* Just return PROG_NAME as is. */
3590 cmd
= xstrdup (prog_name
);
3596 #ifdef DLLTOOL_MCORE_ELF
3597 typedef struct fname_cache
3600 struct fname_cache
* next
;
3604 static fname_cache fnames
;
3607 mcore_elf_cache_filename (char * filename
)
3613 while (ptr
->next
!= NULL
)
3616 ptr
->filename
= filename
;
3617 ptr
->next
= (fname_cache
*) malloc (sizeof (fname_cache
));
3618 if (ptr
->next
!= NULL
)
3619 ptr
->next
->next
= NULL
;
3622 #define MCORE_ELF_TMP_OBJ "mcoreelf.o"
3623 #define MCORE_ELF_TMP_EXP "mcoreelf.exp"
3624 #define MCORE_ELF_TMP_LIB "mcoreelf.lib"
3627 mcore_elf_gen_out_file (void)
3632 /* Step one. Run 'ld -r' on the input object files in order to resolve
3633 any internal references and to generate a single .exports section. */
3636 ds
= dyn_string_new (100);
3637 dyn_string_append_cstr (ds
, "-r ");
3639 if (mcore_elf_linker_flags
!= NULL
)
3640 dyn_string_append_cstr (ds
, mcore_elf_linker_flags
);
3642 while (ptr
->next
!= NULL
)
3644 dyn_string_append_cstr (ds
, ptr
->filename
);
3645 dyn_string_append_cstr (ds
, " ");
3650 dyn_string_append_cstr (ds
, "-o ");
3651 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3653 if (mcore_elf_linker
== NULL
)
3654 mcore_elf_linker
= deduce_name ("ld");
3656 run (mcore_elf_linker
, ds
->s
);
3658 dyn_string_delete (ds
);
3660 /* Step two. Create a .exp file and a .lib file from the temporary file.
3661 Do this by recursively invoking dlltool... */
3662 ds
= dyn_string_new (100);
3664 dyn_string_append_cstr (ds
, "-S ");
3665 dyn_string_append_cstr (ds
, as_name
);
3667 dyn_string_append_cstr (ds
, " -e ");
3668 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_EXP
);
3669 dyn_string_append_cstr (ds
, " -l ");
3670 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_LIB
);
3671 dyn_string_append_cstr (ds
, " " );
3672 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3675 dyn_string_append_cstr (ds
, " -v");
3679 dyn_string_append_cstr (ds
, " -n");
3681 if (dontdeltemps
> 1)
3682 dyn_string_append_cstr (ds
, " -n");
3685 /* XXX - FIME: ought to check/copy other command line options as well. */
3686 run (program_name
, ds
->s
);
3688 dyn_string_delete (ds
);
3690 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
3691 ds
= dyn_string_new (100);
3693 dyn_string_append_cstr (ds
, "-shared ");
3695 if (mcore_elf_linker_flags
)
3696 dyn_string_append_cstr (ds
, mcore_elf_linker_flags
);
3698 dyn_string_append_cstr (ds
, " ");
3699 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_EXP
);
3700 dyn_string_append_cstr (ds
, " ");
3701 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3702 dyn_string_append_cstr (ds
, " -o ");
3703 dyn_string_append_cstr (ds
, mcore_elf_out_file
);
3705 run (mcore_elf_linker
, ds
->s
);
3707 dyn_string_delete (ds
);
3709 if (dontdeltemps
== 0)
3710 unlink (MCORE_ELF_TMP_EXP
);
3712 if (dontdeltemps
< 2)
3713 unlink (MCORE_ELF_TMP_OBJ
);
3715 #endif /* DLLTOOL_MCORE_ELF */