1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001 Free Software Foundation, Inc.
5 Contributed by Chris Smith (csmith@convex.com).
6 Heavily modified by Michael Meissner (meissner@cygnus.com),
7 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
9 This file is part of GNU CC.
11 GNU CC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 GNU CC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GNU CC; see the file COPYING. If not, write to
23 the Free Software Foundation, 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
27 /* Build tables of static constructors and destructors and run ld. */
32 #if ! defined( SIGCHLD ) && defined( SIGCLD )
33 # define SIGCHLD SIGCLD
36 #ifdef vfork /* Autoconf may define this to fork for us. */
37 # define VFORK_STRING "fork"
39 # define VFORK_STRING "vfork"
45 #define vfork() (decc$$alloc_vfork_blocks() >= 0 ? \
46 lib$get_current_invo_context(decc$$get_vfork_jmpbuf()) : -1)
49 #ifndef LIBRARY_PATH_ENV
50 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
61 /* Obstack allocation and deallocation routines. */
62 #define obstack_chunk_alloc xmalloc
63 #define obstack_chunk_free free
65 /* On certain systems, we have code that works by scanning the object file
66 directly. But this code uses system-specific header files and library
67 functions, so turn it off in a cross-compiler. Likewise, the names of
68 the utilities are not correct for a cross-compiler; we have to hope that
69 cross-versions are in the proper directories. */
72 #undef SUNOS4_SHARED_LIBRARIES
73 #undef OBJECT_FORMAT_COFF
74 #undef OBJECT_FORMAT_ROSE
76 #undef REAL_LD_FILE_NAME
77 #undef REAL_NM_FILE_NAME
78 #undef REAL_STRIP_FILE_NAME
81 /* If we cannot use a special method, use the ordinary one:
82 run nm to find what symbols are present.
83 In a cross-compiler, this means you need a cross nm,
84 but that is not quite as unpleasant as special headers. */
86 #if !defined (OBJECT_FORMAT_COFF) && !defined (OBJECT_FORMAT_ROSE)
87 #define OBJECT_FORMAT_NONE
90 #ifdef OBJECT_FORMAT_COFF
99 /* Many versions of ldfcn.h define these. */
107 /* Some systems have an ISCOFF macro, but others do not. In some cases
108 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
109 that either do not have an ISCOFF macro in /usr/include or for those
110 where it is wrong. */
113 #define MY_ISCOFF(X) ISCOFF (X)
116 #endif /* OBJECT_FORMAT_COFF */
118 #ifdef OBJECT_FORMAT_ROSE
125 #include <sys/mman.h>
129 #include <mach_o_format.h>
130 #include <mach_o_header.h>
131 #include <mach_o_vals.h>
132 #include <mach_o_types.h>
134 #endif /* OBJECT_FORMAT_ROSE */
136 #ifdef OBJECT_FORMAT_NONE
138 /* Default flags to pass to nm. */
140 #define NM_FLAGS "-n"
143 #endif /* OBJECT_FORMAT_NONE */
145 /* Some systems use __main in a way incompatible with its use in gcc, in these
146 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
147 give the same symbol without quotes for an alternative entry point. You
148 must define both, or neither. */
150 #define NAME__MAIN "__main"
151 #define SYMBOL__MAIN __main
154 /* This must match tree.h. */
155 #define DEFAULT_INIT_PRIORITY 65535
157 #if defined (LDD_SUFFIX) || SUNOS4_SHARED_LIBRARIES
158 #define SCAN_LIBRARIES
162 int do_collecting
= 1;
164 int do_collecting
= 0;
167 /* Linked lists of constructor and destructor names. */
183 /* Enumeration giving which pass this is for scanning the program file. */
186 PASS_FIRST
, /* without constructors */
187 PASS_OBJ
, /* individual objects */
188 PASS_LIB
, /* looking for shared libraries */
189 PASS_SECOND
/* with constructors linked in */
192 int vflag
; /* true if -v */
193 static int rflag
; /* true if -r */
194 static int strip_flag
; /* true if -s */
195 #ifdef COLLECT_EXPORT_LIST
196 static int export_flag
; /* true if -bE */
197 static int aix64_flag
; /* true if -b64 */
200 int debug
; /* true if -debug */
202 static int shared_obj
; /* true if -shared */
204 static const char *c_file
; /* <xxx>.c for constructor/destructor list. */
205 static const char *o_file
; /* <xxx>.o for constructor/destructor list. */
206 #ifdef COLLECT_EXPORT_LIST
207 static const char *export_file
; /* <xxx>.x for AIX export list. */
209 const char *ldout
; /* File for ld errors. */
210 static const char *output_file
; /* Output file for ld. */
211 static const char *nm_file_name
; /* pathname of nm */
213 static const char *ldd_file_name
; /* pathname of ldd (or equivalent) */
215 static const char *strip_file_name
; /* pathname of strip */
216 const char *c_file_name
; /* pathname of gcc */
217 static char *initname
, *fininame
; /* names of init and fini funcs */
219 static struct head constructors
; /* list of constructors found */
220 static struct head destructors
; /* list of destructors found */
221 #ifdef COLLECT_EXPORT_LIST
222 static struct head exports
; /* list of exported symbols */
224 static struct head frame_tables
; /* list of frame unwind info tables */
226 struct obstack temporary_obstack
;
227 struct obstack permanent_obstack
;
228 char * temporary_firstobj
;
230 /* Holds the return value of pexecute. */
233 /* Defined in the automatically-generated underscore.c. */
234 extern int prepends_underscore
;
236 #ifndef GET_ENV_PATH_LIST
237 #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0)
240 /* Structure to hold all the directories in which to search for files to
245 const char *prefix
; /* String to prepend to the path. */
246 struct prefix_list
*next
; /* Next in linked list. */
251 struct prefix_list
*plist
; /* List of prefixes to try */
252 int max_len
; /* Max length of a prefix in PLIST */
253 const char *name
; /* Name of this list (used in config stuff) */
256 #ifdef COLLECT_EXPORT_LIST
257 /* Lists to keep libraries to be scanned for global constructors/destructors. */
258 static struct head libs
; /* list of libraries */
259 static struct path_prefix cmdline_lib_dirs
; /* directories specified with -L */
260 static struct path_prefix libpath_lib_dirs
; /* directories in LIBPATH */
261 static struct path_prefix
*libpaths
[3] = {&cmdline_lib_dirs
,
262 &libpath_lib_dirs
, NULL
};
263 static const char *libexts
[3] = {"a", "so", NULL
}; /* possible library extentions */
266 static void handler
PARAMS ((int));
267 static int is_ctor_dtor
PARAMS ((const char *));
268 static char *find_a_file
PARAMS ((struct path_prefix
*, const char *));
269 static void add_prefix
PARAMS ((struct path_prefix
*, const char *));
270 static void prefix_from_env
PARAMS ((const char *, struct path_prefix
*));
271 static void prefix_from_string
PARAMS ((const char *, struct path_prefix
*));
272 static void do_wait
PARAMS ((const char *));
273 static void fork_execute
PARAMS ((const char *, char **));
274 static void maybe_unlink
PARAMS ((const char *));
275 static void add_to_list
PARAMS ((struct head
*, const char *));
276 static int extract_init_priority
PARAMS ((const char *));
277 static void sort_ids
PARAMS ((struct head
*));
278 static void write_list
PARAMS ((FILE *, const char *, struct id
*));
279 #ifdef COLLECT_EXPORT_LIST
280 static void dump_list
PARAMS ((FILE *, const char *, struct id
*));
283 static void dump_prefix_list
PARAMS ((FILE *, const char *, struct prefix_list
*));
285 static void write_list_with_asm
PARAMS ((FILE *, const char *, struct id
*));
286 static void write_c_file
PARAMS ((FILE *, const char *));
287 static void write_c_file_stat
PARAMS ((FILE *, const char *));
288 #ifndef LD_INIT_SWITCH
289 static void write_c_file_glob
PARAMS ((FILE *, const char *));
291 static void scan_prog_file
PARAMS ((const char *, enum pass
));
292 #ifdef SCAN_LIBRARIES
293 static void scan_libraries
PARAMS ((const char *));
295 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
296 static int is_in_args
PARAMS ((const char *, const char **, const char **));
298 #ifdef COLLECT_EXPORT_LIST
299 static int is_in_list
PARAMS ((const char *, struct id
*));
300 static void write_aix_file
PARAMS ((FILE *, struct id
*));
301 static char *resolve_lib_name
PARAMS ((const char *));
302 static int ignore_library
PARAMS ((const char *));
304 static char *extract_string
PARAMS ((const char **));
319 while ((fd
= dup (oldfd
)) != newfd
&& fd
>= 0) /* good enough for low fd's */
322 close (fdtmp
[--fdx
]);
328 /* Delete tempfiles and exit function. */
331 collect_exit (status
)
334 if (c_file
!= 0 && c_file
[0])
335 maybe_unlink (c_file
);
337 if (o_file
!= 0 && o_file
[0])
338 maybe_unlink (o_file
);
340 #ifdef COLLECT_EXPORT_LIST
341 if (export_file
!= 0 && export_file
[0])
342 maybe_unlink (export_file
);
345 if (ldout
!= 0 && ldout
[0])
348 maybe_unlink (ldout
);
351 if (status
!= 0 && output_file
!= 0 && output_file
[0])
352 maybe_unlink (output_file
);
358 /* Notify user of a non-error. */
360 notice
VPARAMS ((const char *msgid
, ...))
362 #ifndef ANSI_PROTOTYPES
367 VA_START (ap
, msgid
);
369 #ifndef ANSI_PROTOTYPES
370 msgid
= va_arg (ap
, const char *);
373 vfprintf (stderr
, _(msgid
), ap
);
377 /* Die when sys call fails. */
380 fatal_perror
VPARAMS ((const char * msgid
, ...))
382 #ifndef ANSI_PROTOTYPES
388 VA_START (ap
, msgid
);
390 #ifndef ANSI_PROTOTYPES
391 msgid
= va_arg (ap
, const char *);
394 fprintf (stderr
, "collect2: ");
395 vfprintf (stderr
, _(msgid
), ap
);
396 fprintf (stderr
, ": %s\n", xstrerror (e
));
399 collect_exit (FATAL_EXIT_CODE
);
405 fatal
VPARAMS ((const char * msgid
, ...))
407 #ifndef ANSI_PROTOTYPES
412 VA_START (ap
, msgid
);
414 #ifndef ANSI_PROTOTYPES
415 msgid
= va_arg (ap
, const char *);
418 fprintf (stderr
, "collect2: ");
419 vfprintf (stderr
, _(msgid
), ap
);
420 fprintf (stderr
, "\n");
423 collect_exit (FATAL_EXIT_CODE
);
426 /* Write error message. */
429 error
VPARAMS ((const char * msgid
, ...))
431 #ifndef ANSI_PROTOTYPES
436 VA_START (ap
, msgid
);
438 #ifndef ANSI_PROTOTYPES
439 msgid
= va_arg (ap
, const char *);
442 fprintf (stderr
, "collect2: ");
443 vfprintf (stderr
, _(msgid
), ap
);
444 fprintf (stderr
, "\n");
448 /* In case obstack is linked in, and abort is defined to fancy_abort,
449 provide a default entry. */
454 fatal ("internal error");
461 if (c_file
!= 0 && c_file
[0])
462 maybe_unlink (c_file
);
464 if (o_file
!= 0 && o_file
[0])
465 maybe_unlink (o_file
);
467 if (ldout
!= 0 && ldout
[0])
468 maybe_unlink (ldout
);
470 #ifdef COLLECT_EXPORT_LIST
471 if (export_file
!= 0 && export_file
[0])
472 maybe_unlink (export_file
);
475 signal (signo
, SIG_DFL
);
476 kill (getpid (), signo
);
484 return access (name
, R_OK
) == 0;
487 /* Parse a reasonable subset of shell quoting syntax. */
504 obstack_1grow (&temporary_obstack
, c
);
505 else if (! inside
&& c
== ' ')
507 else if (! inside
&& c
== '\\')
512 obstack_1grow (&temporary_obstack
, c
);
515 obstack_1grow (&temporary_obstack
, '\0');
517 return obstack_finish (&temporary_obstack
);
524 FILE *stream
= fopen (name
, "r");
525 int no_demangle
= !! getenv ("COLLECT_NO_DEMANGLE");
532 while (c
= getc (stream
),
533 c
!= EOF
&& (ISALNUM (c
) || c
== '_' || c
== '$' || c
== '.'))
534 obstack_1grow (&temporary_obstack
, c
);
535 if (obstack_object_size (&temporary_obstack
) > 0)
537 const char *word
, *p
;
539 obstack_1grow (&temporary_obstack
, '\0');
540 word
= obstack_finish (&temporary_obstack
);
543 ++word
, putc ('.', stderr
);
545 if (*p
== '_' && prepends_underscore
)
551 result
= cplus_demangle (p
, DMGL_PARAMS
| DMGL_ANSI
);
556 fputs (result
, stderr
);
558 diff
= strlen (word
) - strlen (result
);
560 --diff
, putc (' ', stderr
);
561 while (diff
< 0 && c
== ' ')
562 ++diff
, c
= getc (stream
);
567 fputs (word
, stderr
);
570 obstack_free (&temporary_obstack
, temporary_firstobj
);
579 /* Decide whether the given symbol is: a constructor (1), a destructor
580 (2), a routine in a shared object that calls all the constructors
581 (3) or destructors (4), a DWARF exception-handling table (5), or
582 nothing special (0). */
588 struct names
{ const char *name
; int len
; int ret
; int two_underscores
; };
590 register struct names
*p
;
592 register const char *orig_s
= s
;
594 static struct names special
[] = {
595 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, 1, 0 },
596 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, 2, 0 },
597 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, 5, 0 },
598 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, 3, 0 },
599 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, 4, 0 },
600 #ifdef CFRONT_LOSSAGE /* Do not collect cfront initialization functions.
601 cfront has its own linker procedure to collect them;
602 if collect2 gets them too, they get collected twice
603 when the cfront procedure is run and the compiler used
604 for linking happens to be GCC. */
605 { "sti__", sizeof ("sti__")-1, 1, 1 },
606 { "std__", sizeof ("std__")-1, 2, 1 },
607 #endif /* CFRONT_LOSSAGE */
611 while ((ch
= *s
) == '_')
617 for (p
= &special
[0]; p
->len
> 0; p
++)
620 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
621 && strncmp(s
, p
->name
, p
->len
) == 0)
629 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
630 and one from the PATH variable. */
632 static struct path_prefix cpath
, path
;
635 /* This is the name of the target machine. We use it to form the name
636 of the files to execute. */
638 static const char *const target_machine
= TARGET_MACHINE
;
641 /* Search for NAME using prefix list PPREFIX. We only look for executable
644 Return 0 if not found, otherwise return its name, allocated with malloc. */
647 find_a_file (pprefix
, name
)
648 struct path_prefix
*pprefix
;
652 struct prefix_list
*pl
;
653 int len
= pprefix
->max_len
+ strlen (name
) + 1;
656 fprintf (stderr
, "Looking for '%s'\n", name
);
658 #ifdef HOST_EXECUTABLE_SUFFIX
659 len
+= strlen (HOST_EXECUTABLE_SUFFIX
);
662 temp
= xmalloc (len
);
664 /* Determine the filename to execute (special case for absolute paths). */
667 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
668 || (*name
&& name
[1] == ':')
672 if (access (name
, X_OK
) == 0)
677 fprintf (stderr
, " - found: absolute path\n");
682 #ifdef HOST_EXECUTABLE_SUFFIX
683 /* Some systems have a suffix for executable files.
684 So try appending that. */
686 strcat (temp
, HOST_EXECUTABLE_SUFFIX
);
688 if (access (temp
, X_OK
) == 0)
693 fprintf (stderr
, " - failed to locate using absolute path\n");
696 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
700 strcpy (temp
, pl
->prefix
);
703 if (stat (temp
, &st
) >= 0
704 && ! S_ISDIR (st
.st_mode
)
705 && access (temp
, X_OK
) == 0)
708 #ifdef HOST_EXECUTABLE_SUFFIX
709 /* Some systems have a suffix for executable files.
710 So try appending that. */
711 strcat (temp
, HOST_EXECUTABLE_SUFFIX
);
713 if (stat (temp
, &st
) >= 0
714 && ! S_ISDIR (st
.st_mode
)
715 && access (temp
, X_OK
) == 0)
720 if (debug
&& pprefix
->plist
== NULL
)
721 fprintf (stderr
, " - failed: no entries in prefix list\n");
727 /* Add an entry for PREFIX to prefix list PPREFIX. */
730 add_prefix (pprefix
, prefix
)
731 struct path_prefix
*pprefix
;
734 struct prefix_list
*pl
, **prev
;
739 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
744 prev
= &pprefix
->plist
;
746 /* Keep track of the longest prefix */
748 len
= strlen (prefix
);
749 if (len
> pprefix
->max_len
)
750 pprefix
->max_len
= len
;
752 pl
= (struct prefix_list
*) xmalloc (sizeof (struct prefix_list
));
753 pl
->prefix
= xstrdup (prefix
);
758 pl
->next
= (struct prefix_list
*) 0;
762 /* Take the value of the environment variable ENV, break it into a path, and
763 add of the entries to PPREFIX. */
766 prefix_from_env (env
, pprefix
)
768 struct path_prefix
*pprefix
;
771 GET_ENV_PATH_LIST (p
, env
);
774 prefix_from_string (p
, pprefix
);
778 prefix_from_string (p
, pprefix
)
780 struct path_prefix
*pprefix
;
782 const char *startp
, *endp
;
783 char *nstore
= (char *) xmalloc (strlen (p
) + 3);
786 fprintf (stderr
, "Convert string '%s' into prefixes, separator = '%c'\n", p
, PATH_SEPARATOR
);
791 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
793 strncpy (nstore
, startp
, endp
-startp
);
796 strcpy (nstore
, "./");
798 else if (! IS_DIR_SEPARATOR (endp
[-1]))
800 nstore
[endp
-startp
] = DIR_SEPARATOR
;
801 nstore
[endp
-startp
+1] = 0;
804 nstore
[endp
-startp
] = 0;
807 fprintf (stderr
, " - add prefix: %s\n", nstore
);
809 add_prefix (pprefix
, nstore
);
812 endp
= startp
= endp
+ 1;
821 int main
PARAMS ((int, char *[]));
827 const char *ld_suffix
= "ld";
828 const char *full_ld_suffix
= ld_suffix
;
829 const char *real_ld_suffix
= "real-ld";
830 const char *collect_ld_suffix
= "collect-ld";
831 const char *nm_suffix
= "nm";
832 const char *full_nm_suffix
= nm_suffix
;
833 const char *gnm_suffix
= "gnm";
834 const char *full_gnm_suffix
= gnm_suffix
;
836 const char *ldd_suffix
= LDD_SUFFIX
;
837 const char *full_ldd_suffix
= ldd_suffix
;
839 const char *strip_suffix
= "strip";
840 const char *full_strip_suffix
= strip_suffix
;
841 const char *gstrip_suffix
= "gstrip";
842 const char *full_gstrip_suffix
= gstrip_suffix
;
845 #ifdef COLLECT_EXPORT_LIST
848 const char *ld_file_name
;
859 int num_c_args
= argc
+9;
861 #if defined (COLLECT2_HOST_INITIALIZATION)
862 /* Perform system dependent initialization, if neccessary. */
863 COLLECT2_HOST_INITIALIZATION
;
867 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
868 receive the signal. A different setting is inheritable */
869 signal (SIGCHLD
, SIG_DFL
);
872 /* LC_CTYPE determines the character set used by the terminal so it has be set
873 to output messages correctly. */
875 #ifdef HAVE_LC_MESSAGES
876 setlocale (LC_CTYPE
, "");
877 setlocale (LC_MESSAGES
, "");
879 setlocale (LC_ALL
, "");
882 (void) bindtextdomain (PACKAGE
, localedir
);
883 (void) textdomain (PACKAGE
);
885 /* Do not invoke xcalloc before this point, since locale needs to be
886 set first, in case a diagnostic is issued. */
888 ld1
= (const char **)(ld1_argv
= (char **) xcalloc(sizeof (char *), argc
+3));
889 ld2
= (const char **)(ld2_argv
= (char **) xcalloc(sizeof (char *), argc
+10));
890 object
= (const char **)(object_lst
= (char **) xcalloc(sizeof (char *), argc
));
896 /* Parse command line early for instances of -debug. This allows
897 the debug flag to be set before functions like find_a_file()
902 for (i
= 1; argv
[i
] != NULL
; i
++)
903 if (! strcmp (argv
[i
], "-debug"))
908 #ifndef DEFAULT_A_OUT_NAME
909 output_file
= "a.out";
911 output_file
= DEFAULT_A_OUT_NAME
;
914 obstack_begin (&temporary_obstack
, 0);
915 obstack_begin (&permanent_obstack
, 0);
916 temporary_firstobj
= (char *) obstack_alloc (&temporary_obstack
, 0);
918 current_demangling_style
= auto_demangling
;
919 p
= getenv ("COLLECT_GCC_OPTIONS");
922 const char *q
= extract_string (&p
);
923 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
926 obstack_free (&temporary_obstack
, temporary_firstobj
);
928 /* -fno-exceptions -w */
931 c_ptr
= (const char **)
932 (c_argv
= (char **) xcalloc (sizeof (char *), num_c_args
));
935 fatal ("no arguments");
938 if (signal (SIGQUIT
, SIG_IGN
) != SIG_IGN
)
939 signal (SIGQUIT
, handler
);
941 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
942 signal (SIGINT
, handler
);
944 if (signal (SIGALRM
, SIG_IGN
) != SIG_IGN
)
945 signal (SIGALRM
, handler
);
948 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
949 signal (SIGHUP
, handler
);
951 if (signal (SIGSEGV
, SIG_IGN
) != SIG_IGN
)
952 signal (SIGSEGV
, handler
);
954 if (signal (SIGBUS
, SIG_IGN
) != SIG_IGN
)
955 signal (SIGBUS
, handler
);
958 /* Extract COMPILER_PATH and PATH into our prefix list. */
959 prefix_from_env ("COMPILER_PATH", &cpath
);
960 prefix_from_env ("PATH", &path
);
963 /* If we look for a program in the compiler directories, we just use
964 the short name, since these directories are already system-specific.
965 But it we look for a program in the system directories, we need to
966 qualify the program name with the target machine. */
968 full_ld_suffix
= concat(target_machine
, "-", ld_suffix
, NULL
);
971 full_gld_suffix
= concat (target_machine
, "-", gld_suffix
, NULL
);
974 full_nm_suffix
= concat (target_machine
, "-", nm_suffix
, NULL
);
976 full_gnm_suffix
= concat (target_machine
, "-", gnm_suffix
, NULL
);
979 full_ldd_suffix
= concat (target_machine
, "-", ldd_suffix
, NULL
);
982 full_strip_suffix
= concat (target_machine
, "-", strip_suffix
, NULL
);
984 full_gstrip_suffix
= concat (target_machine
, "-", gstrip_suffix
, NULL
);
985 #endif /* CROSS_COMPILE */
987 /* Try to discover a valid linker/nm/strip to use. */
989 /* Maybe we know the right file to use (if not cross). */
991 #ifdef DEFAULT_LINKER
992 if (access (DEFAULT_LINKER
, X_OK
) == 0)
993 ld_file_name
= DEFAULT_LINKER
;
994 if (ld_file_name
== 0)
996 #ifdef REAL_LD_FILE_NAME
997 ld_file_name
= find_a_file (&path
, REAL_LD_FILE_NAME
);
998 if (ld_file_name
== 0)
1000 /* Search the (target-specific) compiler dirs for ld'. */
1001 ld_file_name
= find_a_file (&cpath
, real_ld_suffix
);
1002 /* Likewise for `collect-ld'. */
1003 if (ld_file_name
== 0)
1004 ld_file_name
= find_a_file (&cpath
, collect_ld_suffix
);
1005 /* Search the compiler directories for `ld'. We have protection against
1006 recursive calls in find_a_file. */
1007 if (ld_file_name
== 0)
1008 ld_file_name
= find_a_file (&cpath
, ld_suffix
);
1009 /* Search the ordinary system bin directories
1010 for `ld' (if native linking) or `TARGET-ld' (if cross). */
1011 if (ld_file_name
== 0)
1012 ld_file_name
= find_a_file (&path
, full_ld_suffix
);
1014 #ifdef REAL_NM_FILE_NAME
1015 nm_file_name
= find_a_file (&path
, REAL_NM_FILE_NAME
);
1016 if (nm_file_name
== 0)
1018 nm_file_name
= find_a_file (&cpath
, gnm_suffix
);
1019 if (nm_file_name
== 0)
1020 nm_file_name
= find_a_file (&path
, full_gnm_suffix
);
1021 if (nm_file_name
== 0)
1022 nm_file_name
= find_a_file (&cpath
, nm_suffix
);
1023 if (nm_file_name
== 0)
1024 nm_file_name
= find_a_file (&path
, full_nm_suffix
);
1027 ldd_file_name
= find_a_file (&cpath
, ldd_suffix
);
1028 if (ldd_file_name
== 0)
1029 ldd_file_name
= find_a_file (&path
, full_ldd_suffix
);
1032 #ifdef REAL_STRIP_FILE_NAME
1033 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
);
1034 if (strip_file_name
== 0)
1036 strip_file_name
= find_a_file (&cpath
, gstrip_suffix
);
1037 if (strip_file_name
== 0)
1038 strip_file_name
= find_a_file (&path
, full_gstrip_suffix
);
1039 if (strip_file_name
== 0)
1040 strip_file_name
= find_a_file (&cpath
, strip_suffix
);
1041 if (strip_file_name
== 0)
1042 strip_file_name
= find_a_file (&path
, full_strip_suffix
);
1044 /* Determine the full path name of the C compiler to use. */
1045 c_file_name
= getenv ("COLLECT_GCC");
1046 if (c_file_name
== 0)
1048 #ifdef CROSS_COMPILE
1049 c_file_name
= concat (target_machine
, "-gcc", NULL
);
1051 c_file_name
= "gcc";
1055 p
= find_a_file (&cpath
, c_file_name
);
1057 /* Here it should be safe to use the system search path since we should have
1058 already qualified the name of the compiler when it is needed. */
1060 p
= find_a_file (&path
, c_file_name
);
1065 *ld1
++ = *ld2
++ = ld_file_name
;
1067 /* Make temp file names. */
1068 c_file
= make_temp_file (".c");
1069 o_file
= make_temp_file (".o");
1070 #ifdef COLLECT_EXPORT_LIST
1071 export_file
= make_temp_file (".x");
1073 ldout
= make_temp_file (".ld");
1074 *c_ptr
++ = c_file_name
;
1081 #ifdef COLLECT_EXPORT_LIST
1082 /* Generate a list of directories from LIBPATH. */
1083 prefix_from_env ("LIBPATH", &libpath_lib_dirs
);
1084 /* Add to this list also two standard directories where
1085 AIX loader always searches for libraries. */
1086 add_prefix (&libpath_lib_dirs
, "/lib");
1087 add_prefix (&libpath_lib_dirs
, "/usr/lib");
1090 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1092 AIX support needs to know if -shared has been specified before
1093 parsing commandline arguments. */
1095 p
= getenv ("COLLECT_GCC_OPTIONS");
1098 const char *q
= extract_string (&p
);
1099 if (*q
== '-' && (q
[1] == 'm' || q
[1] == 'f'))
1100 *c_ptr
++ = obstack_copy0 (&permanent_obstack
, q
, strlen (q
));
1101 if (strcmp (q
, "-EL") == 0 || strcmp (q
, "-EB") == 0)
1102 *c_ptr
++ = obstack_copy0 (&permanent_obstack
, q
, strlen (q
));
1103 if (strncmp (q
, "-shared", sizeof ("-shared") - 1) == 0)
1105 if (*q
== '-' && q
[1] == 'B')
1107 *c_ptr
++ = obstack_copy0 (&permanent_obstack
, q
, strlen (q
));
1110 q
= extract_string (&p
);
1111 *c_ptr
++ = obstack_copy0 (&permanent_obstack
, q
, strlen (q
));
1115 obstack_free (&temporary_obstack
, temporary_firstobj
);
1116 *c_ptr
++ = "-fno-exceptions";
1119 /* !!! When GCC calls collect2,
1120 it does not know whether it is calling collect2 or ld.
1121 So collect2 cannot meaningfully understand any options
1122 except those ld understands.
1123 If you propose to make GCC pass some other option,
1124 just imagine what will happen if ld is really ld!!! */
1126 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1127 /* After the first file, put in the c++ rt0. */
1130 while ((arg
= *++argv
) != (char *) 0)
1132 *ld1
++ = *ld2
++ = arg
;
1138 #ifdef COLLECT_EXPORT_LIST
1139 /* We want to disable automatic exports on AIX when user
1140 explicitly puts an export list in command line */
1142 if (arg
[2] == 'E' || strncmp (&arg
[2], "export", 6) == 0)
1144 else if (arg
[2] == '6' && arg
[3] == '4')
1150 if (!strcmp (arg
, "-debug"))
1152 /* Already parsed. */
1161 /* place o_file BEFORE this argument! */
1167 #ifdef COLLECT_EXPORT_LIST
1169 /* Resolving full library name. */
1170 const char *s
= resolve_lib_name (arg
+2);
1172 /* Saving a full library name. */
1173 add_to_list (&libs
, s
);
1178 #ifdef COLLECT_EXPORT_LIST
1179 /* Saving directories where to search for libraries. */
1181 add_prefix (&cmdline_lib_dirs
, arg
+2);
1184 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1186 if (is_in_args (arg
, (const char **) ld1_argv
, ld1
-1))
1189 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1194 output_file
= *ld1
++ = *ld2
++ = *++argv
;
1196 #ifdef SWITCHES_NEED_SPACES
1197 && ! strchr (SWITCHES_NEED_SPACES
, arg
[1])
1201 output_file
= &arg
[2];
1210 if (arg
[2] == '\0' && do_collecting
)
1212 /* We must strip after the nm run, otherwise C++ linking
1213 will not work. Thus we strip in the second ld run, or
1214 else with strip if there is no second ld run. */
1226 else if ((p
= strrchr (arg
, '.')) != (char *) 0
1227 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0
1228 || strcmp (p
, ".so") == 0 || strcmp (p
, ".lo") == 0
1229 || strcmp (p
, ".obj") == 0))
1238 /* place o_file BEFORE this argument! */
1244 if (p
[1] == 'o' || p
[1] == 'l')
1246 #ifdef COLLECT_EXPORT_LIST
1247 /* libraries can be specified directly, i.e. without -l flag. */
1250 /* Saving a full library name. */
1251 add_to_list (&libs
, arg
);
1257 #ifdef COLLECT_EXPORT_LIST
1258 /* This is added only for debugging purposes. */
1261 fprintf (stderr
, "List of libraries:\n");
1262 dump_list (stderr
, "\t", libs
.first
);
1265 /* The AIX linker will discard static constructors in object files if
1266 nothing else in the file is referenced, so look at them first. */
1268 const char **export_object_lst
= (const char **)object_lst
;
1270 while (export_object_lst
< object
)
1271 scan_prog_file (*export_object_lst
++, PASS_OBJ
);
1274 struct id
*list
= libs
.first
;
1276 for (; list
; list
= list
->next
)
1277 scan_prog_file (list
->name
, PASS_FIRST
);
1282 char *buf
= concat ("-bE:", export_file
, NULL
);
1287 exportf
= fopen (export_file
, "w");
1288 if (exportf
== (FILE *) 0)
1289 fatal_perror ("fopen %s", export_file
);
1290 write_aix_file (exportf
, exports
.first
);
1291 if (fclose (exportf
))
1292 fatal_perror ("fclose %s", export_file
);
1297 *c_ptr
= *ld1
= *object
= (char *) 0;
1301 notice ("collect2 version %s", version_string
);
1302 #ifdef TARGET_VERSION
1305 fprintf (stderr
, "\n");
1311 fprintf (stderr
, "ld_file_name = %s\n",
1312 (ld_file_name
? ld_file_name
: "not found"));
1313 fprintf (stderr
, "c_file_name = %s\n",
1314 (c_file_name
? c_file_name
: "not found"));
1315 fprintf (stderr
, "nm_file_name = %s\n",
1316 (nm_file_name
? nm_file_name
: "not found"));
1318 fprintf (stderr
, "ldd_file_name = %s\n",
1319 (ldd_file_name
? ldd_file_name
: "not found"));
1321 fprintf (stderr
, "strip_file_name = %s\n",
1322 (strip_file_name
? strip_file_name
: "not found"));
1323 fprintf (stderr
, "c_file = %s\n",
1324 (c_file
? c_file
: "not found"));
1325 fprintf (stderr
, "o_file = %s\n",
1326 (o_file
? o_file
: "not found"));
1328 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1330 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1332 ptr
= getenv ("COLLECT_GCC");
1334 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1336 ptr
= getenv ("COMPILER_PATH");
1338 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1340 ptr
= getenv (LIBRARY_PATH_ENV
);
1342 fprintf (stderr
, "%-20s= %s\n", LIBRARY_PATH_ENV
, ptr
);
1344 fprintf (stderr
, "\n");
1347 /* Load the program, searching all libraries and attempting to provide
1348 undefined symbols from repository information. */
1350 /* On AIX we do this later. */
1351 #ifndef COLLECT_EXPORT_LIST
1352 do_tlink (ld1_argv
, object_lst
);
1355 /* If -r or they will be run via some other method, do not build the
1356 constructor or destructor list, just return now. */
1358 #ifndef COLLECT_EXPORT_LIST
1363 #ifdef COLLECT_EXPORT_LIST
1364 /* Do the link we avoided above if we are exiting. */
1365 do_tlink (ld1_argv
, object_lst
);
1367 /* But make sure we delete the export file we may have created. */
1368 if (export_file
!= 0 && export_file
[0])
1369 maybe_unlink (export_file
);
1371 maybe_unlink (c_file
);
1372 maybe_unlink (o_file
);
1376 /* Examine the namelist with nm and search it for static constructors
1377 and destructors to call.
1378 Write the constructor and destructor tables to a .s file and reload. */
1380 /* On AIX we already scanned for global constructors/destructors. */
1381 #ifndef COLLECT_EXPORT_LIST
1382 scan_prog_file (output_file
, PASS_FIRST
);
1385 #ifdef SCAN_LIBRARIES
1386 scan_libraries (output_file
);
1391 notice ("%d constructor(s) found\n", constructors
.number
);
1392 notice ("%d destructor(s) found\n", destructors
.number
);
1393 notice ("%d frame table(s) found\n", frame_tables
.number
);
1396 if (constructors
.number
== 0 && destructors
.number
== 0
1397 && frame_tables
.number
== 0
1398 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1399 /* If we will be running these functions ourselves, we want to emit
1400 stubs into the shared library so that we do not have to relink
1401 dependent programs when we add static objects. */
1406 #ifdef COLLECT_EXPORT_LIST
1407 /* Do tlink without additional code generation */
1408 do_tlink (ld1_argv
, object_lst
);
1410 /* Strip now if it was requested on the command line. */
1413 char **real_strip_argv
= (char **) xcalloc (sizeof (char *), 3);
1414 const char ** strip_argv
= (const char **) real_strip_argv
;
1416 strip_argv
[0] = strip_file_name
;
1417 strip_argv
[1] = output_file
;
1418 strip_argv
[2] = (char *) 0;
1419 fork_execute ("strip", real_strip_argv
);
1422 #ifdef COLLECT_EXPORT_LIST
1423 maybe_unlink (export_file
);
1425 maybe_unlink (c_file
);
1426 maybe_unlink (o_file
);
1430 /* Sort ctor and dtor lists by priority. */
1431 sort_ids (&constructors
);
1432 sort_ids (&destructors
);
1434 maybe_unlink(output_file
);
1435 outf
= fopen (c_file
, "w");
1436 if (outf
== (FILE *) 0)
1437 fatal_perror ("fopen %s", c_file
);
1439 write_c_file (outf
, c_file
);
1442 fatal_perror ("fclose %s", c_file
);
1444 /* Tell the linker that we have initializer and finalizer functions. */
1445 #ifdef LD_INIT_SWITCH
1446 #ifdef COLLECT_EXPORT_LIST
1447 *ld2
++ = concat (LD_INIT_SWITCH
, ":", initname
, ":", fininame
, NULL
);
1449 *ld2
++ = LD_INIT_SWITCH
;
1451 *ld2
++ = LD_FINI_SWITCH
;
1456 #ifdef COLLECT_EXPORT_LIST
1459 /* If we did not add export flag to link arguments before, add it to
1460 second link phase now. No new exports should have been added. */
1461 if (! exports
.first
)
1462 *ld2
++ = concat ("-bE:", export_file
, NULL
);
1464 add_to_list (&exports
, initname
);
1465 add_to_list (&exports
, fininame
);
1466 add_to_list (&exports
, "_GLOBAL__DI");
1467 add_to_list (&exports
, "_GLOBAL__DD");
1468 exportf
= fopen (export_file
, "w");
1469 if (exportf
== (FILE *) 0)
1470 fatal_perror ("fopen %s", export_file
);
1471 write_aix_file (exportf
, exports
.first
);
1472 if (fclose (exportf
))
1473 fatal_perror ("fclose %s", export_file
);
1477 /* End of arguments to second link phase. */
1482 fprintf (stderr
, "\n========== output_file = %s, c_file = %s\n",
1483 output_file
, c_file
);
1484 write_c_file (stderr
, "stderr");
1485 fprintf (stderr
, "========== end of c_file\n\n");
1486 #ifdef COLLECT_EXPORT_LIST
1487 fprintf (stderr
, "\n========== export_file = %s\n", export_file
);
1488 write_aix_file (stderr
, exports
.first
);
1489 fprintf (stderr
, "========== end of export_file\n\n");
1493 /* Assemble the constructor and destructor tables.
1494 Link the tables in with the rest of the program. */
1496 fork_execute ("gcc", c_argv
);
1497 #ifdef COLLECT_EXPORT_LIST
1498 /* On AIX we must call tlink because of possible templates resolution */
1499 do_tlink (ld2_argv
, object_lst
);
1501 /* Otherwise, simply call ld because tlink is already done */
1502 fork_execute ("ld", ld2_argv
);
1504 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1505 constructors/destructors in shared libraries. */
1506 scan_prog_file (output_file
, PASS_SECOND
);
1509 maybe_unlink (c_file
);
1510 maybe_unlink (o_file
);
1512 #ifdef COLLECT_EXPORT_LIST
1513 maybe_unlink (export_file
);
1520 /* Wait for a process to finish, and exit if a non-zero status is found. */
1528 pwait (pexecute_pid
, &status
, 0);
1531 if (WIFSIGNALED (status
))
1533 int sig
= WTERMSIG (status
);
1534 error ("%s terminated with signal %d [%s]%s",
1535 prog
, sig
, strsignal(sig
),
1536 status
& 0200 ? "" : ", core dumped");
1537 collect_exit (FATAL_EXIT_CODE
);
1540 if (WIFEXITED (status
))
1541 return WEXITSTATUS (status
);
1550 int ret
= collect_wait (prog
);
1553 error ("%s returned %d exit status", prog
, ret
);
1559 /* Execute a program, and wait for the reply. */
1562 collect_execute (prog
, argv
, redir
)
1569 int redir_handle
= -1;
1570 int stdout_save
= -1;
1571 int stderr_save
= -1;
1579 fprintf (stderr
, "%s", argv
[0]);
1581 notice ("[cannot find %s]", prog
);
1583 for (p_argv
= &argv
[1]; (str
= *p_argv
) != (char *) 0; p_argv
++)
1584 fprintf (stderr
, " %s", str
);
1586 fprintf (stderr
, "\n");
1592 /* If we cannot find a program we need, complain error. Do this here
1593 since we might not end up needing something that we could not find. */
1596 fatal ("cannot find `%s'", prog
);
1600 /* Open response file. */
1601 redir_handle
= open (redir
, O_WRONLY
| O_TRUNC
| O_CREAT
);
1603 /* Duplicate the stdout and stderr file handles
1604 so they can be restored later. */
1605 stdout_save
= dup (STDOUT_FILENO
);
1606 if (stdout_save
== -1)
1607 fatal_perror ("redirecting stdout: %s", redir
);
1608 stderr_save
= dup (STDERR_FILENO
);
1609 if (stderr_save
== -1)
1610 fatal_perror ("redirecting stdout: %s", redir
);
1612 /* Redirect stdout & stderr to our response file. */
1613 dup2 (redir_handle
, STDOUT_FILENO
);
1614 dup2 (redir_handle
, STDERR_FILENO
);
1617 pexecute_pid
= pexecute (argv
[0], argv
, argv
[0], NULL
,
1618 &errmsg_fmt
, &errmsg_arg
,
1619 (PEXECUTE_FIRST
| PEXECUTE_LAST
| PEXECUTE_SEARCH
));
1623 /* Restore stdout and stderr to their previous settings. */
1624 dup2 (stdout_save
, STDOUT_FILENO
);
1625 dup2 (stderr_save
, STDERR_FILENO
);
1627 /* Close reponse file. */
1628 close (redir_handle
);
1631 if (pexecute_pid
== -1)
1632 fatal_perror (errmsg_fmt
, errmsg_arg
);
1636 fork_execute (prog
, argv
)
1640 collect_execute (prog
, argv
, NULL
);
1644 /* Unlink a file unless we are debugging. */
1653 notice ("[Leaving %s]\n", file
);
1657 static long sequence_number
= 0;
1659 /* Add a name to a linked list. */
1662 add_to_list (head_ptr
, name
)
1663 struct head
*head_ptr
;
1667 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1669 strcpy (newid
->name
, name
);
1671 if (head_ptr
->first
)
1672 head_ptr
->last
->next
= newid
;
1674 head_ptr
->first
= newid
;
1676 /* Check for duplicate symbols. */
1677 for (p
= head_ptr
->first
;
1678 strcmp (name
, p
->name
) != 0;
1683 head_ptr
->last
->next
= 0;
1688 newid
->sequence
= ++sequence_number
;
1689 head_ptr
->last
= newid
;
1693 /* Grab the init priority number from an init function name that
1694 looks like "_GLOBAL_.I.12345.foo". */
1697 extract_init_priority (name
)
1702 while (name
[pos
] == '_')
1704 pos
+= 10; /* strlen ("GLOBAL__X_") */
1706 /* Extract init_p number from ctor/dtor name. */
1707 pri
= atoi (name
+ pos
);
1708 return pri
? pri
: DEFAULT_INIT_PRIORITY
;
1711 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1712 ctors will be run from right to left, dtors from left to right. */
1716 struct head
*head_ptr
;
1718 /* id holds the current element to insert. id_next holds the next
1719 element to insert. id_ptr iterates through the already sorted elements
1720 looking for the place to insert id. */
1721 struct id
*id
, *id_next
, **id_ptr
;
1723 id
= head_ptr
->first
;
1725 /* We don't have any sorted elements yet. */
1726 head_ptr
->first
= NULL
;
1728 for (; id
; id
= id_next
)
1731 id
->sequence
= extract_init_priority (id
->name
);
1733 for (id_ptr
= &(head_ptr
->first
); ; id_ptr
= &((*id_ptr
)->next
))
1735 /* If the sequence numbers are the same, we put the id from the
1736 file later on the command line later in the list. */
1737 || id
->sequence
> (*id_ptr
)->sequence
1738 /* Hack: do lexical compare, too.
1739 || (id->sequence == (*id_ptr)->sequence
1740 && strcmp (id->name, (*id_ptr)->name) > 0) */
1749 /* Now set the sequence numbers properly so write_c_file works. */
1750 for (id
= head_ptr
->first
; id
; id
= id
->next
)
1751 id
->sequence
= ++sequence_number
;
1754 /* Write: `prefix', the names on list LIST, `suffix'. */
1757 write_list (stream
, prefix
, list
)
1764 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
1769 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1770 /* Given a STRING, return nonzero if it occurs in the list in range
1771 [ARGS_BEGIN,ARGS_END). */
1774 is_in_args (string
, args_begin
, args_end
)
1776 const char **args_begin
;
1777 const char **args_end
;
1779 const char **args_pointer
;
1780 for (args_pointer
= args_begin
; args_pointer
!= args_end
; ++args_pointer
)
1781 if (strcmp (string
, *args_pointer
) == 0)
1785 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1787 #ifdef COLLECT_EXPORT_LIST
1788 /* This function is really used only on AIX, but may be useful. */
1790 is_in_list (prefix
, list
)
1796 if (!strcmp (prefix
, list
->name
)) return 1;
1803 /* Added for debugging purpose. */
1804 #ifdef COLLECT_EXPORT_LIST
1806 dump_list (stream
, prefix
, list
)
1813 fprintf (stream
, "%s%s,\n", prefix
, list
->name
);
1821 dump_prefix_list (stream
, prefix
, list
)
1824 struct prefix_list
*list
;
1828 fprintf (stream
, "%s%s,\n", prefix
, list
->prefix
);
1835 write_list_with_asm (stream
, prefix
, list
)
1842 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
1843 prefix
, list
->sequence
, list
->name
);
1848 /* Write out the constructor and destructor tables statically (for a shared
1849 object), along with the functions to execute them. */
1852 write_c_file_stat (stream
, name
)
1854 const char *name ATTRIBUTE_UNUSED
;
1858 int frames
= (frame_tables
.number
> 0);
1860 /* Figure out name of output_file, stripping off .so version. */
1861 p
= strrchr (output_file
, '/');
1877 if (strncmp (q
, ".so", 3) == 0)
1886 /* q points to null at end of the string (or . of the .so version) */
1887 prefix
= xmalloc (q
- p
+ 1);
1888 strncpy (prefix
, p
, q
- p
);
1890 for (r
= prefix
; *r
; r
++)
1891 if (!ISALNUM ((unsigned char)*r
))
1894 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
1895 output_file
, prefix
);
1897 initname
= concat ("_GLOBAL__FI_", prefix
, NULL
);
1898 fininame
= concat ("_GLOBAL__FD_", prefix
, NULL
);
1902 /* Write the tables as C code */
1904 fprintf (stream
, "static int count;\n");
1905 fprintf (stream
, "typedef void entry_pt();\n");
1906 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
1910 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
1912 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
1913 write_list (stream
, "\t\t&", frame_tables
.first
);
1914 fprintf (stream
, "\t0\n};\n");
1916 /* This must match what's in frame.h. */
1917 fprintf (stream
, "struct object {\n");
1918 fprintf (stream
, " void *pc_begin;\n");
1919 fprintf (stream
, " void *pc_end;\n");
1920 fprintf (stream
, " void *fde_begin;\n");
1921 fprintf (stream
, " void *fde_array;\n");
1922 fprintf (stream
, " __SIZE_TYPE__ count;\n");
1923 fprintf (stream
, " struct object *next;\n");
1924 fprintf (stream
, "};\n");
1926 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
1927 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
1929 fprintf (stream
, "static void reg_frame () {\n");
1930 fprintf (stream
, "\tstatic struct object ob;\n");
1931 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
1932 fprintf (stream
, "\t}\n");
1934 fprintf (stream
, "static void dereg_frame () {\n");
1935 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
1936 fprintf (stream
, "\t}\n");
1939 fprintf (stream
, "void %s() {\n", initname
);
1940 if (constructors
.number
> 0 || frames
)
1942 fprintf (stream
, "\tstatic entry_pt *ctors[] = {\n");
1943 write_list (stream
, "\t\t", constructors
.first
);
1945 fprintf (stream
, "\treg_frame,\n");
1946 fprintf (stream
, "\t};\n");
1947 fprintf (stream
, "\tentry_pt **p;\n");
1948 fprintf (stream
, "\tif (count++ != 0) return;\n");
1949 fprintf (stream
, "\tp = ctors + %d;\n", constructors
.number
+ frames
);
1950 fprintf (stream
, "\twhile (p > ctors) (*--p)();\n");
1953 fprintf (stream
, "\t++count;\n");
1954 fprintf (stream
, "}\n");
1955 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
1956 fprintf (stream
, "void %s() {\n", fininame
);
1957 if (destructors
.number
> 0 || frames
)
1959 fprintf (stream
, "\tstatic entry_pt *dtors[] = {\n");
1960 write_list (stream
, "\t\t", destructors
.first
);
1962 fprintf (stream
, "\tdereg_frame,\n");
1963 fprintf (stream
, "\t};\n");
1964 fprintf (stream
, "\tentry_pt **p;\n");
1965 fprintf (stream
, "\tif (--count != 0) return;\n");
1966 fprintf (stream
, "\tp = dtors;\n");
1967 fprintf (stream
, "\twhile (p < dtors + %d) (*p++)();\n",
1968 destructors
.number
+ frames
);
1970 fprintf (stream
, "}\n");
1974 fprintf (stream
, "void _GLOBAL__DI() {\n\t%s();\n}\n", initname
);
1975 fprintf (stream
, "void _GLOBAL__DD() {\n\t%s();\n}\n", fininame
);
1979 /* Write the constructor/destructor tables. */
1981 #ifndef LD_INIT_SWITCH
1983 write_c_file_glob (stream
, name
)
1985 const char *name ATTRIBUTE_UNUSED
;
1987 /* Write the tables as C code */
1989 int frames
= (frame_tables
.number
> 0);
1991 fprintf (stream
, "typedef void entry_pt();\n\n");
1993 write_list_with_asm (stream
, "extern entry_pt ", constructors
.first
);
1997 write_list_with_asm (stream
, "extern void *", frame_tables
.first
);
1999 fprintf (stream
, "\tstatic void *frame_table[] = {\n");
2000 write_list (stream
, "\t\t&", frame_tables
.first
);
2001 fprintf (stream
, "\t0\n};\n");
2003 /* This must match what's in frame.h. */
2004 fprintf (stream
, "struct object {\n");
2005 fprintf (stream
, " void *pc_begin;\n");
2006 fprintf (stream
, " void *pc_end;\n");
2007 fprintf (stream
, " void *fde_begin;\n");
2008 fprintf (stream
, " void *fde_array;\n");
2009 fprintf (stream
, " __SIZE_TYPE__ count;\n");
2010 fprintf (stream
, " struct object *next;\n");
2011 fprintf (stream
, "};\n");
2013 fprintf (stream
, "extern void __register_frame_info_table (void *, struct object *);\n");
2014 fprintf (stream
, "extern void *__deregister_frame_info (void *);\n");
2016 fprintf (stream
, "static void reg_frame () {\n");
2017 fprintf (stream
, "\tstatic struct object ob;\n");
2018 fprintf (stream
, "\t__register_frame_info_table (frame_table, &ob);\n");
2019 fprintf (stream
, "\t}\n");
2021 fprintf (stream
, "static void dereg_frame () {\n");
2022 fprintf (stream
, "\t__deregister_frame_info (frame_table);\n");
2023 fprintf (stream
, "\t}\n");
2026 fprintf (stream
, "\nentry_pt * __CTOR_LIST__[] = {\n");
2027 fprintf (stream
, "\t(entry_pt *) %d,\n", constructors
.number
+ frames
);
2028 write_list (stream
, "\t", constructors
.first
);
2030 fprintf (stream
, "\treg_frame,\n");
2031 fprintf (stream
, "\t0\n};\n\n");
2033 write_list_with_asm (stream
, "extern entry_pt ", destructors
.first
);
2035 fprintf (stream
, "\nentry_pt * __DTOR_LIST__[] = {\n");
2036 fprintf (stream
, "\t(entry_pt *) %d,\n", destructors
.number
+ frames
);
2037 write_list (stream
, "\t", destructors
.first
);
2039 fprintf (stream
, "\tdereg_frame,\n");
2040 fprintf (stream
, "\t0\n};\n\n");
2042 fprintf (stream
, "extern entry_pt %s;\n", NAME__MAIN
);
2043 fprintf (stream
, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN
);
2045 #endif /* ! LD_INIT_SWITCH */
2048 write_c_file (stream
, name
)
2052 fprintf (stream
, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
2053 #ifndef LD_INIT_SWITCH
2055 write_c_file_glob (stream
, name
);
2058 write_c_file_stat (stream
, name
);
2059 fprintf (stream
, "#ifdef __cplusplus\n}\n#endif\n");
2062 #ifdef COLLECT_EXPORT_LIST
2064 write_aix_file (stream
, list
)
2068 for (; list
; list
= list
->next
)
2070 fputs (list
->name
, stream
);
2071 putc ('\n', stream
);
2076 #ifdef OBJECT_FORMAT_NONE
2078 /* Generic version to scan the name list of the loaded program for
2079 the symbols g++ uses for static constructors and destructors.
2081 The constructor table begins at __CTOR_LIST__ and contains a count
2082 of the number of pointers (or -1 if the constructors are built in a
2083 separate section by the linker), followed by the pointers to the
2084 constructor functions, terminated with a null pointer. The
2085 destructor table has the same format, and begins at __DTOR_LIST__. */
2088 scan_prog_file (prog_name
, which_pass
)
2089 const char *prog_name
;
2090 enum pass which_pass
;
2092 void (*int_handler
) PARAMS ((int));
2093 void (*quit_handler
) PARAMS ((int));
2094 char *real_nm_argv
[4];
2095 const char **nm_argv
= (const char **) real_nm_argv
;
2102 if (which_pass
== PASS_SECOND
)
2105 /* If we do not have an `nm', complain. */
2106 if (nm_file_name
== 0)
2107 fatal ("cannot find `nm'");
2109 nm_argv
[argc
++] = nm_file_name
;
2110 if (NM_FLAGS
[0] != '\0')
2111 nm_argv
[argc
++] = NM_FLAGS
;
2113 nm_argv
[argc
++] = prog_name
;
2114 nm_argv
[argc
++] = (char *) 0;
2116 if (pipe (pipe_fd
) < 0)
2117 fatal_perror ("pipe");
2119 inf
= fdopen (pipe_fd
[0], "r");
2120 if (inf
== (FILE *) 0)
2121 fatal_perror ("fdopen");
2123 /* Trace if needed. */
2126 const char **p_argv
;
2129 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2130 fprintf (stderr
, " %s", str
);
2132 fprintf (stderr
, "\n");
2138 /* Spawn child nm on pipe */
2141 fatal_perror (VFORK_STRING
);
2143 if (pid
== 0) /* child context */
2146 if (dup2 (pipe_fd
[1], 1) < 0)
2147 fatal_perror ("dup2 %d 1", pipe_fd
[1]);
2149 if (close (pipe_fd
[0]) < 0)
2150 fatal_perror ("close %d", pipe_fd
[0]);
2152 if (close (pipe_fd
[1]) < 0)
2153 fatal_perror ("close %d", pipe_fd
[1]);
2155 execv (nm_file_name
, real_nm_argv
);
2156 fatal_perror ("execvp %s", nm_file_name
);
2159 /* Parent context from here on. */
2160 int_handler
= (void (*) PARAMS ((int))) signal (SIGINT
, SIG_IGN
);
2162 quit_handler
= (void (*) PARAMS ((int))) signal (SIGQUIT
, SIG_IGN
);
2165 if (close (pipe_fd
[1]) < 0)
2166 fatal_perror ("close %d", pipe_fd
[1]);
2169 fprintf (stderr
, "\nnm output with constructors/destructors.\n");
2171 /* Read each line of nm output. */
2172 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2177 /* If it contains a constructor or destructor name, add the name
2178 to the appropriate list. */
2180 for (p
= buf
; (ch
= *p
) != '\0' && ch
!= '\n' && ch
!= '_'; p
++)
2181 if (ch
== ' ' && p
[1] == 'U' && p
[2] == ' ')
2188 /* Find the end of the symbol name.
2189 Do not include `|', because Encore nm can tack that on the end. */
2190 for (end
= p
; (ch2
= *end
) != '\0' && !ISSPACE (ch2
) && ch2
!= '|';
2196 switch (is_ctor_dtor (name
))
2199 if (which_pass
!= PASS_LIB
)
2200 add_to_list (&constructors
, name
);
2204 if (which_pass
!= PASS_LIB
)
2205 add_to_list (&destructors
, name
);
2209 if (which_pass
!= PASS_LIB
)
2210 fatal ("init function found in object %s", prog_name
);
2211 #ifndef LD_INIT_SWITCH
2212 add_to_list (&constructors
, name
);
2217 if (which_pass
!= PASS_LIB
)
2218 fatal ("fini function found in object %s", prog_name
);
2219 #ifndef LD_FINI_SWITCH
2220 add_to_list (&destructors
, name
);
2225 if (which_pass
!= PASS_LIB
)
2226 add_to_list (&frame_tables
, name
);
2229 default: /* not a constructor or destructor */
2234 fprintf (stderr
, "\t%s\n", buf
);
2238 fprintf (stderr
, "\n");
2240 if (fclose (inf
) != 0)
2241 fatal_perror ("fclose");
2243 do_wait (nm_file_name
);
2245 signal (SIGINT
, int_handler
);
2247 signal (SIGQUIT
, quit_handler
);
2251 #if SUNOS4_SHARED_LIBRARIES
2253 /* Routines to scan the SunOS 4 _DYNAMIC structure to find shared libraries
2254 that the output file depends upon and their initialization/finalization
2255 routines, if any. */
2260 #include <sys/mman.h>
2261 #include <sys/param.h>
2263 #include <sys/dir.h>
2265 /* pointers to the object file */
2266 unsigned object
; /* address of memory mapped file */
2267 unsigned objsize
; /* size of memory mapped to file */
2268 char * code
; /* pointer to code segment */
2269 char * data
; /* pointer to data segment */
2270 struct nlist
*symtab
; /* pointer to symbol table */
2271 struct link_dynamic
*ld
;
2272 struct link_dynamic_2
*ld_2
;
2273 struct head libraries
;
2275 /* Map the file indicated by NAME into memory and store its address. */
2277 static void mapfile
PARAMS ((const char *));
2285 if ((fp
= open (name
, O_RDONLY
)) == -1)
2286 fatal ("unable to open file '%s'", name
);
2287 if (fstat (fp
, &s
) == -1)
2288 fatal ("unable to stat file '%s'", name
);
2290 objsize
= s
.st_size
;
2291 object
= (unsigned) mmap (0, objsize
, PROT_READ
|PROT_WRITE
, MAP_PRIVATE
,
2293 if (object
== (unsigned)-1)
2294 fatal ("unable to mmap file '%s'", name
);
2299 /* Helpers for locatelib. */
2301 static const char *libname
;
2303 static int libselect
PARAMS ((struct direct
*));
2309 return (strncmp (libname
, d
->d_name
, strlen (libname
)) == 0);
2312 /* If one file has an additional numeric extension past LIBNAME, then put
2313 that one first in the sort. If both files have additional numeric
2314 extensions, then put the one with the higher number first in the sort.
2316 We must verify that the extension is numeric, because Sun saves the
2317 original versions of patched libraries with a .FCS extension. Files with
2318 invalid extensions must go last in the sort, so that they will not be used. */
2319 static int libcompare
PARAMS ((struct direct
**, struct direct
**));
2323 struct direct
**d1
, **d2
;
2325 int i1
, i2
= strlen (libname
);
2326 char *e1
= (*d1
)->d_name
+ i2
;
2327 char *e2
= (*d2
)->d_name
+ i2
;
2329 while (*e1
&& *e2
&& *e1
== '.' && *e2
== '.'
2330 && e1
[1] && ISDIGIT (e1
[1]) && e2
[1] && ISDIGIT (e2
[1]))
2334 i1
= strtol (e1
, &e1
, 10);
2335 i2
= strtol (e2
, &e2
, 10);
2342 /* It has a valid numeric extension, prefer this one. */
2343 if (*e1
== '.' && e1
[1] && ISDIGIT (e1
[1]))
2345 /* It has a invalid numeric extension, must prefer the other one. */
2351 /* It has a valid numeric extension, prefer this one. */
2352 if (*e2
== '.' && e2
[1] && ISDIGIT (e2
[1]))
2354 /* It has a invalid numeric extension, must prefer the other one. */
2362 /* Given the name NAME of a dynamic dependency, find its pathname and add
2363 it to the list of libraries. */
2364 static void locatelib
PARAMS ((const char *));
2370 static const char **l
;
2372 char buf
[MAXPATHLEN
];
2380 /* counting elements in array, need 1 extra for null */
2382 ld_rules
= (char *) (ld_2
->ld_rules
+ code
);
2386 for (; *ld_rules
!= 0; ld_rules
++)
2387 if (*ld_rules
== ':')
2389 ld_rules
= (char *) (ld_2
->ld_rules
+ code
);
2390 ldr
= xstrdup (ld_rules
);
2392 p
= getenv ("LD_LIBRARY_PATH");
2397 for (q
= p
; *q
!= 0; q
++)
2402 l
= (const char **) xmalloc ((cnt
+ 3) * sizeof (char *));
2407 for (; *ldr
!= 0; ldr
++)
2417 for (; *q
!= 0; q
++)
2424 /* built in directories are /lib, /usr/lib, and /usr/local/lib */
2427 *pp
++ = "/usr/local/lib";
2431 for (pp
= l
; *pp
!= 0 ; pp
++)
2433 struct direct
**namelist
;
2435 if ((entries
= scandir (*pp
, &namelist
, libselect
, libcompare
)) > 0)
2437 sprintf (buf
, "%s/%s", *pp
, namelist
[entries
- 1]->d_name
);
2438 add_to_list (&libraries
, buf
);
2440 fprintf (stderr
, "%s\n", buf
);
2447 notice ("not found\n");
2449 fatal ("dynamic dependency %s not found", name
);
2453 /* Scan the _DYNAMIC structure of the output file to find shared libraries
2454 that it depends upon and any constructors or destructors they contain. */
2457 scan_libraries (prog_name
)
2458 const char *prog_name
;
2460 struct exec
*header
;
2462 struct link_object
*lo
;
2463 char buff
[MAXPATHLEN
];
2466 mapfile (prog_name
);
2467 header
= (struct exec
*)object
;
2468 if (N_BADMAG (*header
))
2469 fatal ("bad magic number in file '%s'", prog_name
);
2470 if (header
->a_dynamic
== 0)
2473 code
= (char *) (N_TXTOFF (*header
) + (long) header
);
2474 data
= (char *) (N_DATOFF (*header
) + (long) header
);
2475 symtab
= (struct nlist
*) (N_SYMOFF (*header
) + (long) header
);
2477 if (header
->a_magic
== ZMAGIC
&& header
->a_entry
== 0x20)
2480 ld
= (struct link_dynamic
*) (symtab
->n_value
+ code
);
2486 ld
= (struct link_dynamic
*) data
;
2491 notice ("dynamic dependencies.\n");
2493 ld_2
= (struct link_dynamic_2
*) ((long) ld
->ld_un
.ld_2
+ (long)base
);
2494 for (lo
= (struct link_object
*) ld_2
->ld_need
; lo
;
2495 lo
= (struct link_object
*) lo
->lo_next
)
2498 lo
= (struct link_object
*) ((long) lo
+ code
);
2499 name
= (char *) (code
+ lo
->lo_name
);
2503 fprintf (stderr
, "\t-l%s.%d => ", name
, lo
->lo_major
);
2504 sprintf (buff
, "lib%s.so.%d.%d", name
, lo
->lo_major
, lo
->lo_minor
);
2510 fprintf (stderr
, "\t%s\n", name
);
2511 add_to_list (&libraries
, name
);
2516 fprintf (stderr
, "\n");
2518 /* now iterate through the library list adding their symbols to
2520 for (list
= libraries
.first
; list
; list
= list
->next
)
2521 scan_prog_file (list
->name
, PASS_LIB
);
2524 #else /* SUNOS4_SHARED_LIBRARIES */
2527 /* Use the List Dynamic Dependencies program to find shared libraries that
2528 the output file depends upon and their initialization/finalization
2529 routines, if any. */
2532 scan_libraries (prog_name
)
2533 const char *prog_name
;
2535 static struct head libraries
; /* list of shared libraries found */
2537 void (*int_handler
) PARAMS ((int));
2538 void (*quit_handler
) PARAMS ((int));
2539 char *real_ldd_argv
[4];
2540 const char **ldd_argv
= (const char **) real_ldd_argv
;
2547 /* If we do not have an `ldd', complain. */
2548 if (ldd_file_name
== 0)
2550 error ("cannot find `ldd'");
2554 ldd_argv
[argc
++] = ldd_file_name
;
2555 ldd_argv
[argc
++] = prog_name
;
2556 ldd_argv
[argc
++] = (char *) 0;
2558 if (pipe (pipe_fd
) < 0)
2559 fatal_perror ("pipe");
2561 inf
= fdopen (pipe_fd
[0], "r");
2562 if (inf
== (FILE *) 0)
2563 fatal_perror ("fdopen");
2565 /* Trace if needed. */
2568 const char **p_argv
;
2571 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2572 fprintf (stderr
, " %s", str
);
2574 fprintf (stderr
, "\n");
2580 /* Spawn child ldd on pipe */
2583 fatal_perror (VFORK_STRING
);
2585 if (pid
== 0) /* child context */
2588 if (dup2 (pipe_fd
[1], 1) < 0)
2589 fatal_perror ("dup2 %d 1", pipe_fd
[1]);
2591 if (close (pipe_fd
[0]) < 0)
2592 fatal_perror ("close %d", pipe_fd
[0]);
2594 if (close (pipe_fd
[1]) < 0)
2595 fatal_perror ("close %d", pipe_fd
[1]);
2597 execv (ldd_file_name
, real_ldd_argv
);
2598 fatal_perror ("execv %s", ldd_file_name
);
2601 /* Parent context from here on. */
2602 int_handler
= (void (*) PARAMS ((int))) signal (SIGINT
, SIG_IGN
);
2604 quit_handler
= (void (*) PARAMS ((int))) signal (SIGQUIT
, SIG_IGN
);
2607 if (close (pipe_fd
[1]) < 0)
2608 fatal_perror ("close %d", pipe_fd
[1]);
2611 notice ("\nldd output with constructors/destructors.\n");
2613 /* Read each line of ldd output. */
2614 while (fgets (buf
, sizeof buf
, inf
) != (char *) 0)
2617 char *name
, *end
, *p
= buf
;
2619 /* Extract names of libraries and add to list. */
2620 PARSE_LDD_OUTPUT (p
);
2625 if (strncmp (name
, "not found", sizeof ("not found") - 1) == 0)
2626 fatal ("dynamic dependency %s not found", buf
);
2628 /* Find the end of the symbol name. */
2630 (ch2
= *end
) != '\0' && ch2
!= '\n' && !ISSPACE (ch2
) && ch2
!= '|';
2635 if (access (name
, R_OK
) == 0)
2636 add_to_list (&libraries
, name
);
2638 fatal ("unable to open dynamic dependency '%s'", buf
);
2641 fprintf (stderr
, "\t%s\n", buf
);
2644 fprintf (stderr
, "\n");
2646 if (fclose (inf
) != 0)
2647 fatal_perror ("fclose");
2649 do_wait (ldd_file_name
);
2651 signal (SIGINT
, int_handler
);
2653 signal (SIGQUIT
, quit_handler
);
2656 /* now iterate through the library list adding their symbols to
2658 for (list
= libraries
.first
; list
; list
= list
->next
)
2659 scan_prog_file (list
->name
, PASS_LIB
);
2662 #endif /* LDD_SUFFIX */
2663 #endif /* SUNOS4_SHARED_LIBRARIES */
2665 #endif /* OBJECT_FORMAT_NONE */
2669 * COFF specific stuff.
2672 #ifdef OBJECT_FORMAT_COFF
2674 #if defined(EXTENDED_COFF)
2676 # define GCC_SYMBOLS(X) (SYMHEADER(X).isymMax + SYMHEADER(X).iextMax)
2677 # define GCC_SYMENT SYMR
2678 # define GCC_OK_SYMBOL(X) ((X).st == stProc || (X).st == stGlobal)
2679 # define GCC_SYMINC(X) (1)
2680 # define GCC_SYMZERO(X) (SYMHEADER(X).isymMax)
2681 # define GCC_CHECK_HDR(X) (PSYMTAB(X) != 0)
2685 # define GCC_SYMBOLS(X) (HEADER(ldptr).f_nsyms)
2686 # define GCC_SYMENT SYMENT
2687 # define GCC_OK_SYMBOL(X) \
2688 (((X).n_sclass == C_EXT) && \
2689 ((X).n_scnum > N_UNDEF) && \
2691 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2692 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2693 # define GCC_UNDEF_SYMBOL(X) \
2694 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2695 # define GCC_SYMINC(X) ((X).n_numaux+1)
2696 # define GCC_SYMZERO(X) 0
2698 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2700 # define GCC_CHECK_HDR(X) \
2701 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2702 || (HEADER (X).f_magic == 0767 && aix64_flag))
2704 # define GCC_CHECK_HDR(X) \
2705 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2706 || (HEADER (X).f_magic == 0757 && aix64_flag))
2711 extern char *ldgetname ();
2713 /* COFF version to scan the name list of the loaded program for
2714 the symbols g++ uses for static constructors and destructors.
2716 The constructor table begins at __CTOR_LIST__ and contains a count
2717 of the number of pointers (or -1 if the constructors are built in a
2718 separate section by the linker), followed by the pointers to the
2719 constructor functions, terminated with a null pointer. The
2720 destructor table has the same format, and begins at __DTOR_LIST__. */
2723 scan_prog_file (prog_name
, which_pass
)
2724 const char *prog_name
;
2725 enum pass which_pass
;
2727 LDFILE
*ldptr
= NULL
;
2728 int sym_index
, sym_count
;
2731 if (which_pass
!= PASS_FIRST
&& which_pass
!= PASS_OBJ
)
2734 #ifdef COLLECT_EXPORT_LIST
2735 /* We do not need scanning for some standard C libraries. */
2736 if (which_pass
== PASS_FIRST
&& ignore_library (prog_name
))
2739 /* On AIX we have a loop, because there is not much difference
2740 between an object and an archive. This trick allows us to
2741 eliminate scan_libraries() function. */
2745 /* Some platforms (e.g. OSF4) declare ldopen as taking a
2746 non-const char * filename parameter, even though it will not
2747 modify that string. So we must cast away const-ness here,
2748 which will cause -Wcast-qual to burp. */
2749 if ((ldptr
= ldopen ((char *)prog_name
, ldptr
)) != NULL
)
2751 if (! MY_ISCOFF (HEADER (ldptr
).f_magic
))
2752 fatal ("%s: not a COFF file", prog_name
);
2754 if (GCC_CHECK_HDR (ldptr
))
2756 sym_count
= GCC_SYMBOLS (ldptr
);
2757 sym_index
= GCC_SYMZERO (ldptr
);
2759 #ifdef COLLECT_EXPORT_LIST
2760 /* Is current archive member a shared object? */
2761 is_shared
= HEADER (ldptr
).f_flags
& F_SHROBJ
;
2764 while (sym_index
< sym_count
)
2768 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2770 sym_index
+= GCC_SYMINC (symbol
);
2772 if (GCC_OK_SYMBOL (symbol
))
2776 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2777 continue; /* should never happen */
2779 #ifdef XCOFF_DEBUGGING_INFO
2780 /* All AIX function names have a duplicate entry
2781 beginning with a dot. */
2786 switch (is_ctor_dtor (name
))
2790 add_to_list (&constructors
, name
);
2791 #ifdef COLLECT_EXPORT_LIST
2792 if (which_pass
== PASS_OBJ
)
2793 add_to_list (&exports
, name
);
2799 add_to_list (&destructors
, name
);
2800 #ifdef COLLECT_EXPORT_LIST
2801 if (which_pass
== PASS_OBJ
)
2802 add_to_list (&exports
, name
);
2806 #ifdef COLLECT_EXPORT_LIST
2808 #ifndef LD_INIT_SWITCH
2810 add_to_list (&constructors
, name
);
2815 #ifndef LD_INIT_SWITCH
2817 add_to_list (&destructors
, name
);
2824 add_to_list (&frame_tables
, name
);
2825 #ifdef COLLECT_EXPORT_LIST
2826 if (which_pass
== PASS_OBJ
)
2827 add_to_list (&exports
, name
);
2831 default: /* not a constructor or destructor */
2832 #ifdef COLLECT_EXPORT_LIST
2833 /* If we are building a shared object on AIX we need
2834 to explicitly export all global symbols. */
2837 if (which_pass
== PASS_OBJ
&& (! export_flag
))
2838 add_to_list (&exports
, name
);
2845 #if !defined(EXTENDED_COFF)
2846 fprintf (stderr
, "\tsec=%d class=%d type=%s%o %s\n",
2847 symbol
.n_scnum
, symbol
.n_sclass
,
2848 (symbol
.n_type
? "0" : ""), symbol
.n_type
,
2852 "\tiss = %5d, value = %5ld, index = %5d, name = %s\n",
2853 symbol
.iss
, (long) symbol
.value
, symbol
.index
, name
);
2858 #ifdef COLLECT_EXPORT_LIST
2861 /* If archive contains both 32-bit and 64-bit objects,
2862 we want to skip objects in other mode so mismatch normal. */
2864 fprintf (stderr
, "%s : magic=%o aix64=%d mismatch\n",
2865 prog_name
, HEADER (ldptr
).f_magic
, aix64_flag
);
2871 fatal ("%s: cannot open as COFF file", prog_name
);
2873 #ifdef COLLECT_EXPORT_LIST
2874 /* On AIX loop continues while there are more members in archive. */
2876 while (ldclose (ldptr
) == FAILURE
);
2878 /* Otherwise we simply close ldptr. */
2879 (void) ldclose(ldptr
);
2884 #ifdef COLLECT_EXPORT_LIST
2885 /* Given a library name without "lib" prefix, this function
2886 returns a full library name including a path. */
2888 resolve_lib_name (name
)
2894 for (i
= 0; libpaths
[i
]; i
++)
2895 if (libpaths
[i
]->max_len
> l
)
2896 l
= libpaths
[i
]->max_len
;
2898 lib_buf
= xmalloc (l
+ strlen(name
) + 10);
2900 for (i
= 0; libpaths
[i
]; i
++)
2902 struct prefix_list
*list
= libpaths
[i
]->plist
;
2903 for (; list
; list
= list
->next
)
2905 /* The following lines are needed because path_prefix list
2906 may contain directories both with trailing '/' and
2909 if (list
->prefix
[strlen(list
->prefix
)-1] != '/')
2911 for (j
= 0; libexts
[j
]; j
++)
2913 sprintf (lib_buf
, "%s%slib%s.%s",
2914 list
->prefix
, p
, name
, libexts
[j
]);
2915 if (debug
) fprintf (stderr
, "searching for: %s\n", lib_buf
);
2916 if (file_exists (lib_buf
))
2918 if (debug
) fprintf (stderr
, "found: %s\n", lib_buf
);
2925 fprintf (stderr
, "not found\n");
2927 fatal ("Library lib%s not found", name
);
2931 /* Array of standard AIX libraries which should not
2932 be scanned for ctors/dtors. */
2933 static const char *aix_std_libs
[] = {
2941 "/usr/lib/libc_r.a",
2942 "/usr/lib/libm_r.a",
2943 "/usr/lib/threads/libc.a",
2944 "/usr/ccs/lib/libc.a",
2945 "/usr/ccs/lib/libm.a",
2946 "/usr/ccs/lib/libc_r.a",
2947 "/usr/ccs/lib/libm_r.a",
2951 /* This function checks the filename and returns 1
2952 if this name matches the location of a standard AIX library. */
2954 ignore_library (name
)
2957 const char **p
= &aix_std_libs
[0];
2958 while (*p
++ != NULL
)
2959 if (! strcmp (name
, *p
)) return 1;
2964 #endif /* OBJECT_FORMAT_COFF */
2968 * OSF/rose specific stuff.
2971 #ifdef OBJECT_FORMAT_ROSE
2973 /* Union of the various load commands */
2975 typedef union load_union
2977 ldc_header_t hdr
; /* common header */
2978 load_cmd_map_command_t map
; /* map indexing other load cmds */
2979 interpreter_command_t iprtr
; /* interpreter pathname */
2980 strings_command_t str
; /* load commands strings section */
2981 region_command_t region
; /* region load command */
2982 reloc_command_t reloc
; /* relocation section */
2983 package_command_t pkg
; /* package load command */
2984 symbols_command_t sym
; /* symbol sections */
2985 entry_command_t ent
; /* program start section */
2986 gen_info_command_t info
; /* object information */
2987 func_table_command_t func
; /* function constructors/destructors */
2990 /* Structure to point to load command and data section in memory. */
2992 typedef struct load_all
2994 load_union_t
*load
; /* load command */
2995 char *section
; /* pointer to section */
2998 /* Structure to contain information about a file mapped into memory. */
3002 char *start
; /* start of map */
3003 char *name
; /* filename */
3004 long size
; /* size of the file */
3005 long rounded_size
; /* size rounded to page boundary */
3006 int fd
; /* file descriptor */
3007 int rw
; /* != 0 if opened read/write */
3008 int use_mmap
; /* != 0 if mmap'ed */
3011 extern int decode_mach_o_hdr ();
3012 extern int encode_mach_o_hdr ();
3014 static void add_func_table
PARAMS ((mo_header_t
*, load_all_t
*,
3015 symbol_info_t
*, int));
3016 static void print_header
PARAMS ((mo_header_t
*));
3017 static void print_load_command
PARAMS ((load_union_t
*, size_t, int));
3018 static void bad_header
PARAMS ((int));
3019 static struct file_info
*read_file
PARAMS ((const char *, int, int));
3020 static void end_file
PARAMS ((struct file_info
*));
3022 /* OSF/rose specific version to scan the name list of the loaded
3023 program for the symbols g++ uses for static constructors and
3026 The constructor table begins at __CTOR_LIST__ and contains a count
3027 of the number of pointers (or -1 if the constructors are built in a
3028 separate section by the linker), followed by the pointers to the
3029 constructor functions, terminated with a null pointer. The
3030 destructor table has the same format, and begins at __DTOR_LIST__. */
3033 scan_prog_file (prog_name
, which_pass
)
3034 const char *prog_name
;
3035 enum pass which_pass
;
3039 load_all_t
*load_array
;
3040 load_all_t
*load_end
;
3041 load_all_t
*load_cmd
;
3042 int symbol_load_cmds
;
3048 struct file_info
*obj_file
;
3050 mo_lcid_t cmd_strings
= -1;
3051 symbol_info_t
*main_sym
= 0;
3052 int rw
= (which_pass
!= PASS_FIRST
);
3054 prog_fd
= open (prog_name
, (rw
) ? O_RDWR
: O_RDONLY
);
3056 fatal_perror ("open %s", prog_name
);
3058 obj_file
= read_file (prog_name
, prog_fd
, rw
);
3059 obj
= obj_file
->start
;
3061 status
= decode_mach_o_hdr (obj
, MO_SIZEOF_RAW_HDR
, MOH_HEADER_VERSION
, &hdr
);
3062 if (status
!= MO_HDR_CONV_SUCCESS
)
3063 bad_header (status
);
3066 /* Do some basic sanity checks. Note we explicitly use the big endian magic number,
3067 since the hardware will automatically swap bytes for us on loading little endian
3070 #ifndef CROSS_COMPILE
3071 if (hdr
.moh_magic
!= MOH_MAGIC_MSB
3072 || hdr
.moh_header_version
!= MOH_HEADER_VERSION
3073 || hdr
.moh_byte_order
!= OUR_BYTE_ORDER
3074 || hdr
.moh_data_rep_id
!= OUR_DATA_REP_ID
3075 || hdr
.moh_cpu_type
!= OUR_CPU_TYPE
3076 || hdr
.moh_cpu_subtype
!= OUR_CPU_SUBTYPE
3077 || hdr
.moh_vendor_type
!= OUR_VENDOR_TYPE
)
3079 fatal ("incompatibilities between object file & expected values");
3084 print_header (&hdr
);
3086 offset
= hdr
.moh_first_cmd_off
;
3087 load_end
= load_array
3088 = (load_all_t
*) xcalloc (sizeof (load_all_t
), hdr
.moh_n_load_cmds
+ 2);
3090 /* Build array of load commands, calculating the offsets */
3091 for (i
= 0; i
< hdr
.moh_n_load_cmds
; i
++)
3093 load_union_t
*load_hdr
; /* load command header */
3095 load_cmd
= load_end
++;
3096 load_hdr
= (load_union_t
*) (obj
+ offset
);
3098 /* If modifying the program file, copy the header. */
3101 load_union_t
*ptr
= (load_union_t
*) xmalloc (load_hdr
->hdr
.ldci_cmd_size
);
3102 memcpy ((char *)ptr
, (char *)load_hdr
, load_hdr
->hdr
.ldci_cmd_size
);
3105 /* null out old command map, because we will rewrite at the end. */
3106 if (ptr
->hdr
.ldci_cmd_type
== LDC_CMD_MAP
)
3108 cmd_strings
= ptr
->map
.lcm_ld_cmd_strings
;
3109 ptr
->hdr
.ldci_cmd_type
= LDC_UNDEFINED
;
3113 load_cmd
->load
= load_hdr
;
3114 if (load_hdr
->hdr
.ldci_section_off
> 0)
3115 load_cmd
->section
= obj
+ load_hdr
->hdr
.ldci_section_off
;
3118 print_load_command (load_hdr
, offset
, i
);
3120 offset
+= load_hdr
->hdr
.ldci_cmd_size
;
3123 /* If the last command is the load command map and is not undefined,
3124 decrement the count of load commands. */
3125 if (rw
&& load_end
[-1].load
->hdr
.ldci_cmd_type
== LDC_UNDEFINED
)
3128 hdr
.moh_n_load_cmds
--;
3131 /* Go through and process each symbol table section. */
3132 symbol_load_cmds
= 0;
3133 for (load_cmd
= load_array
; load_cmd
< load_end
; load_cmd
++)
3135 load_union_t
*load_hdr
= load_cmd
->load
;
3137 if (load_hdr
->hdr
.ldci_cmd_type
== LDC_SYMBOLS
)
3143 const char *kind
= "unknown";
3145 switch (load_hdr
->sym
.symc_kind
)
3147 case SYMC_IMPORTS
: kind
= "imports"; break;
3148 case SYMC_DEFINED_SYMBOLS
: kind
= "defined"; break;
3149 case SYMC_STABS
: kind
= "stabs"; break;
3152 notice ("\nProcessing symbol table #%d, offset = 0x%.8lx, kind = %s\n",
3153 symbol_load_cmds
, load_hdr
->hdr
.ldci_section_off
, kind
);
3156 if (load_hdr
->sym
.symc_kind
!= SYMC_DEFINED_SYMBOLS
)
3159 str_sect
= load_array
[load_hdr
->sym
.symc_strings_section
].section
;
3160 if (str_sect
== (char *) 0)
3161 fatal ("string section missing");
3163 if (load_cmd
->section
== (char *) 0)
3164 fatal ("section pointer missing");
3166 num_syms
= load_hdr
->sym
.symc_nentries
;
3167 for (i
= 0; i
< num_syms
; i
++)
3169 symbol_info_t
*sym
= ((symbol_info_t
*) load_cmd
->section
) + i
;
3170 char *name
= sym
->si_name
.symbol_name
+ str_sect
;
3177 char *n
= name
+ strlen (name
) - strlen (NAME__MAIN
);
3179 if ((n
- name
) < 0 || strcmp (n
, NAME__MAIN
))
3189 switch (is_ctor_dtor (name
))
3192 add_to_list (&constructors
, name
);
3196 add_to_list (&destructors
, name
);
3199 default: /* not a constructor or destructor */
3205 fprintf (stderr
, "\ttype = 0x%.4x, sc = 0x%.2x, flags = 0x%.8x, name = %.30s\n",
3206 sym
->si_type
, sym
->si_sc_type
, sym
->si_flags
, name
);
3211 if (symbol_load_cmds
== 0)
3212 fatal ("no symbol table found");
3214 /* Update the program file now, rewrite header and load commands. At present,
3215 we assume that there is enough space after the last load command to insert
3216 one more. Since the first section written out is page aligned, and the
3217 number of load commands is small, this is ok for the present. */
3221 load_union_t
*load_map
;
3224 if (cmd_strings
== -1)
3225 fatal ("no cmd_strings found");
3227 /* Add __main to initializer list.
3228 If we are building a program instead of a shared library, do not
3229 do anything, since in the current version, you cannot do mallocs
3230 and such in the constructors. */
3232 if (main_sym
!= (symbol_info_t
*) 0
3233 && ((hdr
.moh_flags
& MOH_EXECABLE_F
) == 0))
3234 add_func_table (&hdr
, load_array
, main_sym
, FNTC_INITIALIZATION
);
3237 notice ("\nUpdating header and load commands.\n\n");
3239 hdr
.moh_n_load_cmds
++;
3240 size
= sizeof (load_cmd_map_command_t
) + (sizeof (mo_offset_t
) * (hdr
.moh_n_load_cmds
- 1));
3242 /* Create new load command map. */
3244 notice ("load command map, %d cmds, new size %ld.\n",
3245 (int) hdr
.moh_n_load_cmds
, (long) size
);
3247 load_map
= (load_union_t
*) xcalloc (1, size
);
3248 load_map
->map
.ldc_header
.ldci_cmd_type
= LDC_CMD_MAP
;
3249 load_map
->map
.ldc_header
.ldci_cmd_size
= size
;
3250 load_map
->map
.lcm_ld_cmd_strings
= cmd_strings
;
3251 load_map
->map
.lcm_nentries
= hdr
.moh_n_load_cmds
;
3252 load_array
[hdr
.moh_n_load_cmds
-1].load
= load_map
;
3254 offset
= hdr
.moh_first_cmd_off
;
3255 for (i
= 0; i
< hdr
.moh_n_load_cmds
; i
++)
3257 load_map
->map
.lcm_map
[i
] = offset
;
3258 if (load_array
[i
].load
->hdr
.ldci_cmd_type
== LDC_CMD_MAP
)
3259 hdr
.moh_load_map_cmd_off
= offset
;
3261 offset
+= load_array
[i
].load
->hdr
.ldci_cmd_size
;
3264 hdr
.moh_sizeofcmds
= offset
- MO_SIZEOF_RAW_HDR
;
3267 print_header (&hdr
);
3270 status
= encode_mach_o_hdr (&hdr
, obj
, MO_SIZEOF_RAW_HDR
);
3271 if (status
!= MO_HDR_CONV_SUCCESS
)
3272 bad_header (status
);
3275 notice ("writing load commands.\n\n");
3277 /* Write load commands */
3278 offset
= hdr
.moh_first_cmd_off
;
3279 for (i
= 0; i
< hdr
.moh_n_load_cmds
; i
++)
3281 load_union_t
*load_hdr
= load_array
[i
].load
;
3282 size_t size
= load_hdr
->hdr
.ldci_cmd_size
;
3285 print_load_command (load_hdr
, offset
, i
);
3287 bcopy ((char *) load_hdr
, (char *) (obj
+ offset
), size
);
3292 end_file (obj_file
);
3294 if (close (prog_fd
))
3295 fatal_perror ("close %s", prog_name
);
3298 fprintf (stderr
, "\n");
3302 /* Add a function table to the load commands to call a function
3303 on initiation or termination of the process. */
3306 add_func_table (hdr_p
, load_array
, sym
, type
)
3307 mo_header_t
*hdr_p
; /* pointer to global header */
3308 load_all_t
*load_array
; /* array of ptrs to load cmds */
3309 symbol_info_t
*sym
; /* pointer to symbol entry */
3310 int type
; /* fntc_type value */
3312 /* Add a new load command. */
3313 int num_cmds
= ++hdr_p
->moh_n_load_cmds
;
3314 int load_index
= num_cmds
- 1;
3315 size_t size
= sizeof (func_table_command_t
) + sizeof (mo_addr_t
);
3316 load_union_t
*ptr
= xcalloc (1, size
);
3317 load_all_t
*load_cmd
;
3320 /* Set the unresolved address bit in the header to force the loader to be
3321 used, since kernel exec does not call the initialization functions. */
3322 hdr_p
->moh_flags
|= MOH_UNRESOLVED_F
;
3324 load_cmd
= &load_array
[load_index
];
3325 load_cmd
->load
= ptr
;
3326 load_cmd
->section
= (char *) 0;
3328 /* Fill in func table load command. */
3329 ptr
->func
.ldc_header
.ldci_cmd_type
= LDC_FUNC_TABLE
;
3330 ptr
->func
.ldc_header
.ldci_cmd_size
= size
;
3331 ptr
->func
.ldc_header
.ldci_section_off
= 0;
3332 ptr
->func
.ldc_header
.ldci_section_len
= 0;
3333 ptr
->func
.fntc_type
= type
;
3334 ptr
->func
.fntc_nentries
= 1;
3336 /* copy address, turn it from abs. address to (region,offset) if necessary. */
3337 /* Is the symbol already expressed as (region, offset)? */
3338 if ((sym
->si_flags
& SI_ABSOLUTE_VALUE_F
) == 0)
3340 ptr
->func
.fntc_entry_loc
[i
].adr_lcid
= sym
->si_value
.def_val
.adr_lcid
;
3341 ptr
->func
.fntc_entry_loc
[i
].adr_sctoff
= sym
->si_value
.def_val
.adr_sctoff
;
3344 /* If not, figure out which region it's in. */
3347 mo_vm_addr_t addr
= sym
->si_value
.abs_val
;
3350 for (i
= 0; i
< load_index
; i
++)
3352 if (load_array
[i
].load
->hdr
.ldci_cmd_type
== LDC_REGION
)
3354 region_command_t
*region_ptr
= &load_array
[i
].load
->region
;
3356 if ((region_ptr
->regc_flags
& REG_ABS_ADDR_F
) != 0
3357 && addr
>= region_ptr
->regc_addr
.vm_addr
3358 && addr
<= region_ptr
->regc_addr
.vm_addr
+ region_ptr
->regc_vm_size
)
3360 ptr
->func
.fntc_entry_loc
[0].adr_lcid
= i
;
3361 ptr
->func
.fntc_entry_loc
[0].adr_sctoff
= addr
- region_ptr
->regc_addr
.vm_addr
;
3369 fatal ("could not convert 0x%l.8x into a region", addr
);
3373 notice ("%s function, region %d, offset = %ld (0x%.8lx)\n",
3374 type
== FNTC_INITIALIZATION
? "init" : "term",
3375 (int) ptr
->func
.fntc_entry_loc
[i
].adr_lcid
,
3376 (long) ptr
->func
.fntc_entry_loc
[i
].adr_sctoff
,
3377 (long) ptr
->func
.fntc_entry_loc
[i
].adr_sctoff
);
3382 /* Print the global header for an OSF/rose object. */
3385 print_header (hdr_ptr
)
3386 mo_header_t
*hdr_ptr
;
3388 fprintf (stderr
, "\nglobal header:\n");
3389 fprintf (stderr
, "\tmoh_magic = 0x%.8lx\n", hdr_ptr
->moh_magic
);
3390 fprintf (stderr
, "\tmoh_major_version = %d\n", (int)hdr_ptr
->moh_major_version
);
3391 fprintf (stderr
, "\tmoh_minor_version = %d\n", (int)hdr_ptr
->moh_minor_version
);
3392 fprintf (stderr
, "\tmoh_header_version = %d\n", (int)hdr_ptr
->moh_header_version
);
3393 fprintf (stderr
, "\tmoh_max_page_size = %d\n", (int)hdr_ptr
->moh_max_page_size
);
3394 fprintf (stderr
, "\tmoh_byte_order = %d\n", (int)hdr_ptr
->moh_byte_order
);
3395 fprintf (stderr
, "\tmoh_data_rep_id = %d\n", (int)hdr_ptr
->moh_data_rep_id
);
3396 fprintf (stderr
, "\tmoh_cpu_type = %d\n", (int)hdr_ptr
->moh_cpu_type
);
3397 fprintf (stderr
, "\tmoh_cpu_subtype = %d\n", (int)hdr_ptr
->moh_cpu_subtype
);
3398 fprintf (stderr
, "\tmoh_vendor_type = %d\n", (int)hdr_ptr
->moh_vendor_type
);
3399 fprintf (stderr
, "\tmoh_load_map_cmd_off = %d\n", (int)hdr_ptr
->moh_load_map_cmd_off
);
3400 fprintf (stderr
, "\tmoh_first_cmd_off = %d\n", (int)hdr_ptr
->moh_first_cmd_off
);
3401 fprintf (stderr
, "\tmoh_sizeofcmds = %d\n", (int)hdr_ptr
->moh_sizeofcmds
);
3402 fprintf (stderr
, "\tmon_n_load_cmds = %d\n", (int)hdr_ptr
->moh_n_load_cmds
);
3403 fprintf (stderr
, "\tmoh_flags = 0x%.8lx", (long)hdr_ptr
->moh_flags
);
3405 if (hdr_ptr
->moh_flags
& MOH_RELOCATABLE_F
)
3406 fprintf (stderr
, ", relocatable");
3408 if (hdr_ptr
->moh_flags
& MOH_LINKABLE_F
)
3409 fprintf (stderr
, ", linkable");
3411 if (hdr_ptr
->moh_flags
& MOH_EXECABLE_F
)
3412 fprintf (stderr
, ", execable");
3414 if (hdr_ptr
->moh_flags
& MOH_EXECUTABLE_F
)
3415 fprintf (stderr
, ", executable");
3417 if (hdr_ptr
->moh_flags
& MOH_UNRESOLVED_F
)
3418 fprintf (stderr
, ", unresolved");
3420 fprintf (stderr
, "\n\n");
3425 /* Print a short summary of a load command. */
3428 print_load_command (load_hdr
, offset
, number
)
3429 load_union_t
*load_hdr
;
3433 mo_long_t type
= load_hdr
->hdr
.ldci_cmd_type
;
3434 const char *type_str
= (char *) 0;
3438 case LDC_UNDEFINED
: type_str
= "UNDEFINED"; break;
3439 case LDC_CMD_MAP
: type_str
= "CMD_MAP"; break;
3440 case LDC_INTERPRETER
: type_str
= "INTERPRETER"; break;
3441 case LDC_STRINGS
: type_str
= "STRINGS"; break;
3442 case LDC_REGION
: type_str
= "REGION"; break;
3443 case LDC_RELOC
: type_str
= "RELOC"; break;
3444 case LDC_PACKAGE
: type_str
= "PACKAGE"; break;
3445 case LDC_SYMBOLS
: type_str
= "SYMBOLS"; break;
3446 case LDC_ENTRY
: type_str
= "ENTRY"; break;
3447 case LDC_FUNC_TABLE
: type_str
= "FUNC_TABLE"; break;
3448 case LDC_GEN_INFO
: type_str
= "GEN_INFO"; break;
3452 "cmd %2d, sz: 0x%.2lx, coff: 0x%.3lx, doff: 0x%.6lx, dlen: 0x%.6lx",
3454 (long) load_hdr
->hdr
.ldci_cmd_size
,
3456 (long) load_hdr
->hdr
.ldci_section_off
,
3457 (long) load_hdr
->hdr
.ldci_section_len
);
3459 if (type_str
== (char *) 0)
3460 fprintf (stderr
, ", ty: unknown (%ld)\n", (long) type
);
3462 else if (type
!= LDC_REGION
)
3463 fprintf (stderr
, ", ty: %s\n", type_str
);
3467 const char *region
= "";
3468 switch (load_hdr
->region
.regc_usage_type
)
3470 case REG_TEXT_T
: region
= ", .text"; break;
3471 case REG_DATA_T
: region
= ", .data"; break;
3472 case REG_BSS_T
: region
= ", .bss"; break;
3473 case REG_GLUE_T
: region
= ", .glue"; break;
3474 #if defined (REG_RDATA_T) && defined (REG_SDATA_T) && defined (REG_SBSS_T) /*mips*/
3475 case REG_RDATA_T
: region
= ", .rdata"; break;
3476 case REG_SDATA_T
: region
= ", .sdata"; break;
3477 case REG_SBSS_T
: region
= ", .sbss"; break;
3481 fprintf (stderr
, ", ty: %s, vaddr: 0x%.8lx, vlen: 0x%.6lx%s\n",
3483 (long) load_hdr
->region
.regc_vm_addr
,
3484 (long) load_hdr
->region
.regc_vm_size
,
3492 /* Fatal error when {en,de}code_mach_o_header fails. */
3500 case MO_ERROR_BAD_MAGIC
: fatal ("bad magic number");
3501 case MO_ERROR_BAD_HDR_VERS
: fatal ("bad header version");
3502 case MO_ERROR_BAD_RAW_HDR_VERS
: fatal ("bad raw header version");
3503 case MO_ERROR_BUF2SML
: fatal ("raw header buffer too small");
3504 case MO_ERROR_OLD_RAW_HDR_FILE
: fatal ("old raw header file");
3505 case MO_ERROR_UNSUPPORTED_VERS
: fatal ("unsupported version");
3507 fatal ("unknown {de,en}code_mach_o_hdr return value %d", status
);
3512 /* Read a file into a memory buffer. */
3514 static struct file_info
*
3515 read_file (name
, fd
, rw
)
3516 const char *name
; /* filename */
3517 int fd
; /* file descriptor */
3518 int rw
; /* read/write */
3520 struct stat stat_pkt
;
3521 struct file_info
*p
= (struct file_info
*) xcalloc (sizeof (struct file_info
), 1);
3523 static int page_size
;
3526 if (fstat (fd
, &stat_pkt
) < 0)
3527 fatal_perror ("fstat %s", name
);
3530 p
->size
= stat_pkt
.st_size
;
3531 p
->rounded_size
= stat_pkt
.st_size
;
3537 fprintf (stderr
, "mmap %s, %s\n", name
, (rw
) ? "read/write" : "read-only");
3540 page_size
= sysconf (_SC_PAGE_SIZE
);
3542 p
->rounded_size
= ((p
->size
+ page_size
- 1) / page_size
) * page_size
;
3543 p
->start
= mmap ((caddr_t
) 0,
3544 (rw
) ? p
->rounded_size
: p
->size
,
3545 (rw
) ? (PROT_READ
| PROT_WRITE
) : PROT_READ
,
3546 MAP_FILE
| MAP_VARIABLE
| MAP_SHARED
,
3550 if (p
->start
!= (char *) 0 && p
->start
!= (char *) -1)
3554 #endif /* USE_MMAP */
3559 fprintf (stderr
, "read %s\n", name
);
3562 p
->start
= xmalloc (p
->size
);
3563 if (lseek (fd
, 0L, SEEK_SET
) < 0)
3564 fatal_perror ("lseek %s 0", name
);
3566 len
= read (fd
, p
->start
, p
->size
);
3568 fatal_perror ("read %s", name
);
3571 fatal ("read %ld bytes, expected %ld, from %s", len
, p
->size
, name
);
3577 /* Do anything necessary to write a file back from memory. */
3581 struct file_info
*ptr
; /* file information block */
3589 fprintf (stderr
, "msync %s\n", ptr
->name
);
3591 if (msync (ptr
->start
, ptr
->rounded_size
, MS_ASYNC
))
3592 fatal_perror ("msync %s", ptr
->name
);
3596 fprintf (stderr
, "munmap %s\n", ptr
->name
);
3598 if (munmap (ptr
->start
, ptr
->size
))
3599 fatal_perror ("munmap %s", ptr
->name
);
3602 #endif /* USE_MMAP */
3609 fprintf (stderr
, "write %s\n", ptr
->name
);
3611 if (lseek (ptr
->fd
, 0L, SEEK_SET
) < 0)
3612 fatal_perror ("lseek %s 0", ptr
->name
);
3614 len
= write (ptr
->fd
, ptr
->start
, ptr
->size
);
3616 fatal_perror ("write %s", ptr
->name
);
3618 if (len
!= ptr
->size
)
3619 fatal ("wrote %ld bytes, expected %ld, to %s", len
, ptr
->size
, ptr
->name
);
3628 #endif /* OBJECT_FORMAT_ROSE */