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