c++: catch parm initialization tweak
[official-gcc.git] / gcc / gcc.cc
blobafb23cd07b007ab9f5851e973eff21d49c49cdae
1 /* Compiler driver program that can handle many languages.
2 Copyright (C) 1987-2022 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
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/>. */
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.
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". */
30 #define INCLUDE_STRING
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "multilib.h" /* before tm.h */
35 #include "tm.h"
36 #include "xregex.h"
37 #include "obstack.h"
38 #include "intl.h"
39 #include "prefix.h"
40 #include "opt-suggestions.h"
41 #include "gcc.h"
42 #include "diagnostic.h"
43 #include "flags.h"
44 #include "opts.h"
45 #include "filenames.h"
46 #include "spellcheck.h"
47 #include "opts-jobserver.h"
48 #include "common/common-target.h"
52 /* Manage the manipulation of env vars.
54 We poison "getenv" and "putenv", so that all enviroment-handling is
55 done through this class. Note that poisoning happens in the
56 preprocessor at the identifier level, and doesn't distinguish between
57 env.getenv ();
58 and
59 getenv ();
60 Hence we need to use "get" for the accessor method, not "getenv". */
62 struct env_manager
64 public:
65 void init (bool can_restore, bool debug);
66 const char *get (const char *name);
67 void xput (const char *string);
68 void restore ();
70 private:
71 bool m_can_restore;
72 bool m_debug;
73 struct kv
75 char *m_key;
76 char *m_value;
78 vec<kv> m_keys;
82 /* The singleton instance of class env_manager. */
84 static env_manager env;
86 /* Initializer for class env_manager.
88 We can't do this as a constructor since we have a statically
89 allocated instance ("env" above). */
91 void
92 env_manager::init (bool can_restore, bool debug)
94 m_can_restore = can_restore;
95 m_debug = debug;
98 /* Get the value of NAME within the environment. Essentially
99 a wrapper for ::getenv, but adding logging, and the possibility
100 of caching results. */
102 const char *
103 env_manager::get (const char *name)
105 const char *result = ::getenv (name);
106 if (m_debug)
107 fprintf (stderr, "env_manager::getenv (%s) -> %s\n", name, result);
108 return result;
111 /* Put the given KEY=VALUE entry STRING into the environment.
112 If the env_manager was initialized with CAN_RESTORE set, then
113 also record the old value of KEY within the environment, so that it
114 can be later restored. */
116 void
117 env_manager::xput (const char *string)
119 if (m_debug)
120 fprintf (stderr, "env_manager::xput (%s)\n", string);
121 if (verbose_flag)
122 fnotice (stderr, "%s\n", string);
124 if (m_can_restore)
126 char *equals = strchr (const_cast <char *> (string), '=');
127 gcc_assert (equals);
129 struct kv kv;
130 kv.m_key = xstrndup (string, equals - string);
131 const char *cur_value = ::getenv (kv.m_key);
132 if (m_debug)
133 fprintf (stderr, "saving old value: %s\n",cur_value);
134 kv.m_value = cur_value ? xstrdup (cur_value) : NULL;
135 m_keys.safe_push (kv);
138 ::putenv (CONST_CAST (char *, string));
141 /* Undo any xputenv changes made since last restore.
142 Can only be called if the env_manager was initialized with
143 CAN_RESTORE enabled. */
145 void
146 env_manager::restore ()
148 unsigned int i;
149 struct kv *item;
151 gcc_assert (m_can_restore);
153 FOR_EACH_VEC_ELT_REVERSE (m_keys, i, item)
155 if (m_debug)
156 printf ("restoring saved key: %s value: %s\n", item->m_key, item->m_value);
157 if (item->m_value)
158 ::setenv (item->m_key, item->m_value, 1);
159 else
160 ::unsetenv (item->m_key);
161 free (item->m_key);
162 free (item->m_value);
165 m_keys.truncate (0);
168 /* Forbid other uses of getenv and putenv. */
169 #if (GCC_VERSION >= 3000)
170 #pragma GCC poison getenv putenv
171 #endif
175 /* By default there is no special suffix for target executables. */
176 #ifdef TARGET_EXECUTABLE_SUFFIX
177 #define HAVE_TARGET_EXECUTABLE_SUFFIX
178 #else
179 #define TARGET_EXECUTABLE_SUFFIX ""
180 #endif
182 /* By default there is no special suffix for host executables. */
183 #ifdef HOST_EXECUTABLE_SUFFIX
184 #define HAVE_HOST_EXECUTABLE_SUFFIX
185 #else
186 #define HOST_EXECUTABLE_SUFFIX ""
187 #endif
189 /* By default, the suffix for target object files is ".o". */
190 #ifdef TARGET_OBJECT_SUFFIX
191 #define HAVE_TARGET_OBJECT_SUFFIX
192 #else
193 #define TARGET_OBJECT_SUFFIX ".o"
194 #endif
196 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
198 /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
199 #ifndef LIBRARY_PATH_ENV
200 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
201 #endif
203 /* If a stage of compilation returns an exit status >= 1,
204 compilation of that file ceases. */
206 #define MIN_FATAL_STATUS 1
208 /* Flag set by cppspec.cc to 1. */
209 int is_cpp_driver;
211 /* Flag set to nonzero if an @file argument has been supplied to gcc. */
212 static bool at_file_supplied;
214 /* Definition of string containing the arguments given to configure. */
215 #include "configargs.h"
217 /* Flag saying to print the command line options understood by gcc and its
218 sub-processes. */
220 static int print_help_list;
222 /* Flag saying to print the version of gcc and its sub-processes. */
224 static int print_version;
226 /* Flag that stores string prefix for which we provide bash completion. */
228 static const char *completion = NULL;
230 /* Flag indicating whether we should ONLY print the command and
231 arguments (like verbose_flag) without executing the command.
232 Displayed arguments are quoted so that the generated command
233 line is suitable for execution. This is intended for use in
234 shell scripts to capture the driver-generated command line. */
235 static int verbose_only_flag;
237 /* Flag indicating how to print command line options of sub-processes. */
239 static int print_subprocess_help;
241 /* Linker suffix passed to -fuse-ld=... */
242 static const char *use_ld;
244 /* Whether we should report subprocess execution times to a file. */
246 FILE *report_times_to_file = NULL;
248 /* Nonzero means place this string before uses of /, so that include
249 and library files can be found in an alternate location. */
251 #ifdef TARGET_SYSTEM_ROOT
252 #define DEFAULT_TARGET_SYSTEM_ROOT (TARGET_SYSTEM_ROOT)
253 #else
254 #define DEFAULT_TARGET_SYSTEM_ROOT (0)
255 #endif
256 static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
258 /* Nonzero means pass the updated target_system_root to the compiler. */
260 static int target_system_root_changed;
262 /* Nonzero means append this string to target_system_root. */
264 static const char *target_sysroot_suffix = 0;
266 /* Nonzero means append this string to target_system_root for headers. */
268 static const char *target_sysroot_hdrs_suffix = 0;
270 /* Nonzero means write "temp" files in source directory
271 and use the source file's name in them, and don't delete them. */
273 static enum save_temps {
274 SAVE_TEMPS_NONE, /* no -save-temps */
275 SAVE_TEMPS_CWD, /* -save-temps in current directory */
276 SAVE_TEMPS_DUMP, /* -save-temps in dumpdir */
277 SAVE_TEMPS_OBJ /* -save-temps in object directory */
278 } save_temps_flag;
280 /* Set this iff the dumppfx implied by a -save-temps=* option is to
281 override a -dumpdir option, if any. */
282 static bool save_temps_overrides_dumpdir = false;
284 /* -dumpdir, -dumpbase and -dumpbase-ext flags passed in, possibly
285 rearranged as they are to be passed down, e.g., dumpbase and
286 dumpbase_ext may be cleared if integrated with dumpdir or
287 dropped. */
288 static char *dumpdir, *dumpbase, *dumpbase_ext;
290 /* Usually the length of the string in dumpdir. However, during
291 linking, it may be shortened to omit a driver-added trailing dash,
292 by then replaced with a trailing period, that is still to be passed
293 to sub-processes in -dumpdir, but not to be generally used in spec
294 filename expansions. See maybe_run_linker. */
295 static size_t dumpdir_length = 0;
297 /* Set if the last character in dumpdir is (or was) a dash that the
298 driver added to dumpdir after dumpbase or linker output name. */
299 static bool dumpdir_trailing_dash_added = false;
301 /* Basename of dump and aux outputs, computed from dumpbase (given or
302 derived from output name), to override input_basename in non-%w %b
303 et al. */
304 static char *outbase;
305 static size_t outbase_length = 0;
307 /* The compiler version. */
309 static const char *compiler_version;
311 /* The target version. */
313 static const char *const spec_version = DEFAULT_TARGET_VERSION;
315 /* The target machine. */
317 static const char *spec_machine = DEFAULT_TARGET_MACHINE;
318 static const char *spec_host_machine = DEFAULT_REAL_TARGET_MACHINE;
320 /* List of offload targets. Separated by colon. Empty string for
321 -foffload=disable. */
323 static char *offload_targets = NULL;
325 #if OFFLOAD_DEFAULTED
326 /* Set to true if -foffload has not been used and offload_targets
327 is set to the configured in default. */
328 static bool offload_targets_default;
329 #endif
331 /* Nonzero if cross-compiling.
332 When -b is used, the value comes from the `specs' file. */
334 #ifdef CROSS_DIRECTORY_STRUCTURE
335 static const char *cross_compile = "1";
336 #else
337 static const char *cross_compile = "0";
338 #endif
340 /* Greatest exit code of sub-processes that has been encountered up to
341 now. */
342 static int greatest_status = 1;
344 /* This is the obstack which we use to allocate many strings. */
346 static struct obstack obstack;
348 /* This is the obstack to build an environment variable to pass to
349 collect2 that describes all of the relevant switches of what to
350 pass the compiler in building the list of pointers to constructors
351 and destructors. */
353 static struct obstack collect_obstack;
355 /* Forward declaration for prototypes. */
356 struct path_prefix;
357 struct prefix_list;
359 static void init_spec (void);
360 static void store_arg (const char *, int, int);
361 static void insert_wrapper (const char *);
362 static char *load_specs (const char *);
363 static void read_specs (const char *, bool, bool);
364 static void set_spec (const char *, const char *, bool);
365 static struct compiler *lookup_compiler (const char *, size_t, const char *);
366 static char *build_search_list (const struct path_prefix *, const char *,
367 bool, bool);
368 static void xputenv (const char *);
369 static void putenv_from_prefixes (const struct path_prefix *, const char *,
370 bool);
371 static int access_check (const char *, int);
372 static char *find_a_file (const struct path_prefix *, const char *, int, bool);
373 static char *find_a_program (const char *);
374 static void add_prefix (struct path_prefix *, const char *, const char *,
375 int, int, int);
376 static void add_sysrooted_prefix (struct path_prefix *, const char *,
377 const char *, int, int, int);
378 static char *skip_whitespace (char *);
379 static void delete_if_ordinary (const char *);
380 static void delete_temp_files (void);
381 static void delete_failure_queue (void);
382 static void clear_failure_queue (void);
383 static int check_live_switch (int, int);
384 static const char *handle_braces (const char *);
385 static inline bool input_suffix_matches (const char *, const char *);
386 static inline bool switch_matches (const char *, const char *, int);
387 static inline void mark_matching_switches (const char *, const char *, int);
388 static inline void process_marked_switches (void);
389 static const char *process_brace_body (const char *, const char *, const char *, int, int);
390 static const struct spec_function *lookup_spec_function (const char *);
391 static const char *eval_spec_function (const char *, const char *, const char *);
392 static const char *handle_spec_function (const char *, bool *, const char *);
393 static char *save_string (const char *, int);
394 static void set_collect_gcc_options (void);
395 static int do_spec_1 (const char *, int, const char *);
396 static int do_spec_2 (const char *, const char *);
397 static void do_option_spec (const char *, const char *);
398 static void do_self_spec (const char *);
399 static const char *find_file (const char *);
400 static int is_directory (const char *, bool);
401 static const char *validate_switches (const char *, bool, bool);
402 static void validate_all_switches (void);
403 static inline void validate_switches_from_spec (const char *, bool);
404 static void give_switch (int, int);
405 static int default_arg (const char *, int);
406 static void set_multilib_dir (void);
407 static void print_multilib_info (void);
408 static void display_help (void);
409 static void add_preprocessor_option (const char *, int);
410 static void add_assembler_option (const char *, int);
411 static void add_linker_option (const char *, int);
412 static void process_command (unsigned int, struct cl_decoded_option *);
413 static int execute (void);
414 static void alloc_args (void);
415 static void clear_args (void);
416 static void fatal_signal (int);
417 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
418 static void init_gcc_specs (struct obstack *, const char *, const char *,
419 const char *);
420 #endif
421 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
422 static const char *convert_filename (const char *, int, int);
423 #endif
425 static void try_generate_repro (const char **argv);
426 static const char *getenv_spec_function (int, const char **);
427 static const char *if_exists_spec_function (int, const char **);
428 static const char *if_exists_else_spec_function (int, const char **);
429 static const char *if_exists_then_else_spec_function (int, const char **);
430 static const char *sanitize_spec_function (int, const char **);
431 static const char *replace_outfile_spec_function (int, const char **);
432 static const char *remove_outfile_spec_function (int, const char **);
433 static const char *version_compare_spec_function (int, const char **);
434 static const char *include_spec_function (int, const char **);
435 static const char *find_file_spec_function (int, const char **);
436 static const char *find_plugindir_spec_function (int, const char **);
437 static const char *print_asm_header_spec_function (int, const char **);
438 static const char *compare_debug_dump_opt_spec_function (int, const char **);
439 static const char *compare_debug_self_opt_spec_function (int, const char **);
440 static const char *pass_through_libs_spec_func (int, const char **);
441 static const char *dumps_spec_func (int, const char **);
442 static const char *greater_than_spec_func (int, const char **);
443 static const char *debug_level_greater_than_spec_func (int, const char **);
444 static const char *dwarf_version_greater_than_spec_func (int, const char **);
445 static const char *find_fortran_preinclude_file (int, const char **);
446 static char *convert_white_space (char *);
447 static char *quote_spec (char *);
448 static char *quote_spec_arg (char *);
449 static bool not_actual_file_p (const char *);
452 /* The Specs Language
454 Specs are strings containing lines, each of which (if not blank)
455 is made up of a program name, and arguments separated by spaces.
456 The program name must be exact and start from root, since no path
457 is searched and it is unreliable to depend on the current working directory.
458 Redirection of input or output is not supported; the subprograms must
459 accept filenames saying what files to read and write.
461 In addition, the specs can contain %-sequences to substitute variable text
462 or for conditional text. Here is a table of all defined %-sequences.
463 Note that spaces are not generated automatically around the results of
464 expanding these sequences; therefore, you can concatenate them together
465 or with constant text in a single argument.
467 %% substitute one % into the program name or argument.
468 %" substitute an empty argument.
469 %i substitute the name of the input file being processed.
470 %b substitute the basename for outputs related with the input file
471 being processed. This is often a substring of the input file name,
472 up to (and not including) the last period but, unless %w is active,
473 it is affected by the directory selected by -save-temps=*, by
474 -dumpdir, and, in case of multiple compilations, even by -dumpbase
475 and -dumpbase-ext and, in case of linking, by the linker output
476 name. When %w is active, it derives the main output name only from
477 the input file base name; when it is not, it names aux/dump output
478 file.
479 %B same as %b, but include the input file suffix (text after the last
480 period).
481 %gSUFFIX
482 substitute a file name that has suffix SUFFIX and is chosen
483 once per compilation, and mark the argument a la %d. To reduce
484 exposure to denial-of-service attacks, the file name is now
485 chosen in a way that is hard to predict even when previously
486 chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
487 might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
488 the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
489 had been pre-processed. Previously, %g was simply substituted
490 with a file name chosen once per compilation, without regard
491 to any appended suffix (which was therefore treated just like
492 ordinary text), making such attacks more likely to succeed.
493 %|SUFFIX
494 like %g, but if -pipe is in effect, expands simply to "-".
495 %mSUFFIX
496 like %g, but if -pipe is in effect, expands to nothing. (We have both
497 %| and %m to accommodate differences between system assemblers; see
498 the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
499 %uSUFFIX
500 like %g, but generates a new temporary file name even if %uSUFFIX
501 was already seen.
502 %USUFFIX
503 substitutes the last file name generated with %uSUFFIX, generating a
504 new one if there is no such last file name. In the absence of any
505 %uSUFFIX, this is just like %gSUFFIX, except they don't share
506 the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
507 would involve the generation of two distinct file names, one
508 for each `%g.s' and another for each `%U.s'. Previously, %U was
509 simply substituted with a file name chosen for the previous %u,
510 without regard to any appended suffix.
511 %jSUFFIX
512 substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
513 writable, and if save-temps is off; otherwise, substitute the name
514 of a temporary file, just like %u. This temporary file is not
515 meant for communication between processes, but rather as a junk
516 disposal mechanism.
517 %.SUFFIX
518 substitutes .SUFFIX for the suffixes of a matched switch's args when
519 it is subsequently output with %*. SUFFIX is terminated by the next
520 space or %.
521 %d marks the argument containing or following the %d as a
522 temporary file name, so that file will be deleted if GCC exits
523 successfully. Unlike %g, this contributes no text to the argument.
524 %w marks the argument containing or following the %w as the
525 "output file" of this compilation. This puts the argument
526 into the sequence of arguments that %o will substitute later.
527 %V indicates that this compilation produces no "output file".
528 %W{...}
529 like %{...} but marks the last argument supplied within as a file
530 to be deleted on failure.
531 %@{...}
532 like %{...} but puts the result into a FILE and substitutes @FILE
533 if an @file argument has been supplied.
534 %o substitutes the names of all the output files, with spaces
535 automatically placed around them. You should write spaces
536 around the %o as well or the results are undefined.
537 %o is for use in the specs for running the linker.
538 Input files whose names have no recognized suffix are not compiled
539 at all, but they are included among the output files, so they will
540 be linked.
541 %O substitutes the suffix for object files. Note that this is
542 handled specially when it immediately follows %g, %u, or %U
543 (with or without a suffix argument) because of the need for
544 those to form complete file names. The handling is such that
545 %O is treated exactly as if it had already been substituted,
546 except that %g, %u, and %U do not currently support additional
547 SUFFIX characters following %O as they would following, for
548 example, `.o'.
549 %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
550 (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
551 and -B options) and -imultilib as necessary.
552 %s current argument is the name of a library or startup file of some sort.
553 Search for that file in a standard list of directories
554 and substitute the full name found.
555 %T current argument is the name of a linker script.
556 Search for that file in the current list of directories to scan for
557 libraries. If the file is located, insert a --script option into the
558 command line followed by the full path name found. If the file is
559 not found then generate an error message.
560 Note: the current working directory is not searched.
561 %eSTR Print STR as an error message. STR is terminated by a newline.
562 Use this when inconsistent options are detected.
563 %nSTR Print STR as a notice. STR is terminated by a newline.
564 %x{OPTION} Accumulate an option for %X.
565 %X Output the accumulated linker options specified by compilations.
566 %Y Output the accumulated assembler options specified by compilations.
567 %Z Output the accumulated preprocessor options specified by compilations.
568 %a process ASM_SPEC as a spec.
569 This allows config.h to specify part of the spec for running as.
570 %A process ASM_FINAL_SPEC as a spec. A capital A is actually
571 used here. This can be used to run a post-processor after the
572 assembler has done its job.
573 %D Dump out a -L option for each directory in startfile_prefixes.
574 If multilib_dir is set, extra entries are generated with it affixed.
575 %l process LINK_SPEC as a spec.
576 %L process LIB_SPEC as a spec.
577 %M Output multilib_os_dir.
578 %G process LIBGCC_SPEC as a spec.
579 %R Output the concatenation of target_system_root and
580 target_sysroot_suffix.
581 %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
582 %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
583 %C process CPP_SPEC as a spec.
584 %1 process CC1_SPEC as a spec.
585 %2 process CC1PLUS_SPEC as a spec.
586 %* substitute the variable part of a matched option. (See below.)
587 Note that each comma in the substituted string is replaced by
588 a single space. A space is appended after the last substition
589 unless there is more text in current sequence.
590 %<S remove all occurrences of -S from the command line.
591 Note - this command is position dependent. % commands in the
592 spec string before this one will see -S, % commands in the
593 spec string after this one will not.
594 %>S Similar to "%<S", but keep it in the GCC command line.
595 %<S* remove all occurrences of all switches beginning with -S from the
596 command line.
597 %:function(args)
598 Call the named function FUNCTION, passing it ARGS. ARGS is
599 first processed as a nested spec string, then split into an
600 argument vector in the usual fashion. The function returns
601 a string which is processed as if it had appeared literally
602 as part of the current spec.
603 %{S} substitutes the -S switch, if that switch was given to GCC.
604 If that switch was not specified, this substitutes nothing.
605 Here S is a metasyntactic variable.
606 %{S*} substitutes all the switches specified to GCC whose names start
607 with -S. This is used for -o, -I, etc; switches that take
608 arguments. GCC considers `-o foo' as being one switch whose
609 name starts with `o'. %{o*} would substitute this text,
610 including the space; thus, two arguments would be generated.
611 %{S*&T*} likewise, but preserve order of S and T options (the order
612 of S and T in the spec is not significant). Can be any number
613 of ampersand-separated variables; for each the wild card is
614 optional. Useful for CPP as %{D*&U*&A*}.
616 %{S:X} substitutes X, if the -S switch was given to GCC.
617 %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
618 %{S*:X} substitutes X if one or more switches whose names start
619 with -S was given to GCC. Normally X is substituted only
620 once, no matter how many such switches appeared. However,
621 if %* appears somewhere in X, then X will be substituted
622 once for each matching switch, with the %* replaced by the
623 part of that switch that matched the '*'. A space will be
624 appended after the last substition unless there is more
625 text in current sequence.
626 %{.S:X} substitutes X, if processing a file with suffix S.
627 %{!.S:X} substitutes X, if NOT processing a file with suffix S.
628 %{,S:X} substitutes X, if processing a file which will use spec S.
629 %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
631 %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
632 combined with '!', '.', ',', and '*' as above binding stronger
633 than the OR.
634 If %* appears in X, all of the alternatives must be starred, and
635 only the first matching alternative is substituted.
636 %{%:function(args):X}
637 Call function named FUNCTION with args ARGS. If the function
638 returns non-NULL, then X is substituted, if it returns
639 NULL, it isn't substituted.
640 %{S:X; if S was given to GCC, substitutes X;
641 T:Y; else if T was given to GCC, substitutes Y;
642 :D} else substitutes D. There can be as many clauses as you need.
643 This may be combined with '.', '!', ',', '|', and '*' as above.
645 %(Spec) processes a specification defined in a specs file as *Spec:
647 The switch matching text S in a %{S}, %{S:X}, or similar construct can use
648 a backslash to ignore the special meaning of the character following it,
649 thus allowing literal matching of a character that is otherwise specially
650 treated. For example, %{std=iso9899\:1999:X} substitutes X if the
651 -std=iso9899:1999 option is given.
653 The conditional text X in a %{S:X} or similar construct may contain
654 other nested % constructs or spaces, or even newlines. They are
655 processed as usual, as described above. Trailing white space in X is
656 ignored. White space may also appear anywhere on the left side of the
657 colon in these constructs, except between . or * and the corresponding
658 word.
660 The -O, -f, -g, -m, and -W switches are handled specifically in these
661 constructs. If another value of -O or the negated form of a -f, -m, or
662 -W switch is found later in the command line, the earlier switch
663 value is ignored, except with {S*} where S is just one letter; this
664 passes all matching options.
666 The character | at the beginning of the predicate text is used to indicate
667 that a command should be piped to the following command, but only if -pipe
668 is specified.
670 Note that it is built into GCC which switches take arguments and which
671 do not. You might think it would be useful to generalize this to
672 allow each compiler's spec to say which switches take arguments. But
673 this cannot be done in a consistent fashion. GCC cannot even decide
674 which input files have been specified without knowing which switches
675 take arguments, and it must know which input files to compile in order
676 to tell which compilers to run.
678 GCC also knows implicitly that arguments starting in `-l' are to be
679 treated as compiler output files, and passed to the linker in their
680 proper position among the other output files. */
682 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
684 /* config.h can define ASM_SPEC to provide extra args to the assembler
685 or extra switch-translations. */
686 #ifndef ASM_SPEC
687 #define ASM_SPEC ""
688 #endif
690 /* config.h can define ASM_FINAL_SPEC to run a post processor after
691 the assembler has run. */
692 #ifndef ASM_FINAL_SPEC
693 #define ASM_FINAL_SPEC \
694 "%{gsplit-dwarf: \n\
695 objcopy --extract-dwo \
696 %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
697 %b.dwo \n\
698 objcopy --strip-dwo \
699 %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
701 #endif
703 /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
704 or extra switch-translations. */
705 #ifndef CPP_SPEC
706 #define CPP_SPEC ""
707 #endif
709 /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
710 or extra switch-translations. */
711 #ifndef CC1_SPEC
712 #define CC1_SPEC ""
713 #endif
715 /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
716 or extra switch-translations. */
717 #ifndef CC1PLUS_SPEC
718 #define CC1PLUS_SPEC ""
719 #endif
721 /* config.h can define LINK_SPEC to provide extra args to the linker
722 or extra switch-translations. */
723 #ifndef LINK_SPEC
724 #define LINK_SPEC ""
725 #endif
727 /* config.h can define LIB_SPEC to override the default libraries. */
728 #ifndef LIB_SPEC
729 #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
730 #endif
732 /* When using -fsplit-stack we need to wrap pthread_create, in order
733 to initialize the stack guard. We always use wrapping, rather than
734 shared library ordering, and we keep the wrapper function in
735 libgcc. This is not yet a real spec, though it could become one;
736 it is currently just stuffed into LINK_SPEC. FIXME: This wrapping
737 only works with GNU ld and gold. */
738 #ifdef HAVE_GOLD_NON_DEFAULT_SPLIT_STACK
739 #define STACK_SPLIT_SPEC " %{fsplit-stack: -fuse-ld=gold --wrap=pthread_create}"
740 #else
741 #define STACK_SPLIT_SPEC " %{fsplit-stack: --wrap=pthread_create}"
742 #endif
744 #ifndef LIBASAN_SPEC
745 #define STATIC_LIBASAN_LIBS \
746 " %{static-libasan|static:%:include(libsanitizer.spec)%(link_libasan)}"
747 #ifdef LIBASAN_EARLY_SPEC
748 #define LIBASAN_SPEC STATIC_LIBASAN_LIBS
749 #elif defined(HAVE_LD_STATIC_DYNAMIC)
750 #define LIBASAN_SPEC "%{static-libasan:" LD_STATIC_OPTION \
751 "} -lasan %{static-libasan:" LD_DYNAMIC_OPTION "}" \
752 STATIC_LIBASAN_LIBS
753 #else
754 #define LIBASAN_SPEC "-lasan" STATIC_LIBASAN_LIBS
755 #endif
756 #endif
758 #ifndef LIBASAN_EARLY_SPEC
759 #define LIBASAN_EARLY_SPEC ""
760 #endif
762 #ifndef LIBHWASAN_SPEC
763 #define STATIC_LIBHWASAN_LIBS \
764 " %{static-libhwasan|static:%:include(libsanitizer.spec)%(link_libhwasan)}"
765 #ifdef LIBHWASAN_EARLY_SPEC
766 #define LIBHWASAN_SPEC STATIC_LIBHWASAN_LIBS
767 #elif defined(HAVE_LD_STATIC_DYNAMIC)
768 #define LIBHWASAN_SPEC "%{static-libhwasan:" LD_STATIC_OPTION \
769 "} -lhwasan %{static-libhwasan:" LD_DYNAMIC_OPTION "}" \
770 STATIC_LIBHWASAN_LIBS
771 #else
772 #define LIBHWASAN_SPEC "-lhwasan" STATIC_LIBHWASAN_LIBS
773 #endif
774 #endif
776 #ifndef LIBHWASAN_EARLY_SPEC
777 #define LIBHWASAN_EARLY_SPEC ""
778 #endif
780 #ifndef LIBTSAN_SPEC
781 #define STATIC_LIBTSAN_LIBS \
782 " %{static-libtsan|static:%:include(libsanitizer.spec)%(link_libtsan)}"
783 #ifdef LIBTSAN_EARLY_SPEC
784 #define LIBTSAN_SPEC STATIC_LIBTSAN_LIBS
785 #elif defined(HAVE_LD_STATIC_DYNAMIC)
786 #define LIBTSAN_SPEC "%{static-libtsan:" LD_STATIC_OPTION \
787 "} -ltsan %{static-libtsan:" LD_DYNAMIC_OPTION "}" \
788 STATIC_LIBTSAN_LIBS
789 #else
790 #define LIBTSAN_SPEC "-ltsan" STATIC_LIBTSAN_LIBS
791 #endif
792 #endif
794 #ifndef LIBTSAN_EARLY_SPEC
795 #define LIBTSAN_EARLY_SPEC ""
796 #endif
798 #ifndef LIBLSAN_SPEC
799 #define STATIC_LIBLSAN_LIBS \
800 " %{static-liblsan|static:%:include(libsanitizer.spec)%(link_liblsan)}"
801 #ifdef LIBLSAN_EARLY_SPEC
802 #define LIBLSAN_SPEC STATIC_LIBLSAN_LIBS
803 #elif defined(HAVE_LD_STATIC_DYNAMIC)
804 #define LIBLSAN_SPEC "%{static-liblsan:" LD_STATIC_OPTION \
805 "} -llsan %{static-liblsan:" LD_DYNAMIC_OPTION "}" \
806 STATIC_LIBLSAN_LIBS
807 #else
808 #define LIBLSAN_SPEC "-llsan" STATIC_LIBLSAN_LIBS
809 #endif
810 #endif
812 #ifndef LIBLSAN_EARLY_SPEC
813 #define LIBLSAN_EARLY_SPEC ""
814 #endif
816 #ifndef LIBUBSAN_SPEC
817 #define STATIC_LIBUBSAN_LIBS \
818 " %{static-libubsan|static:%:include(libsanitizer.spec)%(link_libubsan)}"
819 #ifdef HAVE_LD_STATIC_DYNAMIC
820 #define LIBUBSAN_SPEC "%{static-libubsan:" LD_STATIC_OPTION \
821 "} -lubsan %{static-libubsan:" LD_DYNAMIC_OPTION "}" \
822 STATIC_LIBUBSAN_LIBS
823 #else
824 #define LIBUBSAN_SPEC "-lubsan" STATIC_LIBUBSAN_LIBS
825 #endif
826 #endif
828 /* Linker options for compressed debug sections. */
829 #if HAVE_LD_COMPRESS_DEBUG == 0
830 /* No linker support. */
831 #define LINK_COMPRESS_DEBUG_SPEC \
832 " %{gz*:%e-gz is not supported in this configuration} "
833 #elif HAVE_LD_COMPRESS_DEBUG == 1
834 /* ELF gABI style. */
835 #define LINK_COMPRESS_DEBUG_SPEC \
836 " %{gz|gz=zlib:" LD_COMPRESS_DEBUG_OPTION "=zlib}" \
837 " %{gz=none:" LD_COMPRESS_DEBUG_OPTION "=none}" \
838 " %{gz*:%e-gz=zstd is not supported in this configuration} " \
839 " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
840 #elif HAVE_LD_COMPRESS_DEBUG == 2
841 /* ELF gABI style and ZSTD. */
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=zstd:" LD_COMPRESS_DEBUG_OPTION "=zstd}" \
846 " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
847 #else
848 #error Unknown value for HAVE_LD_COMPRESS_DEBUG.
849 #endif
851 /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
852 included. */
853 #ifndef LIBGCC_SPEC
854 #if defined(REAL_LIBGCC_SPEC)
855 #define LIBGCC_SPEC REAL_LIBGCC_SPEC
856 #elif defined(LINK_LIBGCC_SPECIAL_1)
857 /* Have gcc do the search for libgcc.a. */
858 #define LIBGCC_SPEC "libgcc.a%s"
859 #else
860 #define LIBGCC_SPEC "-lgcc"
861 #endif
862 #endif
864 /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
865 #ifndef STARTFILE_SPEC
866 #define STARTFILE_SPEC \
867 "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
868 #endif
870 /* config.h can define ENDFILE_SPEC to override the default crtn files. */
871 #ifndef ENDFILE_SPEC
872 #define ENDFILE_SPEC ""
873 #endif
875 #ifndef LINKER_NAME
876 #define LINKER_NAME "collect2"
877 #endif
879 #ifdef HAVE_AS_DEBUG_PREFIX_MAP
880 #define ASM_MAP " %{fdebug-prefix-map=*:--debug-prefix-map %*}"
881 #else
882 #define ASM_MAP ""
883 #endif
885 /* Assembler options for compressed debug sections. */
886 #if HAVE_LD_COMPRESS_DEBUG == 0
887 /* Reject if the linker cannot write compressed debug sections. */
888 #define ASM_COMPRESS_DEBUG_SPEC \
889 " %{gz*:%e-gz is not supported in this configuration} "
890 #else /* HAVE_LD_COMPRESS_DEBUG >= 1 */
891 #if HAVE_AS_COMPRESS_DEBUG == 0
892 /* No assembler support. Ignore silently. */
893 #define ASM_COMPRESS_DEBUG_SPEC \
894 " %{gz*:} "
895 #elif HAVE_AS_COMPRESS_DEBUG == 1
896 /* ELF gABI style. */
897 #define ASM_COMPRESS_DEBUG_SPEC \
898 " %{gz|gz=zlib:" AS_COMPRESS_DEBUG_OPTION "=zlib}" \
899 " %{gz=none:" AS_COMPRESS_DEBUG_OPTION "=none}" \
900 " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
901 #elif HAVE_AS_COMPRESS_DEBUG == 2
902 /* ELF gABI style and ZSTD. */
903 #define ASM_COMPRESS_DEBUG_SPEC \
904 " %{gz|gz=zlib:" AS_COMPRESS_DEBUG_OPTION "=zlib}" \
905 " %{gz=none:" AS_COMPRESS_DEBUG_OPTION "=none}" \
906 " %{gz=zstd:" AS_COMPRESS_DEBUG_OPTION "=zstd}" \
907 " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
908 #else
909 #error Unknown value for HAVE_AS_COMPRESS_DEBUG.
910 #endif
911 #endif /* HAVE_LD_COMPRESS_DEBUG >= 1 */
913 /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
914 to the assembler, when compiling assembly sources only. */
915 #ifndef ASM_DEBUG_SPEC
916 # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
917 /* If --gdwarf-N is supported and as can handle even compiler generated
918 .debug_line with it, supply --gdwarf-N in ASM_DEBUG_OPTION_SPEC rather
919 than in ASM_DEBUG_SPEC, so that it applies to both .s and .c etc.
920 compilations. */
921 # define ASM_DEBUG_DWARF_OPTION ""
922 # elif defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && !defined(HAVE_LD_BROKEN_PE_DWARF5)
923 # define ASM_DEBUG_DWARF_OPTION "%{%:dwarf-version-gt(4):--gdwarf-5;" \
924 "%:dwarf-version-gt(3):--gdwarf-4;" \
925 "%:dwarf-version-gt(2):--gdwarf-3;" \
926 ":--gdwarf2}"
927 # else
928 # define ASM_DEBUG_DWARF_OPTION "--gdwarf2"
929 # endif
930 # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
931 # define ASM_DEBUG_SPEC "%{g*:%{%:debug-level-gt(0):" \
932 ASM_DEBUG_DWARF_OPTION "}}" ASM_MAP
933 # endif
934 # endif
935 #ifndef ASM_DEBUG_SPEC
936 # define ASM_DEBUG_SPEC ""
937 #endif
939 /* Define ASM_DEBUG_OPTION_SPEC to be a spec suitable for translating '-g'
940 to the assembler when compiling all sources. */
941 #ifndef ASM_DEBUG_OPTION_SPEC
942 # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
943 # define ASM_DEBUG_OPTION_DWARF_OPT \
944 "%{%:dwarf-version-gt(4):--gdwarf-5 ;" \
945 "%:dwarf-version-gt(3):--gdwarf-4 ;" \
946 "%:dwarf-version-gt(2):--gdwarf-3 ;" \
947 ":--gdwarf2 }"
948 # if defined(DWARF2_DEBUGGING_INFO)
949 # define ASM_DEBUG_OPTION_SPEC "%{g*:%{%:debug-level-gt(0):" \
950 ASM_DEBUG_OPTION_DWARF_OPT "}}"
951 # endif
952 # endif
953 #endif
954 #ifndef ASM_DEBUG_OPTION_SPEC
955 # define ASM_DEBUG_OPTION_SPEC ""
956 #endif
958 /* Here is the spec for running the linker, after compiling all files. */
960 /* This is overridable by the target in case they need to specify the
961 -lgcc and -lc order specially, yet not require them to override all
962 of LINK_COMMAND_SPEC. */
963 #ifndef LINK_GCC_C_SEQUENCE_SPEC
964 #define LINK_GCC_C_SEQUENCE_SPEC "%G %{!nolibc:%L %G}"
965 #endif
967 #ifndef LINK_SSP_SPEC
968 #ifdef TARGET_LIBC_PROVIDES_SSP
969 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
970 "|fstack-protector-strong|fstack-protector-explicit:}"
971 #else
972 #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
973 "|fstack-protector-strong|fstack-protector-explicit" \
974 ":-lssp_nonshared -lssp}"
975 #endif
976 #endif
978 #ifdef ENABLE_DEFAULT_PIE
979 #define PIE_SPEC "!no-pie"
980 #define NO_FPIE1_SPEC "fno-pie"
981 #define FPIE1_SPEC NO_FPIE1_SPEC ":;"
982 #define NO_FPIE2_SPEC "fno-PIE"
983 #define FPIE2_SPEC NO_FPIE2_SPEC ":;"
984 #define NO_FPIE_SPEC NO_FPIE1_SPEC "|" NO_FPIE2_SPEC
985 #define FPIE_SPEC NO_FPIE_SPEC ":;"
986 #define NO_FPIC1_SPEC "fno-pic"
987 #define FPIC1_SPEC NO_FPIC1_SPEC ":;"
988 #define NO_FPIC2_SPEC "fno-PIC"
989 #define FPIC2_SPEC NO_FPIC2_SPEC ":;"
990 #define NO_FPIC_SPEC NO_FPIC1_SPEC "|" NO_FPIC2_SPEC
991 #define FPIC_SPEC NO_FPIC_SPEC ":;"
992 #define NO_FPIE1_AND_FPIC1_SPEC NO_FPIE1_SPEC "|" NO_FPIC1_SPEC
993 #define FPIE1_OR_FPIC1_SPEC NO_FPIE1_AND_FPIC1_SPEC ":;"
994 #define NO_FPIE2_AND_FPIC2_SPEC NO_FPIE2_SPEC "|" NO_FPIC2_SPEC
995 #define FPIE2_OR_FPIC2_SPEC NO_FPIE2_AND_FPIC2_SPEC ":;"
996 #define NO_FPIE_AND_FPIC_SPEC NO_FPIE_SPEC "|" NO_FPIC_SPEC
997 #define FPIE_OR_FPIC_SPEC NO_FPIE_AND_FPIC_SPEC ":;"
998 #else
999 #define PIE_SPEC "pie"
1000 #define FPIE1_SPEC "fpie"
1001 #define NO_FPIE1_SPEC FPIE1_SPEC ":;"
1002 #define FPIE2_SPEC "fPIE"
1003 #define NO_FPIE2_SPEC FPIE2_SPEC ":;"
1004 #define FPIE_SPEC FPIE1_SPEC "|" FPIE2_SPEC
1005 #define NO_FPIE_SPEC FPIE_SPEC ":;"
1006 #define FPIC1_SPEC "fpic"
1007 #define NO_FPIC1_SPEC FPIC1_SPEC ":;"
1008 #define FPIC2_SPEC "fPIC"
1009 #define NO_FPIC2_SPEC FPIC2_SPEC ":;"
1010 #define FPIC_SPEC FPIC1_SPEC "|" FPIC2_SPEC
1011 #define NO_FPIC_SPEC FPIC_SPEC ":;"
1012 #define FPIE1_OR_FPIC1_SPEC FPIE1_SPEC "|" FPIC1_SPEC
1013 #define NO_FPIE1_AND_FPIC1_SPEC FPIE1_OR_FPIC1_SPEC ":;"
1014 #define FPIE2_OR_FPIC2_SPEC FPIE2_SPEC "|" FPIC2_SPEC
1015 #define NO_FPIE2_AND_FPIC2_SPEC FPIE1_OR_FPIC2_SPEC ":;"
1016 #define FPIE_OR_FPIC_SPEC FPIE_SPEC "|" FPIC_SPEC
1017 #define NO_FPIE_AND_FPIC_SPEC FPIE_OR_FPIC_SPEC ":;"
1018 #endif
1020 #ifndef LINK_PIE_SPEC
1021 #ifdef HAVE_LD_PIE
1022 #ifndef LD_PIE_SPEC
1023 #define LD_PIE_SPEC "-pie"
1024 #endif
1025 #else
1026 #define LD_PIE_SPEC ""
1027 #endif
1028 #define LINK_PIE_SPEC "%{static|shared|r:;" PIE_SPEC ":" LD_PIE_SPEC "} "
1029 #endif
1031 #ifndef LINK_BUILDID_SPEC
1032 # if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
1033 # define LINK_BUILDID_SPEC "%{!r:--build-id} "
1034 # endif
1035 #endif
1037 #ifndef LTO_PLUGIN_SPEC
1038 #define LTO_PLUGIN_SPEC ""
1039 #endif
1041 /* Conditional to test whether the LTO plugin is used or not.
1042 FIXME: For slim LTO we will need to enable plugin unconditionally. This
1043 still cause problems with PLUGIN_LD != LD and when plugin is built but
1044 not useable. For GCC 4.6 we don't support slim LTO and thus we can enable
1045 plugin only when LTO is enabled. We still honor explicit
1046 -fuse-linker-plugin if the linker used understands -plugin. */
1048 /* The linker has some plugin support. */
1049 #if HAVE_LTO_PLUGIN > 0
1050 /* The linker used has full plugin support, use LTO plugin by default. */
1051 #if HAVE_LTO_PLUGIN == 2
1052 #define PLUGIN_COND "!fno-use-linker-plugin:%{!fno-lto"
1053 #define PLUGIN_COND_CLOSE "}"
1054 #else
1055 /* The linker used has limited plugin support, use LTO plugin with explicit
1056 -fuse-linker-plugin. */
1057 #define PLUGIN_COND "fuse-linker-plugin"
1058 #define PLUGIN_COND_CLOSE ""
1059 #endif
1060 #define LINK_PLUGIN_SPEC \
1061 "%{" PLUGIN_COND": \
1062 -plugin %(linker_plugin_file) \
1063 -plugin-opt=%(lto_wrapper) \
1064 -plugin-opt=-fresolution=%u.res \
1065 " LTO_PLUGIN_SPEC "\
1066 %{flinker-output=*:-plugin-opt=-linker-output-known} \
1067 %{!nostdlib:%{!nodefaultlibs:%:pass-through-libs(%(link_gcc_c_sequence))}} \
1068 }" PLUGIN_COND_CLOSE
1069 #else
1070 /* The linker used doesn't support -plugin, reject -fuse-linker-plugin. */
1071 #define LINK_PLUGIN_SPEC "%{fuse-linker-plugin:\
1072 %e-fuse-linker-plugin is not supported in this configuration}"
1073 #endif
1075 /* Linker command line options for -fsanitize= early on the command line. */
1076 #ifndef SANITIZER_EARLY_SPEC
1077 #define SANITIZER_EARLY_SPEC "\
1078 %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_EARLY_SPEC "} \
1079 %{%:sanitize(hwaddress):" LIBHWASAN_EARLY_SPEC "} \
1080 %{%:sanitize(thread):" LIBTSAN_EARLY_SPEC "} \
1081 %{%:sanitize(leak):" LIBLSAN_EARLY_SPEC "}}}}"
1082 #endif
1084 /* Linker command line options for -fsanitize= late on the command line. */
1085 #ifndef SANITIZER_SPEC
1086 #define SANITIZER_SPEC "\
1087 %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_SPEC "\
1088 %{static:%ecannot specify -static with -fsanitize=address}}\
1089 %{%:sanitize(hwaddress):" LIBHWASAN_SPEC "\
1090 %{static:%ecannot specify -static with -fsanitize=hwaddress}}\
1091 %{%:sanitize(thread):" LIBTSAN_SPEC "\
1092 %{static:%ecannot specify -static with -fsanitize=thread}}\
1093 %{%:sanitize(undefined):" LIBUBSAN_SPEC "}\
1094 %{%:sanitize(leak):" LIBLSAN_SPEC "}}}}"
1095 #endif
1097 #ifndef POST_LINK_SPEC
1098 #define POST_LINK_SPEC ""
1099 #endif
1101 /* This is the spec to use, once the code for creating the vtable
1102 verification runtime library, libvtv.so, has been created. Currently
1103 the vtable verification runtime functions are in libstdc++, so we use
1104 the spec just below this one. */
1105 #ifndef VTABLE_VERIFICATION_SPEC
1106 #if ENABLE_VTABLE_VERIFY
1107 #define VTABLE_VERIFICATION_SPEC "\
1108 %{!nostdlib:%{!r:%{fvtable-verify=std: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}\
1109 %{fvtable-verify=preinit: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}}}"
1110 #else
1111 #define VTABLE_VERIFICATION_SPEC "\
1112 %{fvtable-verify=none:} \
1113 %{fvtable-verify=std: \
1114 %e-fvtable-verify=std is not supported in this configuration} \
1115 %{fvtable-verify=preinit: \
1116 %e-fvtable-verify=preinit is not supported in this configuration}"
1117 #endif
1118 #endif
1120 /* -u* was put back because both BSD and SysV seem to support it. */
1121 /* %{static|no-pie|static-pie:} simply prevents an error message:
1122 1. If the target machine doesn't handle -static.
1123 2. If PIE isn't enabled by default.
1124 3. If the target machine doesn't handle -static-pie.
1126 /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
1127 scripts which exist in user specified directories, or in standard
1128 directories. */
1129 /* We pass any -flto flags on to the linker, which is expected
1130 to understand them. In practice, this means it had better be collect2. */
1131 /* %{e*} includes -export-dynamic; see comment in common.opt. */
1132 #ifndef LINK_COMMAND_SPEC
1133 #define LINK_COMMAND_SPEC "\
1134 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
1135 %(linker) " \
1136 LINK_PLUGIN_SPEC \
1137 "%{flto|flto=*:%<fcompare-debug*} \
1138 %{flto} %{fno-lto} %{flto=*} %l " LINK_PIE_SPEC \
1139 "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
1140 "%X %{o*} %{e*} %{N} %{n} %{r}\
1141 %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
1142 %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
1143 VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
1144 %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
1145 %:include(libgomp.spec)%(link_gomp)}\
1146 %{fgnu-tm:%:include(libitm.spec)%(link_itm)}\
1147 %(mflib) " STACK_SPLIT_SPEC "\
1148 %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
1149 %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
1150 %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*} \n%(post_link) }}}}}}"
1151 #endif
1153 #ifndef LINK_LIBGCC_SPEC
1154 /* Generate -L options for startfile prefix list. */
1155 # define LINK_LIBGCC_SPEC "%D"
1156 #endif
1158 #ifndef STARTFILE_PREFIX_SPEC
1159 # define STARTFILE_PREFIX_SPEC ""
1160 #endif
1162 #ifndef SYSROOT_SPEC
1163 # define SYSROOT_SPEC "--sysroot=%R"
1164 #endif
1166 #ifndef SYSROOT_SUFFIX_SPEC
1167 # define SYSROOT_SUFFIX_SPEC ""
1168 #endif
1170 #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
1171 # define SYSROOT_HEADERS_SUFFIX_SPEC ""
1172 #endif
1174 static const char *asm_debug = ASM_DEBUG_SPEC;
1175 static const char *asm_debug_option = ASM_DEBUG_OPTION_SPEC;
1176 static const char *cpp_spec = CPP_SPEC;
1177 static const char *cc1_spec = CC1_SPEC;
1178 static const char *cc1plus_spec = CC1PLUS_SPEC;
1179 static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
1180 static const char *link_ssp_spec = LINK_SSP_SPEC;
1181 static const char *asm_spec = ASM_SPEC;
1182 static const char *asm_final_spec = ASM_FINAL_SPEC;
1183 static const char *link_spec = LINK_SPEC;
1184 static const char *lib_spec = LIB_SPEC;
1185 static const char *link_gomp_spec = "";
1186 static const char *libgcc_spec = LIBGCC_SPEC;
1187 static const char *endfile_spec = ENDFILE_SPEC;
1188 static const char *startfile_spec = STARTFILE_SPEC;
1189 static const char *linker_name_spec = LINKER_NAME;
1190 static const char *linker_plugin_file_spec = "";
1191 static const char *lto_wrapper_spec = "";
1192 static const char *lto_gcc_spec = "";
1193 static const char *post_link_spec = POST_LINK_SPEC;
1194 static const char *link_command_spec = LINK_COMMAND_SPEC;
1195 static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
1196 static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
1197 static const char *sysroot_spec = SYSROOT_SPEC;
1198 static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
1199 static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
1200 static const char *self_spec = "";
1202 /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
1203 There should be no need to override these in target dependent files,
1204 but we need to copy them to the specs file so that newer versions
1205 of the GCC driver can correctly drive older tool chains with the
1206 appropriate -B options. */
1208 /* When cpplib handles traditional preprocessing, get rid of this, and
1209 call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
1210 that we default the front end language better. */
1211 static const char *trad_capable_cpp =
1212 "cc1 -E %{traditional|traditional-cpp:-traditional-cpp}";
1214 /* We don't wrap .d files in %W{} since a missing .d file, and
1215 therefore no dependency entry, confuses make into thinking a .o
1216 file that happens to exist is up-to-date. */
1217 static const char *cpp_unique_options =
1218 "%{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %@{I*&F*} %{P} %I\
1219 %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
1220 %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
1221 %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
1222 %{Mmodules} %{Mno-modules}\
1223 %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
1224 %{remap} %{%:debug-level-gt(2):-dD}\
1225 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1226 %{H} %C %{D*&U*&A*} %{i*} %Z %i\
1227 %{E|M|MM:%W{o*}}";
1229 /* This contains cpp options which are common with cc1_options and are passed
1230 only when preprocessing only to avoid duplication. We pass the cc1 spec
1231 options to the preprocessor so that it the cc1 spec may manipulate
1232 options used to set target flags. Those special target flags settings may
1233 in turn cause preprocessor symbols to be defined specially. */
1234 static const char *cpp_options =
1235 "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
1236 %{f*} %{g*:%{%:debug-level-gt(0):%{g*}\
1237 %{!fno-working-directory:-fworking-directory}}} %{O*}\
1238 %{undef} %{save-temps*:-fpch-preprocess}";
1240 /* Pass -d* flags, possibly modifying -dumpdir, -dumpbase et al.
1242 Make it easy for a language to override the argument for the
1243 %:dumps specs function call. */
1244 #define DUMPS_OPTIONS(EXTS) \
1245 "%<dumpdir %<dumpbase %<dumpbase-ext %{d*} %:dumps(" EXTS ")"
1247 /* This contains cpp options which are not passed when the preprocessor
1248 output will be used by another program. */
1249 static const char *cpp_debug_options = DUMPS_OPTIONS ("");
1251 /* NB: This is shared amongst all front-ends, except for Ada. */
1252 static const char *cc1_options =
1253 "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
1254 %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1255 %1 %{!Q:-quiet} %(cpp_debug_options) %{m*} %{aux-info*}\
1256 %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
1257 %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
1258 %{Qn:-fno-ident} %{Qy:} %{-help:--help}\
1259 %{-target-help:--target-help}\
1260 %{-version:--version}\
1261 %{-help=*:--help=%*}\
1262 %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %w%b.s}}}\
1263 %{fsyntax-only:-o %j} %{-param*}\
1264 %{coverage:-fprofile-arcs -ftest-coverage}\
1265 %{fprofile-arcs|fprofile-generate*|coverage:\
1266 %{!fprofile-update=single:\
1267 %{pthread:-fprofile-update=prefer-atomic}}}";
1269 static const char *asm_options =
1270 "%{-target-help:%:print-asm-header()} "
1271 #if HAVE_GNU_AS
1272 /* If GNU AS is used, then convert -w (no warnings), -I, and -v
1273 to the assembler equivalents. */
1274 "%{v} %{w:-W} %{I*} "
1275 #endif
1276 "%(asm_debug_option)"
1277 ASM_COMPRESS_DEBUG_SPEC
1278 "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
1280 static const char *invoke_as =
1281 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1282 "%{!fwpa*:\
1283 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1284 %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
1286 #else
1287 "%{!fwpa*:\
1288 %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1289 %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
1291 #endif
1293 /* Some compilers have limits on line lengths, and the multilib_select
1294 and/or multilib_matches strings can be very long, so we build them at
1295 run time. */
1296 static struct obstack multilib_obstack;
1297 static const char *multilib_select;
1298 static const char *multilib_matches;
1299 static const char *multilib_defaults;
1300 static const char *multilib_exclusions;
1301 static const char *multilib_reuse;
1303 /* Check whether a particular argument is a default argument. */
1305 #ifndef MULTILIB_DEFAULTS
1306 #define MULTILIB_DEFAULTS { "" }
1307 #endif
1309 static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
1311 #ifndef DRIVER_SELF_SPECS
1312 #define DRIVER_SELF_SPECS ""
1313 #endif
1315 /* Linking to libgomp implies pthreads. This is particularly important
1316 for targets that use different start files and suchlike. */
1317 #ifndef GOMP_SELF_SPECS
1318 #define GOMP_SELF_SPECS \
1319 "%{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1): " \
1320 "-pthread}"
1321 #endif
1323 /* Likewise for -fgnu-tm. */
1324 #ifndef GTM_SELF_SPECS
1325 #define GTM_SELF_SPECS "%{fgnu-tm: -pthread}"
1326 #endif
1328 static const char *const driver_self_specs[] = {
1329 "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
1330 DRIVER_SELF_SPECS, CONFIGURE_SPECS, GOMP_SELF_SPECS, GTM_SELF_SPECS
1333 #ifndef OPTION_DEFAULT_SPECS
1334 #define OPTION_DEFAULT_SPECS { "", "" }
1335 #endif
1337 struct default_spec
1339 const char *name;
1340 const char *spec;
1343 static const struct default_spec
1344 option_default_specs[] = { OPTION_DEFAULT_SPECS };
1346 struct user_specs
1348 struct user_specs *next;
1349 const char *filename;
1352 static struct user_specs *user_specs_head, *user_specs_tail;
1355 /* Record the mapping from file suffixes for compilation specs. */
1357 struct compiler
1359 const char *suffix; /* Use this compiler for input files
1360 whose names end in this suffix. */
1362 const char *spec; /* To use this compiler, run this spec. */
1364 const char *cpp_spec; /* If non-NULL, substitute this spec
1365 for `%C', rather than the usual
1366 cpp_spec. */
1367 int combinable; /* If nonzero, compiler can deal with
1368 multiple source files at once (IMA). */
1369 int needs_preprocessing; /* If nonzero, source files need to
1370 be run through a preprocessor. */
1373 /* Pointer to a vector of `struct compiler' that gives the spec for
1374 compiling a file, based on its suffix.
1375 A file that does not end in any of these suffixes will be passed
1376 unchanged to the loader and nothing else will be done to it.
1378 An entry containing two 0s is used to terminate the vector.
1380 If multiple entries match a file, the last matching one is used. */
1382 static struct compiler *compilers;
1384 /* Number of entries in `compilers', not counting the null terminator. */
1386 static int n_compilers;
1388 /* The default list of file name suffixes and their compilation specs. */
1390 static const struct compiler default_compilers[] =
1392 /* Add lists of suffixes of known languages here. If those languages
1393 were not present when we built the driver, we will hit these copies
1394 and be given a more meaningful error than "file not used since
1395 linking is not done". */
1396 {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
1397 {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1398 {".mii", "#Objective-C++", 0, 0, 0},
1399 {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1400 {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
1401 {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1402 {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1403 {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
1404 {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1405 {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1406 {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1407 {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1408 {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1409 {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1410 {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1411 {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
1412 {".r", "#Ratfor", 0, 0, 0},
1413 {".go", "#Go", 0, 1, 0},
1414 {".d", "#D", 0, 1, 0}, {".dd", "#D", 0, 1, 0}, {".di", "#D", 0, 1, 0},
1415 /* Next come the entries for C. */
1416 {".c", "@c", 0, 0, 1},
1417 {"@c",
1418 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1419 external preprocessor if -save-temps is given. */
1420 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1421 %{!E:%{!M:%{!MM:\
1422 %{traditional:\
1423 %eGNU C no longer supports -traditional without -E}\
1424 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1425 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1426 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1427 %(cc1_options)}\
1428 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1429 cc1 %(cpp_unique_options) %(cc1_options)}}}\
1430 %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 1},
1431 {"-",
1432 "%{!E:%e-E or -x required when input is from standard input}\
1433 %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1434 {".h", "@c-header", 0, 0, 0},
1435 {"@c-header",
1436 /* cc1 has an integrated ISO C preprocessor. We should invoke the
1437 external preprocessor if -save-temps is given. */
1438 "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1439 %{!E:%{!M:%{!MM:\
1440 %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1441 %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1442 cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1443 %(cc1_options)\
1444 %{!fsyntax-only:%{!S:-o %g.s} \
1445 %{!fdump-ada-spec*:%{!o*:--output-pch %i.gch}\
1446 %W{o*:--output-pch %*}}%V}}\
1447 %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1448 cc1 %(cpp_unique_options) %(cc1_options)\
1449 %{!fsyntax-only:%{!S:-o %g.s} \
1450 %{!fdump-ada-spec*:%{!o*:--output-pch %i.gch}\
1451 %W{o*:--output-pch %*}}%V}}}}}}}", 0, 0, 0},
1452 {".i", "@cpp-output", 0, 0, 0},
1453 {"@cpp-output",
1454 "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
1455 {".s", "@assembler", 0, 0, 0},
1456 {"@assembler",
1457 "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
1458 {".sx", "@assembler-with-cpp", 0, 0, 0},
1459 {".S", "@assembler-with-cpp", 0, 0, 0},
1460 {"@assembler-with-cpp",
1461 #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1462 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1463 %{E|M|MM:%(cpp_debug_options)}\
1464 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1465 as %(asm_debug) %(asm_options) %|.s %A }}}}"
1466 #else
1467 "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1468 %{E|M|MM:%(cpp_debug_options)}\
1469 %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1470 as %(asm_debug) %(asm_options) %m.s %A }}}}"
1471 #endif
1472 , 0, 0, 0},
1474 #include "specs.h"
1475 /* Mark end of table. */
1476 {0, 0, 0, 0, 0}
1479 /* Number of elements in default_compilers, not counting the terminator. */
1481 static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1483 typedef char *char_p; /* For DEF_VEC_P. */
1485 /* A vector of options to give to the linker.
1486 These options are accumulated by %x,
1487 and substituted into the linker command with %X. */
1488 static vec<char_p> linker_options;
1490 /* A vector of options to give to the assembler.
1491 These options are accumulated by -Wa,
1492 and substituted into the assembler command with %Y. */
1493 static vec<char_p> assembler_options;
1495 /* A vector of options to give to the preprocessor.
1496 These options are accumulated by -Wp,
1497 and substituted into the preprocessor command with %Z. */
1498 static vec<char_p> preprocessor_options;
1500 static char *
1501 skip_whitespace (char *p)
1503 while (1)
1505 /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1506 be considered whitespace. */
1507 if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1508 return p + 1;
1509 else if (*p == '\n' || *p == ' ' || *p == '\t')
1510 p++;
1511 else if (*p == '#')
1513 while (*p != '\n')
1514 p++;
1515 p++;
1517 else
1518 break;
1521 return p;
1523 /* Structures to keep track of prefixes to try when looking for files. */
1525 struct prefix_list
1527 const char *prefix; /* String to prepend to the path. */
1528 struct prefix_list *next; /* Next in linked list. */
1529 int require_machine_suffix; /* Don't use without machine_suffix. */
1530 /* 2 means try both machine_suffix and just_machine_suffix. */
1531 int priority; /* Sort key - priority within list. */
1532 int os_multilib; /* 1 if OS multilib scheme should be used,
1533 0 for GCC multilib scheme. */
1536 struct path_prefix
1538 struct prefix_list *plist; /* List of prefixes to try */
1539 int max_len; /* Max length of a prefix in PLIST */
1540 const char *name; /* Name of this list (used in config stuff) */
1543 /* List of prefixes to try when looking for executables. */
1545 static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1547 /* List of prefixes to try when looking for startup (crt0) files. */
1549 static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1551 /* List of prefixes to try when looking for include files. */
1553 static struct path_prefix include_prefixes = { 0, 0, "include" };
1555 /* Suffix to attach to directories searched for commands.
1556 This looks like `MACHINE/VERSION/'. */
1558 static const char *machine_suffix = 0;
1560 /* Suffix to attach to directories searched for commands.
1561 This is just `MACHINE/'. */
1563 static const char *just_machine_suffix = 0;
1565 /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1567 static const char *gcc_exec_prefix;
1569 /* Adjusted value of standard_libexec_prefix. */
1571 static const char *gcc_libexec_prefix;
1573 /* Default prefixes to attach to command names. */
1575 #ifndef STANDARD_STARTFILE_PREFIX_1
1576 #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1577 #endif
1578 #ifndef STANDARD_STARTFILE_PREFIX_2
1579 #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1580 #endif
1582 #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1583 #undef MD_EXEC_PREFIX
1584 #undef MD_STARTFILE_PREFIX
1585 #undef MD_STARTFILE_PREFIX_1
1586 #endif
1588 /* If no prefixes defined, use the null string, which will disable them. */
1589 #ifndef MD_EXEC_PREFIX
1590 #define MD_EXEC_PREFIX ""
1591 #endif
1592 #ifndef MD_STARTFILE_PREFIX
1593 #define MD_STARTFILE_PREFIX ""
1594 #endif
1595 #ifndef MD_STARTFILE_PREFIX_1
1596 #define MD_STARTFILE_PREFIX_1 ""
1597 #endif
1599 /* These directories are locations set at configure-time based on the
1600 --prefix option provided to configure. Their initializers are
1601 defined in Makefile.in. These paths are not *directly* used when
1602 gcc_exec_prefix is set because, in that case, we know where the
1603 compiler has been installed, and use paths relative to that
1604 location instead. */
1605 static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1606 static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1607 static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1608 static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1610 /* For native compilers, these are well-known paths containing
1611 components that may be provided by the system. For cross
1612 compilers, these paths are not used. */
1613 static const char *md_exec_prefix = MD_EXEC_PREFIX;
1614 static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1615 static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1616 static const char *const standard_startfile_prefix_1
1617 = STANDARD_STARTFILE_PREFIX_1;
1618 static const char *const standard_startfile_prefix_2
1619 = STANDARD_STARTFILE_PREFIX_2;
1621 /* A relative path to be used in finding the location of tools
1622 relative to the driver. */
1623 static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1625 /* A prefix to be used when this is an accelerator compiler. */
1626 static const char *const accel_dir_suffix = ACCEL_DIR_SUFFIX;
1628 /* Subdirectory to use for locating libraries. Set by
1629 set_multilib_dir based on the compilation options. */
1631 static const char *multilib_dir;
1633 /* Subdirectory to use for locating libraries in OS conventions. Set by
1634 set_multilib_dir based on the compilation options. */
1636 static const char *multilib_os_dir;
1638 /* Subdirectory to use for locating libraries in multiarch conventions. Set by
1639 set_multilib_dir based on the compilation options. */
1641 static const char *multiarch_dir;
1643 /* Structure to keep track of the specs that have been defined so far.
1644 These are accessed using %(specname) in a compiler or link
1645 spec. */
1647 struct spec_list
1649 /* The following 2 fields must be first */
1650 /* to allow EXTRA_SPECS to be initialized */
1651 const char *name; /* name of the spec. */
1652 const char *ptr; /* available ptr if no static pointer */
1654 /* The following fields are not initialized */
1655 /* by EXTRA_SPECS */
1656 const char **ptr_spec; /* pointer to the spec itself. */
1657 struct spec_list *next; /* Next spec in linked list. */
1658 int name_len; /* length of the name */
1659 bool user_p; /* whether string come from file spec. */
1660 bool alloc_p; /* whether string was allocated */
1661 const char *default_ptr; /* The default value of *ptr_spec. */
1664 #define INIT_STATIC_SPEC(NAME,PTR) \
1665 { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, false, false, \
1666 *PTR }
1668 /* List of statically defined specs. */
1669 static struct spec_list static_specs[] =
1671 INIT_STATIC_SPEC ("asm", &asm_spec),
1672 INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1673 INIT_STATIC_SPEC ("asm_debug_option", &asm_debug_option),
1674 INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1675 INIT_STATIC_SPEC ("asm_options", &asm_options),
1676 INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1677 INIT_STATIC_SPEC ("cpp", &cpp_spec),
1678 INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1679 INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1680 INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1681 INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1682 INIT_STATIC_SPEC ("cc1", &cc1_spec),
1683 INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1684 INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1685 INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1686 INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1687 INIT_STATIC_SPEC ("endfile", &endfile_spec),
1688 INIT_STATIC_SPEC ("link", &link_spec),
1689 INIT_STATIC_SPEC ("lib", &lib_spec),
1690 INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1691 INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1692 INIT_STATIC_SPEC ("startfile", &startfile_spec),
1693 INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1694 INIT_STATIC_SPEC ("version", &compiler_version),
1695 INIT_STATIC_SPEC ("multilib", &multilib_select),
1696 INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1697 INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1698 INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1699 INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1700 INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1701 INIT_STATIC_SPEC ("multilib_reuse", &multilib_reuse),
1702 INIT_STATIC_SPEC ("linker", &linker_name_spec),
1703 INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1704 INIT_STATIC_SPEC ("lto_wrapper", &lto_wrapper_spec),
1705 INIT_STATIC_SPEC ("lto_gcc", &lto_gcc_spec),
1706 INIT_STATIC_SPEC ("post_link", &post_link_spec),
1707 INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1708 INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1709 INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1710 INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1711 INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1712 INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1713 INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1714 INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1715 INIT_STATIC_SPEC ("self_spec", &self_spec),
1718 #ifdef EXTRA_SPECS /* additional specs needed */
1719 /* Structure to keep track of just the first two args of a spec_list.
1720 That is all that the EXTRA_SPECS macro gives us. */
1721 struct spec_list_1
1723 const char *const name;
1724 const char *const ptr;
1727 static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1728 static struct spec_list *extra_specs = (struct spec_list *) 0;
1729 #endif
1731 /* List of dynamically allocates specs that have been defined so far. */
1733 static struct spec_list *specs = (struct spec_list *) 0;
1735 /* List of static spec functions. */
1737 static const struct spec_function static_spec_functions[] =
1739 { "getenv", getenv_spec_function },
1740 { "if-exists", if_exists_spec_function },
1741 { "if-exists-else", if_exists_else_spec_function },
1742 { "if-exists-then-else", if_exists_then_else_spec_function },
1743 { "sanitize", sanitize_spec_function },
1744 { "replace-outfile", replace_outfile_spec_function },
1745 { "remove-outfile", remove_outfile_spec_function },
1746 { "version-compare", version_compare_spec_function },
1747 { "include", include_spec_function },
1748 { "find-file", find_file_spec_function },
1749 { "find-plugindir", find_plugindir_spec_function },
1750 { "print-asm-header", print_asm_header_spec_function },
1751 { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1752 { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1753 { "pass-through-libs", pass_through_libs_spec_func },
1754 { "dumps", dumps_spec_func },
1755 { "gt", greater_than_spec_func },
1756 { "debug-level-gt", debug_level_greater_than_spec_func },
1757 { "dwarf-version-gt", dwarf_version_greater_than_spec_func },
1758 { "fortran-preinclude-file", find_fortran_preinclude_file},
1759 #ifdef EXTRA_SPEC_FUNCTIONS
1760 EXTRA_SPEC_FUNCTIONS
1761 #endif
1762 { 0, 0 }
1765 static int processing_spec_function;
1767 /* Add appropriate libgcc specs to OBSTACK, taking into account
1768 various permutations of -shared-libgcc, -shared, and such. */
1770 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1772 #ifndef USE_LD_AS_NEEDED
1773 #define USE_LD_AS_NEEDED 0
1774 #endif
1776 static void
1777 init_gcc_specs (struct obstack *obstack, const char *shared_name,
1778 const char *static_name, const char *eh_name)
1780 char *buf;
1782 #if USE_LD_AS_NEEDED
1783 buf = concat ("%{static|static-libgcc|static-pie:", static_name, " ", eh_name, "}"
1784 "%{!static:%{!static-libgcc:%{!static-pie:"
1785 "%{!shared-libgcc:",
1786 static_name, " " LD_AS_NEEDED_OPTION " ",
1787 shared_name, " " LD_NO_AS_NEEDED_OPTION
1789 "%{shared-libgcc:",
1790 shared_name, "%{!shared: ", static_name, "}"
1791 "}}"
1792 #else
1793 buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1794 "%{!static:%{!static-libgcc:"
1795 "%{!shared:"
1796 "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1797 "%{shared-libgcc:", shared_name, " ", static_name, "}"
1799 #ifdef LINK_EH_SPEC
1800 "%{shared:"
1801 "%{shared-libgcc:", shared_name, "}"
1802 "%{!shared-libgcc:", static_name, "}"
1804 #else
1805 "%{shared:", shared_name, "}"
1806 #endif
1807 #endif
1808 "}}", NULL);
1810 obstack_grow (obstack, buf, strlen (buf));
1811 free (buf);
1813 #endif /* ENABLE_SHARED_LIBGCC */
1815 /* Initialize the specs lookup routines. */
1817 static void
1818 init_spec (void)
1820 struct spec_list *next = (struct spec_list *) 0;
1821 struct spec_list *sl = (struct spec_list *) 0;
1822 int i;
1824 if (specs)
1825 return; /* Already initialized. */
1827 if (verbose_flag)
1828 fnotice (stderr, "Using built-in specs.\n");
1830 #ifdef EXTRA_SPECS
1831 extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1833 for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1835 sl = &extra_specs[i];
1836 sl->name = extra_specs_1[i].name;
1837 sl->ptr = extra_specs_1[i].ptr;
1838 sl->next = next;
1839 sl->name_len = strlen (sl->name);
1840 sl->ptr_spec = &sl->ptr;
1841 gcc_assert (sl->ptr_spec != NULL);
1842 sl->default_ptr = sl->ptr;
1843 next = sl;
1845 #endif
1847 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1849 sl = &static_specs[i];
1850 sl->next = next;
1851 next = sl;
1854 #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1855 /* ??? If neither -shared-libgcc nor --static-libgcc was
1856 seen, then we should be making an educated guess. Some proposed
1857 heuristics for ELF include:
1859 (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1860 program will be doing dynamic loading, which will likely
1861 need the shared libgcc.
1863 (2) If "-ldl", then it's also a fair bet that we're doing
1864 dynamic loading.
1866 (3) For each ET_DYN we're linking against (either through -lfoo
1867 or /some/path/foo.so), check to see whether it or one of
1868 its dependencies depends on a shared libgcc.
1870 (4) If "-shared"
1872 If the runtime is fixed to look for program headers instead
1873 of calling __register_frame_info at all, for each object,
1874 use the shared libgcc if any EH symbol referenced.
1876 If crtstuff is fixed to not invoke __register_frame_info
1877 automatically, for each object, use the shared libgcc if
1878 any non-empty unwind section found.
1880 Doing any of this probably requires invoking an external program to
1881 do the actual object file scanning. */
1883 const char *p = libgcc_spec;
1884 int in_sep = 1;
1886 /* Transform the extant libgcc_spec into one that uses the shared libgcc
1887 when given the proper command line arguments. */
1888 while (*p)
1890 if (in_sep && *p == '-' && startswith (p, "-lgcc"))
1892 init_gcc_specs (&obstack,
1893 "-lgcc_s"
1894 #ifdef USE_LIBUNWIND_EXCEPTIONS
1895 " -lunwind"
1896 #endif
1898 "-lgcc",
1899 "-lgcc_eh"
1900 #ifdef USE_LIBUNWIND_EXCEPTIONS
1901 # ifdef HAVE_LD_STATIC_DYNAMIC
1902 " %{!static:%{!static-pie:" LD_STATIC_OPTION "}} -lunwind"
1903 " %{!static:%{!static-pie:" LD_DYNAMIC_OPTION "}}"
1904 # else
1905 " -lunwind"
1906 # endif
1907 #endif
1910 p += 5;
1911 in_sep = 0;
1913 else if (in_sep && *p == 'l' && startswith (p, "libgcc.a%s"))
1915 /* Ug. We don't know shared library extensions. Hope that
1916 systems that use this form don't do shared libraries. */
1917 init_gcc_specs (&obstack,
1918 "-lgcc_s",
1919 "libgcc.a%s",
1920 "libgcc_eh.a%s"
1921 #ifdef USE_LIBUNWIND_EXCEPTIONS
1922 " -lunwind"
1923 #endif
1925 p += 10;
1926 in_sep = 0;
1928 else
1930 obstack_1grow (&obstack, *p);
1931 in_sep = (*p == ' ');
1932 p += 1;
1936 obstack_1grow (&obstack, '\0');
1937 libgcc_spec = XOBFINISH (&obstack, const char *);
1939 #endif
1940 #ifdef USE_AS_TRADITIONAL_FORMAT
1941 /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1943 static const char tf[] = "--traditional-format ";
1944 obstack_grow (&obstack, tf, sizeof (tf) - 1);
1945 obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1946 asm_spec = XOBFINISH (&obstack, const char *);
1948 #endif
1950 #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \
1951 defined LINKER_HASH_STYLE
1952 # ifdef LINK_BUILDID_SPEC
1953 /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1954 obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof (LINK_BUILDID_SPEC) - 1);
1955 # endif
1956 # ifdef LINK_EH_SPEC
1957 /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1958 obstack_grow (&obstack, LINK_EH_SPEC, sizeof (LINK_EH_SPEC) - 1);
1959 # endif
1960 # ifdef LINKER_HASH_STYLE
1961 /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had
1962 before. */
1964 static const char hash_style[] = "--hash-style=";
1965 obstack_grow (&obstack, hash_style, sizeof (hash_style) - 1);
1966 obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof (LINKER_HASH_STYLE) - 1);
1967 obstack_1grow (&obstack, ' ');
1969 # endif
1970 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
1971 link_spec = XOBFINISH (&obstack, const char *);
1972 #endif
1974 specs = sl;
1977 /* Update the entry for SPEC in the static_specs table to point to VALUE,
1978 ensuring that we free the previous value if necessary. Set alloc_p for the
1979 entry to ALLOC_P: this determines whether we take ownership of VALUE (i.e.
1980 whether we need to free it later on). */
1981 static void
1982 set_static_spec (const char **spec, const char *value, bool alloc_p)
1984 struct spec_list *sl = NULL;
1986 for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
1988 if (static_specs[i].ptr_spec == spec)
1990 sl = static_specs + i;
1991 break;
1995 gcc_assert (sl);
1997 if (sl->alloc_p)
1999 const char *old = *spec;
2000 free (const_cast <char *> (old));
2003 *spec = value;
2004 sl->alloc_p = alloc_p;
2007 /* Update a static spec to a new string, taking ownership of that
2008 string's memory. */
2009 static void set_static_spec_owned (const char **spec, const char *val)
2011 return set_static_spec (spec, val, true);
2014 /* Update a static spec to point to a new value, but don't take
2015 ownership of (i.e. don't free) that string. */
2016 static void set_static_spec_shared (const char **spec, const char *val)
2018 return set_static_spec (spec, val, false);
2022 /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
2023 removed; If the spec starts with a + then SPEC is added to the end of the
2024 current spec. */
2026 static void
2027 set_spec (const char *name, const char *spec, bool user_p)
2029 struct spec_list *sl;
2030 const char *old_spec;
2031 int name_len = strlen (name);
2032 int i;
2034 /* If this is the first call, initialize the statically allocated specs. */
2035 if (!specs)
2037 struct spec_list *next = (struct spec_list *) 0;
2038 for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
2040 sl = &static_specs[i];
2041 sl->next = next;
2042 next = sl;
2044 specs = sl;
2047 /* See if the spec already exists. */
2048 for (sl = specs; sl; sl = sl->next)
2049 if (name_len == sl->name_len && !strcmp (sl->name, name))
2050 break;
2052 if (!sl)
2054 /* Not found - make it. */
2055 sl = XNEW (struct spec_list);
2056 sl->name = xstrdup (name);
2057 sl->name_len = name_len;
2058 sl->ptr_spec = &sl->ptr;
2059 sl->alloc_p = 0;
2060 *(sl->ptr_spec) = "";
2061 sl->next = specs;
2062 sl->default_ptr = NULL;
2063 specs = sl;
2066 old_spec = *(sl->ptr_spec);
2067 *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
2068 ? concat (old_spec, spec + 1, NULL)
2069 : xstrdup (spec));
2071 #ifdef DEBUG_SPECS
2072 if (verbose_flag)
2073 fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
2074 #endif
2076 /* Free the old spec. */
2077 if (old_spec && sl->alloc_p)
2078 free (CONST_CAST (char *, old_spec));
2080 sl->user_p = user_p;
2081 sl->alloc_p = true;
2084 /* Accumulate a command (program name and args), and run it. */
2086 typedef const char *const_char_p; /* For DEF_VEC_P. */
2088 /* Vector of pointers to arguments in the current line of specifications. */
2089 static vec<const_char_p> argbuf;
2091 /* Likewise, but for the current @file. */
2092 static vec<const_char_p> at_file_argbuf;
2094 /* Whether an @file is currently open. */
2095 static bool in_at_file = false;
2097 /* Were the options -c, -S or -E passed. */
2098 static int have_c = 0;
2100 /* Was the option -o passed. */
2101 static int have_o = 0;
2103 /* Was the option -E passed. */
2104 static int have_E = 0;
2106 /* Pointer to output file name passed in with -o. */
2107 static const char *output_file = 0;
2109 /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
2110 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2111 it here. */
2113 static struct temp_name {
2114 const char *suffix; /* suffix associated with the code. */
2115 int length; /* strlen (suffix). */
2116 int unique; /* Indicates whether %g or %u/%U was used. */
2117 const char *filename; /* associated filename. */
2118 int filename_length; /* strlen (filename). */
2119 struct temp_name *next;
2120 } *temp_names;
2122 /* Number of commands executed so far. */
2124 static int execution_count;
2126 /* Number of commands that exited with a signal. */
2128 static int signal_count;
2130 /* Allocate the argument vector. */
2132 static void
2133 alloc_args (void)
2135 argbuf.create (10);
2136 at_file_argbuf.create (10);
2139 /* Clear out the vector of arguments (after a command is executed). */
2141 static void
2142 clear_args (void)
2144 argbuf.truncate (0);
2145 at_file_argbuf.truncate (0);
2148 /* Add one argument to the vector at the end.
2149 This is done when a space is seen or at the end of the line.
2150 If DELETE_ALWAYS is nonzero, the arg is a filename
2151 and the file should be deleted eventually.
2152 If DELETE_FAILURE is nonzero, the arg is a filename
2153 and the file should be deleted if this compilation fails. */
2155 static void
2156 store_arg (const char *arg, int delete_always, int delete_failure)
2158 if (in_at_file)
2159 at_file_argbuf.safe_push (arg);
2160 else
2161 argbuf.safe_push (arg);
2163 if (delete_always || delete_failure)
2165 const char *p;
2166 /* If the temporary file we should delete is specified as
2167 part of a joined argument extract the filename. */
2168 if (arg[0] == '-'
2169 && (p = strrchr (arg, '=')))
2170 arg = p + 1;
2171 record_temp_file (arg, delete_always, delete_failure);
2175 /* Open a temporary @file into which subsequent arguments will be stored. */
2177 static void
2178 open_at_file (void)
2180 if (in_at_file)
2181 fatal_error (input_location, "cannot open nested response file");
2182 else
2183 in_at_file = true;
2186 /* Create a temporary @file name. */
2188 static char *make_at_file (void)
2190 static int fileno = 0;
2191 char filename[20];
2192 const char *base, *ext;
2194 if (!save_temps_flag)
2195 return make_temp_file ("");
2197 base = dumpbase;
2198 if (!(base && *base))
2199 base = dumpdir;
2200 if (!(base && *base))
2201 base = "a";
2203 sprintf (filename, ".args.%d", fileno++);
2204 ext = filename;
2206 if (base == dumpdir && dumpdir_trailing_dash_added)
2207 ext++;
2209 return concat (base, ext, NULL);
2212 /* Close the temporary @file and add @file to the argument list. */
2214 static void
2215 close_at_file (void)
2217 if (!in_at_file)
2218 fatal_error (input_location, "cannot close nonexistent response file");
2220 in_at_file = false;
2222 const unsigned int n_args = at_file_argbuf.length ();
2223 if (n_args == 0)
2224 return;
2226 char **argv = XALLOCAVEC (char *, n_args + 1);
2227 char *temp_file = make_at_file ();
2228 char *at_argument = concat ("@", temp_file, NULL);
2229 FILE *f = fopen (temp_file, "w");
2230 int status;
2231 unsigned int i;
2233 /* Copy the strings over. */
2234 for (i = 0; i < n_args; i++)
2235 argv[i] = CONST_CAST (char *, at_file_argbuf[i]);
2236 argv[i] = NULL;
2238 at_file_argbuf.truncate (0);
2240 if (f == NULL)
2241 fatal_error (input_location, "could not open temporary response file %s",
2242 temp_file);
2244 status = writeargv (argv, f);
2246 if (status)
2247 fatal_error (input_location,
2248 "could not write to temporary response file %s",
2249 temp_file);
2251 status = fclose (f);
2253 if (status == EOF)
2254 fatal_error (input_location, "could not close temporary response file %s",
2255 temp_file);
2257 store_arg (at_argument, 0, 0);
2259 record_temp_file (temp_file, !save_temps_flag, !save_temps_flag);
2262 /* Load specs from a file name named FILENAME, replacing occurrences of
2263 various different types of line-endings, \r\n, \n\r and just \r, with
2264 a single \n. */
2266 static char *
2267 load_specs (const char *filename)
2269 int desc;
2270 int readlen;
2271 struct stat statbuf;
2272 char *buffer;
2273 char *buffer_p;
2274 char *specs;
2275 char *specs_p;
2277 if (verbose_flag)
2278 fnotice (stderr, "Reading specs from %s\n", filename);
2280 /* Open and stat the file. */
2281 desc = open (filename, O_RDONLY, 0);
2282 if (desc < 0)
2284 failed:
2285 /* This leaves DESC open, but the OS will save us. */
2286 fatal_error (input_location, "cannot read spec file %qs: %m", filename);
2289 if (stat (filename, &statbuf) < 0)
2290 goto failed;
2292 /* Read contents of file into BUFFER. */
2293 buffer = XNEWVEC (char, statbuf.st_size + 1);
2294 readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2295 if (readlen < 0)
2296 goto failed;
2297 buffer[readlen] = 0;
2298 close (desc);
2300 specs = XNEWVEC (char, readlen + 1);
2301 specs_p = specs;
2302 for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2304 int skip = 0;
2305 char c = *buffer_p;
2306 if (c == '\r')
2308 if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
2309 skip = 1;
2310 else if (*(buffer_p + 1) == '\n') /* \r\n */
2311 skip = 1;
2312 else /* \r */
2313 c = '\n';
2315 if (! skip)
2316 *specs_p++ = c;
2318 *specs_p = '\0';
2320 free (buffer);
2321 return (specs);
2324 /* Read compilation specs from a file named FILENAME,
2325 replacing the default ones.
2327 A suffix which starts with `*' is a definition for
2328 one of the machine-specific sub-specs. The "suffix" should be
2329 *asm, *cc1, *cpp, *link, *startfile, etc.
2330 The corresponding spec is stored in asm_spec, etc.,
2331 rather than in the `compilers' vector.
2333 Anything invalid in the file is a fatal error. */
2335 static void
2336 read_specs (const char *filename, bool main_p, bool user_p)
2338 char *buffer;
2339 char *p;
2341 buffer = load_specs (filename);
2343 /* Scan BUFFER for specs, putting them in the vector. */
2344 p = buffer;
2345 while (1)
2347 char *suffix;
2348 char *spec;
2349 char *in, *out, *p1, *p2, *p3;
2351 /* Advance P in BUFFER to the next nonblank nocomment line. */
2352 p = skip_whitespace (p);
2353 if (*p == 0)
2354 break;
2356 /* Is this a special command that starts with '%'? */
2357 /* Don't allow this for the main specs file, since it would
2358 encourage people to overwrite it. */
2359 if (*p == '%' && !main_p)
2361 p1 = p;
2362 while (*p && *p != '\n')
2363 p++;
2365 /* Skip '\n'. */
2366 p++;
2368 if (startswith (p1, "%include")
2369 && (p1[sizeof "%include" - 1] == ' '
2370 || p1[sizeof "%include" - 1] == '\t'))
2372 char *new_filename;
2374 p1 += sizeof ("%include");
2375 while (*p1 == ' ' || *p1 == '\t')
2376 p1++;
2378 if (*p1++ != '<' || p[-2] != '>')
2379 fatal_error (input_location,
2380 "specs %%include syntax malformed after "
2381 "%ld characters",
2382 (long) (p1 - buffer + 1));
2384 p[-2] = '\0';
2385 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2386 read_specs (new_filename ? new_filename : p1, false, user_p);
2387 continue;
2389 else if (startswith (p1, "%include_noerr")
2390 && (p1[sizeof "%include_noerr" - 1] == ' '
2391 || p1[sizeof "%include_noerr" - 1] == '\t'))
2393 char *new_filename;
2395 p1 += sizeof "%include_noerr";
2396 while (*p1 == ' ' || *p1 == '\t')
2397 p1++;
2399 if (*p1++ != '<' || p[-2] != '>')
2400 fatal_error (input_location,
2401 "specs %%include syntax malformed after "
2402 "%ld characters",
2403 (long) (p1 - buffer + 1));
2405 p[-2] = '\0';
2406 new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2407 if (new_filename)
2408 read_specs (new_filename, false, user_p);
2409 else if (verbose_flag)
2410 fnotice (stderr, "could not find specs file %s\n", p1);
2411 continue;
2413 else if (startswith (p1, "%rename")
2414 && (p1[sizeof "%rename" - 1] == ' '
2415 || p1[sizeof "%rename" - 1] == '\t'))
2417 int name_len;
2418 struct spec_list *sl;
2419 struct spec_list *newsl;
2421 /* Get original name. */
2422 p1 += sizeof "%rename";
2423 while (*p1 == ' ' || *p1 == '\t')
2424 p1++;
2426 if (! ISALPHA ((unsigned char) *p1))
2427 fatal_error (input_location,
2428 "specs %%rename syntax malformed after "
2429 "%ld characters",
2430 (long) (p1 - buffer));
2432 p2 = p1;
2433 while (*p2 && !ISSPACE ((unsigned char) *p2))
2434 p2++;
2436 if (*p2 != ' ' && *p2 != '\t')
2437 fatal_error (input_location,
2438 "specs %%rename syntax malformed after "
2439 "%ld characters",
2440 (long) (p2 - buffer));
2442 name_len = p2 - p1;
2443 *p2++ = '\0';
2444 while (*p2 == ' ' || *p2 == '\t')
2445 p2++;
2447 if (! ISALPHA ((unsigned char) *p2))
2448 fatal_error (input_location,
2449 "specs %%rename syntax malformed after "
2450 "%ld characters",
2451 (long) (p2 - buffer));
2453 /* Get new spec name. */
2454 p3 = p2;
2455 while (*p3 && !ISSPACE ((unsigned char) *p3))
2456 p3++;
2458 if (p3 != p - 1)
2459 fatal_error (input_location,
2460 "specs %%rename syntax malformed after "
2461 "%ld characters",
2462 (long) (p3 - buffer));
2463 *p3 = '\0';
2465 for (sl = specs; sl; sl = sl->next)
2466 if (name_len == sl->name_len && !strcmp (sl->name, p1))
2467 break;
2469 if (!sl)
2470 fatal_error (input_location,
2471 "specs %s spec was not found to be renamed", p1);
2473 if (strcmp (p1, p2) == 0)
2474 continue;
2476 for (newsl = specs; newsl; newsl = newsl->next)
2477 if (strcmp (newsl->name, p2) == 0)
2478 fatal_error (input_location,
2479 "%s: attempt to rename spec %qs to "
2480 "already defined spec %qs",
2481 filename, p1, p2);
2483 if (verbose_flag)
2485 fnotice (stderr, "rename spec %s to %s\n", p1, p2);
2486 #ifdef DEBUG_SPECS
2487 fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec));
2488 #endif
2491 set_spec (p2, *(sl->ptr_spec), user_p);
2492 if (sl->alloc_p)
2493 free (CONST_CAST (char *, *(sl->ptr_spec)));
2495 *(sl->ptr_spec) = "";
2496 sl->alloc_p = 0;
2497 continue;
2499 else
2500 fatal_error (input_location,
2501 "specs unknown %% command after %ld characters",
2502 (long) (p1 - buffer));
2505 /* Find the colon that should end the suffix. */
2506 p1 = p;
2507 while (*p1 && *p1 != ':' && *p1 != '\n')
2508 p1++;
2510 /* The colon shouldn't be missing. */
2511 if (*p1 != ':')
2512 fatal_error (input_location,
2513 "specs file malformed after %ld characters",
2514 (long) (p1 - buffer));
2516 /* Skip back over trailing whitespace. */
2517 p2 = p1;
2518 while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2519 p2--;
2521 /* Copy the suffix to a string. */
2522 suffix = save_string (p, p2 - p);
2523 /* Find the next line. */
2524 p = skip_whitespace (p1 + 1);
2525 if (p[1] == 0)
2526 fatal_error (input_location,
2527 "specs file malformed after %ld characters",
2528 (long) (p - buffer));
2530 p1 = p;
2531 /* Find next blank line or end of string. */
2532 while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2533 p1++;
2535 /* Specs end at the blank line and do not include the newline. */
2536 spec = save_string (p, p1 - p);
2537 p = p1;
2539 /* Delete backslash-newline sequences from the spec. */
2540 in = spec;
2541 out = spec;
2542 while (*in != 0)
2544 if (in[0] == '\\' && in[1] == '\n')
2545 in += 2;
2546 else if (in[0] == '#')
2547 while (*in && *in != '\n')
2548 in++;
2550 else
2551 *out++ = *in++;
2553 *out = 0;
2555 if (suffix[0] == '*')
2557 if (! strcmp (suffix, "*link_command"))
2558 link_command_spec = spec;
2559 else
2561 set_spec (suffix + 1, spec, user_p);
2562 free (spec);
2565 else
2567 /* Add this pair to the vector. */
2568 compilers
2569 = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
2571 compilers[n_compilers].suffix = suffix;
2572 compilers[n_compilers].spec = spec;
2573 n_compilers++;
2574 memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2577 if (*suffix == 0)
2578 link_command_spec = spec;
2581 if (link_command_spec == 0)
2582 fatal_error (input_location, "spec file has no spec for linking");
2584 XDELETEVEC (buffer);
2587 /* Record the names of temporary files we tell compilers to write,
2588 and delete them at the end of the run. */
2590 /* This is the common prefix we use to make temp file names.
2591 It is chosen once for each run of this program.
2592 It is substituted into a spec by %g or %j.
2593 Thus, all temp file names contain this prefix.
2594 In practice, all temp file names start with this prefix.
2596 This prefix comes from the envvar TMPDIR if it is defined;
2597 otherwise, from the P_tmpdir macro if that is defined;
2598 otherwise, in /usr/tmp or /tmp;
2599 or finally the current directory if all else fails. */
2601 static const char *temp_filename;
2603 /* Length of the prefix. */
2605 static int temp_filename_length;
2607 /* Define the list of temporary files to delete. */
2609 struct temp_file
2611 const char *name;
2612 struct temp_file *next;
2615 /* Queue of files to delete on success or failure of compilation. */
2616 static struct temp_file *always_delete_queue;
2617 /* Queue of files to delete on failure of compilation. */
2618 static struct temp_file *failure_delete_queue;
2620 /* Record FILENAME as a file to be deleted automatically.
2621 ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2622 otherwise delete it in any case.
2623 FAIL_DELETE nonzero means delete it if a compilation step fails;
2624 otherwise delete it in any case. */
2626 void
2627 record_temp_file (const char *filename, int always_delete, int fail_delete)
2629 char *const name = xstrdup (filename);
2631 if (always_delete)
2633 struct temp_file *temp;
2634 for (temp = always_delete_queue; temp; temp = temp->next)
2635 if (! filename_cmp (name, temp->name))
2637 free (name);
2638 goto already1;
2641 temp = XNEW (struct temp_file);
2642 temp->next = always_delete_queue;
2643 temp->name = name;
2644 always_delete_queue = temp;
2646 already1:;
2649 if (fail_delete)
2651 struct temp_file *temp;
2652 for (temp = failure_delete_queue; temp; temp = temp->next)
2653 if (! filename_cmp (name, temp->name))
2655 free (name);
2656 goto already2;
2659 temp = XNEW (struct temp_file);
2660 temp->next = failure_delete_queue;
2661 temp->name = name;
2662 failure_delete_queue = temp;
2664 already2:;
2668 /* Delete all the temporary files whose names we previously recorded. */
2670 #ifndef DELETE_IF_ORDINARY
2671 #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2672 do \
2674 if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2675 if (unlink (NAME) < 0) \
2676 if (VERBOSE_FLAG) \
2677 error ("%s: %m", (NAME)); \
2678 } while (0)
2679 #endif
2681 static void
2682 delete_if_ordinary (const char *name)
2684 struct stat st;
2685 #ifdef DEBUG
2686 int i, c;
2688 printf ("Delete %s? (y or n) ", name);
2689 fflush (stdout);
2690 i = getchar ();
2691 if (i != '\n')
2692 while ((c = getchar ()) != '\n' && c != EOF)
2695 if (i == 'y' || i == 'Y')
2696 #endif /* DEBUG */
2697 DELETE_IF_ORDINARY (name, st, verbose_flag);
2700 static void
2701 delete_temp_files (void)
2703 struct temp_file *temp;
2705 for (temp = always_delete_queue; temp; temp = temp->next)
2706 delete_if_ordinary (temp->name);
2707 always_delete_queue = 0;
2710 /* Delete all the files to be deleted on error. */
2712 static void
2713 delete_failure_queue (void)
2715 struct temp_file *temp;
2717 for (temp = failure_delete_queue; temp; temp = temp->next)
2718 delete_if_ordinary (temp->name);
2721 static void
2722 clear_failure_queue (void)
2724 failure_delete_queue = 0;
2727 /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2728 returns non-NULL.
2729 If DO_MULTI is true iterate over the paths twice, first with multilib
2730 suffix then without, otherwise iterate over the paths once without
2731 adding a multilib suffix. When DO_MULTI is true, some attempt is made
2732 to avoid visiting the same path twice, but we could do better. For
2733 instance, /usr/lib/../lib is considered different from /usr/lib.
2734 At least EXTRA_SPACE chars past the end of the path passed to
2735 CALLBACK are available for use by the callback.
2736 CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2738 Returns the value returned by CALLBACK. */
2740 static void *
2741 for_each_path (const struct path_prefix *paths,
2742 bool do_multi,
2743 size_t extra_space,
2744 void *(*callback) (char *, void *),
2745 void *callback_info)
2747 struct prefix_list *pl;
2748 const char *multi_dir = NULL;
2749 const char *multi_os_dir = NULL;
2750 const char *multiarch_suffix = NULL;
2751 const char *multi_suffix;
2752 const char *just_multi_suffix;
2753 char *path = NULL;
2754 void *ret = NULL;
2755 bool skip_multi_dir = false;
2756 bool skip_multi_os_dir = false;
2758 multi_suffix = machine_suffix;
2759 just_multi_suffix = just_machine_suffix;
2760 if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2762 multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2763 multi_suffix = concat (multi_suffix, multi_dir, NULL);
2764 just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2766 if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2767 multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2768 if (multiarch_dir)
2769 multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL);
2771 while (1)
2773 size_t multi_dir_len = 0;
2774 size_t multi_os_dir_len = 0;
2775 size_t multiarch_len = 0;
2776 size_t suffix_len;
2777 size_t just_suffix_len;
2778 size_t len;
2780 if (multi_dir)
2781 multi_dir_len = strlen (multi_dir);
2782 if (multi_os_dir)
2783 multi_os_dir_len = strlen (multi_os_dir);
2784 if (multiarch_suffix)
2785 multiarch_len = strlen (multiarch_suffix);
2786 suffix_len = strlen (multi_suffix);
2787 just_suffix_len = strlen (just_multi_suffix);
2789 if (path == NULL)
2791 len = paths->max_len + extra_space + 1;
2792 len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
2793 path = XNEWVEC (char, len);
2796 for (pl = paths->plist; pl != 0; pl = pl->next)
2798 len = strlen (pl->prefix);
2799 memcpy (path, pl->prefix, len);
2801 /* Look first in MACHINE/VERSION subdirectory. */
2802 if (!skip_multi_dir)
2804 memcpy (path + len, multi_suffix, suffix_len + 1);
2805 ret = callback (path, callback_info);
2806 if (ret)
2807 break;
2810 /* Some paths are tried with just the machine (ie. target)
2811 subdir. This is used for finding as, ld, etc. */
2812 if (!skip_multi_dir
2813 && pl->require_machine_suffix == 2)
2815 memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2816 ret = callback (path, callback_info);
2817 if (ret)
2818 break;
2821 /* Now try the multiarch path. */
2822 if (!skip_multi_dir
2823 && !pl->require_machine_suffix && multiarch_dir)
2825 memcpy (path + len, multiarch_suffix, multiarch_len + 1);
2826 ret = callback (path, callback_info);
2827 if (ret)
2828 break;
2831 /* Now try the base path. */
2832 if (!pl->require_machine_suffix
2833 && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2835 const char *this_multi;
2836 size_t this_multi_len;
2838 if (pl->os_multilib)
2840 this_multi = multi_os_dir;
2841 this_multi_len = multi_os_dir_len;
2843 else
2845 this_multi = multi_dir;
2846 this_multi_len = multi_dir_len;
2849 if (this_multi_len)
2850 memcpy (path + len, this_multi, this_multi_len + 1);
2851 else
2852 path[len] = '\0';
2854 ret = callback (path, callback_info);
2855 if (ret)
2856 break;
2859 if (pl)
2860 break;
2862 if (multi_dir == NULL && multi_os_dir == NULL)
2863 break;
2865 /* Run through the paths again, this time without multilibs.
2866 Don't repeat any we have already seen. */
2867 if (multi_dir)
2869 free (CONST_CAST (char *, multi_dir));
2870 multi_dir = NULL;
2871 free (CONST_CAST (char *, multi_suffix));
2872 multi_suffix = machine_suffix;
2873 free (CONST_CAST (char *, just_multi_suffix));
2874 just_multi_suffix = just_machine_suffix;
2876 else
2877 skip_multi_dir = true;
2878 if (multi_os_dir)
2880 free (CONST_CAST (char *, multi_os_dir));
2881 multi_os_dir = NULL;
2883 else
2884 skip_multi_os_dir = true;
2887 if (multi_dir)
2889 free (CONST_CAST (char *, multi_dir));
2890 free (CONST_CAST (char *, multi_suffix));
2891 free (CONST_CAST (char *, just_multi_suffix));
2893 if (multi_os_dir)
2894 free (CONST_CAST (char *, multi_os_dir));
2895 if (ret != path)
2896 free (path);
2897 return ret;
2900 /* Callback for build_search_list. Adds path to obstack being built. */
2902 struct add_to_obstack_info {
2903 struct obstack *ob;
2904 bool check_dir;
2905 bool first_time;
2908 static void *
2909 add_to_obstack (char *path, void *data)
2911 struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2913 if (info->check_dir && !is_directory (path, false))
2914 return NULL;
2916 if (!info->first_time)
2917 obstack_1grow (info->ob, PATH_SEPARATOR);
2919 obstack_grow (info->ob, path, strlen (path));
2921 info->first_time = false;
2922 return NULL;
2925 /* Add or change the value of an environment variable, outputting the
2926 change to standard error if in verbose mode. */
2927 static void
2928 xputenv (const char *string)
2930 env.xput (string);
2933 /* Build a list of search directories from PATHS.
2934 PREFIX is a string to prepend to the list.
2935 If CHECK_DIR_P is true we ensure the directory exists.
2936 If DO_MULTI is true, multilib paths are output first, then
2937 non-multilib paths.
2938 This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2939 It is also used by the --print-search-dirs flag. */
2941 static char *
2942 build_search_list (const struct path_prefix *paths, const char *prefix,
2943 bool check_dir, bool do_multi)
2945 struct add_to_obstack_info info;
2947 info.ob = &collect_obstack;
2948 info.check_dir = check_dir;
2949 info.first_time = true;
2951 obstack_grow (&collect_obstack, prefix, strlen (prefix));
2952 obstack_1grow (&collect_obstack, '=');
2954 for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2956 obstack_1grow (&collect_obstack, '\0');
2957 return XOBFINISH (&collect_obstack, char *);
2960 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2961 for collect. */
2963 static void
2964 putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2965 bool do_multi)
2967 xputenv (build_search_list (paths, env_var, true, do_multi));
2970 /* Check whether NAME can be accessed in MODE. This is like access,
2971 except that it never considers directories to be executable. */
2973 static int
2974 access_check (const char *name, int mode)
2976 if (mode == X_OK)
2978 struct stat st;
2980 if (stat (name, &st) < 0
2981 || S_ISDIR (st.st_mode))
2982 return -1;
2985 return access (name, mode);
2988 /* Callback for find_a_file. Appends the file name to the directory
2989 path. If the resulting file exists in the right mode, return the
2990 full pathname to the file. */
2992 struct file_at_path_info {
2993 const char *name;
2994 const char *suffix;
2995 int name_len;
2996 int suffix_len;
2997 int mode;
3000 static void *
3001 file_at_path (char *path, void *data)
3003 struct file_at_path_info *info = (struct file_at_path_info *) data;
3004 size_t len = strlen (path);
3006 memcpy (path + len, info->name, info->name_len);
3007 len += info->name_len;
3009 /* Some systems have a suffix for executable files.
3010 So try appending that first. */
3011 if (info->suffix_len)
3013 memcpy (path + len, info->suffix, info->suffix_len + 1);
3014 if (access_check (path, info->mode) == 0)
3015 return path;
3018 path[len] = '\0';
3019 if (access_check (path, info->mode) == 0)
3020 return path;
3022 return NULL;
3025 /* Search for NAME using the prefix list PREFIXES. MODE is passed to
3026 access to check permissions. If DO_MULTI is true, search multilib
3027 paths then non-multilib paths, otherwise do not search multilib paths.
3028 Return 0 if not found, otherwise return its name, allocated with malloc. */
3030 static char *
3031 find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
3032 bool do_multi)
3034 struct file_at_path_info info;
3036 /* Find the filename in question (special case for absolute paths). */
3038 if (IS_ABSOLUTE_PATH (name))
3040 if (access (name, mode) == 0)
3041 return xstrdup (name);
3043 return NULL;
3046 info.name = name;
3047 info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
3048 info.name_len = strlen (info.name);
3049 info.suffix_len = strlen (info.suffix);
3050 info.mode = mode;
3052 return (char*) for_each_path (pprefix, do_multi,
3053 info.name_len + info.suffix_len,
3054 file_at_path, &info);
3057 /* Specialization of find_a_file for programs that also takes into account
3058 configure-specified default programs. */
3060 static char*
3061 find_a_program (const char *name)
3063 /* Do not search if default matches query. */
3065 #ifdef DEFAULT_ASSEMBLER
3066 if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, X_OK) == 0)
3067 return xstrdup (DEFAULT_ASSEMBLER);
3068 #endif
3070 #ifdef DEFAULT_LINKER
3071 if (! strcmp (name, "ld") && access (DEFAULT_LINKER, X_OK) == 0)
3072 return xstrdup (DEFAULT_LINKER);
3073 #endif
3075 #ifdef DEFAULT_DSYMUTIL
3076 if (! strcmp (name, "dsymutil") && access (DEFAULT_DSYMUTIL, X_OK) == 0)
3077 return xstrdup (DEFAULT_DSYMUTIL);
3078 #endif
3080 return find_a_file (&exec_prefixes, name, X_OK, false);
3083 /* Ranking of prefixes in the sort list. -B prefixes are put before
3084 all others. */
3086 enum path_prefix_priority
3088 PREFIX_PRIORITY_B_OPT,
3089 PREFIX_PRIORITY_LAST
3092 /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
3093 order according to PRIORITY. Within each PRIORITY, new entries are
3094 appended.
3096 If WARN is nonzero, we will warn if no file is found
3097 through this prefix. WARN should point to an int
3098 which will be set to 1 if this entry is used.
3100 COMPONENT is the value to be passed to update_path.
3102 REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
3103 the complete value of machine_suffix.
3104 2 means try both machine_suffix and just_machine_suffix. */
3106 static void
3107 add_prefix (struct path_prefix *pprefix, const char *prefix,
3108 const char *component, /* enum prefix_priority */ int priority,
3109 int require_machine_suffix, int os_multilib)
3111 struct prefix_list *pl, **prev;
3112 int len;
3114 for (prev = &pprefix->plist;
3115 (*prev) != NULL && (*prev)->priority <= priority;
3116 prev = &(*prev)->next)
3119 /* Keep track of the longest prefix. */
3121 prefix = update_path (prefix, component);
3122 len = strlen (prefix);
3123 if (len > pprefix->max_len)
3124 pprefix->max_len = len;
3126 pl = XNEW (struct prefix_list);
3127 pl->prefix = prefix;
3128 pl->require_machine_suffix = require_machine_suffix;
3129 pl->priority = priority;
3130 pl->os_multilib = os_multilib;
3132 /* Insert after PREV. */
3133 pl->next = (*prev);
3134 (*prev) = pl;
3137 /* Same as add_prefix, but prepending target_system_root to prefix. */
3138 /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
3139 static void
3140 add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
3141 const char *component,
3142 /* enum prefix_priority */ int priority,
3143 int require_machine_suffix, int os_multilib)
3145 if (!IS_ABSOLUTE_PATH (prefix))
3146 fatal_error (input_location, "system path %qs is not absolute", prefix);
3148 if (target_system_root)
3150 char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3151 size_t sysroot_len = strlen (target_system_root);
3153 if (sysroot_len > 0
3154 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3155 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3157 if (target_sysroot_suffix)
3158 prefix = concat (sysroot_no_trailing_dir_separator,
3159 target_sysroot_suffix, prefix, NULL);
3160 else
3161 prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3163 free (sysroot_no_trailing_dir_separator);
3165 /* We have to override this because GCC's notion of sysroot
3166 moves along with GCC. */
3167 component = "GCC";
3170 add_prefix (pprefix, prefix, component, priority,
3171 require_machine_suffix, os_multilib);
3174 /* Same as add_prefix, but prepending target_sysroot_hdrs_suffix to prefix. */
3176 static void
3177 add_sysrooted_hdrs_prefix (struct path_prefix *pprefix, const char *prefix,
3178 const char *component,
3179 /* enum prefix_priority */ int priority,
3180 int require_machine_suffix, int os_multilib)
3182 if (!IS_ABSOLUTE_PATH (prefix))
3183 fatal_error (input_location, "system path %qs is not absolute", prefix);
3185 if (target_system_root)
3187 char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3188 size_t sysroot_len = strlen (target_system_root);
3190 if (sysroot_len > 0
3191 && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3192 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3194 if (target_sysroot_hdrs_suffix)
3195 prefix = concat (sysroot_no_trailing_dir_separator,
3196 target_sysroot_hdrs_suffix, prefix, NULL);
3197 else
3198 prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3200 free (sysroot_no_trailing_dir_separator);
3202 /* We have to override this because GCC's notion of sysroot
3203 moves along with GCC. */
3204 component = "GCC";
3207 add_prefix (pprefix, prefix, component, priority,
3208 require_machine_suffix, os_multilib);
3212 /* Execute the command specified by the arguments on the current line of spec.
3213 When using pipes, this includes several piped-together commands
3214 with `|' between them.
3216 Return 0 if successful, -1 if failed. */
3218 static int
3219 execute (void)
3221 int i;
3222 int n_commands; /* # of command. */
3223 char *string;
3224 struct pex_obj *pex;
3225 struct command
3227 const char *prog; /* program name. */
3228 const char **argv; /* vector of args. */
3230 const char *arg;
3232 struct command *commands; /* each command buffer with above info. */
3234 gcc_assert (!processing_spec_function);
3236 if (wrapper_string)
3238 string = find_a_program (argbuf[0]);
3239 if (string)
3240 argbuf[0] = string;
3241 insert_wrapper (wrapper_string);
3244 /* Count # of piped commands. */
3245 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3246 if (strcmp (arg, "|") == 0)
3247 n_commands++;
3249 /* Get storage for each command. */
3250 commands = XALLOCAVEC (struct command, n_commands);
3252 /* Split argbuf into its separate piped processes,
3253 and record info about each one.
3254 Also search for the programs that are to be run. */
3256 argbuf.safe_push (0);
3258 commands[0].prog = argbuf[0]; /* first command. */
3259 commands[0].argv = argbuf.address ();
3261 if (!wrapper_string)
3263 string = find_a_program(commands[0].prog);
3264 if (string)
3265 commands[0].argv[0] = string;
3268 for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3269 if (arg && strcmp (arg, "|") == 0)
3270 { /* each command. */
3271 #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
3272 fatal_error (input_location, "%<-pipe%> not supported");
3273 #endif
3274 argbuf[i] = 0; /* Termination of command args. */
3275 commands[n_commands].prog = argbuf[i + 1];
3276 commands[n_commands].argv
3277 = &(argbuf.address ())[i + 1];
3278 string = find_a_program(commands[n_commands].prog);
3279 if (string)
3280 commands[n_commands].argv[0] = string;
3281 n_commands++;
3284 /* If -v, print what we are about to do, and maybe query. */
3286 if (verbose_flag)
3288 /* For help listings, put a blank line between sub-processes. */
3289 if (print_help_list)
3290 fputc ('\n', stderr);
3292 /* Print each piped command as a separate line. */
3293 for (i = 0; i < n_commands; i++)
3295 const char *const *j;
3297 if (verbose_only_flag)
3299 for (j = commands[i].argv; *j; j++)
3301 const char *p;
3302 for (p = *j; *p; ++p)
3303 if (!ISALNUM ((unsigned char) *p)
3304 && *p != '_' && *p != '/' && *p != '-' && *p != '.')
3305 break;
3306 if (*p || !*j)
3308 fprintf (stderr, " \"");
3309 for (p = *j; *p; ++p)
3311 if (*p == '"' || *p == '\\' || *p == '$')
3312 fputc ('\\', stderr);
3313 fputc (*p, stderr);
3315 fputc ('"', stderr);
3317 /* If it's empty, print "". */
3318 else if (!**j)
3319 fprintf (stderr, " \"\"");
3320 else
3321 fprintf (stderr, " %s", *j);
3324 else
3325 for (j = commands[i].argv; *j; j++)
3326 /* If it's empty, print "". */
3327 if (!**j)
3328 fprintf (stderr, " \"\"");
3329 else
3330 fprintf (stderr, " %s", *j);
3332 /* Print a pipe symbol after all but the last command. */
3333 if (i + 1 != n_commands)
3334 fprintf (stderr, " |");
3335 fprintf (stderr, "\n");
3337 fflush (stderr);
3338 if (verbose_only_flag != 0)
3340 /* verbose_only_flag should act as if the spec was
3341 executed, so increment execution_count before
3342 returning. This prevents spurious warnings about
3343 unused linker input files, etc. */
3344 execution_count++;
3345 return 0;
3347 #ifdef DEBUG
3348 fnotice (stderr, "\nGo ahead? (y or n) ");
3349 fflush (stderr);
3350 i = getchar ();
3351 if (i != '\n')
3352 while (getchar () != '\n')
3355 if (i != 'y' && i != 'Y')
3356 return 0;
3357 #endif /* DEBUG */
3360 #ifdef ENABLE_VALGRIND_CHECKING
3361 /* Run the each command through valgrind. To simplify prepending the
3362 path to valgrind and the option "-q" (for quiet operation unless
3363 something triggers), we allocate a separate argv array. */
3365 for (i = 0; i < n_commands; i++)
3367 const char **argv;
3368 int argc;
3369 int j;
3371 for (argc = 0; commands[i].argv[argc] != NULL; argc++)
3374 argv = XALLOCAVEC (const char *, argc + 3);
3376 argv[0] = VALGRIND_PATH;
3377 argv[1] = "-q";
3378 for (j = 2; j < argc + 2; j++)
3379 argv[j] = commands[i].argv[j - 2];
3380 argv[j] = NULL;
3382 commands[i].argv = argv;
3383 commands[i].prog = argv[0];
3385 #endif
3387 /* Run each piped subprocess. */
3389 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3390 ? PEX_RECORD_TIMES : 0),
3391 progname, temp_filename);
3392 if (pex == NULL)
3393 fatal_error (input_location, "%<pex_init%> failed: %m");
3395 for (i = 0; i < n_commands; i++)
3397 const char *errmsg;
3398 int err;
3399 const char *string = commands[i].argv[0];
3401 errmsg = pex_run (pex,
3402 ((i + 1 == n_commands ? PEX_LAST : 0)
3403 | (string == commands[i].prog ? PEX_SEARCH : 0)),
3404 string, CONST_CAST (char **, commands[i].argv),
3405 NULL, NULL, &err);
3406 if (errmsg != NULL)
3408 errno = err;
3409 fatal_error (input_location,
3410 err ? G_("cannot execute %qs: %s: %m")
3411 : G_("cannot execute %qs: %s"),
3412 string, errmsg);
3415 if (i && string != commands[i].prog)
3416 free (CONST_CAST (char *, string));
3419 execution_count++;
3421 /* Wait for all the subprocesses to finish. */
3424 int *statuses;
3425 struct pex_time *times = NULL;
3426 int ret_code = 0;
3428 statuses = XALLOCAVEC (int, n_commands);
3429 if (!pex_get_status (pex, n_commands, statuses))
3430 fatal_error (input_location, "failed to get exit status: %m");
3432 if (report_times || report_times_to_file)
3434 times = XALLOCAVEC (struct pex_time, n_commands);
3435 if (!pex_get_times (pex, n_commands, times))
3436 fatal_error (input_location, "failed to get process times: %m");
3439 pex_free (pex);
3441 for (i = 0; i < n_commands; ++i)
3443 int status = statuses[i];
3445 if (WIFSIGNALED (status))
3446 switch (WTERMSIG (status))
3448 case SIGINT:
3449 case SIGTERM:
3450 /* SIGQUIT and SIGKILL are not available on MinGW. */
3451 #ifdef SIGQUIT
3452 case SIGQUIT:
3453 #endif
3454 #ifdef SIGKILL
3455 case SIGKILL:
3456 #endif
3457 /* The user (or environment) did something to the
3458 inferior. Making this an ICE confuses the user into
3459 thinking there's a compiler bug. Much more likely is
3460 the user or OOM killer nuked it. */
3461 fatal_error (input_location,
3462 "%s signal terminated program %s",
3463 strsignal (WTERMSIG (status)),
3464 commands[i].prog);
3465 break;
3467 #ifdef SIGPIPE
3468 case SIGPIPE:
3469 /* SIGPIPE is a special case. It happens in -pipe mode
3470 when the compiler dies before the preprocessor is
3471 done, or the assembler dies before the compiler is
3472 done. There's generally been an error already, and
3473 this is just fallout. So don't generate another
3474 error unless we would otherwise have succeeded. */
3475 if (signal_count || greatest_status >= MIN_FATAL_STATUS)
3477 signal_count++;
3478 ret_code = -1;
3479 break;
3481 #endif
3482 /* FALLTHROUGH */
3484 default:
3485 /* The inferior failed to catch the signal. */
3486 internal_error_no_backtrace ("%s signal terminated program %s",
3487 strsignal (WTERMSIG (status)),
3488 commands[i].prog);
3490 else if (WIFEXITED (status)
3491 && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3493 /* For ICEs in cc1, cc1obj, cc1plus see if it is
3494 reproducible or not. */
3495 const char *p;
3496 if (flag_report_bug
3497 && WEXITSTATUS (status) == ICE_EXIT_CODE
3498 && i == 0
3499 && (p = strrchr (commands[0].argv[0], DIR_SEPARATOR))
3500 && startswith (p + 1, "cc1"))
3501 try_generate_repro (commands[0].argv);
3502 if (WEXITSTATUS (status) > greatest_status)
3503 greatest_status = WEXITSTATUS (status);
3504 ret_code = -1;
3507 if (report_times || report_times_to_file)
3509 struct pex_time *pt = &times[i];
3510 double ut, st;
3512 ut = ((double) pt->user_seconds
3513 + (double) pt->user_microseconds / 1.0e6);
3514 st = ((double) pt->system_seconds
3515 + (double) pt->system_microseconds / 1.0e6);
3517 if (ut + st != 0)
3519 if (report_times)
3520 fnotice (stderr, "# %s %.2f %.2f\n",
3521 commands[i].prog, ut, st);
3523 if (report_times_to_file)
3525 int c = 0;
3526 const char *const *j;
3528 fprintf (report_times_to_file, "%g %g", ut, st);
3530 for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
3532 const char *p;
3533 for (p = *j; *p; ++p)
3534 if (*p == '"' || *p == '\\' || *p == '$'
3535 || ISSPACE (*p))
3536 break;
3538 if (*p)
3540 fprintf (report_times_to_file, " \"");
3541 for (p = *j; *p; ++p)
3543 if (*p == '"' || *p == '\\' || *p == '$')
3544 fputc ('\\', report_times_to_file);
3545 fputc (*p, report_times_to_file);
3547 fputc ('"', report_times_to_file);
3549 else
3550 fprintf (report_times_to_file, " %s", *j);
3553 fputc ('\n', report_times_to_file);
3559 if (commands[0].argv[0] != commands[0].prog)
3560 free (CONST_CAST (char *, commands[0].argv[0]));
3562 return ret_code;
3566 static struct switchstr *switches;
3568 static int n_switches;
3570 static int n_switches_alloc;
3572 /* Set to zero if -fcompare-debug is disabled, positive if it's
3573 enabled and we're running the first compilation, negative if it's
3574 enabled and we're running the second compilation. For most of the
3575 time, it's in the range -1..1, but it can be temporarily set to 2
3576 or 3 to indicate that the -fcompare-debug flags didn't come from
3577 the command-line, but rather from the GCC_COMPARE_DEBUG environment
3578 variable, until a synthesized -fcompare-debug flag is added to the
3579 command line. */
3580 int compare_debug;
3582 /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3583 int compare_debug_second;
3585 /* Set to the flags that should be passed to the second compilation in
3586 a -fcompare-debug compilation. */
3587 const char *compare_debug_opt;
3589 static struct switchstr *switches_debug_check[2];
3591 static int n_switches_debug_check[2];
3593 static int n_switches_alloc_debug_check[2];
3595 static char *debug_check_temp_file[2];
3597 /* Language is one of three things:
3599 1) The name of a real programming language.
3600 2) NULL, indicating that no one has figured out
3601 what it is yet.
3602 3) '*', indicating that the file should be passed
3603 to the linker. */
3604 struct infile
3606 const char *name;
3607 const char *language;
3608 struct compiler *incompiler;
3609 bool compiled;
3610 bool preprocessed;
3613 /* Also a vector of input files specified. */
3615 static struct infile *infiles;
3617 int n_infiles;
3619 static int n_infiles_alloc;
3621 /* True if undefined environment variables encountered during spec processing
3622 are ok to ignore, typically when we're running for --help or --version. */
3624 static bool spec_undefvar_allowed;
3626 /* True if multiple input files are being compiled to a single
3627 assembly file. */
3629 static bool combine_inputs;
3631 /* This counts the number of libraries added by lang_specific_driver, so that
3632 we can tell if there were any user supplied any files or libraries. */
3634 static int added_libraries;
3636 /* And a vector of corresponding output files is made up later. */
3638 const char **outfiles;
3640 #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3642 /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3643 is true if we should look for an executable suffix. DO_OBJ
3644 is true if we should look for an object suffix. */
3646 static const char *
3647 convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3648 int do_obj ATTRIBUTE_UNUSED)
3650 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3651 int i;
3652 #endif
3653 int len;
3655 if (name == NULL)
3656 return NULL;
3658 len = strlen (name);
3660 #ifdef HAVE_TARGET_OBJECT_SUFFIX
3661 /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3662 if (do_obj && len > 2
3663 && name[len - 2] == '.'
3664 && name[len - 1] == 'o')
3666 obstack_grow (&obstack, name, len - 2);
3667 obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
3668 name = XOBFINISH (&obstack, const char *);
3670 #endif
3672 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3673 /* If there is no filetype, make it the executable suffix (which includes
3674 the "."). But don't get confused if we have just "-o". */
3675 if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || not_actual_file_p (name))
3676 return name;
3678 for (i = len - 1; i >= 0; i--)
3679 if (IS_DIR_SEPARATOR (name[i]))
3680 break;
3682 for (i++; i < len; i++)
3683 if (name[i] == '.')
3684 return name;
3686 obstack_grow (&obstack, name, len);
3687 obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3688 strlen (TARGET_EXECUTABLE_SUFFIX));
3689 name = XOBFINISH (&obstack, const char *);
3690 #endif
3692 return name;
3694 #endif
3696 /* Display the command line switches accepted by gcc. */
3697 static void
3698 display_help (void)
3700 printf (_("Usage: %s [options] file...\n"), progname);
3701 fputs (_("Options:\n"), stdout);
3703 fputs (_(" -pass-exit-codes Exit with highest error code from a phase.\n"), stdout);
3704 fputs (_(" --help Display this information.\n"), stdout);
3705 fputs (_(" --target-help Display target specific command line options "
3706 "(including assembler and linker options).\n"), stdout);
3707 fputs (_(" --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...].\n"), stdout);
3708 fputs (_(" Display specific types of command line options.\n"), stdout);
3709 if (! verbose_flag)
3710 fputs (_(" (Use '-v --help' to display command line options of sub-processes).\n"), stdout);
3711 fputs (_(" --version Display compiler version information.\n"), stdout);
3712 fputs (_(" -dumpspecs Display all of the built in spec strings.\n"), stdout);
3713 fputs (_(" -dumpversion Display the version of the compiler.\n"), stdout);
3714 fputs (_(" -dumpmachine Display the compiler's target processor.\n"), stdout);
3715 fputs (_(" -foffload=<targets> Specify offloading targets.\n"), stdout);
3716 fputs (_(" -print-search-dirs Display the directories in the compiler's search path.\n"), stdout);
3717 fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library.\n"), stdout);
3718 fputs (_(" -print-file-name=<lib> Display the full path to library <lib>.\n"), stdout);
3719 fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>.\n"), stdout);
3720 fputs (_("\
3721 -print-multiarch Display the target's normalized GNU triplet, used as\n\
3722 a component in the library path.\n"), stdout);
3723 fputs (_(" -print-multi-directory Display the root directory for versions of libgcc.\n"), stdout);
3724 fputs (_("\
3725 -print-multi-lib Display the mapping between command line options and\n\
3726 multiple library search directories.\n"), stdout);
3727 fputs (_(" -print-multi-os-directory Display the relative path to OS libraries.\n"), stdout);
3728 fputs (_(" -print-sysroot Display the target libraries directory.\n"), stdout);
3729 fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers.\n"), stdout);
3730 fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler.\n"), stdout);
3731 fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor.\n"), stdout);
3732 fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker.\n"), stdout);
3733 fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler.\n"), stdout);
3734 fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor.\n"), stdout);
3735 fputs (_(" -Xlinker <arg> Pass <arg> on to the linker.\n"), stdout);
3736 fputs (_(" -save-temps Do not delete intermediate files.\n"), stdout);
3737 fputs (_(" -save-temps=<arg> Do not delete intermediate files.\n"), stdout);
3738 fputs (_("\
3739 -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3740 prefixes to other gcc components.\n"), stdout);
3741 fputs (_(" -pipe Use pipes rather than intermediate files.\n"), stdout);
3742 fputs (_(" -time Time the execution of each subprocess.\n"), stdout);
3743 fputs (_(" -specs=<file> Override built-in specs with the contents of <file>.\n"), stdout);
3744 fputs (_(" -std=<standard> Assume that the input sources are for <standard>.\n"), stdout);
3745 fputs (_("\
3746 --sysroot=<directory> Use <directory> as the root directory for headers\n\
3747 and libraries.\n"), stdout);
3748 fputs (_(" -B <directory> Add <directory> to the compiler's search paths.\n"), stdout);
3749 fputs (_(" -v Display the programs invoked by the compiler.\n"), stdout);
3750 fputs (_(" -### Like -v but options quoted and commands not executed.\n"), stdout);
3751 fputs (_(" -E Preprocess only; do not compile, assemble or link.\n"), stdout);
3752 fputs (_(" -S Compile only; do not assemble or link.\n"), stdout);
3753 fputs (_(" -c Compile and assemble, but do not link.\n"), stdout);
3754 fputs (_(" -o <file> Place the output into <file>.\n"), stdout);
3755 fputs (_(" -pie Create a dynamically linked position independent\n\
3756 executable.\n"), stdout);
3757 fputs (_(" -shared Create a shared library.\n"), stdout);
3758 fputs (_("\
3759 -x <language> Specify the language of the following input files.\n\
3760 Permissible languages include: c c++ assembler none\n\
3761 'none' means revert to the default behavior of\n\
3762 guessing the language based on the file's extension.\n\
3763 "), stdout);
3765 printf (_("\
3766 \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3767 passed on to the various sub-processes invoked by %s. In order to pass\n\
3768 other options on to these processes the -W<letter> options must be used.\n\
3769 "), progname);
3771 /* The rest of the options are displayed by invocations of the various
3772 sub-processes. */
3775 static void
3776 add_preprocessor_option (const char *option, int len)
3778 preprocessor_options.safe_push (save_string (option, len));
3781 static void
3782 add_assembler_option (const char *option, int len)
3784 assembler_options.safe_push (save_string (option, len));
3787 static void
3788 add_linker_option (const char *option, int len)
3790 linker_options.safe_push (save_string (option, len));
3793 /* Allocate space for an input file in infiles. */
3795 static void
3796 alloc_infile (void)
3798 if (n_infiles_alloc == 0)
3800 n_infiles_alloc = 16;
3801 infiles = XNEWVEC (struct infile, n_infiles_alloc);
3803 else if (n_infiles_alloc == n_infiles)
3805 n_infiles_alloc *= 2;
3806 infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc);
3810 /* Store an input file with the given NAME and LANGUAGE in
3811 infiles. */
3813 static void
3814 add_infile (const char *name, const char *language)
3816 alloc_infile ();
3817 infiles[n_infiles].name = name;
3818 infiles[n_infiles++].language = language;
3821 /* Allocate space for a switch in switches. */
3823 static void
3824 alloc_switch (void)
3826 if (n_switches_alloc == 0)
3828 n_switches_alloc = 16;
3829 switches = XNEWVEC (struct switchstr, n_switches_alloc);
3831 else if (n_switches_alloc == n_switches)
3833 n_switches_alloc *= 2;
3834 switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc);
3838 /* Save an option OPT with N_ARGS arguments in array ARGS, marking it
3839 as validated if VALIDATED and KNOWN if it is an internal switch. */
3841 static void
3842 save_switch (const char *opt, size_t n_args, const char *const *args,
3843 bool validated, bool known)
3845 alloc_switch ();
3846 switches[n_switches].part1 = opt + 1;
3847 if (n_args == 0)
3848 switches[n_switches].args = 0;
3849 else
3851 switches[n_switches].args = XNEWVEC (const char *, n_args + 1);
3852 memcpy (switches[n_switches].args, args, n_args * sizeof (const char *));
3853 switches[n_switches].args[n_args] = NULL;
3856 switches[n_switches].live_cond = 0;
3857 switches[n_switches].validated = validated;
3858 switches[n_switches].known = known;
3859 switches[n_switches].ordering = 0;
3860 n_switches++;
3863 /* Set the SOURCE_DATE_EPOCH environment variable to the current time if it is
3864 not set already. */
3866 static void
3867 set_source_date_epoch_envvar ()
3869 /* Array size is 21 = ceil(log_10(2^64)) + 1 to hold string representations
3870 of 64 bit integers. */
3871 char source_date_epoch[21];
3872 time_t tt;
3874 errno = 0;
3875 tt = time (NULL);
3876 if (tt < (time_t) 0 || errno != 0)
3877 tt = (time_t) 0;
3879 snprintf (source_date_epoch, 21, "%llu", (unsigned long long) tt);
3880 /* Using setenv instead of xputenv because we want the variable to remain
3881 after finalizing so that it's still set in the second run when using
3882 -fcompare-debug. */
3883 setenv ("SOURCE_DATE_EPOCH", source_date_epoch, 0);
3886 /* Handle an option DECODED that is unknown to the option-processing
3887 machinery. */
3889 static bool
3890 driver_unknown_option_callback (const struct cl_decoded_option *decoded)
3892 const char *opt = decoded->arg;
3893 if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-'
3894 && !(decoded->errors & CL_ERR_NEGATIVE))
3896 /* Leave unknown -Wno-* options for the compiler proper, to be
3897 diagnosed only if there are warnings. */
3898 save_switch (decoded->canonical_option[0],
3899 decoded->canonical_option_num_elements - 1,
3900 &decoded->canonical_option[1], false, true);
3901 return false;
3903 if (decoded->opt_index == OPT_SPECIAL_unknown)
3905 /* Give it a chance to define it a spec file. */
3906 save_switch (decoded->canonical_option[0],
3907 decoded->canonical_option_num_elements - 1,
3908 &decoded->canonical_option[1], false, false);
3909 return false;
3911 else
3912 return true;
3915 /* Handle an option DECODED that is not marked as CL_DRIVER.
3916 LANG_MASK will always be CL_DRIVER. */
3918 static void
3919 driver_wrong_lang_callback (const struct cl_decoded_option *decoded,
3920 unsigned int lang_mask ATTRIBUTE_UNUSED)
3922 /* At this point, non-driver options are accepted (and expected to
3923 be passed down by specs) unless marked to be rejected by the
3924 driver. Options to be rejected by the driver but accepted by the
3925 compilers proper are treated just like completely unknown
3926 options. */
3927 const struct cl_option *option = &cl_options[decoded->opt_index];
3929 if (option->cl_reject_driver)
3930 error ("unrecognized command-line option %qs",
3931 decoded->orig_option_with_args_text);
3932 else
3933 save_switch (decoded->canonical_option[0],
3934 decoded->canonical_option_num_elements - 1,
3935 &decoded->canonical_option[1], false, true);
3938 static const char *spec_lang = 0;
3939 static int last_language_n_infiles;
3942 /* Check that GCC is configured to support the offload target. */
3944 static bool
3945 check_offload_target_name (const char *target, ptrdiff_t len)
3947 const char *n, *c = OFFLOAD_TARGETS;
3948 while (c)
3950 n = strchr (c, ',');
3951 if (n == NULL)
3952 n = strchr (c, '\0');
3953 if (len == n - c && strncmp (target, c, n - c) == 0)
3954 break;
3955 c = *n ? n + 1 : NULL;
3957 if (!c)
3959 auto_vec<const char*> candidates;
3960 size_t olen = strlen (OFFLOAD_TARGETS) + 1;
3961 char *cand = XALLOCAVEC (char, olen);
3962 memcpy (cand, OFFLOAD_TARGETS, olen);
3963 for (c = strtok (cand, ","); c; c = strtok (NULL, ","))
3964 candidates.safe_push (c);
3965 candidates.safe_push ("default");
3966 candidates.safe_push ("disable");
3968 char *target2 = XALLOCAVEC (char, len + 1);
3969 memcpy (target2, target, len);
3970 target2[len] = '\0';
3972 error ("GCC is not configured to support %qs as %<-foffload=%> argument",
3973 target2);
3975 char *s;
3976 const char *hint = candidates_list_and_hint (target2, s, candidates);
3977 if (hint)
3978 inform (UNKNOWN_LOCATION,
3979 "valid %<-foffload=%> arguments are: %s; "
3980 "did you mean %qs?", s, hint);
3981 else
3982 inform (UNKNOWN_LOCATION, "valid %<-foffload=%> arguments are: %s", s);
3983 XDELETEVEC (s);
3984 return false;
3986 return true;
3989 /* Sanity check for -foffload-options. */
3991 static void
3992 check_foffload_target_names (const char *arg)
3994 const char *cur, *next, *end;
3995 /* If option argument starts with '-' then no target is specified and we
3996 do not need to parse it. */
3997 if (arg[0] == '-')
3998 return;
3999 end = strchr (arg, '=');
4000 if (end == NULL)
4002 error ("%<=%>options missing after %<-foffload-options=%>target");
4003 return;
4006 cur = arg;
4007 while (cur < end)
4009 next = strchr (cur, ',');
4010 if (next == NULL)
4011 next = end;
4012 next = (next > end) ? end : next;
4014 /* Retain non-supported targets after printing an error as those will not
4015 be processed; each enabled target only processes its triplet. */
4016 check_offload_target_name (cur, next - cur);
4017 cur = next + 1;
4021 /* Parse -foffload option argument. */
4023 static void
4024 handle_foffload_option (const char *arg)
4026 const char *c, *cur, *n, *next, *end;
4027 char *target;
4029 /* If option argument starts with '-' then no target is specified and we
4030 do not need to parse it. */
4031 if (arg[0] == '-')
4032 return;
4034 end = strchr (arg, '=');
4035 if (end == NULL)
4036 end = strchr (arg, '\0');
4037 cur = arg;
4039 while (cur < end)
4041 next = strchr (cur, ',');
4042 if (next == NULL)
4043 next = end;
4044 next = (next > end) ? end : next;
4046 target = XNEWVEC (char, next - cur + 1);
4047 memcpy (target, cur, next - cur);
4048 target[next - cur] = '\0';
4050 /* Reset offloading list and continue. */
4051 if (strcmp (target, "default") == 0)
4053 free (offload_targets);
4054 offload_targets = NULL;
4055 goto next_item;
4058 /* If 'disable' is passed to the option, clean the list of
4059 offload targets and return, even if more targets follow.
4060 Likewise if GCC is not configured to support that offload target. */
4061 if (strcmp (target, "disable") == 0
4062 || !check_offload_target_name (target, next - cur))
4064 free (offload_targets);
4065 offload_targets = xstrdup ("");
4066 return;
4069 if (!offload_targets)
4071 offload_targets = target;
4072 target = NULL;
4074 else
4076 /* Check that the target hasn't already presented in the list. */
4077 c = offload_targets;
4080 n = strchr (c, ':');
4081 if (n == NULL)
4082 n = strchr (c, '\0');
4084 if (next - cur == n - c && strncmp (c, target, n - c) == 0)
4085 break;
4087 c = n + 1;
4089 while (*n);
4091 /* If duplicate is not found, append the target to the list. */
4092 if (c > n)
4094 size_t offload_targets_len = strlen (offload_targets);
4095 offload_targets
4096 = XRESIZEVEC (char, offload_targets,
4097 offload_targets_len + 1 + next - cur + 1);
4098 offload_targets[offload_targets_len++] = ':';
4099 memcpy (offload_targets + offload_targets_len, target, next - cur + 1);
4102 next_item:
4103 cur = next + 1;
4104 XDELETEVEC (target);
4108 /* Handle a driver option; arguments and return value as for
4109 handle_option. */
4111 static bool
4112 driver_handle_option (struct gcc_options *opts,
4113 struct gcc_options *opts_set,
4114 const struct cl_decoded_option *decoded,
4115 unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
4116 location_t loc,
4117 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
4118 diagnostic_context *dc,
4119 void (*) (void))
4121 size_t opt_index = decoded->opt_index;
4122 const char *arg = decoded->arg;
4123 const char *compare_debug_replacement_opt;
4124 int value = decoded->value;
4125 bool validated = false;
4126 bool do_save = true;
4128 gcc_assert (opts == &global_options);
4129 gcc_assert (opts_set == &global_options_set);
4130 gcc_assert (kind == DK_UNSPECIFIED);
4131 gcc_assert (loc == UNKNOWN_LOCATION);
4132 gcc_assert (dc == global_dc);
4134 switch (opt_index)
4136 case OPT_dumpspecs:
4138 struct spec_list *sl;
4139 init_spec ();
4140 for (sl = specs; sl; sl = sl->next)
4141 printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
4142 if (link_command_spec)
4143 printf ("*link_command:\n%s\n\n", link_command_spec);
4144 exit (0);
4147 case OPT_dumpversion:
4148 printf ("%s\n", spec_version);
4149 exit (0);
4151 case OPT_dumpmachine:
4152 printf ("%s\n", spec_machine);
4153 exit (0);
4155 case OPT_dumpfullversion:
4156 printf ("%s\n", BASEVER);
4157 exit (0);
4159 case OPT__version:
4160 print_version = 1;
4162 /* CPP driver cannot obtain switch from cc1_options. */
4163 if (is_cpp_driver)
4164 add_preprocessor_option ("--version", strlen ("--version"));
4165 add_assembler_option ("--version", strlen ("--version"));
4166 add_linker_option ("--version", strlen ("--version"));
4167 break;
4169 case OPT__completion_:
4170 validated = true;
4171 completion = decoded->arg;
4172 break;
4174 case OPT__help:
4175 print_help_list = 1;
4177 /* CPP driver cannot obtain switch from cc1_options. */
4178 if (is_cpp_driver)
4179 add_preprocessor_option ("--help", 6);
4180 add_assembler_option ("--help", 6);
4181 add_linker_option ("--help", 6);
4182 break;
4184 case OPT__help_:
4185 print_subprocess_help = 2;
4186 break;
4188 case OPT__target_help:
4189 print_subprocess_help = 1;
4191 /* CPP driver cannot obtain switch from cc1_options. */
4192 if (is_cpp_driver)
4193 add_preprocessor_option ("--target-help", 13);
4194 add_assembler_option ("--target-help", 13);
4195 add_linker_option ("--target-help", 13);
4196 break;
4198 case OPT__no_sysroot_suffix:
4199 case OPT_pass_exit_codes:
4200 case OPT_print_search_dirs:
4201 case OPT_print_file_name_:
4202 case OPT_print_prog_name_:
4203 case OPT_print_multi_lib:
4204 case OPT_print_multi_directory:
4205 case OPT_print_sysroot:
4206 case OPT_print_multi_os_directory:
4207 case OPT_print_multiarch:
4208 case OPT_print_sysroot_headers_suffix:
4209 case OPT_time:
4210 case OPT_wrapper:
4211 /* These options set the variables specified in common.opt
4212 automatically, and do not need to be saved for spec
4213 processing. */
4214 do_save = false;
4215 break;
4217 case OPT_print_libgcc_file_name:
4218 print_file_name = "libgcc.a";
4219 do_save = false;
4220 break;
4222 case OPT_fuse_ld_bfd:
4223 use_ld = ".bfd";
4224 break;
4226 case OPT_fuse_ld_gold:
4227 use_ld = ".gold";
4228 break;
4230 case OPT_fuse_ld_mold:
4231 use_ld = ".mold";
4232 break;
4234 case OPT_fcompare_debug_second:
4235 compare_debug_second = 1;
4236 break;
4238 case OPT_fcompare_debug:
4239 switch (value)
4241 case 0:
4242 compare_debug_replacement_opt = "-fcompare-debug=";
4243 arg = "";
4244 goto compare_debug_with_arg;
4246 case 1:
4247 compare_debug_replacement_opt = "-fcompare-debug=-gtoggle";
4248 arg = "-gtoggle";
4249 goto compare_debug_with_arg;
4251 default:
4252 gcc_unreachable ();
4254 break;
4256 case OPT_fcompare_debug_:
4257 compare_debug_replacement_opt = decoded->canonical_option[0];
4258 compare_debug_with_arg:
4259 gcc_assert (decoded->canonical_option_num_elements == 1);
4260 gcc_assert (arg != NULL);
4261 if (*arg)
4262 compare_debug = 1;
4263 else
4264 compare_debug = -1;
4265 if (compare_debug < 0)
4266 compare_debug_opt = NULL;
4267 else
4268 compare_debug_opt = arg;
4269 save_switch (compare_debug_replacement_opt, 0, NULL, validated, true);
4270 set_source_date_epoch_envvar ();
4271 return true;
4273 case OPT_fdiagnostics_color_:
4274 diagnostic_color_init (dc, value);
4275 break;
4277 case OPT_fdiagnostics_urls_:
4278 diagnostic_urls_init (dc, value);
4279 break;
4281 case OPT_fdiagnostics_format_:
4282 diagnostic_output_format_init (dc, opts->x_dump_base_name,
4283 (enum diagnostics_output_format)value);
4284 break;
4286 case OPT_Wa_:
4288 int prev, j;
4289 /* Pass the rest of this option to the assembler. */
4291 /* Split the argument at commas. */
4292 prev = 0;
4293 for (j = 0; arg[j]; j++)
4294 if (arg[j] == ',')
4296 add_assembler_option (arg + prev, j - prev);
4297 prev = j + 1;
4300 /* Record the part after the last comma. */
4301 add_assembler_option (arg + prev, j - prev);
4303 do_save = false;
4304 break;
4306 case OPT_Wp_:
4308 int prev, j;
4309 /* Pass the rest of this option to the preprocessor. */
4311 /* Split the argument at commas. */
4312 prev = 0;
4313 for (j = 0; arg[j]; j++)
4314 if (arg[j] == ',')
4316 add_preprocessor_option (arg + prev, j - prev);
4317 prev = j + 1;
4320 /* Record the part after the last comma. */
4321 add_preprocessor_option (arg + prev, j - prev);
4323 do_save = false;
4324 break;
4326 case OPT_Wl_:
4328 int prev, j;
4329 /* Split the argument at commas. */
4330 prev = 0;
4331 for (j = 0; arg[j]; j++)
4332 if (arg[j] == ',')
4334 add_infile (save_string (arg + prev, j - prev), "*");
4335 prev = j + 1;
4337 /* Record the part after the last comma. */
4338 add_infile (arg + prev, "*");
4340 do_save = false;
4341 break;
4343 case OPT_Xlinker:
4344 add_infile (arg, "*");
4345 do_save = false;
4346 break;
4348 case OPT_Xpreprocessor:
4349 add_preprocessor_option (arg, strlen (arg));
4350 do_save = false;
4351 break;
4353 case OPT_Xassembler:
4354 add_assembler_option (arg, strlen (arg));
4355 do_save = false;
4356 break;
4358 case OPT_l:
4359 /* POSIX allows separation of -l and the lib arg; canonicalize
4360 by concatenating -l with its arg */
4361 add_infile (concat ("-l", arg, NULL), "*");
4362 do_save = false;
4363 break;
4365 case OPT_L:
4366 /* Similarly, canonicalize -L for linkers that may not accept
4367 separate arguments. */
4368 save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true);
4369 return true;
4371 case OPT_F:
4372 /* Likewise -F. */
4373 save_switch (concat ("-F", arg, NULL), 0, NULL, validated, true);
4374 return true;
4376 case OPT_save_temps:
4377 if (!save_temps_flag)
4378 save_temps_flag = SAVE_TEMPS_DUMP;
4379 validated = true;
4380 break;
4382 case OPT_save_temps_:
4383 if (strcmp (arg, "cwd") == 0)
4384 save_temps_flag = SAVE_TEMPS_CWD;
4385 else if (strcmp (arg, "obj") == 0
4386 || strcmp (arg, "object") == 0)
4387 save_temps_flag = SAVE_TEMPS_OBJ;
4388 else
4389 fatal_error (input_location, "%qs is an unknown %<-save-temps%> option",
4390 decoded->orig_option_with_args_text);
4391 save_temps_overrides_dumpdir = true;
4392 break;
4394 case OPT_dumpdir:
4395 free (dumpdir);
4396 dumpdir = xstrdup (arg);
4397 save_temps_overrides_dumpdir = false;
4398 break;
4400 case OPT_dumpbase:
4401 free (dumpbase);
4402 dumpbase = xstrdup (arg);
4403 break;
4405 case OPT_dumpbase_ext:
4406 free (dumpbase_ext);
4407 dumpbase_ext = xstrdup (arg);
4408 break;
4410 case OPT_no_canonical_prefixes:
4411 /* Already handled as a special case, so ignored here. */
4412 do_save = false;
4413 break;
4415 case OPT_pipe:
4416 validated = true;
4417 /* These options set the variables specified in common.opt
4418 automatically, but do need to be saved for spec
4419 processing. */
4420 break;
4422 case OPT_specs_:
4424 struct user_specs *user = XNEW (struct user_specs);
4426 user->next = (struct user_specs *) 0;
4427 user->filename = arg;
4428 if (user_specs_tail)
4429 user_specs_tail->next = user;
4430 else
4431 user_specs_head = user;
4432 user_specs_tail = user;
4434 validated = true;
4435 break;
4437 case OPT__sysroot_:
4438 target_system_root = arg;
4439 target_system_root_changed = 1;
4440 /* Saving this option is useful to let self-specs decide to
4441 provide a default one. */
4442 do_save = true;
4443 validated = true;
4444 break;
4446 case OPT_time_:
4447 if (report_times_to_file)
4448 fclose (report_times_to_file);
4449 report_times_to_file = fopen (arg, "a");
4450 do_save = false;
4451 break;
4453 case OPT____:
4454 /* "-###"
4455 This is similar to -v except that there is no execution
4456 of the commands and the echoed arguments are quoted. It
4457 is intended for use in shell scripts to capture the
4458 driver-generated command line. */
4459 verbose_only_flag++;
4460 verbose_flag = 1;
4461 do_save = false;
4462 break;
4464 case OPT_B:
4466 size_t len = strlen (arg);
4468 /* Catch the case where the user has forgotten to append a
4469 directory separator to the path. Note, they may be using
4470 -B to add an executable name prefix, eg "i386-elf-", in
4471 order to distinguish between multiple installations of
4472 GCC in the same directory. Hence we must check to see
4473 if appending a directory separator actually makes a
4474 valid directory name. */
4475 if (!IS_DIR_SEPARATOR (arg[len - 1])
4476 && is_directory (arg, false))
4478 char *tmp = XNEWVEC (char, len + 2);
4479 strcpy (tmp, arg);
4480 tmp[len] = DIR_SEPARATOR;
4481 tmp[++len] = 0;
4482 arg = tmp;
4485 add_prefix (&exec_prefixes, arg, NULL,
4486 PREFIX_PRIORITY_B_OPT, 0, 0);
4487 add_prefix (&startfile_prefixes, arg, NULL,
4488 PREFIX_PRIORITY_B_OPT, 0, 0);
4489 add_prefix (&include_prefixes, arg, NULL,
4490 PREFIX_PRIORITY_B_OPT, 0, 0);
4492 validated = true;
4493 break;
4495 case OPT_E:
4496 have_E = true;
4497 break;
4499 case OPT_x:
4500 spec_lang = arg;
4501 if (!strcmp (spec_lang, "none"))
4502 /* Suppress the warning if -xnone comes after the last input
4503 file, because alternate command interfaces like g++ might
4504 find it useful to place -xnone after each input file. */
4505 spec_lang = 0;
4506 else
4507 last_language_n_infiles = n_infiles;
4508 do_save = false;
4509 break;
4511 case OPT_o:
4512 have_o = 1;
4513 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
4514 arg = convert_filename (arg, ! have_c, 0);
4515 #endif
4516 output_file = arg;
4517 /* On some systems, ld cannot handle "-o" without a space. So
4518 split the option from its argument. */
4519 save_switch ("-o", 1, &arg, validated, true);
4520 return true;
4522 #ifdef ENABLE_DEFAULT_PIE
4523 case OPT_pie:
4524 /* -pie is turned on by default. */
4525 #endif
4527 case OPT_static_libgcc:
4528 case OPT_shared_libgcc:
4529 case OPT_static_libgfortran:
4530 case OPT_static_libquadmath:
4531 case OPT_static_libphobos:
4532 case OPT_static_libstdc__:
4533 /* These are always valid, since gcc.cc itself understands the
4534 first two, gfortranspec.cc understands -static-libgfortran,
4535 d-spec.cc understands -static-libphobos, g++spec.cc
4536 understands -static-libstdc++ and libgfortran.spec handles
4537 -static-libquadmath. */
4538 validated = true;
4539 break;
4541 case OPT_fwpa:
4542 flag_wpa = "";
4543 break;
4545 case OPT_foffload_options_:
4546 check_foffload_target_names (arg);
4547 break;
4549 case OPT_foffload_:
4550 handle_foffload_option (arg);
4551 if (arg[0] == '-' || NULL != strchr (arg, '='))
4552 save_switch (concat ("-foffload-options=", arg, NULL),
4553 0, NULL, validated, true);
4554 do_save = false;
4555 break;
4557 default:
4558 /* Various driver options need no special processing at this
4559 point, having been handled in a prescan above or being
4560 handled by specs. */
4561 break;
4564 if (do_save)
4565 save_switch (decoded->canonical_option[0],
4566 decoded->canonical_option_num_elements - 1,
4567 &decoded->canonical_option[1], validated, true);
4568 return true;
4571 /* Return true if F2 is F1 followed by a single suffix, i.e., by a
4572 period and additional characters other than a period. */
4574 static inline bool
4575 adds_single_suffix_p (const char *f2, const char *f1)
4577 size_t len = strlen (f1);
4579 return (strncmp (f1, f2, len) == 0
4580 && f2[len] == '.'
4581 && strchr (f2 + len + 1, '.') == NULL);
4584 /* Put the driver's standard set of option handlers in *HANDLERS. */
4586 static void
4587 set_option_handlers (struct cl_option_handlers *handlers)
4589 handlers->unknown_option_callback = driver_unknown_option_callback;
4590 handlers->wrong_lang_callback = driver_wrong_lang_callback;
4591 handlers->num_handlers = 3;
4592 handlers->handlers[0].handler = driver_handle_option;
4593 handlers->handlers[0].mask = CL_DRIVER;
4594 handlers->handlers[1].handler = common_handle_option;
4595 handlers->handlers[1].mask = CL_COMMON;
4596 handlers->handlers[2].handler = target_handle_option;
4597 handlers->handlers[2].mask = CL_TARGET;
4601 /* Return the index into infiles for the single non-library
4602 non-lto-wpa input file, -1 if there isn't any, or -2 if there is
4603 more than one. */
4604 static inline int
4605 single_input_file_index ()
4607 int ret = -1;
4609 for (int i = 0; i < n_infiles; i++)
4611 if (infiles[i].language
4612 && (infiles[i].language[0] == '*'
4613 || (flag_wpa
4614 && strcmp (infiles[i].language, "lto") == 0)))
4615 continue;
4617 if (ret != -1)
4618 return -2;
4620 ret = i;
4623 return ret;
4626 /* Create the vector `switches' and its contents.
4627 Store its length in `n_switches'. */
4629 static void
4630 process_command (unsigned int decoded_options_count,
4631 struct cl_decoded_option *decoded_options)
4633 const char *temp;
4634 char *temp1;
4635 char *tooldir_prefix, *tooldir_prefix2;
4636 char *(*get_relative_prefix) (const char *, const char *,
4637 const char *) = NULL;
4638 struct cl_option_handlers handlers;
4639 unsigned int j;
4641 gcc_exec_prefix = env.get ("GCC_EXEC_PREFIX");
4643 n_switches = 0;
4644 n_infiles = 0;
4645 added_libraries = 0;
4647 /* Figure compiler version from version string. */
4649 compiler_version = temp1 = xstrdup (version_string);
4651 for (; *temp1; ++temp1)
4653 if (*temp1 == ' ')
4655 *temp1 = '\0';
4656 break;
4660 /* Handle any -no-canonical-prefixes flag early, to assign the function
4661 that builds relative prefixes. This function creates default search
4662 paths that are needed later in normal option handling. */
4664 for (j = 1; j < decoded_options_count; j++)
4666 if (decoded_options[j].opt_index == OPT_no_canonical_prefixes)
4668 get_relative_prefix = make_relative_prefix_ignore_links;
4669 break;
4672 if (! get_relative_prefix)
4673 get_relative_prefix = make_relative_prefix;
4675 /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
4676 see if we can create it from the pathname specified in
4677 decoded_options[0].arg. */
4679 gcc_libexec_prefix = standard_libexec_prefix;
4680 #ifndef VMS
4681 /* FIXME: make_relative_prefix doesn't yet work for VMS. */
4682 if (!gcc_exec_prefix)
4684 gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg,
4685 standard_bindir_prefix,
4686 standard_exec_prefix);
4687 gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg,
4688 standard_bindir_prefix,
4689 standard_libexec_prefix);
4690 if (gcc_exec_prefix)
4691 xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
4693 else
4695 /* make_relative_prefix requires a program name, but
4696 GCC_EXEC_PREFIX is typically a directory name with a trailing
4697 / (which is ignored by make_relative_prefix), so append a
4698 program name. */
4699 char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
4700 gcc_libexec_prefix = get_relative_prefix (tmp_prefix,
4701 standard_exec_prefix,
4702 standard_libexec_prefix);
4704 /* The path is unrelocated, so fallback to the original setting. */
4705 if (!gcc_libexec_prefix)
4706 gcc_libexec_prefix = standard_libexec_prefix;
4708 free (tmp_prefix);
4710 #else
4711 #endif
4712 /* From this point onward, gcc_exec_prefix is non-null if the toolchain
4713 is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
4714 or an automatically created GCC_EXEC_PREFIX from
4715 decoded_options[0].arg. */
4717 /* Do language-specific adjustment/addition of flags. */
4718 lang_specific_driver (&decoded_options, &decoded_options_count,
4719 &added_libraries);
4721 if (gcc_exec_prefix)
4723 int len = strlen (gcc_exec_prefix);
4725 if (len > (int) sizeof ("/lib/gcc/") - 1
4726 && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
4728 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
4729 if (IS_DIR_SEPARATOR (*temp)
4730 && filename_ncmp (temp + 1, "lib", 3) == 0
4731 && IS_DIR_SEPARATOR (temp[4])
4732 && filename_ncmp (temp + 5, "gcc", 3) == 0)
4733 len -= sizeof ("/lib/gcc/") - 1;
4736 set_std_prefix (gcc_exec_prefix, len);
4737 add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
4738 PREFIX_PRIORITY_LAST, 0, 0);
4739 add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
4740 PREFIX_PRIORITY_LAST, 0, 0);
4743 /* COMPILER_PATH and LIBRARY_PATH have values
4744 that are lists of directory names with colons. */
4746 temp = env.get ("COMPILER_PATH");
4747 if (temp)
4749 const char *startp, *endp;
4750 char *nstore = (char *) alloca (strlen (temp) + 3);
4752 startp = endp = temp;
4753 while (1)
4755 if (*endp == PATH_SEPARATOR || *endp == 0)
4757 strncpy (nstore, startp, endp - startp);
4758 if (endp == startp)
4759 strcpy (nstore, concat (".", dir_separator_str, NULL));
4760 else if (!IS_DIR_SEPARATOR (endp[-1]))
4762 nstore[endp - startp] = DIR_SEPARATOR;
4763 nstore[endp - startp + 1] = 0;
4765 else
4766 nstore[endp - startp] = 0;
4767 add_prefix (&exec_prefixes, nstore, 0,
4768 PREFIX_PRIORITY_LAST, 0, 0);
4769 add_prefix (&include_prefixes, nstore, 0,
4770 PREFIX_PRIORITY_LAST, 0, 0);
4771 if (*endp == 0)
4772 break;
4773 endp = startp = endp + 1;
4775 else
4776 endp++;
4780 temp = env.get (LIBRARY_PATH_ENV);
4781 if (temp && *cross_compile == '0')
4783 const char *startp, *endp;
4784 char *nstore = (char *) alloca (strlen (temp) + 3);
4786 startp = endp = temp;
4787 while (1)
4789 if (*endp == PATH_SEPARATOR || *endp == 0)
4791 strncpy (nstore, startp, endp - startp);
4792 if (endp == startp)
4793 strcpy (nstore, concat (".", dir_separator_str, NULL));
4794 else if (!IS_DIR_SEPARATOR (endp[-1]))
4796 nstore[endp - startp] = DIR_SEPARATOR;
4797 nstore[endp - startp + 1] = 0;
4799 else
4800 nstore[endp - startp] = 0;
4801 add_prefix (&startfile_prefixes, nstore, NULL,
4802 PREFIX_PRIORITY_LAST, 0, 1);
4803 if (*endp == 0)
4804 break;
4805 endp = startp = endp + 1;
4807 else
4808 endp++;
4812 /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
4813 temp = env.get ("LPATH");
4814 if (temp && *cross_compile == '0')
4816 const char *startp, *endp;
4817 char *nstore = (char *) alloca (strlen (temp) + 3);
4819 startp = endp = temp;
4820 while (1)
4822 if (*endp == PATH_SEPARATOR || *endp == 0)
4824 strncpy (nstore, startp, endp - startp);
4825 if (endp == startp)
4826 strcpy (nstore, concat (".", dir_separator_str, NULL));
4827 else if (!IS_DIR_SEPARATOR (endp[-1]))
4829 nstore[endp - startp] = DIR_SEPARATOR;
4830 nstore[endp - startp + 1] = 0;
4832 else
4833 nstore[endp - startp] = 0;
4834 add_prefix (&startfile_prefixes, nstore, NULL,
4835 PREFIX_PRIORITY_LAST, 0, 1);
4836 if (*endp == 0)
4837 break;
4838 endp = startp = endp + 1;
4840 else
4841 endp++;
4845 /* Process the options and store input files and switches in their
4846 vectors. */
4848 last_language_n_infiles = -1;
4850 set_option_handlers (&handlers);
4852 for (j = 1; j < decoded_options_count; j++)
4854 switch (decoded_options[j].opt_index)
4856 case OPT_S:
4857 case OPT_c:
4858 case OPT_E:
4859 have_c = 1;
4860 break;
4862 if (have_c)
4863 break;
4866 for (j = 1; j < decoded_options_count; j++)
4868 if (decoded_options[j].opt_index == OPT_SPECIAL_input_file)
4870 const char *arg = decoded_options[j].arg;
4872 #ifdef HAVE_TARGET_OBJECT_SUFFIX
4873 arg = convert_filename (arg, 0, access (arg, F_OK));
4874 #endif
4875 add_infile (arg, spec_lang);
4877 continue;
4880 read_cmdline_option (&global_options, &global_options_set,
4881 decoded_options + j, UNKNOWN_LOCATION,
4882 CL_DRIVER, &handlers, global_dc);
4885 /* If the user didn't specify any, default to all configured offload
4886 targets. */
4887 if (ENABLE_OFFLOADING && offload_targets == NULL)
4889 handle_foffload_option (OFFLOAD_TARGETS);
4890 #if OFFLOAD_DEFAULTED
4891 offload_targets_default = true;
4892 #endif
4895 /* Handle -gtoggle as it would later in toplev.cc:process_options to
4896 make the debug-level-gt spec function work as expected. */
4897 if (flag_gtoggle)
4899 if (debug_info_level == DINFO_LEVEL_NONE)
4900 debug_info_level = DINFO_LEVEL_NORMAL;
4901 else
4902 debug_info_level = DINFO_LEVEL_NONE;
4905 if (output_file
4906 && strcmp (output_file, "-") != 0
4907 && strcmp (output_file, HOST_BIT_BUCKET) != 0)
4909 int i;
4910 for (i = 0; i < n_infiles; i++)
4911 if ((!infiles[i].language || infiles[i].language[0] != '*')
4912 && canonical_filename_eq (infiles[i].name, output_file))
4913 fatal_error (input_location,
4914 "input file %qs is the same as output file",
4915 output_file);
4918 if (output_file != NULL && output_file[0] == '\0')
4919 fatal_error (input_location, "output filename may not be empty");
4921 /* -dumpdir and -save-temps=* both specify the location of aux/dump
4922 outputs; the one that appears last prevails. When compiling
4923 multiple sources, an explicit dumpbase (minus -ext) may be
4924 combined with an explicit or implicit dumpdir, whereas when
4925 linking, a specified or implied link output name (minus
4926 extension) may be combined with a prevailing -save-temps=* or an
4927 otherwise implied dumpdir, but not override a prevailing
4928 -dumpdir. Primary outputs (e.g., linker output when linking
4929 without -o, or .i, .s or .o outputs when processing multiple
4930 inputs with -E, -S or -c, respectively) are NOT affected by these
4931 -save-temps=/-dump* options, always landing in the current
4932 directory and with the same basename as the input when an output
4933 name is not given, but when they're intermediate outputs, they
4934 are named like other aux outputs, so the options affect their
4935 location and name.
4937 Here are some examples. There are several more in the
4938 documentation of -o and -dump*, and some quite exhaustive tests
4939 in gcc.misc-tests/outputs.exp.
4941 When compiling any number of sources, no -dump* nor
4942 -save-temps=*, all outputs in cwd without prefix:
4944 # gcc -c b.c -gsplit-dwarf
4945 -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
4947 # gcc -c b.c d.c -gsplit-dwarf
4948 -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
4949 && cc1 [-dumpdir ./] -dumpbase d.c -dumpbase-ext .c # d.o d.dwo
4951 When compiling and linking, no -dump* nor -save-temps=*, .o
4952 outputs are temporary, aux outputs land in the dir of the output,
4953 prefixed with the basename of the linker output:
4955 # gcc b.c d.c -o ab -gsplit-dwarf
4956 -> cc1 -dumpdir ab- -dumpbase b.c -dumpbase-ext .c # ab-b.dwo
4957 && cc1 -dumpdir ab- -dumpbase d.c -dumpbase-ext .c # ab-d.dwo
4958 && link ... -o ab
4960 # gcc b.c d.c [-o a.out] -gsplit-dwarf
4961 -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.dwo
4962 && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.dwo
4963 && link ... [-o a.out]
4965 When compiling and linking, a prevailing -dumpdir fully overrides
4966 the prefix of aux outputs given by the output name:
4968 # gcc -dumpdir f b.c d.c -gsplit-dwarf [-o [dir/]whatever]
4969 -> cc1 -dumpdir f -dumpbase b.c -dumpbase-ext .c # fb.dwo
4970 && cc1 -dumpdir f -dumpbase d.c -dumpbase-ext .c # fd.dwo
4971 && link ... [-o whatever]
4973 When compiling multiple inputs, an explicit -dumpbase is combined
4974 with -dumpdir, affecting aux outputs, but not the .o outputs:
4976 # gcc -dumpdir f -dumpbase g- b.c d.c -gsplit-dwarf -c
4977 -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # b.o fg-b.dwo
4978 && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # d.o fg-d.dwo
4980 When compiling and linking with -save-temps, the .o outputs that
4981 would have been temporary become aux outputs, so they get
4982 affected by -dump* flags:
4984 # gcc -dumpdir f -dumpbase g- -save-temps b.c d.c
4985 -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # fg-b.o
4986 && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # fg-d.o
4987 && link
4989 If -save-temps=* prevails over -dumpdir, however, the explicit
4990 -dumpdir is discarded, as if it wasn't there. The basename of
4991 the implicit linker output, a.out or a.exe, becomes a- as the aux
4992 output prefix for all compilations:
4994 # gcc [-dumpdir f] -save-temps=cwd b.c d.c
4995 -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.o
4996 && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.o
4997 && link
4999 A single -dumpbase, applying to multiple inputs, overrides the
5000 linker output name, implied or explicit, as the aux output prefix:
5002 # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c
5003 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5004 && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5005 && link
5007 # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c -o dir/h.out
5008 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5009 && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5010 && link -o dir/h.out
5012 Now, if the linker output is NOT overridden as a prefix, but
5013 -save-temps=* overrides implicit or explicit -dumpdir, the
5014 effective dump dir combines the dir selected by the -save-temps=*
5015 option with the basename of the specified or implied link output:
5017 # gcc [-dumpdir f] -save-temps=cwd b.c d.c -o dir/h.out
5018 -> cc1 -dumpdir h- -dumpbase b.c -dumpbase-ext .c # h-b.o
5019 && cc1 -dumpdir h- -dumpbase d.c -dumpbase-ext .c # h-d.o
5020 && link -o dir/h.out
5022 # gcc [-dumpdir f] -save-temps=obj b.c d.c -o dir/h.out
5023 -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5024 && cc1 -dumpdir dir/h- -dumpbase d.c -dumpbase-ext .c # dir/h-d.o
5025 && link -o dir/h.out
5027 But then again, a single -dumpbase applying to multiple inputs
5028 gets used instead of the linker output basename in the combined
5029 dumpdir:
5031 # gcc [-dumpdir f] -dumpbase g- -save-temps=obj b.c d.c -o dir/h.out
5032 -> cc1 -dumpdir dir/g- -dumpbase b.c -dumpbase-ext .c # dir/g-b.o
5033 && cc1 -dumpdir dir/g- -dumpbase d.c -dumpbase-ext .c # dir/g-d.o
5034 && link -o dir/h.out
5036 With a single input being compiled, the output basename does NOT
5037 affect the dumpdir prefix.
5039 # gcc -save-temps=obj b.c -gsplit-dwarf -c -o dir/b.o
5040 -> cc1 -dumpdir dir/ -dumpbase b.c -dumpbase-ext .c # dir/b.o dir/b.dwo
5042 but when compiling and linking even a single file, it does:
5044 # gcc -save-temps=obj b.c -o dir/h.out
5045 -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5047 unless an explicit -dumpdir prevails:
5049 # gcc -save-temps[=obj] -dumpdir g- b.c -o dir/h.out
5050 -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5054 bool explicit_dumpdir = dumpdir;
5056 if ((!save_temps_overrides_dumpdir && explicit_dumpdir)
5057 || (output_file && not_actual_file_p (output_file)))
5059 /* Do nothing. */
5062 /* If -save-temps=obj and -o name, create the prefix to use for %b.
5063 Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
5064 else if (save_temps_flag != SAVE_TEMPS_CWD && output_file != NULL)
5066 free (dumpdir);
5067 dumpdir = NULL;
5068 temp = lbasename (output_file);
5069 if (temp != output_file)
5070 dumpdir = xstrndup (output_file,
5071 strlen (output_file) - strlen (temp));
5073 else if (dumpdir)
5075 free (dumpdir);
5076 dumpdir = NULL;
5079 if (save_temps_flag)
5080 save_temps_flag = SAVE_TEMPS_DUMP;
5082 /* If there is any pathname component in an explicit -dumpbase, it
5083 overrides dumpdir entirely, so discard it right away. Although
5084 the presence of an explicit -dumpdir matters for the driver, it
5085 shouldn't matter for other processes, that get all that's needed
5086 from the -dumpdir and -dumpbase always passed to them. */
5087 if (dumpdir && dumpbase && lbasename (dumpbase) != dumpbase)
5089 free (dumpdir);
5090 dumpdir = NULL;
5093 /* Check that dumpbase_ext matches the end of dumpbase, drop it
5094 otherwise. */
5095 if (dumpbase_ext && dumpbase && *dumpbase)
5097 int lendb = strlen (dumpbase);
5098 int lendbx = strlen (dumpbase_ext);
5100 /* -dumpbase-ext must be a suffix proper; discard it if it
5101 matches all of -dumpbase, as that would make for an empty
5102 basename. */
5103 if (lendbx >= lendb
5104 || strcmp (dumpbase + lendb - lendbx, dumpbase_ext) != 0)
5106 free (dumpbase_ext);
5107 dumpbase_ext = NULL;
5111 /* -dumpbase with multiple sources goes into dumpdir. With a single
5112 source, it does only if linking and if dumpdir was not explicitly
5113 specified. */
5114 if (dumpbase && *dumpbase
5115 && (single_input_file_index () == -2
5116 || (!have_c && !explicit_dumpdir)))
5118 char *prefix;
5120 if (dumpbase_ext)
5121 /* We checked that they match above. */
5122 dumpbase[strlen (dumpbase) - strlen (dumpbase_ext)] = '\0';
5124 if (dumpdir)
5125 prefix = concat (dumpdir, dumpbase, "-", NULL);
5126 else
5127 prefix = concat (dumpbase, "-", NULL);
5129 free (dumpdir);
5130 free (dumpbase);
5131 free (dumpbase_ext);
5132 dumpbase = dumpbase_ext = NULL;
5133 dumpdir = prefix;
5134 dumpdir_trailing_dash_added = true;
5137 /* If dumpbase was not brought into dumpdir but we're linking, bring
5138 output_file into dumpdir unless dumpdir was explicitly specified.
5139 The test for !explicit_dumpdir is further below, because we want
5140 to use the obase computation for a ghost outbase, passed to
5141 GCC_COLLECT_OPTIONS. */
5142 else if (!have_c && (!explicit_dumpdir || (dumpbase && !*dumpbase)))
5144 /* If we get here, we know dumpbase was not specified, or it was
5145 specified as an empty string. If it was anything else, it
5146 would have combined with dumpdir above, because the condition
5147 for dumpbase to be used when present is broader than the
5148 condition that gets us here. */
5149 gcc_assert (!dumpbase || !*dumpbase);
5151 const char *obase;
5152 char *tofree = NULL;
5153 if (!output_file || not_actual_file_p (output_file))
5154 obase = "a";
5155 else
5157 obase = lbasename (output_file);
5158 size_t blen = strlen (obase), xlen;
5159 /* Drop the suffix if it's dumpbase_ext, if given,
5160 otherwise .exe or the target executable suffix, or if the
5161 output was explicitly named a.out, but not otherwise. */
5162 if (dumpbase_ext
5163 ? (blen > (xlen = strlen (dumpbase_ext))
5164 && strcmp ((temp = (obase + blen - xlen)),
5165 dumpbase_ext) == 0)
5166 : ((temp = strrchr (obase + 1, '.'))
5167 && (xlen = strlen (temp))
5168 && (strcmp (temp, ".exe") == 0
5169 #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
5170 || strcmp (temp, TARGET_EXECUTABLE_SUFFIX) == 0
5171 #endif
5172 || strcmp (obase, "a.out") == 0)))
5174 tofree = xstrndup (obase, blen - xlen);
5175 obase = tofree;
5179 /* We wish to save this basename to the -dumpdir passed through
5180 GCC_COLLECT_OPTIONS within maybe_run_linker, for e.g. LTO,
5181 but we do NOT wish to add it to e.g. %b, so we keep
5182 outbase_length as zero. */
5183 gcc_assert (!outbase);
5184 outbase_length = 0;
5186 /* If we're building [dir1/]foo[.exe] out of a single input
5187 [dir2/]foo.c that shares the same basename, dump to
5188 [dir2/]foo.c.* rather than duplicating the basename into
5189 [dir2/]foo-foo.c.*. */
5190 int idxin;
5191 if (dumpbase
5192 || ((idxin = single_input_file_index ()) >= 0
5193 && adds_single_suffix_p (lbasename (infiles[idxin].name),
5194 obase)))
5196 if (obase == tofree)
5197 outbase = tofree;
5198 else
5200 outbase = xstrdup (obase);
5201 free (tofree);
5203 obase = tofree = NULL;
5205 else
5207 if (dumpdir)
5209 char *p = concat (dumpdir, obase, "-", NULL);
5210 free (dumpdir);
5211 dumpdir = p;
5213 else
5214 dumpdir = concat (obase, "-", NULL);
5216 dumpdir_trailing_dash_added = true;
5218 free (tofree);
5219 obase = tofree = NULL;
5222 if (!explicit_dumpdir || dumpbase)
5224 /* Absent -dumpbase and present -dumpbase-ext have been applied
5225 to the linker output name, so compute fresh defaults for each
5226 compilation. */
5227 free (dumpbase_ext);
5228 dumpbase_ext = NULL;
5232 /* Now, if we're compiling, or if we haven't used the dumpbase
5233 above, then outbase (%B) is derived from dumpbase, if given, or
5234 from the output name, given or implied. We can't precompute
5235 implied output names, but that's ok, since they're derived from
5236 input names. Just make sure we skip this if dumpbase is the
5237 empty string: we want to use input names then, so don't set
5238 outbase. */
5239 if ((dumpbase || have_c)
5240 && !(dumpbase && !*dumpbase))
5242 gcc_assert (!outbase);
5244 if (dumpbase)
5246 gcc_assert (single_input_file_index () != -2);
5247 /* We do not want lbasename here; dumpbase with dirnames
5248 overrides dumpdir entirely, even if dumpdir is
5249 specified. */
5250 if (dumpbase_ext)
5251 /* We've already checked above that the suffix matches. */
5252 outbase = xstrndup (dumpbase,
5253 strlen (dumpbase) - strlen (dumpbase_ext));
5254 else
5255 outbase = xstrdup (dumpbase);
5257 else if (output_file && !not_actual_file_p (output_file))
5259 outbase = xstrdup (lbasename (output_file));
5260 char *p = strrchr (outbase + 1, '.');
5261 if (p)
5262 *p = '\0';
5265 if (outbase)
5266 outbase_length = strlen (outbase);
5269 /* If there is any pathname component in an explicit -dumpbase, do
5270 not use dumpdir, but retain it to pass it on to the compiler. */
5271 if (dumpdir)
5272 dumpdir_length = strlen (dumpdir);
5273 else
5274 dumpdir_length = 0;
5276 /* Check that dumpbase_ext, if still present, still matches the end
5277 of dumpbase, if present, and drop it otherwise. We only retained
5278 it above when dumpbase was absent to maybe use it to drop the
5279 extension from output_name before combining it with dumpdir. We
5280 won't deal with -dumpbase-ext when -dumpbase is not explicitly
5281 given, even if just to activate backward-compatible dumpbase:
5282 dropping it on the floor is correct, expected and documented
5283 behavior. Attempting to deal with a -dumpbase-ext that might
5284 match the end of some input filename, or of the combination of
5285 the output basename with the suffix of the input filename,
5286 possible with an intermediate .gk extension for -fcompare-debug,
5287 is just calling for trouble. */
5288 if (dumpbase_ext)
5290 if (!dumpbase || !*dumpbase)
5292 free (dumpbase_ext);
5293 dumpbase_ext = NULL;
5295 else
5296 gcc_assert (strcmp (dumpbase + strlen (dumpbase)
5297 - strlen (dumpbase_ext), dumpbase_ext) == 0);
5300 if (save_temps_flag && use_pipes)
5302 /* -save-temps overrides -pipe, so that temp files are produced */
5303 if (save_temps_flag)
5304 warning (0, "%<-pipe%> ignored because %<-save-temps%> specified");
5305 use_pipes = 0;
5308 if (!compare_debug)
5310 const char *gcd = env.get ("GCC_COMPARE_DEBUG");
5312 if (gcd && gcd[0] == '-')
5314 compare_debug = 2;
5315 compare_debug_opt = gcd;
5317 else if (gcd && *gcd && strcmp (gcd, "0"))
5319 compare_debug = 3;
5320 compare_debug_opt = "-gtoggle";
5323 else if (compare_debug < 0)
5325 compare_debug = 0;
5326 gcc_assert (!compare_debug_opt);
5329 /* Set up the search paths. We add directories that we expect to
5330 contain GNU Toolchain components before directories specified by
5331 the machine description so that we will find GNU components (like
5332 the GNU assembler) before those of the host system. */
5334 /* If we don't know where the toolchain has been installed, use the
5335 configured-in locations. */
5336 if (!gcc_exec_prefix)
5338 #ifndef OS2
5339 add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
5340 PREFIX_PRIORITY_LAST, 1, 0);
5341 add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
5342 PREFIX_PRIORITY_LAST, 2, 0);
5343 add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
5344 PREFIX_PRIORITY_LAST, 2, 0);
5345 #endif
5346 add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
5347 PREFIX_PRIORITY_LAST, 1, 0);
5350 gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
5351 tooldir_prefix2 = concat (tooldir_base_prefix, spec_machine,
5352 dir_separator_str, NULL);
5354 /* Look for tools relative to the location from which the driver is
5355 running, or, if that is not available, the configured prefix. */
5356 tooldir_prefix
5357 = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
5358 spec_host_machine, dir_separator_str, spec_version,
5359 accel_dir_suffix, dir_separator_str, tooldir_prefix2, NULL);
5360 free (tooldir_prefix2);
5362 add_prefix (&exec_prefixes,
5363 concat (tooldir_prefix, "bin", dir_separator_str, NULL),
5364 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
5365 add_prefix (&startfile_prefixes,
5366 concat (tooldir_prefix, "lib", dir_separator_str, NULL),
5367 "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
5368 free (tooldir_prefix);
5370 #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
5371 /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
5372 then consider it to relocate with the rest of the GCC installation
5373 if GCC_EXEC_PREFIX is set.
5374 ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
5375 if (target_system_root && !target_system_root_changed && gcc_exec_prefix)
5377 char *tmp_prefix = get_relative_prefix (decoded_options[0].arg,
5378 standard_bindir_prefix,
5379 target_system_root);
5380 if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
5382 target_system_root = tmp_prefix;
5383 target_system_root_changed = 1;
5386 #endif
5388 /* More prefixes are enabled in main, after we read the specs file
5389 and determine whether this is cross-compilation or not. */
5391 if (n_infiles != 0 && n_infiles == last_language_n_infiles && spec_lang != 0)
5392 warning (0, "%<-x %s%> after last input file has no effect", spec_lang);
5394 /* Synthesize -fcompare-debug flag from the GCC_COMPARE_DEBUG
5395 environment variable. */
5396 if (compare_debug == 2 || compare_debug == 3)
5398 const char *opt = concat ("-fcompare-debug=", compare_debug_opt, NULL);
5399 save_switch (opt, 0, NULL, false, true);
5400 compare_debug = 1;
5403 /* Ensure we only invoke each subprocess once. */
5404 if (n_infiles == 0
5405 && (print_subprocess_help || print_help_list || print_version))
5407 /* Create a dummy input file, so that we can pass
5408 the help option on to the various sub-processes. */
5409 add_infile ("help-dummy", "c");
5412 /* Decide if undefined variable references are allowed in specs. */
5414 /* -v alone is safe. --version and --help alone or together are safe. Note
5415 that -v would make them unsafe, as they'd then be run for subprocesses as
5416 well, the location of which might depend on variables possibly coming
5417 from self-specs. Note also that the command name is counted in
5418 decoded_options_count. */
5420 unsigned help_version_count = 0;
5422 if (print_version)
5423 help_version_count++;
5425 if (print_help_list)
5426 help_version_count++;
5428 spec_undefvar_allowed =
5429 ((verbose_flag && decoded_options_count == 2)
5430 || help_version_count == decoded_options_count - 1);
5432 alloc_switch ();
5433 switches[n_switches].part1 = 0;
5434 alloc_infile ();
5435 infiles[n_infiles].name = 0;
5438 /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
5439 and place that in the environment. */
5441 static void
5442 set_collect_gcc_options (void)
5444 int i;
5445 int first_time;
5447 /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5448 the compiler. */
5449 obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
5450 sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5452 first_time = TRUE;
5453 for (i = 0; (int) i < n_switches; i++)
5455 const char *const *args;
5456 const char *p, *q;
5457 if (!first_time)
5458 obstack_grow (&collect_obstack, " ", 1);
5460 first_time = FALSE;
5462 /* Ignore elided switches. */
5463 if ((switches[i].live_cond
5464 & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC))
5465 == SWITCH_IGNORE)
5466 continue;
5468 obstack_grow (&collect_obstack, "'-", 2);
5469 q = switches[i].part1;
5470 while ((p = strchr (q, '\'')))
5472 obstack_grow (&collect_obstack, q, p - q);
5473 obstack_grow (&collect_obstack, "'\\''", 4);
5474 q = ++p;
5476 obstack_grow (&collect_obstack, q, strlen (q));
5477 obstack_grow (&collect_obstack, "'", 1);
5479 for (args = switches[i].args; args && *args; args++)
5481 obstack_grow (&collect_obstack, " '", 2);
5482 q = *args;
5483 while ((p = strchr (q, '\'')))
5485 obstack_grow (&collect_obstack, q, p - q);
5486 obstack_grow (&collect_obstack, "'\\''", 4);
5487 q = ++p;
5489 obstack_grow (&collect_obstack, q, strlen (q));
5490 obstack_grow (&collect_obstack, "'", 1);
5494 if (dumpdir)
5496 if (!first_time)
5497 obstack_grow (&collect_obstack, " ", 1);
5498 first_time = FALSE;
5500 obstack_grow (&collect_obstack, "'-dumpdir' '", 12);
5501 const char *p, *q;
5503 q = dumpdir;
5504 while ((p = strchr (q, '\'')))
5506 obstack_grow (&collect_obstack, q, p - q);
5507 obstack_grow (&collect_obstack, "'\\''", 4);
5508 q = ++p;
5510 obstack_grow (&collect_obstack, q, strlen (q));
5512 obstack_grow (&collect_obstack, "'", 1);
5515 obstack_grow (&collect_obstack, "\0", 1);
5516 xputenv (XOBFINISH (&collect_obstack, char *));
5519 /* Process a spec string, accumulating and running commands. */
5521 /* These variables describe the input file name.
5522 input_file_number is the index on outfiles of this file,
5523 so that the output file name can be stored for later use by %o.
5524 input_basename is the start of the part of the input file
5525 sans all directory names, and basename_length is the number
5526 of characters starting there excluding the suffix .c or whatever. */
5528 static const char *gcc_input_filename;
5529 static int input_file_number;
5530 size_t input_filename_length;
5531 static int basename_length;
5532 static int suffixed_basename_length;
5533 static const char *input_basename;
5534 static const char *input_suffix;
5535 #ifndef HOST_LACKS_INODE_NUMBERS
5536 static struct stat input_stat;
5537 #endif
5538 static int input_stat_set;
5540 /* The compiler used to process the current input file. */
5541 static struct compiler *input_file_compiler;
5543 /* These are variables used within do_spec and do_spec_1. */
5545 /* Nonzero if an arg has been started and not yet terminated
5546 (with space, tab or newline). */
5547 static int arg_going;
5549 /* Nonzero means %d or %g has been seen; the next arg to be terminated
5550 is a temporary file name. */
5551 static int delete_this_arg;
5553 /* Nonzero means %w has been seen; the next arg to be terminated
5554 is the output file name of this compilation. */
5555 static int this_is_output_file;
5557 /* Nonzero means %s has been seen; the next arg to be terminated
5558 is the name of a library file and we should try the standard
5559 search dirs for it. */
5560 static int this_is_library_file;
5562 /* Nonzero means %T has been seen; the next arg to be terminated
5563 is the name of a linker script and we should try all of the
5564 standard search dirs for it. If it is found insert a --script
5565 command line switch and then substitute the full path in place,
5566 otherwise generate an error message. */
5567 static int this_is_linker_script;
5569 /* Nonzero means that the input of this command is coming from a pipe. */
5570 static int input_from_pipe;
5572 /* Nonnull means substitute this for any suffix when outputting a switches
5573 arguments. */
5574 static const char *suffix_subst;
5576 /* If there is an argument being accumulated, terminate it and store it. */
5578 static void
5579 end_going_arg (void)
5581 if (arg_going)
5583 const char *string;
5585 obstack_1grow (&obstack, 0);
5586 string = XOBFINISH (&obstack, const char *);
5587 if (this_is_library_file)
5588 string = find_file (string);
5589 if (this_is_linker_script)
5591 char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true);
5593 if (full_script_path == NULL)
5595 error ("unable to locate default linker script %qs in the library search paths", string);
5596 /* Script was not found on search path. */
5597 return;
5599 store_arg ("--script", false, false);
5600 string = full_script_path;
5602 store_arg (string, delete_this_arg, this_is_output_file);
5603 if (this_is_output_file)
5604 outfiles[input_file_number] = string;
5605 arg_going = 0;
5610 /* Parse the WRAPPER string which is a comma separated list of the command line
5611 and insert them into the beginning of argbuf. */
5613 static void
5614 insert_wrapper (const char *wrapper)
5616 int n = 0;
5617 int i;
5618 char *buf = xstrdup (wrapper);
5619 char *p = buf;
5620 unsigned int old_length = argbuf.length ();
5624 n++;
5625 while (*p == ',')
5626 p++;
5628 while ((p = strchr (p, ',')) != NULL);
5630 argbuf.safe_grow (old_length + n, true);
5631 memmove (argbuf.address () + n,
5632 argbuf.address (),
5633 old_length * sizeof (const_char_p));
5635 i = 0;
5636 p = buf;
5639 while (*p == ',')
5641 *p = 0;
5642 p++;
5644 argbuf[i] = p;
5645 i++;
5647 while ((p = strchr (p, ',')) != NULL);
5648 gcc_assert (i == n);
5651 /* Process the spec SPEC and run the commands specified therein.
5652 Returns 0 if the spec is successfully processed; -1 if failed. */
5655 do_spec (const char *spec)
5657 int value;
5659 value = do_spec_2 (spec, NULL);
5661 /* Force out any unfinished command.
5662 If -pipe, this forces out the last command if it ended in `|'. */
5663 if (value == 0)
5665 if (argbuf.length () > 0
5666 && !strcmp (argbuf.last (), "|"))
5667 argbuf.pop ();
5669 set_collect_gcc_options ();
5671 if (argbuf.length () > 0)
5672 value = execute ();
5675 return value;
5678 /* Process the spec SPEC, with SOFT_MATCHED_PART designating the current value
5679 of a matched * pattern which may be re-injected by way of %*. */
5681 static int
5682 do_spec_2 (const char *spec, const char *soft_matched_part)
5684 int result;
5686 clear_args ();
5687 arg_going = 0;
5688 delete_this_arg = 0;
5689 this_is_output_file = 0;
5690 this_is_library_file = 0;
5691 this_is_linker_script = 0;
5692 input_from_pipe = 0;
5693 suffix_subst = NULL;
5695 result = do_spec_1 (spec, 0, soft_matched_part);
5697 end_going_arg ();
5699 return result;
5702 /* Process the given spec string and add any new options to the end
5703 of the switches/n_switches array. */
5705 static void
5706 do_option_spec (const char *name, const char *spec)
5708 unsigned int i, value_count, value_len;
5709 const char *p, *q, *value;
5710 char *tmp_spec, *tmp_spec_p;
5712 if (configure_default_options[0].name == NULL)
5713 return;
5715 for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
5716 if (strcmp (configure_default_options[i].name, name) == 0)
5717 break;
5718 if (i == ARRAY_SIZE (configure_default_options))
5719 return;
5721 value = configure_default_options[i].value;
5722 value_len = strlen (value);
5724 /* Compute the size of the final spec. */
5725 value_count = 0;
5726 p = spec;
5727 while ((p = strstr (p, "%(VALUE)")) != NULL)
5729 p ++;
5730 value_count ++;
5733 /* Replace each %(VALUE) by the specified value. */
5734 tmp_spec = (char *) alloca (strlen (spec) + 1
5735 + value_count * (value_len - strlen ("%(VALUE)")));
5736 tmp_spec_p = tmp_spec;
5737 q = spec;
5738 while ((p = strstr (q, "%(VALUE)")) != NULL)
5740 memcpy (tmp_spec_p, q, p - q);
5741 tmp_spec_p = tmp_spec_p + (p - q);
5742 memcpy (tmp_spec_p, value, value_len);
5743 tmp_spec_p += value_len;
5744 q = p + strlen ("%(VALUE)");
5746 strcpy (tmp_spec_p, q);
5748 do_self_spec (tmp_spec);
5751 /* Process the given spec string and add any new options to the end
5752 of the switches/n_switches array. */
5754 static void
5755 do_self_spec (const char *spec)
5757 int i;
5759 do_spec_2 (spec, NULL);
5760 do_spec_1 (" ", 0, NULL);
5762 /* Mark %<S switches processed by do_self_spec to be ignored permanently.
5763 do_self_specs adds the replacements to switches array, so it shouldn't
5764 be processed afterwards. */
5765 for (i = 0; i < n_switches; i++)
5766 if ((switches[i].live_cond & SWITCH_IGNORE))
5767 switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
5769 if (argbuf.length () > 0)
5771 const char **argbuf_copy;
5772 struct cl_decoded_option *decoded_options;
5773 struct cl_option_handlers handlers;
5774 unsigned int decoded_options_count;
5775 unsigned int j;
5777 /* Create a copy of argbuf with a dummy argv[0] entry for
5778 decode_cmdline_options_to_array. */
5779 argbuf_copy = XNEWVEC (const char *,
5780 argbuf.length () + 1);
5781 argbuf_copy[0] = "";
5782 memcpy (argbuf_copy + 1, argbuf.address (),
5783 argbuf.length () * sizeof (const char *));
5785 decode_cmdline_options_to_array (argbuf.length () + 1,
5786 argbuf_copy,
5787 CL_DRIVER, &decoded_options,
5788 &decoded_options_count);
5789 free (argbuf_copy);
5791 set_option_handlers (&handlers);
5793 for (j = 1; j < decoded_options_count; j++)
5795 switch (decoded_options[j].opt_index)
5797 case OPT_SPECIAL_input_file:
5798 /* Specs should only generate options, not input
5799 files. */
5800 if (strcmp (decoded_options[j].arg, "-") != 0)
5801 fatal_error (input_location,
5802 "switch %qs does not start with %<-%>",
5803 decoded_options[j].arg);
5804 else
5805 fatal_error (input_location,
5806 "spec-generated switch is just %<-%>");
5807 break;
5809 case OPT_fcompare_debug_second:
5810 case OPT_fcompare_debug:
5811 case OPT_fcompare_debug_:
5812 case OPT_o:
5813 /* Avoid duplicate processing of some options from
5814 compare-debug specs; just save them here. */
5815 save_switch (decoded_options[j].canonical_option[0],
5816 (decoded_options[j].canonical_option_num_elements
5817 - 1),
5818 &decoded_options[j].canonical_option[1], false, true);
5819 break;
5821 default:
5822 read_cmdline_option (&global_options, &global_options_set,
5823 decoded_options + j, UNKNOWN_LOCATION,
5824 CL_DRIVER, &handlers, global_dc);
5825 break;
5829 free (decoded_options);
5831 alloc_switch ();
5832 switches[n_switches].part1 = 0;
5836 /* Callback for processing %D and %I specs. */
5838 struct spec_path_info {
5839 const char *option;
5840 const char *append;
5841 size_t append_len;
5842 bool omit_relative;
5843 bool separate_options;
5846 static void *
5847 spec_path (char *path, void *data)
5849 struct spec_path_info *info = (struct spec_path_info *) data;
5850 size_t len = 0;
5851 char save = 0;
5853 if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
5854 return NULL;
5856 if (info->append_len != 0)
5858 len = strlen (path);
5859 memcpy (path + len, info->append, info->append_len + 1);
5862 if (!is_directory (path, true))
5863 return NULL;
5865 do_spec_1 (info->option, 1, NULL);
5866 if (info->separate_options)
5867 do_spec_1 (" ", 0, NULL);
5869 if (info->append_len == 0)
5871 len = strlen (path);
5872 save = path[len - 1];
5873 if (IS_DIR_SEPARATOR (path[len - 1]))
5874 path[len - 1] = '\0';
5877 do_spec_1 (path, 1, NULL);
5878 do_spec_1 (" ", 0, NULL);
5880 /* Must not damage the original path. */
5881 if (info->append_len == 0)
5882 path[len - 1] = save;
5884 return NULL;
5887 /* True if we should compile INFILE. */
5889 static bool
5890 compile_input_file_p (struct infile *infile)
5892 if ((!infile->language) || (infile->language[0] != '*'))
5893 if (infile->incompiler == input_file_compiler)
5894 return true;
5895 return false;
5898 /* Process each member of VEC as a spec. */
5900 static void
5901 do_specs_vec (vec<char_p> vec)
5903 for (char *opt : vec)
5905 do_spec_1 (opt, 1, NULL);
5906 /* Make each accumulated option a separate argument. */
5907 do_spec_1 (" ", 0, NULL);
5911 /* Add options passed via -Xassembler or -Wa to COLLECT_AS_OPTIONS. */
5913 static void
5914 putenv_COLLECT_AS_OPTIONS (vec<char_p> vec)
5916 if (vec.is_empty ())
5917 return;
5919 obstack_init (&collect_obstack);
5920 obstack_grow (&collect_obstack, "COLLECT_AS_OPTIONS=",
5921 strlen ("COLLECT_AS_OPTIONS="));
5923 char *opt;
5924 unsigned ix;
5926 FOR_EACH_VEC_ELT (vec, ix, opt)
5928 obstack_1grow (&collect_obstack, '\'');
5929 obstack_grow (&collect_obstack, opt, strlen (opt));
5930 obstack_1grow (&collect_obstack, '\'');
5931 if (ix < vec.length () - 1)
5932 obstack_1grow(&collect_obstack, ' ');
5935 obstack_1grow (&collect_obstack, '\0');
5936 xputenv (XOBFINISH (&collect_obstack, char *));
5939 /* Process the sub-spec SPEC as a portion of a larger spec.
5940 This is like processing a whole spec except that we do
5941 not initialize at the beginning and we do not supply a
5942 newline by default at the end.
5943 INSWITCH nonzero means don't process %-sequences in SPEC;
5944 in this case, % is treated as an ordinary character.
5945 This is used while substituting switches.
5946 INSWITCH nonzero also causes SPC not to terminate an argument.
5948 Value is zero unless a line was finished
5949 and the command on that line reported an error. */
5951 static int
5952 do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
5954 const char *p = spec;
5955 int c;
5956 int i;
5957 int value;
5959 /* If it's an empty string argument to a switch, keep it as is. */
5960 if (inswitch && !*p)
5961 arg_going = 1;
5963 while ((c = *p++))
5964 /* If substituting a switch, treat all chars like letters.
5965 Otherwise, NL, SPC, TAB and % are special. */
5966 switch (inswitch ? 'a' : c)
5968 case '\n':
5969 end_going_arg ();
5971 if (argbuf.length () > 0
5972 && !strcmp (argbuf.last (), "|"))
5974 /* A `|' before the newline means use a pipe here,
5975 but only if -pipe was specified.
5976 Otherwise, execute now and don't pass the `|' as an arg. */
5977 if (use_pipes)
5979 input_from_pipe = 1;
5980 break;
5982 else
5983 argbuf.pop ();
5986 set_collect_gcc_options ();
5988 if (argbuf.length () > 0)
5990 value = execute ();
5991 if (value)
5992 return value;
5994 /* Reinitialize for a new command, and for a new argument. */
5995 clear_args ();
5996 arg_going = 0;
5997 delete_this_arg = 0;
5998 this_is_output_file = 0;
5999 this_is_library_file = 0;
6000 this_is_linker_script = 0;
6001 input_from_pipe = 0;
6002 break;
6004 case '|':
6005 end_going_arg ();
6007 /* Use pipe */
6008 obstack_1grow (&obstack, c);
6009 arg_going = 1;
6010 break;
6012 case '\t':
6013 case ' ':
6014 end_going_arg ();
6016 /* Reinitialize for a new argument. */
6017 delete_this_arg = 0;
6018 this_is_output_file = 0;
6019 this_is_library_file = 0;
6020 this_is_linker_script = 0;
6021 break;
6023 case '%':
6024 switch (c = *p++)
6026 case 0:
6027 fatal_error (input_location, "spec %qs invalid", spec);
6029 case 'b':
6030 /* Don't use %b in the linker command. */
6031 gcc_assert (suffixed_basename_length);
6032 if (!this_is_output_file && dumpdir_length)
6033 obstack_grow (&obstack, dumpdir, dumpdir_length);
6034 if (this_is_output_file || !outbase_length)
6035 obstack_grow (&obstack, input_basename, basename_length);
6036 else
6037 obstack_grow (&obstack, outbase, outbase_length);
6038 if (compare_debug < 0)
6039 obstack_grow (&obstack, ".gk", 3);
6040 arg_going = 1;
6041 break;
6043 case 'B':
6044 /* Don't use %B in the linker command. */
6045 gcc_assert (suffixed_basename_length);
6046 if (!this_is_output_file && dumpdir_length)
6047 obstack_grow (&obstack, dumpdir, dumpdir_length);
6048 if (this_is_output_file || !outbase_length)
6049 obstack_grow (&obstack, input_basename, basename_length);
6050 else
6051 obstack_grow (&obstack, outbase, outbase_length);
6052 if (compare_debug < 0)
6053 obstack_grow (&obstack, ".gk", 3);
6054 obstack_grow (&obstack, input_basename + basename_length,
6055 suffixed_basename_length - basename_length);
6057 arg_going = 1;
6058 break;
6060 case 'd':
6061 delete_this_arg = 2;
6062 break;
6064 /* Dump out the directories specified with LIBRARY_PATH,
6065 followed by the absolute directories
6066 that we search for startfiles. */
6067 case 'D':
6069 struct spec_path_info info;
6071 info.option = "-L";
6072 info.append_len = 0;
6073 #ifdef RELATIVE_PREFIX_NOT_LINKDIR
6074 /* Used on systems which record the specified -L dirs
6075 and use them to search for dynamic linking.
6076 Relative directories always come from -B,
6077 and it is better not to use them for searching
6078 at run time. In particular, stage1 loses. */
6079 info.omit_relative = true;
6080 #else
6081 info.omit_relative = false;
6082 #endif
6083 info.separate_options = false;
6085 for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
6087 break;
6089 case 'e':
6090 /* %efoo means report an error with `foo' as error message
6091 and don't execute any more commands for this file. */
6093 const char *q = p;
6094 char *buf;
6095 while (*p != 0 && *p != '\n')
6096 p++;
6097 buf = (char *) alloca (p - q + 1);
6098 strncpy (buf, q, p - q);
6099 buf[p - q] = 0;
6100 error ("%s", _(buf));
6101 return -1;
6103 break;
6104 case 'n':
6105 /* %nfoo means report a notice with `foo' on stderr. */
6107 const char *q = p;
6108 char *buf;
6109 while (*p != 0 && *p != '\n')
6110 p++;
6111 buf = (char *) alloca (p - q + 1);
6112 strncpy (buf, q, p - q);
6113 buf[p - q] = 0;
6114 inform (UNKNOWN_LOCATION, "%s", _(buf));
6115 if (*p)
6116 p++;
6118 break;
6120 case 'j':
6122 struct stat st;
6124 /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
6125 defined, and it is not a directory, and it is
6126 writable, use it. Otherwise, treat this like any
6127 other temporary file. */
6129 if ((!save_temps_flag)
6130 && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
6131 && (access (HOST_BIT_BUCKET, W_OK) == 0))
6133 obstack_grow (&obstack, HOST_BIT_BUCKET,
6134 strlen (HOST_BIT_BUCKET));
6135 delete_this_arg = 0;
6136 arg_going = 1;
6137 break;
6140 goto create_temp_file;
6141 case '|':
6142 if (use_pipes)
6144 obstack_1grow (&obstack, '-');
6145 delete_this_arg = 0;
6146 arg_going = 1;
6148 /* consume suffix */
6149 while (*p == '.' || ISALNUM ((unsigned char) *p))
6150 p++;
6151 if (p[0] == '%' && p[1] == 'O')
6152 p += 2;
6154 break;
6156 goto create_temp_file;
6157 case 'm':
6158 if (use_pipes)
6160 /* consume suffix */
6161 while (*p == '.' || ISALNUM ((unsigned char) *p))
6162 p++;
6163 if (p[0] == '%' && p[1] == 'O')
6164 p += 2;
6166 break;
6168 goto create_temp_file;
6169 case 'g':
6170 case 'u':
6171 case 'U':
6172 create_temp_file:
6174 struct temp_name *t;
6175 int suffix_length;
6176 const char *suffix = p;
6177 char *saved_suffix = NULL;
6179 while (*p == '.' || ISALNUM ((unsigned char) *p))
6180 p++;
6181 suffix_length = p - suffix;
6182 if (p[0] == '%' && p[1] == 'O')
6184 p += 2;
6185 /* We don't support extra suffix characters after %O. */
6186 if (*p == '.' || ISALNUM ((unsigned char) *p))
6187 fatal_error (input_location,
6188 "spec %qs has invalid %<%%0%c%>", spec, *p);
6189 if (suffix_length == 0)
6190 suffix = TARGET_OBJECT_SUFFIX;
6191 else
6193 saved_suffix
6194 = XNEWVEC (char, suffix_length
6195 + strlen (TARGET_OBJECT_SUFFIX) + 1);
6196 strncpy (saved_suffix, suffix, suffix_length);
6197 strcpy (saved_suffix + suffix_length,
6198 TARGET_OBJECT_SUFFIX);
6200 suffix_length += strlen (TARGET_OBJECT_SUFFIX);
6203 if (compare_debug < 0)
6205 suffix = concat (".gk", suffix, NULL);
6206 suffix_length += 3;
6209 /* If -save-temps was specified, use that for the
6210 temp file. */
6211 if (save_temps_flag)
6213 char *tmp;
6214 bool adjusted_suffix = false;
6215 if (suffix_length
6216 && !outbase_length && !basename_length
6217 && !dumpdir_trailing_dash_added)
6219 adjusted_suffix = true;
6220 suffix++;
6221 suffix_length--;
6223 temp_filename_length
6224 = dumpdir_length + suffix_length + 1;
6225 if (outbase_length)
6226 temp_filename_length += outbase_length;
6227 else
6228 temp_filename_length += basename_length;
6229 tmp = (char *) alloca (temp_filename_length);
6230 if (dumpdir_length)
6231 memcpy (tmp, dumpdir, dumpdir_length);
6232 if (outbase_length)
6233 memcpy (tmp + dumpdir_length, outbase,
6234 outbase_length);
6235 else if (basename_length)
6236 memcpy (tmp + dumpdir_length, input_basename,
6237 basename_length);
6238 memcpy (tmp + temp_filename_length - suffix_length - 1,
6239 suffix, suffix_length);
6240 if (adjusted_suffix)
6242 adjusted_suffix = false;
6243 suffix--;
6244 suffix_length++;
6246 tmp[temp_filename_length - 1] = '\0';
6247 temp_filename = tmp;
6249 if (filename_cmp (temp_filename, gcc_input_filename) != 0)
6251 #ifndef HOST_LACKS_INODE_NUMBERS
6252 struct stat st_temp;
6254 /* Note, set_input() resets input_stat_set to 0. */
6255 if (input_stat_set == 0)
6257 input_stat_set = stat (gcc_input_filename,
6258 &input_stat);
6259 if (input_stat_set >= 0)
6260 input_stat_set = 1;
6263 /* If we have the stat for the gcc_input_filename
6264 and we can do the stat for the temp_filename
6265 then the they could still refer to the same
6266 file if st_dev/st_ino's are the same. */
6267 if (input_stat_set != 1
6268 || stat (temp_filename, &st_temp) < 0
6269 || input_stat.st_dev != st_temp.st_dev
6270 || input_stat.st_ino != st_temp.st_ino)
6271 #else
6272 /* Just compare canonical pathnames. */
6273 char* input_realname = lrealpath (gcc_input_filename);
6274 char* temp_realname = lrealpath (temp_filename);
6275 bool files_differ = filename_cmp (input_realname, temp_realname);
6276 free (input_realname);
6277 free (temp_realname);
6278 if (files_differ)
6279 #endif
6281 temp_filename
6282 = save_string (temp_filename,
6283 temp_filename_length - 1);
6284 obstack_grow (&obstack, temp_filename,
6285 temp_filename_length);
6286 arg_going = 1;
6287 delete_this_arg = 0;
6288 break;
6293 /* See if we already have an association of %g/%u/%U and
6294 suffix. */
6295 for (t = temp_names; t; t = t->next)
6296 if (t->length == suffix_length
6297 && strncmp (t->suffix, suffix, suffix_length) == 0
6298 && t->unique == (c == 'u' || c == 'U' || c == 'j'))
6299 break;
6301 /* Make a new association if needed. %u and %j
6302 require one. */
6303 if (t == 0 || c == 'u' || c == 'j')
6305 if (t == 0)
6307 t = XNEW (struct temp_name);
6308 t->next = temp_names;
6309 temp_names = t;
6311 t->length = suffix_length;
6312 if (saved_suffix)
6314 t->suffix = saved_suffix;
6315 saved_suffix = NULL;
6317 else
6318 t->suffix = save_string (suffix, suffix_length);
6319 t->unique = (c == 'u' || c == 'U' || c == 'j');
6320 temp_filename = make_temp_file (t->suffix);
6321 temp_filename_length = strlen (temp_filename);
6322 t->filename = temp_filename;
6323 t->filename_length = temp_filename_length;
6326 free (saved_suffix);
6328 obstack_grow (&obstack, t->filename, t->filename_length);
6329 delete_this_arg = 1;
6331 arg_going = 1;
6332 break;
6334 case 'i':
6335 if (combine_inputs)
6337 /* We are going to expand `%i' into `@FILE', where FILE
6338 is a newly-created temporary filename. The filenames
6339 that would usually be expanded in place of %o will be
6340 written to the temporary file. */
6341 if (at_file_supplied)
6342 open_at_file ();
6344 for (i = 0; (int) i < n_infiles; i++)
6345 if (compile_input_file_p (&infiles[i]))
6347 store_arg (infiles[i].name, 0, 0);
6348 infiles[i].compiled = true;
6351 if (at_file_supplied)
6352 close_at_file ();
6354 else
6356 obstack_grow (&obstack, gcc_input_filename,
6357 input_filename_length);
6358 arg_going = 1;
6360 break;
6362 case 'I':
6364 struct spec_path_info info;
6366 if (multilib_dir)
6368 do_spec_1 ("-imultilib", 1, NULL);
6369 /* Make this a separate argument. */
6370 do_spec_1 (" ", 0, NULL);
6371 do_spec_1 (multilib_dir, 1, NULL);
6372 do_spec_1 (" ", 0, NULL);
6375 if (multiarch_dir)
6377 do_spec_1 ("-imultiarch", 1, NULL);
6378 /* Make this a separate argument. */
6379 do_spec_1 (" ", 0, NULL);
6380 do_spec_1 (multiarch_dir, 1, NULL);
6381 do_spec_1 (" ", 0, NULL);
6384 if (gcc_exec_prefix)
6386 do_spec_1 ("-iprefix", 1, NULL);
6387 /* Make this a separate argument. */
6388 do_spec_1 (" ", 0, NULL);
6389 do_spec_1 (gcc_exec_prefix, 1, NULL);
6390 do_spec_1 (" ", 0, NULL);
6393 if (target_system_root_changed ||
6394 (target_system_root && target_sysroot_hdrs_suffix))
6396 do_spec_1 ("-isysroot", 1, NULL);
6397 /* Make this a separate argument. */
6398 do_spec_1 (" ", 0, NULL);
6399 do_spec_1 (target_system_root, 1, NULL);
6400 if (target_sysroot_hdrs_suffix)
6401 do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
6402 do_spec_1 (" ", 0, NULL);
6405 info.option = "-isystem";
6406 info.append = "include";
6407 info.append_len = strlen (info.append);
6408 info.omit_relative = false;
6409 info.separate_options = true;
6411 for_each_path (&include_prefixes, false, info.append_len,
6412 spec_path, &info);
6414 info.append = "include-fixed";
6415 if (*sysroot_hdrs_suffix_spec)
6416 info.append = concat (info.append, dir_separator_str,
6417 multilib_dir, NULL);
6418 else if (multiarch_dir)
6420 /* For multiarch, search include-fixed/<multiarch-dir>
6421 before include-fixed. */
6422 info.append = concat (info.append, dir_separator_str,
6423 multiarch_dir, NULL);
6424 info.append_len = strlen (info.append);
6425 for_each_path (&include_prefixes, false, info.append_len,
6426 spec_path, &info);
6428 info.append = "include-fixed";
6430 info.append_len = strlen (info.append);
6431 for_each_path (&include_prefixes, false, info.append_len,
6432 spec_path, &info);
6434 break;
6436 case 'o':
6437 /* We are going to expand `%o' into `@FILE', where FILE
6438 is a newly-created temporary filename. The filenames
6439 that would usually be expanded in place of %o will be
6440 written to the temporary file. */
6441 if (at_file_supplied)
6442 open_at_file ();
6444 for (i = 0; i < n_infiles + lang_specific_extra_outfiles; i++)
6445 if (outfiles[i])
6446 store_arg (outfiles[i], 0, 0);
6448 if (at_file_supplied)
6449 close_at_file ();
6450 break;
6452 case 'O':
6453 obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
6454 arg_going = 1;
6455 break;
6457 case 's':
6458 this_is_library_file = 1;
6459 break;
6461 case 'T':
6462 this_is_linker_script = 1;
6463 break;
6465 case 'V':
6466 outfiles[input_file_number] = NULL;
6467 break;
6469 case 'w':
6470 this_is_output_file = 1;
6471 break;
6473 case 'W':
6475 unsigned int cur_index = argbuf.length ();
6476 /* Handle the {...} following the %W. */
6477 if (*p != '{')
6478 fatal_error (input_location,
6479 "spec %qs has invalid %<%%W%c%>", spec, *p);
6480 p = handle_braces (p + 1);
6481 if (p == 0)
6482 return -1;
6483 end_going_arg ();
6484 /* If any args were output, mark the last one for deletion
6485 on failure. */
6486 if (argbuf.length () != cur_index)
6487 record_temp_file (argbuf.last (), 0, 1);
6488 break;
6491 case '@':
6492 /* Handle the {...} following the %@. */
6493 if (*p != '{')
6494 fatal_error (input_location,
6495 "spec %qs has invalid %<%%@%c%>", spec, *p);
6496 if (at_file_supplied)
6497 open_at_file ();
6498 p = handle_braces (p + 1);
6499 if (at_file_supplied)
6500 close_at_file ();
6501 if (p == 0)
6502 return -1;
6503 break;
6505 /* %x{OPTION} records OPTION for %X to output. */
6506 case 'x':
6508 const char *p1 = p;
6509 char *string;
6511 /* Skip past the option value and make a copy. */
6512 if (*p != '{')
6513 fatal_error (input_location,
6514 "spec %qs has invalid %<%%x%c%>", spec, *p);
6515 while (*p++ != '}')
6517 string = save_string (p1 + 1, p - p1 - 2);
6519 /* See if we already recorded this option. */
6520 for (const char *opt : linker_options)
6521 if (! strcmp (string, opt))
6523 free (string);
6524 return 0;
6527 /* This option is new; add it. */
6528 add_linker_option (string, strlen (string));
6529 free (string);
6531 break;
6533 /* Dump out the options accumulated previously using %x. */
6534 case 'X':
6535 do_specs_vec (linker_options);
6536 break;
6538 /* Dump out the options accumulated previously using -Wa,. */
6539 case 'Y':
6540 do_specs_vec (assembler_options);
6541 break;
6543 /* Dump out the options accumulated previously using -Wp,. */
6544 case 'Z':
6545 do_specs_vec (preprocessor_options);
6546 break;
6548 /* Here are digits and numbers that just process
6549 a certain constant string as a spec. */
6551 case '1':
6552 value = do_spec_1 (cc1_spec, 0, NULL);
6553 if (value != 0)
6554 return value;
6555 break;
6557 case '2':
6558 value = do_spec_1 (cc1plus_spec, 0, NULL);
6559 if (value != 0)
6560 return value;
6561 break;
6563 case 'a':
6564 value = do_spec_1 (asm_spec, 0, NULL);
6565 if (value != 0)
6566 return value;
6567 break;
6569 case 'A':
6570 value = do_spec_1 (asm_final_spec, 0, NULL);
6571 if (value != 0)
6572 return value;
6573 break;
6575 case 'C':
6577 const char *const spec
6578 = (input_file_compiler->cpp_spec
6579 ? input_file_compiler->cpp_spec
6580 : cpp_spec);
6581 value = do_spec_1 (spec, 0, NULL);
6582 if (value != 0)
6583 return value;
6585 break;
6587 case 'E':
6588 value = do_spec_1 (endfile_spec, 0, NULL);
6589 if (value != 0)
6590 return value;
6591 break;
6593 case 'l':
6594 value = do_spec_1 (link_spec, 0, NULL);
6595 if (value != 0)
6596 return value;
6597 break;
6599 case 'L':
6600 value = do_spec_1 (lib_spec, 0, NULL);
6601 if (value != 0)
6602 return value;
6603 break;
6605 case 'M':
6606 if (multilib_os_dir == NULL)
6607 obstack_1grow (&obstack, '.');
6608 else
6609 obstack_grow (&obstack, multilib_os_dir,
6610 strlen (multilib_os_dir));
6611 break;
6613 case 'G':
6614 value = do_spec_1 (libgcc_spec, 0, NULL);
6615 if (value != 0)
6616 return value;
6617 break;
6619 case 'R':
6620 /* We assume there is a directory
6621 separator at the end of this string. */
6622 if (target_system_root)
6624 obstack_grow (&obstack, target_system_root,
6625 strlen (target_system_root));
6626 if (target_sysroot_suffix)
6627 obstack_grow (&obstack, target_sysroot_suffix,
6628 strlen (target_sysroot_suffix));
6630 break;
6632 case 'S':
6633 value = do_spec_1 (startfile_spec, 0, NULL);
6634 if (value != 0)
6635 return value;
6636 break;
6638 /* Here we define characters other than letters and digits. */
6640 case '{':
6641 p = handle_braces (p);
6642 if (p == 0)
6643 return -1;
6644 break;
6646 case ':':
6647 p = handle_spec_function (p, NULL, soft_matched_part);
6648 if (p == 0)
6649 return -1;
6650 break;
6652 case '%':
6653 obstack_1grow (&obstack, '%');
6654 break;
6656 case '.':
6658 unsigned len = 0;
6660 while (p[len] && p[len] != ' ' && p[len] != '%')
6661 len++;
6662 suffix_subst = save_string (p - 1, len + 1);
6663 p += len;
6665 break;
6667 /* Henceforth ignore the option(s) matching the pattern
6668 after the %<. */
6669 case '<':
6670 case '>':
6672 unsigned len = 0;
6673 int have_wildcard = 0;
6674 int i;
6675 int switch_option;
6677 if (c == '>')
6678 switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC;
6679 else
6680 switch_option = SWITCH_IGNORE;
6682 while (p[len] && p[len] != ' ' && p[len] != '\t')
6683 len++;
6685 if (p[len-1] == '*')
6686 have_wildcard = 1;
6688 for (i = 0; i < n_switches; i++)
6689 if (!strncmp (switches[i].part1, p, len - have_wildcard)
6690 && (have_wildcard || switches[i].part1[len] == '\0'))
6692 switches[i].live_cond |= switch_option;
6693 /* User switch be validated from validate_all_switches.
6694 when the definition is seen from the spec file.
6695 If not defined anywhere, will be rejected. */
6696 if (switches[i].known)
6697 switches[i].validated = true;
6700 p += len;
6702 break;
6704 case '*':
6705 if (soft_matched_part)
6707 if (soft_matched_part[0])
6708 do_spec_1 (soft_matched_part, 1, NULL);
6709 /* Only insert a space after the substitution if it is at the
6710 end of the current sequence. So if:
6712 "%{foo=*:bar%*}%{foo=*:one%*two}"
6714 matches -foo=hello then it will produce:
6716 barhello onehellotwo
6718 if (*p == 0 || *p == '}')
6719 do_spec_1 (" ", 0, NULL);
6721 else
6722 /* Catch the case where a spec string contains something like
6723 '%{foo:%*}'. i.e. there is no * in the pattern on the left
6724 hand side of the :. */
6725 error ("spec failure: %<%%*%> has not been initialized by pattern match");
6726 break;
6728 /* Process a string found as the value of a spec given by name.
6729 This feature allows individual machine descriptions
6730 to add and use their own specs. */
6731 case '(':
6733 const char *name = p;
6734 struct spec_list *sl;
6735 int len;
6737 /* The string after the S/P is the name of a spec that is to be
6738 processed. */
6739 while (*p && *p != ')')
6740 p++;
6742 /* See if it's in the list. */
6743 for (len = p - name, sl = specs; sl; sl = sl->next)
6744 if (sl->name_len == len && !strncmp (sl->name, name, len))
6746 name = *(sl->ptr_spec);
6747 #ifdef DEBUG_SPECS
6748 fnotice (stderr, "Processing spec (%s), which is '%s'\n",
6749 sl->name, name);
6750 #endif
6751 break;
6754 if (sl)
6756 value = do_spec_1 (name, 0, NULL);
6757 if (value != 0)
6758 return value;
6761 /* Discard the closing paren. */
6762 if (*p)
6763 p++;
6765 break;
6767 case '"':
6768 /* End a previous argument, if there is one, then issue an
6769 empty argument. */
6770 end_going_arg ();
6771 arg_going = 1;
6772 end_going_arg ();
6773 break;
6775 default:
6776 error ("spec failure: unrecognized spec option %qc", c);
6777 break;
6779 break;
6781 case '\\':
6782 /* Backslash: treat next character as ordinary. */
6783 c = *p++;
6785 /* When adding more cases that previously matched default, make
6786 sure to adjust quote_spec_char_p as well. */
6788 /* Fall through. */
6789 default:
6790 /* Ordinary character: put it into the current argument. */
6791 obstack_1grow (&obstack, c);
6792 arg_going = 1;
6795 /* End of string. If we are processing a spec function, we need to
6796 end any pending argument. */
6797 if (processing_spec_function)
6798 end_going_arg ();
6800 return 0;
6803 /* Look up a spec function. */
6805 static const struct spec_function *
6806 lookup_spec_function (const char *name)
6808 const struct spec_function *sf;
6810 for (sf = static_spec_functions; sf->name != NULL; sf++)
6811 if (strcmp (sf->name, name) == 0)
6812 return sf;
6814 return NULL;
6817 /* Evaluate a spec function. */
6819 static const char *
6820 eval_spec_function (const char *func, const char *args,
6821 const char *soft_matched_part)
6823 const struct spec_function *sf;
6824 const char *funcval;
6826 /* Saved spec processing context. */
6827 vec<const_char_p> save_argbuf;
6829 int save_arg_going;
6830 int save_delete_this_arg;
6831 int save_this_is_output_file;
6832 int save_this_is_library_file;
6833 int save_input_from_pipe;
6834 int save_this_is_linker_script;
6835 const char *save_suffix_subst;
6837 int save_growing_size;
6838 void *save_growing_value = NULL;
6840 sf = lookup_spec_function (func);
6841 if (sf == NULL)
6842 fatal_error (input_location, "unknown spec function %qs", func);
6844 /* Push the spec processing context. */
6845 save_argbuf = argbuf;
6847 save_arg_going = arg_going;
6848 save_delete_this_arg = delete_this_arg;
6849 save_this_is_output_file = this_is_output_file;
6850 save_this_is_library_file = this_is_library_file;
6851 save_this_is_linker_script = this_is_linker_script;
6852 save_input_from_pipe = input_from_pipe;
6853 save_suffix_subst = suffix_subst;
6855 /* If we have some object growing now, finalize it so the args and function
6856 eval proceed from a cleared context. This is needed to prevent the first
6857 constructed arg from mistakenly including the growing value. We'll push
6858 this value back on the obstack once the function evaluation is done, to
6859 restore a consistent processing context for our caller. This is fine as
6860 the address of growing objects isn't guaranteed to remain stable until
6861 they are finalized, and we expect this situation to be rare enough for
6862 the extra copy not to be an issue. */
6863 save_growing_size = obstack_object_size (&obstack);
6864 if (save_growing_size > 0)
6865 save_growing_value = obstack_finish (&obstack);
6867 /* Create a new spec processing context, and build the function
6868 arguments. */
6870 alloc_args ();
6871 if (do_spec_2 (args, soft_matched_part) < 0)
6872 fatal_error (input_location, "error in arguments to spec function %qs",
6873 func);
6875 /* argbuf_index is an index for the next argument to be inserted, and
6876 so contains the count of the args already inserted. */
6878 funcval = (*sf->func) (argbuf.length (),
6879 argbuf.address ());
6881 /* Pop the spec processing context. */
6882 argbuf.release ();
6883 argbuf = save_argbuf;
6885 arg_going = save_arg_going;
6886 delete_this_arg = save_delete_this_arg;
6887 this_is_output_file = save_this_is_output_file;
6888 this_is_library_file = save_this_is_library_file;
6889 this_is_linker_script = save_this_is_linker_script;
6890 input_from_pipe = save_input_from_pipe;
6891 suffix_subst = save_suffix_subst;
6893 if (save_growing_size > 0)
6894 obstack_grow (&obstack, save_growing_value, save_growing_size);
6896 return funcval;
6899 /* Handle a spec function call of the form:
6901 %:function(args)
6903 ARGS is processed as a spec in a separate context and split into an
6904 argument vector in the normal fashion. The function returns a string
6905 containing a spec which we then process in the caller's context, or
6906 NULL if no processing is required.
6908 If RETVAL_NONNULL is not NULL, then store a bool whether function
6909 returned non-NULL.
6911 SOFT_MATCHED_PART holds the current value of a matched * pattern, which
6912 may be re-expanded with a %* as part of the function arguments. */
6914 static const char *
6915 handle_spec_function (const char *p, bool *retval_nonnull,
6916 const char *soft_matched_part)
6918 char *func, *args;
6919 const char *endp, *funcval;
6920 int count;
6922 processing_spec_function++;
6924 /* Get the function name. */
6925 for (endp = p; *endp != '\0'; endp++)
6927 if (*endp == '(') /* ) */
6928 break;
6929 /* Only allow [A-Za-z0-9], -, and _ in function names. */
6930 if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
6931 fatal_error (input_location, "malformed spec function name");
6933 if (*endp != '(') /* ) */
6934 fatal_error (input_location, "no arguments for spec function");
6935 func = save_string (p, endp - p);
6936 p = ++endp;
6938 /* Get the arguments. */
6939 for (count = 0; *endp != '\0'; endp++)
6941 /* ( */
6942 if (*endp == ')')
6944 if (count == 0)
6945 break;
6946 count--;
6948 else if (*endp == '(') /* ) */
6949 count++;
6951 /* ( */
6952 if (*endp != ')')
6953 fatal_error (input_location, "malformed spec function arguments");
6954 args = save_string (p, endp - p);
6955 p = ++endp;
6957 /* p now points to just past the end of the spec function expression. */
6959 funcval = eval_spec_function (func, args, soft_matched_part);
6960 if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
6961 p = NULL;
6962 if (retval_nonnull)
6963 *retval_nonnull = funcval != NULL;
6965 free (func);
6966 free (args);
6968 processing_spec_function--;
6970 return p;
6973 /* Inline subroutine of handle_braces. Returns true if the current
6974 input suffix matches the atom bracketed by ATOM and END_ATOM. */
6975 static inline bool
6976 input_suffix_matches (const char *atom, const char *end_atom)
6978 return (input_suffix
6979 && !strncmp (input_suffix, atom, end_atom - atom)
6980 && input_suffix[end_atom - atom] == '\0');
6983 /* Subroutine of handle_braces. Returns true if the current
6984 input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
6985 static bool
6986 input_spec_matches (const char *atom, const char *end_atom)
6988 return (input_file_compiler
6989 && input_file_compiler->suffix
6990 && input_file_compiler->suffix[0] != '\0'
6991 && !strncmp (input_file_compiler->suffix + 1, atom,
6992 end_atom - atom)
6993 && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
6996 /* Subroutine of handle_braces. Returns true if a switch
6997 matching the atom bracketed by ATOM and END_ATOM appeared on the
6998 command line. */
6999 static bool
7000 switch_matches (const char *atom, const char *end_atom, int starred)
7002 int i;
7003 int len = end_atom - atom;
7004 int plen = starred ? len : -1;
7006 for (i = 0; i < n_switches; i++)
7007 if (!strncmp (switches[i].part1, atom, len)
7008 && (starred || switches[i].part1[len] == '\0')
7009 && check_live_switch (i, plen))
7010 return true;
7012 /* Check if a switch with separated form matching the atom.
7013 We check -D and -U switches. */
7014 else if (switches[i].args != 0)
7016 if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
7017 && *switches[i].part1 == atom[0])
7019 if (!strncmp (switches[i].args[0], &atom[1], len - 1)
7020 && (starred || (switches[i].part1[1] == '\0'
7021 && switches[i].args[0][len - 1] == '\0'))
7022 && check_live_switch (i, (starred ? 1 : -1)))
7023 return true;
7027 return false;
7030 /* Inline subroutine of handle_braces. Mark all of the switches which
7031 match ATOM (extends to END_ATOM; STARRED indicates whether there
7032 was a star after the atom) for later processing. */
7033 static inline void
7034 mark_matching_switches (const char *atom, const char *end_atom, int starred)
7036 int i;
7037 int len = end_atom - atom;
7038 int plen = starred ? len : -1;
7040 for (i = 0; i < n_switches; i++)
7041 if (!strncmp (switches[i].part1, atom, len)
7042 && (starred || switches[i].part1[len] == '\0')
7043 && check_live_switch (i, plen))
7044 switches[i].ordering = 1;
7047 /* Inline subroutine of handle_braces. Process all the currently
7048 marked switches through give_switch, and clear the marks. */
7049 static inline void
7050 process_marked_switches (void)
7052 int i;
7054 for (i = 0; i < n_switches; i++)
7055 if (switches[i].ordering == 1)
7057 switches[i].ordering = 0;
7058 give_switch (i, 0);
7062 /* Handle a %{ ... } construct. P points just inside the leading {.
7063 Returns a pointer one past the end of the brace block, or 0
7064 if we call do_spec_1 and that returns -1. */
7066 static const char *
7067 handle_braces (const char *p)
7069 const char *atom, *end_atom;
7070 const char *d_atom = NULL, *d_end_atom = NULL;
7071 char *esc_buf = NULL, *d_esc_buf = NULL;
7072 int esc;
7073 const char *orig = p;
7075 bool a_is_suffix;
7076 bool a_is_spectype;
7077 bool a_is_starred;
7078 bool a_is_negated;
7079 bool a_matched;
7081 bool a_must_be_last = false;
7082 bool ordered_set = false;
7083 bool disjunct_set = false;
7084 bool disj_matched = false;
7085 bool disj_starred = true;
7086 bool n_way_choice = false;
7087 bool n_way_matched = false;
7089 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7093 if (a_must_be_last)
7094 goto invalid;
7096 /* Scan one "atom" (S in the description above of %{}, possibly
7097 with '!', '.', '@', ',', or '*' modifiers). */
7098 a_matched = false;
7099 a_is_suffix = false;
7100 a_is_starred = false;
7101 a_is_negated = false;
7102 a_is_spectype = false;
7104 SKIP_WHITE ();
7105 if (*p == '!')
7106 p++, a_is_negated = true;
7108 SKIP_WHITE ();
7109 if (*p == '%' && p[1] == ':')
7111 atom = NULL;
7112 end_atom = NULL;
7113 p = handle_spec_function (p + 2, &a_matched, NULL);
7115 else
7117 if (*p == '.')
7118 p++, a_is_suffix = true;
7119 else if (*p == ',')
7120 p++, a_is_spectype = true;
7122 atom = p;
7123 esc = 0;
7124 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7125 || *p == ',' || *p == '.' || *p == '@' || *p == '\\')
7127 if (*p == '\\')
7129 p++;
7130 if (!*p)
7131 fatal_error (input_location,
7132 "braced spec %qs ends in escape", orig);
7133 esc++;
7135 p++;
7137 end_atom = p;
7139 if (esc)
7141 const char *ap;
7142 char *ep;
7144 if (esc_buf && esc_buf != d_esc_buf)
7145 free (esc_buf);
7146 esc_buf = NULL;
7147 ep = esc_buf = (char *) xmalloc (end_atom - atom - esc + 1);
7148 for (ap = atom; ap != end_atom; ap++, ep++)
7150 if (*ap == '\\')
7151 ap++;
7152 *ep = *ap;
7154 *ep = '\0';
7155 atom = esc_buf;
7156 end_atom = ep;
7159 if (*p == '*')
7160 p++, a_is_starred = 1;
7163 SKIP_WHITE ();
7164 switch (*p)
7166 case '&': case '}':
7167 /* Substitute the switch(es) indicated by the current atom. */
7168 ordered_set = true;
7169 if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
7170 || a_is_spectype || atom == end_atom)
7171 goto invalid;
7173 mark_matching_switches (atom, end_atom, a_is_starred);
7175 if (*p == '}')
7176 process_marked_switches ();
7177 break;
7179 case '|': case ':':
7180 /* Substitute some text if the current atom appears as a switch
7181 or suffix. */
7182 disjunct_set = true;
7183 if (ordered_set)
7184 goto invalid;
7186 if (atom && atom == end_atom)
7188 if (!n_way_choice || disj_matched || *p == '|'
7189 || a_is_negated || a_is_suffix || a_is_spectype
7190 || a_is_starred)
7191 goto invalid;
7193 /* An empty term may appear as the last choice of an
7194 N-way choice set; it means "otherwise". */
7195 a_must_be_last = true;
7196 disj_matched = !n_way_matched;
7197 disj_starred = false;
7199 else
7201 if ((a_is_suffix || a_is_spectype) && a_is_starred)
7202 goto invalid;
7204 if (!a_is_starred)
7205 disj_starred = false;
7207 /* Don't bother testing this atom if we already have a
7208 match. */
7209 if (!disj_matched && !n_way_matched)
7211 if (atom == NULL)
7212 /* a_matched is already set by handle_spec_function. */;
7213 else if (a_is_suffix)
7214 a_matched = input_suffix_matches (atom, end_atom);
7215 else if (a_is_spectype)
7216 a_matched = input_spec_matches (atom, end_atom);
7217 else
7218 a_matched = switch_matches (atom, end_atom, a_is_starred);
7220 if (a_matched != a_is_negated)
7222 disj_matched = true;
7223 d_atom = atom;
7224 d_end_atom = end_atom;
7225 d_esc_buf = esc_buf;
7230 if (*p == ':')
7232 /* Found the body, that is, the text to substitute if the
7233 current disjunction matches. */
7234 p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
7235 disj_matched && !n_way_matched);
7236 if (p == 0)
7237 goto done;
7239 /* If we have an N-way choice, reset state for the next
7240 disjunction. */
7241 if (*p == ';')
7243 n_way_choice = true;
7244 n_way_matched |= disj_matched;
7245 disj_matched = false;
7246 disj_starred = true;
7247 d_atom = d_end_atom = NULL;
7250 break;
7252 default:
7253 goto invalid;
7256 while (*p++ != '}');
7258 done:
7259 if (d_esc_buf && d_esc_buf != esc_buf)
7260 free (d_esc_buf);
7261 if (esc_buf)
7262 free (esc_buf);
7264 return p;
7266 invalid:
7267 fatal_error (input_location, "braced spec %qs is invalid at %qc", orig, *p);
7269 #undef SKIP_WHITE
7272 /* Subroutine of handle_braces. Scan and process a brace substitution body
7273 (X in the description of %{} syntax). P points one past the colon;
7274 ATOM and END_ATOM bracket the first atom which was found to be true
7275 (present) in the current disjunction; STARRED indicates whether all
7276 the atoms in the current disjunction were starred (for syntax validation);
7277 MATCHED indicates whether the disjunction matched or not, and therefore
7278 whether or not the body is to be processed through do_spec_1 or just
7279 skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
7280 returns -1. */
7282 static const char *
7283 process_brace_body (const char *p, const char *atom, const char *end_atom,
7284 int starred, int matched)
7286 const char *body, *end_body;
7287 unsigned int nesting_level;
7288 bool have_subst = false;
7290 /* Locate the closing } or ;, honoring nested braces.
7291 Trim trailing whitespace. */
7292 body = p;
7293 nesting_level = 1;
7294 for (;;)
7296 if (*p == '{')
7297 nesting_level++;
7298 else if (*p == '}')
7300 if (!--nesting_level)
7301 break;
7303 else if (*p == ';' && nesting_level == 1)
7304 break;
7305 else if (*p == '%' && p[1] == '*' && nesting_level == 1)
7306 have_subst = true;
7307 else if (*p == '\0')
7308 goto invalid;
7309 p++;
7312 end_body = p;
7313 while (end_body[-1] == ' ' || end_body[-1] == '\t')
7314 end_body--;
7316 if (have_subst && !starred)
7317 goto invalid;
7319 if (matched)
7321 /* Copy the substitution body to permanent storage and execute it.
7322 If have_subst is false, this is a simple matter of running the
7323 body through do_spec_1... */
7324 char *string = save_string (body, end_body - body);
7325 if (!have_subst)
7327 if (do_spec_1 (string, 0, NULL) < 0)
7329 free (string);
7330 return 0;
7333 else
7335 /* ... but if have_subst is true, we have to process the
7336 body once for each matching switch, with %* set to the
7337 variant part of the switch. */
7338 unsigned int hard_match_len = end_atom - atom;
7339 int i;
7341 for (i = 0; i < n_switches; i++)
7342 if (!strncmp (switches[i].part1, atom, hard_match_len)
7343 && check_live_switch (i, hard_match_len))
7345 if (do_spec_1 (string, 0,
7346 &switches[i].part1[hard_match_len]) < 0)
7348 free (string);
7349 return 0;
7351 /* Pass any arguments this switch has. */
7352 give_switch (i, 1);
7353 suffix_subst = NULL;
7356 free (string);
7359 return p;
7361 invalid:
7362 fatal_error (input_location, "braced spec body %qs is invalid", body);
7365 /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
7366 on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
7367 spec, or -1 if either exact match or %* is used.
7369 A -O switch is obsoleted by a later -O switch. A -f, -g, -m, or -W switch
7370 whose value does not begin with "no-" is obsoleted by the same value
7371 with the "no-", similarly for a switch with the "no-" prefix. */
7373 static int
7374 check_live_switch (int switchnum, int prefix_length)
7376 const char *name = switches[switchnum].part1;
7377 int i;
7379 /* If we already processed this switch and determined if it was
7380 live or not, return our past determination. */
7381 if (switches[switchnum].live_cond != 0)
7382 return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0
7383 && (switches[switchnum].live_cond & SWITCH_FALSE) == 0
7384 && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY)
7385 == 0);
7387 /* In the common case of {<at-most-one-letter>*}, a negating
7388 switch would always match, so ignore that case. We will just
7389 send the conflicting switches to the compiler phase. */
7390 if (prefix_length >= 0 && prefix_length <= 1)
7391 return 1;
7393 /* Now search for duplicate in a manner that depends on the name. */
7394 switch (*name)
7396 case 'O':
7397 for (i = switchnum + 1; i < n_switches; i++)
7398 if (switches[i].part1[0] == 'O')
7400 switches[switchnum].validated = true;
7401 switches[switchnum].live_cond = SWITCH_FALSE;
7402 return 0;
7404 break;
7406 case 'W': case 'f': case 'm': case 'g':
7407 if (startswith (name + 1, "no-"))
7409 /* We have Xno-YYY, search for XYYY. */
7410 for (i = switchnum + 1; i < n_switches; i++)
7411 if (switches[i].part1[0] == name[0]
7412 && ! strcmp (&switches[i].part1[1], &name[4]))
7414 /* --specs are validated with the validate_switches mechanism. */
7415 if (switches[switchnum].known)
7416 switches[switchnum].validated = true;
7417 switches[switchnum].live_cond = SWITCH_FALSE;
7418 return 0;
7421 else
7423 /* We have XYYY, search for Xno-YYY. */
7424 for (i = switchnum + 1; i < n_switches; i++)
7425 if (switches[i].part1[0] == name[0]
7426 && switches[i].part1[1] == 'n'
7427 && switches[i].part1[2] == 'o'
7428 && switches[i].part1[3] == '-'
7429 && !strcmp (&switches[i].part1[4], &name[1]))
7431 /* --specs are validated with the validate_switches mechanism. */
7432 if (switches[switchnum].known)
7433 switches[switchnum].validated = true;
7434 switches[switchnum].live_cond = SWITCH_FALSE;
7435 return 0;
7438 break;
7441 /* Otherwise the switch is live. */
7442 switches[switchnum].live_cond |= SWITCH_LIVE;
7443 return 1;
7446 /* Pass a switch to the current accumulating command
7447 in the same form that we received it.
7448 SWITCHNUM identifies the switch; it is an index into
7449 the vector of switches gcc received, which is `switches'.
7450 This cannot fail since it never finishes a command line.
7452 If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
7454 static void
7455 give_switch (int switchnum, int omit_first_word)
7457 if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0)
7458 return;
7460 if (!omit_first_word)
7462 do_spec_1 ("-", 0, NULL);
7463 do_spec_1 (switches[switchnum].part1, 1, NULL);
7466 if (switches[switchnum].args != 0)
7468 const char **p;
7469 for (p = switches[switchnum].args; *p; p++)
7471 const char *arg = *p;
7473 do_spec_1 (" ", 0, NULL);
7474 if (suffix_subst)
7476 unsigned length = strlen (arg);
7477 int dot = 0;
7479 while (length-- && !IS_DIR_SEPARATOR (arg[length]))
7480 if (arg[length] == '.')
7482 (CONST_CAST (char *, arg))[length] = 0;
7483 dot = 1;
7484 break;
7486 do_spec_1 (arg, 1, NULL);
7487 if (dot)
7488 (CONST_CAST (char *, arg))[length] = '.';
7489 do_spec_1 (suffix_subst, 1, NULL);
7491 else
7492 do_spec_1 (arg, 1, NULL);
7496 do_spec_1 (" ", 0, NULL);
7497 switches[switchnum].validated = true;
7500 /* Print GCC configuration (e.g. version, thread model, target,
7501 configuration_arguments) to a given FILE. */
7503 static void
7504 print_configuration (FILE *file)
7506 int n;
7507 const char *thrmod;
7509 fnotice (file, "Target: %s\n", spec_machine);
7510 fnotice (file, "Configured with: %s\n", configuration_arguments);
7512 #ifdef THREAD_MODEL_SPEC
7513 /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
7514 but there's no point in doing all this processing just to get
7515 thread_model back. */
7516 obstack_init (&obstack);
7517 do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
7518 obstack_1grow (&obstack, '\0');
7519 thrmod = XOBFINISH (&obstack, const char *);
7520 #else
7521 thrmod = thread_model;
7522 #endif
7524 fnotice (file, "Thread model: %s\n", thrmod);
7525 fnotice (file, "Supported LTO compression algorithms: zlib");
7526 #ifdef HAVE_ZSTD_H
7527 fnotice (file, " zstd");
7528 #endif
7529 fnotice (file, "\n");
7531 /* compiler_version is truncated at the first space when initialized
7532 from version string, so truncate version_string at the first space
7533 before comparing. */
7534 for (n = 0; version_string[n]; n++)
7535 if (version_string[n] == ' ')
7536 break;
7538 if (! strncmp (version_string, compiler_version, n)
7539 && compiler_version[n] == 0)
7540 fnotice (file, "gcc version %s %s\n", version_string,
7541 pkgversion_string);
7542 else
7543 fnotice (file, "gcc driver version %s %sexecuting gcc version %s\n",
7544 version_string, pkgversion_string, compiler_version);
7548 #define RETRY_ICE_ATTEMPTS 3
7550 /* Returns true if FILE1 and FILE2 contain equivalent data, 0 otherwise. */
7552 static bool
7553 files_equal_p (char *file1, char *file2)
7555 struct stat st1, st2;
7556 off_t n, len;
7557 int fd1, fd2;
7558 const int bufsize = 8192;
7559 char *buf = XNEWVEC (char, bufsize);
7561 fd1 = open (file1, O_RDONLY);
7562 fd2 = open (file2, O_RDONLY);
7564 if (fd1 < 0 || fd2 < 0)
7565 goto error;
7567 if (fstat (fd1, &st1) < 0 || fstat (fd2, &st2) < 0)
7568 goto error;
7570 if (st1.st_size != st2.st_size)
7571 goto error;
7573 for (n = st1.st_size; n; n -= len)
7575 len = n;
7576 if ((int) len > bufsize / 2)
7577 len = bufsize / 2;
7579 if (read (fd1, buf, len) != (int) len
7580 || read (fd2, buf + bufsize / 2, len) != (int) len)
7582 goto error;
7585 if (memcmp (buf, buf + bufsize / 2, len) != 0)
7586 goto error;
7589 free (buf);
7590 close (fd1);
7591 close (fd2);
7593 return 1;
7595 error:
7596 free (buf);
7597 close (fd1);
7598 close (fd2);
7599 return 0;
7602 /* Check that compiler's output doesn't differ across runs.
7603 TEMP_STDOUT_FILES and TEMP_STDERR_FILES are arrays of files, containing
7604 stdout and stderr for each compiler run. Return true if all of
7605 TEMP_STDOUT_FILES and TEMP_STDERR_FILES are equivalent. */
7607 static bool
7608 check_repro (char **temp_stdout_files, char **temp_stderr_files)
7610 int i;
7611 for (i = 0; i < RETRY_ICE_ATTEMPTS - 2; ++i)
7613 if (!files_equal_p (temp_stdout_files[i], temp_stdout_files[i + 1])
7614 || !files_equal_p (temp_stderr_files[i], temp_stderr_files[i + 1]))
7616 fnotice (stderr, "The bug is not reproducible, so it is"
7617 " likely a hardware or OS problem.\n");
7618 break;
7621 return i == RETRY_ICE_ATTEMPTS - 2;
7624 enum attempt_status {
7625 ATTEMPT_STATUS_FAIL_TO_RUN,
7626 ATTEMPT_STATUS_SUCCESS,
7627 ATTEMPT_STATUS_ICE
7631 /* Run compiler with arguments NEW_ARGV to reproduce the ICE, storing stdout
7632 to OUT_TEMP and stderr to ERR_TEMP. If APPEND is TRUE, append to OUT_TEMP
7633 and ERR_TEMP instead of truncating. If EMIT_SYSTEM_INFO is TRUE, also write
7634 GCC configuration into to ERR_TEMP. Return ATTEMPT_STATUS_FAIL_TO_RUN if
7635 compiler failed to run, ATTEMPT_STATUS_ICE if compiled ICE-ed and
7636 ATTEMPT_STATUS_SUCCESS otherwise. */
7638 static enum attempt_status
7639 run_attempt (const char **new_argv, const char *out_temp,
7640 const char *err_temp, int emit_system_info, int append)
7643 if (emit_system_info)
7645 FILE *file_out = fopen (err_temp, "a");
7646 print_configuration (file_out);
7647 fputs ("\n", file_out);
7648 fclose (file_out);
7651 int exit_status;
7652 const char *errmsg;
7653 struct pex_obj *pex;
7654 int err;
7655 int pex_flags = PEX_USE_PIPES | PEX_LAST;
7656 enum attempt_status status = ATTEMPT_STATUS_FAIL_TO_RUN;
7658 if (append)
7659 pex_flags |= PEX_STDOUT_APPEND | PEX_STDERR_APPEND;
7661 pex = pex_init (PEX_USE_PIPES, new_argv[0], NULL);
7662 if (!pex)
7663 fatal_error (input_location, "%<pex_init%> failed: %m");
7665 errmsg = pex_run (pex, pex_flags, new_argv[0],
7666 CONST_CAST2 (char *const *, const char **, &new_argv[1]),
7667 out_temp, err_temp, &err);
7668 if (errmsg != NULL)
7670 errno = err;
7671 fatal_error (input_location,
7672 err ? G_ ("cannot execute %qs: %s: %m")
7673 : G_ ("cannot execute %qs: %s"),
7674 new_argv[0], errmsg);
7677 if (!pex_get_status (pex, 1, &exit_status))
7678 goto out;
7680 switch (WEXITSTATUS (exit_status))
7682 case ICE_EXIT_CODE:
7683 status = ATTEMPT_STATUS_ICE;
7684 break;
7686 case SUCCESS_EXIT_CODE:
7687 status = ATTEMPT_STATUS_SUCCESS;
7688 break;
7690 default:
7694 out:
7695 pex_free (pex);
7696 return status;
7699 /* This routine reads lines from IN file, adds C++ style comments
7700 at the begining of each line and writes result into OUT. */
7702 static void
7703 insert_comments (const char *file_in, const char *file_out)
7705 FILE *in = fopen (file_in, "rb");
7706 FILE *out = fopen (file_out, "wb");
7707 char line[256];
7709 bool add_comment = true;
7710 while (fgets (line, sizeof (line), in))
7712 if (add_comment)
7713 fputs ("// ", out);
7714 fputs (line, out);
7715 add_comment = strchr (line, '\n') != NULL;
7718 fclose (in);
7719 fclose (out);
7722 /* This routine adds preprocessed source code into the given ERR_FILE.
7723 To do this, it adds "-E" to NEW_ARGV and execute RUN_ATTEMPT routine to
7724 add information in report file. RUN_ATTEMPT should return
7725 ATTEMPT_STATUS_SUCCESS, in other case we cannot generate the report. */
7727 static void
7728 do_report_bug (const char **new_argv, const int nargs,
7729 char **out_file, char **err_file)
7731 int i, status;
7732 int fd = open (*out_file, O_RDWR | O_APPEND);
7733 if (fd < 0)
7734 return;
7735 write (fd, "\n//", 3);
7736 for (i = 0; i < nargs; i++)
7738 write (fd, " ", 1);
7739 write (fd, new_argv[i], strlen (new_argv[i]));
7741 write (fd, "\n\n", 2);
7742 close (fd);
7743 new_argv[nargs] = "-E";
7744 new_argv[nargs + 1] = NULL;
7746 status = run_attempt (new_argv, *out_file, *err_file, 0, 1);
7748 if (status == ATTEMPT_STATUS_SUCCESS)
7750 fnotice (stderr, "Preprocessed source stored into %s file,"
7751 " please attach this to your bugreport.\n", *out_file);
7752 /* Make sure it is not deleted. */
7753 free (*out_file);
7754 *out_file = NULL;
7758 /* Try to reproduce ICE. If bug is reproducible, generate report .err file
7759 containing GCC configuration, backtrace, compiler's command line options
7760 and preprocessed source code. */
7762 static void
7763 try_generate_repro (const char **argv)
7765 int i, nargs, out_arg = -1, quiet = 0, attempt;
7766 const char **new_argv;
7767 char *temp_files[RETRY_ICE_ATTEMPTS * 2];
7768 char **temp_stdout_files = &temp_files[0];
7769 char **temp_stderr_files = &temp_files[RETRY_ICE_ATTEMPTS];
7771 if (gcc_input_filename == NULL || ! strcmp (gcc_input_filename, "-"))
7772 return;
7774 for (nargs = 0; argv[nargs] != NULL; ++nargs)
7775 /* Only retry compiler ICEs, not preprocessor ones. */
7776 if (! strcmp (argv[nargs], "-E"))
7777 return;
7778 else if (argv[nargs][0] == '-' && argv[nargs][1] == 'o')
7780 if (out_arg == -1)
7781 out_arg = nargs;
7782 else
7783 return;
7785 /* If the compiler is going to output any time information,
7786 it might varry between invocations. */
7787 else if (! strcmp (argv[nargs], "-quiet"))
7788 quiet = 1;
7789 else if (! strcmp (argv[nargs], "-ftime-report"))
7790 return;
7792 if (out_arg == -1 || !quiet)
7793 return;
7795 memset (temp_files, '\0', sizeof (temp_files));
7796 new_argv = XALLOCAVEC (const char *, nargs + 4);
7797 memcpy (new_argv, argv, (nargs + 1) * sizeof (const char *));
7798 new_argv[nargs++] = "-frandom-seed=0";
7799 new_argv[nargs++] = "-fdump-noaddr";
7800 new_argv[nargs] = NULL;
7801 if (new_argv[out_arg][2] == '\0')
7802 new_argv[out_arg + 1] = "-";
7803 else
7804 new_argv[out_arg] = "-o-";
7806 int status;
7807 for (attempt = 0; attempt < RETRY_ICE_ATTEMPTS; ++attempt)
7809 int emit_system_info = 0;
7810 int append = 0;
7811 temp_stdout_files[attempt] = make_temp_file (".out");
7812 temp_stderr_files[attempt] = make_temp_file (".err");
7814 if (attempt == RETRY_ICE_ATTEMPTS - 1)
7816 append = 1;
7817 emit_system_info = 1;
7820 status = run_attempt (new_argv, temp_stdout_files[attempt],
7821 temp_stderr_files[attempt], emit_system_info,
7822 append);
7824 if (status != ATTEMPT_STATUS_ICE)
7826 fnotice (stderr, "The bug is not reproducible, so it is"
7827 " likely a hardware or OS problem.\n");
7828 goto out;
7832 if (!check_repro (temp_stdout_files, temp_stderr_files))
7833 goto out;
7836 /* Insert commented out backtrace into report file. */
7837 char **stderr_commented = &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1];
7838 insert_comments (temp_stderr_files[RETRY_ICE_ATTEMPTS - 1],
7839 *stderr_commented);
7841 /* In final attempt we append compiler options and preprocesssed code to last
7842 generated .out file with configuration and backtrace. */
7843 char **err = &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1];
7844 do_report_bug (new_argv, nargs, stderr_commented, err);
7847 out:
7848 for (i = 0; i < RETRY_ICE_ATTEMPTS * 2; i++)
7849 if (temp_files[i])
7851 unlink (temp_stdout_files[i]);
7852 free (temp_stdout_files[i]);
7856 /* Search for a file named NAME trying various prefixes including the
7857 user's -B prefix and some standard ones.
7858 Return the absolute file name found. If nothing is found, return NAME. */
7860 static const char *
7861 find_file (const char *name)
7863 char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
7864 return newname ? newname : name;
7867 /* Determine whether a directory exists. If LINKER, return 0 for
7868 certain fixed names not needed by the linker. */
7870 static int
7871 is_directory (const char *path1, bool linker)
7873 int len1;
7874 char *path;
7875 char *cp;
7876 struct stat st;
7878 /* Ensure the string ends with "/.". The resulting path will be a
7879 directory even if the given path is a symbolic link. */
7880 len1 = strlen (path1);
7881 path = (char *) alloca (3 + len1);
7882 memcpy (path, path1, len1);
7883 cp = path + len1;
7884 if (!IS_DIR_SEPARATOR (cp[-1]))
7885 *cp++ = DIR_SEPARATOR;
7886 *cp++ = '.';
7887 *cp = '\0';
7889 /* Exclude directories that the linker is known to search. */
7890 if (linker
7891 && IS_DIR_SEPARATOR (path[0])
7892 && ((cp - path == 6
7893 && filename_ncmp (path + 1, "lib", 3) == 0)
7894 || (cp - path == 10
7895 && filename_ncmp (path + 1, "usr", 3) == 0
7896 && IS_DIR_SEPARATOR (path[4])
7897 && filename_ncmp (path + 5, "lib", 3) == 0)))
7898 return 0;
7900 return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
7903 /* Set up the various global variables to indicate that we're processing
7904 the input file named FILENAME. */
7906 void
7907 set_input (const char *filename)
7909 const char *p;
7911 gcc_input_filename = filename;
7912 input_filename_length = strlen (gcc_input_filename);
7913 input_basename = lbasename (gcc_input_filename);
7915 /* Find a suffix starting with the last period,
7916 and set basename_length to exclude that suffix. */
7917 basename_length = strlen (input_basename);
7918 suffixed_basename_length = basename_length;
7919 p = input_basename + basename_length;
7920 while (p != input_basename && *p != '.')
7921 --p;
7922 if (*p == '.' && p != input_basename)
7924 basename_length = p - input_basename;
7925 input_suffix = p + 1;
7927 else
7928 input_suffix = "";
7930 /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
7931 we will need to do a stat on the gcc_input_filename. The
7932 INPUT_STAT_SET signals that the stat is needed. */
7933 input_stat_set = 0;
7936 /* On fatal signals, delete all the temporary files. */
7938 static void
7939 fatal_signal (int signum)
7941 signal (signum, SIG_DFL);
7942 delete_failure_queue ();
7943 delete_temp_files ();
7944 /* Get the same signal again, this time not handled,
7945 so its normal effect occurs. */
7946 kill (getpid (), signum);
7949 /* Compare the contents of the two files named CMPFILE[0] and
7950 CMPFILE[1]. Return zero if they're identical, nonzero
7951 otherwise. */
7953 static int
7954 compare_files (char *cmpfile[])
7956 int ret = 0;
7957 FILE *temp[2] = { NULL, NULL };
7958 int i;
7960 #if HAVE_MMAP_FILE
7962 size_t length[2];
7963 void *map[2] = { NULL, NULL };
7965 for (i = 0; i < 2; i++)
7967 struct stat st;
7969 if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode))
7971 error ("%s: could not determine length of compare-debug file %s",
7972 gcc_input_filename, cmpfile[i]);
7973 ret = 1;
7974 break;
7977 length[i] = st.st_size;
7980 if (!ret && length[0] != length[1])
7982 error ("%s: %<-fcompare-debug%> failure (length)", gcc_input_filename);
7983 ret = 1;
7986 if (!ret)
7987 for (i = 0; i < 2; i++)
7989 int fd = open (cmpfile[i], O_RDONLY);
7990 if (fd < 0)
7992 error ("%s: could not open compare-debug file %s",
7993 gcc_input_filename, cmpfile[i]);
7994 ret = 1;
7995 break;
7998 map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0);
7999 close (fd);
8001 if (map[i] == (void *) MAP_FAILED)
8003 ret = -1;
8004 break;
8008 if (!ret)
8010 if (memcmp (map[0], map[1], length[0]) != 0)
8012 error ("%s: %<-fcompare-debug%> failure", gcc_input_filename);
8013 ret = 1;
8017 for (i = 0; i < 2; i++)
8018 if (map[i])
8019 munmap ((caddr_t) map[i], length[i]);
8021 if (ret >= 0)
8022 return ret;
8024 ret = 0;
8026 #endif
8028 for (i = 0; i < 2; i++)
8030 temp[i] = fopen (cmpfile[i], "r");
8031 if (!temp[i])
8033 error ("%s: could not open compare-debug file %s",
8034 gcc_input_filename, cmpfile[i]);
8035 ret = 1;
8036 break;
8040 if (!ret && temp[0] && temp[1])
8041 for (;;)
8043 int c0, c1;
8044 c0 = fgetc (temp[0]);
8045 c1 = fgetc (temp[1]);
8047 if (c0 != c1)
8049 error ("%s: %<-fcompare-debug%> failure",
8050 gcc_input_filename);
8051 ret = 1;
8052 break;
8055 if (c0 == EOF)
8056 break;
8059 for (i = 1; i >= 0; i--)
8061 if (temp[i])
8062 fclose (temp[i]);
8065 return ret;
8068 driver::driver (bool can_finalize, bool debug) :
8069 explicit_link_files (NULL),
8070 decoded_options (NULL)
8072 env.init (can_finalize, debug);
8075 driver::~driver ()
8077 XDELETEVEC (explicit_link_files);
8078 XDELETEVEC (decoded_options);
8081 /* driver::main is implemented as a series of driver:: method calls. */
8084 driver::main (int argc, char **argv)
8086 bool early_exit;
8088 set_progname (argv[0]);
8089 expand_at_files (&argc, &argv);
8090 decode_argv (argc, const_cast <const char **> (argv));
8091 global_initializations ();
8092 build_multilib_strings ();
8093 set_up_specs ();
8094 putenv_COLLECT_AS_OPTIONS (assembler_options);
8095 putenv_COLLECT_GCC (argv[0]);
8096 maybe_putenv_COLLECT_LTO_WRAPPER ();
8097 maybe_putenv_OFFLOAD_TARGETS ();
8098 handle_unrecognized_options ();
8100 if (completion)
8102 m_option_proposer.suggest_completion (completion);
8103 return 0;
8106 if (!maybe_print_and_exit ())
8107 return 0;
8109 early_exit = prepare_infiles ();
8110 if (early_exit)
8111 return get_exit_code ();
8113 do_spec_on_infiles ();
8114 maybe_run_linker (argv[0]);
8115 final_actions ();
8116 return get_exit_code ();
8119 /* Locate the final component of argv[0] after any leading path, and set
8120 the program name accordingly. */
8122 void
8123 driver::set_progname (const char *argv0) const
8125 const char *p = argv0 + strlen (argv0);
8126 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
8127 --p;
8128 progname = p;
8130 xmalloc_set_program_name (progname);
8133 /* Expand any @ files within the command-line args,
8134 setting at_file_supplied if any were expanded. */
8136 void
8137 driver::expand_at_files (int *argc, char ***argv) const
8139 char **old_argv = *argv;
8141 expandargv (argc, argv);
8143 /* Determine if any expansions were made. */
8144 if (*argv != old_argv)
8145 at_file_supplied = true;
8148 /* Decode the command-line arguments from argc/argv into the
8149 decoded_options array. */
8151 void
8152 driver::decode_argv (int argc, const char **argv)
8154 init_opts_obstack ();
8155 init_options_struct (&global_options, &global_options_set);
8157 decode_cmdline_options_to_array (argc, argv,
8158 CL_DRIVER,
8159 &decoded_options, &decoded_options_count);
8162 /* Perform various initializations and setup. */
8164 void
8165 driver::global_initializations ()
8167 /* Unlock the stdio streams. */
8168 unlock_std_streams ();
8170 gcc_init_libintl ();
8172 diagnostic_initialize (global_dc, 0);
8173 diagnostic_color_init (global_dc);
8174 diagnostic_urls_init (global_dc);
8176 #ifdef GCC_DRIVER_HOST_INITIALIZATION
8177 /* Perform host dependent initialization when needed. */
8178 GCC_DRIVER_HOST_INITIALIZATION;
8179 #endif
8181 if (atexit (delete_temp_files) != 0)
8182 fatal_error (input_location, "atexit failed");
8184 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
8185 signal (SIGINT, fatal_signal);
8186 #ifdef SIGHUP
8187 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
8188 signal (SIGHUP, fatal_signal);
8189 #endif
8190 if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
8191 signal (SIGTERM, fatal_signal);
8192 #ifdef SIGPIPE
8193 if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
8194 signal (SIGPIPE, fatal_signal);
8195 #endif
8196 #ifdef SIGCHLD
8197 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
8198 receive the signal. A different setting is inheritable */
8199 signal (SIGCHLD, SIG_DFL);
8200 #endif
8202 /* Parsing and gimplification sometimes need quite large stack.
8203 Increase stack size limits if possible. */
8204 stack_limit_increase (64 * 1024 * 1024);
8206 /* Allocate the argument vector. */
8207 alloc_args ();
8209 obstack_init (&obstack);
8212 /* Build multilib_select, et. al from the separate lines that make up each
8213 multilib selection. */
8215 void
8216 driver::build_multilib_strings () const
8219 const char *p;
8220 const char *const *q = multilib_raw;
8221 int need_space;
8223 obstack_init (&multilib_obstack);
8224 while ((p = *q++) != (char *) 0)
8225 obstack_grow (&multilib_obstack, p, strlen (p));
8227 obstack_1grow (&multilib_obstack, 0);
8228 multilib_select = XOBFINISH (&multilib_obstack, const char *);
8230 q = multilib_matches_raw;
8231 while ((p = *q++) != (char *) 0)
8232 obstack_grow (&multilib_obstack, p, strlen (p));
8234 obstack_1grow (&multilib_obstack, 0);
8235 multilib_matches = XOBFINISH (&multilib_obstack, const char *);
8237 q = multilib_exclusions_raw;
8238 while ((p = *q++) != (char *) 0)
8239 obstack_grow (&multilib_obstack, p, strlen (p));
8241 obstack_1grow (&multilib_obstack, 0);
8242 multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
8244 q = multilib_reuse_raw;
8245 while ((p = *q++) != (char *) 0)
8246 obstack_grow (&multilib_obstack, p, strlen (p));
8248 obstack_1grow (&multilib_obstack, 0);
8249 multilib_reuse = XOBFINISH (&multilib_obstack, const char *);
8251 need_space = FALSE;
8252 for (size_t i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
8254 if (need_space)
8255 obstack_1grow (&multilib_obstack, ' ');
8256 obstack_grow (&multilib_obstack,
8257 multilib_defaults_raw[i],
8258 strlen (multilib_defaults_raw[i]));
8259 need_space = TRUE;
8262 obstack_1grow (&multilib_obstack, 0);
8263 multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
8267 /* Set up the spec-handling machinery. */
8269 void
8270 driver::set_up_specs () const
8272 const char *spec_machine_suffix;
8273 char *specs_file;
8274 size_t i;
8276 #ifdef INIT_ENVIRONMENT
8277 /* Set up any other necessary machine specific environment variables. */
8278 xputenv (INIT_ENVIRONMENT);
8279 #endif
8281 /* Make a table of what switches there are (switches, n_switches).
8282 Make a table of specified input files (infiles, n_infiles).
8283 Decode switches that are handled locally. */
8285 process_command (decoded_options_count, decoded_options);
8287 /* Initialize the vector of specs to just the default.
8288 This means one element containing 0s, as a terminator. */
8290 compilers = XNEWVAR (struct compiler, sizeof default_compilers);
8291 memcpy (compilers, default_compilers, sizeof default_compilers);
8292 n_compilers = n_default_compilers;
8294 /* Read specs from a file if there is one. */
8296 machine_suffix = concat (spec_host_machine, dir_separator_str, spec_version,
8297 accel_dir_suffix, dir_separator_str, NULL);
8298 just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
8300 specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
8301 /* Read the specs file unless it is a default one. */
8302 if (specs_file != 0 && strcmp (specs_file, "specs"))
8303 read_specs (specs_file, true, false);
8304 else
8305 init_spec ();
8307 #ifdef ACCEL_COMPILER
8308 spec_machine_suffix = machine_suffix;
8309 #else
8310 spec_machine_suffix = just_machine_suffix;
8311 #endif
8313 /* We need to check standard_exec_prefix/spec_machine_suffix/specs
8314 for any override of as, ld and libraries. */
8315 specs_file = (char *) alloca (strlen (standard_exec_prefix)
8316 + strlen (spec_machine_suffix) + sizeof ("specs"));
8317 strcpy (specs_file, standard_exec_prefix);
8318 strcat (specs_file, spec_machine_suffix);
8319 strcat (specs_file, "specs");
8320 if (access (specs_file, R_OK) == 0)
8321 read_specs (specs_file, true, false);
8323 /* Process any configure-time defaults specified for the command line
8324 options, via OPTION_DEFAULT_SPECS. */
8325 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
8326 do_option_spec (option_default_specs[i].name,
8327 option_default_specs[i].spec);
8329 /* Process DRIVER_SELF_SPECS, adding any new options to the end
8330 of the command line. */
8332 for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
8333 do_self_spec (driver_self_specs[i]);
8335 /* If not cross-compiling, look for executables in the standard
8336 places. */
8337 if (*cross_compile == '0')
8339 if (*md_exec_prefix)
8341 add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
8342 PREFIX_PRIORITY_LAST, 0, 0);
8346 /* Process sysroot_suffix_spec. */
8347 if (*sysroot_suffix_spec != 0
8348 && !no_sysroot_suffix
8349 && do_spec_2 (sysroot_suffix_spec, NULL) == 0)
8351 if (argbuf.length () > 1)
8352 error ("spec failure: more than one argument to "
8353 "%<SYSROOT_SUFFIX_SPEC%>");
8354 else if (argbuf.length () == 1)
8355 target_sysroot_suffix = xstrdup (argbuf.last ());
8358 #ifdef HAVE_LD_SYSROOT
8359 /* Pass the --sysroot option to the linker, if it supports that. If
8360 there is a sysroot_suffix_spec, it has already been processed by
8361 this point, so target_system_root really is the system root we
8362 should be using. */
8363 if (target_system_root)
8365 obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
8366 obstack_grow0 (&obstack, link_spec, strlen (link_spec));
8367 set_spec ("link", XOBFINISH (&obstack, const char *), false);
8369 #endif
8371 /* Process sysroot_hdrs_suffix_spec. */
8372 if (*sysroot_hdrs_suffix_spec != 0
8373 && !no_sysroot_suffix
8374 && do_spec_2 (sysroot_hdrs_suffix_spec, NULL) == 0)
8376 if (argbuf.length () > 1)
8377 error ("spec failure: more than one argument "
8378 "to %<SYSROOT_HEADERS_SUFFIX_SPEC%>");
8379 else if (argbuf.length () == 1)
8380 target_sysroot_hdrs_suffix = xstrdup (argbuf.last ());
8383 /* Look for startfiles in the standard places. */
8384 if (*startfile_prefix_spec != 0
8385 && do_spec_2 (startfile_prefix_spec, NULL) == 0
8386 && do_spec_1 (" ", 0, NULL) == 0)
8388 for (const char *arg : argbuf)
8389 add_sysrooted_prefix (&startfile_prefixes, arg, "BINUTILS",
8390 PREFIX_PRIORITY_LAST, 0, 1);
8392 /* We should eventually get rid of all these and stick to
8393 startfile_prefix_spec exclusively. */
8394 else if (*cross_compile == '0' || target_system_root)
8396 if (*md_startfile_prefix)
8397 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
8398 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8400 if (*md_startfile_prefix_1)
8401 add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
8402 "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8404 /* If standard_startfile_prefix is relative, base it on
8405 standard_exec_prefix. This lets us move the installed tree
8406 as a unit. If GCC_EXEC_PREFIX is defined, base
8407 standard_startfile_prefix on that as well.
8409 If the prefix is relative, only search it for native compilers;
8410 otherwise we will search a directory containing host libraries. */
8411 if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
8412 add_sysrooted_prefix (&startfile_prefixes,
8413 standard_startfile_prefix, "BINUTILS",
8414 PREFIX_PRIORITY_LAST, 0, 1);
8415 else if (*cross_compile == '0')
8417 add_prefix (&startfile_prefixes,
8418 concat (gcc_exec_prefix
8419 ? gcc_exec_prefix : standard_exec_prefix,
8420 machine_suffix,
8421 standard_startfile_prefix, NULL),
8422 NULL, PREFIX_PRIORITY_LAST, 0, 1);
8425 /* Sysrooted prefixes are relocated because target_system_root is
8426 also relocated by gcc_exec_prefix. */
8427 if (*standard_startfile_prefix_1)
8428 add_sysrooted_prefix (&startfile_prefixes,
8429 standard_startfile_prefix_1, "BINUTILS",
8430 PREFIX_PRIORITY_LAST, 0, 1);
8431 if (*standard_startfile_prefix_2)
8432 add_sysrooted_prefix (&startfile_prefixes,
8433 standard_startfile_prefix_2, "BINUTILS",
8434 PREFIX_PRIORITY_LAST, 0, 1);
8437 /* Process any user specified specs in the order given on the command
8438 line. */
8439 for (struct user_specs *uptr = user_specs_head; uptr; uptr = uptr->next)
8441 char *filename = find_a_file (&startfile_prefixes, uptr->filename,
8442 R_OK, true);
8443 read_specs (filename ? filename : uptr->filename, false, true);
8446 /* Process any user self specs. */
8448 struct spec_list *sl;
8449 for (sl = specs; sl; sl = sl->next)
8450 if (sl->name_len == sizeof "self_spec" - 1
8451 && !strcmp (sl->name, "self_spec"))
8452 do_self_spec (*sl->ptr_spec);
8455 if (compare_debug)
8457 enum save_temps save;
8459 if (!compare_debug_second)
8461 n_switches_debug_check[1] = n_switches;
8462 n_switches_alloc_debug_check[1] = n_switches_alloc;
8463 switches_debug_check[1] = XDUPVEC (struct switchstr, switches,
8464 n_switches_alloc);
8466 do_self_spec ("%:compare-debug-self-opt()");
8467 n_switches_debug_check[0] = n_switches;
8468 n_switches_alloc_debug_check[0] = n_switches_alloc;
8469 switches_debug_check[0] = switches;
8471 n_switches = n_switches_debug_check[1];
8472 n_switches_alloc = n_switches_alloc_debug_check[1];
8473 switches = switches_debug_check[1];
8476 /* Avoid crash when computing %j in this early. */
8477 save = save_temps_flag;
8478 save_temps_flag = SAVE_TEMPS_NONE;
8480 compare_debug = -compare_debug;
8481 do_self_spec ("%:compare-debug-self-opt()");
8483 save_temps_flag = save;
8485 if (!compare_debug_second)
8487 n_switches_debug_check[1] = n_switches;
8488 n_switches_alloc_debug_check[1] = n_switches_alloc;
8489 switches_debug_check[1] = switches;
8490 compare_debug = -compare_debug;
8491 n_switches = n_switches_debug_check[0];
8492 n_switches_alloc = n_switches_debug_check[0];
8493 switches = switches_debug_check[0];
8498 /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
8499 if (gcc_exec_prefix)
8500 gcc_exec_prefix = concat (gcc_exec_prefix, spec_host_machine,
8501 dir_separator_str, spec_version,
8502 accel_dir_suffix, dir_separator_str, NULL);
8504 /* Now we have the specs.
8505 Set the `valid' bits for switches that match anything in any spec. */
8507 validate_all_switches ();
8509 /* Now that we have the switches and the specs, set
8510 the subdirectory based on the options. */
8511 set_multilib_dir ();
8514 /* Set up to remember the pathname of gcc and any options
8515 needed for collect. We use argv[0] instead of progname because
8516 we need the complete pathname. */
8518 void
8519 driver::putenv_COLLECT_GCC (const char *argv0) const
8521 obstack_init (&collect_obstack);
8522 obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
8523 obstack_grow (&collect_obstack, argv0, strlen (argv0) + 1);
8524 xputenv (XOBFINISH (&collect_obstack, char *));
8527 /* Set up to remember the pathname of the lto wrapper. */
8529 void
8530 driver::maybe_putenv_COLLECT_LTO_WRAPPER () const
8532 char *lto_wrapper_file;
8534 if (have_c)
8535 lto_wrapper_file = NULL;
8536 else
8537 lto_wrapper_file = find_a_program ("lto-wrapper");
8538 if (lto_wrapper_file)
8540 lto_wrapper_file = convert_white_space (lto_wrapper_file);
8541 set_static_spec_owned (&lto_wrapper_spec, lto_wrapper_file);
8542 obstack_init (&collect_obstack);
8543 obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=",
8544 sizeof ("COLLECT_LTO_WRAPPER=") - 1);
8545 obstack_grow (&collect_obstack, lto_wrapper_spec,
8546 strlen (lto_wrapper_spec) + 1);
8547 xputenv (XOBFINISH (&collect_obstack, char *));
8552 /* Set up to remember the names of offload targets. */
8554 void
8555 driver::maybe_putenv_OFFLOAD_TARGETS () const
8557 if (offload_targets && offload_targets[0] != '\0')
8559 obstack_grow (&collect_obstack, "OFFLOAD_TARGET_NAMES=",
8560 sizeof ("OFFLOAD_TARGET_NAMES=") - 1);
8561 obstack_grow (&collect_obstack, offload_targets,
8562 strlen (offload_targets) + 1);
8563 xputenv (XOBFINISH (&collect_obstack, char *));
8564 #if OFFLOAD_DEFAULTED
8565 if (offload_targets_default)
8566 xputenv ("OFFLOAD_TARGET_DEFAULT=1");
8567 #endif
8570 free (offload_targets);
8571 offload_targets = NULL;
8574 /* Reject switches that no pass was interested in. */
8576 void
8577 driver::handle_unrecognized_options ()
8579 for (size_t i = 0; (int) i < n_switches; i++)
8580 if (! switches[i].validated)
8582 const char *hint = m_option_proposer.suggest_option (switches[i].part1);
8583 if (hint)
8584 error ("unrecognized command-line option %<-%s%>;"
8585 " did you mean %<-%s%>?",
8586 switches[i].part1, hint);
8587 else
8588 error ("unrecognized command-line option %<-%s%>",
8589 switches[i].part1);
8593 /* Handle the various -print-* options, returning 0 if the driver
8594 should exit, or nonzero if the driver should continue. */
8597 driver::maybe_print_and_exit () const
8599 if (print_search_dirs)
8601 printf (_("install: %s%s\n"),
8602 gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
8603 gcc_exec_prefix ? "" : machine_suffix);
8604 printf (_("programs: %s\n"),
8605 build_search_list (&exec_prefixes, "", false, false));
8606 printf (_("libraries: %s\n"),
8607 build_search_list (&startfile_prefixes, "", false, true));
8608 return (0);
8611 if (print_file_name)
8613 printf ("%s\n", find_file (print_file_name));
8614 return (0);
8617 if (print_prog_name)
8619 if (use_ld != NULL && ! strcmp (print_prog_name, "ld"))
8621 /* Append USE_LD to the default linker. */
8622 #ifdef DEFAULT_LINKER
8623 char *ld;
8624 # ifdef HAVE_HOST_EXECUTABLE_SUFFIX
8625 int len = (sizeof (DEFAULT_LINKER)
8626 - sizeof (HOST_EXECUTABLE_SUFFIX));
8627 ld = NULL;
8628 if (len > 0)
8630 char *default_linker = xstrdup (DEFAULT_LINKER);
8631 /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
8632 HOST_EXECUTABLE_SUFFIX. */
8633 if (! strcmp (&default_linker[len], HOST_EXECUTABLE_SUFFIX))
8635 default_linker[len] = '\0';
8636 ld = concat (default_linker, use_ld,
8637 HOST_EXECUTABLE_SUFFIX, NULL);
8640 if (ld == NULL)
8641 # endif
8642 ld = concat (DEFAULT_LINKER, use_ld, NULL);
8643 if (access (ld, X_OK) == 0)
8645 printf ("%s\n", ld);
8646 return (0);
8648 #endif
8649 print_prog_name = concat (print_prog_name, use_ld, NULL);
8651 char *newname = find_a_program (print_prog_name);
8652 printf ("%s\n", (newname ? newname : print_prog_name));
8653 return (0);
8656 if (print_multi_lib)
8658 print_multilib_info ();
8659 return (0);
8662 if (print_multi_directory)
8664 if (multilib_dir == NULL)
8665 printf (".\n");
8666 else
8667 printf ("%s\n", multilib_dir);
8668 return (0);
8671 if (print_multiarch)
8673 if (multiarch_dir == NULL)
8674 printf ("\n");
8675 else
8676 printf ("%s\n", multiarch_dir);
8677 return (0);
8680 if (print_sysroot)
8682 if (target_system_root)
8684 if (target_sysroot_suffix)
8685 printf ("%s%s\n", target_system_root, target_sysroot_suffix);
8686 else
8687 printf ("%s\n", target_system_root);
8689 return (0);
8692 if (print_multi_os_directory)
8694 if (multilib_os_dir == NULL)
8695 printf (".\n");
8696 else
8697 printf ("%s\n", multilib_os_dir);
8698 return (0);
8701 if (print_sysroot_headers_suffix)
8703 if (*sysroot_hdrs_suffix_spec)
8705 printf("%s\n", (target_sysroot_hdrs_suffix
8706 ? target_sysroot_hdrs_suffix
8707 : ""));
8708 return (0);
8710 else
8711 /* The error status indicates that only one set of fixed
8712 headers should be built. */
8713 fatal_error (input_location,
8714 "not configured with sysroot headers suffix");
8717 if (print_help_list)
8719 display_help ();
8721 if (! verbose_flag)
8723 printf (_("\nFor bug reporting instructions, please see:\n"));
8724 printf ("%s.\n", bug_report_url);
8726 return (0);
8729 /* We do not exit here. Instead we have created a fake input file
8730 called 'help-dummy' which needs to be compiled, and we pass this
8731 on the various sub-processes, along with the --help switch.
8732 Ensure their output appears after ours. */
8733 fputc ('\n', stdout);
8734 fflush (stdout);
8737 if (print_version)
8739 printf (_("%s %s%s\n"), progname, pkgversion_string,
8740 version_string);
8741 printf ("Copyright %s 2022 Free Software Foundation, Inc.\n",
8742 _("(C)"));
8743 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
8744 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
8745 stdout);
8746 if (! verbose_flag)
8747 return 0;
8749 /* We do not exit here. We use the same mechanism of --help to print
8750 the version of the sub-processes. */
8751 fputc ('\n', stdout);
8752 fflush (stdout);
8755 if (verbose_flag)
8757 print_configuration (stderr);
8758 if (n_infiles == 0)
8759 return (0);
8762 return 1;
8765 /* Figure out what to do with each input file.
8766 Return true if we need to exit early from "main", false otherwise. */
8768 bool
8769 driver::prepare_infiles ()
8771 size_t i;
8772 int lang_n_infiles = 0;
8774 if (n_infiles == added_libraries)
8775 fatal_error (input_location, "no input files");
8777 if (seen_error ())
8778 /* Early exit needed from main. */
8779 return true;
8781 /* Make a place to record the compiler output file names
8782 that correspond to the input files. */
8784 i = n_infiles;
8785 i += lang_specific_extra_outfiles;
8786 outfiles = XCNEWVEC (const char *, i);
8788 /* Record which files were specified explicitly as link input. */
8790 explicit_link_files = XCNEWVEC (char, n_infiles);
8792 combine_inputs = have_o || flag_wpa;
8794 for (i = 0; (int) i < n_infiles; i++)
8796 const char *name = infiles[i].name;
8797 struct compiler *compiler = lookup_compiler (name,
8798 strlen (name),
8799 infiles[i].language);
8801 if (compiler && !(compiler->combinable))
8802 combine_inputs = false;
8804 if (lang_n_infiles > 0 && compiler != input_file_compiler
8805 && infiles[i].language && infiles[i].language[0] != '*')
8806 infiles[i].incompiler = compiler;
8807 else if (compiler)
8809 lang_n_infiles++;
8810 input_file_compiler = compiler;
8811 infiles[i].incompiler = compiler;
8813 else
8815 /* Since there is no compiler for this input file, assume it is a
8816 linker file. */
8817 explicit_link_files[i] = 1;
8818 infiles[i].incompiler = NULL;
8820 infiles[i].compiled = false;
8821 infiles[i].preprocessed = false;
8824 if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
8825 fatal_error (input_location,
8826 "cannot specify %<-o%> with %<-c%>, %<-S%> or %<-E%> "
8827 "with multiple files");
8829 /* No early exit needed from main; we can continue. */
8830 return false;
8833 /* Run the spec machinery on each input file. */
8835 void
8836 driver::do_spec_on_infiles () const
8838 size_t i;
8840 for (i = 0; (int) i < n_infiles; i++)
8842 int this_file_error = 0;
8844 /* Tell do_spec what to substitute for %i. */
8846 input_file_number = i;
8847 set_input (infiles[i].name);
8849 if (infiles[i].compiled)
8850 continue;
8852 /* Use the same thing in %o, unless cp->spec says otherwise. */
8854 outfiles[i] = gcc_input_filename;
8856 /* Figure out which compiler from the file's suffix. */
8858 input_file_compiler
8859 = lookup_compiler (infiles[i].name, input_filename_length,
8860 infiles[i].language);
8862 if (input_file_compiler)
8864 /* Ok, we found an applicable compiler. Run its spec. */
8866 if (input_file_compiler->spec[0] == '#')
8868 error ("%s: %s compiler not installed on this system",
8869 gcc_input_filename, &input_file_compiler->spec[1]);
8870 this_file_error = 1;
8872 else
8874 int value;
8876 if (compare_debug)
8878 free (debug_check_temp_file[0]);
8879 debug_check_temp_file[0] = NULL;
8881 free (debug_check_temp_file[1]);
8882 debug_check_temp_file[1] = NULL;
8885 value = do_spec (input_file_compiler->spec);
8886 infiles[i].compiled = true;
8887 if (value < 0)
8888 this_file_error = 1;
8889 else if (compare_debug && debug_check_temp_file[0])
8891 if (verbose_flag)
8892 inform (UNKNOWN_LOCATION,
8893 "recompiling with %<-fcompare-debug%>");
8895 compare_debug = -compare_debug;
8896 n_switches = n_switches_debug_check[1];
8897 n_switches_alloc = n_switches_alloc_debug_check[1];
8898 switches = switches_debug_check[1];
8900 value = do_spec (input_file_compiler->spec);
8902 compare_debug = -compare_debug;
8903 n_switches = n_switches_debug_check[0];
8904 n_switches_alloc = n_switches_alloc_debug_check[0];
8905 switches = switches_debug_check[0];
8907 if (value < 0)
8909 error ("during %<-fcompare-debug%> recompilation");
8910 this_file_error = 1;
8913 gcc_assert (debug_check_temp_file[1]
8914 && filename_cmp (debug_check_temp_file[0],
8915 debug_check_temp_file[1]));
8917 if (verbose_flag)
8918 inform (UNKNOWN_LOCATION, "comparing final insns dumps");
8920 if (compare_files (debug_check_temp_file))
8921 this_file_error = 1;
8924 if (compare_debug)
8926 free (debug_check_temp_file[0]);
8927 debug_check_temp_file[0] = NULL;
8929 free (debug_check_temp_file[1]);
8930 debug_check_temp_file[1] = NULL;
8935 /* If this file's name does not contain a recognized suffix,
8936 record it as explicit linker input. */
8938 else
8939 explicit_link_files[i] = 1;
8941 /* Clear the delete-on-failure queue, deleting the files in it
8942 if this compilation failed. */
8944 if (this_file_error)
8946 delete_failure_queue ();
8947 errorcount++;
8949 /* If this compilation succeeded, don't delete those files later. */
8950 clear_failure_queue ();
8953 /* Reset the input file name to the first compile/object file name, for use
8954 with %b in LINK_SPEC. We use the first input file that we can find
8955 a compiler to compile it instead of using infiles.language since for
8956 languages other than C we use aliases that we then lookup later. */
8957 if (n_infiles > 0)
8959 int i;
8961 for (i = 0; i < n_infiles ; i++)
8962 if (infiles[i].incompiler
8963 || (infiles[i].language && infiles[i].language[0] != '*'))
8965 set_input (infiles[i].name);
8966 break;
8970 if (!seen_error ())
8972 /* Make sure INPUT_FILE_NUMBER points to first available open
8973 slot. */
8974 input_file_number = n_infiles;
8975 if (lang_specific_pre_link ())
8976 errorcount++;
8980 /* If we have to run the linker, do it now. */
8982 void
8983 driver::maybe_run_linker (const char *argv0) const
8985 size_t i;
8986 int linker_was_run = 0;
8987 int num_linker_inputs;
8989 /* Determine if there are any linker input files. */
8990 num_linker_inputs = 0;
8991 for (i = 0; (int) i < n_infiles; i++)
8992 if (explicit_link_files[i] || outfiles[i] != NULL)
8993 num_linker_inputs++;
8995 /* Arrange for temporary file names created during linking to take
8996 on names related with the linker output rather than with the
8997 inputs when appropriate. */
8998 if (outbase && *outbase)
9000 if (dumpdir)
9002 char *tofree = dumpdir;
9003 gcc_checking_assert (strlen (dumpdir) == dumpdir_length);
9004 dumpdir = concat (dumpdir, outbase, ".", NULL);
9005 free (tofree);
9007 else
9008 dumpdir = concat (outbase, ".", NULL);
9009 dumpdir_length += strlen (outbase) + 1;
9010 dumpdir_trailing_dash_added = true;
9012 else if (dumpdir_trailing_dash_added)
9014 gcc_assert (dumpdir[dumpdir_length - 1] == '-');
9015 dumpdir[dumpdir_length - 1] = '.';
9018 if (dumpdir_trailing_dash_added)
9020 gcc_assert (dumpdir_length > 0);
9021 gcc_assert (dumpdir[dumpdir_length - 1] == '.');
9022 dumpdir_length--;
9025 free (outbase);
9026 input_basename = outbase = NULL;
9027 outbase_length = suffixed_basename_length = basename_length = 0;
9029 /* Run ld to link all the compiler output files. */
9031 if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2)
9033 int tmp = execution_count;
9035 detect_jobserver ();
9037 if (! have_c)
9039 #if HAVE_LTO_PLUGIN > 0
9040 #if HAVE_LTO_PLUGIN == 2
9041 const char *fno_use_linker_plugin = "fno-use-linker-plugin";
9042 #else
9043 const char *fuse_linker_plugin = "fuse-linker-plugin";
9044 #endif
9045 #endif
9047 /* We'll use ld if we can't find collect2. */
9048 if (! strcmp (linker_name_spec, "collect2"))
9050 char *s = find_a_program ("collect2");
9051 if (s == NULL)
9052 set_static_spec_shared (&linker_name_spec, "ld");
9055 #if HAVE_LTO_PLUGIN > 0
9056 #if HAVE_LTO_PLUGIN == 2
9057 if (!switch_matches (fno_use_linker_plugin,
9058 fno_use_linker_plugin
9059 + strlen (fno_use_linker_plugin), 0))
9060 #else
9061 if (switch_matches (fuse_linker_plugin,
9062 fuse_linker_plugin
9063 + strlen (fuse_linker_plugin), 0))
9064 #endif
9066 char *temp_spec = find_a_file (&exec_prefixes,
9067 LTOPLUGINSONAME, R_OK,
9068 false);
9069 if (!temp_spec)
9070 fatal_error (input_location,
9071 "%<-fuse-linker-plugin%>, but %s not found",
9072 LTOPLUGINSONAME);
9073 linker_plugin_file_spec = convert_white_space (temp_spec);
9075 #endif
9076 set_static_spec_shared (&lto_gcc_spec, argv0);
9079 /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
9080 for collect. */
9081 putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
9082 putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
9084 if (print_subprocess_help == 1)
9086 printf (_("\nLinker options\n==============\n\n"));
9087 printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
9088 " to the linker.\n\n"));
9089 fflush (stdout);
9091 int value = do_spec (link_command_spec);
9092 if (value < 0)
9093 errorcount = 1;
9094 linker_was_run = (tmp != execution_count);
9097 /* If options said don't run linker,
9098 complain about input files to be given to the linker. */
9100 if (! linker_was_run && !seen_error ())
9101 for (i = 0; (int) i < n_infiles; i++)
9102 if (explicit_link_files[i]
9103 && !(infiles[i].language && infiles[i].language[0] == '*'))
9105 warning (0, "%s: linker input file unused because linking not done",
9106 outfiles[i]);
9107 if (access (outfiles[i], F_OK) < 0)
9108 /* This is can be an indication the user specifed an errorneous
9109 separated option value, (or used the wrong prefix for an
9110 option). */
9111 error ("%s: linker input file not found: %m", outfiles[i]);
9115 /* The end of "main". */
9117 void
9118 driver::final_actions () const
9120 /* Delete some or all of the temporary files we made. */
9122 if (seen_error ())
9123 delete_failure_queue ();
9124 delete_temp_files ();
9126 if (print_help_list)
9128 printf (("\nFor bug reporting instructions, please see:\n"));
9129 printf ("%s\n", bug_report_url);
9133 /* Detect whether jobserver is active and working. If not drop
9134 --jobserver-auth from MAKEFLAGS. */
9136 void
9137 driver::detect_jobserver () const
9139 jobserver_info jinfo;
9140 if (!jinfo.is_active && !jinfo.skipped_makeflags.empty ())
9141 xputenv (xstrdup (jinfo.skipped_makeflags.c_str ()));
9144 /* Determine what the exit code of the driver should be. */
9147 driver::get_exit_code () const
9149 return (signal_count != 0 ? 2
9150 : seen_error () ? (pass_exit_codes ? greatest_status : 1)
9151 : 0);
9154 /* Find the proper compilation spec for the file name NAME,
9155 whose length is LENGTH. LANGUAGE is the specified language,
9156 or 0 if this file is to be passed to the linker. */
9158 static struct compiler *
9159 lookup_compiler (const char *name, size_t length, const char *language)
9161 struct compiler *cp;
9163 /* If this was specified by the user to be a linker input, indicate that. */
9164 if (language != 0 && language[0] == '*')
9165 return 0;
9167 /* Otherwise, look for the language, if one is spec'd. */
9168 if (language != 0)
9170 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9171 if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
9173 if (name != NULL && strcmp (name, "-") == 0
9174 && (strcmp (cp->suffix, "@c-header") == 0
9175 || strcmp (cp->suffix, "@c++-header") == 0)
9176 && !have_E)
9177 fatal_error (input_location,
9178 "cannot use %<-%> as input filename for a "
9179 "precompiled header");
9181 return cp;
9184 error ("language %s not recognized", language);
9185 return 0;
9188 /* Look for a suffix. */
9189 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9191 if (/* The suffix `-' matches only the file name `-'. */
9192 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9193 || (strlen (cp->suffix) < length
9194 /* See if the suffix matches the end of NAME. */
9195 && !strcmp (cp->suffix,
9196 name + length - strlen (cp->suffix))
9198 break;
9201 #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
9202 /* Look again, but case-insensitively this time. */
9203 if (cp < compilers)
9204 for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9206 if (/* The suffix `-' matches only the file name `-'. */
9207 (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9208 || (strlen (cp->suffix) < length
9209 /* See if the suffix matches the end of NAME. */
9210 && ((!strcmp (cp->suffix,
9211 name + length - strlen (cp->suffix))
9212 || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
9213 && !strcasecmp (cp->suffix,
9214 name + length - strlen (cp->suffix)))
9216 break;
9218 #endif
9220 if (cp >= compilers)
9222 if (cp->spec[0] != '@')
9223 /* A non-alias entry: return it. */
9224 return cp;
9226 /* An alias entry maps a suffix to a language.
9227 Search for the language; pass 0 for NAME and LENGTH
9228 to avoid infinite recursion if language not found. */
9229 return lookup_compiler (NULL, 0, cp->spec + 1);
9231 return 0;
9234 static char *
9235 save_string (const char *s, int len)
9237 char *result = XNEWVEC (char, len + 1);
9239 gcc_checking_assert (strlen (s) >= (unsigned int) len);
9240 memcpy (result, s, len);
9241 result[len] = 0;
9242 return result;
9246 static inline void
9247 validate_switches_from_spec (const char *spec, bool user)
9249 const char *p = spec;
9250 char c;
9251 while ((c = *p++))
9252 if (c == '%'
9253 && (*p == '{'
9254 || *p == '<'
9255 || (*p == 'W' && *++p == '{')
9256 || (*p == '@' && *++p == '{')))
9257 /* We have a switch spec. */
9258 p = validate_switches (p + 1, user, *p == '{');
9261 static void
9262 validate_all_switches (void)
9264 struct compiler *comp;
9265 struct spec_list *spec;
9267 for (comp = compilers; comp->spec; comp++)
9268 validate_switches_from_spec (comp->spec, false);
9270 /* Look through the linked list of specs read from the specs file. */
9271 for (spec = specs; spec; spec = spec->next)
9272 validate_switches_from_spec (*spec->ptr_spec, spec->user_p);
9274 validate_switches_from_spec (link_command_spec, false);
9277 /* Look at the switch-name that comes after START and mark as valid
9278 all supplied switches that match it. If BRACED, handle other
9279 switches after '|' and '&', and specs after ':' until ';' or '}',
9280 going back for more switches after ';'. Without BRACED, handle
9281 only one atom. Return a pointer to whatever follows the handled
9282 items, after the closing brace if BRACED. */
9284 static const char *
9285 validate_switches (const char *start, bool user_spec, bool braced)
9287 const char *p = start;
9288 const char *atom;
9289 size_t len;
9290 int i;
9291 bool suffix = false;
9292 bool starred = false;
9294 #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
9296 next_member:
9297 SKIP_WHITE ();
9299 if (*p == '!')
9300 p++;
9302 SKIP_WHITE ();
9303 if (*p == '.' || *p == ',')
9304 suffix = true, p++;
9306 atom = p;
9307 while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
9308 || *p == ',' || *p == '.' || *p == '@')
9309 p++;
9310 len = p - atom;
9312 if (*p == '*')
9313 starred = true, p++;
9315 SKIP_WHITE ();
9317 if (!suffix)
9319 /* Mark all matching switches as valid. */
9320 for (i = 0; i < n_switches; i++)
9321 if (!strncmp (switches[i].part1, atom, len)
9322 && (starred || switches[i].part1[len] == '\0')
9323 && (switches[i].known || user_spec))
9324 switches[i].validated = true;
9327 if (!braced)
9328 return p;
9330 if (*p) p++;
9331 if (*p && (p[-1] == '|' || p[-1] == '&'))
9332 goto next_member;
9334 if (*p && p[-1] == ':')
9336 while (*p && *p != ';' && *p != '}')
9338 if (*p == '%')
9340 p++;
9341 if (*p == '{' || *p == '<')
9342 p = validate_switches (p+1, user_spec, *p == '{');
9343 else if (p[0] == 'W' && p[1] == '{')
9344 p = validate_switches (p+2, user_spec, true);
9345 else if (p[0] == '@' && p[1] == '{')
9346 p = validate_switches (p+2, user_spec, true);
9348 else
9349 p++;
9352 if (*p) p++;
9353 if (*p && p[-1] == ';')
9354 goto next_member;
9357 return p;
9358 #undef SKIP_WHITE
9361 struct mdswitchstr
9363 const char *str;
9364 int len;
9367 static struct mdswitchstr *mdswitches;
9368 static int n_mdswitches;
9370 /* Check whether a particular argument was used. The first time we
9371 canonicalize the switches to keep only the ones we care about. */
9373 struct used_arg_t
9375 public:
9376 int operator () (const char *p, int len);
9377 void finalize ();
9379 private:
9380 struct mswitchstr
9382 const char *str;
9383 const char *replace;
9384 int len;
9385 int rep_len;
9388 mswitchstr *mswitches;
9389 int n_mswitches;
9393 used_arg_t used_arg;
9396 used_arg_t::operator () (const char *p, int len)
9398 int i, j;
9400 if (!mswitches)
9402 struct mswitchstr *matches;
9403 const char *q;
9404 int cnt = 0;
9406 /* Break multilib_matches into the component strings of string
9407 and replacement string. */
9408 for (q = multilib_matches; *q != '\0'; q++)
9409 if (*q == ';')
9410 cnt++;
9412 matches
9413 = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
9414 i = 0;
9415 q = multilib_matches;
9416 while (*q != '\0')
9418 matches[i].str = q;
9419 while (*q != ' ')
9421 if (*q == '\0')
9423 invalid_matches:
9424 fatal_error (input_location, "multilib spec %qs is invalid",
9425 multilib_matches);
9427 q++;
9429 matches[i].len = q - matches[i].str;
9431 matches[i].replace = ++q;
9432 while (*q != ';' && *q != '\0')
9434 if (*q == ' ')
9435 goto invalid_matches;
9436 q++;
9438 matches[i].rep_len = q - matches[i].replace;
9439 i++;
9440 if (*q == ';')
9441 q++;
9444 /* Now build a list of the replacement string for switches that we care
9445 about. Make sure we allocate at least one entry. This prevents
9446 xmalloc from calling fatal, and prevents us from re-executing this
9447 block of code. */
9448 mswitches
9449 = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
9450 for (i = 0; i < n_switches; i++)
9451 if ((switches[i].live_cond & SWITCH_IGNORE) == 0)
9453 int xlen = strlen (switches[i].part1);
9454 for (j = 0; j < cnt; j++)
9455 if (xlen == matches[j].len
9456 && ! strncmp (switches[i].part1, matches[j].str, xlen))
9458 mswitches[n_mswitches].str = matches[j].replace;
9459 mswitches[n_mswitches].len = matches[j].rep_len;
9460 mswitches[n_mswitches].replace = (char *) 0;
9461 mswitches[n_mswitches].rep_len = 0;
9462 n_mswitches++;
9463 break;
9467 /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
9468 on the command line nor any options mutually incompatible with
9469 them. */
9470 for (i = 0; i < n_mdswitches; i++)
9472 const char *r;
9474 for (q = multilib_options; *q != '\0'; *q && q++)
9476 while (*q == ' ')
9477 q++;
9479 r = q;
9480 while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
9481 || strchr (" /", q[mdswitches[i].len]) == NULL)
9483 while (*q != ' ' && *q != '/' && *q != '\0')
9484 q++;
9485 if (*q != '/')
9486 break;
9487 q++;
9490 if (*q != ' ' && *q != '\0')
9492 while (*r != ' ' && *r != '\0')
9494 q = r;
9495 while (*q != ' ' && *q != '/' && *q != '\0')
9496 q++;
9498 if (used_arg (r, q - r))
9499 break;
9501 if (*q != '/')
9503 mswitches[n_mswitches].str = mdswitches[i].str;
9504 mswitches[n_mswitches].len = mdswitches[i].len;
9505 mswitches[n_mswitches].replace = (char *) 0;
9506 mswitches[n_mswitches].rep_len = 0;
9507 n_mswitches++;
9508 break;
9511 r = q + 1;
9513 break;
9519 for (i = 0; i < n_mswitches; i++)
9520 if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
9521 return 1;
9523 return 0;
9526 void used_arg_t::finalize ()
9528 XDELETEVEC (mswitches);
9529 mswitches = NULL;
9530 n_mswitches = 0;
9534 static int
9535 default_arg (const char *p, int len)
9537 int i;
9539 for (i = 0; i < n_mdswitches; i++)
9540 if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
9541 return 1;
9543 return 0;
9546 /* Work out the subdirectory to use based on the options. The format of
9547 multilib_select is a list of elements. Each element is a subdirectory
9548 name followed by a list of options followed by a semicolon. The format
9549 of multilib_exclusions is the same, but without the preceding
9550 directory. First gcc will check the exclusions, if none of the options
9551 beginning with an exclamation point are present, and all of the other
9552 options are present, then we will ignore this completely. Passing
9553 that, gcc will consider each multilib_select in turn using the same
9554 rules for matching the options. If a match is found, that subdirectory
9555 will be used.
9556 A subdirectory name is optionally followed by a colon and the corresponding
9557 multiarch name. */
9559 static void
9560 set_multilib_dir (void)
9562 const char *p;
9563 unsigned int this_path_len;
9564 const char *this_path, *this_arg;
9565 const char *start, *end;
9566 int not_arg;
9567 int ok, ndfltok, first;
9569 n_mdswitches = 0;
9570 start = multilib_defaults;
9571 while (*start == ' ' || *start == '\t')
9572 start++;
9573 while (*start != '\0')
9575 n_mdswitches++;
9576 while (*start != ' ' && *start != '\t' && *start != '\0')
9577 start++;
9578 while (*start == ' ' || *start == '\t')
9579 start++;
9582 if (n_mdswitches)
9584 int i = 0;
9586 mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
9587 for (start = multilib_defaults; *start != '\0'; start = end + 1)
9589 while (*start == ' ' || *start == '\t')
9590 start++;
9592 if (*start == '\0')
9593 break;
9595 for (end = start + 1;
9596 *end != ' ' && *end != '\t' && *end != '\0'; end++)
9599 obstack_grow (&multilib_obstack, start, end - start);
9600 obstack_1grow (&multilib_obstack, 0);
9601 mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
9602 mdswitches[i++].len = end - start;
9604 if (*end == '\0')
9605 break;
9609 p = multilib_exclusions;
9610 while (*p != '\0')
9612 /* Ignore newlines. */
9613 if (*p == '\n')
9615 ++p;
9616 continue;
9619 /* Check the arguments. */
9620 ok = 1;
9621 while (*p != ';')
9623 if (*p == '\0')
9625 invalid_exclusions:
9626 fatal_error (input_location, "multilib exclusions %qs is invalid",
9627 multilib_exclusions);
9630 if (! ok)
9632 ++p;
9633 continue;
9636 this_arg = p;
9637 while (*p != ' ' && *p != ';')
9639 if (*p == '\0')
9640 goto invalid_exclusions;
9641 ++p;
9644 if (*this_arg != '!')
9645 not_arg = 0;
9646 else
9648 not_arg = 1;
9649 ++this_arg;
9652 ok = used_arg (this_arg, p - this_arg);
9653 if (not_arg)
9654 ok = ! ok;
9656 if (*p == ' ')
9657 ++p;
9660 if (ok)
9661 return;
9663 ++p;
9666 first = 1;
9667 p = multilib_select;
9669 /* Append multilib reuse rules if any. With those rules, we can reuse
9670 one multilib for certain different options sets. */
9671 if (strlen (multilib_reuse) > 0)
9672 p = concat (p, multilib_reuse, NULL);
9674 while (*p != '\0')
9676 /* Ignore newlines. */
9677 if (*p == '\n')
9679 ++p;
9680 continue;
9683 /* Get the initial path. */
9684 this_path = p;
9685 while (*p != ' ')
9687 if (*p == '\0')
9689 invalid_select:
9690 fatal_error (input_location, "multilib select %qs %qs is invalid",
9691 multilib_select, multilib_reuse);
9693 ++p;
9695 this_path_len = p - this_path;
9697 /* Check the arguments. */
9698 ok = 1;
9699 ndfltok = 1;
9700 ++p;
9701 while (*p != ';')
9703 if (*p == '\0')
9704 goto invalid_select;
9706 if (! ok)
9708 ++p;
9709 continue;
9712 this_arg = p;
9713 while (*p != ' ' && *p != ';')
9715 if (*p == '\0')
9716 goto invalid_select;
9717 ++p;
9720 if (*this_arg != '!')
9721 not_arg = 0;
9722 else
9724 not_arg = 1;
9725 ++this_arg;
9728 /* If this is a default argument, we can just ignore it.
9729 This is true even if this_arg begins with '!'. Beginning
9730 with '!' does not mean that this argument is necessarily
9731 inappropriate for this library: it merely means that
9732 there is a more specific library which uses this
9733 argument. If this argument is a default, we need not
9734 consider that more specific library. */
9735 ok = used_arg (this_arg, p - this_arg);
9736 if (not_arg)
9737 ok = ! ok;
9739 if (! ok)
9740 ndfltok = 0;
9742 if (default_arg (this_arg, p - this_arg))
9743 ok = 1;
9745 if (*p == ' ')
9746 ++p;
9749 if (ok && first)
9751 if (this_path_len != 1
9752 || this_path[0] != '.')
9754 char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
9755 char *q;
9757 strncpy (new_multilib_dir, this_path, this_path_len);
9758 new_multilib_dir[this_path_len] = '\0';
9759 q = strchr (new_multilib_dir, ':');
9760 if (q != NULL)
9761 *q = '\0';
9762 multilib_dir = new_multilib_dir;
9764 first = 0;
9767 if (ndfltok)
9769 const char *q = this_path, *end = this_path + this_path_len;
9771 while (q < end && *q != ':')
9772 q++;
9773 if (q < end)
9775 const char *q2 = q + 1, *ml_end = end;
9776 char *new_multilib_os_dir;
9778 while (q2 < end && *q2 != ':')
9779 q2++;
9780 if (*q2 == ':')
9781 ml_end = q2;
9782 if (ml_end - q == 1)
9783 multilib_os_dir = xstrdup (".");
9784 else
9786 new_multilib_os_dir = XNEWVEC (char, ml_end - q);
9787 memcpy (new_multilib_os_dir, q + 1, ml_end - q - 1);
9788 new_multilib_os_dir[ml_end - q - 1] = '\0';
9789 multilib_os_dir = new_multilib_os_dir;
9792 if (q2 < end && *q2 == ':')
9794 char *new_multiarch_dir = XNEWVEC (char, end - q2);
9795 memcpy (new_multiarch_dir, q2 + 1, end - q2 - 1);
9796 new_multiarch_dir[end - q2 - 1] = '\0';
9797 multiarch_dir = new_multiarch_dir;
9799 break;
9803 ++p;
9806 multilib_dir =
9807 targetm_common.compute_multilib (
9808 switches,
9809 n_switches,
9810 multilib_dir,
9811 multilib_defaults,
9812 multilib_select,
9813 multilib_matches,
9814 multilib_exclusions,
9815 multilib_reuse);
9817 if (multilib_dir == NULL && multilib_os_dir != NULL
9818 && strcmp (multilib_os_dir, ".") == 0)
9820 free (CONST_CAST (char *, multilib_os_dir));
9821 multilib_os_dir = NULL;
9823 else if (multilib_dir != NULL && multilib_os_dir == NULL)
9824 multilib_os_dir = multilib_dir;
9827 /* Print out the multiple library subdirectory selection
9828 information. This prints out a series of lines. Each line looks
9829 like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
9830 required. Only the desired options are printed out, the negative
9831 matches. The options are print without a leading dash. There are
9832 no spaces to make it easy to use the information in the shell.
9833 Each subdirectory is printed only once. This assumes the ordering
9834 generated by the genmultilib script. Also, we leave out ones that match
9835 the exclusions. */
9837 static void
9838 print_multilib_info (void)
9840 const char *p = multilib_select;
9841 const char *last_path = 0, *this_path;
9842 int skip;
9843 int not_arg;
9844 unsigned int last_path_len = 0;
9846 while (*p != '\0')
9848 skip = 0;
9849 /* Ignore newlines. */
9850 if (*p == '\n')
9852 ++p;
9853 continue;
9856 /* Get the initial path. */
9857 this_path = p;
9858 while (*p != ' ')
9860 if (*p == '\0')
9862 invalid_select:
9863 fatal_error (input_location,
9864 "multilib select %qs is invalid", multilib_select);
9867 ++p;
9870 /* When --disable-multilib was used but target defines
9871 MULTILIB_OSDIRNAMES, entries starting with .: (and not starting
9872 with .:: for multiarch configurations) are there just to find
9873 multilib_os_dir, so skip them from output. */
9874 if (this_path[0] == '.' && this_path[1] == ':' && this_path[2] != ':')
9875 skip = 1;
9877 /* Check for matches with the multilib_exclusions. We don't bother
9878 with the '!' in either list. If any of the exclusion rules match
9879 all of its options with the select rule, we skip it. */
9881 const char *e = multilib_exclusions;
9882 const char *this_arg;
9884 while (*e != '\0')
9886 int m = 1;
9887 /* Ignore newlines. */
9888 if (*e == '\n')
9890 ++e;
9891 continue;
9894 /* Check the arguments. */
9895 while (*e != ';')
9897 const char *q;
9898 int mp = 0;
9900 if (*e == '\0')
9902 invalid_exclusion:
9903 fatal_error (input_location,
9904 "multilib exclusion %qs is invalid",
9905 multilib_exclusions);
9908 if (! m)
9910 ++e;
9911 continue;
9914 this_arg = e;
9916 while (*e != ' ' && *e != ';')
9918 if (*e == '\0')
9919 goto invalid_exclusion;
9920 ++e;
9923 q = p + 1;
9924 while (*q != ';')
9926 const char *arg;
9927 int len = e - this_arg;
9929 if (*q == '\0')
9930 goto invalid_select;
9932 arg = q;
9934 while (*q != ' ' && *q != ';')
9936 if (*q == '\0')
9937 goto invalid_select;
9938 ++q;
9941 if (! strncmp (arg, this_arg,
9942 (len < q - arg) ? q - arg : len)
9943 || default_arg (this_arg, e - this_arg))
9945 mp = 1;
9946 break;
9949 if (*q == ' ')
9950 ++q;
9953 if (! mp)
9954 m = 0;
9956 if (*e == ' ')
9957 ++e;
9960 if (m)
9962 skip = 1;
9963 break;
9966 if (*e != '\0')
9967 ++e;
9971 if (! skip)
9973 /* If this is a duplicate, skip it. */
9974 skip = (last_path != 0
9975 && (unsigned int) (p - this_path) == last_path_len
9976 && ! filename_ncmp (last_path, this_path, last_path_len));
9978 last_path = this_path;
9979 last_path_len = p - this_path;
9982 /* If all required arguments are default arguments, and no default
9983 arguments appear in the ! argument list, then we can skip it.
9984 We will already have printed a directory identical to this one
9985 which does not require that default argument. */
9986 if (! skip)
9988 const char *q;
9989 bool default_arg_ok = false;
9991 q = p + 1;
9992 while (*q != ';')
9994 const char *arg;
9996 if (*q == '\0')
9997 goto invalid_select;
9999 if (*q == '!')
10001 not_arg = 1;
10002 q++;
10004 else
10005 not_arg = 0;
10006 arg = q;
10008 while (*q != ' ' && *q != ';')
10010 if (*q == '\0')
10011 goto invalid_select;
10012 ++q;
10015 if (default_arg (arg, q - arg))
10017 /* Stop checking if any default arguments appeared in not
10018 list. */
10019 if (not_arg)
10021 default_arg_ok = false;
10022 break;
10025 default_arg_ok = true;
10027 else if (!not_arg)
10029 /* Stop checking if any required argument is not provided by
10030 default arguments. */
10031 default_arg_ok = false;
10032 break;
10035 if (*q == ' ')
10036 ++q;
10039 /* Make sure all default argument is OK for this multi-lib set. */
10040 if (default_arg_ok)
10041 skip = 1;
10042 else
10043 skip = 0;
10046 if (! skip)
10048 const char *p1;
10050 for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
10051 putchar (*p1);
10052 putchar (';');
10055 ++p;
10056 while (*p != ';')
10058 int use_arg;
10060 if (*p == '\0')
10061 goto invalid_select;
10063 if (skip)
10065 ++p;
10066 continue;
10069 use_arg = *p != '!';
10071 if (use_arg)
10072 putchar ('@');
10074 while (*p != ' ' && *p != ';')
10076 if (*p == '\0')
10077 goto invalid_select;
10078 if (use_arg)
10079 putchar (*p);
10080 ++p;
10083 if (*p == ' ')
10084 ++p;
10087 if (! skip)
10089 /* If there are extra options, print them now. */
10090 if (multilib_extra && *multilib_extra)
10092 int print_at = TRUE;
10093 const char *q;
10095 for (q = multilib_extra; *q != '\0'; q++)
10097 if (*q == ' ')
10098 print_at = TRUE;
10099 else
10101 if (print_at)
10102 putchar ('@');
10103 putchar (*q);
10104 print_at = FALSE;
10109 putchar ('\n');
10112 ++p;
10116 /* getenv built-in spec function.
10118 Returns the value of the environment variable given by its first argument,
10119 concatenated with the second argument. If the variable is not defined, a
10120 fatal error is issued unless such undefs are internally allowed, in which
10121 case the variable name prefixed by a '/' is used as the variable value.
10123 The leading '/' allows using the result at a spot where a full path would
10124 normally be expected and when the actual value doesn't really matter since
10125 undef vars are allowed. */
10127 static const char *
10128 getenv_spec_function (int argc, const char **argv)
10130 const char *value;
10131 const char *varname;
10133 char *result;
10134 char *ptr;
10135 size_t len;
10137 if (argc != 2)
10138 return NULL;
10140 varname = argv[0];
10141 value = env.get (varname);
10143 /* If the variable isn't defined and this is allowed, craft our expected
10144 return value. Assume variable names used in specs strings don't contain
10145 any active spec character so don't need escaping. */
10146 if (!value && spec_undefvar_allowed)
10148 result = XNEWVAR (char, strlen(varname) + 2);
10149 sprintf (result, "/%s", varname);
10150 return result;
10153 if (!value)
10154 fatal_error (input_location,
10155 "environment variable %qs not defined", varname);
10157 /* We have to escape every character of the environment variable so
10158 they are not interpreted as active spec characters. A
10159 particularly painful case is when we are reading a variable
10160 holding a windows path complete with \ separators. */
10161 len = strlen (value) * 2 + strlen (argv[1]) + 1;
10162 result = XNEWVAR (char, len);
10163 for (ptr = result; *value; ptr += 2)
10165 ptr[0] = '\\';
10166 ptr[1] = *value++;
10169 strcpy (ptr, argv[1]);
10171 return result;
10174 /* if-exists built-in spec function.
10176 Checks to see if the file specified by the absolute pathname in
10177 ARGS exists. Returns that pathname if found.
10179 The usual use for this function is to check for a library file
10180 (whose name has been expanded with %s). */
10182 static const char *
10183 if_exists_spec_function (int argc, const char **argv)
10185 /* Must have only one argument. */
10186 if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10187 return argv[0];
10189 return NULL;
10192 /* if-exists-else built-in spec function.
10194 This is like if-exists, but takes an additional argument which
10195 is returned if the first argument does not exist. */
10197 static const char *
10198 if_exists_else_spec_function (int argc, const char **argv)
10200 /* Must have exactly two arguments. */
10201 if (argc != 2)
10202 return NULL;
10204 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10205 return argv[0];
10207 return argv[1];
10210 /* if-exists-then-else built-in spec function.
10212 Checks to see if the file specified by the absolute pathname in
10213 the first arg exists. Returns the second arg if so, otherwise returns
10214 the third arg if it is present. */
10216 static const char *
10217 if_exists_then_else_spec_function (int argc, const char **argv)
10220 /* Must have two or three arguments. */
10221 if (argc != 2 && argc != 3)
10222 return NULL;
10224 if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10225 return argv[1];
10227 if (argc == 3)
10228 return argv[2];
10230 return NULL;
10233 /* sanitize built-in spec function.
10235 This returns non-NULL, if sanitizing address, thread or
10236 any of the undefined behavior sanitizers. */
10238 static const char *
10239 sanitize_spec_function (int argc, const char **argv)
10241 if (argc != 1)
10242 return NULL;
10244 if (strcmp (argv[0], "address") == 0)
10245 return (flag_sanitize & SANITIZE_USER_ADDRESS) ? "" : NULL;
10246 if (strcmp (argv[0], "hwaddress") == 0)
10247 return (flag_sanitize & SANITIZE_USER_HWADDRESS) ? "" : NULL;
10248 if (strcmp (argv[0], "kernel-address") == 0)
10249 return (flag_sanitize & SANITIZE_KERNEL_ADDRESS) ? "" : NULL;
10250 if (strcmp (argv[0], "kernel-hwaddress") == 0)
10251 return (flag_sanitize & SANITIZE_KERNEL_HWADDRESS) ? "" : NULL;
10252 if (strcmp (argv[0], "thread") == 0)
10253 return (flag_sanitize & SANITIZE_THREAD) ? "" : NULL;
10254 if (strcmp (argv[0], "undefined") == 0)
10255 return ((flag_sanitize
10256 & ~flag_sanitize_trap
10257 & (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT)))
10258 ? "" : NULL;
10259 if (strcmp (argv[0], "leak") == 0)
10260 return ((flag_sanitize
10261 & (SANITIZE_ADDRESS | SANITIZE_LEAK | SANITIZE_THREAD))
10262 == SANITIZE_LEAK) ? "" : NULL;
10263 return NULL;
10266 /* replace-outfile built-in spec function.
10268 This looks for the first argument in the outfiles array's name and
10269 replaces it with the second argument. */
10271 static const char *
10272 replace_outfile_spec_function (int argc, const char **argv)
10274 int i;
10275 /* Must have exactly two arguments. */
10276 if (argc != 2)
10277 abort ();
10279 for (i = 0; i < n_infiles; i++)
10281 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10282 outfiles[i] = xstrdup (argv[1]);
10284 return NULL;
10287 /* remove-outfile built-in spec function.
10289 * This looks for the first argument in the outfiles array's name and
10290 * removes it. */
10292 static const char *
10293 remove_outfile_spec_function (int argc, const char **argv)
10295 int i;
10296 /* Must have exactly one argument. */
10297 if (argc != 1)
10298 abort ();
10300 for (i = 0; i < n_infiles; i++)
10302 if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10303 outfiles[i] = NULL;
10305 return NULL;
10308 /* Given two version numbers, compares the two numbers.
10309 A version number must match the regular expression
10310 ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
10312 static int
10313 compare_version_strings (const char *v1, const char *v2)
10315 int rresult;
10316 regex_t r;
10318 if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
10319 REG_EXTENDED | REG_NOSUB) != 0)
10320 abort ();
10321 rresult = regexec (&r, v1, 0, NULL, 0);
10322 if (rresult == REG_NOMATCH)
10323 fatal_error (input_location, "invalid version number %qs", v1);
10324 else if (rresult != 0)
10325 abort ();
10326 rresult = regexec (&r, v2, 0, NULL, 0);
10327 if (rresult == REG_NOMATCH)
10328 fatal_error (input_location, "invalid version number %qs", v2);
10329 else if (rresult != 0)
10330 abort ();
10332 return strverscmp (v1, v2);
10336 /* version_compare built-in spec function.
10338 This takes an argument of the following form:
10340 <comparison-op> <arg1> [<arg2>] <switch> <result>
10342 and produces "result" if the comparison evaluates to true,
10343 and nothing if it doesn't.
10345 The supported <comparison-op> values are:
10347 >= true if switch is a later (or same) version than arg1
10348 !> opposite of >=
10349 < true if switch is an earlier version than arg1
10350 !< opposite of <
10351 >< true if switch is arg1 or later, and earlier than arg2
10352 <> true if switch is earlier than arg1 or is arg2 or later
10354 If the switch is not present, the condition is false unless
10355 the first character of the <comparison-op> is '!'.
10357 For example,
10358 %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
10359 adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
10361 static const char *
10362 version_compare_spec_function (int argc, const char **argv)
10364 int comp1, comp2;
10365 size_t switch_len;
10366 const char *switch_value = NULL;
10367 int nargs = 1, i;
10368 bool result;
10370 if (argc < 3)
10371 fatal_error (input_location, "too few arguments to %%:version-compare");
10372 if (argv[0][0] == '\0')
10373 abort ();
10374 if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
10375 nargs = 2;
10376 if (argc != nargs + 3)
10377 fatal_error (input_location, "too many arguments to %%:version-compare");
10379 switch_len = strlen (argv[nargs + 1]);
10380 for (i = 0; i < n_switches; i++)
10381 if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
10382 && check_live_switch (i, switch_len))
10383 switch_value = switches[i].part1 + switch_len;
10385 if (switch_value == NULL)
10386 comp1 = comp2 = -1;
10387 else
10389 comp1 = compare_version_strings (switch_value, argv[1]);
10390 if (nargs == 2)
10391 comp2 = compare_version_strings (switch_value, argv[2]);
10392 else
10393 comp2 = -1; /* This value unused. */
10396 switch (argv[0][0] << 8 | argv[0][1])
10398 case '>' << 8 | '=':
10399 result = comp1 >= 0;
10400 break;
10401 case '!' << 8 | '<':
10402 result = comp1 >= 0 || switch_value == NULL;
10403 break;
10404 case '<' << 8:
10405 result = comp1 < 0;
10406 break;
10407 case '!' << 8 | '>':
10408 result = comp1 < 0 || switch_value == NULL;
10409 break;
10410 case '>' << 8 | '<':
10411 result = comp1 >= 0 && comp2 < 0;
10412 break;
10413 case '<' << 8 | '>':
10414 result = comp1 < 0 || comp2 >= 0;
10415 break;
10417 default:
10418 fatal_error (input_location,
10419 "unknown operator %qs in %%:version-compare", argv[0]);
10421 if (! result)
10422 return NULL;
10424 return argv[nargs + 2];
10427 /* %:include builtin spec function. This differs from %include in that it
10428 can be nested inside a spec, and thus be conditionalized. It takes
10429 one argument, the filename, and looks for it in the startfile path.
10430 The result is always NULL, i.e. an empty expansion. */
10432 static const char *
10433 include_spec_function (int argc, const char **argv)
10435 char *file;
10437 if (argc != 1)
10438 abort ();
10440 file = find_a_file (&startfile_prefixes, argv[0], R_OK, true);
10441 read_specs (file ? file : argv[0], false, false);
10443 return NULL;
10446 /* %:find-file spec function. This function replaces its argument by
10447 the file found through find_file, that is the -print-file-name gcc
10448 program option. */
10449 static const char *
10450 find_file_spec_function (int argc, const char **argv)
10452 const char *file;
10454 if (argc != 1)
10455 abort ();
10457 file = find_file (argv[0]);
10458 return file;
10462 /* %:find-plugindir spec function. This function replaces its argument
10463 by the -iplugindir=<dir> option. `dir' is found through find_file, that
10464 is the -print-file-name gcc program option. */
10465 static const char *
10466 find_plugindir_spec_function (int argc, const char **argv ATTRIBUTE_UNUSED)
10468 const char *option;
10470 if (argc != 0)
10471 abort ();
10473 option = concat ("-iplugindir=", find_file ("plugin"), NULL);
10474 return option;
10478 /* %:print-asm-header spec function. Print a banner to say that the
10479 following output is from the assembler. */
10481 static const char *
10482 print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
10483 const char **argv ATTRIBUTE_UNUSED)
10485 printf (_("Assembler options\n=================\n\n"));
10486 printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
10487 fflush (stdout);
10488 return NULL;
10491 /* Get a random number for -frandom-seed */
10493 static unsigned HOST_WIDE_INT
10494 get_random_number (void)
10496 unsigned HOST_WIDE_INT ret = 0;
10497 int fd;
10499 fd = open ("/dev/urandom", O_RDONLY);
10500 if (fd >= 0)
10502 read (fd, &ret, sizeof (HOST_WIDE_INT));
10503 close (fd);
10504 if (ret)
10505 return ret;
10508 /* Get some more or less random data. */
10509 #ifdef HAVE_GETTIMEOFDAY
10511 struct timeval tv;
10513 gettimeofday (&tv, NULL);
10514 ret = tv.tv_sec * 1000 + tv.tv_usec / 1000;
10516 #else
10518 time_t now = time (NULL);
10520 if (now != (time_t)-1)
10521 ret = (unsigned) now;
10523 #endif
10525 return ret ^ getpid ();
10528 /* %:compare-debug-dump-opt spec function. Save the last argument,
10529 expected to be the last -fdump-final-insns option, or generate a
10530 temporary. */
10532 static const char *
10533 compare_debug_dump_opt_spec_function (int arg,
10534 const char **argv ATTRIBUTE_UNUSED)
10536 char *ret;
10537 char *name;
10538 int which;
10539 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
10541 if (arg != 0)
10542 fatal_error (input_location,
10543 "too many arguments to %%:compare-debug-dump-opt");
10545 do_spec_2 ("%{fdump-final-insns=*:%*}", NULL);
10546 do_spec_1 (" ", 0, NULL);
10548 if (argbuf.length () > 0
10549 && strcmp (argv[argbuf.length () - 1], ".") != 0)
10551 if (!compare_debug)
10552 return NULL;
10554 name = xstrdup (argv[argbuf.length () - 1]);
10555 ret = NULL;
10557 else
10559 if (argbuf.length () > 0)
10560 do_spec_2 ("%B.gkd", NULL);
10561 else if (!compare_debug)
10562 return NULL;
10563 else
10564 do_spec_2 ("%{!save-temps*:%g.gkd}%{save-temps*:%B.gkd}", NULL);
10566 do_spec_1 (" ", 0, NULL);
10568 gcc_assert (argbuf.length () > 0);
10570 name = xstrdup (argbuf.last ());
10572 char *arg = quote_spec (xstrdup (name));
10573 ret = concat ("-fdump-final-insns=", arg, NULL);
10574 free (arg);
10577 which = compare_debug < 0;
10578 debug_check_temp_file[which] = name;
10580 if (!which)
10582 unsigned HOST_WIDE_INT value = get_random_number ();
10584 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
10587 if (*random_seed)
10589 char *tmp = ret;
10590 ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ",
10591 ret, NULL);
10592 free (tmp);
10595 if (which)
10596 *random_seed = 0;
10598 return ret;
10601 /* %:compare-debug-self-opt spec function. Expands to the options
10602 that are to be passed in the second compilation of
10603 compare-debug. */
10605 static const char *
10606 compare_debug_self_opt_spec_function (int arg,
10607 const char **argv ATTRIBUTE_UNUSED)
10609 if (arg != 0)
10610 fatal_error (input_location,
10611 "too many arguments to %%:compare-debug-self-opt");
10613 if (compare_debug >= 0)
10614 return NULL;
10616 return concat ("\
10617 %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
10618 %<fdump-final-insns=* -w -S -o %j \
10619 %{!fcompare-debug-second:-fcompare-debug-second} \
10620 ", compare_debug_opt, NULL);
10623 /* %:pass-through-libs spec function. Finds all -l options and input
10624 file names in the lib spec passed to it, and makes a list of them
10625 prepended with the plugin option to cause them to be passed through
10626 to the final link after all the new object files have been added. */
10628 const char *
10629 pass_through_libs_spec_func (int argc, const char **argv)
10631 char *prepended = xstrdup (" ");
10632 int n;
10633 /* Shlemiel the painter's algorithm. Innately horrible, but at least
10634 we know that there will never be more than a handful of strings to
10635 concat, and it's only once per run, so it's not worth optimising. */
10636 for (n = 0; n < argc; n++)
10638 char *old = prepended;
10639 /* Anything that isn't an option is a full path to an output
10640 file; pass it through if it ends in '.a'. Among options,
10641 pass only -l. */
10642 if (argv[n][0] == '-' && argv[n][1] == 'l')
10644 const char *lopt = argv[n] + 2;
10645 /* Handle both joined and non-joined -l options. If for any
10646 reason there's a trailing -l with no joined or following
10647 arg just discard it. */
10648 if (!*lopt && ++n >= argc)
10649 break;
10650 else if (!*lopt)
10651 lopt = argv[n];
10652 prepended = concat (prepended, "-plugin-opt=-pass-through=-l",
10653 lopt, " ", NULL);
10655 else if (!strcmp (".a", argv[n] + strlen (argv[n]) - 2))
10657 prepended = concat (prepended, "-plugin-opt=-pass-through=",
10658 argv[n], " ", NULL);
10660 if (prepended != old)
10661 free (old);
10663 return prepended;
10666 static bool
10667 not_actual_file_p (const char *name)
10669 return (strcmp (name, "-") == 0
10670 || strcmp (name, HOST_BIT_BUCKET) == 0);
10673 /* %:dumps spec function. Take an optional argument that overrides
10674 the default extension for -dumpbase and -dumpbase-ext.
10675 Return -dumpdir, -dumpbase and -dumpbase-ext, if needed. */
10676 const char *
10677 dumps_spec_func (int argc, const char **argv ATTRIBUTE_UNUSED)
10679 const char *ext = dumpbase_ext;
10680 char *p;
10682 char *args[3] = { NULL, NULL, NULL };
10683 int nargs = 0;
10685 /* Do not compute a default for -dumpbase-ext when -dumpbase was
10686 given explicitly. */
10687 if (dumpbase && *dumpbase && !ext)
10688 ext = "";
10690 if (argc == 1)
10692 /* Do not override the explicitly-specified -dumpbase-ext with
10693 the specs-provided overrider. */
10694 if (!ext)
10695 ext = argv[0];
10697 else if (argc != 0)
10698 fatal_error (input_location, "too many arguments for %%:dumps");
10700 if (dumpdir)
10702 p = quote_spec_arg (xstrdup (dumpdir));
10703 args[nargs++] = concat (" -dumpdir ", p, NULL);
10704 free (p);
10707 if (!ext)
10708 ext = input_basename + basename_length;
10710 /* Use the precomputed outbase, or compute dumpbase from
10711 input_basename, just like %b would. */
10712 char *base;
10714 if (dumpbase && *dumpbase)
10716 base = xstrdup (dumpbase);
10717 p = base + outbase_length;
10718 gcc_checking_assert (strncmp (base, outbase, outbase_length) == 0);
10719 gcc_checking_assert (strcmp (p, ext) == 0);
10721 else if (outbase_length)
10723 base = xstrndup (outbase, outbase_length);
10724 p = NULL;
10726 else
10728 base = xstrndup (input_basename, suffixed_basename_length);
10729 p = base + basename_length;
10732 if (compare_debug < 0 || !p || strcmp (p, ext) != 0)
10734 if (p)
10735 *p = '\0';
10737 const char *gk;
10738 if (compare_debug < 0)
10739 gk = ".gk";
10740 else
10741 gk = "";
10743 p = concat (base, gk, ext, NULL);
10745 free (base);
10746 base = p;
10749 base = quote_spec_arg (base);
10750 args[nargs++] = concat (" -dumpbase ", base, NULL);
10751 free (base);
10753 if (*ext)
10755 p = quote_spec_arg (xstrdup (ext));
10756 args[nargs++] = concat (" -dumpbase-ext ", p, NULL);
10757 free (p);
10760 const char *ret = concat (args[0], args[1], args[2], NULL);
10761 while (nargs > 0)
10762 free (args[--nargs]);
10764 return ret;
10767 /* Returns "" if ARGV[ARGC - 2] is greater than ARGV[ARGC-1].
10768 Otherwise, return NULL. */
10770 static const char *
10771 greater_than_spec_func (int argc, const char **argv)
10773 char *converted;
10775 if (argc == 1)
10776 return NULL;
10778 gcc_assert (argc >= 2);
10780 long arg = strtol (argv[argc - 2], &converted, 10);
10781 gcc_assert (converted != argv[argc - 2]);
10783 long lim = strtol (argv[argc - 1], &converted, 10);
10784 gcc_assert (converted != argv[argc - 1]);
10786 if (arg > lim)
10787 return "";
10789 return NULL;
10792 /* Returns "" if debug_info_level is greater than ARGV[ARGC-1].
10793 Otherwise, return NULL. */
10795 static const char *
10796 debug_level_greater_than_spec_func (int argc, const char **argv)
10798 char *converted;
10800 if (argc != 1)
10801 fatal_error (input_location,
10802 "wrong number of arguments to %%:debug-level-gt");
10804 long arg = strtol (argv[0], &converted, 10);
10805 gcc_assert (converted != argv[0]);
10807 if (debug_info_level > arg)
10808 return "";
10810 return NULL;
10813 /* Returns "" if dwarf_version is greater than ARGV[ARGC-1].
10814 Otherwise, return NULL. */
10816 static const char *
10817 dwarf_version_greater_than_spec_func (int argc, const char **argv)
10819 char *converted;
10821 if (argc != 1)
10822 fatal_error (input_location,
10823 "wrong number of arguments to %%:dwarf-version-gt");
10825 long arg = strtol (argv[0], &converted, 10);
10826 gcc_assert (converted != argv[0]);
10828 if (dwarf_version > arg)
10829 return "";
10831 return NULL;
10834 static void
10835 path_prefix_reset (path_prefix *prefix)
10837 struct prefix_list *iter, *next;
10838 iter = prefix->plist;
10839 while (iter)
10841 next = iter->next;
10842 free (const_cast <char *> (iter->prefix));
10843 XDELETE (iter);
10844 iter = next;
10846 prefix->plist = 0;
10847 prefix->max_len = 0;
10850 /* The function takes 3 arguments: OPTION name, file name and location
10851 where we search for Fortran modules.
10852 When the FILE is found by find_file, return OPTION=path_to_file. */
10854 static const char *
10855 find_fortran_preinclude_file (int argc, const char **argv)
10857 char *result = NULL;
10858 if (argc != 3)
10859 return NULL;
10861 struct path_prefix prefixes = { 0, 0, "preinclude" };
10863 /* Search first for 'finclude' folder location for a header file
10864 installed by the compiler (similar to omp_lib.h). */
10865 add_prefix (&prefixes, argv[2], NULL, 0, 0, 0);
10866 #ifdef TOOL_INCLUDE_DIR
10867 /* Then search: <prefix>/<target>/<include>/finclude */
10868 add_prefix (&prefixes, TOOL_INCLUDE_DIR "/finclude/",
10869 NULL, 0, 0, 0);
10870 #endif
10871 #ifdef NATIVE_SYSTEM_HEADER_DIR
10872 /* Then search: <sysroot>/usr/include/finclude/<multilib> */
10873 add_sysrooted_hdrs_prefix (&prefixes, NATIVE_SYSTEM_HEADER_DIR "/finclude/",
10874 NULL, 0, 0, 0);
10875 #endif
10877 const char *path = find_a_file (&include_prefixes, argv[1], R_OK, false);
10878 if (path != NULL)
10879 result = concat (argv[0], path, NULL);
10880 else
10882 path = find_a_file (&prefixes, argv[1], R_OK, false);
10883 if (path != NULL)
10884 result = concat (argv[0], path, NULL);
10887 path_prefix_reset (&prefixes);
10888 return result;
10891 /* If any character in ORIG fits QUOTE_P (_, P), reallocate the string
10892 so as to precede every one of them with a backslash. Return the
10893 original string or the reallocated one. */
10895 static inline char *
10896 quote_string (char *orig, bool (*quote_p)(char, void *), void *p)
10898 int len, number_of_space = 0;
10900 for (len = 0; orig[len]; len++)
10901 if (quote_p (orig[len], p))
10902 number_of_space++;
10904 if (number_of_space)
10906 char *new_spec = (char *) xmalloc (len + number_of_space + 1);
10907 int j, k;
10908 for (j = 0, k = 0; j <= len; j++, k++)
10910 if (quote_p (orig[j], p))
10911 new_spec[k++] = '\\';
10912 new_spec[k] = orig[j];
10914 free (orig);
10915 return new_spec;
10917 else
10918 return orig;
10921 /* Return true iff C is any of the characters convert_white_space
10922 should quote. */
10924 static inline bool
10925 whitespace_to_convert_p (char c, void *)
10927 return (c == ' ' || c == '\t');
10930 /* Insert backslash before spaces in ORIG (usually a file path), to
10931 avoid being broken by spec parser.
10933 This function is needed as do_spec_1 treats white space (' ' and '\t')
10934 as the end of an argument. But in case of -plugin /usr/gcc install/xxx.so,
10935 the file name should be treated as a single argument rather than being
10936 broken into multiple. Solution is to insert '\\' before the space in a
10937 file name.
10939 This function converts and only converts all occurrence of ' '
10940 to '\\' + ' ' and '\t' to '\\' + '\t'. For example:
10941 "a b" -> "a\\ b"
10942 "a b" -> "a\\ \\ b"
10943 "a\tb" -> "a\\\tb"
10944 "a\\ b" -> "a\\\\ b"
10946 orig: input null-terminating string that was allocated by xalloc. The
10947 memory it points to might be freed in this function. Behavior undefined
10948 if ORIG wasn't xalloced or was freed already at entry.
10950 Return: ORIG if no conversion needed. Otherwise a newly allocated string
10951 that was converted from ORIG. */
10953 static char *
10954 convert_white_space (char *orig)
10956 return quote_string (orig, whitespace_to_convert_p, NULL);
10959 /* Return true iff C matches any of the spec active characters. */
10960 static inline bool
10961 quote_spec_char_p (char c, void *)
10963 switch (c)
10965 case ' ':
10966 case '\t':
10967 case '\n':
10968 case '|':
10969 case '%':
10970 case '\\':
10971 return true;
10973 default:
10974 return false;
10978 /* Like convert_white_space, but deactivate all active spec chars by
10979 quoting them. */
10981 static inline char *
10982 quote_spec (char *orig)
10984 return quote_string (orig, quote_spec_char_p, NULL);
10987 /* Like quote_spec, but also turn an empty string into the spec for an
10988 empty argument. */
10990 static inline char *
10991 quote_spec_arg (char *orig)
10993 if (!*orig)
10995 free (orig);
10996 return xstrdup ("%\"");
10999 return quote_spec (orig);
11002 /* Restore all state within gcc.cc to the initial state, so that the driver
11003 code can be safely re-run in-process.
11005 Many const char * variables are referenced by static specs (see
11006 INIT_STATIC_SPEC above). These variables are restored to their default
11007 values by a simple loop over the static specs.
11009 For other variables, we directly restore them all to their initial
11010 values (often implicitly 0).
11012 Free the various obstacks in this file, along with "opts_obstack"
11013 from opts.cc.
11015 This function also restores any environment variables that were changed. */
11017 void
11018 driver::finalize ()
11020 env.restore ();
11021 diagnostic_finish (global_dc);
11023 is_cpp_driver = 0;
11024 at_file_supplied = 0;
11025 print_help_list = 0;
11026 print_version = 0;
11027 verbose_only_flag = 0;
11028 print_subprocess_help = 0;
11029 use_ld = NULL;
11030 report_times_to_file = NULL;
11031 target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
11032 target_system_root_changed = 0;
11033 target_sysroot_suffix = 0;
11034 target_sysroot_hdrs_suffix = 0;
11035 save_temps_flag = SAVE_TEMPS_NONE;
11036 save_temps_overrides_dumpdir = false;
11037 dumpdir_trailing_dash_added = false;
11038 free (dumpdir);
11039 free (dumpbase);
11040 free (dumpbase_ext);
11041 free (outbase);
11042 dumpdir = dumpbase = dumpbase_ext = outbase = NULL;
11043 dumpdir_length = outbase_length = 0;
11044 spec_machine = DEFAULT_TARGET_MACHINE;
11045 greatest_status = 1;
11047 obstack_free (&obstack, NULL);
11048 obstack_free (&opts_obstack, NULL); /* in opts.cc */
11049 obstack_free (&collect_obstack, NULL);
11051 link_command_spec = LINK_COMMAND_SPEC;
11053 obstack_free (&multilib_obstack, NULL);
11055 user_specs_head = NULL;
11056 user_specs_tail = NULL;
11058 /* Within the "compilers" vec, the fields "suffix" and "spec" were
11059 statically allocated for the default compilers, but dynamically
11060 allocated for additional compilers. Delete them for the latter. */
11061 for (int i = n_default_compilers; i < n_compilers; i++)
11063 free (const_cast <char *> (compilers[i].suffix));
11064 free (const_cast <char *> (compilers[i].spec));
11066 XDELETEVEC (compilers);
11067 compilers = NULL;
11068 n_compilers = 0;
11070 linker_options.truncate (0);
11071 assembler_options.truncate (0);
11072 preprocessor_options.truncate (0);
11074 path_prefix_reset (&exec_prefixes);
11075 path_prefix_reset (&startfile_prefixes);
11076 path_prefix_reset (&include_prefixes);
11078 machine_suffix = 0;
11079 just_machine_suffix = 0;
11080 gcc_exec_prefix = 0;
11081 gcc_libexec_prefix = 0;
11082 set_static_spec_shared (&md_exec_prefix, MD_EXEC_PREFIX);
11083 set_static_spec_shared (&md_startfile_prefix, MD_STARTFILE_PREFIX);
11084 set_static_spec_shared (&md_startfile_prefix_1, MD_STARTFILE_PREFIX_1);
11085 multilib_dir = 0;
11086 multilib_os_dir = 0;
11087 multiarch_dir = 0;
11089 /* Free any specs dynamically-allocated by set_spec.
11090 These will be at the head of the list, before the
11091 statically-allocated ones. */
11092 if (specs)
11094 while (specs != static_specs)
11096 spec_list *next = specs->next;
11097 free (const_cast <char *> (specs->name));
11098 XDELETE (specs);
11099 specs = next;
11101 specs = 0;
11103 for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
11105 spec_list *sl = &static_specs[i];
11106 if (sl->alloc_p)
11108 free (const_cast <char *> (*(sl->ptr_spec)));
11109 sl->alloc_p = false;
11111 *(sl->ptr_spec) = sl->default_ptr;
11113 #ifdef EXTRA_SPECS
11114 extra_specs = NULL;
11115 #endif
11117 processing_spec_function = 0;
11119 clear_args ();
11121 have_c = 0;
11122 have_o = 0;
11124 temp_names = NULL;
11125 execution_count = 0;
11126 signal_count = 0;
11128 temp_filename = NULL;
11129 temp_filename_length = 0;
11130 always_delete_queue = NULL;
11131 failure_delete_queue = NULL;
11133 XDELETEVEC (switches);
11134 switches = NULL;
11135 n_switches = 0;
11136 n_switches_alloc = 0;
11138 compare_debug = 0;
11139 compare_debug_second = 0;
11140 compare_debug_opt = NULL;
11141 for (int i = 0; i < 2; i++)
11143 switches_debug_check[i] = NULL;
11144 n_switches_debug_check[i] = 0;
11145 n_switches_alloc_debug_check[i] = 0;
11146 debug_check_temp_file[i] = NULL;
11149 XDELETEVEC (infiles);
11150 infiles = NULL;
11151 n_infiles = 0;
11152 n_infiles_alloc = 0;
11154 combine_inputs = false;
11155 added_libraries = 0;
11156 XDELETEVEC (outfiles);
11157 outfiles = NULL;
11158 spec_lang = 0;
11159 last_language_n_infiles = 0;
11160 gcc_input_filename = NULL;
11161 input_file_number = 0;
11162 input_filename_length = 0;
11163 basename_length = 0;
11164 suffixed_basename_length = 0;
11165 input_basename = NULL;
11166 input_suffix = NULL;
11167 /* We don't need to purge "input_stat", just to unset "input_stat_set". */
11168 input_stat_set = 0;
11169 input_file_compiler = NULL;
11170 arg_going = 0;
11171 delete_this_arg = 0;
11172 this_is_output_file = 0;
11173 this_is_library_file = 0;
11174 this_is_linker_script = 0;
11175 input_from_pipe = 0;
11176 suffix_subst = NULL;
11178 mdswitches = NULL;
11179 n_mdswitches = 0;
11181 used_arg.finalize ();
11184 /* PR jit/64810.
11185 Targets can provide configure-time default options in
11186 OPTION_DEFAULT_SPECS. The jit needs to access these, but
11187 they are expressed in the spec language.
11189 Run just enough of the driver to be able to expand these
11190 specs, and then call the callback CB on each
11191 such option. The options strings are *without* a leading
11192 '-' character e.g. ("march=x86-64"). Finally, clean up. */
11194 void
11195 driver_get_configure_time_options (void (*cb) (const char *option,
11196 void *user_data),
11197 void *user_data)
11199 size_t i;
11201 obstack_init (&obstack);
11202 init_opts_obstack ();
11203 n_switches = 0;
11205 for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
11206 do_option_spec (option_default_specs[i].name,
11207 option_default_specs[i].spec);
11209 for (i = 0; (int) i < n_switches; i++)
11211 gcc_assert (switches[i].part1);
11212 (*cb) (switches[i].part1, user_data);
11215 obstack_free (&opts_obstack, NULL);
11216 obstack_free (&obstack, NULL);
11217 n_switches = 0;