1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992-2015 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 "collect-utils.h"
47 #include "diagnostic.h"
53 /* On certain systems, we have code that works by scanning the object file
54 directly. But this code uses system-specific header files and library
55 functions, so turn it off in a cross-compiler. Likewise, the names of
56 the utilities are not correct for a cross-compiler; we have to hope that
57 cross-versions are in the proper directories. */
59 #ifdef CROSS_DIRECTORY_STRUCTURE
60 #ifndef CROSS_AIX_SUPPORT
61 #undef OBJECT_FORMAT_COFF
64 #undef REAL_LD_FILE_NAME
65 #undef REAL_NM_FILE_NAME
66 #undef REAL_STRIP_FILE_NAME
69 /* If we cannot use a special method, use the ordinary one:
70 run nm to find what symbols are present.
71 In a cross-compiler, this means you need a cross nm,
72 but that is not quite as unpleasant as special headers. */
74 #if !defined (OBJECT_FORMAT_COFF)
75 #define OBJECT_FORMAT_NONE
78 #ifdef OBJECT_FORMAT_COFF
80 #ifndef CROSS_DIRECTORY_STRUCTURE
88 /* Many versions of ldfcn.h define these. */
97 /* Some systems have an ISCOFF macro, but others do not. In some cases
98 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
99 that either do not have an ISCOFF macro in /usr/include or for those
100 where it is wrong. */
103 #define MY_ISCOFF(X) ISCOFF (X)
106 #endif /* OBJECT_FORMAT_COFF */
108 #ifdef OBJECT_FORMAT_NONE
110 /* Default flags to pass to nm. */
112 #define NM_FLAGS "-n"
115 #endif /* OBJECT_FORMAT_NONE */
117 /* Some systems use __main in a way incompatible with its use in gcc, in these
118 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
119 give the same symbol without quotes for an alternative entry point. */
121 #define NAME__MAIN "__main"
124 /* This must match tree.h. */
125 #define DEFAULT_INIT_PRIORITY 65535
127 #ifndef COLLECT_SHARED_INIT_FUNC
128 #define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
129 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
131 #ifndef COLLECT_SHARED_FINI_FUNC
132 #define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
133 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
137 #define SCAN_LIBRARIES
141 #define SHLIB_SUFFIX ".so"
145 int do_collecting
= 1;
147 int do_collecting
= 0;
150 /* Cook up an always defined indication of whether we proceed the
151 "EXPORT_LIST" way. */
153 #ifdef COLLECT_EXPORT_LIST
154 #define DO_COLLECT_EXPORT_LIST 1
156 #define DO_COLLECT_EXPORT_LIST 0
159 /* Nonzero if we should suppress the automatic demangling of identifiers
160 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
163 /* Linked lists of constructor and destructor names. */
179 static int rflag
; /* true if -r */
180 static int strip_flag
; /* true if -s */
181 #ifdef COLLECT_EXPORT_LIST
182 static int export_flag
; /* true if -bE */
183 static int aix64_flag
; /* true if -b64 */
184 static int aixrtl_flag
; /* true if -brtl */
185 static int aixlazy_flag
; /* true if -blazy */
189 LTO_MODE_NONE
, /* Not doing LTO. */
190 LTO_MODE_LTO
, /* Normal LTO. */
191 LTO_MODE_WHOPR
/* WHOPR. */
194 /* Current LTO mode. */
196 static enum lto_mode_d lto_mode
= LTO_MODE_WHOPR
;
198 static enum lto_mode_d lto_mode
= LTO_MODE_NONE
;
201 bool helpflag
; /* true if --help */
203 static int shared_obj
; /* true if -shared */
205 static const char *c_file
; /* <xxx>.c for constructor/destructor list. */
206 static const char *o_file
; /* <xxx>.o for constructor/destructor list. */
207 #ifdef COLLECT_EXPORT_LIST
208 static const char *export_file
; /* <xxx>.x for AIX export list. */
210 static char **lto_o_files
; /* Output files for LTO. */
211 const char *ldout
; /* File for ld stdout. */
212 const char *lderrout
; /* File for ld stderr. */
213 static const char *output_file
; /* Output file for ld. */
214 static const char *nm_file_name
; /* pathname of nm */
216 static const char *ldd_file_name
; /* pathname of ldd (or equivalent) */
218 static const char *strip_file_name
; /* pathname of strip */
219 const char *c_file_name
; /* pathname of gcc */
220 static char *initname
, *fininame
; /* names of init and fini funcs */
223 #ifdef TARGET_AIX_VERSION
224 static char *aix_shared_initname
;
225 static char *aix_shared_fininame
; /* init/fini names as per the scheme
226 described in config/rs6000/aix.h */
229 static struct head constructors
; /* list of constructors found */
230 static struct head destructors
; /* list of destructors found */
231 #ifdef COLLECT_EXPORT_LIST
232 static struct head exports
; /* list of exported symbols */
234 static struct head frame_tables
; /* list of frame unwind info tables */
236 bool at_file_supplied
; /* Whether to use @file arguments */
238 struct obstack temporary_obstack
;
239 char * temporary_firstobj
;
241 /* A string that must be prepended to a target OS path in order to find
242 it on the host system. */
243 #ifdef TARGET_SYSTEM_ROOT
244 static const char *target_system_root
= TARGET_SYSTEM_ROOT
;
246 static const char *target_system_root
= "";
249 /* Whether we may unlink the output file, which should be set as soon as we
250 know we have successfully produced it. This is typically useful to prevent
251 blindly attempting to unlink a read-only output that the target linker
252 would leave untouched. */
253 bool may_unlink_output_file
= false;
255 #ifdef COLLECT_EXPORT_LIST
256 /* Lists to keep libraries to be scanned for global constructors/destructors. */
257 static struct head libs
; /* list of libraries */
258 static struct path_prefix cmdline_lib_dirs
; /* directories specified with -L */
259 static struct path_prefix libpath_lib_dirs
; /* directories in LIBPATH */
260 static struct path_prefix
*libpaths
[3] = {&cmdline_lib_dirs
,
261 &libpath_lib_dirs
, NULL
};
264 /* List of names of object files containing LTO information.
265 These are a subset of the object file names appearing on the
266 command line, and must be identical, in the sense of pointer
267 equality, with the names passed to maybe_run_lto_and_relink(). */
271 const char *name
; /* Name of object file. */
272 struct lto_object
*next
; /* Next in linked list. */
275 struct lto_object_list
277 struct lto_object
*first
; /* First list element. */
278 struct lto_object
*last
; /* Last list element. */
281 static struct lto_object_list lto_objects
;
283 /* Special kinds of symbols that a name may denote. */
286 SYM_REGULAR
= 0, /* nothing special */
288 SYM_CTOR
= 1, /* constructor */
289 SYM_DTOR
= 2, /* destructor */
290 SYM_INIT
= 3, /* shared object routine that calls all the ctors */
291 SYM_FINI
= 4, /* shared object routine that calls all the dtors */
292 SYM_DWEH
= 5, /* DWARF exception handling table */
297 const char tool_name
[] = "collect2";
299 static symkind
is_ctor_dtor (const char *);
301 static void handler (int);
302 static void maybe_unlink_list (char **);
303 static void add_to_list (struct head
*, const char *);
304 static int extract_init_priority (const char *);
305 static void sort_ids (struct head
*);
306 static void write_list (FILE *, const char *, struct id
*);
307 #ifdef COLLECT_EXPORT_LIST
308 static void dump_list (FILE *, const char *, struct id
*);
311 static void dump_prefix_list (FILE *, const char *, struct prefix_list
*);
313 static void write_list_with_asm (FILE *, const char *, struct id
*);
314 static void write_c_file (FILE *, const char *);
315 static void write_c_file_stat (FILE *, const char *);
316 #ifndef LD_INIT_SWITCH
317 static void write_c_file_glob (FILE *, const char *);
319 #ifdef SCAN_LIBRARIES
320 static void scan_libraries (const char *);
322 #ifdef COLLECT_EXPORT_LIST
324 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 if (c_file
!= 0 && c_file
[0])
386 maybe_unlink (c_file
);
388 if (o_file
!= 0 && o_file
[0])
389 maybe_unlink (o_file
);
391 #ifdef COLLECT_EXPORT_LIST
392 if (export_file
!= 0 && export_file
[0])
393 maybe_unlink (export_file
);
397 maybe_unlink_list (lto_o_files
);
399 if (ldout
!= 0 && ldout
[0])
402 dump_ld_file (ldout
, stdout
);
403 maybe_unlink (ldout
);
406 if (lderrout
!= 0 && lderrout
[0])
409 dump_ld_file (lderrout
, stderr
);
410 maybe_unlink (lderrout
);
415 collect_atexit (void)
417 tool_cleanup (false);
425 signal (signo
, SIG_DFL
);
428 /* Notify user of a non-error, without translating the format string. */
430 notice_translated (const char *cmsgid
, ...)
434 va_start (ap
, cmsgid
);
435 vfprintf (stderr
, cmsgid
, ap
);
440 file_exists (const char *name
)
442 return access (name
, R_OK
) == 0;
445 /* Parse a reasonable subset of shell quoting syntax. */
448 extract_string (const char **pp
)
461 obstack_1grow (&temporary_obstack
, c
);
462 else if (! inside
&& c
== ' ')
464 else if (! inside
&& c
== '\\')
469 obstack_1grow (&temporary_obstack
, c
);
472 obstack_1grow (&temporary_obstack
, '\0');
474 return XOBFINISH (&temporary_obstack
, char *);
478 dump_ld_file (const char *name
, FILE *to
)
480 FILE *stream
= fopen (name
, "r");
487 while (c
= getc (stream
),
488 c
!= EOF
&& (ISIDNUM (c
) || c
== '$' || c
== '.'))
489 obstack_1grow (&temporary_obstack
, c
);
490 if (obstack_object_size (&temporary_obstack
) > 0)
492 const char *word
, *p
;
494 obstack_1grow (&temporary_obstack
, '\0');
495 word
= XOBFINISH (&temporary_obstack
, const char *);
498 ++word
, putc ('.', to
);
500 if (!strncmp (p
, USER_LABEL_PREFIX
, strlen (USER_LABEL_PREFIX
)))
501 p
+= strlen (USER_LABEL_PREFIX
);
503 #ifdef HAVE_LD_DEMANGLE
509 result
= cplus_demangle (p
, DMGL_PARAMS
| DMGL_ANSI
| DMGL_VERBOSE
);
517 diff
= strlen (word
) - strlen (result
);
518 while (diff
> 0 && c
== ' ')
519 --diff
, putc (' ', to
);
520 if (diff
< 0 && c
== ' ')
522 while (diff
< 0 && c
== ' ')
523 ++diff
, c
= getc (stream
);
526 /* Make sure we output at least one space, or
527 the demangled symbol name will run into
528 whatever text follows. */
539 obstack_free (&temporary_obstack
, temporary_firstobj
);
548 /* Return the kind of symbol denoted by name S. */
551 is_ctor_dtor (const char *s
)
553 struct names
{ const char *const name
; const int len
; symkind ret
;
554 const int two_underscores
; };
556 const struct names
*p
;
558 const char *orig_s
= s
;
560 static const struct names special
[] = {
561 #ifndef NO_DOLLAR_IN_LABEL
562 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, SYM_CTOR
, 0 },
563 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, SYM_DTOR
, 0 },
565 #ifndef NO_DOT_IN_LABEL
566 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, SYM_CTOR
, 0 },
567 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, SYM_DTOR
, 0 },
568 #endif /* NO_DOT_IN_LABEL */
569 #endif /* NO_DOLLAR_IN_LABEL */
570 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, SYM_CTOR
, 0 },
571 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, SYM_DTOR
, 0 },
572 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, SYM_DWEH
, 0 },
573 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, SYM_INIT
, 0 },
574 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, SYM_FINI
, 0 },
575 #ifdef TARGET_AIX_VERSION
576 { "GLOBAL__AIXI_", sizeof ("GLOBAL__AIXI_")-1, SYM_AIXI
, 0 },
577 { "GLOBAL__AIXD_", sizeof ("GLOBAL__AIXD_")-1, SYM_AIXD
, 0 },
579 { NULL
, 0, SYM_REGULAR
, 0 }
582 while ((ch
= *s
) == '_')
588 for (p
= &special
[0]; p
->len
> 0; p
++)
591 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
592 && strncmp (s
, p
->name
, p
->len
) == 0)
600 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
601 and one from the PATH variable. */
603 static struct path_prefix cpath
, path
;
605 #ifdef CROSS_DIRECTORY_STRUCTURE
606 /* This is the name of the target machine. We use it to form the name
607 of the files to execute. */
609 static const char *const target_machine
= TARGET_MACHINE
;
612 /* Search for NAME using prefix list PPREFIX. We only look for executable
615 Return 0 if not found, otherwise return its name, allocated with malloc. */
617 #ifdef OBJECT_FORMAT_NONE
619 /* Add an entry for the object file NAME to object file list LIST.
620 New entries are added at the end of the list. The original pointer
621 value of NAME is preserved, i.e., no string copy is performed. */
624 add_lto_object (struct lto_object_list
*list
, const char *name
)
626 struct lto_object
*n
= XNEW (struct lto_object
);
631 list
->last
->next
= n
;
637 #endif /* OBJECT_FORMAT_NONE */
640 /* Perform a link-time recompilation and relink if any of the object
641 files contain LTO info. The linker command line LTO_LD_ARGV
642 represents the linker command that would produce a final executable
643 without the use of LTO. OBJECT_LST is a vector of object file names
644 appearing in LTO_LD_ARGV that are to be considered for link-time
645 recompilation, where OBJECT is a pointer to the last valid element.
646 (This awkward convention avoids an impedance mismatch with the
647 usage of similarly-named variables in main().) The elements of
648 OBJECT_LST must be identical, i.e., pointer equal, to the
649 corresponding arguments in LTO_LD_ARGV.
651 Upon entry, at least one linker run has been performed without the
652 use of any LTO info that might be present. Any recompilations
653 necessary for template instantiations have been performed, and
654 initializer/finalizer tables have been created if needed and
655 included in the linker command line LTO_LD_ARGV. If any of the
656 object files contain LTO info, we run the LTO back end on all such
657 files, and perform the final link with the LTO back end output
658 substituted for the LTO-optimized files. In some cases, a final
659 link with all link-time generated code has already been performed,
660 so there is no need to relink if no LTO info is found. In other
661 cases, our caller has not produced the final executable, and is
662 relying on us to perform the required link whether LTO info is
663 present or not. In that case, the FORCE argument should be true.
664 Note that the linker command line argument LTO_LD_ARGV passed into
665 this function may be modified in place. */
668 maybe_run_lto_and_relink (char **lto_ld_argv
, char **object_lst
,
669 const char **object
, bool force
)
671 const char **object_file
= CONST_CAST2 (const char **, char **, object_lst
);
673 int num_lto_c_args
= 1; /* Allow space for the terminating NULL. */
675 while (object_file
< object
)
677 /* If file contains LTO info, add it to the list of LTO objects. */
678 scan_prog_file (*object_file
++, PASS_LTOINFO
, SCAN_ALL
);
680 /* Increment the argument count by the number of object file arguments
681 we will add. An upper bound suffices, so just count all of the
682 object files regardless of whether they contain LTO info. */
686 if (lto_objects
.first
)
689 const char **lto_c_ptr
;
692 struct lto_object
*list
;
693 char *lto_wrapper
= getenv ("COLLECT_LTO_WRAPPER");
695 const char *prog
= "lto-wrapper";
696 int lto_ld_argv_size
= 0;
697 char **out_lto_ld_argv
;
698 int out_lto_ld_argv_size
;
702 fatal_error ("COLLECT_LTO_WRAPPER must be set");
706 /* There is at least one object file containing LTO info,
707 so we need to run the LTO back end and relink.
709 To do so we build updated ld arguments with first
710 LTO object replaced by all partitions and other LTO
713 lto_c_argv
= (char **) xcalloc (sizeof (char *), num_lto_c_args
);
714 lto_c_ptr
= CONST_CAST2 (const char **, char **, lto_c_argv
);
716 *lto_c_ptr
++ = lto_wrapper
;
718 /* Add LTO objects to the wrapper command line. */
719 for (list
= lto_objects
.first
; list
; list
= list
->next
)
720 *lto_c_ptr
++ = list
->name
;
724 /* Run the LTO back end. */
725 pex
= collect_execute (prog
, lto_c_argv
, NULL
, NULL
, PEX_SEARCH
,
733 stream
= pex_read_output (pex
, 0);
737 while ((c
= getc (stream
)) != EOF
)
739 obstack_1grow (&temporary_obstack
, c
);
744 lto_o_files
= XNEWVEC (char *, num_files
+ 1);
745 lto_o_files
[num_files
] = NULL
;
746 start
= XOBFINISH (&temporary_obstack
, char *);
747 for (i
= 0; i
< num_files
; ++i
)
754 lto_o_files
[i
] = xstrdup (start
);
759 obstack_free (&temporary_obstack
, temporary_firstobj
);
764 /* Compute memory needed for new LD arguments. At most number of original arguemtns
765 plus number of partitions. */
766 for (lto_ld_argv_size
= 0; lto_ld_argv
[lto_ld_argv_size
]; lto_ld_argv_size
++)
768 out_lto_ld_argv
= XCNEWVEC (char *, num_files
+ lto_ld_argv_size
+ 1);
769 out_lto_ld_argv_size
= 0;
771 /* After running the LTO back end, we will relink, substituting
772 the LTO output for the object files that we submitted to the
773 LTO. Here, we modify the linker command line for the relink. */
775 /* Copy all arguments until we find first LTO file. */
779 for (list
= lto_objects
.first
; list
; list
= list
->next
)
780 if (*p
== list
->name
) /* Note test for pointer equality! */
784 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
++;
787 /* Now insert all LTO partitions. */
788 lto_o_ptr
= lto_o_files
;
790 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *lto_o_ptr
++;
792 /* ... and copy the rest. */
795 for (list
= lto_objects
.first
; list
; list
= list
->next
)
796 if (*p
== list
->name
) /* Note test for pointer equality! */
799 out_lto_ld_argv
[out_lto_ld_argv_size
++] = *p
;
802 out_lto_ld_argv
[out_lto_ld_argv_size
++] = 0;
804 /* Run the linker again, this time replacing the object files
805 optimized by the LTO with the temporary file generated by the LTO. */
806 fork_execute ("ld", out_lto_ld_argv
, HAVE_GNU_LD
&& at_file_supplied
);
810 maybe_unlink_list (lto_o_files
);
814 /* Our caller is relying on us to do the link
815 even though there is no LTO back end work to be done. */
816 fork_execute ("ld", lto_ld_argv
, HAVE_GNU_LD
&& at_file_supplied
);
817 post_ld_pass (false);
826 main (int argc
, char **argv
)
835 } selected_linker
= USE_DEFAULT_LD
;
836 static const char *const ld_suffixes
[USE_LD_MAX
] =
843 static const char *const real_ld_suffix
= "real-ld";
844 static const char *const collect_ld_suffix
= "collect-ld";
845 static const char *const nm_suffix
= "nm";
846 static const char *const gnm_suffix
= "gnm";
848 static const char *const ldd_suffix
= LDD_SUFFIX
;
850 static const char *const strip_suffix
= "strip";
851 static const char *const gstrip_suffix
= "gstrip";
853 const char *full_ld_suffixes
[USE_LD_MAX
];
854 #ifdef CROSS_DIRECTORY_STRUCTURE
855 /* If we look for a program in the compiler directories, we just use
856 the short name, since these directories are already system-specific.
857 But it we look for a program in the system directories, we need to
858 qualify the program name with the target machine. */
860 const char *const full_nm_suffix
=
861 concat (target_machine
, "-", nm_suffix
, NULL
);
862 const char *const full_gnm_suffix
=
863 concat (target_machine
, "-", gnm_suffix
, NULL
);
865 const char *const full_ldd_suffix
=
866 concat (target_machine
, "-", ldd_suffix
, NULL
);
868 const char *const full_strip_suffix
=
869 concat (target_machine
, "-", strip_suffix
, NULL
);
870 const char *const full_gstrip_suffix
=
871 concat (target_machine
, "-", gstrip_suffix
, NULL
);
874 const char *const full_ldd_suffix
= ldd_suffix
;
876 const char *const full_nm_suffix
= nm_suffix
;
877 const char *const full_gnm_suffix
= gnm_suffix
;
878 const char *const full_strip_suffix
= strip_suffix
;
879 const char *const full_gstrip_suffix
= gstrip_suffix
;
880 #endif /* CROSS_DIRECTORY_STRUCTURE */
884 #ifdef COLLECT_EXPORT_LIST
887 const char *ld_file_name
;
893 bool use_plugin
= false;
894 bool use_collect_ld
= false;
896 /* The kinds of symbols we will have to consider when scanning the
897 outcome of a first pass link. This is ALL to start with, then might
898 be adjusted before getting to the first pass link per se, typically on
899 AIX where we perform an early scan of objects and libraries to fetch
900 the list of global ctors/dtors and make sure they are not garbage
902 scanfilter ld1_filter
= SCAN_ALL
;
908 #ifdef TARGET_AIX_VERSION
909 int object_nbr
= argc
;
916 for (i
= 0; i
< USE_LD_MAX
; i
++)
918 #ifdef CROSS_DIRECTORY_STRUCTURE
919 = concat (target_machine
, "-", ld_suffixes
[i
], NULL
);
924 p
= argv
[0] + strlen (argv
[0]);
925 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
929 xmalloc_set_program_name (progname
);
932 expandargv (&argc
, &argv
);
933 if (argv
!= old_argv
)
934 at_file_supplied
= 1;
936 process_args (&argc
, argv
);
938 num_c_args
= argc
+ 9;
940 #ifndef HAVE_LD_DEMANGLE
941 no_demangle
= !! getenv ("COLLECT_NO_DEMANGLE");
943 /* Suppress demangling by the real linker, which may be broken. */
944 putenv (xstrdup ("COLLECT_NO_DEMANGLE=1"));
947 #if defined (COLLECT2_HOST_INITIALIZATION)
948 /* Perform system dependent initialization, if necessary. */
949 COLLECT2_HOST_INITIALIZATION
;
953 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
954 receive the signal. A different setting is inheritable */
955 signal (SIGCHLD
, SIG_DFL
);
958 /* Unlock the stdio streams. */
959 unlock_std_streams ();
963 diagnostic_initialize (global_dc
, 0);
965 if (atexit (collect_atexit
) != 0)
966 fatal_error ("atexit failed");
968 /* Do not invoke xcalloc before this point, since locale needs to be
969 set first, in case a diagnostic is issued. */
971 ld1_argv
= XCNEWVEC (char *, argc
+ 4);
972 ld1
= CONST_CAST2 (const char **, char **, ld1_argv
);
973 ld2_argv
= XCNEWVEC (char *, argc
+ 11);
974 ld2
= CONST_CAST2 (const char **, char **, ld2_argv
);
975 object_lst
= XCNEWVEC (char *, argc
);
976 object
= CONST_CAST2 (const char **, char **, object_lst
);
982 /* Parse command line early for instances of -debug. This allows
983 the debug flag to be set before functions like find_a_file()
984 are called. We also look for the -flto or -flto-partition=none flag to know
985 what LTO mode we are in. */
987 bool no_partition
= false;
989 for (i
= 1; argv
[i
] != NULL
; i
++)
991 if (! strcmp (argv
[i
], "-debug"))
993 else if (! strcmp (argv
[i
], "-flto-partition=none"))
995 else if (!strncmp (argv
[i
], "-fno-lto", 8))
996 lto_mode
= LTO_MODE_NONE
;
997 else if (! strcmp (argv
[i
], "-plugin"))
1000 if (selected_linker
== USE_DEFAULT_LD
)
1001 selected_linker
= USE_PLUGIN_LD
;
1003 else if (strcmp (argv
[i
], "-fuse-ld=bfd") == 0)
1004 selected_linker
= USE_BFD_LD
;
1005 else if (strcmp (argv
[i
], "-fuse-ld=gold") == 0)
1006 selected_linker
= USE_GOLD_LD
;
1008 #ifdef COLLECT_EXPORT_LIST
1009 /* These flags are position independent, although their order
1010 is important - subsequent flags override earlier ones. */
1011 else if (strcmp (argv
[i
], "-b64") == 0)
1013 /* -bexport:filename always needs the :filename */
1014 else if (strncmp (argv
[i
], "-bE:", 4) == 0
1015 || strncmp (argv
[i
], "-bexport:", 9) == 0)
1017 else if (strcmp (argv
[i
], "-brtl") == 0
1018 || strcmp (argv
[i
], "-bsvr4") == 0
1019 || strcmp (argv
[i
], "-G") == 0)
1021 else if (strcmp (argv
[i
], "-bnortl") == 0)
1023 else if (strcmp (argv
[i
], "-blazy") == 0)
1028 find_file_set_debug (debug
);
1030 lto_mode
= LTO_MODE_NONE
;
1031 if (no_partition
&& lto_mode
== LTO_MODE_WHOPR
)
1032 lto_mode
= LTO_MODE_LTO
;
1035 #ifndef DEFAULT_A_OUT_NAME
1036 output_file
= "a.out";
1038 output_file
= DEFAULT_A_OUT_NAME
;
1041 obstack_begin (&temporary_obstack
, 0);
1042 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
1044 #ifndef HAVE_LD_DEMANGLE
1045 current_demangling_style
= auto_demangling
;
1047 p
= getenv ("COLLECT_GCC_OPTIONS");
1050 const char *q
= extract_string (&p
);
1051 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1054 obstack_free (&temporary_obstack
, temporary_firstobj
);
1056 /* -fno-profile-arcs -fno-test-coverage -fno-branch-probabilities
1057 -fno-exceptions -w -fno-whole-program */
1060 c_argv
= XCNEWVEC (char *, num_c_args
);
1061 c_ptr
= CONST_CAST2 (const char **, char **, c_argv
);
1064 fatal_error ("no arguments");
1067 if (signal (SIGQUIT
, SIG_IGN
) != SIG_IGN
)
1068 signal (SIGQUIT
, handler
);
1070 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
1071 signal (SIGINT
, handler
);
1073 if (signal (SIGALRM
, SIG_IGN
) != SIG_IGN
)
1074 signal (SIGALRM
, handler
);
1077 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
1078 signal (SIGHUP
, handler
);
1080 if (signal (SIGSEGV
, SIG_IGN
) != SIG_IGN
)
1081 signal (SIGSEGV
, handler
);
1083 if (signal (SIGBUS
, SIG_IGN
) != SIG_IGN
)
1084 signal (SIGBUS
, handler
);
1087 /* Extract COMPILER_PATH and PATH into our prefix list. */
1088 prefix_from_env ("COMPILER_PATH", &cpath
);
1089 prefix_from_env ("PATH", &path
);
1091 /* Try to discover a valid linker/nm/strip to use. */
1093 /* Maybe we know the right file to use (if not cross). */
1095 #ifdef DEFAULT_LINKER
1096 if (selected_linker
== USE_BFD_LD
|| selected_linker
== USE_GOLD_LD
)
1099 # ifdef HOST_EXECUTABLE_SUFFIX
1100 int len
= (sizeof (DEFAULT_LINKER
)
1101 - sizeof (HOST_EXECUTABLE_SUFFIX
));
1105 char *default_linker
= xstrdup (DEFAULT_LINKER
);
1106 /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
1107 HOST_EXECUTABLE_SUFFIX. */
1108 if (! strcmp (&default_linker
[len
], HOST_EXECUTABLE_SUFFIX
))
1110 default_linker
[len
] = '\0';
1111 linker_name
= concat (default_linker
,
1112 &ld_suffixes
[selected_linker
][2],
1113 HOST_EXECUTABLE_SUFFIX
, NULL
);
1116 if (linker_name
== NULL
)
1118 linker_name
= concat (DEFAULT_LINKER
,
1119 &ld_suffixes
[selected_linker
][2],
1121 if (access (linker_name
, X_OK
) == 0)
1122 ld_file_name
= linker_name
;
1124 if (ld_file_name
== 0 && access (DEFAULT_LINKER
, X_OK
) == 0)
1125 ld_file_name
= DEFAULT_LINKER
;
1126 if (ld_file_name
== 0)
1128 #ifdef REAL_LD_FILE_NAME
1129 ld_file_name
= find_a_file (&path
, REAL_LD_FILE_NAME
, X_OK
);
1130 if (ld_file_name
== 0)
1132 /* Search the (target-specific) compiler dirs for ld'. */
1133 ld_file_name
= find_a_file (&cpath
, real_ld_suffix
, X_OK
);
1134 /* Likewise for `collect-ld'. */
1135 if (ld_file_name
== 0)
1137 ld_file_name
= find_a_file (&cpath
, collect_ld_suffix
, X_OK
);
1138 use_collect_ld
= ld_file_name
!= 0;
1140 /* Search the compiler directories for `ld'. We have protection against
1141 recursive calls in find_a_file. */
1142 if (ld_file_name
== 0)
1143 ld_file_name
= find_a_file (&cpath
, ld_suffixes
[selected_linker
], X_OK
);
1144 /* Search the ordinary system bin directories
1145 for `ld' (if native linking) or `TARGET-ld' (if cross). */
1146 if (ld_file_name
== 0)
1147 ld_file_name
= find_a_file (&path
, full_ld_suffixes
[selected_linker
], X_OK
);
1149 #ifdef REAL_NM_FILE_NAME
1150 nm_file_name
= find_a_file (&path
, REAL_NM_FILE_NAME
, X_OK
);
1151 if (nm_file_name
== 0)
1153 nm_file_name
= find_a_file (&cpath
, gnm_suffix
, X_OK
);
1154 if (nm_file_name
== 0)
1155 nm_file_name
= find_a_file (&path
, full_gnm_suffix
, X_OK
);
1156 if (nm_file_name
== 0)
1157 nm_file_name
= find_a_file (&cpath
, nm_suffix
, X_OK
);
1158 if (nm_file_name
== 0)
1159 nm_file_name
= find_a_file (&path
, full_nm_suffix
, X_OK
);
1162 ldd_file_name
= find_a_file (&cpath
, ldd_suffix
, X_OK
);
1163 if (ldd_file_name
== 0)
1164 ldd_file_name
= find_a_file (&path
, full_ldd_suffix
, X_OK
);
1167 #ifdef REAL_STRIP_FILE_NAME
1168 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
, X_OK
);
1169 if (strip_file_name
== 0)
1171 strip_file_name
= find_a_file (&cpath
, gstrip_suffix
, X_OK
);
1172 if (strip_file_name
== 0)
1173 strip_file_name
= find_a_file (&path
, full_gstrip_suffix
, X_OK
);
1174 if (strip_file_name
== 0)
1175 strip_file_name
= find_a_file (&cpath
, strip_suffix
, X_OK
);
1176 if (strip_file_name
== 0)
1177 strip_file_name
= find_a_file (&path
, full_strip_suffix
, X_OK
);
1179 /* Determine the full path name of the C compiler to use. */
1180 c_file_name
= getenv ("COLLECT_GCC");
1181 if (c_file_name
== 0)
1183 #ifdef CROSS_DIRECTORY_STRUCTURE
1184 c_file_name
= concat (target_machine
, "-gcc", NULL
);
1186 c_file_name
= "gcc";
1190 p
= find_a_file (&cpath
, c_file_name
, X_OK
);
1192 /* Here it should be safe to use the system search path since we should have
1193 already qualified the name of the compiler when it is needed. */
1195 p
= find_a_file (&path
, c_file_name
, X_OK
);
1200 *ld1
++ = *ld2
++ = ld_file_name
;
1202 /* Make temp file names. */
1203 c_file
= make_temp_file (".c");
1204 o_file
= make_temp_file (".o");
1205 #ifdef COLLECT_EXPORT_LIST
1206 export_file
= make_temp_file (".x");
1210 ldout
= make_temp_file (".ld");
1211 lderrout
= make_temp_file (".le");
1213 *c_ptr
++ = c_file_name
;
1220 #ifdef COLLECT_EXPORT_LIST
1221 /* Generate a list of directories from LIBPATH. */
1222 prefix_from_env ("LIBPATH", &libpath_lib_dirs
);
1223 /* Add to this list also two standard directories where
1224 AIX loader always searches for libraries. */
1225 add_prefix (&libpath_lib_dirs
, "/lib");
1226 add_prefix (&libpath_lib_dirs
, "/usr/lib");
1229 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1231 AIX support needs to know if -shared has been specified before
1232 parsing commandline arguments. */
1234 p
= getenv ("COLLECT_GCC_OPTIONS");
1237 const char *q
= extract_string (&p
);
1238 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1239 *c_ptr
++ = xstrdup (q
);
1240 if (strcmp (q
, "-EL") == 0 || strcmp (q
, "-EB") == 0)
1241 *c_ptr
++ = xstrdup (q
);
1242 if (strcmp (q
, "-shared") == 0)
1244 if (*q
== '-' && q
[1] == 'B')
1246 *c_ptr
++ = xstrdup (q
);
1249 q
= extract_string (&p
);
1250 *c_ptr
++ = xstrdup (q
);
1254 obstack_free (&temporary_obstack
, temporary_firstobj
);
1255 *c_ptr
++ = "-fno-profile-arcs";
1256 *c_ptr
++ = "-fno-test-coverage";
1257 *c_ptr
++ = "-fno-branch-probabilities";
1258 *c_ptr
++ = "-fno-exceptions";
1260 *c_ptr
++ = "-fno-whole-program";
1262 /* !!! When GCC calls collect2,
1263 it does not know whether it is calling collect2 or ld.
1264 So collect2 cannot meaningfully understand any options
1265 except those ld understands.
1266 If you propose to make GCC pass some other option,
1267 just imagine what will happen if ld is really ld!!! */
1269 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1270 /* After the first file, put in the c++ rt0. */
1273 while ((arg
= *++argv
) != (char *) 0)
1275 *ld1
++ = *ld2
++ = arg
;
1282 if (!strcmp (arg
, "-debug"))
1284 /* Already parsed. */
1288 if (!strcmp (arg
, "-dynamic-linker") && argv
[1])
1291 *ld1
++ = *ld2
++ = *argv
;
1296 if (strncmp (arg
, "-flto", 5) == 0)
1299 /* Do not pass LTO flag to the linker. */
1303 error ("LTO support has not been enabled in this "
1307 else if (!use_collect_ld
1308 && strncmp (arg
, "-fuse-ld=", 9) == 0)
1310 /* Do not pass -fuse-ld={bfd|gold} to the linker. */
1314 else if (strncmp (arg
, "-fno-lto", 8) == 0)
1316 /* Do not pass -fno-lto to the linker. */
1320 #ifdef TARGET_AIX_VERSION
1323 /* File containing a list of input files to process. */
1326 char buf
[MAXPATHLEN
+ 2];
1327 /* Number of additionnal object files. */
1329 /* Maximum of additionnal object files before vector
1332 const char *list_filename
= arg
+ 2;
1334 /* Accept -fFILENAME and -f FILENAME. */
1335 if (*list_filename
== '\0' && argv
[1])
1338 list_filename
= *argv
;
1339 *ld1
++ = *ld2
++ = *argv
;
1342 stream
= fopen (list_filename
, "r");
1344 fatal_error ("can't open %s: %m", list_filename
);
1346 while (fgets (buf
, sizeof buf
, stream
) != NULL
)
1348 /* Remove end of line. */
1349 int len
= strlen (buf
);
1350 if (len
>= 1 && buf
[len
- 1] =='\n')
1351 buf
[len
- 1] = '\0';
1353 /* Put on object vector.
1354 Note: we only expanse vector here, so we must keep
1355 extra space for remaining arguments. */
1356 if (add_nbr
>= add_max
)
1359 object
- CONST_CAST2 (const char **, char **,
1361 add_max
= (add_max
== 0) ? 16 : add_max
* 2;
1362 object_lst
= XRESIZEVEC (char *, object_lst
,
1363 object_nbr
+ add_max
);
1364 object
= CONST_CAST2 (const char **, char **,
1366 object_nbr
+= add_max
;
1368 *object
++ = xstrdup (buf
);
1379 /* place o_file BEFORE this argument! */
1385 #ifdef COLLECT_EXPORT_LIST
1387 /* Resolving full library name. */
1388 const char *s
= resolve_lib_name (arg
+2);
1390 /* Saving a full library name. */
1391 add_to_list (&libs
, s
);
1396 #ifdef COLLECT_EXPORT_LIST
1397 /* Saving directories where to search for libraries. */
1399 add_prefix (&cmdline_lib_dirs
, arg
+2);
1405 output_file
= *ld1
++ = *ld2
++ = *++argv
;
1407 output_file
= &arg
[2];
1416 if (arg
[2] == '\0' && do_collecting
)
1418 /* We must strip after the nm run, otherwise C++ linking
1419 will not work. Thus we strip in the second ld run, or
1420 else with strip if there is no second ld run. */
1432 if (strcmp (arg
, "--no-demangle") == 0)
1434 #ifndef HAVE_LD_DEMANGLE
1440 else if (strncmp (arg
, "--demangle", 10) == 0)
1442 #ifndef HAVE_LD_DEMANGLE
1446 enum demangling_styles style
1447 = cplus_demangle_name_to_style (arg
+11);
1448 if (style
== unknown_demangling
)
1449 error ("unknown demangling style '%s'", arg
+11);
1451 current_demangling_style
= style
;
1457 else if (strncmp (arg
, "--sysroot=", 10) == 0)
1458 target_system_root
= arg
+ 10;
1459 else if (strcmp (arg
, "--version") == 0)
1461 else if (strcmp (arg
, "--help") == 0)
1466 else if ((p
= strrchr (arg
, '.')) != (char *) 0
1467 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0
1468 || strcmp (p
, ".so") == 0 || strcmp (p
, ".lo") == 0
1469 || strcmp (p
, ".obj") == 0))
1478 /* place o_file BEFORE this argument! */
1484 if (p
[1] == 'o' || p
[1] == 'l')
1486 #ifdef COLLECT_EXPORT_LIST
1487 /* libraries can be specified directly, i.e. without -l flag. */
1490 /* Saving a full library name. */
1491 add_to_list (&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
);
1505 /* The AIX linker will discard static constructors in object files if
1506 nothing else in the file is referenced, so look at them first. Unless
1507 we are building a shared object, ignore the eh frame tables, as we
1508 would otherwise reference them all, hence drag all the corresponding
1509 objects even if nothing else is referenced. */
1511 const char **export_object_lst
1512 = CONST_CAST2 (const char **, char **, object_lst
);
1514 struct id
*list
= libs
.first
;
1516 /* Compute the filter to use from the current one, do scan, then adjust
1517 the "current" filter to remove what we just included here. This will
1518 control whether we need a first pass link later on or not, and what
1519 will remain to be scanned there. */
1521 scanfilter this_filter
= ld1_filter
;
1524 this_filter
&= ~SCAN_DWEH
;
1527 while (export_object_lst
< object
)
1528 scan_prog_file (*export_object_lst
++, PASS_OBJ
, this_filter
);
1530 for (; list
; list
= list
->next
)
1531 scan_prog_file (list
->name
, PASS_FIRST
, this_filter
);
1533 ld1_filter
= ld1_filter
& ~this_filter
;
1538 char *buf
= concat ("-bE:", export_file
, NULL
);
1543 exportf
= fopen (export_file
, "w");
1544 if (exportf
== (FILE *) 0)
1545 fatal_error ("fopen %s: %m", export_file
);
1546 write_aix_file (exportf
, exports
.first
);
1547 if (fclose (exportf
))
1548 fatal_error ("fclose %s: %m", export_file
);
1553 *c_ptr
= *ld1
= *object
= (char *) 0;
1556 notice ("collect2 version %s\n", version_string
);
1560 printf ("Usage: collect2 [options]\n");
1561 printf (" Wrap linker and generate constructor code if needed.\n");
1562 printf (" Options:\n");
1563 printf (" -debug Enable debug output\n");
1564 printf (" --help Display this information\n");
1565 printf (" -v, --version Display this program's version number\n");
1567 printf ("Overview: http://gcc.gnu.org/onlinedocs/gccint/Collect2.html\n");
1568 printf ("Report bugs: %s\n", bug_report_url
);
1575 fprintf (stderr
, "ld_file_name = %s\n",
1576 (ld_file_name
? ld_file_name
: "not found"));
1577 fprintf (stderr
, "c_file_name = %s\n",
1578 (c_file_name
? c_file_name
: "not found"));
1579 fprintf (stderr
, "nm_file_name = %s\n",
1580 (nm_file_name
? nm_file_name
: "not found"));
1582 fprintf (stderr
, "ldd_file_name = %s\n",
1583 (ldd_file_name
? ldd_file_name
: "not found"));
1585 fprintf (stderr
, "strip_file_name = %s\n",
1586 (strip_file_name
? strip_file_name
: "not found"));
1587 fprintf (stderr
, "c_file = %s\n",
1588 (c_file
? c_file
: "not found"));
1589 fprintf (stderr
, "o_file = %s\n",
1590 (o_file
? o_file
: "not found"));
1592 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1594 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1596 ptr
= getenv ("COLLECT_GCC");
1598 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1600 ptr
= getenv ("COMPILER_PATH");
1602 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1604 ptr
= getenv (LIBRARY_PATH_ENV
);
1606 fprintf (stderr
, "%-20s= %s\n", LIBRARY_PATH_ENV
, ptr
);
1608 fprintf (stderr
, "\n");
1611 /* Load the program, searching all libraries and attempting to provide
1612 undefined symbols from repository information.
1614 If -r or they will be run via some other method, do not build the
1615 constructor or destructor list, just return now. */
1618 = rflag
|| (! DO_COLLECT_EXPORT_LIST
&& ! do_collecting
);
1620 /* Perform the first pass link now, if we're about to exit or if we need
1621 to scan for things we haven't collected yet before pursuing further.
1623 On AIX, the latter typically includes nothing for shared objects or
1624 frame tables for an executable, out of what the required early scan on
1625 objects and libraries has performed above. In the !shared_obj case, we
1626 expect the relevant tables to be dragged together with their associated
1627 functions from precise cross reference insertions by the compiler. */
1629 if (early_exit
|| ld1_filter
!= SCAN_NOTHING
)
1630 do_tlink (ld1_argv
, object_lst
);
1634 #ifdef COLLECT_EXPORT_LIST
1635 /* Make sure we delete the export file we may have created. */
1636 if (export_file
!= 0 && export_file
[0])
1637 maybe_unlink (export_file
);
1639 if (lto_mode
!= LTO_MODE_NONE
)
1640 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1642 post_ld_pass (false);
1644 maybe_unlink (c_file
);
1645 maybe_unlink (o_file
);
1650 /* Unless we have done it all already, examine the namelist and search for
1651 static constructors and destructors to call. Write the constructor and
1652 destructor tables to a .s file and reload. */
1654 if (ld1_filter
!= SCAN_NOTHING
)
1655 scan_prog_file (output_file
, PASS_FIRST
, ld1_filter
);
1657 #ifdef SCAN_LIBRARIES
1658 scan_libraries (output_file
);
1663 notice_translated (ngettext ("%d constructor found\n",
1664 "%d constructors found\n",
1665 constructors
.number
),
1666 constructors
.number
);
1667 notice_translated (ngettext ("%d destructor found\n",
1668 "%d destructors found\n",
1669 destructors
.number
),
1670 destructors
.number
);
1671 notice_translated (ngettext ("%d frame table found\n",
1672 "%d frame tables found\n",
1673 frame_tables
.number
),
1674 frame_tables
.number
);
1677 /* If the scan exposed nothing of special interest, there's no need to
1678 generate the glue code and relink so return now. */
1680 if (constructors
.number
== 0 && destructors
.number
== 0
1681 && frame_tables
.number
== 0
1682 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1683 /* If we will be running these functions ourselves, we want to emit
1684 stubs into the shared library so that we do not have to relink
1685 dependent programs when we add static objects. */
1690 /* Do tlink without additional code generation now if we didn't
1691 do it earlier for scanning purposes. */
1692 if (ld1_filter
== SCAN_NOTHING
)
1693 do_tlink (ld1_argv
, object_lst
);
1696 maybe_run_lto_and_relink (ld1_argv
, object_lst
, object
, false);
1698 /* Strip now if it was requested on the command line. */
1701 char **real_strip_argv
= XCNEWVEC (char *, 3);
1702 const char ** strip_argv
= CONST_CAST2 (const char **, char **,
1705 strip_argv
[0] = strip_file_name
;
1706 strip_argv
[1] = output_file
;
1707 strip_argv
[2] = (char *) 0;
1708 fork_execute ("strip", real_strip_argv
, false);
1711 #ifdef COLLECT_EXPORT_LIST
1712 maybe_unlink (export_file
);
1714 post_ld_pass (false);
1716 maybe_unlink (c_file
);
1717 maybe_unlink (o_file
);
1721 /* Sort ctor and dtor lists by priority. */
1722 sort_ids (&constructors
);
1723 sort_ids (&destructors
);
1725 maybe_unlink (output_file
);
1726 outf
= fopen (c_file
, "w");
1727 if (outf
== (FILE *) 0)
1728 fatal_error ("fopen %s: %m", c_file
);
1730 write_c_file (outf
, c_file
);
1733 fatal_error ("fclose %s: %m", c_file
);
1735 /* Tell the linker that we have initializer and finalizer functions. */
1736 #ifdef LD_INIT_SWITCH
1737 #ifdef COLLECT_EXPORT_LIST
1738 *ld2
++ = concat (LD_INIT_SWITCH
, ":", initname
, ":", fininame
, NULL
);
1740 *ld2
++ = LD_INIT_SWITCH
;
1742 *ld2
++ = LD_FINI_SWITCH
;
1747 #ifdef COLLECT_EXPORT_LIST
1750 /* If we did not add export flag to link arguments before, add it to
1751 second link phase now. No new exports should have been added. */
1752 if (! exports
.first
)
1753 *ld2
++ = concat ("-bE:", export_file
, NULL
);
1755 #ifdef TARGET_AIX_VERSION
1756 add_to_list (&exports
, aix_shared_initname
);
1757 add_to_list (&exports
, aix_shared_fininame
);
1760 #ifndef LD_INIT_SWITCH
1761 add_to_list (&exports
, initname
);
1762 add_to_list (&exports
, fininame
);
1763 add_to_list (&exports
, "_GLOBAL__DI");
1764 add_to_list (&exports
, "_GLOBAL__DD");
1766 exportf
= fopen (export_file
, "w");
1767 if (exportf
== (FILE *) 0)
1768 fatal_error ("fopen %s: %m", export_file
);
1769 write_aix_file (exportf
, exports
.first
);
1770 if (fclose (exportf
))
1771 fatal_error ("fclose %s: %m", export_file
);
1775 /* End of arguments to second link phase. */
1780 fprintf (stderr
, "\n========== output_file = %s, c_file = %s\n",
1781 output_file
, c_file
);
1782 write_c_file (stderr
, "stderr");
1783 fprintf (stderr
, "========== end of c_file\n\n");
1784 #ifdef COLLECT_EXPORT_LIST
1785 fprintf (stderr
, "\n========== export_file = %s\n", export_file
);
1786 write_aix_file (stderr
, exports
.first
);
1787 fprintf (stderr
, "========== end of export_file\n\n");
1791 /* Assemble the constructor and destructor tables.
1792 Link the tables in with the rest of the program. */
1794 fork_execute ("gcc", c_argv
, at_file_supplied
);
1795 #ifdef COLLECT_EXPORT_LIST
1796 /* On AIX we must call tlink because of possible templates resolution. */
1797 do_tlink (ld2_argv
, object_lst
);
1800 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, false);
1802 /* Otherwise, simply call ld because tlink is already done. */
1804 maybe_run_lto_and_relink (ld2_argv
, object_lst
, object
, true);
1807 fork_execute ("ld", ld2_argv
, HAVE_GNU_LD
&& at_file_supplied
);
1808 post_ld_pass (false);
1811 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1812 constructors/destructors in shared libraries. */
1813 scan_prog_file (output_file
, PASS_SECOND
, SCAN_ALL
);
1816 maybe_unlink (c_file
);
1817 maybe_unlink (o_file
);
1819 #ifdef COLLECT_EXPORT_LIST
1820 maybe_unlink (export_file
);
1827 /* Unlink FILE unless we are debugging or this is the output_file
1828 and we may not unlink it. */
1831 maybe_unlink (const char *file
)
1835 notice ("[Leaving %s]\n", file
);
1839 if (file
== output_file
&& !may_unlink_output_file
)
1842 unlink_if_ordinary (file
);
1845 /* Call maybe_unlink on the NULL-terminated list, FILE_LIST. */
1848 maybe_unlink_list (char **file_list
)
1850 char **tmp
= file_list
;
1853 maybe_unlink (*(tmp
++));
1857 static long sequence_number
= 0;
1859 /* Add a name to a linked list. */
1862 add_to_list (struct head
*head_ptr
, const char *name
)
1865 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1867 strcpy (newid
->name
, name
);
1869 if (head_ptr
->first
)
1870 head_ptr
->last
->next
= newid
;
1872 head_ptr
->first
= newid
;
1874 /* Check for duplicate symbols. */
1875 for (p
= head_ptr
->first
;
1876 strcmp (name
, p
->name
) != 0;
1881 head_ptr
->last
->next
= 0;
1886 newid
->sequence
= ++sequence_number
;
1887 head_ptr
->last
= newid
;
1891 /* Grab the init priority number from an init function name that
1892 looks like "_GLOBAL_.I.12345.foo". */
1895 extract_init_priority (const char *name
)
1899 #ifdef TARGET_AIX_VERSION
1900 /* Run dependent module initializers before any constructors in this
1902 switch (is_ctor_dtor (name
))
1912 while (name
[pos
] == '_')
1914 pos
+= 10; /* strlen ("GLOBAL__X_") */
1916 /* Extract init_p number from ctor/dtor name. */
1917 pri
= atoi (name
+ pos
);
1918 return pri
? pri
: DEFAULT_INIT_PRIORITY
;
1921 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1922 ctors will be run from right to left, dtors from left to right. */
1925 sort_ids (struct head
*head_ptr
)
1927 /* id holds the current element to insert. id_next holds the next
1928 element to insert. id_ptr iterates through the already sorted elements
1929 looking for the place to insert id. */
1930 struct id
*id
, *id_next
, **id_ptr
;
1932 id
= head_ptr
->first
;
1934 /* We don't have any sorted elements yet. */
1935 head_ptr
->first
= NULL
;
1937 for (; id
; id
= id_next
)
1940 id
->sequence
= extract_init_priority (id
->name
);
1942 for (id_ptr
= &(head_ptr
->first
); ; id_ptr
= &((*id_ptr
)->next
))
1944 /* If the sequence numbers are the same, we put the id from the
1945 file later on the command line later in the list. */
1946 || id
->sequence
> (*id_ptr
)->sequence
1947 /* Hack: do lexical compare, too.
1948 || (id->sequence == (*id_ptr)->sequence
1949 && strcmp (id->name, (*id_ptr)->name) > 0) */
1958 /* Now set the sequence numbers properly so write_c_file works. */
1959 for (id
= head_ptr
->first
; id
; id
= id
->next
)
1960 id
->sequence
= ++sequence_number
;
1963 /* Write: `prefix', the names on list LIST, `suffix'. */
1966 write_list (FILE *stream
, const char *prefix
, struct id
*list
)
1970 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
1975 #ifdef COLLECT_EXPORT_LIST
1976 /* This function is really used only on AIX, but may be useful. */
1979 is_in_list (const char *prefix
, struct id
*list
)
1983 if (!strcmp (prefix
, list
->name
)) return 1;
1989 #endif /* COLLECT_EXPORT_LIST */
1991 /* Added for debugging purpose. */
1992 #ifdef COLLECT_EXPORT_LIST
1994 dump_list (FILE *stream
, const char *prefix
, struct id
*list
)
1998 fprintf (stream
, "%s%s,\n", prefix
, list
->name
);
2006 dump_prefix_list (FILE *stream
, const char *prefix
, struct prefix_list
*list
)
2010 fprintf (stream
, "%s%s,\n", prefix
, list
->prefix
);
2017 write_list_with_asm (FILE *stream
, const char *prefix
, struct id
*list
)
2021 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
2022 prefix
, list
->sequence
, list
->name
);
2027 /* Write out the constructor and destructor tables statically (for a shared
2028 object), along with the functions to execute them. */
2031 write_c_file_stat (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2035 int frames
= (frame_tables
.number
> 0);
2037 /* Figure out name of output_file, stripping off .so version. */
2038 q
= p
= lbasename (output_file
);
2050 if (filename_ncmp (q
, SHLIB_SUFFIX
, strlen (SHLIB_SUFFIX
)) == 0)
2052 q
+= strlen (SHLIB_SUFFIX
);
2059 /* q points to null at end of the string (or . of the .so version) */
2060 prefix
= XNEWVEC (char, q
- p
+ 1);
2061 strncpy (prefix
, p
, q
- p
);
2063 for (r
= prefix
; *r
; r
++)
2064 if (!ISALNUM ((unsigned char)*r
))
2067 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
2068 output_file
, prefix
);
2070 initname
= concat ("_GLOBAL__FI_", prefix
, NULL
);
2071 fininame
= concat ("_GLOBAL__FD_", prefix
, NULL
);
2072 #ifdef TARGET_AIX_VERSION
2073 aix_shared_initname
= concat ("_GLOBAL__AIXI_", prefix
, NULL
);
2074 aix_shared_fininame
= concat ("_GLOBAL__AIXD_", prefix
, NULL
);
2079 /* Write the tables as C code. */
2081 /* This count variable is used to prevent multiple calls to the
2082 constructors/destructors.
2083 This guard against multiple calls is important on AIX as the initfini
2084 functions are deliberately invoked multiple times as part of the
2085 mechanisms GCC uses to order constructors across different dependent
2086 shared libraries (see config/rs6000/aix.h).
2088 fprintf (stream
, "static int count;\n");
2089 fprintf (stream
, "typedef void entry_pt();\n");
2090 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2094 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2096 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2097 write_list (stream
, "\t\t&", frame_tables
.first
);
2098 fprintf (stream
, "\t0\n};\n");
2100 /* This must match what's in frame.h. */
2101 fprintf (stream
, "struct object {\n");
2102 fprintf (stream
, " void *pc_begin;\n");
2103 fprintf (stream
, " void *pc_end;\n");
2104 fprintf (stream
, " void *fde_begin;\n");
2105 fprintf (stream
, " void *fde_array;\n");
2106 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2107 fprintf (stream
, " struct object *next;\n");
2108 fprintf (stream
, "};\n");
2110 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2111 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2113 fprintf (stream
, "static void reg_frame () {\n");
2114 fprintf (stream
, "\tstatic struct object ob;\n");
2115 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2116 fprintf (stream
, "\t}\n");
2118 fprintf (stream
, "static void dereg_frame () {\n");
2119 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2120 fprintf (stream
, "\t}\n");
2123 fprintf (stream
, "void %s() {\n", initname
);
2124 if (constructors
.number
> 0 || frames
)
2126 fprintf (stream
, "\tstatic entry_pt *ctors[] = {\n");
2127 write_list (stream
, "\t\t", constructors
.first
);
2129 fprintf (stream
, "\treg_frame,\n");
2130 fprintf (stream
, "\t};\n");
2131 fprintf (stream
, "\tentry_pt **p;\n");
2132 fprintf (stream
, "\tif (count++ != 0) return;\n");
2133 fprintf (stream
, "\tp = ctors + %d;\n", constructors
.number
+ frames
);
2134 fprintf (stream
, "\twhile (p > ctors) (*--p)();\n");
2137 fprintf (stream
, "\t++count;\n");
2138 fprintf (stream
, "}\n");
2139 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2140 fprintf (stream
, "void %s() {\n", fininame
);
2141 if (destructors
.number
> 0 || frames
)
2143 fprintf (stream
, "\tstatic entry_pt *dtors[] = {\n");
2144 write_list (stream
, "\t\t", destructors
.first
);
2146 fprintf (stream
, "\tdereg_frame,\n");
2147 fprintf (stream
, "\t};\n");
2148 fprintf (stream
, "\tentry_pt **p;\n");
2149 fprintf (stream
, "\tif (--count != 0) return;\n");
2150 fprintf (stream
, "\tp = dtors;\n");
2151 fprintf (stream
, "\twhile (p < dtors + %d) (*p++)();\n",
2152 destructors
.number
+ frames
);
2154 fprintf (stream
, "}\n");
2158 COLLECT_SHARED_INIT_FUNC (stream
, initname
);
2159 COLLECT_SHARED_FINI_FUNC (stream
, fininame
);
2163 /* Write the constructor/destructor tables. */
2165 #ifndef LD_INIT_SWITCH
2167 write_c_file_glob (FILE *stream
, const char *name ATTRIBUTE_UNUSED
)
2169 /* Write the tables as C code. */
2171 int frames
= (frame_tables
.number
> 0);
2173 fprintf (stream
, "typedef void entry_pt();\n\n");
2175 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
2179 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
2181 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2182 write_list (stream
, "\t\t&", frame_tables
.first
);
2183 fprintf (stream
, "\t0\n};\n");
2185 /* This must match what's in frame.h. */
2186 fprintf (stream
, "struct object {\n");
2187 fprintf (stream
, " void *pc_begin;\n");
2188 fprintf (stream
, " void *pc_end;\n");
2189 fprintf (stream
, " void *fde_begin;\n");
2190 fprintf (stream
, " void *fde_array;\n");
2191 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2192 fprintf (stream
, " struct object *next;\n");
2193 fprintf (stream
, "};\n");
2195 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2196 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2198 fprintf (stream
, "static void reg_frame () {\n");
2199 fprintf (stream
, "\tstatic struct object ob;\n");
2200 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2201 fprintf (stream
, "\t}\n");
2203 fprintf (stream
, "static void dereg_frame () {\n");
2204 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2205 fprintf (stream
, "\t}\n");
2208 fprintf (stream
, "\nentry_pt * __CTOR_LIST__[] = {\n");
2209 fprintf (stream
, "\t(entry_pt *) %d,\n", constructors
.number
+ frames
);
2210 write_list (stream
, "\t", constructors
.first
);
2212 fprintf (stream
, "\treg_frame,\n");
2213 fprintf (stream
, "\t0\n};\n\n");
2215 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2217 fprintf (stream
, "\nentry_pt * __DTOR_LIST__[] = {\n");
2218 fprintf (stream
, "\t(entry_pt *) %d,\n", destructors
.number
+ frames
);
2219 write_list (stream
, "\t", destructors
.first
);
2221 fprintf (stream
, "\tdereg_frame,\n");
2222 fprintf (stream
, "\t0\n};\n\n");
2224 fprintf (stream
, "extern entry_pt %s;\n", NAME__MAIN
);
2225 fprintf (stream
, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN
);
2227 #endif /* ! LD_INIT_SWITCH */
2230 write_c_file (FILE *stream
, const char *name
)
2232 #ifndef LD_INIT_SWITCH
2234 write_c_file_glob (stream
, name
);
2237 write_c_file_stat (stream
, name
);
2240 #ifdef COLLECT_EXPORT_LIST
2242 write_aix_file (FILE *stream
, struct id
*list
)
2244 for (; list
; list
= list
->next
)
2246 fputs (list
->name
, stream
);
2247 putc ('\n', stream
);
2252 #ifdef OBJECT_FORMAT_NONE
2254 /* Check to make sure the file is an LTO object file. */
2257 maybe_lto_object_file (const char *prog_name
)
2260 unsigned char buf
[4];
2263 static unsigned char elfmagic
[4] = { 0x7f, 'E', 'L', 'F' };
2264 static unsigned char coffmagic
[2] = { 0x4c, 0x01 };
2265 static unsigned char coffmagic_x64
[2] = { 0x64, 0x86 };
2266 static unsigned char machomagic
[4][4] = {
2267 { 0xcf, 0xfa, 0xed, 0xfe },
2268 { 0xce, 0xfa, 0xed, 0xfe },
2269 { 0xfe, 0xed, 0xfa, 0xcf },
2270 { 0xfe, 0xed, 0xfa, 0xce }
2273 f
= fopen (prog_name
, "rb");
2276 if (fread (buf
, sizeof (buf
), 1, f
) != 1)
2280 if (memcmp (buf
, elfmagic
, sizeof (elfmagic
)) == 0
2281 || memcmp (buf
, coffmagic
, sizeof (coffmagic
)) == 0
2282 || memcmp (buf
, coffmagic_x64
, sizeof (coffmagic_x64
)) == 0)
2284 for (i
= 0; i
< 4; i
++)
2285 if (memcmp (buf
, machomagic
[i
], sizeof (machomagic
[i
])) == 0)
2291 /* Generic version to scan the name list of the loaded program for
2292 the symbols g++ uses for static constructors and destructors. */
2295 scan_prog_file (const char *prog_name
, scanpass which_pass
,
2298 void (*int_handler
) (int);
2300 void (*quit_handler
) (int);
2302 char *real_nm_argv
[4];
2303 const char **nm_argv
= CONST_CAST2 (const char **, char**, real_nm_argv
);
2305 struct pex_obj
*pex
;
2312 if (which_pass
== PASS_SECOND
)
2315 /* LTO objects must be in a known format. This check prevents
2316 us from accepting an archive containing LTO objects, which
2317 gcc cannot currently handle. */
2318 if (which_pass
== PASS_LTOINFO
&& !maybe_lto_object_file (prog_name
))
2321 /* If we do not have an `nm', complain. */
2322 if (nm_file_name
== 0)
2323 fatal_error ("cannot find 'nm'");
2325 nm_argv
[argc
++] = nm_file_name
;
2326 if (NM_FLAGS
[0] != '\0')
2327 nm_argv
[argc
++] = NM_FLAGS
;
2329 nm_argv
[argc
++] = prog_name
;
2330 nm_argv
[argc
++] = (char *) 0;
2332 /* Trace if needed. */
2335 const char **p_argv
;
2338 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2339 fprintf (stderr
, " %s", str
);
2341 fprintf (stderr
, "\n");
2347 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2349 fatal_error ("pex_init failed: %m");
2351 errmsg
= pex_run (pex
, 0, nm_file_name
, real_nm_argv
, NULL
, HOST_BIT_BUCKET
,
2358 fatal_error ("%s: %m", _(errmsg
));
2361 fatal_error (errmsg
);
2364 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2366 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2369 inf
= pex_read_output (pex
, 0);
2371 fatal_error ("can't open nm output: %m");
2375 if (which_pass
== PASS_LTOINFO
)
2376 fprintf (stderr
, "\nnm output with LTO info marker symbol.\n");
2378 fprintf (stderr
, "\nnm output with constructors/destructors.\n");
2381 /* Read each line of nm output. */
2382 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2388 fprintf (stderr
, "\t%s\n", buf
);
2390 if (which_pass
== PASS_LTOINFO
)
2395 /* Look for the LTO info marker symbol, and add filename to
2396 the LTO objects list if found. */
2397 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n'; p
++)
2398 if (ch
== ' ' && p
[1] == '_' && p
[2] == '_'
2399 && (strncmp (p
+ (p
[3] == '_' ? 2 : 1), "__gnu_lto_v1", 12) == 0)
2400 && ISSPACE (p
[p
[3] == '_' ? 14 : 13]))
2402 add_lto_object (<o_objects
, prog_name
);
2404 /* We need to read all the input, so we can't just
2405 return here. But we can avoid useless work. */
2414 /* If it contains a constructor or destructor name, add the name
2415 to the appropriate list unless this is a kind of symbol we're
2416 not supposed to even consider. */
2418 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n' && ch
!= '_'; p
++)
2419 if (ch
== ' ' && p
[1] == 'U' && p
[2] == ' ')
2426 /* Find the end of the symbol name.
2427 Do not include `|', because Encore nm can tack that on the end. */
2428 for (end
= p
; (ch2
= *end
) != '\0' && !ISSPACE (ch2
) && ch2
!= '|';
2435 switch (is_ctor_dtor (name
))
2438 if (! (filter
& SCAN_CTOR
))
2440 if (which_pass
!= PASS_LIB
)
2441 add_to_list (&constructors
, name
);
2445 if (! (filter
& SCAN_DTOR
))
2447 if (which_pass
!= PASS_LIB
)
2448 add_to_list (&destructors
, name
);
2452 if (! (filter
& SCAN_INIT
))
2454 if (which_pass
!= PASS_LIB
)
2455 fatal_error ("init function found in object %s", prog_name
);
2456 #ifndef LD_INIT_SWITCH
2457 add_to_list (&constructors
, name
);
2462 if (! (filter
& SCAN_FINI
))
2464 if (which_pass
!= PASS_LIB
)
2465 fatal_error ("fini function found in object %s", prog_name
);
2466 #ifndef LD_FINI_SWITCH
2467 add_to_list (&destructors
, name
);
2472 if (! (filter
& SCAN_DWEH
))
2474 if (which_pass
!= PASS_LIB
)
2475 add_to_list (&frame_tables
, name
);
2478 default: /* not a constructor or destructor */
2484 fprintf (stderr
, "\n");
2486 do_wait (nm_file_name
, pex
);
2488 signal (SIGINT
, int_handler
);
2490 signal (SIGQUIT
, quit_handler
);
2496 /* Use the List Dynamic Dependencies program to find shared libraries that
2497 the output file depends upon and their initialization/finalization
2498 routines, if any. */
2501 scan_libraries (const char *prog_name
)
2503 static struct head libraries
; /* list of shared libraries found */
2505 void (*int_handler
) (int);
2507 void (*quit_handler
) (int);
2509 char *real_ldd_argv
[4];
2510 const char **ldd_argv
= CONST_CAST2 (const char **, char **, real_ldd_argv
);
2512 struct pex_obj
*pex
;
2518 /* If we do not have an `ldd', complain. */
2519 if (ldd_file_name
== 0)
2521 error ("cannot find 'ldd'");
2525 ldd_argv
[argc
++] = ldd_file_name
;
2526 ldd_argv
[argc
++] = prog_name
;
2527 ldd_argv
[argc
++] = (char *) 0;
2529 /* Trace if needed. */
2532 const char **p_argv
;
2535 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2536 fprintf (stderr
, " %s", str
);
2538 fprintf (stderr
, "\n");
2544 pex
= pex_init (PEX_USE_PIPES
, "collect2", NULL
);
2546 fatal_error ("pex_init failed: %m");
2548 errmsg
= pex_run (pex
, 0, ldd_file_name
, real_ldd_argv
, NULL
, NULL
, &err
);
2554 fatal_error ("%s: %m", _(errmsg
));
2557 fatal_error (errmsg
);
2560 int_handler
= (void (*) (int)) signal (SIGINT
, SIG_IGN
);
2562 quit_handler
= (void (*) (int)) signal (SIGQUIT
, SIG_IGN
);
2565 inf
= pex_read_output (pex
, 0);
2567 fatal_error ("can't open ldd output: %m");
2570 notice ("\nldd output with constructors/destructors.\n");
2572 /* Read each line of ldd output. */
2573 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2576 char *name
, *end
, *p
= buf
;
2578 /* Extract names of libraries and add to list. */
2579 PARSE_LDD_OUTPUT (p
);
2584 if (strncmp (name
, "not found", sizeof ("not found") - 1) == 0)
2585 fatal_error ("dynamic dependency %s not found", buf
);
2587 /* Find the end of the symbol name. */
2589 (ch2
= *end
) != '\0' && ch2
!= '\n' && !ISSPACE (ch2
) && ch2
!= '|';
2594 if (access (name
, R_OK
) == 0)
2595 add_to_list (&libraries
, name
);
2597 fatal_error ("unable to open dynamic dependency '%s'", buf
);
2600 fprintf (stderr
, "\t%s\n", buf
);
2603 fprintf (stderr
, "\n");
2605 do_wait (ldd_file_name
, pex
);
2607 signal (SIGINT
, int_handler
);
2609 signal (SIGQUIT
, quit_handler
);
2612 /* Now iterate through the library list adding their symbols to
2614 for (list
= libraries
.first
; list
; list
= list
->next
)
2615 scan_prog_file (list
->name
, PASS_LIB
, SCAN_ALL
);
2618 #endif /* LDD_SUFFIX */
2620 #endif /* OBJECT_FORMAT_NONE */
2624 * COFF specific stuff.
2627 #ifdef OBJECT_FORMAT_COFF
2629 #if defined (EXTENDED_COFF)
2631 # define GCC_SYMBOLS(X) (SYMHEADER (X).isymMax + SYMHEADER (X).iextMax)
2632 # define GCC_SYMENT SYMR
2633 # define GCC_OK_SYMBOL(X) ((X).st == stProc || (X).st == stGlobal)
2634 # define GCC_SYMINC(X) (1)
2635 # define GCC_SYMZERO(X) (SYMHEADER (X).isymMax)
2636 # define GCC_CHECK_HDR(X) (PSYMTAB (X) != 0)
2640 # define GCC_SYMBOLS(X) (HEADER (ldptr).f_nsyms)
2641 # define GCC_SYMENT SYMENT
2642 # if defined (C_WEAKEXT)
2643 # define GCC_OK_SYMBOL(X) \
2644 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2645 ((X).n_scnum > N_UNDEF) && \
2647 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2648 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2649 # define GCC_UNDEF_SYMBOL(X) \
2650 (((X).n_sclass == C_EXT || (X).n_sclass == C_WEAKEXT) && \
2651 ((X).n_scnum == N_UNDEF))
2653 # define GCC_OK_SYMBOL(X) \
2654 (((X).n_sclass == C_EXT) && \
2655 ((X).n_scnum > N_UNDEF) && \
2657 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2658 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2659 # define GCC_UNDEF_SYMBOL(X) \
2660 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2662 # define GCC_SYMINC(X) ((X).n_numaux+1)
2663 # define GCC_SYMZERO(X) 0
2665 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2666 #if TARGET_AIX_VERSION >= 51
2667 # define GCC_CHECK_HDR(X) \
2668 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2669 || (HEADER (X).f_magic == 0767 && aix64_flag)) \
2670 && !(HEADER (X).f_flags & F_LOADONLY))
2672 # define GCC_CHECK_HDR(X) \
2673 (((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2674 || (HEADER (X).f_magic == 0757 && aix64_flag)) \
2675 && !(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
))
2760 fatal_error ("%s: not a COFF file", prog_name
);
2762 if (GCC_CHECK_HDR (ldptr
))
2764 sym_count
= GCC_SYMBOLS (ldptr
);
2765 sym_index
= GCC_SYMZERO (ldptr
);
2767 #ifdef COLLECT_EXPORT_LIST
2768 /* Is current archive member a shared object? */
2769 is_shared
= HEADER (ldptr
).f_flags
& F_SHROBJ
;
2772 while (sym_index
< sym_count
)
2776 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2778 sym_index
+= GCC_SYMINC (symbol
);
2780 if (GCC_OK_SYMBOL (symbol
))
2784 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2785 continue; /* Should never happen. */
2787 #ifdef XCOFF_DEBUGGING_INFO
2788 /* All AIX function names have a duplicate entry
2789 beginning with a dot. */
2794 switch (is_ctor_dtor (name
))
2796 #if TARGET_AIX_VERSION
2797 /* Add AIX shared library initalisers/finalisers
2798 to the constructors/destructors list of the
2801 if (! (filter
& SCAN_CTOR
))
2803 if (is_shared
&& !aixlazy_flag
)
2804 add_to_list (&constructors
, name
);
2808 if (! (filter
& SCAN_DTOR
))
2810 if (is_shared
&& !aixlazy_flag
)
2811 add_to_list (&destructors
, name
);
2816 if (! (filter
& SCAN_CTOR
))
2819 add_to_list (&constructors
, name
);
2820 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2821 if (which_pass
== PASS_OBJ
)
2822 add_to_list (&exports
, name
);
2827 if (! (filter
& SCAN_DTOR
))
2830 add_to_list (&destructors
, name
);
2831 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2832 if (which_pass
== PASS_OBJ
)
2833 add_to_list (&exports
, name
);
2837 #ifdef COLLECT_EXPORT_LIST
2839 if (! (filter
& SCAN_INIT
))
2841 #ifndef LD_INIT_SWITCH
2843 add_to_list (&constructors
, name
);
2848 if (! (filter
& SCAN_FINI
))
2850 #ifndef LD_INIT_SWITCH
2852 add_to_list (&destructors
, name
);
2858 if (! (filter
& SCAN_DWEH
))
2861 add_to_list (&frame_tables
, name
);
2862 #if defined (COLLECT_EXPORT_LIST) && !defined (LD_INIT_SWITCH)
2863 if (which_pass
== PASS_OBJ
)
2864 add_to_list (&exports
, name
);
2868 default: /* not a constructor or destructor */
2869 #ifdef COLLECT_EXPORT_LIST
2870 /* Explicitly export all global symbols when
2871 building a shared object on AIX, but do not
2872 re-export symbols from another shared object
2873 and do not export symbols if the user
2874 provides an explicit export list. */
2875 if (shared_obj
&& !is_shared
2876 && which_pass
== PASS_OBJ
&& !export_flag
)
2877 add_to_list (&exports
, name
);
2883 #if !defined(EXTENDED_COFF)
2884 fprintf (stderr
, "\tsec=%d class=%d type=%s%o %s\n",
2885 symbol
.n_scnum
, symbol
.n_sclass
,
2886 (symbol
.n_type
? "0" : ""), symbol
.n_type
,
2890 "\tiss = %5d, value = %5ld, index = %5d, name = %s\n",
2891 symbol
.iss
, (long) symbol
.value
, symbol
.index
, name
);
2896 #ifdef COLLECT_EXPORT_LIST
2899 /* If archive contains both 32-bit and 64-bit objects,
2900 we want to skip objects in other mode so mismatch normal. */
2902 fprintf (stderr
, "%s : magic=%o aix64=%d mismatch\n",
2903 prog_name
, HEADER (ldptr
).f_magic
, aix64_flag
);
2909 fatal_error ("%s: cannot open as COFF file", prog_name
);
2911 #ifdef COLLECT_EXPORT_LIST
2912 /* On AIX loop continues while there are more members in archive. */
2914 while (ldclose (ldptr
) == FAILURE
);
2916 /* Otherwise we simply close ldptr. */
2917 (void) ldclose (ldptr
);
2920 #endif /* OBJECT_FORMAT_COFF */
2922 #ifdef COLLECT_EXPORT_LIST
2923 /* Given a library name without "lib" prefix, this function
2924 returns a full library name including a path. */
2926 resolve_lib_name (const char *name
)
2930 /* Library extensions for AIX dynamic linking. */
2931 const char * const libexts
[2] = {"a", "so"};
2933 for (i
= 0; libpaths
[i
]; i
++)
2934 if (libpaths
[i
]->max_len
> l
)
2935 l
= libpaths
[i
]->max_len
;
2937 lib_buf
= XNEWVEC (char, l
+ strlen (name
) + 10);
2939 for (i
= 0; libpaths
[i
]; i
++)
2941 struct prefix_list
*list
= libpaths
[i
]->plist
;
2942 for (; list
; list
= list
->next
)
2944 /* The following lines are needed because path_prefix list
2945 may contain directories both with trailing DIR_SEPARATOR and
2948 if (!IS_DIR_SEPARATOR (list
->prefix
[strlen (list
->prefix
)-1]))
2950 for (j
= 0; j
< 2; j
++)
2952 sprintf (lib_buf
, "%s%slib%s.%s",
2953 list
->prefix
, p
, name
,
2954 libexts
[(j
+ aixrtl_flag
) % 2]);
2955 if (debug
) fprintf (stderr
, "searching for: %s\n", lib_buf
);
2956 if (file_exists (lib_buf
))
2958 if (debug
) fprintf (stderr
, "found: %s\n", lib_buf
);
2965 fprintf (stderr
, "not found\n");
2967 fatal_error ("library lib%s not found", name
);
2970 #endif /* COLLECT_EXPORT_LIST */
2972 #ifdef COLLECT_RUN_DSYMUTIL
2973 static int flag_dsym
= false;
2974 static int flag_idsym
= false;
2977 process_args (int *argcp
, char **argv
) {
2980 for (i
=0; i
<argc
; ++i
)
2982 if (strcmp (argv
[i
], "-dsym") == 0)
2985 /* Remove the flag, as we handle all processing for it. */
2988 argv
[j
] = argv
[j
+1];
2993 else if (strcmp (argv
[i
], "-idsym") == 0)
2996 /* Remove the flag, as we handle all processing for it. */
2999 argv
[j
] = argv
[j
+1];
3008 do_dsymutil (const char *output_file
) {
3009 const char *dsymutil
= DSYMUTIL
+ 1;
3010 struct pex_obj
*pex
;
3011 char **real_argv
= XCNEWVEC (char *, 3);
3012 const char ** argv
= CONST_CAST2 (const char **, char **,
3016 argv
[1] = output_file
;
3017 argv
[2] = (char *) 0;
3019 pex
= collect_execute (dsymutil
, real_argv
, NULL
, NULL
,
3020 PEX_LAST
| PEX_SEARCH
, false);
3021 do_wait (dsymutil
, pex
);
3025 post_ld_pass (bool temp_file
) {
3026 if (!(temp_file
&& flag_idsym
) && !flag_dsym
)
3029 do_dsymutil (output_file
);
3033 process_args (int *argcp ATTRIBUTE_UNUSED
, char **argv ATTRIBUTE_UNUSED
) { }
3034 static void post_ld_pass (bool temp_file ATTRIBUTE_UNUSED
) { }