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