1 /* Wrapper to call lto. Used by collect2 and the linker plugin.
2 Copyright (C) 2009-2021 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 WHOPR is used instead, more than one file might be produced
36 ./ccXj2DTk.lto.ltrans.o
37 ./ccCJuXGv.lto.ltrans.o
42 #include "coretypes.h"
44 #include "diagnostic.h"
48 #include "simple-object.h"
49 #include "lto-section-names.h"
50 #include "collect-utils.h"
52 /* Environment variable, used for passing the names of offload targets from GCC
53 driver to lto-wrapper. */
54 #define OFFLOAD_TARGET_NAMES_ENV "OFFLOAD_TARGET_NAMES"
56 /* By default there is no special suffix for target executables. */
57 #ifdef TARGET_EXECUTABLE_SUFFIX
58 #define HAVE_TARGET_EXECUTABLE_SUFFIX
60 #define TARGET_EXECUTABLE_SUFFIX ""
64 LTO_MODE_NONE
, /* Not doing LTO. */
65 LTO_MODE_LTO
, /* Normal LTO. */
66 LTO_MODE_WHOPR
/* WHOPR. */
69 /* Current LTO mode. */
70 static enum lto_mode_d lto_mode
= LTO_MODE_NONE
;
72 static char *ltrans_output_file
;
73 static char *flto_out
;
74 static unsigned int nr
;
75 static int *ltrans_priorities
;
76 static char **input_names
;
77 static char **output_names
;
78 static char **offload_names
;
79 static char *offload_objects_file_name
;
80 static char *makefile
;
81 static unsigned int num_deb_objs
;
82 static const char **early_debug_object_names
;
83 static bool xassembler_options_error
= false;
85 const char tool_name
[] = "lto-wrapper";
87 /* Delete tempfiles. Called from utils_cleanup. */
94 if (ltrans_output_file
)
95 maybe_unlink (ltrans_output_file
);
97 maybe_unlink (flto_out
);
98 if (offload_objects_file_name
)
99 maybe_unlink (offload_objects_file_name
);
101 maybe_unlink (makefile
);
102 if (early_debug_object_names
)
103 for (i
= 0; i
< num_deb_objs
; ++i
)
104 if (early_debug_object_names
[i
])
105 maybe_unlink (early_debug_object_names
[i
]);
106 for (i
= 0; i
< nr
; ++i
)
108 maybe_unlink (input_names
[i
]);
110 maybe_unlink (output_names
[i
]);
115 lto_wrapper_cleanup (void)
117 utils_cleanup (false);
120 /* Unlink a temporary LTRANS file unless requested otherwise. */
123 maybe_unlink (const char *file
)
127 if (unlink_if_ordinary (file
)
129 fatal_error (input_location
, "deleting LTRANS file %s: %m", file
);
132 fprintf (stderr
, "[Leaving LTRANS %s]\n", file
);
135 /* Template of LTRANS dumpbase suffix. */
136 #define DUMPBASE_SUFFIX "ltrans18446744073709551615"
138 /* Create decoded options from the COLLECT_GCC and COLLECT_GCC_OPTIONS
142 get_options_from_collect_gcc_options (const char *collect_gcc
,
143 const char *collect_gcc_options
,
144 struct cl_decoded_option
**decoded_options
,
145 unsigned int *decoded_options_count
)
147 struct obstack argv_obstack
;
151 obstack_init (&argv_obstack
);
152 obstack_ptr_grow (&argv_obstack
, collect_gcc
);
154 parse_options_from_collect_gcc_options (collect_gcc_options
,
155 &argv_obstack
, &argc
);
156 argv
= XOBFINISH (&argv_obstack
, const char **);
158 decode_cmdline_options_to_array (argc
, (const char **)argv
, CL_DRIVER
,
159 decoded_options
, decoded_options_count
);
160 obstack_free (&argv_obstack
, NULL
);
163 /* Append OPTION to the options array DECODED_OPTIONS with size
164 DECODED_OPTIONS_COUNT. */
167 append_option (struct cl_decoded_option
**decoded_options
,
168 unsigned int *decoded_options_count
,
169 struct cl_decoded_option
*option
)
171 ++*decoded_options_count
;
173 = (struct cl_decoded_option
*)
174 xrealloc (*decoded_options
,
175 (*decoded_options_count
176 * sizeof (struct cl_decoded_option
)));
177 memcpy (&(*decoded_options
)[*decoded_options_count
- 1], option
,
178 sizeof (struct cl_decoded_option
));
181 /* Remove option number INDEX from DECODED_OPTIONS, update
182 DECODED_OPTIONS_COUNT. */
185 remove_option (struct cl_decoded_option
**decoded_options
,
186 int index
, unsigned int *decoded_options_count
)
188 --*decoded_options_count
;
189 memmove (&(*decoded_options
)[index
+ 1],
190 &(*decoded_options
)[index
],
191 sizeof (struct cl_decoded_option
)
192 * (*decoded_options_count
- index
));
195 /* Try to merge and complain about options FDECODED_OPTIONS when applied
196 ontop of DECODED_OPTIONS. */
199 merge_and_complain (struct cl_decoded_option
**decoded_options
,
200 unsigned int *decoded_options_count
,
201 struct cl_decoded_option
*fdecoded_options
,
202 unsigned int fdecoded_options_count
,
203 struct cl_decoded_option
*decoded_cl_options
,
204 unsigned int decoded_cl_options_count
)
207 struct cl_decoded_option
*pic_option
= NULL
;
208 struct cl_decoded_option
*pie_option
= NULL
;
209 struct cl_decoded_option
*cf_protection_option
= NULL
;
211 /* ??? Merge options from files. Most cases can be
212 handled by either unioning or intersecting
213 (for example -fwrapv is a case for unioning,
214 -ffast-math is for intersection). Most complaints
215 about real conflicts between different options can
216 be deferred to the compiler proper. Options that
217 we can neither safely handle by intersection nor
218 unioning would need to be complained about here.
219 Ideally we'd have a flag in the opt files that
220 tells whether to union or intersect or reject.
221 In absence of that it's unclear what a good default is.
222 It's also difficult to get positional handling correct. */
224 /* Look for a -fcf-protection option in the link-time options
225 which overrides any -fcf-protection from the lto sections. */
226 for (i
= 0; i
< decoded_cl_options_count
; ++i
)
228 struct cl_decoded_option
*foption
= &decoded_cl_options
[i
];
229 if (foption
->opt_index
== OPT_fcf_protection_
)
231 cf_protection_option
= foption
;
235 /* The following does what the old LTO option code did,
236 union all target and a selected set of common options. */
237 for (i
= 0; i
< fdecoded_options_count
; ++i
)
239 struct cl_decoded_option
*foption
= &fdecoded_options
[i
];
240 switch (foption
->opt_index
)
242 case OPT_SPECIAL_unknown
:
243 case OPT_SPECIAL_ignore
:
244 case OPT_SPECIAL_warn_removed
:
245 case OPT_SPECIAL_program_name
:
246 case OPT_SPECIAL_input_file
:
250 if (!(cl_options
[foption
->opt_index
].flags
& CL_TARGET
))
254 case OPT_fdiagnostics_show_caret
:
255 case OPT_fdiagnostics_show_labels
:
256 case OPT_fdiagnostics_show_line_numbers
:
257 case OPT_fdiagnostics_show_option
:
258 case OPT_fdiagnostics_show_location_
:
259 case OPT_fshow_column
:
263 /* Do what the old LTO code did - collect exactly one option
264 setting per OPT code, we pick the first we encounter.
265 ??? This doesn't make too much sense, but when it doesn't
266 then we should complain. */
267 for (j
= 0; j
< *decoded_options_count
; ++j
)
268 if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
)
270 if (j
== *decoded_options_count
)
271 append_option (decoded_options
, decoded_options_count
, foption
);
274 /* Figure out what PIC/PIE level wins and merge the results. */
277 pic_option
= foption
;
281 pie_option
= foption
;
286 /* For selected options we can merge conservatively. */
287 for (j
= 0; j
< *decoded_options_count
; ++j
)
288 if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
)
290 if (j
== *decoded_options_count
)
291 append_option (decoded_options
, decoded_options_count
, foption
);
292 /* -fopenmp > -fno-openmp,
293 -fopenacc > -fno-openacc */
294 else if (foption
->value
> (*decoded_options
)[j
].value
)
295 (*decoded_options
)[j
] = *foption
;
298 case OPT_fopenacc_dim_
:
299 /* Append or check identical. */
300 for (j
= 0; j
< *decoded_options_count
; ++j
)
301 if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
)
303 if (j
== *decoded_options_count
)
304 append_option (decoded_options
, decoded_options_count
, foption
);
305 else if (strcmp ((*decoded_options
)[j
].arg
, foption
->arg
))
306 fatal_error (input_location
,
307 "option %s with different values",
308 foption
->orig_option_with_args_text
);
311 case OPT_fcf_protection_
:
312 /* Default to link-time option, else append or check identical. */
313 if (!cf_protection_option
314 || cf_protection_option
->value
== CF_CHECK
)
316 for (j
= 0; j
< *decoded_options_count
; ++j
)
317 if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
)
319 if (j
== *decoded_options_count
)
320 append_option (decoded_options
, decoded_options_count
, foption
);
321 else if ((*decoded_options
)[j
].value
!= foption
->value
)
323 if (cf_protection_option
324 && cf_protection_option
->value
== CF_CHECK
)
325 fatal_error (input_location
,
326 "option %qs with mismatching values"
329 (*decoded_options
)[j
].arg
, foption
->arg
);
332 /* Merge and update the -fcf-protection option. */
333 (*decoded_options
)[j
].value
&= (foption
->value
335 switch ((*decoded_options
)[j
].value
)
338 (*decoded_options
)[j
].arg
= "none";
341 (*decoded_options
)[j
].arg
= "branch";
344 (*decoded_options
)[j
].arg
= "return";
358 for (j
= 0; j
< *decoded_options_count
; ++j
)
359 if ((*decoded_options
)[j
].opt_index
== OPT_O
360 || (*decoded_options
)[j
].opt_index
== OPT_Ofast
361 || (*decoded_options
)[j
].opt_index
== OPT_Og
362 || (*decoded_options
)[j
].opt_index
== OPT_Os
)
364 if (j
== *decoded_options_count
)
365 append_option (decoded_options
, decoded_options_count
, foption
);
366 else if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
367 && foption
->opt_index
!= OPT_O
)
368 /* Exact same options get merged. */
372 /* For mismatched option kinds preserve the optimization
373 level only, thus merge it as -On. This also handles
374 merging of same optimization level -On. */
376 switch (foption
->opt_index
)
379 if (foption
->arg
[0] == '\0')
380 level
= MAX (level
, 1);
382 level
= MAX (level
, atoi (foption
->arg
));
385 level
= MAX (level
, 3);
388 level
= MAX (level
, 1);
391 level
= MAX (level
, 2);
396 switch ((*decoded_options
)[j
].opt_index
)
399 if ((*decoded_options
)[j
].arg
[0] == '\0')
400 level
= MAX (level
, 1);
402 level
= MAX (level
, atoi ((*decoded_options
)[j
].arg
));
405 level
= MAX (level
, 3);
408 level
= MAX (level
, 1);
411 level
= MAX (level
, 2);
416 (*decoded_options
)[j
].opt_index
= OPT_O
;
418 tem
= xasprintf ("-O%d", level
);
419 (*decoded_options
)[j
].arg
= &tem
[2];
420 (*decoded_options
)[j
].canonical_option
[0] = tem
;
421 (*decoded_options
)[j
].value
= 1;
426 case OPT_foffload_abi_
:
427 for (j
= 0; j
< *decoded_options_count
; ++j
)
428 if ((*decoded_options
)[j
].opt_index
== foption
->opt_index
)
430 if (j
== *decoded_options_count
)
431 append_option (decoded_options
, decoded_options_count
, foption
);
432 else if (foption
->value
!= (*decoded_options
)[j
].value
)
433 fatal_error (input_location
,
434 "option %s not used consistently in all LTO input"
435 " files", foption
->orig_option_with_args_text
);
440 append_option (decoded_options
, decoded_options_count
, foption
);
445 /* Merge PIC options:
446 -fPIC + -fpic = -fpic
447 -fPIC + -fno-pic = -fno-pic
448 -fpic/-fPIC + nothing = nothing.
449 It is a common mistake to mix few -fPIC compiled objects into otherwise
450 non-PIC code. We do not want to build everything with PIC then.
452 Similarly we merge PIE options, however in addition we keep
453 -fPIC + -fPIE = -fPIE
454 -fpic + -fPIE = -fpie
455 -fPIC/-fpic + -fpie = -fpie
457 It would be good to warn on mismatches, but it is bit hard to do as
458 we do not know what nothing translates to. */
460 for (unsigned int j
= 0; j
< *decoded_options_count
;)
461 if ((*decoded_options
)[j
].opt_index
== OPT_fPIC
462 || (*decoded_options
)[j
].opt_index
== OPT_fpic
)
464 /* -fno-pic in one unit implies -fno-pic everywhere. */
465 if ((*decoded_options
)[j
].value
== 0)
467 /* If we have no pic option or merge in -fno-pic, we still may turn
468 existing pic/PIC mode into pie/PIE if -fpie/-fPIE is present. */
469 else if ((pic_option
&& pic_option
->value
== 0)
474 bool big
= (*decoded_options
)[j
].opt_index
== OPT_fPIC
475 && pie_option
->opt_index
== OPT_fPIE
;
476 (*decoded_options
)[j
].opt_index
= big
? OPT_fPIE
: OPT_fpie
;
477 if (pie_option
->value
)
478 (*decoded_options
)[j
].canonical_option
[0]
479 = big
? "-fPIE" : "-fpie";
481 (*decoded_options
)[j
].canonical_option
[0] = "-fno-pie";
482 (*decoded_options
)[j
].value
= pie_option
->value
;
487 (*decoded_options
)[j
] = *pic_option
;
490 /* We do not know if target defaults to pic or not, so just remove
491 option if it is missing in one unit but enabled in other. */
493 remove_option (decoded_options
, j
, decoded_options_count
);
495 else if (pic_option
->opt_index
== OPT_fpic
496 && (*decoded_options
)[j
].opt_index
== OPT_fPIC
)
498 (*decoded_options
)[j
] = *pic_option
;
504 else if ((*decoded_options
)[j
].opt_index
== OPT_fPIE
505 || (*decoded_options
)[j
].opt_index
== OPT_fpie
)
507 /* -fno-pie in one unit implies -fno-pie everywhere. */
508 if ((*decoded_options
)[j
].value
== 0)
510 /* If we have no pie option or merge in -fno-pie, we still preserve
511 PIE/pie if pic/PIC is present. */
512 else if ((pie_option
&& pie_option
->value
== 0)
515 /* If -fPIC/-fpic is given, merge it with -fPIE/-fpie. */
518 if (pic_option
->opt_index
== OPT_fpic
519 && (*decoded_options
)[j
].opt_index
== OPT_fPIE
)
521 (*decoded_options
)[j
].opt_index
= OPT_fpie
;
522 (*decoded_options
)[j
].canonical_option
[0]
523 = pic_option
->value
? "-fpie" : "-fno-pie";
525 else if (!pic_option
->value
)
526 (*decoded_options
)[j
].canonical_option
[0] = "-fno-pie";
527 (*decoded_options
)[j
].value
= pic_option
->value
;
532 (*decoded_options
)[j
] = *pie_option
;
535 /* Because we always append pic/PIE options this code path should
536 not happen unless the LTO object was built by old lto1 which
537 did not contain that logic yet. */
539 remove_option (decoded_options
, j
, decoded_options_count
);
541 else if (pie_option
->opt_index
== OPT_fpie
542 && (*decoded_options
)[j
].opt_index
== OPT_fPIE
)
544 (*decoded_options
)[j
] = *pie_option
;
553 if (!xassembler_options_error
)
554 for (i
= j
= 0; ; i
++, j
++)
556 for (; i
< *decoded_options_count
; i
++)
557 if ((*decoded_options
)[i
].opt_index
== OPT_Xassembler
)
560 for (; j
< fdecoded_options_count
; j
++)
561 if (fdecoded_options
[j
].opt_index
== OPT_Xassembler
)
564 if (i
== *decoded_options_count
&& j
== fdecoded_options_count
)
566 else if (i
< *decoded_options_count
&& j
== fdecoded_options_count
)
568 warning (0, "Extra option to %<-Xassembler%>: %s,"
569 " dropping all %<-Xassembler%> and %<-Wa%> options.",
570 (*decoded_options
)[i
].arg
);
571 xassembler_options_error
= true;
574 else if (i
== *decoded_options_count
&& j
< fdecoded_options_count
)
576 warning (0, "Extra option to %<-Xassembler%>: %s,"
577 " dropping all %<-Xassembler%> and %<-Wa%> options.",
578 fdecoded_options
[j
].arg
);
579 xassembler_options_error
= true;
582 else if (strcmp ((*decoded_options
)[i
].arg
, fdecoded_options
[j
].arg
))
584 warning (0, "Options to %<-Xassembler%> do not match: %s, %s,"
585 " dropping all %<-Xassembler%> and %<-Wa%> options.",
586 (*decoded_options
)[i
].arg
, fdecoded_options
[j
].arg
);
587 xassembler_options_error
= true;
593 /* Auxiliary function that frees elements of PTR and PTR itself.
594 N is number of elements to be freed. If PTR is NULL, nothing is freed.
595 If an element is NULL, subsequent elements are not freed. */
598 free_array_of_ptrs (void **ptr
, unsigned n
)
602 for (unsigned i
= 0; i
< n
; i
++)
612 /* Parse STR, saving found tokens into PVALUES and return their number.
613 Tokens are assumed to be delimited by ':'. If APPEND is non-null,
614 append it to every token we find. */
617 parse_env_var (const char *str
, char ***pvalues
, const char *append
)
619 const char *curval
, *nextval
;
623 curval
= strchr (str
, ':');
627 curval
= strchr (curval
+ 1, ':');
630 values
= (char**) xmalloc (num
* sizeof (char*));
632 nextval
= strchr (curval
, ':');
634 nextval
= strchr (curval
, '\0');
636 int append_len
= append
? strlen (append
) : 0;
637 for (i
= 0; i
< num
; i
++)
639 int l
= nextval
- curval
;
640 values
[i
] = (char*) xmalloc (l
+ 1 + append_len
);
641 memcpy (values
[i
], curval
, l
);
644 strcat (values
[i
], append
);
645 curval
= nextval
+ 1;
646 nextval
= strchr (curval
, ':');
648 nextval
= strchr (curval
, '\0');
654 /* Append options OPTS from lto or offload_lto sections to ARGV_OBSTACK. */
657 append_compiler_options (obstack
*argv_obstack
, struct cl_decoded_option
*opts
,
660 /* Append compiler driver arguments as far as they were merged. */
661 for (unsigned int j
= 1; j
< count
; ++j
)
663 struct cl_decoded_option
*option
= &opts
[j
];
665 /* File options have been properly filtered by lto-opts.c. */
666 switch (option
->opt_index
)
668 /* Drop arguments that we want to take from the link line. */
671 case OPT_flto_partition_
:
678 /* For now do what the original LTO option code was doing - pass
679 on any CL_TARGET flag and a few selected others. */
680 switch (option
->opt_index
)
682 case OPT_fdiagnostics_show_caret
:
683 case OPT_fdiagnostics_show_labels
:
684 case OPT_fdiagnostics_show_line_numbers
:
685 case OPT_fdiagnostics_show_option
:
686 case OPT_fdiagnostics_show_location_
:
687 case OPT_fshow_column
:
696 case OPT_fopenacc_dim_
:
697 case OPT_foffload_abi_
:
698 case OPT_fcf_protection_
:
707 /* When we detected a mismatch in assembler options between
708 the input TU's fall back to previous behavior of ignoring them. */
709 if (xassembler_options_error
)
714 if (!(cl_options
[option
->opt_index
].flags
& CL_TARGET
))
718 /* Pass the option on. */
719 for (unsigned int i
= 0; i
< option
->canonical_option_num_elements
; ++i
)
720 obstack_ptr_grow (argv_obstack
, option
->canonical_option
[i
]);
724 /* Append diag options in OPTS with length COUNT to ARGV_OBSTACK. */
727 append_diag_options (obstack
*argv_obstack
, struct cl_decoded_option
*opts
,
730 /* Append compiler driver arguments as far as they were merged. */
731 for (unsigned int j
= 1; j
< count
; ++j
)
733 struct cl_decoded_option
*option
= &opts
[j
];
735 switch (option
->opt_index
)
737 case OPT_fdiagnostics_color_
:
738 case OPT_fdiagnostics_format_
:
739 case OPT_fdiagnostics_show_caret
:
740 case OPT_fdiagnostics_show_labels
:
741 case OPT_fdiagnostics_show_line_numbers
:
742 case OPT_fdiagnostics_show_option
:
743 case OPT_fdiagnostics_show_location_
:
744 case OPT_fshow_column
:
750 /* Pass the option on. */
751 for (unsigned int i
= 0; i
< option
->canonical_option_num_elements
; ++i
)
752 obstack_ptr_grow (argv_obstack
, option
->canonical_option
[i
]);
757 /* Append linker options OPTS to ARGV_OBSTACK. */
760 append_linker_options (obstack
*argv_obstack
, struct cl_decoded_option
*opts
,
763 /* Append linker driver arguments. Compiler options from the linker
764 driver arguments will override / merge with those from the compiler. */
765 for (unsigned int j
= 1; j
< count
; ++j
)
767 struct cl_decoded_option
*option
= &opts
[j
];
769 /* Do not pass on frontend specific flags not suitable for lto. */
770 if (!(cl_options
[option
->opt_index
].flags
771 & (CL_COMMON
|CL_TARGET
|CL_DRIVER
|CL_LTO
)))
774 switch (option
->opt_index
)
779 /* We've handled these LTO options, do not pass them on. */
784 /* Ignore -fno-XXX form of these options, as otherwise
785 corresponding builtins will not be enabled. */
786 if (option
->value
== 0)
794 /* Pass the option on. */
795 for (unsigned int i
= 0; i
< option
->canonical_option_num_elements
; ++i
)
796 obstack_ptr_grow (argv_obstack
, option
->canonical_option
[i
]);
800 /* Extract options for TARGET offload compiler from OPTIONS and append
801 them to ARGV_OBSTACK. */
804 append_offload_options (obstack
*argv_obstack
, const char *target
,
805 struct cl_decoded_option
*options
,
806 unsigned int options_count
)
808 for (unsigned i
= 0; i
< options_count
; i
++)
810 const char *cur
, *next
, *opts
;
813 struct cl_decoded_option
*option
= &options
[i
];
815 if (option
->opt_index
!= OPT_foffload_
)
818 /* If option argument starts with '-' then no target is specified. That
819 means offload options are specified for all targets, so we need to
821 if (option
->arg
[0] == '-')
825 opts
= strchr (option
->arg
, '=');
826 /* If there are offload targets specified, but no actual options,
827 there is nothing to do here. */
835 next
= strchr (cur
, ',');
838 next
= (next
> opts
) ? opts
: next
;
840 /* Are we looking for this offload target? */
841 if (strlen (target
) == (size_t) (next
- cur
)
842 && strncmp (target
, cur
, next
- cur
) == 0)
845 /* Skip the comma or equal sign. */
855 argv
= buildargv (opts
);
856 for (argc
= 0; argv
[argc
]; argc
++)
857 obstack_ptr_grow (argv_obstack
, argv
[argc
]);
861 /* Check whether NAME can be accessed in MODE. This is like access,
862 except that it never considers directories to be executable. */
865 access_check (const char *name
, int mode
)
871 if (stat (name
, &st
) < 0
872 || S_ISDIR (st
.st_mode
))
876 return access (name
, mode
);
879 /* Prepare a target image for offload TARGET, using mkoffload tool from
880 COMPILER_PATH. Return the name of the resultant object file. */
883 compile_offload_image (const char *target
, const char *compiler_path
,
884 unsigned in_argc
, char *in_argv
[],
885 struct cl_decoded_option
*compiler_opts
,
886 unsigned int compiler_opt_count
,
887 struct cl_decoded_option
*linker_opts
,
888 unsigned int linker_opt_count
)
890 char *filename
= NULL
;
894 = XALLOCAVEC (char, sizeof ("/accel//mkoffload") + strlen (target
));
895 strcpy (suffix
, "/accel/");
896 strcat (suffix
, target
);
897 strcat (suffix
, "/mkoffload");
900 unsigned n_paths
= parse_env_var (compiler_path
, &paths
, suffix
);
902 const char *compiler
= NULL
;
903 for (unsigned i
= 0; i
< n_paths
; i
++)
904 if (access_check (paths
[i
], X_OK
) == 0)
911 fatal_error (input_location
,
912 "could not find %s in %s (consider using %<-B%>)",
913 suffix
+ 1, compiler_path
);
915 dumpbase
= concat (dumppfx
, "x", target
, NULL
);
917 /* Generate temporary output file name. */
919 filename
= concat (dumpbase
, ".o", NULL
);
921 filename
= make_temp_file (".target.o");
923 struct obstack argv_obstack
;
924 obstack_init (&argv_obstack
);
925 obstack_ptr_grow (&argv_obstack
, compiler
);
927 obstack_ptr_grow (&argv_obstack
, "-save-temps");
929 obstack_ptr_grow (&argv_obstack
, "-v");
930 obstack_ptr_grow (&argv_obstack
, "-o");
931 obstack_ptr_grow (&argv_obstack
, filename
);
933 /* Append names of input object files. */
934 for (unsigned i
= 0; i
< in_argc
; i
++)
935 obstack_ptr_grow (&argv_obstack
, in_argv
[i
]);
937 /* Append options from offload_lto sections. */
938 append_compiler_options (&argv_obstack
, compiler_opts
,
940 append_diag_options (&argv_obstack
, linker_opts
, linker_opt_count
);
942 obstack_ptr_grow (&argv_obstack
, "-dumpbase");
943 obstack_ptr_grow (&argv_obstack
, dumpbase
);
945 /* Append options specified by -foffload last. In case of conflicting
946 options we expect offload compiler to choose the latest. */
947 append_offload_options (&argv_obstack
, target
, compiler_opts
,
949 append_offload_options (&argv_obstack
, target
, linker_opts
,
952 obstack_ptr_grow (&argv_obstack
, NULL
);
953 argv
= XOBFINISH (&argv_obstack
, char **);
954 fork_execute (argv
[0], argv
, true, "offload_args");
955 obstack_free (&argv_obstack
, NULL
);
957 free_array_of_ptrs ((void **) paths
, n_paths
);
962 /* The main routine dealing with offloading.
963 The routine builds a target image for each offload target. IN_ARGC and
964 IN_ARGV specify options and input object files. As all of them could contain
965 target sections, we pass them all to target compilers. */
968 compile_images_for_offload_targets (unsigned in_argc
, char *in_argv
[],
969 struct cl_decoded_option
*compiler_opts
,
970 unsigned int compiler_opt_count
,
971 struct cl_decoded_option
*linker_opts
,
972 unsigned int linker_opt_count
)
975 const char *target_names
= getenv (OFFLOAD_TARGET_NAMES_ENV
);
978 unsigned num_targets
= parse_env_var (target_names
, &names
, NULL
);
980 const char *compiler_path
= getenv ("COMPILER_PATH");
984 /* Prepare an image for each target and save the name of the resultant object
985 file to the OFFLOAD_NAMES array. It is terminated by a NULL entry. */
986 offload_names
= XCNEWVEC (char *, num_targets
+ 1);
987 for (unsigned i
= 0; i
< num_targets
; i
++)
990 = compile_offload_image (names
[i
], compiler_path
, in_argc
, in_argv
,
991 compiler_opts
, compiler_opt_count
,
992 linker_opts
, linker_opt_count
);
993 if (!offload_names
[i
])
994 fatal_error (input_location
,
995 "problem with building target image for %s", names
[i
]);
999 free_array_of_ptrs ((void **) names
, num_targets
);
1002 /* Copy a file from SRC to DEST. */
1005 copy_file (const char *dest
, const char *src
)
1007 FILE *d
= fopen (dest
, "wb");
1008 FILE *s
= fopen (src
, "rb");
1012 size_t len
= fread (buffer
, 1, 512, s
);
1013 if (ferror (s
) != 0)
1014 fatal_error (input_location
, "reading input file");
1017 fwrite (buffer
, 1, len
, d
);
1018 if (ferror (d
) != 0)
1019 fatal_error (input_location
, "writing output file");
1026 /* Find the crtoffloadtable.o file in LIBRARY_PATH, make copy and pass name of
1027 the copy to the linker. */
1030 find_crtoffloadtable (int save_temps
, const char *dumppfx
)
1032 char **paths
= NULL
;
1033 const char *library_path
= getenv ("LIBRARY_PATH");
1036 unsigned n_paths
= parse_env_var (library_path
, &paths
, "/crtoffloadtable.o");
1039 for (i
= 0; i
< n_paths
; i
++)
1040 if (access_check (paths
[i
], R_OK
) == 0)
1042 /* The linker will delete the filename we give it, so make a copy. */
1043 char *crtoffloadtable
;
1045 crtoffloadtable
= make_temp_file (".crtoffloadtable.o");
1047 crtoffloadtable
= concat (dumppfx
, "crtoffloadtable.o", NULL
);
1048 copy_file (crtoffloadtable
, paths
[i
]);
1049 printf ("%s\n", crtoffloadtable
);
1050 XDELETEVEC (crtoffloadtable
);
1054 fatal_error (input_location
,
1055 "installation error, cannot find %<crtoffloadtable.o%>");
1057 free_array_of_ptrs ((void **) paths
, n_paths
);
1060 /* A subroutine of run_gcc. Examine the open file FD for lto sections with
1061 name prefix PREFIX, at FILE_OFFSET, and store any options we find in OPTS
1062 and OPT_COUNT. Return true if we found a matching section, false
1063 otherwise. COLLECT_GCC holds the value of the environment variable with
1067 find_and_merge_options (int fd
, off_t file_offset
, const char *prefix
,
1068 struct cl_decoded_option
*decoded_cl_options
,
1069 unsigned int decoded_cl_options_count
,
1070 struct cl_decoded_option
**opts
,
1071 unsigned int *opt_count
, const char *collect_gcc
)
1073 off_t offset
, length
;
1078 struct cl_decoded_option
*fdecoded_options
= *opts
;
1079 unsigned int fdecoded_options_count
= *opt_count
;
1081 simple_object_read
*sobj
;
1082 sobj
= simple_object_start_read (fd
, file_offset
, "__GNU_LTO",
1087 char *secname
= XALLOCAVEC (char, strlen (prefix
) + sizeof (".opts"));
1088 strcpy (secname
, prefix
);
1089 strcat (secname
, ".opts");
1090 if (!simple_object_find_section (sobj
, secname
, &offset
, &length
,
1093 simple_object_release_read (sobj
);
1097 lseek (fd
, file_offset
+ offset
, SEEK_SET
);
1098 data
= (char *)xmalloc (length
);
1099 read (fd
, data
, length
);
1103 struct cl_decoded_option
*f2decoded_options
;
1104 unsigned int f2decoded_options_count
;
1105 get_options_from_collect_gcc_options (collect_gcc
, fopts
,
1107 &f2decoded_options_count
);
1108 if (!fdecoded_options
)
1110 fdecoded_options
= f2decoded_options
;
1111 fdecoded_options_count
= f2decoded_options_count
;
1114 merge_and_complain (&fdecoded_options
,
1115 &fdecoded_options_count
,
1116 f2decoded_options
, f2decoded_options_count
,
1118 decoded_cl_options_count
);
1120 fopts
+= strlen (fopts
) + 1;
1122 while (fopts
- data
< length
);
1125 simple_object_release_read (sobj
);
1126 *opts
= fdecoded_options
;
1127 *opt_count
= fdecoded_options_count
;
1131 /* Copy early debug info sections from INFILE to a new file whose name
1132 is returned. Return NULL on error. */
1135 debug_objcopy (const char *infile
, bool rename
)
1142 const char *orig_infile
= infile
;
1146 if ((p
= strrchr (infile
, '@'))
1148 && sscanf (p
, "@%li%n", &loffset
, &consumed
) >= 1
1149 && strlen (p
) == (unsigned int) consumed
)
1151 char *fname
= xstrdup (infile
);
1152 fname
[p
- infile
] = '\0';
1154 inoff
= (off_t
) loffset
;
1156 int infd
= open (infile
, O_RDONLY
| O_BINARY
);
1159 simple_object_read
*inobj
= simple_object_start_read (infd
, inoff
,
1166 if (simple_object_find_section (inobj
, ".gnu.debuglto_.debug_info",
1167 &off
, &len
, &errmsg
, &err
) != 1)
1170 fatal_error (0, "%s: %s", errmsg
, xstrerror (err
));
1172 simple_object_release_read (inobj
);
1178 outfile
= concat (orig_infile
, ".debug.temp.o", NULL
);
1180 outfile
= make_temp_file (".debug.temp.o");
1181 errmsg
= simple_object_copy_lto_debug_sections (inobj
, outfile
, &err
, rename
);
1184 unlink_if_ordinary (outfile
);
1185 fatal_error (0, "%s: %s", errmsg
, xstrerror (err
));
1188 simple_object_release_read (inobj
);
1194 /* Helper for qsort: compare priorities for parallel compilation. */
1197 cmp_priority (const void *a
, const void *b
)
1199 return *((const int *)b
)-*((const int *)a
);
1202 /* Number of CPUs that can be used for parallel LTRANS phase. */
1204 static unsigned long nthreads_var
= 0;
1206 #ifdef HAVE_PTHREAD_AFFINITY_NP
1207 unsigned long cpuset_size
;
1208 static unsigned long get_cpuset_size
;
1212 static cpuset_popcount (unsigned long cpusetsize
, cpu_set_t
*cpusetp
)
1215 /* glibc 2.7 and above provide a macro for this. */
1216 return CPU_COUNT_S (cpusetsize
, cpusetp
);
1219 if (cpusetsize
== sizeof (cpu_set_t
))
1220 /* glibc 2.6 and above provide a macro for this. */
1221 return CPU_COUNT (cpusetp
);
1224 unsigned long ret
= 0;
1225 STATIC_ASSERT (sizeof (cpusetp
->__bits
[0]) == sizeof (unsigned long int));
1226 for (i
= 0; i
< cpusetsize
/ sizeof (cpusetp
->__bits
[0]); i
++)
1228 unsigned long int mask
= cpusetp
->__bits
[i
];
1231 ret
+= __builtin_popcountl (mask
);
1238 /* At startup, determine the default number of threads. It would seem
1239 this should be related to the number of cpus online. */
1242 init_num_threads (void)
1244 #ifdef HAVE_PTHREAD_AFFINITY_NP
1245 #if defined (_SC_NPROCESSORS_CONF) && defined (CPU_ALLOC_SIZE)
1246 cpuset_size
= sysconf (_SC_NPROCESSORS_CONF
);
1247 cpuset_size
= CPU_ALLOC_SIZE (cpuset_size
);
1249 cpuset_size
= sizeof (cpu_set_t
);
1252 cpusetp
= (cpu_set_t
*) xmalloc (gomp_cpuset_size
);
1255 int ret
= pthread_getaffinity_np (pthread_self (), gomp_cpuset_size
,
1259 /* Count only the CPUs this process can use. */
1260 nthreads_var
= cpuset_popcount (cpuset_size
, cpusetp
);
1261 if (nthreads_var
== 0)
1263 get_cpuset_size
= cpuset_size
;
1264 #ifdef CPU_ALLOC_SIZE
1266 for (i
= cpuset_size
* 8; i
; i
--)
1267 if (CPU_ISSET_S (i
- 1, cpuset_size
, cpusetp
))
1269 cpuset_size
= CPU_ALLOC_SIZE (i
);
1275 #ifdef CPU_ALLOC_SIZE
1276 if (cpuset_size
< sizeof (cpu_set_t
))
1277 cpuset_size
= sizeof (cpu_set_t
);
1279 cpuset_size
= cpuset_size
* 2;
1280 if (cpuset_size
< 8 * sizeof (cpu_set_t
))
1282 = (cpu_set_t
*) realloc (cpusetp
, cpuset_size
);
1285 /* Avoid fatal if too large memory allocation would be
1286 requested, e.g. kernel returning EINVAL all the time. */
1287 void *p
= realloc (cpusetp
, cpuset_size
);
1290 cpusetp
= (cpu_set_t
*) p
;
1302 #ifdef _SC_NPROCESSORS_ONLN
1303 nthreads_var
= sysconf (_SC_NPROCESSORS_ONLN
);
1307 /* FIXME: once using -std=c++11, we can use std::thread::hardware_concurrency. */
1309 /* Test and return reason why a jobserver cannot be detected. */
1312 jobserver_active_p (void)
1314 #define JS_PREFIX "jobserver is not available: "
1315 #define JS_NEEDLE "--jobserver-auth="
1317 const char *makeflags
= getenv ("MAKEFLAGS");
1318 if (makeflags
== NULL
)
1319 return JS_PREFIX
"%<MAKEFLAGS%> environment variable is unset";
1321 const char *n
= strstr (makeflags
, JS_NEEDLE
);
1323 return JS_PREFIX
"%<" JS_NEEDLE
"%> is not present in %<MAKEFLAGS%>";
1328 if (sscanf (n
+ strlen (JS_NEEDLE
), "%d,%d", &rfd
, &wfd
) == 2
1331 && is_valid_fd (rfd
)
1332 && is_valid_fd (wfd
))
1335 return JS_PREFIX
"cannot access %<" JS_NEEDLE
"%> file descriptors";
1338 /* Test that a make command is present and working, return true if so. */
1343 const char *make
= "make";
1344 char **make_argv
= buildargv (getenv ("MAKE"));
1346 make
= make_argv
[0];
1347 const char *make_args
[] = {make
, "--version", NULL
};
1349 int exit_status
= 0;
1352 = pex_one (PEX_SEARCH
, make_args
[0], CONST_CAST (char **, make_args
),
1353 "make", NULL
, NULL
, &exit_status
, &err
);
1354 freeargv (make_argv
);
1355 return errmsg
== NULL
&& exit_status
== 0 && err
== 0;
1358 /* Execute gcc. ARGC is the number of arguments. ARGV contains the arguments. */
1361 run_gcc (unsigned argc
, char *argv
[])
1364 const char **new_argv
;
1365 const char **argv_ptr
;
1366 char *list_option_full
= NULL
;
1367 const char *linker_output
= NULL
;
1368 const char *collect_gcc
;
1369 char *collect_gcc_options
;
1372 int auto_parallel
= 0;
1373 bool no_partition
= false;
1374 struct cl_decoded_option
*fdecoded_options
= NULL
;
1375 struct cl_decoded_option
*offload_fdecoded_options
= NULL
;
1376 unsigned int fdecoded_options_count
= 0;
1377 unsigned int offload_fdecoded_options_count
= 0;
1378 struct cl_decoded_option
*decoded_options
;
1379 unsigned int decoded_options_count
;
1380 struct obstack argv_obstack
;
1382 bool have_lto
= false;
1383 bool have_offload
= false;
1384 unsigned lto_argc
= 0, ltoobj_argc
= 0;
1385 char **lto_argv
, **ltoobj_argv
;
1386 bool linker_output_rel
= false;
1387 bool skip_debug
= false;
1388 unsigned n_debugobj
;
1389 const char *incoming_dumppfx
= dumppfx
= NULL
;
1390 static char current_dir
[] = { '.', DIR_SEPARATOR
, '\0' };
1392 /* Get the driver and options. */
1393 collect_gcc
= getenv ("COLLECT_GCC");
1395 fatal_error (input_location
,
1396 "environment variable %<COLLECT_GCC%> must be set");
1397 collect_gcc_options
= getenv ("COLLECT_GCC_OPTIONS");
1398 if (!collect_gcc_options
)
1399 fatal_error (input_location
,
1400 "environment variable %<COLLECT_GCC_OPTIONS%> must be set");
1402 char *collect_as_options
= getenv ("COLLECT_AS_OPTIONS");
1404 /* Prepend -Xassembler to each option, and append the string
1405 to collect_gcc_options. */
1406 if (collect_as_options
)
1408 obstack temporary_obstack
;
1409 obstack_init (&temporary_obstack
);
1411 prepend_xassembler_to_collect_as_options (collect_as_options
,
1412 &temporary_obstack
);
1413 obstack_1grow (&temporary_obstack
, '\0');
1415 char *xassembler_opts_string
1416 = XOBFINISH (&temporary_obstack
, char *);
1417 collect_gcc_options
= concat (collect_gcc_options
, xassembler_opts_string
,
1421 get_options_from_collect_gcc_options (collect_gcc
, collect_gcc_options
,
1423 &decoded_options_count
);
1425 /* Allocate array for input object files with LTO IL,
1426 and for possible preceding arguments. */
1427 lto_argv
= XNEWVEC (char *, argc
);
1428 ltoobj_argv
= XNEWVEC (char *, argc
);
1430 /* Look at saved options in the IL files. */
1431 for (i
= 1; i
< argc
; ++i
)
1435 off_t file_offset
= 0;
1438 char *filename
= argv
[i
];
1440 if (strncmp (argv
[i
], "-foffload-objects=",
1441 sizeof ("-foffload-objects=") - 1) == 0)
1443 have_offload
= true;
1444 offload_objects_file_name
1445 = argv
[i
] + sizeof ("-foffload-objects=") - 1;
1449 if ((p
= strrchr (argv
[i
], '@'))
1451 && sscanf (p
, "@%li%n", &loffset
, &consumed
) >= 1
1452 && strlen (p
) == (unsigned int) consumed
)
1454 filename
= XNEWVEC (char, p
- argv
[i
] + 1);
1455 memcpy (filename
, argv
[i
], p
- argv
[i
]);
1456 filename
[p
- argv
[i
]] = '\0';
1457 file_offset
= (off_t
) loffset
;
1459 fd
= open (filename
, O_RDONLY
| O_BINARY
);
1460 /* Linker plugin passes -fresolution and -flinker-output options.
1461 -flinker-output is passed only when user did not specify one and thus
1462 we do not need to worry about duplicities with the option handling
1466 lto_argv
[lto_argc
++] = argv
[i
];
1467 if (strcmp (argv
[i
], "-flinker-output=rel") == 0)
1468 linker_output_rel
= true;
1472 if (find_and_merge_options (fd
, file_offset
, LTO_SECTION_NAME_PREFIX
,
1473 decoded_options
, decoded_options_count
,
1474 &fdecoded_options
, &fdecoded_options_count
,
1478 ltoobj_argv
[ltoobj_argc
++] = argv
[i
];
1483 /* Initalize the common arguments for the driver. */
1484 obstack_init (&argv_obstack
);
1485 obstack_ptr_grow (&argv_obstack
, collect_gcc
);
1486 obstack_ptr_grow (&argv_obstack
, "-xlto");
1487 obstack_ptr_grow (&argv_obstack
, "-c");
1489 append_compiler_options (&argv_obstack
, fdecoded_options
,
1490 fdecoded_options_count
);
1491 append_linker_options (&argv_obstack
, decoded_options
, decoded_options_count
);
1493 /* Scan linker driver arguments for things that are of relevance to us. */
1494 for (j
= 1; j
< decoded_options_count
; ++j
)
1496 struct cl_decoded_option
*option
= &decoded_options
[j
];
1497 switch (option
->opt_index
)
1500 linker_output
= option
->arg
;
1503 /* We don't have to distinguish between -save-temps=* and
1504 -save-temps, -dumpdir already carries that
1506 case OPT_save_temps_
:
1507 case OPT_save_temps
:
1515 case OPT_flto_partition_
:
1516 if (strcmp (option
->arg
, "none") == 0)
1517 no_partition
= true;
1521 if (strcmp (option
->arg
, "jobserver") == 0)
1526 else if (strcmp (option
->arg
, "auto") == 0)
1533 parallel
= atoi (option
->arg
);
1540 lto_mode
= LTO_MODE_WHOPR
;
1543 case OPT_flinker_output_
:
1544 linker_output_rel
= !strcmp (option
->arg
, "rel");
1548 /* Recognize -g0. */
1549 skip_debug
= option
->arg
&& !strcmp (option
->arg
, "0");
1553 incoming_dumppfx
= dumppfx
= option
->arg
;
1561 /* Output lto-wrapper invocation command. */
1564 for (i
= 0; i
< argc
; ++i
)
1566 fputs (argv
[i
], stderr
);
1567 fputc (' ', stderr
);
1569 fputc ('\n', stderr
);
1572 if (linker_output_rel
)
1573 no_partition
= true;
1577 lto_mode
= LTO_MODE_LTO
;
1584 const char *jobserver_error
= jobserver_active_p ();
1585 if (jobserver
&& jobserver_error
!= NULL
)
1587 warning (0, jobserver_error
);
1591 else if (!jobserver
&& jobserver_error
== NULL
)
1598 /* We need make working for a parallel execution. */
1599 if (parallel
&& !make_exists ())
1605 || strcmp (linker_output
, HOST_BIT_BUCKET
) == 0)
1609 const char *obase
= lbasename (linker_output
), *temp
;
1611 /* Strip the executable extension. */
1612 size_t blen
= strlen (obase
), xlen
;
1613 if ((temp
= strrchr (obase
+ 1, '.'))
1614 && (xlen
= strlen (temp
))
1615 && (strcmp (temp
, ".exe") == 0
1616 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
1617 || strcmp (temp
, TARGET_EXECUTABLE_SUFFIX
) == 0
1619 || strcmp (obase
, "a.out") == 0))
1620 dumppfx
= xstrndup (linker_output
,
1621 obase
- linker_output
+ blen
- xlen
+ 1);
1623 dumppfx
= concat (linker_output
, ".", NULL
);
1627 /* If there's no directory component in the dumppfx, add one, so
1628 that, when it is used as -dumpbase, it overrides any occurrence
1629 of -dumpdir that might have been passed in. */
1630 if (!dumppfx
|| lbasename (dumppfx
) == dumppfx
)
1631 dumppfx
= concat (current_dir
, dumppfx
, NULL
);
1633 /* Make sure some -dumpdir is passed, so as to get predictable
1634 -dumpbase overriding semantics. If we got an incoming -dumpdir
1635 argument, we'll pass it on, so don't bother with another one
1637 if (!incoming_dumppfx
)
1639 obstack_ptr_grow (&argv_obstack
, "-dumpdir");
1640 obstack_ptr_grow (&argv_obstack
, "");
1642 obstack_ptr_grow (&argv_obstack
, "-dumpbase");
1644 /* Remember at which point we can scrub args to re-use the commons. */
1645 new_head_argc
= obstack_object_size (&argv_obstack
) / sizeof (void *);
1649 unsigned i
, num_offload_files
;
1650 char **offload_argv
;
1653 f
= fopen (offload_objects_file_name
, "r");
1655 fatal_error (input_location
, "cannot open %s: %m",
1656 offload_objects_file_name
);
1657 if (fscanf (f
, "%u ", &num_offload_files
) != 1)
1658 fatal_error (input_location
, "cannot read %s: %m",
1659 offload_objects_file_name
);
1660 offload_argv
= XCNEWVEC (char *, num_offload_files
);
1662 /* Read names of object files with offload. */
1663 for (i
= 0; i
< num_offload_files
; i
++)
1665 const unsigned piece
= 32;
1666 char *buf
, *filename
= XNEWVEC (char, piece
);
1671 if (!fgets (buf
, piece
, f
))
1673 len
= strlen (filename
);
1674 if (filename
[len
- 1] != '\n')
1676 filename
= XRESIZEVEC (char, filename
, len
+ piece
);
1677 buf
= filename
+ len
;
1680 filename
[len
- 1] = '\0';
1681 offload_argv
[i
] = filename
;
1684 if (offload_argv
[num_offload_files
- 1] == NULL
)
1685 fatal_error (input_location
, "invalid format of %s",
1686 offload_objects_file_name
);
1687 maybe_unlink (offload_objects_file_name
);
1688 offload_objects_file_name
= NULL
;
1690 /* Look at saved offload options in files. */
1691 for (i
= 0; i
< num_offload_files
; i
++)
1696 off_t file_offset
= 0;
1697 char *filename
= offload_argv
[i
];
1699 if ((p
= strrchr (offload_argv
[i
], '@'))
1700 && p
!= offload_argv
[i
]
1701 && sscanf (p
, "@%li%n", &loffset
, &consumed
) >= 1
1702 && strlen (p
) == (unsigned int) consumed
)
1704 filename
= XNEWVEC (char, p
- offload_argv
[i
] + 1);
1705 memcpy (filename
, offload_argv
[i
], p
- offload_argv
[i
]);
1706 filename
[p
- offload_argv
[i
]] = '\0';
1707 file_offset
= (off_t
) loffset
;
1709 fd
= open (filename
, O_RDONLY
| O_BINARY
);
1711 fatal_error (input_location
, "cannot open %s: %m", filename
);
1712 if (!find_and_merge_options (fd
, file_offset
,
1713 OFFLOAD_SECTION_NAME_PREFIX
,
1714 decoded_options
, decoded_options_count
,
1715 &offload_fdecoded_options
,
1716 &offload_fdecoded_options_count
,
1718 fatal_error (input_location
, "cannot read %s: %m", filename
);
1720 if (filename
!= offload_argv
[i
])
1721 XDELETEVEC (filename
);
1724 compile_images_for_offload_targets (num_offload_files
, offload_argv
,
1725 offload_fdecoded_options
,
1726 offload_fdecoded_options_count
,
1728 decoded_options_count
);
1730 free_array_of_ptrs ((void **) offload_argv
, num_offload_files
);
1734 find_crtoffloadtable (save_temps
, dumppfx
);
1735 for (i
= 0; offload_names
[i
]; i
++)
1736 printf ("%s\n", offload_names
[i
]);
1737 free_array_of_ptrs ((void **) offload_names
, i
);
1741 /* If object files contain offload sections, but do not contain LTO sections,
1742 then there is no need to perform a link-time recompilation, i.e.
1743 lto-wrapper is used only for a compilation of offload images. */
1744 if (have_offload
&& !have_lto
)
1747 if (lto_mode
== LTO_MODE_LTO
)
1749 /* -dumpbase argument for LTO. */
1750 flto_out
= concat (dumppfx
, "lto.o", NULL
);
1751 obstack_ptr_grow (&argv_obstack
, flto_out
);
1754 flto_out
= make_temp_file (".lto.o");
1755 obstack_ptr_grow (&argv_obstack
, "-o");
1756 obstack_ptr_grow (&argv_obstack
, flto_out
);
1760 const char *list_option
= "-fltrans-output-list=";
1762 /* -dumpbase argument for WPA. */
1763 char *dumpbase
= concat (dumppfx
, "wpa", NULL
);
1764 obstack_ptr_grow (&argv_obstack
, dumpbase
);
1767 ltrans_output_file
= concat (dumppfx
, "ltrans.out", NULL
);
1769 ltrans_output_file
= make_temp_file (".ltrans.out");
1770 list_option_full
= concat (list_option
, ltrans_output_file
, NULL
);
1771 obstack_ptr_grow (&argv_obstack
, list_option_full
);
1776 fprintf (stderr
, "Using make jobserver\n");
1777 obstack_ptr_grow (&argv_obstack
, xstrdup ("-fwpa=jobserver"));
1779 else if (auto_parallel
)
1782 init_num_threads ();
1783 if (nthreads_var
== 0)
1786 fprintf (stderr
, "LTO parallelism level set to %ld\n",
1788 sprintf (buf
, "-fwpa=%ld", nthreads_var
);
1789 obstack_ptr_grow (&argv_obstack
, xstrdup (buf
));
1791 else if (parallel
> 1)
1794 sprintf (buf
, "-fwpa=%i", parallel
);
1795 obstack_ptr_grow (&argv_obstack
, xstrdup (buf
));
1798 obstack_ptr_grow (&argv_obstack
, "-fwpa");
1801 /* Append input arguments. */
1802 for (i
= 0; i
< lto_argc
; ++i
)
1803 obstack_ptr_grow (&argv_obstack
, lto_argv
[i
]);
1804 /* Append the input objects. */
1805 for (i
= 0; i
< ltoobj_argc
; ++i
)
1806 obstack_ptr_grow (&argv_obstack
, ltoobj_argv
[i
]);
1807 obstack_ptr_grow (&argv_obstack
, NULL
);
1809 new_argv
= XOBFINISH (&argv_obstack
, const char **);
1810 argv_ptr
= &new_argv
[new_head_argc
];
1811 fork_execute (new_argv
[0], CONST_CAST (char **, new_argv
), true,
1814 /* Copy the early generated debug info from the objects to temporary
1815 files and append those to the partial link commandline. */
1817 early_debug_object_names
= NULL
;
1820 early_debug_object_names
= XCNEWVEC (const char *, ltoobj_argc
+ 1);
1821 num_deb_objs
= ltoobj_argc
;
1822 for (i
= 0; i
< ltoobj_argc
; ++i
)
1825 if ((tem
= debug_objcopy (ltoobj_argv
[i
], !linker_output_rel
)))
1827 early_debug_object_names
[i
] = tem
;
1833 if (lto_mode
== LTO_MODE_LTO
)
1835 printf ("%s\n", flto_out
);
1838 for (i
= 0; i
< ltoobj_argc
; ++i
)
1839 if (early_debug_object_names
[i
] != NULL
)
1840 printf ("%s\n", early_debug_object_names
[i
]);
1842 /* These now belong to collect2. */
1845 free (early_debug_object_names
);
1846 early_debug_object_names
= NULL
;
1850 FILE *stream
= fopen (ltrans_output_file
, "r");
1851 FILE *mstream
= NULL
;
1852 struct obstack env_obstack
;
1856 fatal_error (input_location
, "%<fopen%>: %s: %m", ltrans_output_file
);
1858 /* Parse the list of LTRANS inputs from the WPA stage. */
1859 obstack_init (&env_obstack
);
1863 const unsigned piece
= 32;
1864 char *output_name
= NULL
;
1865 char *buf
, *input_name
= (char *)xmalloc (piece
);
1869 if (fscanf (stream
, "%i\n", &priority
) != 1)
1872 fatal_error (input_location
,
1873 "corrupted ltrans output file %s",
1874 ltrans_output_file
);
1878 if (!fgets (buf
, piece
, stream
))
1880 len
= strlen (input_name
);
1881 if (input_name
[len
- 1] != '\n')
1883 input_name
= (char *)xrealloc (input_name
, len
+ piece
);
1884 buf
= input_name
+ len
;
1887 input_name
[len
- 1] = '\0';
1889 if (input_name
[0] == '*')
1890 output_name
= &input_name
[1];
1894 = (int *)xrealloc (ltrans_priorities
, nr
* sizeof (int) * 2);
1895 input_names
= (char **)xrealloc (input_names
, nr
* sizeof (char *));
1896 output_names
= (char **)xrealloc (output_names
, nr
* sizeof (char *));
1897 ltrans_priorities
[(nr
-1)*2] = priority
;
1898 ltrans_priorities
[(nr
-1)*2+1] = nr
-1;
1899 input_names
[nr
-1] = input_name
;
1900 output_names
[nr
-1] = output_name
;
1903 maybe_unlink (ltrans_output_file
);
1904 ltrans_output_file
= NULL
;
1908 makefile
= make_temp_file (".mk");
1909 mstream
= fopen (makefile
, "w");
1910 qsort (ltrans_priorities
, nr
, sizeof (int) * 2, cmp_priority
);
1913 /* Execute the LTRANS stage for each input file (or prepare a
1914 makefile to invoke this in parallel). */
1915 for (i
= 0; i
< nr
; ++i
)
1918 char *input_name
= input_names
[i
];
1919 /* If it's a pass-through file do nothing. */
1920 if (output_names
[i
])
1923 /* Replace the .o suffix with a .ltrans.o suffix and write
1924 the resulting name to the LTRANS output list. */
1925 obstack_grow (&env_obstack
, input_name
, strlen (input_name
) - 2);
1926 obstack_grow (&env_obstack
, ".ltrans.o", sizeof (".ltrans.o"));
1927 output_name
= XOBFINISH (&env_obstack
, char *);
1929 /* Adjust the dumpbase if the linker output file was seen. */
1930 int dumpbase_len
= (strlen (dumppfx
) + sizeof (DUMPBASE_SUFFIX
));
1931 char *dumpbase
= (char *) xmalloc (dumpbase_len
+ 1);
1932 snprintf (dumpbase
, dumpbase_len
, "%sltrans%u.ltrans", dumppfx
, i
);
1933 argv_ptr
[0] = dumpbase
;
1935 argv_ptr
[1] = "-fltrans";
1937 argv_ptr
[3] = output_name
;
1938 argv_ptr
[4] = input_name
;
1942 fprintf (mstream
, "%s:\n\t@%s ", output_name
, new_argv
[0]);
1943 for (j
= 1; new_argv
[j
] != NULL
; ++j
)
1944 fprintf (mstream
, " '%s'", new_argv
[j
]);
1945 fprintf (mstream
, "\n");
1946 /* If we are not preserving the ltrans input files then
1947 truncate them as soon as we have processed it. This
1948 reduces temporary disk-space usage. */
1950 fprintf (mstream
, "\t@-touch -r %s %s.tem > /dev/null 2>&1 "
1951 "&& mv %s.tem %s\n",
1952 input_name
, input_name
, input_name
, input_name
);
1956 char argsuffix
[sizeof (DUMPBASE_SUFFIX
) + 1];
1958 snprintf (argsuffix
, sizeof (DUMPBASE_SUFFIX
),
1959 "ltrans%u.ltrans_args", i
);
1960 fork_execute (new_argv
[0], CONST_CAST (char **, new_argv
),
1961 true, save_temps
? argsuffix
: NULL
);
1962 maybe_unlink (input_name
);
1965 output_names
[i
] = output_name
;
1969 struct pex_obj
*pex
;
1975 for (i
= 0; i
< nr
; ++i
)
1977 int j
= ltrans_priorities
[i
*2 + 1];
1978 fprintf (mstream
, " \\\n\t%s", output_names
[j
]);
1980 fprintf (mstream
, "\n");
1984 /* Avoid passing --jobserver-fd= and similar flags
1985 unless jobserver mode is explicitly enabled. */
1986 putenv (xstrdup ("MAKEFLAGS="));
1987 putenv (xstrdup ("MFLAGS="));
1990 char **make_argv
= buildargv (getenv ("MAKE"));
1993 for (unsigned argc
= 0; make_argv
[argc
]; argc
++)
1994 obstack_ptr_grow (&argv_obstack
, make_argv
[argc
]);
1997 obstack_ptr_grow (&argv_obstack
, "make");
1999 obstack_ptr_grow (&argv_obstack
, "-f");
2000 obstack_ptr_grow (&argv_obstack
, makefile
);
2003 snprintf (jobs
, 31, "-j%ld",
2004 auto_parallel
? nthreads_var
: parallel
);
2005 obstack_ptr_grow (&argv_obstack
, jobs
);
2007 obstack_ptr_grow (&argv_obstack
, "all");
2008 obstack_ptr_grow (&argv_obstack
, NULL
);
2009 new_argv
= XOBFINISH (&argv_obstack
, const char **);
2011 pex
= collect_execute (new_argv
[0], CONST_CAST (char **, new_argv
),
2012 NULL
, NULL
, PEX_SEARCH
, false, NULL
);
2013 do_wait (new_argv
[0], pex
);
2014 freeargv (make_argv
);
2015 maybe_unlink (makefile
);
2017 for (i
= 0; i
< nr
; ++i
)
2018 maybe_unlink (input_names
[i
]);
2020 for (i
= 0; i
< nr
; ++i
)
2022 fputs (output_names
[i
], stdout
);
2023 putc ('\n', stdout
);
2024 free (input_names
[i
]);
2028 for (i
= 0; i
< ltoobj_argc
; ++i
)
2029 if (early_debug_object_names
[i
] != NULL
)
2030 printf ("%s\n", early_debug_object_names
[i
]);
2033 free (ltrans_priorities
);
2034 free (output_names
);
2035 output_names
= NULL
;
2036 free (early_debug_object_names
);
2037 early_debug_object_names
= NULL
;
2039 free (list_option_full
);
2040 obstack_free (&env_obstack
, NULL
);
2045 obstack_free (&argv_obstack
, NULL
);
2052 main (int argc
, char *argv
[])
2056 init_opts_obstack ();
2058 p
= argv
[0] + strlen (argv
[0]);
2059 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
2063 xmalloc_set_program_name (progname
);
2065 gcc_init_libintl ();
2067 diagnostic_initialize (global_dc
, 0);
2069 if (atexit (lto_wrapper_cleanup
) != 0)
2070 fatal_error (input_location
, "%<atexit%> failed");
2072 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
2073 signal (SIGINT
, fatal_signal
);
2075 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
2076 signal (SIGHUP
, fatal_signal
);
2078 if (signal (SIGTERM
, SIG_IGN
) != SIG_IGN
)
2079 signal (SIGTERM
, fatal_signal
);
2081 if (signal (SIGPIPE
, SIG_IGN
) != SIG_IGN
)
2082 signal (SIGPIPE
, fatal_signal
);
2085 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
2086 receive the signal. A different setting is inheritable */
2087 signal (SIGCHLD
, SIG_DFL
);
2090 /* We may be called with all the arguments stored in some file and
2091 passed with @file. Expand them into argv before processing. */
2092 expandargv (&argc
, &argv
);
2094 run_gcc (argc
, argv
);