OSDN Git Service

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