1 /* Wrapper to call lto. Used by collect2 and the linker plugin.
2 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 Factored out of collect2 by Rafael Espindola <espindola@google.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* This program is passed a gcc, a list of gcc arguments and a list of
24 object files containing IL. It scans the argument list to check if
25 we are in whopr mode or not modifies the arguments and needed and
26 prints a list of output files on stdout.
30 $ lto-wrapper gcc/xgcc -B gcc a.o b.o -o test -flto
32 The above will print something like
35 If -fwhopr is used instead, more than one file might be produced
36 ./ccXj2DTk.lto.ltrans.o
37 ./ccCJuXGv.lto.ltrans.o
42 #include "coretypes.h"
45 #include "libiberty.h"
47 int debug
; /* true if -debug */
50 LTO_MODE_NONE
, /* Not doing LTO. */
51 LTO_MODE_LTO
, /* Normal LTO. */
52 LTO_MODE_WHOPR
/* WHOPR. */
55 /* Current LTO mode. */
56 static enum lto_mode_d lto_mode
= LTO_MODE_NONE
;
58 static char *ltrans_output_file
;
59 static char *flto_out
;
60 static char *args_name
;
62 static void maybe_unlink_file (const char *);
64 /* Delete tempfiles and exit function. */
67 lto_wrapper_exit (int status
)
69 static bool cleanup_done
= false;
72 /* Setting cleanup_done prevents an infinite loop if one of the
73 calls to maybe_unlink_file fails. */
76 if (ltrans_output_file
)
77 maybe_unlink_file (ltrans_output_file
);
79 maybe_unlink_file (flto_out
);
81 maybe_unlink_file (args_name
);
86 /* Just die. CMSGID is the error message. */
88 static void __attribute__ ((format (printf
, 1, 2)))
89 fatal (const char * cmsgid
, ...)
93 va_start (ap
, cmsgid
);
94 fprintf (stderr
, "lto-wrapper: ");
95 vfprintf (stderr
, _(cmsgid
), ap
);
96 fprintf (stderr
, "\n");
99 lto_wrapper_exit (FATAL_EXIT_CODE
);
103 /* Die when sys call fails. CMSGID is the error message. */
105 static void __attribute__ ((format (printf
, 1, 2)))
106 fatal_perror (const char *cmsgid
, ...)
111 va_start (ap
, cmsgid
);
112 fprintf (stderr
, "lto-wrapper: ");
113 vfprintf (stderr
, _(cmsgid
), ap
);
114 fprintf (stderr
, ": %s\n", xstrerror (e
));
117 lto_wrapper_exit (FATAL_EXIT_CODE
);
121 /* Execute a program, and wait for the reply. ARGV are the arguments. The
122 last one must be NULL. */
124 static struct pex_obj
*
125 collect_execute (char **argv
)
136 for (p_argv
= argv
; (str
= *p_argv
) != (char *) 0; p_argv
++)
137 fprintf (stderr
, " %s", str
);
139 fprintf (stderr
, "\n");
145 pex
= pex_init (0, "lto-wrapper", NULL
);
147 fatal_perror ("pex_init failed");
149 errmsg
= pex_run (pex
, PEX_LAST
| PEX_SEARCH
, argv
[0], argv
, NULL
,
156 fatal_perror (errmsg
);
166 /* Wait for a process to finish, and exit if a nonzero status is found.
167 PROG is the program name. PEX is the process we should wait for. */
170 collect_wait (const char *prog
, struct pex_obj
*pex
)
174 if (!pex_get_status (pex
, 1, &status
))
175 fatal_perror ("can't get program status");
180 if (WIFSIGNALED (status
))
182 int sig
= WTERMSIG (status
);
183 if (WCOREDUMP (status
))
184 fatal ("%s terminated with signal %d [%s], core dumped",
185 prog
, sig
, strsignal (sig
));
187 fatal ("%s terminated with signal %d [%s]",
188 prog
, sig
, strsignal (sig
));
191 if (WIFEXITED (status
))
192 fatal ("%s returned %d exit status", prog
, WEXITSTATUS (status
));
199 /* Unlink a temporary LTRANS file unless requested otherwise. */
202 maybe_unlink_file (const char *file
)
206 if (unlink_if_ordinary (file
))
207 fatal_perror ("deleting LTRANS file %s", file
);
210 fprintf (stderr
, "[Leaving LTRANS %s]\n", file
);
214 /* Execute program ARGV[0] with arguments ARGV. Wait for it to finish. */
217 fork_execute (char **argv
)
225 args_name
= make_temp_file (".args");
226 at_args
= concat ("@", args_name
, NULL
);
227 args
= fopen (args_name
, "w");
229 fatal ("failed to open %s", args_name
);
231 status
= writeargv (&argv
[1], args
);
234 fatal ("could not write to temporary file %s", args_name
);
238 new_argv
[0] = argv
[0];
239 new_argv
[1] = at_args
;
242 pex
= collect_execute (new_argv
);
243 collect_wait (new_argv
[0], pex
);
245 maybe_unlink_file (args_name
);
250 /* Execute gcc. ARGC is the number of arguments. ARGV contains the arguments. */
253 run_gcc (unsigned argc
, char *argv
[])
256 unsigned new_argc
= argc
;
257 const char **new_argv
;
258 const char **argv_ptr
;
259 char *list_option_full
= NULL
;
262 new_argv
= (const char **) xcalloc (sizeof (char *), new_argc
);
266 *argv_ptr
++ = argv
[0];
267 *argv_ptr
++ = "-combine";
271 if (lto_mode
== LTO_MODE_LTO
)
273 flto_out
= make_temp_file (".lto.o");
275 *argv_ptr
++ = flto_out
;
277 else if (lto_mode
== LTO_MODE_WHOPR
)
279 const char *list_option
= "-fltrans-output-list=";
280 size_t list_option_len
= strlen (list_option
);
283 ltrans_output_file
= make_temp_file (".ltrans.out");
284 list_option_full
= (char *) xmalloc (sizeof (char) *
285 (strlen (ltrans_output_file
) + list_option_len
+ 1));
286 tmp
= list_option_full
;
289 strcpy (tmp
, list_option
);
290 tmp
+= list_option_len
;
291 strcpy (tmp
, ltrans_output_file
);
293 *argv_ptr
++ = "-fwpa";
296 fatal ("invalid LTO mode");
298 /* Add inherited GCC options to the LTO back end command line.
299 Filter out some obviously inappropriate options that will
300 conflict with the options that we force above. We pass
301 all of the remaining options on to LTO, and let it complain
302 about any it doesn't like. Note that we invoke LTO via the
303 `gcc' driver, so the usual option processing takes place.
304 Except for `-flto' and `-fwhopr', we should only filter options that
305 are meaningful to `ld', lest an option go silently unclaimed. */
306 for (i
= 1; i
< argc
; i
++)
308 const char *s
= argv
[i
];
310 if (strcmp (s
, "-flto") == 0 || strcmp (s
, "-fwhopr") == 0)
311 /* We've handled this LTO option, don't pass it on. */
313 else if (*s
== '-' && s
[1] == 'o')
315 /* Drop `-o' and its filename argument. We will use a
316 temporary file for the LTO output. The `-o' option
317 will be interpreted by the linker. */
320 char *output_dir
, *base
, *name
;
323 output_dir
= xstrdup (argv
[i
]);
325 for (name
= base
; *name
; name
++)
326 if (IS_DIR_SEPARATOR (*name
))
330 *argv_ptr
++ = "-dumpbase";
331 if (*output_dir
== '\0')
333 static char current_dir
[] =
334 { '.', DIR_SEPARATOR
, '\0' };
335 output_dir
= current_dir
;
336 *argv_ptr
++ = argv
[i
];
339 *argv_ptr
++ = &argv
[i
][base
- output_dir
];
341 *argv_ptr
++ = "-dumpdir";
342 *argv_ptr
++ = output_dir
;
346 /* Pass the option or argument to LTO. */
352 fork_execute (CONST_CAST (char **, new_argv
));
356 if (lto_mode
== LTO_MODE_LTO
)
358 printf("%s\n", flto_out
);
362 else if (lto_mode
== LTO_MODE_WHOPR
)
364 FILE *stream
= fopen (ltrans_output_file
, "r");
368 fatal_perror ("fopen: %s", ltrans_output_file
);
370 while ((c
= getc (stream
)) != EOF
)
373 maybe_unlink_file (ltrans_output_file
);
374 free (list_option_full
);
377 fatal ("invalid LTO mode");
381 /* Parse the command line. Copy any unused argument to GCC_ARGV. ARGC is the
382 number of arguments. ARGV contains the arguments. */
385 process_args (int argc
, char *argv
[], char *gcc_argv
[])
390 for (i
= 1; i
< argc
; i
++)
392 if (! strcmp (argv
[i
], "-debug"))
394 else if (! strcmp (argv
[i
], "-flto"))
395 lto_mode
= LTO_MODE_LTO
;
396 else if (! strcmp (argv
[i
], "-fwhopr"))
397 lto_mode
= LTO_MODE_WHOPR
;
400 gcc_argv
[j
] = argv
[i
];
412 main (int argc
, char *argv
[])
419 /* We may be called with all the arguments stored in some file and
420 passed with @file. Expand them into argv before processing. */
421 expandargv (&argc
, &argv
);
422 gcc_argv
= (char **) xcalloc (sizeof (char *), argc
);
423 gcc_argc
= process_args (argc
, argv
, gcc_argv
);
424 run_gcc (gcc_argc
, gcc_argv
);