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 char *tmp_prefix
= "d";
355 static int no_idata4
;
356 static int no_idata5
;
357 static char *exp_name
;
358 static char *imp_name
;
359 static char *head_label
;
360 static char *imp_name_lab
;
361 static char *dll_name
;
363 static int add_indirect
= 0;
364 static int add_underscore
= 0;
365 static int dontdeltemps
= 0;
367 /* TRUE if we should export all symbols. Otherwise, we only export
368 symbols listed in .drectve sections or in the def file. */
369 static bfd_boolean export_all_symbols
;
371 /* TRUE if we should exclude the symbols in DEFAULT_EXCLUDES when
372 exporting all symbols. */
373 static bfd_boolean do_default_excludes
= TRUE
;
375 /* Default symbols to exclude when exporting all the symbols. */
376 static const char *default_excludes
= "DllMain@12,DllEntryPoint@0,impure_ptr";
378 /* TRUE if we should add __imp_<SYMBOL> to import libraries for backward
379 compatibility to old Cygwin releases. */
380 static bfd_boolean create_compat_implib
;
382 static char *def_file
;
384 extern char * program_name
;
388 static int add_stdcall_alias
;
390 static FILE *output_def
;
391 static FILE *base_file
;
394 #ifdef DLLTOOL_ARM_EPOC
395 static const char *mname
= "arm-epoc";
397 static const char *mname
= "arm";
402 static const char *mname
= "i386";
406 static const char *mname
= "ppc";
410 static const char *mname
= "sh";
414 static const char *mname
= "mips";
418 static const char * mname
= "mcore-le";
421 #ifdef DLLTOOL_MCORE_ELF
422 static const char * mname
= "mcore-elf";
423 static char * mcore_elf_out_file
= NULL
;
424 static char * mcore_elf_linker
= NULL
;
425 static char * mcore_elf_linker_flags
= NULL
;
427 #define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
430 #ifndef DRECTVE_SECTION_NAME
431 #define DRECTVE_SECTION_NAME ".drectve"
434 #define PATHMAX 250 /* What's the right name for this ? */
437 char *tmp_head_s_buf
;
438 char *tmp_head_o_buf
;
439 char *tmp_tail_s_buf
;
440 char *tmp_tail_o_buf
;
443 #define TMP_ASM dlltmp (tmp_asm_buf, "%sc.s")
444 #define TMP_HEAD_S dlltmp (tmp_head_s_buf, "%sh.s")
445 #define TMP_HEAD_O dlltmp (tmp_head_o_buf, "%sh.o")
446 #define TMP_TAIL_S dlltmp (tmp_tail_s_buf, "%st.s")
447 #define TMP_TAIL_O dlltmp (tmp_tail_o_buf, "%st.o")
448 #define TMP_STUB dlltmp (tmp_stub_buf, "%ss")
450 /* This bit of assemly does jmp * .... */
451 static const unsigned char i386_jtab
[] =
453 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
456 static const unsigned char arm_jtab
[] =
458 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
459 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
463 static const unsigned char arm_interwork_jtab
[] =
465 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
466 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
467 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
471 static const unsigned char thumb_jtab
[] =
473 0x40, 0xb4, /* push {r6} */
474 0x02, 0x4e, /* ldr r6, [pc, #8] */
475 0x36, 0x68, /* ldr r6, [r6] */
476 0xb4, 0x46, /* mov ip, r6 */
477 0x40, 0xbc, /* pop {r6} */
478 0x60, 0x47, /* bx ip */
482 static const unsigned char mcore_be_jtab
[] =
484 0x71, 0x02, /* lrw r1,2 */
485 0x81, 0x01, /* ld.w r1,(r1,0) */
486 0x00, 0xC1, /* jmp r1 */
487 0x12, 0x00, /* nop */
488 0x00, 0x00, 0x00, 0x00 /* <address> */
491 static const unsigned char mcore_le_jtab
[] =
493 0x02, 0x71, /* lrw r1,2 */
494 0x01, 0x81, /* ld.w r1,(r1,0) */
495 0xC1, 0x00, /* jmp r1 */
496 0x00, 0x12, /* nop */
497 0x00, 0x00, 0x00, 0x00 /* <address> */
500 /* This is the glue sequence for PowerPC PE. There is a
501 tocrel16-tocdefn reloc against the first instruction.
502 We also need a IMGLUE reloc against the glue function
503 to restore the toc saved by the third instruction in
505 static const unsigned char ppc_jtab
[] =
507 0x00, 0x00, 0x62, 0x81, /* lwz r11,0(r2) */
508 /* Reloc TOCREL16 __imp_xxx */
509 0x00, 0x00, 0x8B, 0x81, /* lwz r12,0(r11) */
510 0x04, 0x00, 0x41, 0x90, /* stw r2,4(r1) */
511 0xA6, 0x03, 0x89, 0x7D, /* mtctr r12 */
512 0x04, 0x00, 0x4B, 0x80, /* lwz r2,4(r11) */
513 0x20, 0x04, 0x80, 0x4E /* bctr */
517 /* The glue instruction, picks up the toc from the stw in
518 the above code: "lwz r2,4(r1)". */
519 static bfd_vma ppc_glue_insn
= 0x80410004;
525 const char *how_byte
;
526 const char *how_short
;
527 const char *how_long
;
528 const char *how_asciz
;
529 const char *how_comment
;
530 const char *how_jump
;
531 const char *how_global
;
532 const char *how_space
;
533 const char *how_align_short
;
534 const char *how_align_long
;
535 const char *how_default_as_switches
;
536 const char *how_bfd_target
;
537 enum bfd_architecture how_bfd_arch
;
538 const unsigned char *how_jtab
;
539 int how_jtab_size
; /* Size of the jtab entry. */
540 int how_jtab_roff
; /* Offset into it for the ind 32 reloc into idata 5. */
543 static const struct mac
548 "arm", ".byte", ".short", ".long", ".asciz", "@",
549 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
550 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
551 "pe-arm-little", bfd_arch_arm
,
552 arm_jtab
, sizeof (arm_jtab
), 8
557 "i386", ".byte", ".short", ".long", ".asciz", "#",
558 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
559 "pe-i386",bfd_arch_i386
,
560 i386_jtab
, sizeof (i386_jtab
), 2
565 "ppc", ".byte", ".short", ".long", ".asciz", "#",
566 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
567 "pe-powerpcle",bfd_arch_powerpc
,
568 ppc_jtab
, sizeof (ppc_jtab
), 0
573 "thumb", ".byte", ".short", ".long", ".asciz", "@",
574 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
575 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
576 "pe-arm-little", bfd_arch_arm
,
577 thumb_jtab
, sizeof (thumb_jtab
), 12
580 #define MARM_INTERWORK 4
582 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
583 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
584 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
585 "pe-arm-little", bfd_arch_arm
,
586 arm_interwork_jtab
, sizeof (arm_interwork_jtab
), 12
591 "mcore-be", ".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", "",
594 "pe-mcore-big", bfd_arch_mcore
,
595 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
600 "mcore-le", ".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", "-EL",
603 "pe-mcore-little", bfd_arch_mcore
,
604 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
609 "mcore-elf-be", ".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", "",
612 "elf32-mcore-big", bfd_arch_mcore
,
613 mcore_be_jtab
, sizeof (mcore_be_jtab
), 8
617 #define MMCORE_ELF_LE 8
618 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
619 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
620 ".global", ".space", ".align\t2",".align\t4", "-EL",
621 "elf32-mcore-little", bfd_arch_mcore
,
622 mcore_le_jtab
, sizeof (mcore_le_jtab
), 8
627 "arm-epoc", ".byte", ".short", ".long", ".asciz", "@",
628 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
629 ".global", ".space", ".align\t2",".align\t4", "",
630 "epoc-pe-arm-little", bfd_arch_arm
,
631 arm_jtab
, sizeof (arm_jtab
), 8
634 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
644 typedef struct export
647 const char *internal_name
;
653 int forward
; /* Number of forward label, 0 means no forward. */
658 /* A list of symbols which we should not export. */
662 struct string_list
*next
;
666 static struct string_list
*excludes
;
668 static const char *rvaafter
670 static const char *rvabefore
672 static const char *asm_prefix
674 static void process_def_file
675 PARAMS ((const char *));
676 static void new_directive
678 static void append_import
679 PARAMS ((const char *, const char *, int));
681 PARAMS ((const char *, char *));
682 static void scan_drectve_symbols
684 static void scan_filtered_symbols
685 PARAMS ((bfd
*, PTR
, long, unsigned int));
686 static void add_excludes
687 PARAMS ((const char *));
688 static bfd_boolean match_exclude
689 PARAMS ((const char *));
690 static void set_default_excludes
692 static long filter_symbols
693 PARAMS ((bfd
*, PTR
, long, unsigned int));
694 static void scan_all_symbols
696 static void scan_open_obj_file
698 static void scan_obj_file
699 PARAMS ((const char *));
700 static void dump_def_info
703 PARAMS ((const void *, const void *));
704 static void flush_page
705 PARAMS ((FILE *, long *, int, int));
706 static void gen_def_file
708 static void generate_idata_ofile
710 static void assemble_file
711 PARAMS ((const char *, const char *));
712 static void gen_exp_file
714 static const char *xlate
715 PARAMS ((const char *));
718 PARAMS ((FILE *, export_type
*));
720 static char *make_label
721 PARAMS ((const char *, const char *));
722 static char *make_imp_label
723 PARAMS ((const char *, const char *));
724 static bfd
*make_one_lib_file
725 PARAMS ((export_type
*, int));
726 static bfd
*make_head
728 static bfd
*make_tail
730 static void gen_lib_file
733 PARAMS ((const void *, const void *));
735 PARAMS ((const void *, const void *));
736 static void remove_null_names
737 PARAMS ((export_type
**));
739 PARAMS ((export_type
**));
740 static void process_duplicates
741 PARAMS ((export_type
**));
742 static void fill_ordinals
743 PARAMS ((export_type
**));
745 PARAMS ((const void *, const void *));
746 static void mangle_defs
749 PARAMS ((FILE *, int));
751 PARAMS ((const char *, ...));
754 dlltmp
PARAMS ((char *buf
, const char *fmt
))
757 buf
= malloc (strlen (tmp_prefix
) + 17);
758 sprintf (buf
, fmt
, tmp_prefix
);
763 inform
VPARAMS ((const char * message
, ...))
765 VA_OPEN (args
, message
);
766 VA_FIXEDARG (args
, const char *, message
);
771 report (message
, args
);
794 /* xgettext:c-format */
795 fatal (_("Internal error: Unknown machine type: %d"), machine
);
819 /* xgettext:c-format */
820 fatal (_("Internal error: Unknown machine type: %d"), machine
);
845 /* xgettext:c-format */
846 fatal (_("Internal error: Unknown machine type: %d"), machine
);
852 #define ASM_BYTE mtable[machine].how_byte
853 #define ASM_SHORT mtable[machine].how_short
854 #define ASM_LONG mtable[machine].how_long
855 #define ASM_TEXT mtable[machine].how_asciz
856 #define ASM_C mtable[machine].how_comment
857 #define ASM_JUMP mtable[machine].how_jump
858 #define ASM_GLOBAL mtable[machine].how_global
859 #define ASM_SPACE mtable[machine].how_space
860 #define ASM_ALIGN_SHORT mtable[machine].how_align_short
861 #define ASM_RVA_BEFORE rvabefore(machine)
862 #define ASM_RVA_AFTER rvaafter(machine)
863 #define ASM_PREFIX asm_prefix(machine)
864 #define ASM_ALIGN_LONG mtable[machine].how_align_long
865 #define HOW_BFD_READ_TARGET 0 /* always default*/
866 #define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
867 #define HOW_BFD_ARCH mtable[machine].how_bfd_arch
868 #define HOW_JTAB mtable[machine].how_jtab
869 #define HOW_JTAB_SIZE mtable[machine].how_jtab_size
870 #define HOW_JTAB_ROFF mtable[machine].how_jtab_roff
871 #define ASM_SWITCHES mtable[machine].how_default_as_switches
876 process_def_file (name
)
879 FILE *f
= fopen (name
, FOPEN_RT
);
882 /* xgettext:c-format */
883 fatal (_("Can't open def file: %s"), name
);
887 /* xgettext:c-format */
888 inform (_("Processing def file: %s"), name
);
892 inform (_("Processed def file"));
895 /**********************************************************************/
897 /* Communications with the parser. */
899 static const char *d_name
; /* Arg to NAME or LIBRARY. */
900 static int d_nfuncs
; /* Number of functions exported. */
901 static int d_named_nfuncs
; /* Number of named functions exported. */
902 static int d_low_ord
; /* Lowest ordinal index. */
903 static int d_high_ord
; /* Highest ordinal index. */
904 static export_type
*d_exports
; /* List of exported functions. */
905 static export_type
**d_exports_lexically
; /* Vector of exported functions in alpha order. */
906 static dlist_type
*d_list
; /* Descriptions. */
907 static dlist_type
*a_list
; /* Stuff to go in directives. */
908 static int d_nforwards
= 0; /* Number of forwarded exports. */
915 const char * err ATTRIBUTE_UNUSED
;
917 /* xgettext:c-format */
918 non_fatal (_("Syntax error in def file %s:%d"), def_file
, linenumber
);
924 def_exports (name
, internal_name
, ordinal
, noname
, constant
, data
)
926 const char *internal_name
;
932 struct export
*p
= (struct export
*) xmalloc (sizeof (*p
));
935 p
->internal_name
= internal_name
? internal_name
: name
;
936 p
->ordinal
= ordinal
;
937 p
->constant
= constant
;
944 if ((internal_name
!= NULL
)
945 && (strchr (internal_name
, '.') != NULL
))
946 p
->forward
= ++d_nforwards
;
948 p
->forward
= 0; /* no forward */
952 def_name (name
, base
)
956 /* xgettext:c-format */
957 inform (_("NAME: %s base: %x"), name
, base
);
960 non_fatal (_("Can't have LIBRARY and NAME"));
963 /* If --dllname not provided, use the one in the DEF file.
964 FIXME: Is this appropriate for executables? */
966 dll_name
= xstrdup (name
);
971 def_library (name
, base
)
975 /* xgettext:c-format */
976 inform (_("LIBRARY: %s base: %x"), name
, base
);
979 non_fatal (_("Can't have LIBRARY and NAME"));
982 /* If --dllname not provided, use the one in the DEF file. */
984 dll_name
= xstrdup (name
);
989 def_description (desc
)
992 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
993 d
->text
= xstrdup (desc
);
1002 dlist_type
*d
= (dlist_type
*) xmalloc (sizeof (dlist_type
));
1003 d
->text
= xstrdup (dir
);
1009 def_heapsize (reserve
, commit
)
1015 sprintf (b
, "-heap 0x%x,0x%x ", reserve
, commit
);
1017 sprintf (b
, "-heap 0x%x ", reserve
);
1018 new_directive (xstrdup (b
));
1022 def_stacksize (reserve
, commit
)
1028 sprintf (b
, "-stack 0x%x,0x%x ", reserve
, commit
);
1030 sprintf (b
, "-stack 0x%x ", reserve
);
1031 new_directive (xstrdup (b
));
1034 /* append_import simply adds the given import definition to the global
1035 import_list. It is used by def_import. */
1038 append_import (symbol_name
, dll_name
, func_ordinal
)
1039 const char *symbol_name
;
1040 const char *dll_name
;
1046 for (pq
= &import_list
; *pq
!= NULL
; pq
= &(*pq
)->next
)
1048 if (strcmp ((*pq
)->dllname
, dll_name
) == 0)
1051 q
->functail
->next
= xmalloc (sizeof (ifunctype
));
1052 q
->functail
= q
->functail
->next
;
1053 q
->functail
->ord
= func_ordinal
;
1054 q
->functail
->name
= xstrdup (symbol_name
);
1055 q
->functail
->next
= NULL
;
1061 q
= xmalloc (sizeof (iheadtype
));
1062 q
->dllname
= xstrdup (dll_name
);
1064 q
->funchead
= xmalloc (sizeof (ifunctype
));
1065 q
->functail
= q
->funchead
;
1067 q
->functail
->name
= xstrdup (symbol_name
);
1068 q
->functail
->ord
= func_ordinal
;
1069 q
->functail
->next
= NULL
;
1074 /* def_import is called from within defparse.y when an IMPORT
1075 declaration is encountered. Depending on the form of the
1076 declaration, the module name may or may not need ".dll" to be
1077 appended to it, the name of the function may be stored in internal
1078 or entry, and there may or may not be an ordinal value associated
1081 /* A note regarding the parse modes:
1082 In defparse.y we have to accept import declarations which follow
1083 any one of the following forms:
1084 <func_name_in_app> = <dll_name>.<func_name_in_dll>
1085 <func_name_in_app> = <dll_name>.<number>
1086 <dll_name>.<func_name_in_dll>
1088 Furthermore, the dll's name may or may not end with ".dll", which
1089 complicates the parsing a little. Normally the dll's name is
1090 passed to def_import() in the "module" parameter, but when it ends
1091 with ".dll" it gets passed in "module" sans ".dll" and that needs
1094 def_import gets five parameters:
1095 APP_NAME - the name of the function in the application, if
1096 present, or NULL if not present.
1097 MODULE - the name of the dll, possibly sans extension (ie, '.dll').
1098 DLLEXT - the extension of the dll, if present, NULL if not present.
1099 ENTRY - the name of the function in the dll, if present, or NULL.
1100 ORD_VAL - the numerical tag of the function in the dll, if present,
1101 or NULL. Exactly one of <entry> or <ord_val> must be
1102 present (i.e., not NULL). */
1105 def_import (app_name
, module
, dllext
, entry
, ord_val
)
1106 const char *app_name
;
1112 const char *application_name
;
1116 application_name
= entry
;
1119 if (app_name
!= NULL
)
1120 application_name
= app_name
;
1122 application_name
= "";
1127 buf
= (char *) alloca (strlen (module
) + strlen (dllext
) + 2);
1128 sprintf (buf
, "%s.%s", module
, dllext
);
1132 append_import (application_name
, module
, ord_val
);
1136 def_version (major
, minor
)
1140 printf ("VERSION %d.%d\n", major
, minor
);
1144 def_section (name
, attr
)
1161 sprintf (buf
, "-attr %s %s", name
, atts
);
1162 new_directive (xstrdup (buf
));
1170 def_section ("CODE", attr
);
1177 def_section ("DATA", attr
);
1180 /**********************************************************************/
1188 int pid
, wait_status
;
1191 char *errmsg_fmt
, *errmsg_arg
;
1192 char *temp_base
= choose_temp_base ();
1194 inform ("run: %s %s", what
, args
);
1196 /* Count the args */
1198 for (s
= args
; *s
; s
++)
1202 argv
= alloca (sizeof (char *) * (i
+ 3));
1211 while (*s
!= ' ' && *s
!= 0)
1219 pid
= pexecute (argv
[0], (char * const *) argv
, program_name
, temp_base
,
1220 &errmsg_fmt
, &errmsg_arg
, PEXECUTE_ONE
| PEXECUTE_SEARCH
);
1224 inform (strerror (errno
));
1226 fatal (errmsg_fmt
, errmsg_arg
);
1229 pid
= pwait (pid
, & wait_status
, 0);
1233 /* xgettext:c-format */
1234 fatal (_("wait: %s"), strerror (errno
));
1236 else if (WIFSIGNALED (wait_status
))
1238 /* xgettext:c-format */
1239 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status
));
1241 else if (WIFEXITED (wait_status
))
1243 if (WEXITSTATUS (wait_status
) != 0)
1244 /* xgettext:c-format */
1245 non_fatal (_("%s exited with status %d"),
1246 what
, WEXITSTATUS (wait_status
));
1252 /* Look for a list of symbols to export in the .drectve section of
1253 ABFD. Pass each one to def_exports. */
1256 scan_drectve_symbols (abfd
)
1265 /* Look for .drectve's */
1266 s
= bfd_get_section_by_name (abfd
, DRECTVE_SECTION_NAME
);
1271 size
= bfd_get_section_size_before_reloc (s
);
1272 buf
= xmalloc (size
);
1274 bfd_get_section_contents (abfd
, s
, buf
, 0, size
);
1276 /* xgettext:c-format */
1277 inform (_("Sucking in info from %s section in %s"),
1278 DRECTVE_SECTION_NAME
, bfd_get_filename (abfd
));
1280 /* Search for -export: strings. The exported symbols can optionally
1281 have type tags (eg., -export:foo,data), so handle those as well.
1282 Currently only data tag is supported. */
1288 && strncmp (p
, "-export:", 8) == 0)
1292 flagword flags
= BSF_FUNCTION
;
1296 while (p
< e
&& *p
!= ',' && *p
!= ' ' && *p
!= '-')
1298 c
= xmalloc (p
- name
+ 1);
1299 memcpy (c
, name
, p
- name
);
1301 if (p
< e
&& *p
== ',') /* found type tag. */
1303 char *tag_start
= ++p
;
1304 while (p
< e
&& *p
!= ' ' && *p
!= '-')
1306 if (strncmp (tag_start
, "data", 4) == 0)
1307 flags
&= ~BSF_FUNCTION
;
1310 /* FIXME: The 5th arg is for the `constant' field.
1311 What should it be? Not that it matters since it's not
1312 currently useful. */
1313 def_exports (c
, 0, -1, 0, 0, ! (flags
& BSF_FUNCTION
));
1315 if (add_stdcall_alias
&& strchr (c
, '@'))
1317 int lead_at
= (*c
== '@') ;
1318 char *exported_name
= xstrdup (c
+ lead_at
);
1319 char *atsym
= strchr (exported_name
, '@');
1321 /* Note: stdcall alias symbols can never be data. */
1322 def_exports (exported_name
, xstrdup (c
), -1, 0, 0, 0);
1331 /* Look through the symbols in MINISYMS, and add each one to list of
1332 symbols to export. */
1335 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
)
1342 bfd_byte
*from
, *fromend
;
1344 store
= bfd_make_empty_symbol (abfd
);
1346 bfd_fatal (bfd_get_filename (abfd
));
1348 from
= (bfd_byte
*) minisyms
;
1349 fromend
= from
+ symcount
* size
;
1350 for (; from
< fromend
; from
+= size
)
1353 const char *symbol_name
;
1355 sym
= bfd_minisymbol_to_symbol (abfd
, FALSE
, from
, store
);
1357 bfd_fatal (bfd_get_filename (abfd
));
1359 symbol_name
= bfd_asymbol_name (sym
);
1360 if (bfd_get_symbol_leading_char (abfd
) == symbol_name
[0])
1363 def_exports (xstrdup (symbol_name
) , 0, -1, 0, 0,
1364 ! (sym
->flags
& BSF_FUNCTION
));
1366 if (add_stdcall_alias
&& strchr (symbol_name
, '@'))
1368 int lead_at
= (*symbol_name
== '@');
1369 char *exported_name
= xstrdup (symbol_name
+ lead_at
);
1370 char *atsym
= strchr (exported_name
, '@');
1372 /* Note: stdcall alias symbols can never be data. */
1373 def_exports (exported_name
, xstrdup (symbol_name
), -1, 0, 0, 0);
1378 /* Add a list of symbols to exclude. */
1381 add_excludes (new_excludes
)
1382 const char *new_excludes
;
1385 char *exclude_string
;
1387 local_copy
= xstrdup (new_excludes
);
1389 exclude_string
= strtok (local_copy
, ",:");
1390 for (; exclude_string
; exclude_string
= strtok (NULL
, ",:"))
1392 struct string_list
*new_exclude
;
1394 new_exclude
= ((struct string_list
*)
1395 xmalloc (sizeof (struct string_list
)));
1396 new_exclude
->string
= (char *) xmalloc (strlen (exclude_string
) + 2);
1397 /* Don't add a leading underscore for fastcall symbols. */
1398 if (*exclude_string
== '@')
1399 sprintf (new_exclude
->string
, "%s", exclude_string
);
1401 sprintf (new_exclude
->string
, "_%s", exclude_string
);
1402 new_exclude
->next
= excludes
;
1403 excludes
= new_exclude
;
1405 /* xgettext:c-format */
1406 inform (_("Excluding symbol: %s"), exclude_string
);
1412 /* See if STRING is on the list of symbols to exclude. */
1415 match_exclude (string
)
1418 struct string_list
*excl_item
;
1420 for (excl_item
= excludes
; excl_item
; excl_item
= excl_item
->next
)
1421 if (strcmp (string
, excl_item
->string
) == 0)
1426 /* Add the default list of symbols to exclude. */
1429 set_default_excludes (void)
1431 add_excludes (default_excludes
);
1434 /* Choose which symbols to export. */
1437 filter_symbols (abfd
, minisyms
, symcount
, size
)
1443 bfd_byte
*from
, *fromend
, *to
;
1446 store
= bfd_make_empty_symbol (abfd
);
1448 bfd_fatal (bfd_get_filename (abfd
));
1450 from
= (bfd_byte
*) minisyms
;
1451 fromend
= from
+ symcount
* size
;
1452 to
= (bfd_byte
*) minisyms
;
1454 for (; from
< fromend
; from
+= size
)
1459 sym
= bfd_minisymbol_to_symbol (abfd
, FALSE
, (const PTR
) from
, store
);
1461 bfd_fatal (bfd_get_filename (abfd
));
1463 /* Check for external and defined only symbols. */
1464 keep
= (((sym
->flags
& BSF_GLOBAL
) != 0
1465 || (sym
->flags
& BSF_WEAK
) != 0
1466 || bfd_is_com_section (sym
->section
))
1467 && ! bfd_is_und_section (sym
->section
));
1469 keep
= keep
&& ! match_exclude (sym
->name
);
1473 memcpy (to
, from
, size
);
1478 return (to
- (bfd_byte
*) minisyms
) / size
;
1481 /* Export all symbols in ABFD, except for ones we were told not to
1485 scan_all_symbols (abfd
)
1492 /* Ignore bfds with an import descriptor table. We assume that any
1493 such BFD contains symbols which are exported from another DLL,
1494 and we don't want to reexport them from here. */
1495 if (bfd_get_section_by_name (abfd
, ".idata$4"))
1498 if (! (bfd_get_file_flags (abfd
) & HAS_SYMS
))
1500 /* xgettext:c-format */
1501 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1505 symcount
= bfd_read_minisymbols (abfd
, FALSE
, &minisyms
, &size
);
1507 bfd_fatal (bfd_get_filename (abfd
));
1511 /* xgettext:c-format */
1512 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd
));
1516 /* Discard the symbols we don't want to export. It's OK to do this
1517 in place; we'll free the storage anyway. */
1519 symcount
= filter_symbols (abfd
, minisyms
, symcount
, size
);
1520 scan_filtered_symbols (abfd
, minisyms
, symcount
, size
);
1525 /* Look at the object file to decide which symbols to export. */
1528 scan_open_obj_file (abfd
)
1531 if (export_all_symbols
)
1532 scan_all_symbols (abfd
);
1534 scan_drectve_symbols (abfd
);
1536 /* FIXME: we ought to read in and block out the base relocations. */
1538 /* xgettext:c-format */
1539 inform (_("Done reading %s"), bfd_get_filename (abfd
));
1543 scan_obj_file (filename
)
1544 const char *filename
;
1546 bfd
* f
= bfd_openr (filename
, 0);
1549 /* xgettext:c-format */
1550 fatal (_("Unable to open object file: %s"), filename
);
1552 /* xgettext:c-format */
1553 inform (_("Scanning object file %s"), filename
);
1555 if (bfd_check_format (f
, bfd_archive
))
1557 bfd
*arfile
= bfd_openr_next_archived_file (f
, 0);
1560 if (bfd_check_format (arfile
, bfd_object
))
1561 scan_open_obj_file (arfile
);
1563 arfile
= bfd_openr_next_archived_file (f
, arfile
);
1566 #ifdef DLLTOOL_MCORE_ELF
1567 if (mcore_elf_out_file
)
1568 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename
);
1571 else if (bfd_check_format (f
, bfd_object
))
1573 scan_open_obj_file (f
);
1575 #ifdef DLLTOOL_MCORE_ELF
1576 if (mcore_elf_out_file
)
1577 mcore_elf_cache_filename ((char *) filename
);
1584 /**********************************************************************/
1592 fprintf (f
, "%s ", ASM_C
);
1593 for (i
= 0; oav
[i
]; i
++)
1594 fprintf (f
, "%s ", oav
[i
]);
1596 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1598 fprintf (f
, "%s %d = %s %s @ %d %s%s%s\n",
1604 exp
->noname
? "NONAME " : "",
1605 exp
->constant
? "CONSTANT" : "",
1606 exp
->data
? "DATA" : "");
1610 /* Generate the .exp file. */
1617 return *(const long *) a
- *(const long *) b
;
1621 flush_page (f
, need
, page_addr
, on_page
)
1629 /* Flush this page. */
1630 fprintf (f
, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1634 fprintf (f
, "\t%s\t0x%x\t%s Size of block\n",
1636 (on_page
* 2) + (on_page
& 1) * 2 + 8,
1639 for (i
= 0; i
< on_page
; i
++)
1641 long needed
= need
[i
];
1644 needed
= ((needed
- page_addr
) | 0x3000) & 0xffff;
1646 fprintf (f
, "\t%s\t0x%lx\n", ASM_SHORT
, needed
);
1651 fprintf (f
, "\t%s\t0x%x\n", ASM_SHORT
, 0 | 0x0000);
1660 inform (_("Adding exports to output file"));
1662 fprintf (output_def
, ";");
1663 for (i
= 0; oav
[i
]; i
++)
1664 fprintf (output_def
, " %s", oav
[i
]);
1666 fprintf (output_def
, "\nEXPORTS\n");
1668 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1670 char *quote
= strchr (exp
->name
, '.') ? "\"" : "";
1671 char *res
= cplus_demangle (exp
->internal_name
, DMGL_ANSI
| DMGL_PARAMS
);
1675 fprintf (output_def
,";\t%s\n", res
);
1679 if (strcmp (exp
->name
, exp
->internal_name
) == 0)
1682 fprintf (output_def
, "\t%s%s%s @ %d%s%s\n",
1687 exp
->noname
? " NONAME" : "",
1688 exp
->data
? " DATA" : "");
1692 char *quote1
= strchr (exp
->internal_name
, '.') ? "\"" : "";
1694 fprintf (output_def
, "\t%s%s%s = %s%s%s @ %d%s%s\n",
1702 exp
->noname
? " NONAME" : "",
1703 exp
->data
? " DATA" : "");
1707 inform (_("Added exports to output file"));
1710 /* generate_idata_ofile generates the portable assembly source code
1711 for the idata sections. It appends the source code to the end of
1715 generate_idata_ofile (filvar
)
1724 if (import_list
== NULL
)
1727 fprintf (filvar
, "%s Import data sections\n", ASM_C
);
1728 fprintf (filvar
, "\n\t.section\t.idata$2\n");
1729 fprintf (filvar
, "\t%s\tdoi_idata\n", ASM_GLOBAL
);
1730 fprintf (filvar
, "doi_idata:\n");
1733 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1735 fprintf (filvar
, "\t%slistone%d%s\t%s %s\n",
1736 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
,
1737 ASM_C
, headptr
->dllname
);
1738 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1739 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1740 fprintf (filvar
, "\t%sdllname%d%s\n",
1741 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1742 fprintf (filvar
, "\t%slisttwo%d%s\n\n",
1743 ASM_RVA_BEFORE
, nheads
, ASM_RVA_AFTER
);
1747 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL record at */
1748 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* end of idata$2 */
1749 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* section */
1750 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1751 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
);
1753 fprintf (filvar
, "\n\t.section\t.idata$4\n");
1755 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1757 fprintf (filvar
, "listone%d:\n", headindex
);
1758 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1759 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1760 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1761 fprintf (filvar
,"\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1765 fprintf (filvar
, "\n\t.section\t.idata$5\n");
1767 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1769 fprintf (filvar
, "listtwo%d:\n", headindex
);
1770 for ( funcindex
= 0; funcindex
< headptr
->nfuncs
; funcindex
++ )
1771 fprintf (filvar
, "\t%sfuncptr%d_%d%s\n",
1772 ASM_RVA_BEFORE
, headindex
, funcindex
, ASM_RVA_AFTER
);
1773 fprintf (filvar
, "\t%s\t0\n", ASM_LONG
); /* NULL terminating list */
1777 fprintf (filvar
, "\n\t.section\t.idata$6\n");
1779 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1782 for (funcptr
= headptr
->funchead
; funcptr
!= NULL
;
1783 funcptr
= funcptr
->next
)
1785 fprintf (filvar
,"funcptr%d_%d:\n", headindex
, funcindex
);
1786 fprintf (filvar
,"\t%s\t%d\n", ASM_SHORT
,
1787 ((funcptr
->ord
) & 0xFFFF));
1788 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, funcptr
->name
);
1789 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1795 fprintf (filvar
, "\n\t.section\t.idata$7\n");
1797 for (headptr
= import_list
; headptr
!= NULL
; headptr
= headptr
->next
)
1799 fprintf (filvar
,"dllname%d:\n", headindex
);
1800 fprintf (filvar
,"\t%s\t\"%s\"\n", ASM_TEXT
, headptr
->dllname
);
1801 fprintf (filvar
,"\t%s\t0\n", ASM_BYTE
);
1806 /* Assemble the specified file. */
1808 assemble_file (source
, dest
)
1809 const char * source
;
1814 cmd
= (char *) alloca (strlen (ASM_SWITCHES
) + strlen (as_flags
)
1815 + strlen (source
) + strlen (dest
) + 50);
1817 sprintf (cmd
, "%s %s -o %s %s", ASM_SWITCHES
, as_flags
, dest
, source
);
1830 /* xgettext:c-format */
1831 inform (_("Generating export file: %s"), exp_name
);
1833 f
= fopen (TMP_ASM
, FOPEN_WT
);
1835 /* xgettext:c-format */
1836 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM
);
1838 /* xgettext:c-format */
1839 inform (_("Opened temporary file: %s"), TMP_ASM
);
1845 fprintf (f
, "\t.section .edata\n\n");
1846 fprintf (f
, "\t%s 0 %s Allways 0\n", ASM_LONG
, ASM_C
);
1847 fprintf (f
, "\t%s 0x%lx %s Time and date\n", ASM_LONG
, (long) time(0),
1849 fprintf (f
, "\t%s 0 %s Major and Minor version\n", ASM_LONG
, ASM_C
);
1850 fprintf (f
, "\t%sname%s %s Ptr to name of dll\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1851 fprintf (f
, "\t%s %d %s Starting ordinal of exports\n", ASM_LONG
, d_low_ord
, ASM_C
);
1854 fprintf (f
, "\t%s %d %s Number of functions\n", ASM_LONG
, d_high_ord
- d_low_ord
+ 1, ASM_C
);
1855 fprintf(f
,"\t%s named funcs %d, low ord %d, high ord %d\n",
1857 d_named_nfuncs
, d_low_ord
, d_high_ord
);
1858 fprintf (f
, "\t%s %d %s Number of names\n", ASM_LONG
,
1859 show_allnames
? d_high_ord
- d_low_ord
+ 1 : d_named_nfuncs
, ASM_C
);
1860 fprintf (f
, "\t%safuncs%s %s Address of functions\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1862 fprintf (f
, "\t%sanames%s %s Address of Name Pointer Table\n",
1863 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1865 fprintf (f
, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
1867 fprintf (f
, "name: %s \"%s\"\n", ASM_TEXT
, dll_name
);
1870 fprintf(f
,"%s Export address Table\n", ASM_C
);
1871 fprintf(f
,"\t%s\n", ASM_ALIGN_LONG
);
1872 fprintf (f
, "afuncs:\n");
1875 for (exp
= d_exports
; exp
; exp
= exp
->next
)
1877 if (exp
->ordinal
!= i
)
1880 fprintf (f
, "\t%s\t%d\t%s %d..%d missing\n",
1882 (exp
->ordinal
- i
) * 4,
1884 i
, exp
->ordinal
- 1);
1887 while (i
< exp
->ordinal
)
1889 fprintf(f
,"\t%s\t0\n", ASM_LONG
);
1894 if (exp
->forward
== 0)
1896 if (exp
->internal_name
[0] == '@')
1897 fprintf (f
, "\t%s%s%s\t%s %d\n", ASM_RVA_BEFORE
,
1898 exp
->internal_name
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1900 fprintf (f
, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE
,
1902 exp
->internal_name
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1905 fprintf (f
, "\t%sf%d%s\t%s %d\n", ASM_RVA_BEFORE
,
1906 exp
->forward
, ASM_RVA_AFTER
, ASM_C
, exp
->ordinal
);
1910 fprintf (f
,"%s Export Name Pointer Table\n", ASM_C
);
1911 fprintf (f
, "anames:\n");
1913 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1915 if (!exp
->noname
|| show_allnames
)
1916 fprintf (f
, "\t%sn%d%s\n",
1917 ASM_RVA_BEFORE
, exp
->ordinal
, ASM_RVA_AFTER
);
1920 fprintf (f
,"%s Export Oridinal Table\n", ASM_C
);
1921 fprintf (f
, "anords:\n");
1922 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1924 if (!exp
->noname
|| show_allnames
)
1925 fprintf (f
, "\t%s %d\n", ASM_SHORT
, exp
->ordinal
- d_low_ord
);
1928 fprintf(f
,"%s Export Name Table\n", ASM_C
);
1929 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
1930 if (!exp
->noname
|| show_allnames
)
1932 fprintf (f
, "n%d: %s \"%s\"\n",
1933 exp
->ordinal
, ASM_TEXT
, xlate (exp
->name
));
1934 if (exp
->forward
!= 0)
1935 fprintf (f
, "f%d: %s \"%s\"\n",
1936 exp
->forward
, ASM_TEXT
, exp
->internal_name
);
1941 fprintf (f
, "\t.section %s\n", DRECTVE_SECTION_NAME
);
1942 for (dl
= a_list
; dl
; dl
= dl
->next
)
1944 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, dl
->text
);
1950 fprintf (f
, "\t.section .rdata\n");
1951 for (dl
= d_list
; dl
; dl
= dl
->next
)
1956 /* We don't output as ascii because there can
1957 be quote characters in the string. */
1959 for (p
= dl
->text
; *p
; p
++)
1962 fprintf (f
, "\t%s\t", ASM_BYTE
);
1965 fprintf (f
, "%d", *p
);
1968 fprintf (f
, ",0\n");
1982 /* Add to the output file a way of getting to the exported names
1983 without using the import library. */
1986 fprintf (f
, "\t.section\t.rdata\n");
1987 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
1988 if (!exp
->noname
|| show_allnames
)
1990 /* We use a single underscore for MS compatibility, and a
1991 double underscore for backward compatibility with old
1993 if (create_compat_implib
)
1994 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
1995 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
1996 if (create_compat_implib
)
1997 fprintf (f
, "__imp_%s:\n", exp
->name
);
1998 fprintf (f
, "_imp__%s:\n", exp
->name
);
1999 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, exp
->name
);
2003 /* Dump the reloc section if a base file is provided. */
2007 long need
[PAGE_SIZE
];
2014 fprintf (f
, "\t.section\t.init\n");
2015 fprintf (f
, "lab:\n");
2017 fseek (base_file
, 0, SEEK_END
);
2018 numbytes
= ftell (base_file
);
2019 fseek (base_file
, 0, SEEK_SET
);
2020 copy
= xmalloc (numbytes
);
2021 fread (copy
, 1, numbytes
, base_file
);
2022 num_entries
= numbytes
/ sizeof (long);
2025 fprintf (f
, "\t.section\t.reloc\n");
2031 qsort (copy
, num_entries
, sizeof (long), sfunc
);
2032 /* Delete duplcates */
2033 for (src
= 0; src
< num_entries
; src
++)
2035 if (last
!= copy
[src
])
2036 last
= copy
[dst
++] = copy
[src
];
2040 page_addr
= addr
& PAGE_MASK
; /* work out the page addr */
2042 for (j
= 0; j
< num_entries
; j
++)
2045 if ((addr
& PAGE_MASK
) != page_addr
)
2047 flush_page (f
, need
, page_addr
, on_page
);
2049 page_addr
= addr
& PAGE_MASK
;
2051 need
[on_page
++] = addr
;
2053 flush_page (f
, need
, page_addr
, on_page
);
2055 /* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
2059 generate_idata_ofile (f
);
2063 /* Assemble the file. */
2064 assemble_file (TMP_ASM
, exp_name
);
2066 if (dontdeltemps
== 0)
2069 inform (_("Generated exports file"));
2076 int lead_at
= (*name
== '@');
2078 if (add_underscore
&& !lead_at
)
2080 char *copy
= xmalloc (strlen (name
) + 2);
2083 strcpy (copy
+ 1, name
);
2092 p
= strchr (name
, '@');
2099 /**********************************************************************/
2108 if (exp
->noname
&& !show_allnames
)
2110 fprintf (f
, "\t%s\t0x%08x\n",
2112 exp
->ordinal
| 0x80000000); /* hint or orindal ?? */
2116 fprintf (f
, "\t%sID%d%s\n", ASM_RVA_BEFORE
,
2134 unsigned char *data
;
2149 #define TEXT_SEC_FLAGS \
2150 (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS)
2151 #define DATA_SEC_FLAGS (SEC_ALLOC | SEC_LOAD | SEC_DATA)
2152 #define BSS_SEC_FLAGS SEC_ALLOC
2154 #define INIT_SEC_DATA(id, name, flags, align) \
2155 { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
2156 static sinfo secdata
[NSECS
] =
2158 INIT_SEC_DATA (TEXT
, ".text", TEXT_SEC_FLAGS
, 2),
2159 INIT_SEC_DATA (DATA
, ".data", DATA_SEC_FLAGS
, 2),
2160 INIT_SEC_DATA (BSS
, ".bss", BSS_SEC_FLAGS
, 2),
2161 INIT_SEC_DATA (IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2),
2162 INIT_SEC_DATA (IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2),
2163 INIT_SEC_DATA (IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2),
2164 INIT_SEC_DATA (IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1)
2169 /* Sections numbered to make the order the same as other PowerPC NT
2170 compilers. This also keeps funny alignment thingies from happening. */
2183 static sinfo secdata
[NSECS
] =
2185 { TEXT
, ".text", SEC_CODE
| SEC_HAS_CONTENTS
, 3},
2186 { PDATA
, ".pdata", SEC_HAS_CONTENTS
, 2},
2187 { RDATA
, ".reldata", SEC_HAS_CONTENTS
, 2},
2188 { IDATA5
, ".idata$5", SEC_HAS_CONTENTS
, 2},
2189 { IDATA4
, ".idata$4", SEC_HAS_CONTENTS
, 2},
2190 { IDATA6
, ".idata$6", SEC_HAS_CONTENTS
, 1},
2191 { IDATA7
, ".idata$7", SEC_HAS_CONTENTS
, 2},
2192 { DATA
, ".data", SEC_DATA
, 2},
2193 { BSS
, ".bss", 0, 2}
2198 /* This is what we're trying to make. We generate the imp symbols with
2199 both single and double underscores, for compatibility.
2202 .global _GetFileVersionInfoSizeW@8
2203 .global __imp_GetFileVersionInfoSizeW@8
2204 _GetFileVersionInfoSizeW@8:
2205 jmp * __imp_GetFileVersionInfoSizeW@8
2206 .section .idata$7 # To force loading of head
2207 .long __version_a_head
2208 # Import Address Table
2210 __imp_GetFileVersionInfoSizeW@8:
2213 # Import Lookup Table
2219 .asciz "GetFileVersionInfoSizeW"
2222 For the PowerPC, here's the variation on the above scheme:
2224 # Rather than a simple "jmp *", the code to get to the dll function
2227 lwz r11,[tocv]__imp_function_name(r2)
2228 # RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2236 make_label (prefix
, name
)
2240 int len
= strlen (ASM_PREFIX
) + strlen (prefix
) + strlen (name
);
2241 char *copy
= xmalloc (len
+1 );
2243 strcpy (copy
, ASM_PREFIX
);
2244 strcat (copy
, prefix
);
2245 strcat (copy
, name
);
2250 make_imp_label (prefix
, name
)
2259 len
= strlen (prefix
) + strlen (name
);
2260 copy
= xmalloc (len
+ 1);
2261 strcpy (copy
, prefix
);
2262 strcat (copy
, name
);
2266 len
= strlen (ASM_PREFIX
) + strlen (prefix
) + strlen (name
);
2267 copy
= xmalloc (len
+ 1);
2268 strcpy (copy
, prefix
);
2269 strcat (copy
, ASM_PREFIX
);
2270 strcat (copy
, name
);
2276 make_one_lib_file (exp
, i
)
2284 const char *prefix
= "d";
2287 name
= (char *) alloca (strlen (prefix
) + 10);
2288 sprintf (name
, "%ss%05d.s", prefix
, i
);
2289 f
= fopen (name
, FOPEN_WT
);
2290 fprintf (f
, "\t.text\n");
2291 fprintf (f
, "\t%s\t%s%s\n", ASM_GLOBAL
, ASM_PREFIX
, exp
->name
);
2292 if (create_compat_implib
)
2293 fprintf (f
, "\t%s\t__imp_%s\n", ASM_GLOBAL
, exp
->name
);
2294 fprintf (f
, "\t%s\t_imp__%s\n", ASM_GLOBAL
, exp
->name
);
2295 if (create_compat_implib
)
2296 fprintf (f
, "%s%s:\n\t%s\t__imp_%s\n", ASM_PREFIX
,
2297 exp
->name
, ASM_JUMP
, exp
->name
);
2299 fprintf (f
, "\t.section\t.idata$7\t%s To force loading of head\n", ASM_C
);
2300 fprintf (f
, "\t%s\t%s\n", ASM_LONG
, head_label
);
2303 fprintf (f
,"%s Import Address Table\n", ASM_C
);
2305 fprintf (f
, "\t.section .idata$5\n");
2306 if (create_compat_implib
)
2307 fprintf (f
, "__imp_%s:\n", exp
->name
);
2308 fprintf (f
, "_imp__%s:\n", exp
->name
);
2312 fprintf (f
, "\n%s Import Lookup Table\n", ASM_C
);
2313 fprintf (f
, "\t.section .idata$4\n");
2317 if(!exp
->noname
|| show_allnames
)
2319 fprintf (f
, "%s Hint/Name table\n", ASM_C
);
2320 fprintf (f
, "\t.section .idata$6\n");
2321 fprintf (f
, "ID%d:\t%s\t%d\n", exp
->ordinal
, ASM_SHORT
, exp
->hint
);
2322 fprintf (f
, "\t%s\t\"%s\"\n", ASM_TEXT
, xlate (exp
->name
));
2327 dest
= (char *) alloca (strlen (prefix
) + 10);
2328 sprintf (dest
, "%ss%05d.o", prefix
, i
);
2329 assemble_file (name
, dest
);
2334 asymbol
* exp_label
;
2335 asymbol
* iname
= 0;
2337 asymbol
* iname_lab
;
2338 asymbol
** iname_lab_pp
;
2339 asymbol
** iname_pp
;
2348 asymbol
* ptrs
[NSECS
+ 4 + EXTRA
+ 1];
2349 flagword applicable
;
2351 char * outname
= xmalloc (10);
2355 sprintf (outname
, "%s%05d.o", TMP_STUB
, i
);
2357 abfd
= bfd_openw (outname
, HOW_BFD_WRITE_TARGET
);
2360 /* xgettext:c-format */
2361 fatal (_("bfd_open failed open stub file: %s"), outname
);
2363 /* xgettext:c-format */
2364 inform (_("Creating stub file: %s"), outname
);
2366 bfd_set_format (abfd
, bfd_object
);
2367 bfd_set_arch_mach (abfd
, HOW_BFD_ARCH
, 0);
2370 if (machine
== MARM_INTERWORK
|| machine
== MTHUMB
)
2371 bfd_set_private_flags (abfd
, F_INTERWORK
);
2374 applicable
= bfd_applicable_section_flags (abfd
);
2376 /* First make symbols for the sections. */
2377 for (i
= 0; i
< NSECS
; i
++)
2379 sinfo
*si
= secdata
+ i
;
2382 si
->sec
= bfd_make_section_old_way (abfd
, si
->name
);
2383 bfd_set_section_flags (abfd
,
2385 si
->flags
& applicable
);
2387 bfd_set_section_alignment(abfd
, si
->sec
, si
->align
);
2388 si
->sec
->output_section
= si
->sec
;
2389 si
->sym
= bfd_make_empty_symbol(abfd
);
2390 si
->sym
->name
= si
->sec
->name
;
2391 si
->sym
->section
= si
->sec
;
2392 si
->sym
->flags
= BSF_LOCAL
;
2394 ptrs
[oidx
] = si
->sym
;
2395 si
->sympp
= ptrs
+ oidx
;
2404 exp_label
= bfd_make_empty_symbol (abfd
);
2405 exp_label
->name
= make_imp_label ("", exp
->name
);
2407 /* On PowerPC, the function name points to a descriptor in
2408 the rdata section, the first element of which is a
2409 pointer to the code (..function_name), and the second
2410 points to the .toc. */
2412 if (machine
== MPPC
)
2413 exp_label
->section
= secdata
[RDATA
].sec
;
2416 exp_label
->section
= secdata
[TEXT
].sec
;
2418 exp_label
->flags
= BSF_GLOBAL
;
2419 exp_label
->value
= 0;
2422 if (machine
== MTHUMB
)
2423 bfd_coff_set_symbol_class (abfd
, exp_label
, C_THUMBEXTFUNC
);
2425 ptrs
[oidx
++] = exp_label
;
2428 /* Generate imp symbols with one underscore for Microsoft
2429 compatibility, and with two underscores for backward
2430 compatibility with old versions of cygwin. */
2431 if (create_compat_implib
)
2433 iname
= bfd_make_empty_symbol (abfd
);
2434 iname
->name
= make_imp_label ("___imp", exp
->name
);
2435 iname
->section
= secdata
[IDATA5
].sec
;
2436 iname
->flags
= BSF_GLOBAL
;
2440 iname2
= bfd_make_empty_symbol (abfd
);
2441 iname2
->name
= make_imp_label ("__imp_", exp
->name
);
2442 iname2
->section
= secdata
[IDATA5
].sec
;
2443 iname2
->flags
= BSF_GLOBAL
;
2446 iname_lab
= bfd_make_empty_symbol(abfd
);
2448 iname_lab
->name
= head_label
;
2449 iname_lab
->section
= (asection
*)&bfd_und_section
;
2450 iname_lab
->flags
= 0;
2451 iname_lab
->value
= 0;
2453 iname_pp
= ptrs
+ oidx
;
2454 if (create_compat_implib
)
2455 ptrs
[oidx
++] = iname
;
2456 ptrs
[oidx
++] = iname2
;
2458 iname_lab_pp
= ptrs
+ oidx
;
2459 ptrs
[oidx
++] = iname_lab
;
2462 /* The symbol refering to the code (.text). */
2464 asymbol
*function_name
;
2466 function_name
= bfd_make_empty_symbol(abfd
);
2467 function_name
->name
= make_label ("..", exp
->name
);
2468 function_name
->section
= secdata
[TEXT
].sec
;
2469 function_name
->flags
= BSF_GLOBAL
;
2470 function_name
->value
= 0;
2472 fn_pp
= ptrs
+ oidx
;
2473 ptrs
[oidx
++] = function_name
;
2476 /* The .toc symbol. */
2478 asymbol
*toc_symbol
;
2480 toc_symbol
= bfd_make_empty_symbol (abfd
);
2481 toc_symbol
->name
= make_label (".", "toc");
2482 toc_symbol
->section
= (asection
*)&bfd_und_section
;
2483 toc_symbol
->flags
= BSF_GLOBAL
;
2484 toc_symbol
->value
= 0;
2486 toc_pp
= ptrs
+ oidx
;
2487 ptrs
[oidx
++] = toc_symbol
;
2493 for (i
= 0; i
< NSECS
; i
++)
2495 sinfo
*si
= secdata
+ i
;
2496 asection
*sec
= si
->sec
;
2505 si
->size
= HOW_JTAB_SIZE
;
2506 si
->data
= xmalloc (HOW_JTAB_SIZE
);
2507 memcpy (si
->data
, HOW_JTAB
, HOW_JTAB_SIZE
);
2509 /* add the reloc into idata$5 */
2510 rel
= xmalloc (sizeof (arelent
));
2512 rpp
= xmalloc (sizeof (arelent
*) * 2);
2516 rel
->address
= HOW_JTAB_ROFF
;
2519 if (machine
== MPPC
)
2521 rel
->howto
= bfd_reloc_type_lookup (abfd
,
2522 BFD_RELOC_16_GOTOFF
);
2523 rel
->sym_ptr_ptr
= iname_pp
;
2527 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2528 rel
->sym_ptr_ptr
= secdata
[IDATA5
].sympp
;
2530 sec
->orelocation
= rpp
;
2531 sec
->reloc_count
= 1;
2536 /* An idata$4 or idata$5 is one word long, and has an
2539 si
->data
= xmalloc (4);
2544 si
->data
[0] = exp
->ordinal
;
2545 si
->data
[1] = exp
->ordinal
>> 8;
2546 si
->data
[2] = exp
->ordinal
>> 16;
2551 sec
->reloc_count
= 1;
2552 memset (si
->data
, 0, si
->size
);
2553 rel
= xmalloc (sizeof (arelent
));
2554 rpp
= xmalloc (sizeof (arelent
*) * 2);
2559 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2560 rel
->sym_ptr_ptr
= secdata
[IDATA6
].sympp
;
2561 sec
->orelocation
= rpp
;
2569 /* This used to add 1 to exp->hint. I don't know
2570 why it did that, and it does not match what I see
2571 in programs compiled with the MS tools. */
2572 int idx
= exp
->hint
;
2573 si
->size
= strlen (xlate (exp
->name
)) + 3;
2574 si
->data
= xmalloc (si
->size
);
2575 si
->data
[0] = idx
& 0xff;
2576 si
->data
[1] = idx
>> 8;
2577 strcpy (si
->data
+ 2, xlate (exp
->name
));
2582 si
->data
=xmalloc (4);
2583 memset (si
->data
, 0, si
->size
);
2584 rel
= xmalloc (sizeof (arelent
));
2585 rpp
= xmalloc (sizeof (arelent
*) * 2);
2589 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_RVA
);
2590 rel
->sym_ptr_ptr
= iname_lab_pp
;
2591 sec
->orelocation
= rpp
;
2592 sec
->reloc_count
= 1;
2598 /* The .pdata section is 5 words long.
2602 bfd_vma BeginAddress, [0x00]
2604 ExceptionHandler, [0x08]
2606 PrologEndAddress; [0x10]
2609 /* So this pdata section setups up this as a glue linkage to
2610 a dll routine. There are a number of house keeping things
2613 1. In the name of glue trickery, the ADDR32 relocs for 0,
2614 4, and 0x10 are set to point to the same place:
2616 2. There is one more reloc needed in the pdata section.
2617 The actual glue instruction to restore the toc on
2618 return is saved as the offset in an IMGLUE reloc.
2619 So we need a total of four relocs for this section.
2621 3. Lastly, the HandlerData field is set to 0x03, to indicate
2622 that this is a glue routine. */
2623 arelent
*imglue
, *ba_rel
, *ea_rel
, *pea_rel
;
2625 /* Alignment must be set to 2**2 or you get extra stuff. */
2626 bfd_set_section_alignment(abfd
, sec
, 2);
2629 si
->data
= xmalloc (si
->size
);
2630 memset (si
->data
, 0, si
->size
);
2631 rpp
= xmalloc (sizeof (arelent
*) * 5);
2632 rpp
[0] = imglue
= xmalloc (sizeof (arelent
));
2633 rpp
[1] = ba_rel
= xmalloc (sizeof (arelent
));
2634 rpp
[2] = ea_rel
= xmalloc (sizeof (arelent
));
2635 rpp
[3] = pea_rel
= xmalloc (sizeof (arelent
));
2638 /* Stick the toc reload instruction in the glue reloc. */
2639 bfd_put_32(abfd
, ppc_glue_insn
, (char *) &imglue
->address
);
2642 imglue
->howto
= bfd_reloc_type_lookup (abfd
,
2643 BFD_RELOC_32_GOTOFF
);
2644 imglue
->sym_ptr_ptr
= fn_pp
;
2646 ba_rel
->address
= 0;
2648 ba_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2649 ba_rel
->sym_ptr_ptr
= fn_pp
;
2651 bfd_put_32 (abfd
, 0x18, si
->data
+ 0x04);
2652 ea_rel
->address
= 4;
2654 ea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2655 ea_rel
->sym_ptr_ptr
= fn_pp
;
2657 /* Mark it as glue. */
2658 bfd_put_32 (abfd
, 0x03, si
->data
+ 0x0c);
2660 /* Mark the prolog end address. */
2661 bfd_put_32 (abfd
, 0x0D, si
->data
+ 0x10);
2662 pea_rel
->address
= 0x10;
2663 pea_rel
->addend
= 0;
2664 pea_rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2665 pea_rel
->sym_ptr_ptr
= fn_pp
;
2667 sec
->orelocation
= rpp
;
2668 sec
->reloc_count
= 4;
2672 /* Each external function in a PowerPC PE file has a two word
2673 descriptor consisting of:
2674 1. The address of the code.
2675 2. The address of the appropriate .toc
2676 We use relocs to build this. */
2678 si
->data
= xmalloc (8);
2679 memset (si
->data
, 0, si
->size
);
2681 rpp
= xmalloc (sizeof (arelent
*) * 3);
2682 rpp
[0] = rel
= xmalloc (sizeof (arelent
));
2683 rpp
[1] = xmalloc (sizeof (arelent
));
2688 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2689 rel
->sym_ptr_ptr
= fn_pp
;
2695 rel
->howto
= bfd_reloc_type_lookup (abfd
, BFD_RELOC_32
);
2696 rel
->sym_ptr_ptr
= toc_pp
;
2698 sec
->orelocation
= rpp
;
2699 sec
->reloc_count
= 2;
2701 #endif /* DLLTOOL_PPC */
2707 /* Size up all the sections. */
2708 for (i
= 0; i
< NSECS
; i
++)
2710 sinfo
*si
= secdata
+ i
;
2712 bfd_set_section_size (abfd
, si
->sec
, si
->size
);
2713 bfd_set_section_vma (abfd
, si
->sec
, vma
);
2715 /* vma += si->size;*/
2718 /* Write them out. */
2719 for (i
= 0; i
< NSECS
; i
++)
2721 sinfo
*si
= secdata
+ i
;
2723 if (i
== IDATA5
&& no_idata5
)
2726 if (i
== IDATA4
&& no_idata4
)
2729 bfd_set_section_contents (abfd
, si
->sec
,
2734 bfd_set_symtab (abfd
, ptrs
, oidx
);
2736 abfd
= bfd_openr (outname
, HOW_BFD_READ_TARGET
);
2745 FILE *f
= fopen (TMP_HEAD_S
, FOPEN_WT
);
2749 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S
);
2753 fprintf (f
, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C
);
2754 fprintf (f
, "\t.section .idata$2\n");
2756 fprintf(f
,"\t%s\t%s\n", ASM_GLOBAL
,head_label
);
2758 fprintf (f
, "%s:\n", head_label
);
2760 fprintf (f
, "\t%shname%s\t%sPtr to image import by name list\n",
2761 ASM_RVA_BEFORE
, ASM_RVA_AFTER
, ASM_C
);
2763 fprintf (f
, "\t%sthis should be the timestamp, but NT sometimes\n", ASM_C
);
2764 fprintf (f
, "\t%sdoesn't load DLLs when this is set.\n", ASM_C
);
2765 fprintf (f
, "\t%s\t0\t%s loaded time\n", ASM_LONG
, ASM_C
);
2766 fprintf (f
, "\t%s\t0\t%s Forwarder chain\n", ASM_LONG
, ASM_C
);
2767 fprintf (f
, "\t%s__%s_iname%s\t%s imported dll's name\n",
2772 fprintf (f
, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2774 ASM_RVA_AFTER
, ASM_C
);
2776 fprintf (f
, "%sStuff for compatibility\n", ASM_C
);
2780 fprintf (f
, "\t.section\t.idata$5\n");
2781 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2782 fprintf (f
, "fthunk:\n");
2787 fprintf (f
, "\t.section\t.idata$4\n");
2789 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2790 fprintf (f
, "\t.section .idata$4\n");
2791 fprintf (f
, "hname:\n");
2796 assemble_file (TMP_HEAD_S
, TMP_HEAD_O
);
2798 return bfd_openr (TMP_HEAD_O
, HOW_BFD_READ_TARGET
);
2804 FILE *f
= fopen (TMP_TAIL_S
, FOPEN_WT
);
2808 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S
);
2814 fprintf (f
, "\t.section .idata$4\n");
2815 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2820 fprintf (f
, "\t.section .idata$5\n");
2821 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2825 /* Normally, we need to see a null descriptor built in idata$3 to
2826 act as the terminator for the list. The ideal way, I suppose,
2827 would be to mark this section as a comdat type 2 section, so
2828 only one would appear in the final .exe (if our linker supported
2829 comdat, that is) or cause it to be inserted by something else (say
2832 fprintf (f
, "\t.section .idata$3\n");
2833 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2834 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2835 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2836 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2837 fprintf (f
, "\t%s\t0\n", ASM_LONG
);
2841 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
2842 do too. Original, huh? */
2843 fprintf (f
, "\t.section .idata$6\n");
2845 fprintf (f
, "\t.section .idata$7\n");
2848 fprintf (f
, "\t%s\t__%s_iname\n", ASM_GLOBAL
, imp_name_lab
);
2849 fprintf (f
, "__%s_iname:\t%s\t\"%s\"\n",
2850 imp_name_lab
, ASM_TEXT
, dll_name
);
2854 assemble_file (TMP_TAIL_S
, TMP_TAIL_O
);
2856 return bfd_openr (TMP_TAIL_O
, HOW_BFD_READ_TARGET
);
2871 outarch
= bfd_openw (imp_name
, HOW_BFD_WRITE_TARGET
);
2874 /* xgettext:c-format */
2875 fatal (_("Can't open .lib file: %s"), imp_name
);
2877 /* xgettext:c-format */
2878 inform (_("Creating library file: %s"), imp_name
);
2880 bfd_set_format (outarch
, bfd_archive
);
2881 outarch
->has_armap
= 1;
2883 /* Work out a reasonable size of things to put onto one line. */
2884 ar_head
= make_head ();
2885 ar_tail
= make_tail();
2887 if (ar_head
== NULL
|| ar_tail
== NULL
)
2890 for (i
= 0; (exp
= d_exports_lexically
[i
]); i
++)
2892 bfd
*n
= make_one_lib_file (exp
, i
);
2897 /* Now stick them all into the archive. */
2898 ar_head
->next
= head
;
2899 ar_tail
->next
= ar_head
;
2902 if (! bfd_set_archive_head (outarch
, head
))
2903 bfd_fatal ("bfd_set_archive_head");
2905 if (! bfd_close (outarch
))
2906 bfd_fatal (imp_name
);
2908 while (head
!= NULL
)
2910 bfd
*n
= head
->next
;
2915 /* Delete all the temp files. */
2916 if (dontdeltemps
== 0)
2918 unlink (TMP_HEAD_O
);
2919 unlink (TMP_HEAD_S
);
2920 unlink (TMP_TAIL_O
);
2921 unlink (TMP_TAIL_S
);
2924 if (dontdeltemps
< 2)
2928 name
= (char *) alloca (sizeof TMP_STUB
+ 10);
2929 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
2931 sprintf (name
, "%s%05d.o", TMP_STUB
, i
);
2932 if (unlink (name
) < 0)
2933 /* xgettext:c-format */
2934 non_fatal (_("cannot delete %s: %s"), name
, strerror (errno
));
2938 inform (_("Created lib file"));
2941 /**********************************************************************/
2943 /* Run through the information gathered from the .o files and the
2944 .def file and work out the best stuff. */
2950 export_type
*ap
= *(export_type
**) a
;
2951 export_type
*bp
= *(export_type
**) b
;
2952 if (ap
->ordinal
== bp
->ordinal
)
2955 /* Unset ordinals go to the bottom. */
2956 if (ap
->ordinal
== -1)
2958 if (bp
->ordinal
== -1)
2960 return (ap
->ordinal
- bp
->ordinal
);
2968 export_type
*ap
= *(export_type
**) a
;
2969 export_type
*bp
= *(export_type
**) b
;
2971 return (strcmp (ap
->name
, bp
->name
));
2975 remove_null_names (ptr
)
2981 for (dst
= src
= 0; src
< d_nfuncs
; src
++)
2985 ptr
[dst
] = ptr
[src
];
3002 for (i
= 0; i
< d_nfuncs
; i
++)
3006 printf ("%d %s @ %d %s%s%s\n",
3007 i
, ptr
[i
]->name
, ptr
[i
]->ordinal
,
3008 ptr
[i
]->noname
? "NONAME " : "",
3009 ptr
[i
]->constant
? "CONSTANT" : "",
3010 ptr
[i
]->data
? "DATA" : "");
3019 process_duplicates (d_export_vec
)
3020 export_type
**d_export_vec
;
3029 /* Remove duplicates. */
3030 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), nfunc
);
3032 dtab (d_export_vec
);
3033 for (i
= 0; i
< d_nfuncs
- 1; i
++)
3035 if (strcmp (d_export_vec
[i
]->name
,
3036 d_export_vec
[i
+ 1]->name
) == 0)
3039 export_type
*a
= d_export_vec
[i
];
3040 export_type
*b
= d_export_vec
[i
+ 1];
3044 /* xgettext:c-format */
3045 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
3046 a
->name
, a
->ordinal
, b
->ordinal
);
3048 if (a
->ordinal
!= -1
3049 && b
->ordinal
!= -1)
3050 /* xgettext:c-format */
3051 fatal (_("Error, duplicate EXPORT with oridinals: %s"),
3054 /* Merge attributes. */
3055 b
->ordinal
= a
->ordinal
> 0 ? a
->ordinal
: b
->ordinal
;
3056 b
->constant
|= a
->constant
;
3057 b
->noname
|= a
->noname
;
3059 d_export_vec
[i
] = 0;
3062 dtab (d_export_vec
);
3063 remove_null_names (d_export_vec
);
3064 dtab (d_export_vec
);
3069 /* Count the names. */
3070 for (i
= 0; i
< d_nfuncs
; i
++)
3072 if (!d_export_vec
[i
]->noname
)
3078 fill_ordinals (d_export_vec
)
3079 export_type
**d_export_vec
;
3086 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
3088 /* Fill in the unset ordinals with ones from our range. */
3089 ptr
= (char *) xmalloc (size
);
3091 memset (ptr
, 0, size
);
3093 /* Mark in our large vector all the numbers that are taken. */
3094 for (i
= 0; i
< d_nfuncs
; i
++)
3096 if (d_export_vec
[i
]->ordinal
!= -1)
3098 ptr
[d_export_vec
[i
]->ordinal
] = 1;
3100 if (lowest
== -1 || d_export_vec
[i
]->ordinal
< lowest
)
3101 lowest
= d_export_vec
[i
]->ordinal
;
3105 /* Start at 1 for compatibility with MS toolchain. */
3109 /* Now fill in ordinals where the user wants us to choose. */
3110 for (i
= 0; i
< d_nfuncs
; i
++)
3112 if (d_export_vec
[i
]->ordinal
== -1)
3116 /* First try within or after any user supplied range. */
3117 for (j
= lowest
; j
< size
; j
++)
3121 d_export_vec
[i
]->ordinal
= j
;
3125 /* Then try before the range. */
3126 for (j
= lowest
; j
>0; j
--)
3130 d_export_vec
[i
]->ordinal
= j
;
3140 qsort (d_export_vec
, d_nfuncs
, sizeof (export_type
*), pfunc
);
3142 /* Work out the lowest and highest ordinal numbers. */
3145 if (d_export_vec
[0])
3146 d_low_ord
= d_export_vec
[0]->ordinal
;
3147 if (d_export_vec
[d_nfuncs
-1])
3148 d_high_ord
= d_export_vec
[d_nfuncs
-1]->ordinal
;
3157 const export_type
**a
= (const export_type
**) av
;
3158 const export_type
**b
= (const export_type
**) bv
;
3160 return strcmp ((*a
)->name
, (*b
)->name
);
3166 /* First work out the minimum ordinal chosen. */
3171 export_type
**d_export_vec
3172 = (export_type
**) xmalloc (sizeof (export_type
*) * d_nfuncs
);
3174 inform (_("Processing definitions"));
3176 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3177 d_export_vec
[i
] = exp
;
3179 process_duplicates (d_export_vec
);
3180 fill_ordinals (d_export_vec
);
3182 /* Put back the list in the new order. */
3184 for (i
= d_nfuncs
- 1; i
>= 0; i
--)
3186 d_export_vec
[i
]->next
= d_exports
;
3187 d_exports
= d_export_vec
[i
];
3190 /* Build list in alpha order. */
3191 d_exports_lexically
= (export_type
**)
3192 xmalloc (sizeof (export_type
*) * (d_nfuncs
+ 1));
3194 for (i
= 0, exp
= d_exports
; exp
; i
++, exp
= exp
->next
)
3195 d_exports_lexically
[i
] = exp
;
3197 d_exports_lexically
[i
] = 0;
3199 qsort (d_exports_lexically
, i
, sizeof (export_type
*), alphafunc
);
3201 /* Fill exp entries with their hint values. */
3202 for (i
= 0; i
< d_nfuncs
; i
++)
3203 if (!d_exports_lexically
[i
]->noname
|| show_allnames
)
3204 d_exports_lexically
[i
]->hint
= hint
++;
3206 inform (_("Processed definitions"));
3209 /**********************************************************************/
3212 usage (file
, status
)
3216 /* xgetext:c-format */
3217 fprintf (file
, _("Usage %s <option(s)> <object-file(s)>\n"), program_name
);
3218 /* xgetext:c-format */
3219 fprintf (file
, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname
);
3220 fprintf (file
, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
3221 fprintf (file
, _(" -e --output-exp <outname> Generate an export file.\n"));
3222 fprintf (file
, _(" -l --output-lib <outname> Generate an interface library.\n"));
3223 fprintf (file
, _(" -a --add-indirect Add dll indirects to export file.\n"));
3224 fprintf (file
, _(" -D --dllname <name> Name of input dll to put into interface lib.\n"));
3225 fprintf (file
, _(" -d --input-def <deffile> Name of .def file to be read in.\n"));
3226 fprintf (file
, _(" -z --output-def <deffile> Name of .def file to be created.\n"));
3227 fprintf (file
, _(" --export-all-symbols Export all symbols to .def\n"));
3228 fprintf (file
, _(" --no-export-all-symbols Only export listed symbols\n"));
3229 fprintf (file
, _(" --exclude-symbols <list> Don't export <list>\n"));
3230 fprintf (file
, _(" --no-default-excludes Clear default exclude symbols\n"));
3231 fprintf (file
, _(" -b --base-file <basefile> Read linker generated base file.\n"));
3232 fprintf (file
, _(" -x --no-idata4 Don't generate idata$4 section.\n"));
3233 fprintf (file
, _(" -c --no-idata5 Don't generate idata$5 section.\n"));
3234 fprintf (file
, _(" -U --add-underscore Add underscores to symbols in interface library.\n"));
3235 fprintf (file
, _(" -k --kill-at Kill @<n> from exported names.\n"));
3236 fprintf (file
, _(" -A --add-stdcall-alias Add aliases without @<n>.\n"));
3237 fprintf (file
, _(" -S --as <name> Use <name> for assembler.\n"));
3238 fprintf (file
, _(" -f --as-flags <flags> Pass <flags> to the assembler.\n"));
3239 fprintf (file
, _(" -C --compat-implib Create backward compatible import library.\n"));
3240 fprintf (file
, _(" -n --no-delete Keep temp files (repeat for extra preservation).\n"));
3241 fprintf (file
, _(" -v --verbose Be verbose.\n"));
3242 fprintf (file
, _(" -V --version Display the program version.\n"));
3243 fprintf (file
, _(" -h --help Display this information.\n"));
3244 #ifdef DLLTOOL_MCORE_ELF
3245 fprintf (file
, _(" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n"));
3246 fprintf (file
, _(" -L --linker <name> Use <name> as the linker.\n"));
3247 fprintf (file
, _(" -F --linker-flags <flags> Pass <flags> to the linker.\n"));
3252 #define OPTION_EXPORT_ALL_SYMS 150
3253 #define OPTION_NO_EXPORT_ALL_SYMS (OPTION_EXPORT_ALL_SYMS + 1)
3254 #define OPTION_EXCLUDE_SYMS (OPTION_NO_EXPORT_ALL_SYMS + 1)
3255 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_EXCLUDE_SYMS + 1)
3257 static const struct option long_options
[] =
3259 {"no-delete", no_argument
, NULL
, 'n'},
3260 {"dllname", required_argument
, NULL
, 'D'},
3261 {"no-idata4", no_argument
, NULL
, 'x'},
3262 {"no-idata5", no_argument
, NULL
, 'c'},
3263 {"output-exp", required_argument
, NULL
, 'e'},
3264 {"output-def", required_argument
, NULL
, 'z'},
3265 {"export-all-symbols", no_argument
, NULL
, OPTION_EXPORT_ALL_SYMS
},
3266 {"no-export-all-symbols", no_argument
, NULL
, OPTION_NO_EXPORT_ALL_SYMS
},
3267 {"exclude-symbols", required_argument
, NULL
, OPTION_EXCLUDE_SYMS
},
3268 {"no-default-excludes", no_argument
, NULL
, OPTION_NO_DEFAULT_EXCLUDES
},
3269 {"output-lib", required_argument
, NULL
, 'l'},
3270 {"def", required_argument
, NULL
, 'd'}, /* for compatiblity with older versions */
3271 {"input-def", required_argument
, NULL
, 'd'},
3272 {"add-underscore", no_argument
, NULL
, 'U'},
3273 {"kill-at", no_argument
, NULL
, 'k'},
3274 {"add-stdcall-alias", no_argument
, NULL
, 'A'},
3275 {"verbose", no_argument
, NULL
, 'v'},
3276 {"version", no_argument
, NULL
, 'V'},
3277 {"help", no_argument
, NULL
, 'h'},
3278 {"machine", required_argument
, NULL
, 'm'},
3279 {"add-indirect", no_argument
, NULL
, 'a'},
3280 {"base-file", required_argument
, NULL
, 'b'},
3281 {"as", required_argument
, NULL
, 'S'},
3282 {"as-flags", required_argument
, NULL
, 'f'},
3283 {"mcore-elf", required_argument
, NULL
, 'M'},
3284 {"compat-implib", no_argument
, NULL
, 'C'},
3285 {"temp-prefix", required_argument
, NULL
, 't'},
3289 int main
PARAMS ((int, char **));
3299 program_name
= av
[0];
3302 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
3303 setlocale (LC_MESSAGES
, "");
3305 #if defined (HAVE_SETLOCALE)
3306 setlocale (LC_CTYPE
, "");
3308 bindtextdomain (PACKAGE
, LOCALEDIR
);
3309 textdomain (PACKAGE
);
3311 while ((c
= getopt_long (ac
, av
,
3312 #ifdef DLLTOOL_MCORE_ELF
3313 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHhM:L:F:",
3315 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHh",
3322 case OPTION_EXPORT_ALL_SYMS
:
3323 export_all_symbols
= TRUE
;
3325 case OPTION_NO_EXPORT_ALL_SYMS
:
3326 export_all_symbols
= FALSE
;
3328 case OPTION_EXCLUDE_SYMS
:
3329 add_excludes (optarg
);
3331 case OPTION_NO_DEFAULT_EXCLUDES
:
3332 do_default_excludes
= FALSE
;
3344 tmp_prefix
= optarg
;
3350 /* ignored for compatibility */
3357 output_def
= fopen (optarg
, FOPEN_WT
);
3379 print_version (program_name
);
3388 add_stdcall_alias
= 1;
3397 base_file
= fopen (optarg
, FOPEN_RB
);
3400 /* xgettext:c-format */
3401 fatal (_("Unable to open base-file: %s"), optarg
);
3404 #ifdef DLLTOOL_MCORE_ELF
3406 mcore_elf_out_file
= optarg
;
3409 mcore_elf_linker
= optarg
;
3412 mcore_elf_linker_flags
= optarg
;
3416 create_compat_implib
= 1;
3424 for (i
= 0; mtable
[i
].type
; i
++)
3425 if (strcmp (mtable
[i
].type
, mname
) == 0)
3428 if (!mtable
[i
].type
)
3429 /* xgettext:c-format */
3430 fatal (_("Machine '%s' not supported"), mname
);
3434 if (!dll_name
&& exp_name
)
3436 int len
= strlen (exp_name
) + 5;
3437 dll_name
= xmalloc (len
);
3438 strcpy (dll_name
, exp_name
);
3439 strcat (dll_name
, ".dll");
3442 if (as_name
== NULL
)
3443 as_name
= deduce_name ("as");
3445 /* Don't use the default exclude list if we're reading only the
3446 symbols in the .drectve section. The default excludes are meant
3447 to avoid exporting DLL entry point and Cygwin32 impure_ptr. */
3448 if (! export_all_symbols
)
3449 do_default_excludes
= FALSE
;
3451 if (do_default_excludes
)
3452 set_default_excludes ();
3455 process_def_file (def_file
);
3460 firstarg
= av
[optind
];
3461 scan_obj_file (av
[optind
]);
3472 /* Make imp_name safe for use as a label. */
3475 imp_name_lab
= xstrdup (imp_name
);
3476 for (p
= imp_name_lab
; *p
; p
++)
3481 head_label
= make_label("_head_", imp_name_lab
);
3488 #ifdef DLLTOOL_MCORE_ELF
3489 if (mcore_elf_out_file
)
3490 mcore_elf_gen_out_file ();
3496 /* Look for the program formed by concatenating PROG_NAME and the
3497 string running from PREFIX to END_PREFIX. If the concatenated
3498 string contains a '/', try appending EXECUTABLE_SUFFIX if it is
3502 look_for_prog (prog_name
, prefix
, end_prefix
)
3503 const char *prog_name
;
3510 cmd
= xmalloc (strlen (prefix
)
3511 + strlen (prog_name
)
3512 #ifdef HAVE_EXECUTABLE_SUFFIX
3513 + strlen (EXECUTABLE_SUFFIX
)
3516 strcpy (cmd
, prefix
);
3518 sprintf (cmd
+ end_prefix
, "%s", prog_name
);
3520 if (strchr (cmd
, '/') != NULL
)
3524 found
= (stat (cmd
, &s
) == 0
3525 #ifdef HAVE_EXECUTABLE_SUFFIX
3526 || stat (strcat (cmd
, EXECUTABLE_SUFFIX
), &s
) == 0
3532 /* xgettext:c-format */
3533 inform (_("Tried file: %s"), cmd
);
3539 /* xgettext:c-format */
3540 inform (_("Using file: %s"), cmd
);
3545 /* Deduce the name of the program we are want to invoke.
3546 PROG_NAME is the basic name of the program we want to run,
3547 eg "as" or "ld". The catch is that we might want actually
3548 run "i386-pe-as" or "ppc-pe-ld".
3550 If argv[0] contains the full path, then try to find the program
3551 in the same place, with and then without a target-like prefix.
3553 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
3554 deduce_name("as") uses the following search order:
3556 /usr/local/bin/i586-cygwin32-as
3560 If there's an EXECUTABLE_SUFFIX, it'll use that as well; for each
3561 name, it'll try without and then with EXECUTABLE_SUFFIX.
3563 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
3564 as the fallback, but rather return i586-cygwin32-as.
3566 Oh, and given, argv[0] = dlltool, it'll return "as".
3568 Returns a dynamically allocated string. */
3571 deduce_name (prog_name
)
3572 const char *prog_name
;
3575 char *dash
, *slash
, *cp
;
3579 for (cp
= program_name
; *cp
!= '\0'; ++cp
)
3584 #if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
3585 *cp
== ':' || *cp
== '\\' ||
3598 /* First, try looking for a prefixed PROG_NAME in the
3599 PROGRAM_NAME directory, with the same prefix as PROGRAM_NAME. */
3600 cmd
= look_for_prog (prog_name
, program_name
, dash
- program_name
+ 1);
3603 if (slash
!= NULL
&& cmd
== NULL
)
3605 /* Next, try looking for a PROG_NAME in the same directory as
3606 that of this program. */
3607 cmd
= look_for_prog (prog_name
, program_name
, slash
- program_name
+ 1);
3612 /* Just return PROG_NAME as is. */
3613 cmd
= xstrdup (prog_name
);
3619 #ifdef DLLTOOL_MCORE_ELF
3620 typedef struct fname_cache
3623 struct fname_cache
* next
;
3627 static fname_cache fnames
;
3630 mcore_elf_cache_filename (char * filename
)
3636 while (ptr
->next
!= NULL
)
3639 ptr
->filename
= filename
;
3640 ptr
->next
= (fname_cache
*) malloc (sizeof (fname_cache
));
3641 if (ptr
->next
!= NULL
)
3642 ptr
->next
->next
= NULL
;
3645 #define MCORE_ELF_TMP_OBJ "mcoreelf.o"
3646 #define MCORE_ELF_TMP_EXP "mcoreelf.exp"
3647 #define MCORE_ELF_TMP_LIB "mcoreelf.lib"
3650 mcore_elf_gen_out_file (void)
3655 /* Step one. Run 'ld -r' on the input object files in order to resolve
3656 any internal references and to generate a single .exports section. */
3659 ds
= dyn_string_new (100);
3660 dyn_string_append_cstr (ds
, "-r ");
3662 if (mcore_elf_linker_flags
!= NULL
)
3663 dyn_string_append_cstr (ds
, mcore_elf_linker_flags
);
3665 while (ptr
->next
!= NULL
)
3667 dyn_string_append_cstr (ds
, ptr
->filename
);
3668 dyn_string_append_cstr (ds
, " ");
3673 dyn_string_append_cstr (ds
, "-o ");
3674 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3676 if (mcore_elf_linker
== NULL
)
3677 mcore_elf_linker
= deduce_name ("ld");
3679 run (mcore_elf_linker
, ds
->s
);
3681 dyn_string_delete (ds
);
3683 /* Step two. Create a .exp file and a .lib file from the temporary file.
3684 Do this by recursively invoking dlltool... */
3685 ds
= dyn_string_new (100);
3687 dyn_string_append_cstr (ds
, "-S ");
3688 dyn_string_append_cstr (ds
, as_name
);
3690 dyn_string_append_cstr (ds
, " -e ");
3691 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_EXP
);
3692 dyn_string_append_cstr (ds
, " -l ");
3693 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_LIB
);
3694 dyn_string_append_cstr (ds
, " " );
3695 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3698 dyn_string_append_cstr (ds
, " -v");
3702 dyn_string_append_cstr (ds
, " -n");
3704 if (dontdeltemps
> 1)
3705 dyn_string_append_cstr (ds
, " -n");
3708 /* XXX - FIME: ought to check/copy other command line options as well. */
3709 run (program_name
, ds
->s
);
3711 dyn_string_delete (ds
);
3713 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
3714 ds
= dyn_string_new (100);
3716 dyn_string_append_cstr (ds
, "-shared ");
3718 if (mcore_elf_linker_flags
)
3719 dyn_string_append_cstr (ds
, mcore_elf_linker_flags
);
3721 dyn_string_append_cstr (ds
, " ");
3722 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_EXP
);
3723 dyn_string_append_cstr (ds
, " ");
3724 dyn_string_append_cstr (ds
, MCORE_ELF_TMP_OBJ
);
3725 dyn_string_append_cstr (ds
, " -o ");
3726 dyn_string_append_cstr (ds
, mcore_elf_out_file
);
3728 run (mcore_elf_linker
, ds
->s
);
3730 dyn_string_delete (ds
);
3732 if (dontdeltemps
== 0)
3733 unlink (MCORE_ELF_TMP_EXP
);
3735 if (dontdeltemps
< 2)
3736 unlink (MCORE_ELF_TMP_OBJ
);
3738 #endif /* DLLTOOL_MCORE_ELF */