* lto-partition.c (add_symbol_to_partition_1,
[official-gcc.git] / gcc / lto-wrapper.c
blob5798a81f95808cba07d98fd3f74035cb9f26f68a
1 /* Wrapper to call lto. Used by collect2 and the linker plugin.
2 Copyright (C) 2009-2014 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
11 version.
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
16 for more details.
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.
28 Example:
30 $ lto-wrapper gcc/xgcc -B gcc a.o b.o -o test -flto
32 The above will print something like
33 /tmp/ccwbQ8B2.lto.o
35 If WHOPR is used instead, more than one file might be produced
36 ./ccXj2DTk.lto.ltrans.o
37 ./ccCJuXGv.lto.ltrans.o
40 #include "config.h"
41 #include "system.h"
42 #include "coretypes.h"
43 #include "intl.h"
44 #include "diagnostic.h"
45 #include "obstack.h"
46 #include "opts.h"
47 #include "options.h"
48 #include "simple-object.h"
50 /* From lto-streamer.h which we cannot include with -fkeep-inline-functions.
51 ??? Split out a lto-streamer-core.h. */
53 #define LTO_SECTION_NAME_PREFIX ".gnu.lto_"
55 /* End of lto-streamer.h copy. */
57 int debug; /* true if -save-temps. */
58 int verbose; /* true if -v. */
60 enum lto_mode_d {
61 LTO_MODE_NONE, /* Not doing LTO. */
62 LTO_MODE_LTO, /* Normal LTO. */
63 LTO_MODE_WHOPR /* WHOPR. */
66 /* Current LTO mode. */
67 static enum lto_mode_d lto_mode = LTO_MODE_NONE;
69 static char *ltrans_output_file;
70 static char *flto_out;
71 static char *args_name;
72 static unsigned int nr;
73 static char **input_names;
74 static char **output_names;
75 static char *makefile;
77 static void maybe_unlink_file (const char *);
79 /* Delete tempfiles. */
81 static void
82 lto_wrapper_cleanup (void)
84 static bool cleanup_done = false;
85 unsigned int i;
87 if (cleanup_done)
88 return;
90 /* Setting cleanup_done prevents an infinite loop if one of the
91 calls to maybe_unlink_file fails. */
92 cleanup_done = true;
94 if (ltrans_output_file)
95 maybe_unlink_file (ltrans_output_file);
96 if (flto_out)
97 maybe_unlink_file (flto_out);
98 if (args_name)
99 maybe_unlink_file (args_name);
100 if (makefile)
101 maybe_unlink_file (makefile);
102 for (i = 0; i < nr; ++i)
104 maybe_unlink_file (input_names[i]);
105 if (output_names[i])
106 maybe_unlink_file (output_names[i]);
110 static void
111 fatal_signal (int signum)
113 signal (signum, SIG_DFL);
114 lto_wrapper_cleanup ();
115 /* Get the same signal again, this time not handled,
116 so its normal effect occurs. */
117 kill (getpid (), signum);
120 /* Just die. CMSGID is the error message. */
122 static void __attribute__ ((format (printf, 1, 2)))
123 fatal (const char * cmsgid, ...)
125 va_list ap;
127 va_start (ap, cmsgid);
128 fprintf (stderr, "lto-wrapper: ");
129 vfprintf (stderr, _(cmsgid), ap);
130 fprintf (stderr, "\n");
131 va_end (ap);
133 lto_wrapper_cleanup ();
134 exit (FATAL_EXIT_CODE);
138 /* Die when sys call fails. CMSGID is the error message. */
140 static void __attribute__ ((format (printf, 1, 2)))
141 fatal_perror (const char *cmsgid, ...)
143 int e = errno;
144 va_list ap;
146 va_start (ap, cmsgid);
147 fprintf (stderr, "lto-wrapper: ");
148 vfprintf (stderr, _(cmsgid), ap);
149 fprintf (stderr, ": %s\n", xstrerror (e));
150 va_end (ap);
152 lto_wrapper_cleanup ();
153 exit (FATAL_EXIT_CODE);
157 /* Execute a program, and wait for the reply. ARGV are the arguments. The
158 last one must be NULL. */
160 static struct pex_obj *
161 collect_execute (char **argv)
163 struct pex_obj *pex;
164 const char *errmsg;
165 int err;
167 if (verbose)
169 char **p_argv;
170 const char *str;
172 for (p_argv = argv; (str = *p_argv) != (char *) 0; p_argv++)
173 fprintf (stderr, " %s", str);
175 fprintf (stderr, "\n");
178 fflush (stdout);
179 fflush (stderr);
181 pex = pex_init (0, "lto-wrapper", NULL);
182 if (pex == NULL)
183 fatal_perror ("pex_init failed");
185 /* Do not use PEX_LAST here, we use our stdout for communicating with
186 collect2 or the linker-plugin. Any output from the sub-process
187 will confuse that. */
188 errmsg = pex_run (pex, PEX_SEARCH, argv[0], argv, NULL,
189 NULL, &err);
190 if (errmsg != NULL)
192 if (err != 0)
194 errno = err;
195 fatal_perror (errmsg);
197 else
198 fatal (errmsg);
201 return pex;
205 /* Wait for a process to finish, and exit if a nonzero status is found.
206 PROG is the program name. PEX is the process we should wait for. */
208 static int
209 collect_wait (const char *prog, struct pex_obj *pex)
211 int status;
213 if (!pex_get_status (pex, 1, &status))
214 fatal_perror ("can't get program status");
215 pex_free (pex);
217 if (status)
219 if (WIFSIGNALED (status))
221 int sig = WTERMSIG (status);
222 if (WCOREDUMP (status))
223 fatal ("%s terminated with signal %d [%s], core dumped",
224 prog, sig, strsignal (sig));
225 else
226 fatal ("%s terminated with signal %d [%s]",
227 prog, sig, strsignal (sig));
230 if (WIFEXITED (status))
231 fatal ("%s returned %d exit status", prog, WEXITSTATUS (status));
234 return 0;
238 /* Unlink a temporary LTRANS file unless requested otherwise. */
240 static void
241 maybe_unlink_file (const char *file)
243 if (! debug)
245 if (unlink_if_ordinary (file)
246 && errno != ENOENT)
247 fatal_perror ("deleting LTRANS file %s", file);
249 else
250 fprintf (stderr, "[Leaving LTRANS %s]\n", file);
254 /* Execute program ARGV[0] with arguments ARGV. Wait for it to finish. */
256 static void
257 fork_execute (char **argv)
259 struct pex_obj *pex;
260 char *new_argv[3];
261 char *at_args;
262 FILE *args;
263 int status;
265 args_name = make_temp_file (".args");
266 at_args = concat ("@", args_name, NULL);
267 args = fopen (args_name, "w");
268 if (args == NULL)
269 fatal ("failed to open %s", args_name);
271 status = writeargv (&argv[1], args);
273 if (status)
274 fatal ("could not write to temporary file %s", args_name);
276 fclose (args);
278 new_argv[0] = argv[0];
279 new_argv[1] = at_args;
280 new_argv[2] = NULL;
282 pex = collect_execute (new_argv);
283 collect_wait (new_argv[0], pex);
285 maybe_unlink_file (args_name);
286 args_name = NULL;
287 free (at_args);
290 /* Template of LTRANS dumpbase suffix. */
291 #define DUMPBASE_SUFFIX ".ltrans18446744073709551615"
293 /* Create decoded options from the COLLECT_GCC and COLLECT_GCC_OPTIONS
294 environment according to LANG_MASK. */
296 static void
297 get_options_from_collect_gcc_options (const char *collect_gcc,
298 const char *collect_gcc_options,
299 unsigned int lang_mask,
300 struct cl_decoded_option **decoded_options,
301 unsigned int *decoded_options_count)
303 struct obstack argv_obstack;
304 char *argv_storage;
305 const char **argv;
306 int j, k, argc;
308 argv_storage = xstrdup (collect_gcc_options);
309 obstack_init (&argv_obstack);
310 obstack_ptr_grow (&argv_obstack, collect_gcc);
312 for (j = 0, k = 0; argv_storage[j] != '\0'; ++j)
314 if (argv_storage[j] == '\'')
316 obstack_ptr_grow (&argv_obstack, &argv_storage[k]);
317 ++j;
320 if (argv_storage[j] == '\0')
321 fatal ("malformed COLLECT_GCC_OPTIONS");
322 else if (strncmp (&argv_storage[j], "'\\''", 4) == 0)
324 argv_storage[k++] = '\'';
325 j += 4;
327 else if (argv_storage[j] == '\'')
328 break;
329 else
330 argv_storage[k++] = argv_storage[j++];
332 while (1);
333 argv_storage[k++] = '\0';
337 obstack_ptr_grow (&argv_obstack, NULL);
338 argc = obstack_object_size (&argv_obstack) / sizeof (void *) - 1;
339 argv = XOBFINISH (&argv_obstack, const char **);
341 decode_cmdline_options_to_array (argc, (const char **)argv,
342 lang_mask,
343 decoded_options, decoded_options_count);
344 obstack_free (&argv_obstack, NULL);
347 /* Append OPTION to the options array DECODED_OPTIONS with size
348 DECODED_OPTIONS_COUNT. */
350 static void
351 append_option (struct cl_decoded_option **decoded_options,
352 unsigned int *decoded_options_count,
353 struct cl_decoded_option *option)
355 ++*decoded_options_count;
356 *decoded_options
357 = (struct cl_decoded_option *)
358 xrealloc (*decoded_options,
359 (*decoded_options_count
360 * sizeof (struct cl_decoded_option)));
361 memcpy (&(*decoded_options)[*decoded_options_count - 1], option,
362 sizeof (struct cl_decoded_option));
365 /* Try to merge and complain about options FDECODED_OPTIONS when applied
366 ontop of DECODED_OPTIONS. */
368 static void
369 merge_and_complain (struct cl_decoded_option **decoded_options,
370 unsigned int *decoded_options_count,
371 struct cl_decoded_option *fdecoded_options,
372 unsigned int fdecoded_options_count)
374 unsigned int i, j;
376 /* ??? Merge options from files. Most cases can be
377 handled by either unioning or intersecting
378 (for example -fwrapv is a case for unioning,
379 -ffast-math is for intersection). Most complaints
380 about real conflicts between different options can
381 be deferred to the compiler proper. Options that
382 we can neither safely handle by intersection nor
383 unioning would need to be complained about here.
384 Ideally we'd have a flag in the opt files that
385 tells whether to union or intersect or reject.
386 In absence of that it's unclear what a good default is.
387 It's also difficult to get positional handling correct. */
389 /* The following does what the old LTO option code did,
390 union all target and a selected set of common options. */
391 for (i = 0; i < fdecoded_options_count; ++i)
393 struct cl_decoded_option *foption = &fdecoded_options[i];
394 switch (foption->opt_index)
396 case OPT_SPECIAL_unknown:
397 case OPT_SPECIAL_ignore:
398 case OPT_SPECIAL_program_name:
399 case OPT_SPECIAL_input_file:
400 break;
402 default:
403 if (!(cl_options[foption->opt_index].flags & CL_TARGET))
404 break;
406 /* Fallthru. */
407 case OPT_fPIC:
408 case OPT_fpic:
409 case OPT_fpie:
410 case OPT_fcommon:
411 case OPT_fexceptions:
412 case OPT_fnon_call_exceptions:
413 case OPT_fgnu_tm:
414 /* Do what the old LTO code did - collect exactly one option
415 setting per OPT code, we pick the first we encounter.
416 ??? This doesn't make too much sense, but when it doesn't
417 then we should complain. */
418 for (j = 0; j < *decoded_options_count; ++j)
419 if ((*decoded_options)[j].opt_index == foption->opt_index)
420 break;
421 if (j == *decoded_options_count)
422 append_option (decoded_options, decoded_options_count, foption);
423 break;
425 case OPT_ffp_contract_:
426 /* For selected options we can merge conservatively. */
427 for (j = 0; j < *decoded_options_count; ++j)
428 if ((*decoded_options)[j].opt_index == foption->opt_index)
429 break;
430 if (j == *decoded_options_count)
431 append_option (decoded_options, decoded_options_count, foption);
432 /* FP_CONTRACT_OFF < FP_CONTRACT_ON < FP_CONTRACT_FAST. */
433 else if (foption->value < (*decoded_options)[j].value)
434 (*decoded_options)[j] = *foption;
435 break;
437 case OPT_freg_struct_return:
438 case OPT_fpcc_struct_return:
439 for (j = 0; j < *decoded_options_count; ++j)
440 if ((*decoded_options)[j].opt_index == foption->opt_index)
441 break;
442 if (j == *decoded_options_count)
443 fatal ("Option %s not used consistently in all LTO input files",
444 foption->orig_option_with_args_text);
445 break;
450 /* Execute gcc. ARGC is the number of arguments. ARGV contains the arguments. */
452 static void
453 run_gcc (unsigned argc, char *argv[])
455 unsigned i, j;
456 const char **new_argv;
457 const char **argv_ptr;
458 char *list_option_full = NULL;
459 const char *linker_output = NULL;
460 const char *collect_gcc, *collect_gcc_options;
461 int parallel = 0;
462 int jobserver = 0;
463 bool no_partition = false;
464 struct cl_decoded_option *fdecoded_options = NULL;
465 unsigned int fdecoded_options_count = 0;
466 struct cl_decoded_option *decoded_options;
467 unsigned int decoded_options_count;
468 struct obstack argv_obstack;
469 int new_head_argc;
471 /* Get the driver and options. */
472 collect_gcc = getenv ("COLLECT_GCC");
473 if (!collect_gcc)
474 fatal ("environment variable COLLECT_GCC must be set");
475 collect_gcc_options = getenv ("COLLECT_GCC_OPTIONS");
476 if (!collect_gcc_options)
477 fatal ("environment variable COLLECT_GCC_OPTIONS must be set");
478 get_options_from_collect_gcc_options (collect_gcc, collect_gcc_options,
479 CL_LANG_ALL,
480 &decoded_options,
481 &decoded_options_count);
483 /* Look at saved options in the IL files. */
484 for (i = 1; i < argc; ++i)
486 char *data, *p;
487 char *fopts;
488 int fd;
489 const char *errmsg;
490 int err;
491 off_t file_offset = 0, offset, length;
492 long loffset;
493 simple_object_read *sobj;
494 int consumed;
495 struct cl_decoded_option *f2decoded_options;
496 unsigned int f2decoded_options_count;
497 char *filename = argv[i];
498 if ((p = strrchr (argv[i], '@'))
499 && p != argv[i]
500 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1
501 && strlen (p) == (unsigned int) consumed)
503 filename = XNEWVEC (char, p - argv[i] + 1);
504 memcpy (filename, argv[i], p - argv[i]);
505 filename[p - argv[i]] = '\0';
506 file_offset = (off_t) loffset;
508 fd = open (argv[i], O_RDONLY);
509 if (fd == -1)
510 continue;
511 sobj = simple_object_start_read (fd, file_offset, "__GNU_LTO",
512 &errmsg, &err);
513 if (!sobj)
515 close (fd);
516 continue;
518 if (!simple_object_find_section (sobj, LTO_SECTION_NAME_PREFIX "." "opts",
519 &offset, &length, &errmsg, &err))
521 simple_object_release_read (sobj);
522 close (fd);
523 continue;
525 lseek (fd, file_offset + offset, SEEK_SET);
526 data = (char *)xmalloc (length);
527 read (fd, data, length);
528 fopts = data;
531 get_options_from_collect_gcc_options (collect_gcc,
532 fopts, CL_LANG_ALL,
533 &f2decoded_options,
534 &f2decoded_options_count);
535 if (!fdecoded_options)
537 fdecoded_options = f2decoded_options;
538 fdecoded_options_count = f2decoded_options_count;
540 else
541 merge_and_complain (&fdecoded_options,
542 &fdecoded_options_count,
543 f2decoded_options, f2decoded_options_count);
545 fopts += strlen (fopts) + 1;
547 while (fopts - data < length);
549 free (data);
550 simple_object_release_read (sobj);
551 close (fd);
554 /* Initalize the common arguments for the driver. */
555 obstack_init (&argv_obstack);
556 obstack_ptr_grow (&argv_obstack, collect_gcc);
557 obstack_ptr_grow (&argv_obstack, "-xlto");
558 obstack_ptr_grow (&argv_obstack, "-c");
560 /* Append compiler driver arguments as far as they were merged. */
561 for (j = 1; j < fdecoded_options_count; ++j)
563 struct cl_decoded_option *option = &fdecoded_options[j];
565 /* File options have been properly filtered by lto-opts.c. */
566 switch (option->opt_index)
568 /* Drop arguments that we want to take from the link line. */
569 case OPT_flto_:
570 case OPT_flto:
571 case OPT_flto_partition_none:
572 case OPT_flto_partition_1to1:
573 case OPT_flto_partition_balanced:
574 continue;
576 default:
577 break;
580 /* For now do what the original LTO option code was doing - pass
581 on any CL_TARGET flag and a few selected others. */
582 switch (option->opt_index)
584 case OPT_fPIC:
585 case OPT_fpic:
586 case OPT_fpie:
587 case OPT_fcommon:
588 case OPT_fexceptions:
589 case OPT_fnon_call_exceptions:
590 case OPT_fgnu_tm:
591 case OPT_freg_struct_return:
592 case OPT_fpcc_struct_return:
593 case OPT_ffp_contract_:
594 break;
596 default:
597 if (!(cl_options[option->opt_index].flags & CL_TARGET))
598 continue;
601 /* Pass the option on. */
602 for (i = 0; i < option->canonical_option_num_elements; ++i)
603 obstack_ptr_grow (&argv_obstack, option->canonical_option[i]);
606 /* Append linker driver arguments. Compiler options from the linker
607 driver arguments will override / merge with those from the compiler. */
608 for (j = 1; j < decoded_options_count; ++j)
610 struct cl_decoded_option *option = &decoded_options[j];
612 /* Do not pass on frontend specific flags not suitable for lto. */
613 if (!(cl_options[option->opt_index].flags
614 & (CL_COMMON|CL_TARGET|CL_DRIVER|CL_LTO)))
615 continue;
617 switch (option->opt_index)
619 case OPT_o:
620 linker_output = option->arg;
621 /* We generate new intermediate output, drop this arg. */
622 continue;
624 case OPT_save_temps:
625 debug = 1;
626 break;
628 case OPT_v:
629 verbose = 1;
630 break;
632 case OPT_flto_partition_none:
633 no_partition = true;
634 break;
636 case OPT_flto_:
637 if (strcmp (option->arg, "jobserver") == 0)
639 jobserver = 1;
640 parallel = 1;
642 else
644 parallel = atoi (option->arg);
645 if (parallel <= 1)
646 parallel = 0;
648 /* Fallthru. */
650 case OPT_flto:
651 lto_mode = LTO_MODE_WHOPR;
652 /* We've handled these LTO options, do not pass them on. */
653 continue;
655 case OPT_freg_struct_return:
656 case OPT_fpcc_struct_return:
657 /* Ignore these, they are determined by the input files.
658 ??? We fail to diagnose a possible mismatch here. */
659 continue;
661 default:
662 break;
665 /* Pass the option on. */
666 for (i = 0; i < option->canonical_option_num_elements; ++i)
667 obstack_ptr_grow (&argv_obstack, option->canonical_option[i]);
670 if (no_partition)
672 lto_mode = LTO_MODE_LTO;
673 jobserver = 0;
674 parallel = 0;
677 if (linker_output)
679 char *output_dir, *base, *name;
680 bool bit_bucket = strcmp (linker_output, HOST_BIT_BUCKET) == 0;
682 output_dir = xstrdup (linker_output);
683 base = output_dir;
684 for (name = base; *name; name++)
685 if (IS_DIR_SEPARATOR (*name))
686 base = name + 1;
687 *base = '\0';
689 linker_output = &linker_output[base - output_dir];
690 if (*output_dir == '\0')
692 static char current_dir[] = { '.', DIR_SEPARATOR, '\0' };
693 output_dir = current_dir;
695 if (!bit_bucket)
697 obstack_ptr_grow (&argv_obstack, "-dumpdir");
698 obstack_ptr_grow (&argv_obstack, output_dir);
701 obstack_ptr_grow (&argv_obstack, "-dumpbase");
704 /* Remember at which point we can scrub args to re-use the commons. */
705 new_head_argc = obstack_object_size (&argv_obstack) / sizeof (void *);
707 if (lto_mode == LTO_MODE_LTO)
709 flto_out = make_temp_file (".lto.o");
710 if (linker_output)
711 obstack_ptr_grow (&argv_obstack, linker_output);
712 obstack_ptr_grow (&argv_obstack, "-o");
713 obstack_ptr_grow (&argv_obstack, flto_out);
715 else
717 const char *list_option = "-fltrans-output-list=";
718 size_t list_option_len = strlen (list_option);
719 char *tmp;
721 if (linker_output)
723 char *dumpbase = (char *) xmalloc (strlen (linker_output)
724 + sizeof (".wpa") + 1);
725 strcpy (dumpbase, linker_output);
726 strcat (dumpbase, ".wpa");
727 obstack_ptr_grow (&argv_obstack, dumpbase);
730 if (linker_output && debug)
732 ltrans_output_file = (char *) xmalloc (strlen (linker_output)
733 + sizeof (".ltrans.out") + 1);
734 strcpy (ltrans_output_file, linker_output);
735 strcat (ltrans_output_file, ".ltrans.out");
737 else
738 ltrans_output_file = make_temp_file (".ltrans.out");
739 list_option_full = (char *) xmalloc (sizeof (char) *
740 (strlen (ltrans_output_file) + list_option_len + 1));
741 tmp = list_option_full;
743 obstack_ptr_grow (&argv_obstack, tmp);
744 strcpy (tmp, list_option);
745 tmp += list_option_len;
746 strcpy (tmp, ltrans_output_file);
748 if (jobserver)
749 obstack_ptr_grow (&argv_obstack, xstrdup ("-fwpa=jobserver"));
750 else if (parallel > 1)
752 char buf[256];
753 sprintf (buf, "-fwpa=%i", parallel);
754 obstack_ptr_grow (&argv_obstack, xstrdup (buf));
756 else
757 obstack_ptr_grow (&argv_obstack, "-fwpa");
760 /* Append the input objects and possible preceding arguments. */
761 for (i = 1; i < argc; ++i)
762 obstack_ptr_grow (&argv_obstack, argv[i]);
763 obstack_ptr_grow (&argv_obstack, NULL);
765 new_argv = XOBFINISH (&argv_obstack, const char **);
766 argv_ptr = &new_argv[new_head_argc];
767 fork_execute (CONST_CAST (char **, new_argv));
769 if (lto_mode == LTO_MODE_LTO)
771 printf ("%s\n", flto_out);
772 free (flto_out);
773 flto_out = NULL;
775 else
777 FILE *stream = fopen (ltrans_output_file, "r");
778 FILE *mstream = NULL;
779 struct obstack env_obstack;
781 if (!stream)
782 fatal_perror ("fopen: %s", ltrans_output_file);
784 /* Parse the list of LTRANS inputs from the WPA stage. */
785 obstack_init (&env_obstack);
786 nr = 0;
787 for (;;)
789 const unsigned piece = 32;
790 char *output_name = NULL;
791 char *buf, *input_name = (char *)xmalloc (piece);
792 size_t len;
794 buf = input_name;
795 cont:
796 if (!fgets (buf, piece, stream))
797 break;
798 len = strlen (input_name);
799 if (input_name[len - 1] != '\n')
801 input_name = (char *)xrealloc (input_name, len + piece);
802 buf = input_name + len;
803 goto cont;
805 input_name[len - 1] = '\0';
807 if (input_name[0] == '*')
808 output_name = &input_name[1];
810 nr++;
811 input_names = (char **)xrealloc (input_names, nr * sizeof (char *));
812 output_names = (char **)xrealloc (output_names, nr * sizeof (char *));
813 input_names[nr-1] = input_name;
814 output_names[nr-1] = output_name;
816 fclose (stream);
817 maybe_unlink_file (ltrans_output_file);
818 ltrans_output_file = NULL;
820 if (parallel)
822 makefile = make_temp_file (".mk");
823 mstream = fopen (makefile, "w");
826 /* Execute the LTRANS stage for each input file (or prepare a
827 makefile to invoke this in parallel). */
828 for (i = 0; i < nr; ++i)
830 char *output_name;
831 char *input_name = input_names[i];
832 /* If it's a pass-through file do nothing. */
833 if (output_names[i])
834 continue;
836 /* Replace the .o suffix with a .ltrans.o suffix and write
837 the resulting name to the LTRANS output list. */
838 obstack_grow (&env_obstack, input_name, strlen (input_name) - 2);
839 obstack_grow (&env_obstack, ".ltrans.o", sizeof (".ltrans.o"));
840 output_name = XOBFINISH (&env_obstack, char *);
842 /* Adjust the dumpbase if the linker output file was seen. */
843 if (linker_output)
845 char *dumpbase
846 = (char *) xmalloc (strlen (linker_output)
847 + sizeof (DUMPBASE_SUFFIX) + 1);
848 snprintf (dumpbase,
849 strlen (linker_output) + sizeof (DUMPBASE_SUFFIX),
850 "%s.ltrans%u", linker_output, i);
851 argv_ptr[0] = dumpbase;
854 argv_ptr[1] = "-fltrans";
855 argv_ptr[2] = "-o";
856 argv_ptr[3] = output_name;
857 argv_ptr[4] = input_name;
858 argv_ptr[5] = NULL;
859 if (parallel)
861 fprintf (mstream, "%s:\n\t@%s ", output_name, new_argv[0]);
862 for (j = 1; new_argv[j] != NULL; ++j)
863 fprintf (mstream, " '%s'", new_argv[j]);
864 fprintf (mstream, "\n");
865 /* If we are not preserving the ltrans input files then
866 truncate them as soon as we have processed it. This
867 reduces temporary disk-space usage. */
868 if (! debug)
869 fprintf (mstream, "\t@-touch -r %s %s.tem > /dev/null 2>&1 "
870 "&& mv %s.tem %s\n",
871 input_name, input_name, input_name, input_name);
873 else
875 fork_execute (CONST_CAST (char **, new_argv));
876 maybe_unlink_file (input_name);
879 output_names[i] = output_name;
881 if (parallel)
883 struct pex_obj *pex;
884 char jobs[32];
886 fprintf (mstream, "all:");
887 for (i = 0; i < nr; ++i)
888 fprintf (mstream, " \\\n\t%s", output_names[i]);
889 fprintf (mstream, "\n");
890 fclose (mstream);
891 if (!jobserver)
893 /* Avoid passing --jobserver-fd= and similar flags
894 unless jobserver mode is explicitly enabled. */
895 putenv (xstrdup ("MAKEFLAGS="));
896 putenv (xstrdup ("MFLAGS="));
898 new_argv[0] = getenv ("MAKE");
899 if (!new_argv[0])
900 new_argv[0] = "make";
901 new_argv[1] = "-f";
902 new_argv[2] = makefile;
903 i = 3;
904 if (!jobserver)
906 snprintf (jobs, 31, "-j%d", parallel);
907 new_argv[i++] = jobs;
909 new_argv[i++] = "all";
910 new_argv[i++] = NULL;
911 pex = collect_execute (CONST_CAST (char **, new_argv));
912 collect_wait (new_argv[0], pex);
913 maybe_unlink_file (makefile);
914 makefile = NULL;
915 for (i = 0; i < nr; ++i)
916 maybe_unlink_file (input_names[i]);
918 for (i = 0; i < nr; ++i)
920 fputs (output_names[i], stdout);
921 putc ('\n', stdout);
922 free (input_names[i]);
924 nr = 0;
925 free (output_names);
926 free (input_names);
927 free (list_option_full);
928 obstack_free (&env_obstack, NULL);
931 obstack_free (&argv_obstack, NULL);
935 /* Entry point. */
938 main (int argc, char *argv[])
940 const char *p;
942 gcc_obstack_init (&opts_obstack);
944 p = argv[0] + strlen (argv[0]);
945 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
946 --p;
947 progname = p;
949 xmalloc_set_program_name (progname);
951 gcc_init_libintl ();
953 diagnostic_initialize (global_dc, 0);
955 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
956 signal (SIGINT, fatal_signal);
957 #ifdef SIGHUP
958 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
959 signal (SIGHUP, fatal_signal);
960 #endif
961 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
962 signal (SIGTERM, fatal_signal);
963 #ifdef SIGPIPE
964 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
965 signal (SIGPIPE, fatal_signal);
966 #endif
967 #ifdef SIGCHLD
968 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
969 receive the signal. A different setting is inheritable */
970 signal (SIGCHLD, SIG_DFL);
971 #endif
973 /* We may be called with all the arguments stored in some file and
974 passed with @file. Expand them into argv before processing. */
975 expandargv (&argc, &argv);
977 run_gcc (argc, argv);
979 return 0;