1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992-2013 Free Software Foundation, Inc.
4 Contributed by Chris Smith (csmith@convex.com).
5 Heavily modified by Michael Meissner (meissner@cygnus.com),
6 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
25 /* Build tables of static constructors and destructors and run ld. */
29 #include "coretypes.h"
31 #include "filenames.h"
32 #include "file-find.h"
34 /* TARGET_64BIT may be defined to use driver specific functionality. */
36 #define TARGET_64BIT TARGET_64BIT_DEFAULT
38 #ifndef LIBRARY_PATH_ENV
39 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
45 #include "collect2-aix.h"
46 #include "diagnostic.h"
52 /* On certain systems, we have code that works by scanning the object file
53 directly. But this code uses system-specific header files and library
54 functions, so turn it off in a cross-compiler. Likewise, the names of
55 the utilities are not correct for a cross-compiler; we have to hope that
56 cross-versions are in the proper directories. */
58 #ifdef CROSS_DIRECTORY_STRUCTURE
59 #ifndef CROSS_AIX_SUPPORT
60 #undef OBJECT_FORMAT_COFF
63 #undef REAL_LD_FILE_NAME
64 #undef REAL_NM_FILE_NAME
65 #undef REAL_STRIP_FILE_NAME
68 /* If we cannot use a special method, use the ordinary one:
69 run nm to find what symbols are present.
70 In a cross-compiler, this means you need a cross nm,
71 but that is not quite as unpleasant as special headers. */
73 #if !defined (OBJECT_FORMAT_COFF)
74 #define OBJECT_FORMAT_NONE
77 #ifdef OBJECT_FORMAT_COFF
79 #ifndef CROSS_DIRECTORY_STRUCTURE
87 /* Many versions of ldfcn.h define these. */
96 /* Some systems have an ISCOFF macro, but others do not. In some cases
97 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
98 that either do not have an ISCOFF macro in /usr/include or for those
102 #define MY_ISCOFF(X) ISCOFF (X)
105 #endif /* OBJECT_FORMAT_COFF */
107 #ifdef OBJECT_FORMAT_NONE
109 /* Default flags to pass to nm. */
111 #define NM_FLAGS "-n"
114 #endif /* OBJECT_FORMAT_NONE */
116 /* Some systems use __main in a way incompatible with its use in gcc, in these
117 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
118 give the same symbol without quotes for an alternative entry point. */
120 #define NAME__MAIN "__main"
123 /* This must match tree.h. */
124 #define DEFAULT_INIT_PRIORITY 65535
126 #ifndef COLLECT_SHARED_INIT_FUNC
127 #define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
128 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
130 #ifndef COLLECT_SHARED_FINI_FUNC
131 #define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
132 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
136 #define SCAN_LIBRARIES
140 #define SHLIB_SUFFIX ".so"
144 int do_collecting
= 1;
146 int do_collecting
= 0;
149 /* Cook up an always defined indication of whether we proceed the
150 "EXPORT_LIST" way. */
152 #ifdef COLLECT_EXPORT_LIST
153 #define DO_COLLECT_EXPORT_LIST 1
155 #define DO_COLLECT_EXPORT_LIST 0
158 /* Nonzero if we should suppress the automatic demangling of identifiers
159 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
162 /* Linked lists of constructor and destructor names. */
178 bool vflag
; /* true if -v or --version */
179 static int rflag
; /* true if -r */
180 static int strip_flag
; /* true if -s */
181 #ifdef COLLECT_EXPORT_LIST
182 static int export_flag
; /* true if -bE */
183 static int aix64_flag
; /* true if -b64 */
184 static int aixrtl_flag
; /* true if -brtl */
188 LTO_MODE_NONE
, /* Not doing LTO. */
189 LTO_MODE_LTO
, /* Normal LTO. */
190 LTO_MODE_WHOPR
/* WHOPR. */
193 /* Current LTO mode. */
194 static enum lto_mode_d lto_mode
= LTO_MODE_NONE
;
196 bool debug
; /* true if -debug */
197 bool helpflag
; /* true if --help */
199 static int shared_obj
; /* true if -shared */
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. */
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 */
212 static const char *ldd_file_name
; /* pathname of ldd (or equivalent) */
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 */
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 */
223 static struct head frame_tables
; /* list of frame unwind info tables */
225 static bool at_file_supplied
; /* Whether to use @file arguments */
226 static char *response_file
; /* Name of any current response file */
228 struct obstack temporary_obstack
;
229 char * temporary_firstobj
;
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
;
236 static const char *target_system_root
= "";
239 /* Whether we may unlink the output file, which should be set as soon as we
240 know we have successfully produced it. This is typically useful to prevent
241 blindly attempting to unlink a read-only output that the target linker
242 would leave untouched. */
243 bool may_unlink_output_file
= false;
245 #ifdef COLLECT_EXPORT_LIST
246 /* Lists to keep libraries to be scanned for global constructors/destructors. */
247 static struct head libs
; /* list of libraries */
248 static struct path_prefix cmdline_lib_dirs
; /* directories specified with -L */
249 static struct path_prefix libpath_lib_dirs
; /* directories in LIBPATH */
250 static struct path_prefix
*libpaths
[3] = {&cmdline_lib_dirs
,
251 &libpath_lib_dirs
, NULL
};
254 /* List of names of object files containing LTO information.
255 These are a subset of the object file names appearing on the
256 command line, and must be identical, in the sense of pointer
257 equality, with the names passed to maybe_run_lto_and_relink(). */
261 const char *name
; /* Name of object file. */
262 struct lto_object
*next
; /* Next in linked list. */
265 struct lto_object_list
267 struct lto_object
*first
; /* First list element. */
268 struct lto_object
*last
; /* Last list element. */
271 static struct lto_object_list lto_objects
;
273 /* Special kinds of symbols that a name may denote. */
276 SYM_REGULAR
= 0, /* nothing special */
278 SYM_CTOR
= 1, /* constructor */
279 SYM_DTOR
= 2, /* destructor */
280 SYM_INIT
= 3, /* shared object routine that calls all the ctors */
281 SYM_FINI
= 4, /* shared object routine that calls all the dtors */
282 SYM_DWEH
= 5 /* DWARF exception handling table */
285 static symkind
is_ctor_dtor (const char *);
287 static void handler (int);
288 static void do_wait (const char *, struct pex_obj
*);
289 static void fork_execute (const char *, char **);
290 static void maybe_unlink (const char *);
291 static void maybe_unlink_list (char **);
292 static void add_to_list (struct head
*, const char *);
293 static int extract_init_priority (const char *);
294 static void sort_ids (struct head
*);
295 static void write_list (FILE *, const char *, struct id
*);
296 #ifdef COLLECT_EXPORT_LIST
297 static void dump_list (FILE *, const char *, struct id
*);
300 static void dump_prefix_list (FILE *, const char *, struct prefix_list
*);
302 static void write_list_with_asm (FILE *, const char *, struct id
*);
303 static void write_c_file (FILE *, const char *);
304 static void write_c_file_stat (FILE *, const char *);
305 #ifndef LD_INIT_SWITCH
306 static void write_c_file_glob (FILE *, const char *);
308 #ifdef SCAN_LIBRARIES
309 static void scan_libraries (const char *);
311 #ifdef COLLECT_EXPORT_LIST
313 static int is_in_list (const char *, struct id
*);
315 static void write_aix_file (FILE *, struct id
*);
316 static char *resolve_lib_name (const char *);
318 static char *extract_string (const char **);
319 static void post_ld_pass (bool);
320 static void process_args (int *argcp
, char **argv
);
322 /* Enumerations describing which pass this is for scanning the
326 PASS_FIRST
, /* without constructors */
327 PASS_OBJ
, /* individual objects */
328 PASS_LIB
, /* looking for shared libraries */
329 PASS_SECOND
, /* with constructors linked in */
330 PASS_LTOINFO
/* looking for objects with LTO info */
333 /* ... and which kinds of symbols are to be considered. */
335 enum scanfilter_masks
{
338 SCAN_CTOR
= 1 << SYM_CTOR
,
339 SCAN_DTOR
= 1 << SYM_DTOR
,
340 SCAN_INIT
= 1 << SYM_INIT
,
341 SCAN_FINI
= 1 << SYM_FINI
,
342 SCAN_DWEH
= 1 << SYM_DWEH
,
346 /* This type is used for parameters and variables which hold
347 combinations of the flags in enum scanfilter_masks. */
348 typedef int scanfilter
;
350 /* Scan the name list of the loaded program for the symbols g++ uses for
351 static constructors and destructors.
353 The SCANPASS argument tells which collect processing pass this is for and
354 the SCANFILTER argument tells which kinds of symbols to consider in this
355 pass. Symbols of a special kind not in the filter mask are considered as
358 The constructor table begins at __CTOR_LIST__ and contains a count of the
359 number of pointers (or -1 if the constructors are built in a separate
360 section by the linker), followed by the pointers to the constructor
361 functions, terminated with a null pointer. The destructor table has the
362 same format, and begins at __DTOR_LIST__. */
364 static void scan_prog_file (const char *, scanpass
, scanfilter
);
367 /* Delete tempfiles and exit function. */
370 collect_exit (int status
)
372 if (c_file
!= 0 && c_file
[0])
373 maybe_unlink (c_file
);
375 if (o_file
!= 0 && o_file
[0])
376 maybe_unlink (o_file
);
378 #ifdef COLLECT_EXPORT_LIST
379 if (export_file
!= 0 && export_file
[0])
380 maybe_unlink (export_file
);
384 maybe_unlink_list (lto_o_files
);
386 if (ldout
!= 0 && ldout
[0])
388 dump_ld_file (ldout
, stdout
);
389 maybe_unlink (ldout
);
392 if (lderrout
!= 0 && lderrout
[0])
394 dump_ld_file (lderrout
, stderr
);
395 maybe_unlink (lderrout
);
398 if (status
!= 0 && output_file
!= 0 && output_file
[0])
399 maybe_unlink (output_file
);
402 maybe_unlink (response_file
);
408 /* Notify user of a non-error. */
410 notice (const char *cmsgid
, ...)
414 va_start (ap
, cmsgid
);
415 vfprintf (stderr
, _(cmsgid
), ap
);
419 /* Notify user of a non-error, without translating the format string. */
421 notice_translated (const char *cmsgid
, ...)
425 va_start (ap
, cmsgid
);
426 vfprintf (stderr
, cmsgid
, ap
);
433 if (c_file
!= 0 && c_file
[0])
434 maybe_unlink (c_file
);
436 if (o_file
!= 0 && o_file
[0])
437 maybe_unlink (o_file
);
439 if (ldout
!= 0 && ldout
[0])
440 maybe_unlink (ldout
);
442 if (lderrout
!= 0 && lderrout
[0])
443 maybe_unlink (lderrout
);
445 #ifdef COLLECT_EXPORT_LIST
446 if (export_file
!= 0 && export_file
[0])
447 maybe_unlink (export_file
);
451 maybe_unlink_list (lto_o_files
);
454 maybe_unlink (response_file
);
456 signal (signo
, SIG_DFL
);
462 file_exists (const char *name
)
464 return access (name
, R_OK
) == 0;
467 /* Parse a reasonable subset of shell quoting syntax. */
470 extract_string (const char **pp
)
483 obstack_1grow (&temporary_obstack
, c
);
484 else if (! inside
&& c
== ' ')
486 else if (! inside
&& c
== '\\')
491 obstack_1grow (&temporary_obstack
, c
);
494 obstack_1grow (&temporary_obstack
, '\0');
496 return XOBFINISH (&temporary_obstack
, char *);
500 dump_ld_file (const char *name
, FILE *to
)
502 FILE *stream
= fopen (name
, "r");
509 while (c
= getc (stream
),
510 c
!= EOF
&& (ISIDNUM (c
) || c
== '$' || c
== '.'))
511 obstack_1grow (&temporary_obstack
, c
);
512 if (obstack_object_size (&temporary_obstack
) > 0)
514 const char *word
, *p
;
516 obstack_1grow (&temporary_obstack
, '\0');
517 word
= XOBFINISH (&temporary_obstack
, const char *);
520 ++word
, putc ('.', to
);
522 if (!strncmp (p
, USER_LABEL_PREFIX
, strlen (USER_LABEL_PREFIX
)))
523 p
+= strlen (USER_LABEL_PREFIX
);
525 #ifdef HAVE_LD_DEMANGLE
531 result
= cplus_demangle (p
, DMGL_PARAMS
| DMGL_ANSI
| DMGL_VERBOSE
);
539 diff
= strlen (word
) - strlen (result
);
540 while (diff
> 0 && c
== ' ')
541 --diff
, putc (' ', to
);
542 if (diff
< 0 && c
== ' ')
544 while (diff
< 0 && c
== ' ')
545 ++diff
, c
= getc (stream
);
548 /* Make sure we output at least one space, or
549 the demangled symbol name will run into
550 whatever text follows. */
561 obstack_free (&temporary_obstack
, temporary_firstobj
);
570 /* Return the kind of symbol denoted by name S. */
573 is_ctor_dtor (const char *s
)
575 struct names
{ const char *const name
; const int len
; symkind ret
;
576 const int two_underscores
; };
578 const struct names
*p
;
580 const char *orig_s
= s
;
582 static const struct names special
[] = {
583 #ifndef NO_DOLLAR_IN_LABEL
584 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, SYM_CTOR
, 0 },
585 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, SYM_DTOR
, 0 },
587 #ifndef NO_DOT_IN_LABEL
588 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, SYM_CTOR
, 0 },
589 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, SYM_DTOR
, 0 },
590 #endif /* NO_DOT_IN_LABEL */
591 #endif /* NO_DOLLAR_IN_LABEL */
592 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, SYM_CTOR
, 0 },
593 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, SYM_DTOR
, 0 },
594 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, SYM_DWEH
, 0 },
595 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, SYM_INIT
, 0 },
596 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, SYM_FINI
, 0 },
597 { NULL
, 0, SYM_REGULAR
, 0 }
600 while ((ch
= *s
) == '_')
606 for (p
= &special
[0]; p
->len
> 0; p
++)
609 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
610 && strncmp(s
, p
->name
, p
->len
) == 0)
618 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
619 and one from the PATH variable. */
621 static struct path_prefix cpath
, path
;
623 #ifdef CROSS_DIRECTORY_STRUCTURE
624 /* This is the name of the target machine. We use it to form the name
625 of the files to execute. */
627 static const char *const target_machine
= TARGET_MACHINE
;
630 /* Search for NAME using prefix list PPREFIX. We only look for executable
633 Return 0 if not found, otherwise return its name, allocated with malloc. */
635 #ifdef OBJECT_FORMAT_NONE
637 /* Add an entry for the object file NAME to object file list LIST.
638 New entries are added at the end of the list. The original pointer
639 value of NAME is preserved, i.e., no string copy is performed. */
642 add_lto_object (struct lto_object_list
*list
, const char *name
)
644 struct lto_object
*n
= XNEW (struct lto_object
);
649 list
->last
->next
= n
;
655 #endif /* OBJECT_FORMAT_NONE */
658 /* Perform a link-time recompilation and relink if any of the object
659 files contain LTO info. The linker command line LTO_LD_ARGV
660 represents the linker command that would produce a final executable
661 without the use of LTO. OBJECT_LST is a vector of object file names
662 appearing in LTO_LD_ARGV that are to be considered for link-time
663 recompilation, where OBJECT is a pointer to the last valid element.
664 (This awkward convention avoids an impedance mismatch with the
665 usage of similarly-named variables in main().) The elements of
666 OBJECT_LST must be identical, i.e., pointer equal, to the
667 corresponding arguments in LTO_LD_ARGV.
669 Upon entry, at least one linker run has been performed without the
670 use of any LTO info that might be present. Any recompilations
671 necessary for template instantiations have been performed, and
672 initializer/finalizer tables have been created if needed and
673 included in the linker command line LTO_LD_ARGV. If any of the
674 object files contain LTO info, we run the LTO back end on all such
675 files, and perform the final link with the LTO back end output
676 substituted for the LTO-optimized files. In some cases, a final
677 link with all link-time generated code has already been performed,
678 so there is no need to relink if no LTO info is found. In other
679 cases, our caller has not produced the final executable, and is
680 relying on us to perform the required link whether LTO info is
681 present or not. In that case, the FORCE argument should be true.
682 Note that the linker command line argument LTO_LD_ARGV passed into
683 this function may be modified in place. */
686 maybe_run_lto_and_relink (char **lto_ld_argv
, char **object_lst
,
687 const char **object
, bool force
)
689 const char **object_file
= CONST_CAST2 (const char **, char **, object_lst
);
691 int num_lto_c_args
= 1; /* Allow space for the terminating NULL. */
693 while (object_file
< object
)
695 /* If file contains LTO info, add it to the list of LTO objects. */
696 scan_prog_file (*object_file
++, PASS_LTOINFO
, SCAN_ALL
);
698 /* Increment the argument count by the number of object file arguments
699 we will add. An upper bound suffices, so just count all of the
700 object files regardless of whether they contain LTO info. */
704 if (lto_objects
.first
)
707 const char **lto_c_ptr
;
710 struct lto_object
*list
;
711 char *lto_wrapper
= getenv ("COLLECT_LTO_WRAPPER");
713 const char *prog
= "lto-wrapper";
714 int lto_ld_argv_size
= 0;
715 char **out_lto_ld_argv
;
716 int out_lto_ld_argv_size
;
720 fatal_error ("COLLECT_LTO_WRAPPER must be set");
724 /* There is at least one object file containing LTO info,
725 so we need to run the LTO back end and relink.
727 To do so we build updated ld arguments with first
728 LTO object replaced by all partitions and other LTO
731 lto_c_argv
= (char **) xcalloc (sizeof (char *), num_lto_c_args
);
732 lto_c_ptr
= CONST_CAST2 (const char **, char **, lto_c_argv
);
734 *lto_c_ptr
++ = lto_wrapper
;
736 /* Add LTO objects to the wrapper command line. */
737 for (list
= lto_objects
.first
; list
; list
= list
->next
)
738 *lto_c_ptr
++ = list
->name
;
742 /* Run the LTO back end. */
743 pex
= collect_execute (prog
, lto_c_argv
, NULL
, NULL
, PEX_SEARCH
);
750 stream
= pex_read_output (pex
, 0);
754 while ((c
= getc (stream
)) != EOF
)
756 obstack_1grow (&temporary_obstack
, c
);
761 lto_o_files
= XNEWVEC (char *, num_files
+ 1);
762 lto_o_files
[num_files
] = NULL
;
763 start
= XOBFINISH (&temporary_obstack
, char *);
764 for (i
= 0; i
< num_files
; ++i
)
771 lto_o_files
[i
] = xstrdup (start
);
776 obstack_free (&temporary_obstack
, temporary_firstobj
);
781 /* Compute memory needed for new LD arguments. At most number of original arguemtns
782 plus number of partitions. */
783 for (lto_ld_argv_size
= 0; lto_ld_argv
[lto_ld_argv_size
]; lto_ld_argv_size
++)
785 out_lto_ld_argv
= XCNEWVEC(char *, num_files
+ lto_ld_argv_size
+ 1);
786 out_lto_ld_argv_size
= 0;
788 /* After running the LTO back end, we will relink, substituting
789 the LTO output for the object files that we submitted to the
790 LTO. Here, we modify the linker command line for the relink. */
792 /* Copy all arguments until we find first LTO file. */
796 for (list
= lto_objects
.first
; list
; list
= list
->next
)
797 if (*p
== list
->name
) /* Note test for pointer equality! */
801 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
++;
804 /* Now insert all LTO partitions. */
805 lto_o_ptr
= lto_o_files
;
807 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *lto_o_ptr
++;
809 /* ... and copy the rest. */
812 for (list
= lto_objects
.first
; list
; list
= list
->next
)
813 if (*p
== list
->name
) /* Note test for pointer equality! */
816 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
;
819 out_lto_ld_argv
[out_lto_ld_argv_size
++] = 0;
821 /* Run the linker again, this time replacing the object files
822 optimized by the LTO with the temporary file generated by the LTO. */
823 fork_execute ("ld", out_lto_ld_argv
);
827 maybe_unlink_list (lto_o_files
);
831 /* Our caller is relying on us to do the link
832 even though there is no LTO back end work to be done. */
833 fork_execute ("ld", lto_ld_argv
);
834 post_ld_pass (false);
841 main (int argc
, char **argv
)
850 } selected_linker
= USE_DEFAULT_LD
;
851 static const char *const ld_suffixes
[USE_LD_MAX
] =
858 static const char *const real_ld_suffix
= "real-ld";
859 static const char *const collect_ld_suffix
= "collect-ld";
860 static const char *const nm_suffix
= "nm";
861 static const char *const gnm_suffix
= "gnm";
863 static const char *const ldd_suffix
= LDD_SUFFIX
;
865 static const char *const strip_suffix
= "strip";
866 static const char *const gstrip_suffix
= "gstrip";
868 const char *full_ld_suffixes
[USE_LD_MAX
];
869 #ifdef CROSS_DIRECTORY_STRUCTURE
870 /* If we look for a program in the compiler directories, we just use
871 the short name, since these directories are already system-specific.
872 But it we look for a program in the system directories, we need to
873 qualify the program name with the target machine. */
875 const char *const full_nm_suffix
=
876 concat (target_machine
, "-", nm_suffix
, NULL
);
877 const char *const full_gnm_suffix
=
878 concat (target_machine
, "-", gnm_suffix
, NULL
);
880 const char *const full_ldd_suffix
=
881 concat (target_machine
, "-", ldd_suffix
, NULL
);
883 const char *const full_strip_suffix
=
884 concat (target_machine
, "-", strip_suffix
, NULL
);
885 const char *const full_gstrip_suffix
=
886 concat (target_machine
, "-", gstrip_suffix
, NULL
);
889 const char *const full_ldd_suffix
= ldd_suffix
;
891 const char *const full_nm_suffix
= nm_suffix
;
892 const char *const full_gnm_suffix
= gnm_suffix
;
893 const char *const full_strip_suffix
= strip_suffix
;
894 const char *const full_gstrip_suffix
= gstrip_suffix
;
895 #endif /* CROSS_DIRECTORY_STRUCTURE */
899 #ifdef COLLECT_EXPORT_LIST
902 const char *ld_file_name
;
908 bool use_plugin
= false;
909 bool use_collect_ld
= false;
911 /* The kinds of symbols we will have to consider when scanning the
912 outcome of a first pass link. This is ALL to start with, then might
913 be adjusted before getting to the first pass link per se, typically on
914 AIX where we perform an early scan of objects and libraries to fetch
915 the list of global ctors/dtors and make sure they are not garbage
917 scanfilter ld1_filter
= SCAN_ALL
;
923 #ifdef TARGET_AIX_VERSION
924 int object_nbr
= argc
;
931 for (i
= 0; i
< USE_LD_MAX
; i
++)
933 #ifdef CROSS_DIRECTORY_STRUCTURE
934 = concat (target_machine
, "-", ld_suffixes
[i
], NULL
);
939 p
= argv
[0] + strlen (argv
[0]);
940 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
944 xmalloc_set_program_name (progname
);
947 expandargv (&argc
, &argv
);
948 if (argv
!= old_argv
)
949 at_file_supplied
= 1;
951 process_args (&argc
, argv
);
953 num_c_args
= argc
+ 9;
955 #ifndef HAVE_LD_DEMANGLE
956 no_demangle
= !! getenv ("COLLECT_NO_DEMANGLE");
958 /* Suppress demangling by the real linker, which may be broken. */
959 putenv (xstrdup ("COLLECT_NO_DEMANGLE=1"));
962 #if defined (COLLECT2_HOST_INITIALIZATION)
963 /* Perform system dependent initialization, if necessary. */
964 COLLECT2_HOST_INITIALIZATION
;
968 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
969 receive the signal. A different setting is inheritable */
970 signal (SIGCHLD
, SIG_DFL
);
973 /* Unlock the stdio streams. */
974 unlock_std_streams ();
978 diagnostic_initialize (global_dc
, 0);
980 /* Do not invoke xcalloc before this point, since locale needs to be
981 set first, in case a diagnostic is issued. */
983 ld1_argv
= XCNEWVEC (char *, argc
+ 4);
984 ld1
= CONST_CAST2 (const char **, char **, ld1_argv
);
985 ld2_argv
= XCNEWVEC (char *, argc
+ 11);
986 ld2
= CONST_CAST2 (const char **, char **, ld2_argv
);
987 object_lst
= XCNEWVEC (char *, argc
);
988 object
= CONST_CAST2 (const char **, char **, object_lst
);
994 /* Parse command line early for instances of -debug. This allows
995 the debug flag to be set before functions like find_a_file()
996 are called. We also look for the -flto or -flto-partition=none flag to know
997 what LTO mode we are in. */
999 bool no_partition
= false;
1001 for (i
= 1; argv
[i
] != NULL
; i
++)
1003 if (! strcmp (argv
[i
], "-debug"))
1005 else if (! strcmp (argv
[i
], "-flto-partition=none"))
1006 no_partition
= true;
1007 else if ((! strncmp (argv
[i
], "-flto=", 6)
1008 || ! strcmp (argv
[i
], "-flto")) && ! use_plugin
)
1009 lto_mode
= LTO_MODE_WHOPR
;
1010 else if (!strncmp (argv
[i
], "-fno-lto", 8))
1011 lto_mode
= LTO_MODE_NONE
;
1012 else if (! strcmp (argv
[i
], "-plugin"))
1015 lto_mode
= LTO_MODE_NONE
;
1016 if (selected_linker
== USE_DEFAULT_LD
)
1017 selected_linker
= USE_PLUGIN_LD
;
1019 else if (strcmp (argv
[i
], "-fuse-ld=bfd") == 0)
1020 selected_linker
= USE_BFD_LD
;
1021 else if (strcmp (argv
[i
], "-fuse-ld=gold") == 0)
1022 selected_linker
= USE_GOLD_LD
;
1024 #ifdef COLLECT_EXPORT_LIST
1025 /* These flags are position independent, although their order
1026 is important - subsequent flags override earlier ones. */
1027 else if (strcmp (argv
[i
], "-b64") == 0)
1029 /* -bexport:filename always needs the :filename */
1030 else if (strncmp (argv
[i
], "-bE:", 4) == 0
1031 || strncmp (argv
[i
], "-bexport:", 9) == 0)
1033 else if (strcmp (argv
[i
], "-brtl") == 0
1034 || strcmp (argv
[i
], "-bsvr4") == 0
1035 || strcmp (argv
[i
], "-G") == 0)
1037 else if (strcmp (argv
[i
], "-bnortl") == 0)
1042 find_file_set_debug (debug
);
1043 if (no_partition
&& lto_mode
== LTO_MODE_WHOPR
)
1044 lto_mode
= LTO_MODE_LTO
;
1047 #ifndef DEFAULT_A_OUT_NAME
1048 output_file
= "a.out";
1050 output_file
= DEFAULT_A_OUT_NAME
;
1053 obstack_begin (&temporary_obstack
, 0);
1054 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
1056 #ifndef HAVE_LD_DEMANGLE
1057 current_demangling_style
= auto_demangling
;
1059 p
= getenv ("COLLECT_GCC_OPTIONS");
1062 const char *q
= extract_string (&p
);
1063 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1066 obstack_free (&temporary_obstack
, temporary_firstobj
);
1068 /* -fno-profile-arcs -fno-test-coverage -fno-branch-probabilities
1069 -fno-exceptions -w -fno-whole-program */
1072 c_argv
= XCNEWVEC (char *, num_c_args
);
1073 c_ptr
= CONST_CAST2 (const char **, char **, c_argv
);
1076 fatal_error ("no arguments");
1079 if (signal (SIGQUIT
, SIG_IGN
) != SIG_IGN
)
1080 signal (SIGQUIT
, handler
);
1082 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
1083 signal (SIGINT
, handler
);
1085 if (signal (SIGALRM
, SIG_IGN
) != SIG_IGN
)
1086 signal (SIGALRM
, handler
);
1089 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
1090 signal (SIGHUP
, handler
);
1092 if (signal (SIGSEGV
, SIG_IGN
) != SIG_IGN
)
1093 signal (SIGSEGV
, handler
);
1095 if (signal (SIGBUS
, SIG_IGN
) != SIG_IGN
)
1096 signal (SIGBUS
, handler
);
1099 /* Extract COMPILER_PATH and PATH into our prefix list. */
1100 prefix_from_env ("COMPILER_PATH", &cpath
);
1101 prefix_from_env ("PATH", &path
);
1103 /* Try to discover a valid linker/nm/strip to use. */
1105 /* Maybe we know the right file to use (if not cross). */
1107 #ifdef DEFAULT_LINKER
1108 if (access (DEFAULT_LINKER
, X_OK
) == 0)
1109 ld_file_name
= DEFAULT_LINKER
;
1110 if (ld_file_name
== 0)
1112 #ifdef REAL_LD_FILE_NAME
1113 ld_file_name
= find_a_file (&path
, REAL_LD_FILE_NAME
);
1114 if (ld_file_name
== 0)
1116 /* Search the (target-specific) compiler dirs for ld'. */
1117 ld_file_name
= find_a_file (&cpath
, real_ld_suffix
);
1118 /* Likewise for `collect-ld'. */
1119 if (ld_file_name
== 0)
1121 ld_file_name
= find_a_file (&cpath
, collect_ld_suffix
);
1122 use_collect_ld
= ld_file_name
!= 0;
1124 /* Search the compiler directories for `ld'. We have protection against
1125 recursive calls in find_a_file. */
1126 if (ld_file_name
== 0)
1127 ld_file_name
= find_a_file (&cpath
, ld_suffixes
[selected_linker
]);
1128 /* Search the ordinary system bin directories
1129 for `ld' (if native linking) or `TARGET-ld' (if cross). */
1130 if (ld_file_name
== 0)
1131 ld_file_name
= find_a_file (&path
, full_ld_suffixes
[selected_linker
]);
1133 #ifdef REAL_NM_FILE_NAME
1134 nm_file_name
= find_a_file (&path
, REAL_NM_FILE_NAME
);
1135 if (nm_file_name
== 0)
1137 nm_file_name
= find_a_file (&cpath
, gnm_suffix
);
1138 if (nm_file_name
== 0)
1139 nm_file_name
= find_a_file (&path
, full_gnm_suffix
);
1140 if (nm_file_name
== 0)
1141 nm_file_name
= find_a_file (&cpath
, nm_suffix
);
1142 if (nm_file_name
== 0)
1143 nm_file_name
= find_a_file (&path
, full_nm_suffix
);
1146 ldd_file_name
= find_a_file (&cpath
, ldd_suffix
);
1147 if (ldd_file_name
== 0)
1148 ldd_file_name
= find_a_file (&path
, full_ldd_suffix
);
1151 #ifdef REAL_STRIP_FILE_NAME
1152 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
);
1153 if (strip_file_name
== 0)
1155 strip_file_name
= find_a_file (&cpath
, gstrip_suffix
);
1156 if (strip_file_name
== 0)
1157 strip_file_name
= find_a_file (&path
, full_gstrip_suffix
);
1158 if (strip_file_name
== 0)
1159 strip_file_name
= find_a_file (&cpath
, strip_suffix
);
1160 if (strip_file_name
== 0)
1161 strip_file_name
= find_a_file (&path
, full_strip_suffix
);
1163 /* Determine the full path name of the C compiler to use. */
1164 c_file_name
= getenv ("COLLECT_GCC");
1165 if (c_file_name
== 0)
1167 #ifdef CROSS_DIRECTORY_STRUCTURE
1168 c_file_name
= concat (target_machine
, "-gcc", NULL
);
1170 c_file_name
= "gcc";
1174 p
= find_a_file (&cpath
, c_file_name
);
1176 /* Here it should be safe to use the system search path since we should have
1177 already qualified the name of the compiler when it is needed. */
1179 p
= find_a_file (&path
, c_file_name
);
1184 *ld1
++ = *ld2
++ = ld_file_name
;
1186 /* Make temp file names. */
1187 c_file
= make_temp_file (".c");
1188 o_file
= make_temp_file (".o");
1189 #ifdef COLLECT_EXPORT_LIST
1190 export_file
= make_temp_file (".x");
1194 ldout
= make_temp_file (".ld");
1195 lderrout
= make_temp_file (".le");
1197 *c_ptr
++ = c_file_name
;
1204 #ifdef COLLECT_EXPORT_LIST
1205 /* Generate a list of directories from LIBPATH. */
1206 prefix_from_env ("LIBPATH", &libpath_lib_dirs
);
1207 /* Add to this list also two standard directories where
1208 AIX loader always searches for libraries. */
1209 add_prefix (&libpath_lib_dirs
, "/lib");
1210 add_prefix (&libpath_lib_dirs
, "/usr/lib");
1213 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1215 AIX support needs to know if -shared has been specified before
1216 parsing commandline arguments. */
1218 p
= getenv ("COLLECT_GCC_OPTIONS");
1221 const char *q
= extract_string (&p
);
1222 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1223 *c_ptr
++ = xstrdup (q
);
1224 if (strcmp (q
, "-EL") == 0 || strcmp (q
, "-EB") == 0)
1225 *c_ptr
++ = xstrdup (q
);
1226 if (strcmp (q
, "-shared") == 0)
1228 if (*q
== '-' && q
[1] == 'B')
1230 *c_ptr
++ = xstrdup (q
);
1233 q
= extract_string (&p
);
1234 *c_ptr
++ = xstrdup (q
);
1238 obstack_free (&temporary_obstack
, temporary_firstobj
);
1239 *c_ptr
++ = "-fno-profile-arcs";
1240 *c_ptr
++ = "-fno-test-coverage";
1241 *c_ptr
++ = "-fno-branch-probabilities";
1242 *c_ptr
++ = "-fno-exceptions";
1244 *c_ptr
++ = "-fno-whole-program";
1246 /* !!! When GCC calls collect2,
1247 it does not know whether it is calling collect2 or ld.
1248 So collect2 cannot meaningfully understand any options
1249 except those ld understands.
1250 If you propose to make GCC pass some other option,
1251 just imagine what will happen if ld is really ld!!! */
1253 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1254 /* After the first file, put in the c++ rt0. */
1257 while ((arg
= *++argv
) != (char *) 0)
1259 *ld1
++ = *ld2
++ = arg
;
1266 if (!strcmp (arg
, "-debug"))
1268 /* Already parsed. */
1272 if (!strcmp (arg
, "-dynamic-linker") && argv
[1])
1275 *ld1
++ = *ld2
++ = *argv
;
1280 if (strncmp (arg
, "-flto", 5) == 0)
1283 /* Do not pass LTO flag to the linker. */
1287 error ("LTO support has not been enabled in this "
1291 else if (!use_collect_ld
1292 && strncmp (arg
, "-fuse-ld=", 9) == 0)
1294 /* Do not pass -fuse-ld={bfd|gold} to the linker. */
1298 #ifdef TARGET_AIX_VERSION
1301 /* File containing a list of input files to process. */
1304 char buf
[MAXPATHLEN
+ 2];
1305 /* Number of additionnal object files. */
1307 /* Maximum of additionnal object files before vector
1310 const char *list_filename
= arg
+ 2;
1312 /* Accept -fFILENAME and -f FILENAME. */
1313 if (*list_filename
== '\0' && argv
[1])
1316 list_filename
= *argv
;
1317 *ld1
++ = *ld2
++ = *argv
;
1320 stream
= fopen (list_filename
, "r");
1322 fatal_error ("can't open %s: %m", list_filename
);
1324 while (fgets (buf
, sizeof buf
, stream
) != NULL
)
1326 /* Remove end of line. */
1327 int len
= strlen (buf
);
1328 if (len
>= 1 && buf
[len
- 1] =='\n')
1329 buf
[len
- 1] = '\0';
1331 /* Put on object vector.
1332 Note: we only expanse vector here, so we must keep
1333 extra space for remaining arguments. */
1334 if (add_nbr
>= add_max
)
1337 object
- CONST_CAST2 (const char **, char **,
1339 add_max
= (add_max
== 0) ? 16 : add_max
* 2;
1340 object_lst
= XRESIZEVEC (char *, object_lst
,
1341 object_nbr
+ add_max
);
1342 object
= CONST_CAST2 (const char **, char **,
1344 object_nbr
+= add_max
;
1346 *object
++ = xstrdup (buf
);
1357 /* place o_file BEFORE this argument! */
1363 #ifdef COLLECT_EXPORT_LIST
1365 /* Resolving full library name. */
1366 const char *s
= resolve_lib_name (arg
+2);
1368 /* Saving a full library name. */
1369 add_to_list (&libs
, s
);
1374 #ifdef COLLECT_EXPORT_LIST
1375 /* Saving directories where to search for libraries. */
1377 add_prefix (&cmdline_lib_dirs
, arg
+2);
1383 output_file
= *ld1
++ = *ld2
++ = *++argv
;
1385 output_file
= &arg
[2];
1394 if (arg
[2] == '\0' && do_collecting
)
1396 /* We must strip after the nm run, otherwise C++ linking
1397 will not work. Thus we strip in the second ld run, or
1398 else with strip if there is no second ld run. */
1410 if (strcmp (arg
, "--no-demangle") == 0)
1412 #ifndef HAVE_LD_DEMANGLE
1418 else if (strncmp (arg
, "--demangle", 10) == 0)
1420 #ifndef HAVE_LD_DEMANGLE
1424 enum demangling_styles style
1425 = cplus_demangle_name_to_style (arg
+11);
1426 if (style
== unknown_demangling
)
1427 error ("unknown demangling style '%s'", arg
+11);
1429 current_demangling_style
= style
;
1435 else if (strncmp (arg
, "--sysroot=", 10) == 0)
1436 target_system_root
= arg
+ 10;
1437 else if (strcmp (arg
, "--version") == 0)
1439 else if (strcmp (arg
, "--help") == 0)
1444 else if ((p
= strrchr (arg
, '.')) != (char *) 0
1445 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0
1446 || strcmp (p
, ".so") == 0 || strcmp (p
, ".lo") == 0
1447 || strcmp (p
, ".obj") == 0))
1456 /* place o_file BEFORE this argument! */
1462 if (p
[1] == 'o' || p
[1] == 'l')
1464 #ifdef COLLECT_EXPORT_LIST
1465 /* libraries can be specified directly, i.e. without -l flag. */
1468 /* Saving a full library name. */
1469 add_to_list (&libs
, arg
);
1475 #ifdef COLLECT_EXPORT_LIST
1476 /* This is added only for debugging purposes. */
1479 fprintf (stderr
, "List of libraries:\n");
1480 dump_list (stderr
, "\t", libs
.first
);
1483 /* The AIX linker will discard static constructors in object files if
1484 nothing else in the file is referenced, so look at them first. Unless
1485 we are building a shared object, ignore the eh frame tables, as we
1486 would otherwise reference them all, hence drag all the corresponding
1487 objects even if nothing else is referenced. */
1489 const char **export_object_lst
1490 = CONST_CAST2 (const char **, char **, object_lst
);
1492 struct id
*list
= libs
.first
;
1494 /* Compute the filter to use from the current one, do scan, then adjust
1495 the "current" filter to remove what we just included here. This will
1496 control whether we need a first pass link later on or not, and what
1497 will remain to be scanned there. */
1499 scanfilter this_filter
= ld1_filter
;
1502 this_filter
&= ~SCAN_DWEH
;
1505 while (export_object_lst
< object
)
1506 scan_prog_file (*export_object_lst
++, PASS_OBJ
, this_filter
);
1508 for (; list
; list
= list
->next
)
1509 scan_prog_file (list
->name
, PASS_FIRST
, this_filter
);
1511 ld1_filter
= ld1_filter
& ~this_filter
;
1516 char *buf
= concat ("-bE:", export_file
, NULL
);
1521 exportf
= fopen (export_file
, "w");
1522 if (exportf
== (FILE *) 0)
1523 fatal_error ("fopen %s: %m", export_file
);
1524 write_aix_file (exportf
, exports
.first
);
1525 if (fclose (exportf
))
1526 fatal_error ("fclose %s: %m", export_file
);
1531 *c_ptr
= *ld1
= *object
= (char *) 0;
1534 notice ("collect2 version %s\n", version_string
);
1538 printf ("Usage: collect2 [options]\n");
1539 printf (" Wrap linker and generate constructor code if needed.\n");
1540 printf (" Options:\n");
1541 printf (" -debug Enable debug output\n");
1542 printf (" --help Display this information\n");
1543 printf (" -v, --version Display this program's version number\n");
1545 printf ("Overview: http://gcc.gnu.org/onlinedocs/gccint/Collect2.html\n");
1546 printf ("Report bugs: %s\n", bug_report_url
);
1553 fprintf (stderr
, "ld_file_name = %s\n",
1554 (ld_file_name
? ld_file_name
: "not found"));
1555 fprintf (stderr
, "c_file_name = %s\n",
1556 (c_file_name
? c_file_name
: "not found"));
1557 fprintf (stderr
, "nm_file_name = %s\n",
1558 (nm_file_name
? nm_file_name
: "not found"));
1560 fprintf (stderr
, "ldd_file_name = %s\n",
1561 (ldd_file_name
? ldd_file_name
: "not found"));
1563 fprintf (stderr
, "strip_file_name = %s\n",
1564 (strip_file_name
? strip_file_name
: "not found"));
1565 fprintf (stderr
, "c_file = %s\n",
1566 (c_file
? c_file
: "not found"));
1567 fprintf (stderr
, "o_file = %s\n",
1568 (o_file
? o_file
: "not found"));
1570 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1572 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1574 ptr
= getenv ("COLLECT_GCC");
1576 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1578 ptr
= getenv ("COMPILER_PATH");
1580 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1582 ptr
= getenv (LIBRARY_PATH_ENV
);
1584 fprintf (stderr
, "%-20s= %s\n", LIBRARY_PATH_ENV
, ptr
);
1586 fprintf (stderr
, "\n");
1589 /* Load the program, searching all libraries and attempting to provide
1590 undefined symbols from repository information.
1592 If -r or they will be run via some other method, do not build the
1593 constructor or destructor list, just return now. */
1596 = rflag
|| (! DO_COLLECT_EXPORT_LIST
&& ! do_collecting
);
1598 /* Perform the first pass link now, if we're about to exit or if we need
1599 to scan for things we haven't collected yet before pursuing further.
1601 On AIX, the latter typically includes nothing for shared objects or
1602 frame tables for an executable, out of what the required early scan on
1603 objects and libraries has performed above. In the !shared_obj case, we
1604 expect the relevant tables to be dragged together with their associated
1605 functions from precise cross reference insertions by the compiler. */
1607 if (early_exit
|| ld1_filter
!= SCAN_NOTHING
)
1608 do_tlink (ld1_argv
, object_lst
);
1612 #ifdef COLLECT_EXPORT_LIST
1613 /* Make sure we delete the export file we may have created. */
1614 if (export_file
!= 0 && export_file
[0])
1615 maybe_unlink (export_file
);
1617 if (lto_mode
!= LTO_MODE_NONE
)
1618 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1620 post_ld_pass (false);
1622 maybe_unlink (c_file
);
1623 maybe_unlink (o_file
);
1628 /* Unless we have done it all already, examine the namelist and search for
1629 static constructors and destructors to call. Write the constructor and
1630 destructor tables to a .s file and reload. */
1632 if (ld1_filter
!= SCAN_NOTHING
)
1633 scan_prog_file (output_file
, PASS_FIRST
, ld1_filter
);
1635 #ifdef SCAN_LIBRARIES
1636 scan_libraries (output_file
);
1641 notice_translated (ngettext ("%d constructor found\n",
1642 "%d constructors found\n",
1643 constructors
.number
),
1644 constructors
.number
);
1645 notice_translated (ngettext ("%d destructor found\n",
1646 "%d destructors found\n",
1647 destructors
.number
),
1648 destructors
.number
);
1649 notice_translated (ngettext("%d frame table found\n",
1650 "%d frame tables found\n",
1651 frame_tables
.number
),
1652 frame_tables
.number
);
1655 /* If the scan exposed nothing of special interest, there's no need to
1656 generate the glue code and relink so return now. */
1658 if (constructors
.number
== 0 && destructors
.number
== 0
1659 && frame_tables
.number
== 0
1660 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1661 /* If we will be running these functions ourselves, we want to emit
1662 stubs into the shared library so that we do not have to relink
1663 dependent programs when we add static objects. */
1668 /* Do tlink without additional code generation now if we didn't
1669 do it earlier for scanning purposes. */
1670 if (ld1_filter
== SCAN_NOTHING
)
1671 do_tlink (ld1_argv
, object_lst
);
1674 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1676 /* Strip now if it was requested on the command line. */
1679 char **real_strip_argv
= XCNEWVEC (char *, 3);
1680 const char ** strip_argv
= CONST_CAST2 (const char **, char **,
1683 strip_argv
[0] = strip_file_name
;
1684 strip_argv
[1] = output_file
;
1685 strip_argv
[2] = (char *) 0;
1686 fork_execute ("strip", real_strip_argv
);
1689 #ifdef COLLECT_EXPORT_LIST
1690 maybe_unlink (export_file
);
1692 post_ld_pass (false);
1694 maybe_unlink (c_file
);
1695 maybe_unlink (o_file
);
1699 /* Sort ctor and dtor lists by priority. */
1700 sort_ids (&constructors
);
1701 sort_ids (&destructors
);
1703 maybe_unlink(output_file
);
1704 outf
= fopen (c_file
, "w");
1705 if (outf
== (FILE *) 0)
1706 fatal_error ("fopen %s: %m", c_file
);
1708 write_c_file (outf
, c_file
);
1711 fatal_error ("fclose %s: %m", c_file
);
1713 /* Tell the linker that we have initializer and finalizer functions. */
1714 #ifdef LD_INIT_SWITCH
1715 #ifdef COLLECT_EXPORT_LIST
1716 *ld2
++ = concat (LD_INIT_SWITCH
, ":", initname
, ":", fininame
, NULL
);
1718 *ld2
++ = LD_INIT_SWITCH
;
1720 *ld2
++ = LD_FINI_SWITCH
;
1725 #ifdef COLLECT_EXPORT_LIST
1728 /* If we did not add export flag to link arguments before, add it to
1729 second link phase now. No new exports should have been added. */
1730 if (! exports
.first
)
1731 *ld2
++ = concat ("-bE:", export_file
, NULL
);
1733 #ifndef LD_INIT_SWITCH
1734 add_to_list (&exports
, initname
);
1735 add_to_list (&exports
, fininame
);
1736 add_to_list (&exports
, "_GLOBAL__DI");
1737 add_to_list (&exports
, "_GLOBAL__DD");
1739 exportf
= fopen (export_file
, "w");
1740 if (exportf
== (FILE *) 0)
1741 fatal_error ("fopen %s: %m", export_file
);
1742 write_aix_file (exportf
, exports
.first
);
1743 if (fclose (exportf
))
1744 fatal_error ("fclose %s: %m", export_file
);
1748 /* End of arguments to second link phase. */
1753 fprintf (stderr
, "\n========== output_file = %s, c_file = %s\n",
1754 output_file
, c_file
);
1755 write_c_file (stderr
, "stderr");
1756 fprintf (stderr
, "========== end of c_file\n\n");
1757 #ifdef COLLECT_EXPORT_LIST
1758 fprintf (stderr
, "\n========== export_file = %s\n", export_file
);
1759 write_aix_file (stderr
, exports
.first
);
1760 fprintf (stderr
, "========== end of export_file\n\n");
1764 /* Assemble the constructor and destructor tables.
1765 Link the tables in with the rest of the program. */
1767 fork_execute ("gcc", c_argv
);
1768 #ifdef COLLECT_EXPORT_LIST
1769 /* On AIX we must call tlink because of possible templates resolution. */
1770 do_tlink (ld2_argv
, object_lst
);
1773 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, false);
1775 /* Otherwise, simply call ld because tlink is already done. */
1777 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, true);
1780 fork_execute ("ld", ld2_argv
);
1781 post_ld_pass (false);
1784 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1785 constructors/destructors in shared libraries. */
1786 scan_prog_file (output_file
, PASS_SECOND
, SCAN_ALL
);
1789 maybe_unlink (c_file
);
1790 maybe_unlink (o_file
);
1792 #ifdef COLLECT_EXPORT_LIST
1793 maybe_unlink (export_file
);
1800 /* Wait for a process to finish, and exit if a nonzero status is found. */
1803 collect_wait (const char *prog
, struct pex_obj
*pex
)
1807 if (!pex_get_status (pex
, 1, &status
))
1808 fatal_error ("can't get program status: %m");
1813 if (WIFSIGNALED (status
))
1815 int sig
= WTERMSIG (status
);
1816 error ("%s terminated with signal %d [%s]%s",
1817 prog
, sig
, strsignal(sig
),
1818 WCOREDUMP(status
) ? ", core dumped" : "");
1819 collect_exit (FATAL_EXIT_CODE
);
1822 if (WIFEXITED (status
))
1823 return WEXITSTATUS (status
);
1829 do_wait (const char *prog
, struct pex_obj
*pex
)
1831 int ret
= collect_wait (prog
, pex
);
1834 error ("%s returned %d exit status", prog
, ret
);
1840 unlink (response_file
);
1841 response_file
= NULL
;
1846 /* Execute a program, and wait for the reply. */
1849 collect_execute (const char *prog
, char **argv
, const char *outname
,
1850 const char *errname
, int flags
)
1852 struct pex_obj
*pex
;
1855 char *response_arg
= NULL
;
1856 char *response_argv
[3] ATTRIBUTE_UNUSED
;
1858 if (HAVE_GNU_LD
&& at_file_supplied
&& argv
[0] != NULL
)
1860 /* If using @file arguments, create a temporary file and put the
1861 contents of argv into it. Then change argv to an array corresponding
1862 to a single argument @FILE, where FILE is the temporary filename. */
1864 char **current_argv
= argv
+ 1;
1865 char *argv0
= argv
[0];
1869 /* Note: we assume argv contains at least one element; this is
1872 response_file
= make_temp_file ("");
1874 f
= fopen (response_file
, "w");
1877 fatal_error ("could not open response file %s", response_file
);
1879 status
= writeargv (current_argv
, f
);
1882 fatal_error ("could not write to response file %s", response_file
);
1884 status
= fclose (f
);
1887 fatal_error ("could not close response file %s", response_file
);
1889 response_arg
= concat ("@", response_file
, NULL
);
1890 response_argv
[0] = argv0
;
1891 response_argv
[1] = response_arg
;
1892 response_argv
[2] = NULL
;
1894 argv
= response_argv
;
1903 fprintf (stderr
, "%s", argv
[0]);
1905 notice ("[cannot find %s]", prog
);
1907 for (p_argv
= &argv
[1]; (str
= *p_argv
) != (char *) 0; p_argv
++)
1908 fprintf (stderr
, " %s", str
);
1910 fprintf (stderr
, "\n");
1916 /* If we cannot find a program we need, complain error. Do this here
1917 since we might not end up needing something that we could not find. */
1920 fatal_error ("cannot find '%s'", prog
);
1922 pex
= pex_init (0, "collect2", NULL
);
1924 fatal_error ("pex_init failed: %m");
1926 errmsg
= pex_run (pex
, flags
, argv
[0], argv
, outname
,
1933 fatal_error ("%s: %m", _(errmsg
));
1936 fatal_error (errmsg
);
1939 free (response_arg
);
1945 fork_execute (const char *prog
, char **argv
)
1947 struct pex_obj
*pex
;
1949 pex
= collect_execute (prog
, argv
, NULL
, NULL
, PEX_LAST
| PEX_SEARCH
);
1950 do_wait (prog
, pex
);
1953 /* Unlink FILE unless we are debugging or this is the output_file
1954 and we may not unlink it. */
1957 maybe_unlink (const char *file
)
1961 notice ("[Leaving %s]\n", file
);
1965 if (file
== output_file
&& !may_unlink_output_file
)
1968 unlink_if_ordinary (file
);
1971 /* Call maybe_unlink on the NULL-terminated list, FILE_LIST. */
1974 maybe_unlink_list (char **file_list
)
1976 char **tmp
= file_list
;
1979 maybe_unlink (*(tmp
++));
1983 static long sequence_number
= 0;
1985 /* Add a name to a linked list. */
1988 add_to_list (struct head
*head_ptr
, const char *name
)
1991 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1993 strcpy (newid
->name
, name
);
1995 if (head_ptr
->first
)
1996 head_ptr
->last
->next
= newid
;
1998 head_ptr
->first
= newid
;
2000 /* Check for duplicate symbols. */
2001 for (p
= head_ptr
->first
;
2002 strcmp (name
, p
->name
) != 0;
2007 head_ptr
->last
->next
= 0;
2012 newid
->sequence
= ++sequence_number
;
2013 head_ptr
->last
= newid
;
2017 /* Grab the init priority number from an init function name that
2018 looks like "_GLOBAL_.I.12345.foo". */
2021 extract_init_priority (const char *name
)
2025 while (name
[pos
] == '_')
2027 pos
+= 10; /* strlen ("GLOBAL__X_") */
2029 /* Extract init_p number from ctor/dtor name. */
2030 pri
= atoi (name
+ pos
);
2031 return pri
? pri
: DEFAULT_INIT_PRIORITY
;
2034 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
2035 ctors will be run from right to left, dtors from left to right. */
2038 sort_ids (struct head
*head_ptr
)
2040 /* id holds the current element to insert. id_next holds the next
2041 element to insert. id_ptr iterates through the already sorted elements
2042 looking for the place to insert id. */
2043 struct id
*id
, *id_next
, **id_ptr
;
2045 id
= head_ptr
->first
;
2047 /* We don't have any sorted elements yet. */
2048 head_ptr
->first
= NULL
;
2050 for (; id
; id
= id_next
)
2053 id
->sequence
= extract_init_priority (id
->name
);
2055 for (id_ptr
= &(head_ptr
->first
); ; id_ptr
= &((*id_ptr
)->next
))
2057 /* If the sequence numbers are the same, we put the id from the
2058 file later on the command line later in the list. */
2059 || id
->sequence
> (*id_ptr
)->sequence
2060 /* Hack: do lexical compare, too.
2061 || (id->sequence == (*id_ptr)->sequence
2062 && strcmp (id->name, (*id_ptr)->name) > 0) */
2071 /* Now set the sequence numbers properly so write_c_file works. */
2072 for (id
= head_ptr
->first
; id
; id
= id
->next
)
2073 id
->sequence
= ++sequence_number
;
2076 /* Write: `prefix', the names on list LIST, `suffix'. */
2079 write_list (FILE *stream
, const char *prefix
, struct id
*list
)
2083 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
2088 #ifdef COLLECT_EXPORT_LIST
2089 /* This function is really used only on AIX, but may be useful. */
2092 is_in_list (const char *prefix
, struct id
*list
)
2096 if (!strcmp (prefix
, list
->name
)) return 1;
2102 #endif /* COLLECT_EXPORT_LIST */
2104 /* Added for debugging purpose. */
2105 #ifdef COLLECT_EXPORT_LIST
2107 dump_list (FILE *stream
, const char *prefix
, struct id
*list
)
2111 fprintf (stream
, "%s%s,\n", prefix
, list
->name
);
2119 dump_prefix_list (FILE *stream
, const char *prefix
, struct prefix_list
*list
)
2123 fprintf (stream
, "%s%s,\n", prefix
, list
->prefix
);
2130 write_list_with_asm (FILE *stream
, const char *prefix
, struct id
*list
)
2134 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
2135 prefix
, list
->sequence
, list
->name
);
2140 /* Write out the constructor and destructor tables statically (for a shared
2141 object), along with the functions to execute them. */
2144 write_c_file_stat (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2148 int frames
= (frame_tables
.number
> 0);
2150 /* Figure out name of output_file, stripping off .so version. */
2151 q
= p
= lbasename (output_file
);
2163 if (filename_ncmp (q
, SHLIB_SUFFIX
, strlen (SHLIB_SUFFIX
)) == 0)
2165 q
+= strlen (SHLIB_SUFFIX
);
2172 /* q points to null at end of the string (or . of the .so version) */
2173 prefix
= XNEWVEC (char, q
- p
+ 1);
2174 strncpy (prefix
, p
, q
- p
);
2176 for (r
= prefix
; *r
; r
++)
2177 if (!ISALNUM ((unsigned char)*r
))
2180 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
2181 output_file
, prefix
);
2183 initname
= concat ("_GLOBAL__FI_", prefix
, NULL
);
2184 fininame
= concat ("_GLOBAL__FD_", prefix
, NULL
);
2188 /* Write the tables as C code. */
2190 fprintf (stream
, "static int count;\n");
2191 fprintf (stream
, "typedef void entry_pt();\n");
2192 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2196 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2198 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2199 write_list (stream
, "\t\t&", frame_tables
.first
);
2200 fprintf (stream
, "\t0\n};\n");
2202 /* This must match what's in frame.h. */
2203 fprintf (stream
, "struct object {\n");
2204 fprintf (stream
, " void *pc_begin;\n");
2205 fprintf (stream
, " void *pc_end;\n");
2206 fprintf (stream
, " void *fde_begin;\n");
2207 fprintf (stream
, " void *fde_array;\n");
2208 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2209 fprintf (stream
, " struct object *next;\n");
2210 fprintf (stream
, "};\n");
2212 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2213 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2215 fprintf (stream
, "static void reg_frame () {\n");
2216 fprintf (stream
, "\tstatic struct object ob;\n");
2217 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2218 fprintf (stream
, "\t}\n");
2220 fprintf (stream
, "static void dereg_frame () {\n");
2221 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2222 fprintf (stream
, "\t}\n");
2225 fprintf (stream
, "void %s() {\n", initname
);
2226 if (constructors
.number
> 0 || frames
)
2228 fprintf (stream
, "\tstatic entry_pt *ctors[] = {\n");
2229 write_list (stream
, "\t\t", constructors
.first
);
2231 fprintf (stream
, "\treg_frame,\n");
2232 fprintf (stream
, "\t};\n");
2233 fprintf (stream
, "\tentry_pt **p;\n");
2234 fprintf (stream
, "\tif (count++ != 0) return;\n");
2235 fprintf (stream
, "\tp = ctors + %d;\n", constructors
.number
+ frames
);
2236 fprintf (stream
, "\twhile (p > ctors) (*--p)();\n");
2239 fprintf (stream
, "\t++count;\n");
2240 fprintf (stream
, "}\n");
2241 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2242 fprintf (stream
, "void %s() {\n", fininame
);
2243 if (destructors
.number
> 0 || frames
)
2245 fprintf (stream
, "\tstatic entry_pt *dtors[] = {\n");
2246 write_list (stream
, "\t\t", destructors
.first
);
2248 fprintf (stream
, "\tdereg_frame,\n");
2249 fprintf (stream
, "\t};\n");
2250 fprintf (stream
, "\tentry_pt **p;\n");
2251 fprintf (stream
, "\tif (--count != 0) return;\n");
2252 fprintf (stream
, "\tp = dtors;\n");
2253 fprintf (stream
, "\twhile (p < dtors + %d) (*p++)();\n",
2254 destructors
.number
+ frames
);
2256 fprintf (stream
, "}\n");
2260 COLLECT_SHARED_INIT_FUNC(stream
, initname
);
2261 COLLECT_SHARED_FINI_FUNC(stream
, fininame
);
2265 /* Write the constructor/destructor tables. */
2267 #ifndef LD_INIT_SWITCH
2269 write_c_file_glob (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2271 /* Write the tables as C code. */
2273 int frames
= (frame_tables
.number
> 0);
2275 fprintf (stream
, "typedef void entry_pt();\n\n");
2277 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2281 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2283 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2284 write_list (stream
, "\t\t&", frame_tables
.first
);
2285 fprintf (stream
, "\t0\n};\n");
2287 /* This must match what's in frame.h. */
2288 fprintf (stream
, "struct object {\n");
2289 fprintf (stream
, " void *pc_begin;\n");
2290 fprintf (stream
, " void *pc_end;\n");
2291 fprintf (stream
, " void *fde_begin;\n");
2292 fprintf (stream
, " void *fde_array;\n");
2293 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2294 fprintf (stream
, " struct object *next;\n");
2295 fprintf (stream
, "};\n");
2297 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2298 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2300 fprintf (stream
, "static void reg_frame () {\n");
2301 fprintf (stream
, "\tstatic struct object ob;\n");
2302 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2303 fprintf (stream
, "\t}\n");
2305 fprintf (stream
, "static void dereg_frame () {\n");
2306 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2307 fprintf (stream
, "\t}\n");
2310 fprintf (stream
, "\nentry_pt * __CTOR_LIST__[] = {\n");
2311 fprintf (stream
, "\t(entry_pt *) %d,\n", constructors
.number
+ frames
);
2312 write_list (stream
, "\t", constructors
.first
);
2314 fprintf (stream
, "\treg_frame,\n");
2315 fprintf (stream
, "\t0\n};\n\n");
2317 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2319 fprintf (stream
, "\nentry_pt * __DTOR_LIST__[] = {\n");
2320 fprintf (stream
, "\t(entry_pt *) %d,\n", destructors
.number
+ frames
);
2321 write_list (stream
, "\t", destructors
.first
);
2323 fprintf (stream
, "\tdereg_frame,\n");
2324 fprintf (stream
, "\t0\n};\n\n");
2326 fprintf (stream
, "extern entry_pt %s;\n", NAME__MAIN
);
2327 fprintf (stream
, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN
);
2329 #endif /* ! LD_INIT_SWITCH */
2332 write_c_file (FILE *stream
, const char *name
)
2334 #ifndef LD_INIT_SWITCH
2336 write_c_file_glob (stream
, name
);
2339 write_c_file_stat (stream
, name
);
2342 #ifdef COLLECT_EXPORT_LIST
2344 write_aix_file (FILE *stream
, struct id
*list
)
2346 for (; list
; list
= list
->next
)
2348 fputs (list
->name
, stream
);
2349 putc ('\n', stream
);
2354 #ifdef OBJECT_FORMAT_NONE
2356 /* Check to make sure the file is an LTO object file. */
2359 maybe_lto_object_file (const char *prog_name
)
2362 unsigned char buf
[4];
2365 static unsigned char elfmagic
[4] = { 0x7f, 'E', 'L', 'F' };
2366 static unsigned char coffmagic
[2] = { 0x4c, 0x01 };
2367 static unsigned char coffmagic_x64
[2] = { 0x64, 0x86 };
2368 static unsigned char machomagic
[4][4] = {
2369 { 0xcf, 0xfa, 0xed, 0xfe },
2370 { 0xce, 0xfa, 0xed, 0xfe },
2371 { 0xfe, 0xed, 0xfa, 0xcf },
2372 { 0xfe, 0xed, 0xfa, 0xce }
2375 f
= fopen (prog_name
, "rb");
2378 if (fread (buf
, sizeof (buf
), 1, f
) != 1)
2382 if (memcmp (buf
, elfmagic
, sizeof (elfmagic
)) == 0
2383 || memcmp (buf
, coffmagic
, sizeof (coffmagic
)) == 0
2384 || memcmp (buf
, coffmagic_x64
, sizeof (coffmagic_x64
)) == 0)
2386 for (i
= 0; i
< 4; i
++)
2387 if (memcmp (buf
, machomagic
[i
], sizeof (machomagic
[i
])) == 0)
2393 /* Generic version to scan the name list of the loaded program for
2394 the symbols g++ uses for static constructors and destructors. */
2397 scan_prog_file (const char *prog_name
, scanpass which_pass
,
2400 void (*int_handler
) (int);
2402 void (*quit_handler
) (int);
2404 char *real_nm_argv
[4];
2405 const char **nm_argv
= CONST_CAST2 (const char **, char**, real_nm_argv
);
2407 struct pex_obj
*pex
;
2414 if (which_pass
== PASS_SECOND
)
2417 /* LTO objects must be in a known format. This check prevents
2418 us from accepting an archive containing LTO objects, which
2419 gcc cannot currently handle. */
2420 if (which_pass
== PASS_LTOINFO
&& !maybe_lto_object_file (prog_name
))
2423 /* If we do not have an `nm', complain. */
2424 if (nm_file_name
== 0)
2425 fatal_error ("cannot find 'nm'");
2427 nm_argv
[argc
++] = nm_file_name
;
2428 if (NM_FLAGS
[0] != '\0')
2429 nm_argv
[argc
++] = NM_FLAGS
;
2431 nm_argv
[argc
++] = prog_name
;
2432 nm_argv
[argc
++] = (char *) 0;
2434 /* Trace if needed. */
2437 const char **p_argv
;
2440 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2441 fprintf (stderr
, " %s", str
);
2443 fprintf (stderr
, "\n");
2449 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2451 fatal_error ("pex_init failed: %m");
2453 errmsg
= pex_run (pex
, 0, nm_file_name
, real_nm_argv
, NULL
, HOST_BIT_BUCKET
,
2460 fatal_error ("%s: %m", _(errmsg
));
2463 fatal_error (errmsg
);
2466 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2468 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2471 inf
= pex_read_output (pex
, 0);
2473 fatal_error ("can't open nm output: %m");
2477 if (which_pass
== PASS_LTOINFO
)
2478 fprintf (stderr
, "\nnm output with LTO info marker symbol.\n");
2480 fprintf (stderr
, "\nnm output with constructors/destructors.\n");
2483 /* Read each line of nm output. */
2484 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2490 fprintf (stderr
, "\t%s\n", buf
);
2492 if (which_pass
== PASS_LTOINFO
)
2497 /* Look for the LTO info marker symbol, and add filename to
2498 the LTO objects list if found. */
2499 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n'; p
++)
2500 if (ch
== ' ' && p
[1] == '_' && p
[2] == '_'
2501 && (strncmp (p
+ (p
[3] == '_' ? 2 : 1), "__gnu_lto_v1", 12) == 0)
2502 && ISSPACE (p
[p
[3] == '_' ? 14 : 13]))
2504 add_lto_object (<o_objects
, prog_name
);
2506 /* We need to read all the input, so we can't just
2507 return here. But we can avoid useless work. */
2516 /* If it contains a constructor or destructor name, add the name
2517 to the appropriate list unless this is a kind of symbol we're
2518 not supposed to even consider. */
2520 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n' && ch
!= '_'; p
++)
2521 if (ch
== ' ' && p
[1] == 'U' && p
[2] == ' ')
2528 /* Find the end of the symbol name.
2529 Do not include `|', because Encore nm can tack that on the end. */
2530 for (end
= p
; (ch2
= *end
) != '\0' && !ISSPACE (ch2
) && ch2
!= '|';
2536 switch (is_ctor_dtor (name
))
2539 if (! (filter
& SCAN_CTOR
))
2541 if (which_pass
!= PASS_LIB
)
2542 add_to_list (&constructors
, name
);
2546 if (! (filter
& SCAN_DTOR
))
2548 if (which_pass
!= PASS_LIB
)
2549 add_to_list (&destructors
, name
);
2553 if (! (filter
& SCAN_INIT
))
2555 if (which_pass
!= PASS_LIB
)
2556 fatal_error ("init function found in object %s", prog_name
);
2557 #ifndef LD_INIT_SWITCH
2558 add_to_list (&constructors
, name
);
2563 if (! (filter
& SCAN_FINI
))
2565 if (which_pass
!= PASS_LIB
)
2566 fatal_error ("fini function found in object %s", prog_name
);
2567 #ifndef LD_FINI_SWITCH
2568 add_to_list (&destructors
, name
);
2573 if (! (filter
& SCAN_DWEH
))
2575 if (which_pass
!= PASS_LIB
)
2576 add_to_list (&frame_tables
, name
);
2579 default: /* not a constructor or destructor */
2585 fprintf (stderr
, "\n");
2587 do_wait (nm_file_name
, pex
);
2589 signal (SIGINT
, int_handler
);
2591 signal (SIGQUIT
, quit_handler
);
2597 /* Use the List Dynamic Dependencies program to find shared libraries that
2598 the output file depends upon and their initialization/finalization
2599 routines, if any. */
2602 scan_libraries (const char *prog_name
)
2604 static struct head libraries
; /* list of shared libraries found */
2606 void (*int_handler
) (int);
2608 void (*quit_handler
) (int);
2610 char *real_ldd_argv
[4];
2611 const char **ldd_argv
= CONST_CAST2 (const char **, char **, real_ldd_argv
);
2613 struct pex_obj
*pex
;
2619 /* If we do not have an `ldd', complain. */
2620 if (ldd_file_name
== 0)
2622 error ("cannot find 'ldd'");
2626 ldd_argv
[argc
++] = ldd_file_name
;
2627 ldd_argv
[argc
++] = prog_name
;
2628 ldd_argv
[argc
++] = (char *) 0;
2630 /* Trace if needed. */
2633 const char **p_argv
;
2636 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2637 fprintf (stderr
, " %s", str
);
2639 fprintf (stderr
, "\n");
2645 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2647 fatal_error ("pex_init failed: %m");
2649 errmsg
= pex_run (pex
, 0, ldd_file_name
, real_ldd_argv
, NULL
, NULL
, &err
);
2655 fatal_error ("%s: %m", _(errmsg
));
2658 fatal_error (errmsg
);
2661 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2663 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2666 inf
= pex_read_output (pex
, 0);
2668 fatal_error ("can't open ldd output: %m");
2671 notice ("\nldd output with constructors/destructors.\n");
2673 /* Read each line of ldd output. */
2674 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2677 char *name
, *end
, *p
= buf
;
2679 /* Extract names of libraries and add to list. */
2680 PARSE_LDD_OUTPUT (p
);
2685 if (strncmp (name
, "not found", sizeof ("not found") - 1) == 0)
2686 fatal_error ("dynamic dependency %s not found", buf
);
2688 /* Find the end of the symbol name. */
2690 (ch2
= *end
) != '\0' && ch2
!= '\n' && !ISSPACE (ch2
) && ch2
!= '|';
2695 if (access (name
, R_OK
) == 0)
2696 add_to_list (&libraries
, name
);
2698 fatal_error ("unable to open dynamic dependency '%s'", buf
);
2701 fprintf (stderr
, "\t%s\n", buf
);
2704 fprintf (stderr
, "\n");
2706 do_wait (ldd_file_name
, pex
);
2708 signal (SIGINT
, int_handler
);
2710 signal (SIGQUIT
, quit_handler
);
2713 /* Now iterate through the library list adding their symbols to
2715 for (list
= libraries
.first
; list
; list
= list
->next
)
2716 scan_prog_file (list
->name
, PASS_LIB
, SCAN_ALL
);
2719 #endif /* LDD_SUFFIX */
2721 #endif /* OBJECT_FORMAT_NONE */
2725 * COFF specific stuff.
2728 #ifdef OBJECT_FORMAT_COFF
2730 #if defined (EXTENDED_COFF)
2732 # define GCC_SYMBOLS(X) (SYMHEADER(X).isymMax + SYMHEADER(X).iextMax)
2733 # define GCC_SYMENT SYMR
2734 # define GCC_OK_SYMBOL(X) ((X).st == stProc || (X).st == stGlobal)
2735 # define GCC_SYMINC(X) (1)
2736 # define GCC_SYMZERO(X) (SYMHEADER(X).isymMax)
2737 # define GCC_CHECK_HDR(X) (PSYMTAB(X) != 0)
2741 # define GCC_SYMBOLS(X) (HEADER(ldptr).f_nsyms)
2742 # define GCC_SYMENT SYMENT
2743 # if defined (C_WEAKEXT)
2744 # define GCC_OK_SYMBOL(X) \
2745 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2746 ((X).n_scnum > N_UNDEF) && \
2748 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2749 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2750 # define GCC_UNDEF_SYMBOL(X) \
2751 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2752 ((X).n_scnum == N_UNDEF))
2754 # define GCC_OK_SYMBOL(X) \
2755 (((X).n_sclass == C_EXT) && \
2756 ((X).n_scnum > N_UNDEF) && \
2758 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2759 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2760 # define GCC_UNDEF_SYMBOL(X) \
2761 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2763 # define GCC_SYMINC(X) ((X).n_numaux+1)
2764 # define GCC_SYMZERO(X) 0
2766 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2767 #if TARGET_AIX_VERSION >= 51
2768 # define GCC_CHECK_HDR(X) \
2769 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2770 || (HEADER (X).f_magic == 0767 && aix64_flag)) \
2771 && !(HEADER (X).f_flags & F_LOADONLY))
2773 # define GCC_CHECK_HDR(X) \
2774 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2775 || (HEADER (X).f_magic == 0757 && aix64_flag)) \
2776 && !(HEADER (X).f_flags & F_LOADONLY))
2781 #ifdef COLLECT_EXPORT_LIST
2782 /* Array of standard AIX libraries which should not
2783 be scanned for ctors/dtors. */
2784 static const char *const aix_std_libs
[] = {
2792 "/usr/lib/libc_r.a",
2793 "/usr/lib/libm_r.a",
2794 "/usr/lib/threads/libc.a",
2795 "/usr/ccs/lib/libc.a",
2796 "/usr/ccs/lib/libm.a",
2797 "/usr/ccs/lib/libc_r.a",
2798 "/usr/ccs/lib/libm_r.a",
2802 /* This function checks the filename and returns 1
2803 if this name matches the location of a standard AIX library. */
2804 static int ignore_library (const char *);
2806 ignore_library (const char *name
)
2808 const char *const *p
;
2811 if (target_system_root
[0] != '\0')
2813 length
= strlen (target_system_root
);
2814 if (strncmp (name
, target_system_root
, length
) != 0)
2818 for (p
= &aix_std_libs
[0]; *p
!= NULL
; ++p
)
2819 if (strcmp (name
, *p
) == 0)
2823 #endif /* COLLECT_EXPORT_LIST */
2825 #if defined (HAVE_DECL_LDGETNAME) && !HAVE_DECL_LDGETNAME
2826 extern char *ldgetname (LDFILE
*, GCC_SYMENT
*);
2829 /* COFF version to scan the name list of the loaded program for
2830 the symbols g++ uses for static constructors and destructors. */
2833 scan_prog_file (const char *prog_name
, scanpass which_pass
,
2836 LDFILE
*ldptr
= NULL
;
2837 int sym_index
, sym_count
;
2840 if (which_pass
!= PASS_FIRST
&& which_pass
!= PASS_OBJ
)
2843 #ifdef COLLECT_EXPORT_LIST
2844 /* We do not need scanning for some standard C libraries. */
2845 if (which_pass
== PASS_FIRST
&& ignore_library (prog_name
))
2848 /* On AIX we have a loop, because there is not much difference
2849 between an object and an archive. This trick allows us to
2850 eliminate scan_libraries() function. */
2854 /* Some platforms (e.g. OSF4) declare ldopen as taking a
2855 non-const char * filename parameter, even though it will not
2856 modify that string. So we must cast away const-ness here,
2857 using CONST_CAST to prevent complaints from -Wcast-qual. */
2858 if ((ldptr
= ldopen (CONST_CAST (char *, prog_name
), ldptr
)) != NULL
)
2860 if (! MY_ISCOFF (HEADER (ldptr
).f_magic
))
2861 fatal_error ("%s: not a COFF file", prog_name
);
2863 if (GCC_CHECK_HDR (ldptr
))
2865 sym_count
= GCC_SYMBOLS (ldptr
);
2866 sym_index
= GCC_SYMZERO (ldptr
);
2868 #ifdef COLLECT_EXPORT_LIST
2869 /* Is current archive member a shared object? */
2870 is_shared
= HEADER (ldptr
).f_flags
& F_SHROBJ
;
2873 while (sym_index
< sym_count
)
2877 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2879 sym_index
+= GCC_SYMINC (symbol
);
2881 if (GCC_OK_SYMBOL (symbol
))
2885 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2886 continue; /* Should never happen. */
2888 #ifdef XCOFF_DEBUGGING_INFO
2889 /* All AIX function names have a duplicate entry
2890 beginning with a dot. */
2895 switch (is_ctor_dtor (name
))
2898 if (! (filter
& SCAN_CTOR
))
2901 add_to_list (&constructors
, name
);
2902 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2903 if (which_pass
== PASS_OBJ
)
2904 add_to_list (&exports
, name
);
2909 if (! (filter
& SCAN_DTOR
))
2912 add_to_list (&destructors
, name
);
2913 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2914 if (which_pass
== PASS_OBJ
)
2915 add_to_list (&exports
, name
);
2919 #ifdef COLLECT_EXPORT_LIST
2921 if (! (filter
& SCAN_INIT
))
2923 #ifndef LD_INIT_SWITCH
2925 add_to_list (&constructors
, name
);
2930 if (! (filter
& SCAN_FINI
))
2932 #ifndef LD_INIT_SWITCH
2934 add_to_list (&destructors
, name
);
2940 if (! (filter
& SCAN_DWEH
))
2943 add_to_list (&frame_tables
, name
);
2944 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2945 if (which_pass
== PASS_OBJ
)
2946 add_to_list (&exports
, name
);
2950 default: /* not a constructor or destructor */
2951 #ifdef COLLECT_EXPORT_LIST
2952 /* Explicitly export all global symbols when
2953 building a shared object on AIX, but do not
2954 re-export symbols from another shared object
2955 and do not export symbols if the user
2956 provides an explicit export list. */
2957 if (shared_obj
&& !is_shared
2958 && which_pass
== PASS_OBJ
&& !export_flag
)
2959 add_to_list (&exports
, name
);
2965 #if !defined(EXTENDED_COFF)
2966 fprintf (stderr
, "\tsec=%d class=%d type=%s%o %s\n",
2967 symbol
.n_scnum
, symbol
.n_sclass
,
2968 (symbol
.n_type
? "0" : ""), symbol
.n_type
,
2972 "\tiss = %5d, value = %5ld, index = %5d, name = %s\n",
2973 symbol
.iss
, (long) symbol
.value
, symbol
.index
, name
);
2978 #ifdef COLLECT_EXPORT_LIST
2981 /* If archive contains both 32-bit and 64-bit objects,
2982 we want to skip objects in other mode so mismatch normal. */
2984 fprintf (stderr
, "%s : magic=%o aix64=%d mismatch\n",
2985 prog_name
, HEADER (ldptr
).f_magic
, aix64_flag
);
2991 fatal_error ("%s: cannot open as COFF file", prog_name
);
2993 #ifdef COLLECT_EXPORT_LIST
2994 /* On AIX loop continues while there are more members in archive. */
2996 while (ldclose (ldptr
) == FAILURE
);
2998 /* Otherwise we simply close ldptr. */
2999 (void) ldclose(ldptr
);
3002 #endif /* OBJECT_FORMAT_COFF */
3004 #ifdef COLLECT_EXPORT_LIST
3005 /* Given a library name without "lib" prefix, this function
3006 returns a full library name including a path. */
3008 resolve_lib_name (const char *name
)
3012 /* Library extensions for AIX dynamic linking. */
3013 const char * const libexts
[2] = {"a", "so"};
3015 for (i
= 0; libpaths
[i
]; i
++)
3016 if (libpaths
[i
]->max_len
> l
)
3017 l
= libpaths
[i
]->max_len
;
3019 lib_buf
= XNEWVEC (char, l
+ strlen(name
) + 10);
3021 for (i
= 0; libpaths
[i
]; i
++)
3023 struct prefix_list
*list
= libpaths
[i
]->plist
;
3024 for (; list
; list
= list
->next
)
3026 /* The following lines are needed because path_prefix list
3027 may contain directories both with trailing DIR_SEPARATOR and
3030 if (!IS_DIR_SEPARATOR (list
->prefix
[strlen(list
->prefix
)-1]))
3032 for (j
= 0; j
< 2; j
++)
3034 sprintf (lib_buf
, "%s%slib%s.%s",
3035 list
->prefix
, p
, name
,
3036 libexts
[(j
+ aixrtl_flag
) % 2]);
3037 if (debug
) fprintf (stderr
, "searching for: %s\n", lib_buf
);
3038 if (file_exists (lib_buf
))
3040 if (debug
) fprintf (stderr
, "found: %s\n", lib_buf
);
3047 fprintf (stderr
, "not found\n");
3049 fatal_error ("library lib%s not found", name
);
3052 #endif /* COLLECT_EXPORT_LIST */
3054 #ifdef COLLECT_RUN_DSYMUTIL
3055 static int flag_dsym
= false;
3056 static int flag_idsym
= false;
3059 process_args (int *argcp
, char **argv
) {
3062 for (i
=0; i
<argc
; ++i
)
3064 if (strcmp (argv
[i
], "-dsym") == 0)
3067 /* Remove the flag, as we handle all processing for it. */
3070 argv
[j
] = argv
[j
+1];
3075 else if (strcmp (argv
[i
], "-idsym") == 0)
3078 /* Remove the flag, as we handle all processing for it. */
3081 argv
[j
] = argv
[j
+1];
3090 do_dsymutil (const char *output_file
) {
3091 const char *dsymutil
= DSYMUTIL
+ 1;
3092 struct pex_obj
*pex
;
3093 char **real_argv
= XCNEWVEC (char *, 3);
3094 const char ** argv
= CONST_CAST2 (const char **, char **,
3098 argv
[1] = output_file
;
3099 argv
[2] = (char *) 0;
3101 pex
= collect_execute (dsymutil
, real_argv
, NULL
, NULL
, PEX_LAST
| PEX_SEARCH
);
3102 do_wait (dsymutil
, pex
);
3106 post_ld_pass (bool temp_file
) {
3107 if (!(temp_file
&& flag_idsym
) && !flag_dsym
)
3110 do_dsymutil (output_file
);
3114 process_args (int *argcp ATTRIBUTE_UNUSED
, char **argv ATTRIBUTE_UNUSED
) { }
3115 static void post_ld_pass (bool temp_file ATTRIBUTE_UNUSED
) { }