1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992-2024 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"
33 #include "simple-object.h"
34 #include "lto-section-names.h"
36 /* TARGET_64BIT may be defined to use driver specific functionality. */
38 #define TARGET_64BIT TARGET_64BIT_DEFAULT
40 #ifndef LIBRARY_PATH_ENV
41 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
47 #include "collect2-aix.h"
48 #include "collect-utils.h"
49 #include "diagnostic.h"
55 /* On certain systems, we have code that works by scanning the object file
56 directly. But this code uses system-specific header files and library
57 functions, so turn it off in a cross-compiler. Likewise, the names of
58 the utilities are not correct for a cross-compiler; we have to hope that
59 cross-versions are in the proper directories. */
61 #ifdef CROSS_DIRECTORY_STRUCTURE
62 #ifndef CROSS_AIX_SUPPORT
63 #undef OBJECT_FORMAT_COFF
66 #undef REAL_LD_FILE_NAME
67 #undef REAL_NM_FILE_NAME
68 #undef REAL_STRIP_FILE_NAME
71 /* If we cannot use a special method, use the ordinary one:
72 run nm to find what symbols are present.
73 In a cross-compiler, this means you need a cross nm,
74 but that is not quite as unpleasant as special headers. */
76 #if !defined (OBJECT_FORMAT_COFF)
77 #define OBJECT_FORMAT_NONE
80 #ifdef OBJECT_FORMAT_COFF
82 #ifndef CROSS_DIRECTORY_STRUCTURE
90 /* Many versions of ldfcn.h define these. */
99 /* Some systems have an ISCOFF macro, but others do not. In some cases
100 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
101 that either do not have an ISCOFF macro in /usr/include or for those
102 where it is wrong. */
105 #define MY_ISCOFF(X) ISCOFF (X)
108 #endif /* OBJECT_FORMAT_COFF */
110 #ifdef OBJECT_FORMAT_NONE
112 /* Default flags to pass to nm. */
114 #define NM_FLAGS "-n"
117 #endif /* OBJECT_FORMAT_NONE */
119 /* Some systems use __main in a way incompatible with its use in gcc, in these
120 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
121 give the same symbol without quotes for an alternative entry point. */
123 #define NAME__MAIN "__main"
126 /* This must match tree.h. */
127 #define DEFAULT_INIT_PRIORITY 65535
129 #ifndef COLLECT_SHARED_INIT_FUNC
130 #define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
131 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
133 #ifndef COLLECT_SHARED_FINI_FUNC
134 #define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
135 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
139 #define SCAN_LIBRARIES
143 #define SHLIB_SUFFIX ".so"
147 int do_collecting
= 1;
149 int do_collecting
= 0;
152 /* Cook up an always defined indication of whether we proceed the
153 "EXPORT_LIST" way. */
155 #ifdef COLLECT_EXPORT_LIST
156 #define DO_COLLECT_EXPORT_LIST 1
158 #define DO_COLLECT_EXPORT_LIST 0
161 /* Nonzero if we should suppress the automatic demangling of identifiers
162 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
165 /* Linked lists of constructor and destructor names. */
181 static int rflag
; /* true if -r */
182 static int strip_flag
; /* true if -s */
183 #ifdef COLLECT_EXPORT_LIST
184 static int export_flag
; /* true if -bE */
185 static int aix64_flag
; /* true if -b64 */
186 static int aixrtl_flag
; /* true if -brtl */
187 static int aixlazy_flag
; /* true if -blazy */
188 static int visibility_flag
; /* true if -fvisibility */
192 LTO_MODE_NONE
, /* Not doing LTO. */
193 LTO_MODE_LTO
, /* Normal LTO. */
194 LTO_MODE_WHOPR
/* WHOPR. */
197 /* Current LTO mode. */
199 static enum lto_mode_d lto_mode
= LTO_MODE_WHOPR
;
201 static enum lto_mode_d lto_mode
= LTO_MODE_NONE
;
204 bool helpflag
; /* true if --help */
206 static int shared_obj
; /* true if -shared */
207 static int static_obj
; /* true if -static */
209 static const char *c_file
; /* <xxx>.c for constructor/destructor list. */
210 static const char *o_file
; /* <xxx>.o for constructor/destructor list. */
211 #ifdef COLLECT_EXPORT_LIST
212 static const char *export_file
; /* <xxx>.x for AIX export list. */
214 static char **lto_o_files
; /* Output files for LTO. */
215 static const char *output_file
; /* Output file for ld. */
216 static const char *nm_file_name
; /* pathname of nm */
218 static const char *ldd_file_name
; /* pathname of ldd (or equivalent) */
220 static const char *strip_file_name
; /* pathname of strip */
221 const char *c_file_name
; /* pathname of gcc */
222 static char *initname
, *fininame
; /* names of init and fini funcs */
225 #ifdef TARGET_AIX_VERSION
226 static char *aix_shared_initname
;
227 static char *aix_shared_fininame
; /* init/fini names as per the scheme
228 described in config/rs6000/aix.h */
231 static struct head constructors
; /* list of constructors found */
232 static struct head destructors
; /* list of destructors found */
233 #ifdef COLLECT_EXPORT_LIST
234 static struct head exports
; /* list of exported symbols */
236 static struct head frame_tables
; /* list of frame unwind info tables */
238 bool at_file_supplied
; /* Whether to use @file arguments */
240 struct obstack temporary_obstack
;
241 char * temporary_firstobj
;
243 /* A string that must be prepended to a target OS path in order to find
244 it on the host system. */
245 #ifdef TARGET_SYSTEM_ROOT
246 static const char *target_system_root
= TARGET_SYSTEM_ROOT
;
248 static const char *target_system_root
= "";
251 /* Whether we may unlink the output file, which should be set as soon as we
252 know we have successfully produced it. This is typically useful to prevent
253 blindly attempting to unlink a read-only output that the target linker
254 would leave untouched. */
255 bool may_unlink_output_file
= false;
257 #ifdef COLLECT_EXPORT_LIST
258 /* Lists to keep libraries to be scanned for global constructors/destructors. */
259 static struct head libs
; /* list of libraries */
260 static struct head static_libs
; /* list of statically linked libraries */
261 static struct path_prefix cmdline_lib_dirs
; /* directories specified with -L */
262 static struct path_prefix libpath_lib_dirs
; /* directories in LIBPATH */
263 static struct path_prefix
*libpaths
[3] = {&cmdline_lib_dirs
,
264 &libpath_lib_dirs
, NULL
};
267 /* List of names of object files containing LTO information.
268 These are a subset of the object file names appearing on the
269 command line, and must be identical, in the sense of pointer
270 equality, with the names passed to maybe_run_lto_and_relink(). */
274 const char *name
; /* Name of object file. */
275 struct lto_object
*next
; /* Next in linked list. */
278 struct lto_object_list
280 struct lto_object
*first
; /* First list element. */
281 struct lto_object
*last
; /* Last list element. */
284 static struct lto_object_list lto_objects
;
286 /* Special kinds of symbols that a name may denote. */
289 SYM_REGULAR
= 0, /* nothing special */
291 SYM_CTOR
= 1, /* constructor */
292 SYM_DTOR
= 2, /* destructor */
293 SYM_INIT
= 3, /* shared object routine that calls all the ctors */
294 SYM_FINI
= 4, /* shared object routine that calls all the dtors */
295 SYM_DWEH
= 5, /* DWARF exception handling table */
300 const char tool_name
[] = "collect2";
302 static symkind
is_ctor_dtor (const char *);
304 static void maybe_unlink_list (char **);
305 static void add_to_list (struct head
*, const char *);
306 static int extract_init_priority (const char *);
307 static void sort_ids (struct head
*);
308 static void write_list (FILE *, const char *, struct id
*);
309 #ifdef COLLECT_EXPORT_LIST
310 static void dump_list (FILE *, const char *, struct id
*);
313 static void dump_prefix_list (FILE *, const char *, struct prefix_list
*);
315 static void write_list_with_asm (FILE *, const char *, struct id
*);
316 static void write_c_file (FILE *, const char *);
317 static void write_c_file_stat (FILE *, const char *);
318 #ifndef LD_INIT_SWITCH
319 static void write_c_file_glob (FILE *, const char *);
321 #ifdef SCAN_LIBRARIES
322 static void scan_libraries (const char *);
324 #ifdef COLLECT_EXPORT_LIST
325 static int is_in_list (const char *, struct id
*);
326 static void write_aix_file (FILE *, struct id
*);
327 static char *resolve_lib_name (const char *);
329 static char *extract_string (const char **);
330 static void post_ld_pass (bool);
331 static void process_args (int *argcp
, char **argv
);
333 /* Enumerations describing which pass this is for scanning the
337 PASS_FIRST
, /* without constructors */
338 PASS_OBJ
, /* individual objects */
339 PASS_LIB
, /* looking for shared libraries */
340 PASS_SECOND
, /* with constructors linked in */
341 PASS_LTOINFO
/* looking for objects with LTO info */
344 /* ... and which kinds of symbols are to be considered. */
346 enum scanfilter_masks
{
349 SCAN_CTOR
= 1 << SYM_CTOR
,
350 SCAN_DTOR
= 1 << SYM_DTOR
,
351 SCAN_INIT
= 1 << SYM_INIT
,
352 SCAN_FINI
= 1 << SYM_FINI
,
353 SCAN_DWEH
= 1 << SYM_DWEH
,
354 SCAN_AIXI
= 1 << SYM_AIXI
,
355 SCAN_AIXD
= 1 << SYM_AIXD
,
359 /* This type is used for parameters and variables which hold
360 combinations of the flags in enum scanfilter_masks. */
361 typedef int scanfilter
;
363 /* Scan the name list of the loaded program for the symbols g++ uses for
364 static constructors and destructors.
366 The SCANPASS argument tells which collect processing pass this is for and
367 the SCANFILTER argument tells which kinds of symbols to consider in this
368 pass. Symbols of a special kind not in the filter mask are considered as
371 The constructor table begins at __CTOR_LIST__ and contains a count of the
372 number of pointers (or -1 if the constructors are built in a separate
373 section by the linker), followed by the pointers to the constructor
374 functions, terminated with a null pointer. The destructor table has the
375 same format, and begins at __DTOR_LIST__. */
377 static void scan_prog_file (const char *, scanpass
, scanfilter
);
380 /* Delete tempfiles and exit function. */
383 tool_cleanup (bool from_signal
)
385 /* maybe_unlink may call notice, which is not signal safe. */
389 if (c_file
!= 0 && c_file
[0])
390 maybe_unlink (c_file
);
392 if (o_file
!= 0 && o_file
[0])
393 maybe_unlink (o_file
);
395 #ifdef COLLECT_EXPORT_LIST
396 if (export_file
!= 0 && export_file
[0])
397 maybe_unlink (export_file
);
401 maybe_unlink_list (lto_o_files
);
405 collect_atexit (void)
407 tool_cleanup (false);
410 /* Notify user of a non-error, without translating the format string. */
412 notice_translated (const char *cmsgid
, ...)
416 va_start (ap
, cmsgid
);
417 vfprintf (stderr
, cmsgid
, ap
);
422 file_exists (const char *name
)
424 return access (name
, R_OK
) == 0;
427 /* Parse a reasonable subset of shell quoting syntax. */
430 extract_string (const char **pp
)
443 obstack_1grow (&temporary_obstack
, c
);
444 else if (! inside
&& c
== ' ')
446 else if (! inside
&& c
== '\\')
451 obstack_1grow (&temporary_obstack
, c
);
454 obstack_1grow (&temporary_obstack
, '\0');
456 return XOBFINISH (&temporary_obstack
, char *);
459 /* Return the kind of symbol denoted by name S. */
462 is_ctor_dtor (const char *s
)
464 struct names
{ const char *const name
; const int len
; symkind ret
;
465 const int two_underscores
; };
467 const struct names
*p
;
469 const char *orig_s
= s
;
471 static const struct names special
[] = {
472 #ifndef NO_DOLLAR_IN_LABEL
473 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, SYM_CTOR
, 0 },
474 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, SYM_DTOR
, 0 },
476 #ifndef NO_DOT_IN_LABEL
477 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, SYM_CTOR
, 0 },
478 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, SYM_DTOR
, 0 },
479 #endif /* NO_DOT_IN_LABEL */
480 #endif /* NO_DOLLAR_IN_LABEL */
481 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, SYM_CTOR
, 0 },
482 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, SYM_DTOR
, 0 },
483 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, SYM_DWEH
, 0 },
484 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, SYM_INIT
, 0 },
485 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, SYM_FINI
, 0 },
486 #ifdef TARGET_AIX_VERSION
487 { "GLOBAL__AIXI_", sizeof ("GLOBAL__AIXI_")-1, SYM_AIXI
, 0 },
488 { "GLOBAL__AIXD_", sizeof ("GLOBAL__AIXD_")-1, SYM_AIXD
, 0 },
490 { NULL
, 0, SYM_REGULAR
, 0 }
493 while ((ch
= *s
) == '_')
499 for (p
= &special
[0]; p
->len
> 0; p
++)
502 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
503 && strncmp (s
, p
->name
, p
->len
) == 0)
511 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
512 and one from the PATH variable. */
514 static struct path_prefix cpath
, path
;
516 #ifdef CROSS_DIRECTORY_STRUCTURE
517 /* This is the name of the target machine. We use it to form the name
518 of the files to execute. */
520 static const char *const target_machine
= TARGET_MACHINE
;
523 /* Search for NAME using prefix list PPREFIX. We only look for executable
526 Return 0 if not found, otherwise return its name, allocated with malloc. */
528 #ifdef OBJECT_FORMAT_NONE
530 /* Add an entry for the object file NAME to object file list LIST.
531 New entries are added at the end of the list. The original pointer
532 value of NAME is preserved, i.e., no string copy is performed. */
535 add_lto_object (struct lto_object_list
*list
, const char *name
)
537 struct lto_object
*n
= XNEW (struct lto_object
);
542 list
->last
->next
= n
;
548 #endif /* OBJECT_FORMAT_NONE */
551 /* Perform a link-time recompilation and relink if any of the object
552 files contain LTO info. The linker command line LTO_LD_ARGV
553 represents the linker command that would produce a final executable
554 without the use of LTO. OBJECT_LST is a vector of object file names
555 appearing in LTO_LD_ARGV that are to be considered for link-time
556 recompilation, where OBJECT is a pointer to the last valid element.
557 (This awkward convention avoids an impedance mismatch with the
558 usage of similarly-named variables in main().) The elements of
559 OBJECT_LST must be identical, i.e., pointer equal, to the
560 corresponding arguments in LTO_LD_ARGV.
562 Upon entry, at least one linker run has been performed without the
563 use of any LTO info that might be present. Any recompilations
564 necessary for template instantiations have been performed, and
565 initializer/finalizer tables have been created if needed and
566 included in the linker command line LTO_LD_ARGV. If any of the
567 object files contain LTO info, we run the LTO back end on all such
568 files, and perform the final link with the LTO back end output
569 substituted for the LTO-optimized files. In some cases, a final
570 link with all link-time generated code has already been performed,
571 so there is no need to relink if no LTO info is found. In other
572 cases, our caller has not produced the final executable, and is
573 relying on us to perform the required link whether LTO info is
574 present or not. In that case, the FORCE argument should be true.
575 Note that the linker command line argument LTO_LD_ARGV passed into
576 this function may be modified in place. */
579 maybe_run_lto_and_relink (char **lto_ld_argv
, char **object_lst
,
580 const char **object
, bool force
)
582 const char **object_file
= CONST_CAST2 (const char **, char **, object_lst
);
584 int num_lto_c_args
= 1; /* Allow space for the terminating NULL. */
586 while (object_file
< object
)
588 /* If file contains LTO info, add it to the list of LTO objects. */
589 scan_prog_file (*object_file
++, PASS_LTOINFO
, SCAN_ALL
);
591 /* Increment the argument count by the number of object file arguments
592 we will add. An upper bound suffices, so just count all of the
593 object files regardless of whether they contain LTO info. */
597 if (lto_objects
.first
)
600 const char **lto_c_ptr
;
603 struct lto_object
*list
;
604 char *lto_wrapper
= getenv ("COLLECT_LTO_WRAPPER");
606 const char *prog
= "lto-wrapper";
607 int lto_ld_argv_size
= 0;
608 char **out_lto_ld_argv
;
609 int out_lto_ld_argv_size
;
613 fatal_error (input_location
, "environment variable "
614 "%<COLLECT_LTO_WRAPPER%> must be set");
618 /* There is at least one object file containing LTO info,
619 so we need to run the LTO back end and relink.
621 To do so we build updated ld arguments with first
622 LTO object replaced by all partitions and other LTO
625 lto_c_argv
= (char **) xcalloc (num_lto_c_args
, sizeof (char *));
626 lto_c_ptr
= CONST_CAST2 (const char **, char **, lto_c_argv
);
628 *lto_c_ptr
++ = lto_wrapper
;
630 /* Add LTO objects to the wrapper command line. */
631 for (list
= lto_objects
.first
; list
; list
= list
->next
)
632 *lto_c_ptr
++ = list
->name
;
636 /* Run the LTO back end. */
637 pex
= collect_execute (prog
, lto_c_argv
, NULL
, NULL
, PEX_SEARCH
,
638 at_file_supplied
, "lto_args");
645 stream
= pex_read_output (pex
, 0);
649 while ((c
= getc (stream
)) != EOF
)
651 obstack_1grow (&temporary_obstack
, c
);
656 /* signal handler may access uninitialized memory
657 and delete whatever it points to, if lto_o_files
658 is not allocated with calloc. */
659 lto_o_files
= XCNEWVEC (char *, num_files
+ 1);
660 lto_o_files
[num_files
] = NULL
;
661 start
= XOBFINISH (&temporary_obstack
, char *);
662 for (i
= 0; i
< num_files
; ++i
)
669 lto_o_files
[i
] = xstrdup (start
);
674 obstack_free (&temporary_obstack
, temporary_firstobj
);
679 /* Compute memory needed for new LD arguments. At most number of original arguments
680 plus number of partitions. */
681 for (lto_ld_argv_size
= 0; lto_ld_argv
[lto_ld_argv_size
]; lto_ld_argv_size
++)
683 out_lto_ld_argv
= XCNEWVEC (char *, num_files
+ lto_ld_argv_size
+ 1);
684 out_lto_ld_argv_size
= 0;
686 /* After running the LTO back end, we will relink, substituting
687 the LTO output for the object files that we submitted to the
688 LTO. Here, we modify the linker command line for the relink. */
690 /* Copy all arguments until we find first LTO file. */
694 for (list
= lto_objects
.first
; list
; list
= list
->next
)
695 if (*p
== list
->name
) /* Note test for pointer equality! */
699 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
++;
702 /* Now insert all LTO partitions. */
703 lto_o_ptr
= lto_o_files
;
705 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *lto_o_ptr
++;
707 /* ... and copy the rest. */
710 for (list
= lto_objects
.first
; list
; list
= list
->next
)
711 if (*p
== list
->name
) /* Note test for pointer equality! */
714 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
;
717 out_lto_ld_argv
[out_lto_ld_argv_size
++] = 0;
719 /* Run the linker again, this time replacing the object files
720 optimized by the LTO with the temporary file generated by the LTO. */
721 fork_execute ("ld", out_lto_ld_argv
, HAVE_GNU_LD
&& at_file_supplied
,
723 /* We assume that temp files were created, and therefore we need to take
724 that into account (maybe run dsymutil). */
725 post_ld_pass (/*temp_file*/true);
728 maybe_unlink_list (lto_o_files
);
732 /* Our caller is relying on us to do the link
733 even though there is no LTO back end work to be done. */
734 fork_execute ("ld", lto_ld_argv
, HAVE_GNU_LD
&& at_file_supplied
,
736 /* No LTO objects were found, so no new temp file. */
737 post_ld_pass (/*temp_file*/false);
740 post_ld_pass (false); /* No LTO objects were found, no temp file. */
742 /* Entry point for linker invoation. Called from main in collect2.cc.
743 LD_ARGV is an array of arguments for the linker. */
746 do_link (char **ld_argv
, const char *atsuffix
)
749 const char *prog
= "ld";
750 pex
= collect_execute (prog
, ld_argv
, NULL
, NULL
,
751 PEX_LAST
| PEX_SEARCH
,
752 HAVE_GNU_LD
&& at_file_supplied
, atsuffix
);
753 int ret
= collect_wait (prog
, pex
);
756 error ("ld returned %d exit status", ret
);
761 /* We have just successfully produced an output file, so assume that we
762 may unlink it if need be for now on. */
763 may_unlink_output_file
= true;
770 main (int argc
, char **argv
)
781 } selected_linker
= USE_DEFAULT_LD
;
782 static const char *const ld_suffixes
[USE_LD_MAX
] =
791 static const char *const real_ld_suffix
= "real-ld";
792 static const char *const collect_ld_suffix
= "collect-ld";
793 static const char *const nm_suffix
= "nm";
794 static const char *const gnm_suffix
= "gnm";
796 static const char *const ldd_suffix
= LDD_SUFFIX
;
798 static const char *const strip_suffix
= "strip";
799 static const char *const gstrip_suffix
= "gstrip";
801 const char *full_ld_suffixes
[USE_LD_MAX
];
802 #ifdef CROSS_DIRECTORY_STRUCTURE
803 /* If we look for a program in the compiler directories, we just use
804 the short name, since these directories are already system-specific.
805 But it we look for a program in the system directories, we need to
806 qualify the program name with the target machine. */
808 const char *const full_nm_suffix
=
809 concat (target_machine
, "-", nm_suffix
, NULL
);
810 const char *const full_gnm_suffix
=
811 concat (target_machine
, "-", gnm_suffix
, NULL
);
813 const char *const full_ldd_suffix
=
814 concat (target_machine
, "-", ldd_suffix
, NULL
);
816 const char *const full_strip_suffix
=
817 concat (target_machine
, "-", strip_suffix
, NULL
);
818 const char *const full_gstrip_suffix
=
819 concat (target_machine
, "-", gstrip_suffix
, NULL
);
822 const char *const full_ldd_suffix
= ldd_suffix
;
824 const char *const full_nm_suffix
= nm_suffix
;
825 const char *const full_gnm_suffix
= gnm_suffix
;
826 const char *const full_strip_suffix
= strip_suffix
;
827 const char *const full_gstrip_suffix
= gstrip_suffix
;
828 #endif /* CROSS_DIRECTORY_STRUCTURE */
832 #ifdef COLLECT_EXPORT_LIST
835 const char *ld_file_name
;
841 bool use_plugin
= false;
842 bool use_collect_ld
= false;
844 /* The kinds of symbols we will have to consider when scanning the
845 outcome of a first pass link. This is ALL to start with, then might
846 be adjusted before getting to the first pass link per se, typically on
847 AIX where we perform an early scan of objects and libraries to fetch
848 the list of global ctors/dtors and make sure they are not garbage
850 scanfilter ld1_filter
= SCAN_ALL
;
856 #ifdef TARGET_AIX_VERSION
857 int object_nbr
= argc
;
862 #ifdef COLLECT_EXPORT_LIST
863 bool is_static
= false;
867 for (i
= 0; i
< USE_LD_MAX
; i
++)
868 #ifdef CROSS_DIRECTORY_STRUCTURE
869 /* lld and mold are platform-agnostic and not prefixed with target
871 if (!(i
== USE_LLD_LD
|| i
== USE_MOLD_LD
))
872 full_ld_suffixes
[i
] = concat (target_machine
, "-", ld_suffixes
[i
],
876 full_ld_suffixes
[i
] = ld_suffixes
[i
];
878 p
= argv
[0] + strlen (argv
[0]);
879 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
883 xmalloc_set_program_name (progname
);
886 expandargv (&argc
, &argv
);
887 if (argv
!= old_argv
)
888 at_file_supplied
= 1;
890 process_args (&argc
, argv
);
892 num_c_args
= argc
+ 9;
894 #ifndef HAVE_LD_DEMANGLE
895 no_demangle
= !! getenv ("COLLECT_NO_DEMANGLE");
897 /* Suppress demangling by the real linker, which may be broken. */
898 putenv (xstrdup ("COLLECT_NO_DEMANGLE=1"));
901 #if defined (COLLECT2_HOST_INITIALIZATION)
902 /* Perform system dependent initialization, if necessary. */
903 COLLECT2_HOST_INITIALIZATION
;
908 /* Unlock the stdio streams. */
909 unlock_std_streams ();
913 diagnostic_initialize (global_dc
, 0);
915 if (atexit (collect_atexit
) != 0)
916 fatal_error (input_location
, "atexit failed");
918 /* Do not invoke xcalloc before this point, since locale needs to be
919 set first, in case a diagnostic is issued. */
921 ld1_argv
= XCNEWVEC (char *, argc
+ 4);
922 ld1
= CONST_CAST2 (const char **, char **, ld1_argv
);
923 ld2_argv
= XCNEWVEC (char *, argc
+ 11);
924 ld2
= CONST_CAST2 (const char **, char **, ld2_argv
);
925 object_lst
= XCNEWVEC (char *, argc
);
926 object
= CONST_CAST2 (const char **, char **, object_lst
);
935 #ifndef DEFAULT_A_OUT_NAME
936 output_file
= "a.out";
938 output_file
= DEFAULT_A_OUT_NAME
;
941 /* Parse command line / environment for flags we want early.
942 This allows the debug flag to be set before functions like find_a_file()
945 bool no_partition
= false;
947 for (i
= 1; argv
[i
] != NULL
; i
++)
949 if (! strcmp (argv
[i
], "-debug"))
951 else if (startswith (argv
[i
], "-fno-lto"))
952 lto_mode
= LTO_MODE_NONE
;
953 else if (! strcmp (argv
[i
], "-plugin"))
956 if (selected_linker
== USE_DEFAULT_LD
)
957 selected_linker
= USE_PLUGIN_LD
;
959 else if (strcmp (argv
[i
], "-fuse-ld=bfd") == 0)
960 selected_linker
= USE_BFD_LD
;
961 else if (strcmp (argv
[i
], "-fuse-ld=gold") == 0)
962 selected_linker
= USE_GOLD_LD
;
963 else if (strcmp (argv
[i
], "-fuse-ld=lld") == 0)
964 selected_linker
= USE_LLD_LD
;
965 else if (strcmp (argv
[i
], "-fuse-ld=mold") == 0)
966 selected_linker
= USE_MOLD_LD
;
967 else if (startswith (argv
[i
], "-o"))
969 /* Parse the output filename if it's given so that we can make
970 meaningful temp filenames. */
971 if (argv
[i
][2] != '\0')
972 output_file
= &argv
[i
][2];
973 else if (argv
[i
+1] != NULL
)
974 output_file
= argv
[++i
];
977 #ifdef COLLECT_EXPORT_LIST
978 /* These flags are position independent, although their order
979 is important - subsequent flags override earlier ones. */
980 else if (strcmp (argv
[i
], "-b64") == 0)
982 /* -bexport:filename always needs the :filename */
983 else if (startswith (argv
[i
], "-bE:")
984 || startswith (argv
[i
], "-bexport:"))
986 else if (strcmp (argv
[i
], "-brtl") == 0
987 || strcmp (argv
[i
], "-bsvr4") == 0
988 || strcmp (argv
[i
], "-G") == 0)
990 else if (strcmp (argv
[i
], "-bnortl") == 0)
992 else if (strcmp (argv
[i
], "-blazy") == 0)
997 obstack_begin (&temporary_obstack
, 0);
998 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
1000 #ifndef HAVE_LD_DEMANGLE
1001 current_demangling_style
= auto_demangling
;
1004 /* Now pick up any flags we want early from COLLECT_GCC_OPTIONS
1005 The LTO options are passed here as are other options that might
1006 be unsuitable for ld (e.g. -save-temps). */
1007 p
= getenv ("COLLECT_GCC_OPTIONS");
1010 const char *q
= extract_string (&p
);
1011 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1013 if (startswith (q
, "-flto-partition=none"))
1014 no_partition
= true;
1015 else if (startswith (q
, "-fno-lto"))
1016 lto_mode
= LTO_MODE_NONE
;
1017 else if (startswith (q
, "-save-temps"))
1018 /* FIXME: Honour =obj. */
1020 else if (strcmp (q
, "-dumpdir") == 0)
1021 dumppfx
= xstrdup (extract_string (&p
));
1022 else if (strcmp (q
, "-o") == 0
1023 || strcmp (q
, "-B") == 0
1024 || strcmp (q
, "-isystem") == 0)
1025 (void) extract_string (&p
);
1027 obstack_free (&temporary_obstack
, temporary_firstobj
);
1029 verbose
= verbose
|| debug
;
1030 save_temps
= save_temps
|| debug
;
1031 find_file_set_debug (debug
);
1033 lto_mode
= LTO_MODE_NONE
;
1034 if (no_partition
&& lto_mode
== LTO_MODE_WHOPR
)
1035 lto_mode
= LTO_MODE_LTO
;
1038 /* -fno-profile-arcs -fno-test-coverage -fno-branch-probabilities
1039 -fno-exceptions -w -fno-whole-program */
1042 c_argv
= XCNEWVEC (char *, num_c_args
);
1043 c_ptr
= CONST_CAST2 (const char **, char **, c_argv
);
1046 fatal_error (input_location
, "no arguments");
1048 /* Extract COMPILER_PATH and PATH into our prefix list. */
1049 prefix_from_env ("COMPILER_PATH", &cpath
);
1050 prefix_from_env ("PATH", &path
);
1052 /* Try to discover a valid linker/nm/strip to use. */
1054 /* Maybe we know the right file to use (if not cross). */
1056 #ifdef DEFAULT_LINKER
1057 if (selected_linker
== USE_BFD_LD
|| selected_linker
== USE_GOLD_LD
||
1058 selected_linker
== USE_LLD_LD
|| selected_linker
== USE_MOLD_LD
)
1061 # ifdef HOST_EXECUTABLE_SUFFIX
1062 int len
= (sizeof (DEFAULT_LINKER
)
1063 - sizeof (HOST_EXECUTABLE_SUFFIX
));
1067 char *default_linker
= xstrdup (DEFAULT_LINKER
);
1068 /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
1069 HOST_EXECUTABLE_SUFFIX. */
1070 if (! strcmp (&default_linker
[len
], HOST_EXECUTABLE_SUFFIX
))
1072 default_linker
[len
] = '\0';
1073 linker_name
= concat (default_linker
,
1074 &ld_suffixes
[selected_linker
][2],
1075 HOST_EXECUTABLE_SUFFIX
, NULL
);
1078 if (linker_name
== NULL
)
1080 linker_name
= concat (DEFAULT_LINKER
,
1081 &ld_suffixes
[selected_linker
][2],
1083 if (access (linker_name
, X_OK
) == 0)
1084 ld_file_name
= linker_name
;
1086 if (ld_file_name
== 0 && access (DEFAULT_LINKER
, X_OK
) == 0)
1087 ld_file_name
= DEFAULT_LINKER
;
1088 if (ld_file_name
== 0)
1090 #ifdef REAL_LD_FILE_NAME
1091 ld_file_name
= find_a_file (&path
, REAL_LD_FILE_NAME
, X_OK
);
1092 if (ld_file_name
== 0)
1094 /* Search the (target-specific) compiler dirs for ld'. */
1095 ld_file_name
= find_a_file (&cpath
, real_ld_suffix
, X_OK
);
1096 /* Likewise for `collect-ld'. */
1097 if (ld_file_name
== 0)
1099 ld_file_name
= find_a_file (&cpath
, collect_ld_suffix
, X_OK
);
1100 use_collect_ld
= ld_file_name
!= 0;
1102 /* Search the compiler directories for `ld'. We have protection against
1103 recursive calls in find_a_file. */
1104 if (ld_file_name
== 0)
1105 ld_file_name
= find_a_file (&cpath
, ld_suffixes
[selected_linker
], X_OK
);
1106 /* Search the ordinary system bin directories
1107 for `ld' (if native linking) or `TARGET-ld' (if cross). */
1108 if (ld_file_name
== 0)
1109 ld_file_name
= find_a_file (&path
, full_ld_suffixes
[selected_linker
], X_OK
);
1111 #ifdef REAL_NM_FILE_NAME
1112 nm_file_name
= find_a_file (&path
, REAL_NM_FILE_NAME
, X_OK
);
1113 if (nm_file_name
== 0)
1115 nm_file_name
= find_a_file (&cpath
, gnm_suffix
, X_OK
);
1116 if (nm_file_name
== 0)
1117 nm_file_name
= find_a_file (&path
, full_gnm_suffix
, X_OK
);
1118 if (nm_file_name
== 0)
1119 nm_file_name
= find_a_file (&cpath
, nm_suffix
, X_OK
);
1120 if (nm_file_name
== 0)
1121 nm_file_name
= find_a_file (&path
, full_nm_suffix
, X_OK
);
1124 ldd_file_name
= find_a_file (&cpath
, ldd_suffix
, X_OK
);
1125 if (ldd_file_name
== 0)
1126 ldd_file_name
= find_a_file (&path
, full_ldd_suffix
, X_OK
);
1129 #ifdef REAL_STRIP_FILE_NAME
1130 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
, X_OK
);
1131 if (strip_file_name
== 0)
1133 strip_file_name
= find_a_file (&cpath
, gstrip_suffix
, X_OK
);
1134 if (strip_file_name
== 0)
1135 strip_file_name
= find_a_file (&path
, full_gstrip_suffix
, X_OK
);
1136 if (strip_file_name
== 0)
1137 strip_file_name
= find_a_file (&cpath
, strip_suffix
, X_OK
);
1138 if (strip_file_name
== 0)
1139 strip_file_name
= find_a_file (&path
, full_strip_suffix
, X_OK
);
1141 /* Determine the full path name of the C compiler to use. */
1142 c_file_name
= getenv ("COLLECT_GCC");
1143 if (c_file_name
== 0)
1145 #ifdef CROSS_DIRECTORY_STRUCTURE
1146 c_file_name
= concat (target_machine
, "-gcc", NULL
);
1148 c_file_name
= "gcc";
1152 p
= find_a_file (&cpath
, c_file_name
, X_OK
);
1154 /* Here it should be safe to use the system search path since we should have
1155 already qualified the name of the compiler when it is needed. */
1157 p
= find_a_file (&path
, c_file_name
, X_OK
);
1162 *ld1
++ = *ld2
++ = ld_file_name
;
1164 /* Make temp file names. */
1167 c_file
= concat (output_file
, ".cdtor.c", NULL
);
1168 o_file
= concat (output_file
, ".cdtor.o", NULL
);
1169 #ifdef COLLECT_EXPORT_LIST
1170 export_file
= concat (output_file
, ".x", NULL
);
1175 c_file
= make_temp_file (".cdtor.c");
1176 o_file
= make_temp_file (".cdtor.o");
1177 #ifdef COLLECT_EXPORT_LIST
1178 export_file
= make_temp_file (".x");
1181 /* Build the command line to compile the ctor/dtor list. */
1182 *c_ptr
++ = c_file_name
;
1189 #ifdef COLLECT_EXPORT_LIST
1190 /* Generate a list of directories from LIBPATH. */
1191 prefix_from_env ("LIBPATH", &libpath_lib_dirs
);
1192 /* Add to this list also two standard directories where
1193 AIX loader always searches for libraries. */
1194 add_prefix (&libpath_lib_dirs
, "/lib");
1195 add_prefix (&libpath_lib_dirs
, "/usr/lib");
1198 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1200 AIX support needs to know if -shared has been specified before
1201 parsing commandline arguments. */
1203 p
= getenv ("COLLECT_GCC_OPTIONS");
1206 const char *q
= extract_string (&p
);
1207 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1208 *c_ptr
++ = xstrdup (q
);
1209 if (strcmp (q
, "-EL") == 0 || strcmp (q
, "-EB") == 0)
1210 *c_ptr
++ = xstrdup (q
);
1211 if (strcmp (q
, "-shared") == 0)
1213 if (strcmp (q
, "-static") == 0)
1215 if (*q
== '-' && q
[1] == 'B')
1217 *c_ptr
++ = xstrdup (q
);
1220 q
= extract_string (&p
);
1221 *c_ptr
++ = xstrdup (q
);
1224 else if (strcmp (q
, "-o") == 0
1225 || strcmp (q
, "-dumpdir") == 0
1226 || strcmp (q
, "-isystem") == 0)
1227 (void) extract_string (&p
);
1228 #ifdef COLLECT_EXPORT_LIST
1229 /* Detect any invocation with -fvisibility. */
1230 if (startswith (q
, "-fvisibility"))
1231 visibility_flag
= 1;
1234 obstack_free (&temporary_obstack
, temporary_firstobj
);
1235 *c_ptr
++ = "-fno-profile-arcs";
1236 *c_ptr
++ = "-fno-test-coverage";
1237 *c_ptr
++ = "-fno-branch-probabilities";
1238 *c_ptr
++ = "-fno-exceptions";
1240 *c_ptr
++ = "-fno-whole-program";
1242 /* !!! When GCC calls collect2,
1243 it does not know whether it is calling collect2 or ld.
1244 So collect2 cannot meaningfully understand any options
1245 except those ld understands.
1246 If you propose to make GCC pass some other option,
1247 just imagine what will happen if ld is really ld!!! */
1249 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1250 /* After the first file, put in the c++ rt0. */
1252 #ifdef COLLECT_EXPORT_LIST
1253 is_static
= static_obj
;
1256 while ((arg
= *++argv
) != (char *) 0)
1258 *ld1
++ = *ld2
++ = arg
;
1265 if (!strcmp (arg
, "-debug"))
1267 /* Already parsed. */
1271 if (!strcmp (arg
, "-dynamic-linker") && argv
[1])
1274 *ld1
++ = *ld2
++ = *argv
;
1279 if (startswith (arg
, "-flto"))
1282 /* Do not pass LTO flag to the linker. */
1286 error ("LTO support has not been enabled in this "
1290 else if (!use_collect_ld
1291 && startswith (arg
, "-fuse-ld="))
1293 /* Do not pass -fuse-ld={bfd|gold|lld|mold} to the linker. */
1297 else if (startswith (arg
, "-fno-lto"))
1299 /* Do not pass -fno-lto to the linker. */
1303 #ifdef TARGET_AIX_VERSION
1306 /* File containing a list of input files to process. */
1309 char buf
[MAXPATHLEN
+ 2];
1310 /* Number of additionnal object files. */
1312 /* Maximum of additionnal object files before vector
1315 const char *list_filename
= arg
+ 2;
1317 /* Accept -fFILENAME and -f FILENAME. */
1318 if (*list_filename
== '\0' && argv
[1])
1321 list_filename
= *argv
;
1322 *ld1
++ = *ld2
++ = *argv
;
1325 stream
= fopen (list_filename
, "r");
1327 fatal_error (input_location
, "cannot open %s: %m",
1330 while (fgets (buf
, sizeof buf
, stream
) != NULL
)
1332 /* Remove end of line. */
1333 int len
= strlen (buf
);
1334 if (len
>= 1 && buf
[len
- 1] =='\n')
1335 buf
[len
- 1] = '\0';
1337 /* Put on object vector.
1338 Note: we only expanse vector here, so we must keep
1339 extra space for remaining arguments. */
1340 if (add_nbr
>= add_max
)
1343 object
- CONST_CAST2 (const char **, char **,
1345 add_max
= (add_max
== 0) ? 16 : add_max
* 2;
1346 object_lst
= XRESIZEVEC (char *, object_lst
,
1347 object_nbr
+ add_max
);
1348 object
= CONST_CAST2 (const char **, char **,
1350 object_nbr
+= add_max
;
1352 *object
++ = xstrdup (buf
);
1360 #ifdef COLLECT_EXPORT_LIST
1362 if (!strcmp (arg
, "-bstatic"))
1366 else if (!strcmp (arg
, "-bdynamic") || !strcmp (arg
, "-bshared"))
1375 /* place o_file BEFORE this argument! */
1381 #ifdef COLLECT_EXPORT_LIST
1383 /* Resolving full library name. */
1384 const char *s
= resolve_lib_name (arg
+2);
1386 /* Saving a full library name. */
1387 add_to_list (&libs
, s
);
1389 add_to_list (&static_libs
, s
);
1394 #ifdef COLLECT_EXPORT_LIST
1395 /* Saving directories where to search for libraries. */
1397 add_prefix (&cmdline_lib_dirs
, arg
+2);
1403 output_file
= &arg
[2];
1405 output_file
= *ld1
++ = *ld2
++ = *++argv
;
1414 if (arg
[2] == '\0' && do_collecting
)
1416 /* We must strip after the nm run, otherwise C++ linking
1417 will not work. Thus we strip in the second ld run, or
1418 else with strip if there is no second ld run. */
1430 if (strcmp (arg
, "--no-demangle") == 0)
1432 #ifndef HAVE_LD_DEMANGLE
1438 else if (startswith (arg
, "--demangle"))
1440 #ifndef HAVE_LD_DEMANGLE
1444 enum demangling_styles style
1445 = cplus_demangle_name_to_style (arg
+11);
1446 if (style
== unknown_demangling
)
1447 error ("unknown demangling style %qs", arg
+11);
1449 current_demangling_style
= style
;
1455 else if (startswith (arg
, "--sysroot="))
1456 target_system_root
= arg
+ 10;
1457 else if (strcmp (arg
, "--version") == 0)
1459 else if (strcmp (arg
, "--help") == 0)
1464 else if ((p
= strrchr (arg
, '.')) != (char *) 0
1465 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0
1466 || strcmp (p
, ".so") == 0 || strcmp (p
, ".lo") == 0
1467 || strcmp (p
, ".obj") == 0))
1476 /* place o_file BEFORE this argument! */
1482 if (p
[1] == 'o' || p
[1] == 'l')
1484 #ifdef COLLECT_EXPORT_LIST
1485 /* libraries can be specified directly, i.e. without -l flag. */
1488 /* Saving a full library name. */
1489 add_to_list (&libs
, arg
);
1491 add_to_list (&static_libs
, arg
);
1497 #ifdef COLLECT_EXPORT_LIST
1498 /* This is added only for debugging purposes. */
1501 fprintf (stderr
, "List of libraries:\n");
1502 dump_list (stderr
, "\t", libs
.first
);
1503 fprintf (stderr
, "List of statically linked libraries:\n");
1504 dump_list (stderr
, "\t", static_libs
.first
);
1507 /* The AIX linker will discard static constructors in object files if
1508 nothing else in the file is referenced, so look at them first. Unless
1509 we are building a shared object, ignore the eh frame tables, as we
1510 would otherwise reference them all, hence drag all the corresponding
1511 objects even if nothing else is referenced. */
1513 const char **export_object_lst
1514 = CONST_CAST2 (const char **, char **, object_lst
);
1516 struct id
*list
= libs
.first
;
1518 /* Compute the filter to use from the current one, do scan, then adjust
1519 the "current" filter to remove what we just included here. This will
1520 control whether we need a first pass link later on or not, and what
1521 will remain to be scanned there. */
1523 scanfilter this_filter
= ld1_filter
;
1526 this_filter
&= ~SCAN_DWEH
;
1529 /* Scan object files. */
1530 while (export_object_lst
< object
)
1531 scan_prog_file (*export_object_lst
++, PASS_OBJ
, this_filter
);
1533 /* Scan libraries. */
1534 for (; list
; list
= list
->next
)
1535 scan_prog_file (list
->name
, PASS_FIRST
, this_filter
);
1537 ld1_filter
= ld1_filter
& ~this_filter
;
1542 char *buf
= concat ("-bE:", export_file
, NULL
);
1547 exportf
= fopen (export_file
, "w");
1548 if (exportf
== (FILE *) 0)
1549 fatal_error (input_location
, "fopen %s: %m", export_file
);
1550 write_aix_file (exportf
, exports
.first
);
1551 if (fclose (exportf
))
1552 fatal_error (input_location
, "fclose %s: %m", export_file
);
1557 *c_ptr
= *ld1
= *object
= (char *) 0;
1560 notice ("collect2 version %s\n", version_string
);
1564 printf ("Usage: collect2 [options]\n");
1565 printf (" Wrap linker and generate constructor code if needed.\n");
1566 printf (" Options:\n");
1567 printf (" -debug Enable debug output\n");
1568 printf (" --help Display this information\n");
1569 printf (" -v, --version Display this program's version number\n");
1571 printf ("Overview: https://gcc.gnu.org/onlinedocs/gccint/Collect2.html\n");
1572 printf ("Report bugs: %s\n", bug_report_url
);
1579 fprintf (stderr
, "ld_file_name = %s\n",
1580 (ld_file_name
? ld_file_name
: "not found"));
1581 fprintf (stderr
, "c_file_name = %s\n",
1582 (c_file_name
? c_file_name
: "not found"));
1583 fprintf (stderr
, "nm_file_name = %s\n",
1584 (nm_file_name
? nm_file_name
: "not found"));
1586 fprintf (stderr
, "ldd_file_name = %s\n",
1587 (ldd_file_name
? ldd_file_name
: "not found"));
1589 fprintf (stderr
, "strip_file_name = %s\n",
1590 (strip_file_name
? strip_file_name
: "not found"));
1591 fprintf (stderr
, "c_file = %s\n",
1592 (c_file
? c_file
: "not found"));
1593 fprintf (stderr
, "o_file = %s\n",
1594 (o_file
? o_file
: "not found"));
1596 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1598 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1600 ptr
= getenv ("COLLECT_GCC");
1602 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1604 ptr
= getenv ("COMPILER_PATH");
1606 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1608 ptr
= getenv (LIBRARY_PATH_ENV
);
1610 fprintf (stderr
, "%-20s= %s\n", LIBRARY_PATH_ENV
, ptr
);
1612 fprintf (stderr
, "\n");
1615 /* Load the program, searching all libraries and attempting to provide
1616 undefined symbols from repository information.
1618 If -r or they will be run via some other method, do not build the
1619 constructor or destructor list, just return now. */
1622 = rflag
|| (! DO_COLLECT_EXPORT_LIST
&& ! do_collecting
);
1624 /* Perform the first pass link now, if we're about to exit or if we need
1625 to scan for things we haven't collected yet before pursuing further.
1627 On AIX, the latter typically includes nothing for shared objects or
1628 frame tables for an executable, out of what the required early scan on
1629 objects and libraries has performed above. In the !shared_obj case, we
1630 expect the relevant tables to be dragged together with their associated
1631 functions from precise cross reference insertions by the compiler. */
1633 if (early_exit
|| ld1_filter
!= SCAN_NOTHING
)
1634 do_link (ld1_argv
, "ld1_args");
1638 #ifdef COLLECT_EXPORT_LIST
1639 /* Make sure we delete the export file we may have created. */
1640 if (export_file
!= 0 && export_file
[0])
1641 maybe_unlink (export_file
);
1643 if (lto_mode
!= LTO_MODE_NONE
)
1644 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1646 post_ld_pass (/*temp_file*/false);
1652 /* Unless we have done it all already, examine the namelist and search for
1653 static constructors and destructors to call. Write the constructor and
1654 destructor tables to a .s file and reload. */
1656 if (ld1_filter
!= SCAN_NOTHING
)
1657 scan_prog_file (output_file
, PASS_FIRST
, ld1_filter
);
1659 #ifdef SCAN_LIBRARIES
1660 scan_libraries (output_file
);
1665 notice_translated (ngettext ("%d constructor found\n",
1666 "%d constructors found\n",
1667 constructors
.number
),
1668 constructors
.number
);
1669 notice_translated (ngettext ("%d destructor found\n",
1670 "%d destructors found\n",
1671 destructors
.number
),
1672 destructors
.number
);
1673 notice_translated (ngettext ("%d frame table found\n",
1674 "%d frame tables found\n",
1675 frame_tables
.number
),
1676 frame_tables
.number
);
1679 /* If the scan exposed nothing of special interest, there's no need to
1680 generate the glue code and relink so return now. */
1682 if (constructors
.number
== 0 && destructors
.number
== 0
1683 && frame_tables
.number
== 0
1684 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1685 /* If we will be running these functions ourselves, we want to emit
1686 stubs into the shared library so that we do not have to relink
1687 dependent programs when we add static objects. */
1692 /* Do link without additional code generation now if we didn't
1693 do it earlier for scanning purposes. */
1694 if (ld1_filter
== SCAN_NOTHING
)
1695 do_link (ld1_argv
, "ld1_args");
1698 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1700 /* Strip now if it was requested on the command line. */
1703 char **real_strip_argv
= XCNEWVEC (char *, 3);
1704 const char ** strip_argv
= CONST_CAST2 (const char **, char **,
1707 strip_argv
[0] = strip_file_name
;
1708 strip_argv
[1] = output_file
;
1709 strip_argv
[2] = (char *) 0;
1710 fork_execute ("strip", real_strip_argv
, false, NULL
);
1713 #ifdef COLLECT_EXPORT_LIST
1714 maybe_unlink (export_file
);
1716 post_ld_pass (/*temp_file*/false);
1720 /* Sort ctor and dtor lists by priority. */
1721 sort_ids (&constructors
);
1722 sort_ids (&destructors
);
1724 maybe_unlink (output_file
);
1725 outf
= fopen (c_file
, "w");
1726 if (outf
== (FILE *) 0)
1727 fatal_error (input_location
, "fopen %s: %m", c_file
);
1729 write_c_file (outf
, c_file
);
1732 fatal_error (input_location
, "fclose %s: %m", c_file
);
1734 /* Tell the linker that we have initializer and finalizer functions. */
1735 #ifdef LD_INIT_SWITCH
1736 #ifdef COLLECT_EXPORT_LIST
1737 *ld2
++ = concat (LD_INIT_SWITCH
, ":", initname
, ":", fininame
, NULL
);
1739 *ld2
++ = LD_INIT_SWITCH
;
1741 *ld2
++ = LD_FINI_SWITCH
;
1746 #ifdef COLLECT_EXPORT_LIST
1749 /* If we did not add export flag to link arguments before, add it to
1750 second link phase now. No new exports should have been added. */
1751 if (! exports
.first
)
1752 *ld2
++ = concat ("-bE:", export_file
, NULL
);
1754 #ifdef TARGET_AIX_VERSION
1755 add_to_list (&exports
, aix_shared_initname
);
1756 add_to_list (&exports
, aix_shared_fininame
);
1759 #ifndef LD_INIT_SWITCH
1760 add_to_list (&exports
, initname
);
1761 add_to_list (&exports
, fininame
);
1762 add_to_list (&exports
, "_GLOBAL__DI");
1763 add_to_list (&exports
, "_GLOBAL__DD");
1765 exportf
= fopen (export_file
, "w");
1766 if (exportf
== (FILE *) 0)
1767 fatal_error (input_location
, "fopen %s: %m", export_file
);
1768 write_aix_file (exportf
, exports
.first
);
1769 if (fclose (exportf
))
1770 fatal_error (input_location
, "fclose %s: %m", export_file
);
1774 /* End of arguments to second link phase. */
1779 fprintf (stderr
, "\n========== output_file = %s, c_file = %s\n",
1780 output_file
, c_file
);
1781 write_c_file (stderr
, "stderr");
1782 fprintf (stderr
, "========== end of c_file\n\n");
1783 #ifdef COLLECT_EXPORT_LIST
1784 fprintf (stderr
, "\n========== export_file = %s\n", export_file
);
1785 write_aix_file (stderr
, exports
.first
);
1786 fprintf (stderr
, "========== end of export_file\n\n");
1790 /* Assemble the constructor and destructor tables.
1791 Link the tables in with the rest of the program. */
1793 fork_execute ("gcc", c_argv
, at_file_supplied
, "gcc_args");
1794 #ifdef COLLECT_EXPORT_LIST
1795 /* On AIX we must call link because of possible templates resolution. */
1796 do_link (ld2_argv
, "ld2_args");
1799 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, false);
1801 /* Otherwise, simply call ld because link is already done. */
1803 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, true);
1806 fork_execute ("ld", ld2_argv
, HAVE_GNU_LD
&& at_file_supplied
, "ld_args");
1807 post_ld_pass (/*temp_file*/false);
1810 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1811 constructors/destructors in shared libraries. */
1812 scan_prog_file (output_file
, PASS_SECOND
, SCAN_ALL
);
1819 /* Unlink FILE unless we are debugging or this is the output_file
1820 and we may not unlink it. */
1823 maybe_unlink (const char *file
)
1825 if (save_temps
&& file_exists (file
))
1828 notice ("[Leaving %s]\n", file
);
1832 if (file
== output_file
&& !may_unlink_output_file
)
1835 unlink_if_ordinary (file
);
1838 /* Call maybe_unlink on the NULL-terminated list, FILE_LIST. */
1841 maybe_unlink_list (char **file_list
)
1843 char **tmp
= file_list
;
1846 maybe_unlink (*(tmp
++));
1850 static long sequence_number
= 0;
1852 /* Add a name to a linked list. */
1855 add_to_list (struct head
*head_ptr
, const char *name
)
1858 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1860 strcpy (newid
->name
, name
);
1862 if (head_ptr
->first
)
1863 head_ptr
->last
->next
= newid
;
1865 head_ptr
->first
= newid
;
1867 /* Check for duplicate symbols. */
1868 for (p
= head_ptr
->first
;
1869 strcmp (name
, p
->name
) != 0;
1874 head_ptr
->last
->next
= 0;
1879 newid
->sequence
= ++sequence_number
;
1880 head_ptr
->last
= newid
;
1884 /* Grab the init priority number from an init function name that
1885 looks like "_GLOBAL_.I.12345.foo". */
1888 extract_init_priority (const char *name
)
1892 #ifdef TARGET_AIX_VERSION
1893 /* Run dependent module initializers before any constructors in this
1895 switch (is_ctor_dtor (name
))
1905 while (name
[pos
] == '_')
1907 pos
+= 10; /* strlen ("GLOBAL__X_") */
1909 /* Extract init_p number from ctor/dtor name. */
1910 pri
= atoi (name
+ pos
);
1911 return pri
? pri
: DEFAULT_INIT_PRIORITY
;
1914 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1915 ctors will be run from right to left, dtors from left to right. */
1918 sort_ids (struct head
*head_ptr
)
1920 /* id holds the current element to insert. id_next holds the next
1921 element to insert. id_ptr iterates through the already sorted elements
1922 looking for the place to insert id. */
1923 struct id
*id
, *id_next
, **id_ptr
;
1925 id
= head_ptr
->first
;
1927 /* We don't have any sorted elements yet. */
1928 head_ptr
->first
= NULL
;
1930 for (; id
; id
= id_next
)
1933 id
->sequence
= extract_init_priority (id
->name
);
1935 for (id_ptr
= &(head_ptr
->first
); ; id_ptr
= &((*id_ptr
)->next
))
1937 /* If the sequence numbers are the same, we put the id from the
1938 file later on the command line later in the list. */
1939 || id
->sequence
> (*id_ptr
)->sequence
1940 /* Hack: do lexical compare, too.
1941 || (id->sequence == (*id_ptr)->sequence
1942 && strcmp (id->name, (*id_ptr)->name) > 0) */
1951 /* Now set the sequence numbers properly so write_c_file works. */
1952 for (id
= head_ptr
->first
; id
; id
= id
->next
)
1953 id
->sequence
= ++sequence_number
;
1956 /* Write: `prefix', the names on list LIST, `suffix'. */
1959 write_list (FILE *stream
, const char *prefix
, struct id
*list
)
1963 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
1968 #ifdef COLLECT_EXPORT_LIST
1969 /* This function is really used only on AIX, but may be useful. */
1971 is_in_list (const char *prefix
, struct id
*list
)
1975 if (!strcmp (prefix
, list
->name
)) return 1;
1980 #endif /* COLLECT_EXPORT_LIST */
1982 /* Added for debugging purpose. */
1983 #ifdef COLLECT_EXPORT_LIST
1985 dump_list (FILE *stream
, const char *prefix
, struct id
*list
)
1989 fprintf (stream
, "%s%s,\n", prefix
, list
->name
);
1997 dump_prefix_list (FILE *stream
, const char *prefix
, struct prefix_list
*list
)
2001 fprintf (stream
, "%s%s,\n", prefix
, list
->prefix
);
2008 write_list_with_asm (FILE *stream
, const char *prefix
, struct id
*list
)
2012 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
2013 prefix
, list
->sequence
, list
->name
);
2018 /* Write out the constructor and destructor tables statically (for a shared
2019 object), along with the functions to execute them. */
2022 write_c_file_stat (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2026 int frames
= (frame_tables
.number
> 0);
2028 /* Figure out name of output_file, stripping off .so version. */
2029 q
= p
= lbasename (output_file
);
2041 if (filename_ncmp (q
, SHLIB_SUFFIX
, strlen (SHLIB_SUFFIX
)) == 0)
2043 q
+= strlen (SHLIB_SUFFIX
);
2050 /* q points to null at end of the string (or . of the .so version) */
2051 prefix
= XNEWVEC (char, q
- p
+ 1);
2052 strncpy (prefix
, p
, q
- p
);
2054 for (r
= prefix
; *r
; r
++)
2055 if (!ISALNUM ((unsigned char)*r
))
2058 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
2059 output_file
, prefix
);
2061 initname
= concat ("_GLOBAL__FI_", prefix
, NULL
);
2062 fininame
= concat ("_GLOBAL__FD_", prefix
, NULL
);
2063 #ifdef TARGET_AIX_VERSION
2064 aix_shared_initname
= concat ("_GLOBAL__AIXI_", prefix
, NULL
);
2065 aix_shared_fininame
= concat ("_GLOBAL__AIXD_", prefix
, NULL
);
2070 /* Write the tables as C code. */
2072 /* This count variable is used to prevent multiple calls to the
2073 constructors/destructors.
2074 This guard against multiple calls is important on AIX as the initfini
2075 functions are deliberately invoked multiple times as part of the
2076 mechanisms GCC uses to order constructors across different dependent
2077 shared libraries (see config/rs6000/aix.h).
2079 fprintf (stream
, "static int count;\n");
2080 fprintf (stream
, "typedef void entry_pt();\n");
2081 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2085 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2087 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2088 write_list (stream
, "\t\t&", frame_tables
.first
);
2089 fprintf (stream
, "\t0\n};\n");
2091 /* This must match what's in frame.h. */
2092 fprintf (stream
, "struct object {\n");
2093 fprintf (stream
, " void *pc_begin;\n");
2094 fprintf (stream
, " void *pc_end;\n");
2095 fprintf (stream
, " void *fde_begin;\n");
2096 fprintf (stream
, " void *fde_array;\n");
2097 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2098 fprintf (stream
, " struct object *next;\n");
2099 fprintf (stream
, "};\n");
2101 fprintf (stream
, "extern void __register_frame_info_table_bases (void *, struct object *, void *tbase, void *dbase);\n");
2102 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2103 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2104 #ifdef TARGET_AIX_VERSION
2105 fprintf (stream
, "extern void *__gcc_unwind_dbase;\n");
2108 fprintf (stream
, "static void reg_frame () {\n");
2109 fprintf (stream
, "\tstatic struct object ob;\n");
2110 #ifdef TARGET_AIX_VERSION
2111 /* Use __gcc_unwind_dbase as the base address for data on AIX.
2112 This might not be the start of the segment, signed offsets assumed.
2114 fprintf (stream
, "\t__register_frame_info_table_bases (frame_table, &ob, (void *)0, &__gcc_unwind_dbase);\n");
2116 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2118 fprintf (stream
, "\t}\n");
2120 fprintf (stream
, "static void dereg_frame () {\n");
2121 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2122 fprintf (stream
, "\t}\n");
2125 #ifdef COLLECT_EXPORT_LIST
2126 /* Set visibility of initializers to default. */
2127 if (visibility_flag
)
2128 fprintf (stream
, "#pragma GCC visibility push(default)\n");
2130 fprintf (stream
, "void %s() {\n", initname
);
2131 if (constructors
.number
> 0 || frames
)
2133 fprintf (stream
, "\tstatic entry_pt *ctors[] = {\n");
2134 write_list (stream
, "\t\t", constructors
.first
);
2136 fprintf (stream
, "\treg_frame,\n");
2137 fprintf (stream
, "\t};\n");
2138 fprintf (stream
, "\tentry_pt **p;\n");
2139 fprintf (stream
, "\tif (count++ != 0) return;\n");
2140 fprintf (stream
, "\tp = ctors + %d;\n", constructors
.number
+ frames
);
2141 fprintf (stream
, "\twhile (p > ctors) (*--p)();\n");
2144 fprintf (stream
, "\t++count;\n");
2145 fprintf (stream
, "}\n");
2146 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2147 fprintf (stream
, "void %s() {\n", fininame
);
2148 if (destructors
.number
> 0 || frames
)
2150 fprintf (stream
, "\tstatic entry_pt *dtors[] = {\n");
2151 write_list (stream
, "\t\t", destructors
.first
);
2153 fprintf (stream
, "\tdereg_frame,\n");
2154 fprintf (stream
, "\t};\n");
2155 fprintf (stream
, "\tentry_pt **p;\n");
2156 fprintf (stream
, "\tif (--count != 0) return;\n");
2157 fprintf (stream
, "\tp = dtors;\n");
2158 fprintf (stream
, "\twhile (p < dtors + %d) (*p++)();\n",
2159 destructors
.number
+ frames
);
2161 fprintf (stream
, "}\n");
2162 #ifdef COLLECT_EXPORT_LIST
2163 if (visibility_flag
)
2164 fprintf (stream
, "#pragma GCC visibility pop\n");
2169 #ifdef COLLECT_EXPORT_LIST
2170 /* Set visibility of initializers to default. */
2171 if (visibility_flag
)
2172 fprintf (stream
, "#pragma GCC visibility push(default)\n");
2174 COLLECT_SHARED_INIT_FUNC (stream
, initname
);
2175 COLLECT_SHARED_FINI_FUNC (stream
, fininame
);
2176 #ifdef COLLECT_EXPORT_LIST
2177 if (visibility_flag
)
2178 fprintf (stream
, "#pragma GCC visibility pop\n");
2183 /* Write the constructor/destructor tables. */
2185 #ifndef LD_INIT_SWITCH
2187 write_c_file_glob (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2189 /* Write the tables as C code. */
2191 int frames
= (frame_tables
.number
> 0);
2193 fprintf (stream
, "typedef void entry_pt();\n\n");
2195 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2199 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2201 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2202 write_list (stream
, "\t\t&", frame_tables
.first
);
2203 fprintf (stream
, "\t0\n};\n");
2205 /* This must match what's in frame.h. */
2206 fprintf (stream
, "struct object {\n");
2207 fprintf (stream
, " void *pc_begin;\n");
2208 fprintf (stream
, " void *pc_end;\n");
2209 fprintf (stream
, " void *fde_begin;\n");
2210 fprintf (stream
, " void *fde_array;\n");
2211 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2212 fprintf (stream
, " struct object *next;\n");
2213 fprintf (stream
, "};\n");
2215 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2216 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2218 fprintf (stream
, "static void reg_frame () {\n");
2219 fprintf (stream
, "\tstatic struct object ob;\n");
2220 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2221 fprintf (stream
, "\t}\n");
2223 fprintf (stream
, "static void dereg_frame () {\n");
2224 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2225 fprintf (stream
, "\t}\n");
2228 fprintf (stream
, "\nentry_pt * __CTOR_LIST__[] = {\n");
2229 fprintf (stream
, "\t(entry_pt *) %d,\n", constructors
.number
+ frames
);
2230 write_list (stream
, "\t", constructors
.first
);
2232 fprintf (stream
, "\treg_frame,\n");
2233 fprintf (stream
, "\t0\n};\n\n");
2235 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2237 fprintf (stream
, "\nentry_pt * __DTOR_LIST__[] = {\n");
2238 fprintf (stream
, "\t(entry_pt *) %d,\n", destructors
.number
+ frames
);
2239 write_list (stream
, "\t", destructors
.first
);
2241 fprintf (stream
, "\tdereg_frame,\n");
2242 fprintf (stream
, "\t0\n};\n\n");
2244 fprintf (stream
, "extern entry_pt %s;\n", NAME__MAIN
);
2245 fprintf (stream
, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN
);
2247 #endif /* ! LD_INIT_SWITCH */
2250 write_c_file (FILE *stream
, const char *name
)
2252 #ifndef LD_INIT_SWITCH
2254 write_c_file_glob (stream
, name
);
2257 write_c_file_stat (stream
, name
);
2260 #ifdef COLLECT_EXPORT_LIST
2262 write_aix_file (FILE *stream
, struct id
*list
)
2264 for (; list
; list
= list
->next
)
2266 fputs (list
->name
, stream
);
2267 putc ('\n', stream
);
2272 #ifdef OBJECT_FORMAT_NONE
2274 /* Check to make sure the file is an LTO object file. */
2277 has_lto_section (void *data
, const char *name ATTRIBUTE_UNUSED
,
2278 off_t offset ATTRIBUTE_UNUSED
,
2279 off_t length ATTRIBUTE_UNUSED
)
2281 int *found
= (int *) data
;
2283 if (!startswith (name
, LTO_SECTION_NAME_PREFIX
)
2284 && !startswith (name
, OFFLOAD_SECTION_NAME_PREFIX
))
2289 /* Stop iteration. */
2294 is_lto_object_file (const char *prog_name
)
2300 int infd
= open (prog_name
, O_RDONLY
| O_BINARY
);
2305 simple_object_read
*inobj
= simple_object_start_read (infd
, inoff
,
2314 errmsg
= simple_object_find_sections (inobj
, has_lto_section
,
2315 (void *) &found
, &err
);
2316 simple_object_release_read (inobj
);
2318 if (! errmsg
&& found
)
2322 fatal_error (0, "%s: %s", errmsg
, xstrerror (err
));
2326 /* Generic version to scan the name list of the loaded program for
2327 the symbols g++ uses for static constructors and destructors. */
2330 scan_prog_file (const char *prog_name
, scanpass which_pass
,
2333 void (*int_handler
) (int);
2335 void (*quit_handler
) (int);
2337 char *real_nm_argv
[4];
2338 const char **nm_argv
= CONST_CAST2 (const char **, char**, real_nm_argv
);
2340 struct pex_obj
*pex
;
2346 if (which_pass
== PASS_SECOND
)
2349 /* LTO objects must be in a known format. This check prevents
2350 us from accepting an archive containing LTO objects, which
2351 gcc cannot currently handle. */
2352 if (which_pass
== PASS_LTOINFO
)
2354 if(is_lto_object_file (prog_name
)) {
2355 add_lto_object (<o_objects
, prog_name
);
2360 /* If we do not have an `nm', complain. */
2361 if (nm_file_name
== 0)
2362 fatal_error (input_location
, "cannot find %<nm%>");
2364 nm_argv
[argc
++] = nm_file_name
;
2365 if (NM_FLAGS
[0] != '\0')
2366 nm_argv
[argc
++] = NM_FLAGS
;
2368 nm_argv
[argc
++] = prog_name
;
2369 nm_argv
[argc
++] = (char *) 0;
2371 /* Trace if needed. */
2374 const char **p_argv
;
2377 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2378 fprintf (stderr
, " %s", str
);
2380 fprintf (stderr
, "\n");
2386 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2388 fatal_error (input_location
, "%<pex_init%> failed: %m");
2390 errmsg
= pex_run (pex
, 0, nm_file_name
, real_nm_argv
, NULL
, HOST_BIT_BUCKET
,
2397 fatal_error (input_location
, "%s: %m", _(errmsg
));
2400 fatal_error (input_location
, errmsg
);
2403 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2405 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2408 inf
= pex_read_output (pex
, 0);
2410 fatal_error (input_location
, "cannot open nm output: %m");
2413 fprintf (stderr
, "\nnm output with constructors/destructors.\n");
2415 /* Read each line of nm output. */
2416 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2422 fprintf (stderr
, "\t%s\n", buf
);
2424 /* If it contains a constructor or destructor name, add the name
2425 to the appropriate list unless this is a kind of symbol we're
2426 not supposed to even consider. */
2428 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n' && ch
!= '_'; p
++)
2429 if (ch
== ' ' && p
[1] == 'U' && p
[2] == ' ')
2436 /* Find the end of the symbol name.
2437 Do not include `|', because Encore nm can tack that on the end. */
2438 for (end
= p
; (ch2
= *end
) != '\0' && !ISSPACE (ch2
) && ch2
!= '|';
2445 switch (is_ctor_dtor (name
))
2448 if (! (filter
& SCAN_CTOR
))
2450 if (which_pass
!= PASS_LIB
)
2451 add_to_list (&constructors
, name
);
2455 if (! (filter
& SCAN_DTOR
))
2457 if (which_pass
!= PASS_LIB
)
2458 add_to_list (&destructors
, name
);
2462 if (! (filter
& SCAN_INIT
))
2464 if (which_pass
!= PASS_LIB
)
2465 fatal_error (input_location
, "init function found in object %s",
2467 #ifndef LD_INIT_SWITCH
2468 add_to_list (&constructors
, name
);
2473 if (! (filter
& SCAN_FINI
))
2475 if (which_pass
!= PASS_LIB
)
2476 fatal_error (input_location
, "fini function found in object %s",
2478 #ifndef LD_FINI_SWITCH
2479 add_to_list (&destructors
, name
);
2484 if (! (filter
& SCAN_DWEH
))
2486 if (which_pass
!= PASS_LIB
)
2487 add_to_list (&frame_tables
, name
);
2490 default: /* not a constructor or destructor */
2496 fprintf (stderr
, "\n");
2498 do_wait (nm_file_name
, pex
);
2500 signal (SIGINT
, int_handler
);
2502 signal (SIGQUIT
, quit_handler
);
2508 /* Use the List Dynamic Dependencies program to find shared libraries that
2509 the output file depends upon and their initialization/finalization
2510 routines, if any. */
2513 scan_libraries (const char *prog_name
)
2515 static struct head libraries
; /* list of shared libraries found */
2517 void (*int_handler
) (int);
2519 void (*quit_handler
) (int);
2521 char *real_ldd_argv
[4];
2522 const char **ldd_argv
= CONST_CAST2 (const char **, char **, real_ldd_argv
);
2524 struct pex_obj
*pex
;
2530 /* If we do not have an `ldd', complain. */
2531 if (ldd_file_name
== 0)
2533 error ("cannot find %<ldd%>");
2537 ldd_argv
[argc
++] = ldd_file_name
;
2538 ldd_argv
[argc
++] = prog_name
;
2539 ldd_argv
[argc
++] = (char *) 0;
2541 /* Trace if needed. */
2544 const char **p_argv
;
2547 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2548 fprintf (stderr
, " %s", str
);
2550 fprintf (stderr
, "\n");
2556 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2558 fatal_error (input_location
, "%<pex_init%> failed: %m");
2560 errmsg
= pex_run (pex
, 0, ldd_file_name
, real_ldd_argv
, NULL
, NULL
, &err
);
2566 fatal_error (input_location
, "%s: %m", _(errmsg
));
2569 fatal_error (input_location
, errmsg
);
2572 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2574 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2577 inf
= pex_read_output (pex
, 0);
2579 fatal_error (input_location
, "cannot open ldd output: %m");
2582 notice ("\nldd output with constructors/destructors.\n");
2584 /* Read each line of ldd output. */
2585 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2588 char *name
, *end
, *p
= buf
;
2590 /* Extract names of libraries and add to list. */
2591 PARSE_LDD_OUTPUT (p
);
2596 if (startswith (name
, "not found"))
2597 fatal_error (input_location
, "dynamic dependency %s not found", buf
);
2599 /* Find the end of the symbol name. */
2601 (ch2
= *end
) != '\0' && ch2
!= '\n' && !ISSPACE (ch2
) && ch2
!= '|';
2606 if (access (name
, R_OK
) == 0)
2607 add_to_list (&libraries
, name
);
2609 fatal_error (input_location
, "unable to open dynamic dependency "
2613 fprintf (stderr
, "\t%s\n", buf
);
2616 fprintf (stderr
, "\n");
2618 do_wait (ldd_file_name
, pex
);
2620 signal (SIGINT
, int_handler
);
2622 signal (SIGQUIT
, quit_handler
);
2625 /* Now iterate through the library list adding their symbols to
2627 for (list
= libraries
.first
; list
; list
= list
->next
)
2628 scan_prog_file (list
->name
, PASS_LIB
, SCAN_ALL
);
2631 #endif /* LDD_SUFFIX */
2633 #endif /* OBJECT_FORMAT_NONE */
2637 * COFF specific stuff.
2640 #ifdef OBJECT_FORMAT_COFF
2642 # define GCC_SYMBOLS(X) (HEADER (ldptr).f_nsyms)
2643 # define GCC_SYMENT SYMENT
2644 # if defined (C_WEAKEXT)
2645 # define GCC_OK_SYMBOL(X) \
2646 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2647 ((X).n_scnum > N_UNDEF) && \
2649 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2650 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2651 # define GCC_UNDEF_SYMBOL(X) \
2652 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2653 ((X).n_scnum == N_UNDEF))
2655 # define GCC_OK_SYMBOL(X) \
2656 (((X).n_sclass == C_EXT) && \
2657 ((X).n_scnum > N_UNDEF) && \
2659 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2660 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2661 # define GCC_UNDEF_SYMBOL(X) \
2662 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2664 # define GCC_SYMINC(X) ((X).n_numaux+1)
2665 # define GCC_SYMZERO(X) 0
2667 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2668 #if TARGET_AIX_VERSION >= 51
2669 # define GCC_CHECK_HDR(X) \
2670 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2671 || (HEADER (X).f_magic == 0767 && aix64_flag)) \
2672 && !(HEADER (X).f_flags & F_LOADONLY))
2674 # define GCC_CHECK_HDR(X) \
2675 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2676 || (HEADER (X).f_magic == 0757 && aix64_flag)) \
2677 && !(HEADER (X).f_flags & F_LOADONLY))
2680 #ifdef COLLECT_EXPORT_LIST
2681 /* Array of standard AIX libraries which should not
2682 be scanned for ctors/dtors. */
2683 static const char *const aix_std_libs
[] = {
2691 "/usr/lib/libc_r.a",
2692 "/usr/lib/libm_r.a",
2693 "/usr/lib/threads/libc.a",
2694 "/usr/ccs/lib/libc.a",
2695 "/usr/ccs/lib/libm.a",
2696 "/usr/ccs/lib/libc_r.a",
2697 "/usr/ccs/lib/libm_r.a",
2701 /* This function checks the filename and returns 1
2702 if this name matches the location of a standard AIX library. */
2703 static int ignore_library (const char *);
2705 ignore_library (const char *name
)
2707 const char *const *p
;
2710 if (target_system_root
[0] != '\0')
2712 length
= strlen (target_system_root
);
2713 if (strncmp (name
, target_system_root
, length
) != 0)
2717 for (p
= &aix_std_libs
[0]; *p
!= NULL
; ++p
)
2718 if (strcmp (name
, *p
) == 0)
2722 #endif /* COLLECT_EXPORT_LIST */
2724 #if defined (HAVE_DECL_LDGETNAME) && !HAVE_DECL_LDGETNAME
2725 extern char *ldgetname (LDFILE
*, GCC_SYMENT
*);
2728 /* COFF version to scan the name list of the loaded program for
2729 the symbols g++ uses for static constructors and destructors. */
2732 scan_prog_file (const char *prog_name
, scanpass which_pass
,
2735 LDFILE
*ldptr
= NULL
;
2736 int sym_index
, sym_count
;
2739 if (which_pass
!= PASS_FIRST
&& which_pass
!= PASS_OBJ
)
2742 #ifdef COLLECT_EXPORT_LIST
2743 /* We do not need scanning for some standard C libraries. */
2744 if (which_pass
== PASS_FIRST
&& ignore_library (prog_name
))
2747 /* On AIX we have a loop, because there is not much difference
2748 between an object and an archive. This trick allows us to
2749 eliminate scan_libraries() function. */
2753 /* Some platforms (e.g. OSF4) declare ldopen as taking a
2754 non-const char * filename parameter, even though it will not
2755 modify that string. So we must cast away const-ness here,
2756 using CONST_CAST to prevent complaints from -Wcast-qual. */
2757 if ((ldptr
= ldopen (CONST_CAST (char *, prog_name
), ldptr
)) != NULL
)
2759 if (! MY_ISCOFF (HEADER (ldptr
).f_magic
))
2761 warning (0, "%s: not a COFF file", prog_name
);
2765 if (GCC_CHECK_HDR (ldptr
))
2767 sym_count
= GCC_SYMBOLS (ldptr
);
2768 sym_index
= GCC_SYMZERO (ldptr
);
2770 #ifdef COLLECT_EXPORT_LIST
2771 /* Is current archive member a shared object? */
2772 is_shared
= HEADER (ldptr
).f_flags
& F_SHROBJ
;
2775 while (sym_index
< sym_count
)
2779 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2781 sym_index
+= GCC_SYMINC (symbol
);
2783 if (GCC_OK_SYMBOL (symbol
))
2787 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2788 continue; /* Should never happen. */
2790 #ifdef XCOFF_DEBUGGING_INFO
2791 /* All AIX function names have a duplicate entry
2792 beginning with a dot. */
2797 switch (is_ctor_dtor (name
))
2799 #if TARGET_AIX_VERSION
2800 /* Add AIX shared library initalisers/finalisers
2801 to the constructors/destructors list of the
2804 if (! (filter
& SCAN_CTOR
))
2806 if (is_shared
&& !aixlazy_flag
2807 #ifdef COLLECT_EXPORT_LIST
2809 && ! is_in_list (prog_name
, static_libs
.first
)
2812 add_to_list (&constructors
, name
);
2816 if (! (filter
& SCAN_DTOR
))
2818 if (is_shared
&& !aixlazy_flag
)
2819 add_to_list (&destructors
, name
);
2824 if (! (filter
& SCAN_CTOR
))
2827 add_to_list (&constructors
, name
);
2828 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2829 if (which_pass
== PASS_OBJ
)
2830 add_to_list (&exports
, name
);
2835 if (! (filter
& SCAN_DTOR
))
2838 add_to_list (&destructors
, name
);
2839 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2840 if (which_pass
== PASS_OBJ
)
2841 add_to_list (&exports
, name
);
2845 #ifdef COLLECT_EXPORT_LIST
2847 if (! (filter
& SCAN_INIT
))
2849 #ifndef LD_INIT_SWITCH
2851 add_to_list (&constructors
, name
);
2856 if (! (filter
& SCAN_FINI
))
2858 #ifndef LD_INIT_SWITCH
2860 add_to_list (&destructors
, name
);
2866 if (! (filter
& SCAN_DWEH
))
2869 add_to_list (&frame_tables
, name
);
2870 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2871 if (which_pass
== PASS_OBJ
)
2872 add_to_list (&exports
, name
);
2876 default: /* not a constructor or destructor */
2877 #ifdef COLLECT_EXPORT_LIST
2878 /* Explicitly export all global symbols when
2879 building a shared object on AIX, but do not
2880 re-export symbols from another shared object
2881 and do not export symbols if the user
2882 provides an explicit export list. */
2883 if (shared_obj
&& !is_shared
2884 && which_pass
== PASS_OBJ
&& !export_flag
)
2886 /* Do not auto-export __dso_handle or
2887 __gcc_unwind_dbase. They are required
2888 to be local to each module. */
2889 if (strcmp(name
, "__dso_handle") != 0
2890 && strcmp(name
, "__gcc_unwind_dbase") != 0)
2892 add_to_list (&exports
, name
);
2900 fprintf (stderr
, "\tsec=%d class=%d type=%s%o %s\n",
2901 symbol
.n_scnum
, symbol
.n_sclass
,
2902 (symbol
.n_type
? "0" : ""), symbol
.n_type
,
2907 #ifdef COLLECT_EXPORT_LIST
2910 /* If archive contains both 32-bit and 64-bit objects,
2911 we want to skip objects in other mode so mismatch normal. */
2913 fprintf (stderr
, "%s : magic=%o aix64=%d mismatch\n",
2914 prog_name
, HEADER (ldptr
).f_magic
, aix64_flag
);
2920 fatal_error (input_location
, "%s: cannot open as COFF file",
2923 #ifdef COLLECT_EXPORT_LIST
2924 /* On AIX loop continues while there are more members in archive. */
2926 while (ldclose (ldptr
) == FAILURE
);
2928 /* Otherwise we simply close ldptr. */
2929 (void) ldclose (ldptr
);
2932 #endif /* OBJECT_FORMAT_COFF */
2934 #ifdef COLLECT_EXPORT_LIST
2935 /* Given a library name without "lib" prefix, this function
2936 returns a full library name including a path. */
2938 resolve_lib_name (const char *name
)
2942 /* Library extensions for AIX dynamic linking. */
2943 const char * const libexts
[2] = {"a", "so"};
2945 for (i
= 0; libpaths
[i
]; i
++)
2946 if (libpaths
[i
]->max_len
> l
)
2947 l
= libpaths
[i
]->max_len
;
2949 lib_buf
= XNEWVEC (char, l
+ strlen (name
) + 10);
2951 for (i
= 0; libpaths
[i
]; i
++)
2953 struct prefix_list
*list
= libpaths
[i
]->plist
;
2954 for (; list
; list
= list
->next
)
2956 /* The following lines are needed because path_prefix list
2957 may contain directories both with trailing DIR_SEPARATOR and
2960 if (!IS_DIR_SEPARATOR (list
->prefix
[strlen (list
->prefix
)-1]))
2962 for (j
= 0; j
< 2; j
++)
2964 sprintf (lib_buf
, "%s%slib%s.%s",
2965 list
->prefix
, p
, name
,
2966 libexts
[(j
+ aixrtl_flag
) % 2]);
2967 if (debug
) fprintf (stderr
, "searching for: %s\n", lib_buf
);
2968 if (file_exists (lib_buf
))
2970 if (debug
) fprintf (stderr
, "found: %s\n", lib_buf
);
2977 fprintf (stderr
, "not found\n");
2979 fatal_error (input_location
, "library lib%s not found", name
);
2982 #endif /* COLLECT_EXPORT_LIST */
2984 #ifdef COLLECT_RUN_DSYMUTIL
2985 static int flag_dsym
= false;
2986 static int flag_idsym
= false;
2989 process_args (int *argcp
, char **argv
) {
2992 for (i
=0; i
<argc
; ++i
)
2994 if (strcmp (argv
[i
], "-dsym") == 0)
2997 /* Remove the flag, as we handle all processing for it. */
3000 argv
[j
] = argv
[j
+1];
3005 else if (strcmp (argv
[i
], "-idsym") == 0)
3008 /* Remove the flag, as we handle all processing for it. */
3011 argv
[j
] = argv
[j
+1];
3020 do_dsymutil (const char *output_file
) {
3021 const char *dsymutil
= 0;
3022 struct pex_obj
*pex
;
3023 char **real_argv
= XCNEWVEC (char *, verbose
? 4 : 3);
3024 const char ** argv
= CONST_CAST2 (const char **, char **,
3026 /* For cross-builds search the PATH using target-qualified name if we
3027 have not already found a suitable dsymutil. In practice, all modern
3028 versions of dsymutil handle all supported archs, however the approach
3029 here is consistent with the way other installations work (and one can
3030 always symlink a multitarget dsymutil with a target-specific name). */
3031 const char *dsname
= "dsymutil";
3032 #ifdef CROSS_DIRECTORY_STRUCTURE
3033 const char *qname
= concat (target_machine
, "-", dsname
, NULL
);
3035 const char *qname
= dsname
;
3037 #ifdef DEFAULT_DSYMUTIL
3038 /* Configured default takes priority. */
3039 if (dsymutil
== 0 && access (DEFAULT_DSYMUTIL
, X_OK
) == 0)
3040 dsymutil
= DEFAULT_DSYMUTIL
;
3044 /* Followed by one supplied in the target header, somewhat like the
3045 REAL_XX_NAME used elsewhere. */
3046 dsymutil
= find_a_file (&cpath
, DSYMUTIL
, X_OK
);
3048 dsymutil
= find_a_file (&path
, DSYMUTIL
, X_OK
);
3051 dsymutil
= find_a_file (&cpath
, dsname
, X_OK
);
3053 dsymutil
= find_a_file (&path
, qname
, X_OK
);
3056 argv
[1] = output_file
;
3060 argv
[3] = (char *) 0;
3063 argv
[2] = (char *) 0;
3065 pex
= collect_execute (dsymutil
, real_argv
, NULL
, NULL
,
3066 PEX_LAST
| PEX_SEARCH
, false, NULL
);
3067 do_wait (dsymutil
, pex
);
3071 post_ld_pass (bool temp_file
) {
3072 if (!(temp_file
&& flag_idsym
) && !flag_dsym
)
3075 do_dsymutil (output_file
);
3079 process_args (int *argcp ATTRIBUTE_UNUSED
, char **argv ATTRIBUTE_UNUSED
) { }
3080 static void post_ld_pass (bool temp_file ATTRIBUTE_UNUSED
) { }