]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/dlltool.c
merge from gcc
[thirdparty/binutils-gdb.git] / binutils / dlltool.c
CommitLineData
252b5132 1/* dlltool.c -- tool to generate stuff for PE style DLLs
f3f7fbb2 2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
8c2bc687 3 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GNU Binutils.
6
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.
11
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.
16
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
20 02111-1307, USA. */
21
22
c9e38879 23/* This program allows you to build the files necessary to create
252b5132
RH
24 DLLs to run on a system which understands PE format image files.
25 (eg, Windows NT)
26
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.
31
32 A DLL contains an export table which contains the information
33 which the runtime loader needs to tie up references from a
34 referencing program.
35
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.
40
41 A DEF file contains any number of the following commands:
42
43
44 NAME <name> [ , <base> ]
45 The result is going to be <name>.EXE
46
47 LIBRARY <name> [ , <base> ]
48 The result is going to be <name>.DLL
49
04847a4d
CF
50 EXPORTS ( ( ( <name1> [ = <name2> ] )
51 | ( <name1> = <module-name> . <external-name>))
52 [ @ <integer> ] [ NONAME ] [CONSTANT] [DATA] ) *
252b5132 53 Declares name1 as an exported symbol from the
04847a4d
CF
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>.
252b5132
RH
57
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.
64
65 DESCRIPTION <string>
66 Puts <string> into output .exp file in the .rdata section
67
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.
72
73 [CODE|DATA] <attr>+
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
78 upon it.
79
80
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>
83 in a .DEF file.
84
85
86
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
89 supplied argument.
90
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.
94
95
96
97 Example:
98
99 file1.c:
100 asm (".section .drectve");
101 asm (".ascii \"-export:adef\"");
102
103 void adef (char * s)
104 {
105 printf ("hello from the dll %s\n", s);
106 }
107
108 void bdef (char * s)
109 {
110 printf ("hello from the dll and the other entry point %s\n", s);
111 }
112
113 file2.c:
114 asm (".section .drectve");
115 asm (".ascii \"-export:cdef\"");
116 asm (".ascii \"-export:ddef\"");
26044998 117
252b5132
RH
118 void cdef (char * s)
119 {
120 printf ("hello from the dll %s\n", s);
121 }
122
123 void ddef (char * s)
124 {
125 printf ("hello from the dll and the other entry point %s\n", s);
126 }
127
661016bb 128 int printf (void)
252b5132
RH
129 {
130 return 9;
131 }
132
661016bb
NC
133 themain.c:
134 int main (void)
252b5132 135 {
661016bb
NC
136 cdef ();
137 return 0;
252b5132
RH
138 }
139
140 thedll.def
141
142 LIBRARY thedll
143 HEAPSIZE 0x40000, 0x2000
144 EXPORTS bdef @ 20
145 cdef @ 30 NONAME
146
147 SECTIONS donkey READ WRITE
148 aardvark EXECUTE
149
6e7d8205 150 # Compile up the parts of the dll and the program
252b5132 151
6e7d8205 152 gcc -c file1.c file2.c themain.c
252b5132 153
6e7d8205
NC
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)
252b5132
RH
157
158 ar qcv thedll.in file1.o file2.o
159 ranlib thedll.in
160
6e7d8205
NC
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).
26044998 164
aff05906 165 dlltool --def thedll.def --output-exp thedll.o --output-lib thedll.a
252b5132 166
aff05906 167 # Build the dll with the library and the export table
26044998 168
252b5132
RH
169 ld -o thedll.dll thedll.o thedll.in
170
6e7d8205 171 # Link the executable with the import library
26044998 172
661016bb 173 gcc -o themain.exe themain.o thedll.a
252b5132 174
aff05906
NC
175 This example can be extended if relocations are needed in the DLL:
176
177 # Compile up the parts of the dll and the program
178
179 gcc -c file1.c file2.c themain.c
180
181 # Run this tool over the DLL's .def file and generate an imports file.
26044998 182
aff05906
NC
183 dlltool --def thedll.def --output-lib thedll.lib
184
185 # Link the executable with the import library and generate a base file
186 # at the same time
26044998 187
aff05906
NC
188 gcc -o themain.exe themain.o thedll.lib -Wl,--base-file -Wl,themain.base
189
190 # Run this tool over the DLL's .def file and generate an exports file
191 # which includes the relocations from the base file.
26044998 192
aff05906
NC
193 dlltool --def thedll.def --base-file themain.base --output-exp thedll.exp
194
195 # Build the dll with file1.o, file2.o and the export table
26044998 196
c9e38879 197 ld -o thedll.dll thedll.exp file1.o file2.o */
252b5132
RH
198
199/* .idata section description
200
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.
204
205 .idata$2 = Import Directory Table
206 = array of IMAGE_IMPORT_DESCRIPTOR's.
207
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
213
214 .idata$3 = null terminating entry for .idata$2.
215
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.
220
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
227 function.
228
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.
232
c9e38879 233 .idata$7 = dll name (eg: "kernel32.dll"). (.idata$6 for ppc). */
252b5132
RH
234
235/* AIX requires this to be the first thing in the file. */
236#ifndef __GNUC__
237# ifdef _AIX
238 #pragma alloca
239#endif
240#endif
241
242#define show_allnames 0
243
244#define PAGE_SIZE 4096
245#define PAGE_MASK (-PAGE_SIZE)
246#include "bfd.h"
247#include "libiberty.h"
248#include "bucomm.h"
249#include "getopt.h"
250#include "demangle.h"
bb0cb4db 251#include "dyn-string.h"
252b5132 252#include "dlltool.h"
3882b010 253#include "safe-ctype.h"
252b5132 254
252b5132 255#include <time.h>
bb0cb4db
ILT
256#include <sys/stat.h>
257
258#ifdef ANSI_PROTOTYPES
252b5132
RH
259#include <stdarg.h>
260#else
261#include <varargs.h>
262#endif
263
264#ifdef DLLTOOL_ARM
265#include "coff/arm.h"
266#include "coff/internal.h"
267#endif
268
49e315b1 269/* Forward references. */
b34976b6
AM
270static char *look_for_prog
271 PARAMS ((const char *, const char *, int));
272static char *deduce_name
273 PARAMS ((const char *));
49e315b1
NC
274
275#ifdef DLLTOOL_MCORE_ELF
b34976b6
AM
276static void mcore_elf_cache_filename
277 PARAMS ((char *));
278static void mcore_elf_gen_out_file
279 PARAMS ((void));
49e315b1 280#endif
26044998 281
252b5132
RH
282#ifdef HAVE_SYS_WAIT_H
283#include <sys/wait.h>
284#else /* ! HAVE_SYS_WAIT_H */
285#if ! defined (_WIN32) || defined (__CYGWIN32__)
286#ifndef WIFEXITED
c9e38879 287#define WIFEXITED(w) (((w) & 0377) == 0)
252b5132
RH
288#endif
289#ifndef WIFSIGNALED
c9e38879 290#define WIFSIGNALED(w) (((w) & 0377) != 0177 && ((w) & ~0377) == 0)
252b5132
RH
291#endif
292#ifndef WTERMSIG
293#define WTERMSIG(w) ((w) & 0177)
294#endif
295#ifndef WEXITSTATUS
296#define WEXITSTATUS(w) (((w) >> 8) & 0377)
297#endif
298#else /* defined (_WIN32) && ! defined (__CYGWIN32__) */
299#ifndef WIFEXITED
300#define WIFEXITED(w) (((w) & 0xff) == 0)
301#endif
302#ifndef WIFSIGNALED
303#define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
304#endif
305#ifndef WTERMSIG
306#define WTERMSIG(w) ((w) & 0x7f)
307#endif
308#ifndef WEXITSTATUS
309#define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
310#endif
311#endif /* defined (_WIN32) && ! defined (__CYGWIN32__) */
312#endif /* ! HAVE_SYS_WAIT_H */
313
314/* ifunc and ihead data structures: ttk@cygnus.com 1997
315
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.
323
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. */
328
329typedef struct ifunct
330{
c9e38879
NC
331 char * name; /* Name of function being imported. */
332 int ord; /* Two-byte ordinal value associated with function. */
252b5132
RH
333 struct ifunct *next;
334} ifunctype;
335
336typedef struct iheadt
337{
c9e38879
NC
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. */
252b5132
RH
343} iheadtype;
344
345/* Structure containing all import information as defined in .def file
346 (qv "ihead structure"). */
347
348static iheadtype *import_list = NULL;
349
49e315b1 350static char *as_name = NULL;
252b5132
RH
351static char * as_flags = "";
352
0e11a9e9
CF
353static char *tmp_prefix = "d";
354
252b5132
RH
355static int no_idata4;
356static int no_idata5;
357static char *exp_name;
358static char *imp_name;
359static char *head_label;
360static char *imp_name_lab;
361static char *dll_name;
362
363static int add_indirect = 0;
364static int add_underscore = 0;
365static int dontdeltemps = 0;
366
b34976b6 367/* TRUE if we should export all symbols. Otherwise, we only export
252b5132 368 symbols listed in .drectve sections or in the def file. */
b34976b6 369static bfd_boolean export_all_symbols;
252b5132 370
b34976b6 371/* TRUE if we should exclude the symbols in DEFAULT_EXCLUDES when
252b5132 372 exporting all symbols. */
b34976b6 373static bfd_boolean do_default_excludes = TRUE;
252b5132
RH
374
375/* Default symbols to exclude when exporting all the symbols. */
376static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr";
377
b34976b6 378/* TRUE if we should add __imp_<SYMBOL> to import libraries for backward
5f0f29c3 379 compatibility to old Cygwin releases. */
b34976b6 380static bfd_boolean create_compat_implib;
5f0f29c3 381
252b5132
RH
382static char *def_file;
383
384extern char * program_name;
385
386static int machine;
387static int killat;
388static int add_stdcall_alias;
389static int verbose;
390static FILE *output_def;
391static FILE *base_file;
392
252b5132 393#ifdef DLLTOOL_ARM
a8c548cb
NC
394#ifdef DLLTOOL_ARM_EPOC
395static const char *mname = "arm-epoc";
396#else
252b5132
RH
397static const char *mname = "arm";
398#endif
a8c548cb 399#endif
252b5132
RH
400
401#ifdef DLLTOOL_I386
402static const char *mname = "i386";
403#endif
404
405#ifdef DLLTOOL_PPC
406static const char *mname = "ppc";
407#endif
408
8a0e0f38
NC
409#ifdef DLLTOOL_SH
410static const char *mname = "sh";
411#endif
412
413#ifdef DLLTOOL_MIPS
414static const char *mname = "mips";
415#endif
416
661016bb 417#ifdef DLLTOOL_MCORE
7e301c9c 418static const char * mname = "mcore-le";
661016bb
NC
419#endif
420
421#ifdef DLLTOOL_MCORE_ELF
422static const char * mname = "mcore-elf";
49e315b1
NC
423static char * mcore_elf_out_file = NULL;
424static char * mcore_elf_linker = NULL;
425static char * mcore_elf_linker_flags = NULL;
426
661016bb
NC
427#define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
428#endif
429
430#ifndef DRECTVE_SECTION_NAME
431#define DRECTVE_SECTION_NAME ".drectve"
432#endif
433
c9e38879 434#define PATHMAX 250 /* What's the right name for this ? */
252b5132 435
0e11a9e9
CF
436char *tmp_asm_buf;
437char *tmp_head_s_buf;
438char *tmp_head_o_buf;
439char *tmp_tail_s_buf;
440char *tmp_tail_o_buf;
441char *tmp_stub_buf;
442
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")
252b5132 449
26044998 450/* This bit of assemly does jmp * .... */
252b5132
RH
451static const unsigned char i386_jtab[] =
452{
453 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
454};
455
456static const unsigned char arm_jtab[] =
457{
b890a735
CM
458 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
459 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
460 0, 0, 0, 0
461};
462
463static const unsigned char arm_interwork_jtab[] =
464{
465 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
466 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
467 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
252b5132
RH
468 0, 0, 0, 0
469};
470
471static const unsigned char thumb_jtab[] =
472{
b890a735
CM
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 */
252b5132
RH
479 0, 0, 0, 0
480};
481
661016bb
NC
482static const unsigned char mcore_be_jtab[] =
483{
ba8c44fc 484 0x71, 0x02, /* lrw r1,2 */
26044998 485 0x81, 0x01, /* ld.w r1,(r1,0) */
ba8c44fc
NC
486 0x00, 0xC1, /* jmp r1 */
487 0x12, 0x00, /* nop */
26044998 488 0x00, 0x00, 0x00, 0x00 /* <address> */
661016bb
NC
489};
490
491static const unsigned char mcore_le_jtab[] =
492{
ba8c44fc 493 0x02, 0x71, /* lrw r1,2 */
26044998 494 0x01, 0x81, /* ld.w r1,(r1,0) */
ba8c44fc
NC
495 0xC1, 0x00, /* jmp r1 */
496 0x00, 0x12, /* nop */
26044998 497 0x00, 0x00, 0x00, 0x00 /* <address> */
661016bb
NC
498};
499
c9e38879
NC
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
504 the glue. */
252b5132
RH
505static const unsigned char ppc_jtab[] =
506{
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 */
514};
515
516#ifdef DLLTOOL_PPC
c9e38879
NC
517/* The glue instruction, picks up the toc from the stw in
518 the above code: "lwz r2,4(r1)". */
252b5132
RH
519static bfd_vma ppc_glue_insn = 0x80410004;
520#endif
521
252b5132
RH
522struct mac
523 {
524 const char *type;
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;
49c24507 535 const char *how_default_as_switches;
252b5132
RH
536 const char *how_bfd_target;
537 enum bfd_architecture how_bfd_arch;
538 const unsigned char *how_jtab;
c9e38879
NC
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. */
252b5132
RH
541 };
542
543static const struct mac
544mtable[] =
545{
546 {
547#define MARM 0
548 "arm", ".byte", ".short", ".long", ".asciz", "@",
549 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
eaeaa15c 550 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
49c24507 551 "pe-arm-little", bfd_arch_arm,
252b5132
RH
552 arm_jtab, sizeof (arm_jtab), 8
553 }
554 ,
555 {
556#define M386 1
49c24507
NC
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
252b5132
RH
561 }
562 ,
563 {
564#define MPPC 2
49c24507
NC
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
252b5132
RH
569 }
570 ,
571 {
572#define MTHUMB 3
573 "thumb", ".byte", ".short", ".long", ".asciz", "@",
b890a735 574 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
a2186dfe 575 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
49c24507 576 "pe-arm-little", bfd_arch_arm,
252b5132
RH
577 thumb_jtab, sizeof (thumb_jtab), 12
578 }
579 ,
b890a735
CM
580#define MARM_INTERWORK 4
581 {
582 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
583 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
49c24507
NC
584 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
585 "pe-arm-little", bfd_arch_arm,
b890a735
CM
586 arm_interwork_jtab, sizeof (arm_interwork_jtab), 12
587 }
588 ,
661016bb
NC
589 {
590#define MMCORE_BE 5
7e301c9c 591 "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 592 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
593 ".global", ".space", ".align\t2",".align\t4", "",
594 "pe-mcore-big", bfd_arch_mcore,
ba8c44fc 595 mcore_be_jtab, sizeof (mcore_be_jtab), 8
661016bb
NC
596 }
597 ,
598 {
599#define MMCORE_LE 6
600 "mcore-le", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 601 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
602 ".global", ".space", ".align\t2",".align\t4", "-EL",
603 "pe-mcore-little", bfd_arch_mcore,
ba8c44fc 604 mcore_le_jtab, sizeof (mcore_le_jtab), 8
661016bb
NC
605 }
606 ,
607 {
608#define MMCORE_ELF 7
7e301c9c 609 "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 610 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
611 ".global", ".space", ".align\t2",".align\t4", "",
612 "elf32-mcore-big", bfd_arch_mcore,
ba8c44fc 613 mcore_be_jtab, sizeof (mcore_be_jtab), 8
661016bb
NC
614 }
615 ,
616 {
617#define MMCORE_ELF_LE 8
618 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 619 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
620 ".global", ".space", ".align\t2",".align\t4", "-EL",
621 "elf32-mcore-little", bfd_arch_mcore,
ba8c44fc 622 mcore_le_jtab, sizeof (mcore_le_jtab), 8
661016bb
NC
623 }
624 ,
a2186dfe
NC
625 {
626#define MARM_EPOC 9
a8c548cb 627 "arm-epoc", ".byte", ".short", ".long", ".asciz", "@",
a2186dfe
NC
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
632 }
633 ,
5ea695ed 634 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
252b5132
RH
635};
636
637typedef struct dlist
638{
639 char *text;
640 struct dlist *next;
641}
642dlist_type;
643
644typedef struct export
645 {
646 const char *name;
647 const char *internal_name;
648 int ordinal;
649 int constant;
650 int noname;
651 int data;
652 int hint;
c9e38879 653 int forward; /* Number of forward label, 0 means no forward. */
252b5132
RH
654 struct export *next;
655 }
656export_type;
657
658/* A list of symbols which we should not export. */
26044998 659
252b5132
RH
660struct string_list
661{
662 struct string_list *next;
663 char *string;
664};
665
666static struct string_list *excludes;
667
b34976b6
AM
668static const char *rvaafter
669 PARAMS ((int));
670static const char *rvabefore
671 PARAMS ((int));
672static const char *asm_prefix
673 PARAMS ((int));
674static void process_def_file
675 PARAMS ((const char *));
676static void new_directive
677 PARAMS ((char *));
678static void append_import
679 PARAMS ((const char *, const char *, int));
680static void run
681 PARAMS ((const char *, char *));
682static void scan_drectve_symbols
683 PARAMS ((bfd *));
684static void scan_filtered_symbols
685 PARAMS ((bfd *, PTR, long, unsigned int));
686static void add_excludes
687 PARAMS ((const char *));
688static bfd_boolean match_exclude
689 PARAMS ((const char *));
690static void set_default_excludes
691 PARAMS ((void));
692static long filter_symbols
693 PARAMS ((bfd *, PTR, long, unsigned int));
694static void scan_all_symbols
695 PARAMS ((bfd *));
696static void scan_open_obj_file
697 PARAMS ((bfd *));
698static void scan_obj_file
699 PARAMS ((const char *));
700static void dump_def_info
701 PARAMS ((FILE *));
702static int sfunc
703 PARAMS ((const void *, const void *));
704static void flush_page
705 PARAMS ((FILE *, long *, int, int));
706static void gen_def_file
707 PARAMS ((void));
708static void generate_idata_ofile
709 PARAMS ((FILE *));
710static void assemble_file
711 PARAMS ((const char *, const char *));
712static void gen_exp_file
713 PARAMS ((void));
714static const char *xlate
715 PARAMS ((const char *));
252b5132 716#if 0
b34976b6
AM
717static void dump_iat
718 PARAMS ((FILE *, export_type *));
252b5132 719#endif
b34976b6
AM
720static char *make_label
721 PARAMS ((const char *, const char *));
722static char *make_imp_label
723 PARAMS ((const char *, const char *));
724static bfd *make_one_lib_file
725 PARAMS ((export_type *, int));
726static bfd *make_head
727 PARAMS ((void));
728static bfd *make_tail
729 PARAMS ((void));
730static void gen_lib_file
731 PARAMS ((void));
732static int pfunc
733 PARAMS ((const void *, const void *));
734static int nfunc
735 PARAMS ((const void *, const void *));
736static void remove_null_names
737 PARAMS ((export_type **));
738static void dtab
739 PARAMS ((export_type **));
740static void process_duplicates
741 PARAMS ((export_type **));
742static void fill_ordinals
743 PARAMS ((export_type **));
744static int alphafunc
745 PARAMS ((const void *, const void *));
746static void mangle_defs
747 PARAMS ((void));
748static void usage
749 PARAMS ((FILE *, int));
750static void inform
751 PARAMS ((const char *, ...));
252b5132 752
0e11a9e9
CF
753static char *
754dlltmp PARAMS ((char *buf, const char *fmt))
755{
756 if (!buf)
757 buf = malloc (strlen (tmp_prefix) + 17);
758 sprintf (buf, fmt, tmp_prefix);
759 return buf;
760}
252b5132
RH
761
762static void
c9e38879 763inform VPARAMS ((const char * message, ...))
252b5132 764{
e80ff7de
AM
765 VA_OPEN (args, message);
766 VA_FIXEDARG (args, const char *, message);
767
252b5132
RH
768 if (!verbose)
769 return;
770
37cc8ec1 771 report (message, args);
e80ff7de
AM
772
773 VA_CLOSE (args);
252b5132
RH
774}
775
252b5132
RH
776static const char *
777rvaafter (machine)
778 int machine;
779{
780 switch (machine)
781 {
782 case MARM:
783 case M386:
784 case MPPC:
785 case MTHUMB:
b890a735 786 case MARM_INTERWORK:
661016bb
NC
787 case MMCORE_BE:
788 case MMCORE_LE:
789 case MMCORE_ELF:
790 case MMCORE_ELF_LE:
a8c548cb 791 case MARM_EPOC:
252b5132
RH
792 break;
793 default:
794 /* xgettext:c-format */
37cc8ec1 795 fatal (_("Internal error: Unknown machine type: %d"), machine);
252b5132
RH
796 break;
797 }
798 return "";
799}
800
801static const char *
802rvabefore (machine)
803 int machine;
804{
805 switch (machine)
806 {
807 case MARM:
808 case M386:
809 case MPPC:
810 case MTHUMB:
b890a735 811 case MARM_INTERWORK:
661016bb
NC
812 case MMCORE_BE:
813 case MMCORE_LE:
814 case MMCORE_ELF:
815 case MMCORE_ELF_LE:
a8c548cb 816 case MARM_EPOC:
252b5132
RH
817 return ".rva\t";
818 default:
819 /* xgettext:c-format */
37cc8ec1 820 fatal (_("Internal error: Unknown machine type: %d"), machine);
252b5132
RH
821 break;
822 }
823 return "";
824}
825
826static const char *
827asm_prefix (machine)
828 int machine;
829{
830 switch (machine)
831 {
832 case MARM:
833 case MPPC:
834 case MTHUMB:
b890a735 835 case MARM_INTERWORK:
661016bb
NC
836 case MMCORE_BE:
837 case MMCORE_LE:
838 case MMCORE_ELF:
839 case MMCORE_ELF_LE:
a8c548cb 840 case MARM_EPOC:
252b5132
RH
841 break;
842 case M386:
843 return "_";
844 default:
845 /* xgettext:c-format */
37cc8ec1 846 fatal (_("Internal error: Unknown machine type: %d"), machine);
252b5132
RH
847 break;
848 }
849 return "";
850}
851
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)
661016bb 864#define ASM_ALIGN_LONG mtable[machine].how_align_long
49c24507
NC
865#define HOW_BFD_READ_TARGET 0 /* always default*/
866#define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
661016bb
NC
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
49c24507
NC
871#define ASM_SWITCHES mtable[machine].how_default_as_switches
872
252b5132
RH
873static char **oav;
874
e80ff7de 875static void
252b5132
RH
876process_def_file (name)
877 const char *name;
878{
879 FILE *f = fopen (name, FOPEN_RT);
26044998 880
252b5132
RH
881 if (!f)
882 /* xgettext:c-format */
883 fatal (_("Can't open def file: %s"), name);
884
885 yyin = f;
886
887 /* xgettext:c-format */
888 inform (_("Processing def file: %s"), name);
26044998 889
252b5132
RH
890 yyparse ();
891
892 inform (_("Processed def file"));
893}
894
895/**********************************************************************/
896
c9e38879 897/* Communications with the parser. */
252b5132 898
c9e38879
NC
899static const char *d_name; /* Arg to NAME or LIBRARY. */
900static int d_nfuncs; /* Number of functions exported. */
901static int d_named_nfuncs; /* Number of named functions exported. */
902static int d_low_ord; /* Lowest ordinal index. */
903static int d_high_ord; /* Highest ordinal index. */
904static export_type *d_exports; /* List of exported functions. */
905static export_type **d_exports_lexically; /* Vector of exported functions in alpha order. */
906static dlist_type *d_list; /* Descriptions. */
907static dlist_type *a_list; /* Stuff to go in directives. */
908static int d_nforwards = 0; /* Number of forwarded exports. */
252b5132
RH
909
910static int d_is_dll;
911static int d_is_exe;
912
913int
914yyerror (err)
5ea695ed 915 const char * err ATTRIBUTE_UNUSED;
252b5132
RH
916{
917 /* xgettext:c-format */
37cc8ec1 918 non_fatal (_("Syntax error in def file %s:%d"), def_file, linenumber);
26044998 919
252b5132
RH
920 return 0;
921}
922
923void
924def_exports (name, internal_name, ordinal, noname, constant, data)
925 const char *name;
926 const char *internal_name;
927 int ordinal;
928 int noname;
929 int constant;
930 int data;
931{
932 struct export *p = (struct export *) xmalloc (sizeof (*p));
933
934 p->name = name;
935 p->internal_name = internal_name ? internal_name : name;
936 p->ordinal = ordinal;
937 p->constant = constant;
938 p->noname = noname;
939 p->data = data;
940 p->next = d_exports;
941 d_exports = p;
942 d_nfuncs++;
26044998
KH
943
944 if ((internal_name != NULL)
04847a4d
CF
945 && (strchr (internal_name, '.') != NULL))
946 p->forward = ++d_nforwards;
947 else
948 p->forward = 0; /* no forward */
252b5132
RH
949}
950
951void
952def_name (name, base)
953 const char *name;
954 int base;
955{
956 /* xgettext:c-format */
957 inform (_("NAME: %s base: %x"), name, base);
26044998 958
252b5132 959 if (d_is_dll)
37cc8ec1 960 non_fatal (_("Can't have LIBRARY and NAME"));
26044998 961
252b5132 962 d_name = name;
c9e38879
NC
963 /* If --dllname not provided, use the one in the DEF file.
964 FIXME: Is this appropriate for executables? */
252b5132
RH
965 if (! dll_name)
966 dll_name = xstrdup (name);
967 d_is_exe = 1;
968}
969
970void
971def_library (name, base)
972 const char *name;
973 int base;
974{
975 /* xgettext:c-format */
976 inform (_("LIBRARY: %s base: %x"), name, base);
26044998 977
252b5132 978 if (d_is_exe)
37cc8ec1 979 non_fatal (_("Can't have LIBRARY and NAME"));
26044998 980
252b5132 981 d_name = name;
c9e38879 982 /* If --dllname not provided, use the one in the DEF file. */
252b5132
RH
983 if (! dll_name)
984 dll_name = xstrdup (name);
985 d_is_dll = 1;
986}
987
988void
989def_description (desc)
990 const char *desc;
991{
992 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
993 d->text = xstrdup (desc);
994 d->next = d_list;
995 d_list = d;
996}
997
e80ff7de 998static void
252b5132
RH
999new_directive (dir)
1000 char *dir;
1001{
1002 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
1003 d->text = xstrdup (dir);
1004 d->next = a_list;
1005 a_list = d;
1006}
1007
1008void
1009def_heapsize (reserve, commit)
1010 int reserve;
1011 int commit;
1012{
1013 char b[200];
1014 if (commit > 0)
1015 sprintf (b, "-heap 0x%x,0x%x ", reserve, commit);
1016 else
1017 sprintf (b, "-heap 0x%x ", reserve);
1018 new_directive (xstrdup (b));
1019}
1020
1021void
1022def_stacksize (reserve, commit)
1023 int reserve;
1024 int commit;
1025{
1026 char b[200];
1027 if (commit > 0)
1028 sprintf (b, "-stack 0x%x,0x%x ", reserve, commit);
1029 else
1030 sprintf (b, "-stack 0x%x ", reserve);
1031 new_directive (xstrdup (b));
1032}
1033
1034/* append_import simply adds the given import definition to the global
1035 import_list. It is used by def_import. */
1036
1037static void
1038append_import (symbol_name, dll_name, func_ordinal)
1039 const char *symbol_name;
1040 const char *dll_name;
1041 int func_ordinal;
1042{
1043 iheadtype **pq;
1044 iheadtype *q;
1045
1046 for (pq = &import_list; *pq != NULL; pq = &(*pq)->next)
1047 {
1048 if (strcmp ((*pq)->dllname, dll_name) == 0)
1049 {
1050 q = *pq;
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;
1056 q->nfuncs++;
1057 return;
1058 }
1059 }
1060
1061 q = xmalloc (sizeof (iheadtype));
1062 q->dllname = xstrdup (dll_name);
1063 q->nfuncs = 1;
1064 q->funchead = xmalloc (sizeof (ifunctype));
1065 q->functail = q->funchead;
1066 q->next = NULL;
1067 q->functail->name = xstrdup (symbol_name);
1068 q->functail->ord = func_ordinal;
1069 q->functail->next = NULL;
1070
1071 *pq = q;
1072}
1073
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
1079 with it. */
1080
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>
1087 <dll_name>.<number>
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
1092 to be reappended.
1093
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). */
1103
1104void
1105def_import (app_name, module, dllext, entry, ord_val)
1106 const char *app_name;
1107 const char *module;
1108 const char *dllext;
1109 const char *entry;
1110 int ord_val;
1111{
1112 const char *application_name;
1113 char *buf;
1114
1115 if (entry != NULL)
1116 application_name = entry;
1117 else
1118 {
1119 if (app_name != NULL)
1120 application_name = app_name;
1121 else
1122 application_name = "";
1123 }
26044998 1124
252b5132
RH
1125 if (dllext != NULL)
1126 {
1127 buf = (char *) alloca (strlen (module) + strlen (dllext) + 2);
1128 sprintf (buf, "%s.%s", module, dllext);
1129 module = buf;
1130 }
1131
1132 append_import (application_name, module, ord_val);
1133}
1134
1135void
1136def_version (major, minor)
1137 int major;
1138 int minor;
1139{
1140 printf ("VERSION %d.%d\n", major, minor);
1141}
1142
1143void
1144def_section (name, attr)
1145 const char *name;
1146 int attr;
1147{
1148 char buf[200];
1149 char atts[5];
1150 char *d = atts;
1151 if (attr & 1)
1152 *d++ = 'R';
1153
1154 if (attr & 2)
1155 *d++ = 'W';
1156 if (attr & 4)
1157 *d++ = 'X';
1158 if (attr & 8)
1159 *d++ = 'S';
1160 *d++ = 0;
1161 sprintf (buf, "-attr %s %s", name, atts);
1162 new_directive (xstrdup (buf));
1163}
1164
1165void
1166def_code (attr)
1167 int attr;
1168{
1169
1170 def_section ("CODE", attr);
1171}
1172
1173void
1174def_data (attr)
1175 int attr;
1176{
1177 def_section ("DATA", attr);
1178}
1179
1180/**********************************************************************/
1181
1182static void
1183run (what, args)
1184 const char *what;
1185 char *args;
1186{
1187 char *s;
1188 int pid, wait_status;
1189 int i;
1190 const char **argv;
1191 char *errmsg_fmt, *errmsg_arg;
1192 char *temp_base = choose_temp_base ();
1193
37cc8ec1 1194 inform ("run: %s %s", what, args);
252b5132
RH
1195
1196 /* Count the args */
1197 i = 0;
1198 for (s = args; *s; s++)
1199 if (*s == ' ')
1200 i++;
1201 i++;
1202 argv = alloca (sizeof (char *) * (i + 3));
1203 i = 0;
1204 argv[i++] = what;
1205 s = args;
1206 while (1)
1207 {
1208 while (*s == ' ')
1209 ++s;
1210 argv[i++] = s;
1211 while (*s != ' ' && *s != 0)
1212 s++;
1213 if (*s == 0)
1214 break;
1215 *s++ = 0;
1216 }
1217 argv[i++] = NULL;
1218
1219 pid = pexecute (argv[0], (char * const *) argv, program_name, temp_base,
1220 &errmsg_fmt, &errmsg_arg, PEXECUTE_ONE | PEXECUTE_SEARCH);
1221
1222 if (pid == -1)
1223 {
1224 inform (strerror (errno));
26044998 1225
252b5132
RH
1226 fatal (errmsg_fmt, errmsg_arg);
1227 }
1228
1229 pid = pwait (pid, & wait_status, 0);
26044998 1230
252b5132
RH
1231 if (pid == -1)
1232 {
1233 /* xgettext:c-format */
1234 fatal (_("wait: %s"), strerror (errno));
1235 }
1236 else if (WIFSIGNALED (wait_status))
1237 {
1238 /* xgettext:c-format */
1239 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
1240 }
1241 else if (WIFEXITED (wait_status))
1242 {
1243 if (WEXITSTATUS (wait_status) != 0)
1244 /* xgettext:c-format */
37cc8ec1
AM
1245 non_fatal (_("%s exited with status %d"),
1246 what, WEXITSTATUS (wait_status));
252b5132
RH
1247 }
1248 else
1249 abort ();
1250}
1251
1252/* Look for a list of symbols to export in the .drectve section of
1253 ABFD. Pass each one to def_exports. */
1254
1255static void
1256scan_drectve_symbols (abfd)
1257 bfd *abfd;
1258{
1259 asection * s;
1260 int size;
1261 char * buf;
1262 char * p;
1263 char * e;
661016bb 1264
252b5132 1265 /* Look for .drectve's */
661016bb 1266 s = bfd_get_section_by_name (abfd, DRECTVE_SECTION_NAME);
26044998 1267
252b5132
RH
1268 if (s == NULL)
1269 return;
26044998 1270
252b5132
RH
1271 size = bfd_get_section_size_before_reloc (s);
1272 buf = xmalloc (size);
1273
1274 bfd_get_section_contents (abfd, s, buf, 0, size);
26044998 1275
252b5132 1276 /* xgettext:c-format */
37cc8ec1 1277 inform (_("Sucking in info from %s section in %s"),
661016bb 1278 DRECTVE_SECTION_NAME, bfd_get_filename (abfd));
252b5132 1279
ce195b42
DD
1280 /* Search for -export: strings. The exported symbols can optionally
1281 have type tags (eg., -export:foo,data), so handle those as well.
5f0f29c3 1282 Currently only data tag is supported. */
252b5132
RH
1283 p = buf;
1284 e = buf + size;
1285 while (p < e)
1286 {
1287 if (p[0] == '-'
1288 && strncmp (p, "-export:", 8) == 0)
1289 {
1290 char * name;
1291 char * c;
ce195b42 1292 flagword flags = BSF_FUNCTION;
26044998 1293
252b5132
RH
1294 p += 8;
1295 name = p;
ce195b42 1296 while (p < e && *p != ',' && *p != ' ' && *p != '-')
252b5132
RH
1297 p++;
1298 c = xmalloc (p - name + 1);
1299 memcpy (c, name, p - name);
1300 c[p - name] = 0;
26044998 1301 if (p < e && *p == ',') /* found type tag. */
ce195b42
DD
1302 {
1303 char *tag_start = ++p;
1304 while (p < e && *p != ' ' && *p != '-')
1305 p++;
1306 if (strncmp (tag_start, "data", 4) == 0)
1307 flags &= ~BSF_FUNCTION;
1308 }
1309
252b5132
RH
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. */
ce195b42 1313 def_exports (c, 0, -1, 0, 0, ! (flags & BSF_FUNCTION));
252b5132
RH
1314
1315 if (add_stdcall_alias && strchr (c, '@'))
1316 {
b34976b6 1317 int lead_at = (*c == '@') ;
c9e38879 1318 char *exported_name = xstrdup (c + lead_at);
252b5132
RH
1319 char *atsym = strchr (exported_name, '@');
1320 *atsym = '\0';
5f0f29c3 1321 /* Note: stdcall alias symbols can never be data. */
252b5132
RH
1322 def_exports (exported_name, xstrdup (c), -1, 0, 0, 0);
1323 }
1324 }
1325 else
1326 p++;
1327 }
1328 free (buf);
1329}
1330
1331/* Look through the symbols in MINISYMS, and add each one to list of
1332 symbols to export. */
1333
1334static void
1335scan_filtered_symbols (abfd, minisyms, symcount, size)
1336 bfd *abfd;
1337 PTR minisyms;
1338 long symcount;
1339 unsigned int size;
1340{
1341 asymbol *store;
1342 bfd_byte *from, *fromend;
1343
1344 store = bfd_make_empty_symbol (abfd);
1345 if (store == NULL)
1346 bfd_fatal (bfd_get_filename (abfd));
1347
1348 from = (bfd_byte *) minisyms;
1349 fromend = from + symcount * size;
1350 for (; from < fromend; from += size)
1351 {
1352 asymbol *sym;
1353 const char *symbol_name;
1354
b34976b6 1355 sym = bfd_minisymbol_to_symbol (abfd, FALSE, from, store);
252b5132
RH
1356 if (sym == NULL)
1357 bfd_fatal (bfd_get_filename (abfd));
1358
1359 symbol_name = bfd_asymbol_name (sym);
1360 if (bfd_get_symbol_leading_char (abfd) == symbol_name[0])
1361 ++symbol_name;
1362
ce195b42 1363 def_exports (xstrdup (symbol_name) , 0, -1, 0, 0,
a2186dfe 1364 ! (sym->flags & BSF_FUNCTION));
252b5132
RH
1365
1366 if (add_stdcall_alias && strchr (symbol_name, '@'))
1367 {
c9e38879
NC
1368 int lead_at = (*symbol_name == '@');
1369 char *exported_name = xstrdup (symbol_name + lead_at);
252b5132
RH
1370 char *atsym = strchr (exported_name, '@');
1371 *atsym = '\0';
26044998 1372 /* Note: stdcall alias symbols can never be data. */
252b5132
RH
1373 def_exports (exported_name, xstrdup (symbol_name), -1, 0, 0, 0);
1374 }
1375 }
1376}
1377
1378/* Add a list of symbols to exclude. */
1379
1380static void
1381add_excludes (new_excludes)
1382 const char *new_excludes;
1383{
1384 char *local_copy;
1385 char *exclude_string;
1386
1387 local_copy = xstrdup (new_excludes);
1388
1389 exclude_string = strtok (local_copy, ",:");
1390 for (; exclude_string; exclude_string = strtok (NULL, ",:"))
1391 {
1392 struct string_list *new_exclude;
26044998 1393
252b5132
RH
1394 new_exclude = ((struct string_list *)
1395 xmalloc (sizeof (struct string_list)));
1396 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2);
c9e38879
NC
1397 /* Don't add a leading underscore for fastcall symbols. */
1398 if (*exclude_string == '@')
1399 sprintf (new_exclude->string, "%s", exclude_string);
1400 else
1401 sprintf (new_exclude->string, "_%s", exclude_string);
252b5132
RH
1402 new_exclude->next = excludes;
1403 excludes = new_exclude;
1404
1405 /* xgettext:c-format */
37cc8ec1 1406 inform (_("Excluding symbol: %s"), exclude_string);
252b5132
RH
1407 }
1408
1409 free (local_copy);
1410}
1411
1412/* See if STRING is on the list of symbols to exclude. */
1413
b34976b6 1414static bfd_boolean
252b5132
RH
1415match_exclude (string)
1416 const char *string;
1417{
1418 struct string_list *excl_item;
1419
1420 for (excl_item = excludes; excl_item; excl_item = excl_item->next)
1421 if (strcmp (string, excl_item->string) == 0)
b34976b6
AM
1422 return TRUE;
1423 return FALSE;
252b5132
RH
1424}
1425
1426/* Add the default list of symbols to exclude. */
1427
1428static void
1429set_default_excludes (void)
1430{
1431 add_excludes (default_excludes);
1432}
1433
1434/* Choose which symbols to export. */
1435
1436static long
1437filter_symbols (abfd, minisyms, symcount, size)
1438 bfd *abfd;
1439 PTR minisyms;
1440 long symcount;
1441 unsigned int size;
1442{
1443 bfd_byte *from, *fromend, *to;
1444 asymbol *store;
1445
1446 store = bfd_make_empty_symbol (abfd);
1447 if (store == NULL)
1448 bfd_fatal (bfd_get_filename (abfd));
1449
1450 from = (bfd_byte *) minisyms;
1451 fromend = from + symcount * size;
1452 to = (bfd_byte *) minisyms;
1453
1454 for (; from < fromend; from += size)
1455 {
1456 int keep = 0;
1457 asymbol *sym;
1458
b34976b6 1459 sym = bfd_minisymbol_to_symbol (abfd, FALSE, (const PTR) from, store);
252b5132
RH
1460 if (sym == NULL)
1461 bfd_fatal (bfd_get_filename (abfd));
1462
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));
26044998 1468
252b5132
RH
1469 keep = keep && ! match_exclude (sym->name);
1470
1471 if (keep)
1472 {
1473 memcpy (to, from, size);
1474 to += size;
1475 }
1476 }
1477
1478 return (to - (bfd_byte *) minisyms) / size;
1479}
1480
1481/* Export all symbols in ABFD, except for ones we were told not to
1482 export. */
1483
1484static void
1485scan_all_symbols (abfd)
1486 bfd *abfd;
1487{
1488 long symcount;
1489 PTR minisyms;
1490 unsigned int size;
1491
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"))
1496 return;
1497
1498 if (! (bfd_get_file_flags (abfd) & HAS_SYMS))
1499 {
1500 /* xgettext:c-format */
37cc8ec1 1501 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
252b5132
RH
1502 return;
1503 }
1504
b34976b6 1505 symcount = bfd_read_minisymbols (abfd, FALSE, &minisyms, &size);
252b5132
RH
1506 if (symcount < 0)
1507 bfd_fatal (bfd_get_filename (abfd));
1508
1509 if (symcount == 0)
1510 {
1511 /* xgettext:c-format */
37cc8ec1 1512 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
252b5132
RH
1513 return;
1514 }
1515
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. */
1518
1519 symcount = filter_symbols (abfd, minisyms, symcount, size);
1520 scan_filtered_symbols (abfd, minisyms, symcount, size);
1521
1522 free (minisyms);
1523}
1524
1525/* Look at the object file to decide which symbols to export. */
1526
1527static void
1528scan_open_obj_file (abfd)
1529 bfd *abfd;
1530{
1531 if (export_all_symbols)
1532 scan_all_symbols (abfd);
1533 else
1534 scan_drectve_symbols (abfd);
26044998 1535
c9e38879 1536 /* FIXME: we ought to read in and block out the base relocations. */
252b5132
RH
1537
1538 /* xgettext:c-format */
37cc8ec1 1539 inform (_("Done reading %s"), bfd_get_filename (abfd));
252b5132
RH
1540}
1541
1542static void
1543scan_obj_file (filename)
1544 const char *filename;
1545{
1546 bfd * f = bfd_openr (filename, 0);
1547
1548 if (!f)
1549 /* xgettext:c-format */
1550 fatal (_("Unable to open object file: %s"), filename);
1551
1552 /* xgettext:c-format */
1553 inform (_("Scanning object file %s"), filename);
26044998 1554
252b5132
RH
1555 if (bfd_check_format (f, bfd_archive))
1556 {
1557 bfd *arfile = bfd_openr_next_archived_file (f, 0);
1558 while (arfile)
1559 {
1560 if (bfd_check_format (arfile, bfd_object))
1561 scan_open_obj_file (arfile);
1562 bfd_close (arfile);
1563 arfile = bfd_openr_next_archived_file (f, arfile);
1564 }
26044998 1565
49e315b1
NC
1566#ifdef DLLTOOL_MCORE_ELF
1567 if (mcore_elf_out_file)
1568 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename);
1569#endif
252b5132
RH
1570 }
1571 else if (bfd_check_format (f, bfd_object))
1572 {
1573 scan_open_obj_file (f);
49e315b1
NC
1574
1575#ifdef DLLTOOL_MCORE_ELF
1576 if (mcore_elf_out_file)
1577 mcore_elf_cache_filename ((char *) filename);
1578#endif
252b5132
RH
1579 }
1580
1581 bfd_close (f);
1582}
1583
1584/**********************************************************************/
1585
1586static void
1587dump_def_info (f)
1588 FILE *f;
1589{
1590 int i;
1591 export_type *exp;
1592 fprintf (f, "%s ", ASM_C);
1593 for (i = 0; oav[i]; i++)
1594 fprintf (f, "%s ", oav[i]);
1595 fprintf (f, "\n");
1596 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1597 {
1598 fprintf (f, "%s %d = %s %s @ %d %s%s%s\n",
1599 ASM_C,
1600 i,
1601 exp->name,
1602 exp->internal_name,
1603 exp->ordinal,
1604 exp->noname ? "NONAME " : "",
1605 exp->constant ? "CONSTANT" : "",
1606 exp->data ? "DATA" : "");
1607 }
1608}
1609
c9e38879 1610/* Generate the .exp file. */
252b5132
RH
1611
1612static int
1613sfunc (a, b)
1614 const void *a;
1615 const void *b;
1616{
1617 return *(const long *) a - *(const long *) b;
1618}
1619
1620static void
1621flush_page (f, need, page_addr, on_page)
1622 FILE *f;
1623 long *need;
1624 int page_addr;
1625 int on_page;
1626{
1627 int i;
1628
c9e38879 1629 /* Flush this page. */
252b5132
RH
1630 fprintf (f, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1631 ASM_LONG,
1632 page_addr,
1633 ASM_C);
1634 fprintf (f, "\t%s\t0x%x\t%s Size of block\n",
1635 ASM_LONG,
1636 (on_page * 2) + (on_page & 1) * 2 + 8,
1637 ASM_C);
26044998 1638
252b5132 1639 for (i = 0; i < on_page; i++)
a2186dfe
NC
1640 {
1641 long needed = need[i];
26044998 1642
a2186dfe
NC
1643 if (needed)
1644 needed = ((needed - page_addr) | 0x3000) & 0xffff;
26044998 1645
a2186dfe
NC
1646 fprintf (f, "\t%s\t0x%lx\n", ASM_SHORT, needed);
1647 }
26044998 1648
252b5132
RH
1649 /* And padding */
1650 if (on_page & 1)
1651 fprintf (f, "\t%s\t0x%x\n", ASM_SHORT, 0 | 0x0000);
1652}
1653
1654static void
1655gen_def_file ()
1656{
1657 int i;
1658 export_type *exp;
1659
1660 inform (_("Adding exports to output file"));
26044998 1661
252b5132
RH
1662 fprintf (output_def, ";");
1663 for (i = 0; oav[i]; i++)
1664 fprintf (output_def, " %s", oav[i]);
1665
1666 fprintf (output_def, "\nEXPORTS\n");
1667
1668 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1669 {
1670 char *quote = strchr (exp->name, '.') ? "\"" : "";
1671 char *res = cplus_demangle (exp->internal_name, DMGL_ANSI | DMGL_PARAMS);
1672
2630b4ca
DS
1673 if (res)
1674 {
1675 fprintf (output_def,";\t%s\n", res);
1676 free (res);
1677 }
1678
252b5132 1679 if (strcmp (exp->name, exp->internal_name) == 0)
26044998 1680 {
252b5132 1681
2630b4ca 1682 fprintf (output_def, "\t%s%s%s @ %d%s%s\n",
252b5132
RH
1683 quote,
1684 exp->name,
1685 quote,
1686 exp->ordinal,
1687 exp->noname ? " NONAME" : "",
2630b4ca 1688 exp->data ? " DATA" : "");
252b5132 1689 }
26044998
KH
1690 else
1691 {
1692 char *quote1 = strchr (exp->internal_name, '.') ? "\"" : "";
252b5132 1693 /* char *alias = */
2630b4ca 1694 fprintf (output_def, "\t%s%s%s = %s%s%s @ %d%s%s\n",
252b5132
RH
1695 quote,
1696 exp->name,
1697 quote,
1698 quote1,
1699 exp->internal_name,
1700 quote1,
1701 exp->ordinal,
1702 exp->noname ? " NONAME" : "",
2630b4ca 1703 exp->data ? " DATA" : "");
252b5132 1704 }
252b5132 1705 }
26044998 1706
252b5132
RH
1707 inform (_("Added exports to output file"));
1708}
1709
1710/* generate_idata_ofile generates the portable assembly source code
1711 for the idata sections. It appends the source code to the end of
1712 the file. */
1713
1714static void
1715generate_idata_ofile (filvar)
1716 FILE *filvar;
1717{
1718 iheadtype *headptr;
1719 ifunctype *funcptr;
1720 int headindex;
1721 int funcindex;
1722 int nheads;
1723
1724 if (import_list == NULL)
1725 return;
1726
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");
1731
1732 nheads = 0;
1733 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1734 {
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);
1744 nheads++;
1745 }
1746
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);
1752
1753 fprintf (filvar, "\n\t.section\t.idata$4\n");
1754 headindex = 0;
1755 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1756 {
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 */
1762 headindex++;
1763 }
1764
1765 fprintf (filvar, "\n\t.section\t.idata$5\n");
1766 headindex = 0;
1767 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1768 {
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 */
1774 headindex++;
1775 }
1776
1777 fprintf (filvar, "\n\t.section\t.idata$6\n");
1778 headindex = 0;
1779 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1780 {
1781 funcindex = 0;
1782 for (funcptr = headptr->funchead; funcptr != NULL;
1783 funcptr = funcptr->next)
1784 {
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);
1790 funcindex++;
1791 }
1792 headindex++;
1793 }
1794
1795 fprintf (filvar, "\n\t.section\t.idata$7\n");
1796 headindex = 0;
1797 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1798 {
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);
1802 headindex++;
1803 }
1804}
1805
26044998 1806/* Assemble the specified file. */
49c24507
NC
1807static void
1808assemble_file (source, dest)
1809 const char * source;
1810 const char * dest;
1811{
1812 char * cmd;
26044998 1813
49c24507 1814 cmd = (char *) alloca (strlen (ASM_SWITCHES) + strlen (as_flags)
96925346 1815 + strlen (source) + strlen (dest) + 50);
49c24507
NC
1816
1817 sprintf (cmd, "%s %s -o %s %s", ASM_SWITCHES, as_flags, dest, source);
1818
1819 run (as_name, cmd);
1820}
1821
252b5132
RH
1822static void
1823gen_exp_file ()
1824{
1825 FILE *f;
1826 int i;
1827 export_type *exp;
1828 dlist_type *dl;
1829
1830 /* xgettext:c-format */
37cc8ec1 1831 inform (_("Generating export file: %s"), exp_name);
26044998 1832
252b5132
RH
1833 f = fopen (TMP_ASM, FOPEN_WT);
1834 if (!f)
1835 /* xgettext:c-format */
1836 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM);
26044998 1837
252b5132
RH
1838 /* xgettext:c-format */
1839 inform (_("Opened temporary file: %s"), TMP_ASM);
1840
1841 dump_def_info (f);
26044998 1842
252b5132
RH
1843 if (d_exports)
1844 {
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),
1848 ASM_C);
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);
1852
1853
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",
1856 ASM_C,
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);
1861
1862 fprintf (f, "\t%sanames%s %s Address of Name Pointer Table\n",
1863 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1864
1865 fprintf (f, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1866
1867 fprintf (f, "name: %s \"%s\"\n", ASM_TEXT, dll_name);
1868
1869
1870 fprintf(f,"%s Export address Table\n", ASM_C);
1871 fprintf(f,"\t%s\n", ASM_ALIGN_LONG);
1872 fprintf (f, "afuncs:\n");
1873 i = d_low_ord;
1874
1875 for (exp = d_exports; exp; exp = exp->next)
1876 {
1877 if (exp->ordinal != i)
1878 {
1879#if 0
1880 fprintf (f, "\t%s\t%d\t%s %d..%d missing\n",
1881 ASM_SPACE,
1882 (exp->ordinal - i) * 4,
1883 ASM_C,
1884 i, exp->ordinal - 1);
1885 i = exp->ordinal;
1886#endif
1887 while (i < exp->ordinal)
1888 {
1889 fprintf(f,"\t%s\t0\n", ASM_LONG);
1890 i++;
1891 }
1892 }
04847a4d
CF
1893
1894 if (exp->forward == 0)
c9e38879
NC
1895 {
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);
1899 else
1900 fprintf (f, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE,
1901 ASM_PREFIX,
1902 exp->internal_name, ASM_RVA_AFTER, ASM_C, exp->ordinal);
1903 }
04847a4d
CF
1904 else
1905 fprintf (f, "\t%sf%d%s\t%s %d\n", ASM_RVA_BEFORE,
1906 exp->forward, ASM_RVA_AFTER, ASM_C, exp->ordinal);
252b5132
RH
1907 i++;
1908 }
1909
1910 fprintf (f,"%s Export Name Pointer Table\n", ASM_C);
1911 fprintf (f, "anames:\n");
1912
1913 for (i = 0; (exp = d_exports_lexically[i]); i++)
1914 {
1915 if (!exp->noname || show_allnames)
1916 fprintf (f, "\t%sn%d%s\n",
1917 ASM_RVA_BEFORE, exp->ordinal, ASM_RVA_AFTER);
1918 }
1919
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++)
1923 {
1924 if (!exp->noname || show_allnames)
1925 fprintf (f, "\t%s %d\n", ASM_SHORT, exp->ordinal - d_low_ord);
1926 }
1927
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)
04847a4d
CF
1931 {
1932 fprintf (f, "n%d: %s \"%s\"\n",
f3f7fbb2 1933 exp->ordinal, ASM_TEXT, xlate (exp->name));
04847a4d
CF
1934 if (exp->forward != 0)
1935 fprintf (f, "f%d: %s \"%s\"\n",
1936 exp->forward, ASM_TEXT, exp->internal_name);
1937 }
252b5132
RH
1938
1939 if (a_list)
1940 {
661016bb 1941 fprintf (f, "\t.section %s\n", DRECTVE_SECTION_NAME);
252b5132
RH
1942 for (dl = a_list; dl; dl = dl->next)
1943 {
1944 fprintf (f, "\t%s\t\"%s\"\n", ASM_TEXT, dl->text);
1945 }
1946 }
26044998 1947
252b5132
RH
1948 if (d_list)
1949 {
1950 fprintf (f, "\t.section .rdata\n");
1951 for (dl = d_list; dl; dl = dl->next)
1952 {
1953 char *p;
1954 int l;
26044998 1955
5f0f29c3
NC
1956 /* We don't output as ascii because there can
1957 be quote characters in the string. */
252b5132
RH
1958 l = 0;
1959 for (p = dl->text; *p; p++)
1960 {
1961 if (l == 0)
1962 fprintf (f, "\t%s\t", ASM_BYTE);
1963 else
1964 fprintf (f, ",");
1965 fprintf (f, "%d", *p);
1966 if (p[1] == 0)
1967 {
1968 fprintf (f, ",0\n");
1969 break;
1970 }
1971 if (++l == 10)
1972 {
1973 fprintf (f, "\n");
1974 l = 0;
1975 }
1976 }
1977 }
1978 }
1979 }
1980
1981
1982 /* Add to the output file a way of getting to the exported names
5f0f29c3 1983 without using the import library. */
252b5132
RH
1984 if (add_indirect)
1985 {
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)
1989 {
1990 /* We use a single underscore for MS compatibility, and a
1991 double underscore for backward compatibility with old
1992 cygwin releases. */
5f0f29c3
NC
1993 if (create_compat_implib)
1994 fprintf (f, "\t%s\t__imp_%s\n", ASM_GLOBAL, exp->name);
252b5132 1995 fprintf (f, "\t%s\t_imp__%s\n", ASM_GLOBAL, exp->name);
5f0f29c3
NC
1996 if (create_compat_implib)
1997 fprintf (f, "__imp_%s:\n", exp->name);
252b5132
RH
1998 fprintf (f, "_imp__%s:\n", exp->name);
1999 fprintf (f, "\t%s\t%s\n", ASM_LONG, exp->name);
2000 }
2001 }
2002
c9e38879 2003 /* Dump the reloc section if a base file is provided. */
252b5132
RH
2004 if (base_file)
2005 {
2006 int addr;
2007 long need[PAGE_SIZE];
2008 long page_addr;
2009 int numbytes;
2010 int num_entries;
2011 long *copy;
2012 int j;
2013 int on_page;
2014 fprintf (f, "\t.section\t.init\n");
2015 fprintf (f, "lab:\n");
2016
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);
2023
2024
2025 fprintf (f, "\t.section\t.reloc\n");
2026 if (num_entries)
2027 {
2028 int src;
2029 int dst = 0;
2030 int last = -1;
252b5132
RH
2031 qsort (copy, num_entries, sizeof (long), sfunc);
2032 /* Delete duplcates */
2033 for (src = 0; src < num_entries; src++)
2034 {
2035 if (last != copy[src])
2036 last = copy[dst++] = copy[src];
2037 }
2038 num_entries = dst;
2039 addr = copy[0];
2040 page_addr = addr & PAGE_MASK; /* work out the page addr */
2041 on_page = 0;
2042 for (j = 0; j < num_entries; j++)
2043 {
252b5132
RH
2044 addr = copy[j];
2045 if ((addr & PAGE_MASK) != page_addr)
2046 {
252b5132
RH
2047 flush_page (f, need, page_addr, on_page);
2048 on_page = 0;
2049 page_addr = addr & PAGE_MASK;
2050 }
2051 need[on_page++] = addr;
2052 }
252b5132
RH
2053 flush_page (f, need, page_addr, on_page);
2054
d8bcc1ac 2055/* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
252b5132
RH
2056 }
2057 }
2058
2059 generate_idata_ofile (f);
2060
2061 fclose (f);
2062
c9e38879 2063 /* Assemble the file. */
49c24507 2064 assemble_file (TMP_ASM, exp_name);
bb0cb4db 2065
252b5132
RH
2066 if (dontdeltemps == 0)
2067 unlink (TMP_ASM);
26044998 2068
252b5132
RH
2069 inform (_("Generated exports file"));
2070}
2071
2072static const char *
2073xlate (name)
2074 const char *name;
2075{
c9e38879
NC
2076 int lead_at = (*name == '@');
2077
2078 if (add_underscore && !lead_at)
252b5132
RH
2079 {
2080 char *copy = xmalloc (strlen (name) + 2);
c9e38879 2081
252b5132
RH
2082 copy[0] = '_';
2083 strcpy (copy + 1, name);
2084 name = copy;
2085 }
2086
2087 if (killat)
2088 {
2089 char *p;
c9e38879
NC
2090
2091 name += lead_at;
252b5132
RH
2092 p = strchr (name, '@');
2093 if (p)
2094 *p = 0;
2095 }
2096 return name;
2097}
2098
2099/**********************************************************************/
2100
2101#if 0
2102
2103static void
2104dump_iat (f, exp)
2105 FILE *f;
2106 export_type *exp;
2107{
2108 if (exp->noname && !show_allnames )
2109 {
2110 fprintf (f, "\t%s\t0x%08x\n",
2111 ASM_LONG,
2112 exp->ordinal | 0x80000000); /* hint or orindal ?? */
2113 }
2114 else
2115 {
2116 fprintf (f, "\t%sID%d%s\n", ASM_RVA_BEFORE,
2117 exp->ordinal,
2118 ASM_RVA_AFTER);
2119 }
2120}
2121
2122#endif
2123
2124typedef struct
2125{
2126 int id;
2127 const char *name;
2128 int flags;
2129 int align;
2130 asection *sec;
2131 asymbol *sym;
2132 asymbol **sympp;
2133 int size;
c9e38879 2134 unsigned char *data;
252b5132
RH
2135} sinfo;
2136
2137#ifndef DLLTOOL_PPC
2138
2139#define TEXT 0
2140#define DATA 1
2141#define BSS 2
2142#define IDATA7 3
2143#define IDATA5 4
2144#define IDATA4 5
2145#define IDATA6 6
2146
2147#define NSECS 7
2148
bee72332
DD
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
2153
2154#define INIT_SEC_DATA(id, name, flags, align) \
2155 { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
252b5132
RH
2156static sinfo secdata[NSECS] =
2157{
bee72332
DD
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)
252b5132
RH
2165};
2166
2167#else
2168
c9e38879
NC
2169/* Sections numbered to make the order the same as other PowerPC NT
2170 compilers. This also keeps funny alignment thingies from happening. */
252b5132
RH
2171#define TEXT 0
2172#define PDATA 1
2173#define RDATA 2
2174#define IDATA5 3
2175#define IDATA4 4
2176#define IDATA6 5
2177#define IDATA7 6
2178#define DATA 7
2179#define BSS 8
2180
2181#define NSECS 9
2182
2183static sinfo secdata[NSECS] =
2184{
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}
2194};
2195
2196#endif
2197
c9e38879
NC
2198/* This is what we're trying to make. We generate the imp symbols with
2199 both single and double underscores, for compatibility.
252b5132
RH
2200
2201 .text
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
2209 .section .idata$5
2210__imp_GetFileVersionInfoSizeW@8:
2211 .rva ID2
2212
2213# Import Lookup Table
2214 .section .idata$4
2215 .rva ID2
2216# Hint/Name table
2217 .section .idata$6
2218ID2: .short 2
2219 .asciz "GetFileVersionInfoSizeW"
2220
2221
c9e38879 2222 For the PowerPC, here's the variation on the above scheme:
252b5132
RH
2223
2224# Rather than a simple "jmp *", the code to get to the dll function
2225# looks like:
2226 .text
2227 lwz r11,[tocv]__imp_function_name(r2)
2228# RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2229 lwz r12,0(r11)
2230 stw r2,4(r1)
2231 mtctr r12
2232 lwz r2,4(r11)
c9e38879 2233 bctr */
252b5132
RH
2234
2235static char *
2236make_label (prefix, name)
2237 const char *prefix;
2238 const char *name;
2239{
2240 int len = strlen (ASM_PREFIX) + strlen (prefix) + strlen (name);
2241 char *copy = xmalloc (len +1 );
c9e38879 2242
252b5132
RH
2243 strcpy (copy, ASM_PREFIX);
2244 strcat (copy, prefix);
2245 strcat (copy, name);
2246 return copy;
2247}
2248
c9e38879
NC
2249static char *
2250make_imp_label (prefix, name)
2251 const char *prefix;
2252 const char *name;
2253{
2254 int len;
2255 char *copy;
2256
2257 if (name[0] == '@')
2258 {
2259 len = strlen (prefix) + strlen (name);
2260 copy = xmalloc (len + 1);
2261 strcpy (copy, prefix);
2262 strcat (copy, name);
2263 }
2264 else
2265 {
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);
2271 }
2272 return copy;
2273}
2274
252b5132
RH
2275static bfd *
2276make_one_lib_file (exp, i)
2277 export_type *exp;
2278 int i;
2279{
2280#if 0
2281 {
bb0cb4db 2282 char *name;
252b5132 2283 FILE *f;
bb0cb4db 2284 const char *prefix = "d";
49c24507 2285 char *dest;
bb0cb4db
ILT
2286
2287 name = (char *) alloca (strlen (prefix) + 10);
2288 sprintf (name, "%ss%05d.s", prefix, i);
2289 f = fopen (name, FOPEN_WT);
252b5132
RH
2290 fprintf (f, "\t.text\n");
2291 fprintf (f, "\t%s\t%s%s\n", ASM_GLOBAL, ASM_PREFIX, exp->name);
5f0f29c3
NC
2292 if (create_compat_implib)
2293 fprintf (f, "\t%s\t__imp_%s\n", ASM_GLOBAL, exp->name);
252b5132 2294 fprintf (f, "\t%s\t_imp__%s\n", ASM_GLOBAL, exp->name);
5f0f29c3
NC
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);
252b5132
RH
2298
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);
2301
2302
2303 fprintf (f,"%s Import Address Table\n", ASM_C);
2304
2305 fprintf (f, "\t.section .idata$5\n");
5f0f29c3
NC
2306 if (create_compat_implib)
2307 fprintf (f, "__imp_%s:\n", exp->name);
252b5132
RH
2308 fprintf (f, "_imp__%s:\n", exp->name);
2309
2310 dump_iat (f, exp);
2311
2312 fprintf (f, "\n%s Import Lookup Table\n", ASM_C);
2313 fprintf (f, "\t.section .idata$4\n");
2314
2315 dump_iat (f, exp);
2316
2317 if(!exp->noname || show_allnames)
2318 {
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));
2323 }
2324
2325 fclose (f);
2326
49c24507
NC
2327 dest = (char *) alloca (strlen (prefix) + 10);
2328 sprintf (dest, "%ss%05d.o", prefix, i);
2329 assemble_file (name, dest);
252b5132
RH
2330 }
2331#else /* if 0 */
2332 {
2333 bfd * abfd;
2334 asymbol * exp_label;
bee72332 2335 asymbol * iname = 0;
252b5132
RH
2336 asymbol * iname2;
2337 asymbol * iname_lab;
2338 asymbol ** iname_lab_pp;
2339 asymbol ** iname_pp;
2340#ifdef DLLTOOL_PPC
2341 asymbol ** fn_pp;
2342 asymbol ** toc_pp;
2343#define EXTRA 2
2344#endif
2345#ifndef EXTRA
2346#define EXTRA 0
2347#endif
2348 asymbol * ptrs[NSECS + 4 + EXTRA + 1];
bee72332 2349 flagword applicable;
252b5132
RH
2350
2351 char * outname = xmalloc (10);
2352 int oidx = 0;
2353
26044998 2354
252b5132 2355 sprintf (outname, "%s%05d.o", TMP_STUB, i);
26044998 2356
49c24507 2357 abfd = bfd_openw (outname, HOW_BFD_WRITE_TARGET);
26044998 2358
252b5132
RH
2359 if (!abfd)
2360 /* xgettext:c-format */
2361 fatal (_("bfd_open failed open stub file: %s"), outname);
2362
2363 /* xgettext:c-format */
2364 inform (_("Creating stub file: %s"), outname);
26044998 2365
252b5132
RH
2366 bfd_set_format (abfd, bfd_object);
2367 bfd_set_arch_mach (abfd, HOW_BFD_ARCH, 0);
2368
2369#ifdef DLLTOOL_ARM
b890a735 2370 if (machine == MARM_INTERWORK || machine == MTHUMB)
252b5132
RH
2371 bfd_set_private_flags (abfd, F_INTERWORK);
2372#endif
26044998 2373
bee72332 2374 applicable = bfd_applicable_section_flags (abfd);
26044998 2375
c9e38879 2376 /* First make symbols for the sections. */
252b5132
RH
2377 for (i = 0; i < NSECS; i++)
2378 {
2379 sinfo *si = secdata + i;
2380 if (si->id != i)
2381 abort();
2382 si->sec = bfd_make_section_old_way (abfd, si->name);
2383 bfd_set_section_flags (abfd,
2384 si->sec,
bee72332 2385 si->flags & applicable);
252b5132
RH
2386
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;
2393 si->sym->value = 0;
2394 ptrs[oidx] = si->sym;
2395 si->sympp = ptrs + oidx;
2396 si->size = 0;
2397 si->data = NULL;
2398
2399 oidx++;
2400 }
2401
2402 if (! exp->data)
2403 {
2404 exp_label = bfd_make_empty_symbol (abfd);
c9e38879 2405 exp_label->name = make_imp_label ("", exp->name);
252b5132
RH
2406
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
c9e38879 2410 points to the .toc. */
252b5132
RH
2411#ifdef DLLTOOL_PPC
2412 if (machine == MPPC)
2413 exp_label->section = secdata[RDATA].sec;
2414 else
2415#endif
2416 exp_label->section = secdata[TEXT].sec;
2417
2418 exp_label->flags = BSF_GLOBAL;
2419 exp_label->value = 0;
2420
2421#ifdef DLLTOOL_ARM
2422 if (machine == MTHUMB)
2423 bfd_coff_set_symbol_class (abfd, exp_label, C_THUMBEXTFUNC);
2424#endif
2425 ptrs[oidx++] = exp_label;
2426 }
2427
2428 /* Generate imp symbols with one underscore for Microsoft
2429 compatibility, and with two underscores for backward
2430 compatibility with old versions of cygwin. */
5f0f29c3
NC
2431 if (create_compat_implib)
2432 {
2433 iname = bfd_make_empty_symbol (abfd);
c9e38879 2434 iname->name = make_imp_label ("___imp", exp->name);
5f0f29c3
NC
2435 iname->section = secdata[IDATA5].sec;
2436 iname->flags = BSF_GLOBAL;
2437 iname->value = 0;
2438 }
252b5132 2439
5f0f29c3 2440 iname2 = bfd_make_empty_symbol (abfd);
c9e38879 2441 iname2->name = make_imp_label ("__imp_", exp->name);
252b5132
RH
2442 iname2->section = secdata[IDATA5].sec;
2443 iname2->flags = BSF_GLOBAL;
2444 iname2->value = 0;
2445
2446 iname_lab = bfd_make_empty_symbol(abfd);
2447
2448 iname_lab->name = head_label;
2449 iname_lab->section = (asection *)&bfd_und_section;
2450 iname_lab->flags = 0;
2451 iname_lab->value = 0;
2452
252b5132 2453 iname_pp = ptrs + oidx;
5f0f29c3
NC
2454 if (create_compat_implib)
2455 ptrs[oidx++] = iname;
252b5132
RH
2456 ptrs[oidx++] = iname2;
2457
2458 iname_lab_pp = ptrs + oidx;
2459 ptrs[oidx++] = iname_lab;
2460
2461#ifdef DLLTOOL_PPC
c9e38879 2462 /* The symbol refering to the code (.text). */
252b5132
RH
2463 {
2464 asymbol *function_name;
2465
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;
2471
2472 fn_pp = ptrs + oidx;
2473 ptrs[oidx++] = function_name;
2474 }
2475
c9e38879 2476 /* The .toc symbol. */
252b5132 2477 {
c9e38879 2478 asymbol *toc_symbol;
252b5132
RH
2479
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;
2485
2486 toc_pp = ptrs + oidx;
2487 ptrs[oidx++] = toc_symbol;
2488 }
2489#endif
26044998 2490
252b5132
RH
2491 ptrs[oidx] = 0;
2492
2493 for (i = 0; i < NSECS; i++)
2494 {
2495 sinfo *si = secdata + i;
2496 asection *sec = si->sec;
2497 arelent *rel;
2498 arelent **rpp;
2499
2500 switch (i)
2501 {
2502 case TEXT:
2503 if (! exp->data)
2504 {
2505 si->size = HOW_JTAB_SIZE;
2506 si->data = xmalloc (HOW_JTAB_SIZE);
2507 memcpy (si->data, HOW_JTAB, HOW_JTAB_SIZE);
2508
2509 /* add the reloc into idata$5 */
2510 rel = xmalloc (sizeof (arelent));
26044998 2511
252b5132
RH
2512 rpp = xmalloc (sizeof (arelent *) * 2);
2513 rpp[0] = rel;
2514 rpp[1] = 0;
26044998 2515
252b5132
RH
2516 rel->address = HOW_JTAB_ROFF;
2517 rel->addend = 0;
2518
2519 if (machine == MPPC)
2520 {
2521 rel->howto = bfd_reloc_type_lookup (abfd,
2522 BFD_RELOC_16_GOTOFF);
2523 rel->sym_ptr_ptr = iname_pp;
2524 }
2525 else
2526 {
2527 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2528 rel->sym_ptr_ptr = secdata[IDATA5].sympp;
2529 }
2530 sec->orelocation = rpp;
2531 sec->reloc_count = 1;
2532 }
2533 break;
2534 case IDATA4:
2535 case IDATA5:
2536 /* An idata$4 or idata$5 is one word long, and has an
c9e38879 2537 rva to idata$6. */
252b5132
RH
2538
2539 si->data = xmalloc (4);
2540 si->size = 4;
2541
2542 if (exp->noname)
2543 {
2544 si->data[0] = exp->ordinal ;
2545 si->data[1] = exp->ordinal >> 8;
2546 si->data[2] = exp->ordinal >> 16;
2547 si->data[3] = 0x80;
2548 }
2549 else
2550 {
2551 sec->reloc_count = 1;
2552 memset (si->data, 0, si->size);
2553 rel = xmalloc (sizeof (arelent));
2554 rpp = xmalloc (sizeof (arelent *) * 2);
2555 rpp[0] = rel;
2556 rpp[1] = 0;
2557 rel->address = 0;
2558 rel->addend = 0;
2559 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2560 rel->sym_ptr_ptr = secdata[IDATA6].sympp;
2561 sec->orelocation = rpp;
2562 }
2563
2564 break;
2565
2566 case IDATA6:
2567 if (!exp->noname)
2568 {
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));
2578 }
2579 break;
2580 case IDATA7:
2581 si->size = 4;
c9e38879 2582 si->data =xmalloc (4);
252b5132
RH
2583 memset (si->data, 0, si->size);
2584 rel = xmalloc (sizeof (arelent));
2585 rpp = xmalloc (sizeof (arelent *) * 2);
2586 rpp[0] = rel;
2587 rel->address = 0;
2588 rel->addend = 0;
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;
2593 break;
2594
2595#ifdef DLLTOOL_PPC
2596 case PDATA:
2597 {
c9e38879 2598 /* The .pdata section is 5 words long.
b34976b6
AM
2599 Think of it as:
2600 struct
2601 {
2602 bfd_vma BeginAddress, [0x00]
2603 EndAddress, [0x04]
2604 ExceptionHandler, [0x08]
2605 HandlerData, [0x0c]
2606 PrologEndAddress; [0x10]
c9e38879 2607 }; */
252b5132
RH
2608
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
2611 we need to do:
2612
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:
2615 "..function_name".
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.
2620
2621 3. Lastly, the HandlerData field is set to 0x03, to indicate
c9e38879 2622 that this is a glue routine. */
252b5132
RH
2623 arelent *imglue, *ba_rel, *ea_rel, *pea_rel;
2624
c9e38879 2625 /* Alignment must be set to 2**2 or you get extra stuff. */
252b5132
RH
2626 bfd_set_section_alignment(abfd, sec, 2);
2627
2628 si->size = 4 * 5;
c9e38879 2629 si->data = xmalloc (si->size);
252b5132
RH
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));
2636 rpp[4] = 0;
2637
c9e38879 2638 /* Stick the toc reload instruction in the glue reloc. */
252b5132
RH
2639 bfd_put_32(abfd, ppc_glue_insn, (char *) &imglue->address);
2640
2641 imglue->addend = 0;
2642 imglue->howto = bfd_reloc_type_lookup (abfd,
2643 BFD_RELOC_32_GOTOFF);
2644 imglue->sym_ptr_ptr = fn_pp;
2645
2646 ba_rel->address = 0;
2647 ba_rel->addend = 0;
2648 ba_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2649 ba_rel->sym_ptr_ptr = fn_pp;
2650
c9e38879 2651 bfd_put_32 (abfd, 0x18, si->data + 0x04);
252b5132
RH
2652 ea_rel->address = 4;
2653 ea_rel->addend = 0;
2654 ea_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2655 ea_rel->sym_ptr_ptr = fn_pp;
2656
c9e38879
NC
2657 /* Mark it as glue. */
2658 bfd_put_32 (abfd, 0x03, si->data + 0x0c);
252b5132 2659
c9e38879
NC
2660 /* Mark the prolog end address. */
2661 bfd_put_32 (abfd, 0x0D, si->data + 0x10);
252b5132
RH
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;
2666
2667 sec->orelocation = rpp;
2668 sec->reloc_count = 4;
2669 break;
2670 }
2671 case RDATA:
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
c9e38879 2676 We use relocs to build this. */
252b5132
RH
2677 si->size = 8;
2678 si->data = xmalloc (8);
2679 memset (si->data, 0, si->size);
2680
2681 rpp = xmalloc (sizeof (arelent *) * 3);
2682 rpp[0] = rel = xmalloc (sizeof (arelent));
2683 rpp[1] = xmalloc (sizeof (arelent));
2684 rpp[2] = 0;
2685
2686 rel->address = 0;
2687 rel->addend = 0;
2688 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2689 rel->sym_ptr_ptr = fn_pp;
2690
2691 rel = rpp[1];
2692
2693 rel->address = 4;
2694 rel->addend = 0;
2695 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2696 rel->sym_ptr_ptr = toc_pp;
2697
2698 sec->orelocation = rpp;
2699 sec->reloc_count = 2;
2700 break;
2701#endif /* DLLTOOL_PPC */
2702 }
2703 }
2704
2705 {
2706 bfd_vma vma = 0;
c9e38879 2707 /* Size up all the sections. */
252b5132
RH
2708 for (i = 0; i < NSECS; i++)
2709 {
2710 sinfo *si = secdata + i;
2711
2712 bfd_set_section_size (abfd, si->sec, si->size);
2713 bfd_set_section_vma (abfd, si->sec, vma);
2714
2715/* vma += si->size;*/
2716 }
2717 }
c9e38879 2718 /* Write them out. */
252b5132
RH
2719 for (i = 0; i < NSECS; i++)
2720 {
2721 sinfo *si = secdata + i;
2722
2723 if (i == IDATA5 && no_idata5)
2724 continue;
2725
2726 if (i == IDATA4 && no_idata4)
2727 continue;
2728
2729 bfd_set_section_contents (abfd, si->sec,
2730 si->data, 0,
2731 si->size);
2732 }
2733
2734 bfd_set_symtab (abfd, ptrs, oidx);
2735 bfd_close (abfd);
49c24507 2736 abfd = bfd_openr (outname, HOW_BFD_READ_TARGET);
252b5132
RH
2737 return abfd;
2738 }
2739#endif
2740}
2741
2742static bfd *
2743make_head ()
2744{
bb0cb4db 2745 FILE *f = fopen (TMP_HEAD_S, FOPEN_WT);
252b5132 2746
661016bb
NC
2747 if (f == NULL)
2748 {
2749 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S);
2750 return NULL;
2751 }
26044998 2752
252b5132
RH
2753 fprintf (f, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C);
2754 fprintf (f, "\t.section .idata$2\n");
2755
2756 fprintf(f,"\t%s\t%s\n", ASM_GLOBAL,head_label);
2757
2758 fprintf (f, "%s:\n", head_label);
2759
2760 fprintf (f, "\t%shname%s\t%sPtr to image import by name list\n",
2761 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2762
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",
2768 ASM_RVA_BEFORE,
2769 imp_name_lab,
2770 ASM_RVA_AFTER,
2771 ASM_C);
2772 fprintf (f, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2773 ASM_RVA_BEFORE,
2774 ASM_RVA_AFTER, ASM_C);
2775
2776 fprintf (f, "%sStuff for compatibility\n", ASM_C);
2777
2778 if (!no_idata5)
2779 {
2780 fprintf (f, "\t.section\t.idata$5\n");
2781 fprintf (f, "\t%s\t0\n", ASM_LONG);
2782 fprintf (f, "fthunk:\n");
2783 }
26044998 2784
252b5132
RH
2785 if (!no_idata4)
2786 {
2787 fprintf (f, "\t.section\t.idata$4\n");
2788
2789 fprintf (f, "\t%s\t0\n", ASM_LONG);
2790 fprintf (f, "\t.section .idata$4\n");
2791 fprintf (f, "hname:\n");
2792 }
26044998 2793
252b5132
RH
2794 fclose (f);
2795
49c24507 2796 assemble_file (TMP_HEAD_S, TMP_HEAD_O);
252b5132 2797
49c24507 2798 return bfd_openr (TMP_HEAD_O, HOW_BFD_READ_TARGET);
252b5132
RH
2799}
2800
2801static bfd *
2802make_tail ()
2803{
bb0cb4db 2804 FILE *f = fopen (TMP_TAIL_S, FOPEN_WT);
252b5132 2805
661016bb
NC
2806 if (f == NULL)
2807 {
2808 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S);
2809 return NULL;
2810 }
26044998 2811
252b5132
RH
2812 if (!no_idata4)
2813 {
2814 fprintf (f, "\t.section .idata$4\n");
2815 fprintf (f, "\t%s\t0\n", ASM_LONG);
2816 }
26044998 2817
252b5132
RH
2818 if (!no_idata5)
2819 {
2820 fprintf (f, "\t.section .idata$5\n");
2821 fprintf (f, "\t%s\t0\n", ASM_LONG);
2822 }
2823
2824#ifdef DLLTOOL_PPC
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
c9e38879 2830 crt0). */
252b5132
RH
2831
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);
2838#endif
2839
2840#ifdef DLLTOOL_PPC
2841 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
c9e38879 2842 do too. Original, huh? */
252b5132
RH
2843 fprintf (f, "\t.section .idata$6\n");
2844#else
2845 fprintf (f, "\t.section .idata$7\n");
2846#endif
2847
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);
2851
2852 fclose (f);
2853
49c24507 2854 assemble_file (TMP_TAIL_S, TMP_TAIL_O);
26044998 2855
c9e38879 2856 return bfd_openr (TMP_TAIL_O, HOW_BFD_READ_TARGET);
252b5132
RH
2857}
2858
2859static void
2860gen_lib_file ()
2861{
2862 int i;
2863 export_type *exp;
2864 bfd *ar_head;
2865 bfd *ar_tail;
2866 bfd *outarch;
2867 bfd * head = 0;
2868
2869 unlink (imp_name);
2870
49c24507 2871 outarch = bfd_openw (imp_name, HOW_BFD_WRITE_TARGET);
252b5132
RH
2872
2873 if (!outarch)
2874 /* xgettext:c-format */
2875 fatal (_("Can't open .lib file: %s"), imp_name);
2876
2877 /* xgettext:c-format */
37cc8ec1 2878 inform (_("Creating library file: %s"), imp_name);
26044998 2879
252b5132
RH
2880 bfd_set_format (outarch, bfd_archive);
2881 outarch->has_armap = 1;
2882
26044998 2883 /* Work out a reasonable size of things to put onto one line. */
252b5132
RH
2884 ar_head = make_head ();
2885 ar_tail = make_tail();
2886
2887 if (ar_head == NULL || ar_tail == NULL)
2888 return;
26044998 2889
252b5132
RH
2890 for (i = 0; (exp = d_exports_lexically[i]); i++)
2891 {
2892 bfd *n = make_one_lib_file (exp, i);
2893 n->next = head;
2894 head = n;
2895 }
2896
c9e38879 2897 /* Now stick them all into the archive. */
252b5132
RH
2898 ar_head->next = head;
2899 ar_tail->next = ar_head;
2900 head = ar_tail;
2901
2902 if (! bfd_set_archive_head (outarch, head))
2903 bfd_fatal ("bfd_set_archive_head");
26044998 2904
252b5132
RH
2905 if (! bfd_close (outarch))
2906 bfd_fatal (imp_name);
2907
2908 while (head != NULL)
2909 {
2910 bfd *n = head->next;
2911 bfd_close (head);
2912 head = n;
2913 }
2914
c9e38879 2915 /* Delete all the temp files. */
252b5132
RH
2916 if (dontdeltemps == 0)
2917 {
2918 unlink (TMP_HEAD_O);
2919 unlink (TMP_HEAD_S);
2920 unlink (TMP_TAIL_O);
2921 unlink (TMP_TAIL_S);
2922 }
2923
2924 if (dontdeltemps < 2)
2925 {
bb0cb4db
ILT
2926 char *name;
2927
2928 name = (char *) alloca (sizeof TMP_STUB + 10);
252b5132
RH
2929 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
2930 {
bb0cb4db
ILT
2931 sprintf (name, "%s%05d.o", TMP_STUB, i);
2932 if (unlink (name) < 0)
252b5132 2933 /* xgettext:c-format */
37cc8ec1 2934 non_fatal (_("cannot delete %s: %s"), name, strerror (errno));
252b5132
RH
2935 }
2936 }
26044998 2937
252b5132
RH
2938 inform (_("Created lib file"));
2939}
2940
2941/**********************************************************************/
2942
2943/* Run through the information gathered from the .o files and the
c9e38879 2944 .def file and work out the best stuff. */
252b5132
RH
2945static int
2946pfunc (a, b)
2947 const void *a;
2948 const void *b;
2949{
2950 export_type *ap = *(export_type **) a;
2951 export_type *bp = *(export_type **) b;
2952 if (ap->ordinal == bp->ordinal)
2953 return 0;
2954
c9e38879 2955 /* Unset ordinals go to the bottom. */
252b5132
RH
2956 if (ap->ordinal == -1)
2957 return 1;
2958 if (bp->ordinal == -1)
2959 return -1;
2960 return (ap->ordinal - bp->ordinal);
2961}
2962
2963static int
2964nfunc (a, b)
2965 const void *a;
2966 const void *b;
2967{
2968 export_type *ap = *(export_type **) a;
2969 export_type *bp = *(export_type **) b;
2970
2971 return (strcmp (ap->name, bp->name));
2972}
2973
2974static void
2975remove_null_names (ptr)
2976 export_type **ptr;
2977{
2978 int src;
2979 int dst;
c9e38879 2980
252b5132
RH
2981 for (dst = src = 0; src < d_nfuncs; src++)
2982 {
2983 if (ptr[src])
2984 {
2985 ptr[dst] = ptr[src];
2986 dst++;
2987 }
2988 }
2989 d_nfuncs = dst;
2990}
2991
2992static void
2993dtab (ptr)
5ea695ed
NC
2994 export_type ** ptr
2995#ifndef SACDEBUG
2996ATTRIBUTE_UNUSED
2997#endif
2998 ;
252b5132
RH
2999{
3000#ifdef SACDEBUG
3001 int i;
3002 for (i = 0; i < d_nfuncs; i++)
3003 {
3004 if (ptr[i])
3005 {
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" : "");
3011 }
3012 else
3013 printf ("empty\n");
3014 }
3015#endif
3016}
3017
3018static void
3019process_duplicates (d_export_vec)
3020 export_type **d_export_vec;
3021{
3022 int more = 1;
3023 int i;
c9e38879 3024
252b5132
RH
3025 while (more)
3026 {
3027
3028 more = 0;
c9e38879 3029 /* Remove duplicates. */
252b5132
RH
3030 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), nfunc);
3031
3032 dtab (d_export_vec);
3033 for (i = 0; i < d_nfuncs - 1; i++)
3034 {
3035 if (strcmp (d_export_vec[i]->name,
3036 d_export_vec[i + 1]->name) == 0)
3037 {
3038
3039 export_type *a = d_export_vec[i];
3040 export_type *b = d_export_vec[i + 1];
3041
3042 more = 1;
26044998 3043
252b5132 3044 /* xgettext:c-format */
37cc8ec1 3045 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
252b5132 3046 a->name, a->ordinal, b->ordinal);
26044998 3047
252b5132
RH
3048 if (a->ordinal != -1
3049 && b->ordinal != -1)
3050 /* xgettext:c-format */
3051 fatal (_("Error, duplicate EXPORT with oridinals: %s"),
3052 a->name);
3053
c9e38879 3054 /* Merge attributes. */
252b5132
RH
3055 b->ordinal = a->ordinal > 0 ? a->ordinal : b->ordinal;
3056 b->constant |= a->constant;
3057 b->noname |= a->noname;
3058 b->data |= a->data;
3059 d_export_vec[i] = 0;
3060 }
3061
3062 dtab (d_export_vec);
3063 remove_null_names (d_export_vec);
3064 dtab (d_export_vec);
3065 }
3066 }
3067
3068
c9e38879 3069 /* Count the names. */
252b5132
RH
3070 for (i = 0; i < d_nfuncs; i++)
3071 {
3072 if (!d_export_vec[i]->noname)
3073 d_named_nfuncs++;
3074 }
3075}
3076
3077static void
3078fill_ordinals (d_export_vec)
3079 export_type **d_export_vec;
3080{
3081 int lowest = -1;
3082 int i;
3083 char *ptr;
3084 int size = 65536;
3085
3086 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3087
c9e38879 3088 /* Fill in the unset ordinals with ones from our range. */
252b5132
RH
3089 ptr = (char *) xmalloc (size);
3090
3091 memset (ptr, 0, size);
3092
c9e38879 3093 /* Mark in our large vector all the numbers that are taken. */
252b5132
RH
3094 for (i = 0; i < d_nfuncs; i++)
3095 {
3096 if (d_export_vec[i]->ordinal != -1)
3097 {
3098 ptr[d_export_vec[i]->ordinal] = 1;
c9e38879 3099
252b5132 3100 if (lowest == -1 || d_export_vec[i]->ordinal < lowest)
c9e38879 3101 lowest = d_export_vec[i]->ordinal;
252b5132
RH
3102 }
3103 }
3104
3105 /* Start at 1 for compatibility with MS toolchain. */
3106 if (lowest == -1)
3107 lowest = 1;
3108
26044998 3109 /* Now fill in ordinals where the user wants us to choose. */
252b5132
RH
3110 for (i = 0; i < d_nfuncs; i++)
3111 {
3112 if (d_export_vec[i]->ordinal == -1)
3113 {
3114 register int j;
3115
26044998 3116 /* First try within or after any user supplied range. */
252b5132
RH
3117 for (j = lowest; j < size; j++)
3118 if (ptr[j] == 0)
3119 {
3120 ptr[j] = 1;
3121 d_export_vec[i]->ordinal = j;
3122 goto done;
3123 }
3124
26044998 3125 /* Then try before the range. */
252b5132
RH
3126 for (j = lowest; j >0; j--)
3127 if (ptr[j] == 0)
3128 {
3129 ptr[j] = 1;
3130 d_export_vec[i]->ordinal = j;
3131 goto done;
3132 }
3133 done:;
3134 }
3135 }
3136
3137 free (ptr);
3138
c9e38879 3139 /* And resort. */
252b5132
RH
3140 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3141
3142 /* Work out the lowest and highest ordinal numbers. */
3143 if (d_nfuncs)
3144 {
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;
3149 }
3150}
3151
3152static int
3153alphafunc (av,bv)
3154 const void *av;
3155 const void *bv;
3156{
3157 const export_type **a = (const export_type **) av;
3158 const export_type **b = (const export_type **) bv;
3159
3160 return strcmp ((*a)->name, (*b)->name);
3161}
3162
3163static void
3164mangle_defs ()
3165{
c9e38879 3166 /* First work out the minimum ordinal chosen. */
252b5132
RH
3167 export_type *exp;
3168
3169 int i;
3170 int hint = 0;
3171 export_type **d_export_vec
3172 = (export_type **) xmalloc (sizeof (export_type *) * d_nfuncs);
3173
3174 inform (_("Processing definitions"));
26044998 3175
252b5132 3176 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
c9e38879 3177 d_export_vec[i] = exp;
252b5132
RH
3178
3179 process_duplicates (d_export_vec);
3180 fill_ordinals (d_export_vec);
3181
c9e38879 3182 /* Put back the list in the new order. */
252b5132
RH
3183 d_exports = 0;
3184 for (i = d_nfuncs - 1; i >= 0; i--)
3185 {
3186 d_export_vec[i]->next = d_exports;
3187 d_exports = d_export_vec[i];
3188 }
3189
c9e38879 3190 /* Build list in alpha order. */
252b5132
RH
3191 d_exports_lexically = (export_type **)
3192 xmalloc (sizeof (export_type *) * (d_nfuncs + 1));
3193
3194 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
c9e38879
NC
3195 d_exports_lexically[i] = exp;
3196
252b5132
RH
3197 d_exports_lexically[i] = 0;
3198
3199 qsort (d_exports_lexically, i, sizeof (export_type *), alphafunc);
3200
c9e38879 3201 /* Fill exp entries with their hint values. */
252b5132 3202 for (i = 0; i < d_nfuncs; i++)
c9e38879
NC
3203 if (!d_exports_lexically[i]->noname || show_allnames)
3204 d_exports_lexically[i]->hint = hint++;
26044998 3205
252b5132
RH
3206 inform (_("Processed definitions"));
3207}
3208
3209/**********************************************************************/
3210
3211static void
3212usage (file, status)
3213 FILE *file;
3214 int status;
3215{
3216 /* xgetext:c-format */
8b53311e 3217 fprintf (file, _("Usage %s <option(s)> <object-file(s)>\n"), program_name);
252b5132 3218 /* xgetext:c-format */
661016bb 3219 fprintf (file, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname);
7e301c9c 3220 fprintf (file, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
252b5132
RH
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"));
661016bb
NC
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"));
252b5132
RH
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"));
5f0f29c3 3239 fprintf (file, _(" -C --compat-implib Create backward compatible import library.\n"));
252b5132
RH
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"));
49e315b1
NC
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"));
3248#endif
252b5132
RH
3249 exit (status);
3250}
3251
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)
252b5132
RH
3256
3257static const struct option long_options[] =
3258{
3259 {"no-delete", no_argument, NULL, 'n'},
3260 {"dllname", required_argument, NULL, 'D'},
49e315b1
NC
3261 {"no-idata4", no_argument, NULL, 'x'},
3262 {"no-idata5", no_argument, NULL, 'c'},
252b5132
RH
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'},
49e315b1 3283 {"mcore-elf", required_argument, NULL, 'M'},
5f0f29c3 3284 {"compat-implib", no_argument, NULL, 'C'},
0e11a9e9 3285 {"temp-prefix", required_argument, NULL, 't'},
5ea695ed 3286 {NULL,0,NULL,0}
252b5132
RH
3287};
3288
e80ff7de
AM
3289int main PARAMS ((int, char **));
3290
252b5132
RH
3291int
3292main (ac, av)
3293 int ac;
3294 char **av;
3295{
3296 int c;
3297 int i;
3298 char *firstarg = 0;
3299 program_name = av[0];
3300 oav = av;
3301
3302#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
3303 setlocale (LC_MESSAGES, "");
3882b010
L
3304#endif
3305#if defined (HAVE_SETLOCALE)
3306 setlocale (LC_CTYPE, "");
252b5132
RH
3307#endif
3308 bindtextdomain (PACKAGE, LOCALEDIR);
3309 textdomain (PACKAGE);
3310
49e315b1 3311 while ((c = getopt_long (ac, av,
26044998 3312#ifdef DLLTOOL_MCORE_ELF
8b53311e 3313 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHhM:L:F:",
49e315b1 3314#else
8b53311e 3315 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHh",
49e315b1 3316#endif
252b5132
RH
3317 long_options, 0))
3318 != EOF)
3319 {
3320 switch (c)
3321 {
252b5132 3322 case OPTION_EXPORT_ALL_SYMS:
b34976b6 3323 export_all_symbols = TRUE;
252b5132
RH
3324 break;
3325 case OPTION_NO_EXPORT_ALL_SYMS:
b34976b6 3326 export_all_symbols = FALSE;
252b5132
RH
3327 break;
3328 case OPTION_EXCLUDE_SYMS:
3329 add_excludes (optarg);
3330 break;
3331 case OPTION_NO_DEFAULT_EXCLUDES:
b34976b6 3332 do_default_excludes = FALSE;
252b5132 3333 break;
49e315b1
NC
3334 case 'x':
3335 no_idata4 = 1;
3336 break;
3337 case 'c':
3338 no_idata5 = 1;
3339 break;
252b5132
RH
3340 case 'S':
3341 as_name = optarg;
3342 break;
0e11a9e9
CF
3343 case 't':
3344 tmp_prefix = optarg;
3345 break;
252b5132
RH
3346 case 'f':
3347 as_flags = optarg;
3348 break;
3349
3350 /* ignored for compatibility */
3351 case 'u':
3352 break;
3353 case 'a':
3354 add_indirect = 1;
3355 break;
3356 case 'z':
3357 output_def = fopen (optarg, FOPEN_WT);
3358 break;
3359 case 'D':
3360 dll_name = optarg;
3361 break;
3362 case 'l':
3363 imp_name = optarg;
3364 break;
3365 case 'e':
3366 exp_name = optarg;
3367 break;
8b53311e 3368 case 'H':
252b5132
RH
3369 case 'h':
3370 usage (stdout, 0);
3371 break;
3372 case 'm':
3373 mname = optarg;
3374 break;
3375 case 'v':
3376 verbose = 1;
3377 break;
3378 case 'V':
3379 print_version (program_name);
3380 break;
252b5132
RH
3381 case 'U':
3382 add_underscore = 1;
3383 break;
3384 case 'k':
3385 killat = 1;
3386 break;
3387 case 'A':
3388 add_stdcall_alias = 1;
3389 break;
3390 case 'd':
3391 def_file = optarg;
3392 break;
3393 case 'n':
3394 dontdeltemps++;
3395 break;
3396 case 'b':
3397 base_file = fopen (optarg, FOPEN_RB);
26044998 3398
252b5132
RH
3399 if (!base_file)
3400 /* xgettext:c-format */
3401 fatal (_("Unable to open base-file: %s"), optarg);
3402
3403 break;
49e315b1
NC
3404#ifdef DLLTOOL_MCORE_ELF
3405 case 'M':
3406 mcore_elf_out_file = optarg;
3407 break;
3408 case 'L':
3409 mcore_elf_linker = optarg;
3410 break;
3411 case 'F':
3412 mcore_elf_linker_flags = optarg;
3413 break;
3414#endif
5f0f29c3
NC
3415 case 'C':
3416 create_compat_implib = 1;
3417 break;
252b5132
RH
3418 default:
3419 usage (stderr, 1);
3420 break;
3421 }
3422 }
3423
3424 for (i = 0; mtable[i].type; i++)
762100ed
NC
3425 if (strcmp (mtable[i].type, mname) == 0)
3426 break;
252b5132
RH
3427
3428 if (!mtable[i].type)
3429 /* xgettext:c-format */
3430 fatal (_("Machine '%s' not supported"), mname);
3431
3432 machine = i;
3433
252b5132
RH
3434 if (!dll_name && exp_name)
3435 {
3436 int len = strlen (exp_name) + 5;
3437 dll_name = xmalloc (len);
3438 strcpy (dll_name, exp_name);
3439 strcat (dll_name, ".dll");
3440 }
3441
49e315b1
NC
3442 if (as_name == NULL)
3443 as_name = deduce_name ("as");
26044998 3444
252b5132
RH
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)
b34976b6 3449 do_default_excludes = FALSE;
26044998 3450
252b5132
RH
3451 if (do_default_excludes)
3452 set_default_excludes ();
3453
3454 if (def_file)
3455 process_def_file (def_file);
3456
3457 while (optind < ac)
3458 {
3459 if (!firstarg)
3460 firstarg = av[optind];
3461 scan_obj_file (av[optind]);
3462 optind++;
3463 }
3464
3465 mangle_defs ();
3466
3467 if (exp_name)
3468 gen_exp_file ();
26044998 3469
252b5132
RH
3470 if (imp_name)
3471 {
26044998 3472 /* Make imp_name safe for use as a label. */
252b5132
RH
3473 char *p;
3474
3475 imp_name_lab = xstrdup (imp_name);
3476 for (p = imp_name_lab; *p; p++)
3477 {
3882b010 3478 if (!ISALNUM (*p))
252b5132
RH
3479 *p = '_';
3480 }
3481 head_label = make_label("_head_", imp_name_lab);
3482 gen_lib_file ();
3483 }
26044998 3484
252b5132
RH
3485 if (output_def)
3486 gen_def_file ();
26044998 3487
49e315b1
NC
3488#ifdef DLLTOOL_MCORE_ELF
3489 if (mcore_elf_out_file)
3490 mcore_elf_gen_out_file ();
3491#endif
26044998 3492
252b5132
RH
3493 return 0;
3494}
49e315b1 3495
bb0cb4db
ILT
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
2481e6a2 3499 appropriate. */
bb0cb4db
ILT
3500
3501static char *
3502look_for_prog (prog_name, prefix, end_prefix)
3503 const char *prog_name;
3504 const char *prefix;
3505 int end_prefix;
3506{
3507 struct stat s;
3508 char *cmd;
3509
26044998
KH
3510 cmd = xmalloc (strlen (prefix)
3511 + strlen (prog_name)
2481e6a2 3512#ifdef HAVE_EXECUTABLE_SUFFIX
26044998 3513 + strlen (EXECUTABLE_SUFFIX)
bb0cb4db
ILT
3514#endif
3515 + 10);
3516 strcpy (cmd, prefix);
3517
3518 sprintf (cmd + end_prefix, "%s", prog_name);
3519
3520 if (strchr (cmd, '/') != NULL)
3521 {
3522 int found;
3523
3524 found = (stat (cmd, &s) == 0
2481e6a2 3525#ifdef HAVE_EXECUTABLE_SUFFIX
26044998 3526 || stat (strcat (cmd, EXECUTABLE_SUFFIX), &s) == 0
bb0cb4db
ILT
3527#endif
3528 );
3529
3530 if (! found)
26044998 3531 {
bb0cb4db
ILT
3532 /* xgettext:c-format */
3533 inform (_("Tried file: %s"), cmd);
3534 free (cmd);
3535 return NULL;
3536 }
3537 }
3538
3539 /* xgettext:c-format */
3540 inform (_("Using file: %s"), cmd);
3541
3542 return cmd;
3543}
3544
49e315b1
NC
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
26044998 3548 run "i386-pe-as" or "ppc-pe-ld".
bb0cb4db
ILT
3549
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.
3552
3553 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
26044998 3554 deduce_name("as") uses the following search order:
bb0cb4db
ILT
3555
3556 /usr/local/bin/i586-cygwin32-as
3557 /usr/local/bin/as
3558 as
26044998 3559
bb0cb4db
ILT
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.
3562
3563 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
3564 as the fallback, but rather return i586-cygwin32-as.
26044998 3565
bb0cb4db
ILT
3566 Oh, and given, argv[0] = dlltool, it'll return "as".
3567
3568 Returns a dynamically allocated string. */
3569
49e315b1 3570static char *
bb0cb4db
ILT
3571deduce_name (prog_name)
3572 const char *prog_name;
49e315b1 3573{
bb0cb4db
ILT
3574 char *cmd;
3575 char *dash, *slash, *cp;
49e315b1 3576
bb0cb4db
ILT
3577 dash = NULL;
3578 slash = NULL;
3579 for (cp = program_name; *cp != '\0'; ++cp)
3580 {
3581 if (*cp == '-')
3582 dash = cp;
3583 if (
3584#if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
3585 *cp == ':' || *cp == '\\' ||
3586#endif
3587 *cp == '/')
3588 {
3589 slash = cp;
3590 dash = NULL;
3591 }
3592 }
49e315b1 3593
bb0cb4db 3594 cmd = NULL;
49e315b1 3595
bb0cb4db
ILT
3596 if (dash != NULL)
3597 {
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);
3601 }
49e315b1 3602
bb0cb4db
ILT
3603 if (slash != NULL && cmd == NULL)
3604 {
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);
3608 }
3609
3610 if (cmd == NULL)
3611 {
3612 /* Just return PROG_NAME as is. */
3613 cmd = xstrdup (prog_name);
3614 }
3615
3616 return cmd;
49e315b1
NC
3617}
3618
3619#ifdef DLLTOOL_MCORE_ELF
3620typedef struct fname_cache
3621{
3622 char * filename;
3623 struct fname_cache * next;
3624}
3625fname_cache;
3626
3627static fname_cache fnames;
3628
3629static void
3630mcore_elf_cache_filename (char * filename)
3631{
3632 fname_cache * ptr;
3633
3634 ptr = & fnames;
3635
3636 while (ptr->next != NULL)
3637 ptr = ptr->next;
3638
3639 ptr->filename = filename;
3640 ptr->next = (fname_cache *) malloc (sizeof (fname_cache));
3641 if (ptr->next != NULL)
3642 ptr->next->next = NULL;
3643}
3644
762100ed
NC
3645#define MCORE_ELF_TMP_OBJ "mcoreelf.o"
3646#define MCORE_ELF_TMP_EXP "mcoreelf.exp"
3647#define MCORE_ELF_TMP_LIB "mcoreelf.lib"
3648
49e315b1
NC
3649static void
3650mcore_elf_gen_out_file (void)
3651{
3652 fname_cache * ptr;
bb0cb4db 3653 dyn_string_t ds;
49e315b1
NC
3654
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. */
3657 ptr = & fnames;
3658
bb0cb4db 3659 ds = dyn_string_new (100);
55b9cdf1 3660 dyn_string_append_cstr (ds, "-r ");
49e315b1
NC
3661
3662 if (mcore_elf_linker_flags != NULL)
55b9cdf1 3663 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
26044998 3664
49e315b1
NC
3665 while (ptr->next != NULL)
3666 {
55b9cdf1
AM
3667 dyn_string_append_cstr (ds, ptr->filename);
3668 dyn_string_append_cstr (ds, " ");
49e315b1
NC
3669
3670 ptr = ptr->next;
3671 }
3672
55b9cdf1
AM
3673 dyn_string_append_cstr (ds, "-o ");
3674 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
49e315b1
NC
3675
3676 if (mcore_elf_linker == NULL)
3677 mcore_elf_linker = deduce_name ("ld");
26044998 3678
bb0cb4db
ILT
3679 run (mcore_elf_linker, ds->s);
3680
3681 dyn_string_delete (ds);
49e315b1 3682
26044998 3683 /* Step two. Create a .exp file and a .lib file from the temporary file.
c9e38879 3684 Do this by recursively invoking dlltool... */
bb0cb4db
ILT
3685 ds = dyn_string_new (100);
3686
55b9cdf1
AM
3687 dyn_string_append_cstr (ds, "-S ");
3688 dyn_string_append_cstr (ds, as_name);
26044998 3689
55b9cdf1
AM
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);
49e315b1
NC
3696
3697 if (verbose)
55b9cdf1 3698 dyn_string_append_cstr (ds, " -v");
26044998 3699
49e315b1 3700 if (dontdeltemps)
762100ed 3701 {
55b9cdf1 3702 dyn_string_append_cstr (ds, " -n");
26044998 3703
762100ed 3704 if (dontdeltemps > 1)
55b9cdf1 3705 dyn_string_append_cstr (ds, " -n");
762100ed 3706 }
49e315b1
NC
3707
3708 /* XXX - FIME: ought to check/copy other command line options as well. */
bb0cb4db
ILT
3709 run (program_name, ds->s);
3710
3711 dyn_string_delete (ds);
49e315b1 3712
74479bd3 3713 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
bb0cb4db
ILT
3714 ds = dyn_string_new (100);
3715
55b9cdf1 3716 dyn_string_append_cstr (ds, "-shared ");
49e315b1
NC
3717
3718 if (mcore_elf_linker_flags)
55b9cdf1
AM
3719 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
3720
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);
49e315b1 3727
bb0cb4db 3728 run (mcore_elf_linker, ds->s);
49e315b1 3729
bb0cb4db 3730 dyn_string_delete (ds);
762100ed
NC
3731
3732 if (dontdeltemps == 0)
74479bd3 3733 unlink (MCORE_ELF_TMP_EXP);
762100ed
NC
3734
3735 if (dontdeltemps < 2)
3736 unlink (MCORE_ELF_TMP_OBJ);
49e315b1
NC
3737}
3738#endif /* DLLTOOL_MCORE_ELF */