]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/collect2.c
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / collect2.c
CommitLineData
1c84128d
RK
1/* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
99dee823 3 Copyright (C) 1992-2021 Free Software Foundation, Inc.
4e81a331 4 Contributed by Chris Smith (csmith@convex.com).
96317659 5 Heavily modified by Michael Meissner (meissner@cygnus.com),
4e81a331
RS
6 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
7
1322177d 8This file is part of GCC.
4e81a331 9
1322177d
LB
10GCC is free software; you can redistribute it and/or modify it under
11the terms of the GNU General Public License as published by the Free
9dcd6f09 12Software Foundation; either version 3, or (at your option) any later
1322177d 13version.
4e81a331 14
1322177d
LB
15GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16WARRANTY; without even the implied warranty of MERCHANTABILITY or
17FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18for more details.
4e81a331
RS
19
20You should have received a copy of the GNU General Public License
9dcd6f09
NC
21along with GCC; see the file COPYING3. If not see
22<http://www.gnu.org/licenses/>. */
4e81a331
RS
23
24
0f41302f 25/* Build tables of static constructors and destructors and run ld. */
4e81a331 26
c102bba0 27#include "config.h"
670ee920 28#include "system.h"
4977bab6
ZW
29#include "coretypes.h"
30#include "tm.h"
ba78087b 31#include "filenames.h"
c2a73de2 32#include "file-find.h"
4098a6d4
IS
33#include "simple-object.h"
34#include "lto-section-names.h"
4e81a331 35
ad211091
KT
36/* TARGET_64BIT may be defined to use driver specific functionality. */
37#undef TARGET_64BIT
38#define TARGET_64BIT TARGET_64BIT_DEFAULT
39
512b62fb
JM
40#ifndef LIBRARY_PATH_ENV
41#define LIBRARY_PATH_ENV "LIBRARY_PATH"
42#endif
43
c102bba0
RK
44#define COLLECT
45
2edfd4ee 46#include "collect2.h"
dfb636dc 47#include "collect2-aix.h"
5f0ad6a5 48#include "collect-utils.h"
9e350e99 49#include "diagnostic.h"
c102bba0
RK
50#include "demangle.h"
51#include "obstack.h"
ab87f8c8 52#include "intl.h"
9f8f4efe 53#include "version.h"
ed5b9462
RS
54\f
55/* On certain systems, we have code that works by scanning the object file
56 directly. But this code uses system-specific header files and library
bb59f9a6 57 functions, so turn it off in a cross-compiler. Likewise, the names of
db126753 58 the utilities are not correct for a cross-compiler; we have to hope that
bb59f9a6 59 cross-versions are in the proper directories. */
ed5b9462 60
2989d30c 61#ifdef CROSS_DIRECTORY_STRUCTURE
dfb636dc 62#ifndef CROSS_AIX_SUPPORT
ed5b9462 63#undef OBJECT_FORMAT_COFF
dfb636dc 64#endif
bb59f9a6
RS
65#undef MD_EXEC_PREFIX
66#undef REAL_LD_FILE_NAME
67#undef REAL_NM_FILE_NAME
68#undef REAL_STRIP_FILE_NAME
ed5b9462
RS
69#endif
70
db126753 71/* If we cannot use a special method, use the ordinary one:
ed5b9462
RS
72 run nm to find what symbols are present.
73 In a cross-compiler, this means you need a cross nm,
db126753 74 but that is not quite as unpleasant as special headers. */
ed5b9462 75
4a023207 76#if !defined (OBJECT_FORMAT_COFF)
ed5b9462
RS
77#define OBJECT_FORMAT_NONE
78#endif
79
80#ifdef OBJECT_FORMAT_COFF
81
dfb636dc 82#ifndef CROSS_DIRECTORY_STRUCTURE
ed5b9462
RS
83#include <a.out.h>
84#include <ar.h>
85
86#ifdef UMAX
87#include <sgs.h>
88#endif
89
033ba47c
RS
90/* Many versions of ldfcn.h define these. */
91#ifdef FREAD
ed5b9462
RS
92#undef FREAD
93#undef FWRITE
94#endif
95
96#include <ldfcn.h>
dfb636dc 97#endif
ed5b9462 98
7243ba7d
RK
99/* Some systems have an ISCOFF macro, but others do not. In some cases
100 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
159b3be1 101 that either do not have an ISCOFF macro in /usr/include or for those
7243ba7d
RK
102 where it is wrong. */
103
e99467d2
RS
104#ifndef MY_ISCOFF
105#define MY_ISCOFF(X) ISCOFF (X)
106#endif
107
ed5b9462
RS
108#endif /* OBJECT_FORMAT_COFF */
109
ed5b9462
RS
110#ifdef OBJECT_FORMAT_NONE
111
4e81a331
RS
112/* Default flags to pass to nm. */
113#ifndef NM_FLAGS
2ce3c6c6 114#define NM_FLAGS "-n"
4e81a331
RS
115#endif
116
ed5b9462 117#endif /* OBJECT_FORMAT_NONE */
d6cf3187
RS
118
119/* Some systems use __main in a way incompatible with its use in gcc, in these
120 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
77bbd421 121 give the same symbol without quotes for an alternative entry point. */
d6cf3187
RS
122#ifndef NAME__MAIN
123#define NAME__MAIN "__main"
d6cf3187
RS
124#endif
125
6f87c7d8
JM
126/* This must match tree.h. */
127#define DEFAULT_INIT_PRIORITY 65535
128
414e05cf
RE
129#ifndef COLLECT_SHARED_INIT_FUNC
130#define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
131 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
132#endif
133#ifndef COLLECT_SHARED_FINI_FUNC
134#define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
135 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
136#endif
137
9acd4a03 138#ifdef LDD_SUFFIX
68d69835
JM
139#define SCAN_LIBRARIES
140#endif
a3184468 141
881466d8
JDA
142#ifndef SHLIB_SUFFIX
143#define SHLIB_SUFFIX ".so"
144#endif
145
a3184468
JM
146#ifdef USE_COLLECT2
147int do_collecting = 1;
148#else
149int do_collecting = 0;
150#endif
84db136d 151
7e49a4b3
OH
152/* Cook up an always defined indication of whether we proceed the
153 "EXPORT_LIST" way. */
154
155#ifdef COLLECT_EXPORT_LIST
156#define DO_COLLECT_EXPORT_LIST 1
157#else
158#define DO_COLLECT_EXPORT_LIST 0
159#endif
160
84db136d
JM
161/* Nonzero if we should suppress the automatic demangling of identifiers
162 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
163int no_demangle;
4e81a331 164\f
0f41302f 165/* Linked lists of constructor and destructor names. */
4e81a331 166
159b3be1 167struct id
4e81a331
RS
168{
169 struct id *next;
170 int sequence;
171 char name[1];
172};
173
174struct head
175{
176 struct id *first;
177 struct id *last;
178 int number;
179};
180
4e81a331 181static int rflag; /* true if -r */
a87104d9 182static int strip_flag; /* true if -s */
db126753
DE
183#ifdef COLLECT_EXPORT_LIST
184static int export_flag; /* true if -bE */
f5e04914 185static int aix64_flag; /* true if -b64 */
7142ae77 186static int aixrtl_flag; /* true if -brtl */
e721d113
DE
187static int aixlazy_flag; /* true if -blazy */
188static int visibility_flag; /* true if -fvisibility */
db126753 189#endif
4e81a331 190
d7f09764
DN
191enum lto_mode_d {
192 LTO_MODE_NONE, /* Not doing LTO. */
193 LTO_MODE_LTO, /* Normal LTO. */
194 LTO_MODE_WHOPR /* WHOPR. */
195};
196
197/* Current LTO mode. */
f3ba16d0
RB
198#ifdef ENABLE_LTO
199static enum lto_mode_d lto_mode = LTO_MODE_WHOPR;
200#else
d7f09764 201static enum lto_mode_d lto_mode = LTO_MODE_NONE;
f3ba16d0 202#endif
d7f09764 203
7c6d86cc 204bool helpflag; /* true if --help */
4e81a331 205
c22cacf3 206static int shared_obj; /* true if -shared */
6a513e2a 207static int static_obj; /* true if -static */
68d69835 208
73d53120
BE
209static const char *c_file; /* <xxx>.c for constructor/destructor list. */
210static const char *o_file; /* <xxx>.o for constructor/destructor list. */
db126753 211#ifdef COLLECT_EXPORT_LIST
c22cacf3 212static const char *export_file; /* <xxx>.x for AIX export list. */
db126753 213#endif
d7f09764 214static char **lto_o_files; /* Output files for LTO. */
d4058195
KG
215static const char *output_file; /* Output file for ld. */
216static const char *nm_file_name; /* pathname of nm */
84bc3b4f 217#ifdef LDD_SUFFIX
d4058195 218static const char *ldd_file_name; /* pathname of ldd (or equivalent) */
84bc3b4f 219#endif
d4058195 220static const char *strip_file_name; /* pathname of strip */
c22cacf3 221const char *c_file_name; /* pathname of gcc */
cbbbd917 222static char *initname, *fininame; /* names of init and fini funcs */
4e81a331 223
44178879
DE
224
225#ifdef TARGET_AIX_VERSION
226static char *aix_shared_initname;
227static char *aix_shared_fininame; /* init/fini names as per the scheme
228 described in config/rs6000/aix.h */
229#endif
230
4e81a331
RS
231static struct head constructors; /* list of constructors found */
232static struct head destructors; /* list of destructors found */
db126753 233#ifdef COLLECT_EXPORT_LIST
cbbbd917 234static struct head exports; /* list of exported symbols */
db126753 235#endif
0021b564 236static struct head frame_tables; /* list of frame unwind info tables */
4e81a331 237
5f0ad6a5 238bool at_file_supplied; /* Whether to use @file arguments */
2091ff66 239
a3184468 240struct obstack temporary_obstack;
a3184468
JM
241char * temporary_firstobj;
242
781a1758
RS
243/* A string that must be prepended to a target OS path in order to find
244 it on the host system. */
245#ifdef TARGET_SYSTEM_ROOT
246static const char *target_system_root = TARGET_SYSTEM_ROOT;
247#else
248static const char *target_system_root = "";
249#endif
250
9178a345
OH
251/* Whether we may unlink the output file, which should be set as soon as we
252 know we have successfully produced it. This is typically useful to prevent
253 blindly attempting to unlink a read-only output that the target linker
254 would leave untouched. */
255bool may_unlink_output_file = false;
256
db126753 257#ifdef COLLECT_EXPORT_LIST
ec5c56db 258/* Lists to keep libraries to be scanned for global constructors/destructors. */
db126753 259static struct head libs; /* list of libraries */
6a513e2a 260static struct head static_libs; /* list of statically linked libraries */
db126753
DE
261static struct path_prefix cmdline_lib_dirs; /* directories specified with -L */
262static struct path_prefix libpath_lib_dirs; /* directories in LIBPATH */
263static struct path_prefix *libpaths[3] = {&cmdline_lib_dirs,
264 &libpath_lib_dirs, NULL};
db126753
DE
265#endif
266
d7f09764
DN
267/* List of names of object files containing LTO information.
268 These are a subset of the object file names appearing on the
269 command line, and must be identical, in the sense of pointer
270 equality, with the names passed to maybe_run_lto_and_relink(). */
271
272struct lto_object
273{
274 const char *name; /* Name of object file. */
275 struct lto_object *next; /* Next in linked list. */
276};
277
278struct lto_object_list
279{
280 struct lto_object *first; /* First list element. */
281 struct lto_object *last; /* Last list element. */
282};
283
284static struct lto_object_list lto_objects;
285
4326ea40
OH
286/* Special kinds of symbols that a name may denote. */
287
a79683d5 288enum symkind {
4326ea40
OH
289 SYM_REGULAR = 0, /* nothing special */
290
291 SYM_CTOR = 1, /* constructor */
292 SYM_DTOR = 2, /* destructor */
293 SYM_INIT = 3, /* shared object routine that calls all the ctors */
294 SYM_FINI = 4, /* shared object routine that calls all the dtors */
44178879
DE
295 SYM_DWEH = 5, /* DWARF exception handling table */
296 SYM_AIXI = 6,
297 SYM_AIXD = 7
a79683d5 298};
4326ea40 299
5f0ad6a5
BS
300const char tool_name[] = "collect2";
301
4326ea40
OH
302static symkind is_ctor_dtor (const char *);
303
d7f09764 304static void maybe_unlink_list (char **);
159b3be1
AJ
305static void add_to_list (struct head *, const char *);
306static int extract_init_priority (const char *);
307static void sort_ids (struct head *);
308static void write_list (FILE *, const char *, struct id *);
487a6e06 309#ifdef COLLECT_EXPORT_LIST
159b3be1 310static void dump_list (FILE *, const char *, struct id *);
487a6e06
KG
311#endif
312#if 0
159b3be1 313static void dump_prefix_list (FILE *, const char *, struct prefix_list *);
d4058195 314#endif
159b3be1
AJ
315static void write_list_with_asm (FILE *, const char *, struct id *);
316static void write_c_file (FILE *, const char *);
317static void write_c_file_stat (FILE *, const char *);
d4058195 318#ifndef LD_INIT_SWITCH
159b3be1 319static void write_c_file_glob (FILE *, const char *);
487a6e06 320#endif
1d300e19 321#ifdef SCAN_LIBRARIES
159b3be1 322static void scan_libraries (const char *);
1d300e19 323#endif
db126753 324#ifdef COLLECT_EXPORT_LIST
159b3be1 325static int is_in_list (const char *, struct id *);
159b3be1
AJ
326static void write_aix_file (FILE *, struct id *);
327static char *resolve_lib_name (const char *);
db126753 328#endif
159b3be1 329static char *extract_string (const char **);
11afe8e8
MS
330static void post_ld_pass (bool);
331static void process_args (int *argcp, char **argv);
7e49a4b3
OH
332
333/* Enumerations describing which pass this is for scanning the
334 program file ... */
335
a79683d5 336enum scanpass {
7e49a4b3
OH
337 PASS_FIRST, /* without constructors */
338 PASS_OBJ, /* individual objects */
339 PASS_LIB, /* looking for shared libraries */
d7f09764
DN
340 PASS_SECOND, /* with constructors linked in */
341 PASS_LTOINFO /* looking for objects with LTO info */
a79683d5 342};
7e49a4b3
OH
343
344/* ... and which kinds of symbols are to be considered. */
345
346enum scanfilter_masks {
347 SCAN_NOTHING = 0,
348
b8698a0f 349 SCAN_CTOR = 1 << SYM_CTOR,
7e49a4b3
OH
350 SCAN_DTOR = 1 << SYM_DTOR,
351 SCAN_INIT = 1 << SYM_INIT,
352 SCAN_FINI = 1 << SYM_FINI,
353 SCAN_DWEH = 1 << SYM_DWEH,
44178879
DE
354 SCAN_AIXI = 1 << SYM_AIXI,
355 SCAN_AIXD = 1 << SYM_AIXD,
7e49a4b3
OH
356 SCAN_ALL = ~0
357};
358
359/* This type is used for parameters and variables which hold
360 combinations of the flags in enum scanfilter_masks. */
361typedef int scanfilter;
362
363/* Scan the name list of the loaded program for the symbols g++ uses for
364 static constructors and destructors.
365
366 The SCANPASS argument tells which collect processing pass this is for and
367 the SCANFILTER argument tells which kinds of symbols to consider in this
368 pass. Symbols of a special kind not in the filter mask are considered as
369 regular ones.
370
371 The constructor table begins at __CTOR_LIST__ and contains a count of the
372 number of pointers (or -1 if the constructors are built in a separate
373 section by the linker), followed by the pointers to the constructor
374 functions, terminated with a null pointer. The destructor table has the
375 same format, and begins at __DTOR_LIST__. */
376
377static void scan_prog_file (const char *, scanpass, scanfilter);
378
4e81a331 379\f
4e81a331
RS
380/* Delete tempfiles and exit function. */
381
5f0ad6a5 382void
608508a6 383tool_cleanup (bool from_signal)
4e81a331 384{
73d53120
BE
385 /* maybe_unlink may call notice, which is not signal safe. */
386 if (from_signal)
387 verbose = false;
388
ed5b9462 389 if (c_file != 0 && c_file[0])
4e81a331
RS
390 maybe_unlink (c_file);
391
ed5b9462 392 if (o_file != 0 && o_file[0])
4e81a331
RS
393 maybe_unlink (o_file);
394
db126753 395#ifdef COLLECT_EXPORT_LIST
cbbbd917
JM
396 if (export_file != 0 && export_file[0])
397 maybe_unlink (export_file);
db126753
DE
398#endif
399
d7f09764
DN
400 if (lto_o_files)
401 maybe_unlink_list (lto_o_files);
608508a6 402}
68ec3111 403
608508a6
BS
404static void
405collect_atexit (void)
406{
407 tool_cleanup (false);
4e81a331
RS
408}
409
0f667308
MP
410/* Notify user of a non-error, without translating the format string. */
411void
412notice_translated (const char *cmsgid, ...)
413{
414 va_list ap;
415
416 va_start (ap, cmsgid);
417 vfprintf (stderr, cmsgid, ap);
418 va_end (ap);
419}
4e81a331 420\f
a3184468 421int
159b3be1 422file_exists (const char *name)
a3184468
JM
423{
424 return access (name, R_OK) == 0;
4e81a331
RS
425}
426
41e16835
JM
427/* Parse a reasonable subset of shell quoting syntax. */
428
429static char *
159b3be1 430extract_string (const char **pp)
41e16835 431{
d4058195 432 const char *p = *pp;
41e16835
JM
433 int backquote = 0;
434 int inside = 0;
435
436 for (;;)
437 {
438 char c = *p;
439 if (c == '\0')
440 break;
441 ++p;
442 if (backquote)
443 obstack_1grow (&temporary_obstack, c);
444 else if (! inside && c == ' ')
445 break;
446 else if (! inside && c == '\\')
447 backquote = 1;
448 else if (c == '\'')
449 inside = !inside;
450 else
451 obstack_1grow (&temporary_obstack, c);
452 }
453
b9550223 454 obstack_1grow (&temporary_obstack, '\0');
41e16835 455 *pp = p;
7973fd2a 456 return XOBFINISH (&temporary_obstack, char *);
41e16835 457}
ed5b9462 458\f
4326ea40 459/* Return the kind of symbol denoted by name S. */
ed5b9462 460
4326ea40 461static symkind
159b3be1 462is_ctor_dtor (const char *s)
ed5b9462 463{
81f40b79 464 struct names { const char *const name; const int len; symkind ret;
8b60264b 465 const int two_underscores; };
ed5b9462 466
c083a819 467 const struct names *p;
b3694847
SS
468 int ch;
469 const char *orig_s = s;
ed5b9462 470
c083a819 471 static const struct names special[] = {
7488cc6d 472#ifndef NO_DOLLAR_IN_LABEL
4326ea40
OH
473 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, SYM_CTOR, 0 },
474 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, SYM_DTOR, 0 },
7488cc6d
DE
475#else
476#ifndef NO_DOT_IN_LABEL
4326ea40
OH
477 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, SYM_CTOR, 0 },
478 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, SYM_DTOR, 0 },
7488cc6d
DE
479#endif /* NO_DOT_IN_LABEL */
480#endif /* NO_DOLLAR_IN_LABEL */
4326ea40
OH
481 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, SYM_CTOR, 0 },
482 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, SYM_DTOR, 0 },
483 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, SYM_DWEH, 0 },
484 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, SYM_INIT, 0 },
485 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, SYM_FINI, 0 },
44178879
DE
486#ifdef TARGET_AIX_VERSION
487 { "GLOBAL__AIXI_", sizeof ("GLOBAL__AIXI_")-1, SYM_AIXI, 0 },
488 { "GLOBAL__AIXD_", sizeof ("GLOBAL__AIXD_")-1, SYM_AIXD, 0 },
489#endif
4326ea40 490 { NULL, 0, SYM_REGULAR, 0 }
ed5b9462
RS
491 };
492
493 while ((ch = *s) == '_')
494 ++s;
495
496 if (s == orig_s)
4326ea40 497 return SYM_REGULAR;
ed5b9462
RS
498
499 for (p = &special[0]; p->len > 0; p++)
500 {
501 if (ch == p->name[0]
502 && (!p->two_underscores || ((s - orig_s) >= 2))
c3284718 503 && strncmp (s, p->name, p->len) == 0)
ed5b9462
RS
504 {
505 return p->ret;
506 }
507 }
4326ea40 508 return SYM_REGULAR;
ed5b9462 509}
bb59f9a6 510\f
bb59f9a6
RS
511/* We maintain two prefix lists: one from COMPILER_PATH environment variable
512 and one from the PATH variable. */
513
514static struct path_prefix cpath, path;
515
2989d30c 516#ifdef CROSS_DIRECTORY_STRUCTURE
bb59f9a6
RS
517/* This is the name of the target machine. We use it to form the name
518 of the files to execute. */
519
d4058195 520static const char *const target_machine = TARGET_MACHINE;
bb59f9a6 521#endif
720653a3 522
bb59f9a6 523/* Search for NAME using prefix list PPREFIX. We only look for executable
159b3be1 524 files.
bb59f9a6 525
0f41302f 526 Return 0 if not found, otherwise return its name, allocated with malloc. */
bb59f9a6 527
ce79110f 528#ifdef OBJECT_FORMAT_NONE
d72ff618 529
d7f09764
DN
530/* Add an entry for the object file NAME to object file list LIST.
531 New entries are added at the end of the list. The original pointer
532 value of NAME is preserved, i.e., no string copy is performed. */
533
534static void
535add_lto_object (struct lto_object_list *list, const char *name)
536{
537 struct lto_object *n = XNEW (struct lto_object);
538 n->name = name;
539 n->next = NULL;
540
541 if (list->last)
542 list->last->next = n;
543 else
544 list->first = n;
545
546 list->last = n;
547}
ce79110f 548#endif /* OBJECT_FORMAT_NONE */
d7f09764
DN
549
550
551/* Perform a link-time recompilation and relink if any of the object
552 files contain LTO info. The linker command line LTO_LD_ARGV
553 represents the linker command that would produce a final executable
554 without the use of LTO. OBJECT_LST is a vector of object file names
073a8998 555 appearing in LTO_LD_ARGV that are to be considered for link-time
d7f09764
DN
556 recompilation, where OBJECT is a pointer to the last valid element.
557 (This awkward convention avoids an impedance mismatch with the
558 usage of similarly-named variables in main().) The elements of
559 OBJECT_LST must be identical, i.e., pointer equal, to the
560 corresponding arguments in LTO_LD_ARGV.
561
562 Upon entry, at least one linker run has been performed without the
563 use of any LTO info that might be present. Any recompilations
564 necessary for template instantiations have been performed, and
565 initializer/finalizer tables have been created if needed and
566 included in the linker command line LTO_LD_ARGV. If any of the
567 object files contain LTO info, we run the LTO back end on all such
568 files, and perform the final link with the LTO back end output
569 substituted for the LTO-optimized files. In some cases, a final
570 link with all link-time generated code has already been performed,
571 so there is no need to relink if no LTO info is found. In other
572 cases, our caller has not produced the final executable, and is
573 relying on us to perform the required link whether LTO info is
574 present or not. In that case, the FORCE argument should be true.
575 Note that the linker command line argument LTO_LD_ARGV passed into
576 this function may be modified in place. */
577
578static void
579maybe_run_lto_and_relink (char **lto_ld_argv, char **object_lst,
580 const char **object, bool force)
581{
582 const char **object_file = CONST_CAST2 (const char **, char **, object_lst);
583
584 int num_lto_c_args = 1; /* Allow space for the terminating NULL. */
585
586 while (object_file < object)
587 {
588 /* If file contains LTO info, add it to the list of LTO objects. */
589 scan_prog_file (*object_file++, PASS_LTOINFO, SCAN_ALL);
590
591 /* Increment the argument count by the number of object file arguments
592 we will add. An upper bound suffices, so just count all of the
593 object files regardless of whether they contain LTO info. */
594 num_lto_c_args++;
595 }
596
597 if (lto_objects.first)
598 {
d7f09764
DN
599 char **lto_c_argv;
600 const char **lto_c_ptr;
ed2222c8
JH
601 char **p;
602 char **lto_o_ptr;
d7f09764
DN
603 struct lto_object *list;
604 char *lto_wrapper = getenv ("COLLECT_LTO_WRAPPER");
605 struct pex_obj *pex;
606 const char *prog = "lto-wrapper";
ed2222c8
JH
607 int lto_ld_argv_size = 0;
608 char **out_lto_ld_argv;
609 int out_lto_ld_argv_size;
610 size_t num_files;
d7f09764
DN
611
612 if (!lto_wrapper)
a9c697b8
MS
613 fatal_error (input_location, "environment variable "
614 "%<COLLECT_LTO_WRAPPER%> must be set");
d7f09764 615
cf96bae7
RG
616 num_lto_c_args++;
617
d7f09764 618 /* There is at least one object file containing LTO info,
ed2222c8
JH
619 so we need to run the LTO back end and relink.
620
621 To do so we build updated ld arguments with first
622 LTO object replaced by all partitions and other LTO
623 objects removed. */
d7f09764 624
d7f09764
DN
625 lto_c_argv = (char **) xcalloc (sizeof (char *), num_lto_c_args);
626 lto_c_ptr = CONST_CAST2 (const char **, char **, lto_c_argv);
627
628 *lto_c_ptr++ = lto_wrapper;
d7f09764
DN
629
630 /* Add LTO objects to the wrapper command line. */
631 for (list = lto_objects.first; list; list = list->next)
632 *lto_c_ptr++ = list->name;
633
634 *lto_c_ptr = NULL;
635
d7f09764 636 /* Run the LTO back end. */
5f0ad6a5 637 pex = collect_execute (prog, lto_c_argv, NULL, NULL, PEX_SEARCH,
e9f8a554 638 at_file_supplied, "lto_args");
d7f09764
DN
639 {
640 int c;
641 FILE *stream;
ed2222c8 642 size_t i;
d7f09764
DN
643 char *start, *end;
644
645 stream = pex_read_output (pex, 0);
646 gcc_assert (stream);
647
648 num_files = 0;
649 while ((c = getc (stream)) != EOF)
650 {
651 obstack_1grow (&temporary_obstack, c);
652 if (c == '\n')
653 ++num_files;
654 }
655
73d53120
BE
656 /* signal handler may access uninitialized memory
657 and delete whatever it points to, if lto_o_files
fd136f01 658 is not allocated with calloc. */
73d53120 659 lto_o_files = XCNEWVEC (char *, num_files + 1);
d7f09764
DN
660 lto_o_files[num_files] = NULL;
661 start = XOBFINISH (&temporary_obstack, char *);
662 for (i = 0; i < num_files; ++i)
663 {
664 end = start;
665 while (*end != '\n')
666 ++end;
667 *end = '\0';
668
669 lto_o_files[i] = xstrdup (start);
670
671 start = end + 1;
672 }
673
674 obstack_free (&temporary_obstack, temporary_firstobj);
675 }
676 do_wait (prog, pex);
677 pex = NULL;
678
5764ee3c 679 /* Compute memory needed for new LD arguments. At most number of original arguments
ed2222c8
JH
680 plus number of partitions. */
681 for (lto_ld_argv_size = 0; lto_ld_argv[lto_ld_argv_size]; lto_ld_argv_size++)
682 ;
c3284718 683 out_lto_ld_argv = XCNEWVEC (char *, num_files + lto_ld_argv_size + 1);
ed2222c8
JH
684 out_lto_ld_argv_size = 0;
685
d7f09764
DN
686 /* After running the LTO back end, we will relink, substituting
687 the LTO output for the object files that we submitted to the
688 LTO. Here, we modify the linker command line for the relink. */
d7f09764 689
ed2222c8
JH
690 /* Copy all arguments until we find first LTO file. */
691 p = lto_ld_argv;
d7f09764
DN
692 while (*p != NULL)
693 {
694 for (list = lto_objects.first; list; list = list->next)
ed2222c8
JH
695 if (*p == list->name) /* Note test for pointer equality! */
696 break;
697 if (list)
698 break;
699 out_lto_ld_argv[out_lto_ld_argv_size++] = *p++;
d7f09764
DN
700 }
701
ed2222c8
JH
702 /* Now insert all LTO partitions. */
703 lto_o_ptr = lto_o_files;
704 while (*lto_o_ptr)
705 out_lto_ld_argv[out_lto_ld_argv_size++] = *lto_o_ptr++;
706
707 /* ... and copy the rest. */
708 while (*p != NULL)
709 {
710 for (list = lto_objects.first; list; list = list->next)
711 if (*p == list->name) /* Note test for pointer equality! */
712 break;
713 if (!list)
714 out_lto_ld_argv[out_lto_ld_argv_size++] = *p;
715 p++;
716 }
717 out_lto_ld_argv[out_lto_ld_argv_size++] = 0;
d7f09764
DN
718
719 /* Run the linker again, this time replacing the object files
720 optimized by the LTO with the temporary file generated by the LTO. */
b3032d1b 721 fork_execute ("ld", out_lto_ld_argv, HAVE_GNU_LD && at_file_supplied,
e9f8a554 722 "ld_args");
4098a6d4
IS
723 /* We assume that temp files were created, and therefore we need to take
724 that into account (maybe run dsymutil). */
725 post_ld_pass (/*temp_file*/true);
ed2222c8 726 free (lto_ld_argv);
d7f09764
DN
727
728 maybe_unlink_list (lto_o_files);
729 }
730 else if (force)
731 {
732 /* Our caller is relying on us to do the link
733 even though there is no LTO back end work to be done. */
e9f8a554
BE
734 fork_execute ("ld", lto_ld_argv, HAVE_GNU_LD && at_file_supplied,
735 "ld_args");
4098a6d4
IS
736 /* No LTO objects were found, so no new temp file. */
737 post_ld_pass (/*temp_file*/false);
d7f09764 738 }
79abf19f 739 else
4098a6d4 740 post_ld_pass (false); /* No LTO objects were found, no temp file. */
d7f09764 741}
67f6e649
ML
742/* Entry point for linker invoation. Called from main in collect2.c.
743 LD_ARGV is an array of arguments for the linker. */
744
745static void
e9f8a554 746do_link (char **ld_argv, const char *atsuffix)
67f6e649
ML
747{
748 struct pex_obj *pex;
749 const char *prog = "ld";
750 pex = collect_execute (prog, ld_argv, NULL, NULL,
751 PEX_LAST | PEX_SEARCH,
e9f8a554 752 HAVE_GNU_LD && at_file_supplied, atsuffix);
67f6e649
ML
753 int ret = collect_wait (prog, pex);
754 if (ret)
755 {
756 error ("ld returned %d exit status", ret);
757 exit (ret);
758 }
759 else
760 {
761 /* We have just successfully produced an output file, so assume that we
762 may unlink it if need be for now on. */
763 may_unlink_output_file = true;
764 }
765}
4e81a331 766\f
0f41302f 767/* Main program. */
4e81a331
RS
768
769int
159b3be1 770main (int argc, char **argv)
4e81a331 771{
b352afba
NC
772 enum linker_select
773 {
774 USE_DEFAULT_LD,
775 USE_PLUGIN_LD,
776 USE_GOLD_LD,
777 USE_BFD_LD,
d69ac8b7 778 USE_LLD_LD,
b352afba
NC
779 USE_LD_MAX
780 } selected_linker = USE_DEFAULT_LD;
781 static const char *const ld_suffixes[USE_LD_MAX] =
782 {
783 "ld",
784 PLUGIN_LD_SUFFIX,
785 "ld.gold",
d69ac8b7
RG
786 "ld.bfd",
787 "ld.lld"
b352afba 788 };
83182544
KG
789 static const char *const real_ld_suffix = "real-ld";
790 static const char *const collect_ld_suffix = "collect-ld";
791 static const char *const nm_suffix = "nm";
83182544 792 static const char *const gnm_suffix = "gnm";
68d69835 793#ifdef LDD_SUFFIX
83182544 794 static const char *const ldd_suffix = LDD_SUFFIX;
d4058195 795#endif
83182544 796 static const char *const strip_suffix = "strip";
83182544 797 static const char *const gstrip_suffix = "gstrip";
cb6edbcb 798
b352afba 799 const char *full_ld_suffixes[USE_LD_MAX];
2989d30c 800#ifdef CROSS_DIRECTORY_STRUCTURE
cb6edbcb
KG
801 /* If we look for a program in the compiler directories, we just use
802 the short name, since these directories are already system-specific.
803 But it we look for a program in the system directories, we need to
804 qualify the program name with the target machine. */
805
cb6edbcb
KG
806 const char *const full_nm_suffix =
807 concat (target_machine, "-", nm_suffix, NULL);
808 const char *const full_gnm_suffix =
809 concat (target_machine, "-", gnm_suffix, NULL);
810#ifdef LDD_SUFFIX
811 const char *const full_ldd_suffix =
812 concat (target_machine, "-", ldd_suffix, NULL);
813#endif
814 const char *const full_strip_suffix =
815 concat (target_machine, "-", strip_suffix, NULL);
816 const char *const full_gstrip_suffix =
817 concat (target_machine, "-", gstrip_suffix, NULL);
818#else
cb6edbcb
KG
819#ifdef LDD_SUFFIX
820 const char *const full_ldd_suffix = ldd_suffix;
821#endif
b352afba
NC
822 const char *const full_nm_suffix = nm_suffix;
823 const char *const full_gnm_suffix = gnm_suffix;
cb6edbcb
KG
824 const char *const full_strip_suffix = strip_suffix;
825 const char *const full_gstrip_suffix = gstrip_suffix;
2989d30c 826#endif /* CROSS_DIRECTORY_STRUCTURE */
cb6edbcb 827
d4058195 828 const char *arg;
db126753
DE
829 FILE *outf;
830#ifdef COLLECT_EXPORT_LIST
831 FILE *exportf;
db126753 832#endif
d4058195
KG
833 const char *ld_file_name;
834 const char *p;
ed5b9462 835 char **c_argv;
d4058195 836 const char **c_ptr;
ab87f8c8 837 char **ld1_argv;
d4058195 838 const char **ld1;
5938f74d 839 bool use_plugin = false;
b352afba 840 bool use_collect_ld = false;
b8698a0f 841
7e49a4b3
OH
842 /* The kinds of symbols we will have to consider when scanning the
843 outcome of a first pass link. This is ALL to start with, then might
844 be adjusted before getting to the first pass link per se, typically on
845 AIX where we perform an early scan of objects and libraries to fetch
846 the list of global ctors/dtors and make sure they are not garbage
847 collected. */
848 scanfilter ld1_filter = SCAN_ALL;
849
ab87f8c8 850 char **ld2_argv;
d4058195 851 const char **ld2;
ab87f8c8 852 char **object_lst;
d4058195 853 const char **object;
fa66fc02 854#ifdef TARGET_AIX_VERSION
4f44e38a 855 int object_nbr = argc;
fa66fc02 856#endif
4e81a331 857 int first_file;
2091ff66
NF
858 int num_c_args;
859 char **old_argv;
e56f4605 860#ifdef COLLECT_EXPORT_LIST
6a513e2a 861 bool is_static = false;
e56f4605 862#endif
b352afba
NC
863 int i;
864
865 for (i = 0; i < USE_LD_MAX; i++)
866 full_ld_suffixes[i]
867#ifdef CROSS_DIRECTORY_STRUCTURE
868 = concat (target_machine, "-", ld_suffixes[i], NULL);
869#else
870 = ld_suffixes[i];
871#endif
2091ff66 872
9e350e99
JM
873 p = argv[0] + strlen (argv[0]);
874 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
875 --p;
876 progname = p;
877
878 xmalloc_set_program_name (progname);
879
2091ff66
NF
880 old_argv = argv;
881 expandargv (&argc, &argv);
882 if (argv != old_argv)
883 at_file_supplied = 1;
884
11afe8e8
MS
885 process_args (&argc, argv);
886
2091ff66 887 num_c_args = argc + 9;
4e81a331 888
df45fc34 889#ifndef HAVE_LD_DEMANGLE
84db136d
JM
890 no_demangle = !! getenv ("COLLECT_NO_DEMANGLE");
891
892 /* Suppress demangling by the real linker, which may be broken. */
df45fc34
SL
893 putenv (xstrdup ("COLLECT_NO_DEMANGLE=1"));
894#endif
84db136d 895
ef4969e0 896#if defined (COLLECT2_HOST_INITIALIZATION)
f63d1bf7 897 /* Perform system dependent initialization, if necessary. */
ef4969e0 898 COLLECT2_HOST_INITIALIZATION;
f3692274
ME
899#endif
900
2dc6782a 901 setup_signals ();
798bdf70 902
98a3dad4 903 /* Unlock the stdio streams. */
2653bb0c 904 unlock_std_streams ();
98a3dad4 905
191bf464 906 gcc_init_libintl ();
ab87f8c8 907
9e350e99
JM
908 diagnostic_initialize (global_dc, 0);
909
877088b7 910 if (atexit (collect_atexit) != 0)
40fecdd6 911 fatal_error (input_location, "atexit failed");
877088b7 912
ab87f8c8
JL
913 /* Do not invoke xcalloc before this point, since locale needs to be
914 set first, in case a diagnostic is issued. */
915
67165eb3
ILT
916 ld1_argv = XCNEWVEC (char *, argc + 4);
917 ld1 = CONST_CAST2 (const char **, char **, ld1_argv);
918 ld2_argv = XCNEWVEC (char *, argc + 11);
919 ld2 = CONST_CAST2 (const char **, char **, ld2_argv);
920 object_lst = XCNEWVEC (char *, argc);
921 object = CONST_CAST2 (const char **, char **, object_lst);
ab87f8c8 922
4e81a331 923#ifdef DEBUG
f67eeb79 924 debug = true;
4e81a331
RS
925#endif
926
f67eeb79
IS
927 save_temps = false;
928 verbose = false;
513825f0
IS
929
930#ifndef DEFAULT_A_OUT_NAME
931 output_file = "a.out";
932#else
933 output_file = DEFAULT_A_OUT_NAME;
934#endif
935
f67eeb79
IS
936 /* Parse command line / environment for flags we want early.
937 This allows the debug flag to be set before functions like find_a_file()
938 are called. */
ae8c5963 939 {
014d92e1 940 bool no_partition = false;
159b3be1 941
ae8c5963 942 for (i = 1; argv[i] != NULL; i ++)
5f31e9bc
RO
943 {
944 if (! strcmp (argv[i], "-debug"))
7c6d86cc 945 debug = true;
6ba3079d 946 else if (startswith (argv[i], "-fno-lto"))
595c8dfa 947 lto_mode = LTO_MODE_NONE;
d7f09764
DN
948 else if (! strcmp (argv[i], "-plugin"))
949 {
950 use_plugin = true;
b352afba
NC
951 if (selected_linker == USE_DEFAULT_LD)
952 selected_linker = USE_PLUGIN_LD;
d7f09764 953 }
b352afba
NC
954 else if (strcmp (argv[i], "-fuse-ld=bfd") == 0)
955 selected_linker = USE_BFD_LD;
956 else if (strcmp (argv[i], "-fuse-ld=gold") == 0)
957 selected_linker = USE_GOLD_LD;
513825f0
IS
958 else if (strcmp (argv[i], "-fuse-ld=lld") == 0)
959 selected_linker = USE_LLD_LD;
6ba3079d 960 else if (startswith (argv[i], "-o"))
513825f0
IS
961 {
962 /* Parse the output filename if it's given so that we can make
963 meaningful temp filenames. */
e9f8a554 964 if (argv[i][2] != '\0')
513825f0 965 output_file = &argv[i][2];
e9f8a554
BE
966 else if (argv[i+1] != NULL)
967 output_file = argv[++i];
513825f0 968 }
b352afba 969
88febe35 970#ifdef COLLECT_EXPORT_LIST
d96d674b
MH
971 /* These flags are position independent, although their order
972 is important - subsequent flags override earlier ones. */
973 else if (strcmp (argv[i], "-b64") == 0)
6ba3079d 974 aix64_flag = 1;
d96d674b 975 /* -bexport:filename always needs the :filename */
6ba3079d
ML
976 else if (startswith (argv[i], "-bE:")
977 || startswith (argv[i], "-bexport:"))
978 export_flag = 1;
d96d674b
MH
979 else if (strcmp (argv[i], "-brtl") == 0
980 || strcmp (argv[i], "-bsvr4") == 0
981 || strcmp (argv[i], "-G") == 0)
6ba3079d 982 aixrtl_flag = 1;
d96d674b 983 else if (strcmp (argv[i], "-bnortl") == 0)
6ba3079d 984 aixrtl_flag = 0;
44178879 985 else if (strcmp (argv[i], "-blazy") == 0)
6ba3079d 986 aixlazy_flag = 1;
88febe35 987#endif
5f31e9bc 988 }
ae8c5963 989
f67eeb79
IS
990 obstack_begin (&temporary_obstack, 0);
991 temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
588e387f 992
d594623a 993#ifndef HAVE_LD_DEMANGLE
a545190e 994 current_demangling_style = auto_demangling;
d594623a 995#endif
f67eeb79
IS
996
997 /* Now pick up any flags we want early from COLLECT_GCC_OPTIONS
998 The LTO options are passed here as are other options that might
999 be unsuitable for ld (e.g. -save-temps). */
1000 p = getenv ("COLLECT_GCC_OPTIONS");
1001 while (p && *p)
1002 {
1003 const char *q = extract_string (&p);
1004 if (*q == '-' && (q[1] == 'm' || q[1] == 'f'))
1005 num_c_args++;
6ba3079d 1006 if (startswith (q, "-flto-partition=none"))
f67eeb79 1007 no_partition = true;
6ba3079d 1008 else if (startswith (q, "-fno-lto"))
f67eeb79 1009 lto_mode = LTO_MODE_NONE;
6ba3079d 1010 else if (startswith (q, "-save-temps"))
513825f0
IS
1011 /* FIXME: Honour =obj. */
1012 save_temps = true;
e9f8a554
BE
1013 else if (strcmp (q, "-dumpdir") == 0)
1014 dumppfx = xstrdup (extract_string (&p));
1015 else if (strcmp (q, "-o") == 0
1016 || strcmp (q, "-B") == 0
1017 || strcmp (q, "-isystem") == 0)
1018 (void) extract_string (&p);
41e16835 1019 }
f67eeb79
IS
1020 obstack_free (&temporary_obstack, temporary_firstobj);
1021
1022 verbose = verbose || debug;
1023 save_temps = save_temps || debug;
1024 find_file_set_debug (debug);
1025 if (use_plugin)
1026 lto_mode = LTO_MODE_NONE;
1027 if (no_partition && lto_mode == LTO_MODE_WHOPR)
1028 lto_mode = LTO_MODE_LTO;
1029 }
43a8f6d5 1030
77e86c91 1031 /* -fno-profile-arcs -fno-test-coverage -fno-branch-probabilities
13291c16
JH
1032 -fno-exceptions -w -fno-whole-program */
1033 num_c_args += 6;
ed5b9462 1034
67165eb3
ILT
1035 c_argv = XCNEWVEC (char *, num_c_args);
1036 c_ptr = CONST_CAST2 (const char **, char **, c_argv);
ed5b9462 1037
4e81a331 1038 if (argc < 2)
40fecdd6 1039 fatal_error (input_location, "no arguments");
4e81a331 1040
bb59f9a6
RS
1041 /* Extract COMPILER_PATH and PATH into our prefix list. */
1042 prefix_from_env ("COMPILER_PATH", &cpath);
1043 prefix_from_env ("PATH", &path);
4e81a331 1044
bb59f9a6
RS
1045 /* Try to discover a valid linker/nm/strip to use. */
1046
90d326bd 1047 /* Maybe we know the right file to use (if not cross). */
0eac1e43 1048 ld_file_name = 0;
ab339d62 1049#ifdef DEFAULT_LINKER
d69ac8b7
RG
1050 if (selected_linker == USE_BFD_LD || selected_linker == USE_GOLD_LD ||
1051 selected_linker == USE_LLD_LD)
b78e932d
L
1052 {
1053 char *linker_name;
1054# ifdef HOST_EXECUTABLE_SUFFIX
1055 int len = (sizeof (DEFAULT_LINKER)
1056 - sizeof (HOST_EXECUTABLE_SUFFIX));
1057 linker_name = NULL;
1058 if (len > 0)
1059 {
1060 char *default_linker = xstrdup (DEFAULT_LINKER);
1061 /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
1062 HOST_EXECUTABLE_SUFFIX. */
1063 if (! strcmp (&default_linker[len], HOST_EXECUTABLE_SUFFIX))
1064 {
1065 default_linker[len] = '\0';
1066 linker_name = concat (default_linker,
1067 &ld_suffixes[selected_linker][2],
1068 HOST_EXECUTABLE_SUFFIX, NULL);
1069 }
1070 }
1071 if (linker_name == NULL)
1072# endif
1073 linker_name = concat (DEFAULT_LINKER,
1074 &ld_suffixes[selected_linker][2],
1075 NULL);
1076 if (access (linker_name, X_OK) == 0)
1077 ld_file_name = linker_name;
1078 }
1079 if (ld_file_name == 0 && access (DEFAULT_LINKER, X_OK) == 0)
ab339d62
AO
1080 ld_file_name = DEFAULT_LINKER;
1081 if (ld_file_name == 0)
1082#endif
90d326bd 1083#ifdef REAL_LD_FILE_NAME
a09f1a76 1084 ld_file_name = find_a_file (&path, REAL_LD_FILE_NAME, X_OK);
90d326bd
JM
1085 if (ld_file_name == 0)
1086#endif
a3184468 1087 /* Search the (target-specific) compiler dirs for ld'. */
a09f1a76 1088 ld_file_name = find_a_file (&cpath, real_ld_suffix, X_OK);
a3184468 1089 /* Likewise for `collect-ld'. */
bb59f9a6 1090 if (ld_file_name == 0)
b352afba 1091 {
a09f1a76 1092 ld_file_name = find_a_file (&cpath, collect_ld_suffix, X_OK);
b352afba
NC
1093 use_collect_ld = ld_file_name != 0;
1094 }
b3a2ef94
RK
1095 /* Search the compiler directories for `ld'. We have protection against
1096 recursive calls in find_a_file. */
f820b898 1097 if (ld_file_name == 0)
a09f1a76 1098 ld_file_name = find_a_file (&cpath, ld_suffixes[selected_linker], X_OK);
bb59f9a6 1099 /* Search the ordinary system bin directories
46c74083 1100 for `ld' (if native linking) or `TARGET-ld' (if cross). */
bb59f9a6 1101 if (ld_file_name == 0)
a09f1a76 1102 ld_file_name = find_a_file (&path, full_ld_suffixes[selected_linker], X_OK);
bb59f9a6 1103
90d326bd 1104#ifdef REAL_NM_FILE_NAME
a09f1a76 1105 nm_file_name = find_a_file (&path, REAL_NM_FILE_NAME, X_OK);
90d326bd
JM
1106 if (nm_file_name == 0)
1107#endif
a09f1a76 1108 nm_file_name = find_a_file (&cpath, gnm_suffix, X_OK);
bb59f9a6 1109 if (nm_file_name == 0)
a09f1a76 1110 nm_file_name = find_a_file (&path, full_gnm_suffix, X_OK);
bb59f9a6 1111 if (nm_file_name == 0)
a09f1a76 1112 nm_file_name = find_a_file (&cpath, nm_suffix, X_OK);
bb59f9a6 1113 if (nm_file_name == 0)
a09f1a76 1114 nm_file_name = find_a_file (&path, full_nm_suffix, X_OK);
bb59f9a6 1115
68d69835 1116#ifdef LDD_SUFFIX
a09f1a76 1117 ldd_file_name = find_a_file (&cpath, ldd_suffix, X_OK);
68d69835 1118 if (ldd_file_name == 0)
a09f1a76 1119 ldd_file_name = find_a_file (&path, full_ldd_suffix, X_OK);
68d69835
JM
1120#endif
1121
90d326bd 1122#ifdef REAL_STRIP_FILE_NAME
a09f1a76 1123 strip_file_name = find_a_file (&path, REAL_STRIP_FILE_NAME, X_OK);
90d326bd
JM
1124 if (strip_file_name == 0)
1125#endif
a09f1a76 1126 strip_file_name = find_a_file (&cpath, gstrip_suffix, X_OK);
bb59f9a6 1127 if (strip_file_name == 0)
a09f1a76 1128 strip_file_name = find_a_file (&path, full_gstrip_suffix, X_OK);
bb59f9a6 1129 if (strip_file_name == 0)
a09f1a76 1130 strip_file_name = find_a_file (&cpath, strip_suffix, X_OK);
bb59f9a6 1131 if (strip_file_name == 0)
a09f1a76 1132 strip_file_name = find_a_file (&path, full_strip_suffix, X_OK);
4e81a331 1133
a87104d9 1134 /* Determine the full path name of the C compiler to use. */
ed5b9462 1135 c_file_name = getenv ("COLLECT_GCC");
5365d6ee 1136 if (c_file_name == 0)
4e81a331 1137 {
2989d30c 1138#ifdef CROSS_DIRECTORY_STRUCTURE
d4058195 1139 c_file_name = concat (target_machine, "-gcc", NULL);
4e81a331 1140#else
bb59f9a6 1141 c_file_name = "gcc";
a87104d9 1142#endif
a87104d9
MM
1143 }
1144
a09f1a76 1145 p = find_a_file (&cpath, c_file_name, X_OK);
bb59f9a6
RS
1146
1147 /* Here it should be safe to use the system search path since we should have
1148 already qualified the name of the compiler when it is needed. */
1149 if (p == 0)
a09f1a76 1150 p = find_a_file (&path, c_file_name, X_OK);
bb59f9a6
RS
1151
1152 if (p)
1153 c_file_name = p;
4e81a331 1154
45840c57 1155 *ld1++ = *ld2++ = ld_file_name;
4e81a331 1156
0f41302f 1157 /* Make temp file names. */
513825f0
IS
1158 if (save_temps)
1159 {
73d53120
BE
1160 c_file = concat (output_file, ".cdtor.c", NULL);
1161 o_file = concat (output_file, ".cdtor.o", NULL);
1162#ifdef COLLECT_EXPORT_LIST
1163 export_file = concat (output_file, ".x", NULL);
1164#endif
513825f0
IS
1165 }
1166 else
1167 {
1168 c_file = make_temp_file (".cdtor.c");
1169 o_file = make_temp_file (".cdtor.o");
db126753 1170#ifdef COLLECT_EXPORT_LIST
73d53120 1171 export_file = make_temp_file (".x");
db126753 1172#endif
888f0920 1173 }
513825f0 1174 /* Build the command line to compile the ctor/dtor list. */
ed5b9462 1175 *c_ptr++ = c_file_name;
cb689bb6
JL
1176 *c_ptr++ = "-x";
1177 *c_ptr++ = "c";
4e81a331
RS
1178 *c_ptr++ = "-c";
1179 *c_ptr++ = "-o";
1180 *c_ptr++ = o_file;
1181
db126753
DE
1182#ifdef COLLECT_EXPORT_LIST
1183 /* Generate a list of directories from LIBPATH. */
1184 prefix_from_env ("LIBPATH", &libpath_lib_dirs);
1185 /* Add to this list also two standard directories where
1186 AIX loader always searches for libraries. */
1187 add_prefix (&libpath_lib_dirs, "/lib");
1188 add_prefix (&libpath_lib_dirs, "/usr/lib");
1189#endif
1190
159b3be1 1191 /* Get any options that the upper GCC wants to pass to the sub-GCC.
db126753
DE
1192
1193 AIX support needs to know if -shared has been specified before
1194 parsing commandline arguments. */
1195
670ee920 1196 p = getenv ("COLLECT_GCC_OPTIONS");
db126753
DE
1197 while (p && *p)
1198 {
d4058195 1199 const char *q = extract_string (&p);
db126753 1200 if (*q == '-' && (q[1] == 'm' || q[1] == 'f'))
6d9f628e 1201 *c_ptr++ = xstrdup (q);
fb0b29ad 1202 if (strcmp (q, "-EL") == 0 || strcmp (q, "-EB") == 0)
6d9f628e 1203 *c_ptr++ = xstrdup (q);
518c1311 1204 if (strcmp (q, "-shared") == 0)
db126753 1205 shared_obj = 1;
6a513e2a
TR
1206 if (strcmp (q, "-static") == 0)
1207 static_obj = 1;
d9068c61
HPN
1208 if (*q == '-' && q[1] == 'B')
1209 {
6d9f628e 1210 *c_ptr++ = xstrdup (q);
d9068c61
HPN
1211 if (q[2] == 0)
1212 {
1213 q = extract_string (&p);
6d9f628e 1214 *c_ptr++ = xstrdup (q);
d9068c61
HPN
1215 }
1216 }
e9f8a554
BE
1217 else if (strcmp (q, "-o") == 0
1218 || strcmp (q, "-dumpdir") == 0
1219 || strcmp (q, "-isystem") == 0)
1220 (void) extract_string (&p);
e721d113
DE
1221#ifdef COLLECT_EXPORT_LIST
1222 /* Detect any invocation with -fvisibility. */
6ba3079d 1223 if (startswith (q, "-fvisibility"))
e721d113
DE
1224 visibility_flag = 1;
1225#endif
db126753
DE
1226 }
1227 obstack_free (&temporary_obstack, temporary_firstobj);
77e86c91
DE
1228 *c_ptr++ = "-fno-profile-arcs";
1229 *c_ptr++ = "-fno-test-coverage";
1230 *c_ptr++ = "-fno-branch-probabilities";
db126753 1231 *c_ptr++ = "-fno-exceptions";
43a8f6d5 1232 *c_ptr++ = "-w";
13291c16 1233 *c_ptr++ = "-fno-whole-program";
db126753 1234
ed5b9462
RS
1235 /* !!! When GCC calls collect2,
1236 it does not know whether it is calling collect2 or ld.
1237 So collect2 cannot meaningfully understand any options
1238 except those ld understands.
1239 If you propose to make GCC pass some other option,
1240 just imagine what will happen if ld is really ld!!! */
1241
0f41302f 1242 /* Parse arguments. Remember output file spec, pass the rest to ld. */
ed5b9462
RS
1243 /* After the first file, put in the c++ rt0. */
1244
e56f4605 1245#ifdef COLLECT_EXPORT_LIST
6a513e2a 1246 is_static = static_obj;
e56f4605 1247#endif
4e81a331 1248 first_file = 1;
0f41302f 1249 while ((arg = *++argv) != (char *) 0)
4e81a331
RS
1250 {
1251 *ld1++ = *ld2++ = arg;
1252
1253 if (arg[0] == '-')
2d5e74ca 1254 {
4e81a331
RS
1255 switch (arg[1])
1256 {
1257 case 'd':
1258 if (!strcmp (arg, "-debug"))
1259 {
ae8c5963 1260 /* Already parsed. */
4e81a331
RS
1261 ld1--;
1262 ld2--;
1263 }
60828cbd 1264 if (!strcmp (arg, "-dynamic-linker") && argv[1])
c22cacf3 1265 {
60828cbd
ME
1266 ++argv;
1267 *ld1++ = *ld2++ = *argv;
1268 }
4e81a331
RS
1269 break;
1270
d7f09764 1271 case 'f':
6ba3079d 1272 if (startswith (arg, "-flto"))
d7f09764
DN
1273 {
1274#ifdef ENABLE_LTO
1275 /* Do not pass LTO flag to the linker. */
1276 ld1--;
1277 ld2--;
1278#else
1279 error ("LTO support has not been enabled in this "
1280 "configuration");
1281#endif
1282 }
b352afba 1283 else if (!use_collect_ld
6ba3079d 1284 && startswith (arg, "-fuse-ld="))
b352afba 1285 {
d69ac8b7 1286 /* Do not pass -fuse-ld={bfd|gold|lld} to the linker. */
b352afba
NC
1287 ld1--;
1288 ld2--;
1289 }
6ba3079d 1290 else if (startswith (arg, "-fno-lto"))
fa608e77
MT
1291 {
1292 /* Do not pass -fno-lto to the linker. */
1293 ld1--;
1294 ld2--;
1295 }
4f44e38a
TG
1296#ifdef TARGET_AIX_VERSION
1297 else
1298 {
1299 /* File containing a list of input files to process. */
1300
1301 FILE *stream;
1302 char buf[MAXPATHLEN + 2];
1303 /* Number of additionnal object files. */
1304 int add_nbr = 0;
1305 /* Maximum of additionnal object files before vector
1306 expansion. */
1307 int add_max = 0;
1308 const char *list_filename = arg + 2;
1309
1310 /* Accept -fFILENAME and -f FILENAME. */
1311 if (*list_filename == '\0' && argv[1])
1312 {
1313 ++argv;
1314 list_filename = *argv;
1315 *ld1++ = *ld2++ = *argv;
1316 }
1317
1318 stream = fopen (list_filename, "r");
1319 if (stream == NULL)
a9c697b8 1320 fatal_error (input_location, "cannot open %s: %m",
40fecdd6 1321 list_filename);
4f44e38a
TG
1322
1323 while (fgets (buf, sizeof buf, stream) != NULL)
1324 {
1325 /* Remove end of line. */
1326 int len = strlen (buf);
1327 if (len >= 1 && buf[len - 1] =='\n')
1328 buf[len - 1] = '\0';
1329
1330 /* Put on object vector.
1331 Note: we only expanse vector here, so we must keep
1332 extra space for remaining arguments. */
1333 if (add_nbr >= add_max)
1334 {
6588d711
OH
1335 int pos =
1336 object - CONST_CAST2 (const char **, char **,
1337 object_lst);
4f44e38a
TG
1338 add_max = (add_max == 0) ? 16 : add_max * 2;
1339 object_lst = XRESIZEVEC (char *, object_lst,
1340 object_nbr + add_max);
6588d711
OH
1341 object = CONST_CAST2 (const char **, char **,
1342 object_lst) + pos;
4f44e38a
TG
1343 object_nbr += add_max;
1344 }
1345 *object++ = xstrdup (buf);
1346 add_nbr++;
1347 }
1348 fclose (stream);
1349 }
1350#endif
d7f09764
DN
1351 break;
1352
6a513e2a
TR
1353#ifdef COLLECT_EXPORT_LIST
1354 case 'b':
1355 if (!strcmp (arg, "-bstatic"))
1356 {
1357 is_static = true;
1358 }
1359 else if (!strcmp (arg, "-bdynamic") || !strcmp (arg, "-bshared"))
1360 {
1361 is_static = false;
1362 }
1363 break;
1364#endif
68d69835
JM
1365 case 'l':
1366 if (first_file)
1367 {
1368 /* place o_file BEFORE this argument! */
1369 first_file = 0;
1370 ld2--;
1371 *ld2++ = o_file;
1372 *ld2++ = arg;
1373 }
db126753
DE
1374#ifdef COLLECT_EXPORT_LIST
1375 {
c22cacf3 1376 /* Resolving full library name. */
d4058195 1377 const char *s = resolve_lib_name (arg+2);
db126753 1378
db126753
DE
1379 /* Saving a full library name. */
1380 add_to_list (&libs, s);
6a513e2a
TR
1381 if (is_static)
1382 add_to_list (&static_libs, s);
db126753
DE
1383 }
1384#endif
1385 break;
1386
1387#ifdef COLLECT_EXPORT_LIST
1388 /* Saving directories where to search for libraries. */
159b3be1 1389 case 'L':
db126753 1390 add_prefix (&cmdline_lib_dirs, arg+2);
68d69835 1391 break;
db126753 1392#endif
68d69835 1393
4e81a331 1394 case 'o':
e9f8a554 1395 if (arg[2] != '\0')
603b4064 1396 output_file = &arg[2];
e9f8a554
BE
1397 else if (argv[1])
1398 output_file = *ld1++ = *ld2++ = *++argv;
4e81a331
RS
1399 break;
1400
1401 case 'r':
1402 if (arg[2] == '\0')
1403 rflag = 1;
1404 break;
1405
a87104d9 1406 case 's':
a3184468 1407 if (arg[2] == '\0' && do_collecting)
a87104d9
MM
1408 {
1409 /* We must strip after the nm run, otherwise C++ linking
db126753 1410 will not work. Thus we strip in the second ld run, or
a87104d9
MM
1411 else with strip if there is no second ld run. */
1412 strip_flag = 1;
1413 ld1--;
1414 }
1415 break;
1416
4e81a331
RS
1417 case 'v':
1418 if (arg[2] == '\0')
608508a6 1419 verbose = true;
4e81a331 1420 break;
27605cbe
PB
1421
1422 case '-':
1423 if (strcmp (arg, "--no-demangle") == 0)
1424 {
df45fc34 1425#ifndef HAVE_LD_DEMANGLE
27605cbe
PB
1426 no_demangle = 1;
1427 ld1--;
1428 ld2--;
df45fc34 1429#endif
27605cbe 1430 }
6ba3079d 1431 else if (startswith (arg, "--demangle"))
27605cbe 1432 {
27605cbe 1433#ifndef HAVE_LD_DEMANGLE
df45fc34 1434 no_demangle = 0;
27605cbe
PB
1435 if (arg[10] == '=')
1436 {
1437 enum demangling_styles style
1438 = cplus_demangle_name_to_style (arg+11);
1439 if (style == unknown_demangling)
904f3daa 1440 error ("unknown demangling style %qs", arg+11);
27605cbe
PB
1441 else
1442 current_demangling_style = style;
1443 }
27605cbe
PB
1444 ld1--;
1445 ld2--;
df45fc34 1446#endif
27605cbe 1447 }
6ba3079d 1448 else if (startswith (arg, "--sysroot="))
781a1758 1449 target_system_root = arg + 10;
2dcef31e 1450 else if (strcmp (arg, "--version") == 0)
608508a6 1451 verbose = true;
2dcef31e 1452 else if (strcmp (arg, "--help") == 0)
7c6d86cc 1453 helpflag = true;
27605cbe 1454 break;
4e81a331 1455 }
2d5e74ca 1456 }
9473c522 1457 else if ((p = strrchr (arg, '.')) != (char *) 0
db126753 1458 && (strcmp (p, ".o") == 0 || strcmp (p, ".a") == 0
05dba9ee
DE
1459 || strcmp (p, ".so") == 0 || strcmp (p, ".lo") == 0
1460 || strcmp (p, ".obj") == 0))
4e81a331 1461 {
9f21696b
JM
1462 if (first_file)
1463 {
1464 first_file = 0;
603b4064
RK
1465 if (p[1] == 'o')
1466 *ld2++ = o_file;
1467 else
1468 {
1469 /* place o_file BEFORE this argument! */
1470 ld2--;
1471 *ld2++ = o_file;
1472 *ld2++ = arg;
1473 }
9f21696b 1474 }
31d432e4 1475 if (p[1] == 'o' || p[1] == 'l')
9f21696b 1476 *object++ = arg;
db126753
DE
1477#ifdef COLLECT_EXPORT_LIST
1478 /* libraries can be specified directly, i.e. without -l flag. */
159b3be1
AJ
1479 else
1480 {
db126753 1481 /* Saving a full library name. */
c22cacf3 1482 add_to_list (&libs, arg);
6a513e2a
TR
1483 if (is_static)
1484 add_to_list (&static_libs, arg);
c22cacf3 1485 }
db126753 1486#endif
4e81a331
RS
1487 }
1488 }
1489
db126753
DE
1490#ifdef COLLECT_EXPORT_LIST
1491 /* This is added only for debugging purposes. */
1492 if (debug)
41e16835 1493 {
db126753
DE
1494 fprintf (stderr, "List of libraries:\n");
1495 dump_list (stderr, "\t", libs.first);
6a513e2a
TR
1496 fprintf (stderr, "List of statically linked libraries:\n");
1497 dump_list (stderr, "\t", static_libs.first);
41e16835 1498 }
ed5b9462 1499
cbbbd917 1500 /* The AIX linker will discard static constructors in object files if
7e49a4b3
OH
1501 nothing else in the file is referenced, so look at them first. Unless
1502 we are building a shared object, ignore the eh frame tables, as we
1503 would otherwise reference them all, hence drag all the corresponding
1504 objects even if nothing else is referenced. */
db126753 1505 {
b8698a0f 1506 const char **export_object_lst
7e49a4b3 1507 = CONST_CAST2 (const char **, char **, object_lst);
b8698a0f 1508
db126753 1509 struct id *list = libs.first;
9d4d5d58 1510
7e49a4b3
OH
1511 /* Compute the filter to use from the current one, do scan, then adjust
1512 the "current" filter to remove what we just included here. This will
1513 control whether we need a first pass link later on or not, and what
1514 will remain to be scanned there. */
b8698a0f 1515
636cf8b1
RS
1516 scanfilter this_filter = ld1_filter;
1517#if HAVE_AS_REF
1518 if (!shared_obj)
1519 this_filter &= ~SCAN_DWEH;
1520#endif
b8698a0f 1521
6a513e2a 1522 /* Scan object files. */
7e49a4b3
OH
1523 while (export_object_lst < object)
1524 scan_prog_file (*export_object_lst++, PASS_OBJ, this_filter);
b8698a0f 1525
6a513e2a 1526 /* Scan libraries. */
db126753 1527 for (; list; list = list->next)
7e49a4b3 1528 scan_prog_file (list->name, PASS_FIRST, this_filter);
b8698a0f 1529
7e49a4b3 1530 ld1_filter = ld1_filter & ~this_filter;
db126753 1531 }
9d4d5d58
DE
1532
1533 if (exports.first)
1534 {
d4c3ec27 1535 char *buf = concat ("-bE:", export_file, NULL);
159b3be1 1536
9d4d5d58
DE
1537 *ld1++ = buf;
1538 *ld2++ = buf;
1539
1540 exportf = fopen (export_file, "w");
1541 if (exportf == (FILE *) 0)
40fecdd6 1542 fatal_error (input_location, "fopen %s: %m", export_file);
9d4d5d58
DE
1543 write_aix_file (exportf, exports.first);
1544 if (fclose (exportf))
40fecdd6 1545 fatal_error (input_location, "fclose %s: %m", export_file);
9d4d5d58 1546 }
cbbbd917
JM
1547#endif
1548
4e81a331 1549 *c_ptr++ = c_file;
d4058195 1550 *c_ptr = *ld1 = *object = (char *) 0;
4e81a331 1551
608508a6 1552 if (verbose)
eb1eb914 1553 notice ("collect2 version %s\n", version_string);
4e81a331 1554
7c6d86cc
JG
1555 if (helpflag)
1556 {
df10a535
RW
1557 printf ("Usage: collect2 [options]\n");
1558 printf (" Wrap linker and generate constructor code if needed.\n");
1559 printf (" Options:\n");
1560 printf (" -debug Enable debug output\n");
1561 printf (" --help Display this information\n");
1562 printf (" -v, --version Display this program's version number\n");
1563 printf ("\n");
e050689b 1564 printf ("Overview: https://gcc.gnu.org/onlinedocs/gccint/Collect2.html\n");
df10a535
RW
1565 printf ("Report bugs: %s\n", bug_report_url);
1566 printf ("\n");
7c6d86cc
JG
1567 }
1568
4e81a331
RS
1569 if (debug)
1570 {
d4058195 1571 const char *ptr;
a1549b15
RS
1572 fprintf (stderr, "ld_file_name = %s\n",
1573 (ld_file_name ? ld_file_name : "not found"));
1574 fprintf (stderr, "c_file_name = %s\n",
1575 (c_file_name ? c_file_name : "not found"));
1576 fprintf (stderr, "nm_file_name = %s\n",
1577 (nm_file_name ? nm_file_name : "not found"));
68d69835
JM
1578#ifdef LDD_SUFFIX
1579 fprintf (stderr, "ldd_file_name = %s\n",
1580 (ldd_file_name ? ldd_file_name : "not found"));
1581#endif
a1549b15
RS
1582 fprintf (stderr, "strip_file_name = %s\n",
1583 (strip_file_name ? strip_file_name : "not found"));
1584 fprintf (stderr, "c_file = %s\n",
1585 (c_file ? c_file : "not found"));
1586 fprintf (stderr, "o_file = %s\n",
1587 (o_file ? o_file : "not found"));
ed5b9462
RS
1588
1589 ptr = getenv ("COLLECT_GCC_OPTIONS");
1590 if (ptr)
1591 fprintf (stderr, "COLLECT_GCC_OPTIONS = %s\n", ptr);
1592
1593 ptr = getenv ("COLLECT_GCC");
1594 if (ptr)
1595 fprintf (stderr, "COLLECT_GCC = %s\n", ptr);
1596
1597 ptr = getenv ("COMPILER_PATH");
1598 if (ptr)
1599 fprintf (stderr, "COMPILER_PATH = %s\n", ptr);
1600
512b62fb 1601 ptr = getenv (LIBRARY_PATH_ENV);
ed5b9462 1602 if (ptr)
512b62fb 1603 fprintf (stderr, "%-20s= %s\n", LIBRARY_PATH_ENV, ptr);
ed5b9462
RS
1604
1605 fprintf (stderr, "\n");
4e81a331
RS
1606 }
1607
aa32d841 1608 /* Load the program, searching all libraries and attempting to provide
7e49a4b3 1609 undefined symbols from repository information.
b8698a0f 1610
7e49a4b3 1611 If -r or they will be run via some other method, do not build the
b8698a0f 1612 constructor or destructor list, just return now. */
7e49a4b3
OH
1613 {
1614 bool early_exit
1615 = rflag || (! DO_COLLECT_EXPORT_LIST && ! do_collecting);
1616
1617 /* Perform the first pass link now, if we're about to exit or if we need
1618 to scan for things we haven't collected yet before pursuing further.
1619
1620 On AIX, the latter typically includes nothing for shared objects or
1621 frame tables for an executable, out of what the required early scan on
1622 objects and libraries has performed above. In the !shared_obj case, we
1623 expect the relevant tables to be dragged together with their associated
1624 functions from precise cross reference insertions by the compiler. */
b8698a0f 1625
7e49a4b3 1626 if (early_exit || ld1_filter != SCAN_NOTHING)
e9f8a554 1627 do_link (ld1_argv, "ld1_args");
b8698a0f 1628
7e49a4b3
OH
1629 if (early_exit)
1630 {
1631#ifdef COLLECT_EXPORT_LIST
1632 /* Make sure we delete the export file we may have created. */
1633 if (export_file != 0 && export_file[0])
1634 maybe_unlink (export_file);
63f38a90 1635#endif
c082f9f3 1636 if (lto_mode != LTO_MODE_NONE)
d7f09764 1637 maybe_run_lto_and_relink (ld1_argv, object_lst, object, false);
11afe8e8 1638 else
4098a6d4 1639 post_ld_pass (/*temp_file*/false);
d7f09764 1640
7e49a4b3
OH
1641 return 0;
1642 }
1643 }
4e81a331 1644
7e49a4b3
OH
1645 /* Unless we have done it all already, examine the namelist and search for
1646 static constructors and destructors to call. Write the constructor and
1647 destructor tables to a .s file and reload. */
a3184468 1648
7e49a4b3
OH
1649 if (ld1_filter != SCAN_NOTHING)
1650 scan_prog_file (output_file, PASS_FIRST, ld1_filter);
4e81a331 1651
68d69835
JM
1652#ifdef SCAN_LIBRARIES
1653 scan_libraries (output_file);
1654#endif
1655
4e81a331
RS
1656 if (debug)
1657 {
0f667308
MP
1658 notice_translated (ngettext ("%d constructor found\n",
1659 "%d constructors found\n",
1660 constructors.number),
1661 constructors.number);
1662 notice_translated (ngettext ("%d destructor found\n",
1663 "%d destructors found\n",
1664 destructors.number),
1665 destructors.number);
c3284718
RS
1666 notice_translated (ngettext ("%d frame table found\n",
1667 "%d frame tables found\n",
1668 frame_tables.number),
0f667308 1669 frame_tables.number);
4e81a331
RS
1670 }
1671
7e49a4b3
OH
1672 /* If the scan exposed nothing of special interest, there's no need to
1673 generate the glue code and relink so return now. */
1674
68d69835 1675 if (constructors.number == 0 && destructors.number == 0
0021b564 1676 && frame_tables.number == 0
db126753 1677#if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
68d69835 1678 /* If we will be running these functions ourselves, we want to emit
db126753 1679 stubs into the shared library so that we do not have to relink
68d69835
JM
1680 dependent programs when we add static objects. */
1681 && ! shared_obj
1682#endif
1683 )
a87104d9 1684 {
67f6e649 1685 /* Do link without additional code generation now if we didn't
7e49a4b3
OH
1686 do it earlier for scanning purposes. */
1687 if (ld1_filter == SCAN_NOTHING)
e9f8a554 1688 do_link (ld1_argv, "ld1_args");
7e49a4b3 1689
d7f09764
DN
1690 if (lto_mode)
1691 maybe_run_lto_and_relink (ld1_argv, object_lst, object, false);
1692
a87104d9
MM
1693 /* Strip now if it was requested on the command line. */
1694 if (strip_flag)
1695 {
5ed6ace5 1696 char **real_strip_argv = XCNEWVEC (char *, 3);
67165eb3
ILT
1697 const char ** strip_argv = CONST_CAST2 (const char **, char **,
1698 real_strip_argv);
159b3be1 1699
aee3a549 1700 strip_argv[0] = strip_file_name;
0cdd3ddd 1701 strip_argv[1] = output_file;
a87104d9 1702 strip_argv[2] = (char *) 0;
b3032d1b 1703 fork_execute ("strip", real_strip_argv, false, NULL);
a87104d9 1704 }
eccd41bb
RK
1705
1706#ifdef COLLECT_EXPORT_LIST
1707 maybe_unlink (export_file);
1708#endif
4098a6d4 1709 post_ld_pass (/*temp_file*/false);
a87104d9
MM
1710 return 0;
1711 }
4e81a331 1712
ec5c56db 1713 /* Sort ctor and dtor lists by priority. */
2ce3c6c6
JM
1714 sort_ids (&constructors);
1715 sort_ids (&destructors);
1716
c3284718 1717 maybe_unlink (output_file);
4e81a331 1718 outf = fopen (c_file, "w");
0f41302f 1719 if (outf == (FILE *) 0)
40fecdd6 1720 fatal_error (input_location, "fopen %s: %m", c_file);
4e81a331
RS
1721
1722 write_c_file (outf, c_file);
1723
1724 if (fclose (outf))
40fecdd6 1725 fatal_error (input_location, "fclose %s: %m", c_file);
4e81a331 1726
603b4064
RK
1727 /* Tell the linker that we have initializer and finalizer functions. */
1728#ifdef LD_INIT_SWITCH
c71791e0 1729#ifdef COLLECT_EXPORT_LIST
d4c3ec27 1730 *ld2++ = concat (LD_INIT_SWITCH, ":", initname, ":", fininame, NULL);
c71791e0 1731#else
603b4064
RK
1732 *ld2++ = LD_INIT_SWITCH;
1733 *ld2++ = initname;
1734 *ld2++ = LD_FINI_SWITCH;
1735 *ld2++ = fininame;
1736#endif
c71791e0 1737#endif
603b4064 1738
cbbbd917
JM
1739#ifdef COLLECT_EXPORT_LIST
1740 if (shared_obj)
1741 {
9d4d5d58
DE
1742 /* If we did not add export flag to link arguments before, add it to
1743 second link phase now. No new exports should have been added. */
1744 if (! exports.first)
d4c3ec27 1745 *ld2++ = concat ("-bE:", export_file, NULL);
9d4d5d58 1746
44178879
DE
1747#ifdef TARGET_AIX_VERSION
1748 add_to_list (&exports, aix_shared_initname);
1749 add_to_list (&exports, aix_shared_fininame);
1750#endif
1751
aaef9b06 1752#ifndef LD_INIT_SWITCH
cbbbd917
JM
1753 add_to_list (&exports, initname);
1754 add_to_list (&exports, fininame);
603b4064
RK
1755 add_to_list (&exports, "_GLOBAL__DI");
1756 add_to_list (&exports, "_GLOBAL__DD");
aaef9b06 1757#endif
cbbbd917 1758 exportf = fopen (export_file, "w");
0f41302f 1759 if (exportf == (FILE *) 0)
40fecdd6 1760 fatal_error (input_location, "fopen %s: %m", export_file);
9d4d5d58 1761 write_aix_file (exportf, exports.first);
cbbbd917 1762 if (fclose (exportf))
40fecdd6 1763 fatal_error (input_location, "fclose %s: %m", export_file);
cbbbd917
JM
1764 }
1765#endif
1766
9d4d5d58
DE
1767 /* End of arguments to second link phase. */
1768 *ld2 = (char*) 0;
1769
4e81a331
RS
1770 if (debug)
1771 {
0cdd3ddd
RS
1772 fprintf (stderr, "\n========== output_file = %s, c_file = %s\n",
1773 output_file, c_file);
4e81a331
RS
1774 write_c_file (stderr, "stderr");
1775 fprintf (stderr, "========== end of c_file\n\n");
cbbbd917
JM
1776#ifdef COLLECT_EXPORT_LIST
1777 fprintf (stderr, "\n========== export_file = %s\n", export_file);
9d4d5d58 1778 write_aix_file (stderr, exports.first);
cbbbd917
JM
1779 fprintf (stderr, "========== end of export_file\n\n");
1780#endif
4e81a331
RS
1781 }
1782
1783 /* Assemble the constructor and destructor tables.
0f41302f 1784 Link the tables in with the rest of the program. */
4e81a331 1785
e9f8a554 1786 fork_execute ("gcc", c_argv, at_file_supplied, "gcc_args");
db126753 1787#ifdef COLLECT_EXPORT_LIST
67f6e649 1788 /* On AIX we must call link because of possible templates resolution. */
e9f8a554 1789 do_link (ld2_argv, "ld2_args");
d7f09764
DN
1790
1791 if (lto_mode)
1792 maybe_run_lto_and_relink (ld2_argv, object_lst, object, false);
db126753 1793#else
67f6e649 1794 /* Otherwise, simply call ld because link is already done. */
d7f09764
DN
1795 if (lto_mode)
1796 maybe_run_lto_and_relink (ld2_argv, object_lst, object, true);
1797 else
11afe8e8 1798 {
e9f8a554 1799 fork_execute ("ld", ld2_argv, HAVE_GNU_LD && at_file_supplied, "ld_args");
4098a6d4 1800 post_ld_pass (/*temp_file*/false);
11afe8e8 1801 }
4e81a331
RS
1802
1803 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1804 constructors/destructors in shared libraries. */
7e49a4b3 1805 scan_prog_file (output_file, PASS_SECOND, SCAN_ALL);
159b3be1 1806#endif
4e81a331 1807
4e81a331
RS
1808 return 0;
1809}
1810
4e81a331 1811\f
9178a345
OH
1812/* Unlink FILE unless we are debugging or this is the output_file
1813 and we may not unlink it. */
4e81a331 1814
5f0ad6a5 1815void
159b3be1 1816maybe_unlink (const char *file)
4e81a331 1817{
513825f0 1818 if (save_temps && file_exists (file))
9178a345 1819 {
513825f0
IS
1820 if (verbose)
1821 notice ("[Leaving %s]\n", file);
9178a345
OH
1822 return;
1823 }
1824
1825 if (file == output_file && !may_unlink_output_file)
1826 return;
1827
1828 unlink_if_ordinary (file);
4e81a331
RS
1829}
1830
d7f09764
DN
1831/* Call maybe_unlink on the NULL-terminated list, FILE_LIST. */
1832
1833static void
1834maybe_unlink_list (char **file_list)
1835{
1836 char **tmp = file_list;
1837
1838 while (*tmp)
1839 maybe_unlink (*(tmp++));
1840}
1841
4e81a331 1842\f
2ce3c6c6
JM
1843static long sequence_number = 0;
1844
4e81a331
RS
1845/* Add a name to a linked list. */
1846
1847static void
159b3be1 1848add_to_list (struct head *head_ptr, const char *name)
4e81a331 1849{
e1e4cdc4
KG
1850 struct id *newid
1851 = (struct id *) xcalloc (sizeof (struct id) + strlen (name), 1);
0393b857 1852 struct id *p;
4e81a331
RS
1853 strcpy (newid->name, name);
1854
1855 if (head_ptr->first)
1856 head_ptr->last->next = newid;
1857 else
1858 head_ptr->first = newid;
1859
0393b857
JM
1860 /* Check for duplicate symbols. */
1861 for (p = head_ptr->first;
1862 strcmp (name, p->name) != 0;
1863 p = p->next)
1864 ;
1865 if (p != newid)
1866 {
1867 head_ptr->last->next = 0;
1868 free (newid);
1869 return;
1870 }
1871
1872 newid->sequence = ++sequence_number;
4e81a331
RS
1873 head_ptr->last = newid;
1874 head_ptr->number++;
1875}
1876
2ce3c6c6
JM
1877/* Grab the init priority number from an init function name that
1878 looks like "_GLOBAL_.I.12345.foo". */
1879
1880static int
159b3be1 1881extract_init_priority (const char *name)
2ce3c6c6 1882{
6f87c7d8 1883 int pos = 0, pri;
2ce3c6c6 1884
44178879
DE
1885#ifdef TARGET_AIX_VERSION
1886 /* Run dependent module initializers before any constructors in this
1887 module. */
1888 switch (is_ctor_dtor (name))
1889 {
1890 case SYM_AIXI:
1891 case SYM_AIXD:
1892 return INT_MIN;
1893 default:
1894 break;
1895 }
1896#endif
1897
2ce3c6c6
JM
1898 while (name[pos] == '_')
1899 ++pos;
1900 pos += 10; /* strlen ("GLOBAL__X_") */
1901
ec5c56db 1902 /* Extract init_p number from ctor/dtor name. */
6f87c7d8
JM
1903 pri = atoi (name + pos);
1904 return pri ? pri : DEFAULT_INIT_PRIORITY;
2ce3c6c6
JM
1905}
1906
1907/* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1908 ctors will be run from right to left, dtors from left to right. */
1909
1910static void
159b3be1 1911sort_ids (struct head *head_ptr)
2ce3c6c6
JM
1912{
1913 /* id holds the current element to insert. id_next holds the next
1914 element to insert. id_ptr iterates through the already sorted elements
1915 looking for the place to insert id. */
1916 struct id *id, *id_next, **id_ptr;
2ce3c6c6
JM
1917
1918 id = head_ptr->first;
1919
1920 /* We don't have any sorted elements yet. */
1921 head_ptr->first = NULL;
1922
1923 for (; id; id = id_next)
1924 {
1925 id_next = id->next;
1926 id->sequence = extract_init_priority (id->name);
1927
1928 for (id_ptr = &(head_ptr->first); ; id_ptr = &((*id_ptr)->next))
1929 if (*id_ptr == NULL
1930 /* If the sequence numbers are the same, we put the id from the
1931 file later on the command line later in the list. */
1932 || id->sequence > (*id_ptr)->sequence
1933 /* Hack: do lexical compare, too.
1934 || (id->sequence == (*id_ptr)->sequence
c22cacf3 1935 && strcmp (id->name, (*id_ptr)->name) > 0) */
2ce3c6c6
JM
1936 )
1937 {
1938 id->next = *id_ptr;
1939 *id_ptr = id;
1940 break;
1941 }
1942 }
1943
1944 /* Now set the sequence numbers properly so write_c_file works. */
1945 for (id = head_ptr->first; id; id = id->next)
1946 id->sequence = ++sequence_number;
1947}
1948
4e81a331
RS
1949/* Write: `prefix', the names on list LIST, `suffix'. */
1950
1951static void
159b3be1 1952write_list (FILE *stream, const char *prefix, struct id *list)
4e81a331
RS
1953{
1954 while (list)
1955 {
1956 fprintf (stream, "%sx%d,\n", prefix, list->sequence);
1957 list = list->next;
1958 }
1959}
1960
40c3a857 1961#ifdef COLLECT_EXPORT_LIST
db126753
DE
1962/* This function is really used only on AIX, but may be useful. */
1963static int
159b3be1 1964is_in_list (const char *prefix, struct id *list)
db126753
DE
1965{
1966 while (list)
1967 {
1968 if (!strcmp (prefix, list->name)) return 1;
1969 list = list->next;
1970 }
1971 return 0;
1972}
c3fb23f4 1973#endif /* COLLECT_EXPORT_LIST */
db126753
DE
1974
1975/* Added for debugging purpose. */
487a6e06 1976#ifdef COLLECT_EXPORT_LIST
db126753 1977static void
159b3be1 1978dump_list (FILE *stream, const char *prefix, struct id *list)
db126753
DE
1979{
1980 while (list)
1981 {
1982 fprintf (stream, "%s%s,\n", prefix, list->name);
1983 list = list->next;
1984 }
1985}
487a6e06 1986#endif
db126753 1987
487a6e06 1988#if 0
db126753 1989static void
159b3be1 1990dump_prefix_list (FILE *stream, const char *prefix, struct prefix_list *list)
db126753
DE
1991{
1992 while (list)
1993 {
1994 fprintf (stream, "%s%s,\n", prefix, list->prefix);
1995 list = list->next;
1996 }
1997}
487a6e06 1998#endif
db126753 1999
4e81a331 2000static void
159b3be1 2001write_list_with_asm (FILE *stream, const char *prefix, struct id *list)
4e81a331
RS
2002{
2003 while (list)
2004 {
c7af43d8 2005 fprintf (stream, "%sx%d __asm__ (\"%s\");\n",
4e81a331
RS
2006 prefix, list->sequence, list->name);
2007 list = list->next;
2008 }
2009}
2010
68d69835
JM
2011/* Write out the constructor and destructor tables statically (for a shared
2012 object), along with the functions to execute them. */
2013
2014static void
159b3be1 2015write_c_file_stat (FILE *stream, const char *name ATTRIBUTE_UNUSED)
68d69835 2016{
d4058195
KG
2017 const char *p, *q;
2018 char *prefix, *r;
0021b564 2019 int frames = (frame_tables.number > 0);
68d69835
JM
2020
2021 /* Figure out name of output_file, stripping off .so version. */
ba78087b
KT
2022 q = p = lbasename (output_file);
2023
68d69835
JM
2024 while (q)
2025 {
9473c522 2026 q = strchr (q,'.');
68d69835
JM
2027 if (q == 0)
2028 {
2029 q = p + strlen (p);
2030 break;
2031 }
2032 else
2033 {
ba78087b 2034 if (filename_ncmp (q, SHLIB_SUFFIX, strlen (SHLIB_SUFFIX)) == 0)
68d69835 2035 {
881466d8 2036 q += strlen (SHLIB_SUFFIX);
68d69835
JM
2037 break;
2038 }
2039 else
2040 q++;
2041 }
2042 }
2043 /* q points to null at end of the string (or . of the .so version) */
5ed6ace5 2044 prefix = XNEWVEC (char, q - p + 1);
68d69835
JM
2045 strncpy (prefix, p, q - p);
2046 prefix[q - p] = 0;
d4058195
KG
2047 for (r = prefix; *r; r++)
2048 if (!ISALNUM ((unsigned char)*r))
2049 *r = '_';
68d69835 2050 if (debug)
ab87f8c8
JL
2051 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
2052 output_file, prefix);
68d69835 2053
d4c3ec27
KG
2054 initname = concat ("_GLOBAL__FI_", prefix, NULL);
2055 fininame = concat ("_GLOBAL__FD_", prefix, NULL);
44178879
DE
2056#ifdef TARGET_AIX_VERSION
2057 aix_shared_initname = concat ("_GLOBAL__AIXI_", prefix, NULL);
2058 aix_shared_fininame = concat ("_GLOBAL__AIXD_", prefix, NULL);
2059#endif
68d69835
JM
2060
2061 free (prefix);
2062
f9da5064 2063 /* Write the tables as C code. */
68d69835 2064
44178879
DE
2065 /* This count variable is used to prevent multiple calls to the
2066 constructors/destructors.
2067 This guard against multiple calls is important on AIX as the initfini
2068 functions are deliberately invoked multiple times as part of the
2069 mechanisms GCC uses to order constructors across different dependent
2070 shared libraries (see config/rs6000/aix.h).
2071 */
68d69835
JM
2072 fprintf (stream, "static int count;\n");
2073 fprintf (stream, "typedef void entry_pt();\n");
2074 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
0021b564
JM
2075
2076 if (frames)
2077 {
2078 write_list_with_asm (stream, "extern void *", frame_tables.first);
2079
2080 fprintf (stream, "\tstatic void *frame_table[] = {\n");
2081 write_list (stream, "\t\t&", frame_tables.first);
2082 fprintf (stream, "\t0\n};\n");
2083
956d6950
JL
2084 /* This must match what's in frame.h. */
2085 fprintf (stream, "struct object {\n");
2086 fprintf (stream, " void *pc_begin;\n");
2087 fprintf (stream, " void *pc_end;\n");
2088 fprintf (stream, " void *fde_begin;\n");
2089 fprintf (stream, " void *fde_array;\n");
14cd4d23 2090 fprintf (stream, " __SIZE_TYPE__ count;\n");
956d6950
JL
2091 fprintf (stream, " struct object *next;\n");
2092 fprintf (stream, "};\n");
2093
04218b35 2094 fprintf (stream, "extern void __register_frame_info_table_bases (void *, struct object *, void *tbase, void *dbase);\n");
6d8ccdbb 2095 fprintf (stream, "extern void __register_frame_info_table (void *, struct object *);\n");
a3fd4e75 2096 fprintf (stream, "extern void *__deregister_frame_info (void *);\n");
04218b35
AD
2097#ifdef TARGET_AIX_VERSION
2098 fprintf (stream, "extern void *__gcc_unwind_dbase;\n");
2099#endif
0021b564
JM
2100
2101 fprintf (stream, "static void reg_frame () {\n");
956d6950 2102 fprintf (stream, "\tstatic struct object ob;\n");
04218b35
AD
2103#ifdef TARGET_AIX_VERSION
2104 /* Use __gcc_unwind_dbase as the base address for data on AIX.
2105 This might not be the start of the segment, signed offsets assumed.
2106 */
2107 fprintf (stream, "\t__register_frame_info_table_bases (frame_table, &ob, (void *)0, &__gcc_unwind_dbase);\n");
2108#else
6d8ccdbb 2109 fprintf (stream, "\t__register_frame_info_table (frame_table, &ob);\n");
04218b35 2110#endif
0021b564
JM
2111 fprintf (stream, "\t}\n");
2112
2113 fprintf (stream, "static void dereg_frame () {\n");
6d8ccdbb 2114 fprintf (stream, "\t__deregister_frame_info (frame_table);\n");
0021b564
JM
2115 fprintf (stream, "\t}\n");
2116 }
2117
e721d113
DE
2118#ifdef COLLECT_EXPORT_LIST
2119 /* Set visibility of initializers to default. */
2120 if (visibility_flag)
2121 fprintf (stream, "#pragma GCC visibility push(default)\n");
2122#endif
68d69835 2123 fprintf (stream, "void %s() {\n", initname);
0021b564 2124 if (constructors.number > 0 || frames)
68d69835
JM
2125 {
2126 fprintf (stream, "\tstatic entry_pt *ctors[] = {\n");
2127 write_list (stream, "\t\t", constructors.first);
0021b564
JM
2128 if (frames)
2129 fprintf (stream, "\treg_frame,\n");
68d69835
JM
2130 fprintf (stream, "\t};\n");
2131 fprintf (stream, "\tentry_pt **p;\n");
2132 fprintf (stream, "\tif (count++ != 0) return;\n");
0021b564 2133 fprintf (stream, "\tp = ctors + %d;\n", constructors.number + frames);
68d69835
JM
2134 fprintf (stream, "\twhile (p > ctors) (*--p)();\n");
2135 }
603b4064
RK
2136 else
2137 fprintf (stream, "\t++count;\n");
68d69835
JM
2138 fprintf (stream, "}\n");
2139 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
2140 fprintf (stream, "void %s() {\n", fininame);
0021b564 2141 if (destructors.number > 0 || frames)
68d69835
JM
2142 {
2143 fprintf (stream, "\tstatic entry_pt *dtors[] = {\n");
2144 write_list (stream, "\t\t", destructors.first);
0021b564
JM
2145 if (frames)
2146 fprintf (stream, "\tdereg_frame,\n");
68d69835
JM
2147 fprintf (stream, "\t};\n");
2148 fprintf (stream, "\tentry_pt **p;\n");
2149 fprintf (stream, "\tif (--count != 0) return;\n");
2150 fprintf (stream, "\tp = dtors;\n");
2151 fprintf (stream, "\twhile (p < dtors + %d) (*p++)();\n",
0021b564 2152 destructors.number + frames);
68d69835
JM
2153 }
2154 fprintf (stream, "}\n");
e721d113
DE
2155#ifdef COLLECT_EXPORT_LIST
2156 if (visibility_flag)
2157 fprintf (stream, "#pragma GCC visibility pop\n");
2158#endif
68d69835 2159
603b4064
RK
2160 if (shared_obj)
2161 {
e721d113
DE
2162#ifdef COLLECT_EXPORT_LIST
2163 /* Set visibility of initializers to default. */
2164 if (visibility_flag)
2165 fprintf (stream, "#pragma GCC visibility push(default)\n");
2166#endif
c3284718
RS
2167 COLLECT_SHARED_INIT_FUNC (stream, initname);
2168 COLLECT_SHARED_FINI_FUNC (stream, fininame);
e721d113
DE
2169#ifdef COLLECT_EXPORT_LIST
2170 if (visibility_flag)
2171 fprintf (stream, "#pragma GCC visibility pop\n");
2172#endif
603b4064 2173 }
68d69835
JM
2174}
2175
0f41302f 2176/* Write the constructor/destructor tables. */
4e81a331 2177
081f5e7e 2178#ifndef LD_INIT_SWITCH
4e81a331 2179static void
159b3be1 2180write_c_file_glob (FILE *stream, const char *name ATTRIBUTE_UNUSED)
4e81a331 2181{
f9da5064 2182 /* Write the tables as C code. */
4e81a331 2183
0021b564
JM
2184 int frames = (frame_tables.number > 0);
2185
4e81a331 2186 fprintf (stream, "typedef void entry_pt();\n\n");
159b3be1 2187
17704846 2188 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
0021b564
JM
2189
2190 if (frames)
2191 {
2192 write_list_with_asm (stream, "extern void *", frame_tables.first);
2193
2194 fprintf (stream, "\tstatic void *frame_table[] = {\n");
2195 write_list (stream, "\t\t&", frame_tables.first);
2196 fprintf (stream, "\t0\n};\n");
2197
5a5ab947
PE
2198 /* This must match what's in frame.h. */
2199 fprintf (stream, "struct object {\n");
2200 fprintf (stream, " void *pc_begin;\n");
2201 fprintf (stream, " void *pc_end;\n");
2202 fprintf (stream, " void *fde_begin;\n");
2203 fprintf (stream, " void *fde_array;\n");
2204 fprintf (stream, " __SIZE_TYPE__ count;\n");
2205 fprintf (stream, " struct object *next;\n");
2206 fprintf (stream, "};\n");
2207
6d8ccdbb 2208 fprintf (stream, "extern void __register_frame_info_table (void *, struct object *);\n");
a3fd4e75 2209 fprintf (stream, "extern void *__deregister_frame_info (void *);\n");
0021b564
JM
2210
2211 fprintf (stream, "static void reg_frame () {\n");
5a5ab947 2212 fprintf (stream, "\tstatic struct object ob;\n");
6d8ccdbb 2213 fprintf (stream, "\t__register_frame_info_table (frame_table, &ob);\n");
0021b564
JM
2214 fprintf (stream, "\t}\n");
2215
2216 fprintf (stream, "static void dereg_frame () {\n");
6d8ccdbb 2217 fprintf (stream, "\t__deregister_frame_info (frame_table);\n");
0021b564
JM
2218 fprintf (stream, "\t}\n");
2219 }
2220
4e81a331 2221 fprintf (stream, "\nentry_pt * __CTOR_LIST__[] = {\n");
0021b564 2222 fprintf (stream, "\t(entry_pt *) %d,\n", constructors.number + frames);
ed5b9462 2223 write_list (stream, "\t", constructors.first);
0021b564
JM
2224 if (frames)
2225 fprintf (stream, "\treg_frame,\n");
4e81a331
RS
2226 fprintf (stream, "\t0\n};\n\n");
2227
17704846 2228 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
4e81a331
RS
2229
2230 fprintf (stream, "\nentry_pt * __DTOR_LIST__[] = {\n");
0021b564 2231 fprintf (stream, "\t(entry_pt *) %d,\n", destructors.number + frames);
ed5b9462 2232 write_list (stream, "\t", destructors.first);
0021b564
JM
2233 if (frames)
2234 fprintf (stream, "\tdereg_frame,\n");
4e81a331
RS
2235 fprintf (stream, "\t0\n};\n\n");
2236
d6cf3187
RS
2237 fprintf (stream, "extern entry_pt %s;\n", NAME__MAIN);
2238 fprintf (stream, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN);
4e81a331 2239}
081f5e7e 2240#endif /* ! LD_INIT_SWITCH */
4e81a331 2241
68d69835 2242static void
159b3be1 2243write_c_file (FILE *stream, const char *name)
68d69835 2244{
603b4064
RK
2245#ifndef LD_INIT_SWITCH
2246 if (! shared_obj)
68d69835 2247 write_c_file_glob (stream, name);
603b4064
RK
2248 else
2249#endif
2250 write_c_file_stat (stream, name);
68d69835 2251}
cbbbd917 2252
db126753 2253#ifdef COLLECT_EXPORT_LIST
cbbbd917 2254static void
159b3be1 2255write_aix_file (FILE *stream, struct id *list)
db126753 2256{
db126753 2257 for (; list; list = list->next)
9d4d5d58
DE
2258 {
2259 fputs (list->name, stream);
2260 putc ('\n', stream);
2261 }
db126753
DE
2262}
2263#endif
4e81a331 2264\f
ed5b9462 2265#ifdef OBJECT_FORMAT_NONE
4e81a331 2266
c082f9f3 2267/* Check to make sure the file is an LTO object file. */
d7f09764 2268
4098a6d4
IS
2269static int
2270has_lto_section (void *data, const char *name ATTRIBUTE_UNUSED,
2271 off_t offset ATTRIBUTE_UNUSED,
2272 off_t length ATTRIBUTE_UNUSED)
2273{
2274 int *found = (int *) data;
2275
6ba3079d
ML
2276 if (!startswith (name, LTO_SECTION_NAME_PREFIX)
2277 && !startswith (name, OFFLOAD_SECTION_NAME_PREFIX))
2278 return 1;
4098a6d4
IS
2279
2280 *found = 1;
2281
2282 /* Stop iteration. */
2283 return 0;
2284}
2285
d7f09764 2286static bool
4098a6d4 2287is_lto_object_file (const char *prog_name)
d7f09764 2288{
4098a6d4
IS
2289 const char *errmsg;
2290 int err;
2291 int found = 0;
2292 off_t inoff = 0;
2293 int infd = open (prog_name, O_RDONLY | O_BINARY);
c082f9f3 2294
4098a6d4
IS
2295 if (infd == -1)
2296 return false;
d7f09764 2297
4098a6d4
IS
2298 simple_object_read *inobj = simple_object_start_read (infd, inoff,
2299 LTO_SEGMENT_NAME,
2300 &errmsg, &err);
2301 if (!inobj)
43ae43f6
IS
2302 {
2303 close (infd);
2304 return false;
2305 }
c082f9f3 2306
4098a6d4
IS
2307 errmsg = simple_object_find_sections (inobj, has_lto_section,
2308 (void *) &found, &err);
43ae43f6
IS
2309 simple_object_release_read (inobj);
2310 close (infd);
4098a6d4 2311 if (! errmsg && found)
c082f9f3 2312 return true;
c082f9f3 2313
4098a6d4 2314 if (errmsg)
a9c697b8 2315 fatal_error (0, "%s: %s", errmsg, xstrerror (err));
c082f9f3 2316 return false;
d7f09764
DN
2317}
2318
ed5b9462 2319/* Generic version to scan the name list of the loaded program for
7e49a4b3 2320 the symbols g++ uses for static constructors and destructors. */
4e81a331
RS
2321
2322static void
7e49a4b3
OH
2323scan_prog_file (const char *prog_name, scanpass which_pass,
2324 scanfilter filter)
4e81a331 2325{
159b3be1 2326 void (*int_handler) (int);
1fff69c9 2327#ifdef SIGQUIT
159b3be1 2328 void (*quit_handler) (int);
1fff69c9 2329#endif
d4058195 2330 char *real_nm_argv[4];
67165eb3 2331 const char **nm_argv = CONST_CAST2 (const char **, char**, real_nm_argv);
4e81a331 2332 int argc = 0;
1fff69c9
ILT
2333 struct pex_obj *pex;
2334 const char *errmsg;
2335 int err;
4e81a331
RS
2336 char *p, buf[1024];
2337 FILE *inf;
2338
68d69835 2339 if (which_pass == PASS_SECOND)
4e81a331
RS
2340 return;
2341
3bec79c5 2342 /* LTO objects must be in a known format. This check prevents
d7f09764 2343 us from accepting an archive containing LTO objects, which
073a8998 2344 gcc cannot currently handle. */
4098a6d4
IS
2345 if (which_pass == PASS_LTOINFO)
2346 {
2347 if(is_lto_object_file (prog_name)) {
2348 add_lto_object (&lto_objects, prog_name);
2349 }
2350 return;
2351 }
d7f09764 2352
db126753 2353 /* If we do not have an `nm', complain. */
bb59f9a6 2354 if (nm_file_name == 0)
904f3daa 2355 fatal_error (input_location, "cannot find %<nm%>");
bb59f9a6 2356
68d69835 2357 nm_argv[argc++] = nm_file_name;
4e81a331 2358 if (NM_FLAGS[0] != '\0')
ed5b9462 2359 nm_argv[argc++] = NM_FLAGS;
4e81a331 2360
ed5b9462 2361 nm_argv[argc++] = prog_name;
0f41302f 2362 nm_argv[argc++] = (char *) 0;
4e81a331 2363
4e81a331 2364 /* Trace if needed. */
608508a6 2365 if (verbose)
4e81a331 2366 {
d4058195
KG
2367 const char **p_argv;
2368 const char *str;
4e81a331 2369
0f41302f 2370 for (p_argv = &nm_argv[0]; (str = *p_argv) != (char *) 0; p_argv++)
4e81a331
RS
2371 fprintf (stderr, " %s", str);
2372
2373 fprintf (stderr, "\n");
2374 }
2375
2376 fflush (stdout);
2377 fflush (stderr);
2378
1fff69c9
ILT
2379 pex = pex_init (PEX_USE_PIPES, "collect2", NULL);
2380 if (pex == NULL)
a9c697b8 2381 fatal_error (input_location, "%<pex_init%> failed: %m");
4e81a331 2382
d7f09764
DN
2383 errmsg = pex_run (pex, 0, nm_file_name, real_nm_argv, NULL, HOST_BIT_BUCKET,
2384 &err);
1fff69c9 2385 if (errmsg != NULL)
4e81a331 2386 {
1fff69c9
ILT
2387 if (err != 0)
2388 {
2389 errno = err;
40fecdd6 2390 fatal_error (input_location, "%s: %m", _(errmsg));
1fff69c9
ILT
2391 }
2392 else
40fecdd6 2393 fatal_error (input_location, errmsg);
4e81a331
RS
2394 }
2395
159b3be1 2396 int_handler = (void (*) (int)) signal (SIGINT, SIG_IGN);
8ab861c7 2397#ifdef SIGQUIT
159b3be1 2398 quit_handler = (void (*) (int)) signal (SIGQUIT, SIG_IGN);
8ab861c7 2399#endif
4e81a331 2400
1fff69c9
ILT
2401 inf = pex_read_output (pex, 0);
2402 if (inf == NULL)
a9c697b8 2403 fatal_error (input_location, "cannot open nm output: %m");
4e81a331
RS
2404
2405 if (debug)
4098a6d4 2406 fprintf (stderr, "\nnm output with constructors/destructors.\n");
4e81a331
RS
2407
2408 /* Read each line of nm output. */
0f41302f 2409 while (fgets (buf, sizeof buf, inf) != (char *) 0)
4e81a331
RS
2410 {
2411 int ch, ch2;
ed5b9462 2412 char *name, *end;
4e81a331 2413
d7f09764
DN
2414 if (debug)
2415 fprintf (stderr, "\t%s\n", buf);
2416
4e81a331 2417 /* If it contains a constructor or destructor name, add the name
7e49a4b3
OH
2418 to the appropriate list unless this is a kind of symbol we're
2419 not supposed to even consider. */
4e81a331
RS
2420
2421 for (p = buf; (ch = *p) != '\0' && ch != '\n' && ch != '_'; p++)
68d69835
JM
2422 if (ch == ' ' && p[1] == 'U' && p[2] == ' ')
2423 break;
4e81a331 2424
68d69835 2425 if (ch != '_')
4e81a331 2426 continue;
159b3be1 2427
ed5b9462
RS
2428 name = p;
2429 /* Find the end of the symbol name.
db126753 2430 Do not include `|', because Encore nm can tack that on the end. */
e9a780ec 2431 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|';
ed5b9462
RS
2432 end++)
2433 continue;
4e81a331 2434
90d326bd 2435
4e81a331 2436 *end = '\0';
44178879 2437
ed5b9462 2438 switch (is_ctor_dtor (name))
4e81a331 2439 {
4326ea40 2440 case SYM_CTOR:
7e49a4b3
OH
2441 if (! (filter & SCAN_CTOR))
2442 break;
68d69835
JM
2443 if (which_pass != PASS_LIB)
2444 add_to_list (&constructors, name);
ed5b9462 2445 break;
4e81a331 2446
4326ea40 2447 case SYM_DTOR:
7e49a4b3
OH
2448 if (! (filter & SCAN_DTOR))
2449 break;
68d69835
JM
2450 if (which_pass != PASS_LIB)
2451 add_to_list (&destructors, name);
2452 break;
2453
4326ea40 2454 case SYM_INIT:
7e49a4b3
OH
2455 if (! (filter & SCAN_INIT))
2456 break;
68d69835 2457 if (which_pass != PASS_LIB)
40fecdd6
JM
2458 fatal_error (input_location, "init function found in object %s",
2459 prog_name);
35e530c5 2460#ifndef LD_INIT_SWITCH
68d69835 2461 add_to_list (&constructors, name);
35e530c5 2462#endif
68d69835
JM
2463 break;
2464
4326ea40 2465 case SYM_FINI:
7e49a4b3
OH
2466 if (! (filter & SCAN_FINI))
2467 break;
68d69835 2468 if (which_pass != PASS_LIB)
40fecdd6
JM
2469 fatal_error (input_location, "fini function found in object %s",
2470 prog_name);
35e530c5 2471#ifndef LD_FINI_SWITCH
ed5b9462 2472 add_to_list (&destructors, name);
35e530c5 2473#endif
ed5b9462 2474 break;
4e81a331 2475
4326ea40 2476 case SYM_DWEH:
7e49a4b3
OH
2477 if (! (filter & SCAN_DWEH))
2478 break;
0021b564
JM
2479 if (which_pass != PASS_LIB)
2480 add_to_list (&frame_tables, name);
6690d24c 2481 break;
0021b564 2482
ed5b9462
RS
2483 default: /* not a constructor or destructor */
2484 continue;
4e81a331 2485 }
4e81a331
RS
2486 }
2487
2488 if (debug)
2489 fprintf (stderr, "\n");
2490
1fff69c9 2491 do_wait (nm_file_name, pex);
4e81a331
RS
2492
2493 signal (SIGINT, int_handler);
8ab861c7 2494#ifdef SIGQUIT
4e81a331 2495 signal (SIGQUIT, quit_handler);
8ab861c7 2496#endif
4e81a331
RS
2497}
2498
68d69835
JM
2499#ifdef LDD_SUFFIX
2500
2501/* Use the List Dynamic Dependencies program to find shared libraries that
2502 the output file depends upon and their initialization/finalization
2503 routines, if any. */
2504
159b3be1
AJ
2505static void
2506scan_libraries (const char *prog_name)
68d69835
JM
2507{
2508 static struct head libraries; /* list of shared libraries found */
2509 struct id *list;
159b3be1 2510 void (*int_handler) (int);
1fff69c9 2511#ifdef SIGQUIT
159b3be1 2512 void (*quit_handler) (int);
1fff69c9 2513#endif
421cba92 2514 char *real_ldd_argv[4];
db9369bb 2515 const char **ldd_argv = CONST_CAST2 (const char **, char **, real_ldd_argv);
68d69835 2516 int argc = 0;
1fff69c9
ILT
2517 struct pex_obj *pex;
2518 const char *errmsg;
2519 int err;
68d69835
JM
2520 char buf[1024];
2521 FILE *inf;
2522
db126753 2523 /* If we do not have an `ldd', complain. */
68d69835
JM
2524 if (ldd_file_name == 0)
2525 {
904f3daa 2526 error ("cannot find %<ldd%>");
68d69835
JM
2527 return;
2528 }
2529
2530 ldd_argv[argc++] = ldd_file_name;
2531 ldd_argv[argc++] = prog_name;
2532 ldd_argv[argc++] = (char *) 0;
2533
68d69835 2534 /* Trace if needed. */
608508a6 2535 if (verbose)
68d69835 2536 {
d4058195
KG
2537 const char **p_argv;
2538 const char *str;
68d69835
JM
2539
2540 for (p_argv = &ldd_argv[0]; (str = *p_argv) != (char *) 0; p_argv++)
2541 fprintf (stderr, " %s", str);
2542
2543 fprintf (stderr, "\n");
2544 }
2545
2546 fflush (stdout);
2547 fflush (stderr);
2548
1fff69c9
ILT
2549 pex = pex_init (PEX_USE_PIPES, "collect2", NULL);
2550 if (pex == NULL)
40fecdd6 2551 fatal_error (input_location, "pex_init failed: %m");
68d69835 2552
1fff69c9
ILT
2553 errmsg = pex_run (pex, 0, ldd_file_name, real_ldd_argv, NULL, NULL, &err);
2554 if (errmsg != NULL)
68d69835 2555 {
1fff69c9
ILT
2556 if (err != 0)
2557 {
2558 errno = err;
40fecdd6 2559 fatal_error (input_location, "%s: %m", _(errmsg));
1fff69c9
ILT
2560 }
2561 else
40fecdd6 2562 fatal_error (input_location, errmsg);
68d69835
JM
2563 }
2564
94d54276 2565 int_handler = (void (*) (int)) signal (SIGINT, SIG_IGN);
68d69835 2566#ifdef SIGQUIT
94d54276 2567 quit_handler = (void (*) (int)) signal (SIGQUIT, SIG_IGN);
68d69835
JM
2568#endif
2569
1fff69c9
ILT
2570 inf = pex_read_output (pex, 0);
2571 if (inf == NULL)
a9c697b8 2572 fatal_error (input_location, "cannot open ldd output: %m");
68d69835
JM
2573
2574 if (debug)
ab87f8c8 2575 notice ("\nldd output with constructors/destructors.\n");
68d69835
JM
2576
2577 /* Read each line of ldd output. */
2578 while (fgets (buf, sizeof buf, inf) != (char *) 0)
2579 {
f5720527 2580 int ch2;
68d69835
JM
2581 char *name, *end, *p = buf;
2582
0f41302f 2583 /* Extract names of libraries and add to list. */
68d69835
JM
2584 PARSE_LDD_OUTPUT (p);
2585 if (p == 0)
2586 continue;
2587
2588 name = p;
6ba3079d 2589 if (startswith (name, "not found"))
40fecdd6 2590 fatal_error (input_location, "dynamic dependency %s not found", buf);
68d69835 2591
0f41302f 2592 /* Find the end of the symbol name. */
159b3be1 2593 for (end = p;
e9a780ec 2594 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|';
68d69835
JM
2595 end++)
2596 continue;
2597 *end = '\0';
2598
2599 if (access (name, R_OK) == 0)
c22cacf3 2600 add_to_list (&libraries, name);
68d69835 2601 else
904f3daa
ML
2602 fatal_error (input_location, "unable to open dynamic dependency "
2603 "%qs", buf);
68d69835
JM
2604
2605 if (debug)
2606 fprintf (stderr, "\t%s\n", buf);
2607 }
2608 if (debug)
2609 fprintf (stderr, "\n");
2610
1fff69c9 2611 do_wait (ldd_file_name, pex);
68d69835
JM
2612
2613 signal (SIGINT, int_handler);
2614#ifdef SIGQUIT
2615 signal (SIGQUIT, quit_handler);
2616#endif
2617
e0a21ab9 2618 /* Now iterate through the library list adding their symbols to
68d69835
JM
2619 the list. */
2620 for (list = libraries.first; list; list = list->next)
91e1a80a 2621 scan_prog_file (list->name, PASS_LIB, SCAN_ALL);
68d69835
JM
2622}
2623
2624#endif /* LDD_SUFFIX */
68d69835 2625
ed5b9462
RS
2626#endif /* OBJECT_FORMAT_NONE */
2627
2628\f
2629/*
2630 * COFF specific stuff.
2631 */
2632
2633#ifdef OBJECT_FORMAT_COFF
2634
c3284718 2635# define GCC_SYMBOLS(X) (HEADER (ldptr).f_nsyms)
17704846 2636# define GCC_SYMENT SYMENT
0eb31ee3
DE
2637# if defined (C_WEAKEXT)
2638# define GCC_OK_SYMBOL(X) \
2639 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
c22cacf3
MS
2640 ((X).n_scnum > N_UNDEF) && \
2641 (aix64_flag \
2642 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2643 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
0eb31ee3
DE
2644# define GCC_UNDEF_SYMBOL(X) \
2645 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
c22cacf3 2646 ((X).n_scnum == N_UNDEF))
0eb31ee3
DE
2647# else
2648# define GCC_OK_SYMBOL(X) \
2649 (((X).n_sclass == C_EXT) && \
c22cacf3
MS
2650 ((X).n_scnum > N_UNDEF) && \
2651 (aix64_flag \
2652 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2653 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
0eb31ee3
DE
2654# define GCC_UNDEF_SYMBOL(X) \
2655 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2656# endif
17704846
JW
2657# define GCC_SYMINC(X) ((X).n_numaux+1)
2658# define GCC_SYMZERO(X) 0
05dba9ee
DE
2659
2660/* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
dfb636dc 2661#if TARGET_AIX_VERSION >= 51
05dba9ee 2662# define GCC_CHECK_HDR(X) \
3bf65591
DE
2663 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2664 || (HEADER (X).f_magic == 0767 && aix64_flag)) \
2665 && !(HEADER (X).f_flags & F_LOADONLY))
05dba9ee 2666#else
f5e04914 2667# define GCC_CHECK_HDR(X) \
3bf65591
DE
2668 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2669 || (HEADER (X).f_magic == 0757 && aix64_flag)) \
2670 && !(HEADER (X).f_flags & F_LOADONLY))
ed5b9462
RS
2671#endif
2672
4977bab6
ZW
2673#ifdef COLLECT_EXPORT_LIST
2674/* Array of standard AIX libraries which should not
2675 be scanned for ctors/dtors. */
2676static const char *const aix_std_libs[] = {
2677 "/unix",
2678 "/lib/libc.a",
2679 "/lib/libm.a",
2680 "/lib/libc_r.a",
2681 "/lib/libm_r.a",
2682 "/usr/lib/libc.a",
2683 "/usr/lib/libm.a",
2684 "/usr/lib/libc_r.a",
2685 "/usr/lib/libm_r.a",
2686 "/usr/lib/threads/libc.a",
2687 "/usr/ccs/lib/libc.a",
2688 "/usr/ccs/lib/libm.a",
2689 "/usr/ccs/lib/libc_r.a",
2690 "/usr/ccs/lib/libm_r.a",
2691 NULL
2692};
2693
2694/* This function checks the filename and returns 1
2695 if this name matches the location of a standard AIX library. */
159b3be1 2696static int ignore_library (const char *);
4977bab6 2697static int
159b3be1 2698ignore_library (const char *name)
4977bab6 2699{
51136ae8 2700 const char *const *p;
781a1758 2701 size_t length;
51136ae8 2702
781a1758
RS
2703 if (target_system_root[0] != '\0')
2704 {
2705 length = strlen (target_system_root);
2706 if (strncmp (name, target_system_root, length) != 0)
2707 return 0;
2708 name += length;
2709 }
51136ae8
RS
2710 for (p = &aix_std_libs[0]; *p != NULL; ++p)
2711 if (strcmp (name, *p) == 0)
2712 return 1;
4977bab6
ZW
2713 return 0;
2714}
2715#endif /* COLLECT_EXPORT_LIST */
2716
351df804 2717#if defined (HAVE_DECL_LDGETNAME) && !HAVE_DECL_LDGETNAME
159b3be1 2718extern char *ldgetname (LDFILE *, GCC_SYMENT *);
351df804 2719#endif
ed5b9462
RS
2720
2721/* COFF version to scan the name list of the loaded program for
7e49a4b3 2722 the symbols g++ uses for static constructors and destructors. */
ed5b9462
RS
2723
2724static void
7e49a4b3
OH
2725scan_prog_file (const char *prog_name, scanpass which_pass,
2726 scanfilter filter)
ed5b9462 2727{
f3c3d3df 2728 LDFILE *ldptr = NULL;
ed5b9462 2729 int sym_index, sym_count;
db126753 2730 int is_shared = 0;
ed5b9462 2731
ce79110f 2732 if (which_pass != PASS_FIRST && which_pass != PASS_OBJ)
ed5b9462
RS
2733 return;
2734
db126753
DE
2735#ifdef COLLECT_EXPORT_LIST
2736 /* We do not need scanning for some standard C libraries. */
2737 if (which_pass == PASS_FIRST && ignore_library (prog_name))
2738 return;
ed5b9462 2739
db126753
DE
2740 /* On AIX we have a loop, because there is not much difference
2741 between an object and an archive. This trick allows us to
2742 eliminate scan_libraries() function. */
2743 do
ed5b9462 2744 {
db126753 2745#endif
d4058195 2746 /* Some platforms (e.g. OSF4) declare ldopen as taking a
c22cacf3
MS
2747 non-const char * filename parameter, even though it will not
2748 modify that string. So we must cast away const-ness here,
bb95b4e7
OH
2749 using CONST_CAST to prevent complaints from -Wcast-qual. */
2750 if ((ldptr = ldopen (CONST_CAST (char *, prog_name), ldptr)) != NULL)
17704846 2751 {
f5e04914 2752 if (! MY_ISCOFF (HEADER (ldptr).f_magic))
5a3bf281
DE
2753 {
2754 warning (0, "%s: not a COFF file", prog_name);
2755 continue;
2756 }
ed5b9462 2757
db126753 2758 if (GCC_CHECK_HDR (ldptr))
17704846 2759 {
db126753
DE
2760 sym_count = GCC_SYMBOLS (ldptr);
2761 sym_index = GCC_SYMZERO (ldptr);
f5e04914
DE
2762
2763#ifdef COLLECT_EXPORT_LIST
2764 /* Is current archive member a shared object? */
2765 is_shared = HEADER (ldptr).f_flags & F_SHROBJ;
2766#endif
2767
db126753
DE
2768 while (sym_index < sym_count)
2769 {
2770 GCC_SYMENT symbol;
2771
2772 if (ldtbread (ldptr, sym_index, &symbol) <= 0)
2773 break;
2774 sym_index += GCC_SYMINC (symbol);
2775
2776 if (GCC_OK_SYMBOL (symbol))
2777 {
2778 char *name;
ed5b9462 2779
db126753 2780 if ((name = ldgetname (ldptr, &symbol)) == NULL)
e0a21ab9 2781 continue; /* Should never happen. */
ed5b9462 2782
cbbbd917 2783#ifdef XCOFF_DEBUGGING_INFO
db126753
DE
2784 /* All AIX function names have a duplicate entry
2785 beginning with a dot. */
2786 if (*name == '.')
2787 ++name;
ed5b9462
RS
2788#endif
2789
db126753
DE
2790 switch (is_ctor_dtor (name))
2791 {
44178879
DE
2792#if TARGET_AIX_VERSION
2793 /* Add AIX shared library initalisers/finalisers
2794 to the constructors/destructors list of the
2795 current module. */
2796 case SYM_AIXI:
2797 if (! (filter & SCAN_CTOR))
2798 break;
6a513e2a
TR
2799 if (is_shared && !aixlazy_flag
2800#ifdef COLLECT_EXPORT_LIST
2801 && ! static_obj
2802 && ! is_in_list (prog_name, static_libs.first)
2803#endif
2804 )
44178879
DE
2805 add_to_list (&constructors, name);
2806 break;
2807
2808 case SYM_AIXD:
2809 if (! (filter & SCAN_DTOR))
2810 break;
2811 if (is_shared && !aixlazy_flag)
2812 add_to_list (&destructors, name);
2813 break;
2814#endif
2815
4326ea40 2816 case SYM_CTOR:
7e49a4b3
OH
2817 if (! (filter & SCAN_CTOR))
2818 break;
c71791e0
DE
2819 if (! is_shared)
2820 add_to_list (&constructors, name);
aaef9b06 2821#if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
db126753
DE
2822 if (which_pass == PASS_OBJ)
2823 add_to_list (&exports, name);
db126753
DE
2824#endif
2825 break;
2826
4326ea40 2827 case SYM_DTOR:
7e49a4b3
OH
2828 if (! (filter & SCAN_DTOR))
2829 break;
c71791e0
DE
2830 if (! is_shared)
2831 add_to_list (&destructors, name);
aaef9b06 2832#if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
db126753
DE
2833 if (which_pass == PASS_OBJ)
2834 add_to_list (&exports, name);
db126753
DE
2835#endif
2836 break;
2837
2838#ifdef COLLECT_EXPORT_LIST
4326ea40 2839 case SYM_INIT:
7e49a4b3
OH
2840 if (! (filter & SCAN_INIT))
2841 break;
c71791e0 2842#ifndef LD_INIT_SWITCH
db126753
DE
2843 if (is_shared)
2844 add_to_list (&constructors, name);
c71791e0 2845#endif
db126753
DE
2846 break;
2847
4326ea40 2848 case SYM_FINI:
7e49a4b3
OH
2849 if (! (filter & SCAN_FINI))
2850 break;
c71791e0 2851#ifndef LD_INIT_SWITCH
db126753
DE
2852 if (is_shared)
2853 add_to_list (&destructors, name);
c71791e0 2854#endif
db126753
DE
2855 break;
2856#endif
2857
4326ea40 2858 case SYM_DWEH:
7e49a4b3
OH
2859 if (! (filter & SCAN_DWEH))
2860 break;
6690d24c
RH
2861 if (! is_shared)
2862 add_to_list (&frame_tables, name);
aaef9b06 2863#if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
59309a85
GK
2864 if (which_pass == PASS_OBJ)
2865 add_to_list (&exports, name);
59309a85 2866#endif
6690d24c
RH
2867 break;
2868
db126753
DE
2869 default: /* not a constructor or destructor */
2870#ifdef COLLECT_EXPORT_LIST
aaef9b06
DE
2871 /* Explicitly export all global symbols when
2872 building a shared object on AIX, but do not
2873 re-export symbols from another shared object
2874 and do not export symbols if the user
2875 provides an explicit export list. */
2876 if (shared_obj && !is_shared
2877 && which_pass == PASS_OBJ && !export_flag)
04218b35
AD
2878 {
2879 /* Do not auto-export __dso_handle or
2880 __gcc_unwind_dbase. They are required
2881 to be local to each module. */
2882 if (strcmp(name, "__dso_handle") != 0
2883 && strcmp(name, "__gcc_unwind_dbase") != 0)
2884 {
2885 add_to_list (&exports, name);
2886 }
2887 }
db126753
DE
2888#endif
2889 continue;
2890 }
ed5b9462 2891
db126753
DE
2892 if (debug)
2893 fprintf (stderr, "\tsec=%d class=%d type=%s%o %s\n",
2894 symbol.n_scnum, symbol.n_sclass,
2895 (symbol.n_type ? "0" : ""), symbol.n_type,
2896 name);
db126753 2897 }
db126753 2898 }
17704846 2899 }
f5e04914
DE
2900#ifdef COLLECT_EXPORT_LIST
2901 else
2902 {
2903 /* If archive contains both 32-bit and 64-bit objects,
2904 we want to skip objects in other mode so mismatch normal. */
2905 if (debug)
2906 fprintf (stderr, "%s : magic=%o aix64=%d mismatch\n",
2907 prog_name, HEADER (ldptr).f_magic, aix64_flag);
2908 }
2909#endif
ed5b9462 2910 }
db126753
DE
2911 else
2912 {
40fecdd6
JM
2913 fatal_error (input_location, "%s: cannot open as COFF file",
2914 prog_name);
db126753
DE
2915 }
2916#ifdef COLLECT_EXPORT_LIST
2917 /* On AIX loop continues while there are more members in archive. */
ed5b9462 2918 }
db126753
DE
2919 while (ldclose (ldptr) == FAILURE);
2920#else
2921 /* Otherwise we simply close ldptr. */
c3284718 2922 (void) ldclose (ldptr);
db126753 2923#endif
ed5b9462 2924}
5b8619f8 2925#endif /* OBJECT_FORMAT_COFF */
1a8463c9 2926
db126753 2927#ifdef COLLECT_EXPORT_LIST
db126753
DE
2928/* Given a library name without "lib" prefix, this function
2929 returns a full library name including a path. */
2930static char *
159b3be1 2931resolve_lib_name (const char *name)
db126753
DE
2932{
2933 char *lib_buf;
2934 int i, j, l = 0;
7142ae77
DE
2935 /* Library extensions for AIX dynamic linking. */
2936 const char * const libexts[2] = {"a", "so"};
d9518857 2937
db126753
DE
2938 for (i = 0; libpaths[i]; i++)
2939 if (libpaths[i]->max_len > l)
2940 l = libpaths[i]->max_len;
2941
c3284718 2942 lib_buf = XNEWVEC (char, l + strlen (name) + 10);
db126753
DE
2943
2944 for (i = 0; libpaths[i]; i++)
2945 {
2946 struct prefix_list *list = libpaths[i]->plist;
2947 for (; list; list = list->next)
2948 {
be78ffb2 2949 /* The following lines are needed because path_prefix list
ba78087b 2950 may contain directories both with trailing DIR_SEPARATOR and
be78ffb2
JM
2951 without it. */
2952 const char *p = "";
c3284718 2953 if (!IS_DIR_SEPARATOR (list->prefix[strlen (list->prefix)-1]))
be78ffb2 2954 p = "/";
7142ae77 2955 for (j = 0; j < 2; j++)
1a8463c9 2956 {
159b3be1 2957 sprintf (lib_buf, "%s%slib%s.%s",
7142ae77
DE
2958 list->prefix, p, name,
2959 libexts[(j + aixrtl_flag) % 2]);
2960 if (debug) fprintf (stderr, "searching for: %s\n", lib_buf);
db126753 2961 if (file_exists (lib_buf))
1a8463c9 2962 {
7142ae77 2963 if (debug) fprintf (stderr, "found: %s\n", lib_buf);
db126753 2964 return (lib_buf);
1a8463c9 2965 }
1a8463c9 2966 }
1a8463c9
RK
2967 }
2968 }
db126753
DE
2969 if (debug)
2970 fprintf (stderr, "not found\n");
2971 else
40fecdd6 2972 fatal_error (input_location, "library lib%s not found", name);
db126753
DE
2973 return (NULL);
2974}
5b8619f8 2975#endif /* COLLECT_EXPORT_LIST */
11afe8e8
MS
2976
2977#ifdef COLLECT_RUN_DSYMUTIL
2978static int flag_dsym = false;
2979static int flag_idsym = false;
2980
2981static void
2982process_args (int *argcp, char **argv) {
2983 int i, j;
2984 int argc = *argcp;
2985 for (i=0; i<argc; ++i)
2986 {
2987 if (strcmp (argv[i], "-dsym") == 0)
2988 {
2989 flag_dsym = true;
2990 /* Remove the flag, as we handle all processing for it. */
2991 j = i;
2992 do
2993 argv[j] = argv[j+1];
2994 while (++j < argc);
2995 --i;
2996 argc = --(*argcp);
2997 }
2998 else if (strcmp (argv[i], "-idsym") == 0)
2999 {
3000 flag_idsym = true;
3001 /* Remove the flag, as we handle all processing for it. */
3002 j = i;
3003 do
3004 argv[j] = argv[j+1];
3005 while (++j < argc);
3006 --i;
3007 argc = --(*argcp);
3008 }
3009 }
3010}
3011
3012static void
3013do_dsymutil (const char *output_file) {
3b5e8ee4 3014 const char *dsymutil = 0;
11afe8e8 3015 struct pex_obj *pex;
3b5e8ee4 3016 char **real_argv = XCNEWVEC (char *, verbose ? 4 : 3);
11afe8e8
MS
3017 const char ** argv = CONST_CAST2 (const char **, char **,
3018 real_argv);
3b5e8ee4
IS
3019/* For cross-builds search the PATH using target-qualified name if we
3020 have not already found a suitable dsymutil. In practice, all modern
3021 versions of dsymutil handle all supported archs, however the approach
3022 here is consistent with the way other installations work (and one can
3023 always symlink a multitarget dsymutil with a target-specific name). */
3024 const char *dsname = "dsymutil";
3025#ifdef CROSS_DIRECTORY_STRUCTURE
3026 const char *qname = concat (target_machine, "-", dsname, NULL);
3027#else
3028 const char *qname = dsname;
3029#endif
3030#ifdef DEFAULT_DSYMUTIL
3031 /* Configured default takes priority. */
3032 if (dsymutil == 0 && access (DEFAULT_DSYMUTIL, X_OK) == 0)
3033 dsymutil = DEFAULT_DSYMUTIL;
3034 if (dsymutil == 0)
3035#endif
3036#ifdef DSYMUTIL
3037 /* Followed by one supplied in the target header, somewhat like the
3038 REAL_XX_NAME used elsewhere. */
3039 dsymutil = find_a_file (&cpath, DSYMUTIL, X_OK);
3040 if (dsymutil == 0)
3041 dsymutil = find_a_file (&path, DSYMUTIL, X_OK);
3042 if (dsymutil == 0)
3043#endif
3044 dsymutil = find_a_file (&cpath, dsname, X_OK);
3045 if (dsymutil == 0)
3046 dsymutil = find_a_file (&path, qname, X_OK);
11afe8e8
MS
3047
3048 argv[0] = dsymutil;
3049 argv[1] = output_file;
3b5e8ee4
IS
3050 if (verbose)
3051 {
3052 argv[2] = "-v";
3053 argv[3] = (char *) 0;
3054 }
3055 else
3056 argv[2] = (char *) 0;
11afe8e8 3057
5f0ad6a5 3058 pex = collect_execute (dsymutil, real_argv, NULL, NULL,
b3032d1b 3059 PEX_LAST | PEX_SEARCH, false, NULL);
11afe8e8
MS
3060 do_wait (dsymutil, pex);
3061}
3062
3063static void
3064post_ld_pass (bool temp_file) {
3065 if (!(temp_file && flag_idsym) && !flag_dsym)
3066 return;
3067
3068 do_dsymutil (output_file);
3069}
3070#else
3071static void
3072process_args (int *argcp ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) { }
3073static void post_ld_pass (bool temp_file ATTRIBUTE_UNUSED) { }
3074#endif