]> gcc.gnu.org Git - gcc.git/blob - gcc/gcc.cc
Daily bump.
[gcc.git] / gcc / gcc.cc
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987-2022 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* This program is the user interface to the C compiler and possibly to
21 other compilers. It is used because compilation is a complicated procedure
22 which involves running several programs and passing temporary files between
23 them, forwarding the users switches to those programs selectively,
24 and deleting the temporary files at the end.
25
26 CC recognizes how to compile each input file by suffixes in the file names.
27 Once it knows which kind of compilation to perform, the procedure for
28 compilation is specified by a string called a "spec". */
29
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "multilib.h" /* before tm.h */
34 #include "tm.h"
35 #include "xregex.h"
36 #include "obstack.h"
37 #include "intl.h"
38 #include "prefix.h"
39 #include "opt-suggestions.h"
40 #include "gcc.h"
41 #include "diagnostic.h"
42 #include "flags.h"
43 #include "opts.h"
44 #include "filenames.h"
45 #include "spellcheck.h"
46
47 \f
48
49 /* Manage the manipulation of env vars.
50
51 We poison "getenv" and "putenv", so that all enviroment-handling is
52 done through this class. Note that poisoning happens in the
53 preprocessor at the identifier level, and doesn't distinguish between
54 env.getenv ();
55 and
56 getenv ();
57 Hence we need to use "get" for the accessor method, not "getenv". */
58
59 struct env_manager
60 {
61 public:
62 void init (bool can_restore, bool debug);
63 const char *get (const char *name);
64 void xput (const char *string);
65 void restore ();
66
67 private:
68 bool m_can_restore;
69 bool m_debug;
70 struct kv
71 {
72 char *m_key;
73 char *m_value;
74 };
75 vec<kv> m_keys;
76
77 };
78
79 /* The singleton instance of class env_manager. */
80
81 static env_manager env;
82
83 /* Initializer for class env_manager.
84
85 We can't do this as a constructor since we have a statically
86 allocated instance ("env" above). */
87
88 void
89 env_manager::init (bool can_restore, bool debug)
90 {
91 m_can_restore = can_restore;
92 m_debug = debug;
93 }
94
95 /* Get the value of NAME within the environment. Essentially
96 a wrapper for ::getenv, but adding logging, and the possibility
97 of caching results. */
98
99 const char *
100 env_manager::get (const char *name)
101 {
102 const char *result = ::getenv (name);
103 if (m_debug)
104 fprintf (stderr, "env_manager::getenv (%s) -> %s\n", name, result);
105 return result;
106 }
107
108 /* Put the given KEY=VALUE entry STRING into the environment.
109 If the env_manager was initialized with CAN_RESTORE set, then
110 also record the old value of KEY within the environment, so that it
111 can be later restored. */
112
113 void
114 env_manager::xput (const char *string)
115 {
116 if (m_debug)
117 fprintf (stderr, "env_manager::xput (%s)\n", string);
118 if (verbose_flag)
119 fnotice (stderr, "%s\n", string);
120
121 if (m_can_restore)
122 {
123 char *equals = strchr (const_cast <char *> (string), '=');
124 gcc_assert (equals);
125
126 struct kv kv;
127 kv.m_key = xstrndup (string, equals - string);
128 const char *cur_value = ::getenv (kv.m_key);
129 if (m_debug)
130 fprintf (stderr, "saving old value: %s\n",cur_value);
131 kv.m_value = cur_value ? xstrdup (cur_value) : NULL;
132 m_keys.safe_push (kv);
133 }
134
135 ::putenv (CONST_CAST (char *, string));
136 }
137
138 /* Undo any xputenv changes made since last restore.
139 Can only be called if the env_manager was initialized with
140 CAN_RESTORE enabled. */
141
142 void
143 env_manager::restore ()
144 {
145 unsigned int i;
146 struct kv *item;
147
148 gcc_assert (m_can_restore);
149
150 FOR_EACH_VEC_ELT_REVERSE (m_keys, i, item)
151 {
152 if (m_debug)
153 printf ("restoring saved key: %s value: %s\n", item->m_key, item->m_value);
154 if (item->m_value)
155 ::setenv (item->m_key, item->m_value, 1);
156 else
157 ::unsetenv (item->m_key);
158 free (item->m_key);
159 free (item->m_value);
160 }
161
162 m_keys.truncate (0);
163 }
164
165 /* Forbid other uses of getenv and putenv. */
166 #if (GCC_VERSION >= 3000)
167 #pragma GCC poison getenv putenv
168 #endif
169
170 \f
171
172 /* By default there is no special suffix for target executables. */
173 #ifdef TARGET_EXECUTABLE_SUFFIX
174 #define HAVE_TARGET_EXECUTABLE_SUFFIX
175 #else
176 #define TARGET_EXECUTABLE_SUFFIX ""
177 #endif
178
179 /* By default there is no special suffix for host executables. */
180 #ifdef HOST_EXECUTABLE_SUFFIX
181 #define HAVE_HOST_EXECUTABLE_SUFFIX
182 #else
183 #define HOST_EXECUTABLE_SUFFIX ""
184 #endif
185
186 /* By default, the suffix for target object files is ".o". */
187 #ifdef TARGET_OBJECT_SUFFIX
188 #define HAVE_TARGET_OBJECT_SUFFIX
189 #else
190 #define TARGET_OBJECT_SUFFIX ".o"
191 #endif
192
193 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
194
195 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
196 #ifndef LIBRARY_PATH_ENV
197 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
198 #endif
199
200 /* If a stage of compilation returns an exit status >= 1,
201 compilation of that file ceases. */
202
203 #define MIN_FATAL_STATUS 1
204
205 /* Flag set by cppspec.cc to 1. */
206 int is_cpp_driver;
207
208 /* Flag set to nonzero if an @file argument has been supplied to gcc. */
209 static bool at_file_supplied;
210
211 /* Definition of string containing the arguments given to configure. */
212 #include "configargs.h"
213
214 /* Flag saying to print the command line options understood by gcc and its
215 sub-processes. */
216
217 static int print_help_list;
218
219 /* Flag saying to print the version of gcc and its sub-processes. */
220
221 static int print_version;
222
223 /* Flag that stores string prefix for which we provide bash completion. */
224
225 static const char *completion = NULL;
226
227 /* Flag indicating whether we should ONLY print the command and
228 arguments (like verbose_flag) without executing the command.
229 Displayed arguments are quoted so that the generated command
230 line is suitable for execution. This is intended for use in
231 shell scripts to capture the driver-generated command line. */
232 static int verbose_only_flag;
233
234 /* Flag indicating how to print command line options of sub-processes. */
235
236 static int print_subprocess_help;
237
238 /* Linker suffix passed to -fuse-ld=... */
239 static const char *use_ld;
240
241 /* Whether we should report subprocess execution times to a file. */
242
243 FILE *report_times_to_file = NULL;
244
245 /* Nonzero means place this string before uses of /, so that include
246 and library files can be found in an alternate location. */
247
248 #ifdef TARGET_SYSTEM_ROOT
249 #define DEFAULT_TARGET_SYSTEM_ROOT (TARGET_SYSTEM_ROOT)
250 #else
251 #define DEFAULT_TARGET_SYSTEM_ROOT (0)
252 #endif
253 static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
254
255 /* Nonzero means pass the updated target_system_root to the compiler. */
256
257 static int target_system_root_changed;
258
259 /* Nonzero means append this string to target_system_root. */
260
261 static const char *target_sysroot_suffix = 0;
262
263 /* Nonzero means append this string to target_system_root for headers. */
264
265 static const char *target_sysroot_hdrs_suffix = 0;
266
267 /* Nonzero means write "temp" files in source directory
268 and use the source file's name in them, and don't delete them. */
269
270 static enum save_temps {
271 SAVE_TEMPS_NONE, /* no -save-temps */
272 SAVE_TEMPS_CWD, /* -save-temps in current directory */
273 SAVE_TEMPS_DUMP, /* -save-temps in dumpdir */
274 SAVE_TEMPS_OBJ /* -save-temps in object directory */
275 } save_temps_flag;
276
277 /* Set this iff the dumppfx implied by a -save-temps=* option is to
278 override a -dumpdir option, if any. */
279 static bool save_temps_overrides_dumpdir = false;
280
281 /* -dumpdir, -dumpbase and -dumpbase-ext flags passed in, possibly
282 rearranged as they are to be passed down, e.g., dumpbase and
283 dumpbase_ext may be cleared if integrated with dumpdir or
284 dropped. */
285 static char *dumpdir, *dumpbase, *dumpbase_ext;
286
287 /* Usually the length of the string in dumpdir. However, during
288 linking, it may be shortened to omit a driver-added trailing dash,
289 by then replaced with a trailing period, that is still to be passed
290 to sub-processes in -dumpdir, but not to be generally used in spec
291 filename expansions. See maybe_run_linker. */
292 static size_t dumpdir_length = 0;
293
294 /* Set if the last character in dumpdir is (or was) a dash that the
295 driver added to dumpdir after dumpbase or linker output name. */
296 static bool dumpdir_trailing_dash_added = false;
297
298 /* Basename of dump and aux outputs, computed from dumpbase (given or
299 derived from output name), to override input_basename in non-%w %b
300 et al. */
301 static char *outbase;
302 static size_t outbase_length = 0;
303
304 /* The compiler version. */
305
306 static const char *compiler_version;
307
308 /* The target version. */
309
310 static const char *const spec_version = DEFAULT_TARGET_VERSION;
311
312 /* The target machine. */
313
314 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
315 static const char *spec_host_machine = DEFAULT_REAL_TARGET_MACHINE;
316
317 /* List of offload targets. Separated by colon. Empty string for
318 -foffload=disable. */
319
320 static char *offload_targets = NULL;
321
322 #if OFFLOAD_DEFAULTED
323 /* Set to true if -foffload has not been used and offload_targets
324 is set to the configured in default. */
325 static bool offload_targets_default;
326 #endif
327
328 /* Nonzero if cross-compiling.
329 When -b is used, the value comes from the `specs' file. */
330
331 #ifdef CROSS_DIRECTORY_STRUCTURE
332 static const char *cross_compile = "1";
333 #else
334 static const char *cross_compile = "0";
335 #endif
336
337 /* Greatest exit code of sub-processes that has been encountered up to
338 now. */
339 static int greatest_status = 1;
340
341 /* This is the obstack which we use to allocate many strings. */
342
343 static struct obstack obstack;
344
345 /* This is the obstack to build an environment variable to pass to
346 collect2 that describes all of the relevant switches of what to
347 pass the compiler in building the list of pointers to constructors
348 and destructors. */
349
350 static struct obstack collect_obstack;
351
352 /* Forward declaration for prototypes. */
353 struct path_prefix;
354 struct prefix_list;
355
356 static void init_spec (void);
357 static void store_arg (const char *, int, int);
358 static void insert_wrapper (const char *);
359 static char *load_specs (const char *);
360 static void read_specs (const char *, bool, bool);
361 static void set_spec (const char *, const char *, bool);
362 static struct compiler *lookup_compiler (const char *, size_t, const char *);
363 static char *build_search_list (const struct path_prefix *, const char *,
364 bool, bool);
365 static void xputenv (const char *);
366 static void putenv_from_prefixes (const struct path_prefix *, const char *,
367 bool);
368 static int access_check (const char *, int);
369 static char *find_a_file (const struct path_prefix *, const char *, int, bool);
370 static char *find_a_program (const char *);
371 static void add_prefix (struct path_prefix *, const char *, const char *,
372 int, int, int);
373 static void add_sysrooted_prefix (struct path_prefix *, const char *,
374 const char *, int, int, int);
375 static char *skip_whitespace (char *);
376 static void delete_if_ordinary (const char *);
377 static void delete_temp_files (void);
378 static void delete_failure_queue (void);
379 static void clear_failure_queue (void);
380 static int check_live_switch (int, int);
381 static const char *handle_braces (const char *);
382 static inline bool input_suffix_matches (const char *, const char *);
383 static inline bool switch_matches (const char *, const char *, int);
384 static inline void mark_matching_switches (const char *, const char *, int);
385 static inline void process_marked_switches (void);
386 static const char *process_brace_body (const char *, const char *, const char *, int, int);
387 static const struct spec_function *lookup_spec_function (const char *);
388 static const char *eval_spec_function (const char *, const char *, const char *);
389 static const char *handle_spec_function (const char *, bool *, const char *);
390 static char *save_string (const char *, int);
391 static void set_collect_gcc_options (void);
392 static int do_spec_1 (const char *, int, const char *);
393 static int do_spec_2 (const char *, const char *);
394 static void do_option_spec (const char *, const char *);
395 static void do_self_spec (const char *);
396 static const char *find_file (const char *);
397 static int is_directory (const char *, bool);
398 static const char *validate_switches (const char *, bool, bool);
399 static void validate_all_switches (void);
400 static inline void validate_switches_from_spec (const char *, bool);
401 static void give_switch (int, int);
402 static int default_arg (const char *, int);
403 static void set_multilib_dir (void);
404 static void print_multilib_info (void);
405 static void display_help (void);
406 static void add_preprocessor_option (const char *, int);
407 static void add_assembler_option (const char *, int);
408 static void add_linker_option (const char *, int);
409 static void process_command (unsigned int, struct cl_decoded_option *);
410 static int execute (void);
411 static void alloc_args (void);
412 static void clear_args (void);
413 static void fatal_signal (int);
414 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
415 static void init_gcc_specs (struct obstack *, const char *, const char *,
416 const char *);
417 #endif
418 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
419 static const char *convert_filename (const char *, int, int);
420 #endif
421
422 static void try_generate_repro (const char **argv);
423 static const char *getenv_spec_function (int, const char **);
424 static const char *if_exists_spec_function (int, const char **);
425 static const char *if_exists_else_spec_function (int, const char **);
426 static const char *if_exists_then_else_spec_function (int, const char **);
427 static const char *sanitize_spec_function (int, const char **);
428 static const char *replace_outfile_spec_function (int, const char **);
429 static const char *remove_outfile_spec_function (int, const char **);
430 static const char *version_compare_spec_function (int, const char **);
431 static const char *include_spec_function (int, const char **);
432 static const char *find_file_spec_function (int, const char **);
433 static const char *find_plugindir_spec_function (int, const char **);
434 static const char *print_asm_header_spec_function (int, const char **);
435 static const char *compare_debug_dump_opt_spec_function (int, const char **);
436 static const char *compare_debug_self_opt_spec_function (int, const char **);
437 static const char *pass_through_libs_spec_func (int, const char **);
438 static const char *dumps_spec_func (int, const char **);
439 static const char *greater_than_spec_func (int, const char **);
440 static const char *debug_level_greater_than_spec_func (int, const char **);
441 static const char *dwarf_version_greater_than_spec_func (int, const char **);
442 static const char *find_fortran_preinclude_file (int, const char **);
443 static char *convert_white_space (char *);
444 static char *quote_spec (char *);
445 static char *quote_spec_arg (char *);
446 static bool not_actual_file_p (const char *);
447
448 \f
449 /* The Specs Language
450
451 Specs are strings containing lines, each of which (if not blank)
452 is made up of a program name, and arguments separated by spaces.
453 The program name must be exact and start from root, since no path
454 is searched and it is unreliable to depend on the current working directory.
455 Redirection of input or output is not supported; the subprograms must
456 accept filenames saying what files to read and write.
457
458 In addition, the specs can contain %-sequences to substitute variable text
459 or for conditional text. Here is a table of all defined %-sequences.
460 Note that spaces are not generated automatically around the results of
461 expanding these sequences; therefore, you can concatenate them together
462 or with constant text in a single argument.
463
464 %% substitute one % into the program name or argument.
465 %" substitute an empty argument.
466 %i substitute the name of the input file being processed.
467 %b substitute the basename for outputs related with the input file
468 being processed. This is often a substring of the input file name,
469 up to (and not including) the last period but, unless %w is active,
470 it is affected by the directory selected by -save-temps=*, by
471 -dumpdir, and, in case of multiple compilations, even by -dumpbase
472 and -dumpbase-ext and, in case of linking, by the linker output
473 name. When %w is active, it derives the main output name only from
474 the input file base name; when it is not, it names aux/dump output
475 file.
476 %B same as %b, but include the input file suffix (text after the last
477 period).
478 %gSUFFIX
479 substitute a file name that has suffix SUFFIX and is chosen
480 once per compilation, and mark the argument a la %d. To reduce
481 exposure to denial-of-service attacks, the file name is now
482 chosen in a way that is hard to predict even when previously
483 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
484 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
485 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
486 had been pre-processed. Previously, %g was simply substituted
487 with a file name chosen once per compilation, without regard
488 to any appended suffix (which was therefore treated just like
489 ordinary text), making such attacks more likely to succeed.
490 %|SUFFIX
491 like %g, but if -pipe is in effect, expands simply to "-".
492 %mSUFFIX
493 like %g, but if -pipe is in effect, expands to nothing. (We have both
494 %| and %m to accommodate differences between system assemblers; see
495 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
496 %uSUFFIX
497 like %g, but generates a new temporary file name even if %uSUFFIX
498 was already seen.
499 %USUFFIX
500 substitutes the last file name generated with %uSUFFIX, generating a
501 new one if there is no such last file name. In the absence of any
502 %uSUFFIX, this is just like %gSUFFIX, except they don't share
503 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
504 would involve the generation of two distinct file names, one
505 for each `%g.s' and another for each `%U.s'. Previously, %U was
506 simply substituted with a file name chosen for the previous %u,
507 without regard to any appended suffix.
508 %jSUFFIX
509 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
510 writable, and if save-temps is off; otherwise, substitute the name
511 of a temporary file, just like %u. This temporary file is not
512 meant for communication between processes, but rather as a junk
513 disposal mechanism.
514 %.SUFFIX
515 substitutes .SUFFIX for the suffixes of a matched switch's args when
516 it is subsequently output with %*. SUFFIX is terminated by the next
517 space or %.
518 %d marks the argument containing or following the %d as a
519 temporary file name, so that file will be deleted if GCC exits
520 successfully. Unlike %g, this contributes no text to the argument.
521 %w marks the argument containing or following the %w as the
522 "output file" of this compilation. This puts the argument
523 into the sequence of arguments that %o will substitute later.
524 %V indicates that this compilation produces no "output file".
525 %W{...}
526 like %{...} but marks the last argument supplied within as a file
527 to be deleted on failure.
528 %@{...}
529 like %{...} but puts the result into a FILE and substitutes @FILE
530 if an @file argument has been supplied.
531 %o substitutes the names of all the output files, with spaces
532 automatically placed around them. You should write spaces
533 around the %o as well or the results are undefined.
534 %o is for use in the specs for running the linker.
535 Input files whose names have no recognized suffix are not compiled
536 at all, but they are included among the output files, so they will
537 be linked.
538 %O substitutes the suffix for object files. Note that this is
539 handled specially when it immediately follows %g, %u, or %U
540 (with or without a suffix argument) because of the need for
541 those to form complete file names. The handling is such that
542 %O is treated exactly as if it had already been substituted,
543 except that %g, %u, and %U do not currently support additional
544 SUFFIX characters following %O as they would following, for
545 example, `.o'.
546 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
547 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
548 and -B options) and -imultilib as necessary.
549 %s current argument is the name of a library or startup file of some sort.
550 Search for that file in a standard list of directories
551 and substitute the full name found.
552 %T current argument is the name of a linker script.
553 Search for that file in the current list of directories to scan for
554 libraries. If the file is located, insert a --script option into the
555 command line followed by the full path name found. If the file is
556 not found then generate an error message.
557 Note: the current working directory is not searched.
558 %eSTR Print STR as an error message. STR is terminated by a newline.
559 Use this when inconsistent options are detected.
560 %nSTR Print STR as a notice. STR is terminated by a newline.
561 %x{OPTION} Accumulate an option for %X.
562 %X Output the accumulated linker options specified by compilations.
563 %Y Output the accumulated assembler options specified by compilations.
564 %Z Output the accumulated preprocessor options specified by compilations.
565 %a process ASM_SPEC as a spec.
566 This allows config.h to specify part of the spec for running as.
567 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
568 used here. This can be used to run a post-processor after the
569 assembler has done its job.
570 %D Dump out a -L option for each directory in startfile_prefixes.
571 If multilib_dir is set, extra entries are generated with it affixed.
572 %l process LINK_SPEC as a spec.
573 %L process LIB_SPEC as a spec.
574 %M Output multilib_os_dir.
575 %G process LIBGCC_SPEC as a spec.
576 %R Output the concatenation of target_system_root and
577 target_sysroot_suffix.
578 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
579 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
580 %C process CPP_SPEC as a spec.
581 %1 process CC1_SPEC as a spec.
582 %2 process CC1PLUS_SPEC as a spec.
583 %* substitute the variable part of a matched option. (See below.)
584 Note that each comma in the substituted string is replaced by
585 a single space. A space is appended after the last substition
586 unless there is more text in current sequence.
587 %<S remove all occurrences of -S from the command line.
588 Note - this command is position dependent. % commands in the
589 spec string before this one will see -S, % commands in the
590 spec string after this one will not.
591 %>S Similar to "%<S", but keep it in the GCC command line.
592 %<S* remove all occurrences of all switches beginning with -S from the
593 command line.
594 %:function(args)
595 Call the named function FUNCTION, passing it ARGS. ARGS is
596 first processed as a nested spec string, then split into an
597 argument vector in the usual fashion. The function returns
598 a string which is processed as if it had appeared literally
599 as part of the current spec.
600 %{S} substitutes the -S switch, if that switch was given to GCC.
601 If that switch was not specified, this substitutes nothing.
602 Here S is a metasyntactic variable.
603 %{S*} substitutes all the switches specified to GCC whose names start
604 with -S. This is used for -o, -I, etc; switches that take
605 arguments. GCC considers `-o foo' as being one switch whose
606 name starts with `o'. %{o*} would substitute this text,
607 including the space; thus, two arguments would be generated.
608 %{S*&T*} likewise, but preserve order of S and T options (the order
609 of S and T in the spec is not significant). Can be any number
610 of ampersand-separated variables; for each the wild card is
611 optional. Useful for CPP as %{D*&U*&A*}.
612
613 %{S:X} substitutes X, if the -S switch was given to GCC.
614 %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
615 %{S*:X} substitutes X if one or more switches whose names start
616 with -S was given to GCC. Normally X is substituted only
617 once, no matter how many such switches appeared. However,
618 if %* appears somewhere in X, then X will be substituted
619 once for each matching switch, with the %* replaced by the
620 part of that switch that matched the '*'. A space will be
621 appended after the last substition unless there is more
622 text in current sequence.
623 %{.S:X} substitutes X, if processing a file with suffix S.
624 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
625 %{,S:X} substitutes X, if processing a file which will use spec S.
626 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
627
628 %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
629 combined with '!', '.', ',', and '*' as above binding stronger
630 than the OR.
631 If %* appears in X, all of the alternatives must be starred, and
632 only the first matching alternative is substituted.
633 %{%:function(args):X}
634 Call function named FUNCTION with args ARGS. If the function
635 returns non-NULL, then X is substituted, if it returns
636 NULL, it isn't substituted.
637 %{S:X; if S was given to GCC, substitutes X;
638 T:Y; else if T was given to GCC, substitutes Y;
639 :D} else substitutes D. There can be as many clauses as you need.
640 This may be combined with '.', '!', ',', '|', and '*' as above.
641
642 %(Spec) processes a specification defined in a specs file as *Spec:
643
644 The switch matching text S in a %{S}, %{S:X}, or similar construct can use
645 a backslash to ignore the special meaning of the character following it,
646 thus allowing literal matching of a character that is otherwise specially
647 treated. For example, %{std=iso9899\:1999:X} substitutes X if the
648 -std=iso9899:1999 option is given.
649
650 The conditional text X in a %{S:X} or similar construct may contain
651 other nested % constructs or spaces, or even newlines. They are
652 processed as usual, as described above. Trailing white space in X is
653 ignored. White space may also appear anywhere on the left side of the
654 colon in these constructs, except between . or * and the corresponding
655 word.
656
657 The -O, -f, -g, -m, and -W switches are handled specifically in these
658 constructs. If another value of -O or the negated form of a -f, -m, or
659 -W switch is found later in the command line, the earlier switch
660 value is ignored, except with {S*} where S is just one letter; this
661 passes all matching options.
662
663 The character | at the beginning of the predicate text is used to indicate
664 that a command should be piped to the following command, but only if -pipe
665 is specified.
666
667 Note that it is built into GCC which switches take arguments and which
668 do not. You might think it would be useful to generalize this to
669 allow each compiler's spec to say which switches take arguments. But
670 this cannot be done in a consistent fashion. GCC cannot even decide
671 which input files have been specified without knowing which switches
672 take arguments, and it must know which input files to compile in order
673 to tell which compilers to run.
674
675 GCC also knows implicitly that arguments starting in `-l' are to be
676 treated as compiler output files, and passed to the linker in their
677 proper position among the other output files. */
678 \f
679 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
680
681 /* config.h can define ASM_SPEC to provide extra args to the assembler
682 or extra switch-translations. */
683 #ifndef ASM_SPEC
684 #define ASM_SPEC ""
685 #endif
686
687 /* config.h can define ASM_FINAL_SPEC to run a post processor after
688 the assembler has run. */
689 #ifndef ASM_FINAL_SPEC
690 #define ASM_FINAL_SPEC \
691 "%{gsplit-dwarf: \n\
692 objcopy --extract-dwo \
693 %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
694 %b.dwo \n\
695 objcopy --strip-dwo \
696 %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
697 }"
698 #endif
699
700 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
701 or extra switch-translations. */
702 #ifndef CPP_SPEC
703 #define CPP_SPEC ""
704 #endif
705
706 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
707 or extra switch-translations. */
708 #ifndef CC1_SPEC
709 #define CC1_SPEC ""
710 #endif
711
712 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
713 or extra switch-translations. */
714 #ifndef CC1PLUS_SPEC
715 #define CC1PLUS_SPEC ""
716 #endif
717
718 /* config.h can define LINK_SPEC to provide extra args to the linker
719 or extra switch-translations. */
720 #ifndef LINK_SPEC
721 #define LINK_SPEC ""
722 #endif
723
724 /* config.h can define LIB_SPEC to override the default libraries. */
725 #ifndef LIB_SPEC
726 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
727 #endif
728
729 /* When using -fsplit-stack we need to wrap pthread_create, in order
730 to initialize the stack guard. We always use wrapping, rather than
731 shared library ordering, and we keep the wrapper function in
732 libgcc. This is not yet a real spec, though it could become one;
733 it is currently just stuffed into LINK_SPEC. FIXME: This wrapping
734 only works with GNU ld and gold. */
735 #ifdef HAVE_GOLD_NON_DEFAULT_SPLIT_STACK
736 #define STACK_SPLIT_SPEC " %{fsplit-stack: -fuse-ld=gold --wrap=pthread_create}"
737 #else
738 #define STACK_SPLIT_SPEC " %{fsplit-stack: --wrap=pthread_create}"
739 #endif
740
741 #ifndef LIBASAN_SPEC
742 #define STATIC_LIBASAN_LIBS \
743 " %{static-libasan|static:%:include(libsanitizer.spec)%(link_libasan)}"
744 #ifdef LIBASAN_EARLY_SPEC
745 #define LIBASAN_SPEC STATIC_LIBASAN_LIBS
746 #elif defined(HAVE_LD_STATIC_DYNAMIC)
747 #define LIBASAN_SPEC "%{static-libasan:" LD_STATIC_OPTION \
748 "} -lasan %{static-libasan:" LD_DYNAMIC_OPTION "}" \
749 STATIC_LIBASAN_LIBS
750 #else
751 #define LIBASAN_SPEC "-lasan" STATIC_LIBASAN_LIBS
752 #endif
753 #endif
754
755 #ifndef LIBASAN_EARLY_SPEC
756 #define LIBASAN_EARLY_SPEC ""
757 #endif
758
759 #ifndef LIBHWASAN_SPEC
760 #define STATIC_LIBHWASAN_LIBS \
761 " %{static-libhwasan|static:%:include(libsanitizer.spec)%(link_libhwasan)}"
762 #ifdef LIBHWASAN_EARLY_SPEC
763 #define LIBHWASAN_SPEC STATIC_LIBHWASAN_LIBS
764 #elif defined(HAVE_LD_STATIC_DYNAMIC)
765 #define LIBHWASAN_SPEC "%{static-libhwasan:" LD_STATIC_OPTION \
766 "} -lhwasan %{static-libhwasan:" LD_DYNAMIC_OPTION "}" \
767 STATIC_LIBHWASAN_LIBS
768 #else
769 #define LIBHWASAN_SPEC "-lhwasan" STATIC_LIBHWASAN_LIBS
770 #endif
771 #endif
772
773 #ifndef LIBHWASAN_EARLY_SPEC
774 #define LIBHWASAN_EARLY_SPEC ""
775 #endif
776
777 #ifndef LIBTSAN_SPEC
778 #define STATIC_LIBTSAN_LIBS \
779 " %{static-libtsan|static:%:include(libsanitizer.spec)%(link_libtsan)}"
780 #ifdef LIBTSAN_EARLY_SPEC
781 #define LIBTSAN_SPEC STATIC_LIBTSAN_LIBS
782 #elif defined(HAVE_LD_STATIC_DYNAMIC)
783 #define LIBTSAN_SPEC "%{static-libtsan:" LD_STATIC_OPTION \
784 "} -ltsan %{static-libtsan:" LD_DYNAMIC_OPTION "}" \
785 STATIC_LIBTSAN_LIBS
786 #else
787 #define LIBTSAN_SPEC "-ltsan" STATIC_LIBTSAN_LIBS
788 #endif
789 #endif
790
791 #ifndef LIBTSAN_EARLY_SPEC
792 #define LIBTSAN_EARLY_SPEC ""
793 #endif
794
795 #ifndef LIBLSAN_SPEC
796 #define STATIC_LIBLSAN_LIBS \
797 " %{static-liblsan|static:%:include(libsanitizer.spec)%(link_liblsan)}"
798 #ifdef LIBLSAN_EARLY_SPEC
799 #define LIBLSAN_SPEC STATIC_LIBLSAN_LIBS
800 #elif defined(HAVE_LD_STATIC_DYNAMIC)
801 #define LIBLSAN_SPEC "%{static-liblsan:" LD_STATIC_OPTION \
802 "} -llsan %{static-liblsan:" LD_DYNAMIC_OPTION "}" \
803 STATIC_LIBLSAN_LIBS
804 #else
805 #define LIBLSAN_SPEC "-llsan" STATIC_LIBLSAN_LIBS
806 #endif
807 #endif
808
809 #ifndef LIBLSAN_EARLY_SPEC
810 #define LIBLSAN_EARLY_SPEC ""
811 #endif
812
813 #ifndef LIBUBSAN_SPEC
814 #define STATIC_LIBUBSAN_LIBS \
815 " %{static-libubsan|static:%:include(libsanitizer.spec)%(link_libubsan)}"
816 #ifdef HAVE_LD_STATIC_DYNAMIC
817 #define LIBUBSAN_SPEC "%{static-libubsan:" LD_STATIC_OPTION \
818 "} -lubsan %{static-libubsan:" LD_DYNAMIC_OPTION "}" \
819 STATIC_LIBUBSAN_LIBS
820 #else
821 #define LIBUBSAN_SPEC "-lubsan" STATIC_LIBUBSAN_LIBS
822 #endif
823 #endif
824
825 /* Linker options for compressed debug sections. */
826 #if HAVE_LD_COMPRESS_DEBUG == 0
827 /* No linker support. */
828 #define LINK_COMPRESS_DEBUG_SPEC \
829 " %{gz*:%e-gz is not supported in this configuration} "
830 #elif HAVE_LD_COMPRESS_DEBUG == 1
831 /* GNU style on input, GNU ld options. Reject, not useful. */
832 #define LINK_COMPRESS_DEBUG_SPEC \
833 " %{gz*:%e-gz is not supported in this configuration} "
834 #elif HAVE_LD_COMPRESS_DEBUG == 2
835 /* GNU style, GNU gold options. */
836 #define LINK_COMPRESS_DEBUG_SPEC \
837 " %{gz|gz=zlib-gnu:" LD_COMPRESS_DEBUG_OPTION "=zlib}" \
838 " %{gz=none:" LD_COMPRESS_DEBUG_OPTION "=none}" \
839 " %{gz=zlib:%e-gz=zlib is not supported in this configuration} "
840 #elif HAVE_LD_COMPRESS_DEBUG == 3
841 /* ELF gABI style. */
842 #define LINK_COMPRESS_DEBUG_SPEC \
843 " %{gz|gz=zlib:" LD_COMPRESS_DEBUG_OPTION "=zlib}" \
844 " %{gz=none:" LD_COMPRESS_DEBUG_OPTION "=none}" \
845 " %{gz=zlib-gnu:" LD_COMPRESS_DEBUG_OPTION "=zlib-gnu} "
846 #else
847 #error Unknown value for HAVE_LD_COMPRESS_DEBUG.
848 #endif
849
850 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
851 included. */
852 #ifndef LIBGCC_SPEC
853 #if defined(REAL_LIBGCC_SPEC)
854 #define LIBGCC_SPEC REAL_LIBGCC_SPEC
855 #elif defined(LINK_LIBGCC_SPECIAL_1)
856 /* Have gcc do the search for libgcc.a. */
857 #define LIBGCC_SPEC "libgcc.a%s"
858 #else
859 #define LIBGCC_SPEC "-lgcc"
860 #endif
861 #endif
862
863 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
864 #ifndef STARTFILE_SPEC
865 #define STARTFILE_SPEC \
866 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
867 #endif
868
869 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
870 #ifndef ENDFILE_SPEC
871 #define ENDFILE_SPEC ""
872 #endif
873
874 #ifndef LINKER_NAME
875 #define LINKER_NAME "collect2"
876 #endif
877
878 #ifdef HAVE_AS_DEBUG_PREFIX_MAP
879 #define ASM_MAP " %{fdebug-prefix-map=*:--debug-prefix-map %*}"
880 #else
881 #define ASM_MAP ""
882 #endif
883
884 /* Assembler options for compressed debug sections. */
885 #if HAVE_LD_COMPRESS_DEBUG < 2
886 /* Reject if the linker cannot write compressed debug sections. */
887 #define ASM_COMPRESS_DEBUG_SPEC \
888 " %{gz*:%e-gz is not supported in this configuration} "
889 #else /* HAVE_LD_COMPRESS_DEBUG >= 2 */
890 #if HAVE_AS_COMPRESS_DEBUG == 0
891 /* No assembler support. Ignore silently. */
892 #define ASM_COMPRESS_DEBUG_SPEC \
893 " %{gz*:} "
894 #elif HAVE_AS_COMPRESS_DEBUG == 1
895 /* GNU style, GNU as options. */
896 #define ASM_COMPRESS_DEBUG_SPEC \
897 " %{gz|gz=zlib-gnu:" AS_COMPRESS_DEBUG_OPTION "}" \
898 " %{gz=none:" AS_NO_COMPRESS_DEBUG_OPTION "}" \
899 " %{gz=zlib:%e-gz=zlib is not supported in this configuration} "
900 #elif HAVE_AS_COMPRESS_DEBUG == 2
901 /* ELF gABI style. */
902 #define ASM_COMPRESS_DEBUG_SPEC \
903 " %{gz|gz=zlib:" AS_COMPRESS_DEBUG_OPTION "=zlib}" \
904 " %{gz=none:" AS_COMPRESS_DEBUG_OPTION "=none}" \
905 " %{gz=zlib-gnu:" AS_COMPRESS_DEBUG_OPTION "=zlib-gnu} "
906 #else
907 #error Unknown value for HAVE_AS_COMPRESS_DEBUG.
908 #endif
909 #endif /* HAVE_LD_COMPRESS_DEBUG >= 2 */
910
911 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
912 to the assembler, when compiling assembly sources only. */
913 #ifndef ASM_DEBUG_SPEC
914 # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
915 /* If --gdwarf-N is supported and as can handle even compiler generated
916 .debug_line with it, supply --gdwarf-N in ASM_DEBUG_OPTION_SPEC rather
917 than in ASM_DEBUG_SPEC, so that it applies to both .s and .c etc.
918 compilations. */
919 # define ASM_DEBUG_DWARF_OPTION ""
920 # elif defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && !defined(HAVE_LD_BROKEN_PE_DWARF5)
921 # define ASM_DEBUG_DWARF_OPTION "%{%:dwarf-version-gt(4):--gdwarf-5;" \
922 "%:dwarf-version-gt(3):--gdwarf-4;" \
923 "%:dwarf-version-gt(2):--gdwarf-3;" \
924 ":--gdwarf2}"
925 # else
926 # define ASM_DEBUG_DWARF_OPTION "--gdwarf2"
927 # endif
928 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO) \
929 && defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
930 # define ASM_DEBUG_SPEC \
931 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
932 ? "%{%:debug-level-gt(0):" \
933 "%{gdwarf*:" ASM_DEBUG_DWARF_OPTION "};" \
934 ":%{g*:--gstabs}}" ASM_MAP \
935 : "%{%:debug-level-gt(0):" \
936 "%{gstabs*:--gstabs;" \
937 ":%{g*:" ASM_DEBUG_DWARF_OPTION "}}}" ASM_MAP)
938 # else
939 # if defined(DBX_DEBUGGING_INFO) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
940 # define ASM_DEBUG_SPEC "%{g*:%{%:debug-level-gt(0):--gstabs}}" ASM_MAP
941 # endif
942 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
943 # define ASM_DEBUG_SPEC "%{g*:%{%:debug-level-gt(0):" \
944 ASM_DEBUG_DWARF_OPTION "}}" ASM_MAP
945 # endif
946 # endif
947 #endif
948 #ifndef ASM_DEBUG_SPEC
949 # define ASM_DEBUG_SPEC ""
950 #endif
951
952 /* Define ASM_DEBUG_OPTION_SPEC to be a spec suitable for translating '-g'
953 to the assembler when compiling all sources. */
954 #ifndef ASM_DEBUG_OPTION_SPEC
955 # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
956 # define ASM_DEBUG_OPTION_DWARF_OPT \
957 "%{%:dwarf-version-gt(4):--gdwarf-5 ;" \
958 "%:dwarf-version-gt(3):--gdwarf-4 ;" \
959 "%:dwarf-version-gt(2):--gdwarf-3 ;" \
960 ":--gdwarf2 }"
961 # if defined(DBX_DEBUGGING_INFO) && defined(DWARF2_DEBUGGING_INFO)
962 # define ASM_DEBUG_OPTION_SPEC \
963 (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG \
964 ? "%{%:debug-level-gt(0):" \
965 "%{gdwarf*:" ASM_DEBUG_OPTION_DWARF_OPT "}}" \
966 : "%{%:debug-level-gt(0):" \
967 "%{!gstabs*:%{g*:" ASM_DEBUG_OPTION_DWARF_OPT "}}}")
968 # elif defined(DWARF2_DEBUGGING_INFO)
969 # define ASM_DEBUG_OPTION_SPEC "%{g*:%{%:debug-level-gt(0):" \
970 ASM_DEBUG_OPTION_DWARF_OPT "}}"
971 # endif
972 # endif
973 #endif
974 #ifndef ASM_DEBUG_OPTION_SPEC
975 # define ASM_DEBUG_OPTION_SPEC ""
976 #endif
977
978 /* Here is the spec for running the linker, after compiling all files. */
979
980 /* This is overridable by the target in case they need to specify the
981 -lgcc and -lc order specially, yet not require them to override all
982 of LINK_COMMAND_SPEC. */
983 #ifndef LINK_GCC_C_SEQUENCE_SPEC
984 #define LINK_GCC_C_SEQUENCE_SPEC "%G %{!nolibc:%L %G}"
985 #endif
986
987 #ifndef LINK_SSP_SPEC
988 #ifdef TARGET_LIBC_PROVIDES_SSP
989 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
990 "|fstack-protector-strong|fstack-protector-explicit:}"
991 #else
992 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
993 "|fstack-protector-strong|fstack-protector-explicit" \
994 ":-lssp_nonshared -lssp}"
995 #endif
996 #endif
997
998 #ifdef ENABLE_DEFAULT_PIE
999 #define PIE_SPEC "!no-pie"
1000 #define NO_FPIE1_SPEC "fno-pie"
1001 #define FPIE1_SPEC NO_FPIE1_SPEC ":;"
1002 #define NO_FPIE2_SPEC "fno-PIE"
1003 #define FPIE2_SPEC NO_FPIE2_SPEC ":;"
1004 #define NO_FPIE_SPEC NO_FPIE1_SPEC "|" NO_FPIE2_SPEC
1005 #define FPIE_SPEC NO_FPIE_SPEC ":;"
1006 #define NO_FPIC1_SPEC "fno-pic"
1007 #define FPIC1_SPEC NO_FPIC1_SPEC ":;"
1008 #define NO_FPIC2_SPEC "fno-PIC"
1009 #define FPIC2_SPEC NO_FPIC2_SPEC ":;"
1010 #define NO_FPIC_SPEC NO_FPIC1_SPEC "|" NO_FPIC2_SPEC
1011 #define FPIC_SPEC NO_FPIC_SPEC ":;"
1012 #define NO_FPIE1_AND_FPIC1_SPEC NO_FPIE1_SPEC "|" NO_FPIC1_SPEC
1013 #define FPIE1_OR_FPIC1_SPEC NO_FPIE1_AND_FPIC1_SPEC ":;"
1014 #define NO_FPIE2_AND_FPIC2_SPEC NO_FPIE2_SPEC "|" NO_FPIC2_SPEC
1015 #define FPIE2_OR_FPIC2_SPEC NO_FPIE2_AND_FPIC2_SPEC ":;"
1016 #define NO_FPIE_AND_FPIC_SPEC NO_FPIE_SPEC "|" NO_FPIC_SPEC
1017 #define FPIE_OR_FPIC_SPEC NO_FPIE_AND_FPIC_SPEC ":;"
1018 #else
1019 #define PIE_SPEC "pie"
1020 #define FPIE1_SPEC "fpie"
1021 #define NO_FPIE1_SPEC FPIE1_SPEC ":;"
1022 #define FPIE2_SPEC "fPIE"
1023 #define NO_FPIE2_SPEC FPIE2_SPEC ":;"
1024 #define FPIE_SPEC FPIE1_SPEC "|" FPIE2_SPEC
1025 #define NO_FPIE_SPEC FPIE_SPEC ":;"
1026 #define FPIC1_SPEC "fpic"
1027 #define NO_FPIC1_SPEC FPIC1_SPEC ":;"
1028 #define FPIC2_SPEC "fPIC"
1029 #define NO_FPIC2_SPEC FPIC2_SPEC ":;"
1030 #define FPIC_SPEC FPIC1_SPEC "|" FPIC2_SPEC
1031 #define NO_FPIC_SPEC FPIC_SPEC ":;"
1032 #define FPIE1_OR_FPIC1_SPEC FPIE1_SPEC "|" FPIC1_SPEC
1033 #define NO_FPIE1_AND_FPIC1_SPEC FPIE1_OR_FPIC1_SPEC ":;"
1034 #define FPIE2_OR_FPIC2_SPEC FPIE2_SPEC "|" FPIC2_SPEC
1035 #define NO_FPIE2_AND_FPIC2_SPEC FPIE1_OR_FPIC2_SPEC ":;"
1036 #define FPIE_OR_FPIC_SPEC FPIE_SPEC "|" FPIC_SPEC
1037 #define NO_FPIE_AND_FPIC_SPEC FPIE_OR_FPIC_SPEC ":;"
1038 #endif
1039
1040 #ifndef LINK_PIE_SPEC
1041 #ifdef HAVE_LD_PIE
1042 #ifndef LD_PIE_SPEC
1043 #define LD_PIE_SPEC "-pie"
1044 #endif
1045 #else
1046 #define LD_PIE_SPEC ""
1047 #endif
1048 #define LINK_PIE_SPEC "%{static|shared|r:;" PIE_SPEC ":" LD_PIE_SPEC "} "
1049 #endif
1050
1051 #ifndef LINK_BUILDID_SPEC
1052 # if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
1053 # define LINK_BUILDID_SPEC "%{!r:--build-id} "
1054 # endif
1055 #endif
1056
1057 #ifndef LTO_PLUGIN_SPEC
1058 #define LTO_PLUGIN_SPEC ""
1059 #endif
1060
1061 /* Conditional to test whether the LTO plugin is used or not.
1062 FIXME: For slim LTO we will need to enable plugin unconditionally. This
1063 still cause problems with PLUGIN_LD != LD and when plugin is built but
1064 not useable. For GCC 4.6 we don't support slim LTO and thus we can enable
1065 plugin only when LTO is enabled. We still honor explicit
1066 -fuse-linker-plugin if the linker used understands -plugin. */
1067
1068 /* The linker has some plugin support. */
1069 #if HAVE_LTO_PLUGIN > 0
1070 /* The linker used has full plugin support, use LTO plugin by default. */
1071 #if HAVE_LTO_PLUGIN == 2
1072 #define PLUGIN_COND "!fno-use-linker-plugin:%{!fno-lto"
1073 #define PLUGIN_COND_CLOSE "}"
1074 #else
1075 /* The linker used has limited plugin support, use LTO plugin with explicit
1076 -fuse-linker-plugin. */
1077 #define PLUGIN_COND "fuse-linker-plugin"
1078 #define PLUGIN_COND_CLOSE ""
1079 #endif
1080 #define LINK_PLUGIN_SPEC \
1081 "%{" PLUGIN_COND": \
1082 -plugin %(linker_plugin_file) \
1083 -plugin-opt=%(lto_wrapper) \
1084 -plugin-opt=-fresolution=%u.res \
1085 " LTO_PLUGIN_SPEC "\
1086 %{flinker-output=*:-plugin-opt=-linker-output-known} \
1087 %{!nostdlib:%{!nodefaultlibs:%:pass-through-libs(%(link_gcc_c_sequence))}} \
1088 }" PLUGIN_COND_CLOSE
1089 #else
1090 /* The linker used doesn't support -plugin, reject -fuse-linker-plugin. */
1091 #define LINK_PLUGIN_SPEC "%{fuse-linker-plugin:\
1092 %e-fuse-linker-plugin is not supported in this configuration}"
1093 #endif
1094
1095 /* Linker command line options for -fsanitize= early on the command line. */
1096 #ifndef SANITIZER_EARLY_SPEC
1097 #define SANITIZER_EARLY_SPEC "\
1098 %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_EARLY_SPEC "} \
1099 %{%:sanitize(hwaddress):" LIBHWASAN_EARLY_SPEC "} \
1100 %{%:sanitize(thread):" LIBTSAN_EARLY_SPEC "} \
1101 %{%:sanitize(leak):" LIBLSAN_EARLY_SPEC "}}}}"
1102 #endif
1103
1104 /* Linker command line options for -fsanitize= late on the command line. */
1105 #ifndef SANITIZER_SPEC
1106 #define SANITIZER_SPEC "\
1107 %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_SPEC "\
1108 %{static:%ecannot specify -static with -fsanitize=address}}\
1109 %{%:sanitize(hwaddress):" LIBHWASAN_SPEC "\
1110 %{static:%ecannot specify -static with -fsanitize=hwaddress}}\
1111 %{%:sanitize(thread):" LIBTSAN_SPEC "\
1112 %{static:%ecannot specify -static with -fsanitize=thread}}\
1113 %{%:sanitize(undefined):" LIBUBSAN_SPEC "}\
1114 %{%:sanitize(leak):" LIBLSAN_SPEC "}}}}"
1115 #endif
1116
1117 #ifndef POST_LINK_SPEC
1118 #define POST_LINK_SPEC ""
1119 #endif
1120
1121 /* This is the spec to use, once the code for creating the vtable
1122 verification runtime library, libvtv.so, has been created. Currently
1123 the vtable verification runtime functions are in libstdc++, so we use
1124 the spec just below this one. */
1125 #ifndef VTABLE_VERIFICATION_SPEC
1126 #if ENABLE_VTABLE_VERIFY
1127 #define VTABLE_VERIFICATION_SPEC "\
1128 %{!nostdlib:%{!r:%{fvtable-verify=std: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}\
1129 %{fvtable-verify=preinit: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}}}"
1130 #else
1131 #define VTABLE_VERIFICATION_SPEC "\
1132 %{fvtable-verify=none:} \
1133 %{fvtable-verify=std: \
1134 %e-fvtable-verify=std is not supported in this configuration} \
1135 %{fvtable-verify=preinit: \
1136 %e-fvtable-verify=preinit is not supported in this configuration}"
1137 #endif
1138 #endif
1139
1140 /* -u* was put back because both BSD and SysV seem to support it. */
1141 /* %{static|no-pie|static-pie:} simply prevents an error message:
1142 1. If the target machine doesn't handle -static.
1143 2. If PIE isn't enabled by default.
1144 3. If the target machine doesn't handle -static-pie.
1145 */
1146 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
1147 scripts which exist in user specified directories, or in standard
1148 directories. */
1149 /* We pass any -flto flags on to the linker, which is expected
1150 to understand them. In practice, this means it had better be collect2. */
1151 /* %{e*} includes -export-dynamic; see comment in common.opt. */
1152 #ifndef LINK_COMMAND_SPEC
1153 #define LINK_COMMAND_SPEC "\
1154 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
1155 %(linker) " \
1156 LINK_PLUGIN_SPEC \
1157 "%{flto|flto=*:%<fcompare-debug*} \
1158 %{flto} %{fno-lto} %{flto=*} %l " LINK_PIE_SPEC \
1159 "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
1160 "%X %{o*} %{e*} %{N} %{n} %{r}\
1161 %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
1162 %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
1163 VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
1164 %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
1165 %:include(libgomp.spec)%(link_gomp)}\
1166 %{fgnu-tm:%:include(libitm.spec)%(link_itm)}\
1167 %(mflib) " STACK_SPLIT_SPEC "\
1168 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
1169 %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
1170 %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*} \n%(post_link) }}}}}}"
1171 #endif
1172
1173 #ifndef LINK_LIBGCC_SPEC
1174 /* Generate -L options for startfile prefix list. */
1175 # define LINK_LIBGCC_SPEC "%D"
1176 #endif
1177
1178 #ifndef STARTFILE_PREFIX_SPEC
1179 # define STARTFILE_PREFIX_SPEC ""
1180 #endif
1181
1182 #ifndef SYSROOT_SPEC
1183 # define SYSROOT_SPEC "--sysroot=%R"
1184 #endif
1185
1186 #ifndef SYSROOT_SUFFIX_SPEC
1187 # define SYSROOT_SUFFIX_SPEC ""
1188 #endif
1189
1190 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
1191 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
1192 #endif
1193
1194 static const char *asm_debug = ASM_DEBUG_SPEC;
1195 static const char *asm_debug_option = ASM_DEBUG_OPTION_SPEC;
1196 static const char *cpp_spec = CPP_SPEC;
1197 static const char *cc1_spec = CC1_SPEC;
1198 static const char *cc1plus_spec = CC1PLUS_SPEC;
1199 static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
1200 static const char *link_ssp_spec = LINK_SSP_SPEC;
1201 static const char *asm_spec = ASM_SPEC;
1202 static const char *asm_final_spec = ASM_FINAL_SPEC;
1203 static const char *link_spec = LINK_SPEC;
1204 static const char *lib_spec = LIB_SPEC;
1205 static const char *link_gomp_spec = "";
1206 static const char *libgcc_spec = LIBGCC_SPEC;
1207 static const char *endfile_spec = ENDFILE_SPEC;
1208 static const char *startfile_spec = STARTFILE_SPEC;
1209 static const char *linker_name_spec = LINKER_NAME;
1210 static const char *linker_plugin_file_spec = "";
1211 static const char *lto_wrapper_spec = "";
1212 static const char *lto_gcc_spec = "";
1213 static const char *post_link_spec = POST_LINK_SPEC;
1214 static const char *link_command_spec = LINK_COMMAND_SPEC;
1215 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
1216 static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
1217 static const char *sysroot_spec = SYSROOT_SPEC;
1218 static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
1219 static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
1220 static const char *self_spec = "";
1221
1222 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
1223 There should be no need to override these in target dependent files,
1224 but we need to copy them to the specs file so that newer versions
1225 of the GCC driver can correctly drive older tool chains with the
1226 appropriate -B options. */
1227
1228 /* When cpplib handles traditional preprocessing, get rid of this, and
1229 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
1230 that we default the front end language better. */
1231 static const char *trad_capable_cpp =
1232 "cc1 -E %{traditional|traditional-cpp:-traditional-cpp}";
1233
1234 /* We don't wrap .d files in %W{} since a missing .d file, and
1235 therefore no dependency entry, confuses make into thinking a .o
1236 file that happens to exist is up-to-date. */
1237 static const char *cpp_unique_options =
1238 "%{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %@{I*&F*} %{P} %I\
1239 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
1240 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
1241 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
1242 %{Mmodules} %{Mno-modules}\
1243 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
1244 %{remap} %{%:debug-level-gt(2):-dD}\
1245 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1246 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
1247 %{E|M|MM:%W{o*}}";
1248
1249 /* This contains cpp options which are common with cc1_options and are passed
1250 only when preprocessing only to avoid duplication. We pass the cc1 spec
1251 options to the preprocessor so that it the cc1 spec may manipulate
1252 options used to set target flags. Those special target flags settings may
1253 in turn cause preprocessor symbols to be defined specially. */
1254 static const char *cpp_options =
1255 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
1256 %{f*} %{g*:%{%:debug-level-gt(0):%{g*}\
1257 %{!fno-working-directory:-fworking-directory}}} %{O*}\
1258 %{undef} %{save-temps*:-fpch-preprocess}";
1259
1260 /* Pass -d* flags, possibly modifying -dumpdir, -dumpbase et al.
1261
1262 Make it easy for a language to override the argument for the
1263 %:dumps specs function call. */
1264 #define DUMPS_OPTIONS(EXTS) \
1265 "%<dumpdir %<dumpbase %<dumpbase-ext %{d*} %:dumps(" EXTS ")"
1266
1267 /* This contains cpp options which are not passed when the preprocessor
1268 output will be used by another program. */
1269 static const char *cpp_debug_options = DUMPS_OPTIONS ("");
1270
1271 /* NB: This is shared amongst all front-ends, except for Ada. */
1272 static const char *cc1_options =
1273 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
1274 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1275 %1 %{!Q:-quiet} %(cpp_debug_options) %{m*} %{aux-info*}\
1276 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
1277 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
1278 %{Qn:-fno-ident} %{Qy:} %{-help:--help}\
1279 %{-target-help:--target-help}\
1280 %{-version:--version}\
1281 %{-help=*:--help=%*}\
1282 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %w%b.s}}}\
1283 %{fsyntax-only:-o %j} %{-param*}\
1284 %{coverage:-fprofile-arcs -ftest-coverage}\
1285 %{fprofile-arcs|fprofile-generate*|coverage:\
1286 %{!fprofile-update=single:\
1287 %{pthread:-fprofile-update=prefer-atomic}}}";
1288
1289 static const char *asm_options =
1290 "%{-target-help:%:print-asm-header()} "
1291 #if HAVE_GNU_AS
1292 /* If GNU AS is used, then convert -w (no warnings), -I, and -v
1293 to the assembler equivalents. */
1294 "%{v} %{w:-W} %{I*} "
1295 #endif
1296 "%(asm_debug_option)"
1297 ASM_COMPRESS_DEBUG_SPEC
1298 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
1299
1300 static const char *invoke_as =
1301 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1302 "%{!fwpa*:\
1303 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1304 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
1305 }";
1306 #else
1307 "%{!fwpa*:\
1308 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1309 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
1310 }";
1311 #endif
1312
1313 /* Some compilers have limits on line lengths, and the multilib_select
1314 and/or multilib_matches strings can be very long, so we build them at
1315 run time. */
1316 static struct obstack multilib_obstack;
1317 static const char *multilib_select;
1318 static const char *multilib_matches;
1319 static const char *multilib_defaults;
1320 static const char *multilib_exclusions;
1321 static const char *multilib_reuse;
1322
1323 /* Check whether a particular argument is a default argument. */
1324
1325 #ifndef MULTILIB_DEFAULTS
1326 #define MULTILIB_DEFAULTS { "" }
1327 #endif
1328
1329 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
1330
1331 #ifndef DRIVER_SELF_SPECS
1332 #define DRIVER_SELF_SPECS ""
1333 #endif
1334
1335 /* Linking to libgomp implies pthreads. This is particularly important
1336 for targets that use different start files and suchlike. */
1337 #ifndef GOMP_SELF_SPECS
1338 #define GOMP_SELF_SPECS \
1339 "%{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1): " \
1340 "-pthread}"
1341 #endif
1342
1343 /* Likewise for -fgnu-tm. */
1344 #ifndef GTM_SELF_SPECS
1345 #define GTM_SELF_SPECS "%{fgnu-tm: -pthread}"
1346 #endif
1347
1348 static const char *const driver_self_specs[] = {
1349 "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
1350 DRIVER_SELF_SPECS, CONFIGURE_SPECS, GOMP_SELF_SPECS, GTM_SELF_SPECS
1351 };
1352
1353 #ifndef OPTION_DEFAULT_SPECS
1354 #define OPTION_DEFAULT_SPECS { "", "" }
1355 #endif
1356
1357 struct default_spec
1358 {
1359 const char *name;
1360 const char *spec;
1361 };
1362
1363 static const struct default_spec
1364 option_default_specs[] = { OPTION_DEFAULT_SPECS };
1365
1366 struct user_specs
1367 {
1368 struct user_specs *next;
1369 const char *filename;
1370 };
1371
1372 static struct user_specs *user_specs_head, *user_specs_tail;
1373
1374 \f
1375 /* Record the mapping from file suffixes for compilation specs. */
1376
1377 struct compiler
1378 {
1379 const char *suffix; /* Use this compiler for input files
1380 whose names end in this suffix. */
1381
1382 const char *spec; /* To use this compiler, run this spec. */
1383
1384 const char *cpp_spec; /* If non-NULL, substitute this spec
1385 for `%C', rather than the usual
1386 cpp_spec. */
1387 int combinable; /* If nonzero, compiler can deal with
1388 multiple source files at once (IMA). */
1389 int needs_preprocessing; /* If nonzero, source files need to
1390 be run through a preprocessor. */
1391 };
1392
1393 /* Pointer to a vector of `struct compiler' that gives the spec for
1394 compiling a file, based on its suffix.
1395 A file that does not end in any of these suffixes will be passed
1396 unchanged to the loader and nothing else will be done to it.
1397
1398 An entry containing two 0s is used to terminate the vector.
1399
1400 If multiple entries match a file, the last matching one is used. */
1401
1402 static struct compiler *compilers;
1403
1404 /* Number of entries in `compilers', not counting the null terminator. */
1405
1406 static int n_compilers;
1407
1408 /* The default list of file name suffixes and their compilation specs. */
1409
1410 static const struct compiler default_compilers[] =
1411 {
1412 /* Add lists of suffixes of known languages here. If those languages
1413 were not present when we built the driver, we will hit these copies
1414 and be given a more meaningful error than "file not used since
1415 linking is not done". */
1416 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
1417 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1418 {".mii", "#Objective-C++", 0, 0, 0},
1419 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1420 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
1421 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1422 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1423 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
1424 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1425 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1426 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1427 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1428 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1429 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1430 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1431 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
1432 {".r", "#Ratfor", 0, 0, 0},
1433 {".go", "#Go", 0, 1, 0},
1434 {".d", "#D", 0, 1, 0}, {".dd", "#D", 0, 1, 0}, {".di", "#D", 0, 1, 0},
1435 /* Next come the entries for C. */
1436 {".c", "@c", 0, 0, 1},
1437 {"@c",
1438 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1439 external preprocessor if -save-temps is given. */
1440 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1441 %{!E:%{!M:%{!MM:\
1442 %{traditional:\
1443 %eGNU C no longer supports -traditional without -E}\
1444 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1445 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1446 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1447 %(cc1_options)}\
1448 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1449 cc1 %(cpp_unique_options) %(cc1_options)}}}\
1450 %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 1},
1451 {"-",
1452 "%{!E:%e-E or -x required when input is from standard input}\
1453 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1454 {".h", "@c-header", 0, 0, 0},
1455 {"@c-header",
1456 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1457 external preprocessor if -save-temps is given. */
1458 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1459 %{!E:%{!M:%{!MM:\
1460 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1461 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1462 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1463 %(cc1_options)\
1464 %{!fsyntax-only:%{!S:-o %g.s} \
1465 %{!fdump-ada-spec*:%{!o*:--output-pch=%i.gch}\
1466 %W{o*:--output-pch=%*}}%V}}\
1467 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1468 cc1 %(cpp_unique_options) %(cc1_options)\
1469 %{!fsyntax-only:%{!S:-o %g.s} \
1470 %{!fdump-ada-spec*:%{!o*:--output-pch=%i.gch}\
1471 %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
1472 {".i", "@cpp-output", 0, 0, 0},
1473 {"@cpp-output",
1474 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
1475 {".s", "@assembler", 0, 0, 0},
1476 {"@assembler",
1477 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
1478 {".sx", "@assembler-with-cpp", 0, 0, 0},
1479 {".S", "@assembler-with-cpp", 0, 0, 0},
1480 {"@assembler-with-cpp",
1481 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1482 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1483 %{E|M|MM:%(cpp_debug_options)}\
1484 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1485 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1486 #else
1487 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1488 %{E|M|MM:%(cpp_debug_options)}\
1489 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1490 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1491 #endif
1492 , 0, 0, 0},
1493
1494 #include "specs.h"
1495 /* Mark end of table. */
1496 {0, 0, 0, 0, 0}
1497 };
1498
1499 /* Number of elements in default_compilers, not counting the terminator. */
1500
1501 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1502
1503 typedef char *char_p; /* For DEF_VEC_P. */
1504
1505 /* A vector of options to give to the linker.
1506 These options are accumulated by %x,
1507 and substituted into the linker command with %X. */
1508 static vec<char_p> linker_options;
1509
1510 /* A vector of options to give to the assembler.
1511 These options are accumulated by -Wa,
1512 and substituted into the assembler command with %Y. */
1513 static vec<char_p> assembler_options;
1514
1515 /* A vector of options to give to the preprocessor.
1516 These options are accumulated by -Wp,
1517 and substituted into the preprocessor command with %Z. */
1518 static vec<char_p> preprocessor_options;
1519 \f
1520 static char *
1521 skip_whitespace (char *p)
1522 {
1523 while (1)
1524 {
1525 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1526 be considered whitespace. */
1527 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1528 return p + 1;
1529 else if (*p == '\n' || *p == ' ' || *p == '\t')
1530 p++;
1531 else if (*p == '#')
1532 {
1533 while (*p != '\n')
1534 p++;
1535 p++;
1536 }
1537 else
1538 break;
1539 }
1540
1541 return p;
1542 }
1543 /* Structures to keep track of prefixes to try when looking for files. */
1544
1545 struct prefix_list
1546 {
1547 const char *prefix; /* String to prepend to the path. */
1548 struct prefix_list *next; /* Next in linked list. */
1549 int require_machine_suffix; /* Don't use without machine_suffix. */
1550 /* 2 means try both machine_suffix and just_machine_suffix. */
1551 int priority; /* Sort key - priority within list. */
1552 int os_multilib; /* 1 if OS multilib scheme should be used,
1553 0 for GCC multilib scheme. */
1554 };
1555
1556 struct path_prefix
1557 {
1558 struct prefix_list *plist; /* List of prefixes to try */
1559 int max_len; /* Max length of a prefix in PLIST */
1560 const char *name; /* Name of this list (used in config stuff) */
1561 };
1562
1563 /* List of prefixes to try when looking for executables. */
1564
1565 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1566
1567 /* List of prefixes to try when looking for startup (crt0) files. */
1568
1569 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1570
1571 /* List of prefixes to try when looking for include files. */
1572
1573 static struct path_prefix include_prefixes = { 0, 0, "include" };
1574
1575 /* Suffix to attach to directories searched for commands.
1576 This looks like `MACHINE/VERSION/'. */
1577
1578 static const char *machine_suffix = 0;
1579
1580 /* Suffix to attach to directories searched for commands.
1581 This is just `MACHINE/'. */
1582
1583 static const char *just_machine_suffix = 0;
1584
1585 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1586
1587 static const char *gcc_exec_prefix;
1588
1589 /* Adjusted value of standard_libexec_prefix. */
1590
1591 static const char *gcc_libexec_prefix;
1592
1593 /* Default prefixes to attach to command names. */
1594
1595 #ifndef STANDARD_STARTFILE_PREFIX_1
1596 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1597 #endif
1598 #ifndef STANDARD_STARTFILE_PREFIX_2
1599 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1600 #endif
1601
1602 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1603 #undef MD_EXEC_PREFIX
1604 #undef MD_STARTFILE_PREFIX
1605 #undef MD_STARTFILE_PREFIX_1
1606 #endif
1607
1608 /* If no prefixes defined, use the null string, which will disable them. */
1609 #ifndef MD_EXEC_PREFIX
1610 #define MD_EXEC_PREFIX ""
1611 #endif
1612 #ifndef MD_STARTFILE_PREFIX
1613 #define MD_STARTFILE_PREFIX ""
1614 #endif
1615 #ifndef MD_STARTFILE_PREFIX_1
1616 #define MD_STARTFILE_PREFIX_1 ""
1617 #endif
1618
1619 /* These directories are locations set at configure-time based on the
1620 --prefix option provided to configure. Their initializers are
1621 defined in Makefile.in. These paths are not *directly* used when
1622 gcc_exec_prefix is set because, in that case, we know where the
1623 compiler has been installed, and use paths relative to that
1624 location instead. */
1625 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1626 static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1627 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1628 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1629
1630 /* For native compilers, these are well-known paths containing
1631 components that may be provided by the system. For cross
1632 compilers, these paths are not used. */
1633 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1634 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1635 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1636 static const char *const standard_startfile_prefix_1
1637 = STANDARD_STARTFILE_PREFIX_1;
1638 static const char *const standard_startfile_prefix_2
1639 = STANDARD_STARTFILE_PREFIX_2;
1640
1641 /* A relative path to be used in finding the location of tools
1642 relative to the driver. */
1643 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1644
1645 /* A prefix to be used when this is an accelerator compiler. */
1646 static const char *const accel_dir_suffix = ACCEL_DIR_SUFFIX;
1647
1648 /* Subdirectory to use for locating libraries. Set by
1649 set_multilib_dir based on the compilation options. */
1650
1651 static const char *multilib_dir;
1652
1653 /* Subdirectory to use for locating libraries in OS conventions. Set by
1654 set_multilib_dir based on the compilation options. */
1655
1656 static const char *multilib_os_dir;
1657
1658 /* Subdirectory to use for locating libraries in multiarch conventions. Set by
1659 set_multilib_dir based on the compilation options. */
1660
1661 static const char *multiarch_dir;
1662 \f
1663 /* Structure to keep track of the specs that have been defined so far.
1664 These are accessed using %(specname) in a compiler or link
1665 spec. */
1666
1667 struct spec_list
1668 {
1669 /* The following 2 fields must be first */
1670 /* to allow EXTRA_SPECS to be initialized */
1671 const char *name; /* name of the spec. */
1672 const char *ptr; /* available ptr if no static pointer */
1673
1674 /* The following fields are not initialized */
1675 /* by EXTRA_SPECS */
1676 const char **ptr_spec; /* pointer to the spec itself. */
1677 struct spec_list *next; /* Next spec in linked list. */
1678 int name_len; /* length of the name */
1679 bool user_p; /* whether string come from file spec. */
1680 bool alloc_p; /* whether string was allocated */
1681 const char *default_ptr; /* The default value of *ptr_spec. */
1682 };
1683
1684 #define INIT_STATIC_SPEC(NAME,PTR) \
1685 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, false, false, \
1686 *PTR }
1687
1688 /* List of statically defined specs. */
1689 static struct spec_list static_specs[] =
1690 {
1691 INIT_STATIC_SPEC ("asm", &asm_spec),
1692 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1693 INIT_STATIC_SPEC ("asm_debug_option", &asm_debug_option),
1694 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1695 INIT_STATIC_SPEC ("asm_options", &asm_options),
1696 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1697 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1698 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1699 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1700 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1701 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1702 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1703 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1704 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1705 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1706 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1707 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1708 INIT_STATIC_SPEC ("link", &link_spec),
1709 INIT_STATIC_SPEC ("lib", &lib_spec),
1710 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1711 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1712 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1713 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1714 INIT_STATIC_SPEC ("version", &compiler_version),
1715 INIT_STATIC_SPEC ("multilib", &multilib_select),
1716 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1717 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1718 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1719 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1720 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1721 INIT_STATIC_SPEC ("multilib_reuse", &multilib_reuse),
1722 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1723 INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1724 INIT_STATIC_SPEC ("lto_wrapper", &lto_wrapper_spec),
1725 INIT_STATIC_SPEC ("lto_gcc", &lto_gcc_spec),
1726 INIT_STATIC_SPEC ("post_link", &post_link_spec),
1727 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1728 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1729 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1730 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1731 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1732 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1733 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1734 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1735 INIT_STATIC_SPEC ("self_spec", &self_spec),
1736 };
1737
1738 #ifdef EXTRA_SPECS /* additional specs needed */
1739 /* Structure to keep track of just the first two args of a spec_list.
1740 That is all that the EXTRA_SPECS macro gives us. */
1741 struct spec_list_1
1742 {
1743 const char *const name;
1744 const char *const ptr;
1745 };
1746
1747 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1748 static struct spec_list *extra_specs = (struct spec_list *) 0;
1749 #endif
1750
1751 /* List of dynamically allocates specs that have been defined so far. */
1752
1753 static struct spec_list *specs = (struct spec_list *) 0;
1754 \f
1755 /* List of static spec functions. */
1756
1757 static const struct spec_function static_spec_functions[] =
1758 {
1759 { "getenv", getenv_spec_function },
1760 { "if-exists", if_exists_spec_function },
1761 { "if-exists-else", if_exists_else_spec_function },
1762 { "if-exists-then-else", if_exists_then_else_spec_function },
1763 { "sanitize", sanitize_spec_function },
1764 { "replace-outfile", replace_outfile_spec_function },
1765 { "remove-outfile", remove_outfile_spec_function },
1766 { "version-compare", version_compare_spec_function },
1767 { "include", include_spec_function },
1768 { "find-file", find_file_spec_function },
1769 { "find-plugindir", find_plugindir_spec_function },
1770 { "print-asm-header", print_asm_header_spec_function },
1771 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1772 { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1773 { "pass-through-libs", pass_through_libs_spec_func },
1774 { "dumps", dumps_spec_func },
1775 { "gt", greater_than_spec_func },
1776 { "debug-level-gt", debug_level_greater_than_spec_func },
1777 { "dwarf-version-gt", dwarf_version_greater_than_spec_func },
1778 { "fortran-preinclude-file", find_fortran_preinclude_file},
1779 #ifdef EXTRA_SPEC_FUNCTIONS
1780 EXTRA_SPEC_FUNCTIONS
1781 #endif
1782 { 0, 0 }
1783 };
1784
1785 static int processing_spec_function;
1786 \f
1787 /* Add appropriate libgcc specs to OBSTACK, taking into account
1788 various permutations of -shared-libgcc, -shared, and such. */
1789
1790 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1791
1792 #ifndef USE_LD_AS_NEEDED
1793 #define USE_LD_AS_NEEDED 0
1794 #endif
1795
1796 static void
1797 init_gcc_specs (struct obstack *obstack, const char *shared_name,
1798 const char *static_name, const char *eh_name)
1799 {
1800 char *buf;
1801
1802 #if USE_LD_AS_NEEDED
1803 buf = concat ("%{static|static-libgcc|static-pie:", static_name, " ", eh_name, "}"
1804 "%{!static:%{!static-libgcc:%{!static-pie:"
1805 "%{!shared-libgcc:",
1806 static_name, " " LD_AS_NEEDED_OPTION " ",
1807 shared_name, " " LD_NO_AS_NEEDED_OPTION
1808 "}"
1809 "%{shared-libgcc:",
1810 shared_name, "%{!shared: ", static_name, "}"
1811 "}}"
1812 #else
1813 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1814 "%{!static:%{!static-libgcc:"
1815 "%{!shared:"
1816 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1817 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1818 "}"
1819 #ifdef LINK_EH_SPEC
1820 "%{shared:"
1821 "%{shared-libgcc:", shared_name, "}"
1822 "%{!shared-libgcc:", static_name, "}"
1823 "}"
1824 #else
1825 "%{shared:", shared_name, "}"
1826 #endif
1827 #endif
1828 "}}", NULL);
1829
1830 obstack_grow (obstack, buf, strlen (buf));
1831 free (buf);
1832 }
1833 #endif /* ENABLE_SHARED_LIBGCC */
1834
1835 /* Initialize the specs lookup routines. */
1836
1837 static void
1838 init_spec (void)
1839 {
1840 struct spec_list *next = (struct spec_list *) 0;
1841 struct spec_list *sl = (struct spec_list *) 0;
1842 int i;
1843
1844 if (specs)
1845 return; /* Already initialized. */
1846
1847 if (verbose_flag)
1848 fnotice (stderr, "Using built-in specs.\n");
1849
1850 #ifdef EXTRA_SPECS
1851 extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1852
1853 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1854 {
1855 sl = &extra_specs[i];
1856 sl->name = extra_specs_1[i].name;
1857 sl->ptr = extra_specs_1[i].ptr;
1858 sl->next = next;
1859 sl->name_len = strlen (sl->name);
1860 sl->ptr_spec = &sl->ptr;
1861 gcc_assert (sl->ptr_spec != NULL);
1862 sl->default_ptr = sl->ptr;
1863 next = sl;
1864 }
1865 #endif
1866
1867 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1868 {
1869 sl = &static_specs[i];
1870 sl->next = next;
1871 next = sl;
1872 }
1873
1874 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1875 /* ??? If neither -shared-libgcc nor --static-libgcc was
1876 seen, then we should be making an educated guess. Some proposed
1877 heuristics for ELF include:
1878
1879 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1880 program will be doing dynamic loading, which will likely
1881 need the shared libgcc.
1882
1883 (2) If "-ldl", then it's also a fair bet that we're doing
1884 dynamic loading.
1885
1886 (3) For each ET_DYN we're linking against (either through -lfoo
1887 or /some/path/foo.so), check to see whether it or one of
1888 its dependencies depends on a shared libgcc.
1889
1890 (4) If "-shared"
1891
1892 If the runtime is fixed to look for program headers instead
1893 of calling __register_frame_info at all, for each object,
1894 use the shared libgcc if any EH symbol referenced.
1895
1896 If crtstuff is fixed to not invoke __register_frame_info
1897 automatically, for each object, use the shared libgcc if
1898 any non-empty unwind section found.
1899
1900 Doing any of this probably requires invoking an external program to
1901 do the actual object file scanning. */
1902 {
1903 const char *p = libgcc_spec;
1904 int in_sep = 1;
1905
1906 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1907 when given the proper command line arguments. */
1908 while (*p)
1909 {
1910 if (in_sep && *p == '-' && startswith (p, "-lgcc"))
1911 {
1912 init_gcc_specs (&obstack,
1913 "-lgcc_s"
1914 #ifdef USE_LIBUNWIND_EXCEPTIONS
1915 " -lunwind"
1916 #endif
1917 ,
1918 "-lgcc",
1919 "-lgcc_eh"
1920 #ifdef USE_LIBUNWIND_EXCEPTIONS
1921 # ifdef HAVE_LD_STATIC_DYNAMIC
1922 " %{!static:%{!static-pie:" LD_STATIC_OPTION "}} -lunwind"
1923 " %{!static:%{!static-pie:" LD_DYNAMIC_OPTION "}}"
1924 # else
1925 " -lunwind"
1926 # endif
1927 #endif
1928 );
1929
1930 p += 5;
1931 in_sep = 0;
1932 }
1933 else if (in_sep && *p == 'l' && startswith (p, "libgcc.a%s"))
1934 {
1935 /* Ug. We don't know shared library extensions. Hope that
1936 systems that use this form don't do shared libraries. */
1937 init_gcc_specs (&obstack,
1938 "-lgcc_s",
1939 "libgcc.a%s",
1940 "libgcc_eh.a%s"
1941 #ifdef USE_LIBUNWIND_EXCEPTIONS
1942 " -lunwind"
1943 #endif
1944 );
1945 p += 10;
1946 in_sep = 0;
1947 }
1948 else
1949 {
1950 obstack_1grow (&obstack, *p);
1951 in_sep = (*p == ' ');
1952 p += 1;
1953 }
1954 }
1955
1956 obstack_1grow (&obstack, '\0');
1957 libgcc_spec = XOBFINISH (&obstack, const char *);
1958 }
1959 #endif
1960 #ifdef USE_AS_TRADITIONAL_FORMAT
1961 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1962 {
1963 static const char tf[] = "--traditional-format ";
1964 obstack_grow (&obstack, tf, sizeof (tf) - 1);
1965 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1966 asm_spec = XOBFINISH (&obstack, const char *);
1967 }
1968 #endif
1969
1970 #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \
1971 defined LINKER_HASH_STYLE
1972 # ifdef LINK_BUILDID_SPEC
1973 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1974 obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof (LINK_BUILDID_SPEC) - 1);
1975 # endif
1976 # ifdef LINK_EH_SPEC
1977 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1978 obstack_grow (&obstack, LINK_EH_SPEC, sizeof (LINK_EH_SPEC) - 1);
1979 # endif
1980 # ifdef LINKER_HASH_STYLE
1981 /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had
1982 before. */
1983 {
1984 static const char hash_style[] = "--hash-style=";
1985 obstack_grow (&obstack, hash_style, sizeof (hash_style) - 1);
1986 obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof (LINKER_HASH_STYLE) - 1);
1987 obstack_1grow (&obstack, ' ');
1988 }
1989 # endif
1990 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1991 link_spec = XOBFINISH (&obstack, const char *);
1992 #endif
1993
1994 specs = sl;
1995 }
1996
1997 /* Update the entry for SPEC in the static_specs table to point to VALUE,
1998 ensuring that we free the previous value if necessary. Set alloc_p for the
1999 entry to ALLOC_P: this determines whether we take ownership of VALUE (i.e.
2000 whether we need to free it later on). */
2001 static void
2002 set_static_spec (const char **spec, const char *value, bool alloc_p)
2003 {
2004 struct spec_list *sl = NULL;
2005
2006 for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
2007 {
2008 if (static_specs[i].ptr_spec == spec)
2009 {
2010 sl = static_specs + i;
2011 break;
2012 }
2013 }
2014
2015 gcc_assert (sl);
2016
2017 if (sl->alloc_p)
2018 {
2019 const char *old = *spec;
2020 free (const_cast <char *> (old));
2021 }
2022
2023 *spec = value;
2024 sl->alloc_p = alloc_p;
2025 }
2026
2027 /* Update a static spec to a new string, taking ownership of that
2028 string's memory. */
2029 static void set_static_spec_owned (const char **spec, const char *val)
2030 {
2031 return set_static_spec (spec, val, true);
2032 }
2033
2034 /* Update a static spec to point to a new value, but don't take
2035 ownership of (i.e. don't free) that string. */
2036 static void set_static_spec_shared (const char **spec, const char *val)
2037 {
2038 return set_static_spec (spec, val, false);
2039 }
2040
2041 \f
2042 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
2043 removed; If the spec starts with a + then SPEC is added to the end of the
2044 current spec. */
2045
2046 static void
2047 set_spec (const char *name, const char *spec, bool user_p)
2048 {
2049 struct spec_list *sl;
2050 const char *old_spec;
2051 int name_len = strlen (name);
2052 int i;
2053
2054 /* If this is the first call, initialize the statically allocated specs. */
2055 if (!specs)
2056 {
2057 struct spec_list *next = (struct spec_list *) 0;
2058 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
2059 {
2060 sl = &static_specs[i];
2061 sl->next = next;
2062 next = sl;
2063 }
2064 specs = sl;
2065 }
2066
2067 /* See if the spec already exists. */
2068 for (sl = specs; sl; sl = sl->next)
2069 if (name_len == sl->name_len && !strcmp (sl->name, name))
2070 break;
2071
2072 if (!sl)
2073 {
2074 /* Not found - make it. */
2075 sl = XNEW (struct spec_list);
2076 sl->name = xstrdup (name);
2077 sl->name_len = name_len;
2078 sl->ptr_spec = &sl->ptr;
2079 sl->alloc_p = 0;
2080 *(sl->ptr_spec) = "";
2081 sl->next = specs;
2082 sl->default_ptr = NULL;
2083 specs = sl;
2084 }
2085
2086 old_spec = *(sl->ptr_spec);
2087 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
2088 ? concat (old_spec, spec + 1, NULL)
2089 : xstrdup (spec));
2090
2091 #ifdef DEBUG_SPECS
2092 if (verbose_flag)
2093 fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
2094 #endif
2095
2096 /* Free the old spec. */
2097 if (old_spec && sl->alloc_p)
2098 free (CONST_CAST (char *, old_spec));
2099
2100 sl->user_p = user_p;
2101 sl->alloc_p = true;
2102 }
2103 \f
2104 /* Accumulate a command (program name and args), and run it. */
2105
2106 typedef const char *const_char_p; /* For DEF_VEC_P. */
2107
2108 /* Vector of pointers to arguments in the current line of specifications. */
2109 static vec<const_char_p> argbuf;
2110
2111 /* Likewise, but for the current @file. */
2112 static vec<const_char_p> at_file_argbuf;
2113
2114 /* Whether an @file is currently open. */
2115 static bool in_at_file = false;
2116
2117 /* Were the options -c, -S or -E passed. */
2118 static int have_c = 0;
2119
2120 /* Was the option -o passed. */
2121 static int have_o = 0;
2122
2123 /* Was the option -E passed. */
2124 static int have_E = 0;
2125
2126 /* Pointer to output file name passed in with -o. */
2127 static const char *output_file = 0;
2128
2129 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
2130 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2131 it here. */
2132
2133 static struct temp_name {
2134 const char *suffix; /* suffix associated with the code. */
2135 int length; /* strlen (suffix). */
2136 int unique; /* Indicates whether %g or %u/%U was used. */
2137 const char *filename; /* associated filename. */
2138 int filename_length; /* strlen (filename). */
2139 struct temp_name *next;
2140 } *temp_names;
2141
2142 /* Number of commands executed so far. */
2143
2144 static int execution_count;
2145
2146 /* Number of commands that exited with a signal. */
2147
2148 static int signal_count;
2149 \f
2150 /* Allocate the argument vector. */
2151
2152 static void
2153 alloc_args (void)
2154 {
2155 argbuf.create (10);
2156 at_file_argbuf.create (10);
2157 }
2158
2159 /* Clear out the vector of arguments (after a command is executed). */
2160
2161 static void
2162 clear_args (void)
2163 {
2164 argbuf.truncate (0);
2165 at_file_argbuf.truncate (0);
2166 }
2167
2168 /* Add one argument to the vector at the end.
2169 This is done when a space is seen or at the end of the line.
2170 If DELETE_ALWAYS is nonzero, the arg is a filename
2171 and the file should be deleted eventually.
2172 If DELETE_FAILURE is nonzero, the arg is a filename
2173 and the file should be deleted if this compilation fails. */
2174
2175 static void
2176 store_arg (const char *arg, int delete_always, int delete_failure)
2177 {
2178 if (in_at_file)
2179 at_file_argbuf.safe_push (arg);
2180 else
2181 argbuf.safe_push (arg);
2182
2183 if (delete_always || delete_failure)
2184 {
2185 const char *p;
2186 /* If the temporary file we should delete is specified as
2187 part of a joined argument extract the filename. */
2188 if (arg[0] == '-'
2189 && (p = strrchr (arg, '=')))
2190 arg = p + 1;
2191 record_temp_file (arg, delete_always, delete_failure);
2192 }
2193 }
2194
2195 /* Open a temporary @file into which subsequent arguments will be stored. */
2196
2197 static void
2198 open_at_file (void)
2199 {
2200 if (in_at_file)
2201 fatal_error (input_location, "cannot open nested response file");
2202 else
2203 in_at_file = true;
2204 }
2205
2206 /* Create a temporary @file name. */
2207
2208 static char *make_at_file (void)
2209 {
2210 static int fileno = 0;
2211 char filename[20];
2212 const char *base, *ext;
2213
2214 if (!save_temps_flag)
2215 return make_temp_file ("");
2216
2217 base = dumpbase;
2218 if (!(base && *base))
2219 base = dumpdir;
2220 if (!(base && *base))
2221 base = "a";
2222
2223 sprintf (filename, ".args.%d", fileno++);
2224 ext = filename;
2225
2226 if (base == dumpdir && dumpdir_trailing_dash_added)
2227 ext++;
2228
2229 return concat (base, ext, NULL);
2230 }
2231
2232 /* Close the temporary @file and add @file to the argument list. */
2233
2234 static void
2235 close_at_file (void)
2236 {
2237 if (!in_at_file)
2238 fatal_error (input_location, "cannot close nonexistent response file");
2239
2240 in_at_file = false;
2241
2242 const unsigned int n_args = at_file_argbuf.length ();
2243 if (n_args == 0)
2244 return;
2245
2246 char **argv = XALLOCAVEC (char *, n_args + 1);
2247 char *temp_file = make_at_file ();
2248 char *at_argument = concat ("@", temp_file, NULL);
2249 FILE *f = fopen (temp_file, "w");
2250 int status;
2251 unsigned int i;
2252
2253 /* Copy the strings over. */
2254 for (i = 0; i < n_args; i++)
2255 argv[i] = CONST_CAST (char *, at_file_argbuf[i]);
2256 argv[i] = NULL;
2257
2258 at_file_argbuf.truncate (0);
2259
2260 if (f == NULL)
2261 fatal_error (input_location, "could not open temporary response file %s",
2262 temp_file);
2263
2264 status = writeargv (argv, f);
2265
2266 if (status)
2267 fatal_error (input_location,
2268 "could not write to temporary response file %s",
2269 temp_file);
2270
2271 status = fclose (f);
2272
2273 if (status == EOF)
2274 fatal_error (input_location, "could not close temporary response file %s",
2275 temp_file);
2276
2277 store_arg (at_argument, 0, 0);
2278
2279 record_temp_file (temp_file, !save_temps_flag, !save_temps_flag);
2280 }
2281 \f
2282 /* Load specs from a file name named FILENAME, replacing occurrences of
2283 various different types of line-endings, \r\n, \n\r and just \r, with
2284 a single \n. */
2285
2286 static char *
2287 load_specs (const char *filename)
2288 {
2289 int desc;
2290 int readlen;
2291 struct stat statbuf;
2292 char *buffer;
2293 char *buffer_p;
2294 char *specs;
2295 char *specs_p;
2296
2297 if (verbose_flag)
2298 fnotice (stderr, "Reading specs from %s\n", filename);
2299
2300 /* Open and stat the file. */
2301 desc = open (filename, O_RDONLY, 0);
2302 if (desc < 0)
2303 {
2304 failed:
2305 /* This leaves DESC open, but the OS will save us. */
2306 fatal_error (input_location, "cannot read spec file %qs: %m", filename);
2307 }
2308
2309 if (stat (filename, &statbuf) < 0)
2310 goto failed;
2311
2312 /* Read contents of file into BUFFER. */
2313 buffer = XNEWVEC (char, statbuf.st_size + 1);
2314 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2315 if (readlen < 0)
2316 goto failed;
2317 buffer[readlen] = 0;
2318 close (desc);
2319
2320 specs = XNEWVEC (char, readlen + 1);
2321 specs_p = specs;
2322 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2323 {
2324 int skip = 0;
2325 char c = *buffer_p;
2326 if (c == '\r')
2327 {
2328 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
2329 skip = 1;
2330 else if (*(buffer_p + 1) == '\n') /* \r\n */
2331 skip = 1;
2332 else /* \r */
2333 c = '\n';
2334 }
2335 if (! skip)
2336 *specs_p++ = c;
2337 }
2338 *specs_p = '\0';
2339
2340 free (buffer);
2341 return (specs);
2342 }
2343
2344 /* Read compilation specs from a file named FILENAME,
2345 replacing the default ones.
2346
2347 A suffix which starts with `*' is a definition for
2348 one of the machine-specific sub-specs. The "suffix" should be
2349 *asm, *cc1, *cpp, *link, *startfile, etc.
2350 The corresponding spec is stored in asm_spec, etc.,
2351 rather than in the `compilers' vector.
2352
2353 Anything invalid in the file is a fatal error. */
2354
2355 static void
2356 read_specs (const char *filename, bool main_p, bool user_p)
2357 {
2358 char *buffer;
2359 char *p;
2360
2361 buffer = load_specs (filename);
2362
2363 /* Scan BUFFER for specs, putting them in the vector. */
2364 p = buffer;
2365 while (1)
2366 {
2367 char *suffix;
2368 char *spec;
2369 char *in, *out, *p1, *p2, *p3;
2370
2371 /* Advance P in BUFFER to the next nonblank nocomment line. */
2372 p = skip_whitespace (p);
2373 if (*p == 0)
2374 break;
2375
2376 /* Is this a special command that starts with '%'? */
2377 /* Don't allow this for the main specs file, since it would
2378 encourage people to overwrite it. */
2379 if (*p == '%' && !main_p)
2380 {
2381 p1 = p;
2382 while (*p && *p != '\n')
2383 p++;
2384
2385 /* Skip '\n'. */
2386 p++;
2387
2388 if (startswith (p1, "%include")
2389 && (p1[sizeof "%include" - 1] == ' '
2390 || p1[sizeof "%include" - 1] == '\t'))
2391 {
2392 char *new_filename;
2393
2394 p1 += sizeof ("%include");
2395 while (*p1 == ' ' || *p1 == '\t')
2396 p1++;
2397
2398 if (*p1++ != '<' || p[-2] != '>')
2399 fatal_error (input_location,
2400 "specs %%include syntax malformed after "
2401 "%ld characters",
2402 (long) (p1 - buffer + 1));
2403
2404 p[-2] = '\0';
2405 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2406 read_specs (new_filename ? new_filename : p1, false, user_p);
2407 continue;
2408 }
2409 else if (startswith (p1, "%include_noerr")
2410 && (p1[sizeof "%include_noerr" - 1] == ' '
2411 || p1[sizeof "%include_noerr" - 1] == '\t'))
2412 {
2413 char *new_filename;
2414
2415 p1 += sizeof "%include_noerr";
2416 while (*p1 == ' ' || *p1 == '\t')
2417 p1++;
2418
2419 if (*p1++ != '<' || p[-2] != '>')
2420 fatal_error (input_location,
2421 "specs %%include syntax malformed after "
2422 "%ld characters",
2423 (long) (p1 - buffer + 1));
2424
2425 p[-2] = '\0';
2426 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2427 if (new_filename)
2428 read_specs (new_filename, false, user_p);
2429 else if (verbose_flag)
2430 fnotice (stderr, "could not find specs file %s\n", p1);
2431 continue;
2432 }
2433 else if (startswith (p1, "%rename")
2434 && (p1[sizeof "%rename" - 1] == ' '
2435 || p1[sizeof "%rename" - 1] == '\t'))
2436 {
2437 int name_len;
2438 struct spec_list *sl;
2439 struct spec_list *newsl;
2440
2441 /* Get original name. */
2442 p1 += sizeof "%rename";
2443 while (*p1 == ' ' || *p1 == '\t')
2444 p1++;
2445
2446 if (! ISALPHA ((unsigned char) *p1))
2447 fatal_error (input_location,
2448 "specs %%rename syntax malformed after "
2449 "%ld characters",
2450 (long) (p1 - buffer));
2451
2452 p2 = p1;
2453 while (*p2 && !ISSPACE ((unsigned char) *p2))
2454 p2++;
2455
2456 if (*p2 != ' ' && *p2 != '\t')
2457 fatal_error (input_location,
2458 "specs %%rename syntax malformed after "
2459 "%ld characters",
2460 (long) (p2 - buffer));
2461
2462 name_len = p2 - p1;
2463 *p2++ = '\0';
2464 while (*p2 == ' ' || *p2 == '\t')
2465 p2++;
2466
2467 if (! ISALPHA ((unsigned char) *p2))
2468 fatal_error (input_location,
2469 "specs %%rename syntax malformed after "
2470 "%ld characters",
2471 (long) (p2 - buffer));
2472
2473 /* Get new spec name. */
2474 p3 = p2;
2475 while (*p3 && !ISSPACE ((unsigned char) *p3))
2476 p3++;
2477
2478 if (p3 != p - 1)
2479 fatal_error (input_location,
2480 "specs %%rename syntax malformed after "
2481 "%ld characters",
2482 (long) (p3 - buffer));
2483 *p3 = '\0';
2484
2485 for (sl = specs; sl; sl = sl->next)
2486 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2487 break;
2488
2489 if (!sl)
2490 fatal_error (input_location,
2491 "specs %s spec was not found to be renamed", p1);
2492
2493 if (strcmp (p1, p2) == 0)
2494 continue;
2495
2496 for (newsl = specs; newsl; newsl = newsl->next)
2497 if (strcmp (newsl->name, p2) == 0)
2498 fatal_error (input_location,
2499 "%s: attempt to rename spec %qs to "
2500 "already defined spec %qs",
2501 filename, p1, p2);
2502
2503 if (verbose_flag)
2504 {
2505 fnotice (stderr, "rename spec %s to %s\n", p1, p2);
2506 #ifdef DEBUG_SPECS
2507 fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec));
2508 #endif
2509 }
2510
2511 set_spec (p2, *(sl->ptr_spec), user_p);
2512 if (sl->alloc_p)
2513 free (CONST_CAST (char *, *(sl->ptr_spec)));
2514
2515 *(sl->ptr_spec) = "";
2516 sl->alloc_p = 0;
2517 continue;
2518 }
2519 else
2520 fatal_error (input_location,
2521 "specs unknown %% command after %ld characters",
2522 (long) (p1 - buffer));
2523 }
2524
2525 /* Find the colon that should end the suffix. */
2526 p1 = p;
2527 while (*p1 && *p1 != ':' && *p1 != '\n')
2528 p1++;
2529
2530 /* The colon shouldn't be missing. */
2531 if (*p1 != ':')
2532 fatal_error (input_location,
2533 "specs file malformed after %ld characters",
2534 (long) (p1 - buffer));
2535
2536 /* Skip back over trailing whitespace. */
2537 p2 = p1;
2538 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2539 p2--;
2540
2541 /* Copy the suffix to a string. */
2542 suffix = save_string (p, p2 - p);
2543 /* Find the next line. */
2544 p = skip_whitespace (p1 + 1);
2545 if (p[1] == 0)
2546 fatal_error (input_location,
2547 "specs file malformed after %ld characters",
2548 (long) (p - buffer));
2549
2550 p1 = p;
2551 /* Find next blank line or end of string. */
2552 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2553 p1++;
2554
2555 /* Specs end at the blank line and do not include the newline. */
2556 spec = save_string (p, p1 - p);
2557 p = p1;
2558
2559 /* Delete backslash-newline sequences from the spec. */
2560 in = spec;
2561 out = spec;
2562 while (*in != 0)
2563 {
2564 if (in[0] == '\\' && in[1] == '\n')
2565 in += 2;
2566 else if (in[0] == '#')
2567 while (*in && *in != '\n')
2568 in++;
2569
2570 else
2571 *out++ = *in++;
2572 }
2573 *out = 0;
2574
2575 if (suffix[0] == '*')
2576 {
2577 if (! strcmp (suffix, "*link_command"))
2578 link_command_spec = spec;
2579 else
2580 {
2581 set_spec (suffix + 1, spec, user_p);
2582 free (spec);
2583 }
2584 }
2585 else
2586 {
2587 /* Add this pair to the vector. */
2588 compilers
2589 = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
2590
2591 compilers[n_compilers].suffix = suffix;
2592 compilers[n_compilers].spec = spec;
2593 n_compilers++;
2594 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2595 }
2596
2597 if (*suffix == 0)
2598 link_command_spec = spec;
2599 }
2600
2601 if (link_command_spec == 0)
2602 fatal_error (input_location, "spec file has no spec for linking");
2603
2604 XDELETEVEC (buffer);
2605 }
2606 \f
2607 /* Record the names of temporary files we tell compilers to write,
2608 and delete them at the end of the run. */
2609
2610 /* This is the common prefix we use to make temp file names.
2611 It is chosen once for each run of this program.
2612 It is substituted into a spec by %g or %j.
2613 Thus, all temp file names contain this prefix.
2614 In practice, all temp file names start with this prefix.
2615
2616 This prefix comes from the envvar TMPDIR if it is defined;
2617 otherwise, from the P_tmpdir macro if that is defined;
2618 otherwise, in /usr/tmp or /tmp;
2619 or finally the current directory if all else fails. */
2620
2621 static const char *temp_filename;
2622
2623 /* Length of the prefix. */
2624
2625 static int temp_filename_length;
2626
2627 /* Define the list of temporary files to delete. */
2628
2629 struct temp_file
2630 {
2631 const char *name;
2632 struct temp_file *next;
2633 };
2634
2635 /* Queue of files to delete on success or failure of compilation. */
2636 static struct temp_file *always_delete_queue;
2637 /* Queue of files to delete on failure of compilation. */
2638 static struct temp_file *failure_delete_queue;
2639
2640 /* Record FILENAME as a file to be deleted automatically.
2641 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2642 otherwise delete it in any case.
2643 FAIL_DELETE nonzero means delete it if a compilation step fails;
2644 otherwise delete it in any case. */
2645
2646 void
2647 record_temp_file (const char *filename, int always_delete, int fail_delete)
2648 {
2649 char *const name = xstrdup (filename);
2650
2651 if (always_delete)
2652 {
2653 struct temp_file *temp;
2654 for (temp = always_delete_queue; temp; temp = temp->next)
2655 if (! filename_cmp (name, temp->name))
2656 {
2657 free (name);
2658 goto already1;
2659 }
2660
2661 temp = XNEW (struct temp_file);
2662 temp->next = always_delete_queue;
2663 temp->name = name;
2664 always_delete_queue = temp;
2665
2666 already1:;
2667 }
2668
2669 if (fail_delete)
2670 {
2671 struct temp_file *temp;
2672 for (temp = failure_delete_queue; temp; temp = temp->next)
2673 if (! filename_cmp (name, temp->name))
2674 {
2675 free (name);
2676 goto already2;
2677 }
2678
2679 temp = XNEW (struct temp_file);
2680 temp->next = failure_delete_queue;
2681 temp->name = name;
2682 failure_delete_queue = temp;
2683
2684 already2:;
2685 }
2686 }
2687
2688 /* Delete all the temporary files whose names we previously recorded. */
2689
2690 #ifndef DELETE_IF_ORDINARY
2691 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2692 do \
2693 { \
2694 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2695 if (unlink (NAME) < 0) \
2696 if (VERBOSE_FLAG) \
2697 error ("%s: %m", (NAME)); \
2698 } while (0)
2699 #endif
2700
2701 static void
2702 delete_if_ordinary (const char *name)
2703 {
2704 struct stat st;
2705 #ifdef DEBUG
2706 int i, c;
2707
2708 printf ("Delete %s? (y or n) ", name);
2709 fflush (stdout);
2710 i = getchar ();
2711 if (i != '\n')
2712 while ((c = getchar ()) != '\n' && c != EOF)
2713 ;
2714
2715 if (i == 'y' || i == 'Y')
2716 #endif /* DEBUG */
2717 DELETE_IF_ORDINARY (name, st, verbose_flag);
2718 }
2719
2720 static void
2721 delete_temp_files (void)
2722 {
2723 struct temp_file *temp;
2724
2725 for (temp = always_delete_queue; temp; temp = temp->next)
2726 delete_if_ordinary (temp->name);
2727 always_delete_queue = 0;
2728 }
2729
2730 /* Delete all the files to be deleted on error. */
2731
2732 static void
2733 delete_failure_queue (void)
2734 {
2735 struct temp_file *temp;
2736
2737 for (temp = failure_delete_queue; temp; temp = temp->next)
2738 delete_if_ordinary (temp->name);
2739 }
2740
2741 static void
2742 clear_failure_queue (void)
2743 {
2744 failure_delete_queue = 0;
2745 }
2746 \f
2747 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2748 returns non-NULL.
2749 If DO_MULTI is true iterate over the paths twice, first with multilib
2750 suffix then without, otherwise iterate over the paths once without
2751 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2752 to avoid visiting the same path twice, but we could do better. For
2753 instance, /usr/lib/../lib is considered different from /usr/lib.
2754 At least EXTRA_SPACE chars past the end of the path passed to
2755 CALLBACK are available for use by the callback.
2756 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2757
2758 Returns the value returned by CALLBACK. */
2759
2760 static void *
2761 for_each_path (const struct path_prefix *paths,
2762 bool do_multi,
2763 size_t extra_space,
2764 void *(*callback) (char *, void *),
2765 void *callback_info)
2766 {
2767 struct prefix_list *pl;
2768 const char *multi_dir = NULL;
2769 const char *multi_os_dir = NULL;
2770 const char *multiarch_suffix = NULL;
2771 const char *multi_suffix;
2772 const char *just_multi_suffix;
2773 char *path = NULL;
2774 void *ret = NULL;
2775 bool skip_multi_dir = false;
2776 bool skip_multi_os_dir = false;
2777
2778 multi_suffix = machine_suffix;
2779 just_multi_suffix = just_machine_suffix;
2780 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2781 {
2782 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2783 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2784 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2785 }
2786 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2787 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2788 if (multiarch_dir)
2789 multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL);
2790
2791 while (1)
2792 {
2793 size_t multi_dir_len = 0;
2794 size_t multi_os_dir_len = 0;
2795 size_t multiarch_len = 0;
2796 size_t suffix_len;
2797 size_t just_suffix_len;
2798 size_t len;
2799
2800 if (multi_dir)
2801 multi_dir_len = strlen (multi_dir);
2802 if (multi_os_dir)
2803 multi_os_dir_len = strlen (multi_os_dir);
2804 if (multiarch_suffix)
2805 multiarch_len = strlen (multiarch_suffix);
2806 suffix_len = strlen (multi_suffix);
2807 just_suffix_len = strlen (just_multi_suffix);
2808
2809 if (path == NULL)
2810 {
2811 len = paths->max_len + extra_space + 1;
2812 len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
2813 path = XNEWVEC (char, len);
2814 }
2815
2816 for (pl = paths->plist; pl != 0; pl = pl->next)
2817 {
2818 len = strlen (pl->prefix);
2819 memcpy (path, pl->prefix, len);
2820
2821 /* Look first in MACHINE/VERSION subdirectory. */
2822 if (!skip_multi_dir)
2823 {
2824 memcpy (path + len, multi_suffix, suffix_len + 1);
2825 ret = callback (path, callback_info);
2826 if (ret)
2827 break;
2828 }
2829
2830 /* Some paths are tried with just the machine (ie. target)
2831 subdir. This is used for finding as, ld, etc. */
2832 if (!skip_multi_dir
2833 && pl->require_machine_suffix == 2)
2834 {
2835 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2836 ret = callback (path, callback_info);
2837 if (ret)
2838 break;
2839 }
2840
2841 /* Now try the multiarch path. */
2842 if (!skip_multi_dir
2843 && !pl->require_machine_suffix && multiarch_dir)
2844 {
2845 memcpy (path + len, multiarch_suffix, multiarch_len + 1);
2846 ret = callback (path, callback_info);
2847 if (ret)
2848 break;
2849 }
2850
2851 /* Now try the base path. */
2852 if (!pl->require_machine_suffix
2853 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2854 {
2855 const char *this_multi;
2856 size_t this_multi_len;
2857
2858 if (pl->os_multilib)
2859 {
2860 this_multi = multi_os_dir;
2861 this_multi_len = multi_os_dir_len;
2862 }
2863 else
2864 {
2865 this_multi = multi_dir;
2866 this_multi_len = multi_dir_len;
2867 }
2868
2869 if (this_multi_len)
2870 memcpy (path + len, this_multi, this_multi_len + 1);
2871 else
2872 path[len] = '\0';
2873
2874 ret = callback (path, callback_info);
2875 if (ret)
2876 break;
2877 }
2878 }
2879 if (pl)
2880 break;
2881
2882 if (multi_dir == NULL && multi_os_dir == NULL)
2883 break;
2884
2885 /* Run through the paths again, this time without multilibs.
2886 Don't repeat any we have already seen. */
2887 if (multi_dir)
2888 {
2889 free (CONST_CAST (char *, multi_dir));
2890 multi_dir = NULL;
2891 free (CONST_CAST (char *, multi_suffix));
2892 multi_suffix = machine_suffix;
2893 free (CONST_CAST (char *, just_multi_suffix));
2894 just_multi_suffix = just_machine_suffix;
2895 }
2896 else
2897 skip_multi_dir = true;
2898 if (multi_os_dir)
2899 {
2900 free (CONST_CAST (char *, multi_os_dir));
2901 multi_os_dir = NULL;
2902 }
2903 else
2904 skip_multi_os_dir = true;
2905 }
2906
2907 if (multi_dir)
2908 {
2909 free (CONST_CAST (char *, multi_dir));
2910 free (CONST_CAST (char *, multi_suffix));
2911 free (CONST_CAST (char *, just_multi_suffix));
2912 }
2913 if (multi_os_dir)
2914 free (CONST_CAST (char *, multi_os_dir));
2915 if (ret != path)
2916 free (path);
2917 return ret;
2918 }
2919
2920 /* Callback for build_search_list. Adds path to obstack being built. */
2921
2922 struct add_to_obstack_info {
2923 struct obstack *ob;
2924 bool check_dir;
2925 bool first_time;
2926 };
2927
2928 static void *
2929 add_to_obstack (char *path, void *data)
2930 {
2931 struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2932
2933 if (info->check_dir && !is_directory (path, false))
2934 return NULL;
2935
2936 if (!info->first_time)
2937 obstack_1grow (info->ob, PATH_SEPARATOR);
2938
2939 obstack_grow (info->ob, path, strlen (path));
2940
2941 info->first_time = false;
2942 return NULL;
2943 }
2944
2945 /* Add or change the value of an environment variable, outputting the
2946 change to standard error if in verbose mode. */
2947 static void
2948 xputenv (const char *string)
2949 {
2950 env.xput (string);
2951 }
2952
2953 /* Build a list of search directories from PATHS.
2954 PREFIX is a string to prepend to the list.
2955 If CHECK_DIR_P is true we ensure the directory exists.
2956 If DO_MULTI is true, multilib paths are output first, then
2957 non-multilib paths.
2958 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2959 It is also used by the --print-search-dirs flag. */
2960
2961 static char *
2962 build_search_list (const struct path_prefix *paths, const char *prefix,
2963 bool check_dir, bool do_multi)
2964 {
2965 struct add_to_obstack_info info;
2966
2967 info.ob = &collect_obstack;
2968 info.check_dir = check_dir;
2969 info.first_time = true;
2970
2971 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2972 obstack_1grow (&collect_obstack, '=');
2973
2974 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2975
2976 obstack_1grow (&collect_obstack, '\0');
2977 return XOBFINISH (&collect_obstack, char *);
2978 }
2979
2980 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2981 for collect. */
2982
2983 static void
2984 putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2985 bool do_multi)
2986 {
2987 xputenv (build_search_list (paths, env_var, true, do_multi));
2988 }
2989 \f
2990 /* Check whether NAME can be accessed in MODE. This is like access,
2991 except that it never considers directories to be executable. */
2992
2993 static int
2994 access_check (const char *name, int mode)
2995 {
2996 if (mode == X_OK)
2997 {
2998 struct stat st;
2999
3000 if (stat (name, &st) < 0
3001 || S_ISDIR (st.st_mode))
3002 return -1;
3003 }
3004
3005 return access (name, mode);
3006 }
3007
3008 /* Callback for find_a_file. Appends the file name to the directory
3009 path. If the resulting file exists in the right mode, return the
3010 full pathname to the file. */
3011
3012 struct file_at_path_info {
3013 const char *name;
3014 const char *suffix;
3015 int name_len;
3016 int suffix_len;
3017 int mode;
3018 };
3019
3020 static void *
3021 file_at_path (char *path, void *data)
3022 {
3023 struct file_at_path_info *info = (struct file_at_path_info *) data;
3024 size_t len = strlen (path);
3025
3026 memcpy (path + len, info->name, info->name_len);
3027 len += info->name_len;
3028
3029 /* Some systems have a suffix for executable files.
3030 So try appending that first. */
3031 if (info->suffix_len)
3032 {
3033 memcpy (path + len, info->suffix, info->suffix_len + 1);
3034 if (access_check (path, info->mode) == 0)
3035 return path;
3036 }
3037
3038 path[len] = '\0';
3039 if (access_check (path, info->mode) == 0)
3040 return path;
3041
3042 return NULL;
3043 }
3044
3045 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
3046 access to check permissions. If DO_MULTI is true, search multilib
3047 paths then non-multilib paths, otherwise do not search multilib paths.
3048 Return 0 if not found, otherwise return its name, allocated with malloc. */
3049
3050 static char *
3051 find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
3052 bool do_multi)
3053 {
3054 struct file_at_path_info info;
3055
3056 /* Find the filename in question (special case for absolute paths). */
3057
3058 if (IS_ABSOLUTE_PATH (name))
3059 {
3060 if (access (name, mode) == 0)
3061 return xstrdup (name);
3062
3063 return NULL;
3064 }
3065
3066 info.name = name;
3067 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
3068 info.name_len = strlen (info.name);
3069 info.suffix_len = strlen (info.suffix);
3070 info.mode = mode;
3071
3072 return (char*) for_each_path (pprefix, do_multi,
3073 info.name_len + info.suffix_len,
3074 file_at_path, &info);
3075 }
3076
3077 /* Specialization of find_a_file for programs that also takes into account
3078 configure-specified default programs. */
3079
3080 static char*
3081 find_a_program (const char *name)
3082 {
3083 /* Do not search if default matches query. */
3084
3085 #ifdef DEFAULT_ASSEMBLER
3086 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, X_OK) == 0)
3087 return xstrdup (DEFAULT_ASSEMBLER);
3088 #endif
3089
3090 #ifdef DEFAULT_LINKER
3091 if (! strcmp (name, "ld") && access (DEFAULT_LINKER, X_OK) == 0)
3092 return xstrdup (DEFAULT_LINKER);
3093 #endif
3094
3095 #ifdef DEFAULT_DSYMUTIL
3096 if (! strcmp (name, "dsymutil") && access (DEFAULT_DSYMUTIL, X_OK) == 0)
3097 return xstrdup (DEFAULT_DSYMUTIL);
3098 #endif
3099
3100 return find_a_file (&exec_prefixes, name, X_OK, false);
3101 }
3102
3103 /* Ranking of prefixes in the sort list. -B prefixes are put before
3104 all others. */
3105
3106 enum path_prefix_priority
3107 {
3108 PREFIX_PRIORITY_B_OPT,
3109 PREFIX_PRIORITY_LAST
3110 };
3111
3112 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
3113 order according to PRIORITY. Within each PRIORITY, new entries are
3114 appended.
3115
3116 If WARN is nonzero, we will warn if no file is found
3117 through this prefix. WARN should point to an int
3118 which will be set to 1 if this entry is used.
3119
3120 COMPONENT is the value to be passed to update_path.
3121
3122 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
3123 the complete value of machine_suffix.
3124 2 means try both machine_suffix and just_machine_suffix. */
3125
3126 static void
3127 add_prefix (struct path_prefix *pprefix, const char *prefix,
3128 const char *component, /* enum prefix_priority */ int priority,
3129 int require_machine_suffix, int os_multilib)
3130 {
3131 struct prefix_list *pl, **prev;
3132 int len;
3133
3134 for (prev = &pprefix->plist;
3135 (*prev) != NULL && (*prev)->priority <= priority;
3136 prev = &(*prev)->next)
3137 ;
3138
3139 /* Keep track of the longest prefix. */
3140
3141 prefix = update_path (prefix, component);
3142 len = strlen (prefix);
3143 if (len > pprefix->max_len)
3144 pprefix->max_len = len;
3145
3146 pl = XNEW (struct prefix_list);
3147 pl->prefix = prefix;
3148 pl->require_machine_suffix = require_machine_suffix;
3149 pl->priority = priority;
3150 pl->os_multilib = os_multilib;
3151
3152 /* Insert after PREV. */
3153 pl->next = (*prev);
3154 (*prev) = pl;
3155 }
3156
3157 /* Same as add_prefix, but prepending target_system_root to prefix. */
3158 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
3159 static void
3160 add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
3161 const char *component,
3162 /* enum prefix_priority */ int priority,
3163 int require_machine_suffix, int os_multilib)
3164 {
3165 if (!IS_ABSOLUTE_PATH (prefix))
3166 fatal_error (input_location, "system path %qs is not absolute", prefix);
3167
3168 if (target_system_root)
3169 {
3170 char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3171 size_t sysroot_len = strlen (target_system_root);
3172
3173 if (sysroot_len > 0
3174 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3175 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3176
3177 if (target_sysroot_suffix)
3178 prefix = concat (sysroot_no_trailing_dir_separator,
3179 target_sysroot_suffix, prefix, NULL);
3180 else
3181 prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3182
3183 free (sysroot_no_trailing_dir_separator);
3184
3185 /* We have to override this because GCC's notion of sysroot
3186 moves along with GCC. */
3187 component = "GCC";
3188 }
3189
3190 add_prefix (pprefix, prefix, component, priority,
3191 require_machine_suffix, os_multilib);
3192 }
3193
3194 /* Same as add_prefix, but prepending target_sysroot_hdrs_suffix to prefix. */
3195
3196 static void
3197 add_sysrooted_hdrs_prefix (struct path_prefix *pprefix, const char *prefix,
3198 const char *component,
3199 /* enum prefix_priority */ int priority,
3200 int require_machine_suffix, int os_multilib)
3201 {
3202 if (!IS_ABSOLUTE_PATH (prefix))
3203 fatal_error (input_location, "system path %qs is not absolute", prefix);
3204
3205 if (target_system_root)
3206 {
3207 char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3208 size_t sysroot_len = strlen (target_system_root);
3209
3210 if (sysroot_len > 0
3211 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3212 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3213
3214 if (target_sysroot_hdrs_suffix)
3215 prefix = concat (sysroot_no_trailing_dir_separator,
3216 target_sysroot_hdrs_suffix, prefix, NULL);
3217 else
3218 prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3219
3220 free (sysroot_no_trailing_dir_separator);
3221
3222 /* We have to override this because GCC's notion of sysroot
3223 moves along with GCC. */
3224 component = "GCC";
3225 }
3226
3227 add_prefix (pprefix, prefix, component, priority,
3228 require_machine_suffix, os_multilib);
3229 }
3230
3231 \f
3232 /* Execute the command specified by the arguments on the current line of spec.
3233 When using pipes, this includes several piped-together commands
3234 with `|' between them.
3235
3236 Return 0 if successful, -1 if failed. */
3237
3238 static int
3239 execute (void)
3240 {
3241 int i;
3242 int n_commands; /* # of command. */
3243 char *string;
3244 struct pex_obj *pex;
3245 struct command
3246 {
3247 const char *prog; /* program name. */
3248 const char **argv; /* vector of args. */
3249 };
3250 const char *arg;
3251
3252 struct command *commands; /* each command buffer with above info. */
3253
3254 gcc_assert (!processing_spec_function);
3255
3256 if (wrapper_string)
3257 {
3258 string = find_a_program (argbuf[0]);
3259 if (string)
3260 argbuf[0] = string;
3261 insert_wrapper (wrapper_string);
3262 }
3263
3264 /* Count # of piped commands. */
3265 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3266 if (strcmp (arg, "|") == 0)
3267 n_commands++;
3268
3269 /* Get storage for each command. */
3270 commands = XALLOCAVEC (struct command, n_commands);
3271
3272 /* Split argbuf into its separate piped processes,
3273 and record info about each one.
3274 Also search for the programs that are to be run. */
3275
3276 argbuf.safe_push (0);
3277
3278 commands[0].prog = argbuf[0]; /* first command. */
3279 commands[0].argv = argbuf.address ();
3280
3281 if (!wrapper_string)
3282 {
3283 string = find_a_program(commands[0].prog);
3284 if (string)
3285 commands[0].argv[0] = string;
3286 }
3287
3288 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3289 if (arg && strcmp (arg, "|") == 0)
3290 { /* each command. */
3291 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
3292 fatal_error (input_location, "%<-pipe%> not supported");
3293 #endif
3294 argbuf[i] = 0; /* Termination of command args. */
3295 commands[n_commands].prog = argbuf[i + 1];
3296 commands[n_commands].argv
3297 = &(argbuf.address ())[i + 1];
3298 string = find_a_program(commands[n_commands].prog);
3299 if (string)
3300 commands[n_commands].argv[0] = string;
3301 n_commands++;
3302 }
3303
3304 /* If -v, print what we are about to do, and maybe query. */
3305
3306 if (verbose_flag)
3307 {
3308 /* For help listings, put a blank line between sub-processes. */
3309 if (print_help_list)
3310 fputc ('\n', stderr);
3311
3312 /* Print each piped command as a separate line. */
3313 for (i = 0; i < n_commands; i++)
3314 {
3315 const char *const *j;
3316
3317 if (verbose_only_flag)
3318 {
3319 for (j = commands[i].argv; *j; j++)
3320 {
3321 const char *p;
3322 for (p = *j; *p; ++p)
3323 if (!ISALNUM ((unsigned char) *p)
3324 && *p != '_' && *p != '/' && *p != '-' && *p != '.')
3325 break;
3326 if (*p || !*j)
3327 {
3328 fprintf (stderr, " \"");
3329 for (p = *j; *p; ++p)
3330 {
3331 if (*p == '"' || *p == '\\' || *p == '$')
3332 fputc ('\\', stderr);
3333 fputc (*p, stderr);
3334 }
3335 fputc ('"', stderr);
3336 }
3337 /* If it's empty, print "". */
3338 else if (!**j)
3339 fprintf (stderr, " \"\"");
3340 else
3341 fprintf (stderr, " %s", *j);
3342 }
3343 }
3344 else
3345 for (j = commands[i].argv; *j; j++)
3346 /* If it's empty, print "". */
3347 if (!**j)
3348 fprintf (stderr, " \"\"");
3349 else
3350 fprintf (stderr, " %s", *j);
3351
3352 /* Print a pipe symbol after all but the last command. */
3353 if (i + 1 != n_commands)
3354 fprintf (stderr, " |");
3355 fprintf (stderr, "\n");
3356 }
3357 fflush (stderr);
3358 if (verbose_only_flag != 0)
3359 {
3360 /* verbose_only_flag should act as if the spec was
3361 executed, so increment execution_count before
3362 returning. This prevents spurious warnings about
3363 unused linker input files, etc. */
3364 execution_count++;
3365 return 0;
3366 }
3367 #ifdef DEBUG
3368 fnotice (stderr, "\nGo ahead? (y or n) ");
3369 fflush (stderr);
3370 i = getchar ();
3371 if (i != '\n')
3372 while (getchar () != '\n')
3373 ;
3374
3375 if (i != 'y' && i != 'Y')
3376 return 0;
3377 #endif /* DEBUG */
3378 }
3379
3380 #ifdef ENABLE_VALGRIND_CHECKING
3381 /* Run the each command through valgrind. To simplify prepending the
3382 path to valgrind and the option "-q" (for quiet operation unless
3383 something triggers), we allocate a separate argv array. */
3384
3385 for (i = 0; i < n_commands; i++)
3386 {
3387 const char **argv;
3388 int argc;
3389 int j;
3390
3391 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
3392 ;
3393
3394 argv = XALLOCAVEC (const char *, argc + 3);
3395
3396 argv[0] = VALGRIND_PATH;
3397 argv[1] = "-q";
3398 for (j = 2; j < argc + 2; j++)
3399 argv[j] = commands[i].argv[j - 2];
3400 argv[j] = NULL;
3401
3402 commands[i].argv = argv;
3403 commands[i].prog = argv[0];
3404 }
3405 #endif
3406
3407 /* Run each piped subprocess. */
3408
3409 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3410 ? PEX_RECORD_TIMES : 0),
3411 progname, temp_filename);
3412 if (pex == NULL)
3413 fatal_error (input_location, "%<pex_init%> failed: %m");
3414
3415 for (i = 0; i < n_commands; i++)
3416 {
3417 const char *errmsg;
3418 int err;
3419 const char *string = commands[i].argv[0];
3420
3421 errmsg = pex_run (pex,
3422 ((i + 1 == n_commands ? PEX_LAST : 0)
3423 | (string == commands[i].prog ? PEX_SEARCH : 0)),
3424 string, CONST_CAST (char **, commands[i].argv),
3425 NULL, NULL, &err);
3426 if (errmsg != NULL)
3427 {
3428 errno = err;
3429 fatal_error (input_location,
3430 err ? G_("cannot execute %qs: %s: %m")
3431 : G_("cannot execute %qs: %s"),
3432 string, errmsg);
3433 }
3434
3435 if (i && string != commands[i].prog)
3436 free (CONST_CAST (char *, string));
3437 }
3438
3439 execution_count++;
3440
3441 /* Wait for all the subprocesses to finish. */
3442
3443 {
3444 int *statuses;
3445 struct pex_time *times = NULL;
3446 int ret_code = 0;
3447
3448 statuses = XALLOCAVEC (int, n_commands);
3449 if (!pex_get_status (pex, n_commands, statuses))
3450 fatal_error (input_location, "failed to get exit status: %m");
3451
3452 if (report_times || report_times_to_file)
3453 {
3454 times = XALLOCAVEC (struct pex_time, n_commands);
3455 if (!pex_get_times (pex, n_commands, times))
3456 fatal_error (input_location, "failed to get process times: %m");
3457 }
3458
3459 pex_free (pex);
3460
3461 for (i = 0; i < n_commands; ++i)
3462 {
3463 int status = statuses[i];
3464
3465 if (WIFSIGNALED (status))
3466 switch (WTERMSIG (status))
3467 {
3468 case SIGINT:
3469 case SIGTERM:
3470 /* SIGQUIT and SIGKILL are not available on MinGW. */
3471 #ifdef SIGQUIT
3472 case SIGQUIT:
3473 #endif
3474 #ifdef SIGKILL
3475 case SIGKILL:
3476 #endif
3477 /* The user (or environment) did something to the
3478 inferior. Making this an ICE confuses the user into
3479 thinking there's a compiler bug. Much more likely is
3480 the user or OOM killer nuked it. */
3481 fatal_error (input_location,
3482 "%s signal terminated program %s",
3483 strsignal (WTERMSIG (status)),
3484 commands[i].prog);
3485 break;
3486
3487 #ifdef SIGPIPE
3488 case SIGPIPE:
3489 /* SIGPIPE is a special case. It happens in -pipe mode
3490 when the compiler dies before the preprocessor is
3491 done, or the assembler dies before the compiler is
3492 done. There's generally been an error already, and
3493 this is just fallout. So don't generate another
3494 error unless we would otherwise have succeeded. */
3495 if (signal_count || greatest_status >= MIN_FATAL_STATUS)
3496 {
3497 signal_count++;
3498 ret_code = -1;
3499 break;
3500 }
3501 #endif
3502 /* FALLTHROUGH */
3503
3504 default:
3505 /* The inferior failed to catch the signal. */
3506 internal_error_no_backtrace ("%s signal terminated program %s",
3507 strsignal (WTERMSIG (status)),
3508 commands[i].prog);
3509 }
3510 else if (WIFEXITED (status)
3511 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3512 {
3513 /* For ICEs in cc1, cc1obj, cc1plus see if it is
3514 reproducible or not. */
3515 const char *p;
3516 if (flag_report_bug
3517 && WEXITSTATUS (status) == ICE_EXIT_CODE
3518 && i == 0
3519 && (p = strrchr (commands[0].argv[0], DIR_SEPARATOR))
3520 && startswith (p + 1, "cc1"))
3521 try_generate_repro (commands[0].argv);
3522 if (WEXITSTATUS (status) > greatest_status)
3523 greatest_status = WEXITSTATUS (status);
3524 ret_code = -1;
3525 }
3526
3527 if (report_times || report_times_to_file)
3528 {
3529 struct pex_time *pt = &times[i];
3530 double ut, st;
3531
3532 ut = ((double) pt->user_seconds
3533 + (double) pt->user_microseconds / 1.0e6);
3534 st = ((double) pt->system_seconds
3535 + (double) pt->system_microseconds / 1.0e6);
3536
3537 if (ut + st != 0)
3538 {
3539 if (report_times)
3540 fnotice (stderr, "# %s %.2f %.2f\n",
3541 commands[i].prog, ut, st);
3542
3543 if (report_times_to_file)
3544 {
3545 int c = 0;
3546 const char *const *j;
3547
3548 fprintf (report_times_to_file, "%g %g", ut, st);
3549
3550 for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
3551 {
3552 const char *p;
3553 for (p = *j; *p; ++p)
3554 if (*p == '"' || *p == '\\' || *p == '$'
3555 || ISSPACE (*p))
3556 break;
3557
3558 if (*p)
3559 {
3560 fprintf (report_times_to_file, " \"");
3561 for (p = *j; *p; ++p)
3562 {
3563 if (*p == '"' || *p == '\\' || *p == '$')
3564 fputc ('\\', report_times_to_file);
3565 fputc (*p, report_times_to_file);
3566 }
3567 fputc ('"', report_times_to_file);
3568 }
3569 else
3570 fprintf (report_times_to_file, " %s", *j);
3571 }
3572
3573 fputc ('\n', report_times_to_file);
3574 }
3575 }
3576 }
3577 }
3578
3579 if (commands[0].argv[0] != commands[0].prog)
3580 free (CONST_CAST (char *, commands[0].argv[0]));
3581
3582 return ret_code;
3583 }
3584 }
3585 \f
3586 /* Find all the switches given to us
3587 and make a vector describing them.
3588 The elements of the vector are strings, one per switch given.
3589 If a switch uses following arguments, then the `part1' field
3590 is the switch itself and the `args' field
3591 is a null-terminated vector containing the following arguments.
3592 Bits in the `live_cond' field are:
3593 SWITCH_LIVE to indicate this switch is true in a conditional spec.
3594 SWITCH_FALSE to indicate this switch is overridden by a later switch.
3595 SWITCH_IGNORE to indicate this switch should be ignored (used in %<S).
3596 SWITCH_IGNORE_PERMANENTLY to indicate this switch should be ignored.
3597 SWITCH_KEEP_FOR_GCC to indicate that this switch, otherwise ignored,
3598 should be included in COLLECT_GCC_OPTIONS.
3599 in all do_spec calls afterwards. Used for %<S from self specs.
3600 The `known' field describes whether this is an internal switch.
3601 The `validated' field describes whether any spec has looked at this switch;
3602 if it remains false at the end of the run, the switch must be meaningless.
3603 The `ordering' field is used to temporarily mark switches that have to be
3604 kept in a specific order. */
3605
3606 #define SWITCH_LIVE (1 << 0)
3607 #define SWITCH_FALSE (1 << 1)
3608 #define SWITCH_IGNORE (1 << 2)
3609 #define SWITCH_IGNORE_PERMANENTLY (1 << 3)
3610 #define SWITCH_KEEP_FOR_GCC (1 << 4)
3611
3612 struct switchstr
3613 {
3614 const char *part1;
3615 const char **args;
3616 unsigned int live_cond;
3617 bool known;
3618 bool validated;
3619 bool ordering;
3620 };
3621
3622 static struct switchstr *switches;
3623
3624 static int n_switches;
3625
3626 static int n_switches_alloc;
3627
3628 /* Set to zero if -fcompare-debug is disabled, positive if it's
3629 enabled and we're running the first compilation, negative if it's
3630 enabled and we're running the second compilation. For most of the
3631 time, it's in the range -1..1, but it can be temporarily set to 2
3632 or 3 to indicate that the -fcompare-debug flags didn't come from
3633 the command-line, but rather from the GCC_COMPARE_DEBUG environment
3634 variable, until a synthesized -fcompare-debug flag is added to the
3635 command line. */
3636 int compare_debug;
3637
3638 /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3639 int compare_debug_second;
3640
3641 /* Set to the flags that should be passed to the second compilation in
3642 a -fcompare-debug compilation. */
3643 const char *compare_debug_opt;
3644
3645 static struct switchstr *switches_debug_check[2];
3646
3647 static int n_switches_debug_check[2];
3648
3649 static int n_switches_alloc_debug_check[2];
3650
3651 static char *debug_check_temp_file[2];
3652
3653 /* Language is one of three things:
3654
3655 1) The name of a real programming language.
3656 2) NULL, indicating that no one has figured out
3657 what it is yet.
3658 3) '*', indicating that the file should be passed
3659 to the linker. */
3660 struct infile
3661 {
3662 const char *name;
3663 const char *language;
3664 struct compiler *incompiler;
3665 bool compiled;
3666 bool preprocessed;
3667 };
3668
3669 /* Also a vector of input files specified. */
3670
3671 static struct infile *infiles;
3672
3673 int n_infiles;
3674
3675 static int n_infiles_alloc;
3676
3677 /* True if undefined environment variables encountered during spec processing
3678 are ok to ignore, typically when we're running for --help or --version. */
3679
3680 static bool spec_undefvar_allowed;
3681
3682 /* True if multiple input files are being compiled to a single
3683 assembly file. */
3684
3685 static bool combine_inputs;
3686
3687 /* This counts the number of libraries added by lang_specific_driver, so that
3688 we can tell if there were any user supplied any files or libraries. */
3689
3690 static int added_libraries;
3691
3692 /* And a vector of corresponding output files is made up later. */
3693
3694 const char **outfiles;
3695 \f
3696 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3697
3698 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3699 is true if we should look for an executable suffix. DO_OBJ
3700 is true if we should look for an object suffix. */
3701
3702 static const char *
3703 convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3704 int do_obj ATTRIBUTE_UNUSED)
3705 {
3706 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3707 int i;
3708 #endif
3709 int len;
3710
3711 if (name == NULL)
3712 return NULL;
3713
3714 len = strlen (name);
3715
3716 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3717 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3718 if (do_obj && len > 2
3719 && name[len - 2] == '.'
3720 && name[len - 1] == 'o')
3721 {
3722 obstack_grow (&obstack, name, len - 2);
3723 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
3724 name = XOBFINISH (&obstack, const char *);
3725 }
3726 #endif
3727
3728 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3729 /* If there is no filetype, make it the executable suffix (which includes
3730 the "."). But don't get confused if we have just "-o". */
3731 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || not_actual_file_p (name))
3732 return name;
3733
3734 for (i = len - 1; i >= 0; i--)
3735 if (IS_DIR_SEPARATOR (name[i]))
3736 break;
3737
3738 for (i++; i < len; i++)
3739 if (name[i] == '.')
3740 return name;
3741
3742 obstack_grow (&obstack, name, len);
3743 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3744 strlen (TARGET_EXECUTABLE_SUFFIX));
3745 name = XOBFINISH (&obstack, const char *);
3746 #endif
3747
3748 return name;
3749 }
3750 #endif
3751 \f
3752 /* Display the command line switches accepted by gcc. */
3753 static void
3754 display_help (void)
3755 {
3756 printf (_("Usage: %s [options] file...\n"), progname);
3757 fputs (_("Options:\n"), stdout);
3758
3759 fputs (_(" -pass-exit-codes Exit with highest error code from a phase.\n"), stdout);
3760 fputs (_(" --help Display this information.\n"), stdout);
3761 fputs (_(" --target-help Display target specific command line options "
3762 "(including assembler and linker options).\n"), stdout);
3763 fputs (_(" --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...].\n"), stdout);
3764 fputs (_(" Display specific types of command line options.\n"), stdout);
3765 if (! verbose_flag)
3766 fputs (_(" (Use '-v --help' to display command line options of sub-processes).\n"), stdout);
3767 fputs (_(" --version Display compiler version information.\n"), stdout);
3768 fputs (_(" -dumpspecs Display all of the built in spec strings.\n"), stdout);
3769 fputs (_(" -dumpversion Display the version of the compiler.\n"), stdout);
3770 fputs (_(" -dumpmachine Display the compiler's target processor.\n"), stdout);
3771 fputs (_(" -foffload=<targets> Specify offloading targets.\n"), stdout);
3772 fputs (_(" -print-search-dirs Display the directories in the compiler's search path.\n"), stdout);
3773 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library.\n"), stdout);
3774 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>.\n"), stdout);
3775 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>.\n"), stdout);
3776 fputs (_("\
3777 -print-multiarch Display the target's normalized GNU triplet, used as\n\
3778 a component in the library path.\n"), stdout);
3779 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc.\n"), stdout);
3780 fputs (_("\
3781 -print-multi-lib Display the mapping between command line options and\n\
3782 multiple library search directories.\n"), stdout);
3783 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries.\n"), stdout);
3784 fputs (_(" -print-sysroot Display the target libraries directory.\n"), stdout);
3785 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers.\n"), stdout);
3786 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler.\n"), stdout);
3787 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor.\n"), stdout);
3788 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker.\n"), stdout);
3789 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler.\n"), stdout);
3790 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor.\n"), stdout);
3791 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker.\n"), stdout);
3792 fputs (_(" -save-temps Do not delete intermediate files.\n"), stdout);
3793 fputs (_(" -save-temps=<arg> Do not delete intermediate files.\n"), stdout);
3794 fputs (_("\
3795 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3796 prefixes to other gcc components.\n"), stdout);
3797 fputs (_(" -pipe Use pipes rather than intermediate files.\n"), stdout);
3798 fputs (_(" -time Time the execution of each subprocess.\n"), stdout);
3799 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>.\n"), stdout);
3800 fputs (_(" -std=<standard> Assume that the input sources are for <standard>.\n"), stdout);
3801 fputs (_("\
3802 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3803 and libraries.\n"), stdout);
3804 fputs (_(" -B <directory> Add <directory> to the compiler's search paths.\n"), stdout);
3805 fputs (_(" -v Display the programs invoked by the compiler.\n"), stdout);
3806 fputs (_(" -### Like -v but options quoted and commands not executed.\n"), stdout);
3807 fputs (_(" -E Preprocess only; do not compile, assemble or link.\n"), stdout);
3808 fputs (_(" -S Compile only; do not assemble or link.\n"), stdout);
3809 fputs (_(" -c Compile and assemble, but do not link.\n"), stdout);
3810 fputs (_(" -o <file> Place the output into <file>.\n"), stdout);
3811 fputs (_(" -pie Create a dynamically linked position independent\n\
3812 executable.\n"), stdout);
3813 fputs (_(" -shared Create a shared library.\n"), stdout);
3814 fputs (_("\
3815 -x <language> Specify the language of the following input files.\n\
3816 Permissible languages include: c c++ assembler none\n\
3817 'none' means revert to the default behavior of\n\
3818 guessing the language based on the file's extension.\n\
3819 "), stdout);
3820
3821 printf (_("\
3822 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3823 passed on to the various sub-processes invoked by %s. In order to pass\n\
3824 other options on to these processes the -W<letter> options must be used.\n\
3825 "), progname);
3826
3827 /* The rest of the options are displayed by invocations of the various
3828 sub-processes. */
3829 }
3830
3831 static void
3832 add_preprocessor_option (const char *option, int len)
3833 {
3834 preprocessor_options.safe_push (save_string (option, len));
3835 }
3836
3837 static void
3838 add_assembler_option (const char *option, int len)
3839 {
3840 assembler_options.safe_push (save_string (option, len));
3841 }
3842
3843 static void
3844 add_linker_option (const char *option, int len)
3845 {
3846 linker_options.safe_push (save_string (option, len));
3847 }
3848 \f
3849 /* Allocate space for an input file in infiles. */
3850
3851 static void
3852 alloc_infile (void)
3853 {
3854 if (n_infiles_alloc == 0)
3855 {
3856 n_infiles_alloc = 16;
3857 infiles = XNEWVEC (struct infile, n_infiles_alloc);
3858 }
3859 else if (n_infiles_alloc == n_infiles)
3860 {
3861 n_infiles_alloc *= 2;
3862 infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc);
3863 }
3864 }
3865
3866 /* Store an input file with the given NAME and LANGUAGE in
3867 infiles. */
3868
3869 static void
3870 add_infile (const char *name, const char *language)
3871 {
3872 alloc_infile ();
3873 infiles[n_infiles].name = name;
3874 infiles[n_infiles++].language = language;
3875 }
3876
3877 /* Allocate space for a switch in switches. */
3878
3879 static void
3880 alloc_switch (void)
3881 {
3882 if (n_switches_alloc == 0)
3883 {
3884 n_switches_alloc = 16;
3885 switches = XNEWVEC (struct switchstr, n_switches_alloc);
3886 }
3887 else if (n_switches_alloc == n_switches)
3888 {
3889 n_switches_alloc *= 2;
3890 switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc);
3891 }
3892 }
3893
3894 /* Save an option OPT with N_ARGS arguments in array ARGS, marking it
3895 as validated if VALIDATED and KNOWN if it is an internal switch. */
3896
3897 static void
3898 save_switch (const char *opt, size_t n_args, const char *const *args,
3899 bool validated, bool known)
3900 {
3901 alloc_switch ();
3902 switches[n_switches].part1 = opt + 1;
3903 if (n_args == 0)
3904 switches[n_switches].args = 0;
3905 else
3906 {
3907 switches[n_switches].args = XNEWVEC (const char *, n_args + 1);
3908 memcpy (switches[n_switches].args, args, n_args * sizeof (const char *));
3909 switches[n_switches].args[n_args] = NULL;
3910 }
3911
3912 switches[n_switches].live_cond = 0;
3913 switches[n_switches].validated = validated;
3914 switches[n_switches].known = known;
3915 switches[n_switches].ordering = 0;
3916 n_switches++;
3917 }
3918
3919 /* Set the SOURCE_DATE_EPOCH environment variable to the current time if it is
3920 not set already. */
3921
3922 static void
3923 set_source_date_epoch_envvar ()
3924 {
3925 /* Array size is 21 = ceil(log_10(2^64)) + 1 to hold string representations
3926 of 64 bit integers. */
3927 char source_date_epoch[21];
3928 time_t tt;
3929
3930 errno = 0;
3931 tt = time (NULL);
3932 if (tt < (time_t) 0 || errno != 0)
3933 tt = (time_t) 0;
3934
3935 snprintf (source_date_epoch, 21, "%llu", (unsigned long long) tt);
3936 /* Using setenv instead of xputenv because we want the variable to remain
3937 after finalizing so that it's still set in the second run when using
3938 -fcompare-debug. */
3939 setenv ("SOURCE_DATE_EPOCH", source_date_epoch, 0);
3940 }
3941
3942 /* Handle an option DECODED that is unknown to the option-processing
3943 machinery. */
3944
3945 static bool
3946 driver_unknown_option_callback (const struct cl_decoded_option *decoded)
3947 {
3948 const char *opt = decoded->arg;
3949 if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-'
3950 && !(decoded->errors & CL_ERR_NEGATIVE))
3951 {
3952 /* Leave unknown -Wno-* options for the compiler proper, to be
3953 diagnosed only if there are warnings. */
3954 save_switch (decoded->canonical_option[0],
3955 decoded->canonical_option_num_elements - 1,
3956 &decoded->canonical_option[1], false, true);
3957 return false;
3958 }
3959 if (decoded->opt_index == OPT_SPECIAL_unknown)
3960 {
3961 /* Give it a chance to define it a spec file. */
3962 save_switch (decoded->canonical_option[0],
3963 decoded->canonical_option_num_elements - 1,
3964 &decoded->canonical_option[1], false, false);
3965 return false;
3966 }
3967 else
3968 return true;
3969 }
3970
3971 /* Handle an option DECODED that is not marked as CL_DRIVER.
3972 LANG_MASK will always be CL_DRIVER. */
3973
3974 static void
3975 driver_wrong_lang_callback (const struct cl_decoded_option *decoded,
3976 unsigned int lang_mask ATTRIBUTE_UNUSED)
3977 {
3978 /* At this point, non-driver options are accepted (and expected to
3979 be passed down by specs) unless marked to be rejected by the
3980 driver. Options to be rejected by the driver but accepted by the
3981 compilers proper are treated just like completely unknown
3982 options. */
3983 const struct cl_option *option = &cl_options[decoded->opt_index];
3984
3985 if (option->cl_reject_driver)
3986 error ("unrecognized command-line option %qs",
3987 decoded->orig_option_with_args_text);
3988 else
3989 save_switch (decoded->canonical_option[0],
3990 decoded->canonical_option_num_elements - 1,
3991 &decoded->canonical_option[1], false, true);
3992 }
3993
3994 static const char *spec_lang = 0;
3995 static int last_language_n_infiles;
3996
3997
3998 /* Check that GCC is configured to support the offload target. */
3999
4000 static bool
4001 check_offload_target_name (const char *target, ptrdiff_t len)
4002 {
4003 const char *n, *c = OFFLOAD_TARGETS;
4004 while (c)
4005 {
4006 n = strchr (c, ',');
4007 if (n == NULL)
4008 n = strchr (c, '\0');
4009 if (len == n - c && strncmp (target, c, n - c) == 0)
4010 break;
4011 c = *n ? n + 1 : NULL;
4012 }
4013 if (!c)
4014 {
4015 auto_vec<const char*> candidates;
4016 size_t olen = strlen (OFFLOAD_TARGETS) + 1;
4017 char *cand = XALLOCAVEC (char, olen);
4018 memcpy (cand, OFFLOAD_TARGETS, olen);
4019 for (c = strtok (cand, ","); c; c = strtok (NULL, ","))
4020 candidates.safe_push (c);
4021 candidates.safe_push ("default");
4022 candidates.safe_push ("disable");
4023
4024 char *target2 = XALLOCAVEC (char, len + 1);
4025 memcpy (target2, target, len);
4026 target2[len] = '\0';
4027
4028 error ("GCC is not configured to support %qs as %<-foffload=%> argument",
4029 target2);
4030
4031 char *s;
4032 const char *hint = candidates_list_and_hint (target2, s, candidates);
4033 if (hint)
4034 inform (UNKNOWN_LOCATION,
4035 "valid %<-foffload=%> arguments are: %s; "
4036 "did you mean %qs?", s, hint);
4037 else
4038 inform (UNKNOWN_LOCATION, "valid %<-foffload=%> arguments are: %s", s);
4039 XDELETEVEC (s);
4040 return false;
4041 }
4042 return true;
4043 }
4044
4045 /* Sanity check for -foffload-options. */
4046
4047 static void
4048 check_foffload_target_names (const char *arg)
4049 {
4050 const char *cur, *next, *end;
4051 /* If option argument starts with '-' then no target is specified and we
4052 do not need to parse it. */
4053 if (arg[0] == '-')
4054 return;
4055 end = strchr (arg, '=');
4056 if (end == NULL)
4057 {
4058 error ("%<=%>options missing after %<-foffload-options=%>target");
4059 return;
4060 }
4061
4062 cur = arg;
4063 while (cur < end)
4064 {
4065 next = strchr (cur, ',');
4066 if (next == NULL)
4067 next = end;
4068 next = (next > end) ? end : next;
4069
4070 /* Retain non-supported targets after printing an error as those will not
4071 be processed; each enabled target only processes its triplet. */
4072 check_offload_target_name (cur, next - cur);
4073 cur = next + 1;
4074 }
4075 }
4076
4077 /* Parse -foffload option argument. */
4078
4079 static void
4080 handle_foffload_option (const char *arg)
4081 {
4082 const char *c, *cur, *n, *next, *end;
4083 char *target;
4084
4085 /* If option argument starts with '-' then no target is specified and we
4086 do not need to parse it. */
4087 if (arg[0] == '-')
4088 return;
4089
4090 end = strchr (arg, '=');
4091 if (end == NULL)
4092 end = strchr (arg, '\0');
4093 cur = arg;
4094
4095 while (cur < end)
4096 {
4097 next = strchr (cur, ',');
4098 if (next == NULL)
4099 next = end;
4100 next = (next > end) ? end : next;
4101
4102 target = XNEWVEC (char, next - cur + 1);
4103 memcpy (target, cur, next - cur);
4104 target[next - cur] = '\0';
4105
4106 /* Reset offloading list and continue. */
4107 if (strcmp (target, "default") == 0)
4108 {
4109 free (offload_targets);
4110 offload_targets = NULL;
4111 goto next_item;
4112 }
4113
4114 /* If 'disable' is passed to the option, clean the list of
4115 offload targets and return, even if more targets follow.
4116 Likewise if GCC is not configured to support that offload target. */
4117 if (strcmp (target, "disable") == 0
4118 || !check_offload_target_name (target, next - cur))
4119 {
4120 free (offload_targets);
4121 offload_targets = xstrdup ("");
4122 return;
4123 }
4124
4125 if (!offload_targets)
4126 {
4127 offload_targets = target;
4128 target = NULL;
4129 }
4130 else
4131 {
4132 /* Check that the target hasn't already presented in the list. */
4133 c = offload_targets;
4134 do
4135 {
4136 n = strchr (c, ':');
4137 if (n == NULL)
4138 n = strchr (c, '\0');
4139
4140 if (next - cur == n - c && strncmp (c, target, n - c) == 0)
4141 break;
4142
4143 c = n + 1;
4144 }
4145 while (*n);
4146
4147 /* If duplicate is not found, append the target to the list. */
4148 if (c > n)
4149 {
4150 size_t offload_targets_len = strlen (offload_targets);
4151 offload_targets
4152 = XRESIZEVEC (char, offload_targets,
4153 offload_targets_len + 1 + next - cur + 1);
4154 offload_targets[offload_targets_len++] = ':';
4155 memcpy (offload_targets + offload_targets_len, target, next - cur + 1);
4156 }
4157 }
4158 next_item:
4159 cur = next + 1;
4160 XDELETEVEC (target);
4161 }
4162 }
4163
4164 /* Handle a driver option; arguments and return value as for
4165 handle_option. */
4166
4167 static bool
4168 driver_handle_option (struct gcc_options *opts,
4169 struct gcc_options *opts_set,
4170 const struct cl_decoded_option *decoded,
4171 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
4172 location_t loc,
4173 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
4174 diagnostic_context *dc,
4175 void (*) (void))
4176 {
4177 size_t opt_index = decoded->opt_index;
4178 const char *arg = decoded->arg;
4179 const char *compare_debug_replacement_opt;
4180 int value = decoded->value;
4181 bool validated = false;
4182 bool do_save = true;
4183
4184 gcc_assert (opts == &global_options);
4185 gcc_assert (opts_set == &global_options_set);
4186 gcc_assert (kind == DK_UNSPECIFIED);
4187 gcc_assert (loc == UNKNOWN_LOCATION);
4188 gcc_assert (dc == global_dc);
4189
4190 switch (opt_index)
4191 {
4192 case OPT_dumpspecs:
4193 {
4194 struct spec_list *sl;
4195 init_spec ();
4196 for (sl = specs; sl; sl = sl->next)
4197 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
4198 if (link_command_spec)
4199 printf ("*link_command:\n%s\n\n", link_command_spec);
4200 exit (0);
4201 }
4202
4203 case OPT_dumpversion:
4204 printf ("%s\n", spec_version);
4205 exit (0);
4206
4207 case OPT_dumpmachine:
4208 printf ("%s\n", spec_machine);
4209 exit (0);
4210
4211 case OPT_dumpfullversion:
4212 printf ("%s\n", BASEVER);
4213 exit (0);
4214
4215 case OPT__version:
4216 print_version = 1;
4217
4218 /* CPP driver cannot obtain switch from cc1_options. */
4219 if (is_cpp_driver)
4220 add_preprocessor_option ("--version", strlen ("--version"));
4221 add_assembler_option ("--version", strlen ("--version"));
4222 add_linker_option ("--version", strlen ("--version"));
4223 break;
4224
4225 case OPT__completion_:
4226 validated = true;
4227 completion = decoded->arg;
4228 break;
4229
4230 case OPT__help:
4231 print_help_list = 1;
4232
4233 /* CPP driver cannot obtain switch from cc1_options. */
4234 if (is_cpp_driver)
4235 add_preprocessor_option ("--help", 6);
4236 add_assembler_option ("--help", 6);
4237 add_linker_option ("--help", 6);
4238 break;
4239
4240 case OPT__help_:
4241 print_subprocess_help = 2;
4242 break;
4243
4244 case OPT__target_help:
4245 print_subprocess_help = 1;
4246
4247 /* CPP driver cannot obtain switch from cc1_options. */
4248 if (is_cpp_driver)
4249 add_preprocessor_option ("--target-help", 13);
4250 add_assembler_option ("--target-help", 13);
4251 add_linker_option ("--target-help", 13);
4252 break;
4253
4254 case OPT__no_sysroot_suffix:
4255 case OPT_pass_exit_codes:
4256 case OPT_print_search_dirs:
4257 case OPT_print_file_name_:
4258 case OPT_print_prog_name_:
4259 case OPT_print_multi_lib:
4260 case OPT_print_multi_directory:
4261 case OPT_print_sysroot:
4262 case OPT_print_multi_os_directory:
4263 case OPT_print_multiarch:
4264 case OPT_print_sysroot_headers_suffix:
4265 case OPT_time:
4266 case OPT_wrapper:
4267 /* These options set the variables specified in common.opt
4268 automatically, and do not need to be saved for spec
4269 processing. */
4270 do_save = false;
4271 break;
4272
4273 case OPT_print_libgcc_file_name:
4274 print_file_name = "libgcc.a";
4275 do_save = false;
4276 break;
4277
4278 case OPT_fuse_ld_bfd:
4279 use_ld = ".bfd";
4280 break;
4281
4282 case OPT_fuse_ld_gold:
4283 use_ld = ".gold";
4284 break;
4285
4286 case OPT_fuse_ld_mold:
4287 use_ld = ".mold";
4288 break;
4289
4290 case OPT_fcompare_debug_second:
4291 compare_debug_second = 1;
4292 break;
4293
4294 case OPT_fcompare_debug:
4295 switch (value)
4296 {
4297 case 0:
4298 compare_debug_replacement_opt = "-fcompare-debug=";
4299 arg = "";
4300 goto compare_debug_with_arg;
4301
4302 case 1:
4303 compare_debug_replacement_opt = "-fcompare-debug=-gtoggle";
4304 arg = "-gtoggle";
4305 goto compare_debug_with_arg;
4306
4307 default:
4308 gcc_unreachable ();
4309 }
4310 break;
4311
4312 case OPT_fcompare_debug_:
4313 compare_debug_replacement_opt = decoded->canonical_option[0];
4314 compare_debug_with_arg:
4315 gcc_assert (decoded->canonical_option_num_elements == 1);
4316 gcc_assert (arg != NULL);
4317 if (*arg)
4318 compare_debug = 1;
4319 else
4320 compare_debug = -1;
4321 if (compare_debug < 0)
4322 compare_debug_opt = NULL;
4323 else
4324 compare_debug_opt = arg;
4325 save_switch (compare_debug_replacement_opt, 0, NULL, validated, true);
4326 set_source_date_epoch_envvar ();
4327 return true;
4328
4329 case OPT_fdiagnostics_color_:
4330 diagnostic_color_init (dc, value);
4331 break;
4332
4333 case OPT_fdiagnostics_urls_:
4334 diagnostic_urls_init (dc, value);
4335 break;
4336
4337 case OPT_fdiagnostics_format_:
4338 diagnostic_output_format_init (dc,
4339 (enum diagnostics_output_format)value);
4340 break;
4341
4342 case OPT_Wa_:
4343 {
4344 int prev, j;
4345 /* Pass the rest of this option to the assembler. */
4346
4347 /* Split the argument at commas. */
4348 prev = 0;
4349 for (j = 0; arg[j]; j++)
4350 if (arg[j] == ',')
4351 {
4352 add_assembler_option (arg + prev, j - prev);
4353 prev = j + 1;
4354 }
4355
4356 /* Record the part after the last comma. */
4357 add_assembler_option (arg + prev, j - prev);
4358 }
4359 do_save = false;
4360 break;
4361
4362 case OPT_Wp_:
4363 {
4364 int prev, j;
4365 /* Pass the rest of this option to the preprocessor. */
4366
4367 /* Split the argument at commas. */
4368 prev = 0;
4369 for (j = 0; arg[j]; j++)
4370 if (arg[j] == ',')
4371 {
4372 add_preprocessor_option (arg + prev, j - prev);
4373 prev = j + 1;
4374 }
4375
4376 /* Record the part after the last comma. */
4377 add_preprocessor_option (arg + prev, j - prev);
4378 }
4379 do_save = false;
4380 break;
4381
4382 case OPT_Wl_:
4383 {
4384 int prev, j;
4385 /* Split the argument at commas. */
4386 prev = 0;
4387 for (j = 0; arg[j]; j++)
4388 if (arg[j] == ',')
4389 {
4390 add_infile (save_string (arg + prev, j - prev), "*");
4391 prev = j + 1;
4392 }
4393 /* Record the part after the last comma. */
4394 add_infile (arg + prev, "*");
4395 }
4396 do_save = false;
4397 break;
4398
4399 case OPT_Xlinker:
4400 add_infile (arg, "*");
4401 do_save = false;
4402 break;
4403
4404 case OPT_Xpreprocessor:
4405 add_preprocessor_option (arg, strlen (arg));
4406 do_save = false;
4407 break;
4408
4409 case OPT_Xassembler:
4410 add_assembler_option (arg, strlen (arg));
4411 do_save = false;
4412 break;
4413
4414 case OPT_l:
4415 /* POSIX allows separation of -l and the lib arg; canonicalize
4416 by concatenating -l with its arg */
4417 add_infile (concat ("-l", arg, NULL), "*");
4418 do_save = false;
4419 break;
4420
4421 case OPT_L:
4422 /* Similarly, canonicalize -L for linkers that may not accept
4423 separate arguments. */
4424 save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true);
4425 return true;
4426
4427 case OPT_F:
4428 /* Likewise -F. */
4429 save_switch (concat ("-F", arg, NULL), 0, NULL, validated, true);
4430 return true;
4431
4432 case OPT_save_temps:
4433 if (!save_temps_flag)
4434 save_temps_flag = SAVE_TEMPS_DUMP;
4435 validated = true;
4436 break;
4437
4438 case OPT_save_temps_:
4439 if (strcmp (arg, "cwd") == 0)
4440 save_temps_flag = SAVE_TEMPS_CWD;
4441 else if (strcmp (arg, "obj") == 0
4442 || strcmp (arg, "object") == 0)
4443 save_temps_flag = SAVE_TEMPS_OBJ;
4444 else
4445 fatal_error (input_location, "%qs is an unknown %<-save-temps%> option",
4446 decoded->orig_option_with_args_text);
4447 save_temps_overrides_dumpdir = true;
4448 break;
4449
4450 case OPT_dumpdir:
4451 free (dumpdir);
4452 dumpdir = xstrdup (arg);
4453 save_temps_overrides_dumpdir = false;
4454 break;
4455
4456 case OPT_dumpbase:
4457 free (dumpbase);
4458 dumpbase = xstrdup (arg);
4459 break;
4460
4461 case OPT_dumpbase_ext:
4462 free (dumpbase_ext);
4463 dumpbase_ext = xstrdup (arg);
4464 break;
4465
4466 case OPT_no_canonical_prefixes:
4467 /* Already handled as a special case, so ignored here. */
4468 do_save = false;
4469 break;
4470
4471 case OPT_pipe:
4472 validated = true;
4473 /* These options set the variables specified in common.opt
4474 automatically, but do need to be saved for spec
4475 processing. */
4476 break;
4477
4478 case OPT_specs_:
4479 {
4480 struct user_specs *user = XNEW (struct user_specs);
4481
4482 user->next = (struct user_specs *) 0;
4483 user->filename = arg;
4484 if (user_specs_tail)
4485 user_specs_tail->next = user;
4486 else
4487 user_specs_head = user;
4488 user_specs_tail = user;
4489 }
4490 validated = true;
4491 break;
4492
4493 case OPT__sysroot_:
4494 target_system_root = arg;
4495 target_system_root_changed = 1;
4496 /* Saving this option is useful to let self-specs decide to
4497 provide a default one. */
4498 do_save = true;
4499 validated = true;
4500 break;
4501
4502 case OPT_time_:
4503 if (report_times_to_file)
4504 fclose (report_times_to_file);
4505 report_times_to_file = fopen (arg, "a");
4506 do_save = false;
4507 break;
4508
4509 case OPT____:
4510 /* "-###"
4511 This is similar to -v except that there is no execution
4512 of the commands and the echoed arguments are quoted. It
4513 is intended for use in shell scripts to capture the
4514 driver-generated command line. */
4515 verbose_only_flag++;
4516 verbose_flag = 1;
4517 do_save = false;
4518 break;
4519
4520 case OPT_B:
4521 {
4522 size_t len = strlen (arg);
4523
4524 /* Catch the case where the user has forgotten to append a
4525 directory separator to the path. Note, they may be using
4526 -B to add an executable name prefix, eg "i386-elf-", in
4527 order to distinguish between multiple installations of
4528 GCC in the same directory. Hence we must check to see
4529 if appending a directory separator actually makes a
4530 valid directory name. */
4531 if (!IS_DIR_SEPARATOR (arg[len - 1])
4532 && is_directory (arg, false))
4533 {
4534 char *tmp = XNEWVEC (char, len + 2);
4535 strcpy (tmp, arg);
4536 tmp[len] = DIR_SEPARATOR;
4537 tmp[++len] = 0;
4538 arg = tmp;
4539 }
4540
4541 add_prefix (&exec_prefixes, arg, NULL,
4542 PREFIX_PRIORITY_B_OPT, 0, 0);
4543 add_prefix (&startfile_prefixes, arg, NULL,
4544 PREFIX_PRIORITY_B_OPT, 0, 0);
4545 add_prefix (&include_prefixes, arg, NULL,
4546 PREFIX_PRIORITY_B_OPT, 0, 0);
4547 }
4548 validated = true;
4549 break;
4550
4551 case OPT_E:
4552 have_E = true;
4553 break;
4554
4555 case OPT_x:
4556 spec_lang = arg;
4557 if (!strcmp (spec_lang, "none"))
4558 /* Suppress the warning if -xnone comes after the last input
4559 file, because alternate command interfaces like g++ might
4560 find it useful to place -xnone after each input file. */
4561 spec_lang = 0;
4562 else
4563 last_language_n_infiles = n_infiles;
4564 do_save = false;
4565 break;
4566
4567 case OPT_o:
4568 have_o = 1;
4569 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
4570 arg = convert_filename (arg, ! have_c, 0);
4571 #endif
4572 output_file = arg;
4573 /* On some systems, ld cannot handle "-o" without a space. So
4574 split the option from its argument. */
4575 save_switch ("-o", 1, &arg, validated, true);
4576 return true;
4577
4578 #ifdef ENABLE_DEFAULT_PIE
4579 case OPT_pie:
4580 /* -pie is turned on by default. */
4581 #endif
4582
4583 case OPT_static_libgcc:
4584 case OPT_shared_libgcc:
4585 case OPT_static_libgfortran:
4586 case OPT_static_libphobos:
4587 case OPT_static_libstdc__:
4588 /* These are always valid, since gcc.cc itself understands the
4589 first two, gfortranspec.cc understands -static-libgfortran,
4590 d-spec.cc understands -static-libphobos, and g++spec.cc
4591 understands -static-libstdc++ */
4592 validated = true;
4593 break;
4594
4595 case OPT_fwpa:
4596 flag_wpa = "";
4597 break;
4598
4599 case OPT_foffload_options_:
4600 check_foffload_target_names (arg);
4601 break;
4602
4603 case OPT_foffload_:
4604 handle_foffload_option (arg);
4605 if (arg[0] == '-' || NULL != strchr (arg, '='))
4606 save_switch (concat ("-foffload-options=", arg, NULL),
4607 0, NULL, validated, true);
4608 do_save = false;
4609 break;
4610
4611 default:
4612 /* Various driver options need no special processing at this
4613 point, having been handled in a prescan above or being
4614 handled by specs. */
4615 break;
4616 }
4617
4618 if (do_save)
4619 save_switch (decoded->canonical_option[0],
4620 decoded->canonical_option_num_elements - 1,
4621 &decoded->canonical_option[1], validated, true);
4622 return true;
4623 }
4624
4625 /* Return true if F2 is F1 followed by a single suffix, i.e., by a
4626 period and additional characters other than a period. */
4627
4628 static inline bool
4629 adds_single_suffix_p (const char *f2, const char *f1)
4630 {
4631 size_t len = strlen (f1);
4632
4633 return (strncmp (f1, f2, len) == 0
4634 && f2[len] == '.'
4635 && strchr (f2 + len + 1, '.') == NULL);
4636 }
4637
4638 /* Put the driver's standard set of option handlers in *HANDLERS. */
4639
4640 static void
4641 set_option_handlers (struct cl_option_handlers *handlers)
4642 {
4643 handlers->unknown_option_callback = driver_unknown_option_callback;
4644 handlers->wrong_lang_callback = driver_wrong_lang_callback;
4645 handlers->num_handlers = 3;
4646 handlers->handlers[0].handler = driver_handle_option;
4647 handlers->handlers[0].mask = CL_DRIVER;
4648 handlers->handlers[1].handler = common_handle_option;
4649 handlers->handlers[1].mask = CL_COMMON;
4650 handlers->handlers[2].handler = target_handle_option;
4651 handlers->handlers[2].mask = CL_TARGET;
4652 }
4653
4654
4655 /* Return the index into infiles for the single non-library
4656 non-lto-wpa input file, -1 if there isn't any, or -2 if there is
4657 more than one. */
4658 static inline int
4659 single_input_file_index ()
4660 {
4661 int ret = -1;
4662
4663 for (int i = 0; i < n_infiles; i++)
4664 {
4665 if (infiles[i].language
4666 && (infiles[i].language[0] == '*'
4667 || (flag_wpa
4668 && strcmp (infiles[i].language, "lto") == 0)))
4669 continue;
4670
4671 if (ret != -1)
4672 return -2;
4673
4674 ret = i;
4675 }
4676
4677 return ret;
4678 }
4679
4680 /* Create the vector `switches' and its contents.
4681 Store its length in `n_switches'. */
4682
4683 static void
4684 process_command (unsigned int decoded_options_count,
4685 struct cl_decoded_option *decoded_options)
4686 {
4687 const char *temp;
4688 char *temp1;
4689 char *tooldir_prefix, *tooldir_prefix2;
4690 char *(*get_relative_prefix) (const char *, const char *,
4691 const char *) = NULL;
4692 struct cl_option_handlers handlers;
4693 unsigned int j;
4694
4695 gcc_exec_prefix = env.get ("GCC_EXEC_PREFIX");
4696
4697 n_switches = 0;
4698 n_infiles = 0;
4699 added_libraries = 0;
4700
4701 /* Figure compiler version from version string. */
4702
4703 compiler_version = temp1 = xstrdup (version_string);
4704
4705 for (; *temp1; ++temp1)
4706 {
4707 if (*temp1 == ' ')
4708 {
4709 *temp1 = '\0';
4710 break;
4711 }
4712 }
4713
4714 /* Handle any -no-canonical-prefixes flag early, to assign the function
4715 that builds relative prefixes. This function creates default search
4716 paths that are needed later in normal option handling. */
4717
4718 for (j = 1; j < decoded_options_count; j++)
4719 {
4720 if (decoded_options[j].opt_index == OPT_no_canonical_prefixes)
4721 {
4722 get_relative_prefix = make_relative_prefix_ignore_links;
4723 break;
4724 }
4725 }
4726 if (! get_relative_prefix)
4727 get_relative_prefix = make_relative_prefix;
4728
4729 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
4730 see if we can create it from the pathname specified in
4731 decoded_options[0].arg. */
4732
4733 gcc_libexec_prefix = standard_libexec_prefix;
4734 #ifndef VMS
4735 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
4736 if (!gcc_exec_prefix)
4737 {
4738 gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg,
4739 standard_bindir_prefix,
4740 standard_exec_prefix);
4741 gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg,
4742 standard_bindir_prefix,
4743 standard_libexec_prefix);
4744 if (gcc_exec_prefix)
4745 xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
4746 }
4747 else
4748 {
4749 /* make_relative_prefix requires a program name, but
4750 GCC_EXEC_PREFIX is typically a directory name with a trailing
4751 / (which is ignored by make_relative_prefix), so append a
4752 program name. */
4753 char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
4754 gcc_libexec_prefix = get_relative_prefix (tmp_prefix,
4755 standard_exec_prefix,
4756 standard_libexec_prefix);
4757
4758 /* The path is unrelocated, so fallback to the original setting. */
4759 if (!gcc_libexec_prefix)
4760 gcc_libexec_prefix = standard_libexec_prefix;
4761
4762 free (tmp_prefix);
4763 }
4764 #else
4765 #endif
4766 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
4767 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
4768 or an automatically created GCC_EXEC_PREFIX from
4769 decoded_options[0].arg. */
4770
4771 /* Do language-specific adjustment/addition of flags. */
4772 lang_specific_driver (&decoded_options, &decoded_options_count,
4773 &added_libraries);
4774
4775 if (gcc_exec_prefix)
4776 {
4777 int len = strlen (gcc_exec_prefix);
4778
4779 if (len > (int) sizeof ("/lib/gcc/") - 1
4780 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
4781 {
4782 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
4783 if (IS_DIR_SEPARATOR (*temp)
4784 && filename_ncmp (temp + 1, "lib", 3) == 0
4785 && IS_DIR_SEPARATOR (temp[4])
4786 && filename_ncmp (temp + 5, "gcc", 3) == 0)
4787 len -= sizeof ("/lib/gcc/") - 1;
4788 }
4789
4790 set_std_prefix (gcc_exec_prefix, len);
4791 add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
4792 PREFIX_PRIORITY_LAST, 0, 0);
4793 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
4794 PREFIX_PRIORITY_LAST, 0, 0);
4795 }
4796
4797 /* COMPILER_PATH and LIBRARY_PATH have values
4798 that are lists of directory names with colons. */
4799
4800 temp = env.get ("COMPILER_PATH");
4801 if (temp)
4802 {
4803 const char *startp, *endp;
4804 char *nstore = (char *) alloca (strlen (temp) + 3);
4805
4806 startp = endp = temp;
4807 while (1)
4808 {
4809 if (*endp == PATH_SEPARATOR || *endp == 0)
4810 {
4811 strncpy (nstore, startp, endp - startp);
4812 if (endp == startp)
4813 strcpy (nstore, concat (".", dir_separator_str, NULL));
4814 else if (!IS_DIR_SEPARATOR (endp[-1]))
4815 {
4816 nstore[endp - startp] = DIR_SEPARATOR;
4817 nstore[endp - startp + 1] = 0;
4818 }
4819 else
4820 nstore[endp - startp] = 0;
4821 add_prefix (&exec_prefixes, nstore, 0,
4822 PREFIX_PRIORITY_LAST, 0, 0);
4823 add_prefix (&include_prefixes, nstore, 0,
4824 PREFIX_PRIORITY_LAST, 0, 0);
4825 if (*endp == 0)
4826 break;
4827 endp = startp = endp + 1;
4828 }
4829 else
4830 endp++;
4831 }
4832 }
4833
4834 temp = env.get (LIBRARY_PATH_ENV);
4835 if (temp && *cross_compile == '0')
4836 {
4837 const char *startp, *endp;
4838 char *nstore = (char *) alloca (strlen (temp) + 3);
4839
4840 startp = endp = temp;
4841 while (1)
4842 {
4843 if (*endp == PATH_SEPARATOR || *endp == 0)
4844 {
4845 strncpy (nstore, startp, endp - startp);
4846 if (endp == startp)
4847 strcpy (nstore, concat (".", dir_separator_str, NULL));
4848 else if (!IS_DIR_SEPARATOR (endp[-1]))
4849 {
4850 nstore[endp - startp] = DIR_SEPARATOR;
4851 nstore[endp - startp + 1] = 0;
4852 }
4853 else
4854 nstore[endp - startp] = 0;
4855 add_prefix (&startfile_prefixes, nstore, NULL,
4856 PREFIX_PRIORITY_LAST, 0, 1);
4857 if (*endp == 0)
4858 break;
4859 endp = startp = endp + 1;
4860 }
4861 else
4862 endp++;
4863 }
4864 }
4865
4866 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
4867 temp = env.get ("LPATH");
4868 if (temp && *cross_compile == '0')
4869 {
4870 const char *startp, *endp;
4871 char *nstore = (char *) alloca (strlen (temp) + 3);
4872
4873 startp = endp = temp;
4874 while (1)
4875 {
4876 if (*endp == PATH_SEPARATOR || *endp == 0)
4877 {
4878 strncpy (nstore, startp, endp - startp);
4879 if (endp == startp)
4880 strcpy (nstore, concat (".", dir_separator_str, NULL));
4881 else if (!IS_DIR_SEPARATOR (endp[-1]))
4882 {
4883 nstore[endp - startp] = DIR_SEPARATOR;
4884 nstore[endp - startp + 1] = 0;
4885 }
4886 else
4887 nstore[endp - startp] = 0;
4888 add_prefix (&startfile_prefixes, nstore, NULL,
4889 PREFIX_PRIORITY_LAST, 0, 1);
4890 if (*endp == 0)
4891 break;
4892 endp = startp = endp + 1;
4893 }
4894 else
4895 endp++;
4896 }
4897 }
4898
4899 /* Process the options and store input files and switches in their
4900 vectors. */
4901
4902 last_language_n_infiles = -1;
4903
4904 set_option_handlers (&handlers);
4905
4906 for (j = 1; j < decoded_options_count; j++)
4907 {
4908 switch (decoded_options[j].opt_index)
4909 {
4910 case OPT_S:
4911 case OPT_c:
4912 case OPT_E:
4913 have_c = 1;
4914 break;
4915 }
4916 if (have_c)
4917 break;
4918 }
4919
4920 for (j = 1; j < decoded_options_count; j++)
4921 {
4922 if (decoded_options[j].opt_index == OPT_SPECIAL_input_file)
4923 {
4924 const char *arg = decoded_options[j].arg;
4925
4926 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4927 arg = convert_filename (arg, 0, access (arg, F_OK));
4928 #endif
4929 add_infile (arg, spec_lang);
4930
4931 continue;
4932 }
4933
4934 read_cmdline_option (&global_options, &global_options_set,
4935 decoded_options + j, UNKNOWN_LOCATION,
4936 CL_DRIVER, &handlers, global_dc);
4937 }
4938
4939 /* If the user didn't specify any, default to all configured offload
4940 targets. */
4941 if (ENABLE_OFFLOADING && offload_targets == NULL)
4942 {
4943 handle_foffload_option (OFFLOAD_TARGETS);
4944 #if OFFLOAD_DEFAULTED
4945 offload_targets_default = true;
4946 #endif
4947 }
4948
4949 /* Handle -gtoggle as it would later in toplev.cc:process_options to
4950 make the debug-level-gt spec function work as expected. */
4951 if (flag_gtoggle)
4952 {
4953 if (debug_info_level == DINFO_LEVEL_NONE)
4954 debug_info_level = DINFO_LEVEL_NORMAL;
4955 else
4956 debug_info_level = DINFO_LEVEL_NONE;
4957 }
4958
4959 if (output_file
4960 && strcmp (output_file, "-") != 0
4961 && strcmp (output_file, HOST_BIT_BUCKET) != 0)
4962 {
4963 int i;
4964 for (i = 0; i < n_infiles; i++)
4965 if ((!infiles[i].language || infiles[i].language[0] != '*')
4966 && canonical_filename_eq (infiles[i].name, output_file))
4967 fatal_error (input_location,
4968 "input file %qs is the same as output file",
4969 output_file);
4970 }
4971
4972 if (output_file != NULL && output_file[0] == '\0')
4973 fatal_error (input_location, "output filename may not be empty");
4974
4975 /* -dumpdir and -save-temps=* both specify the location of aux/dump
4976 outputs; the one that appears last prevails. When compiling
4977 multiple sources, an explicit dumpbase (minus -ext) may be
4978 combined with an explicit or implicit dumpdir, whereas when
4979 linking, a specified or implied link output name (minus
4980 extension) may be combined with a prevailing -save-temps=* or an
4981 otherwise implied dumpdir, but not override a prevailing
4982 -dumpdir. Primary outputs (e.g., linker output when linking
4983 without -o, or .i, .s or .o outputs when processing multiple
4984 inputs with -E, -S or -c, respectively) are NOT affected by these
4985 -save-temps=/-dump* options, always landing in the current
4986 directory and with the same basename as the input when an output
4987 name is not given, but when they're intermediate outputs, they
4988 are named like other aux outputs, so the options affect their
4989 location and name.
4990
4991 Here are some examples. There are several more in the
4992 documentation of -o and -dump*, and some quite exhaustive tests
4993 in gcc.misc-tests/outputs.exp.
4994
4995 When compiling any number of sources, no -dump* nor
4996 -save-temps=*, all outputs in cwd without prefix:
4997
4998 # gcc -c b.c -gsplit-dwarf
4999 -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
5000
5001 # gcc -c b.c d.c -gsplit-dwarf
5002 -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
5003 && cc1 [-dumpdir ./] -dumpbase d.c -dumpbase-ext .c # d.o d.dwo
5004
5005 When compiling and linking, no -dump* nor -save-temps=*, .o
5006 outputs are temporary, aux outputs land in the dir of the output,
5007 prefixed with the basename of the linker output:
5008
5009 # gcc b.c d.c -o ab -gsplit-dwarf
5010 -> cc1 -dumpdir ab- -dumpbase b.c -dumpbase-ext .c # ab-b.dwo
5011 && cc1 -dumpdir ab- -dumpbase d.c -dumpbase-ext .c # ab-d.dwo
5012 && link ... -o ab
5013
5014 # gcc b.c d.c [-o a.out] -gsplit-dwarf
5015 -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.dwo
5016 && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.dwo
5017 && link ... [-o a.out]
5018
5019 When compiling and linking, a prevailing -dumpdir fully overrides
5020 the prefix of aux outputs given by the output name:
5021
5022 # gcc -dumpdir f b.c d.c -gsplit-dwarf [-o [dir/]whatever]
5023 -> cc1 -dumpdir f -dumpbase b.c -dumpbase-ext .c # fb.dwo
5024 && cc1 -dumpdir f -dumpbase d.c -dumpbase-ext .c # fd.dwo
5025 && link ... [-o whatever]
5026
5027 When compiling multiple inputs, an explicit -dumpbase is combined
5028 with -dumpdir, affecting aux outputs, but not the .o outputs:
5029
5030 # gcc -dumpdir f -dumpbase g- b.c d.c -gsplit-dwarf -c
5031 -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # b.o fg-b.dwo
5032 && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # d.o fg-d.dwo
5033
5034 When compiling and linking with -save-temps, the .o outputs that
5035 would have been temporary become aux outputs, so they get
5036 affected by -dump* flags:
5037
5038 # gcc -dumpdir f -dumpbase g- -save-temps b.c d.c
5039 -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # fg-b.o
5040 && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # fg-d.o
5041 && link
5042
5043 If -save-temps=* prevails over -dumpdir, however, the explicit
5044 -dumpdir is discarded, as if it wasn't there. The basename of
5045 the implicit linker output, a.out or a.exe, becomes a- as the aux
5046 output prefix for all compilations:
5047
5048 # gcc [-dumpdir f] -save-temps=cwd b.c d.c
5049 -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.o
5050 && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.o
5051 && link
5052
5053 A single -dumpbase, applying to multiple inputs, overrides the
5054 linker output name, implied or explicit, as the aux output prefix:
5055
5056 # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c
5057 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5058 && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5059 && link
5060
5061 # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c -o dir/h.out
5062 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5063 && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5064 && link -o dir/h.out
5065
5066 Now, if the linker output is NOT overridden as a prefix, but
5067 -save-temps=* overrides implicit or explicit -dumpdir, the
5068 effective dump dir combines the dir selected by the -save-temps=*
5069 option with the basename of the specified or implied link output:
5070
5071 # gcc [-dumpdir f] -save-temps=cwd b.c d.c -o dir/h.out
5072 -> cc1 -dumpdir h- -dumpbase b.c -dumpbase-ext .c # h-b.o
5073 && cc1 -dumpdir h- -dumpbase d.c -dumpbase-ext .c # h-d.o
5074 && link -o dir/h.out
5075
5076 # gcc [-dumpdir f] -save-temps=obj b.c d.c -o dir/h.out
5077 -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5078 && cc1 -dumpdir dir/h- -dumpbase d.c -dumpbase-ext .c # dir/h-d.o
5079 && link -o dir/h.out
5080
5081 But then again, a single -dumpbase applying to multiple inputs
5082 gets used instead of the linker output basename in the combined
5083 dumpdir:
5084
5085 # gcc [-dumpdir f] -dumpbase g- -save-temps=obj b.c d.c -o dir/h.out
5086 -> cc1 -dumpdir dir/g- -dumpbase b.c -dumpbase-ext .c # dir/g-b.o
5087 && cc1 -dumpdir dir/g- -dumpbase d.c -dumpbase-ext .c # dir/g-d.o
5088 && link -o dir/h.out
5089
5090 With a single input being compiled, the output basename does NOT
5091 affect the dumpdir prefix.
5092
5093 # gcc -save-temps=obj b.c -gsplit-dwarf -c -o dir/b.o
5094 -> cc1 -dumpdir dir/ -dumpbase b.c -dumpbase-ext .c # dir/b.o dir/b.dwo
5095
5096 but when compiling and linking even a single file, it does:
5097
5098 # gcc -save-temps=obj b.c -o dir/h.out
5099 -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5100
5101 unless an explicit -dumpdir prevails:
5102
5103 # gcc -save-temps[=obj] -dumpdir g- b.c -o dir/h.out
5104 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5105
5106 */
5107
5108 bool explicit_dumpdir = dumpdir;
5109
5110 if ((!save_temps_overrides_dumpdir && explicit_dumpdir)
5111 || (output_file && not_actual_file_p (output_file)))
5112 {
5113 /* Do nothing. */
5114 }
5115
5116 /* If -save-temps=obj and -o name, create the prefix to use for %b.
5117 Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
5118 else if (save_temps_flag != SAVE_TEMPS_CWD && output_file != NULL)
5119 {
5120 free (dumpdir);
5121 dumpdir = NULL;
5122 temp = lbasename (output_file);
5123 if (temp != output_file)
5124 dumpdir = xstrndup (output_file,
5125 strlen (output_file) - strlen (temp));
5126 }
5127 else if (dumpdir)
5128 {
5129 free (dumpdir);
5130 dumpdir = NULL;
5131 }
5132
5133 if (save_temps_flag)
5134 save_temps_flag = SAVE_TEMPS_DUMP;
5135
5136 /* If there is any pathname component in an explicit -dumpbase, it
5137 overrides dumpdir entirely, so discard it right away. Although
5138 the presence of an explicit -dumpdir matters for the driver, it
5139 shouldn't matter for other processes, that get all that's needed
5140 from the -dumpdir and -dumpbase always passed to them. */
5141 if (dumpdir && dumpbase && lbasename (dumpbase) != dumpbase)
5142 {
5143 free (dumpdir);
5144 dumpdir = NULL;
5145 }
5146
5147 /* Check that dumpbase_ext matches the end of dumpbase, drop it
5148 otherwise. */
5149 if (dumpbase_ext && dumpbase && *dumpbase)
5150 {
5151 int lendb = strlen (dumpbase);
5152 int lendbx = strlen (dumpbase_ext);
5153
5154 /* -dumpbase-ext must be a suffix proper; discard it if it
5155 matches all of -dumpbase, as that would make for an empty
5156 basename. */
5157 if (lendbx >= lendb
5158 || strcmp (dumpbase + lendb - lendbx, dumpbase_ext) != 0)
5159 {
5160 free (dumpbase_ext);
5161 dumpbase_ext = NULL;
5162 }
5163 }
5164
5165 /* -dumpbase with multiple sources goes into dumpdir. With a single
5166 source, it does only if linking and if dumpdir was not explicitly
5167 specified. */
5168 if (dumpbase && *dumpbase
5169 && (single_input_file_index () == -2
5170 || (!have_c && !explicit_dumpdir)))
5171 {
5172 char *prefix;
5173
5174 if (dumpbase_ext)
5175 /* We checked that they match above. */
5176 dumpbase[strlen (dumpbase) - strlen (dumpbase_ext)] = '\0';
5177
5178 if (dumpdir)
5179 prefix = concat (dumpdir, dumpbase, "-", NULL);
5180 else
5181 prefix = concat (dumpbase, "-", NULL);
5182
5183 free (dumpdir);
5184 free (dumpbase);
5185 free (dumpbase_ext);
5186 dumpbase = dumpbase_ext = NULL;
5187 dumpdir = prefix;
5188 dumpdir_trailing_dash_added = true;
5189 }
5190
5191 /* If dumpbase was not brought into dumpdir but we're linking, bring
5192 output_file into dumpdir unless dumpdir was explicitly specified.
5193 The test for !explicit_dumpdir is further below, because we want
5194 to use the obase computation for a ghost outbase, passed to
5195 GCC_COLLECT_OPTIONS. */
5196 else if (!have_c && (!explicit_dumpdir || (dumpbase && !*dumpbase)))
5197 {
5198 /* If we get here, we know dumpbase was not specified, or it was
5199 specified as an empty string. If it was anything else, it
5200 would have combined with dumpdir above, because the condition
5201 for dumpbase to be used when present is broader than the
5202 condition that gets us here. */
5203 gcc_assert (!dumpbase || !*dumpbase);
5204
5205 const char *obase;
5206 char *tofree = NULL;
5207 if (!output_file || not_actual_file_p (output_file))
5208 obase = "a";
5209 else
5210 {
5211 obase = lbasename (output_file);
5212 size_t blen = strlen (obase), xlen;
5213 /* Drop the suffix if it's dumpbase_ext, if given,
5214 otherwise .exe or the target executable suffix, or if the
5215 output was explicitly named a.out, but not otherwise. */
5216 if (dumpbase_ext
5217 ? (blen > (xlen = strlen (dumpbase_ext))
5218 && strcmp ((temp = (obase + blen - xlen)),
5219 dumpbase_ext) == 0)
5220 : ((temp = strrchr (obase + 1, '.'))
5221 && (xlen = strlen (temp))
5222 && (strcmp (temp, ".exe") == 0
5223 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
5224 || strcmp (temp, TARGET_EXECUTABLE_SUFFIX) == 0
5225 #endif
5226 || strcmp (obase, "a.out") == 0)))
5227 {
5228 tofree = xstrndup (obase, blen - xlen);
5229 obase = tofree;
5230 }
5231 }
5232
5233 /* We wish to save this basename to the -dumpdir passed through
5234 GCC_COLLECT_OPTIONS within maybe_run_linker, for e.g. LTO,
5235 but we do NOT wish to add it to e.g. %b, so we keep
5236 outbase_length as zero. */
5237 gcc_assert (!outbase);
5238 outbase_length = 0;
5239
5240 /* If we're building [dir1/]foo[.exe] out of a single input
5241 [dir2/]foo.c that shares the same basename, dump to
5242 [dir2/]foo.c.* rather than duplicating the basename into
5243 [dir2/]foo-foo.c.*. */
5244 int idxin;
5245 if (dumpbase
5246 || ((idxin = single_input_file_index ()) >= 0
5247 && adds_single_suffix_p (lbasename (infiles[idxin].name),
5248 obase)))
5249 {
5250 if (obase == tofree)
5251 outbase = tofree;
5252 else
5253 {
5254 outbase = xstrdup (obase);
5255 free (tofree);
5256 }
5257 obase = tofree = NULL;
5258 }
5259 else
5260 {
5261 if (dumpdir)
5262 {
5263 char *p = concat (dumpdir, obase, "-", NULL);
5264 free (dumpdir);
5265 dumpdir = p;
5266 }
5267 else
5268 dumpdir = concat (obase, "-", NULL);
5269
5270 dumpdir_trailing_dash_added = true;
5271
5272 free (tofree);
5273 obase = tofree = NULL;
5274 }
5275
5276 if (!explicit_dumpdir || dumpbase)
5277 {
5278 /* Absent -dumpbase and present -dumpbase-ext have been applied
5279 to the linker output name, so compute fresh defaults for each
5280 compilation. */
5281 free (dumpbase_ext);
5282 dumpbase_ext = NULL;
5283 }
5284 }
5285
5286 /* Now, if we're compiling, or if we haven't used the dumpbase
5287 above, then outbase (%B) is derived from dumpbase, if given, or
5288 from the output name, given or implied. We can't precompute
5289 implied output names, but that's ok, since they're derived from
5290 input names. Just make sure we skip this if dumpbase is the
5291 empty string: we want to use input names then, so don't set
5292 outbase. */
5293 if ((dumpbase || have_c)
5294 && !(dumpbase && !*dumpbase))
5295 {
5296 gcc_assert (!outbase);
5297
5298 if (dumpbase)
5299 {
5300 gcc_assert (single_input_file_index () != -2);
5301 /* We do not want lbasename here; dumpbase with dirnames
5302 overrides dumpdir entirely, even if dumpdir is
5303 specified. */
5304 if (dumpbase_ext)
5305 /* We've already checked above that the suffix matches. */
5306 outbase = xstrndup (dumpbase,
5307 strlen (dumpbase) - strlen (dumpbase_ext));
5308 else
5309 outbase = xstrdup (dumpbase);
5310 }
5311 else if (output_file && !not_actual_file_p (output_file))
5312 {
5313 outbase = xstrdup (lbasename (output_file));
5314 char *p = strrchr (outbase + 1, '.');
5315 if (p)
5316 *p = '\0';
5317 }
5318
5319 if (outbase)
5320 outbase_length = strlen (outbase);
5321 }
5322
5323 /* If there is any pathname component in an explicit -dumpbase, do
5324 not use dumpdir, but retain it to pass it on to the compiler. */
5325 if (dumpdir)
5326 dumpdir_length = strlen (dumpdir);
5327 else
5328 dumpdir_length = 0;
5329
5330 /* Check that dumpbase_ext, if still present, still matches the end
5331 of dumpbase, if present, and drop it otherwise. We only retained
5332 it above when dumpbase was absent to maybe use it to drop the
5333 extension from output_name before combining it with dumpdir. We
5334 won't deal with -dumpbase-ext when -dumpbase is not explicitly
5335 given, even if just to activate backward-compatible dumpbase:
5336 dropping it on the floor is correct, expected and documented
5337 behavior. Attempting to deal with a -dumpbase-ext that might
5338 match the end of some input filename, or of the combination of
5339 the output basename with the suffix of the input filename,
5340 possible with an intermediate .gk extension for -fcompare-debug,
5341 is just calling for trouble. */
5342 if (dumpbase_ext)
5343 {
5344 if (!dumpbase || !*dumpbase)
5345 {
5346 free (dumpbase_ext);
5347 dumpbase_ext = NULL;
5348 }
5349 else
5350 gcc_assert (strcmp (dumpbase + strlen (dumpbase)
5351 - strlen (dumpbase_ext), dumpbase_ext) == 0);
5352 }
5353
5354 if (save_temps_flag && use_pipes)
5355 {
5356 /* -save-temps overrides -pipe, so that temp files are produced */
5357 if (save_temps_flag)
5358 warning (0, "%<-pipe%> ignored because %<-save-temps%> specified");
5359 use_pipes = 0;
5360 }
5361
5362 if (!compare_debug)
5363 {
5364 const char *gcd = env.get ("GCC_COMPARE_DEBUG");
5365
5366 if (gcd && gcd[0] == '-')
5367 {
5368 compare_debug = 2;
5369 compare_debug_opt = gcd;
5370 }
5371 else if (gcd && *gcd && strcmp (gcd, "0"))
5372 {
5373 compare_debug = 3;
5374 compare_debug_opt = "-gtoggle";
5375 }
5376 }
5377 else if (compare_debug < 0)
5378 {
5379 compare_debug = 0;
5380 gcc_assert (!compare_debug_opt);
5381 }
5382
5383 /* Set up the search paths. We add directories that we expect to
5384 contain GNU Toolchain components before directories specified by
5385 the machine description so that we will find GNU components (like
5386 the GNU assembler) before those of the host system. */
5387
5388 /* If we don't know where the toolchain has been installed, use the
5389 configured-in locations. */
5390 if (!gcc_exec_prefix)
5391 {
5392 #ifndef OS2
5393 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
5394 PREFIX_PRIORITY_LAST, 1, 0);
5395 add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
5396 PREFIX_PRIORITY_LAST, 2, 0);
5397 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
5398 PREFIX_PRIORITY_LAST, 2, 0);
5399 #endif
5400 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
5401 PREFIX_PRIORITY_LAST, 1, 0);
5402 }
5403
5404 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
5405 tooldir_prefix2 = concat (tooldir_base_prefix, spec_machine,
5406 dir_separator_str, NULL);
5407
5408 /* Look for tools relative to the location from which the driver is
5409 running, or, if that is not available, the configured prefix. */
5410 tooldir_prefix
5411 = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
5412 spec_host_machine, dir_separator_str, spec_version,
5413 accel_dir_suffix, dir_separator_str, tooldir_prefix2, NULL);
5414 free (tooldir_prefix2);
5415
5416 add_prefix (&exec_prefixes,
5417 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
5418 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
5419 add_prefix (&startfile_prefixes,
5420 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
5421 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
5422 free (tooldir_prefix);
5423
5424 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
5425 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
5426 then consider it to relocate with the rest of the GCC installation
5427 if GCC_EXEC_PREFIX is set.
5428 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
5429 if (target_system_root && !target_system_root_changed && gcc_exec_prefix)
5430 {
5431 char *tmp_prefix = get_relative_prefix (decoded_options[0].arg,
5432 standard_bindir_prefix,
5433 target_system_root);
5434 if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
5435 {
5436 target_system_root = tmp_prefix;
5437 target_system_root_changed = 1;
5438 }
5439 }
5440 #endif
5441
5442 /* More prefixes are enabled in main, after we read the specs file
5443 and determine whether this is cross-compilation or not. */
5444
5445 if (n_infiles != 0 && n_infiles == last_language_n_infiles && spec_lang != 0)
5446 warning (0, "%<-x %s%> after last input file has no effect", spec_lang);
5447
5448 /* Synthesize -fcompare-debug flag from the GCC_COMPARE_DEBUG
5449 environment variable. */
5450 if (compare_debug == 2 || compare_debug == 3)
5451 {
5452 const char *opt = concat ("-fcompare-debug=", compare_debug_opt, NULL);
5453 save_switch (opt, 0, NULL, false, true);
5454 compare_debug = 1;
5455 }
5456
5457 /* Ensure we only invoke each subprocess once. */
5458 if (n_infiles == 0
5459 && (print_subprocess_help || print_help_list || print_version))
5460 {
5461 /* Create a dummy input file, so that we can pass
5462 the help option on to the various sub-processes. */
5463 add_infile ("help-dummy", "c");
5464 }
5465
5466 /* Decide if undefined variable references are allowed in specs. */
5467
5468 /* -v alone is safe. --version and --help alone or together are safe. Note
5469 that -v would make them unsafe, as they'd then be run for subprocesses as
5470 well, the location of which might depend on variables possibly coming
5471 from self-specs. Note also that the command name is counted in
5472 decoded_options_count. */
5473
5474 unsigned help_version_count = 0;
5475
5476 if (print_version)
5477 help_version_count++;
5478
5479 if (print_help_list)
5480 help_version_count++;
5481
5482 spec_undefvar_allowed =
5483 ((verbose_flag && decoded_options_count == 2)
5484 || help_version_count == decoded_options_count - 1);
5485
5486 alloc_switch ();
5487 switches[n_switches].part1 = 0;
5488 alloc_infile ();
5489 infiles[n_infiles].name = 0;
5490 }
5491
5492 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
5493 and place that in the environment. */
5494
5495 static void
5496 set_collect_gcc_options (void)
5497 {
5498 int i;
5499 int first_time;
5500
5501 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5502 the compiler. */
5503 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
5504 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5505
5506 first_time = TRUE;
5507 for (i = 0; (int) i < n_switches; i++)
5508 {
5509 const char *const *args;
5510 const char *p, *q;
5511 if (!first_time)
5512 obstack_grow (&collect_obstack, " ", 1);
5513
5514 first_time = FALSE;
5515
5516 /* Ignore elided switches. */
5517 if ((switches[i].live_cond
5518 & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC))
5519 == SWITCH_IGNORE)
5520 continue;
5521
5522 obstack_grow (&collect_obstack, "'-", 2);
5523 q = switches[i].part1;
5524 while ((p = strchr (q, '\'')))
5525 {
5526 obstack_grow (&collect_obstack, q, p - q);
5527 obstack_grow (&collect_obstack, "'\\''", 4);
5528 q = ++p;
5529 }
5530 obstack_grow (&collect_obstack, q, strlen (q));
5531 obstack_grow (&collect_obstack, "'", 1);
5532
5533 for (args = switches[i].args; args && *args; args++)
5534 {
5535 obstack_grow (&collect_obstack, " '", 2);
5536 q = *args;
5537 while ((p = strchr (q, '\'')))
5538 {
5539 obstack_grow (&collect_obstack, q, p - q);
5540 obstack_grow (&collect_obstack, "'\\''", 4);
5541 q = ++p;
5542 }
5543 obstack_grow (&collect_obstack, q, strlen (q));
5544 obstack_grow (&collect_obstack, "'", 1);
5545 }
5546 }
5547
5548 if (dumpdir)
5549 {
5550 if (!first_time)
5551 obstack_grow (&collect_obstack, " ", 1);
5552 first_time = FALSE;
5553
5554 obstack_grow (&collect_obstack, "'-dumpdir' '", 12);
5555 const char *p, *q;
5556
5557 q = dumpdir;
5558 while ((p = strchr (q, '\'')))
5559 {
5560 obstack_grow (&collect_obstack, q, p - q);
5561 obstack_grow (&collect_obstack, "'\\''", 4);
5562 q = ++p;
5563 }
5564 obstack_grow (&collect_obstack, q, strlen (q));
5565
5566 obstack_grow (&collect_obstack, "'", 1);
5567 }
5568
5569 obstack_grow (&collect_obstack, "\0", 1);
5570 xputenv (XOBFINISH (&collect_obstack, char *));
5571 }
5572 \f
5573 /* Process a spec string, accumulating and running commands. */
5574
5575 /* These variables describe the input file name.
5576 input_file_number is the index on outfiles of this file,
5577 so that the output file name can be stored for later use by %o.
5578 input_basename is the start of the part of the input file
5579 sans all directory names, and basename_length is the number
5580 of characters starting there excluding the suffix .c or whatever. */
5581
5582 static const char *gcc_input_filename;
5583 static int input_file_number;
5584 size_t input_filename_length;
5585 static int basename_length;
5586 static int suffixed_basename_length;
5587 static const char *input_basename;
5588 static const char *input_suffix;
5589 #ifndef HOST_LACKS_INODE_NUMBERS
5590 static struct stat input_stat;
5591 #endif
5592 static int input_stat_set;
5593
5594 /* The compiler used to process the current input file. */
5595 static struct compiler *input_file_compiler;
5596
5597 /* These are variables used within do_spec and do_spec_1. */
5598
5599 /* Nonzero if an arg has been started and not yet terminated
5600 (with space, tab or newline). */
5601 static int arg_going;
5602
5603 /* Nonzero means %d or %g has been seen; the next arg to be terminated
5604 is a temporary file name. */
5605 static int delete_this_arg;
5606
5607 /* Nonzero means %w has been seen; the next arg to be terminated
5608 is the output file name of this compilation. */
5609 static int this_is_output_file;
5610
5611 /* Nonzero means %s has been seen; the next arg to be terminated
5612 is the name of a library file and we should try the standard
5613 search dirs for it. */
5614 static int this_is_library_file;
5615
5616 /* Nonzero means %T has been seen; the next arg to be terminated
5617 is the name of a linker script and we should try all of the
5618 standard search dirs for it. If it is found insert a --script
5619 command line switch and then substitute the full path in place,
5620 otherwise generate an error message. */
5621 static int this_is_linker_script;
5622
5623 /* Nonzero means that the input of this command is coming from a pipe. */
5624 static int input_from_pipe;
5625
5626 /* Nonnull means substitute this for any suffix when outputting a switches
5627 arguments. */
5628 static const char *suffix_subst;
5629
5630 /* If there is an argument being accumulated, terminate it and store it. */
5631
5632 static void
5633 end_going_arg (void)
5634 {
5635 if (arg_going)
5636 {
5637 const char *string;
5638
5639 obstack_1grow (&obstack, 0);
5640 string = XOBFINISH (&obstack, const char *);
5641 if (this_is_library_file)
5642 string = find_file (string);
5643 if (this_is_linker_script)
5644 {
5645 char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true);
5646
5647 if (full_script_path == NULL)
5648 {
5649 error ("unable to locate default linker script %qs in the library search paths", string);
5650 /* Script was not found on search path. */
5651 return;
5652 }
5653 store_arg ("--script", false, false);
5654 string = full_script_path;
5655 }
5656 store_arg (string, delete_this_arg, this_is_output_file);
5657 if (this_is_output_file)
5658 outfiles[input_file_number] = string;
5659 arg_going = 0;
5660 }
5661 }
5662
5663
5664 /* Parse the WRAPPER string which is a comma separated list of the command line
5665 and insert them into the beginning of argbuf. */
5666
5667 static void
5668 insert_wrapper (const char *wrapper)
5669 {
5670 int n = 0;
5671 int i;
5672 char *buf = xstrdup (wrapper);
5673 char *p = buf;
5674 unsigned int old_length = argbuf.length ();
5675
5676 do
5677 {
5678 n++;
5679 while (*p == ',')
5680 p++;
5681 }
5682 while ((p = strchr (p, ',')) != NULL);
5683
5684 argbuf.safe_grow (old_length + n, true);
5685 memmove (argbuf.address () + n,
5686 argbuf.address (),
5687 old_length * sizeof (const_char_p));
5688
5689 i = 0;
5690 p = buf;
5691 do
5692 {
5693 while (*p == ',')
5694 {
5695 *p = 0;
5696 p++;
5697 }
5698 argbuf[i] = p;
5699 i++;
5700 }
5701 while ((p = strchr (p, ',')) != NULL);
5702 gcc_assert (i == n);
5703 }
5704
5705 /* Process the spec SPEC and run the commands specified therein.
5706 Returns 0 if the spec is successfully processed; -1 if failed. */
5707
5708 int
5709 do_spec (const char *spec)
5710 {
5711 int value;
5712
5713 value = do_spec_2 (spec, NULL);
5714
5715 /* Force out any unfinished command.
5716 If -pipe, this forces out the last command if it ended in `|'. */
5717 if (value == 0)
5718 {
5719 if (argbuf.length () > 0
5720 && !strcmp (argbuf.last (), "|"))
5721 argbuf.pop ();
5722
5723 set_collect_gcc_options ();
5724
5725 if (argbuf.length () > 0)
5726 value = execute ();
5727 }
5728
5729 return value;
5730 }
5731
5732 /* Process the spec SPEC, with SOFT_MATCHED_PART designating the current value
5733 of a matched * pattern which may be re-injected by way of %*. */
5734
5735 static int
5736 do_spec_2 (const char *spec, const char *soft_matched_part)
5737 {
5738 int result;
5739
5740 clear_args ();
5741 arg_going = 0;
5742 delete_this_arg = 0;
5743 this_is_output_file = 0;
5744 this_is_library_file = 0;
5745 this_is_linker_script = 0;
5746 input_from_pipe = 0;
5747 suffix_subst = NULL;
5748
5749 result = do_spec_1 (spec, 0, soft_matched_part);
5750
5751 end_going_arg ();
5752
5753 return result;
5754 }
5755
5756 /* Process the given spec string and add any new options to the end
5757 of the switches/n_switches array. */
5758
5759 static void
5760 do_option_spec (const char *name, const char *spec)
5761 {
5762 unsigned int i, value_count, value_len;
5763 const char *p, *q, *value;
5764 char *tmp_spec, *tmp_spec_p;
5765
5766 if (configure_default_options[0].name == NULL)
5767 return;
5768
5769 for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
5770 if (strcmp (configure_default_options[i].name, name) == 0)
5771 break;
5772 if (i == ARRAY_SIZE (configure_default_options))
5773 return;
5774
5775 value = configure_default_options[i].value;
5776 value_len = strlen (value);
5777
5778 /* Compute the size of the final spec. */
5779 value_count = 0;
5780 p = spec;
5781 while ((p = strstr (p, "%(VALUE)")) != NULL)
5782 {
5783 p ++;
5784 value_count ++;
5785 }
5786
5787 /* Replace each %(VALUE) by the specified value. */
5788 tmp_spec = (char *) alloca (strlen (spec) + 1
5789 + value_count * (value_len - strlen ("%(VALUE)")));
5790 tmp_spec_p = tmp_spec;
5791 q = spec;
5792 while ((p = strstr (q, "%(VALUE)")) != NULL)
5793 {
5794 memcpy (tmp_spec_p, q, p - q);
5795 tmp_spec_p = tmp_spec_p + (p - q);
5796 memcpy (tmp_spec_p, value, value_len);
5797 tmp_spec_p += value_len;
5798 q = p + strlen ("%(VALUE)");
5799 }
5800 strcpy (tmp_spec_p, q);
5801
5802 do_self_spec (tmp_spec);
5803 }
5804
5805 /* Process the given spec string and add any new options to the end
5806 of the switches/n_switches array. */
5807
5808 static void
5809 do_self_spec (const char *spec)
5810 {
5811 int i;
5812
5813 do_spec_2 (spec, NULL);
5814 do_spec_1 (" ", 0, NULL);
5815
5816 /* Mark %<S switches processed by do_self_spec to be ignored permanently.
5817 do_self_specs adds the replacements to switches array, so it shouldn't
5818 be processed afterwards. */
5819 for (i = 0; i < n_switches; i++)
5820 if ((switches[i].live_cond & SWITCH_IGNORE))
5821 switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
5822
5823 if (argbuf.length () > 0)
5824 {
5825 const char **argbuf_copy;
5826 struct cl_decoded_option *decoded_options;
5827 struct cl_option_handlers handlers;
5828 unsigned int decoded_options_count;
5829 unsigned int j;
5830
5831 /* Create a copy of argbuf with a dummy argv[0] entry for
5832 decode_cmdline_options_to_array. */
5833 argbuf_copy = XNEWVEC (const char *,
5834 argbuf.length () + 1);
5835 argbuf_copy[0] = "";
5836 memcpy (argbuf_copy + 1, argbuf.address (),
5837 argbuf.length () * sizeof (const char *));
5838
5839 decode_cmdline_options_to_array (argbuf.length () + 1,
5840 argbuf_copy,
5841 CL_DRIVER, &decoded_options,
5842 &decoded_options_count);
5843 free (argbuf_copy);
5844
5845 set_option_handlers (&handlers);
5846
5847 for (j = 1; j < decoded_options_count; j++)
5848 {
5849 switch (decoded_options[j].opt_index)
5850 {
5851 case OPT_SPECIAL_input_file:
5852 /* Specs should only generate options, not input
5853 files. */
5854 if (strcmp (decoded_options[j].arg, "-") != 0)
5855 fatal_error (input_location,
5856 "switch %qs does not start with %<-%>",
5857 decoded_options[j].arg);
5858 else
5859 fatal_error (input_location,
5860 "spec-generated switch is just %<-%>");
5861 break;
5862
5863 case OPT_fcompare_debug_second:
5864 case OPT_fcompare_debug:
5865 case OPT_fcompare_debug_:
5866 case OPT_o:
5867 /* Avoid duplicate processing of some options from
5868 compare-debug specs; just save them here. */
5869 save_switch (decoded_options[j].canonical_option[0],
5870 (decoded_options[j].canonical_option_num_elements
5871 - 1),
5872 &decoded_options[j].canonical_option[1], false, true);
5873 break;
5874
5875 default:
5876 read_cmdline_option (&global_options, &global_options_set,
5877 decoded_options + j, UNKNOWN_LOCATION,
5878 CL_DRIVER, &handlers, global_dc);
5879 break;
5880 }
5881 }
5882
5883 free (decoded_options);
5884
5885 alloc_switch ();
5886 switches[n_switches].part1 = 0;
5887 }
5888 }
5889
5890 /* Callback for processing %D and %I specs. */
5891
5892 struct spec_path_info {
5893 const char *option;
5894 const char *append;
5895 size_t append_len;
5896 bool omit_relative;
5897 bool separate_options;
5898 };
5899
5900 static void *
5901 spec_path (char *path, void *data)
5902 {
5903 struct spec_path_info *info = (struct spec_path_info *) data;
5904 size_t len = 0;
5905 char save = 0;
5906
5907 if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
5908 return NULL;
5909
5910 if (info->append_len != 0)
5911 {
5912 len = strlen (path);
5913 memcpy (path + len, info->append, info->append_len + 1);
5914 }
5915
5916 if (!is_directory (path, true))
5917 return NULL;
5918
5919 do_spec_1 (info->option, 1, NULL);
5920 if (info->separate_options)
5921 do_spec_1 (" ", 0, NULL);
5922
5923 if (info->append_len == 0)
5924 {
5925 len = strlen (path);
5926 save = path[len - 1];
5927 if (IS_DIR_SEPARATOR (path[len - 1]))
5928 path[len - 1] = '\0';
5929 }
5930
5931 do_spec_1 (path, 1, NULL);
5932 do_spec_1 (" ", 0, NULL);
5933
5934 /* Must not damage the original path. */
5935 if (info->append_len == 0)
5936 path[len - 1] = save;
5937
5938 return NULL;
5939 }
5940
5941 /* True if we should compile INFILE. */
5942
5943 static bool
5944 compile_input_file_p (struct infile *infile)
5945 {
5946 if ((!infile->language) || (infile->language[0] != '*'))
5947 if (infile->incompiler == input_file_compiler)
5948 return true;
5949 return false;
5950 }
5951
5952 /* Process each member of VEC as a spec. */
5953
5954 static void
5955 do_specs_vec (vec<char_p> vec)
5956 {
5957 for (char *opt : vec)
5958 {
5959 do_spec_1 (opt, 1, NULL);
5960 /* Make each accumulated option a separate argument. */
5961 do_spec_1 (" ", 0, NULL);
5962 }
5963 }
5964
5965 /* Add options passed via -Xassembler or -Wa to COLLECT_AS_OPTIONS. */
5966
5967 static void
5968 putenv_COLLECT_AS_OPTIONS (vec<char_p> vec)
5969 {
5970 if (vec.is_empty ())
5971 return;
5972
5973 obstack_init (&collect_obstack);
5974 obstack_grow (&collect_obstack, "COLLECT_AS_OPTIONS=",
5975 strlen ("COLLECT_AS_OPTIONS="));
5976
5977 char *opt;
5978 unsigned ix;
5979
5980 FOR_EACH_VEC_ELT (vec, ix, opt)
5981 {
5982 obstack_1grow (&collect_obstack, '\'');
5983 obstack_grow (&collect_obstack, opt, strlen (opt));
5984 obstack_1grow (&collect_obstack, '\'');
5985 if (ix < vec.length () - 1)
5986 obstack_1grow(&collect_obstack, ' ');
5987 }
5988
5989 obstack_1grow (&collect_obstack, '\0');
5990 xputenv (XOBFINISH (&collect_obstack, char *));
5991 }
5992
5993 /* Process the sub-spec SPEC as a portion of a larger spec.
5994 This is like processing a whole spec except that we do
5995 not initialize at the beginning and we do not supply a
5996 newline by default at the end.
5997 INSWITCH nonzero means don't process %-sequences in SPEC;
5998 in this case, % is treated as an ordinary character.
5999 This is used while substituting switches.
6000 INSWITCH nonzero also causes SPC not to terminate an argument.
6001
6002 Value is zero unless a line was finished
6003 and the command on that line reported an error. */
6004
6005 static int
6006 do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
6007 {
6008 const char *p = spec;
6009 int c;
6010 int i;
6011 int value;
6012
6013 /* If it's an empty string argument to a switch, keep it as is. */
6014 if (inswitch && !*p)
6015 arg_going = 1;
6016
6017 while ((c = *p++))
6018 /* If substituting a switch, treat all chars like letters.
6019 Otherwise, NL, SPC, TAB and % are special. */
6020 switch (inswitch ? 'a' : c)
6021 {
6022 case '\n':
6023 end_going_arg ();
6024
6025 if (argbuf.length () > 0
6026 && !strcmp (argbuf.last (), "|"))
6027 {
6028 /* A `|' before the newline means use a pipe here,
6029 but only if -pipe was specified.
6030 Otherwise, execute now and don't pass the `|' as an arg. */
6031 if (use_pipes)
6032 {
6033 input_from_pipe = 1;
6034 break;
6035 }
6036 else
6037 argbuf.pop ();
6038 }
6039
6040 set_collect_gcc_options ();
6041
6042 if (argbuf.length () > 0)
6043 {
6044 value = execute ();
6045 if (value)
6046 return value;
6047 }
6048 /* Reinitialize for a new command, and for a new argument. */
6049 clear_args ();
6050 arg_going = 0;
6051 delete_this_arg = 0;
6052 this_is_output_file = 0;
6053 this_is_library_file = 0;
6054 this_is_linker_script = 0;
6055 input_from_pipe = 0;
6056 break;
6057
6058 case '|':
6059 end_going_arg ();
6060
6061 /* Use pipe */
6062 obstack_1grow (&obstack, c);
6063 arg_going = 1;
6064 break;
6065
6066 case '\t':
6067 case ' ':
6068 end_going_arg ();
6069
6070 /* Reinitialize for a new argument. */
6071 delete_this_arg = 0;
6072 this_is_output_file = 0;
6073 this_is_library_file = 0;
6074 this_is_linker_script = 0;
6075 break;
6076
6077 case '%':
6078 switch (c = *p++)
6079 {
6080 case 0:
6081 fatal_error (input_location, "spec %qs invalid", spec);
6082
6083 case 'b':
6084 /* Don't use %b in the linker command. */
6085 gcc_assert (suffixed_basename_length);
6086 if (!this_is_output_file && dumpdir_length)
6087 obstack_grow (&obstack, dumpdir, dumpdir_length);
6088 if (this_is_output_file || !outbase_length)
6089 obstack_grow (&obstack, input_basename, basename_length);
6090 else
6091 obstack_grow (&obstack, outbase, outbase_length);
6092 if (compare_debug < 0)
6093 obstack_grow (&obstack, ".gk", 3);
6094 arg_going = 1;
6095 break;
6096
6097 case 'B':
6098 /* Don't use %B in the linker command. */
6099 gcc_assert (suffixed_basename_length);
6100 if (!this_is_output_file && dumpdir_length)
6101 obstack_grow (&obstack, dumpdir, dumpdir_length);
6102 if (this_is_output_file || !outbase_length)
6103 obstack_grow (&obstack, input_basename, basename_length);
6104 else
6105 obstack_grow (&obstack, outbase, outbase_length);
6106 if (compare_debug < 0)
6107 obstack_grow (&obstack, ".gk", 3);
6108 obstack_grow (&obstack, input_basename + basename_length,
6109 suffixed_basename_length - basename_length);
6110
6111 arg_going = 1;
6112 break;
6113
6114 case 'd':
6115 delete_this_arg = 2;
6116 break;
6117
6118 /* Dump out the directories specified with LIBRARY_PATH,
6119 followed by the absolute directories
6120 that we search for startfiles. */
6121 case 'D':
6122 {
6123 struct spec_path_info info;
6124
6125 info.option = "-L";
6126 info.append_len = 0;
6127 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
6128 /* Used on systems which record the specified -L dirs
6129 and use them to search for dynamic linking.
6130 Relative directories always come from -B,
6131 and it is better not to use them for searching
6132 at run time. In particular, stage1 loses. */
6133 info.omit_relative = true;
6134 #else
6135 info.omit_relative = false;
6136 #endif
6137 info.separate_options = false;
6138
6139 for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
6140 }
6141 break;
6142
6143 case 'e':
6144 /* %efoo means report an error with `foo' as error message
6145 and don't execute any more commands for this file. */
6146 {
6147 const char *q = p;
6148 char *buf;
6149 while (*p != 0 && *p != '\n')
6150 p++;
6151 buf = (char *) alloca (p - q + 1);
6152 strncpy (buf, q, p - q);
6153 buf[p - q] = 0;
6154 error ("%s", _(buf));
6155 return -1;
6156 }
6157 break;
6158 case 'n':
6159 /* %nfoo means report a notice with `foo' on stderr. */
6160 {
6161 const char *q = p;
6162 char *buf;
6163 while (*p != 0 && *p != '\n')
6164 p++;
6165 buf = (char *) alloca (p - q + 1);
6166 strncpy (buf, q, p - q);
6167 buf[p - q] = 0;
6168 inform (UNKNOWN_LOCATION, "%s", _(buf));
6169 if (*p)
6170 p++;
6171 }
6172 break;
6173
6174 case 'j':
6175 {
6176 struct stat st;
6177
6178 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
6179 defined, and it is not a directory, and it is
6180 writable, use it. Otherwise, treat this like any
6181 other temporary file. */
6182
6183 if ((!save_temps_flag)
6184 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
6185 && (access (HOST_BIT_BUCKET, W_OK) == 0))
6186 {
6187 obstack_grow (&obstack, HOST_BIT_BUCKET,
6188 strlen (HOST_BIT_BUCKET));
6189 delete_this_arg = 0;
6190 arg_going = 1;
6191 break;
6192 }
6193 }
6194 goto create_temp_file;
6195 case '|':
6196 if (use_pipes)
6197 {
6198 obstack_1grow (&obstack, '-');
6199 delete_this_arg = 0;
6200 arg_going = 1;
6201
6202 /* consume suffix */
6203 while (*p == '.' || ISALNUM ((unsigned char) *p))
6204 p++;
6205 if (p[0] == '%' && p[1] == 'O')
6206 p += 2;
6207
6208 break;
6209 }
6210 goto create_temp_file;
6211 case 'm':
6212 if (use_pipes)
6213 {
6214 /* consume suffix */
6215 while (*p == '.' || ISALNUM ((unsigned char) *p))
6216 p++;
6217 if (p[0] == '%' && p[1] == 'O')
6218 p += 2;
6219
6220 break;
6221 }
6222 goto create_temp_file;
6223 case 'g':
6224 case 'u':
6225 case 'U':
6226 create_temp_file:
6227 {
6228 struct temp_name *t;
6229 int suffix_length;
6230 const char *suffix = p;
6231 char *saved_suffix = NULL;
6232
6233 while (*p == '.' || ISALNUM ((unsigned char) *p))
6234 p++;
6235 suffix_length = p - suffix;
6236 if (p[0] == '%' && p[1] == 'O')
6237 {
6238 p += 2;
6239 /* We don't support extra suffix characters after %O. */
6240 if (*p == '.' || ISALNUM ((unsigned char) *p))
6241 fatal_error (input_location,
6242 "spec %qs has invalid %<%%0%c%>", spec, *p);
6243 if (suffix_length == 0)
6244 suffix = TARGET_OBJECT_SUFFIX;
6245 else
6246 {
6247 saved_suffix
6248 = XNEWVEC (char, suffix_length
6249 + strlen (TARGET_OBJECT_SUFFIX) + 1);
6250 strncpy (saved_suffix, suffix, suffix_length);
6251 strcpy (saved_suffix + suffix_length,
6252 TARGET_OBJECT_SUFFIX);
6253 }
6254 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
6255 }
6256
6257 if (compare_debug < 0)
6258 {
6259 suffix = concat (".gk", suffix, NULL);
6260 suffix_length += 3;
6261 }
6262
6263 /* If -save-temps was specified, use that for the
6264 temp file. */
6265 if (save_temps_flag)
6266 {
6267 char *tmp;
6268 bool adjusted_suffix = false;
6269 if (suffix_length
6270 && !outbase_length && !basename_length
6271 && !dumpdir_trailing_dash_added)
6272 {
6273 adjusted_suffix = true;
6274 suffix++;
6275 suffix_length--;
6276 }
6277 temp_filename_length
6278 = dumpdir_length + suffix_length + 1;
6279 if (outbase_length)
6280 temp_filename_length += outbase_length;
6281 else
6282 temp_filename_length += basename_length;
6283 tmp = (char *) alloca (temp_filename_length);
6284 if (dumpdir_length)
6285 memcpy (tmp, dumpdir, dumpdir_length);
6286 if (outbase_length)
6287 memcpy (tmp + dumpdir_length, outbase,
6288 outbase_length);
6289 else if (basename_length)
6290 memcpy (tmp + dumpdir_length, input_basename,
6291 basename_length);
6292 memcpy (tmp + temp_filename_length - suffix_length - 1,
6293 suffix, suffix_length);
6294 if (adjusted_suffix)
6295 {
6296 adjusted_suffix = false;
6297 suffix--;
6298 suffix_length++;
6299 }
6300 tmp[temp_filename_length - 1] = '\0';
6301 temp_filename = tmp;
6302
6303 if (filename_cmp (temp_filename, gcc_input_filename) != 0)
6304 {
6305 #ifndef HOST_LACKS_INODE_NUMBERS
6306 struct stat st_temp;
6307
6308 /* Note, set_input() resets input_stat_set to 0. */
6309 if (input_stat_set == 0)
6310 {
6311 input_stat_set = stat (gcc_input_filename,
6312 &input_stat);
6313 if (input_stat_set >= 0)
6314 input_stat_set = 1;
6315 }
6316
6317 /* If we have the stat for the gcc_input_filename
6318 and we can do the stat for the temp_filename
6319 then the they could still refer to the same
6320 file if st_dev/st_ino's are the same. */
6321 if (input_stat_set != 1
6322 || stat (temp_filename, &st_temp) < 0
6323 || input_stat.st_dev != st_temp.st_dev
6324 || input_stat.st_ino != st_temp.st_ino)
6325 #else
6326 /* Just compare canonical pathnames. */
6327 char* input_realname = lrealpath (gcc_input_filename);
6328 char* temp_realname = lrealpath (temp_filename);
6329 bool files_differ = filename_cmp (input_realname, temp_realname);
6330 free (input_realname);
6331 free (temp_realname);
6332 if (files_differ)
6333 #endif
6334 {
6335 temp_filename
6336 = save_string (temp_filename,
6337 temp_filename_length - 1);
6338 obstack_grow (&obstack, temp_filename,
6339 temp_filename_length);
6340 arg_going = 1;
6341 delete_this_arg = 0;
6342 break;
6343 }
6344 }
6345 }
6346
6347 /* See if we already have an association of %g/%u/%U and
6348 suffix. */
6349 for (t = temp_names; t; t = t->next)
6350 if (t->length == suffix_length
6351 && strncmp (t->suffix, suffix, suffix_length) == 0
6352 && t->unique == (c == 'u' || c == 'U' || c == 'j'))
6353 break;
6354
6355 /* Make a new association if needed. %u and %j
6356 require one. */
6357 if (t == 0 || c == 'u' || c == 'j')
6358 {
6359 if (t == 0)
6360 {
6361 t = XNEW (struct temp_name);
6362 t->next = temp_names;
6363 temp_names = t;
6364 }
6365 t->length = suffix_length;
6366 if (saved_suffix)
6367 {
6368 t->suffix = saved_suffix;
6369 saved_suffix = NULL;
6370 }
6371 else
6372 t->suffix = save_string (suffix, suffix_length);
6373 t->unique = (c == 'u' || c == 'U' || c == 'j');
6374 temp_filename = make_temp_file (t->suffix);
6375 temp_filename_length = strlen (temp_filename);
6376 t->filename = temp_filename;
6377 t->filename_length = temp_filename_length;
6378 }
6379
6380 free (saved_suffix);
6381
6382 obstack_grow (&obstack, t->filename, t->filename_length);
6383 delete_this_arg = 1;
6384 }
6385 arg_going = 1;
6386 break;
6387
6388 case 'i':
6389 if (combine_inputs)
6390 {
6391 /* We are going to expand `%i' into `@FILE', where FILE
6392 is a newly-created temporary filename. The filenames
6393 that would usually be expanded in place of %o will be
6394 written to the temporary file. */
6395 if (at_file_supplied)
6396 open_at_file ();
6397
6398 for (i = 0; (int) i < n_infiles; i++)
6399 if (compile_input_file_p (&infiles[i]))
6400 {
6401 store_arg (infiles[i].name, 0, 0);
6402 infiles[i].compiled = true;
6403 }
6404
6405 if (at_file_supplied)
6406 close_at_file ();
6407 }
6408 else
6409 {
6410 obstack_grow (&obstack, gcc_input_filename,
6411 input_filename_length);
6412 arg_going = 1;
6413 }
6414 break;
6415
6416 case 'I':
6417 {
6418 struct spec_path_info info;
6419
6420 if (multilib_dir)
6421 {
6422 do_spec_1 ("-imultilib", 1, NULL);
6423 /* Make this a separate argument. */
6424 do_spec_1 (" ", 0, NULL);
6425 do_spec_1 (multilib_dir, 1, NULL);
6426 do_spec_1 (" ", 0, NULL);
6427 }
6428
6429 if (multiarch_dir)
6430 {
6431 do_spec_1 ("-imultiarch", 1, NULL);
6432 /* Make this a separate argument. */
6433 do_spec_1 (" ", 0, NULL);
6434 do_spec_1 (multiarch_dir, 1, NULL);
6435 do_spec_1 (" ", 0, NULL);
6436 }
6437
6438 if (gcc_exec_prefix)
6439 {
6440 do_spec_1 ("-iprefix", 1, NULL);
6441 /* Make this a separate argument. */
6442 do_spec_1 (" ", 0, NULL);
6443 do_spec_1 (gcc_exec_prefix, 1, NULL);
6444 do_spec_1 (" ", 0, NULL);
6445 }
6446
6447 if (target_system_root_changed ||
6448 (target_system_root && target_sysroot_hdrs_suffix))
6449 {
6450 do_spec_1 ("-isysroot", 1, NULL);
6451 /* Make this a separate argument. */
6452 do_spec_1 (" ", 0, NULL);
6453 do_spec_1 (target_system_root, 1, NULL);
6454 if (target_sysroot_hdrs_suffix)
6455 do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
6456 do_spec_1 (" ", 0, NULL);
6457 }
6458
6459 info.option = "-isystem";
6460 info.append = "include";
6461 info.append_len = strlen (info.append);
6462 info.omit_relative = false;
6463 info.separate_options = true;
6464
6465 for_each_path (&include_prefixes, false, info.append_len,
6466 spec_path, &info);
6467
6468 info.append = "include-fixed";
6469 if (*sysroot_hdrs_suffix_spec)
6470 info.append = concat (info.append, dir_separator_str,
6471 multilib_dir, NULL);
6472 info.append_len = strlen (info.append);
6473 for_each_path (&include_prefixes, false, info.append_len,
6474 spec_path, &info);
6475 }
6476 break;
6477
6478 case 'o':
6479 /* We are going to expand `%o' into `@FILE', where FILE
6480 is a newly-created temporary filename. The filenames
6481 that would usually be expanded in place of %o will be
6482 written to the temporary file. */
6483 if (at_file_supplied)
6484 open_at_file ();
6485
6486 for (i = 0; i < n_infiles + lang_specific_extra_outfiles; i++)
6487 if (outfiles[i])
6488 store_arg (outfiles[i], 0, 0);
6489
6490 if (at_file_supplied)
6491 close_at_file ();
6492 break;
6493
6494 case 'O':
6495 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
6496 arg_going = 1;
6497 break;
6498
6499 case 's':
6500 this_is_library_file = 1;
6501 break;
6502
6503 case 'T':
6504 this_is_linker_script = 1;
6505 break;
6506
6507 case 'V':
6508 outfiles[input_file_number] = NULL;
6509 break;
6510
6511 case 'w':
6512 this_is_output_file = 1;
6513 break;
6514
6515 case 'W':
6516 {
6517 unsigned int cur_index = argbuf.length ();
6518 /* Handle the {...} following the %W. */
6519 if (*p != '{')
6520 fatal_error (input_location,
6521 "spec %qs has invalid %<%%W%c%>", spec, *p);
6522 p = handle_braces (p + 1);
6523 if (p == 0)
6524 return -1;
6525 end_going_arg ();
6526 /* If any args were output, mark the last one for deletion
6527 on failure. */
6528 if (argbuf.length () != cur_index)
6529 record_temp_file (argbuf.last (), 0, 1);
6530 break;
6531 }
6532
6533 case '@':
6534 /* Handle the {...} following the %@. */
6535 if (*p != '{')
6536 fatal_error (input_location,
6537 "spec %qs has invalid %<%%@%c%>", spec, *p);
6538 if (at_file_supplied)
6539 open_at_file ();
6540 p = handle_braces (p + 1);
6541 if (at_file_supplied)
6542 close_at_file ();
6543 if (p == 0)
6544 return -1;
6545 break;
6546
6547 /* %x{OPTION} records OPTION for %X to output. */
6548 case 'x':
6549 {
6550 const char *p1 = p;
6551 char *string;
6552
6553 /* Skip past the option value and make a copy. */
6554 if (*p != '{')
6555 fatal_error (input_location,
6556 "spec %qs has invalid %<%%x%c%>", spec, *p);
6557 while (*p++ != '}')
6558 ;
6559 string = save_string (p1 + 1, p - p1 - 2);
6560
6561 /* See if we already recorded this option. */
6562 for (const char *opt : linker_options)
6563 if (! strcmp (string, opt))
6564 {
6565 free (string);
6566 return 0;
6567 }
6568
6569 /* This option is new; add it. */
6570 add_linker_option (string, strlen (string));
6571 free (string);
6572 }
6573 break;
6574
6575 /* Dump out the options accumulated previously using %x. */
6576 case 'X':
6577 do_specs_vec (linker_options);
6578 break;
6579
6580 /* Dump out the options accumulated previously using -Wa,. */
6581 case 'Y':
6582 do_specs_vec (assembler_options);
6583 break;
6584
6585 /* Dump out the options accumulated previously using -Wp,. */
6586 case 'Z':
6587 do_specs_vec (preprocessor_options);
6588 break;
6589
6590 /* Here are digits and numbers that just process
6591 a certain constant string as a spec. */
6592
6593 case '1':
6594 value = do_spec_1 (cc1_spec, 0, NULL);
6595 if (value != 0)
6596 return value;
6597 break;
6598
6599 case '2':
6600 value = do_spec_1 (cc1plus_spec, 0, NULL);
6601 if (value != 0)
6602 return value;
6603 break;
6604
6605 case 'a':
6606 value = do_spec_1 (asm_spec, 0, NULL);
6607 if (value != 0)
6608 return value;
6609 break;
6610
6611 case 'A':
6612 value = do_spec_1 (asm_final_spec, 0, NULL);
6613 if (value != 0)
6614 return value;
6615 break;
6616
6617 case 'C':
6618 {
6619 const char *const spec
6620 = (input_file_compiler->cpp_spec
6621 ? input_file_compiler->cpp_spec
6622 : cpp_spec);
6623 value = do_spec_1 (spec, 0, NULL);
6624 if (value != 0)
6625 return value;
6626 }
6627 break;
6628
6629 case 'E':
6630 value = do_spec_1 (endfile_spec, 0, NULL);
6631 if (value != 0)
6632 return value;
6633 break;
6634
6635 case 'l':
6636 value = do_spec_1 (link_spec, 0, NULL);
6637 if (value != 0)
6638 return value;
6639 break;
6640
6641 case 'L':
6642 value = do_spec_1 (lib_spec, 0, NULL);
6643 if (value != 0)
6644 return value;
6645 break;
6646
6647 case 'M':
6648 if (multilib_os_dir == NULL)
6649 obstack_1grow (&obstack, '.');
6650 else
6651 obstack_grow (&obstack, multilib_os_dir,
6652 strlen (multilib_os_dir));
6653 break;
6654
6655 case 'G':
6656 value = do_spec_1 (libgcc_spec, 0, NULL);
6657 if (value != 0)
6658 return value;
6659 break;
6660
6661 case 'R':
6662 /* We assume there is a directory
6663 separator at the end of this string. */
6664 if (target_system_root)
6665 {
6666 obstack_grow (&obstack, target_system_root,
6667 strlen (target_system_root));
6668 if (target_sysroot_suffix)
6669 obstack_grow (&obstack, target_sysroot_suffix,
6670 strlen (target_sysroot_suffix));
6671 }
6672 break;
6673
6674 case 'S':
6675 value = do_spec_1 (startfile_spec, 0, NULL);
6676 if (value != 0)
6677 return value;
6678 break;
6679
6680 /* Here we define characters other than letters and digits. */
6681
6682 case '{':
6683 p = handle_braces (p);
6684 if (p == 0)
6685 return -1;
6686 break;
6687
6688 case ':':
6689 p = handle_spec_function (p, NULL, soft_matched_part);
6690 if (p == 0)
6691 return -1;
6692 break;
6693
6694 case '%':
6695 obstack_1grow (&obstack, '%');
6696 break;
6697
6698 case '.':
6699 {
6700 unsigned len = 0;
6701
6702 while (p[len] && p[len] != ' ' && p[len] != '%')
6703 len++;
6704 suffix_subst = save_string (p - 1, len + 1);
6705 p += len;
6706 }
6707 break;
6708
6709 /* Henceforth ignore the option(s) matching the pattern
6710 after the %<. */
6711 case '<':
6712 case '>':
6713 {
6714 unsigned len = 0;
6715 int have_wildcard = 0;
6716 int i;
6717 int switch_option;
6718
6719 if (c == '>')
6720 switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC;
6721 else
6722 switch_option = SWITCH_IGNORE;
6723
6724 while (p[len] && p[len] != ' ' && p[len] != '\t')
6725 len++;
6726
6727 if (p[len-1] == '*')
6728 have_wildcard = 1;
6729
6730 for (i = 0; i < n_switches; i++)
6731 if (!strncmp (switches[i].part1, p, len - have_wildcard)
6732 && (have_wildcard || switches[i].part1[len] == '\0'))
6733 {
6734 switches[i].live_cond |= switch_option;
6735 /* User switch be validated from validate_all_switches.
6736 when the definition is seen from the spec file.
6737 If not defined anywhere, will be rejected. */
6738 if (switches[i].known)
6739 switches[i].validated = true;
6740 }
6741
6742 p += len;
6743 }
6744 break;
6745
6746 case '*':
6747 if (soft_matched_part)
6748 {
6749 if (soft_matched_part[0])
6750 do_spec_1 (soft_matched_part, 1, NULL);
6751 /* Only insert a space after the substitution if it is at the
6752 end of the current sequence. So if:
6753
6754 "%{foo=*:bar%*}%{foo=*:one%*two}"
6755
6756 matches -foo=hello then it will produce:
6757
6758 barhello onehellotwo
6759 */
6760 if (*p == 0 || *p == '}')
6761 do_spec_1 (" ", 0, NULL);
6762 }
6763 else
6764 /* Catch the case where a spec string contains something like
6765 '%{foo:%*}'. i.e. there is no * in the pattern on the left
6766 hand side of the :. */
6767 error ("spec failure: %<%%*%> has not been initialized by pattern match");
6768 break;
6769
6770 /* Process a string found as the value of a spec given by name.
6771 This feature allows individual machine descriptions
6772 to add and use their own specs. */
6773 case '(':
6774 {
6775 const char *name = p;
6776 struct spec_list *sl;
6777 int len;
6778
6779 /* The string after the S/P is the name of a spec that is to be
6780 processed. */
6781 while (*p && *p != ')')
6782 p++;
6783
6784 /* See if it's in the list. */
6785 for (len = p - name, sl = specs; sl; sl = sl->next)
6786 if (sl->name_len == len && !strncmp (sl->name, name, len))
6787 {
6788 name = *(sl->ptr_spec);
6789 #ifdef DEBUG_SPECS
6790 fnotice (stderr, "Processing spec (%s), which is '%s'\n",
6791 sl->name, name);
6792 #endif
6793 break;
6794 }
6795
6796 if (sl)
6797 {
6798 value = do_spec_1 (name, 0, NULL);
6799 if (value != 0)
6800 return value;
6801 }
6802
6803 /* Discard the closing paren. */
6804 if (*p)
6805 p++;
6806 }
6807 break;
6808
6809 case '"':
6810 /* End a previous argument, if there is one, then issue an
6811 empty argument. */
6812 end_going_arg ();
6813 arg_going = 1;
6814 end_going_arg ();
6815 break;
6816
6817 default:
6818 error ("spec failure: unrecognized spec option %qc", c);
6819 break;
6820 }
6821 break;
6822
6823 case '\\':
6824 /* Backslash: treat next character as ordinary. */
6825 c = *p++;
6826
6827 /* When adding more cases that previously matched default, make
6828 sure to adjust quote_spec_char_p as well. */
6829
6830 /* Fall through. */
6831 default:
6832 /* Ordinary character: put it into the current argument. */
6833 obstack_1grow (&obstack, c);
6834 arg_going = 1;
6835 }
6836
6837 /* End of string. If we are processing a spec function, we need to
6838 end any pending argument. */
6839 if (processing_spec_function)
6840 end_going_arg ();
6841
6842 return 0;
6843 }
6844
6845 /* Look up a spec function. */
6846
6847 static const struct spec_function *
6848 lookup_spec_function (const char *name)
6849 {
6850 const struct spec_function *sf;
6851
6852 for (sf = static_spec_functions; sf->name != NULL; sf++)
6853 if (strcmp (sf->name, name) == 0)
6854 return sf;
6855
6856 return NULL;
6857 }
6858
6859 /* Evaluate a spec function. */
6860
6861 static const char *
6862 eval_spec_function (const char *func, const char *args,
6863 const char *soft_matched_part)
6864 {
6865 const struct spec_function *sf;
6866 const char *funcval;
6867
6868 /* Saved spec processing context. */
6869 vec<const_char_p> save_argbuf;
6870
6871 int save_arg_going;
6872 int save_delete_this_arg;
6873 int save_this_is_output_file;
6874 int save_this_is_library_file;
6875 int save_input_from_pipe;
6876 int save_this_is_linker_script;
6877 const char *save_suffix_subst;
6878
6879 int save_growing_size;
6880 void *save_growing_value = NULL;
6881
6882 sf = lookup_spec_function (func);
6883 if (sf == NULL)
6884 fatal_error (input_location, "unknown spec function %qs", func);
6885
6886 /* Push the spec processing context. */
6887 save_argbuf = argbuf;
6888
6889 save_arg_going = arg_going;
6890 save_delete_this_arg = delete_this_arg;
6891 save_this_is_output_file = this_is_output_file;
6892 save_this_is_library_file = this_is_library_file;
6893 save_this_is_linker_script = this_is_linker_script;
6894 save_input_from_pipe = input_from_pipe;
6895 save_suffix_subst = suffix_subst;
6896
6897 /* If we have some object growing now, finalize it so the args and function
6898 eval proceed from a cleared context. This is needed to prevent the first
6899 constructed arg from mistakenly including the growing value. We'll push
6900 this value back on the obstack once the function evaluation is done, to
6901 restore a consistent processing context for our caller. This is fine as
6902 the address of growing objects isn't guaranteed to remain stable until
6903 they are finalized, and we expect this situation to be rare enough for
6904 the extra copy not to be an issue. */
6905 save_growing_size = obstack_object_size (&obstack);
6906 if (save_growing_size > 0)
6907 save_growing_value = obstack_finish (&obstack);
6908
6909 /* Create a new spec processing context, and build the function
6910 arguments. */
6911
6912 alloc_args ();
6913 if (do_spec_2 (args, soft_matched_part) < 0)
6914 fatal_error (input_location, "error in arguments to spec function %qs",
6915 func);
6916
6917 /* argbuf_index is an index for the next argument to be inserted, and
6918 so contains the count of the args already inserted. */
6919
6920 funcval = (*sf->func) (argbuf.length (),
6921 argbuf.address ());
6922
6923 /* Pop the spec processing context. */
6924 argbuf.release ();
6925 argbuf = save_argbuf;
6926
6927 arg_going = save_arg_going;
6928 delete_this_arg = save_delete_this_arg;
6929 this_is_output_file = save_this_is_output_file;
6930 this_is_library_file = save_this_is_library_file;
6931 this_is_linker_script = save_this_is_linker_script;
6932 input_from_pipe = save_input_from_pipe;
6933 suffix_subst = save_suffix_subst;
6934
6935 if (save_growing_size > 0)
6936 obstack_grow (&obstack, save_growing_value, save_growing_size);
6937
6938 return funcval;
6939 }
6940
6941 /* Handle a spec function call of the form:
6942
6943 %:function(args)
6944
6945 ARGS is processed as a spec in a separate context and split into an
6946 argument vector in the normal fashion. The function returns a string
6947 containing a spec which we then process in the caller's context, or
6948 NULL if no processing is required.
6949
6950 If RETVAL_NONNULL is not NULL, then store a bool whether function
6951 returned non-NULL.
6952
6953 SOFT_MATCHED_PART holds the current value of a matched * pattern, which
6954 may be re-expanded with a %* as part of the function arguments. */
6955
6956 static const char *
6957 handle_spec_function (const char *p, bool *retval_nonnull,
6958 const char *soft_matched_part)
6959 {
6960 char *func, *args;
6961 const char *endp, *funcval;
6962 int count;
6963
6964 processing_spec_function++;
6965
6966 /* Get the function name. */
6967 for (endp = p; *endp != '\0'; endp++)
6968 {
6969 if (*endp == '(') /* ) */
6970 break;
6971 /* Only allow [A-Za-z0-9], -, and _ in function names. */
6972 if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
6973 fatal_error (input_location, "malformed spec function name");
6974 }
6975 if (*endp != '(') /* ) */
6976 fatal_error (input_location, "no arguments for spec function");
6977 func = save_string (p, endp - p);
6978 p = ++endp;
6979
6980 /* Get the arguments. */
6981 for (count = 0; *endp != '\0'; endp++)
6982 {
6983 /* ( */
6984 if (*endp == ')')
6985 {
6986 if (count == 0)
6987 break;
6988 count--;
6989 }
6990 else if (*endp == '(') /* ) */
6991 count++;
6992 }
6993 /* ( */
6994 if (*endp != ')')
6995 fatal_error (input_location, "malformed spec function arguments");
6996 args = save_string (p, endp - p);
6997 p = ++endp;
6998
6999 /* p now points to just past the end of the spec function expression. */
7000
7001 funcval = eval_spec_function (func, args, soft_matched_part);
7002 if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
7003 p = NULL;
7004 if (retval_nonnull)
7005 *retval_nonnull = funcval != NULL;
7006
7007 free (func);
7008 free (args);
7009
7010 processing_spec_function--;
7011
7012 return p;
7013 }
7014
7015 /* Inline subroutine of handle_braces. Returns true if the current
7016 input suffix matches the atom bracketed by ATOM and END_ATOM. */
7017 static inline bool
7018 input_suffix_matches (const char *atom, const char *end_atom)
7019 {
7020 return (input_suffix
7021 && !strncmp (input_suffix, atom, end_atom - atom)
7022 && input_suffix[end_atom - atom] == '\0');
7023 }
7024
7025 /* Subroutine of handle_braces. Returns true if the current
7026 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
7027 static bool
7028 input_spec_matches (const char *atom, const char *end_atom)
7029 {
7030 return (input_file_compiler
7031 && input_file_compiler->suffix
7032 && input_file_compiler->suffix[0] != '\0'
7033 && !strncmp (input_file_compiler->suffix + 1, atom,
7034 end_atom - atom)
7035 && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
7036 }
7037
7038 /* Subroutine of handle_braces. Returns true if a switch
7039 matching the atom bracketed by ATOM and END_ATOM appeared on the
7040 command line. */
7041 static bool
7042 switch_matches (const char *atom, const char *end_atom, int starred)
7043 {
7044 int i;
7045 int len = end_atom - atom;
7046 int plen = starred ? len : -1;
7047
7048 for (i = 0; i < n_switches; i++)
7049 if (!strncmp (switches[i].part1, atom, len)
7050 && (starred || switches[i].part1[len] == '\0')
7051 && check_live_switch (i, plen))
7052 return true;
7053
7054 /* Check if a switch with separated form matching the atom.
7055 We check -D and -U switches. */
7056 else if (switches[i].args != 0)
7057 {
7058 if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
7059 && *switches[i].part1 == atom[0])
7060 {
7061 if (!strncmp (switches[i].args[0], &atom[1], len - 1)
7062 && (starred || (switches[i].part1[1] == '\0'
7063 && switches[i].args[0][len - 1] == '\0'))
7064 && check_live_switch (i, (starred ? 1 : -1)))
7065 return true;
7066 }
7067 }
7068
7069 return false;
7070 }
7071
7072 /* Inline subroutine of handle_braces. Mark all of the switches which
7073 match ATOM (extends to END_ATOM; STARRED indicates whether there
7074 was a star after the atom) for later processing. */
7075 static inline void
7076 mark_matching_switches (const char *atom, const char *end_atom, int starred)
7077 {
7078 int i;
7079 int len = end_atom - atom;
7080 int plen = starred ? len : -1;
7081
7082 for (i = 0; i < n_switches; i++)
7083 if (!strncmp (switches[i].part1, atom, len)
7084 && (starred || switches[i].part1[len] == '\0')
7085 && check_live_switch (i, plen))
7086 switches[i].ordering = 1;
7087 }
7088
7089 /* Inline subroutine of handle_braces. Process all the currently
7090 marked switches through give_switch, and clear the marks. */
7091 static inline void
7092 process_marked_switches (void)
7093 {
7094 int i;
7095
7096 for (i = 0; i < n_switches; i++)
7097 if (switches[i].ordering == 1)
7098 {
7099 switches[i].ordering = 0;
7100 give_switch (i, 0);
7101 }
7102 }
7103
7104 /* Handle a %{ ... } construct. P points just inside the leading {.
7105 Returns a pointer one past the end of the brace block, or 0
7106 if we call do_spec_1 and that returns -1. */
7107
7108 static const char *
7109 handle_braces (const char *p)
7110 {
7111 const char *atom, *end_atom;
7112 const char *d_atom = NULL, *d_end_atom = NULL;
7113 char *esc_buf = NULL, *d_esc_buf = NULL;
7114 int esc;
7115 const char *orig = p;
7116
7117 bool a_is_suffix;
7118 bool a_is_spectype;
7119 bool a_is_starred;
7120 bool a_is_negated;
7121 bool a_matched;
7122
7123 bool a_must_be_last = false;
7124 bool ordered_set = false;
7125 bool disjunct_set = false;
7126 bool disj_matched = false;
7127 bool disj_starred = true;
7128 bool n_way_choice = false;
7129 bool n_way_matched = false;
7130
7131 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7132
7133 do
7134 {
7135 if (a_must_be_last)
7136 goto invalid;
7137
7138 /* Scan one "atom" (S in the description above of %{}, possibly
7139 with '!', '.', '@', ',', or '*' modifiers). */
7140 a_matched = false;
7141 a_is_suffix = false;
7142 a_is_starred = false;
7143 a_is_negated = false;
7144 a_is_spectype = false;
7145
7146 SKIP_WHITE ();
7147 if (*p == '!')
7148 p++, a_is_negated = true;
7149
7150 SKIP_WHITE ();
7151 if (*p == '%' && p[1] == ':')
7152 {
7153 atom = NULL;
7154 end_atom = NULL;
7155 p = handle_spec_function (p + 2, &a_matched, NULL);
7156 }
7157 else
7158 {
7159 if (*p == '.')
7160 p++, a_is_suffix = true;
7161 else if (*p == ',')
7162 p++, a_is_spectype = true;
7163
7164 atom = p;
7165 esc = 0;
7166 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7167 || *p == ',' || *p == '.' || *p == '@' || *p == '\\')
7168 {
7169 if (*p == '\\')
7170 {
7171 p++;
7172 if (!*p)
7173 fatal_error (input_location,
7174 "braced spec %qs ends in escape", orig);
7175 esc++;
7176 }
7177 p++;
7178 }
7179 end_atom = p;
7180
7181 if (esc)
7182 {
7183 const char *ap;
7184 char *ep;
7185
7186 if (esc_buf && esc_buf != d_esc_buf)
7187 free (esc_buf);
7188 esc_buf = NULL;
7189 ep = esc_buf = (char *) xmalloc (end_atom - atom - esc + 1);
7190 for (ap = atom; ap != end_atom; ap++, ep++)
7191 {
7192 if (*ap == '\\')
7193 ap++;
7194 *ep = *ap;
7195 }
7196 *ep = '\0';
7197 atom = esc_buf;
7198 end_atom = ep;
7199 }
7200
7201 if (*p == '*')
7202 p++, a_is_starred = 1;
7203 }
7204
7205 SKIP_WHITE ();
7206 switch (*p)
7207 {
7208 case '&': case '}':
7209 /* Substitute the switch(es) indicated by the current atom. */
7210 ordered_set = true;
7211 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
7212 || a_is_spectype || atom == end_atom)
7213 goto invalid;
7214
7215 mark_matching_switches (atom, end_atom, a_is_starred);
7216
7217 if (*p == '}')
7218 process_marked_switches ();
7219 break;
7220
7221 case '|': case ':':
7222 /* Substitute some text if the current atom appears as a switch
7223 or suffix. */
7224 disjunct_set = true;
7225 if (ordered_set)
7226 goto invalid;
7227
7228 if (atom && atom == end_atom)
7229 {
7230 if (!n_way_choice || disj_matched || *p == '|'
7231 || a_is_negated || a_is_suffix || a_is_spectype
7232 || a_is_starred)
7233 goto invalid;
7234
7235 /* An empty term may appear as the last choice of an
7236 N-way choice set; it means "otherwise". */
7237 a_must_be_last = true;
7238 disj_matched = !n_way_matched;
7239 disj_starred = false;
7240 }
7241 else
7242 {
7243 if ((a_is_suffix || a_is_spectype) && a_is_starred)
7244 goto invalid;
7245
7246 if (!a_is_starred)
7247 disj_starred = false;
7248
7249 /* Don't bother testing this atom if we already have a
7250 match. */
7251 if (!disj_matched && !n_way_matched)
7252 {
7253 if (atom == NULL)
7254 /* a_matched is already set by handle_spec_function. */;
7255 else if (a_is_suffix)
7256 a_matched = input_suffix_matches (atom, end_atom);
7257 else if (a_is_spectype)
7258 a_matched = input_spec_matches (atom, end_atom);
7259 else
7260 a_matched = switch_matches (atom, end_atom, a_is_starred);
7261
7262 if (a_matched != a_is_negated)
7263 {
7264 disj_matched = true;
7265 d_atom = atom;
7266 d_end_atom = end_atom;
7267 d_esc_buf = esc_buf;
7268 }
7269 }
7270 }
7271
7272 if (*p == ':')
7273 {
7274 /* Found the body, that is, the text to substitute if the
7275 current disjunction matches. */
7276 p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
7277 disj_matched && !n_way_matched);
7278 if (p == 0)
7279 goto done;
7280
7281 /* If we have an N-way choice, reset state for the next
7282 disjunction. */
7283 if (*p == ';')
7284 {
7285 n_way_choice = true;
7286 n_way_matched |= disj_matched;
7287 disj_matched = false;
7288 disj_starred = true;
7289 d_atom = d_end_atom = NULL;
7290 }
7291 }
7292 break;
7293
7294 default:
7295 goto invalid;
7296 }
7297 }
7298 while (*p++ != '}');
7299
7300 done:
7301 if (d_esc_buf && d_esc_buf != esc_buf)
7302 free (d_esc_buf);
7303 if (esc_buf)
7304 free (esc_buf);
7305
7306 return p;
7307
7308 invalid:
7309 fatal_error (input_location, "braced spec %qs is invalid at %qc", orig, *p);
7310
7311 #undef SKIP_WHITE
7312 }
7313
7314 /* Subroutine of handle_braces. Scan and process a brace substitution body
7315 (X in the description of %{} syntax). P points one past the colon;
7316 ATOM and END_ATOM bracket the first atom which was found to be true
7317 (present) in the current disjunction; STARRED indicates whether all
7318 the atoms in the current disjunction were starred (for syntax validation);
7319 MATCHED indicates whether the disjunction matched or not, and therefore
7320 whether or not the body is to be processed through do_spec_1 or just
7321 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
7322 returns -1. */
7323
7324 static const char *
7325 process_brace_body (const char *p, const char *atom, const char *end_atom,
7326 int starred, int matched)
7327 {
7328 const char *body, *end_body;
7329 unsigned int nesting_level;
7330 bool have_subst = false;
7331
7332 /* Locate the closing } or ;, honoring nested braces.
7333 Trim trailing whitespace. */
7334 body = p;
7335 nesting_level = 1;
7336 for (;;)
7337 {
7338 if (*p == '{')
7339 nesting_level++;
7340 else if (*p == '}')
7341 {
7342 if (!--nesting_level)
7343 break;
7344 }
7345 else if (*p == ';' && nesting_level == 1)
7346 break;
7347 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
7348 have_subst = true;
7349 else if (*p == '\0')
7350 goto invalid;
7351 p++;
7352 }
7353
7354 end_body = p;
7355 while (end_body[-1] == ' ' || end_body[-1] == '\t')
7356 end_body--;
7357
7358 if (have_subst && !starred)
7359 goto invalid;
7360
7361 if (matched)
7362 {
7363 /* Copy the substitution body to permanent storage and execute it.
7364 If have_subst is false, this is a simple matter of running the
7365 body through do_spec_1... */
7366 char *string = save_string (body, end_body - body);
7367 if (!have_subst)
7368 {
7369 if (do_spec_1 (string, 0, NULL) < 0)
7370 {
7371 free (string);
7372 return 0;
7373 }
7374 }
7375 else
7376 {
7377 /* ... but if have_subst is true, we have to process the
7378 body once for each matching switch, with %* set to the
7379 variant part of the switch. */
7380 unsigned int hard_match_len = end_atom - atom;
7381 int i;
7382
7383 for (i = 0; i < n_switches; i++)
7384 if (!strncmp (switches[i].part1, atom, hard_match_len)
7385 && check_live_switch (i, hard_match_len))
7386 {
7387 if (do_spec_1 (string, 0,
7388 &switches[i].part1[hard_match_len]) < 0)
7389 {
7390 free (string);
7391 return 0;
7392 }
7393 /* Pass any arguments this switch has. */
7394 give_switch (i, 1);
7395 suffix_subst = NULL;
7396 }
7397 }
7398 free (string);
7399 }
7400
7401 return p;
7402
7403 invalid:
7404 fatal_error (input_location, "braced spec body %qs is invalid", body);
7405 }
7406 \f
7407 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
7408 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
7409 spec, or -1 if either exact match or %* is used.
7410
7411 A -O switch is obsoleted by a later -O switch. A -f, -g, -m, or -W switch
7412 whose value does not begin with "no-" is obsoleted by the same value
7413 with the "no-", similarly for a switch with the "no-" prefix. */
7414
7415 static int
7416 check_live_switch (int switchnum, int prefix_length)
7417 {
7418 const char *name = switches[switchnum].part1;
7419 int i;
7420
7421 /* If we already processed this switch and determined if it was
7422 live or not, return our past determination. */
7423 if (switches[switchnum].live_cond != 0)
7424 return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0
7425 && (switches[switchnum].live_cond & SWITCH_FALSE) == 0
7426 && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY)
7427 == 0);
7428
7429 /* In the common case of {<at-most-one-letter>*}, a negating
7430 switch would always match, so ignore that case. We will just
7431 send the conflicting switches to the compiler phase. */
7432 if (prefix_length >= 0 && prefix_length <= 1)
7433 return 1;
7434
7435 /* Now search for duplicate in a manner that depends on the name. */
7436 switch (*name)
7437 {
7438 case 'O':
7439 for (i = switchnum + 1; i < n_switches; i++)
7440 if (switches[i].part1[0] == 'O')
7441 {
7442 switches[switchnum].validated = true;
7443 switches[switchnum].live_cond = SWITCH_FALSE;
7444 return 0;
7445 }
7446 break;
7447
7448 case 'W': case 'f': case 'm': case 'g':
7449 if (startswith (name + 1, "no-"))
7450 {
7451 /* We have Xno-YYY, search for XYYY. */
7452 for (i = switchnum + 1; i < n_switches; i++)
7453 if (switches[i].part1[0] == name[0]
7454 && ! strcmp (&switches[i].part1[1], &name[4]))
7455 {
7456 /* --specs are validated with the validate_switches mechanism. */
7457 if (switches[switchnum].known)
7458 switches[switchnum].validated = true;
7459 switches[switchnum].live_cond = SWITCH_FALSE;
7460 return 0;
7461 }
7462 }
7463 else
7464 {
7465 /* We have XYYY, search for Xno-YYY. */
7466 for (i = switchnum + 1; i < n_switches; i++)
7467 if (switches[i].part1[0] == name[0]
7468 && switches[i].part1[1] == 'n'
7469 && switches[i].part1[2] == 'o'
7470 && switches[i].part1[3] == '-'
7471 && !strcmp (&switches[i].part1[4], &name[1]))
7472 {
7473 /* --specs are validated with the validate_switches mechanism. */
7474 if (switches[switchnum].known)
7475 switches[switchnum].validated = true;
7476 switches[switchnum].live_cond = SWITCH_FALSE;
7477 return 0;
7478 }
7479 }
7480 break;
7481 }
7482
7483 /* Otherwise the switch is live. */
7484 switches[switchnum].live_cond |= SWITCH_LIVE;
7485 return 1;
7486 }
7487 \f
7488 /* Pass a switch to the current accumulating command
7489 in the same form that we received it.
7490 SWITCHNUM identifies the switch; it is an index into
7491 the vector of switches gcc received, which is `switches'.
7492 This cannot fail since it never finishes a command line.
7493
7494 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
7495
7496 static void
7497 give_switch (int switchnum, int omit_first_word)
7498 {
7499 if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0)
7500 return;
7501
7502 if (!omit_first_word)
7503 {
7504 do_spec_1 ("-", 0, NULL);
7505 do_spec_1 (switches[switchnum].part1, 1, NULL);
7506 }
7507
7508 if (switches[switchnum].args != 0)
7509 {
7510 const char **p;
7511 for (p = switches[switchnum].args; *p; p++)
7512 {
7513 const char *arg = *p;
7514
7515 do_spec_1 (" ", 0, NULL);
7516 if (suffix_subst)
7517 {
7518 unsigned length = strlen (arg);
7519 int dot = 0;
7520
7521 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
7522 if (arg[length] == '.')
7523 {
7524 (CONST_CAST (char *, arg))[length] = 0;
7525 dot = 1;
7526 break;
7527 }
7528 do_spec_1 (arg, 1, NULL);
7529 if (dot)
7530 (CONST_CAST (char *, arg))[length] = '.';
7531 do_spec_1 (suffix_subst, 1, NULL);
7532 }
7533 else
7534 do_spec_1 (arg, 1, NULL);
7535 }
7536 }
7537
7538 do_spec_1 (" ", 0, NULL);
7539 switches[switchnum].validated = true;
7540 }
7541 \f
7542 /* Print GCC configuration (e.g. version, thread model, target,
7543 configuration_arguments) to a given FILE. */
7544
7545 static void
7546 print_configuration (FILE *file)
7547 {
7548 int n;
7549 const char *thrmod;
7550
7551 fnotice (file, "Target: %s\n", spec_machine);
7552 fnotice (file, "Configured with: %s\n", configuration_arguments);
7553
7554 #ifdef THREAD_MODEL_SPEC
7555 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
7556 but there's no point in doing all this processing just to get
7557 thread_model back. */
7558 obstack_init (&obstack);
7559 do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
7560 obstack_1grow (&obstack, '\0');
7561 thrmod = XOBFINISH (&obstack, const char *);
7562 #else
7563 thrmod = thread_model;
7564 #endif
7565
7566 fnotice (file, "Thread model: %s\n", thrmod);
7567 fnotice (file, "Supported LTO compression algorithms: zlib");
7568 #ifdef HAVE_ZSTD_H
7569 fnotice (file, " zstd");
7570 #endif
7571 fnotice (file, "\n");
7572
7573 /* compiler_version is truncated at the first space when initialized
7574 from version string, so truncate version_string at the first space
7575 before comparing. */
7576 for (n = 0; version_string[n]; n++)
7577 if (version_string[n] == ' ')
7578 break;
7579
7580 if (! strncmp (version_string, compiler_version, n)
7581 && compiler_version[n] == 0)
7582 fnotice (file, "gcc version %s %s\n", version_string,
7583 pkgversion_string);
7584 else
7585 fnotice (file, "gcc driver version %s %sexecuting gcc version %s\n",
7586 version_string, pkgversion_string, compiler_version);
7587
7588 }
7589
7590 #define RETRY_ICE_ATTEMPTS 3
7591
7592 /* Returns true if FILE1 and FILE2 contain equivalent data, 0 otherwise. */
7593
7594 static bool
7595 files_equal_p (char *file1, char *file2)
7596 {
7597 struct stat st1, st2;
7598 off_t n, len;
7599 int fd1, fd2;
7600 const int bufsize = 8192;
7601 char *buf = XNEWVEC (char, bufsize);
7602
7603 fd1 = open (file1, O_RDONLY);
7604 fd2 = open (file2, O_RDONLY);
7605
7606 if (fd1 < 0 || fd2 < 0)
7607 goto error;
7608
7609 if (fstat (fd1, &st1) < 0 || fstat (fd2, &st2) < 0)
7610 goto error;
7611
7612 if (st1.st_size != st2.st_size)
7613 goto error;
7614
7615 for (n = st1.st_size; n; n -= len)
7616 {
7617 len = n;
7618 if ((int) len > bufsize / 2)
7619 len = bufsize / 2;
7620
7621 if (read (fd1, buf, len) != (int) len
7622 || read (fd2, buf + bufsize / 2, len) != (int) len)
7623 {
7624 goto error;
7625 }
7626
7627 if (memcmp (buf, buf + bufsize / 2, len) != 0)
7628 goto error;
7629 }
7630
7631 free (buf);
7632 close (fd1);
7633 close (fd2);
7634
7635 return 1;
7636
7637 error:
7638 free (buf);
7639 close (fd1);
7640 close (fd2);
7641 return 0;
7642 }
7643
7644 /* Check that compiler's output doesn't differ across runs.
7645 TEMP_STDOUT_FILES and TEMP_STDERR_FILES are arrays of files, containing
7646 stdout and stderr for each compiler run. Return true if all of
7647 TEMP_STDOUT_FILES and TEMP_STDERR_FILES are equivalent. */
7648
7649 static bool
7650 check_repro (char **temp_stdout_files, char **temp_stderr_files)
7651 {
7652 int i;
7653 for (i = 0; i < RETRY_ICE_ATTEMPTS - 2; ++i)
7654 {
7655 if (!files_equal_p (temp_stdout_files[i], temp_stdout_files[i + 1])
7656 || !files_equal_p (temp_stderr_files[i], temp_stderr_files[i + 1]))
7657 {
7658 fnotice (stderr, "The bug is not reproducible, so it is"
7659 " likely a hardware or OS problem.\n");
7660 break;
7661 }
7662 }
7663 return i == RETRY_ICE_ATTEMPTS - 2;
7664 }
7665
7666 enum attempt_status {
7667 ATTEMPT_STATUS_FAIL_TO_RUN,
7668 ATTEMPT_STATUS_SUCCESS,
7669 ATTEMPT_STATUS_ICE
7670 };
7671
7672
7673 /* Run compiler with arguments NEW_ARGV to reproduce the ICE, storing stdout
7674 to OUT_TEMP and stderr to ERR_TEMP. If APPEND is TRUE, append to OUT_TEMP
7675 and ERR_TEMP instead of truncating. If EMIT_SYSTEM_INFO is TRUE, also write
7676 GCC configuration into to ERR_TEMP. Return ATTEMPT_STATUS_FAIL_TO_RUN if
7677 compiler failed to run, ATTEMPT_STATUS_ICE if compiled ICE-ed and
7678 ATTEMPT_STATUS_SUCCESS otherwise. */
7679
7680 static enum attempt_status
7681 run_attempt (const char **new_argv, const char *out_temp,
7682 const char *err_temp, int emit_system_info, int append)
7683 {
7684
7685 if (emit_system_info)
7686 {
7687 FILE *file_out = fopen (err_temp, "a");
7688 print_configuration (file_out);
7689 fputs ("\n", file_out);
7690 fclose (file_out);
7691 }
7692
7693 int exit_status;
7694 const char *errmsg;
7695 struct pex_obj *pex;
7696 int err;
7697 int pex_flags = PEX_USE_PIPES | PEX_LAST;
7698 enum attempt_status status = ATTEMPT_STATUS_FAIL_TO_RUN;
7699
7700 if (append)
7701 pex_flags |= PEX_STDOUT_APPEND | PEX_STDERR_APPEND;
7702
7703 pex = pex_init (PEX_USE_PIPES, new_argv[0], NULL);
7704 if (!pex)
7705 fatal_error (input_location, "%<pex_init%> failed: %m");
7706
7707 errmsg = pex_run (pex, pex_flags, new_argv[0],
7708 CONST_CAST2 (char *const *, const char **, &new_argv[1]),
7709 out_temp, err_temp, &err);
7710 if (errmsg != NULL)
7711 {
7712 errno = err;
7713 fatal_error (input_location,
7714 err ? G_ ("cannot execute %qs: %s: %m")
7715 : G_ ("cannot execute %qs: %s"),
7716 new_argv[0], errmsg);
7717 }
7718
7719 if (!pex_get_status (pex, 1, &exit_status))
7720 goto out;
7721
7722 switch (WEXITSTATUS (exit_status))
7723 {
7724 case ICE_EXIT_CODE:
7725 status = ATTEMPT_STATUS_ICE;
7726 break;
7727
7728 case SUCCESS_EXIT_CODE:
7729 status = ATTEMPT_STATUS_SUCCESS;
7730 break;
7731
7732 default:
7733 ;
7734 }
7735
7736 out:
7737 pex_free (pex);
7738 return status;
7739 }
7740
7741 /* This routine reads lines from IN file, adds C++ style comments
7742 at the begining of each line and writes result into OUT. */
7743
7744 static void
7745 insert_comments (const char *file_in, const char *file_out)
7746 {
7747 FILE *in = fopen (file_in, "rb");
7748 FILE *out = fopen (file_out, "wb");
7749 char line[256];
7750
7751 bool add_comment = true;
7752 while (fgets (line, sizeof (line), in))
7753 {
7754 if (add_comment)
7755 fputs ("// ", out);
7756 fputs (line, out);
7757 add_comment = strchr (line, '\n') != NULL;
7758 }
7759
7760 fclose (in);
7761 fclose (out);
7762 }
7763
7764 /* This routine adds preprocessed source code into the given ERR_FILE.
7765 To do this, it adds "-E" to NEW_ARGV and execute RUN_ATTEMPT routine to
7766 add information in report file. RUN_ATTEMPT should return
7767 ATTEMPT_STATUS_SUCCESS, in other case we cannot generate the report. */
7768
7769 static void
7770 do_report_bug (const char **new_argv, const int nargs,
7771 char **out_file, char **err_file)
7772 {
7773 int i, status;
7774 int fd = open (*out_file, O_RDWR | O_APPEND);
7775 if (fd < 0)
7776 return;
7777 write (fd, "\n//", 3);
7778 for (i = 0; i < nargs; i++)
7779 {
7780 write (fd, " ", 1);
7781 write (fd, new_argv[i], strlen (new_argv[i]));
7782 }
7783 write (fd, "\n\n", 2);
7784 close (fd);
7785 new_argv[nargs] = "-E";
7786 new_argv[nargs + 1] = NULL;
7787
7788 status = run_attempt (new_argv, *out_file, *err_file, 0, 1);
7789
7790 if (status == ATTEMPT_STATUS_SUCCESS)
7791 {
7792 fnotice (stderr, "Preprocessed source stored into %s file,"
7793 " please attach this to your bugreport.\n", *out_file);
7794 /* Make sure it is not deleted. */
7795 free (*out_file);
7796 *out_file = NULL;
7797 }
7798 }
7799
7800 /* Try to reproduce ICE. If bug is reproducible, generate report .err file
7801 containing GCC configuration, backtrace, compiler's command line options
7802 and preprocessed source code. */
7803
7804 static void
7805 try_generate_repro (const char **argv)
7806 {
7807 int i, nargs, out_arg = -1, quiet = 0, attempt;
7808 const char **new_argv;
7809 char *temp_files[RETRY_ICE_ATTEMPTS * 2];
7810 char **temp_stdout_files = &temp_files[0];
7811 char **temp_stderr_files = &temp_files[RETRY_ICE_ATTEMPTS];
7812
7813 if (gcc_input_filename == NULL || ! strcmp (gcc_input_filename, "-"))
7814 return;
7815
7816 for (nargs = 0; argv[nargs] != NULL; ++nargs)
7817 /* Only retry compiler ICEs, not preprocessor ones. */
7818 if (! strcmp (argv[nargs], "-E"))
7819 return;
7820 else if (argv[nargs][0] == '-' && argv[nargs][1] == 'o')
7821 {
7822 if (out_arg == -1)
7823 out_arg = nargs;
7824 else
7825 return;
7826 }
7827 /* If the compiler is going to output any time information,
7828 it might varry between invocations. */
7829 else if (! strcmp (argv[nargs], "-quiet"))
7830 quiet = 1;
7831 else if (! strcmp (argv[nargs], "-ftime-report"))
7832 return;
7833
7834 if (out_arg == -1 || !quiet)
7835 return;
7836
7837 memset (temp_files, '\0', sizeof (temp_files));
7838 new_argv = XALLOCAVEC (const char *, nargs + 4);
7839 memcpy (new_argv, argv, (nargs + 1) * sizeof (const char *));
7840 new_argv[nargs++] = "-frandom-seed=0";
7841 new_argv[nargs++] = "-fdump-noaddr";
7842 new_argv[nargs] = NULL;
7843 if (new_argv[out_arg][2] == '\0')
7844 new_argv[out_arg + 1] = "-";
7845 else
7846 new_argv[out_arg] = "-o-";
7847
7848 int status;
7849 for (attempt = 0; attempt < RETRY_ICE_ATTEMPTS; ++attempt)
7850 {
7851 int emit_system_info = 0;
7852 int append = 0;
7853 temp_stdout_files[attempt] = make_temp_file (".out");
7854 temp_stderr_files[attempt] = make_temp_file (".err");
7855
7856 if (attempt == RETRY_ICE_ATTEMPTS - 1)
7857 {
7858 append = 1;
7859 emit_system_info = 1;
7860 }
7861
7862 status = run_attempt (new_argv, temp_stdout_files[attempt],
7863 temp_stderr_files[attempt], emit_system_info,
7864 append);
7865
7866 if (status != ATTEMPT_STATUS_ICE)
7867 {
7868 fnotice (stderr, "The bug is not reproducible, so it is"
7869 " likely a hardware or OS problem.\n");
7870 goto out;
7871 }
7872 }
7873
7874 if (!check_repro (temp_stdout_files, temp_stderr_files))
7875 goto out;
7876
7877 {
7878 /* Insert commented out backtrace into report file. */
7879 char **stderr_commented = &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1];
7880 insert_comments (temp_stderr_files[RETRY_ICE_ATTEMPTS - 1],
7881 *stderr_commented);
7882
7883 /* In final attempt we append compiler options and preprocesssed code to last
7884 generated .out file with configuration and backtrace. */
7885 char **err = &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1];
7886 do_report_bug (new_argv, nargs, stderr_commented, err);
7887 }
7888
7889 out:
7890 for (i = 0; i < RETRY_ICE_ATTEMPTS * 2; i++)
7891 if (temp_files[i])
7892 {
7893 unlink (temp_stdout_files[i]);
7894 free (temp_stdout_files[i]);
7895 }
7896 }
7897
7898 /* Search for a file named NAME trying various prefixes including the
7899 user's -B prefix and some standard ones.
7900 Return the absolute file name found. If nothing is found, return NAME. */
7901
7902 static const char *
7903 find_file (const char *name)
7904 {
7905 char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
7906 return newname ? newname : name;
7907 }
7908
7909 /* Determine whether a directory exists. If LINKER, return 0 for
7910 certain fixed names not needed by the linker. */
7911
7912 static int
7913 is_directory (const char *path1, bool linker)
7914 {
7915 int len1;
7916 char *path;
7917 char *cp;
7918 struct stat st;
7919
7920 /* Ensure the string ends with "/.". The resulting path will be a
7921 directory even if the given path is a symbolic link. */
7922 len1 = strlen (path1);
7923 path = (char *) alloca (3 + len1);
7924 memcpy (path, path1, len1);
7925 cp = path + len1;
7926 if (!IS_DIR_SEPARATOR (cp[-1]))
7927 *cp++ = DIR_SEPARATOR;
7928 *cp++ = '.';
7929 *cp = '\0';
7930
7931 /* Exclude directories that the linker is known to search. */
7932 if (linker
7933 && IS_DIR_SEPARATOR (path[0])
7934 && ((cp - path == 6
7935 && filename_ncmp (path + 1, "lib", 3) == 0)
7936 || (cp - path == 10
7937 && filename_ncmp (path + 1, "usr", 3) == 0
7938 && IS_DIR_SEPARATOR (path[4])
7939 && filename_ncmp (path + 5, "lib", 3) == 0)))
7940 return 0;
7941
7942 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
7943 }
7944
7945 /* Set up the various global variables to indicate that we're processing
7946 the input file named FILENAME. */
7947
7948 void
7949 set_input (const char *filename)
7950 {
7951 const char *p;
7952
7953 gcc_input_filename = filename;
7954 input_filename_length = strlen (gcc_input_filename);
7955 input_basename = lbasename (gcc_input_filename);
7956
7957 /* Find a suffix starting with the last period,
7958 and set basename_length to exclude that suffix. */
7959 basename_length = strlen (input_basename);
7960 suffixed_basename_length = basename_length;
7961 p = input_basename + basename_length;
7962 while (p != input_basename && *p != '.')
7963 --p;
7964 if (*p == '.' && p != input_basename)
7965 {
7966 basename_length = p - input_basename;
7967 input_suffix = p + 1;
7968 }
7969 else
7970 input_suffix = "";
7971
7972 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
7973 we will need to do a stat on the gcc_input_filename. The
7974 INPUT_STAT_SET signals that the stat is needed. */
7975 input_stat_set = 0;
7976 }
7977 \f
7978 /* On fatal signals, delete all the temporary files. */
7979
7980 static void
7981 fatal_signal (int signum)
7982 {
7983 signal (signum, SIG_DFL);
7984 delete_failure_queue ();
7985 delete_temp_files ();
7986 /* Get the same signal again, this time not handled,
7987 so its normal effect occurs. */
7988 kill (getpid (), signum);
7989 }
7990
7991 /* Compare the contents of the two files named CMPFILE[0] and
7992 CMPFILE[1]. Return zero if they're identical, nonzero
7993 otherwise. */
7994
7995 static int
7996 compare_files (char *cmpfile[])
7997 {
7998 int ret = 0;
7999 FILE *temp[2] = { NULL, NULL };
8000 int i;
8001
8002 #if HAVE_MMAP_FILE
8003 {
8004 size_t length[2];
8005 void *map[2] = { NULL, NULL };
8006
8007 for (i = 0; i < 2; i++)
8008 {
8009 struct stat st;
8010
8011 if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode))
8012 {
8013 error ("%s: could not determine length of compare-debug file %s",
8014 gcc_input_filename, cmpfile[i]);
8015 ret = 1;
8016 break;
8017 }
8018
8019 length[i] = st.st_size;
8020 }
8021
8022 if (!ret && length[0] != length[1])
8023 {
8024 error ("%s: %<-fcompare-debug%> failure (length)", gcc_input_filename);
8025 ret = 1;
8026 }
8027
8028 if (!ret)
8029 for (i = 0; i < 2; i++)
8030 {
8031 int fd = open (cmpfile[i], O_RDONLY);
8032 if (fd < 0)
8033 {
8034 error ("%s: could not open compare-debug file %s",
8035 gcc_input_filename, cmpfile[i]);
8036 ret = 1;
8037 break;
8038 }
8039
8040 map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0);
8041 close (fd);
8042
8043 if (map[i] == (void *) MAP_FAILED)
8044 {
8045 ret = -1;
8046 break;
8047 }
8048 }
8049
8050 if (!ret)
8051 {
8052 if (memcmp (map[0], map[1], length[0]) != 0)
8053 {
8054 error ("%s: %<-fcompare-debug%> failure", gcc_input_filename);
8055 ret = 1;
8056 }
8057 }
8058
8059 for (i = 0; i < 2; i++)
8060 if (map[i])
8061 munmap ((caddr_t) map[i], length[i]);
8062
8063 if (ret >= 0)
8064 return ret;
8065
8066 ret = 0;
8067 }
8068 #endif
8069
8070 for (i = 0; i < 2; i++)
8071 {
8072 temp[i] = fopen (cmpfile[i], "r");
8073 if (!temp[i])
8074 {
8075 error ("%s: could not open compare-debug file %s",
8076 gcc_input_filename, cmpfile[i]);
8077 ret = 1;
8078 break;
8079 }
8080 }
8081
8082 if (!ret && temp[0] && temp[1])
8083 for (;;)
8084 {
8085 int c0, c1;
8086 c0 = fgetc (temp[0]);
8087 c1 = fgetc (temp[1]);
8088
8089 if (c0 != c1)
8090 {
8091 error ("%s: %<-fcompare-debug%> failure",
8092 gcc_input_filename);
8093 ret = 1;
8094 break;
8095 }
8096
8097 if (c0 == EOF)
8098 break;
8099 }
8100
8101 for (i = 1; i >= 0; i--)
8102 {
8103 if (temp[i])
8104 fclose (temp[i]);
8105 }
8106
8107 return ret;
8108 }
8109
8110 driver::driver (bool can_finalize, bool debug) :
8111 explicit_link_files (NULL),
8112 decoded_options (NULL)
8113 {
8114 env.init (can_finalize, debug);
8115 }
8116
8117 driver::~driver ()
8118 {
8119 XDELETEVEC (explicit_link_files);
8120 XDELETEVEC (decoded_options);
8121 }
8122
8123 /* driver::main is implemented as a series of driver:: method calls. */
8124
8125 int
8126 driver::main (int argc, char **argv)
8127 {
8128 bool early_exit;
8129
8130 set_progname (argv[0]);
8131 expand_at_files (&argc, &argv);
8132 decode_argv (argc, const_cast <const char **> (argv));
8133 global_initializations ();
8134 build_multilib_strings ();
8135 set_up_specs ();
8136 putenv_COLLECT_AS_OPTIONS (assembler_options);
8137 putenv_COLLECT_GCC (argv[0]);
8138 maybe_putenv_COLLECT_LTO_WRAPPER ();
8139 maybe_putenv_OFFLOAD_TARGETS ();
8140 handle_unrecognized_options ();
8141
8142 if (completion)
8143 {
8144 m_option_proposer.suggest_completion (completion);
8145 return 0;
8146 }
8147
8148 if (!maybe_print_and_exit ())
8149 return 0;
8150
8151 early_exit = prepare_infiles ();
8152 if (early_exit)
8153 return get_exit_code ();
8154
8155 do_spec_on_infiles ();
8156 maybe_run_linker (argv[0]);
8157 final_actions ();
8158 return get_exit_code ();
8159 }
8160
8161 /* Locate the final component of argv[0] after any leading path, and set
8162 the program name accordingly. */
8163
8164 void
8165 driver::set_progname (const char *argv0) const
8166 {
8167 const char *p = argv0 + strlen (argv0);
8168 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
8169 --p;
8170 progname = p;
8171
8172 xmalloc_set_program_name (progname);
8173 }
8174
8175 /* Expand any @ files within the command-line args,
8176 setting at_file_supplied if any were expanded. */
8177
8178 void
8179 driver::expand_at_files (int *argc, char ***argv) const
8180 {
8181 char **old_argv = *argv;
8182
8183 expandargv (argc, argv);
8184
8185 /* Determine if any expansions were made. */
8186 if (*argv != old_argv)
8187 at_file_supplied = true;
8188 }
8189
8190 /* Decode the command-line arguments from argc/argv into the
8191 decoded_options array. */
8192
8193 void
8194 driver::decode_argv (int argc, const char **argv)
8195 {
8196 init_opts_obstack ();
8197 init_options_struct (&global_options, &global_options_set);
8198
8199 decode_cmdline_options_to_array (argc, argv,
8200 CL_DRIVER,
8201 &decoded_options, &decoded_options_count);
8202 }
8203
8204 /* Perform various initializations and setup. */
8205
8206 void
8207 driver::global_initializations ()
8208 {
8209 /* Unlock the stdio streams. */
8210 unlock_std_streams ();
8211
8212 gcc_init_libintl ();
8213
8214 diagnostic_initialize (global_dc, 0);
8215 diagnostic_color_init (global_dc);
8216 diagnostic_urls_init (global_dc);
8217
8218 #ifdef GCC_DRIVER_HOST_INITIALIZATION
8219 /* Perform host dependent initialization when needed. */
8220 GCC_DRIVER_HOST_INITIALIZATION;
8221 #endif
8222
8223 if (atexit (delete_temp_files) != 0)
8224 fatal_error (input_location, "atexit failed");
8225
8226 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
8227 signal (SIGINT, fatal_signal);
8228 #ifdef SIGHUP
8229 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
8230 signal (SIGHUP, fatal_signal);
8231 #endif
8232 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
8233 signal (SIGTERM, fatal_signal);
8234 #ifdef SIGPIPE
8235 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
8236 signal (SIGPIPE, fatal_signal);
8237 #endif
8238 #ifdef SIGCHLD
8239 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
8240 receive the signal. A different setting is inheritable */
8241 signal (SIGCHLD, SIG_DFL);
8242 #endif
8243
8244 /* Parsing and gimplification sometimes need quite large stack.
8245 Increase stack size limits if possible. */
8246 stack_limit_increase (64 * 1024 * 1024);
8247
8248 /* Allocate the argument vector. */
8249 alloc_args ();
8250
8251 obstack_init (&obstack);
8252 }
8253
8254 /* Build multilib_select, et. al from the separate lines that make up each
8255 multilib selection. */
8256
8257 void
8258 driver::build_multilib_strings () const
8259 {
8260 {
8261 const char *p;
8262 const char *const *q = multilib_raw;
8263 int need_space;
8264
8265 obstack_init (&multilib_obstack);
8266 while ((p = *q++) != (char *) 0)
8267 obstack_grow (&multilib_obstack, p, strlen (p));
8268
8269 obstack_1grow (&multilib_obstack, 0);
8270 multilib_select = XOBFINISH (&multilib_obstack, const char *);
8271
8272 q = multilib_matches_raw;
8273 while ((p = *q++) != (char *) 0)
8274 obstack_grow (&multilib_obstack, p, strlen (p));
8275
8276 obstack_1grow (&multilib_obstack, 0);
8277 multilib_matches = XOBFINISH (&multilib_obstack, const char *);
8278
8279 q = multilib_exclusions_raw;
8280 while ((p = *q++) != (char *) 0)
8281 obstack_grow (&multilib_obstack, p, strlen (p));
8282
8283 obstack_1grow (&multilib_obstack, 0);
8284 multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
8285
8286 q = multilib_reuse_raw;
8287 while ((p = *q++) != (char *) 0)
8288 obstack_grow (&multilib_obstack, p, strlen (p));
8289
8290 obstack_1grow (&multilib_obstack, 0);
8291 multilib_reuse = XOBFINISH (&multilib_obstack, const char *);
8292
8293 need_space = FALSE;
8294 for (size_t i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
8295 {
8296 if (need_space)
8297 obstack_1grow (&multilib_obstack, ' ');
8298 obstack_grow (&multilib_obstack,
8299 multilib_defaults_raw[i],
8300 strlen (multilib_defaults_raw[i]));
8301 need_space = TRUE;
8302 }
8303
8304 obstack_1grow (&multilib_obstack, 0);
8305 multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
8306 }
8307 }
8308
8309 /* Set up the spec-handling machinery. */
8310
8311 void
8312 driver::set_up_specs () const
8313 {
8314 const char *spec_machine_suffix;
8315 char *specs_file;
8316 size_t i;
8317
8318 #ifdef INIT_ENVIRONMENT
8319 /* Set up any other necessary machine specific environment variables. */
8320 xputenv (INIT_ENVIRONMENT);
8321 #endif
8322
8323 /* Make a table of what switches there are (switches, n_switches).
8324 Make a table of specified input files (infiles, n_infiles).
8325 Decode switches that are handled locally. */
8326
8327 process_command (decoded_options_count, decoded_options);
8328
8329 /* Initialize the vector of specs to just the default.
8330 This means one element containing 0s, as a terminator. */
8331
8332 compilers = XNEWVAR (struct compiler, sizeof default_compilers);
8333 memcpy (compilers, default_compilers, sizeof default_compilers);
8334 n_compilers = n_default_compilers;
8335
8336 /* Read specs from a file if there is one. */
8337
8338 machine_suffix = concat (spec_host_machine, dir_separator_str, spec_version,
8339 accel_dir_suffix, dir_separator_str, NULL);
8340 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
8341
8342 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
8343 /* Read the specs file unless it is a default one. */
8344 if (specs_file != 0 && strcmp (specs_file, "specs"))
8345 read_specs (specs_file, true, false);
8346 else
8347 init_spec ();
8348
8349 #ifdef ACCEL_COMPILER
8350 spec_machine_suffix = machine_suffix;
8351 #else
8352 spec_machine_suffix = just_machine_suffix;
8353 #endif
8354
8355 /* We need to check standard_exec_prefix/spec_machine_suffix/specs
8356 for any override of as, ld and libraries. */
8357 specs_file = (char *) alloca (strlen (standard_exec_prefix)
8358 + strlen (spec_machine_suffix) + sizeof ("specs"));
8359 strcpy (specs_file, standard_exec_prefix);
8360 strcat (specs_file, spec_machine_suffix);
8361 strcat (specs_file, "specs");
8362 if (access (specs_file, R_OK) == 0)
8363 read_specs (specs_file, true, false);
8364
8365 /* Process any configure-time defaults specified for the command line
8366 options, via OPTION_DEFAULT_SPECS. */
8367 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
8368 do_option_spec (option_default_specs[i].name,
8369 option_default_specs[i].spec);
8370
8371 /* Process DRIVER_SELF_SPECS, adding any new options to the end
8372 of the command line. */
8373
8374 for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
8375 do_self_spec (driver_self_specs[i]);
8376
8377 /* If not cross-compiling, look for executables in the standard
8378 places. */
8379 if (*cross_compile == '0')
8380 {
8381 if (*md_exec_prefix)
8382 {
8383 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
8384 PREFIX_PRIORITY_LAST, 0, 0);
8385 }
8386 }
8387
8388 /* Process sysroot_suffix_spec. */
8389 if (*sysroot_suffix_spec != 0
8390 && !no_sysroot_suffix
8391 && do_spec_2 (sysroot_suffix_spec, NULL) == 0)
8392 {
8393 if (argbuf.length () > 1)
8394 error ("spec failure: more than one argument to "
8395 "%<SYSROOT_SUFFIX_SPEC%>");
8396 else if (argbuf.length () == 1)
8397 target_sysroot_suffix = xstrdup (argbuf.last ());
8398 }
8399
8400 #ifdef HAVE_LD_SYSROOT
8401 /* Pass the --sysroot option to the linker, if it supports that. If
8402 there is a sysroot_suffix_spec, it has already been processed by
8403 this point, so target_system_root really is the system root we
8404 should be using. */
8405 if (target_system_root)
8406 {
8407 obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
8408 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
8409 set_spec ("link", XOBFINISH (&obstack, const char *), false);
8410 }
8411 #endif
8412
8413 /* Process sysroot_hdrs_suffix_spec. */
8414 if (*sysroot_hdrs_suffix_spec != 0
8415 && !no_sysroot_suffix
8416 && do_spec_2 (sysroot_hdrs_suffix_spec, NULL) == 0)
8417 {
8418 if (argbuf.length () > 1)
8419 error ("spec failure: more than one argument "
8420 "to %<SYSROOT_HEADERS_SUFFIX_SPEC%>");
8421 else if (argbuf.length () == 1)
8422 target_sysroot_hdrs_suffix = xstrdup (argbuf.last ());
8423 }
8424
8425 /* Look for startfiles in the standard places. */
8426 if (*startfile_prefix_spec != 0
8427 && do_spec_2 (startfile_prefix_spec, NULL) == 0
8428 && do_spec_1 (" ", 0, NULL) == 0)
8429 {
8430 for (const char *arg : argbuf)
8431 add_sysrooted_prefix (&startfile_prefixes, arg, "BINUTILS",
8432 PREFIX_PRIORITY_LAST, 0, 1);
8433 }
8434 /* We should eventually get rid of all these and stick to
8435 startfile_prefix_spec exclusively. */
8436 else if (*cross_compile == '0' || target_system_root)
8437 {
8438 if (*md_startfile_prefix)
8439 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
8440 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8441
8442 if (*md_startfile_prefix_1)
8443 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
8444 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8445
8446 /* If standard_startfile_prefix is relative, base it on
8447 standard_exec_prefix. This lets us move the installed tree
8448 as a unit. If GCC_EXEC_PREFIX is defined, base
8449 standard_startfile_prefix on that as well.
8450
8451 If the prefix is relative, only search it for native compilers;
8452 otherwise we will search a directory containing host libraries. */
8453 if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
8454 add_sysrooted_prefix (&startfile_prefixes,
8455 standard_startfile_prefix, "BINUTILS",
8456 PREFIX_PRIORITY_LAST, 0, 1);
8457 else if (*cross_compile == '0')
8458 {
8459 add_prefix (&startfile_prefixes,
8460 concat (gcc_exec_prefix
8461 ? gcc_exec_prefix : standard_exec_prefix,
8462 machine_suffix,
8463 standard_startfile_prefix, NULL),
8464 NULL, PREFIX_PRIORITY_LAST, 0, 1);
8465 }
8466
8467 /* Sysrooted prefixes are relocated because target_system_root is
8468 also relocated by gcc_exec_prefix. */
8469 if (*standard_startfile_prefix_1)
8470 add_sysrooted_prefix (&startfile_prefixes,
8471 standard_startfile_prefix_1, "BINUTILS",
8472 PREFIX_PRIORITY_LAST, 0, 1);
8473 if (*standard_startfile_prefix_2)
8474 add_sysrooted_prefix (&startfile_prefixes,
8475 standard_startfile_prefix_2, "BINUTILS",
8476 PREFIX_PRIORITY_LAST, 0, 1);
8477 }
8478
8479 /* Process any user specified specs in the order given on the command
8480 line. */
8481 for (struct user_specs *uptr = user_specs_head; uptr; uptr = uptr->next)
8482 {
8483 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
8484 R_OK, true);
8485 read_specs (filename ? filename : uptr->filename, false, true);
8486 }
8487
8488 /* Process any user self specs. */
8489 {
8490 struct spec_list *sl;
8491 for (sl = specs; sl; sl = sl->next)
8492 if (sl->name_len == sizeof "self_spec" - 1
8493 && !strcmp (sl->name, "self_spec"))
8494 do_self_spec (*sl->ptr_spec);
8495 }
8496
8497 if (compare_debug)
8498 {
8499 enum save_temps save;
8500
8501 if (!compare_debug_second)
8502 {
8503 n_switches_debug_check[1] = n_switches;
8504 n_switches_alloc_debug_check[1] = n_switches_alloc;
8505 switches_debug_check[1] = XDUPVEC (struct switchstr, switches,
8506 n_switches_alloc);
8507
8508 do_self_spec ("%:compare-debug-self-opt()");
8509 n_switches_debug_check[0] = n_switches;
8510 n_switches_alloc_debug_check[0] = n_switches_alloc;
8511 switches_debug_check[0] = switches;
8512
8513 n_switches = n_switches_debug_check[1];
8514 n_switches_alloc = n_switches_alloc_debug_check[1];
8515 switches = switches_debug_check[1];
8516 }
8517
8518 /* Avoid crash when computing %j in this early. */
8519 save = save_temps_flag;
8520 save_temps_flag = SAVE_TEMPS_NONE;
8521
8522 compare_debug = -compare_debug;
8523 do_self_spec ("%:compare-debug-self-opt()");
8524
8525 save_temps_flag = save;
8526
8527 if (!compare_debug_second)
8528 {
8529 n_switches_debug_check[1] = n_switches;
8530 n_switches_alloc_debug_check[1] = n_switches_alloc;
8531 switches_debug_check[1] = switches;
8532 compare_debug = -compare_debug;
8533 n_switches = n_switches_debug_check[0];
8534 n_switches_alloc = n_switches_debug_check[0];
8535 switches = switches_debug_check[0];
8536 }
8537 }
8538
8539
8540 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
8541 if (gcc_exec_prefix)
8542 gcc_exec_prefix = concat (gcc_exec_prefix, spec_host_machine,
8543 dir_separator_str, spec_version,
8544 accel_dir_suffix, dir_separator_str, NULL);
8545
8546 /* Now we have the specs.
8547 Set the `valid' bits for switches that match anything in any spec. */
8548
8549 validate_all_switches ();
8550
8551 /* Now that we have the switches and the specs, set
8552 the subdirectory based on the options. */
8553 set_multilib_dir ();
8554 }
8555
8556 /* Set up to remember the pathname of gcc and any options
8557 needed for collect. We use argv[0] instead of progname because
8558 we need the complete pathname. */
8559
8560 void
8561 driver::putenv_COLLECT_GCC (const char *argv0) const
8562 {
8563 obstack_init (&collect_obstack);
8564 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
8565 obstack_grow (&collect_obstack, argv0, strlen (argv0) + 1);
8566 xputenv (XOBFINISH (&collect_obstack, char *));
8567 }
8568
8569 /* Set up to remember the pathname of the lto wrapper. */
8570
8571 void
8572 driver::maybe_putenv_COLLECT_LTO_WRAPPER () const
8573 {
8574 char *lto_wrapper_file;
8575
8576 if (have_c)
8577 lto_wrapper_file = NULL;
8578 else
8579 lto_wrapper_file = find_a_program ("lto-wrapper");
8580 if (lto_wrapper_file)
8581 {
8582 lto_wrapper_file = convert_white_space (lto_wrapper_file);
8583 set_static_spec_owned (&lto_wrapper_spec, lto_wrapper_file);
8584 obstack_init (&collect_obstack);
8585 obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=",
8586 sizeof ("COLLECT_LTO_WRAPPER=") - 1);
8587 obstack_grow (&collect_obstack, lto_wrapper_spec,
8588 strlen (lto_wrapper_spec) + 1);
8589 xputenv (XOBFINISH (&collect_obstack, char *));
8590 }
8591
8592 }
8593
8594 /* Set up to remember the names of offload targets. */
8595
8596 void
8597 driver::maybe_putenv_OFFLOAD_TARGETS () const
8598 {
8599 if (offload_targets && offload_targets[0] != '\0')
8600 {
8601 obstack_grow (&collect_obstack, "OFFLOAD_TARGET_NAMES=",
8602 sizeof ("OFFLOAD_TARGET_NAMES=") - 1);
8603 obstack_grow (&collect_obstack, offload_targets,
8604 strlen (offload_targets) + 1);
8605 xputenv (XOBFINISH (&collect_obstack, char *));
8606 #if OFFLOAD_DEFAULTED
8607 if (offload_targets_default)
8608 xputenv ("OFFLOAD_TARGET_DEFAULT=1");
8609 #endif
8610 }
8611
8612 free (offload_targets);
8613 offload_targets = NULL;
8614 }
8615
8616 /* Reject switches that no pass was interested in. */
8617
8618 void
8619 driver::handle_unrecognized_options ()
8620 {
8621 for (size_t i = 0; (int) i < n_switches; i++)
8622 if (! switches[i].validated)
8623 {
8624 const char *hint = m_option_proposer.suggest_option (switches[i].part1);
8625 if (hint)
8626 error ("unrecognized command-line option %<-%s%>;"
8627 " did you mean %<-%s%>?",
8628 switches[i].part1, hint);
8629 else
8630 error ("unrecognized command-line option %<-%s%>",
8631 switches[i].part1);
8632 }
8633 }
8634
8635 /* Handle the various -print-* options, returning 0 if the driver
8636 should exit, or nonzero if the driver should continue. */
8637
8638 int
8639 driver::maybe_print_and_exit () const
8640 {
8641 if (print_search_dirs)
8642 {
8643 printf (_("install: %s%s\n"),
8644 gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
8645 gcc_exec_prefix ? "" : machine_suffix);
8646 printf (_("programs: %s\n"),
8647 build_search_list (&exec_prefixes, "", false, false));
8648 printf (_("libraries: %s\n"),
8649 build_search_list (&startfile_prefixes, "", false, true));
8650 return (0);
8651 }
8652
8653 if (print_file_name)
8654 {
8655 printf ("%s\n", find_file (print_file_name));
8656 return (0);
8657 }
8658
8659 if (print_prog_name)
8660 {
8661 if (use_ld != NULL && ! strcmp (print_prog_name, "ld"))
8662 {
8663 /* Append USE_LD to the default linker. */
8664 #ifdef DEFAULT_LINKER
8665 char *ld;
8666 # ifdef HAVE_HOST_EXECUTABLE_SUFFIX
8667 int len = (sizeof (DEFAULT_LINKER)
8668 - sizeof (HOST_EXECUTABLE_SUFFIX));
8669 ld = NULL;
8670 if (len > 0)
8671 {
8672 char *default_linker = xstrdup (DEFAULT_LINKER);
8673 /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
8674 HOST_EXECUTABLE_SUFFIX. */
8675 if (! strcmp (&default_linker[len], HOST_EXECUTABLE_SUFFIX))
8676 {
8677 default_linker[len] = '\0';
8678 ld = concat (default_linker, use_ld,
8679 HOST_EXECUTABLE_SUFFIX, NULL);
8680 }
8681 }
8682 if (ld == NULL)
8683 # endif
8684 ld = concat (DEFAULT_LINKER, use_ld, NULL);
8685 if (access (ld, X_OK) == 0)
8686 {
8687 printf ("%s\n", ld);
8688 return (0);
8689 }
8690 #endif
8691 print_prog_name = concat (print_prog_name, use_ld, NULL);
8692 }
8693 char *newname = find_a_program (print_prog_name);
8694 printf ("%s\n", (newname ? newname : print_prog_name));
8695 return (0);
8696 }
8697
8698 if (print_multi_lib)
8699 {
8700 print_multilib_info ();
8701 return (0);
8702 }
8703
8704 if (print_multi_directory)
8705 {
8706 if (multilib_dir == NULL)
8707 printf (".\n");
8708 else
8709 printf ("%s\n", multilib_dir);
8710 return (0);
8711 }
8712
8713 if (print_multiarch)
8714 {
8715 if (multiarch_dir == NULL)
8716 printf ("\n");
8717 else
8718 printf ("%s\n", multiarch_dir);
8719 return (0);
8720 }
8721
8722 if (print_sysroot)
8723 {
8724 if (target_system_root)
8725 {
8726 if (target_sysroot_suffix)
8727 printf ("%s%s\n", target_system_root, target_sysroot_suffix);
8728 else
8729 printf ("%s\n", target_system_root);
8730 }
8731 return (0);
8732 }
8733
8734 if (print_multi_os_directory)
8735 {
8736 if (multilib_os_dir == NULL)
8737 printf (".\n");
8738 else
8739 printf ("%s\n", multilib_os_dir);
8740 return (0);
8741 }
8742
8743 if (print_sysroot_headers_suffix)
8744 {
8745 if (*sysroot_hdrs_suffix_spec)
8746 {
8747 printf("%s\n", (target_sysroot_hdrs_suffix
8748 ? target_sysroot_hdrs_suffix
8749 : ""));
8750 return (0);
8751 }
8752 else
8753 /* The error status indicates that only one set of fixed
8754 headers should be built. */
8755 fatal_error (input_location,
8756 "not configured with sysroot headers suffix");
8757 }
8758
8759 if (print_help_list)
8760 {
8761 display_help ();
8762
8763 if (! verbose_flag)
8764 {
8765 printf (_("\nFor bug reporting instructions, please see:\n"));
8766 printf ("%s.\n", bug_report_url);
8767
8768 return (0);
8769 }
8770
8771 /* We do not exit here. Instead we have created a fake input file
8772 called 'help-dummy' which needs to be compiled, and we pass this
8773 on the various sub-processes, along with the --help switch.
8774 Ensure their output appears after ours. */
8775 fputc ('\n', stdout);
8776 fflush (stdout);
8777 }
8778
8779 if (print_version)
8780 {
8781 printf (_("%s %s%s\n"), progname, pkgversion_string,
8782 version_string);
8783 printf ("Copyright %s 2022 Free Software Foundation, Inc.\n",
8784 _("(C)"));
8785 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
8786 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
8787 stdout);
8788 if (! verbose_flag)
8789 return 0;
8790
8791 /* We do not exit here. We use the same mechanism of --help to print
8792 the version of the sub-processes. */
8793 fputc ('\n', stdout);
8794 fflush (stdout);
8795 }
8796
8797 if (verbose_flag)
8798 {
8799 print_configuration (stderr);
8800 if (n_infiles == 0)
8801 return (0);
8802 }
8803
8804 return 1;
8805 }
8806
8807 /* Figure out what to do with each input file.
8808 Return true if we need to exit early from "main", false otherwise. */
8809
8810 bool
8811 driver::prepare_infiles ()
8812 {
8813 size_t i;
8814 int lang_n_infiles = 0;
8815
8816 if (n_infiles == added_libraries)
8817 fatal_error (input_location, "no input files");
8818
8819 if (seen_error ())
8820 /* Early exit needed from main. */
8821 return true;
8822
8823 /* Make a place to record the compiler output file names
8824 that correspond to the input files. */
8825
8826 i = n_infiles;
8827 i += lang_specific_extra_outfiles;
8828 outfiles = XCNEWVEC (const char *, i);
8829
8830 /* Record which files were specified explicitly as link input. */
8831
8832 explicit_link_files = XCNEWVEC (char, n_infiles);
8833
8834 combine_inputs = have_o || flag_wpa;
8835
8836 for (i = 0; (int) i < n_infiles; i++)
8837 {
8838 const char *name = infiles[i].name;
8839 struct compiler *compiler = lookup_compiler (name,
8840 strlen (name),
8841 infiles[i].language);
8842
8843 if (compiler && !(compiler->combinable))
8844 combine_inputs = false;
8845
8846 if (lang_n_infiles > 0 && compiler != input_file_compiler
8847 && infiles[i].language && infiles[i].language[0] != '*')
8848 infiles[i].incompiler = compiler;
8849 else if (compiler)
8850 {
8851 lang_n_infiles++;
8852 input_file_compiler = compiler;
8853 infiles[i].incompiler = compiler;
8854 }
8855 else
8856 {
8857 /* Since there is no compiler for this input file, assume it is a
8858 linker file. */
8859 explicit_link_files[i] = 1;
8860 infiles[i].incompiler = NULL;
8861 }
8862 infiles[i].compiled = false;
8863 infiles[i].preprocessed = false;
8864 }
8865
8866 if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
8867 fatal_error (input_location,
8868 "cannot specify %<-o%> with %<-c%>, %<-S%> or %<-E%> "
8869 "with multiple files");
8870
8871 /* No early exit needed from main; we can continue. */
8872 return false;
8873 }
8874
8875 /* Run the spec machinery on each input file. */
8876
8877 void
8878 driver::do_spec_on_infiles () const
8879 {
8880 size_t i;
8881
8882 for (i = 0; (int) i < n_infiles; i++)
8883 {
8884 int this_file_error = 0;
8885
8886 /* Tell do_spec what to substitute for %i. */
8887
8888 input_file_number = i;
8889 set_input (infiles[i].name);
8890
8891 if (infiles[i].compiled)
8892 continue;
8893
8894 /* Use the same thing in %o, unless cp->spec says otherwise. */
8895
8896 outfiles[i] = gcc_input_filename;
8897
8898 /* Figure out which compiler from the file's suffix. */
8899
8900 input_file_compiler
8901 = lookup_compiler (infiles[i].name, input_filename_length,
8902 infiles[i].language);
8903
8904 if (input_file_compiler)
8905 {
8906 /* Ok, we found an applicable compiler. Run its spec. */
8907
8908 if (input_file_compiler->spec[0] == '#')
8909 {
8910 error ("%s: %s compiler not installed on this system",
8911 gcc_input_filename, &input_file_compiler->spec[1]);
8912 this_file_error = 1;
8913 }
8914 else
8915 {
8916 int value;
8917
8918 if (compare_debug)
8919 {
8920 free (debug_check_temp_file[0]);
8921 debug_check_temp_file[0] = NULL;
8922
8923 free (debug_check_temp_file[1]);
8924 debug_check_temp_file[1] = NULL;
8925 }
8926
8927 value = do_spec (input_file_compiler->spec);
8928 infiles[i].compiled = true;
8929 if (value < 0)
8930 this_file_error = 1;
8931 else if (compare_debug && debug_check_temp_file[0])
8932 {
8933 if (verbose_flag)
8934 inform (UNKNOWN_LOCATION,
8935 "recompiling with %<-fcompare-debug%>");
8936
8937 compare_debug = -compare_debug;
8938 n_switches = n_switches_debug_check[1];
8939 n_switches_alloc = n_switches_alloc_debug_check[1];
8940 switches = switches_debug_check[1];
8941
8942 value = do_spec (input_file_compiler->spec);
8943
8944 compare_debug = -compare_debug;
8945 n_switches = n_switches_debug_check[0];
8946 n_switches_alloc = n_switches_alloc_debug_check[0];
8947 switches = switches_debug_check[0];
8948
8949 if (value < 0)
8950 {
8951 error ("during %<-fcompare-debug%> recompilation");
8952 this_file_error = 1;
8953 }
8954
8955 gcc_assert (debug_check_temp_file[1]
8956 && filename_cmp (debug_check_temp_file[0],
8957 debug_check_temp_file[1]));
8958
8959 if (verbose_flag)
8960 inform (UNKNOWN_LOCATION, "comparing final insns dumps");
8961
8962 if (compare_files (debug_check_temp_file))
8963 this_file_error = 1;
8964 }
8965
8966 if (compare_debug)
8967 {
8968 free (debug_check_temp_file[0]);
8969 debug_check_temp_file[0] = NULL;
8970
8971 free (debug_check_temp_file[1]);
8972 debug_check_temp_file[1] = NULL;
8973 }
8974 }
8975 }
8976
8977 /* If this file's name does not contain a recognized suffix,
8978 record it as explicit linker input. */
8979
8980 else
8981 explicit_link_files[i] = 1;
8982
8983 /* Clear the delete-on-failure queue, deleting the files in it
8984 if this compilation failed. */
8985
8986 if (this_file_error)
8987 {
8988 delete_failure_queue ();
8989 errorcount++;
8990 }
8991 /* If this compilation succeeded, don't delete those files later. */
8992 clear_failure_queue ();
8993 }
8994
8995 /* Reset the input file name to the first compile/object file name, for use
8996 with %b in LINK_SPEC. We use the first input file that we can find
8997 a compiler to compile it instead of using infiles.language since for
8998 languages other than C we use aliases that we then lookup later. */
8999 if (n_infiles > 0)
9000 {
9001 int i;
9002
9003 for (i = 0; i < n_infiles ; i++)
9004 if (infiles[i].incompiler
9005 || (infiles[i].language && infiles[i].language[0] != '*'))
9006 {
9007 set_input (infiles[i].name);
9008 break;
9009 }
9010 }
9011
9012 if (!seen_error ())
9013 {
9014 /* Make sure INPUT_FILE_NUMBER points to first available open
9015 slot. */
9016 input_file_number = n_infiles;
9017 if (lang_specific_pre_link ())
9018 errorcount++;
9019 }
9020 }
9021
9022 /* If we have to run the linker, do it now. */
9023
9024 void
9025 driver::maybe_run_linker (const char *argv0) const
9026 {
9027 size_t i;
9028 int linker_was_run = 0;
9029 int num_linker_inputs;
9030
9031 /* Determine if there are any linker input files. */
9032 num_linker_inputs = 0;
9033 for (i = 0; (int) i < n_infiles; i++)
9034 if (explicit_link_files[i] || outfiles[i] != NULL)
9035 num_linker_inputs++;
9036
9037 /* Arrange for temporary file names created during linking to take
9038 on names related with the linker output rather than with the
9039 inputs when appropriate. */
9040 if (outbase && *outbase)
9041 {
9042 if (dumpdir)
9043 {
9044 char *tofree = dumpdir;
9045 gcc_checking_assert (strlen (dumpdir) == dumpdir_length);
9046 dumpdir = concat (dumpdir, outbase, ".", NULL);
9047 free (tofree);
9048 }
9049 else
9050 dumpdir = concat (outbase, ".", NULL);
9051 dumpdir_length += strlen (outbase) + 1;
9052 dumpdir_trailing_dash_added = true;
9053 }
9054 else if (dumpdir_trailing_dash_added)
9055 {
9056 gcc_assert (dumpdir[dumpdir_length - 1] == '-');
9057 dumpdir[dumpdir_length - 1] = '.';
9058 }
9059
9060 if (dumpdir_trailing_dash_added)
9061 {
9062 gcc_assert (dumpdir_length > 0);
9063 gcc_assert (dumpdir[dumpdir_length - 1] == '.');
9064 dumpdir_length--;
9065 }
9066
9067 free (outbase);
9068 input_basename = outbase = NULL;
9069 outbase_length = suffixed_basename_length = basename_length = 0;
9070
9071 /* Run ld to link all the compiler output files. */
9072
9073 if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2)
9074 {
9075 int tmp = execution_count;
9076
9077 detect_jobserver ();
9078
9079 if (! have_c)
9080 {
9081 #if HAVE_LTO_PLUGIN > 0
9082 #if HAVE_LTO_PLUGIN == 2
9083 const char *fno_use_linker_plugin = "fno-use-linker-plugin";
9084 #else
9085 const char *fuse_linker_plugin = "fuse-linker-plugin";
9086 #endif
9087 #endif
9088
9089 /* We'll use ld if we can't find collect2. */
9090 if (! strcmp (linker_name_spec, "collect2"))
9091 {
9092 char *s = find_a_program ("collect2");
9093 if (s == NULL)
9094 set_static_spec_shared (&linker_name_spec, "ld");
9095 }
9096
9097 #if HAVE_LTO_PLUGIN > 0
9098 #if HAVE_LTO_PLUGIN == 2
9099 if (!switch_matches (fno_use_linker_plugin,
9100 fno_use_linker_plugin
9101 + strlen (fno_use_linker_plugin), 0))
9102 #else
9103 if (switch_matches (fuse_linker_plugin,
9104 fuse_linker_plugin
9105 + strlen (fuse_linker_plugin), 0))
9106 #endif
9107 {
9108 char *temp_spec = find_a_file (&exec_prefixes,
9109 LTOPLUGINSONAME, R_OK,
9110 false);
9111 if (!temp_spec)
9112 fatal_error (input_location,
9113 "%<-fuse-linker-plugin%>, but %s not found",
9114 LTOPLUGINSONAME);
9115 linker_plugin_file_spec = convert_white_space (temp_spec);
9116 }
9117 #endif
9118 set_static_spec_shared (&lto_gcc_spec, argv0);
9119 }
9120
9121 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
9122 for collect. */
9123 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
9124 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
9125
9126 if (print_subprocess_help == 1)
9127 {
9128 printf (_("\nLinker options\n==============\n\n"));
9129 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
9130 " to the linker.\n\n"));
9131 fflush (stdout);
9132 }
9133 int value = do_spec (link_command_spec);
9134 if (value < 0)
9135 errorcount = 1;
9136 linker_was_run = (tmp != execution_count);
9137 }
9138
9139 /* If options said don't run linker,
9140 complain about input files to be given to the linker. */
9141
9142 if (! linker_was_run && !seen_error ())
9143 for (i = 0; (int) i < n_infiles; i++)
9144 if (explicit_link_files[i]
9145 && !(infiles[i].language && infiles[i].language[0] == '*'))
9146 {
9147 warning (0, "%s: linker input file unused because linking not done",
9148 outfiles[i]);
9149 if (access (outfiles[i], F_OK) < 0)
9150 /* This is can be an indication the user specifed an errorneous
9151 separated option value, (or used the wrong prefix for an
9152 option). */
9153 error ("%s: linker input file not found: %m", outfiles[i]);
9154 }
9155 }
9156
9157 /* The end of "main". */
9158
9159 void
9160 driver::final_actions () const
9161 {
9162 /* Delete some or all of the temporary files we made. */
9163
9164 if (seen_error ())
9165 delete_failure_queue ();
9166 delete_temp_files ();
9167
9168 if (print_help_list)
9169 {
9170 printf (("\nFor bug reporting instructions, please see:\n"));
9171 printf ("%s\n", bug_report_url);
9172 }
9173 }
9174
9175 /* Detect whether jobserver is active and working. If not drop
9176 --jobserver-auth from MAKEFLAGS. */
9177
9178 void
9179 driver::detect_jobserver () const
9180 {
9181 /* Detect jobserver and drop it if it's not working. */
9182 const char *makeflags = env.get ("MAKEFLAGS");
9183 if (makeflags != NULL)
9184 {
9185 const char *needle = "--jobserver-auth=";
9186 const char *n = strstr (makeflags, needle);
9187 if (n != NULL)
9188 {
9189 int rfd = -1;
9190 int wfd = -1;
9191
9192 bool jobserver
9193 = (sscanf (n + strlen (needle), "%d,%d", &rfd, &wfd) == 2
9194 && rfd > 0
9195 && wfd > 0
9196 && is_valid_fd (rfd)
9197 && is_valid_fd (wfd));
9198
9199 /* Drop the jobserver if it's not working now. */
9200 if (!jobserver)
9201 {
9202 unsigned offset = n - makeflags;
9203 char *dup = xstrdup (makeflags);
9204 dup[offset] = '\0';
9205
9206 const char *space = strchr (makeflags + offset, ' ');
9207 if (space != NULL)
9208 strcpy (dup + offset, space);
9209 xputenv (concat ("MAKEFLAGS=", dup, NULL));
9210 }
9211 }
9212 }
9213 }
9214
9215 /* Determine what the exit code of the driver should be. */
9216
9217 int
9218 driver::get_exit_code () const
9219 {
9220 return (signal_count != 0 ? 2
9221 : seen_error () ? (pass_exit_codes ? greatest_status : 1)
9222 : 0);
9223 }
9224
9225 /* Find the proper compilation spec for the file name NAME,
9226 whose length is LENGTH. LANGUAGE is the specified language,
9227 or 0 if this file is to be passed to the linker. */
9228
9229 static struct compiler *
9230 lookup_compiler (const char *name, size_t length, const char *language)
9231 {
9232 struct compiler *cp;
9233
9234 /* If this was specified by the user to be a linker input, indicate that. */
9235 if (language != 0 && language[0] == '*')
9236 return 0;
9237
9238 /* Otherwise, look for the language, if one is spec'd. */
9239 if (language != 0)
9240 {
9241 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9242 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
9243 {
9244 if (name != NULL && strcmp (name, "-") == 0
9245 && (strcmp (cp->suffix, "@c-header") == 0
9246 || strcmp (cp->suffix, "@c++-header") == 0)
9247 && !have_E)
9248 fatal_error (input_location,
9249 "cannot use %<-%> as input filename for a "
9250 "precompiled header");
9251
9252 return cp;
9253 }
9254
9255 error ("language %s not recognized", language);
9256 return 0;
9257 }
9258
9259 /* Look for a suffix. */
9260 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9261 {
9262 if (/* The suffix `-' matches only the file name `-'. */
9263 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9264 || (strlen (cp->suffix) < length
9265 /* See if the suffix matches the end of NAME. */
9266 && !strcmp (cp->suffix,
9267 name + length - strlen (cp->suffix))
9268 ))
9269 break;
9270 }
9271
9272 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
9273 /* Look again, but case-insensitively this time. */
9274 if (cp < compilers)
9275 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9276 {
9277 if (/* The suffix `-' matches only the file name `-'. */
9278 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9279 || (strlen (cp->suffix) < length
9280 /* See if the suffix matches the end of NAME. */
9281 && ((!strcmp (cp->suffix,
9282 name + length - strlen (cp->suffix))
9283 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
9284 && !strcasecmp (cp->suffix,
9285 name + length - strlen (cp->suffix)))
9286 ))
9287 break;
9288 }
9289 #endif
9290
9291 if (cp >= compilers)
9292 {
9293 if (cp->spec[0] != '@')
9294 /* A non-alias entry: return it. */
9295 return cp;
9296
9297 /* An alias entry maps a suffix to a language.
9298 Search for the language; pass 0 for NAME and LENGTH
9299 to avoid infinite recursion if language not found. */
9300 return lookup_compiler (NULL, 0, cp->spec + 1);
9301 }
9302 return 0;
9303 }
9304 \f
9305 static char *
9306 save_string (const char *s, int len)
9307 {
9308 char *result = XNEWVEC (char, len + 1);
9309
9310 gcc_checking_assert (strlen (s) >= (unsigned int) len);
9311 memcpy (result, s, len);
9312 result[len] = 0;
9313 return result;
9314 }
9315
9316 \f
9317 static inline void
9318 validate_switches_from_spec (const char *spec, bool user)
9319 {
9320 const char *p = spec;
9321 char c;
9322 while ((c = *p++))
9323 if (c == '%'
9324 && (*p == '{'
9325 || *p == '<'
9326 || (*p == 'W' && *++p == '{')
9327 || (*p == '@' && *++p == '{')))
9328 /* We have a switch spec. */
9329 p = validate_switches (p + 1, user, *p == '{');
9330 }
9331
9332 static void
9333 validate_all_switches (void)
9334 {
9335 struct compiler *comp;
9336 struct spec_list *spec;
9337
9338 for (comp = compilers; comp->spec; comp++)
9339 validate_switches_from_spec (comp->spec, false);
9340
9341 /* Look through the linked list of specs read from the specs file. */
9342 for (spec = specs; spec; spec = spec->next)
9343 validate_switches_from_spec (*spec->ptr_spec, spec->user_p);
9344
9345 validate_switches_from_spec (link_command_spec, false);
9346 }
9347
9348 /* Look at the switch-name that comes after START and mark as valid
9349 all supplied switches that match it. If BRACED, handle other
9350 switches after '|' and '&', and specs after ':' until ';' or '}',
9351 going back for more switches after ';'. Without BRACED, handle
9352 only one atom. Return a pointer to whatever follows the handled
9353 items, after the closing brace if BRACED. */
9354
9355 static const char *
9356 validate_switches (const char *start, bool user_spec, bool braced)
9357 {
9358 const char *p = start;
9359 const char *atom;
9360 size_t len;
9361 int i;
9362 bool suffix = false;
9363 bool starred = false;
9364
9365 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
9366
9367 next_member:
9368 SKIP_WHITE ();
9369
9370 if (*p == '!')
9371 p++;
9372
9373 SKIP_WHITE ();
9374 if (*p == '.' || *p == ',')
9375 suffix = true, p++;
9376
9377 atom = p;
9378 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
9379 || *p == ',' || *p == '.' || *p == '@')
9380 p++;
9381 len = p - atom;
9382
9383 if (*p == '*')
9384 starred = true, p++;
9385
9386 SKIP_WHITE ();
9387
9388 if (!suffix)
9389 {
9390 /* Mark all matching switches as valid. */
9391 for (i = 0; i < n_switches; i++)
9392 if (!strncmp (switches[i].part1, atom, len)
9393 && (starred || switches[i].part1[len] == '\0')
9394 && (switches[i].known || user_spec))
9395 switches[i].validated = true;
9396 }
9397
9398 if (!braced)
9399 return p;
9400
9401 if (*p) p++;
9402 if (*p && (p[-1] == '|' || p[-1] == '&'))
9403 goto next_member;
9404
9405 if (*p && p[-1] == ':')
9406 {
9407 while (*p && *p != ';' && *p != '}')
9408 {
9409 if (*p == '%')
9410 {
9411 p++;
9412 if (*p == '{' || *p == '<')
9413 p = validate_switches (p+1, user_spec, *p == '{');
9414 else if (p[0] == 'W' && p[1] == '{')
9415 p = validate_switches (p+2, user_spec, true);
9416 else if (p[0] == '@' && p[1] == '{')
9417 p = validate_switches (p+2, user_spec, true);
9418 }
9419 else
9420 p++;
9421 }
9422
9423 if (*p) p++;
9424 if (*p && p[-1] == ';')
9425 goto next_member;
9426 }
9427
9428 return p;
9429 #undef SKIP_WHITE
9430 }
9431 \f
9432 struct mdswitchstr
9433 {
9434 const char *str;
9435 int len;
9436 };
9437
9438 static struct mdswitchstr *mdswitches;
9439 static int n_mdswitches;
9440
9441 /* Check whether a particular argument was used. The first time we
9442 canonicalize the switches to keep only the ones we care about. */
9443
9444 struct used_arg_t
9445 {
9446 public:
9447 int operator () (const char *p, int len);
9448 void finalize ();
9449
9450 private:
9451 struct mswitchstr
9452 {
9453 const char *str;
9454 const char *replace;
9455 int len;
9456 int rep_len;
9457 };
9458
9459 mswitchstr *mswitches;
9460 int n_mswitches;
9461
9462 };
9463
9464 used_arg_t used_arg;
9465
9466 int
9467 used_arg_t::operator () (const char *p, int len)
9468 {
9469 int i, j;
9470
9471 if (!mswitches)
9472 {
9473 struct mswitchstr *matches;
9474 const char *q;
9475 int cnt = 0;
9476
9477 /* Break multilib_matches into the component strings of string
9478 and replacement string. */
9479 for (q = multilib_matches; *q != '\0'; q++)
9480 if (*q == ';')
9481 cnt++;
9482
9483 matches
9484 = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
9485 i = 0;
9486 q = multilib_matches;
9487 while (*q != '\0')
9488 {
9489 matches[i].str = q;
9490 while (*q != ' ')
9491 {
9492 if (*q == '\0')
9493 {
9494 invalid_matches:
9495 fatal_error (input_location, "multilib spec %qs is invalid",
9496 multilib_matches);
9497 }
9498 q++;
9499 }
9500 matches[i].len = q - matches[i].str;
9501
9502 matches[i].replace = ++q;
9503 while (*q != ';' && *q != '\0')
9504 {
9505 if (*q == ' ')
9506 goto invalid_matches;
9507 q++;
9508 }
9509 matches[i].rep_len = q - matches[i].replace;
9510 i++;
9511 if (*q == ';')
9512 q++;
9513 }
9514
9515 /* Now build a list of the replacement string for switches that we care
9516 about. Make sure we allocate at least one entry. This prevents
9517 xmalloc from calling fatal, and prevents us from re-executing this
9518 block of code. */
9519 mswitches
9520 = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
9521 for (i = 0; i < n_switches; i++)
9522 if ((switches[i].live_cond & SWITCH_IGNORE) == 0)
9523 {
9524 int xlen = strlen (switches[i].part1);
9525 for (j = 0; j < cnt; j++)
9526 if (xlen == matches[j].len
9527 && ! strncmp (switches[i].part1, matches[j].str, xlen))
9528 {
9529 mswitches[n_mswitches].str = matches[j].replace;
9530 mswitches[n_mswitches].len = matches[j].rep_len;
9531 mswitches[n_mswitches].replace = (char *) 0;
9532 mswitches[n_mswitches].rep_len = 0;
9533 n_mswitches++;
9534 break;
9535 }
9536 }
9537
9538 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
9539 on the command line nor any options mutually incompatible with
9540 them. */
9541 for (i = 0; i < n_mdswitches; i++)
9542 {
9543 const char *r;
9544
9545 for (q = multilib_options; *q != '\0'; *q && q++)
9546 {
9547 while (*q == ' ')
9548 q++;
9549
9550 r = q;
9551 while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
9552 || strchr (" /", q[mdswitches[i].len]) == NULL)
9553 {
9554 while (*q != ' ' && *q != '/' && *q != '\0')
9555 q++;
9556 if (*q != '/')
9557 break;
9558 q++;
9559 }
9560
9561 if (*q != ' ' && *q != '\0')
9562 {
9563 while (*r != ' ' && *r != '\0')
9564 {
9565 q = r;
9566 while (*q != ' ' && *q != '/' && *q != '\0')
9567 q++;
9568
9569 if (used_arg (r, q - r))
9570 break;
9571
9572 if (*q != '/')
9573 {
9574 mswitches[n_mswitches].str = mdswitches[i].str;
9575 mswitches[n_mswitches].len = mdswitches[i].len;
9576 mswitches[n_mswitches].replace = (char *) 0;
9577 mswitches[n_mswitches].rep_len = 0;
9578 n_mswitches++;
9579 break;
9580 }
9581
9582 r = q + 1;
9583 }
9584 break;
9585 }
9586 }
9587 }
9588 }
9589
9590 for (i = 0; i < n_mswitches; i++)
9591 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
9592 return 1;
9593
9594 return 0;
9595 }
9596
9597 void used_arg_t::finalize ()
9598 {
9599 XDELETEVEC (mswitches);
9600 mswitches = NULL;
9601 n_mswitches = 0;
9602 }
9603
9604
9605 static int
9606 default_arg (const char *p, int len)
9607 {
9608 int i;
9609
9610 for (i = 0; i < n_mdswitches; i++)
9611 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
9612 return 1;
9613
9614 return 0;
9615 }
9616
9617 /* Work out the subdirectory to use based on the options. The format of
9618 multilib_select is a list of elements. Each element is a subdirectory
9619 name followed by a list of options followed by a semicolon. The format
9620 of multilib_exclusions is the same, but without the preceding
9621 directory. First gcc will check the exclusions, if none of the options
9622 beginning with an exclamation point are present, and all of the other
9623 options are present, then we will ignore this completely. Passing
9624 that, gcc will consider each multilib_select in turn using the same
9625 rules for matching the options. If a match is found, that subdirectory
9626 will be used.
9627 A subdirectory name is optionally followed by a colon and the corresponding
9628 multiarch name. */
9629
9630 static void
9631 set_multilib_dir (void)
9632 {
9633 const char *p;
9634 unsigned int this_path_len;
9635 const char *this_path, *this_arg;
9636 const char *start, *end;
9637 int not_arg;
9638 int ok, ndfltok, first;
9639
9640 n_mdswitches = 0;
9641 start = multilib_defaults;
9642 while (*start == ' ' || *start == '\t')
9643 start++;
9644 while (*start != '\0')
9645 {
9646 n_mdswitches++;
9647 while (*start != ' ' && *start != '\t' && *start != '\0')
9648 start++;
9649 while (*start == ' ' || *start == '\t')
9650 start++;
9651 }
9652
9653 if (n_mdswitches)
9654 {
9655 int i = 0;
9656
9657 mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
9658 for (start = multilib_defaults; *start != '\0'; start = end + 1)
9659 {
9660 while (*start == ' ' || *start == '\t')
9661 start++;
9662
9663 if (*start == '\0')
9664 break;
9665
9666 for (end = start + 1;
9667 *end != ' ' && *end != '\t' && *end != '\0'; end++)
9668 ;
9669
9670 obstack_grow (&multilib_obstack, start, end - start);
9671 obstack_1grow (&multilib_obstack, 0);
9672 mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
9673 mdswitches[i++].len = end - start;
9674
9675 if (*end == '\0')
9676 break;
9677 }
9678 }
9679
9680 p = multilib_exclusions;
9681 while (*p != '\0')
9682 {
9683 /* Ignore newlines. */
9684 if (*p == '\n')
9685 {
9686 ++p;
9687 continue;
9688 }
9689
9690 /* Check the arguments. */
9691 ok = 1;
9692 while (*p != ';')
9693 {
9694 if (*p == '\0')
9695 {
9696 invalid_exclusions:
9697 fatal_error (input_location, "multilib exclusions %qs is invalid",
9698 multilib_exclusions);
9699 }
9700
9701 if (! ok)
9702 {
9703 ++p;
9704 continue;
9705 }
9706
9707 this_arg = p;
9708 while (*p != ' ' && *p != ';')
9709 {
9710 if (*p == '\0')
9711 goto invalid_exclusions;
9712 ++p;
9713 }
9714
9715 if (*this_arg != '!')
9716 not_arg = 0;
9717 else
9718 {
9719 not_arg = 1;
9720 ++this_arg;
9721 }
9722
9723 ok = used_arg (this_arg, p - this_arg);
9724 if (not_arg)
9725 ok = ! ok;
9726
9727 if (*p == ' ')
9728 ++p;
9729 }
9730
9731 if (ok)
9732 return;
9733
9734 ++p;
9735 }
9736
9737 first = 1;
9738 p = multilib_select;
9739
9740 /* Append multilib reuse rules if any. With those rules, we can reuse
9741 one multilib for certain different options sets. */
9742 if (strlen (multilib_reuse) > 0)
9743 p = concat (p, multilib_reuse, NULL);
9744
9745 while (*p != '\0')
9746 {
9747 /* Ignore newlines. */
9748 if (*p == '\n')
9749 {
9750 ++p;
9751 continue;
9752 }
9753
9754 /* Get the initial path. */
9755 this_path = p;
9756 while (*p != ' ')
9757 {
9758 if (*p == '\0')
9759 {
9760 invalid_select:
9761 fatal_error (input_location, "multilib select %qs %qs is invalid",
9762 multilib_select, multilib_reuse);
9763 }
9764 ++p;
9765 }
9766 this_path_len = p - this_path;
9767
9768 /* Check the arguments. */
9769 ok = 1;
9770 ndfltok = 1;
9771 ++p;
9772 while (*p != ';')
9773 {
9774 if (*p == '\0')
9775 goto invalid_select;
9776
9777 if (! ok)
9778 {
9779 ++p;
9780 continue;
9781 }
9782
9783 this_arg = p;
9784 while (*p != ' ' && *p != ';')
9785 {
9786 if (*p == '\0')
9787 goto invalid_select;
9788 ++p;
9789 }
9790
9791 if (*this_arg != '!')
9792 not_arg = 0;
9793 else
9794 {
9795 not_arg = 1;
9796 ++this_arg;
9797 }
9798
9799 /* If this is a default argument, we can just ignore it.
9800 This is true even if this_arg begins with '!'. Beginning
9801 with '!' does not mean that this argument is necessarily
9802 inappropriate for this library: it merely means that
9803 there is a more specific library which uses this
9804 argument. If this argument is a default, we need not
9805 consider that more specific library. */
9806 ok = used_arg (this_arg, p - this_arg);
9807 if (not_arg)
9808 ok = ! ok;
9809
9810 if (! ok)
9811 ndfltok = 0;
9812
9813 if (default_arg (this_arg, p - this_arg))
9814 ok = 1;
9815
9816 if (*p == ' ')
9817 ++p;
9818 }
9819
9820 if (ok && first)
9821 {
9822 if (this_path_len != 1
9823 || this_path[0] != '.')
9824 {
9825 char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
9826 char *q;
9827
9828 strncpy (new_multilib_dir, this_path, this_path_len);
9829 new_multilib_dir[this_path_len] = '\0';
9830 q = strchr (new_multilib_dir, ':');
9831 if (q != NULL)
9832 *q = '\0';
9833 multilib_dir = new_multilib_dir;
9834 }
9835 first = 0;
9836 }
9837
9838 if (ndfltok)
9839 {
9840 const char *q = this_path, *end = this_path + this_path_len;
9841
9842 while (q < end && *q != ':')
9843 q++;
9844 if (q < end)
9845 {
9846 const char *q2 = q + 1, *ml_end = end;
9847 char *new_multilib_os_dir;
9848
9849 while (q2 < end && *q2 != ':')
9850 q2++;
9851 if (*q2 == ':')
9852 ml_end = q2;
9853 if (ml_end - q == 1)
9854 multilib_os_dir = xstrdup (".");
9855 else
9856 {
9857 new_multilib_os_dir = XNEWVEC (char, ml_end - q);
9858 memcpy (new_multilib_os_dir, q + 1, ml_end - q - 1);
9859 new_multilib_os_dir[ml_end - q - 1] = '\0';
9860 multilib_os_dir = new_multilib_os_dir;
9861 }
9862
9863 if (q2 < end && *q2 == ':')
9864 {
9865 char *new_multiarch_dir = XNEWVEC (char, end - q2);
9866 memcpy (new_multiarch_dir, q2 + 1, end - q2 - 1);
9867 new_multiarch_dir[end - q2 - 1] = '\0';
9868 multiarch_dir = new_multiarch_dir;
9869 }
9870 break;
9871 }
9872 }
9873
9874 ++p;
9875 }
9876
9877 if (multilib_dir == NULL && multilib_os_dir != NULL
9878 && strcmp (multilib_os_dir, ".") == 0)
9879 {
9880 free (CONST_CAST (char *, multilib_os_dir));
9881 multilib_os_dir = NULL;
9882 }
9883 else if (multilib_dir != NULL && multilib_os_dir == NULL)
9884 multilib_os_dir = multilib_dir;
9885 }
9886
9887 /* Print out the multiple library subdirectory selection
9888 information. This prints out a series of lines. Each line looks
9889 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
9890 required. Only the desired options are printed out, the negative
9891 matches. The options are print without a leading dash. There are
9892 no spaces to make it easy to use the information in the shell.
9893 Each subdirectory is printed only once. This assumes the ordering
9894 generated by the genmultilib script. Also, we leave out ones that match
9895 the exclusions. */
9896
9897 static void
9898 print_multilib_info (void)
9899 {
9900 const char *p = multilib_select;
9901 const char *last_path = 0, *this_path;
9902 int skip;
9903 int not_arg;
9904 unsigned int last_path_len = 0;
9905
9906 while (*p != '\0')
9907 {
9908 skip = 0;
9909 /* Ignore newlines. */
9910 if (*p == '\n')
9911 {
9912 ++p;
9913 continue;
9914 }
9915
9916 /* Get the initial path. */
9917 this_path = p;
9918 while (*p != ' ')
9919 {
9920 if (*p == '\0')
9921 {
9922 invalid_select:
9923 fatal_error (input_location,
9924 "multilib select %qs is invalid", multilib_select);
9925 }
9926
9927 ++p;
9928 }
9929
9930 /* When --disable-multilib was used but target defines
9931 MULTILIB_OSDIRNAMES, entries starting with .: (and not starting
9932 with .:: for multiarch configurations) are there just to find
9933 multilib_os_dir, so skip them from output. */
9934 if (this_path[0] == '.' && this_path[1] == ':' && this_path[2] != ':')
9935 skip = 1;
9936
9937 /* Check for matches with the multilib_exclusions. We don't bother
9938 with the '!' in either list. If any of the exclusion rules match
9939 all of its options with the select rule, we skip it. */
9940 {
9941 const char *e = multilib_exclusions;
9942 const char *this_arg;
9943
9944 while (*e != '\0')
9945 {
9946 int m = 1;
9947 /* Ignore newlines. */
9948 if (*e == '\n')
9949 {
9950 ++e;
9951 continue;
9952 }
9953
9954 /* Check the arguments. */
9955 while (*e != ';')
9956 {
9957 const char *q;
9958 int mp = 0;
9959
9960 if (*e == '\0')
9961 {
9962 invalid_exclusion:
9963 fatal_error (input_location,
9964 "multilib exclusion %qs is invalid",
9965 multilib_exclusions);
9966 }
9967
9968 if (! m)
9969 {
9970 ++e;
9971 continue;
9972 }
9973
9974 this_arg = e;
9975
9976 while (*e != ' ' && *e != ';')
9977 {
9978 if (*e == '\0')
9979 goto invalid_exclusion;
9980 ++e;
9981 }
9982
9983 q = p + 1;
9984 while (*q != ';')
9985 {
9986 const char *arg;
9987 int len = e - this_arg;
9988
9989 if (*q == '\0')
9990 goto invalid_select;
9991
9992 arg = q;
9993
9994 while (*q != ' ' && *q != ';')
9995 {
9996 if (*q == '\0')
9997 goto invalid_select;
9998 ++q;
9999 }
10000
10001 if (! strncmp (arg, this_arg,
10002 (len < q - arg) ? q - arg : len)
10003 || default_arg (this_arg, e - this_arg))
10004 {
10005 mp = 1;
10006 break;
10007 }
10008
10009 if (*q == ' ')
10010 ++q;
10011 }
10012
10013 if (! mp)
10014 m = 0;
10015
10016 if (*e == ' ')
10017 ++e;
10018 }
10019
10020 if (m)
10021 {
10022 skip = 1;
10023 break;
10024 }
10025
10026 if (*e != '\0')
10027 ++e;
10028 }
10029 }
10030
10031 if (! skip)
10032 {
10033 /* If this is a duplicate, skip it. */
10034 skip = (last_path != 0
10035 && (unsigned int) (p - this_path) == last_path_len
10036 && ! filename_ncmp (last_path, this_path, last_path_len));
10037
10038 last_path = this_path;
10039 last_path_len = p - this_path;
10040 }
10041
10042 /* If all required arguments are default arguments, and no default
10043 arguments appear in the ! argument list, then we can skip it.
10044 We will already have printed a directory identical to this one
10045 which does not require that default argument. */
10046 if (! skip)
10047 {
10048 const char *q;
10049 bool default_arg_ok = false;
10050
10051 q = p + 1;
10052 while (*q != ';')
10053 {
10054 const char *arg;
10055
10056 if (*q == '\0')
10057 goto invalid_select;
10058
10059 if (*q == '!')
10060 {
10061 not_arg = 1;
10062 q++;
10063 }
10064 else
10065 not_arg = 0;
10066 arg = q;
10067
10068 while (*q != ' ' && *q != ';')
10069 {
10070 if (*q == '\0')
10071 goto invalid_select;
10072 ++q;
10073 }
10074
10075 if (default_arg (arg, q - arg))
10076 {
10077 /* Stop checking if any default arguments appeared in not
10078 list. */
10079 if (not_arg)
10080 {
10081 default_arg_ok = false;
10082 break;
10083 }
10084
10085 default_arg_ok = true;
10086 }
10087 else if (!not_arg)
10088 {
10089 /* Stop checking if any required argument is not provided by
10090 default arguments. */
10091 default_arg_ok = false;
10092 break;
10093 }
10094
10095 if (*q == ' ')
10096 ++q;
10097 }
10098
10099 /* Make sure all default argument is OK for this multi-lib set. */
10100 if (default_arg_ok)
10101 skip = 1;
10102 else
10103 skip = 0;
10104 }
10105
10106 if (! skip)
10107 {
10108 const char *p1;
10109
10110 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
10111 putchar (*p1);
10112 putchar (';');
10113 }
10114
10115 ++p;
10116 while (*p != ';')
10117 {
10118 int use_arg;
10119
10120 if (*p == '\0')
10121 goto invalid_select;
10122
10123 if (skip)
10124 {
10125 ++p;
10126 continue;
10127 }
10128
10129 use_arg = *p != '!';
10130
10131 if (use_arg)
10132 putchar ('@');
10133
10134 while (*p != ' ' && *p != ';')
10135 {
10136 if (*p == '\0')
10137 goto invalid_select;
10138 if (use_arg)
10139 putchar (*p);
10140 ++p;
10141 }
10142
10143 if (*p == ' ')
10144 ++p;
10145 }
10146
10147 if (! skip)
10148 {
10149 /* If there are extra options, print them now. */
10150 if (multilib_extra && *multilib_extra)
10151 {
10152 int print_at = TRUE;
10153 const char *q;
10154
10155 for (q = multilib_extra; *q != '\0'; q++)
10156 {
10157 if (*q == ' ')
10158 print_at = TRUE;
10159 else
10160 {
10161 if (print_at)
10162 putchar ('@');
10163 putchar (*q);
10164 print_at = FALSE;
10165 }
10166 }
10167 }
10168
10169 putchar ('\n');
10170 }
10171
10172 ++p;
10173 }
10174 }
10175 \f
10176 /* getenv built-in spec function.
10177
10178 Returns the value of the environment variable given by its first argument,
10179 concatenated with the second argument. If the variable is not defined, a
10180 fatal error is issued unless such undefs are internally allowed, in which
10181 case the variable name prefixed by a '/' is used as the variable value.
10182
10183 The leading '/' allows using the result at a spot where a full path would
10184 normally be expected and when the actual value doesn't really matter since
10185 undef vars are allowed. */
10186
10187 static const char *
10188 getenv_spec_function (int argc, const char **argv)
10189 {
10190 const char *value;
10191 const char *varname;
10192
10193 char *result;
10194 char *ptr;
10195 size_t len;
10196
10197 if (argc != 2)
10198 return NULL;
10199
10200 varname = argv[0];
10201 value = env.get (varname);
10202
10203 /* If the variable isn't defined and this is allowed, craft our expected
10204 return value. Assume variable names used in specs strings don't contain
10205 any active spec character so don't need escaping. */
10206 if (!value && spec_undefvar_allowed)
10207 {
10208 result = XNEWVAR (char, strlen(varname) + 2);
10209 sprintf (result, "/%s", varname);
10210 return result;
10211 }
10212
10213 if (!value)
10214 fatal_error (input_location,
10215 "environment variable %qs not defined", varname);
10216
10217 /* We have to escape every character of the environment variable so
10218 they are not interpreted as active spec characters. A
10219 particularly painful case is when we are reading a variable
10220 holding a windows path complete with \ separators. */
10221 len = strlen (value) * 2 + strlen (argv[1]) + 1;
10222 result = XNEWVAR (char, len);
10223 for (ptr = result; *value; ptr += 2)
10224 {
10225 ptr[0] = '\\';
10226 ptr[1] = *value++;
10227 }
10228
10229 strcpy (ptr, argv[1]);
10230
10231 return result;
10232 }
10233
10234 /* if-exists built-in spec function.
10235
10236 Checks to see if the file specified by the absolute pathname in
10237 ARGS exists. Returns that pathname if found.
10238
10239 The usual use for this function is to check for a library file
10240 (whose name has been expanded with %s). */
10241
10242 static const char *
10243 if_exists_spec_function (int argc, const char **argv)
10244 {
10245 /* Must have only one argument. */
10246 if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10247 return argv[0];
10248
10249 return NULL;
10250 }
10251
10252 /* if-exists-else built-in spec function.
10253
10254 This is like if-exists, but takes an additional argument which
10255 is returned if the first argument does not exist. */
10256
10257 static const char *
10258 if_exists_else_spec_function (int argc, const char **argv)
10259 {
10260 /* Must have exactly two arguments. */
10261 if (argc != 2)
10262 return NULL;
10263
10264 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10265 return argv[0];
10266
10267 return argv[1];
10268 }
10269
10270 /* if-exists-then-else built-in spec function.
10271
10272 Checks to see if the file specified by the absolute pathname in
10273 the first arg exists. Returns the second arg if so, otherwise returns
10274 the third arg if it is present. */
10275
10276 static const char *
10277 if_exists_then_else_spec_function (int argc, const char **argv)
10278 {
10279
10280 /* Must have two or three arguments. */
10281 if (argc != 2 && argc != 3)
10282 return NULL;
10283
10284 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10285 return argv[1];
10286
10287 if (argc == 3)
10288 return argv[2];
10289
10290 return NULL;
10291 }
10292
10293 /* sanitize built-in spec function.
10294
10295 This returns non-NULL, if sanitizing address, thread or
10296 any of the undefined behavior sanitizers. */
10297
10298 static const char *
10299 sanitize_spec_function (int argc, const char **argv)
10300 {
10301 if (argc != 1)
10302 return NULL;
10303
10304 if (strcmp (argv[0], "address") == 0)
10305 return (flag_sanitize & SANITIZE_USER_ADDRESS) ? "" : NULL;
10306 if (strcmp (argv[0], "hwaddress") == 0)
10307 return (flag_sanitize & SANITIZE_USER_HWADDRESS) ? "" : NULL;
10308 if (strcmp (argv[0], "kernel-address") == 0)
10309 return (flag_sanitize & SANITIZE_KERNEL_ADDRESS) ? "" : NULL;
10310 if (strcmp (argv[0], "kernel-hwaddress") == 0)
10311 return (flag_sanitize & SANITIZE_KERNEL_HWADDRESS) ? "" : NULL;
10312 if (strcmp (argv[0], "thread") == 0)
10313 return (flag_sanitize & SANITIZE_THREAD) ? "" : NULL;
10314 if (strcmp (argv[0], "undefined") == 0)
10315 return ((flag_sanitize
10316 & (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT))
10317 && !flag_sanitize_undefined_trap_on_error) ? "" : NULL;
10318 if (strcmp (argv[0], "leak") == 0)
10319 return ((flag_sanitize
10320 & (SANITIZE_ADDRESS | SANITIZE_LEAK | SANITIZE_THREAD))
10321 == SANITIZE_LEAK) ? "" : NULL;
10322 return NULL;
10323 }
10324
10325 /* replace-outfile built-in spec function.
10326
10327 This looks for the first argument in the outfiles array's name and
10328 replaces it with the second argument. */
10329
10330 static const char *
10331 replace_outfile_spec_function (int argc, const char **argv)
10332 {
10333 int i;
10334 /* Must have exactly two arguments. */
10335 if (argc != 2)
10336 abort ();
10337
10338 for (i = 0; i < n_infiles; i++)
10339 {
10340 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10341 outfiles[i] = xstrdup (argv[1]);
10342 }
10343 return NULL;
10344 }
10345
10346 /* remove-outfile built-in spec function.
10347 *
10348 * This looks for the first argument in the outfiles array's name and
10349 * removes it. */
10350
10351 static const char *
10352 remove_outfile_spec_function (int argc, const char **argv)
10353 {
10354 int i;
10355 /* Must have exactly one argument. */
10356 if (argc != 1)
10357 abort ();
10358
10359 for (i = 0; i < n_infiles; i++)
10360 {
10361 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10362 outfiles[i] = NULL;
10363 }
10364 return NULL;
10365 }
10366
10367 /* Given two version numbers, compares the two numbers.
10368 A version number must match the regular expression
10369 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
10370 */
10371 static int
10372 compare_version_strings (const char *v1, const char *v2)
10373 {
10374 int rresult;
10375 regex_t r;
10376
10377 if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
10378 REG_EXTENDED | REG_NOSUB) != 0)
10379 abort ();
10380 rresult = regexec (&r, v1, 0, NULL, 0);
10381 if (rresult == REG_NOMATCH)
10382 fatal_error (input_location, "invalid version number %qs", v1);
10383 else if (rresult != 0)
10384 abort ();
10385 rresult = regexec (&r, v2, 0, NULL, 0);
10386 if (rresult == REG_NOMATCH)
10387 fatal_error (input_location, "invalid version number %qs", v2);
10388 else if (rresult != 0)
10389 abort ();
10390
10391 return strverscmp (v1, v2);
10392 }
10393
10394
10395 /* version_compare built-in spec function.
10396
10397 This takes an argument of the following form:
10398
10399 <comparison-op> <arg1> [<arg2>] <switch> <result>
10400
10401 and produces "result" if the comparison evaluates to true,
10402 and nothing if it doesn't.
10403
10404 The supported <comparison-op> values are:
10405
10406 >= true if switch is a later (or same) version than arg1
10407 !> opposite of >=
10408 < true if switch is an earlier version than arg1
10409 !< opposite of <
10410 >< true if switch is arg1 or later, and earlier than arg2
10411 <> true if switch is earlier than arg1 or is arg2 or later
10412
10413 If the switch is not present, the condition is false unless
10414 the first character of the <comparison-op> is '!'.
10415
10416 For example,
10417 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
10418 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
10419
10420 static const char *
10421 version_compare_spec_function (int argc, const char **argv)
10422 {
10423 int comp1, comp2;
10424 size_t switch_len;
10425 const char *switch_value = NULL;
10426 int nargs = 1, i;
10427 bool result;
10428
10429 if (argc < 3)
10430 fatal_error (input_location, "too few arguments to %%:version-compare");
10431 if (argv[0][0] == '\0')
10432 abort ();
10433 if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
10434 nargs = 2;
10435 if (argc != nargs + 3)
10436 fatal_error (input_location, "too many arguments to %%:version-compare");
10437
10438 switch_len = strlen (argv[nargs + 1]);
10439 for (i = 0; i < n_switches; i++)
10440 if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
10441 && check_live_switch (i, switch_len))
10442 switch_value = switches[i].part1 + switch_len;
10443
10444 if (switch_value == NULL)
10445 comp1 = comp2 = -1;
10446 else
10447 {
10448 comp1 = compare_version_strings (switch_value, argv[1]);
10449 if (nargs == 2)
10450 comp2 = compare_version_strings (switch_value, argv[2]);
10451 else
10452 comp2 = -1; /* This value unused. */
10453 }
10454
10455 switch (argv[0][0] << 8 | argv[0][1])
10456 {
10457 case '>' << 8 | '=':
10458 result = comp1 >= 0;
10459 break;
10460 case '!' << 8 | '<':
10461 result = comp1 >= 0 || switch_value == NULL;
10462 break;
10463 case '<' << 8:
10464 result = comp1 < 0;
10465 break;
10466 case '!' << 8 | '>':
10467 result = comp1 < 0 || switch_value == NULL;
10468 break;
10469 case '>' << 8 | '<':
10470 result = comp1 >= 0 && comp2 < 0;
10471 break;
10472 case '<' << 8 | '>':
10473 result = comp1 < 0 || comp2 >= 0;
10474 break;
10475
10476 default:
10477 fatal_error (input_location,
10478 "unknown operator %qs in %%:version-compare", argv[0]);
10479 }
10480 if (! result)
10481 return NULL;
10482
10483 return argv[nargs + 2];
10484 }
10485
10486 /* %:include builtin spec function. This differs from %include in that it
10487 can be nested inside a spec, and thus be conditionalized. It takes
10488 one argument, the filename, and looks for it in the startfile path.
10489 The result is always NULL, i.e. an empty expansion. */
10490
10491 static const char *
10492 include_spec_function (int argc, const char **argv)
10493 {
10494 char *file;
10495
10496 if (argc != 1)
10497 abort ();
10498
10499 file = find_a_file (&startfile_prefixes, argv[0], R_OK, true);
10500 read_specs (file ? file : argv[0], false, false);
10501
10502 return NULL;
10503 }
10504
10505 /* %:find-file spec function. This function replaces its argument by
10506 the file found through find_file, that is the -print-file-name gcc
10507 program option. */
10508 static const char *
10509 find_file_spec_function (int argc, const char **argv)
10510 {
10511 const char *file;
10512
10513 if (argc != 1)
10514 abort ();
10515
10516 file = find_file (argv[0]);
10517 return file;
10518 }
10519
10520
10521 /* %:find-plugindir spec function. This function replaces its argument
10522 by the -iplugindir=<dir> option. `dir' is found through find_file, that
10523 is the -print-file-name gcc program option. */
10524 static const char *
10525 find_plugindir_spec_function (int argc, const char **argv ATTRIBUTE_UNUSED)
10526 {
10527 const char *option;
10528
10529 if (argc != 0)
10530 abort ();
10531
10532 option = concat ("-iplugindir=", find_file ("plugin"), NULL);
10533 return option;
10534 }
10535
10536
10537 /* %:print-asm-header spec function. Print a banner to say that the
10538 following output is from the assembler. */
10539
10540 static const char *
10541 print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
10542 const char **argv ATTRIBUTE_UNUSED)
10543 {
10544 printf (_("Assembler options\n=================\n\n"));
10545 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
10546 fflush (stdout);
10547 return NULL;
10548 }
10549
10550 /* Get a random number for -frandom-seed */
10551
10552 static unsigned HOST_WIDE_INT
10553 get_random_number (void)
10554 {
10555 unsigned HOST_WIDE_INT ret = 0;
10556 int fd;
10557
10558 fd = open ("/dev/urandom", O_RDONLY);
10559 if (fd >= 0)
10560 {
10561 read (fd, &ret, sizeof (HOST_WIDE_INT));
10562 close (fd);
10563 if (ret)
10564 return ret;
10565 }
10566
10567 /* Get some more or less random data. */
10568 #ifdef HAVE_GETTIMEOFDAY
10569 {
10570 struct timeval tv;
10571
10572 gettimeofday (&tv, NULL);
10573 ret = tv.tv_sec * 1000 + tv.tv_usec / 1000;
10574 }
10575 #else
10576 {
10577 time_t now = time (NULL);
10578
10579 if (now != (time_t)-1)
10580 ret = (unsigned) now;
10581 }
10582 #endif
10583
10584 return ret ^ getpid ();
10585 }
10586
10587 /* %:compare-debug-dump-opt spec function. Save the last argument,
10588 expected to be the last -fdump-final-insns option, or generate a
10589 temporary. */
10590
10591 static const char *
10592 compare_debug_dump_opt_spec_function (int arg,
10593 const char **argv ATTRIBUTE_UNUSED)
10594 {
10595 char *ret;
10596 char *name;
10597 int which;
10598 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
10599
10600 if (arg != 0)
10601 fatal_error (input_location,
10602 "too many arguments to %%:compare-debug-dump-opt");
10603
10604 do_spec_2 ("%{fdump-final-insns=*:%*}", NULL);
10605 do_spec_1 (" ", 0, NULL);
10606
10607 if (argbuf.length () > 0
10608 && strcmp (argv[argbuf.length () - 1], ".") != 0)
10609 {
10610 if (!compare_debug)
10611 return NULL;
10612
10613 name = xstrdup (argv[argbuf.length () - 1]);
10614 ret = NULL;
10615 }
10616 else
10617 {
10618 if (argbuf.length () > 0)
10619 do_spec_2 ("%B.gkd", NULL);
10620 else if (!compare_debug)
10621 return NULL;
10622 else
10623 do_spec_2 ("%{!save-temps*:%g.gkd}%{save-temps*:%B.gkd}", NULL);
10624
10625 do_spec_1 (" ", 0, NULL);
10626
10627 gcc_assert (argbuf.length () > 0);
10628
10629 name = xstrdup (argbuf.last ());
10630
10631 char *arg = quote_spec (xstrdup (name));
10632 ret = concat ("-fdump-final-insns=", arg, NULL);
10633 free (arg);
10634 }
10635
10636 which = compare_debug < 0;
10637 debug_check_temp_file[which] = name;
10638
10639 if (!which)
10640 {
10641 unsigned HOST_WIDE_INT value = get_random_number ();
10642
10643 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
10644 }
10645
10646 if (*random_seed)
10647 {
10648 char *tmp = ret;
10649 ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ",
10650 ret, NULL);
10651 free (tmp);
10652 }
10653
10654 if (which)
10655 *random_seed = 0;
10656
10657 return ret;
10658 }
10659
10660 /* %:compare-debug-self-opt spec function. Expands to the options
10661 that are to be passed in the second compilation of
10662 compare-debug. */
10663
10664 static const char *
10665 compare_debug_self_opt_spec_function (int arg,
10666 const char **argv ATTRIBUTE_UNUSED)
10667 {
10668 if (arg != 0)
10669 fatal_error (input_location,
10670 "too many arguments to %%:compare-debug-self-opt");
10671
10672 if (compare_debug >= 0)
10673 return NULL;
10674
10675 return concat ("\
10676 %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
10677 %<fdump-final-insns=* -w -S -o %j \
10678 %{!fcompare-debug-second:-fcompare-debug-second} \
10679 ", compare_debug_opt, NULL);
10680 }
10681
10682 /* %:pass-through-libs spec function. Finds all -l options and input
10683 file names in the lib spec passed to it, and makes a list of them
10684 prepended with the plugin option to cause them to be passed through
10685 to the final link after all the new object files have been added. */
10686
10687 const char *
10688 pass_through_libs_spec_func (int argc, const char **argv)
10689 {
10690 char *prepended = xstrdup (" ");
10691 int n;
10692 /* Shlemiel the painter's algorithm. Innately horrible, but at least
10693 we know that there will never be more than a handful of strings to
10694 concat, and it's only once per run, so it's not worth optimising. */
10695 for (n = 0; n < argc; n++)
10696 {
10697 char *old = prepended;
10698 /* Anything that isn't an option is a full path to an output
10699 file; pass it through if it ends in '.a'. Among options,
10700 pass only -l. */
10701 if (argv[n][0] == '-' && argv[n][1] == 'l')
10702 {
10703 const char *lopt = argv[n] + 2;
10704 /* Handle both joined and non-joined -l options. If for any
10705 reason there's a trailing -l with no joined or following
10706 arg just discard it. */
10707 if (!*lopt && ++n >= argc)
10708 break;
10709 else if (!*lopt)
10710 lopt = argv[n];
10711 prepended = concat (prepended, "-plugin-opt=-pass-through=-l",
10712 lopt, " ", NULL);
10713 }
10714 else if (!strcmp (".a", argv[n] + strlen (argv[n]) - 2))
10715 {
10716 prepended = concat (prepended, "-plugin-opt=-pass-through=",
10717 argv[n], " ", NULL);
10718 }
10719 if (prepended != old)
10720 free (old);
10721 }
10722 return prepended;
10723 }
10724
10725 static bool
10726 not_actual_file_p (const char *name)
10727 {
10728 return (strcmp (name, "-") == 0
10729 || strcmp (name, HOST_BIT_BUCKET) == 0);
10730 }
10731
10732 /* %:dumps spec function. Take an optional argument that overrides
10733 the default extension for -dumpbase and -dumpbase-ext.
10734 Return -dumpdir, -dumpbase and -dumpbase-ext, if needed. */
10735 const char *
10736 dumps_spec_func (int argc, const char **argv ATTRIBUTE_UNUSED)
10737 {
10738 const char *ext = dumpbase_ext;
10739 char *p;
10740
10741 char *args[3] = { NULL, NULL, NULL };
10742 int nargs = 0;
10743
10744 /* Do not compute a default for -dumpbase-ext when -dumpbase was
10745 given explicitly. */
10746 if (dumpbase && *dumpbase && !ext)
10747 ext = "";
10748
10749 if (argc == 1)
10750 {
10751 /* Do not override the explicitly-specified -dumpbase-ext with
10752 the specs-provided overrider. */
10753 if (!ext)
10754 ext = argv[0];
10755 }
10756 else if (argc != 0)
10757 fatal_error (input_location, "too many arguments for %%:dumps");
10758
10759 if (dumpdir)
10760 {
10761 p = quote_spec_arg (xstrdup (dumpdir));
10762 args[nargs++] = concat (" -dumpdir ", p, NULL);
10763 free (p);
10764 }
10765
10766 if (!ext)
10767 ext = input_basename + basename_length;
10768
10769 /* Use the precomputed outbase, or compute dumpbase from
10770 input_basename, just like %b would. */
10771 char *base;
10772
10773 if (dumpbase && *dumpbase)
10774 {
10775 base = xstrdup (dumpbase);
10776 p = base + outbase_length;
10777 gcc_checking_assert (strncmp (base, outbase, outbase_length) == 0);
10778 gcc_checking_assert (strcmp (p, ext) == 0);
10779 }
10780 else if (outbase_length)
10781 {
10782 base = xstrndup (outbase, outbase_length);
10783 p = NULL;
10784 }
10785 else
10786 {
10787 base = xstrndup (input_basename, suffixed_basename_length);
10788 p = base + basename_length;
10789 }
10790
10791 if (compare_debug < 0 || !p || strcmp (p, ext) != 0)
10792 {
10793 if (p)
10794 *p = '\0';
10795
10796 const char *gk;
10797 if (compare_debug < 0)
10798 gk = ".gk";
10799 else
10800 gk = "";
10801
10802 p = concat (base, gk, ext, NULL);
10803
10804 free (base);
10805 base = p;
10806 }
10807
10808 base = quote_spec_arg (base);
10809 args[nargs++] = concat (" -dumpbase ", base, NULL);
10810 free (base);
10811
10812 if (*ext)
10813 {
10814 p = quote_spec_arg (xstrdup (ext));
10815 args[nargs++] = concat (" -dumpbase-ext ", p, NULL);
10816 free (p);
10817 }
10818
10819 const char *ret = concat (args[0], args[1], args[2], NULL);
10820 while (nargs > 0)
10821 free (args[--nargs]);
10822
10823 return ret;
10824 }
10825
10826 /* Returns "" if ARGV[ARGC - 2] is greater than ARGV[ARGC-1].
10827 Otherwise, return NULL. */
10828
10829 static const char *
10830 greater_than_spec_func (int argc, const char **argv)
10831 {
10832 char *converted;
10833
10834 if (argc == 1)
10835 return NULL;
10836
10837 gcc_assert (argc >= 2);
10838
10839 long arg = strtol (argv[argc - 2], &converted, 10);
10840 gcc_assert (converted != argv[argc - 2]);
10841
10842 long lim = strtol (argv[argc - 1], &converted, 10);
10843 gcc_assert (converted != argv[argc - 1]);
10844
10845 if (arg > lim)
10846 return "";
10847
10848 return NULL;
10849 }
10850
10851 /* Returns "" if debug_info_level is greater than ARGV[ARGC-1].
10852 Otherwise, return NULL. */
10853
10854 static const char *
10855 debug_level_greater_than_spec_func (int argc, const char **argv)
10856 {
10857 char *converted;
10858
10859 if (argc != 1)
10860 fatal_error (input_location,
10861 "wrong number of arguments to %%:debug-level-gt");
10862
10863 long arg = strtol (argv[0], &converted, 10);
10864 gcc_assert (converted != argv[0]);
10865
10866 if (debug_info_level > arg)
10867 return "";
10868
10869 return NULL;
10870 }
10871
10872 /* Returns "" if dwarf_version is greater than ARGV[ARGC-1].
10873 Otherwise, return NULL. */
10874
10875 static const char *
10876 dwarf_version_greater_than_spec_func (int argc, const char **argv)
10877 {
10878 char *converted;
10879
10880 if (argc != 1)
10881 fatal_error (input_location,
10882 "wrong number of arguments to %%:dwarf-version-gt");
10883
10884 long arg = strtol (argv[0], &converted, 10);
10885 gcc_assert (converted != argv[0]);
10886
10887 if (dwarf_version > arg)
10888 return "";
10889
10890 return NULL;
10891 }
10892
10893 static void
10894 path_prefix_reset (path_prefix *prefix)
10895 {
10896 struct prefix_list *iter, *next;
10897 iter = prefix->plist;
10898 while (iter)
10899 {
10900 next = iter->next;
10901 free (const_cast <char *> (iter->prefix));
10902 XDELETE (iter);
10903 iter = next;
10904 }
10905 prefix->plist = 0;
10906 prefix->max_len = 0;
10907 }
10908
10909 /* The function takes 3 arguments: OPTION name, file name and location
10910 where we search for Fortran modules.
10911 When the FILE is found by find_file, return OPTION=path_to_file. */
10912
10913 static const char *
10914 find_fortran_preinclude_file (int argc, const char **argv)
10915 {
10916 char *result = NULL;
10917 if (argc != 3)
10918 return NULL;
10919
10920 struct path_prefix prefixes = { 0, 0, "preinclude" };
10921
10922 /* Search first for 'finclude' folder location for a header file
10923 installed by the compiler (similar to omp_lib.h). */
10924 add_prefix (&prefixes, argv[2], NULL, 0, 0, 0);
10925 #ifdef TOOL_INCLUDE_DIR
10926 /* Then search: <prefix>/<target>/<include>/finclude */
10927 add_prefix (&prefixes, TOOL_INCLUDE_DIR "/finclude/",
10928 NULL, 0, 0, 0);
10929 #endif
10930 #ifdef NATIVE_SYSTEM_HEADER_DIR
10931 /* Then search: <sysroot>/usr/include/finclude/<multilib> */
10932 add_sysrooted_hdrs_prefix (&prefixes, NATIVE_SYSTEM_HEADER_DIR "/finclude/",
10933 NULL, 0, 0, 0);
10934 #endif
10935
10936 const char *path = find_a_file (&include_prefixes, argv[1], R_OK, false);
10937 if (path != NULL)
10938 result = concat (argv[0], path, NULL);
10939 else
10940 {
10941 path = find_a_file (&prefixes, argv[1], R_OK, false);
10942 if (path != NULL)
10943 result = concat (argv[0], path, NULL);
10944 }
10945
10946 path_prefix_reset (&prefixes);
10947 return result;
10948 }
10949
10950 /* If any character in ORIG fits QUOTE_P (_, P), reallocate the string
10951 so as to precede every one of them with a backslash. Return the
10952 original string or the reallocated one. */
10953
10954 static inline char *
10955 quote_string (char *orig, bool (*quote_p)(char, void *), void *p)
10956 {
10957 int len, number_of_space = 0;
10958
10959 for (len = 0; orig[len]; len++)
10960 if (quote_p (orig[len], p))
10961 number_of_space++;
10962
10963 if (number_of_space)
10964 {
10965 char *new_spec = (char *) xmalloc (len + number_of_space + 1);
10966 int j, k;
10967 for (j = 0, k = 0; j <= len; j++, k++)
10968 {
10969 if (quote_p (orig[j], p))
10970 new_spec[k++] = '\\';
10971 new_spec[k] = orig[j];
10972 }
10973 free (orig);
10974 return new_spec;
10975 }
10976 else
10977 return orig;
10978 }
10979
10980 /* Return true iff C is any of the characters convert_white_space
10981 should quote. */
10982
10983 static inline bool
10984 whitespace_to_convert_p (char c, void *)
10985 {
10986 return (c == ' ' || c == '\t');
10987 }
10988
10989 /* Insert backslash before spaces in ORIG (usually a file path), to
10990 avoid being broken by spec parser.
10991
10992 This function is needed as do_spec_1 treats white space (' ' and '\t')
10993 as the end of an argument. But in case of -plugin /usr/gcc install/xxx.so,
10994 the file name should be treated as a single argument rather than being
10995 broken into multiple. Solution is to insert '\\' before the space in a
10996 file name.
10997
10998 This function converts and only converts all occurrence of ' '
10999 to '\\' + ' ' and '\t' to '\\' + '\t'. For example:
11000 "a b" -> "a\\ b"
11001 "a b" -> "a\\ \\ b"
11002 "a\tb" -> "a\\\tb"
11003 "a\\ b" -> "a\\\\ b"
11004
11005 orig: input null-terminating string that was allocated by xalloc. The
11006 memory it points to might be freed in this function. Behavior undefined
11007 if ORIG wasn't xalloced or was freed already at entry.
11008
11009 Return: ORIG if no conversion needed. Otherwise a newly allocated string
11010 that was converted from ORIG. */
11011
11012 static char *
11013 convert_white_space (char *orig)
11014 {
11015 return quote_string (orig, whitespace_to_convert_p, NULL);
11016 }
11017
11018 /* Return true iff C matches any of the spec active characters. */
11019 static inline bool
11020 quote_spec_char_p (char c, void *)
11021 {
11022 switch (c)
11023 {
11024 case ' ':
11025 case '\t':
11026 case '\n':
11027 case '|':
11028 case '%':
11029 case '\\':
11030 return true;
11031
11032 default:
11033 return false;
11034 }
11035 }
11036
11037 /* Like convert_white_space, but deactivate all active spec chars by
11038 quoting them. */
11039
11040 static inline char *
11041 quote_spec (char *orig)
11042 {
11043 return quote_string (orig, quote_spec_char_p, NULL);
11044 }
11045
11046 /* Like quote_spec, but also turn an empty string into the spec for an
11047 empty argument. */
11048
11049 static inline char *
11050 quote_spec_arg (char *orig)
11051 {
11052 if (!*orig)
11053 {
11054 free (orig);
11055 return xstrdup ("%\"");
11056 }
11057
11058 return quote_spec (orig);
11059 }
11060
11061 /* Restore all state within gcc.cc to the initial state, so that the driver
11062 code can be safely re-run in-process.
11063
11064 Many const char * variables are referenced by static specs (see
11065 INIT_STATIC_SPEC above). These variables are restored to their default
11066 values by a simple loop over the static specs.
11067
11068 For other variables, we directly restore them all to their initial
11069 values (often implicitly 0).
11070
11071 Free the various obstacks in this file, along with "opts_obstack"
11072 from opts.cc.
11073
11074 This function also restores any environment variables that were changed. */
11075
11076 void
11077 driver::finalize ()
11078 {
11079 env.restore ();
11080 diagnostic_finish (global_dc);
11081
11082 is_cpp_driver = 0;
11083 at_file_supplied = 0;
11084 print_help_list = 0;
11085 print_version = 0;
11086 verbose_only_flag = 0;
11087 print_subprocess_help = 0;
11088 use_ld = NULL;
11089 report_times_to_file = NULL;
11090 target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
11091 target_system_root_changed = 0;
11092 target_sysroot_suffix = 0;
11093 target_sysroot_hdrs_suffix = 0;
11094 save_temps_flag = SAVE_TEMPS_NONE;
11095 save_temps_overrides_dumpdir = false;
11096 dumpdir_trailing_dash_added = false;
11097 free (dumpdir);
11098 free (dumpbase);
11099 free (dumpbase_ext);
11100 free (outbase);
11101 dumpdir = dumpbase = dumpbase_ext = outbase = NULL;
11102 dumpdir_length = outbase_length = 0;
11103 spec_machine = DEFAULT_TARGET_MACHINE;
11104 greatest_status = 1;
11105
11106 obstack_free (&obstack, NULL);
11107 obstack_free (&opts_obstack, NULL); /* in opts.cc */
11108 obstack_free (&collect_obstack, NULL);
11109
11110 link_command_spec = LINK_COMMAND_SPEC;
11111
11112 obstack_free (&multilib_obstack, NULL);
11113
11114 user_specs_head = NULL;
11115 user_specs_tail = NULL;
11116
11117 /* Within the "compilers" vec, the fields "suffix" and "spec" were
11118 statically allocated for the default compilers, but dynamically
11119 allocated for additional compilers. Delete them for the latter. */
11120 for (int i = n_default_compilers; i < n_compilers; i++)
11121 {
11122 free (const_cast <char *> (compilers[i].suffix));
11123 free (const_cast <char *> (compilers[i].spec));
11124 }
11125 XDELETEVEC (compilers);
11126 compilers = NULL;
11127 n_compilers = 0;
11128
11129 linker_options.truncate (0);
11130 assembler_options.truncate (0);
11131 preprocessor_options.truncate (0);
11132
11133 path_prefix_reset (&exec_prefixes);
11134 path_prefix_reset (&startfile_prefixes);
11135 path_prefix_reset (&include_prefixes);
11136
11137 machine_suffix = 0;
11138 just_machine_suffix = 0;
11139 gcc_exec_prefix = 0;
11140 gcc_libexec_prefix = 0;
11141 set_static_spec_shared (&md_exec_prefix, MD_EXEC_PREFIX);
11142 set_static_spec_shared (&md_startfile_prefix, MD_STARTFILE_PREFIX);
11143 set_static_spec_shared (&md_startfile_prefix_1, MD_STARTFILE_PREFIX_1);
11144 multilib_dir = 0;
11145 multilib_os_dir = 0;
11146 multiarch_dir = 0;
11147
11148 /* Free any specs dynamically-allocated by set_spec.
11149 These will be at the head of the list, before the
11150 statically-allocated ones. */
11151 if (specs)
11152 {
11153 while (specs != static_specs)
11154 {
11155 spec_list *next = specs->next;
11156 free (const_cast <char *> (specs->name));
11157 XDELETE (specs);
11158 specs = next;
11159 }
11160 specs = 0;
11161 }
11162 for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
11163 {
11164 spec_list *sl = &static_specs[i];
11165 if (sl->alloc_p)
11166 {
11167 free (const_cast <char *> (*(sl->ptr_spec)));
11168 sl->alloc_p = false;
11169 }
11170 *(sl->ptr_spec) = sl->default_ptr;
11171 }
11172 #ifdef EXTRA_SPECS
11173 extra_specs = NULL;
11174 #endif
11175
11176 processing_spec_function = 0;
11177
11178 clear_args ();
11179
11180 have_c = 0;
11181 have_o = 0;
11182
11183 temp_names = NULL;
11184 execution_count = 0;
11185 signal_count = 0;
11186
11187 temp_filename = NULL;
11188 temp_filename_length = 0;
11189 always_delete_queue = NULL;
11190 failure_delete_queue = NULL;
11191
11192 XDELETEVEC (switches);
11193 switches = NULL;
11194 n_switches = 0;
11195 n_switches_alloc = 0;
11196
11197 compare_debug = 0;
11198 compare_debug_second = 0;
11199 compare_debug_opt = NULL;
11200 for (int i = 0; i < 2; i++)
11201 {
11202 switches_debug_check[i] = NULL;
11203 n_switches_debug_check[i] = 0;
11204 n_switches_alloc_debug_check[i] = 0;
11205 debug_check_temp_file[i] = NULL;
11206 }
11207
11208 XDELETEVEC (infiles);
11209 infiles = NULL;
11210 n_infiles = 0;
11211 n_infiles_alloc = 0;
11212
11213 combine_inputs = false;
11214 added_libraries = 0;
11215 XDELETEVEC (outfiles);
11216 outfiles = NULL;
11217 spec_lang = 0;
11218 last_language_n_infiles = 0;
11219 gcc_input_filename = NULL;
11220 input_file_number = 0;
11221 input_filename_length = 0;
11222 basename_length = 0;
11223 suffixed_basename_length = 0;
11224 input_basename = NULL;
11225 input_suffix = NULL;
11226 /* We don't need to purge "input_stat", just to unset "input_stat_set". */
11227 input_stat_set = 0;
11228 input_file_compiler = NULL;
11229 arg_going = 0;
11230 delete_this_arg = 0;
11231 this_is_output_file = 0;
11232 this_is_library_file = 0;
11233 this_is_linker_script = 0;
11234 input_from_pipe = 0;
11235 suffix_subst = NULL;
11236
11237 mdswitches = NULL;
11238 n_mdswitches = 0;
11239
11240 used_arg.finalize ();
11241 }
11242
11243 /* PR jit/64810.
11244 Targets can provide configure-time default options in
11245 OPTION_DEFAULT_SPECS. The jit needs to access these, but
11246 they are expressed in the spec language.
11247
11248 Run just enough of the driver to be able to expand these
11249 specs, and then call the callback CB on each
11250 such option. The options strings are *without* a leading
11251 '-' character e.g. ("march=x86-64"). Finally, clean up. */
11252
11253 void
11254 driver_get_configure_time_options (void (*cb) (const char *option,
11255 void *user_data),
11256 void *user_data)
11257 {
11258 size_t i;
11259
11260 obstack_init (&obstack);
11261 init_opts_obstack ();
11262 n_switches = 0;
11263
11264 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
11265 do_option_spec (option_default_specs[i].name,
11266 option_default_specs[i].spec);
11267
11268 for (i = 0; (int) i < n_switches; i++)
11269 {
11270 gcc_assert (switches[i].part1);
11271 (*cb) (switches[i].part1, user_data);
11272 }
11273
11274 obstack_free (&opts_obstack, NULL);
11275 obstack_free (&obstack, NULL);
11276 n_switches = 0;
11277 }
This page took 0.502339 seconds and 5 git commands to generate.