Branch data Line data Source code
1 : : /* Compiler driver program that can handle many languages.
2 : : Copyright (C) 1987-2024 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it under
7 : : the terms of the GNU General Public License as published by the Free
8 : : Software Foundation; either version 3, or (at your option) any later
9 : : version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 : : for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : /* This program is the user interface to the C compiler and possibly to
21 : : other compilers. It is used because compilation is a complicated procedure
22 : : which involves running several programs and passing temporary files between
23 : : them, forwarding the users switches to those programs selectively,
24 : : and deleting the temporary files at the end.
25 : :
26 : : CC recognizes how to compile each input file by suffixes in the file names.
27 : : Once it knows which kind of compilation to perform, the procedure for
28 : : compilation is specified by a string called a "spec". */
29 : :
30 : : #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 "diagnostic-format.h"
44 : : #include "pretty-print-urlifier.h"
45 : : #include "flags.h"
46 : : #include "opts.h"
47 : : #include "filenames.h"
48 : : #include "spellcheck.h"
49 : : #include "opts-jobserver.h"
50 : : #include "common/common-target.h"
51 : : #include "gcc-urlifier.h"
52 : : #include "opts-diagnostic.h"
53 : :
54 : : #ifndef MATH_LIBRARY
55 : : #define MATH_LIBRARY "m"
56 : : #endif
57 : :
58 : :
59 : : /* Manage the manipulation of env vars.
60 : :
61 : : We poison "getenv" and "putenv", so that all enviroment-handling is
62 : : done through this class. Note that poisoning happens in the
63 : : preprocessor at the identifier level, and doesn't distinguish between
64 : : env.getenv ();
65 : : and
66 : : getenv ();
67 : : Hence we need to use "get" for the accessor method, not "getenv". */
68 : :
69 : : struct env_manager
70 : : {
71 : : public:
72 : : void init (bool can_restore, bool debug);
73 : : const char *get (const char *name);
74 : : void xput (const char *string);
75 : : void restore ();
76 : :
77 : : private:
78 : : bool m_can_restore;
79 : : bool m_debug;
80 : : struct kv
81 : : {
82 : : char *m_key;
83 : : char *m_value;
84 : : };
85 : : vec<kv> m_keys;
86 : :
87 : : };
88 : :
89 : : /* The singleton instance of class env_manager. */
90 : :
91 : : static env_manager env;
92 : :
93 : : /* Initializer for class env_manager.
94 : :
95 : : We can't do this as a constructor since we have a statically
96 : : allocated instance ("env" above). */
97 : :
98 : : void
99 : 290894 : env_manager::init (bool can_restore, bool debug)
100 : : {
101 : 290894 : m_can_restore = can_restore;
102 : 290894 : m_debug = debug;
103 : 290894 : }
104 : :
105 : : /* Get the value of NAME within the environment. Essentially
106 : : a wrapper for ::getenv, but adding logging, and the possibility
107 : : of caching results. */
108 : :
109 : : const char *
110 : 1453573 : env_manager::get (const char *name)
111 : : {
112 : 1453573 : const char *result = ::getenv (name);
113 : 1453573 : if (m_debug)
114 : 0 : fprintf (stderr, "env_manager::getenv (%s) -> %s\n", name, result);
115 : 1453573 : return result;
116 : : }
117 : :
118 : : /* Put the given KEY=VALUE entry STRING into the environment.
119 : : If the env_manager was initialized with CAN_RESTORE set, then
120 : : also record the old value of KEY within the environment, so that it
121 : : can be later restored. */
122 : :
123 : : void
124 : 1724856 : env_manager::xput (const char *string)
125 : : {
126 : 1724856 : if (m_debug)
127 : 0 : fprintf (stderr, "env_manager::xput (%s)\n", string);
128 : 1724856 : if (verbose_flag)
129 : 5627 : fnotice (stderr, "%s\n", string);
130 : :
131 : 1724856 : if (m_can_restore)
132 : : {
133 : 6499 : char *equals = strchr (const_cast <char *> (string), '=');
134 : 6499 : gcc_assert (equals);
135 : :
136 : 6499 : struct kv kv;
137 : 6499 : kv.m_key = xstrndup (string, equals - string);
138 : 6499 : const char *cur_value = ::getenv (kv.m_key);
139 : 6499 : if (m_debug)
140 : 0 : fprintf (stderr, "saving old value: %s\n",cur_value);
141 : 6499 : kv.m_value = cur_value ? xstrdup (cur_value) : NULL;
142 : 6499 : m_keys.safe_push (kv);
143 : : }
144 : :
145 : 1724856 : ::putenv (CONST_CAST (char *, string));
146 : 1724856 : }
147 : :
148 : : /* Undo any xputenv changes made since last restore.
149 : : Can only be called if the env_manager was initialized with
150 : : CAN_RESTORE enabled. */
151 : :
152 : : void
153 : 1084 : env_manager::restore ()
154 : : {
155 : 1084 : unsigned int i;
156 : 1084 : struct kv *item;
157 : :
158 : 1084 : gcc_assert (m_can_restore);
159 : :
160 : 8667 : FOR_EACH_VEC_ELT_REVERSE (m_keys, i, item)
161 : : {
162 : 6499 : if (m_debug)
163 : 0 : printf ("restoring saved key: %s value: %s\n", item->m_key, item->m_value);
164 : 6499 : if (item->m_value)
165 : 3247 : ::setenv (item->m_key, item->m_value, 1);
166 : : else
167 : 3252 : ::unsetenv (item->m_key);
168 : 6499 : free (item->m_key);
169 : 6499 : free (item->m_value);
170 : : }
171 : :
172 : 1084 : m_keys.truncate (0);
173 : 1084 : }
174 : :
175 : : /* Forbid other uses of getenv and putenv. */
176 : : #if (GCC_VERSION >= 3000)
177 : : #pragma GCC poison getenv putenv
178 : : #endif
179 : :
180 : :
181 : :
182 : : /* By default there is no special suffix for target executables. */
183 : : #ifdef TARGET_EXECUTABLE_SUFFIX
184 : : #define HAVE_TARGET_EXECUTABLE_SUFFIX
185 : : #else
186 : : #define TARGET_EXECUTABLE_SUFFIX ""
187 : : #endif
188 : :
189 : : /* By default there is no special suffix for host executables. */
190 : : #ifdef HOST_EXECUTABLE_SUFFIX
191 : : #define HAVE_HOST_EXECUTABLE_SUFFIX
192 : : #else
193 : : #define HOST_EXECUTABLE_SUFFIX ""
194 : : #endif
195 : :
196 : : /* By default, the suffix for target object files is ".o". */
197 : : #ifdef TARGET_OBJECT_SUFFIX
198 : : #define HAVE_TARGET_OBJECT_SUFFIX
199 : : #else
200 : : #define TARGET_OBJECT_SUFFIX ".o"
201 : : #endif
202 : :
203 : : static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
204 : :
205 : : /* Most every one is fine with LIBRARY_PATH. For some, it conflicts. */
206 : : #ifndef LIBRARY_PATH_ENV
207 : : #define LIBRARY_PATH_ENV "LIBRARY_PATH"
208 : : #endif
209 : :
210 : : /* If a stage of compilation returns an exit status >= 1,
211 : : compilation of that file ceases. */
212 : :
213 : : #define MIN_FATAL_STATUS 1
214 : :
215 : : /* Flag set by cppspec.cc to 1. */
216 : : int is_cpp_driver;
217 : :
218 : : /* Flag set to nonzero if an @file argument has been supplied to gcc. */
219 : : static bool at_file_supplied;
220 : :
221 : : /* Definition of string containing the arguments given to configure. */
222 : : #include "configargs.h"
223 : :
224 : : /* Flag saying to print the command line options understood by gcc and its
225 : : sub-processes. */
226 : :
227 : : static int print_help_list;
228 : :
229 : : /* Flag saying to print the version of gcc and its sub-processes. */
230 : :
231 : : static int print_version;
232 : :
233 : : /* Flag that stores string prefix for which we provide bash completion. */
234 : :
235 : : static const char *completion = NULL;
236 : :
237 : : /* Flag indicating whether we should ONLY print the command and
238 : : arguments (like verbose_flag) without executing the command.
239 : : Displayed arguments are quoted so that the generated command
240 : : line is suitable for execution. This is intended for use in
241 : : shell scripts to capture the driver-generated command line. */
242 : : static int verbose_only_flag;
243 : :
244 : : /* Flag indicating how to print command line options of sub-processes. */
245 : :
246 : : static int print_subprocess_help;
247 : :
248 : : /* Linker suffix passed to -fuse-ld=... */
249 : : static const char *use_ld;
250 : :
251 : : /* Whether we should report subprocess execution times to a file. */
252 : :
253 : : FILE *report_times_to_file = NULL;
254 : :
255 : : /* Nonzero means place this string before uses of /, so that include
256 : : and library files can be found in an alternate location. */
257 : :
258 : : #ifdef TARGET_SYSTEM_ROOT
259 : : #define DEFAULT_TARGET_SYSTEM_ROOT (TARGET_SYSTEM_ROOT)
260 : : #else
261 : : #define DEFAULT_TARGET_SYSTEM_ROOT (0)
262 : : #endif
263 : : static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
264 : :
265 : : /* Nonzero means pass the updated target_system_root to the compiler. */
266 : :
267 : : static int target_system_root_changed;
268 : :
269 : : /* Nonzero means append this string to target_system_root. */
270 : :
271 : : static const char *target_sysroot_suffix = 0;
272 : :
273 : : /* Nonzero means append this string to target_system_root for headers. */
274 : :
275 : : static const char *target_sysroot_hdrs_suffix = 0;
276 : :
277 : : /* Nonzero means write "temp" files in source directory
278 : : and use the source file's name in them, and don't delete them. */
279 : :
280 : : static enum save_temps {
281 : : SAVE_TEMPS_NONE, /* no -save-temps */
282 : : SAVE_TEMPS_CWD, /* -save-temps in current directory */
283 : : SAVE_TEMPS_DUMP, /* -save-temps in dumpdir */
284 : : SAVE_TEMPS_OBJ /* -save-temps in object directory */
285 : : } save_temps_flag;
286 : :
287 : : /* Set this iff the dumppfx implied by a -save-temps=* option is to
288 : : override a -dumpdir option, if any. */
289 : : static bool save_temps_overrides_dumpdir = false;
290 : :
291 : : /* -dumpdir, -dumpbase and -dumpbase-ext flags passed in, possibly
292 : : rearranged as they are to be passed down, e.g., dumpbase and
293 : : dumpbase_ext may be cleared if integrated with dumpdir or
294 : : dropped. */
295 : : static char *dumpdir, *dumpbase, *dumpbase_ext;
296 : :
297 : : /* Usually the length of the string in dumpdir. However, during
298 : : linking, it may be shortened to omit a driver-added trailing dash,
299 : : by then replaced with a trailing period, that is still to be passed
300 : : to sub-processes in -dumpdir, but not to be generally used in spec
301 : : filename expansions. See maybe_run_linker. */
302 : : static size_t dumpdir_length = 0;
303 : :
304 : : /* Set if the last character in dumpdir is (or was) a dash that the
305 : : driver added to dumpdir after dumpbase or linker output name. */
306 : : static bool dumpdir_trailing_dash_added = false;
307 : :
308 : : /* True if -r, -shared, -pie, or -no-pie were specified on the command
309 : : line. */
310 : : static bool any_link_options_p;
311 : :
312 : : /* True if -static was specified on the command line. */
313 : : static bool static_p;
314 : :
315 : : /* Basename of dump and aux outputs, computed from dumpbase (given or
316 : : derived from output name), to override input_basename in non-%w %b
317 : : et al. */
318 : : static char *outbase;
319 : : static size_t outbase_length = 0;
320 : :
321 : : /* The compiler version. */
322 : :
323 : : static const char *compiler_version;
324 : :
325 : : /* The target version. */
326 : :
327 : : static const char *const spec_version = DEFAULT_TARGET_VERSION;
328 : :
329 : : /* The target machine. */
330 : :
331 : : static const char *spec_machine = DEFAULT_TARGET_MACHINE;
332 : : static const char *spec_host_machine = DEFAULT_REAL_TARGET_MACHINE;
333 : :
334 : : /* List of offload targets. Separated by colon. Empty string for
335 : : -foffload=disable. */
336 : :
337 : : static char *offload_targets = NULL;
338 : :
339 : : #if OFFLOAD_DEFAULTED
340 : : /* Set to true if -foffload has not been used and offload_targets
341 : : is set to the configured in default. */
342 : : static bool offload_targets_default;
343 : : #endif
344 : :
345 : : /* Nonzero if cross-compiling.
346 : : When -b is used, the value comes from the `specs' file. */
347 : :
348 : : #ifdef CROSS_DIRECTORY_STRUCTURE
349 : : static const char *cross_compile = "1";
350 : : #else
351 : : static const char *cross_compile = "0";
352 : : #endif
353 : :
354 : : /* Greatest exit code of sub-processes that has been encountered up to
355 : : now. */
356 : : static int greatest_status = 1;
357 : :
358 : : /* This is the obstack which we use to allocate many strings. */
359 : :
360 : : static struct obstack obstack;
361 : :
362 : : /* This is the obstack to build an environment variable to pass to
363 : : collect2 that describes all of the relevant switches of what to
364 : : pass the compiler in building the list of pointers to constructors
365 : : and destructors. */
366 : :
367 : : static struct obstack collect_obstack;
368 : :
369 : : /* Forward declaration for prototypes. */
370 : : struct path_prefix;
371 : : struct prefix_list;
372 : :
373 : : static void init_spec (void);
374 : : static void store_arg (const char *, int, int);
375 : : static void insert_wrapper (const char *);
376 : : static char *load_specs (const char *);
377 : : static void read_specs (const char *, bool, bool);
378 : : static void set_spec (const char *, const char *, bool);
379 : : static struct compiler *lookup_compiler (const char *, size_t, const char *);
380 : : static char *build_search_list (const struct path_prefix *, const char *,
381 : : bool, bool);
382 : : static void xputenv (const char *);
383 : : static void putenv_from_prefixes (const struct path_prefix *, const char *,
384 : : bool);
385 : : static int access_check (const char *, int);
386 : : static char *find_a_file (const struct path_prefix *, const char *, int, bool);
387 : : static char *find_a_program (const char *);
388 : : static void add_prefix (struct path_prefix *, const char *, const char *,
389 : : int, int, int);
390 : : static void add_sysrooted_prefix (struct path_prefix *, const char *,
391 : : const char *, int, int, int);
392 : : static char *skip_whitespace (char *);
393 : : static void delete_if_ordinary (const char *);
394 : : static void delete_temp_files (void);
395 : : static void delete_failure_queue (void);
396 : : static void clear_failure_queue (void);
397 : : static int check_live_switch (int, int);
398 : : static const char *handle_braces (const char *);
399 : : static inline bool input_suffix_matches (const char *, const char *);
400 : : static inline bool switch_matches (const char *, const char *, int);
401 : : static inline void mark_matching_switches (const char *, const char *, int);
402 : : static inline void process_marked_switches (void);
403 : : static const char *process_brace_body (const char *, const char *, const char *, int, int);
404 : : static const struct spec_function *lookup_spec_function (const char *);
405 : : static const char *eval_spec_function (const char *, const char *, const char *);
406 : : static const char *handle_spec_function (const char *, bool *, const char *);
407 : : static char *save_string (const char *, int);
408 : : static void set_collect_gcc_options (void);
409 : : static int do_spec_1 (const char *, int, const char *);
410 : : static int do_spec_2 (const char *, const char *);
411 : : static void do_option_spec (const char *, const char *);
412 : : static void do_self_spec (const char *);
413 : : static const char *find_file (const char *);
414 : : static int is_directory (const char *);
415 : : static const char *validate_switches (const char *, bool, bool);
416 : : static void validate_all_switches (void);
417 : : static inline void validate_switches_from_spec (const char *, bool);
418 : : static void give_switch (int, int);
419 : : static int default_arg (const char *, int);
420 : : static void set_multilib_dir (void);
421 : : static void print_multilib_info (void);
422 : : static void display_help (void);
423 : : static void add_preprocessor_option (const char *, int);
424 : : static void add_assembler_option (const char *, int);
425 : : static void add_linker_option (const char *, int);
426 : : static void process_command (unsigned int, struct cl_decoded_option *);
427 : : static int execute (void);
428 : : static void alloc_args (void);
429 : : static void clear_args (void);
430 : : static void fatal_signal (int);
431 : : #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
432 : : static void init_gcc_specs (struct obstack *, const char *, const char *,
433 : : const char *);
434 : : #endif
435 : : #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
436 : : static const char *convert_filename (const char *, int, int);
437 : : #endif
438 : :
439 : : static void try_generate_repro (const char **argv);
440 : : static const char *getenv_spec_function (int, const char **);
441 : : static const char *if_exists_spec_function (int, const char **);
442 : : static const char *if_exists_else_spec_function (int, const char **);
443 : : static const char *if_exists_then_else_spec_function (int, const char **);
444 : : static const char *sanitize_spec_function (int, const char **);
445 : : static const char *replace_outfile_spec_function (int, const char **);
446 : : static const char *remove_outfile_spec_function (int, const char **);
447 : : static const char *version_compare_spec_function (int, const char **);
448 : : static const char *include_spec_function (int, const char **);
449 : : static const char *find_file_spec_function (int, const char **);
450 : : static const char *find_plugindir_spec_function (int, const char **);
451 : : static const char *print_asm_header_spec_function (int, const char **);
452 : : static const char *compare_debug_dump_opt_spec_function (int, const char **);
453 : : static const char *compare_debug_self_opt_spec_function (int, const char **);
454 : : static const char *pass_through_libs_spec_func (int, const char **);
455 : : static const char *dumps_spec_func (int, const char **);
456 : : static const char *greater_than_spec_func (int, const char **);
457 : : static const char *debug_level_greater_than_spec_func (int, const char **);
458 : : static const char *dwarf_version_greater_than_spec_func (int, const char **);
459 : : static const char *find_fortran_preinclude_file (int, const char **);
460 : : static const char *join_spec_func (int, const char **);
461 : : static char *convert_white_space (char *);
462 : : static char *quote_spec (char *);
463 : : static char *quote_spec_arg (char *);
464 : : static bool not_actual_file_p (const char *);
465 : :
466 : :
467 : : /* The Specs Language
468 : :
469 : : Specs are strings containing lines, each of which (if not blank)
470 : : is made up of a program name, and arguments separated by spaces.
471 : : The program name must be exact and start from root, since no path
472 : : is searched and it is unreliable to depend on the current working directory.
473 : : Redirection of input or output is not supported; the subprograms must
474 : : accept filenames saying what files to read and write.
475 : :
476 : : In addition, the specs can contain %-sequences to substitute variable text
477 : : or for conditional text. Here is a table of all defined %-sequences.
478 : : Note that spaces are not generated automatically around the results of
479 : : expanding these sequences; therefore, you can concatenate them together
480 : : or with constant text in a single argument.
481 : :
482 : : %% substitute one % into the program name or argument.
483 : : %" substitute an empty argument.
484 : : %i substitute the name of the input file being processed.
485 : : %b substitute the basename for outputs related with the input file
486 : : being processed. This is often a substring of the input file name,
487 : : up to (and not including) the last period but, unless %w is active,
488 : : it is affected by the directory selected by -save-temps=*, by
489 : : -dumpdir, and, in case of multiple compilations, even by -dumpbase
490 : : and -dumpbase-ext and, in case of linking, by the linker output
491 : : name. When %w is active, it derives the main output name only from
492 : : the input file base name; when it is not, it names aux/dump output
493 : : file.
494 : : %B same as %b, but include the input file suffix (text after the last
495 : : period).
496 : : %gSUFFIX
497 : : substitute a file name that has suffix SUFFIX and is chosen
498 : : once per compilation, and mark the argument a la %d. To reduce
499 : : exposure to denial-of-service attacks, the file name is now
500 : : chosen in a way that is hard to predict even when previously
501 : : chosen file names are known. For example, `%g.s ... %g.o ... %g.s'
502 : : might turn into `ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s'. SUFFIX matches
503 : : the regexp "[.0-9A-Za-z]*%O"; "%O" is treated exactly as if it
504 : : had been pre-processed. Previously, %g was simply substituted
505 : : with a file name chosen once per compilation, without regard
506 : : to any appended suffix (which was therefore treated just like
507 : : ordinary text), making such attacks more likely to succeed.
508 : : %|SUFFIX
509 : : like %g, but if -pipe is in effect, expands simply to "-".
510 : : %mSUFFIX
511 : : like %g, but if -pipe is in effect, expands to nothing. (We have both
512 : : %| and %m to accommodate differences between system assemblers; see
513 : : the AS_NEEDS_DASH_FOR_PIPED_INPUT target macro.)
514 : : %uSUFFIX
515 : : like %g, but generates a new temporary file name even if %uSUFFIX
516 : : was already seen.
517 : : %USUFFIX
518 : : substitutes the last file name generated with %uSUFFIX, generating a
519 : : new one if there is no such last file name. In the absence of any
520 : : %uSUFFIX, this is just like %gSUFFIX, except they don't share
521 : : the same suffix "space", so `%g.s ... %U.s ... %g.s ... %U.s'
522 : : would involve the generation of two distinct file names, one
523 : : for each `%g.s' and another for each `%U.s'. Previously, %U was
524 : : simply substituted with a file name chosen for the previous %u,
525 : : without regard to any appended suffix.
526 : : %jSUFFIX
527 : : substitutes the name of the HOST_BIT_BUCKET, if any, and if it is
528 : : writable, and if save-temps is off; otherwise, substitute the name
529 : : of a temporary file, just like %u. This temporary file is not
530 : : meant for communication between processes, but rather as a junk
531 : : disposal mechanism.
532 : : %.SUFFIX
533 : : substitutes .SUFFIX for the suffixes of a matched switch's args when
534 : : it is subsequently output with %*. SUFFIX is terminated by the next
535 : : space or %.
536 : : %d marks the argument containing or following the %d as a
537 : : temporary file name, so that file will be deleted if GCC exits
538 : : successfully. Unlike %g, this contributes no text to the argument.
539 : : %w marks the argument containing or following the %w as the
540 : : "output file" of this compilation. This puts the argument
541 : : into the sequence of arguments that %o will substitute later.
542 : : %V indicates that this compilation produces no "output file".
543 : : %W{...}
544 : : like %{...} but marks the last argument supplied within as a file
545 : : to be deleted on failure.
546 : : %@{...}
547 : : like %{...} but puts the result into a FILE and substitutes @FILE
548 : : if an @file argument has been supplied.
549 : : %o substitutes the names of all the output files, with spaces
550 : : automatically placed around them. You should write spaces
551 : : around the %o as well or the results are undefined.
552 : : %o is for use in the specs for running the linker.
553 : : Input files whose names have no recognized suffix are not compiled
554 : : at all, but they are included among the output files, so they will
555 : : be linked.
556 : : %O substitutes the suffix for object files. Note that this is
557 : : handled specially when it immediately follows %g, %u, or %U
558 : : (with or without a suffix argument) because of the need for
559 : : those to form complete file names. The handling is such that
560 : : %O is treated exactly as if it had already been substituted,
561 : : except that %g, %u, and %U do not currently support additional
562 : : SUFFIX characters following %O as they would following, for
563 : : example, `.o'.
564 : : %I Substitute any of -iprefix (made from GCC_EXEC_PREFIX), -isysroot
565 : : (made from TARGET_SYSTEM_ROOT), -isystem (made from COMPILER_PATH
566 : : and -B options) and -imultilib as necessary.
567 : : %s current argument is the name of a library or startup file of some sort.
568 : : Search for that file in a standard list of directories
569 : : and substitute the full name found.
570 : : %T current argument is the name of a linker script.
571 : : Search for that file in the current list of directories to scan for
572 : : libraries. If the file is located, insert a --script option into the
573 : : command line followed by the full path name found. If the file is
574 : : not found then generate an error message.
575 : : Note: the current working directory is not searched.
576 : : %eSTR Print STR as an error message. STR is terminated by a newline.
577 : : Use this when inconsistent options are detected.
578 : : %nSTR Print STR as a notice. STR is terminated by a newline.
579 : : %x{OPTION} Accumulate an option for %X.
580 : : %X Output the accumulated linker options specified by compilations.
581 : : %Y Output the accumulated assembler options specified by compilations.
582 : : %Z Output the accumulated preprocessor options specified by compilations.
583 : : %a process ASM_SPEC as a spec.
584 : : This allows config.h to specify part of the spec for running as.
585 : : %A process ASM_FINAL_SPEC as a spec. A capital A is actually
586 : : used here. This can be used to run a post-processor after the
587 : : assembler has done its job.
588 : : %D Dump out a -L option for each directory in startfile_prefixes.
589 : : If multilib_dir is set, extra entries are generated with it affixed.
590 : : %l process LINK_SPEC as a spec.
591 : : %L process LIB_SPEC as a spec.
592 : : %M Output multilib_os_dir.
593 : : %P Output a RUNPATH_OPTION for each directory in startfile_prefixes.
594 : : %G process LIBGCC_SPEC as a spec.
595 : : %R Output the concatenation of target_system_root and
596 : : target_sysroot_suffix.
597 : : %S process STARTFILE_SPEC as a spec. A capital S is actually used here.
598 : : %E process ENDFILE_SPEC as a spec. A capital E is actually used here.
599 : : %C process CPP_SPEC as a spec.
600 : : %1 process CC1_SPEC as a spec.
601 : : %2 process CC1PLUS_SPEC as a spec.
602 : : %* substitute the variable part of a matched option. (See below.)
603 : : Note that each comma in the substituted string is replaced by
604 : : a single space. A space is appended after the last substition
605 : : unless there is more text in current sequence.
606 : : %<S remove all occurrences of -S from the command line.
607 : : Note - this command is position dependent. % commands in the
608 : : spec string before this one will see -S, % commands in the
609 : : spec string after this one will not.
610 : : %>S Similar to "%<S", but keep it in the GCC command line.
611 : : %<S* remove all occurrences of all switches beginning with -S from the
612 : : command line.
613 : : %:function(args)
614 : : Call the named function FUNCTION, passing it ARGS. ARGS is
615 : : first processed as a nested spec string, then split into an
616 : : argument vector in the usual fashion. The function returns
617 : : a string which is processed as if it had appeared literally
618 : : as part of the current spec.
619 : : %{S} substitutes the -S switch, if that switch was given to GCC.
620 : : If that switch was not specified, this substitutes nothing.
621 : : Here S is a metasyntactic variable.
622 : : %{S*} substitutes all the switches specified to GCC whose names start
623 : : with -S. This is used for -o, -I, etc; switches that take
624 : : arguments. GCC considers `-o foo' as being one switch whose
625 : : name starts with `o'. %{o*} would substitute this text,
626 : : including the space; thus, two arguments would be generated.
627 : : %{S*&T*} likewise, but preserve order of S and T options (the order
628 : : of S and T in the spec is not significant). Can be any number
629 : : of ampersand-separated variables; for each the wild card is
630 : : optional. Useful for CPP as %{D*&U*&A*}.
631 : :
632 : : %{S:X} substitutes X, if the -S switch was given to GCC.
633 : : %{!S:X} substitutes X, if the -S switch was NOT given to GCC.
634 : : %{S*:X} substitutes X if one or more switches whose names start
635 : : with -S was given to GCC. Normally X is substituted only
636 : : once, no matter how many such switches appeared. However,
637 : : if %* appears somewhere in X, then X will be substituted
638 : : once for each matching switch, with the %* replaced by the
639 : : part of that switch that matched the '*'. A space will be
640 : : appended after the last substition unless there is more
641 : : text in current sequence.
642 : : %{.S:X} substitutes X, if processing a file with suffix S.
643 : : %{!.S:X} substitutes X, if NOT processing a file with suffix S.
644 : : %{,S:X} substitutes X, if processing a file which will use spec S.
645 : : %{!,S:X} substitutes X, if NOT processing a file which will use spec S.
646 : :
647 : : %{S|T:X} substitutes X if either -S or -T was given to GCC. This may be
648 : : combined with '!', '.', ',', and '*' as above binding stronger
649 : : than the OR.
650 : : If %* appears in X, all of the alternatives must be starred, and
651 : : only the first matching alternative is substituted.
652 : : %{%:function(args):X}
653 : : Call function named FUNCTION with args ARGS. If the function
654 : : returns non-NULL, then X is substituted, if it returns
655 : : NULL, it isn't substituted.
656 : : %{S:X; if S was given to GCC, substitutes X;
657 : : T:Y; else if T was given to GCC, substitutes Y;
658 : : :D} else substitutes D. There can be as many clauses as you need.
659 : : This may be combined with '.', '!', ',', '|', and '*' as above.
660 : :
661 : : %(Spec) processes a specification defined in a specs file as *Spec:
662 : :
663 : : The switch matching text S in a %{S}, %{S:X}, or similar construct can use
664 : : a backslash to ignore the special meaning of the character following it,
665 : : thus allowing literal matching of a character that is otherwise specially
666 : : treated. For example, %{std=iso9899\:1999:X} substitutes X if the
667 : : -std=iso9899:1999 option is given.
668 : :
669 : : The conditional text X in a %{S:X} or similar construct may contain
670 : : other nested % constructs or spaces, or even newlines. They are
671 : : processed as usual, as described above. Trailing white space in X is
672 : : ignored. White space may also appear anywhere on the left side of the
673 : : colon in these constructs, except between . or * and the corresponding
674 : : word.
675 : :
676 : : The -O, -f, -g, -m, and -W switches are handled specifically in these
677 : : constructs. If another value of -O or the negated form of a -f, -m, or
678 : : -W switch is found later in the command line, the earlier switch
679 : : value is ignored, except with {S*} where S is just one letter; this
680 : : passes all matching options.
681 : :
682 : : The character | at the beginning of the predicate text is used to indicate
683 : : that a command should be piped to the following command, but only if -pipe
684 : : is specified.
685 : :
686 : : Note that it is built into GCC which switches take arguments and which
687 : : do not. You might think it would be useful to generalize this to
688 : : allow each compiler's spec to say which switches take arguments. But
689 : : this cannot be done in a consistent fashion. GCC cannot even decide
690 : : which input files have been specified without knowing which switches
691 : : take arguments, and it must know which input files to compile in order
692 : : to tell which compilers to run.
693 : :
694 : : GCC also knows implicitly that arguments starting in `-l' are to be
695 : : treated as compiler output files, and passed to the linker in their
696 : : proper position among the other output files. */
697 : :
698 : : /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
699 : :
700 : : /* config.h can define ASM_SPEC to provide extra args to the assembler
701 : : or extra switch-translations. */
702 : : #ifndef ASM_SPEC
703 : : #define ASM_SPEC ""
704 : : #endif
705 : :
706 : : /* config.h can define ASM_FINAL_SPEC to run a post processor after
707 : : the assembler has run. */
708 : : #ifndef ASM_FINAL_SPEC
709 : : #define ASM_FINAL_SPEC \
710 : : "%{gsplit-dwarf: \n\
711 : : objcopy --extract-dwo \
712 : : %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
713 : : %b.dwo \n\
714 : : objcopy --strip-dwo \
715 : : %{c:%{o*:%*}%{!o*:%w%b%O}}%{!c:%U%O} \
716 : : }"
717 : : #endif
718 : :
719 : : /* config.h can define CPP_SPEC to provide extra args to the C preprocessor
720 : : or extra switch-translations. */
721 : : #ifndef CPP_SPEC
722 : : #define CPP_SPEC ""
723 : : #endif
724 : :
725 : : /* Operating systems can define OS_CC1_SPEC to provide extra args to cc1 and
726 : : cc1plus or extra switch-translations. The OS_CC1_SPEC is appended
727 : : to CC1_SPEC in the initialization of cc1_spec. */
728 : : #ifndef OS_CC1_SPEC
729 : : #define OS_CC1_SPEC ""
730 : : #endif
731 : :
732 : : /* config.h can define CC1_SPEC to provide extra args to cc1 and cc1plus
733 : : or extra switch-translations. */
734 : : #ifndef CC1_SPEC
735 : : #define CC1_SPEC ""
736 : : #endif
737 : :
738 : : /* config.h can define CC1PLUS_SPEC to provide extra args to cc1plus
739 : : or extra switch-translations. */
740 : : #ifndef CC1PLUS_SPEC
741 : : #define CC1PLUS_SPEC ""
742 : : #endif
743 : :
744 : : /* config.h can define LINK_SPEC to provide extra args to the linker
745 : : or extra switch-translations. */
746 : : #ifndef LINK_SPEC
747 : : #define LINK_SPEC ""
748 : : #endif
749 : :
750 : : /* config.h can define LIB_SPEC to override the default libraries. */
751 : : #ifndef LIB_SPEC
752 : : #define LIB_SPEC "%{!shared:%{g*:-lg} %{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}}"
753 : : #endif
754 : :
755 : : /* When using -fsplit-stack we need to wrap pthread_create, in order
756 : : to initialize the stack guard. We always use wrapping, rather than
757 : : shared library ordering, and we keep the wrapper function in
758 : : libgcc. This is not yet a real spec, though it could become one;
759 : : it is currently just stuffed into LINK_SPEC. FIXME: This wrapping
760 : : only works with GNU ld and gold. */
761 : : #ifdef HAVE_GOLD_NON_DEFAULT_SPLIT_STACK
762 : : #define STACK_SPLIT_SPEC " %{fsplit-stack: -fuse-ld=gold --wrap=pthread_create}"
763 : : #else
764 : : #define STACK_SPLIT_SPEC " %{fsplit-stack: --wrap=pthread_create}"
765 : : #endif
766 : :
767 : : #ifndef LIBASAN_SPEC
768 : : #define STATIC_LIBASAN_LIBS \
769 : : " %{static-libasan|static:%:include(libsanitizer.spec)%(link_libasan)}"
770 : : #ifdef LIBASAN_EARLY_SPEC
771 : : #define LIBASAN_SPEC STATIC_LIBASAN_LIBS
772 : : #elif defined(HAVE_LD_STATIC_DYNAMIC)
773 : : #define LIBASAN_SPEC "%{static-libasan:" LD_STATIC_OPTION \
774 : : "} -lasan %{static-libasan:" LD_DYNAMIC_OPTION "}" \
775 : : STATIC_LIBASAN_LIBS
776 : : #else
777 : : #define LIBASAN_SPEC "-lasan" STATIC_LIBASAN_LIBS
778 : : #endif
779 : : #endif
780 : :
781 : : #ifndef LIBASAN_EARLY_SPEC
782 : : #define LIBASAN_EARLY_SPEC ""
783 : : #endif
784 : :
785 : : #ifndef LIBHWASAN_SPEC
786 : : #define STATIC_LIBHWASAN_LIBS \
787 : : " %{static-libhwasan|static:%:include(libsanitizer.spec)%(link_libhwasan)}"
788 : : #ifdef LIBHWASAN_EARLY_SPEC
789 : : #define LIBHWASAN_SPEC STATIC_LIBHWASAN_LIBS
790 : : #elif defined(HAVE_LD_STATIC_DYNAMIC)
791 : : #define LIBHWASAN_SPEC "%{static-libhwasan:" LD_STATIC_OPTION \
792 : : "} -lhwasan %{static-libhwasan:" LD_DYNAMIC_OPTION "}" \
793 : : STATIC_LIBHWASAN_LIBS
794 : : #else
795 : : #define LIBHWASAN_SPEC "-lhwasan" STATIC_LIBHWASAN_LIBS
796 : : #endif
797 : : #endif
798 : :
799 : : #ifndef LIBHWASAN_EARLY_SPEC
800 : : #define LIBHWASAN_EARLY_SPEC ""
801 : : #endif
802 : :
803 : : #ifndef LIBTSAN_SPEC
804 : : #define STATIC_LIBTSAN_LIBS \
805 : : " %{static-libtsan|static:%:include(libsanitizer.spec)%(link_libtsan)}"
806 : : #ifdef LIBTSAN_EARLY_SPEC
807 : : #define LIBTSAN_SPEC STATIC_LIBTSAN_LIBS
808 : : #elif defined(HAVE_LD_STATIC_DYNAMIC)
809 : : #define LIBTSAN_SPEC "%{static-libtsan:" LD_STATIC_OPTION \
810 : : "} -ltsan %{static-libtsan:" LD_DYNAMIC_OPTION "}" \
811 : : STATIC_LIBTSAN_LIBS
812 : : #else
813 : : #define LIBTSAN_SPEC "-ltsan" STATIC_LIBTSAN_LIBS
814 : : #endif
815 : : #endif
816 : :
817 : : #ifndef LIBTSAN_EARLY_SPEC
818 : : #define LIBTSAN_EARLY_SPEC ""
819 : : #endif
820 : :
821 : : #ifndef LIBLSAN_SPEC
822 : : #define STATIC_LIBLSAN_LIBS \
823 : : " %{static-liblsan|static:%:include(libsanitizer.spec)%(link_liblsan)}"
824 : : #ifdef LIBLSAN_EARLY_SPEC
825 : : #define LIBLSAN_SPEC STATIC_LIBLSAN_LIBS
826 : : #elif defined(HAVE_LD_STATIC_DYNAMIC)
827 : : #define LIBLSAN_SPEC "%{static-liblsan:" LD_STATIC_OPTION \
828 : : "} -llsan %{static-liblsan:" LD_DYNAMIC_OPTION "}" \
829 : : STATIC_LIBLSAN_LIBS
830 : : #else
831 : : #define LIBLSAN_SPEC "-llsan" STATIC_LIBLSAN_LIBS
832 : : #endif
833 : : #endif
834 : :
835 : : #ifndef LIBLSAN_EARLY_SPEC
836 : : #define LIBLSAN_EARLY_SPEC ""
837 : : #endif
838 : :
839 : : #ifndef LIBUBSAN_SPEC
840 : : #define STATIC_LIBUBSAN_LIBS \
841 : : " %{static-libubsan|static:%:include(libsanitizer.spec)%(link_libubsan)}"
842 : : #ifdef HAVE_LD_STATIC_DYNAMIC
843 : : #define LIBUBSAN_SPEC "%{static-libubsan:" LD_STATIC_OPTION \
844 : : "} -lubsan %{static-libubsan:" LD_DYNAMIC_OPTION "}" \
845 : : STATIC_LIBUBSAN_LIBS
846 : : #else
847 : : #define LIBUBSAN_SPEC "-lubsan" STATIC_LIBUBSAN_LIBS
848 : : #endif
849 : : #endif
850 : :
851 : : /* Linker options for compressed debug sections. */
852 : : #if HAVE_LD_COMPRESS_DEBUG == 0
853 : : /* No linker support. */
854 : : #define LINK_COMPRESS_DEBUG_SPEC \
855 : : " %{gz*:%e-gz is not supported in this configuration} "
856 : : #elif HAVE_LD_COMPRESS_DEBUG == 1
857 : : /* ELF gABI style. */
858 : : #define LINK_COMPRESS_DEBUG_SPEC \
859 : : " %{gz|gz=zlib:" LD_COMPRESS_DEBUG_OPTION "=zlib}" \
860 : : " %{gz=none:" LD_COMPRESS_DEBUG_OPTION "=none}" \
861 : : " %{gz=zstd:%e-gz=zstd is not supported in this configuration} " \
862 : : " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
863 : : #elif HAVE_LD_COMPRESS_DEBUG == 2
864 : : /* ELF gABI style and ZSTD. */
865 : : #define LINK_COMPRESS_DEBUG_SPEC \
866 : : " %{gz|gz=zlib:" LD_COMPRESS_DEBUG_OPTION "=zlib}" \
867 : : " %{gz=none:" LD_COMPRESS_DEBUG_OPTION "=none}" \
868 : : " %{gz=zstd:" LD_COMPRESS_DEBUG_OPTION "=zstd}" \
869 : : " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
870 : : #else
871 : : #error Unknown value for HAVE_LD_COMPRESS_DEBUG.
872 : : #endif
873 : :
874 : : /* config.h can define LIBGCC_SPEC to override how and when libgcc.a is
875 : : included. */
876 : : #ifndef LIBGCC_SPEC
877 : : #if defined(REAL_LIBGCC_SPEC)
878 : : #define LIBGCC_SPEC REAL_LIBGCC_SPEC
879 : : #elif defined(LINK_LIBGCC_SPECIAL_1)
880 : : /* Have gcc do the search for libgcc.a. */
881 : : #define LIBGCC_SPEC "libgcc.a%s"
882 : : #else
883 : : #define LIBGCC_SPEC "-lgcc"
884 : : #endif
885 : : #endif
886 : :
887 : : /* config.h can define STARTFILE_SPEC to override the default crt0 files. */
888 : : #ifndef STARTFILE_SPEC
889 : : #define STARTFILE_SPEC \
890 : : "%{!shared:%{pg:gcrt0%O%s}%{!pg:%{p:mcrt0%O%s}%{!p:crt0%O%s}}}"
891 : : #endif
892 : :
893 : : /* config.h can define ENDFILE_SPEC to override the default crtn files. */
894 : : #ifndef ENDFILE_SPEC
895 : : #define ENDFILE_SPEC ""
896 : : #endif
897 : :
898 : : #ifndef LINKER_NAME
899 : : #define LINKER_NAME "collect2"
900 : : #endif
901 : :
902 : : #ifdef HAVE_AS_DEBUG_PREFIX_MAP
903 : : #define ASM_MAP " %{ffile-prefix-map=*:--debug-prefix-map %*} %{fdebug-prefix-map=*:--debug-prefix-map %*}"
904 : : #else
905 : : #define ASM_MAP ""
906 : : #endif
907 : :
908 : : /* Assembler options for compressed debug sections. */
909 : : #if HAVE_LD_COMPRESS_DEBUG == 0
910 : : /* Reject if the linker cannot write compressed debug sections. */
911 : : #define ASM_COMPRESS_DEBUG_SPEC \
912 : : " %{gz*:%e-gz is not supported in this configuration} "
913 : : #else /* HAVE_LD_COMPRESS_DEBUG >= 1 */
914 : : #if HAVE_AS_COMPRESS_DEBUG == 0
915 : : /* No assembler support. Ignore silently. */
916 : : #define ASM_COMPRESS_DEBUG_SPEC \
917 : : " %{gz*:} "
918 : : #elif HAVE_AS_COMPRESS_DEBUG == 1
919 : : /* ELF gABI style. */
920 : : #define ASM_COMPRESS_DEBUG_SPEC \
921 : : " %{gz|gz=zlib:" AS_COMPRESS_DEBUG_OPTION "=zlib}" \
922 : : " %{gz=none:" AS_COMPRESS_DEBUG_OPTION "=none}" \
923 : : " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
924 : : #elif HAVE_AS_COMPRESS_DEBUG == 2
925 : : /* ELF gABI style and ZSTD. */
926 : : #define ASM_COMPRESS_DEBUG_SPEC \
927 : : " %{gz|gz=zlib:" AS_COMPRESS_DEBUG_OPTION "=zlib}" \
928 : : " %{gz=none:" AS_COMPRESS_DEBUG_OPTION "=none}" \
929 : : " %{gz=zstd:" AS_COMPRESS_DEBUG_OPTION "=zstd}" \
930 : : " %{gz=zlib-gnu:}" /* Ignore silently zlib-gnu option value. */
931 : : #else
932 : : #error Unknown value for HAVE_AS_COMPRESS_DEBUG.
933 : : #endif
934 : : #endif /* HAVE_LD_COMPRESS_DEBUG >= 1 */
935 : :
936 : : /* Define ASM_DEBUG_SPEC to be a spec suitable for translating '-g'
937 : : to the assembler, when compiling assembly sources only. */
938 : : #ifndef ASM_DEBUG_SPEC
939 : : # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
940 : : /* If --gdwarf-N is supported and as can handle even compiler generated
941 : : .debug_line with it, supply --gdwarf-N in ASM_DEBUG_OPTION_SPEC rather
942 : : than in ASM_DEBUG_SPEC, so that it applies to both .s and .c etc.
943 : : compilations. */
944 : : # define ASM_DEBUG_DWARF_OPTION ""
945 : : # elif defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && !defined(HAVE_LD_BROKEN_PE_DWARF5)
946 : : # define ASM_DEBUG_DWARF_OPTION "%{%:dwarf-version-gt(4):--gdwarf-5;" \
947 : : "%:dwarf-version-gt(3):--gdwarf-4;" \
948 : : "%:dwarf-version-gt(2):--gdwarf-3;" \
949 : : ":--gdwarf2}"
950 : : # else
951 : : # define ASM_DEBUG_DWARF_OPTION "--gdwarf2"
952 : : # endif
953 : : # if defined(DWARF2_DEBUGGING_INFO) && defined(HAVE_AS_GDWARF2_DEBUG_FLAG)
954 : : # define ASM_DEBUG_SPEC "%{g*:%{%:debug-level-gt(0):" \
955 : : ASM_DEBUG_DWARF_OPTION "}}" ASM_MAP
956 : : # endif
957 : : # endif
958 : : #ifndef ASM_DEBUG_SPEC
959 : : # define ASM_DEBUG_SPEC ""
960 : : #endif
961 : :
962 : : /* Define ASM_DEBUG_OPTION_SPEC to be a spec suitable for translating '-g'
963 : : to the assembler when compiling all sources. */
964 : : #ifndef ASM_DEBUG_OPTION_SPEC
965 : : # if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
966 : : # define ASM_DEBUG_OPTION_DWARF_OPT \
967 : : "%{%:dwarf-version-gt(4):--gdwarf-5 ;" \
968 : : "%:dwarf-version-gt(3):--gdwarf-4 ;" \
969 : : "%:dwarf-version-gt(2):--gdwarf-3 ;" \
970 : : ":--gdwarf2 }"
971 : : # if defined(DWARF2_DEBUGGING_INFO)
972 : : # define ASM_DEBUG_OPTION_SPEC "%{g*:%{%:debug-level-gt(0):" \
973 : : ASM_DEBUG_OPTION_DWARF_OPT "}}"
974 : : # endif
975 : : # endif
976 : : #endif
977 : : #ifndef ASM_DEBUG_OPTION_SPEC
978 : : # define ASM_DEBUG_OPTION_SPEC ""
979 : : #endif
980 : :
981 : : /* Here is the spec for running the linker, after compiling all files. */
982 : :
983 : : /* This is overridable by the target in case they need to specify the
984 : : -lgcc and -lc order specially, yet not require them to override all
985 : : of LINK_COMMAND_SPEC. */
986 : : #ifndef LINK_GCC_C_SEQUENCE_SPEC
987 : : #define LINK_GCC_C_SEQUENCE_SPEC "%G %{!nolibc:%L %G}"
988 : : #endif
989 : :
990 : : #ifndef LINK_SSP_SPEC
991 : : #ifdef TARGET_LIBC_PROVIDES_SSP
992 : : #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
993 : : "|fstack-protector-strong|fstack-protector-explicit:}"
994 : : #else
995 : : #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
996 : : "|fstack-protector-strong|fstack-protector-explicit" \
997 : : ":-lssp_nonshared -lssp}"
998 : : #endif
999 : : #endif
1000 : :
1001 : : #ifdef ENABLE_DEFAULT_PIE
1002 : : #define PIE_SPEC "!no-pie"
1003 : : #define NO_FPIE1_SPEC "fno-pie"
1004 : : #define FPIE1_SPEC NO_FPIE1_SPEC ":;"
1005 : : #define NO_FPIE2_SPEC "fno-PIE"
1006 : : #define FPIE2_SPEC NO_FPIE2_SPEC ":;"
1007 : : #define NO_FPIE_SPEC NO_FPIE1_SPEC "|" NO_FPIE2_SPEC
1008 : : #define FPIE_SPEC NO_FPIE_SPEC ":;"
1009 : : #define NO_FPIC1_SPEC "fno-pic"
1010 : : #define FPIC1_SPEC NO_FPIC1_SPEC ":;"
1011 : : #define NO_FPIC2_SPEC "fno-PIC"
1012 : : #define FPIC2_SPEC NO_FPIC2_SPEC ":;"
1013 : : #define NO_FPIC_SPEC NO_FPIC1_SPEC "|" NO_FPIC2_SPEC
1014 : : #define FPIC_SPEC NO_FPIC_SPEC ":;"
1015 : : #define NO_FPIE1_AND_FPIC1_SPEC NO_FPIE1_SPEC "|" NO_FPIC1_SPEC
1016 : : #define FPIE1_OR_FPIC1_SPEC NO_FPIE1_AND_FPIC1_SPEC ":;"
1017 : : #define NO_FPIE2_AND_FPIC2_SPEC NO_FPIE2_SPEC "|" NO_FPIC2_SPEC
1018 : : #define FPIE2_OR_FPIC2_SPEC NO_FPIE2_AND_FPIC2_SPEC ":;"
1019 : : #define NO_FPIE_AND_FPIC_SPEC NO_FPIE_SPEC "|" NO_FPIC_SPEC
1020 : : #define FPIE_OR_FPIC_SPEC NO_FPIE_AND_FPIC_SPEC ":;"
1021 : : #else
1022 : : #define PIE_SPEC "pie"
1023 : : #define FPIE1_SPEC "fpie"
1024 : : #define NO_FPIE1_SPEC FPIE1_SPEC ":;"
1025 : : #define FPIE2_SPEC "fPIE"
1026 : : #define NO_FPIE2_SPEC FPIE2_SPEC ":;"
1027 : : #define FPIE_SPEC FPIE1_SPEC "|" FPIE2_SPEC
1028 : : #define NO_FPIE_SPEC FPIE_SPEC ":;"
1029 : : #define FPIC1_SPEC "fpic"
1030 : : #define NO_FPIC1_SPEC FPIC1_SPEC ":;"
1031 : : #define FPIC2_SPEC "fPIC"
1032 : : #define NO_FPIC2_SPEC FPIC2_SPEC ":;"
1033 : : #define FPIC_SPEC FPIC1_SPEC "|" FPIC2_SPEC
1034 : : #define NO_FPIC_SPEC FPIC_SPEC ":;"
1035 : : #define FPIE1_OR_FPIC1_SPEC FPIE1_SPEC "|" FPIC1_SPEC
1036 : : #define NO_FPIE1_AND_FPIC1_SPEC FPIE1_OR_FPIC1_SPEC ":;"
1037 : : #define FPIE2_OR_FPIC2_SPEC FPIE2_SPEC "|" FPIC2_SPEC
1038 : : #define NO_FPIE2_AND_FPIC2_SPEC FPIE1_OR_FPIC2_SPEC ":;"
1039 : : #define FPIE_OR_FPIC_SPEC FPIE_SPEC "|" FPIC_SPEC
1040 : : #define NO_FPIE_AND_FPIC_SPEC FPIE_OR_FPIC_SPEC ":;"
1041 : : #endif
1042 : :
1043 : : #ifndef LINK_PIE_SPEC
1044 : : #ifdef HAVE_LD_PIE
1045 : : #ifndef LD_PIE_SPEC
1046 : : #define LD_PIE_SPEC "-pie"
1047 : : #endif
1048 : : #else
1049 : : #define LD_PIE_SPEC ""
1050 : : #endif
1051 : : #define LINK_PIE_SPEC "%{static|shared|r:;" PIE_SPEC ":" LD_PIE_SPEC "} "
1052 : : #endif
1053 : :
1054 : : #ifndef LINK_BUILDID_SPEC
1055 : : # if defined(HAVE_LD_BUILDID) && defined(ENABLE_LD_BUILDID)
1056 : : # define LINK_BUILDID_SPEC "%{!r:--build-id} "
1057 : : # endif
1058 : : #endif
1059 : :
1060 : : #ifndef LTO_PLUGIN_SPEC
1061 : : #define LTO_PLUGIN_SPEC ""
1062 : : #endif
1063 : :
1064 : : /* Conditional to test whether the LTO plugin is used or not.
1065 : : FIXME: For slim LTO we will need to enable plugin unconditionally. This
1066 : : still cause problems with PLUGIN_LD != LD and when plugin is built but
1067 : : not useable. For GCC 4.6 we don't support slim LTO and thus we can enable
1068 : : plugin only when LTO is enabled. We still honor explicit
1069 : : -fuse-linker-plugin if the linker used understands -plugin. */
1070 : :
1071 : : /* The linker has some plugin support. */
1072 : : #if HAVE_LTO_PLUGIN > 0
1073 : : /* The linker used has full plugin support, use LTO plugin by default. */
1074 : : #if HAVE_LTO_PLUGIN == 2
1075 : : #define PLUGIN_COND "!fno-use-linker-plugin:%{!fno-lto"
1076 : : #define PLUGIN_COND_CLOSE "}"
1077 : : #else
1078 : : /* The linker used has limited plugin support, use LTO plugin with explicit
1079 : : -fuse-linker-plugin. */
1080 : : #define PLUGIN_COND "fuse-linker-plugin"
1081 : : #define PLUGIN_COND_CLOSE ""
1082 : : #endif
1083 : : #define LINK_PLUGIN_SPEC \
1084 : : "%{" PLUGIN_COND": \
1085 : : -plugin %(linker_plugin_file) \
1086 : : -plugin-opt=%(lto_wrapper) \
1087 : : -plugin-opt=-fresolution=%u.res \
1088 : : " LTO_PLUGIN_SPEC "\
1089 : : %{flinker-output=*:-plugin-opt=-linker-output-known} \
1090 : : %{!nostdlib:%{!nodefaultlibs:%:pass-through-libs(%(link_gcc_c_sequence))}} \
1091 : : }" PLUGIN_COND_CLOSE
1092 : : #else
1093 : : /* The linker used doesn't support -plugin, reject -fuse-linker-plugin. */
1094 : : #define LINK_PLUGIN_SPEC "%{fuse-linker-plugin:\
1095 : : %e-fuse-linker-plugin is not supported in this configuration}"
1096 : : #endif
1097 : :
1098 : : /* Linker command line options for -fsanitize= early on the command line. */
1099 : : #ifndef SANITIZER_EARLY_SPEC
1100 : : #define SANITIZER_EARLY_SPEC "\
1101 : : %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_EARLY_SPEC "} \
1102 : : %{%:sanitize(hwaddress):" LIBHWASAN_EARLY_SPEC "} \
1103 : : %{%:sanitize(thread):" LIBTSAN_EARLY_SPEC "} \
1104 : : %{%:sanitize(leak):" LIBLSAN_EARLY_SPEC "}}}}"
1105 : : #endif
1106 : :
1107 : : /* Linker command line options for -fsanitize= late on the command line. */
1108 : : #ifndef SANITIZER_SPEC
1109 : : #define SANITIZER_SPEC "\
1110 : : %{!nostdlib:%{!r:%{!nodefaultlibs:%{%:sanitize(address):" LIBASAN_SPEC "\
1111 : : %{static:%ecannot specify -static with -fsanitize=address}}\
1112 : : %{%:sanitize(hwaddress):" LIBHWASAN_SPEC "\
1113 : : %{static:%ecannot specify -static with -fsanitize=hwaddress}}\
1114 : : %{%:sanitize(thread):" LIBTSAN_SPEC "\
1115 : : %{static:%ecannot specify -static with -fsanitize=thread}}\
1116 : : %{%:sanitize(undefined):" LIBUBSAN_SPEC "}\
1117 : : %{%:sanitize(leak):" LIBLSAN_SPEC "}}}}"
1118 : : #endif
1119 : :
1120 : : #ifndef POST_LINK_SPEC
1121 : : #define POST_LINK_SPEC ""
1122 : : #endif
1123 : :
1124 : : /* This is the spec to use, once the code for creating the vtable
1125 : : verification runtime library, libvtv.so, has been created. Currently
1126 : : the vtable verification runtime functions are in libstdc++, so we use
1127 : : the spec just below this one. */
1128 : : #ifndef VTABLE_VERIFICATION_SPEC
1129 : : #if ENABLE_VTABLE_VERIFY
1130 : : #define VTABLE_VERIFICATION_SPEC "\
1131 : : %{!nostdlib:%{!r:%{fvtable-verify=std: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}\
1132 : : %{fvtable-verify=preinit: -lvtv -u_vtable_map_vars_start -u_vtable_map_vars_end}}}"
1133 : : #else
1134 : : #define VTABLE_VERIFICATION_SPEC "\
1135 : : %{fvtable-verify=none:} \
1136 : : %{fvtable-verify=std: \
1137 : : %e-fvtable-verify=std is not supported in this configuration} \
1138 : : %{fvtable-verify=preinit: \
1139 : : %e-fvtable-verify=preinit is not supported in this configuration}"
1140 : : #endif
1141 : : #endif
1142 : :
1143 : : /* -u* was put back because both BSD and SysV seem to support it. */
1144 : : /* %{static|no-pie|static-pie:} simply prevents an error message:
1145 : : 1. If the target machine doesn't handle -static.
1146 : : 2. If PIE isn't enabled by default.
1147 : : 3. If the target machine doesn't handle -static-pie.
1148 : : */
1149 : : /* We want %{T*} after %{L*} and %D so that it can be used to specify linker
1150 : : scripts which exist in user specified directories, or in standard
1151 : : directories. */
1152 : : /* We pass any -flto flags on to the linker, which is expected
1153 : : to understand them. In practice, this means it had better be collect2. */
1154 : : /* %{e*} includes -export-dynamic; see comment in common.opt. */
1155 : : #ifndef LINK_COMMAND_SPEC
1156 : : #define LINK_COMMAND_SPEC "\
1157 : : %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
1158 : : %(linker) " \
1159 : : LINK_PLUGIN_SPEC \
1160 : : "%{flto|flto=*:%<fcompare-debug*} \
1161 : : %{flto} %{fno-lto} %{flto=*} %l " LINK_PIE_SPEC \
1162 : : "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
1163 : : "%X %{o*} %{e*} %{N} %{n} %{r}\
1164 : : %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
1165 : : %{static|no-pie|static-pie:} %@{L*} %(link_libgcc) " \
1166 : : VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
1167 : : %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
1168 : : %:include(libgomp.spec)%(link_gomp)}\
1169 : : %{fgnu-tm:%:include(libitm.spec)%(link_itm)}\
1170 : : " STACK_SPLIT_SPEC "\
1171 : : %{fprofile-arcs|fcondition-coverage|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
1172 : : %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
1173 : : %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*} \n%(post_link) }}}}}}"
1174 : : #endif
1175 : :
1176 : : #ifndef LINK_LIBGCC_SPEC
1177 : : /* Generate -L options for startfile prefix list. */
1178 : : # define LINK_LIBGCC_SPEC "%D"
1179 : : #endif
1180 : :
1181 : : #ifndef STARTFILE_PREFIX_SPEC
1182 : : # define STARTFILE_PREFIX_SPEC ""
1183 : : #endif
1184 : :
1185 : : #ifndef SYSROOT_SPEC
1186 : : # define SYSROOT_SPEC "--sysroot=%R"
1187 : : #endif
1188 : :
1189 : : #ifndef SYSROOT_SUFFIX_SPEC
1190 : : # define SYSROOT_SUFFIX_SPEC ""
1191 : : #endif
1192 : :
1193 : : #ifndef SYSROOT_HEADERS_SUFFIX_SPEC
1194 : : # define SYSROOT_HEADERS_SUFFIX_SPEC ""
1195 : : #endif
1196 : :
1197 : : #ifndef RUNPATH_OPTION
1198 : : # define RUNPATH_OPTION "-rpath"
1199 : : #endif
1200 : :
1201 : : static const char *asm_debug = ASM_DEBUG_SPEC;
1202 : : static const char *asm_debug_option = ASM_DEBUG_OPTION_SPEC;
1203 : : static const char *cpp_spec = CPP_SPEC;
1204 : : static const char *cc1_spec = CC1_SPEC OS_CC1_SPEC;
1205 : : static const char *cc1plus_spec = CC1PLUS_SPEC;
1206 : : static const char *link_gcc_c_sequence_spec = LINK_GCC_C_SEQUENCE_SPEC;
1207 : : static const char *link_ssp_spec = LINK_SSP_SPEC;
1208 : : static const char *asm_spec = ASM_SPEC;
1209 : : static const char *asm_final_spec = ASM_FINAL_SPEC;
1210 : : static const char *link_spec = LINK_SPEC;
1211 : : static const char *lib_spec = LIB_SPEC;
1212 : : static const char *link_gomp_spec = "";
1213 : : static const char *libgcc_spec = LIBGCC_SPEC;
1214 : : static const char *endfile_spec = ENDFILE_SPEC;
1215 : : static const char *startfile_spec = STARTFILE_SPEC;
1216 : : static const char *linker_name_spec = LINKER_NAME;
1217 : : static const char *linker_plugin_file_spec = "";
1218 : : static const char *lto_wrapper_spec = "";
1219 : : static const char *lto_gcc_spec = "";
1220 : : static const char *post_link_spec = POST_LINK_SPEC;
1221 : : static const char *link_command_spec = LINK_COMMAND_SPEC;
1222 : : static const char *link_libgcc_spec = LINK_LIBGCC_SPEC;
1223 : : static const char *startfile_prefix_spec = STARTFILE_PREFIX_SPEC;
1224 : : static const char *sysroot_spec = SYSROOT_SPEC;
1225 : : static const char *sysroot_suffix_spec = SYSROOT_SUFFIX_SPEC;
1226 : : static const char *sysroot_hdrs_suffix_spec = SYSROOT_HEADERS_SUFFIX_SPEC;
1227 : : static const char *self_spec = "";
1228 : :
1229 : : /* Standard options to cpp, cc1, and as, to reduce duplication in specs.
1230 : : There should be no need to override these in target dependent files,
1231 : : but we need to copy them to the specs file so that newer versions
1232 : : of the GCC driver can correctly drive older tool chains with the
1233 : : appropriate -B options. */
1234 : :
1235 : : /* When cpplib handles traditional preprocessing, get rid of this, and
1236 : : call cc1 (or cc1obj in objc/lang-specs.h) from the main specs so
1237 : : that we default the front end language better. */
1238 : : static const char *trad_capable_cpp =
1239 : : "cc1 -E %{traditional|traditional-cpp:-traditional-cpp}";
1240 : :
1241 : : /* We don't wrap .d files in %W{} since a missing .d file, and
1242 : : therefore no dependency entry, confuses make into thinking a .o
1243 : : file that happens to exist is up-to-date. */
1244 : : static const char *cpp_unique_options =
1245 : : "%{!Q:-quiet} %{nostdinc*} %{C} %{CC} %{v} %@{I*&F*} %{P} %I\
1246 : : %{MD:-MD %{!o:%b.d}%{o*:%.d%*}}\
1247 : : %{MMD:-MMD %{!o:%b.d}%{o*:%.d%*}}\
1248 : : %{M} %{MM} %{MF*} %{MG} %{MP} %{MQ*} %{MT*}\
1249 : : %{Mmodules} %{Mno-modules}\
1250 : : %{!E:%{!M:%{!MM:%{!MT:%{!MQ:%{MD|MMD:%{o*:-MQ %*}}}}}}}\
1251 : : %{remap} %{%:debug-level-gt(2):-dD}\
1252 : : %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1253 : : %{H} %C %{D*&U*&A*} %{i*} %Z %i\
1254 : : %{E|M|MM:%W{o*}} %{-embed*}\
1255 : : %{fdeps-format=*:%{!fdeps-file=*:-fdeps-file=%:join(%{!o:%b.ddi}%{o*:%.ddi%*})}}\
1256 : : %{fdeps-format=*:%{!fdeps-target=*:-fdeps-target=%:join(%{!o:%b.o}%{o*:%.o%*})}}";
1257 : :
1258 : : /* This contains cpp options which are common with cc1_options and are passed
1259 : : only when preprocessing only to avoid duplication. We pass the cc1 spec
1260 : : options to the preprocessor so that it the cc1 spec may manipulate
1261 : : options used to set target flags. Those special target flags settings may
1262 : : in turn cause preprocessor symbols to be defined specially. */
1263 : : static const char *cpp_options =
1264 : : "%(cpp_unique_options) %1 %{m*} %{std*&ansi&trigraphs} %{W*&pedantic*} %{w}\
1265 : : %{f*} %{g*:%{%:debug-level-gt(0):%{g*}\
1266 : : %{!fno-working-directory:-fworking-directory}}} %{O*}\
1267 : : %{undef} %{save-temps*:-fpch-preprocess}";
1268 : :
1269 : : /* Pass -d* flags, possibly modifying -dumpdir, -dumpbase et al.
1270 : :
1271 : : Make it easy for a language to override the argument for the
1272 : : %:dumps specs function call. */
1273 : : #define DUMPS_OPTIONS(EXTS) \
1274 : : "%<dumpdir %<dumpbase %<dumpbase-ext %{d*} %:dumps(" EXTS ")"
1275 : :
1276 : : /* This contains cpp options which are not passed when the preprocessor
1277 : : output will be used by another program. */
1278 : : static const char *cpp_debug_options = DUMPS_OPTIONS ("");
1279 : :
1280 : : /* NB: This is shared amongst all front-ends, except for Ada. */
1281 : : static const char *cc1_options =
1282 : : "%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
1283 : : %{!iplugindir*:%{fplugin*:%:find-plugindir()}}\
1284 : : %1 %{!Q:-quiet} %(cpp_debug_options) %{m*} %{aux-info*}\
1285 : : %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
1286 : : %{v:-version} %{pg:-p} %{p} %{f*} %{undef}\
1287 : : %{Qn:-fno-ident} %{Qy:} %{-help:--help}\
1288 : : %{-target-help:--target-help}\
1289 : : %{-version:--version}\
1290 : : %{-help=*:--help=%*}\
1291 : : %{!fsyntax-only:%{S:%W{o*}%{!o*:-o %w%b.s}}}\
1292 : : %{fsyntax-only:-o %j} %{-param*}\
1293 : : %{coverage:-fprofile-arcs -ftest-coverage}\
1294 : : %{fprofile-arcs|fcondition-coverage|fprofile-generate*|coverage:\
1295 : : %{!fprofile-update=single:\
1296 : : %{pthread:-fprofile-update=prefer-atomic}}}";
1297 : :
1298 : : static const char *asm_options =
1299 : : "%{-target-help:%:print-asm-header()} "
1300 : : #if HAVE_GNU_AS
1301 : : /* If GNU AS is used, then convert -w (no warnings), -I, and -v
1302 : : to the assembler equivalents. */
1303 : : "%{v} %{w:-W} %{I*} "
1304 : : #endif
1305 : : "%(asm_debug_option)"
1306 : : ASM_COMPRESS_DEBUG_SPEC
1307 : : "%a %Y %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}";
1308 : :
1309 : : static const char *invoke_as =
1310 : : #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1311 : : "%{!fwpa*:\
1312 : : %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1313 : : %{!S:-o %|.s |\n as %(asm_options) %|.s %A }\
1314 : : }";
1315 : : #else
1316 : : "%{!fwpa*:\
1317 : : %{fcompare-debug=*|fdump-final-insns=*:%:compare-debug-dump-opt()}\
1318 : : %{!S:-o %|.s |\n as %(asm_options) %m.s %A }\
1319 : : }";
1320 : : #endif
1321 : :
1322 : : /* Some compilers have limits on line lengths, and the multilib_select
1323 : : and/or multilib_matches strings can be very long, so we build them at
1324 : : run time. */
1325 : : static struct obstack multilib_obstack;
1326 : : static const char *multilib_select;
1327 : : static const char *multilib_matches;
1328 : : static const char *multilib_defaults;
1329 : : static const char *multilib_exclusions;
1330 : : static const char *multilib_reuse;
1331 : :
1332 : : /* Check whether a particular argument is a default argument. */
1333 : :
1334 : : #ifndef MULTILIB_DEFAULTS
1335 : : #define MULTILIB_DEFAULTS { "" }
1336 : : #endif
1337 : :
1338 : : static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
1339 : :
1340 : : #ifndef DRIVER_SELF_SPECS
1341 : : #define DRIVER_SELF_SPECS ""
1342 : : #endif
1343 : :
1344 : : /* Linking to libgomp implies pthreads. This is particularly important
1345 : : for targets that use different start files and suchlike. */
1346 : : #ifndef GOMP_SELF_SPECS
1347 : : #define GOMP_SELF_SPECS \
1348 : : "%{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1): " \
1349 : : "-pthread}"
1350 : : #endif
1351 : :
1352 : : /* Likewise for -fgnu-tm. */
1353 : : #ifndef GTM_SELF_SPECS
1354 : : #define GTM_SELF_SPECS "%{fgnu-tm: -pthread}"
1355 : : #endif
1356 : :
1357 : : static const char *const driver_self_specs[] = {
1358 : : "%{fdump-final-insns:-fdump-final-insns=.} %<fdump-final-insns",
1359 : : DRIVER_SELF_SPECS, CONFIGURE_SPECS, GOMP_SELF_SPECS, GTM_SELF_SPECS,
1360 : : /* This discards -fmultiflags at the end of self specs processing in the
1361 : : driver, so that it is effectively Ignored, without actually marking it as
1362 : : Ignored, which would get it discarded before self specs could remap it. */
1363 : : "%<fmultiflags"
1364 : : };
1365 : :
1366 : : #ifndef OPTION_DEFAULT_SPECS
1367 : : #define OPTION_DEFAULT_SPECS { "", "" }
1368 : : #endif
1369 : :
1370 : : struct default_spec
1371 : : {
1372 : : const char *name;
1373 : : const char *spec;
1374 : : };
1375 : :
1376 : : static const struct default_spec
1377 : : option_default_specs[] = { OPTION_DEFAULT_SPECS };
1378 : :
1379 : : struct user_specs
1380 : : {
1381 : : struct user_specs *next;
1382 : : const char *filename;
1383 : : };
1384 : :
1385 : : static struct user_specs *user_specs_head, *user_specs_tail;
1386 : :
1387 : :
1388 : : /* Record the mapping from file suffixes for compilation specs. */
1389 : :
1390 : : struct compiler
1391 : : {
1392 : : const char *suffix; /* Use this compiler for input files
1393 : : whose names end in this suffix. */
1394 : :
1395 : : const char *spec; /* To use this compiler, run this spec. */
1396 : :
1397 : : const char *cpp_spec; /* If non-NULL, substitute this spec
1398 : : for `%C', rather than the usual
1399 : : cpp_spec. */
1400 : : int combinable; /* If nonzero, compiler can deal with
1401 : : multiple source files at once (IMA). */
1402 : : int needs_preprocessing; /* If nonzero, source files need to
1403 : : be run through a preprocessor. */
1404 : : };
1405 : :
1406 : : /* Pointer to a vector of `struct compiler' that gives the spec for
1407 : : compiling a file, based on its suffix.
1408 : : A file that does not end in any of these suffixes will be passed
1409 : : unchanged to the loader and nothing else will be done to it.
1410 : :
1411 : : An entry containing two 0s is used to terminate the vector.
1412 : :
1413 : : If multiple entries match a file, the last matching one is used. */
1414 : :
1415 : : static struct compiler *compilers;
1416 : :
1417 : : /* Number of entries in `compilers', not counting the null terminator. */
1418 : :
1419 : : static int n_compilers;
1420 : :
1421 : : /* The default list of file name suffixes and their compilation specs. */
1422 : :
1423 : : static const struct compiler default_compilers[] =
1424 : : {
1425 : : /* Add lists of suffixes of known languages here. If those languages
1426 : : were not present when we built the driver, we will hit these copies
1427 : : and be given a more meaningful error than "file not used since
1428 : : linking is not done". */
1429 : : {".m", "#Objective-C", 0, 0, 0}, {".mi", "#Objective-C", 0, 0, 0},
1430 : : {".mm", "#Objective-C++", 0, 0, 0}, {".M", "#Objective-C++", 0, 0, 0},
1431 : : {".mii", "#Objective-C++", 0, 0, 0},
1432 : : {".cc", "#C++", 0, 0, 0}, {".cxx", "#C++", 0, 0, 0},
1433 : : {".cpp", "#C++", 0, 0, 0}, {".cp", "#C++", 0, 0, 0},
1434 : : {".c++", "#C++", 0, 0, 0}, {".C", "#C++", 0, 0, 0},
1435 : : {".CPP", "#C++", 0, 0, 0}, {".ii", "#C++", 0, 0, 0},
1436 : : {".ads", "#Ada", 0, 0, 0}, {".adb", "#Ada", 0, 0, 0},
1437 : : {".f", "#Fortran", 0, 0, 0}, {".F", "#Fortran", 0, 0, 0},
1438 : : {".for", "#Fortran", 0, 0, 0}, {".FOR", "#Fortran", 0, 0, 0},
1439 : : {".ftn", "#Fortran", 0, 0, 0}, {".FTN", "#Fortran", 0, 0, 0},
1440 : : {".fpp", "#Fortran", 0, 0, 0}, {".FPP", "#Fortran", 0, 0, 0},
1441 : : {".f90", "#Fortran", 0, 0, 0}, {".F90", "#Fortran", 0, 0, 0},
1442 : : {".f95", "#Fortran", 0, 0, 0}, {".F95", "#Fortran", 0, 0, 0},
1443 : : {".f03", "#Fortran", 0, 0, 0}, {".F03", "#Fortran", 0, 0, 0},
1444 : : {".f08", "#Fortran", 0, 0, 0}, {".F08", "#Fortran", 0, 0, 0},
1445 : : {".r", "#Ratfor", 0, 0, 0},
1446 : : {".go", "#Go", 0, 1, 0},
1447 : : {".d", "#D", 0, 1, 0}, {".dd", "#D", 0, 1, 0}, {".di", "#D", 0, 1, 0},
1448 : : {".mod", "#Modula-2", 0, 0, 0}, {".m2i", "#Modula-2", 0, 0, 0},
1449 : : /* Next come the entries for C. */
1450 : : {".c", "@c", 0, 0, 1},
1451 : : {"@c",
1452 : : /* cc1 has an integrated ISO C preprocessor. We should invoke the
1453 : : external preprocessor if -save-temps is given. */
1454 : : "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1455 : : %{!E:%{!M:%{!MM:\
1456 : : %{traditional:\
1457 : : %eGNU C no longer supports -traditional without -E}\
1458 : : %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1459 : : %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1460 : : cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1461 : : %(cc1_options)}\
1462 : : %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1463 : : cc1 %(cpp_unique_options) %(cc1_options)}}}\
1464 : : %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 1},
1465 : : {"-",
1466 : : "%{!E:%e-E or -x required when input is from standard input}\
1467 : : %(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)", 0, 0, 0},
1468 : : {".h", "@c-header", 0, 0, 0},
1469 : : {"@c-header",
1470 : : /* cc1 has an integrated ISO C preprocessor. We should invoke the
1471 : : external preprocessor if -save-temps is given. */
1472 : : "%{E|M|MM:%(trad_capable_cpp) %(cpp_options) %(cpp_debug_options)}\
1473 : : %{!E:%{!M:%{!MM:\
1474 : : %{save-temps*|traditional-cpp|no-integrated-cpp:%(trad_capable_cpp) \
1475 : : %(cpp_options) -o %{save-temps*:%b.i} %{!save-temps*:%g.i} \n\
1476 : : cc1 -fpreprocessed %{save-temps*:%b.i} %{!save-temps*:%g.i} \
1477 : : %(cc1_options)\
1478 : : %{!fsyntax-only:%{!S:-o %g.s} \
1479 : : %{!fdump-ada-spec*:%{!o*:--output-pch %w%i.gch}\
1480 : : %W{o*:--output-pch %w%*}}%{!S:%V}}}\
1481 : : %{!save-temps*:%{!traditional-cpp:%{!no-integrated-cpp:\
1482 : : cc1 %(cpp_unique_options) %(cc1_options)\
1483 : : %{!fsyntax-only:%{!S:-o %g.s} \
1484 : : %{!fdump-ada-spec*:%{!o*:--output-pch %w%i.gch}\
1485 : : %W{o*:--output-pch %w%*}}%{!S:%V}}}}}}}}", 0, 0, 0},
1486 : : {".i", "@cpp-output", 0, 0, 0},
1487 : : {"@cpp-output",
1488 : : "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
1489 : : {".s", "@assembler", 0, 0, 0},
1490 : : {"@assembler",
1491 : : "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
1492 : : {".sx", "@assembler-with-cpp", 0, 0, 0},
1493 : : {".S", "@assembler-with-cpp", 0, 0, 0},
1494 : : {"@assembler-with-cpp",
1495 : : #ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
1496 : : "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1497 : : %{E|M|MM:%(cpp_debug_options)}\
1498 : : %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1499 : : as %(asm_debug) %(asm_options) %|.s %A }}}}"
1500 : : #else
1501 : : "%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
1502 : : %{E|M|MM:%(cpp_debug_options)}\
1503 : : %{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
1504 : : as %(asm_debug) %(asm_options) %m.s %A }}}}"
1505 : : #endif
1506 : : , 0, 0, 0},
1507 : :
1508 : : #include "specs.h"
1509 : : /* Mark end of table. */
1510 : : {0, 0, 0, 0, 0}
1511 : : };
1512 : :
1513 : : /* Number of elements in default_compilers, not counting the terminator. */
1514 : :
1515 : : static const int n_default_compilers = ARRAY_SIZE (default_compilers) - 1;
1516 : :
1517 : : typedef char *char_p; /* For DEF_VEC_P. */
1518 : :
1519 : : /* A vector of options to give to the linker.
1520 : : These options are accumulated by %x,
1521 : : and substituted into the linker command with %X. */
1522 : : static vec<char_p> linker_options;
1523 : :
1524 : : /* A vector of options to give to the assembler.
1525 : : These options are accumulated by -Wa,
1526 : : and substituted into the assembler command with %Y. */
1527 : : static vec<char_p> assembler_options;
1528 : :
1529 : : /* A vector of options to give to the preprocessor.
1530 : : These options are accumulated by -Wp,
1531 : : and substituted into the preprocessor command with %Z. */
1532 : : static vec<char_p> preprocessor_options;
1533 : :
1534 : : static char *
1535 : 27600589 : skip_whitespace (char *p)
1536 : : {
1537 : 63970039 : while (1)
1538 : : {
1539 : : /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1540 : : be considered whitespace. */
1541 : 63970039 : if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1542 : 4631056 : return p + 1;
1543 : 59338983 : else if (*p == '\n' || *p == ' ' || *p == '\t')
1544 : 36254010 : p++;
1545 : 23084973 : else if (*p == '#')
1546 : : {
1547 : 3553565 : while (*p != '\n')
1548 : 3438125 : p++;
1549 : 115440 : p++;
1550 : : }
1551 : : else
1552 : : break;
1553 : : }
1554 : :
1555 : : return p;
1556 : : }
1557 : : /* Structures to keep track of prefixes to try when looking for files. */
1558 : :
1559 : : struct prefix_list
1560 : : {
1561 : : const char *prefix; /* String to prepend to the path. */
1562 : : struct prefix_list *next; /* Next in linked list. */
1563 : : int require_machine_suffix; /* Don't use without machine_suffix. */
1564 : : /* 2 means try both machine_suffix and just_machine_suffix. */
1565 : : int priority; /* Sort key - priority within list. */
1566 : : int os_multilib; /* 1 if OS multilib scheme should be used,
1567 : : 0 for GCC multilib scheme. */
1568 : : };
1569 : :
1570 : : struct path_prefix
1571 : : {
1572 : : struct prefix_list *plist; /* List of prefixes to try */
1573 : : int max_len; /* Max length of a prefix in PLIST */
1574 : : const char *name; /* Name of this list (used in config stuff) */
1575 : : };
1576 : :
1577 : : /* List of prefixes to try when looking for executables. */
1578 : :
1579 : : static struct path_prefix exec_prefixes = { 0, 0, "exec" };
1580 : :
1581 : : /* List of prefixes to try when looking for startup (crt0) files. */
1582 : :
1583 : : static struct path_prefix startfile_prefixes = { 0, 0, "startfile" };
1584 : :
1585 : : /* List of prefixes to try when looking for include files. */
1586 : :
1587 : : static struct path_prefix include_prefixes = { 0, 0, "include" };
1588 : :
1589 : : /* Suffix to attach to directories searched for commands.
1590 : : This looks like `MACHINE/VERSION/'. */
1591 : :
1592 : : static const char *machine_suffix = 0;
1593 : :
1594 : : /* Suffix to attach to directories searched for commands.
1595 : : This is just `MACHINE/'. */
1596 : :
1597 : : static const char *just_machine_suffix = 0;
1598 : :
1599 : : /* Adjusted value of GCC_EXEC_PREFIX envvar. */
1600 : :
1601 : : static const char *gcc_exec_prefix;
1602 : :
1603 : : /* Adjusted value of standard_libexec_prefix. */
1604 : :
1605 : : static const char *gcc_libexec_prefix;
1606 : :
1607 : : /* Default prefixes to attach to command names. */
1608 : :
1609 : : #ifndef STANDARD_STARTFILE_PREFIX_1
1610 : : #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
1611 : : #endif
1612 : : #ifndef STANDARD_STARTFILE_PREFIX_2
1613 : : #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
1614 : : #endif
1615 : :
1616 : : #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
1617 : : #undef MD_EXEC_PREFIX
1618 : : #undef MD_STARTFILE_PREFIX
1619 : : #undef MD_STARTFILE_PREFIX_1
1620 : : #endif
1621 : :
1622 : : /* If no prefixes defined, use the null string, which will disable them. */
1623 : : #ifndef MD_EXEC_PREFIX
1624 : : #define MD_EXEC_PREFIX ""
1625 : : #endif
1626 : : #ifndef MD_STARTFILE_PREFIX
1627 : : #define MD_STARTFILE_PREFIX ""
1628 : : #endif
1629 : : #ifndef MD_STARTFILE_PREFIX_1
1630 : : #define MD_STARTFILE_PREFIX_1 ""
1631 : : #endif
1632 : :
1633 : : /* These directories are locations set at configure-time based on the
1634 : : --prefix option provided to configure. Their initializers are
1635 : : defined in Makefile.in. These paths are not *directly* used when
1636 : : gcc_exec_prefix is set because, in that case, we know where the
1637 : : compiler has been installed, and use paths relative to that
1638 : : location instead. */
1639 : : static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
1640 : : static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
1641 : : static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
1642 : : static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
1643 : :
1644 : : /* For native compilers, these are well-known paths containing
1645 : : components that may be provided by the system. For cross
1646 : : compilers, these paths are not used. */
1647 : : static const char *md_exec_prefix = MD_EXEC_PREFIX;
1648 : : static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
1649 : : static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
1650 : : static const char *const standard_startfile_prefix_1
1651 : : = STANDARD_STARTFILE_PREFIX_1;
1652 : : static const char *const standard_startfile_prefix_2
1653 : : = STANDARD_STARTFILE_PREFIX_2;
1654 : :
1655 : : /* A relative path to be used in finding the location of tools
1656 : : relative to the driver. */
1657 : : static const char *const tooldir_base_prefix = TOOLDIR_BASE_PREFIX;
1658 : :
1659 : : /* A prefix to be used when this is an accelerator compiler. */
1660 : : static const char *const accel_dir_suffix = ACCEL_DIR_SUFFIX;
1661 : :
1662 : : /* Subdirectory to use for locating libraries. Set by
1663 : : set_multilib_dir based on the compilation options. */
1664 : :
1665 : : static const char *multilib_dir;
1666 : :
1667 : : /* Subdirectory to use for locating libraries in OS conventions. Set by
1668 : : set_multilib_dir based on the compilation options. */
1669 : :
1670 : : static const char *multilib_os_dir;
1671 : :
1672 : : /* Subdirectory to use for locating libraries in multiarch conventions. Set by
1673 : : set_multilib_dir based on the compilation options. */
1674 : :
1675 : : static const char *multiarch_dir;
1676 : :
1677 : : /* Structure to keep track of the specs that have been defined so far.
1678 : : These are accessed using %(specname) in a compiler or link
1679 : : spec. */
1680 : :
1681 : : struct spec_list
1682 : : {
1683 : : /* The following 2 fields must be first */
1684 : : /* to allow EXTRA_SPECS to be initialized */
1685 : : const char *name; /* name of the spec. */
1686 : : const char *ptr; /* available ptr if no static pointer */
1687 : :
1688 : : /* The following fields are not initialized */
1689 : : /* by EXTRA_SPECS */
1690 : : const char **ptr_spec; /* pointer to the spec itself. */
1691 : : struct spec_list *next; /* Next spec in linked list. */
1692 : : int name_len; /* length of the name */
1693 : : bool user_p; /* whether string come from file spec. */
1694 : : bool alloc_p; /* whether string was allocated */
1695 : : const char *default_ptr; /* The default value of *ptr_spec. */
1696 : : };
1697 : :
1698 : : #define INIT_STATIC_SPEC(NAME,PTR) \
1699 : : { NAME, NULL, PTR, (struct spec_list *) 0, sizeof (NAME) - 1, false, false, \
1700 : : *PTR }
1701 : :
1702 : : /* List of statically defined specs. */
1703 : : static struct spec_list static_specs[] =
1704 : : {
1705 : : INIT_STATIC_SPEC ("asm", &asm_spec),
1706 : : INIT_STATIC_SPEC ("asm_debug", &asm_debug),
1707 : : INIT_STATIC_SPEC ("asm_debug_option", &asm_debug_option),
1708 : : INIT_STATIC_SPEC ("asm_final", &asm_final_spec),
1709 : : INIT_STATIC_SPEC ("asm_options", &asm_options),
1710 : : INIT_STATIC_SPEC ("invoke_as", &invoke_as),
1711 : : INIT_STATIC_SPEC ("cpp", &cpp_spec),
1712 : : INIT_STATIC_SPEC ("cpp_options", &cpp_options),
1713 : : INIT_STATIC_SPEC ("cpp_debug_options", &cpp_debug_options),
1714 : : INIT_STATIC_SPEC ("cpp_unique_options", &cpp_unique_options),
1715 : : INIT_STATIC_SPEC ("trad_capable_cpp", &trad_capable_cpp),
1716 : : INIT_STATIC_SPEC ("cc1", &cc1_spec),
1717 : : INIT_STATIC_SPEC ("cc1_options", &cc1_options),
1718 : : INIT_STATIC_SPEC ("cc1plus", &cc1plus_spec),
1719 : : INIT_STATIC_SPEC ("link_gcc_c_sequence", &link_gcc_c_sequence_spec),
1720 : : INIT_STATIC_SPEC ("link_ssp", &link_ssp_spec),
1721 : : INIT_STATIC_SPEC ("endfile", &endfile_spec),
1722 : : INIT_STATIC_SPEC ("link", &link_spec),
1723 : : INIT_STATIC_SPEC ("lib", &lib_spec),
1724 : : INIT_STATIC_SPEC ("link_gomp", &link_gomp_spec),
1725 : : INIT_STATIC_SPEC ("libgcc", &libgcc_spec),
1726 : : INIT_STATIC_SPEC ("startfile", &startfile_spec),
1727 : : INIT_STATIC_SPEC ("cross_compile", &cross_compile),
1728 : : INIT_STATIC_SPEC ("version", &compiler_version),
1729 : : INIT_STATIC_SPEC ("multilib", &multilib_select),
1730 : : INIT_STATIC_SPEC ("multilib_defaults", &multilib_defaults),
1731 : : INIT_STATIC_SPEC ("multilib_extra", &multilib_extra),
1732 : : INIT_STATIC_SPEC ("multilib_matches", &multilib_matches),
1733 : : INIT_STATIC_SPEC ("multilib_exclusions", &multilib_exclusions),
1734 : : INIT_STATIC_SPEC ("multilib_options", &multilib_options),
1735 : : INIT_STATIC_SPEC ("multilib_reuse", &multilib_reuse),
1736 : : INIT_STATIC_SPEC ("linker", &linker_name_spec),
1737 : : INIT_STATIC_SPEC ("linker_plugin_file", &linker_plugin_file_spec),
1738 : : INIT_STATIC_SPEC ("lto_wrapper", <o_wrapper_spec),
1739 : : INIT_STATIC_SPEC ("lto_gcc", <o_gcc_spec),
1740 : : INIT_STATIC_SPEC ("post_link", &post_link_spec),
1741 : : INIT_STATIC_SPEC ("link_libgcc", &link_libgcc_spec),
1742 : : INIT_STATIC_SPEC ("md_exec_prefix", &md_exec_prefix),
1743 : : INIT_STATIC_SPEC ("md_startfile_prefix", &md_startfile_prefix),
1744 : : INIT_STATIC_SPEC ("md_startfile_prefix_1", &md_startfile_prefix_1),
1745 : : INIT_STATIC_SPEC ("startfile_prefix_spec", &startfile_prefix_spec),
1746 : : INIT_STATIC_SPEC ("sysroot_spec", &sysroot_spec),
1747 : : INIT_STATIC_SPEC ("sysroot_suffix_spec", &sysroot_suffix_spec),
1748 : : INIT_STATIC_SPEC ("sysroot_hdrs_suffix_spec", &sysroot_hdrs_suffix_spec),
1749 : : INIT_STATIC_SPEC ("self_spec", &self_spec),
1750 : : };
1751 : :
1752 : : #ifdef EXTRA_SPECS /* additional specs needed */
1753 : : /* Structure to keep track of just the first two args of a spec_list.
1754 : : That is all that the EXTRA_SPECS macro gives us. */
1755 : : struct spec_list_1
1756 : : {
1757 : : const char *const name;
1758 : : const char *const ptr;
1759 : : };
1760 : :
1761 : : static const struct spec_list_1 extra_specs_1[] = { EXTRA_SPECS };
1762 : : static struct spec_list *extra_specs = (struct spec_list *) 0;
1763 : : #endif
1764 : :
1765 : : /* List of dynamically allocates specs that have been defined so far. */
1766 : :
1767 : : static struct spec_list *specs = (struct spec_list *) 0;
1768 : :
1769 : : /* List of static spec functions. */
1770 : :
1771 : : static const struct spec_function static_spec_functions[] =
1772 : : {
1773 : : { "getenv", getenv_spec_function },
1774 : : { "if-exists", if_exists_spec_function },
1775 : : { "if-exists-else", if_exists_else_spec_function },
1776 : : { "if-exists-then-else", if_exists_then_else_spec_function },
1777 : : { "sanitize", sanitize_spec_function },
1778 : : { "replace-outfile", replace_outfile_spec_function },
1779 : : { "remove-outfile", remove_outfile_spec_function },
1780 : : { "version-compare", version_compare_spec_function },
1781 : : { "include", include_spec_function },
1782 : : { "find-file", find_file_spec_function },
1783 : : { "find-plugindir", find_plugindir_spec_function },
1784 : : { "print-asm-header", print_asm_header_spec_function },
1785 : : { "compare-debug-dump-opt", compare_debug_dump_opt_spec_function },
1786 : : { "compare-debug-self-opt", compare_debug_self_opt_spec_function },
1787 : : { "pass-through-libs", pass_through_libs_spec_func },
1788 : : { "dumps", dumps_spec_func },
1789 : : { "gt", greater_than_spec_func },
1790 : : { "debug-level-gt", debug_level_greater_than_spec_func },
1791 : : { "dwarf-version-gt", dwarf_version_greater_than_spec_func },
1792 : : { "fortran-preinclude-file", find_fortran_preinclude_file},
1793 : : { "join", join_spec_func},
1794 : : #ifdef EXTRA_SPEC_FUNCTIONS
1795 : : EXTRA_SPEC_FUNCTIONS
1796 : : #endif
1797 : : { 0, 0 }
1798 : : };
1799 : :
1800 : : static int processing_spec_function;
1801 : :
1802 : : /* Add appropriate libgcc specs to OBSTACK, taking into account
1803 : : various permutations of -shared-libgcc, -shared, and such. */
1804 : :
1805 : : #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1806 : :
1807 : : #ifndef USE_LD_AS_NEEDED
1808 : : #define USE_LD_AS_NEEDED 0
1809 : : #endif
1810 : :
1811 : : static void
1812 : 1168 : init_gcc_specs (struct obstack *obstack, const char *shared_name,
1813 : : const char *static_name, const char *eh_name)
1814 : : {
1815 : 1168 : char *buf;
1816 : :
1817 : : #if USE_LD_AS_NEEDED
1818 : 1168 : buf = concat ("%{static|static-libgcc|static-pie:", static_name, " ", eh_name, "}"
1819 : : "%{!static:%{!static-libgcc:%{!static-pie:"
1820 : : "%{!shared-libgcc:",
1821 : : static_name, " " LD_AS_NEEDED_OPTION " ",
1822 : : shared_name, " " LD_NO_AS_NEEDED_OPTION
1823 : : "}"
1824 : : "%{shared-libgcc:",
1825 : : shared_name, "%{!shared: ", static_name, "}"
1826 : : "}}"
1827 : : #else
1828 : : buf = concat ("%{static|static-libgcc:", static_name, " ", eh_name, "}"
1829 : : "%{!static:%{!static-libgcc:"
1830 : : "%{!shared:"
1831 : : "%{!shared-libgcc:", static_name, " ", eh_name, "}"
1832 : : "%{shared-libgcc:", shared_name, " ", static_name, "}"
1833 : : "}"
1834 : : #ifdef LINK_EH_SPEC
1835 : : "%{shared:"
1836 : : "%{shared-libgcc:", shared_name, "}"
1837 : : "%{!shared-libgcc:", static_name, "}"
1838 : : "}"
1839 : : #else
1840 : : "%{shared:", shared_name, "}"
1841 : : #endif
1842 : : #endif
1843 : : "}}", NULL);
1844 : :
1845 : 1168 : obstack_grow (obstack, buf, strlen (buf));
1846 : 1168 : free (buf);
1847 : 1168 : }
1848 : : #endif /* ENABLE_SHARED_LIBGCC */
1849 : :
1850 : : /* Initialize the specs lookup routines. */
1851 : :
1852 : : static void
1853 : 1168 : init_spec (void)
1854 : : {
1855 : 1168 : struct spec_list *next = (struct spec_list *) 0;
1856 : 1168 : struct spec_list *sl = (struct spec_list *) 0;
1857 : 1168 : int i;
1858 : :
1859 : 1168 : if (specs)
1860 : : return; /* Already initialized. */
1861 : :
1862 : 1168 : if (verbose_flag)
1863 : 113 : fnotice (stderr, "Using built-in specs.\n");
1864 : :
1865 : : #ifdef EXTRA_SPECS
1866 : 1168 : extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1867 : :
1868 : 2336 : for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1869 : : {
1870 : 1168 : sl = &extra_specs[i];
1871 : 1168 : sl->name = extra_specs_1[i].name;
1872 : 1168 : sl->ptr = extra_specs_1[i].ptr;
1873 : 1168 : sl->next = next;
1874 : 1168 : sl->name_len = strlen (sl->name);
1875 : 1168 : sl->ptr_spec = &sl->ptr;
1876 : 1168 : gcc_assert (sl->ptr_spec != NULL);
1877 : 1168 : sl->default_ptr = sl->ptr;
1878 : 1168 : next = sl;
1879 : : }
1880 : : #endif
1881 : :
1882 : 53728 : for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1883 : : {
1884 : 52560 : sl = &static_specs[i];
1885 : 52560 : sl->next = next;
1886 : 52560 : next = sl;
1887 : : }
1888 : :
1889 : : #if defined(ENABLE_SHARED_LIBGCC) && !defined(REAL_LIBGCC_SPEC)
1890 : : /* ??? If neither -shared-libgcc nor --static-libgcc was
1891 : : seen, then we should be making an educated guess. Some proposed
1892 : : heuristics for ELF include:
1893 : :
1894 : : (1) If "-Wl,--export-dynamic", then it's a fair bet that the
1895 : : program will be doing dynamic loading, which will likely
1896 : : need the shared libgcc.
1897 : :
1898 : : (2) If "-ldl", then it's also a fair bet that we're doing
1899 : : dynamic loading.
1900 : :
1901 : : (3) For each ET_DYN we're linking against (either through -lfoo
1902 : : or /some/path/foo.so), check to see whether it or one of
1903 : : its dependencies depends on a shared libgcc.
1904 : :
1905 : : (4) If "-shared"
1906 : :
1907 : : If the runtime is fixed to look for program headers instead
1908 : : of calling __register_frame_info at all, for each object,
1909 : : use the shared libgcc if any EH symbol referenced.
1910 : :
1911 : : If crtstuff is fixed to not invoke __register_frame_info
1912 : : automatically, for each object, use the shared libgcc if
1913 : : any non-empty unwind section found.
1914 : :
1915 : : Doing any of this probably requires invoking an external program to
1916 : : do the actual object file scanning. */
1917 : 1168 : {
1918 : 1168 : const char *p = libgcc_spec;
1919 : 1168 : int in_sep = 1;
1920 : :
1921 : : /* Transform the extant libgcc_spec into one that uses the shared libgcc
1922 : : when given the proper command line arguments. */
1923 : 2336 : while (*p)
1924 : : {
1925 : 1168 : if (in_sep && *p == '-' && startswith (p, "-lgcc"))
1926 : : {
1927 : 1168 : init_gcc_specs (&obstack,
1928 : : "-lgcc_s"
1929 : : #ifdef USE_LIBUNWIND_EXCEPTIONS
1930 : : " -lunwind"
1931 : : #endif
1932 : : ,
1933 : : "-lgcc",
1934 : : "-lgcc_eh"
1935 : : #ifdef USE_LIBUNWIND_EXCEPTIONS
1936 : : # ifdef HAVE_LD_STATIC_DYNAMIC
1937 : : " %{!static:%{!static-pie:" LD_STATIC_OPTION "}} -lunwind"
1938 : : " %{!static:%{!static-pie:" LD_DYNAMIC_OPTION "}}"
1939 : : # else
1940 : : " -lunwind"
1941 : : # endif
1942 : : #endif
1943 : : );
1944 : :
1945 : 1168 : p += 5;
1946 : 1168 : in_sep = 0;
1947 : : }
1948 : 0 : else if (in_sep && *p == 'l' && startswith (p, "libgcc.a%s"))
1949 : : {
1950 : : /* Ug. We don't know shared library extensions. Hope that
1951 : : systems that use this form don't do shared libraries. */
1952 : 0 : init_gcc_specs (&obstack,
1953 : : "-lgcc_s",
1954 : : "libgcc.a%s",
1955 : : "libgcc_eh.a%s"
1956 : : #ifdef USE_LIBUNWIND_EXCEPTIONS
1957 : : " -lunwind"
1958 : : #endif
1959 : : );
1960 : 0 : p += 10;
1961 : 0 : in_sep = 0;
1962 : : }
1963 : : else
1964 : : {
1965 : 0 : obstack_1grow (&obstack, *p);
1966 : 0 : in_sep = (*p == ' ');
1967 : 0 : p += 1;
1968 : : }
1969 : : }
1970 : :
1971 : 1168 : obstack_1grow (&obstack, '\0');
1972 : 1168 : libgcc_spec = XOBFINISH (&obstack, const char *);
1973 : : }
1974 : : #endif
1975 : : #ifdef USE_AS_TRADITIONAL_FORMAT
1976 : : /* Prepend "--traditional-format" to whatever asm_spec we had before. */
1977 : : {
1978 : : static const char tf[] = "--traditional-format ";
1979 : : obstack_grow (&obstack, tf, sizeof (tf) - 1);
1980 : : obstack_grow0 (&obstack, asm_spec, strlen (asm_spec));
1981 : : asm_spec = XOBFINISH (&obstack, const char *);
1982 : : }
1983 : : #endif
1984 : :
1985 : : #if defined LINK_EH_SPEC || defined LINK_BUILDID_SPEC || \
1986 : : defined LINKER_HASH_STYLE
1987 : : # ifdef LINK_BUILDID_SPEC
1988 : : /* Prepend LINK_BUILDID_SPEC to whatever link_spec we had before. */
1989 : : obstack_grow (&obstack, LINK_BUILDID_SPEC, sizeof (LINK_BUILDID_SPEC) - 1);
1990 : : # endif
1991 : : # ifdef LINK_EH_SPEC
1992 : : /* Prepend LINK_EH_SPEC to whatever link_spec we had before. */
1993 : 1168 : obstack_grow (&obstack, LINK_EH_SPEC, sizeof (LINK_EH_SPEC) - 1);
1994 : : # endif
1995 : : # ifdef LINKER_HASH_STYLE
1996 : : /* Prepend --hash-style=LINKER_HASH_STYLE to whatever link_spec we had
1997 : : before. */
1998 : : {
1999 : : static const char hash_style[] = "--hash-style=";
2000 : : obstack_grow (&obstack, hash_style, sizeof (hash_style) - 1);
2001 : : obstack_grow (&obstack, LINKER_HASH_STYLE, sizeof (LINKER_HASH_STYLE) - 1);
2002 : : obstack_1grow (&obstack, ' ');
2003 : : }
2004 : : # endif
2005 : 1168 : obstack_grow0 (&obstack, link_spec, strlen (link_spec));
2006 : 1168 : link_spec = XOBFINISH (&obstack, const char *);
2007 : : #endif
2008 : :
2009 : 1168 : specs = sl;
2010 : : }
2011 : :
2012 : : /* Update the entry for SPEC in the static_specs table to point to VALUE,
2013 : : ensuring that we free the previous value if necessary. Set alloc_p for the
2014 : : entry to ALLOC_P: this determines whether we take ownership of VALUE (i.e.
2015 : : whether we need to free it later on). */
2016 : : static void
2017 : 203880 : set_static_spec (const char **spec, const char *value, bool alloc_p)
2018 : : {
2019 : 203880 : struct spec_list *sl = NULL;
2020 : :
2021 : 7039768 : for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
2022 : : {
2023 : 7039768 : if (static_specs[i].ptr_spec == spec)
2024 : : {
2025 : 203880 : sl = static_specs + i;
2026 : 203880 : break;
2027 : : }
2028 : : }
2029 : :
2030 : 0 : gcc_assert (sl);
2031 : :
2032 : 203880 : if (sl->alloc_p)
2033 : : {
2034 : 203880 : const char *old = *spec;
2035 : 203880 : free (const_cast <char *> (old));
2036 : : }
2037 : :
2038 : 203880 : *spec = value;
2039 : 203880 : sl->alloc_p = alloc_p;
2040 : 203880 : }
2041 : :
2042 : : /* Update a static spec to a new string, taking ownership of that
2043 : : string's memory. */
2044 : 105803 : static void set_static_spec_owned (const char **spec, const char *val)
2045 : : {
2046 : 0 : return set_static_spec (spec, val, true);
2047 : : }
2048 : :
2049 : : /* Update a static spec to point to a new value, but don't take
2050 : : ownership of (i.e. don't free) that string. */
2051 : 98077 : static void set_static_spec_shared (const char **spec, const char *val)
2052 : : {
2053 : 0 : return set_static_spec (spec, val, false);
2054 : : }
2055 : :
2056 : :
2057 : : /* Change the value of spec NAME to SPEC. If SPEC is empty, then the spec is
2058 : : removed; If the spec starts with a + then SPEC is added to the end of the
2059 : : current spec. */
2060 : :
2061 : : static void
2062 : 13361625 : set_spec (const char *name, const char *spec, bool user_p)
2063 : : {
2064 : 13361625 : struct spec_list *sl;
2065 : 13361625 : const char *old_spec;
2066 : 13361625 : int name_len = strlen (name);
2067 : 13361625 : int i;
2068 : :
2069 : : /* If this is the first call, initialize the statically allocated specs. */
2070 : 13361625 : if (!specs)
2071 : : {
2072 : : struct spec_list *next = (struct spec_list *) 0;
2073 : 13314286 : for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
2074 : : {
2075 : 13024845 : sl = &static_specs[i];
2076 : 13024845 : sl->next = next;
2077 : 13024845 : next = sl;
2078 : : }
2079 : 289441 : specs = sl;
2080 : : }
2081 : :
2082 : : /* See if the spec already exists. */
2083 : 314425204 : for (sl = specs; sl; sl = sl->next)
2084 : 314114792 : if (name_len == sl->name_len && !strcmp (sl->name, name))
2085 : : break;
2086 : :
2087 : 13361625 : if (!sl)
2088 : : {
2089 : : /* Not found - make it. */
2090 : 310412 : sl = XNEW (struct spec_list);
2091 : 310412 : sl->name = xstrdup (name);
2092 : 310412 : sl->name_len = name_len;
2093 : 310412 : sl->ptr_spec = &sl->ptr;
2094 : 310412 : sl->alloc_p = 0;
2095 : 310412 : *(sl->ptr_spec) = "";
2096 : 310412 : sl->next = specs;
2097 : 310412 : sl->default_ptr = NULL;
2098 : 310412 : specs = sl;
2099 : : }
2100 : :
2101 : 13361625 : old_spec = *(sl->ptr_spec);
2102 : 13361625 : *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
2103 : 1 : ? concat (old_spec, spec + 1, NULL)
2104 : 13361624 : : xstrdup (spec));
2105 : :
2106 : : #ifdef DEBUG_SPECS
2107 : : if (verbose_flag)
2108 : : fnotice (stderr, "Setting spec %s to '%s'\n\n", name, *(sl->ptr_spec));
2109 : : #endif
2110 : :
2111 : : /* Free the old spec. */
2112 : 13361625 : if (old_spec && sl->alloc_p)
2113 : 5490 : free (CONST_CAST (char *, old_spec));
2114 : :
2115 : 13361625 : sl->user_p = user_p;
2116 : 13361625 : sl->alloc_p = true;
2117 : 13361625 : }
2118 : :
2119 : : /* Accumulate a command (program name and args), and run it. */
2120 : :
2121 : : typedef const char *const_char_p; /* For DEF_VEC_P. */
2122 : :
2123 : : /* Vector of pointers to arguments in the current line of specifications. */
2124 : : static vec<const_char_p> argbuf;
2125 : :
2126 : : /* Likewise, but for the current @file. */
2127 : : static vec<const_char_p> at_file_argbuf;
2128 : :
2129 : : /* Whether an @file is currently open. */
2130 : : static bool in_at_file = false;
2131 : :
2132 : : /* Were the options -c, -S or -E passed. */
2133 : : static int have_c = 0;
2134 : :
2135 : : /* Was the option -o passed. */
2136 : : static int have_o = 0;
2137 : :
2138 : : /* Was the option -E passed. */
2139 : : static int have_E = 0;
2140 : :
2141 : : /* Pointer to output file name passed in with -o. */
2142 : : static const char *output_file = 0;
2143 : :
2144 : : /* Pointer to input file name passed in with -truncate.
2145 : : This file should be truncated after linking. */
2146 : : static const char *totruncate_file = 0;
2147 : :
2148 : : /* This is the list of suffixes and codes (%g/%u/%U/%j) and the associated
2149 : : temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2150 : : it here. */
2151 : :
2152 : : static struct temp_name {
2153 : : const char *suffix; /* suffix associated with the code. */
2154 : : int length; /* strlen (suffix). */
2155 : : int unique; /* Indicates whether %g or %u/%U was used. */
2156 : : const char *filename; /* associated filename. */
2157 : : int filename_length; /* strlen (filename). */
2158 : : struct temp_name *next;
2159 : : } *temp_names;
2160 : :
2161 : : /* Number of commands executed so far. */
2162 : :
2163 : : static int execution_count;
2164 : :
2165 : : /* Number of commands that exited with a signal. */
2166 : :
2167 : : static int signal_count;
2168 : :
2169 : : /* Allocate the argument vector. */
2170 : :
2171 : : static void
2172 : 2317163 : alloc_args (void)
2173 : : {
2174 : 2317163 : argbuf.create (10);
2175 : 2317163 : at_file_argbuf.create (10);
2176 : 2317163 : }
2177 : :
2178 : : /* Clear out the vector of arguments (after a command is executed). */
2179 : :
2180 : : static void
2181 : 5451507 : clear_args (void)
2182 : : {
2183 : 5451507 : argbuf.truncate (0);
2184 : 5451507 : at_file_argbuf.truncate (0);
2185 : 5451507 : }
2186 : :
2187 : : /* Add one argument to the vector at the end.
2188 : : This is done when a space is seen or at the end of the line.
2189 : : If DELETE_ALWAYS is nonzero, the arg is a filename
2190 : : and the file should be deleted eventually.
2191 : : If DELETE_FAILURE is nonzero, the arg is a filename
2192 : : and the file should be deleted if this compilation fails. */
2193 : :
2194 : : static void
2195 : 18718027 : store_arg (const char *arg, int delete_always, int delete_failure)
2196 : : {
2197 : 18718027 : if (in_at_file)
2198 : 14146 : at_file_argbuf.safe_push (arg);
2199 : : else
2200 : 18703881 : argbuf.safe_push (arg);
2201 : :
2202 : 18718027 : if (delete_always || delete_failure)
2203 : : {
2204 : 514030 : const char *p;
2205 : : /* If the temporary file we should delete is specified as
2206 : : part of a joined argument extract the filename. */
2207 : 514030 : if (arg[0] == '-'
2208 : 514030 : && (p = strrchr (arg, '=')))
2209 : 89380 : arg = p + 1;
2210 : 514030 : record_temp_file (arg, delete_always, delete_failure);
2211 : : }
2212 : 18718027 : }
2213 : :
2214 : : /* Open a temporary @file into which subsequent arguments will be stored. */
2215 : :
2216 : : static void
2217 : 13125 : open_at_file (void)
2218 : : {
2219 : 13125 : if (in_at_file)
2220 : 0 : fatal_error (input_location, "cannot open nested response file");
2221 : : else
2222 : 13125 : in_at_file = true;
2223 : 13125 : }
2224 : :
2225 : : /* Create a temporary @file name. */
2226 : :
2227 : 13115 : static char *make_at_file (void)
2228 : : {
2229 : 13115 : static int fileno = 0;
2230 : 13115 : char filename[20];
2231 : 13115 : const char *base, *ext;
2232 : :
2233 : 13115 : if (!save_temps_flag)
2234 : 13073 : return make_temp_file ("");
2235 : :
2236 : 42 : base = dumpbase;
2237 : 42 : if (!(base && *base))
2238 : 11 : base = dumpdir;
2239 : 42 : if (!(base && *base))
2240 : 0 : base = "a";
2241 : :
2242 : 42 : sprintf (filename, ".args.%d", fileno++);
2243 : 42 : ext = filename;
2244 : :
2245 : 42 : if (base == dumpdir && dumpdir_trailing_dash_added)
2246 : 42 : ext++;
2247 : :
2248 : 42 : return concat (base, ext, NULL);
2249 : : }
2250 : :
2251 : : /* Close the temporary @file and add @file to the argument list. */
2252 : :
2253 : : static void
2254 : 13125 : close_at_file (void)
2255 : : {
2256 : 13125 : if (!in_at_file)
2257 : 0 : fatal_error (input_location, "cannot close nonexistent response file");
2258 : :
2259 : 13125 : in_at_file = false;
2260 : :
2261 : 13125 : const unsigned int n_args = at_file_argbuf.length ();
2262 : 13125 : if (n_args == 0)
2263 : : return;
2264 : :
2265 : 13115 : char **argv = XALLOCAVEC (char *, n_args + 1);
2266 : 13115 : char *temp_file = make_at_file ();
2267 : 13115 : char *at_argument = concat ("@", temp_file, NULL);
2268 : 13115 : FILE *f = fopen (temp_file, "w");
2269 : 13115 : int status;
2270 : 13115 : unsigned int i;
2271 : :
2272 : : /* Copy the strings over. */
2273 : 40376 : for (i = 0; i < n_args; i++)
2274 : 14146 : argv[i] = CONST_CAST (char *, at_file_argbuf[i]);
2275 : 13115 : argv[i] = NULL;
2276 : :
2277 : 13115 : at_file_argbuf.truncate (0);
2278 : :
2279 : 13115 : if (f == NULL)
2280 : 0 : fatal_error (input_location, "could not open temporary response file %s",
2281 : : temp_file);
2282 : :
2283 : 13115 : status = writeargv (argv, f);
2284 : :
2285 : 13115 : if (status)
2286 : 0 : fatal_error (input_location,
2287 : : "could not write to temporary response file %s",
2288 : : temp_file);
2289 : :
2290 : 13115 : status = fclose (f);
2291 : :
2292 : 13115 : if (status == EOF)
2293 : 0 : fatal_error (input_location, "could not close temporary response file %s",
2294 : : temp_file);
2295 : :
2296 : 13115 : store_arg (at_argument, 0, 0);
2297 : :
2298 : 13115 : record_temp_file (temp_file, !save_temps_flag, !save_temps_flag);
2299 : : }
2300 : :
2301 : : /* Load specs from a file name named FILENAME, replacing occurrences of
2302 : : various different types of line-endings, \r\n, \n\r and just \r, with
2303 : : a single \n. */
2304 : :
2305 : : static char *
2306 : 319336 : load_specs (const char *filename)
2307 : : {
2308 : 319336 : int desc;
2309 : 319336 : int readlen;
2310 : 319336 : struct stat statbuf;
2311 : 319336 : char *buffer;
2312 : 319336 : char *buffer_p;
2313 : 319336 : char *specs;
2314 : 319336 : char *specs_p;
2315 : :
2316 : 319336 : if (verbose_flag)
2317 : 1193 : fnotice (stderr, "Reading specs from %s\n", filename);
2318 : :
2319 : : /* Open and stat the file. */
2320 : 319336 : desc = open (filename, O_RDONLY, 0);
2321 : 319336 : if (desc < 0)
2322 : : {
2323 : 1 : failed:
2324 : : /* This leaves DESC open, but the OS will save us. */
2325 : 1 : fatal_error (input_location, "cannot read spec file %qs: %m", filename);
2326 : : }
2327 : :
2328 : 319335 : if (stat (filename, &statbuf) < 0)
2329 : 0 : goto failed;
2330 : :
2331 : : /* Read contents of file into BUFFER. */
2332 : 319335 : buffer = XNEWVEC (char, statbuf.st_size + 1);
2333 : 319335 : readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2334 : 319335 : if (readlen < 0)
2335 : 0 : goto failed;
2336 : 319335 : buffer[readlen] = 0;
2337 : 319335 : close (desc);
2338 : :
2339 : 319335 : specs = XNEWVEC (char, readlen + 1);
2340 : 319335 : specs_p = specs;
2341 : 2898286103 : for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2342 : : {
2343 : 2897966768 : int skip = 0;
2344 : 2897966768 : char c = *buffer_p;
2345 : 2897966768 : if (c == '\r')
2346 : : {
2347 : 0 : if (buffer_p > buffer && *(buffer_p - 1) == '\n') /* \n\r */
2348 : : skip = 1;
2349 : 0 : else if (*(buffer_p + 1) == '\n') /* \r\n */
2350 : : skip = 1;
2351 : : else /* \r */
2352 : : c = '\n';
2353 : : }
2354 : : if (! skip)
2355 : 2897966768 : *specs_p++ = c;
2356 : : }
2357 : 319335 : *specs_p = '\0';
2358 : :
2359 : 319335 : free (buffer);
2360 : 319335 : return (specs);
2361 : : }
2362 : :
2363 : : /* Read compilation specs from a file named FILENAME,
2364 : : replacing the default ones.
2365 : :
2366 : : A suffix which starts with `*' is a definition for
2367 : : one of the machine-specific sub-specs. The "suffix" should be
2368 : : *asm, *cc1, *cpp, *link, *startfile, etc.
2369 : : The corresponding spec is stored in asm_spec, etc.,
2370 : : rather than in the `compilers' vector.
2371 : :
2372 : : Anything invalid in the file is a fatal error. */
2373 : :
2374 : : static void
2375 : 319336 : read_specs (const char *filename, bool main_p, bool user_p)
2376 : : {
2377 : 319336 : char *buffer;
2378 : 319336 : char *p;
2379 : :
2380 : 319336 : buffer = load_specs (filename);
2381 : :
2382 : : /* Scan BUFFER for specs, putting them in the vector. */
2383 : 319336 : p = buffer;
2384 : 13970401 : while (1)
2385 : : {
2386 : 13970401 : char *suffix;
2387 : 13970401 : char *spec;
2388 : 13970401 : char *in, *out, *p1, *p2, *p3;
2389 : :
2390 : : /* Advance P in BUFFER to the next nonblank nocomment line. */
2391 : 13970401 : p = skip_whitespace (p);
2392 : 13970401 : if (*p == 0)
2393 : : break;
2394 : :
2395 : : /* Is this a special command that starts with '%'? */
2396 : : /* Don't allow this for the main specs file, since it would
2397 : : encourage people to overwrite it. */
2398 : 13651066 : if (*p == '%' && !main_p)
2399 : : {
2400 : 417560 : p1 = p;
2401 : 417560 : while (*p && *p != '\n')
2402 : 396682 : p++;
2403 : :
2404 : : /* Skip '\n'. */
2405 : 20878 : p++;
2406 : :
2407 : 20878 : if (startswith (p1, "%include")
2408 : 20878 : && (p1[sizeof "%include" - 1] == ' '
2409 : 0 : || p1[sizeof "%include" - 1] == '\t'))
2410 : : {
2411 : 0 : char *new_filename;
2412 : :
2413 : 0 : p1 += sizeof ("%include");
2414 : 0 : while (*p1 == ' ' || *p1 == '\t')
2415 : 0 : p1++;
2416 : :
2417 : 0 : if (*p1++ != '<' || p[-2] != '>')
2418 : 0 : fatal_error (input_location,
2419 : : "specs %%include syntax malformed after "
2420 : 0 : "%td characters", p1 - buffer + 1);
2421 : :
2422 : 0 : p[-2] = '\0';
2423 : 0 : new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2424 : 0 : read_specs (new_filename ? new_filename : p1, false, user_p);
2425 : 0 : continue;
2426 : 0 : }
2427 : 20878 : else if (startswith (p1, "%include_noerr")
2428 : 20878 : && (p1[sizeof "%include_noerr" - 1] == ' '
2429 : 0 : || p1[sizeof "%include_noerr" - 1] == '\t'))
2430 : : {
2431 : 0 : char *new_filename;
2432 : :
2433 : 0 : p1 += sizeof "%include_noerr";
2434 : 0 : while (*p1 == ' ' || *p1 == '\t')
2435 : 0 : p1++;
2436 : :
2437 : 0 : if (*p1++ != '<' || p[-2] != '>')
2438 : 0 : fatal_error (input_location,
2439 : : "specs %%include syntax malformed after "
2440 : 0 : "%td characters", p1 - buffer + 1);
2441 : :
2442 : 0 : p[-2] = '\0';
2443 : 0 : new_filename = find_a_file (&startfile_prefixes, p1, R_OK, true);
2444 : 0 : if (new_filename)
2445 : 0 : read_specs (new_filename, false, user_p);
2446 : 0 : else if (verbose_flag)
2447 : 0 : fnotice (stderr, "could not find specs file %s\n", p1);
2448 : 0 : continue;
2449 : 0 : }
2450 : 20878 : else if (startswith (p1, "%rename")
2451 : 20878 : && (p1[sizeof "%rename" - 1] == ' '
2452 : 0 : || p1[sizeof "%rename" - 1] == '\t'))
2453 : : {
2454 : 20878 : int name_len;
2455 : 20878 : struct spec_list *sl;
2456 : 20878 : struct spec_list *newsl;
2457 : :
2458 : : /* Get original name. */
2459 : 20878 : p1 += sizeof "%rename";
2460 : 20878 : while (*p1 == ' ' || *p1 == '\t')
2461 : 0 : p1++;
2462 : :
2463 : 20878 : if (! ISALPHA ((unsigned char) *p1))
2464 : 0 : fatal_error (input_location,
2465 : : "specs %%rename syntax malformed after "
2466 : : "%td characters", p1 - buffer);
2467 : :
2468 : : p2 = p1;
2469 : 83512 : while (*p2 && !ISSPACE ((unsigned char) *p2))
2470 : 62634 : p2++;
2471 : :
2472 : 20878 : if (*p2 != ' ' && *p2 != '\t')
2473 : 0 : fatal_error (input_location,
2474 : : "specs %%rename syntax malformed after "
2475 : : "%td characters", p2 - buffer);
2476 : :
2477 : 20878 : name_len = p2 - p1;
2478 : 20878 : *p2++ = '\0';
2479 : 20878 : while (*p2 == ' ' || *p2 == '\t')
2480 : 0 : p2++;
2481 : :
2482 : 20878 : if (! ISALPHA ((unsigned char) *p2))
2483 : 0 : fatal_error (input_location,
2484 : : "specs %%rename syntax malformed after "
2485 : : "%td characters", p2 - buffer);
2486 : :
2487 : : /* Get new spec name. */
2488 : : p3 = p2;
2489 : 167024 : while (*p3 && !ISSPACE ((unsigned char) *p3))
2490 : 146146 : p3++;
2491 : :
2492 : 20878 : if (p3 != p - 1)
2493 : 0 : fatal_error (input_location,
2494 : : "specs %%rename syntax malformed after "
2495 : : "%td characters", p3 - buffer);
2496 : 20878 : *p3 = '\0';
2497 : :
2498 : 417560 : for (sl = specs; sl; sl = sl->next)
2499 : 417560 : if (name_len == sl->name_len && !strcmp (sl->name, p1))
2500 : : break;
2501 : :
2502 : 20878 : if (!sl)
2503 : 0 : fatal_error (input_location,
2504 : : "specs %s spec was not found to be renamed", p1);
2505 : :
2506 : 20878 : if (strcmp (p1, p2) == 0)
2507 : 0 : continue;
2508 : :
2509 : 981266 : for (newsl = specs; newsl; newsl = newsl->next)
2510 : 960388 : if (strcmp (newsl->name, p2) == 0)
2511 : 0 : fatal_error (input_location,
2512 : : "%s: attempt to rename spec %qs to "
2513 : : "already defined spec %qs",
2514 : : filename, p1, p2);
2515 : :
2516 : 20878 : if (verbose_flag)
2517 : : {
2518 : 0 : fnotice (stderr, "rename spec %s to %s\n", p1, p2);
2519 : : #ifdef DEBUG_SPECS
2520 : : fnotice (stderr, "spec is '%s'\n\n", *(sl->ptr_spec));
2521 : : #endif
2522 : : }
2523 : :
2524 : 20878 : set_spec (p2, *(sl->ptr_spec), user_p);
2525 : 20878 : if (sl->alloc_p)
2526 : 20878 : free (CONST_CAST (char *, *(sl->ptr_spec)));
2527 : :
2528 : 20878 : *(sl->ptr_spec) = "";
2529 : 20878 : sl->alloc_p = 0;
2530 : 20878 : continue;
2531 : 20878 : }
2532 : : else
2533 : 0 : fatal_error (input_location,
2534 : : "specs unknown %% command after %td characters",
2535 : : p1 - buffer);
2536 : : }
2537 : :
2538 : : /* Find the colon that should end the suffix. */
2539 : : p1 = p;
2540 : 187144929 : while (*p1 && *p1 != ':' && *p1 != '\n')
2541 : 173514741 : p1++;
2542 : :
2543 : : /* The colon shouldn't be missing. */
2544 : 13630188 : if (*p1 != ':')
2545 : 0 : fatal_error (input_location,
2546 : : "specs file malformed after %td characters",
2547 : : p1 - buffer);
2548 : :
2549 : : /* Skip back over trailing whitespace. */
2550 : : p2 = p1;
2551 : 13630188 : while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2552 : 0 : p2--;
2553 : :
2554 : : /* Copy the suffix to a string. */
2555 : 13630188 : suffix = save_string (p, p2 - p);
2556 : : /* Find the next line. */
2557 : 13630188 : p = skip_whitespace (p1 + 1);
2558 : 13630188 : if (p[1] == 0)
2559 : 0 : fatal_error (input_location,
2560 : : "specs file malformed after %td characters",
2561 : : p - buffer);
2562 : :
2563 : : p1 = p;
2564 : : /* Find next blank line or end of string. */
2565 : 2679595836 : while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2566 : 2665965648 : p1++;
2567 : :
2568 : : /* Specs end at the blank line and do not include the newline. */
2569 : 13630188 : spec = save_string (p, p1 - p);
2570 : 13630188 : p = p1;
2571 : :
2572 : : /* Delete backslash-newline sequences from the spec. */
2573 : 13630188 : in = spec;
2574 : 13630188 : out = spec;
2575 : 2693226022 : while (*in != 0)
2576 : : {
2577 : 2665965646 : if (in[0] == '\\' && in[1] == '\n')
2578 : 2 : in += 2;
2579 : 2665965644 : else if (in[0] == '#')
2580 : 0 : while (*in && *in != '\n')
2581 : 0 : in++;
2582 : :
2583 : : else
2584 : 2665965644 : *out++ = *in++;
2585 : : }
2586 : 13630188 : *out = 0;
2587 : :
2588 : 13630188 : if (suffix[0] == '*')
2589 : : {
2590 : 13630188 : if (! strcmp (suffix, "*link_command"))
2591 : 289441 : link_command_spec = spec;
2592 : : else
2593 : : {
2594 : 13340747 : set_spec (suffix + 1, spec, user_p);
2595 : 13340747 : free (spec);
2596 : : }
2597 : : }
2598 : : else
2599 : : {
2600 : : /* Add this pair to the vector. */
2601 : 0 : compilers
2602 : 0 : = XRESIZEVEC (struct compiler, compilers, n_compilers + 2);
2603 : :
2604 : 0 : compilers[n_compilers].suffix = suffix;
2605 : 0 : compilers[n_compilers].spec = spec;
2606 : 0 : n_compilers++;
2607 : 0 : memset (&compilers[n_compilers], 0, sizeof compilers[n_compilers]);
2608 : : }
2609 : :
2610 : 13630188 : if (*suffix == 0)
2611 : 0 : link_command_spec = spec;
2612 : : }
2613 : :
2614 : 319335 : if (link_command_spec == 0)
2615 : 0 : fatal_error (input_location, "spec file has no spec for linking");
2616 : :
2617 : 319335 : XDELETEVEC (buffer);
2618 : 319335 : }
2619 : :
2620 : : /* Record the names of temporary files we tell compilers to write,
2621 : : and delete them at the end of the run. */
2622 : :
2623 : : /* This is the common prefix we use to make temp file names.
2624 : : It is chosen once for each run of this program.
2625 : : It is substituted into a spec by %g or %j.
2626 : : Thus, all temp file names contain this prefix.
2627 : : In practice, all temp file names start with this prefix.
2628 : :
2629 : : This prefix comes from the envvar TMPDIR if it is defined;
2630 : : otherwise, from the P_tmpdir macro if that is defined;
2631 : : otherwise, in /usr/tmp or /tmp;
2632 : : or finally the current directory if all else fails. */
2633 : :
2634 : : static const char *temp_filename;
2635 : :
2636 : : /* Length of the prefix. */
2637 : :
2638 : : static int temp_filename_length;
2639 : :
2640 : : /* Define the list of temporary files to delete. */
2641 : :
2642 : : struct temp_file
2643 : : {
2644 : : const char *name;
2645 : : struct temp_file *next;
2646 : : };
2647 : :
2648 : : /* Queue of files to delete on success or failure of compilation. */
2649 : : static struct temp_file *always_delete_queue;
2650 : : /* Queue of files to delete on failure of compilation. */
2651 : : static struct temp_file *failure_delete_queue;
2652 : :
2653 : : /* Record FILENAME as a file to be deleted automatically.
2654 : : ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
2655 : : otherwise delete it in any case.
2656 : : FAIL_DELETE nonzero means delete it if a compilation step fails;
2657 : : otherwise delete it in any case. */
2658 : :
2659 : : void
2660 : 692404 : record_temp_file (const char *filename, int always_delete, int fail_delete)
2661 : : {
2662 : 692404 : char *const name = xstrdup (filename);
2663 : :
2664 : 692404 : if (always_delete)
2665 : : {
2666 : 524338 : struct temp_file *temp;
2667 : 908450 : for (temp = always_delete_queue; temp; temp = temp->next)
2668 : 547217 : if (! filename_cmp (name, temp->name))
2669 : : {
2670 : 163105 : free (name);
2671 : 163105 : goto already1;
2672 : : }
2673 : :
2674 : 361233 : temp = XNEW (struct temp_file);
2675 : 361233 : temp->next = always_delete_queue;
2676 : 361233 : temp->name = name;
2677 : 361233 : always_delete_queue = temp;
2678 : :
2679 : 692404 : already1:;
2680 : : }
2681 : :
2682 : 692404 : if (fail_delete)
2683 : : {
2684 : 276522 : struct temp_file *temp;
2685 : 281371 : for (temp = failure_delete_queue; temp; temp = temp->next)
2686 : 4938 : if (! filename_cmp (name, temp->name))
2687 : : {
2688 : 89 : free (name);
2689 : 89 : goto already2;
2690 : : }
2691 : :
2692 : 276433 : temp = XNEW (struct temp_file);
2693 : 276433 : temp->next = failure_delete_queue;
2694 : 276433 : temp->name = name;
2695 : 276433 : failure_delete_queue = temp;
2696 : :
2697 : 692404 : already2:;
2698 : : }
2699 : 692404 : }
2700 : :
2701 : : /* Delete all the temporary files whose names we previously recorded. */
2702 : :
2703 : : #ifndef DELETE_IF_ORDINARY
2704 : : #define DELETE_IF_ORDINARY(NAME,ST,VERBOSE_FLAG) \
2705 : : do \
2706 : : { \
2707 : : if (stat (NAME, &ST) >= 0 && S_ISREG (ST.st_mode)) \
2708 : : if (unlink (NAME) < 0) \
2709 : : if (VERBOSE_FLAG) \
2710 : : error ("%s: %m", (NAME)); \
2711 : : } while (0)
2712 : : #endif
2713 : :
2714 : : static void
2715 : 383354 : delete_if_ordinary (const char *name)
2716 : : {
2717 : 383354 : struct stat st;
2718 : : #ifdef DEBUG
2719 : : int i, c;
2720 : :
2721 : : printf ("Delete %s? (y or n) ", name);
2722 : : fflush (stdout);
2723 : : i = getchar ();
2724 : : if (i != '\n')
2725 : : while ((c = getchar ()) != '\n' && c != EOF)
2726 : : ;
2727 : :
2728 : : if (i == 'y' || i == 'Y')
2729 : : #endif /* DEBUG */
2730 : 383354 : DELETE_IF_ORDINARY (name, st, verbose_flag);
2731 : 383354 : }
2732 : :
2733 : : static void
2734 : 566949 : delete_temp_files (void)
2735 : : {
2736 : 566949 : struct temp_file *temp;
2737 : :
2738 : 928182 : for (temp = always_delete_queue; temp; temp = temp->next)
2739 : 361233 : delete_if_ordinary (temp->name);
2740 : 566949 : always_delete_queue = 0;
2741 : 566949 : }
2742 : :
2743 : : /* Delete all the files to be deleted on error. */
2744 : :
2745 : : static void
2746 : 55829 : delete_failure_queue (void)
2747 : : {
2748 : 55829 : struct temp_file *temp;
2749 : :
2750 : 77950 : for (temp = failure_delete_queue; temp; temp = temp->next)
2751 : 22121 : delete_if_ordinary (temp->name);
2752 : 55829 : }
2753 : :
2754 : : static void
2755 : 528272 : clear_failure_queue (void)
2756 : : {
2757 : 528272 : failure_delete_queue = 0;
2758 : 528272 : }
2759 : :
2760 : : /* Call CALLBACK for each path in PATHS, breaking out early if CALLBACK
2761 : : returns non-NULL.
2762 : : If DO_MULTI is true iterate over the paths twice, first with multilib
2763 : : suffix then without, otherwise iterate over the paths once without
2764 : : adding a multilib suffix. When DO_MULTI is true, some attempt is made
2765 : : to avoid visiting the same path twice, but we could do better. For
2766 : : instance, /usr/lib/../lib is considered different from /usr/lib.
2767 : : At least EXTRA_SPACE chars past the end of the path passed to
2768 : : CALLBACK are available for use by the callback.
2769 : : CALLBACK_INFO allows extra parameters to be passed to CALLBACK.
2770 : :
2771 : : Returns the value returned by CALLBACK. */
2772 : :
2773 : : static void *
2774 : 2769524 : for_each_path (const struct path_prefix *paths,
2775 : : bool do_multi,
2776 : : size_t extra_space,
2777 : : void *(*callback) (char *, void *),
2778 : : void *callback_info)
2779 : : {
2780 : 2769524 : struct prefix_list *pl;
2781 : 2769524 : const char *multi_dir = NULL;
2782 : 2769524 : const char *multi_os_dir = NULL;
2783 : 2769524 : const char *multiarch_suffix = NULL;
2784 : 2769524 : const char *multi_suffix;
2785 : 2769524 : const char *just_multi_suffix;
2786 : 2769524 : char *path = NULL;
2787 : 2769524 : void *ret = NULL;
2788 : 2769524 : bool skip_multi_dir = false;
2789 : 2769524 : bool skip_multi_os_dir = false;
2790 : :
2791 : 2769524 : multi_suffix = machine_suffix;
2792 : 2769524 : just_multi_suffix = just_machine_suffix;
2793 : 2769524 : if (do_multi && multilib_dir && strcmp (multilib_dir, ".") != 0)
2794 : : {
2795 : 15698 : multi_dir = concat (multilib_dir, dir_separator_str, NULL);
2796 : 15698 : multi_suffix = concat (multi_suffix, multi_dir, NULL);
2797 : 15698 : just_multi_suffix = concat (just_multi_suffix, multi_dir, NULL);
2798 : : }
2799 : 1205060 : if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2800 : 914450 : multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2801 : 2769524 : if (multiarch_dir)
2802 : 0 : multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL);
2803 : :
2804 : 3182906 : while (1)
2805 : : {
2806 : 3182906 : size_t multi_dir_len = 0;
2807 : 3182906 : size_t multi_os_dir_len = 0;
2808 : 3182906 : size_t multiarch_len = 0;
2809 : 3182906 : size_t suffix_len;
2810 : 3182906 : size_t just_suffix_len;
2811 : 3182906 : size_t len;
2812 : :
2813 : 3182906 : if (multi_dir)
2814 : 15698 : multi_dir_len = strlen (multi_dir);
2815 : 3182906 : if (multi_os_dir)
2816 : 914450 : multi_os_dir_len = strlen (multi_os_dir);
2817 : 3182906 : if (multiarch_suffix)
2818 : 0 : multiarch_len = strlen (multiarch_suffix);
2819 : 3182906 : suffix_len = strlen (multi_suffix);
2820 : 3182906 : just_suffix_len = strlen (just_multi_suffix);
2821 : :
2822 : 3182906 : if (path == NULL)
2823 : : {
2824 : 2769524 : len = paths->max_len + extra_space + 1;
2825 : 2769524 : len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
2826 : 2769524 : path = XNEWVEC (char, len);
2827 : : }
2828 : :
2829 : 12495808 : for (pl = paths->plist; pl != 0; pl = pl->next)
2830 : : {
2831 : 10953434 : len = strlen (pl->prefix);
2832 : 10953434 : memcpy (path, pl->prefix, len);
2833 : :
2834 : : /* Look first in MACHINE/VERSION subdirectory. */
2835 : 10953434 : if (!skip_multi_dir)
2836 : : {
2837 : 8017105 : memcpy (path + len, multi_suffix, suffix_len + 1);
2838 : 8017105 : ret = callback (path, callback_info);
2839 : 8017105 : if (ret)
2840 : : break;
2841 : : }
2842 : :
2843 : : /* Some paths are tried with just the machine (ie. target)
2844 : : subdir. This is used for finding as, ld, etc. */
2845 : 8017105 : if (!skip_multi_dir
2846 : 8017105 : && pl->require_machine_suffix == 2)
2847 : : {
2848 : 0 : memcpy (path + len, just_multi_suffix, just_suffix_len + 1);
2849 : 0 : ret = callback (path, callback_info);
2850 : 0 : if (ret)
2851 : : break;
2852 : : }
2853 : :
2854 : : /* Now try the multiarch path. */
2855 : 8017105 : if (!skip_multi_dir
2856 : 8017105 : && !pl->require_machine_suffix && multiarch_dir)
2857 : : {
2858 : 0 : memcpy (path + len, multiarch_suffix, multiarch_len + 1);
2859 : 0 : ret = callback (path, callback_info);
2860 : 0 : if (ret)
2861 : : break;
2862 : : }
2863 : :
2864 : : /* Now try the base path. */
2865 : 10953434 : if (!pl->require_machine_suffix
2866 : 17418856 : && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2867 : : {
2868 : 9795550 : const char *this_multi;
2869 : 9795550 : size_t this_multi_len;
2870 : :
2871 : 9795550 : if (pl->os_multilib)
2872 : : {
2873 : : this_multi = multi_os_dir;
2874 : : this_multi_len = multi_os_dir_len;
2875 : : }
2876 : : else
2877 : : {
2878 : 5307538 : this_multi = multi_dir;
2879 : 5307538 : this_multi_len = multi_dir_len;
2880 : : }
2881 : :
2882 : 9795550 : if (this_multi_len)
2883 : 2733731 : memcpy (path + len, this_multi, this_multi_len + 1);
2884 : : else
2885 : 7061819 : path[len] = '\0';
2886 : :
2887 : 9795550 : ret = callback (path, callback_info);
2888 : 9795550 : if (ret)
2889 : : break;
2890 : : }
2891 : : }
2892 : 3182906 : if (pl)
2893 : : break;
2894 : :
2895 : 1542374 : if (multi_dir == NULL && multi_os_dir == NULL)
2896 : : break;
2897 : :
2898 : : /* Run through the paths again, this time without multilibs.
2899 : : Don't repeat any we have already seen. */
2900 : 413382 : if (multi_dir)
2901 : : {
2902 : 10000 : free (CONST_CAST (char *, multi_dir));
2903 : 10000 : multi_dir = NULL;
2904 : 10000 : free (CONST_CAST (char *, multi_suffix));
2905 : 10000 : multi_suffix = machine_suffix;
2906 : 10000 : free (CONST_CAST (char *, just_multi_suffix));
2907 : 10000 : just_multi_suffix = just_machine_suffix;
2908 : : }
2909 : : else
2910 : : skip_multi_dir = true;
2911 : 413382 : if (multi_os_dir)
2912 : : {
2913 : 413382 : free (CONST_CAST (char *, multi_os_dir));
2914 : 413382 : multi_os_dir = NULL;
2915 : : }
2916 : : else
2917 : : skip_multi_os_dir = true;
2918 : : }
2919 : :
2920 : 2769524 : if (multi_dir)
2921 : : {
2922 : 5698 : free (CONST_CAST (char *, multi_dir));
2923 : 5698 : free (CONST_CAST (char *, multi_suffix));
2924 : 5698 : free (CONST_CAST (char *, just_multi_suffix));
2925 : : }
2926 : 2769524 : if (multi_os_dir)
2927 : 501068 : free (CONST_CAST (char *, multi_os_dir));
2928 : 2769524 : if (ret != path)
2929 : 1128992 : free (path);
2930 : 2769524 : return ret;
2931 : : }
2932 : :
2933 : : /* Callback for build_search_list. Adds path to obstack being built. */
2934 : :
2935 : : struct add_to_obstack_info {
2936 : : struct obstack *ob;
2937 : : bool check_dir;
2938 : : bool first_time;
2939 : : };
2940 : :
2941 : : static void *
2942 : 6848039 : add_to_obstack (char *path, void *data)
2943 : : {
2944 : 6848039 : struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2945 : :
2946 : 6848039 : if (info->check_dir && !is_directory (path))
2947 : : return NULL;
2948 : :
2949 : 2520960 : if (!info->first_time)
2950 : 2026724 : obstack_1grow (info->ob, PATH_SEPARATOR);
2951 : :
2952 : 2520960 : obstack_grow (info->ob, path, strlen (path));
2953 : :
2954 : 2520960 : info->first_time = false;
2955 : 2520960 : return NULL;
2956 : : }
2957 : :
2958 : : /* Add or change the value of an environment variable, outputting the
2959 : : change to standard error if in verbose mode. */
2960 : : static void
2961 : 1724856 : xputenv (const char *string)
2962 : : {
2963 : 0 : env.xput (string);
2964 : 134041 : }
2965 : :
2966 : : /* Build a list of search directories from PATHS.
2967 : : PREFIX is a string to prepend to the list.
2968 : : If CHECK_DIR_P is true we ensure the directory exists.
2969 : : If DO_MULTI is true, multilib paths are output first, then
2970 : : non-multilib paths.
2971 : : This is used mostly by putenv_from_prefixes so we use `collect_obstack'.
2972 : : It is also used by the --print-search-dirs flag. */
2973 : :
2974 : : static char *
2975 : 495320 : build_search_list (const struct path_prefix *paths, const char *prefix,
2976 : : bool check_dir, bool do_multi)
2977 : : {
2978 : 495320 : struct add_to_obstack_info info;
2979 : :
2980 : 495320 : info.ob = &collect_obstack;
2981 : 495320 : info.check_dir = check_dir;
2982 : 495320 : info.first_time = true;
2983 : :
2984 : 495320 : obstack_grow (&collect_obstack, prefix, strlen (prefix));
2985 : 495320 : obstack_1grow (&collect_obstack, '=');
2986 : :
2987 : 495320 : for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2988 : :
2989 : 495320 : obstack_1grow (&collect_obstack, '\0');
2990 : 495320 : return XOBFINISH (&collect_obstack, char *);
2991 : : }
2992 : :
2993 : : /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
2994 : : for collect. */
2995 : :
2996 : : static void
2997 : 495264 : putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2998 : : bool do_multi)
2999 : : {
3000 : 495264 : xputenv (build_search_list (paths, env_var, true, do_multi));
3001 : 495264 : }
3002 : :
3003 : : /* Check whether NAME can be accessed in MODE. This is like access,
3004 : : except that it never considers directories to be executable. */
3005 : :
3006 : : static int
3007 : 7698682 : access_check (const char *name, int mode)
3008 : : {
3009 : 7698682 : if (mode == X_OK)
3010 : : {
3011 : 1482830 : struct stat st;
3012 : :
3013 : 1482830 : if (stat (name, &st) < 0
3014 : 1482830 : || S_ISDIR (st.st_mode))
3015 : 753878 : return -1;
3016 : : }
3017 : :
3018 : 6944804 : return access (name, mode);
3019 : : }
3020 : :
3021 : : /* Callback for find_a_file. Appends the file name to the directory
3022 : : path. If the resulting file exists in the right mode, return the
3023 : : full pathname to the file. */
3024 : :
3025 : : struct file_at_path_info {
3026 : : const char *name;
3027 : : const char *suffix;
3028 : : int name_len;
3029 : : int suffix_len;
3030 : : int mode;
3031 : : };
3032 : :
3033 : : static void *
3034 : 7698682 : file_at_path (char *path, void *data)
3035 : : {
3036 : 7698682 : struct file_at_path_info *info = (struct file_at_path_info *) data;
3037 : 7698682 : size_t len = strlen (path);
3038 : :
3039 : 7698682 : memcpy (path + len, info->name, info->name_len);
3040 : 7698682 : len += info->name_len;
3041 : :
3042 : : /* Some systems have a suffix for executable files.
3043 : : So try appending that first. */
3044 : 7698682 : if (info->suffix_len)
3045 : : {
3046 : 0 : memcpy (path + len, info->suffix, info->suffix_len + 1);
3047 : 0 : if (access_check (path, info->mode) == 0)
3048 : : return path;
3049 : : }
3050 : :
3051 : 7698682 : path[len] = '\0';
3052 : 7698682 : if (access_check (path, info->mode) == 0)
3053 : : return path;
3054 : :
3055 : : return NULL;
3056 : : }
3057 : :
3058 : : /* Search for NAME using the prefix list PREFIXES. MODE is passed to
3059 : : access to check permissions. If DO_MULTI is true, search multilib
3060 : : paths then non-multilib paths, otherwise do not search multilib paths.
3061 : : Return 0 if not found, otherwise return its name, allocated with malloc. */
3062 : :
3063 : : static char *
3064 : 1738921 : find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
3065 : : bool do_multi)
3066 : : {
3067 : 1738921 : struct file_at_path_info info;
3068 : :
3069 : : /* Find the filename in question (special case for absolute paths). */
3070 : :
3071 : 1738921 : if (IS_ABSOLUTE_PATH (name))
3072 : : {
3073 : 1 : if (access (name, mode) == 0)
3074 : 1 : return xstrdup (name);
3075 : :
3076 : : return NULL;
3077 : : }
3078 : :
3079 : 1738920 : info.name = name;
3080 : 1738920 : info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
3081 : 1738920 : info.name_len = strlen (info.name);
3082 : 1738920 : info.suffix_len = strlen (info.suffix);
3083 : 1738920 : info.mode = mode;
3084 : :
3085 : 1738920 : return (char*) for_each_path (pprefix, do_multi,
3086 : : info.name_len + info.suffix_len,
3087 : 1738920 : file_at_path, &info);
3088 : : }
3089 : :
3090 : : /* Specialization of find_a_file for programs that also takes into account
3091 : : configure-specified default programs. */
3092 : :
3093 : : static char*
3094 : 734879 : find_a_program (const char *name)
3095 : : {
3096 : : /* Do not search if default matches query. */
3097 : :
3098 : : #ifdef DEFAULT_ASSEMBLER
3099 : : if (! strcmp (name, "as") && access (DEFAULT_ASSEMBLER, X_OK) == 0)
3100 : : return xstrdup (DEFAULT_ASSEMBLER);
3101 : : #endif
3102 : :
3103 : : #ifdef DEFAULT_LINKER
3104 : : if (! strcmp (name, "ld") && access (DEFAULT_LINKER, X_OK) == 0)
3105 : : return xstrdup (DEFAULT_LINKER);
3106 : : #endif
3107 : :
3108 : : #ifdef DEFAULT_DSYMUTIL
3109 : : if (! strcmp (name, "dsymutil") && access (DEFAULT_DSYMUTIL, X_OK) == 0)
3110 : : return xstrdup (DEFAULT_DSYMUTIL);
3111 : : #endif
3112 : :
3113 : 0 : return find_a_file (&exec_prefixes, name, X_OK, false);
3114 : : }
3115 : :
3116 : : /* Ranking of prefixes in the sort list. -B prefixes are put before
3117 : : all others. */
3118 : :
3119 : : enum path_prefix_priority
3120 : : {
3121 : : PREFIX_PRIORITY_B_OPT,
3122 : : PREFIX_PRIORITY_LAST
3123 : : };
3124 : :
3125 : : /* Add an entry for PREFIX in PLIST. The PLIST is kept in ascending
3126 : : order according to PRIORITY. Within each PRIORITY, new entries are
3127 : : appended.
3128 : :
3129 : : If WARN is nonzero, we will warn if no file is found
3130 : : through this prefix. WARN should point to an int
3131 : : which will be set to 1 if this entry is used.
3132 : :
3133 : : COMPONENT is the value to be passed to update_path.
3134 : :
3135 : : REQUIRE_MACHINE_SUFFIX is 1 if this prefix can't be used without
3136 : : the complete value of machine_suffix.
3137 : : 2 means try both machine_suffix and just_machine_suffix. */
3138 : :
3139 : : static void
3140 : 3812228 : add_prefix (struct path_prefix *pprefix, const char *prefix,
3141 : : const char *component, /* enum prefix_priority */ int priority,
3142 : : int require_machine_suffix, int os_multilib)
3143 : : {
3144 : 3812228 : struct prefix_list *pl, **prev;
3145 : 3812228 : int len;
3146 : :
3147 : 3812228 : for (prev = &pprefix->plist;
3148 : 12136022 : (*prev) != NULL && (*prev)->priority <= priority;
3149 : 8323794 : prev = &(*prev)->next)
3150 : : ;
3151 : :
3152 : : /* Keep track of the longest prefix. */
3153 : :
3154 : 3812228 : prefix = update_path (prefix, component);
3155 : 3812228 : len = strlen (prefix);
3156 : 3812228 : if (len > pprefix->max_len)
3157 : 2057197 : pprefix->max_len = len;
3158 : :
3159 : 3812228 : pl = XNEW (struct prefix_list);
3160 : 3812228 : pl->prefix = prefix;
3161 : 3812228 : pl->require_machine_suffix = require_machine_suffix;
3162 : 3812228 : pl->priority = priority;
3163 : 3812228 : pl->os_multilib = os_multilib;
3164 : :
3165 : : /* Insert after PREV. */
3166 : 3812228 : pl->next = (*prev);
3167 : 3812228 : (*prev) = pl;
3168 : 3812228 : }
3169 : :
3170 : : /* Same as add_prefix, but prepending target_system_root to prefix. */
3171 : : /* The target_system_root prefix has been relocated by gcc_exec_prefix. */
3172 : : static void
3173 : 581216 : add_sysrooted_prefix (struct path_prefix *pprefix, const char *prefix,
3174 : : const char *component,
3175 : : /* enum prefix_priority */ int priority,
3176 : : int require_machine_suffix, int os_multilib)
3177 : : {
3178 : 581216 : if (!IS_ABSOLUTE_PATH (prefix))
3179 : 0 : fatal_error (input_location, "system path %qs is not absolute", prefix);
3180 : :
3181 : 581216 : if (target_system_root)
3182 : : {
3183 : 0 : char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3184 : 0 : size_t sysroot_len = strlen (target_system_root);
3185 : :
3186 : 0 : if (sysroot_len > 0
3187 : 0 : && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3188 : 0 : sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3189 : :
3190 : 0 : if (target_sysroot_suffix)
3191 : 0 : prefix = concat (sysroot_no_trailing_dir_separator,
3192 : : target_sysroot_suffix, prefix, NULL);
3193 : : else
3194 : 0 : prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3195 : :
3196 : 0 : free (sysroot_no_trailing_dir_separator);
3197 : :
3198 : : /* We have to override this because GCC's notion of sysroot
3199 : : moves along with GCC. */
3200 : 0 : component = "GCC";
3201 : : }
3202 : :
3203 : 581216 : add_prefix (pprefix, prefix, component, priority,
3204 : : require_machine_suffix, os_multilib);
3205 : 581216 : }
3206 : :
3207 : : /* Same as add_prefix, but prepending target_sysroot_hdrs_suffix to prefix. */
3208 : :
3209 : : static void
3210 : 30425 : add_sysrooted_hdrs_prefix (struct path_prefix *pprefix, const char *prefix,
3211 : : const char *component,
3212 : : /* enum prefix_priority */ int priority,
3213 : : int require_machine_suffix, int os_multilib)
3214 : : {
3215 : 30425 : if (!IS_ABSOLUTE_PATH (prefix))
3216 : 0 : fatal_error (input_location, "system path %qs is not absolute", prefix);
3217 : :
3218 : 30425 : if (target_system_root)
3219 : : {
3220 : 0 : char *sysroot_no_trailing_dir_separator = xstrdup (target_system_root);
3221 : 0 : size_t sysroot_len = strlen (target_system_root);
3222 : :
3223 : 0 : if (sysroot_len > 0
3224 : 0 : && target_system_root[sysroot_len - 1] == DIR_SEPARATOR)
3225 : 0 : sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
3226 : :
3227 : 0 : if (target_sysroot_hdrs_suffix)
3228 : 0 : prefix = concat (sysroot_no_trailing_dir_separator,
3229 : : target_sysroot_hdrs_suffix, prefix, NULL);
3230 : : else
3231 : 0 : prefix = concat (sysroot_no_trailing_dir_separator, prefix, NULL);
3232 : :
3233 : 0 : free (sysroot_no_trailing_dir_separator);
3234 : :
3235 : : /* We have to override this because GCC's notion of sysroot
3236 : : moves along with GCC. */
3237 : 0 : component = "GCC";
3238 : : }
3239 : :
3240 : 30425 : add_prefix (pprefix, prefix, component, priority,
3241 : : require_machine_suffix, os_multilib);
3242 : 30425 : }
3243 : :
3244 : :
3245 : : /* Execute the command specified by the arguments on the current line of spec.
3246 : : When using pipes, this includes several piped-together commands
3247 : : with `|' between them.
3248 : :
3249 : : Return 0 if successful, -1 if failed. */
3250 : :
3251 : : static int
3252 : 532978 : execute (void)
3253 : : {
3254 : 532978 : int i;
3255 : 532978 : int n_commands; /* # of command. */
3256 : 532978 : char *string;
3257 : 532978 : struct pex_obj *pex;
3258 : 532978 : struct command
3259 : : {
3260 : : const char *prog; /* program name. */
3261 : : const char **argv; /* vector of args. */
3262 : : };
3263 : 532978 : const char *arg;
3264 : :
3265 : 532978 : struct command *commands; /* each command buffer with above info. */
3266 : :
3267 : 532978 : gcc_assert (!processing_spec_function);
3268 : :
3269 : 532978 : if (wrapper_string)
3270 : : {
3271 : 0 : string = find_a_program (argbuf[0]);
3272 : 0 : if (string)
3273 : 0 : argbuf[0] = string;
3274 : 0 : insert_wrapper (wrapper_string);
3275 : : }
3276 : :
3277 : : /* Count # of piped commands. */
3278 : 16038057 : for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3279 : 15505079 : if (strcmp (arg, "|") == 0)
3280 : 0 : n_commands++;
3281 : :
3282 : : /* Get storage for each command. */
3283 : 532978 : commands = XALLOCAVEC (struct command, n_commands);
3284 : :
3285 : : /* Split argbuf into its separate piped processes,
3286 : : and record info about each one.
3287 : : Also search for the programs that are to be run. */
3288 : :
3289 : 532978 : argbuf.safe_push (0);
3290 : :
3291 : 532978 : commands[0].prog = argbuf[0]; /* first command. */
3292 : 532978 : commands[0].argv = argbuf.address ();
3293 : :
3294 : 532978 : if (!wrapper_string)
3295 : : {
3296 : 532978 : string = find_a_program(commands[0].prog);
3297 : 532978 : if (string)
3298 : 530449 : commands[0].argv[0] = string;
3299 : : }
3300 : :
3301 : 16571035 : for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3302 : 16038057 : if (arg && strcmp (arg, "|") == 0)
3303 : : { /* each command. */
3304 : : #if defined (__MSDOS__) || defined (OS2) || defined (VMS)
3305 : : fatal_error (input_location, "%<-pipe%> not supported");
3306 : : #endif
3307 : 0 : argbuf[i] = 0; /* Termination of command args. */
3308 : 0 : commands[n_commands].prog = argbuf[i + 1];
3309 : 0 : commands[n_commands].argv
3310 : 0 : = &(argbuf.address ())[i + 1];
3311 : 0 : string = find_a_program(commands[n_commands].prog);
3312 : 0 : if (string)
3313 : 0 : commands[n_commands].argv[0] = string;
3314 : 0 : n_commands++;
3315 : : }
3316 : :
3317 : : /* If -v, print what we are about to do, and maybe query. */
3318 : :
3319 : 532978 : if (verbose_flag)
3320 : : {
3321 : : /* For help listings, put a blank line between sub-processes. */
3322 : 1393 : if (print_help_list)
3323 : 9 : fputc ('\n', stderr);
3324 : :
3325 : : /* Print each piped command as a separate line. */
3326 : 2786 : for (i = 0; i < n_commands; i++)
3327 : : {
3328 : 1393 : const char *const *j;
3329 : :
3330 : 1393 : if (verbose_only_flag)
3331 : : {
3332 : 17891 : for (j = commands[i].argv; *j; j++)
3333 : : {
3334 : : const char *p;
3335 : 427168 : for (p = *j; *p; ++p)
3336 : 412780 : if (!ISALNUM ((unsigned char) *p)
3337 : 97708 : && *p != '_' && *p != '/' && *p != '-' && *p != '.')
3338 : : break;
3339 : 16874 : if (*p || !*j)
3340 : : {
3341 : 2486 : fprintf (stderr, " \"");
3342 : 129384 : for (p = *j; *p; ++p)
3343 : : {
3344 : 126898 : if (*p == '"' || *p == '\\' || *p == '$')
3345 : 0 : fputc ('\\', stderr);
3346 : 126898 : fputc (*p, stderr);
3347 : : }
3348 : 2486 : fputc ('"', stderr);
3349 : : }
3350 : : /* If it's empty, print "". */
3351 : 14388 : else if (!**j)
3352 : 0 : fprintf (stderr, " \"\"");
3353 : : else
3354 : 14388 : fprintf (stderr, " %s", *j);
3355 : : }
3356 : : }
3357 : : else
3358 : 10564 : for (j = commands[i].argv; *j; j++)
3359 : : /* If it's empty, print "". */
3360 : 10188 : if (!**j)
3361 : 0 : fprintf (stderr, " \"\"");
3362 : : else
3363 : 10188 : fprintf (stderr, " %s", *j);
3364 : :
3365 : : /* Print a pipe symbol after all but the last command. */
3366 : 1393 : if (i + 1 != n_commands)
3367 : 0 : fprintf (stderr, " |");
3368 : 1393 : fprintf (stderr, "\n");
3369 : : }
3370 : 1393 : fflush (stderr);
3371 : 1393 : if (verbose_only_flag != 0)
3372 : : {
3373 : : /* verbose_only_flag should act as if the spec was
3374 : : executed, so increment execution_count before
3375 : : returning. This prevents spurious warnings about
3376 : : unused linker input files, etc. */
3377 : 1017 : execution_count++;
3378 : 1017 : return 0;
3379 : : }
3380 : : #ifdef DEBUG
3381 : : fnotice (stderr, "\nGo ahead? (y or n) ");
3382 : : fflush (stderr);
3383 : : i = getchar ();
3384 : : if (i != '\n')
3385 : : while (getchar () != '\n')
3386 : : ;
3387 : :
3388 : : if (i != 'y' && i != 'Y')
3389 : : return 0;
3390 : : #endif /* DEBUG */
3391 : : }
3392 : :
3393 : : #ifdef ENABLE_VALGRIND_CHECKING
3394 : : /* Run the each command through valgrind. To simplify prepending the
3395 : : path to valgrind and the option "-q" (for quiet operation unless
3396 : : something triggers), we allocate a separate argv array. */
3397 : :
3398 : : for (i = 0; i < n_commands; i++)
3399 : : {
3400 : : const char **argv;
3401 : : int argc;
3402 : : int j;
3403 : :
3404 : : for (argc = 0; commands[i].argv[argc] != NULL; argc++)
3405 : : ;
3406 : :
3407 : : argv = XALLOCAVEC (const char *, argc + 3);
3408 : :
3409 : : argv[0] = VALGRIND_PATH;
3410 : : argv[1] = "-q";
3411 : : for (j = 2; j < argc + 2; j++)
3412 : : argv[j] = commands[i].argv[j - 2];
3413 : : argv[j] = NULL;
3414 : :
3415 : : commands[i].argv = argv;
3416 : : commands[i].prog = argv[0];
3417 : : }
3418 : : #endif
3419 : :
3420 : : /* Run each piped subprocess. */
3421 : :
3422 : 531961 : pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3423 : : ? PEX_RECORD_TIMES : 0),
3424 : : progname, temp_filename);
3425 : 531961 : if (pex == NULL)
3426 : : fatal_error (input_location, "%<pex_init%> failed: %m");
3427 : :
3428 : 1063922 : for (i = 0; i < n_commands; i++)
3429 : : {
3430 : 531961 : const char *errmsg;
3431 : 531961 : int err;
3432 : 531961 : const char *string = commands[i].argv[0];
3433 : :
3434 : 531961 : errmsg = pex_run (pex,
3435 : 531961 : ((i + 1 == n_commands ? PEX_LAST : 0)
3436 : 531961 : | (string == commands[i].prog ? PEX_SEARCH : 0)),
3437 : : string, CONST_CAST (char **, commands[i].argv),
3438 : : NULL, NULL, &err);
3439 : 531961 : if (errmsg != NULL)
3440 : : {
3441 : 0 : errno = err;
3442 : 0 : fatal_error (input_location,
3443 : : err ? G_("cannot execute %qs: %s: %m")
3444 : : : G_("cannot execute %qs: %s"),
3445 : : string, errmsg);
3446 : : }
3447 : :
3448 : 531961 : if (i && string != commands[i].prog)
3449 : 0 : free (CONST_CAST (char *, string));
3450 : : }
3451 : :
3452 : 531961 : execution_count++;
3453 : :
3454 : : /* Wait for all the subprocesses to finish. */
3455 : :
3456 : 531961 : {
3457 : 531961 : int *statuses;
3458 : 531961 : struct pex_time *times = NULL;
3459 : 531961 : int ret_code = 0;
3460 : :
3461 : 531961 : statuses = XALLOCAVEC (int, n_commands);
3462 : 531961 : if (!pex_get_status (pex, n_commands, statuses))
3463 : 0 : fatal_error (input_location, "failed to get exit status: %m");
3464 : :
3465 : 531961 : if (report_times || report_times_to_file)
3466 : : {
3467 : 0 : times = XALLOCAVEC (struct pex_time, n_commands);
3468 : 0 : if (!pex_get_times (pex, n_commands, times))
3469 : 0 : fatal_error (input_location, "failed to get process times: %m");
3470 : : }
3471 : :
3472 : 531961 : pex_free (pex);
3473 : :
3474 : 1063922 : for (i = 0; i < n_commands; ++i)
3475 : : {
3476 : 531961 : int status = statuses[i];
3477 : :
3478 : 531961 : if (WIFSIGNALED (status))
3479 : 0 : switch (WTERMSIG (status))
3480 : : {
3481 : 0 : case SIGINT:
3482 : 0 : case SIGTERM:
3483 : : /* SIGQUIT and SIGKILL are not available on MinGW. */
3484 : : #ifdef SIGQUIT
3485 : 0 : case SIGQUIT:
3486 : : #endif
3487 : : #ifdef SIGKILL
3488 : 0 : case SIGKILL:
3489 : : #endif
3490 : : /* The user (or environment) did something to the
3491 : : inferior. Making this an ICE confuses the user into
3492 : : thinking there's a compiler bug. Much more likely is
3493 : : the user or OOM killer nuked it. */
3494 : 0 : fatal_error (input_location,
3495 : : "%s signal terminated program %s",
3496 : : strsignal (WTERMSIG (status)),
3497 : 0 : commands[i].prog);
3498 : 0 : break;
3499 : :
3500 : : #ifdef SIGPIPE
3501 : 0 : case SIGPIPE:
3502 : : /* SIGPIPE is a special case. It happens in -pipe mode
3503 : : when the compiler dies before the preprocessor is
3504 : : done, or the assembler dies before the compiler is
3505 : : done. There's generally been an error already, and
3506 : : this is just fallout. So don't generate another
3507 : : error unless we would otherwise have succeeded. */
3508 : 0 : if (signal_count || greatest_status >= MIN_FATAL_STATUS)
3509 : : {
3510 : 0 : signal_count++;
3511 : 0 : ret_code = -1;
3512 : 0 : break;
3513 : : }
3514 : : #endif
3515 : : /* FALLTHROUGH */
3516 : :
3517 : 0 : default:
3518 : : /* The inferior failed to catch the signal. */
3519 : 0 : internal_error_no_backtrace ("%s signal terminated program %s",
3520 : : strsignal (WTERMSIG (status)),
3521 : 0 : commands[i].prog);
3522 : : }
3523 : 531961 : else if (WIFEXITED (status)
3524 : 531961 : && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3525 : : {
3526 : : /* For ICEs in cc1, cc1obj, cc1plus see if it is
3527 : : reproducible or not. */
3528 : 27960 : const char *p;
3529 : 27960 : if (flag_report_bug
3530 : 0 : && WEXITSTATUS (status) == ICE_EXIT_CODE
3531 : 0 : && i == 0
3532 : 0 : && (p = strrchr (commands[0].argv[0], DIR_SEPARATOR))
3533 : 27960 : && startswith (p + 1, "cc1"))
3534 : 0 : try_generate_repro (commands[0].argv);
3535 : 27960 : if (WEXITSTATUS (status) > greatest_status)
3536 : 19 : greatest_status = WEXITSTATUS (status);
3537 : : ret_code = -1;
3538 : : }
3539 : :
3540 : 531961 : if (report_times || report_times_to_file)
3541 : : {
3542 : 0 : struct pex_time *pt = ×[i];
3543 : 0 : double ut, st;
3544 : :
3545 : 0 : ut = ((double) pt->user_seconds
3546 : 0 : + (double) pt->user_microseconds / 1.0e6);
3547 : 0 : st = ((double) pt->system_seconds
3548 : 0 : + (double) pt->system_microseconds / 1.0e6);
3549 : :
3550 : 0 : if (ut + st != 0)
3551 : : {
3552 : 0 : if (report_times)
3553 : 0 : fnotice (stderr, "# %s %.2f %.2f\n",
3554 : 0 : commands[i].prog, ut, st);
3555 : :
3556 : 0 : if (report_times_to_file)
3557 : : {
3558 : 0 : int c = 0;
3559 : 0 : const char *const *j;
3560 : :
3561 : 0 : fprintf (report_times_to_file, "%g %g", ut, st);
3562 : :
3563 : 0 : for (j = &commands[i].prog; *j; j = &commands[i].argv[++c])
3564 : : {
3565 : : const char *p;
3566 : 0 : for (p = *j; *p; ++p)
3567 : 0 : if (*p == '"' || *p == '\\' || *p == '$'
3568 : 0 : || ISSPACE (*p))
3569 : : break;
3570 : :
3571 : 0 : if (*p)
3572 : : {
3573 : 0 : fprintf (report_times_to_file, " \"");
3574 : 0 : for (p = *j; *p; ++p)
3575 : : {
3576 : 0 : if (*p == '"' || *p == '\\' || *p == '$')
3577 : 0 : fputc ('\\', report_times_to_file);
3578 : 0 : fputc (*p, report_times_to_file);
3579 : : }
3580 : 0 : fputc ('"', report_times_to_file);
3581 : : }
3582 : : else
3583 : 0 : fprintf (report_times_to_file, " %s", *j);
3584 : : }
3585 : :
3586 : 0 : fputc ('\n', report_times_to_file);
3587 : : }
3588 : : }
3589 : : }
3590 : : }
3591 : :
3592 : 531961 : if (commands[0].argv[0] != commands[0].prog)
3593 : 529432 : free (CONST_CAST (char *, commands[0].argv[0]));
3594 : :
3595 : : return ret_code;
3596 : : }
3597 : : }
3598 : :
3599 : : static struct switchstr *switches;
3600 : :
3601 : : static int n_switches;
3602 : :
3603 : : static int n_switches_alloc;
3604 : :
3605 : : /* Set to zero if -fcompare-debug is disabled, positive if it's
3606 : : enabled and we're running the first compilation, negative if it's
3607 : : enabled and we're running the second compilation. For most of the
3608 : : time, it's in the range -1..1, but it can be temporarily set to 2
3609 : : or 3 to indicate that the -fcompare-debug flags didn't come from
3610 : : the command-line, but rather from the GCC_COMPARE_DEBUG environment
3611 : : variable, until a synthesized -fcompare-debug flag is added to the
3612 : : command line. */
3613 : : int compare_debug;
3614 : :
3615 : : /* Set to nonzero if we've seen the -fcompare-debug-second flag. */
3616 : : int compare_debug_second;
3617 : :
3618 : : /* Set to the flags that should be passed to the second compilation in
3619 : : a -fcompare-debug compilation. */
3620 : : const char *compare_debug_opt;
3621 : :
3622 : : static struct switchstr *switches_debug_check[2];
3623 : :
3624 : : static int n_switches_debug_check[2];
3625 : :
3626 : : static int n_switches_alloc_debug_check[2];
3627 : :
3628 : : static char *debug_check_temp_file[2];
3629 : :
3630 : : /* Language is one of three things:
3631 : :
3632 : : 1) The name of a real programming language.
3633 : : 2) NULL, indicating that no one has figured out
3634 : : what it is yet.
3635 : : 3) '*', indicating that the file should be passed
3636 : : to the linker. */
3637 : : struct infile
3638 : : {
3639 : : const char *name;
3640 : : const char *language;
3641 : : struct compiler *incompiler;
3642 : : bool compiled;
3643 : : bool preprocessed;
3644 : : };
3645 : :
3646 : : /* Also a vector of input files specified. */
3647 : :
3648 : : static struct infile *infiles;
3649 : :
3650 : : int n_infiles;
3651 : :
3652 : : static int n_infiles_alloc;
3653 : :
3654 : : /* True if undefined environment variables encountered during spec processing
3655 : : are ok to ignore, typically when we're running for --help or --version. */
3656 : :
3657 : : static bool spec_undefvar_allowed;
3658 : :
3659 : : /* True if multiple input files are being compiled to a single
3660 : : assembly file. */
3661 : :
3662 : : static bool combine_inputs;
3663 : :
3664 : : /* This counts the number of libraries added by lang_specific_driver, so that
3665 : : we can tell if there were any user supplied any files or libraries. */
3666 : :
3667 : : static int added_libraries;
3668 : :
3669 : : /* And a vector of corresponding output files is made up later. */
3670 : :
3671 : : const char **outfiles;
3672 : :
3673 : : #if defined(HAVE_TARGET_OBJECT_SUFFIX) || defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3674 : :
3675 : : /* Convert NAME to a new name if it is the standard suffix. DO_EXE
3676 : : is true if we should look for an executable suffix. DO_OBJ
3677 : : is true if we should look for an object suffix. */
3678 : :
3679 : : static const char *
3680 : : convert_filename (const char *name, int do_exe ATTRIBUTE_UNUSED,
3681 : : int do_obj ATTRIBUTE_UNUSED)
3682 : : {
3683 : : #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3684 : : int i;
3685 : : #endif
3686 : : int len;
3687 : :
3688 : : if (name == NULL)
3689 : : return NULL;
3690 : :
3691 : : len = strlen (name);
3692 : :
3693 : : #ifdef HAVE_TARGET_OBJECT_SUFFIX
3694 : : /* Convert x.o to x.obj if TARGET_OBJECT_SUFFIX is ".obj". */
3695 : : if (do_obj && len > 2
3696 : : && name[len - 2] == '.'
3697 : : && name[len - 1] == 'o')
3698 : : {
3699 : : obstack_grow (&obstack, name, len - 2);
3700 : : obstack_grow0 (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
3701 : : name = XOBFINISH (&obstack, const char *);
3702 : : }
3703 : : #endif
3704 : :
3705 : : #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
3706 : : /* If there is no filetype, make it the executable suffix (which includes
3707 : : the "."). But don't get confused if we have just "-o". */
3708 : : if (! do_exe || TARGET_EXECUTABLE_SUFFIX[0] == 0 || not_actual_file_p (name))
3709 : : return name;
3710 : :
3711 : : for (i = len - 1; i >= 0; i--)
3712 : : if (IS_DIR_SEPARATOR (name[i]))
3713 : : break;
3714 : :
3715 : : for (i++; i < len; i++)
3716 : : if (name[i] == '.')
3717 : : return name;
3718 : :
3719 : : obstack_grow (&obstack, name, len);
3720 : : obstack_grow0 (&obstack, TARGET_EXECUTABLE_SUFFIX,
3721 : : strlen (TARGET_EXECUTABLE_SUFFIX));
3722 : : name = XOBFINISH (&obstack, const char *);
3723 : : #endif
3724 : :
3725 : : return name;
3726 : : }
3727 : : #endif
3728 : :
3729 : : /* Display the command line switches accepted by gcc. */
3730 : : static void
3731 : 4 : display_help (void)
3732 : : {
3733 : 4 : printf (_("Usage: %s [options] file...\n"), progname);
3734 : 4 : fputs (_("Options:\n"), stdout);
3735 : :
3736 : 4 : fputs (_(" -pass-exit-codes Exit with highest error code from a phase.\n"), stdout);
3737 : 4 : fputs (_(" --help Display this information.\n"), stdout);
3738 : 4 : fputs (_(" --target-help Display target specific command line options "
3739 : : "(including assembler and linker options).\n"), stdout);
3740 : 4 : fputs (_(" --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...].\n"), stdout);
3741 : 4 : fputs (_(" Display specific types of command line options.\n"), stdout);
3742 : 4 : if (! verbose_flag)
3743 : 1 : fputs (_(" (Use '-v --help' to display command line options of sub-processes).\n"), stdout);
3744 : 4 : fputs (_(" --version Display compiler version information.\n"), stdout);
3745 : 4 : fputs (_(" -dumpspecs Display all of the built in spec strings.\n"), stdout);
3746 : 4 : fputs (_(" -dumpversion Display the version of the compiler.\n"), stdout);
3747 : 4 : fputs (_(" -dumpmachine Display the compiler's target processor.\n"), stdout);
3748 : 4 : fputs (_(" -foffload=<targets> Specify offloading targets.\n"), stdout);
3749 : 4 : fputs (_(" -print-search-dirs Display the directories in the compiler's search path.\n"), stdout);
3750 : 4 : fputs (_(" -print-libgcc-file-name Display the name of the compiler's companion library.\n"), stdout);
3751 : 4 : fputs (_(" -print-file-name=<lib> Display the full path to library <lib>.\n"), stdout);
3752 : 4 : fputs (_(" -print-prog-name=<prog> Display the full path to compiler component <prog>.\n"), stdout);
3753 : 4 : fputs (_("\
3754 : : -print-multiarch Display the target's normalized GNU triplet, used as\n\
3755 : : a component in the library path.\n"), stdout);
3756 : 4 : fputs (_(" -print-multi-directory Display the root directory for versions of libgcc.\n"), stdout);
3757 : 4 : fputs (_("\
3758 : : -print-multi-lib Display the mapping between command line options and\n\
3759 : : multiple library search directories.\n"), stdout);
3760 : 4 : fputs (_(" -print-multi-os-directory Display the relative path to OS libraries.\n"), stdout);
3761 : 4 : fputs (_(" -print-sysroot Display the target libraries directory.\n"), stdout);
3762 : 4 : fputs (_(" -print-sysroot-headers-suffix Display the sysroot suffix used to find headers.\n"), stdout);
3763 : 4 : fputs (_(" -Wa,<options> Pass comma-separated <options> on to the assembler.\n"), stdout);
3764 : 4 : fputs (_(" -Wp,<options> Pass comma-separated <options> on to the preprocessor.\n"), stdout);
3765 : 4 : fputs (_(" -Wl,<options> Pass comma-separated <options> on to the linker.\n"), stdout);
3766 : 4 : fputs (_(" -Xassembler <arg> Pass <arg> on to the assembler.\n"), stdout);
3767 : 4 : fputs (_(" -Xpreprocessor <arg> Pass <arg> on to the preprocessor.\n"), stdout);
3768 : 4 : fputs (_(" -Xlinker <arg> Pass <arg> on to the linker.\n"), stdout);
3769 : 4 : fputs (_(" -save-temps Do not delete intermediate files.\n"), stdout);
3770 : 4 : fputs (_(" -save-temps=<arg> Do not delete intermediate files.\n"), stdout);
3771 : 4 : fputs (_("\
3772 : : -no-canonical-prefixes Do not canonicalize paths when building relative\n\
3773 : : prefixes to other gcc components.\n"), stdout);
3774 : 4 : fputs (_(" -pipe Use pipes rather than intermediate files.\n"), stdout);
3775 : 4 : fputs (_(" -time Time the execution of each subprocess.\n"), stdout);
3776 : 4 : fputs (_(" -specs=<file> Override built-in specs with the contents of <file>.\n"), stdout);
3777 : 4 : fputs (_(" -std=<standard> Assume that the input sources are for <standard>.\n"), stdout);
3778 : 4 : fputs (_("\
3779 : : --sysroot=<directory> Use <directory> as the root directory for headers\n\
3780 : : and libraries.\n"), stdout);
3781 : 4 : fputs (_(" -B <directory> Add <directory> to the compiler's search paths.\n"), stdout);
3782 : 4 : fputs (_(" -v Display the programs invoked by the compiler.\n"), stdout);
3783 : 4 : fputs (_(" -### Like -v but options quoted and commands not executed.\n"), stdout);
3784 : 4 : fputs (_(" -E Preprocess only; do not compile, assemble or link.\n"), stdout);
3785 : 4 : fputs (_(" -S Compile only; do not assemble or link.\n"), stdout);
3786 : 4 : fputs (_(" -c Compile and assemble, but do not link.\n"), stdout);
3787 : 4 : fputs (_(" -o <file> Place the output into <file>.\n"), stdout);
3788 : 4 : fputs (_(" -pie Create a dynamically linked position independent\n\
3789 : : executable.\n"), stdout);
3790 : 4 : fputs (_(" -shared Create a shared library.\n"), stdout);
3791 : 4 : fputs (_("\
3792 : : -x <language> Specify the language of the following input files.\n\
3793 : : Permissible languages include: c c++ assembler none\n\
3794 : : 'none' means revert to the default behavior of\n\
3795 : : guessing the language based on the file's extension.\n\
3796 : : "), stdout);
3797 : :
3798 : 4 : printf (_("\
3799 : : \nOptions starting with -g, -f, -m, -O, -W, or --param are automatically\n\
3800 : : passed on to the various sub-processes invoked by %s. In order to pass\n\
3801 : : other options on to these processes the -W<letter> options must be used.\n\
3802 : : "), progname);
3803 : :
3804 : : /* The rest of the options are displayed by invocations of the various
3805 : : sub-processes. */
3806 : 4 : }
3807 : :
3808 : : static void
3809 : 0 : add_preprocessor_option (const char *option, int len)
3810 : : {
3811 : 0 : preprocessor_options.safe_push (save_string (option, len));
3812 : 0 : }
3813 : :
3814 : : static void
3815 : 183 : add_assembler_option (const char *option, int len)
3816 : : {
3817 : 183 : assembler_options.safe_push (save_string (option, len));
3818 : 183 : }
3819 : :
3820 : : static void
3821 : 82 : add_linker_option (const char *option, int len)
3822 : : {
3823 : 82 : linker_options.safe_push (save_string (option, len));
3824 : 82 : }
3825 : :
3826 : : /* Allocate space for an input file in infiles. */
3827 : :
3828 : : static void
3829 : 850761 : alloc_infile (void)
3830 : : {
3831 : 850761 : if (n_infiles_alloc == 0)
3832 : : {
3833 : 290609 : n_infiles_alloc = 16;
3834 : 290609 : infiles = XNEWVEC (struct infile, n_infiles_alloc);
3835 : : }
3836 : 560152 : else if (n_infiles_alloc == n_infiles)
3837 : : {
3838 : 245 : n_infiles_alloc *= 2;
3839 : 245 : infiles = XRESIZEVEC (struct infile, infiles, n_infiles_alloc);
3840 : : }
3841 : 850761 : }
3842 : :
3843 : : /* Store an input file with the given NAME and LANGUAGE in
3844 : : infiles. */
3845 : :
3846 : : static void
3847 : 560153 : add_infile (const char *name, const char *language)
3848 : : {
3849 : 560153 : alloc_infile ();
3850 : 560153 : infiles[n_infiles].name = name;
3851 : 560153 : infiles[n_infiles++].language = language;
3852 : 560153 : }
3853 : :
3854 : : /* Allocate space for a switch in switches. */
3855 : :
3856 : : static void
3857 : 7045856 : alloc_switch (void)
3858 : : {
3859 : 7045856 : if (n_switches_alloc == 0)
3860 : : {
3861 : 290922 : n_switches_alloc = 16;
3862 : 290922 : switches = XNEWVEC (struct switchstr, n_switches_alloc);
3863 : : }
3864 : 6754934 : else if (n_switches_alloc == n_switches)
3865 : : {
3866 : 241883 : n_switches_alloc *= 2;
3867 : 241883 : switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc);
3868 : : }
3869 : 7045856 : }
3870 : :
3871 : : /* Save an option OPT with N_ARGS arguments in array ARGS, marking it
3872 : : as validated if VALIDATED and KNOWN if it is an internal switch. */
3873 : :
3874 : : static void
3875 : 6207595 : save_switch (const char *opt, size_t n_args, const char *const *args,
3876 : : bool validated, bool known)
3877 : : {
3878 : 6207595 : alloc_switch ();
3879 : 6207595 : switches[n_switches].part1 = opt + 1;
3880 : 6207595 : if (n_args == 0)
3881 : 4720803 : switches[n_switches].args = 0;
3882 : : else
3883 : : {
3884 : 1486792 : switches[n_switches].args = XNEWVEC (const char *, n_args + 1);
3885 : 1486792 : memcpy (switches[n_switches].args, args, n_args * sizeof (const char *));
3886 : 1486792 : switches[n_switches].args[n_args] = NULL;
3887 : : }
3888 : :
3889 : 6207595 : switches[n_switches].live_cond = 0;
3890 : 6207595 : switches[n_switches].validated = validated;
3891 : 6207595 : switches[n_switches].known = known;
3892 : 6207595 : switches[n_switches].ordering = 0;
3893 : 6207595 : n_switches++;
3894 : 6207595 : }
3895 : :
3896 : : /* Set the SOURCE_DATE_EPOCH environment variable to the current time if it is
3897 : : not set already. */
3898 : :
3899 : : static void
3900 : 599 : set_source_date_epoch_envvar ()
3901 : : {
3902 : : /* Array size is 21 = ceil(log_10(2^64)) + 1 to hold string representations
3903 : : of 64 bit integers. */
3904 : 599 : char source_date_epoch[21];
3905 : 599 : time_t tt;
3906 : :
3907 : 599 : errno = 0;
3908 : 599 : tt = time (NULL);
3909 : 599 : if (tt < (time_t) 0 || errno != 0)
3910 : 0 : tt = (time_t) 0;
3911 : :
3912 : 599 : snprintf (source_date_epoch, 21, "%llu", (unsigned long long) tt);
3913 : : /* Using setenv instead of xputenv because we want the variable to remain
3914 : : after finalizing so that it's still set in the second run when using
3915 : : -fcompare-debug. */
3916 : 599 : setenv ("SOURCE_DATE_EPOCH", source_date_epoch, 0);
3917 : 599 : }
3918 : :
3919 : : /* Handle an option DECODED that is unknown to the option-processing
3920 : : machinery. */
3921 : :
3922 : : static bool
3923 : 603 : driver_unknown_option_callback (const struct cl_decoded_option *decoded)
3924 : : {
3925 : 603 : const char *opt = decoded->arg;
3926 : 603 : if (opt[1] == 'W' && opt[2] == 'n' && opt[3] == 'o' && opt[4] == '-'
3927 : 93 : && !(decoded->errors & CL_ERR_NEGATIVE))
3928 : : {
3929 : : /* Leave unknown -Wno-* options for the compiler proper, to be
3930 : : diagnosed only if there are warnings. */
3931 : 91 : save_switch (decoded->canonical_option[0],
3932 : 91 : decoded->canonical_option_num_elements - 1,
3933 : : &decoded->canonical_option[1], false, true);
3934 : 91 : return false;
3935 : : }
3936 : 512 : if (decoded->opt_index == OPT_SPECIAL_unknown)
3937 : : {
3938 : : /* Give it a chance to define it a spec file. */
3939 : 512 : save_switch (decoded->canonical_option[0],
3940 : 512 : decoded->canonical_option_num_elements - 1,
3941 : : &decoded->canonical_option[1], false, false);
3942 : 512 : return false;
3943 : : }
3944 : : else
3945 : : return true;
3946 : : }
3947 : :
3948 : : /* Handle an option DECODED that is not marked as CL_DRIVER.
3949 : : LANG_MASK will always be CL_DRIVER. */
3950 : :
3951 : : static void
3952 : 3895891 : driver_wrong_lang_callback (const struct cl_decoded_option *decoded,
3953 : : unsigned int lang_mask ATTRIBUTE_UNUSED)
3954 : : {
3955 : : /* At this point, non-driver options are accepted (and expected to
3956 : : be passed down by specs) unless marked to be rejected by the
3957 : : driver. Options to be rejected by the driver but accepted by the
3958 : : compilers proper are treated just like completely unknown
3959 : : options. */
3960 : 3895891 : const struct cl_option *option = &cl_options[decoded->opt_index];
3961 : :
3962 : 3895891 : if (option->cl_reject_driver)
3963 : 0 : error ("unrecognized command-line option %qs",
3964 : 0 : decoded->orig_option_with_args_text);
3965 : : else
3966 : 3895891 : save_switch (decoded->canonical_option[0],
3967 : 3895891 : decoded->canonical_option_num_elements - 1,
3968 : : &decoded->canonical_option[1], false, true);
3969 : 3895891 : }
3970 : :
3971 : : static const char *spec_lang = 0;
3972 : : static int last_language_n_infiles;
3973 : :
3974 : :
3975 : : /* Check that GCC is configured to support the offload target. */
3976 : :
3977 : : static bool
3978 : 140 : check_offload_target_name (const char *target, ptrdiff_t len)
3979 : : {
3980 : 140 : const char *n, *c = OFFLOAD_TARGETS;
3981 : 280 : while (c)
3982 : : {
3983 : 140 : n = strchr (c, ',');
3984 : 140 : if (n == NULL)
3985 : 140 : n = strchr (c, '\0');
3986 : 140 : if (len == n - c && strncmp (target, c, n - c) == 0)
3987 : : break;
3988 : 140 : c = *n ? n + 1 : NULL;
3989 : : }
3990 : 140 : if (!c)
3991 : : {
3992 : 140 : auto_vec<const char*> candidates;
3993 : 140 : size_t olen = strlen (OFFLOAD_TARGETS) + 1;
3994 : 140 : char *cand = XALLOCAVEC (char, olen);
3995 : 140 : memcpy (cand, OFFLOAD_TARGETS, olen);
3996 : 140 : for (c = strtok (cand, ","); c; c = strtok (NULL, ","))
3997 : 0 : candidates.safe_push (c);
3998 : 140 : candidates.safe_push ("default");
3999 : 140 : candidates.safe_push ("disable");
4000 : :
4001 : 140 : char *target2 = XALLOCAVEC (char, len + 1);
4002 : 140 : memcpy (target2, target, len);
4003 : 140 : target2[len] = '\0';
4004 : :
4005 : 140 : error ("GCC is not configured to support %qs as %<-foffload=%> argument",
4006 : : target2);
4007 : :
4008 : 140 : char *s;
4009 : 140 : const char *hint = candidates_list_and_hint (target2, s, candidates);
4010 : 140 : if (hint)
4011 : 0 : inform (UNKNOWN_LOCATION,
4012 : : "valid %<-foffload=%> arguments are: %s; "
4013 : : "did you mean %qs?", s, hint);
4014 : : else
4015 : 140 : inform (UNKNOWN_LOCATION, "valid %<-foffload=%> arguments are: %s", s);
4016 : 140 : XDELETEVEC (s);
4017 : 140 : return false;
4018 : 140 : }
4019 : : return true;
4020 : : }
4021 : :
4022 : : /* Sanity check for -foffload-options. */
4023 : :
4024 : : static void
4025 : 6 : check_foffload_target_names (const char *arg)
4026 : : {
4027 : 6 : const char *cur, *next, *end;
4028 : : /* If option argument starts with '-' then no target is specified and we
4029 : : do not need to parse it. */
4030 : 6 : if (arg[0] == '-')
4031 : : return;
4032 : 0 : end = strchr (arg, '=');
4033 : 0 : if (end == NULL)
4034 : : {
4035 : 0 : error ("%<=%>options missing after %<-foffload-options=%>target");
4036 : 0 : return;
4037 : : }
4038 : :
4039 : : cur = arg;
4040 : 0 : while (cur < end)
4041 : : {
4042 : 0 : next = strchr (cur, ',');
4043 : 0 : if (next == NULL)
4044 : 0 : next = end;
4045 : 0 : next = (next > end) ? end : next;
4046 : :
4047 : : /* Retain non-supported targets after printing an error as those will not
4048 : : be processed; each enabled target only processes its triplet. */
4049 : 0 : check_offload_target_name (cur, next - cur);
4050 : 0 : cur = next + 1;
4051 : : }
4052 : : }
4053 : :
4054 : : /* Parse -foffload option argument. */
4055 : :
4056 : : static void
4057 : 2812 : handle_foffload_option (const char *arg)
4058 : : {
4059 : 2812 : const char *c, *cur, *n, *next, *end;
4060 : 2812 : char *target;
4061 : :
4062 : : /* If option argument starts with '-' then no target is specified and we
4063 : : do not need to parse it. */
4064 : 2812 : if (arg[0] == '-')
4065 : : return;
4066 : :
4067 : 1973 : end = strchr (arg, '=');
4068 : 1973 : if (end == NULL)
4069 : 1973 : end = strchr (arg, '\0');
4070 : 1973 : cur = arg;
4071 : :
4072 : 1973 : while (cur < end)
4073 : : {
4074 : 1973 : next = strchr (cur, ',');
4075 : 1973 : if (next == NULL)
4076 : 1973 : next = end;
4077 : 1973 : next = (next > end) ? end : next;
4078 : :
4079 : 1973 : target = XNEWVEC (char, next - cur + 1);
4080 : 1973 : memcpy (target, cur, next - cur);
4081 : 1973 : target[next - cur] = '\0';
4082 : :
4083 : : /* Reset offloading list and continue. */
4084 : 1973 : if (strcmp (target, "default") == 0)
4085 : : {
4086 : 0 : free (offload_targets);
4087 : 0 : offload_targets = NULL;
4088 : 0 : goto next_item;
4089 : : }
4090 : :
4091 : : /* If 'disable' is passed to the option, clean the list of
4092 : : offload targets and return, even if more targets follow.
4093 : : Likewise if GCC is not configured to support that offload target. */
4094 : 1973 : if (strcmp (target, "disable") == 0
4095 : 1973 : || !check_offload_target_name (target, next - cur))
4096 : : {
4097 : 1973 : free (offload_targets);
4098 : 1973 : offload_targets = xstrdup ("");
4099 : 1973 : return;
4100 : : }
4101 : :
4102 : 0 : if (!offload_targets)
4103 : : {
4104 : 0 : offload_targets = target;
4105 : 0 : target = NULL;
4106 : : }
4107 : : else
4108 : : {
4109 : : /* Check that the target hasn't already presented in the list. */
4110 : : c = offload_targets;
4111 : 0 : do
4112 : : {
4113 : 0 : n = strchr (c, ':');
4114 : 0 : if (n == NULL)
4115 : 0 : n = strchr (c, '\0');
4116 : :
4117 : 0 : if (next - cur == n - c && strncmp (c, target, n - c) == 0)
4118 : : break;
4119 : :
4120 : 0 : c = n + 1;
4121 : : }
4122 : 0 : while (*n);
4123 : :
4124 : : /* If duplicate is not found, append the target to the list. */
4125 : 0 : if (c > n)
4126 : : {
4127 : 0 : size_t offload_targets_len = strlen (offload_targets);
4128 : 0 : offload_targets
4129 : 0 : = XRESIZEVEC (char, offload_targets,
4130 : : offload_targets_len + 1 + next - cur + 1);
4131 : 0 : offload_targets[offload_targets_len++] = ':';
4132 : 0 : memcpy (offload_targets + offload_targets_len, target, next - cur + 1);
4133 : : }
4134 : : }
4135 : 0 : next_item:
4136 : 0 : cur = next + 1;
4137 : 0 : XDELETEVEC (target);
4138 : : }
4139 : : }
4140 : :
4141 : : /* Forward certain options to offloading compilation. */
4142 : :
4143 : : static void
4144 : 0 : forward_offload_option (size_t opt_index, const char *arg, bool validated)
4145 : : {
4146 : 0 : switch (opt_index)
4147 : : {
4148 : 0 : case OPT_l:
4149 : : /* Use a '_GCC_' prefix and standard name ('-l_GCC_m' irrespective of the
4150 : : host's 'MATH_LIBRARY', for example), so that the 'mkoffload's can tell
4151 : : this has been synthesized here, and translate/drop as necessary. */
4152 : : /* Note that certain libraries ('-lc', '-lgcc', '-lgomp', for example)
4153 : : are injected by default in offloading compilation, and therefore not
4154 : : forwarded here. */
4155 : : /* GCC libraries. */
4156 : 0 : if (/* '-lgfortran' */ strcmp (arg, "gfortran") == 0 )
4157 : 0 : save_switch (concat ("-foffload-options=-l_GCC_", arg, NULL),
4158 : : 0, NULL, validated, true);
4159 : : /* Other libraries. */
4160 : : else
4161 : : {
4162 : : /* The case will need special consideration where on the host
4163 : : '!need_math', but for offloading compilation still need
4164 : : '-foffload-options=-l_GCC_m'. The problem is that we don't get
4165 : : here anything like '-lm', because it's not synthesized in
4166 : : 'gcc/fortran/gfortranspec.cc:lang_specific_driver', for example.
4167 : : Generally synthesizing '-foffload-options=-l_GCC_m' etc. in the
4168 : : language specific drivers is non-trivial, needs very careful
4169 : : review of their options handling. However, this issue is not
4170 : : actually relevant for the current set of supported host/offloading
4171 : : configurations. */
4172 : 0 : int need_math = (MATH_LIBRARY[0] != '\0');
4173 : 0 : if (/* '-lm' */ (need_math && strcmp (arg, MATH_LIBRARY) == 0))
4174 : 0 : save_switch ("-foffload-options=-l_GCC_m",
4175 : : 0, NULL, validated, true);
4176 : : }
4177 : 0 : break;
4178 : 0 : default:
4179 : 0 : gcc_unreachable ();
4180 : : }
4181 : 0 : }
4182 : :
4183 : : /* Handle a driver option; arguments and return value as for
4184 : : handle_option. */
4185 : :
4186 : : static bool
4187 : 2632336 : driver_handle_option (struct gcc_options *opts,
4188 : : struct gcc_options *opts_set,
4189 : : const struct cl_decoded_option *decoded,
4190 : : unsigned int lang_mask ATTRIBUTE_UNUSED, int kind,
4191 : : location_t loc,
4192 : : const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED,
4193 : : diagnostic_context *dc,
4194 : : void (*) (void))
4195 : : {
4196 : 2632336 : size_t opt_index = decoded->opt_index;
4197 : 2632336 : const char *arg = decoded->arg;
4198 : 2632336 : const char *compare_debug_replacement_opt;
4199 : 2632336 : int value = decoded->value;
4200 : 2632336 : bool validated = false;
4201 : 2632336 : bool do_save = true;
4202 : :
4203 : 2632336 : gcc_assert (opts == &global_options);
4204 : 2632336 : gcc_assert (opts_set == &global_options_set);
4205 : 2632336 : gcc_assert (kind == DK_UNSPECIFIED);
4206 : 2632336 : gcc_assert (loc == UNKNOWN_LOCATION);
4207 : 2632336 : gcc_assert (dc == global_dc);
4208 : :
4209 : 2632336 : switch (opt_index)
4210 : : {
4211 : 1 : case OPT_dumpspecs:
4212 : 1 : {
4213 : 1 : struct spec_list *sl;
4214 : 1 : init_spec ();
4215 : 47 : for (sl = specs; sl; sl = sl->next)
4216 : 46 : printf ("*%s:\n%s\n\n", sl->name, *(sl->ptr_spec));
4217 : 1 : if (link_command_spec)
4218 : 1 : printf ("*link_command:\n%s\n\n", link_command_spec);
4219 : 1 : exit (0);
4220 : : }
4221 : :
4222 : 280 : case OPT_dumpversion:
4223 : 280 : printf ("%s\n", spec_version);
4224 : 280 : exit (0);
4225 : :
4226 : 0 : case OPT_dumpmachine:
4227 : 0 : printf ("%s\n", spec_machine);
4228 : 0 : exit (0);
4229 : :
4230 : 0 : case OPT_dumpfullversion:
4231 : 0 : printf ("%s\n", BASEVER);
4232 : 0 : exit (0);
4233 : :
4234 : 78 : case OPT__version:
4235 : 78 : print_version = 1;
4236 : :
4237 : : /* CPP driver cannot obtain switch from cc1_options. */
4238 : 78 : if (is_cpp_driver)
4239 : 0 : add_preprocessor_option ("--version", strlen ("--version"));
4240 : 78 : add_assembler_option ("--version", strlen ("--version"));
4241 : 78 : add_linker_option ("--version", strlen ("--version"));
4242 : 78 : break;
4243 : :
4244 : 5 : case OPT__completion_:
4245 : 5 : validated = true;
4246 : 5 : completion = decoded->arg;
4247 : 5 : break;
4248 : :
4249 : 4 : case OPT__help:
4250 : 4 : print_help_list = 1;
4251 : :
4252 : : /* CPP driver cannot obtain switch from cc1_options. */
4253 : 4 : if (is_cpp_driver)
4254 : 0 : add_preprocessor_option ("--help", 6);
4255 : 4 : add_assembler_option ("--help", 6);
4256 : 4 : add_linker_option ("--help", 6);
4257 : 4 : break;
4258 : :
4259 : 105 : case OPT__help_:
4260 : 105 : print_subprocess_help = 2;
4261 : 105 : break;
4262 : :
4263 : 0 : case OPT__target_help:
4264 : 0 : print_subprocess_help = 1;
4265 : :
4266 : : /* CPP driver cannot obtain switch from cc1_options. */
4267 : 0 : if (is_cpp_driver)
4268 : 0 : add_preprocessor_option ("--target-help", 13);
4269 : 0 : add_assembler_option ("--target-help", 13);
4270 : 0 : add_linker_option ("--target-help", 13);
4271 : 0 : break;
4272 : :
4273 : : case OPT__no_sysroot_suffix:
4274 : : case OPT_pass_exit_codes:
4275 : : case OPT_print_search_dirs:
4276 : : case OPT_print_file_name_:
4277 : : case OPT_print_prog_name_:
4278 : : case OPT_print_multi_lib:
4279 : : case OPT_print_multi_directory:
4280 : : case OPT_print_sysroot:
4281 : : case OPT_print_multi_os_directory:
4282 : : case OPT_print_multiarch:
4283 : : case OPT_print_sysroot_headers_suffix:
4284 : : case OPT_time:
4285 : : case OPT_wrapper:
4286 : : /* These options set the variables specified in common.opt
4287 : : automatically, and do not need to be saved for spec
4288 : : processing. */
4289 : : do_save = false;
4290 : : break;
4291 : :
4292 : 392 : case OPT_print_libgcc_file_name:
4293 : 392 : print_file_name = "libgcc.a";
4294 : 392 : do_save = false;
4295 : 392 : break;
4296 : :
4297 : 0 : case OPT_fuse_ld_bfd:
4298 : 0 : use_ld = ".bfd";
4299 : 0 : break;
4300 : :
4301 : 0 : case OPT_fuse_ld_gold:
4302 : 0 : use_ld = ".gold";
4303 : 0 : break;
4304 : :
4305 : 0 : case OPT_fuse_ld_mold:
4306 : 0 : use_ld = ".mold";
4307 : 0 : break;
4308 : :
4309 : 0 : case OPT_fcompare_debug_second:
4310 : 0 : compare_debug_second = 1;
4311 : 0 : break;
4312 : :
4313 : 593 : case OPT_fcompare_debug:
4314 : 593 : switch (value)
4315 : : {
4316 : 0 : case 0:
4317 : 0 : compare_debug_replacement_opt = "-fcompare-debug=";
4318 : 0 : arg = "";
4319 : 0 : goto compare_debug_with_arg;
4320 : :
4321 : 593 : case 1:
4322 : 593 : compare_debug_replacement_opt = "-fcompare-debug=-gtoggle";
4323 : 593 : arg = "-gtoggle";
4324 : 593 : goto compare_debug_with_arg;
4325 : :
4326 : 0 : default:
4327 : 0 : gcc_unreachable ();
4328 : : }
4329 : 6 : break;
4330 : :
4331 : 6 : case OPT_fcompare_debug_:
4332 : 6 : compare_debug_replacement_opt = decoded->canonical_option[0];
4333 : 599 : compare_debug_with_arg:
4334 : 599 : gcc_assert (decoded->canonical_option_num_elements == 1);
4335 : 599 : gcc_assert (arg != NULL);
4336 : 599 : if (*arg)
4337 : 599 : compare_debug = 1;
4338 : : else
4339 : 0 : compare_debug = -1;
4340 : 599 : if (compare_debug < 0)
4341 : 0 : compare_debug_opt = NULL;
4342 : : else
4343 : 599 : compare_debug_opt = arg;
4344 : 599 : save_switch (compare_debug_replacement_opt, 0, NULL, validated, true);
4345 : 599 : set_source_date_epoch_envvar ();
4346 : 599 : return true;
4347 : :
4348 : 260845 : case OPT_fdiagnostics_color_:
4349 : 260845 : diagnostic_color_init (dc, value);
4350 : 260845 : break;
4351 : :
4352 : 250394 : case OPT_fdiagnostics_urls_:
4353 : 250394 : diagnostic_urls_init (dc, value);
4354 : 250394 : break;
4355 : :
4356 : 0 : case OPT_fdiagnostics_show_highlight_colors:
4357 : 0 : dc->set_show_highlight_colors (value);
4358 : 0 : break;
4359 : :
4360 : 0 : case OPT_fdiagnostics_format_:
4361 : 0 : {
4362 : 0 : const char *basename = (opts->x_dump_base_name ? opts->x_dump_base_name
4363 : : : opts->x_main_input_basename);
4364 : 0 : gcc_assert (dc);
4365 : 0 : diagnostic_output_format_init (*dc,
4366 : : opts->x_main_input_filename, basename,
4367 : : (enum diagnostics_output_format)value,
4368 : 0 : opts->x_flag_diagnostics_json_formatting);
4369 : 0 : break;
4370 : : }
4371 : :
4372 : 0 : case OPT_fdiagnostics_add_output_:
4373 : 0 : handle_OPT_fdiagnostics_add_output_ (*opts, *dc, arg, loc);
4374 : 0 : break;
4375 : :
4376 : 0 : case OPT_fdiagnostics_set_output_:
4377 : 0 : handle_OPT_fdiagnostics_set_output_ (*opts, *dc, arg, loc);
4378 : 0 : break;
4379 : :
4380 : 278373 : case OPT_fdiagnostics_text_art_charset_:
4381 : 278373 : dc->set_text_art_charset ((enum diagnostic_text_art_charset)value);
4382 : 278373 : break;
4383 : :
4384 : : case OPT_Wa_:
4385 : : {
4386 : : int prev, j;
4387 : : /* Pass the rest of this option to the assembler. */
4388 : :
4389 : : /* Split the argument at commas. */
4390 : : prev = 0;
4391 : 466 : for (j = 0; arg[j]; j++)
4392 : 430 : if (arg[j] == ',')
4393 : : {
4394 : 0 : add_assembler_option (arg + prev, j - prev);
4395 : 0 : prev = j + 1;
4396 : : }
4397 : :
4398 : : /* Record the part after the last comma. */
4399 : 36 : add_assembler_option (arg + prev, j - prev);
4400 : : }
4401 : 36 : do_save = false;
4402 : 36 : break;
4403 : :
4404 : : case OPT_Wp_:
4405 : : {
4406 : : int prev, j;
4407 : : /* Pass the rest of this option to the preprocessor. */
4408 : :
4409 : : /* Split the argument at commas. */
4410 : : prev = 0;
4411 : 0 : for (j = 0; arg[j]; j++)
4412 : 0 : if (arg[j] == ',')
4413 : : {
4414 : 0 : add_preprocessor_option (arg + prev, j - prev);
4415 : 0 : prev = j + 1;
4416 : : }
4417 : :
4418 : : /* Record the part after the last comma. */
4419 : 0 : add_preprocessor_option (arg + prev, j - prev);
4420 : : }
4421 : 0 : do_save = false;
4422 : 0 : break;
4423 : :
4424 : : case OPT_Wl_:
4425 : : {
4426 : : int prev, j;
4427 : : /* Split the argument at commas. */
4428 : : prev = 0;
4429 : 125612 : for (j = 0; arg[j]; j++)
4430 : 118096 : if (arg[j] == ',')
4431 : : {
4432 : 30 : add_infile (save_string (arg + prev, j - prev), "*");
4433 : 30 : prev = j + 1;
4434 : : }
4435 : : /* Record the part after the last comma. */
4436 : 7516 : add_infile (arg + prev, "*");
4437 : : }
4438 : 7516 : do_save = false;
4439 : 7516 : break;
4440 : :
4441 : 0 : case OPT_Xlinker:
4442 : 0 : add_infile (arg, "*");
4443 : 0 : do_save = false;
4444 : 0 : break;
4445 : :
4446 : 0 : case OPT_Xpreprocessor:
4447 : 0 : add_preprocessor_option (arg, strlen (arg));
4448 : 0 : do_save = false;
4449 : 0 : break;
4450 : :
4451 : 65 : case OPT_Xassembler:
4452 : 65 : add_assembler_option (arg, strlen (arg));
4453 : 65 : do_save = false;
4454 : 65 : break;
4455 : :
4456 : 239753 : case OPT_l:
4457 : : /* POSIX allows separation of -l and the lib arg; canonicalize
4458 : : by concatenating -l with its arg */
4459 : 239753 : add_infile (concat ("-l", arg, NULL), "*");
4460 : :
4461 : : /* Forward to offloading compilation '-l[...]' flags for standard,
4462 : : well-known libraries. */
4463 : : /* Doing this processing here means that we don't get to see libraries
4464 : : injected via specs, such as '-lquadmath' injected via
4465 : : '[build]/[target]/libgfortran/libgfortran.spec'. However, this issue
4466 : : is not actually relevant for the current set of host/offloading
4467 : : configurations. */
4468 : 239753 : if (ENABLE_OFFLOADING)
4469 : : forward_offload_option (opt_index, arg, validated);
4470 : :
4471 : 239753 : do_save = false;
4472 : 239753 : break;
4473 : :
4474 : 257879 : case OPT_L:
4475 : : /* Similarly, canonicalize -L for linkers that may not accept
4476 : : separate arguments. */
4477 : 257879 : save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true);
4478 : 257879 : return true;
4479 : :
4480 : 0 : case OPT_F:
4481 : : /* Likewise -F. */
4482 : 0 : save_switch (concat ("-F", arg, NULL), 0, NULL, validated, true);
4483 : 0 : return true;
4484 : :
4485 : 412 : case OPT_save_temps:
4486 : 412 : if (!save_temps_flag)
4487 : 406 : save_temps_flag = SAVE_TEMPS_DUMP;
4488 : : validated = true;
4489 : : break;
4490 : :
4491 : 58 : case OPT_save_temps_:
4492 : 58 : if (strcmp (arg, "cwd") == 0)
4493 : 29 : save_temps_flag = SAVE_TEMPS_CWD;
4494 : 29 : else if (strcmp (arg, "obj") == 0
4495 : 0 : || strcmp (arg, "object") == 0)
4496 : 29 : save_temps_flag = SAVE_TEMPS_OBJ;
4497 : : else
4498 : 0 : fatal_error (input_location, "%qs is an unknown %<-save-temps%> option",
4499 : 0 : decoded->orig_option_with_args_text);
4500 : 58 : save_temps_overrides_dumpdir = true;
4501 : 58 : break;
4502 : :
4503 : 22380 : case OPT_dumpdir:
4504 : 22380 : free (dumpdir);
4505 : 22380 : dumpdir = xstrdup (arg);
4506 : 22380 : save_temps_overrides_dumpdir = false;
4507 : 22380 : break;
4508 : :
4509 : 23814 : case OPT_dumpbase:
4510 : 23814 : free (dumpbase);
4511 : 23814 : dumpbase = xstrdup (arg);
4512 : 23814 : break;
4513 : :
4514 : 248 : case OPT_dumpbase_ext:
4515 : 248 : free (dumpbase_ext);
4516 : 248 : dumpbase_ext = xstrdup (arg);
4517 : 248 : break;
4518 : :
4519 : : case OPT_no_canonical_prefixes:
4520 : : /* Already handled as a special case, so ignored here. */
4521 : : do_save = false;
4522 : : break;
4523 : :
4524 : : case OPT_pipe:
4525 : : validated = true;
4526 : : /* These options set the variables specified in common.opt
4527 : : automatically, but do need to be saved for spec
4528 : : processing. */
4529 : : break;
4530 : :
4531 : 3 : case OPT_specs_:
4532 : 3 : {
4533 : 3 : struct user_specs *user = XNEW (struct user_specs);
4534 : :
4535 : 3 : user->next = (struct user_specs *) 0;
4536 : 3 : user->filename = arg;
4537 : 3 : if (user_specs_tail)
4538 : 0 : user_specs_tail->next = user;
4539 : : else
4540 : 3 : user_specs_head = user;
4541 : 3 : user_specs_tail = user;
4542 : : }
4543 : 3 : validated = true;
4544 : 3 : break;
4545 : :
4546 : 0 : case OPT__sysroot_:
4547 : 0 : target_system_root = arg;
4548 : 0 : target_system_root_changed = 1;
4549 : : /* Saving this option is useful to let self-specs decide to
4550 : : provide a default one. */
4551 : 0 : do_save = true;
4552 : 0 : validated = true;
4553 : 0 : break;
4554 : :
4555 : 0 : case OPT_time_:
4556 : 0 : if (report_times_to_file)
4557 : 0 : fclose (report_times_to_file);
4558 : 0 : report_times_to_file = fopen (arg, "a");
4559 : 0 : do_save = false;
4560 : 0 : break;
4561 : :
4562 : 9109 : case OPT_truncate:
4563 : 9109 : totruncate_file = arg;
4564 : 9109 : do_save = false;
4565 : 9109 : break;
4566 : :
4567 : 638 : case OPT____:
4568 : : /* "-###"
4569 : : This is similar to -v except that there is no execution
4570 : : of the commands and the echoed arguments are quoted. It
4571 : : is intended for use in shell scripts to capture the
4572 : : driver-generated command line. */
4573 : 638 : verbose_only_flag++;
4574 : 638 : verbose_flag = 1;
4575 : 638 : do_save = false;
4576 : 638 : break;
4577 : :
4578 : 481083 : case OPT_B:
4579 : 481083 : {
4580 : 481083 : size_t len = strlen (arg);
4581 : :
4582 : : /* Catch the case where the user has forgotten to append a
4583 : : directory separator to the path. Note, they may be using
4584 : : -B to add an executable name prefix, eg "i386-elf-", in
4585 : : order to distinguish between multiple installations of
4586 : : GCC in the same directory. Hence we must check to see
4587 : : if appending a directory separator actually makes a
4588 : : valid directory name. */
4589 : 481083 : if (!IS_DIR_SEPARATOR (arg[len - 1])
4590 : 481083 : && is_directory (arg))
4591 : : {
4592 : 92479 : char *tmp = XNEWVEC (char, len + 2);
4593 : 92479 : strcpy (tmp, arg);
4594 : 92479 : tmp[len] = DIR_SEPARATOR;
4595 : 92479 : tmp[++len] = 0;
4596 : 92479 : arg = tmp;
4597 : : }
4598 : :
4599 : 481083 : add_prefix (&exec_prefixes, arg, NULL,
4600 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4601 : 481083 : add_prefix (&startfile_prefixes, arg, NULL,
4602 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4603 : 481083 : add_prefix (&include_prefixes, arg, NULL,
4604 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4605 : : }
4606 : 481083 : validated = true;
4607 : 481083 : break;
4608 : :
4609 : 2308 : case OPT_E:
4610 : 2308 : have_E = true;
4611 : 2308 : break;
4612 : :
4613 : 49797 : case OPT_x:
4614 : 49797 : spec_lang = arg;
4615 : 49797 : if (!strcmp (spec_lang, "none"))
4616 : : /* Suppress the warning if -xnone comes after the last input
4617 : : file, because alternate command interfaces like g++ might
4618 : : find it useful to place -xnone after each input file. */
4619 : 12940 : spec_lang = 0;
4620 : : else
4621 : 36857 : last_language_n_infiles = n_infiles;
4622 : : do_save = false;
4623 : : break;
4624 : :
4625 : 263978 : case OPT_o:
4626 : 263978 : have_o = 1;
4627 : : #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX) || defined(HAVE_TARGET_OBJECT_SUFFIX)
4628 : : arg = convert_filename (arg, ! have_c, 0);
4629 : : #endif
4630 : 263978 : output_file = arg;
4631 : : /* On some systems, ld cannot handle "-o" without a space. So
4632 : : split the option from its argument. */
4633 : 263978 : save_switch ("-o", 1, &arg, validated, true);
4634 : 263978 : return true;
4635 : :
4636 : 2037 : case OPT_pie:
4637 : : #ifdef ENABLE_DEFAULT_PIE
4638 : : /* -pie is turned on by default. */
4639 : : validated = true;
4640 : : #endif
4641 : : /* FALLTHROUGH */
4642 : 2037 : case OPT_r:
4643 : 2037 : case OPT_shared:
4644 : 2037 : case OPT_no_pie:
4645 : 2037 : any_link_options_p = true;
4646 : 2037 : break;
4647 : :
4648 : 100 : case OPT_static:
4649 : 100 : static_p = true;
4650 : 100 : break;
4651 : :
4652 : : case OPT_static_libgcc:
4653 : : case OPT_shared_libgcc:
4654 : : case OPT_static_libgfortran:
4655 : : case OPT_static_libquadmath:
4656 : : case OPT_static_libphobos:
4657 : : case OPT_static_libgm2:
4658 : : case OPT_static_libstdc__:
4659 : : /* These are always valid; gcc.cc itself understands the first two
4660 : : gfortranspec.cc understands -static-libgfortran,
4661 : : libgfortran.spec handles -static-libquadmath,
4662 : : d-spec.cc understands -static-libphobos,
4663 : : gm2spec.cc understands -static-libgm2,
4664 : : and g++spec.cc understands -static-libstdc++. */
4665 : : validated = true;
4666 : : break;
4667 : :
4668 : 78 : case OPT_fwpa:
4669 : 78 : flag_wpa = "";
4670 : 78 : break;
4671 : :
4672 : 6 : case OPT_foffload_options_:
4673 : 6 : check_foffload_target_names (arg);
4674 : 6 : break;
4675 : :
4676 : 2812 : case OPT_foffload_:
4677 : 2812 : handle_foffload_option (arg);
4678 : 2812 : if (arg[0] == '-' || NULL != strchr (arg, '='))
4679 : 839 : save_switch (concat ("-foffload-options=", arg, NULL),
4680 : : 0, NULL, validated, true);
4681 : : do_save = false;
4682 : : break;
4683 : :
4684 : 0 : case OPT_gcodeview:
4685 : 0 : add_infile ("--pdb=", "*");
4686 : 0 : break;
4687 : :
4688 : : default:
4689 : : /* Various driver options need no special processing at this
4690 : : point, having been handled in a prescan above or being
4691 : : handled by specs. */
4692 : : break;
4693 : : }
4694 : :
4695 : 1579428 : if (do_save)
4696 : 1786541 : save_switch (decoded->canonical_option[0],
4697 : 1786541 : decoded->canonical_option_num_elements - 1,
4698 : : &decoded->canonical_option[1], validated, true);
4699 : : return true;
4700 : : }
4701 : :
4702 : : /* Return true if F2 is F1 followed by a single suffix, i.e., by a
4703 : : period and additional characters other than a period. */
4704 : :
4705 : : static inline bool
4706 : 82641 : adds_single_suffix_p (const char *f2, const char *f1)
4707 : : {
4708 : 82641 : size_t len = strlen (f1);
4709 : :
4710 : 82641 : return (strncmp (f1, f2, len) == 0
4711 : 75294 : && f2[len] == '.'
4712 : 157482 : && strchr (f2 + len + 1, '.') == NULL);
4713 : : }
4714 : :
4715 : : /* Put the driver's standard set of option handlers in *HANDLERS. */
4716 : :
4717 : : static void
4718 : 838543 : set_option_handlers (struct cl_option_handlers *handlers)
4719 : : {
4720 : 838543 : handlers->unknown_option_callback = driver_unknown_option_callback;
4721 : 838543 : handlers->wrong_lang_callback = driver_wrong_lang_callback;
4722 : 838543 : handlers->num_handlers = 3;
4723 : 838543 : handlers->handlers[0].handler = driver_handle_option;
4724 : 838543 : handlers->handlers[0].mask = CL_DRIVER;
4725 : 838543 : handlers->handlers[1].handler = common_handle_option;
4726 : 838543 : handlers->handlers[1].mask = CL_COMMON;
4727 : 838543 : handlers->handlers[2].handler = target_handle_option;
4728 : 838543 : handlers->handlers[2].mask = CL_TARGET;
4729 : 0 : }
4730 : :
4731 : :
4732 : : /* Return the index into infiles for the single non-library
4733 : : non-lto-wpa input file, -1 if there isn't any, or -2 if there is
4734 : : more than one. */
4735 : : static inline int
4736 : 150933 : single_input_file_index ()
4737 : : {
4738 : 150933 : int ret = -1;
4739 : :
4740 : 478320 : for (int i = 0; i < n_infiles; i++)
4741 : : {
4742 : 339427 : if (infiles[i].language
4743 : 236468 : && (infiles[i].language[0] == '*'
4744 : 49314 : || (flag_wpa
4745 : 19070 : && strcmp (infiles[i].language, "lto") == 0)))
4746 : 206224 : continue;
4747 : :
4748 : 133203 : if (ret != -1)
4749 : : return -2;
4750 : :
4751 : : ret = i;
4752 : : }
4753 : :
4754 : : return ret;
4755 : : }
4756 : :
4757 : : /* Create the vector `switches' and its contents.
4758 : : Store its length in `n_switches'. */
4759 : :
4760 : : static void
4761 : 290894 : process_command (unsigned int decoded_options_count,
4762 : : struct cl_decoded_option *decoded_options)
4763 : : {
4764 : 290894 : const char *temp;
4765 : 290894 : char *temp1;
4766 : 290894 : char *tooldir_prefix, *tooldir_prefix2;
4767 : 290894 : char *(*get_relative_prefix) (const char *, const char *,
4768 : : const char *) = NULL;
4769 : 290894 : struct cl_option_handlers handlers;
4770 : 290894 : unsigned int j;
4771 : :
4772 : 290894 : gcc_exec_prefix = env.get ("GCC_EXEC_PREFIX");
4773 : :
4774 : 290894 : n_switches = 0;
4775 : 290894 : n_infiles = 0;
4776 : 290894 : added_libraries = 0;
4777 : :
4778 : : /* Figure compiler version from version string. */
4779 : :
4780 : 290894 : compiler_version = temp1 = xstrdup (version_string);
4781 : :
4782 : 2036258 : for (; *temp1; ++temp1)
4783 : : {
4784 : 2036258 : if (*temp1 == ' ')
4785 : : {
4786 : 290894 : *temp1 = '\0';
4787 : 290894 : break;
4788 : : }
4789 : : }
4790 : :
4791 : : /* Handle any -no-canonical-prefixes flag early, to assign the function
4792 : : that builds relative prefixes. This function creates default search
4793 : : paths that are needed later in normal option handling. */
4794 : :
4795 : 6235761 : for (j = 1; j < decoded_options_count; j++)
4796 : : {
4797 : 5944867 : if (decoded_options[j].opt_index == OPT_no_canonical_prefixes)
4798 : : {
4799 : : get_relative_prefix = make_relative_prefix_ignore_links;
4800 : : break;
4801 : : }
4802 : : }
4803 : 290894 : if (! get_relative_prefix)
4804 : 290894 : get_relative_prefix = make_relative_prefix;
4805 : :
4806 : : /* Set up the default search paths. If there is no GCC_EXEC_PREFIX,
4807 : : see if we can create it from the pathname specified in
4808 : : decoded_options[0].arg. */
4809 : :
4810 : 290894 : gcc_libexec_prefix = standard_libexec_prefix;
4811 : : #ifndef VMS
4812 : : /* FIXME: make_relative_prefix doesn't yet work for VMS. */
4813 : 290894 : if (!gcc_exec_prefix)
4814 : : {
4815 : 28238 : gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg,
4816 : : standard_bindir_prefix,
4817 : : standard_exec_prefix);
4818 : 28238 : gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg,
4819 : : standard_bindir_prefix,
4820 : : standard_libexec_prefix);
4821 : 28238 : if (gcc_exec_prefix)
4822 : 28238 : xputenv (concat ("GCC_EXEC_PREFIX=", gcc_exec_prefix, NULL));
4823 : : }
4824 : : else
4825 : : {
4826 : : /* make_relative_prefix requires a program name, but
4827 : : GCC_EXEC_PREFIX is typically a directory name with a trailing
4828 : : / (which is ignored by make_relative_prefix), so append a
4829 : : program name. */
4830 : 262656 : char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
4831 : 262656 : gcc_libexec_prefix = get_relative_prefix (tmp_prefix,
4832 : : standard_exec_prefix,
4833 : : standard_libexec_prefix);
4834 : :
4835 : : /* The path is unrelocated, so fallback to the original setting. */
4836 : 262656 : if (!gcc_libexec_prefix)
4837 : 262311 : gcc_libexec_prefix = standard_libexec_prefix;
4838 : :
4839 : 262656 : free (tmp_prefix);
4840 : : }
4841 : : #else
4842 : : #endif
4843 : : /* From this point onward, gcc_exec_prefix is non-null if the toolchain
4844 : : is relocated. The toolchain was either relocated using GCC_EXEC_PREFIX
4845 : : or an automatically created GCC_EXEC_PREFIX from
4846 : : decoded_options[0].arg. */
4847 : :
4848 : : /* Do language-specific adjustment/addition of flags. */
4849 : 290894 : lang_specific_driver (&decoded_options, &decoded_options_count,
4850 : : &added_libraries);
4851 : :
4852 : 290890 : if (gcc_exec_prefix)
4853 : : {
4854 : 290890 : int len = strlen (gcc_exec_prefix);
4855 : :
4856 : 290890 : if (len > (int) sizeof ("/lib/gcc/") - 1
4857 : 290890 : && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
4858 : : {
4859 : 290890 : temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
4860 : 290890 : if (IS_DIR_SEPARATOR (*temp)
4861 : 290890 : && filename_ncmp (temp + 1, "lib", 3) == 0
4862 : 290890 : && IS_DIR_SEPARATOR (temp[4])
4863 : 581780 : && filename_ncmp (temp + 5, "gcc", 3) == 0)
4864 : 290890 : len -= sizeof ("/lib/gcc/") - 1;
4865 : : }
4866 : :
4867 : 290890 : set_std_prefix (gcc_exec_prefix, len);
4868 : 290890 : add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
4869 : : PREFIX_PRIORITY_LAST, 0, 0);
4870 : 290890 : add_prefix (&startfile_prefixes, gcc_exec_prefix, "GCC",
4871 : : PREFIX_PRIORITY_LAST, 0, 0);
4872 : : }
4873 : :
4874 : : /* COMPILER_PATH and LIBRARY_PATH have values
4875 : : that are lists of directory names with colons. */
4876 : :
4877 : 290890 : temp = env.get ("COMPILER_PATH");
4878 : 290890 : if (temp)
4879 : : {
4880 : 22216 : const char *startp, *endp;
4881 : 22216 : char *nstore = (char *) alloca (strlen (temp) + 3);
4882 : :
4883 : 22216 : startp = endp = temp;
4884 : 2041093 : while (1)
4885 : : {
4886 : 2041093 : if (*endp == PATH_SEPARATOR || *endp == 0)
4887 : : {
4888 : 36325 : strncpy (nstore, startp, endp - startp);
4889 : 36325 : if (endp == startp)
4890 : 0 : strcpy (nstore, concat (".", dir_separator_str, NULL));
4891 : 36325 : else if (!IS_DIR_SEPARATOR (endp[-1]))
4892 : : {
4893 : 0 : nstore[endp - startp] = DIR_SEPARATOR;
4894 : 0 : nstore[endp - startp + 1] = 0;
4895 : : }
4896 : : else
4897 : 36325 : nstore[endp - startp] = 0;
4898 : 36325 : add_prefix (&exec_prefixes, nstore, 0,
4899 : : PREFIX_PRIORITY_LAST, 0, 0);
4900 : 36325 : add_prefix (&include_prefixes, nstore, 0,
4901 : : PREFIX_PRIORITY_LAST, 0, 0);
4902 : 36325 : if (*endp == 0)
4903 : : break;
4904 : 14109 : endp = startp = endp + 1;
4905 : : }
4906 : : else
4907 : 2004768 : endp++;
4908 : : }
4909 : : }
4910 : :
4911 : 290890 : temp = env.get (LIBRARY_PATH_ENV);
4912 : 290890 : if (temp && *cross_compile == '0')
4913 : : {
4914 : 23519 : const char *startp, *endp;
4915 : 23519 : char *nstore = (char *) alloca (strlen (temp) + 3);
4916 : :
4917 : 23519 : startp = endp = temp;
4918 : 4105553 : while (1)
4919 : : {
4920 : 4105553 : if (*endp == PATH_SEPARATOR || *endp == 0)
4921 : : {
4922 : 170234 : strncpy (nstore, startp, endp - startp);
4923 : 170234 : if (endp == startp)
4924 : 0 : strcpy (nstore, concat (".", dir_separator_str, NULL));
4925 : 170234 : else if (!IS_DIR_SEPARATOR (endp[-1]))
4926 : : {
4927 : 1303 : nstore[endp - startp] = DIR_SEPARATOR;
4928 : 1303 : nstore[endp - startp + 1] = 0;
4929 : : }
4930 : : else
4931 : 168931 : nstore[endp - startp] = 0;
4932 : 170234 : add_prefix (&startfile_prefixes, nstore, NULL,
4933 : : PREFIX_PRIORITY_LAST, 0, 1);
4934 : 170234 : if (*endp == 0)
4935 : : break;
4936 : 146715 : endp = startp = endp + 1;
4937 : : }
4938 : : else
4939 : 3935319 : endp++;
4940 : : }
4941 : : }
4942 : :
4943 : : /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
4944 : 290890 : temp = env.get ("LPATH");
4945 : 290890 : if (temp && *cross_compile == '0')
4946 : : {
4947 : 0 : const char *startp, *endp;
4948 : 0 : char *nstore = (char *) alloca (strlen (temp) + 3);
4949 : :
4950 : 0 : startp = endp = temp;
4951 : 0 : while (1)
4952 : : {
4953 : 0 : if (*endp == PATH_SEPARATOR || *endp == 0)
4954 : : {
4955 : 0 : strncpy (nstore, startp, endp - startp);
4956 : 0 : if (endp == startp)
4957 : 0 : strcpy (nstore, concat (".", dir_separator_str, NULL));
4958 : 0 : else if (!IS_DIR_SEPARATOR (endp[-1]))
4959 : : {
4960 : 0 : nstore[endp - startp] = DIR_SEPARATOR;
4961 : 0 : nstore[endp - startp + 1] = 0;
4962 : : }
4963 : : else
4964 : 0 : nstore[endp - startp] = 0;
4965 : 0 : add_prefix (&startfile_prefixes, nstore, NULL,
4966 : : PREFIX_PRIORITY_LAST, 0, 1);
4967 : 0 : if (*endp == 0)
4968 : : break;
4969 : 0 : endp = startp = endp + 1;
4970 : : }
4971 : : else
4972 : 0 : endp++;
4973 : : }
4974 : : }
4975 : :
4976 : : /* Process the options and store input files and switches in their
4977 : : vectors. */
4978 : :
4979 : 290890 : last_language_n_infiles = -1;
4980 : :
4981 : 290890 : set_option_handlers (&handlers);
4982 : :
4983 : 5311275 : for (j = 1; j < decoded_options_count; j++)
4984 : : {
4985 : 5202944 : switch (decoded_options[j].opt_index)
4986 : : {
4987 : 182559 : case OPT_S:
4988 : 182559 : case OPT_c:
4989 : 182559 : case OPT_E:
4990 : 182559 : have_c = 1;
4991 : 182559 : break;
4992 : : }
4993 : 5202944 : if (have_c)
4994 : : break;
4995 : : }
4996 : :
4997 : 6583121 : for (j = 1; j < decoded_options_count; j++)
4998 : : {
4999 : 6292512 : if (decoded_options[j].opt_index == OPT_SPECIAL_input_file)
5000 : : {
5001 : 312508 : const char *arg = decoded_options[j].arg;
5002 : :
5003 : : #ifdef HAVE_TARGET_OBJECT_SUFFIX
5004 : : arg = convert_filename (arg, 0, access (arg, F_OK));
5005 : : #endif
5006 : 312508 : add_infile (arg, spec_lang);
5007 : :
5008 : 312508 : continue;
5009 : 312508 : }
5010 : :
5011 : 5980004 : read_cmdline_option (&global_options, &global_options_set,
5012 : : decoded_options + j, UNKNOWN_LOCATION,
5013 : : CL_DRIVER, &handlers, global_dc);
5014 : : }
5015 : :
5016 : : /* If the user didn't specify any, default to all configured offload
5017 : : targets. */
5018 : 290609 : if (ENABLE_OFFLOADING && offload_targets == NULL)
5019 : : {
5020 : : handle_foffload_option (OFFLOAD_TARGETS);
5021 : : #if OFFLOAD_DEFAULTED
5022 : : offload_targets_default = true;
5023 : : #endif
5024 : : }
5025 : :
5026 : : /* TODO: check if -static -pie works and maybe use it. */
5027 : 290609 : if (flag_hardened)
5028 : : {
5029 : 67 : if (!any_link_options_p && !static_p)
5030 : : {
5031 : : #if defined HAVE_LD_PIE && defined LD_PIE_SPEC
5032 : 67 : save_switch (LD_PIE_SPEC, 0, NULL, /*validated=*/true, /*known=*/false);
5033 : : #endif
5034 : : /* These are passed straight down to collect2 so we have to break
5035 : : it up like this. */
5036 : 67 : if (HAVE_LD_NOW_SUPPORT)
5037 : : {
5038 : 67 : add_infile ("-z", "*");
5039 : 67 : add_infile ("now", "*");
5040 : : }
5041 : 67 : if (HAVE_LD_RELRO_SUPPORT)
5042 : : {
5043 : 67 : add_infile ("-z", "*");
5044 : 67 : add_infile ("relro", "*");
5045 : : }
5046 : : }
5047 : : /* We can't use OPT_Whardened yet. Sigh. */
5048 : 0 : else if (warn_hardened)
5049 : 0 : warning_at (UNKNOWN_LOCATION, 0,
5050 : : "linker hardening options not enabled by %<-fhardened%> "
5051 : : "because other link options were specified on the command "
5052 : : "line");
5053 : : }
5054 : :
5055 : : /* Handle -gtoggle as it would later in toplev.cc:process_options to
5056 : : make the debug-level-gt spec function work as expected. */
5057 : 290609 : if (flag_gtoggle)
5058 : : {
5059 : 4 : if (debug_info_level == DINFO_LEVEL_NONE)
5060 : 0 : debug_info_level = DINFO_LEVEL_NORMAL;
5061 : : else
5062 : 4 : debug_info_level = DINFO_LEVEL_NONE;
5063 : : }
5064 : :
5065 : 290609 : if (output_file
5066 : 263977 : && strcmp (output_file, "-") != 0
5067 : 263814 : && strcmp (output_file, HOST_BIT_BUCKET) != 0)
5068 : : {
5069 : : int i;
5070 : 783317 : for (i = 0; i < n_infiles; i++)
5071 : 253206 : if ((!infiles[i].language || infiles[i].language[0] != '*')
5072 : 548269 : && canonical_filename_eq (infiles[i].name, output_file))
5073 : 1 : fatal_error (input_location,
5074 : : "input file %qs is the same as output file",
5075 : : output_file);
5076 : : }
5077 : :
5078 : 290608 : if (output_file != NULL && output_file[0] == '\0')
5079 : 0 : fatal_error (input_location, "output filename may not be empty");
5080 : :
5081 : : /* -dumpdir and -save-temps=* both specify the location of aux/dump
5082 : : outputs; the one that appears last prevails. When compiling
5083 : : multiple sources, an explicit dumpbase (minus -ext) may be
5084 : : combined with an explicit or implicit dumpdir, whereas when
5085 : : linking, a specified or implied link output name (minus
5086 : : extension) may be combined with a prevailing -save-temps=* or an
5087 : : otherwise implied dumpdir, but not override a prevailing
5088 : : -dumpdir. Primary outputs (e.g., linker output when linking
5089 : : without -o, or .i, .s or .o outputs when processing multiple
5090 : : inputs with -E, -S or -c, respectively) are NOT affected by these
5091 : : -save-temps=/-dump* options, always landing in the current
5092 : : directory and with the same basename as the input when an output
5093 : : name is not given, but when they're intermediate outputs, they
5094 : : are named like other aux outputs, so the options affect their
5095 : : location and name.
5096 : :
5097 : : Here are some examples. There are several more in the
5098 : : documentation of -o and -dump*, and some quite exhaustive tests
5099 : : in gcc.misc-tests/outputs.exp.
5100 : :
5101 : : When compiling any number of sources, no -dump* nor
5102 : : -save-temps=*, all outputs in cwd without prefix:
5103 : :
5104 : : # gcc -c b.c -gsplit-dwarf
5105 : : -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
5106 : :
5107 : : # gcc -c b.c d.c -gsplit-dwarf
5108 : : -> cc1 [-dumpdir ./] -dumpbase b.c -dumpbase-ext .c # b.o b.dwo
5109 : : && cc1 [-dumpdir ./] -dumpbase d.c -dumpbase-ext .c # d.o d.dwo
5110 : :
5111 : : When compiling and linking, no -dump* nor -save-temps=*, .o
5112 : : outputs are temporary, aux outputs land in the dir of the output,
5113 : : prefixed with the basename of the linker output:
5114 : :
5115 : : # gcc b.c d.c -o ab -gsplit-dwarf
5116 : : -> cc1 -dumpdir ab- -dumpbase b.c -dumpbase-ext .c # ab-b.dwo
5117 : : && cc1 -dumpdir ab- -dumpbase d.c -dumpbase-ext .c # ab-d.dwo
5118 : : && link ... -o ab
5119 : :
5120 : : # gcc b.c d.c [-o a.out] -gsplit-dwarf
5121 : : -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.dwo
5122 : : && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.dwo
5123 : : && link ... [-o a.out]
5124 : :
5125 : : When compiling and linking, a prevailing -dumpdir fully overrides
5126 : : the prefix of aux outputs given by the output name:
5127 : :
5128 : : # gcc -dumpdir f b.c d.c -gsplit-dwarf [-o [dir/]whatever]
5129 : : -> cc1 -dumpdir f -dumpbase b.c -dumpbase-ext .c # fb.dwo
5130 : : && cc1 -dumpdir f -dumpbase d.c -dumpbase-ext .c # fd.dwo
5131 : : && link ... [-o whatever]
5132 : :
5133 : : When compiling multiple inputs, an explicit -dumpbase is combined
5134 : : with -dumpdir, affecting aux outputs, but not the .o outputs:
5135 : :
5136 : : # gcc -dumpdir f -dumpbase g- b.c d.c -gsplit-dwarf -c
5137 : : -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # b.o fg-b.dwo
5138 : : && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # d.o fg-d.dwo
5139 : :
5140 : : When compiling and linking with -save-temps, the .o outputs that
5141 : : would have been temporary become aux outputs, so they get
5142 : : affected by -dump* flags:
5143 : :
5144 : : # gcc -dumpdir f -dumpbase g- -save-temps b.c d.c
5145 : : -> cc1 -dumpdir fg- -dumpbase b.c -dumpbase-ext .c # fg-b.o
5146 : : && cc1 -dumpdir fg- -dumpbase d.c -dumpbase-ext .c # fg-d.o
5147 : : && link
5148 : :
5149 : : If -save-temps=* prevails over -dumpdir, however, the explicit
5150 : : -dumpdir is discarded, as if it wasn't there. The basename of
5151 : : the implicit linker output, a.out or a.exe, becomes a- as the aux
5152 : : output prefix for all compilations:
5153 : :
5154 : : # gcc [-dumpdir f] -save-temps=cwd b.c d.c
5155 : : -> cc1 -dumpdir a- -dumpbase b.c -dumpbase-ext .c # a-b.o
5156 : : && cc1 -dumpdir a- -dumpbase d.c -dumpbase-ext .c # a-d.o
5157 : : && link
5158 : :
5159 : : A single -dumpbase, applying to multiple inputs, overrides the
5160 : : linker output name, implied or explicit, as the aux output prefix:
5161 : :
5162 : : # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c
5163 : : -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5164 : : && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5165 : : && link
5166 : :
5167 : : # gcc [-dumpdir f] -dumpbase g- -save-temps=cwd b.c d.c -o dir/h.out
5168 : : -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5169 : : && cc1 -dumpdir g- -dumpbase d.c -dumpbase-ext .c # g-d.o
5170 : : && link -o dir/h.out
5171 : :
5172 : : Now, if the linker output is NOT overridden as a prefix, but
5173 : : -save-temps=* overrides implicit or explicit -dumpdir, the
5174 : : effective dump dir combines the dir selected by the -save-temps=*
5175 : : option with the basename of the specified or implied link output:
5176 : :
5177 : : # gcc [-dumpdir f] -save-temps=cwd b.c d.c -o dir/h.out
5178 : : -> cc1 -dumpdir h- -dumpbase b.c -dumpbase-ext .c # h-b.o
5179 : : && cc1 -dumpdir h- -dumpbase d.c -dumpbase-ext .c # h-d.o
5180 : : && link -o dir/h.out
5181 : :
5182 : : # gcc [-dumpdir f] -save-temps=obj b.c d.c -o dir/h.out
5183 : : -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5184 : : && cc1 -dumpdir dir/h- -dumpbase d.c -dumpbase-ext .c # dir/h-d.o
5185 : : && link -o dir/h.out
5186 : :
5187 : : But then again, a single -dumpbase applying to multiple inputs
5188 : : gets used instead of the linker output basename in the combined
5189 : : dumpdir:
5190 : :
5191 : : # gcc [-dumpdir f] -dumpbase g- -save-temps=obj b.c d.c -o dir/h.out
5192 : : -> cc1 -dumpdir dir/g- -dumpbase b.c -dumpbase-ext .c # dir/g-b.o
5193 : : && cc1 -dumpdir dir/g- -dumpbase d.c -dumpbase-ext .c # dir/g-d.o
5194 : : && link -o dir/h.out
5195 : :
5196 : : With a single input being compiled, the output basename does NOT
5197 : : affect the dumpdir prefix.
5198 : :
5199 : : # gcc -save-temps=obj b.c -gsplit-dwarf -c -o dir/b.o
5200 : : -> cc1 -dumpdir dir/ -dumpbase b.c -dumpbase-ext .c # dir/b.o dir/b.dwo
5201 : :
5202 : : but when compiling and linking even a single file, it does:
5203 : :
5204 : : # gcc -save-temps=obj b.c -o dir/h.out
5205 : : -> cc1 -dumpdir dir/h- -dumpbase b.c -dumpbase-ext .c # dir/h-b.o
5206 : :
5207 : : unless an explicit -dumpdir prevails:
5208 : :
5209 : : # gcc -save-temps[=obj] -dumpdir g- b.c -o dir/h.out
5210 : : -> cc1 -dumpdir g- -dumpbase b.c -dumpbase-ext .c # g-b.o
5211 : :
5212 : : */
5213 : :
5214 : 290608 : bool explicit_dumpdir = dumpdir;
5215 : :
5216 : 290556 : if ((!save_temps_overrides_dumpdir && explicit_dumpdir)
5217 : 558792 : || (output_file && not_actual_file_p (output_file)))
5218 : : {
5219 : : /* Do nothing. */
5220 : : }
5221 : :
5222 : : /* If -save-temps=obj and -o name, create the prefix to use for %b.
5223 : : Otherwise just make -save-temps=obj the same as -save-temps=cwd. */
5224 : 266723 : else if (save_temps_flag != SAVE_TEMPS_CWD && output_file != NULL)
5225 : : {
5226 : 248775 : free (dumpdir);
5227 : 248775 : dumpdir = NULL;
5228 : 248775 : temp = lbasename (output_file);
5229 : 248775 : if (temp != output_file)
5230 : 100145 : dumpdir = xstrndup (output_file,
5231 : 100145 : strlen (output_file) - strlen (temp));
5232 : : }
5233 : 17948 : else if (dumpdir)
5234 : : {
5235 : 5 : free (dumpdir);
5236 : 5 : dumpdir = NULL;
5237 : : }
5238 : :
5239 : 290608 : if (save_temps_flag)
5240 : 464 : save_temps_flag = SAVE_TEMPS_DUMP;
5241 : :
5242 : : /* If there is any pathname component in an explicit -dumpbase, it
5243 : : overrides dumpdir entirely, so discard it right away. Although
5244 : : the presence of an explicit -dumpdir matters for the driver, it
5245 : : shouldn't matter for other processes, that get all that's needed
5246 : : from the -dumpdir and -dumpbase always passed to them. */
5247 : 290608 : if (dumpdir && dumpbase && lbasename (dumpbase) != dumpbase)
5248 : : {
5249 : 22285 : free (dumpdir);
5250 : 22285 : dumpdir = NULL;
5251 : : }
5252 : :
5253 : : /* Check that dumpbase_ext matches the end of dumpbase, drop it
5254 : : otherwise. */
5255 : 290608 : if (dumpbase_ext && dumpbase && *dumpbase)
5256 : : {
5257 : 20 : int lendb = strlen (dumpbase);
5258 : 20 : int lendbx = strlen (dumpbase_ext);
5259 : :
5260 : : /* -dumpbase-ext must be a suffix proper; discard it if it
5261 : : matches all of -dumpbase, as that would make for an empty
5262 : : basename. */
5263 : 20 : if (lendbx >= lendb
5264 : 19 : || strcmp (dumpbase + lendb - lendbx, dumpbase_ext) != 0)
5265 : : {
5266 : 1 : free (dumpbase_ext);
5267 : 1 : dumpbase_ext = NULL;
5268 : : }
5269 : : }
5270 : :
5271 : : /* -dumpbase with multiple sources goes into dumpdir. With a single
5272 : : source, it does only if linking and if dumpdir was not explicitly
5273 : : specified. */
5274 : 23814 : if (dumpbase && *dumpbase
5275 : 312971 : && (single_input_file_index () == -2
5276 : 22080 : || (!have_c && !explicit_dumpdir)))
5277 : : {
5278 : 295 : char *prefix;
5279 : :
5280 : 295 : if (dumpbase_ext)
5281 : : /* We checked that they match above. */
5282 : 6 : dumpbase[strlen (dumpbase) - strlen (dumpbase_ext)] = '\0';
5283 : :
5284 : 295 : if (dumpdir)
5285 : 13 : prefix = concat (dumpdir, dumpbase, "-", NULL);
5286 : : else
5287 : 282 : prefix = concat (dumpbase, "-", NULL);
5288 : :
5289 : 295 : free (dumpdir);
5290 : 295 : free (dumpbase);
5291 : 295 : free (dumpbase_ext);
5292 : 295 : dumpbase = dumpbase_ext = NULL;
5293 : 295 : dumpdir = prefix;
5294 : 295 : dumpdir_trailing_dash_added = true;
5295 : : }
5296 : :
5297 : : /* If dumpbase was not brought into dumpdir but we're linking, bring
5298 : : output_file into dumpdir unless dumpdir was explicitly specified.
5299 : : The test for !explicit_dumpdir is further below, because we want
5300 : : to use the obase computation for a ghost outbase, passed to
5301 : : GCC_COLLECT_OPTIONS. */
5302 : 290313 : else if (!have_c && (!explicit_dumpdir || (dumpbase && !*dumpbase)))
5303 : : {
5304 : : /* If we get here, we know dumpbase was not specified, or it was
5305 : : specified as an empty string. If it was anything else, it
5306 : : would have combined with dumpdir above, because the condition
5307 : : for dumpbase to be used when present is broader than the
5308 : : condition that gets us here. */
5309 : 107948 : gcc_assert (!dumpbase || !*dumpbase);
5310 : :
5311 : 107948 : const char *obase;
5312 : 107948 : char *tofree = NULL;
5313 : 107948 : if (!output_file || not_actual_file_p (output_file))
5314 : : obase = "a";
5315 : : else
5316 : : {
5317 : 93332 : obase = lbasename (output_file);
5318 : 93332 : size_t blen = strlen (obase), xlen;
5319 : : /* Drop the suffix if it's dumpbase_ext, if given,
5320 : : otherwise .exe or the target executable suffix, or if the
5321 : : output was explicitly named a.out, but not otherwise. */
5322 : 93332 : if (dumpbase_ext
5323 : 93332 : ? (blen > (xlen = strlen (dumpbase_ext))
5324 : 219 : && strcmp ((temp = (obase + blen - xlen)),
5325 : : dumpbase_ext) == 0)
5326 : 93113 : : ((temp = strrchr (obase + 1, '.'))
5327 : 91257 : && (xlen = strlen (temp))
5328 : 184370 : && (strcmp (temp, ".exe") == 0
5329 : : #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
5330 : : || strcmp (temp, TARGET_EXECUTABLE_SUFFIX) == 0
5331 : : #endif
5332 : 8805 : || strcmp (obase, "a.out") == 0)))
5333 : : {
5334 : 82697 : tofree = xstrndup (obase, blen - xlen);
5335 : 82697 : obase = tofree;
5336 : : }
5337 : : }
5338 : :
5339 : : /* We wish to save this basename to the -dumpdir passed through
5340 : : GCC_COLLECT_OPTIONS within maybe_run_linker, for e.g. LTO,
5341 : : but we do NOT wish to add it to e.g. %b, so we keep
5342 : : outbase_length as zero. */
5343 : 107948 : gcc_assert (!outbase);
5344 : 107948 : outbase_length = 0;
5345 : :
5346 : : /* If we're building [dir1/]foo[.exe] out of a single input
5347 : : [dir2/]foo.c that shares the same basename, dump to
5348 : : [dir2/]foo.c.* rather than duplicating the basename into
5349 : : [dir2/]foo-foo.c.*. */
5350 : 107948 : int idxin;
5351 : 107948 : if (dumpbase
5352 : 107948 : || ((idxin = single_input_file_index ()) >= 0
5353 : 82641 : && adds_single_suffix_p (lbasename (infiles[idxin].name),
5354 : : obase)))
5355 : : {
5356 : 76287 : if (obase == tofree)
5357 : 74524 : outbase = tofree;
5358 : : else
5359 : : {
5360 : 1763 : outbase = xstrdup (obase);
5361 : 1763 : free (tofree);
5362 : : }
5363 : 107948 : obase = tofree = NULL;
5364 : : }
5365 : : else
5366 : : {
5367 : 31661 : if (dumpdir)
5368 : : {
5369 : 14706 : char *p = concat (dumpdir, obase, "-", NULL);
5370 : 14706 : free (dumpdir);
5371 : 14706 : dumpdir = p;
5372 : : }
5373 : : else
5374 : 16955 : dumpdir = concat (obase, "-", NULL);
5375 : :
5376 : 31661 : dumpdir_trailing_dash_added = true;
5377 : :
5378 : 31661 : free (tofree);
5379 : 31661 : obase = tofree = NULL;
5380 : : }
5381 : :
5382 : 107948 : if (!explicit_dumpdir || dumpbase)
5383 : : {
5384 : : /* Absent -dumpbase and present -dumpbase-ext have been applied
5385 : : to the linker output name, so compute fresh defaults for each
5386 : : compilation. */
5387 : 107948 : free (dumpbase_ext);
5388 : 107948 : dumpbase_ext = NULL;
5389 : : }
5390 : : }
5391 : :
5392 : : /* Now, if we're compiling, or if we haven't used the dumpbase
5393 : : above, then outbase (%B) is derived from dumpbase, if given, or
5394 : : from the output name, given or implied. We can't precompute
5395 : : implied output names, but that's ok, since they're derived from
5396 : : input names. Just make sure we skip this if dumpbase is the
5397 : : empty string: we want to use input names then, so don't set
5398 : : outbase. */
5399 : 290608 : if ((dumpbase || have_c)
5400 : 184027 : && !(dumpbase && !*dumpbase))
5401 : : {
5402 : 182576 : gcc_assert (!outbase);
5403 : :
5404 : 182576 : if (dumpbase)
5405 : : {
5406 : 22068 : gcc_assert (single_input_file_index () != -2);
5407 : : /* We do not want lbasename here; dumpbase with dirnames
5408 : : overrides dumpdir entirely, even if dumpdir is
5409 : : specified. */
5410 : 22068 : if (dumpbase_ext)
5411 : : /* We've already checked above that the suffix matches. */
5412 : 13 : outbase = xstrndup (dumpbase,
5413 : 13 : strlen (dumpbase) - strlen (dumpbase_ext));
5414 : : else
5415 : 22055 : outbase = xstrdup (dumpbase);
5416 : : }
5417 : 160508 : else if (output_file && !not_actual_file_p (output_file))
5418 : : {
5419 : 155679 : outbase = xstrdup (lbasename (output_file));
5420 : 155679 : char *p = strrchr (outbase + 1, '.');
5421 : 155679 : if (p)
5422 : 155679 : *p = '\0';
5423 : : }
5424 : :
5425 : 182576 : if (outbase)
5426 : 177747 : outbase_length = strlen (outbase);
5427 : : }
5428 : :
5429 : : /* If there is any pathname component in an explicit -dumpbase, do
5430 : : not use dumpdir, but retain it to pass it on to the compiler. */
5431 : 290608 : if (dumpdir)
5432 : 117469 : dumpdir_length = strlen (dumpdir);
5433 : : else
5434 : 173139 : dumpdir_length = 0;
5435 : :
5436 : : /* Check that dumpbase_ext, if still present, still matches the end
5437 : : of dumpbase, if present, and drop it otherwise. We only retained
5438 : : it above when dumpbase was absent to maybe use it to drop the
5439 : : extension from output_name before combining it with dumpdir. We
5440 : : won't deal with -dumpbase-ext when -dumpbase is not explicitly
5441 : : given, even if just to activate backward-compatible dumpbase:
5442 : : dropping it on the floor is correct, expected and documented
5443 : : behavior. Attempting to deal with a -dumpbase-ext that might
5444 : : match the end of some input filename, or of the combination of
5445 : : the output basename with the suffix of the input filename,
5446 : : possible with an intermediate .gk extension for -fcompare-debug,
5447 : : is just calling for trouble. */
5448 : 290608 : if (dumpbase_ext)
5449 : : {
5450 : 22 : if (!dumpbase || !*dumpbase)
5451 : : {
5452 : 9 : free (dumpbase_ext);
5453 : 9 : dumpbase_ext = NULL;
5454 : : }
5455 : : else
5456 : 13 : gcc_assert (strcmp (dumpbase + strlen (dumpbase)
5457 : : - strlen (dumpbase_ext), dumpbase_ext) == 0);
5458 : : }
5459 : :
5460 : 290608 : if (save_temps_flag && use_pipes)
5461 : : {
5462 : : /* -save-temps overrides -pipe, so that temp files are produced */
5463 : 0 : if (save_temps_flag)
5464 : 0 : warning (0, "%<-pipe%> ignored because %<-save-temps%> specified");
5465 : 0 : use_pipes = 0;
5466 : : }
5467 : :
5468 : 290608 : if (!compare_debug)
5469 : : {
5470 : 290009 : const char *gcd = env.get ("GCC_COMPARE_DEBUG");
5471 : :
5472 : 290009 : if (gcd && gcd[0] == '-')
5473 : : {
5474 : 0 : compare_debug = 2;
5475 : 0 : compare_debug_opt = gcd;
5476 : : }
5477 : 0 : else if (gcd && *gcd && strcmp (gcd, "0"))
5478 : : {
5479 : 0 : compare_debug = 3;
5480 : 0 : compare_debug_opt = "-gtoggle";
5481 : : }
5482 : : }
5483 : 599 : else if (compare_debug < 0)
5484 : : {
5485 : 0 : compare_debug = 0;
5486 : 0 : gcc_assert (!compare_debug_opt);
5487 : : }
5488 : :
5489 : : /* Set up the search paths. We add directories that we expect to
5490 : : contain GNU Toolchain components before directories specified by
5491 : : the machine description so that we will find GNU components (like
5492 : : the GNU assembler) before those of the host system. */
5493 : :
5494 : : /* If we don't know where the toolchain has been installed, use the
5495 : : configured-in locations. */
5496 : 290608 : if (!gcc_exec_prefix)
5497 : : {
5498 : : #ifndef OS2
5499 : 0 : add_prefix (&exec_prefixes, standard_libexec_prefix, "GCC",
5500 : : PREFIX_PRIORITY_LAST, 1, 0);
5501 : 0 : add_prefix (&exec_prefixes, standard_libexec_prefix, "BINUTILS",
5502 : : PREFIX_PRIORITY_LAST, 2, 0);
5503 : 0 : add_prefix (&exec_prefixes, standard_exec_prefix, "BINUTILS",
5504 : : PREFIX_PRIORITY_LAST, 2, 0);
5505 : : #endif
5506 : 0 : add_prefix (&startfile_prefixes, standard_exec_prefix, "BINUTILS",
5507 : : PREFIX_PRIORITY_LAST, 1, 0);
5508 : : }
5509 : :
5510 : 290608 : gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
5511 : 290608 : tooldir_prefix2 = concat (tooldir_base_prefix, spec_machine,
5512 : : dir_separator_str, NULL);
5513 : :
5514 : : /* Look for tools relative to the location from which the driver is
5515 : : running, or, if that is not available, the configured prefix. */
5516 : 290608 : tooldir_prefix
5517 : 581216 : = concat (gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
5518 : : spec_host_machine, dir_separator_str, spec_version,
5519 : : accel_dir_suffix, dir_separator_str, tooldir_prefix2, NULL);
5520 : 290608 : free (tooldir_prefix2);
5521 : :
5522 : 290608 : add_prefix (&exec_prefixes,
5523 : 290608 : concat (tooldir_prefix, "bin", dir_separator_str, NULL),
5524 : : "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
5525 : 290608 : add_prefix (&startfile_prefixes,
5526 : 290608 : concat (tooldir_prefix, "lib", dir_separator_str, NULL),
5527 : : "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
5528 : 290608 : free (tooldir_prefix);
5529 : :
5530 : : #if defined(TARGET_SYSTEM_ROOT_RELOCATABLE) && !defined(VMS)
5531 : : /* If the normal TARGET_SYSTEM_ROOT is inside of $exec_prefix,
5532 : : then consider it to relocate with the rest of the GCC installation
5533 : : if GCC_EXEC_PREFIX is set.
5534 : : ``make_relative_prefix'' is not compiled for VMS, so don't call it. */
5535 : : if (target_system_root && !target_system_root_changed && gcc_exec_prefix)
5536 : : {
5537 : : char *tmp_prefix = get_relative_prefix (decoded_options[0].arg,
5538 : : standard_bindir_prefix,
5539 : : target_system_root);
5540 : : if (tmp_prefix && access_check (tmp_prefix, F_OK) == 0)
5541 : : {
5542 : : target_system_root = tmp_prefix;
5543 : : target_system_root_changed = 1;
5544 : : }
5545 : : }
5546 : : #endif
5547 : :
5548 : : /* More prefixes are enabled in main, after we read the specs file
5549 : : and determine whether this is cross-compilation or not. */
5550 : :
5551 : 290608 : if (n_infiles != 0 && n_infiles == last_language_n_infiles && spec_lang != 0)
5552 : 0 : warning (0, "%<-x %s%> after last input file has no effect", spec_lang);
5553 : :
5554 : : /* Synthesize -fcompare-debug flag from the GCC_COMPARE_DEBUG
5555 : : environment variable. */
5556 : 290608 : if (compare_debug == 2 || compare_debug == 3)
5557 : : {
5558 : 0 : const char *opt = concat ("-fcompare-debug=", compare_debug_opt, NULL);
5559 : 0 : save_switch (opt, 0, NULL, false, true);
5560 : 0 : compare_debug = 1;
5561 : : }
5562 : :
5563 : : /* Ensure we only invoke each subprocess once. */
5564 : 290608 : if (n_infiles == 0
5565 : 10122 : && (print_subprocess_help || print_help_list || print_version))
5566 : : {
5567 : : /* Create a dummy input file, so that we can pass
5568 : : the help option on to the various sub-processes. */
5569 : 78 : add_infile ("help-dummy", "c");
5570 : : }
5571 : :
5572 : : /* Decide if undefined variable references are allowed in specs. */
5573 : :
5574 : : /* -v alone is safe. --version and --help alone or together are safe. Note
5575 : : that -v would make them unsafe, as they'd then be run for subprocesses as
5576 : : well, the location of which might depend on variables possibly coming
5577 : : from self-specs. Note also that the command name is counted in
5578 : : decoded_options_count. */
5579 : :
5580 : 290608 : unsigned help_version_count = 0;
5581 : :
5582 : 290608 : if (print_version)
5583 : 78 : help_version_count++;
5584 : :
5585 : 290608 : if (print_help_list)
5586 : 4 : help_version_count++;
5587 : :
5588 : 581216 : spec_undefvar_allowed =
5589 : 1304 : ((verbose_flag && decoded_options_count == 2)
5590 : 291838 : || help_version_count == decoded_options_count - 1);
5591 : :
5592 : 290608 : alloc_switch ();
5593 : 290608 : switches[n_switches].part1 = 0;
5594 : 290608 : alloc_infile ();
5595 : 290608 : infiles[n_infiles].name = 0;
5596 : 290608 : }
5597 : :
5598 : : /* Store switches not filtered out by %<S in spec in COLLECT_GCC_OPTIONS
5599 : : and place that in the environment. */
5600 : :
5601 : : static void
5602 : 804853 : set_collect_gcc_options (void)
5603 : : {
5604 : 804853 : int i;
5605 : 804853 : int first_time;
5606 : :
5607 : : /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5608 : : the compiler. */
5609 : 804853 : obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
5610 : : sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5611 : :
5612 : 804853 : first_time = true;
5613 : 18473905 : for (i = 0; (int) i < n_switches; i++)
5614 : : {
5615 : 17669052 : const char *const *args;
5616 : 17669052 : const char *p, *q;
5617 : 17669052 : if (!first_time)
5618 : 16864199 : obstack_grow (&collect_obstack, " ", 1);
5619 : :
5620 : 17669052 : first_time = false;
5621 : :
5622 : : /* Ignore elided switches. */
5623 : 17798379 : if ((switches[i].live_cond
5624 : 17669052 : & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC))
5625 : : == SWITCH_IGNORE)
5626 : 129327 : continue;
5627 : :
5628 : 17539725 : obstack_grow (&collect_obstack, "'-", 2);
5629 : 17539725 : q = switches[i].part1;
5630 : 17539725 : while ((p = strchr (q, '\'')))
5631 : : {
5632 : 0 : obstack_grow (&collect_obstack, q, p - q);
5633 : 0 : obstack_grow (&collect_obstack, "'\\''", 4);
5634 : 0 : q = ++p;
5635 : : }
5636 : 17539725 : obstack_grow (&collect_obstack, q, strlen (q));
5637 : 17539725 : obstack_grow (&collect_obstack, "'", 1);
5638 : :
5639 : 21589112 : for (args = switches[i].args; args && *args; args++)
5640 : : {
5641 : 4049387 : obstack_grow (&collect_obstack, " '", 2);
5642 : 4049387 : q = *args;
5643 : 4049387 : while ((p = strchr (q, '\'')))
5644 : : {
5645 : 0 : obstack_grow (&collect_obstack, q, p - q);
5646 : 0 : obstack_grow (&collect_obstack, "'\\''", 4);
5647 : 0 : q = ++p;
5648 : : }
5649 : 4049387 : obstack_grow (&collect_obstack, q, strlen (q));
5650 : 4049387 : obstack_grow (&collect_obstack, "'", 1);
5651 : : }
5652 : : }
5653 : :
5654 : 804853 : if (dumpdir)
5655 : : {
5656 : 568124 : if (!first_time)
5657 : 568124 : obstack_grow (&collect_obstack, " ", 1);
5658 : 568124 : first_time = false;
5659 : :
5660 : 568124 : obstack_grow (&collect_obstack, "'-dumpdir' '", 12);
5661 : 568124 : const char *p, *q;
5662 : :
5663 : 568124 : q = dumpdir;
5664 : 568124 : while ((p = strchr (q, '\'')))
5665 : : {
5666 : 0 : obstack_grow (&collect_obstack, q, p - q);
5667 : 0 : obstack_grow (&collect_obstack, "'\\''", 4);
5668 : 0 : q = ++p;
5669 : : }
5670 : 568124 : obstack_grow (&collect_obstack, q, strlen (q));
5671 : :
5672 : 568124 : obstack_grow (&collect_obstack, "'", 1);
5673 : : }
5674 : :
5675 : 804853 : obstack_grow (&collect_obstack, "\0", 1);
5676 : 804853 : xputenv (XOBFINISH (&collect_obstack, char *));
5677 : 804853 : }
5678 : :
5679 : : /* Process a spec string, accumulating and running commands. */
5680 : :
5681 : : /* These variables describe the input file name.
5682 : : input_file_number is the index on outfiles of this file,
5683 : : so that the output file name can be stored for later use by %o.
5684 : : input_basename is the start of the part of the input file
5685 : : sans all directory names, and basename_length is the number
5686 : : of characters starting there excluding the suffix .c or whatever. */
5687 : :
5688 : : static const char *gcc_input_filename;
5689 : : static int input_file_number;
5690 : : size_t input_filename_length;
5691 : : static int basename_length;
5692 : : static int suffixed_basename_length;
5693 : : static const char *input_basename;
5694 : : static const char *input_suffix;
5695 : : #ifndef HOST_LACKS_INODE_NUMBERS
5696 : : static struct stat input_stat;
5697 : : #endif
5698 : : static int input_stat_set;
5699 : :
5700 : : /* The compiler used to process the current input file. */
5701 : : static struct compiler *input_file_compiler;
5702 : :
5703 : : /* These are variables used within do_spec and do_spec_1. */
5704 : :
5705 : : /* Nonzero if an arg has been started and not yet terminated
5706 : : (with space, tab or newline). */
5707 : : static int arg_going;
5708 : :
5709 : : /* Nonzero means %d or %g has been seen; the next arg to be terminated
5710 : : is a temporary file name. */
5711 : : static int delete_this_arg;
5712 : :
5713 : : /* Nonzero means %w has been seen; the next arg to be terminated
5714 : : is the output file name of this compilation. */
5715 : : static int this_is_output_file;
5716 : :
5717 : : /* Nonzero means %s has been seen; the next arg to be terminated
5718 : : is the name of a library file and we should try the standard
5719 : : search dirs for it. */
5720 : : static int this_is_library_file;
5721 : :
5722 : : /* Nonzero means %T has been seen; the next arg to be terminated
5723 : : is the name of a linker script and we should try all of the
5724 : : standard search dirs for it. If it is found insert a --script
5725 : : command line switch and then substitute the full path in place,
5726 : : otherwise generate an error message. */
5727 : : static int this_is_linker_script;
5728 : :
5729 : : /* Nonzero means that the input of this command is coming from a pipe. */
5730 : : static int input_from_pipe;
5731 : :
5732 : : /* Nonnull means substitute this for any suffix when outputting a switches
5733 : : arguments. */
5734 : : static const char *suffix_subst;
5735 : :
5736 : : /* If there is an argument being accumulated, terminate it and store it. */
5737 : :
5738 : : static void
5739 : 78369546 : end_going_arg (void)
5740 : : {
5741 : 78369546 : if (arg_going)
5742 : : {
5743 : 18343362 : const char *string;
5744 : :
5745 : 18343362 : obstack_1grow (&obstack, 0);
5746 : 18343362 : string = XOBFINISH (&obstack, const char *);
5747 : 18343362 : if (this_is_library_file)
5748 : 529605 : string = find_file (string);
5749 : 18343362 : if (this_is_linker_script)
5750 : : {
5751 : 0 : char * full_script_path = find_a_file (&startfile_prefixes, string, R_OK, true);
5752 : :
5753 : 0 : if (full_script_path == NULL)
5754 : : {
5755 : 0 : error ("unable to locate default linker script %qs in the library search paths", string);
5756 : : /* Script was not found on search path. */
5757 : 0 : return;
5758 : : }
5759 : 0 : store_arg ("--script", false, false);
5760 : 0 : string = full_script_path;
5761 : : }
5762 : 18343362 : store_arg (string, delete_this_arg, this_is_output_file);
5763 : 18343362 : if (this_is_output_file)
5764 : 98190 : outfiles[input_file_number] = string;
5765 : 18343362 : arg_going = 0;
5766 : : }
5767 : : }
5768 : :
5769 : :
5770 : : /* Parse the WRAPPER string which is a comma separated list of the command line
5771 : : and insert them into the beginning of argbuf. */
5772 : :
5773 : : static void
5774 : 0 : insert_wrapper (const char *wrapper)
5775 : : {
5776 : 0 : int n = 0;
5777 : 0 : int i;
5778 : 0 : char *buf = xstrdup (wrapper);
5779 : 0 : char *p = buf;
5780 : 0 : unsigned int old_length = argbuf.length ();
5781 : :
5782 : 0 : do
5783 : : {
5784 : 0 : n++;
5785 : 0 : while (*p == ',')
5786 : 0 : p++;
5787 : : }
5788 : 0 : while ((p = strchr (p, ',')) != NULL);
5789 : :
5790 : 0 : argbuf.safe_grow (old_length + n, true);
5791 : 0 : memmove (argbuf.address () + n,
5792 : 0 : argbuf.address (),
5793 : 0 : old_length * sizeof (const_char_p));
5794 : :
5795 : 0 : i = 0;
5796 : 0 : p = buf;
5797 : : do
5798 : : {
5799 : 0 : while (*p == ',')
5800 : : {
5801 : 0 : *p = 0;
5802 : 0 : p++;
5803 : : }
5804 : 0 : argbuf[i] = p;
5805 : 0 : i++;
5806 : : }
5807 : 0 : while ((p = strchr (p, ',')) != NULL);
5808 : 0 : gcc_assert (i == n);
5809 : 0 : }
5810 : :
5811 : : /* Process the spec SPEC and run the commands specified therein.
5812 : : Returns 0 if the spec is successfully processed; -1 if failed. */
5813 : :
5814 : : int
5815 : 550537 : do_spec (const char *spec)
5816 : : {
5817 : 550537 : int value;
5818 : :
5819 : 550537 : value = do_spec_2 (spec, NULL);
5820 : :
5821 : : /* Force out any unfinished command.
5822 : : If -pipe, this forces out the last command if it ended in `|'. */
5823 : 550537 : if (value == 0)
5824 : : {
5825 : 544896 : if (argbuf.length () > 0
5826 : 817917 : && !strcmp (argbuf.last (), "|"))
5827 : 0 : argbuf.pop ();
5828 : :
5829 : 544896 : set_collect_gcc_options ();
5830 : :
5831 : 544896 : if (argbuf.length () > 0)
5832 : 273021 : value = execute ();
5833 : : }
5834 : :
5835 : 550537 : return value;
5836 : : }
5837 : :
5838 : : /* Process the spec SPEC, with SOFT_MATCHED_PART designating the current value
5839 : : of a matched * pattern which may be re-injected by way of %*. */
5840 : :
5841 : : static int
5842 : 5196107 : do_spec_2 (const char *spec, const char *soft_matched_part)
5843 : : {
5844 : 5196107 : int result;
5845 : :
5846 : 5196107 : clear_args ();
5847 : 5196107 : arg_going = 0;
5848 : 5196107 : delete_this_arg = 0;
5849 : 5196107 : this_is_output_file = 0;
5850 : 5196107 : this_is_library_file = 0;
5851 : 5196107 : this_is_linker_script = 0;
5852 : 5196107 : input_from_pipe = 0;
5853 : 5196107 : suffix_subst = NULL;
5854 : :
5855 : 5196107 : result = do_spec_1 (spec, 0, soft_matched_part);
5856 : :
5857 : 5196107 : end_going_arg ();
5858 : :
5859 : 5196107 : return result;
5860 : : }
5861 : :
5862 : : /* Process the given spec string and add any new options to the end
5863 : : of the switches/n_switches array. */
5864 : :
5865 : : static void
5866 : 2616579 : do_option_spec (const char *name, const char *spec)
5867 : : {
5868 : 2616579 : unsigned int i, value_count, value_len;
5869 : 2616579 : const char *p, *q, *value;
5870 : 2616579 : char *tmp_spec, *tmp_spec_p;
5871 : :
5872 : 2616579 : if (configure_default_options[0].name == NULL)
5873 : : return;
5874 : :
5875 : 6977544 : for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
5876 : 4942427 : if (strcmp (configure_default_options[i].name, name) == 0)
5877 : : break;
5878 : 2616579 : if (i == ARRAY_SIZE (configure_default_options))
5879 : : return;
5880 : :
5881 : 581462 : value = configure_default_options[i].value;
5882 : 581462 : value_len = strlen (value);
5883 : :
5884 : : /* Compute the size of the final spec. */
5885 : 581462 : value_count = 0;
5886 : 581462 : p = spec;
5887 : 1162924 : while ((p = strstr (p, "%(VALUE)")) != NULL)
5888 : : {
5889 : 581462 : p ++;
5890 : 581462 : value_count ++;
5891 : : }
5892 : :
5893 : : /* Replace each %(VALUE) by the specified value. */
5894 : 581462 : tmp_spec = (char *) alloca (strlen (spec) + 1
5895 : : + value_count * (value_len - strlen ("%(VALUE)")));
5896 : 581462 : tmp_spec_p = tmp_spec;
5897 : 581462 : q = spec;
5898 : 1162924 : while ((p = strstr (q, "%(VALUE)")) != NULL)
5899 : : {
5900 : 581462 : memcpy (tmp_spec_p, q, p - q);
5901 : 581462 : tmp_spec_p = tmp_spec_p + (p - q);
5902 : 581462 : memcpy (tmp_spec_p, value, value_len);
5903 : 581462 : tmp_spec_p += value_len;
5904 : 581462 : q = p + strlen ("%(VALUE)");
5905 : : }
5906 : 581462 : strcpy (tmp_spec_p, q);
5907 : :
5908 : 581462 : do_self_spec (tmp_spec);
5909 : : }
5910 : :
5911 : : /* Process the given spec string and add any new options to the end
5912 : : of the switches/n_switches array. */
5913 : :
5914 : : static void
5915 : 2616915 : do_self_spec (const char *spec)
5916 : : {
5917 : 2616915 : int i;
5918 : :
5919 : 2616915 : do_spec_2 (spec, NULL);
5920 : 2616915 : do_spec_1 (" ", 0, NULL);
5921 : :
5922 : : /* Mark %<S switches processed by do_self_spec to be ignored permanently.
5923 : : do_self_specs adds the replacements to switches array, so it shouldn't
5924 : : be processed afterwards. */
5925 : 60202271 : for (i = 0; i < n_switches; i++)
5926 : 54968441 : if ((switches[i].live_cond & SWITCH_IGNORE))
5927 : 647 : switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
5928 : :
5929 : 2616915 : if (argbuf.length () > 0)
5930 : : {
5931 : 547653 : const char **argbuf_copy;
5932 : 547653 : struct cl_decoded_option *decoded_options;
5933 : 547653 : struct cl_option_handlers handlers;
5934 : 547653 : unsigned int decoded_options_count;
5935 : 547653 : unsigned int j;
5936 : :
5937 : : /* Create a copy of argbuf with a dummy argv[0] entry for
5938 : : decode_cmdline_options_to_array. */
5939 : 547653 : argbuf_copy = XNEWVEC (const char *,
5940 : : argbuf.length () + 1);
5941 : 547653 : argbuf_copy[0] = "";
5942 : 547653 : memcpy (argbuf_copy + 1, argbuf.address (),
5943 : 547653 : argbuf.length () * sizeof (const char *));
5944 : :
5945 : 1095306 : decode_cmdline_options_to_array (argbuf.length () + 1,
5946 : : argbuf_copy,
5947 : : CL_DRIVER, &decoded_options,
5948 : : &decoded_options_count);
5949 : 547653 : free (argbuf_copy);
5950 : :
5951 : 547653 : set_option_handlers (&handlers);
5952 : :
5953 : 1097702 : for (j = 1; j < decoded_options_count; j++)
5954 : : {
5955 : 550049 : switch (decoded_options[j].opt_index)
5956 : : {
5957 : 0 : case OPT_SPECIAL_input_file:
5958 : : /* Specs should only generate options, not input
5959 : : files. */
5960 : 0 : if (strcmp (decoded_options[j].arg, "-") != 0)
5961 : 0 : fatal_error (input_location,
5962 : : "switch %qs does not start with %<-%>",
5963 : : decoded_options[j].arg);
5964 : : else
5965 : 0 : fatal_error (input_location,
5966 : : "spec-generated switch is just %<-%>");
5967 : 1198 : break;
5968 : :
5969 : 1198 : case OPT_fcompare_debug_second:
5970 : 1198 : case OPT_fcompare_debug:
5971 : 1198 : case OPT_fcompare_debug_:
5972 : 1198 : case OPT_o:
5973 : : /* Avoid duplicate processing of some options from
5974 : : compare-debug specs; just save them here. */
5975 : 1198 : save_switch (decoded_options[j].canonical_option[0],
5976 : 1198 : (decoded_options[j].canonical_option_num_elements
5977 : : - 1),
5978 : 1198 : &decoded_options[j].canonical_option[1], false, true);
5979 : 1198 : break;
5980 : :
5981 : 548851 : default:
5982 : 548851 : read_cmdline_option (&global_options, &global_options_set,
5983 : : decoded_options + j, UNKNOWN_LOCATION,
5984 : : CL_DRIVER, &handlers, global_dc);
5985 : 548851 : break;
5986 : : }
5987 : : }
5988 : :
5989 : 547653 : free (decoded_options);
5990 : :
5991 : 547653 : alloc_switch ();
5992 : 547653 : switches[n_switches].part1 = 0;
5993 : : }
5994 : 2616915 : }
5995 : :
5996 : : /* Callback for processing %D and %I specs. */
5997 : :
5998 : : struct spec_path_info {
5999 : : const char *option;
6000 : : const char *append;
6001 : : size_t append_len;
6002 : : bool omit_relative;
6003 : : bool separate_options;
6004 : : bool realpaths;
6005 : : };
6006 : :
6007 : : static void *
6008 : 3265934 : spec_path (char *path, void *data)
6009 : : {
6010 : 3265934 : struct spec_path_info *info = (struct spec_path_info *) data;
6011 : 3265934 : size_t len = 0;
6012 : 3265934 : char save = 0;
6013 : :
6014 : : /* The path must exist; we want to resolve it to the realpath so that this
6015 : : can be embedded as a runpath. */
6016 : 3265934 : if (info->realpaths)
6017 : 0 : path = lrealpath (path);
6018 : :
6019 : : /* However, if we failed to resolve it - perhaps because there was a bogus
6020 : : -B option on the command line, then punt on this entry. */
6021 : 3265934 : if (!path)
6022 : : return NULL;
6023 : :
6024 : 3265934 : if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
6025 : : return NULL;
6026 : :
6027 : 3265934 : if (info->append_len != 0)
6028 : : {
6029 : 1356552 : len = strlen (path);
6030 : 1356552 : memcpy (path + len, info->append, info->append_len + 1);
6031 : : }
6032 : :
6033 : 3265934 : if (!is_directory (path))
6034 : : return NULL;
6035 : :
6036 : 1221033 : do_spec_1 (info->option, 1, NULL);
6037 : 1221033 : if (info->separate_options)
6038 : 434763 : do_spec_1 (" ", 0, NULL);
6039 : :
6040 : 1221033 : if (info->append_len == 0)
6041 : : {
6042 : 786270 : len = strlen (path);
6043 : 786270 : save = path[len - 1];
6044 : 786270 : if (IS_DIR_SEPARATOR (path[len - 1]))
6045 : 786270 : path[len - 1] = '\0';
6046 : : }
6047 : :
6048 : 1221033 : do_spec_1 (path, 1, NULL);
6049 : 1221033 : do_spec_1 (" ", 0, NULL);
6050 : :
6051 : : /* Must not damage the original path. */
6052 : 1221033 : if (info->append_len == 0)
6053 : 786270 : path[len - 1] = save;
6054 : :
6055 : : return NULL;
6056 : : }
6057 : :
6058 : : /* True if we should compile INFILE. */
6059 : :
6060 : : static bool
6061 : 43797 : compile_input_file_p (struct infile *infile)
6062 : : {
6063 : 27313 : if ((!infile->language) || (infile->language[0] != '*'))
6064 : 39725 : if (infile->incompiler == input_file_compiler)
6065 : 0 : return true;
6066 : : return false;
6067 : : }
6068 : :
6069 : : /* Process each member of VEC as a spec. */
6070 : :
6071 : : static void
6072 : 457941 : do_specs_vec (vec<char_p> vec)
6073 : : {
6074 : 458023 : for (char *opt : vec)
6075 : : {
6076 : 58 : do_spec_1 (opt, 1, NULL);
6077 : : /* Make each accumulated option a separate argument. */
6078 : 58 : do_spec_1 (" ", 0, NULL);
6079 : : }
6080 : 457941 : }
6081 : :
6082 : : /* Add options passed via -Xassembler or -Wa to COLLECT_AS_OPTIONS. */
6083 : :
6084 : : static void
6085 : 290607 : putenv_COLLECT_AS_OPTIONS (vec<char_p> vec)
6086 : : {
6087 : 290607 : if (vec.is_empty ())
6088 : 290607 : return;
6089 : :
6090 : 91 : obstack_init (&collect_obstack);
6091 : 91 : obstack_grow (&collect_obstack, "COLLECT_AS_OPTIONS=",
6092 : : strlen ("COLLECT_AS_OPTIONS="));
6093 : :
6094 : 91 : char *opt;
6095 : 91 : unsigned ix;
6096 : :
6097 : 274 : FOR_EACH_VEC_ELT (vec, ix, opt)
6098 : : {
6099 : 183 : obstack_1grow (&collect_obstack, '\'');
6100 : 183 : obstack_grow (&collect_obstack, opt, strlen (opt));
6101 : 183 : obstack_1grow (&collect_obstack, '\'');
6102 : 183 : if (ix < vec.length () - 1)
6103 : 92 : obstack_1grow(&collect_obstack, ' ');
6104 : : }
6105 : :
6106 : 91 : obstack_1grow (&collect_obstack, '\0');
6107 : 91 : xputenv (XOBFINISH (&collect_obstack, char *));
6108 : : }
6109 : :
6110 : : /* Process the sub-spec SPEC as a portion of a larger spec.
6111 : : This is like processing a whole spec except that we do
6112 : : not initialize at the beginning and we do not supply a
6113 : : newline by default at the end.
6114 : : INSWITCH nonzero means don't process %-sequences in SPEC;
6115 : : in this case, % is treated as an ordinary character.
6116 : : This is used while substituting switches.
6117 : : INSWITCH nonzero also causes SPC not to terminate an argument.
6118 : :
6119 : : Value is zero unless a line was finished
6120 : : and the command on that line reported an error. */
6121 : :
6122 : : static int
6123 : 50101831 : do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
6124 : : {
6125 : 50101831 : const char *p = spec;
6126 : 50101831 : int c;
6127 : 50101831 : int i;
6128 : 50101831 : int value;
6129 : :
6130 : : /* If it's an empty string argument to a switch, keep it as is. */
6131 : 50101831 : if (inswitch && !*p)
6132 : 1 : arg_going = 1;
6133 : :
6134 : 503074953 : while ((c = *p++))
6135 : : /* If substituting a switch, treat all chars like letters.
6136 : : Otherwise, NL, SPC, TAB and % are special. */
6137 : 453020618 : switch (inswitch ? 'a' : c)
6138 : : {
6139 : 259957 : case '\n':
6140 : 259957 : end_going_arg ();
6141 : :
6142 : 259957 : if (argbuf.length () > 0
6143 : 519914 : && !strcmp (argbuf.last (), "|"))
6144 : : {
6145 : : /* A `|' before the newline means use a pipe here,
6146 : : but only if -pipe was specified.
6147 : : Otherwise, execute now and don't pass the `|' as an arg. */
6148 : 165379 : if (use_pipes)
6149 : : {
6150 : 0 : input_from_pipe = 1;
6151 : 0 : break;
6152 : : }
6153 : : else
6154 : 165379 : argbuf.pop ();
6155 : : }
6156 : :
6157 : 259957 : set_collect_gcc_options ();
6158 : :
6159 : 259957 : if (argbuf.length () > 0)
6160 : : {
6161 : 259957 : value = execute ();
6162 : 259957 : if (value)
6163 : : return value;
6164 : : }
6165 : : /* Reinitialize for a new command, and for a new argument. */
6166 : 254316 : clear_args ();
6167 : 254316 : arg_going = 0;
6168 : 254316 : delete_this_arg = 0;
6169 : 254316 : this_is_output_file = 0;
6170 : 254316 : this_is_library_file = 0;
6171 : 254316 : this_is_linker_script = 0;
6172 : 254316 : input_from_pipe = 0;
6173 : 254316 : break;
6174 : :
6175 : 165379 : case '|':
6176 : 165379 : end_going_arg ();
6177 : :
6178 : : /* Use pipe */
6179 : 165379 : obstack_1grow (&obstack, c);
6180 : 165379 : arg_going = 1;
6181 : 165379 : break;
6182 : :
6183 : 68257153 : case '\t':
6184 : 68257153 : case ' ':
6185 : 68257153 : end_going_arg ();
6186 : :
6187 : : /* Reinitialize for a new argument. */
6188 : 68257153 : delete_this_arg = 0;
6189 : 68257153 : this_is_output_file = 0;
6190 : 68257153 : this_is_library_file = 0;
6191 : 68257153 : this_is_linker_script = 0;
6192 : 68257153 : break;
6193 : :
6194 : 47940042 : case '%':
6195 : 47940042 : switch (c = *p++)
6196 : : {
6197 : 0 : case 0:
6198 : 0 : fatal_error (input_location, "spec %qs invalid", spec);
6199 : :
6200 : 3563 : case 'b':
6201 : : /* Don't use %b in the linker command. */
6202 : 3563 : gcc_assert (suffixed_basename_length);
6203 : 3563 : if (!this_is_output_file && dumpdir_length)
6204 : 689 : obstack_grow (&obstack, dumpdir, dumpdir_length);
6205 : 3563 : if (this_is_output_file || !outbase_length)
6206 : 3223 : obstack_grow (&obstack, input_basename, basename_length);
6207 : : else
6208 : 340 : obstack_grow (&obstack, outbase, outbase_length);
6209 : 3563 : if (compare_debug < 0)
6210 : 6 : obstack_grow (&obstack, ".gk", 3);
6211 : 3563 : arg_going = 1;
6212 : 3563 : break;
6213 : :
6214 : 10 : case 'B':
6215 : : /* Don't use %B in the linker command. */
6216 : 10 : gcc_assert (suffixed_basename_length);
6217 : 10 : if (!this_is_output_file && dumpdir_length)
6218 : 0 : obstack_grow (&obstack, dumpdir, dumpdir_length);
6219 : 10 : if (this_is_output_file || !outbase_length)
6220 : 5 : obstack_grow (&obstack, input_basename, basename_length);
6221 : : else
6222 : 5 : obstack_grow (&obstack, outbase, outbase_length);
6223 : 10 : if (compare_debug < 0)
6224 : 3 : obstack_grow (&obstack, ".gk", 3);
6225 : 10 : obstack_grow (&obstack, input_basename + basename_length,
6226 : : suffixed_basename_length - basename_length);
6227 : :
6228 : 10 : arg_going = 1;
6229 : 10 : break;
6230 : :
6231 : 95707 : case 'd':
6232 : 95707 : delete_this_arg = 2;
6233 : 95707 : break;
6234 : :
6235 : : /* Dump out the directories specified with LIBRARY_PATH,
6236 : : followed by the absolute directories
6237 : : that we search for startfiles. */
6238 : 102706 : case 'D':
6239 : 102706 : {
6240 : 102706 : struct spec_path_info info;
6241 : :
6242 : 102706 : info.option = "-L";
6243 : 102706 : info.append_len = 0;
6244 : : #ifdef RELATIVE_PREFIX_NOT_LINKDIR
6245 : : /* Used on systems which record the specified -L dirs
6246 : : and use them to search for dynamic linking.
6247 : : Relative directories always come from -B,
6248 : : and it is better not to use them for searching
6249 : : at run time. In particular, stage1 loses. */
6250 : : info.omit_relative = true;
6251 : : #else
6252 : 102706 : info.omit_relative = false;
6253 : : #endif
6254 : 102706 : info.separate_options = false;
6255 : 102706 : info.realpaths = false;
6256 : :
6257 : 102706 : for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
6258 : : }
6259 : 102706 : break;
6260 : :
6261 : 0 : case 'P':
6262 : 0 : {
6263 : 0 : struct spec_path_info info;
6264 : :
6265 : 0 : info.option = RUNPATH_OPTION;
6266 : 0 : info.append_len = 0;
6267 : 0 : info.omit_relative = false;
6268 : 0 : info.separate_options = true;
6269 : : /* We want to embed the actual paths that have the libraries. */
6270 : 0 : info.realpaths = true;
6271 : :
6272 : 0 : for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
6273 : : }
6274 : 0 : break;
6275 : :
6276 : : case 'e':
6277 : : /* %efoo means report an error with `foo' as error message
6278 : : and don't execute any more commands for this file. */
6279 : : {
6280 : : const char *q = p;
6281 : : char *buf;
6282 : 0 : while (*p != 0 && *p != '\n')
6283 : 0 : p++;
6284 : 0 : buf = (char *) alloca (p - q + 1);
6285 : 0 : strncpy (buf, q, p - q);
6286 : 0 : buf[p - q] = 0;
6287 : 0 : error ("%s", _(buf));
6288 : 0 : return -1;
6289 : : }
6290 : : break;
6291 : : case 'n':
6292 : : /* %nfoo means report a notice with `foo' on stderr. */
6293 : : {
6294 : : const char *q = p;
6295 : : char *buf;
6296 : 0 : while (*p != 0 && *p != '\n')
6297 : 0 : p++;
6298 : 0 : buf = (char *) alloca (p - q + 1);
6299 : 0 : strncpy (buf, q, p - q);
6300 : 0 : buf[p - q] = 0;
6301 : 0 : inform (UNKNOWN_LOCATION, "%s", _(buf));
6302 : 0 : if (*p)
6303 : 0 : p++;
6304 : : }
6305 : : break;
6306 : :
6307 : 712 : case 'j':
6308 : 712 : {
6309 : 712 : struct stat st;
6310 : :
6311 : : /* If save_temps_flag is off, and the HOST_BIT_BUCKET is
6312 : : defined, and it is not a directory, and it is
6313 : : writable, use it. Otherwise, treat this like any
6314 : : other temporary file. */
6315 : :
6316 : 712 : if ((!save_temps_flag)
6317 : 712 : && (stat (HOST_BIT_BUCKET, &st) == 0) && (!S_ISDIR (st.st_mode))
6318 : 1424 : && (access (HOST_BIT_BUCKET, W_OK) == 0))
6319 : : {
6320 : 712 : obstack_grow (&obstack, HOST_BIT_BUCKET,
6321 : : strlen (HOST_BIT_BUCKET));
6322 : 712 : delete_this_arg = 0;
6323 : 712 : arg_going = 1;
6324 : 712 : break;
6325 : : }
6326 : : }
6327 : 0 : goto create_temp_file;
6328 : 165379 : case '|':
6329 : 165379 : if (use_pipes)
6330 : : {
6331 : 0 : obstack_1grow (&obstack, '-');
6332 : 0 : delete_this_arg = 0;
6333 : 0 : arg_going = 1;
6334 : :
6335 : : /* consume suffix */
6336 : 0 : while (*p == '.' || ISALNUM ((unsigned char) *p))
6337 : 0 : p++;
6338 : 0 : if (p[0] == '%' && p[1] == 'O')
6339 : 0 : p += 2;
6340 : :
6341 : : break;
6342 : : }
6343 : 165379 : goto create_temp_file;
6344 : 159870 : case 'm':
6345 : 159870 : if (use_pipes)
6346 : : {
6347 : : /* consume suffix */
6348 : 0 : while (*p == '.' || ISALNUM ((unsigned char) *p))
6349 : 0 : p++;
6350 : 0 : if (p[0] == '%' && p[1] == 'O')
6351 : 0 : p += 2;
6352 : :
6353 : : break;
6354 : : }
6355 : 159870 : goto create_temp_file;
6356 : 512463 : case 'g':
6357 : 512463 : case 'u':
6358 : 512463 : case 'U':
6359 : 512463 : create_temp_file:
6360 : 512463 : {
6361 : 512463 : struct temp_name *t;
6362 : 512463 : int suffix_length;
6363 : 512463 : const char *suffix = p;
6364 : 512463 : char *saved_suffix = NULL;
6365 : :
6366 : 1527047 : while (*p == '.' || ISALNUM ((unsigned char) *p))
6367 : 1014584 : p++;
6368 : 512463 : suffix_length = p - suffix;
6369 : 512463 : if (p[0] == '%' && p[1] == 'O')
6370 : : {
6371 : 95923 : p += 2;
6372 : : /* We don't support extra suffix characters after %O. */
6373 : 95923 : if (*p == '.' || ISALNUM ((unsigned char) *p))
6374 : 0 : fatal_error (input_location,
6375 : : "spec %qs has invalid %<%%0%c%>", spec, *p);
6376 : 95923 : if (suffix_length == 0)
6377 : : suffix = TARGET_OBJECT_SUFFIX;
6378 : : else
6379 : : {
6380 : 0 : saved_suffix
6381 : 0 : = XNEWVEC (char, suffix_length
6382 : : + strlen (TARGET_OBJECT_SUFFIX) + 1);
6383 : 0 : strncpy (saved_suffix, suffix, suffix_length);
6384 : 0 : strcpy (saved_suffix + suffix_length,
6385 : : TARGET_OBJECT_SUFFIX);
6386 : : }
6387 : 95923 : suffix_length += strlen (TARGET_OBJECT_SUFFIX);
6388 : : }
6389 : :
6390 : 512463 : if (compare_debug < 0)
6391 : : {
6392 : 590 : suffix = concat (".gk", suffix, NULL);
6393 : 590 : suffix_length += 3;
6394 : : }
6395 : :
6396 : : /* If -save-temps was specified, use that for the
6397 : : temp file. */
6398 : 512463 : if (save_temps_flag)
6399 : : {
6400 : 1198 : char *tmp;
6401 : 1198 : bool adjusted_suffix = false;
6402 : 1198 : if (suffix_length
6403 : 1198 : && !outbase_length && !basename_length
6404 : 222 : && !dumpdir_trailing_dash_added)
6405 : : {
6406 : 20 : adjusted_suffix = true;
6407 : 20 : suffix++;
6408 : 20 : suffix_length--;
6409 : : }
6410 : 1198 : temp_filename_length
6411 : 1198 : = dumpdir_length + suffix_length + 1;
6412 : 1198 : if (outbase_length)
6413 : 78 : temp_filename_length += outbase_length;
6414 : : else
6415 : 1120 : temp_filename_length += basename_length;
6416 : 1198 : tmp = (char *) alloca (temp_filename_length);
6417 : 1198 : if (dumpdir_length)
6418 : 1034 : memcpy (tmp, dumpdir, dumpdir_length);
6419 : 1198 : if (outbase_length)
6420 : 78 : memcpy (tmp + dumpdir_length, outbase,
6421 : : outbase_length);
6422 : 1120 : else if (basename_length)
6423 : 898 : memcpy (tmp + dumpdir_length, input_basename,
6424 : : basename_length);
6425 : 1198 : memcpy (tmp + temp_filename_length - suffix_length - 1,
6426 : : suffix, suffix_length);
6427 : 1198 : if (adjusted_suffix)
6428 : : {
6429 : 20 : adjusted_suffix = false;
6430 : 20 : suffix--;
6431 : 20 : suffix_length++;
6432 : : }
6433 : 1198 : tmp[temp_filename_length - 1] = '\0';
6434 : 1198 : temp_filename = tmp;
6435 : :
6436 : 1198 : if (filename_cmp (temp_filename, gcc_input_filename) != 0)
6437 : : {
6438 : : #ifndef HOST_LACKS_INODE_NUMBERS
6439 : 1198 : struct stat st_temp;
6440 : :
6441 : : /* Note, set_input() resets input_stat_set to 0. */
6442 : 1198 : if (input_stat_set == 0)
6443 : : {
6444 : 558 : input_stat_set = stat (gcc_input_filename,
6445 : : &input_stat);
6446 : 558 : if (input_stat_set >= 0)
6447 : 558 : input_stat_set = 1;
6448 : : }
6449 : :
6450 : : /* If we have the stat for the gcc_input_filename
6451 : : and we can do the stat for the temp_filename
6452 : : then the they could still refer to the same
6453 : : file if st_dev/st_ino's are the same. */
6454 : 1198 : if (input_stat_set != 1
6455 : 1198 : || stat (temp_filename, &st_temp) < 0
6456 : 368 : || input_stat.st_dev != st_temp.st_dev
6457 : 1216 : || input_stat.st_ino != st_temp.st_ino)
6458 : : #else
6459 : : /* Just compare canonical pathnames. */
6460 : : char* input_realname = lrealpath (gcc_input_filename);
6461 : : char* temp_realname = lrealpath (temp_filename);
6462 : : bool files_differ = filename_cmp (input_realname, temp_realname);
6463 : : free (input_realname);
6464 : : free (temp_realname);
6465 : : if (files_differ)
6466 : : #endif
6467 : : {
6468 : 1198 : temp_filename
6469 : 1198 : = save_string (temp_filename,
6470 : : temp_filename_length - 1);
6471 : 1198 : obstack_grow (&obstack, temp_filename,
6472 : : temp_filename_length);
6473 : 1198 : arg_going = 1;
6474 : 1198 : delete_this_arg = 0;
6475 : 1198 : break;
6476 : : }
6477 : : }
6478 : : }
6479 : :
6480 : : /* See if we already have an association of %g/%u/%U and
6481 : : suffix. */
6482 : 874100 : for (t = temp_names; t; t = t->next)
6483 : 529649 : if (t->length == suffix_length
6484 : 354541 : && strncmp (t->suffix, suffix, suffix_length) == 0
6485 : 170717 : && t->unique == (c == 'u' || c == 'U' || c == 'j'))
6486 : : break;
6487 : :
6488 : : /* Make a new association if needed. %u and %j
6489 : : require one. */
6490 : 511265 : if (t == 0 || c == 'u' || c == 'j')
6491 : : {
6492 : 348160 : if (t == 0)
6493 : : {
6494 : 344451 : t = XNEW (struct temp_name);
6495 : 344451 : t->next = temp_names;
6496 : 344451 : temp_names = t;
6497 : : }
6498 : 348160 : t->length = suffix_length;
6499 : 348160 : if (saved_suffix)
6500 : : {
6501 : 0 : t->suffix = saved_suffix;
6502 : 0 : saved_suffix = NULL;
6503 : : }
6504 : : else
6505 : 348160 : t->suffix = save_string (suffix, suffix_length);
6506 : 348160 : t->unique = (c == 'u' || c == 'U' || c == 'j');
6507 : 348160 : temp_filename = make_temp_file (t->suffix);
6508 : 348160 : temp_filename_length = strlen (temp_filename);
6509 : 348160 : t->filename = temp_filename;
6510 : 348160 : t->filename_length = temp_filename_length;
6511 : : }
6512 : :
6513 : 511265 : free (saved_suffix);
6514 : :
6515 : 511265 : obstack_grow (&obstack, t->filename, t->filename_length);
6516 : 511265 : delete_this_arg = 1;
6517 : : }
6518 : 511265 : arg_going = 1;
6519 : 511265 : break;
6520 : :
6521 : 280187 : case 'i':
6522 : 280187 : if (combine_inputs)
6523 : : {
6524 : : /* We are going to expand `%i' into `@FILE', where FILE
6525 : : is a newly-created temporary filename. The filenames
6526 : : that would usually be expanded in place of %o will be
6527 : : written to the temporary file. */
6528 : 30578 : if (at_file_supplied)
6529 : 13104 : open_at_file ();
6530 : :
6531 : 74375 : for (i = 0; (int) i < n_infiles; i++)
6532 : 87594 : if (compile_input_file_p (&infiles[i]))
6533 : : {
6534 : 39663 : store_arg (infiles[i].name, 0, 0);
6535 : 39663 : infiles[i].compiled = true;
6536 : : }
6537 : :
6538 : 30578 : if (at_file_supplied)
6539 : 13104 : close_at_file ();
6540 : : }
6541 : : else
6542 : : {
6543 : 249609 : obstack_grow (&obstack, gcc_input_filename,
6544 : : input_filename_length);
6545 : 249609 : arg_going = 1;
6546 : : }
6547 : : break;
6548 : :
6549 : 216289 : case 'I':
6550 : 216289 : {
6551 : 216289 : struct spec_path_info info;
6552 : :
6553 : 216289 : if (multilib_dir)
6554 : : {
6555 : 5865 : do_spec_1 ("-imultilib", 1, NULL);
6556 : : /* Make this a separate argument. */
6557 : 5865 : do_spec_1 (" ", 0, NULL);
6558 : 5865 : do_spec_1 (multilib_dir, 1, NULL);
6559 : 5865 : do_spec_1 (" ", 0, NULL);
6560 : : }
6561 : :
6562 : 216289 : if (multiarch_dir)
6563 : : {
6564 : 0 : do_spec_1 ("-imultiarch", 1, NULL);
6565 : : /* Make this a separate argument. */
6566 : 0 : do_spec_1 (" ", 0, NULL);
6567 : 0 : do_spec_1 (multiarch_dir, 1, NULL);
6568 : 0 : do_spec_1 (" ", 0, NULL);
6569 : : }
6570 : :
6571 : 216289 : if (gcc_exec_prefix)
6572 : : {
6573 : 216289 : do_spec_1 ("-iprefix", 1, NULL);
6574 : : /* Make this a separate argument. */
6575 : 216289 : do_spec_1 (" ", 0, NULL);
6576 : 216289 : do_spec_1 (gcc_exec_prefix, 1, NULL);
6577 : 216289 : do_spec_1 (" ", 0, NULL);
6578 : : }
6579 : :
6580 : 216289 : if (target_system_root_changed ||
6581 : 216289 : (target_system_root && target_sysroot_hdrs_suffix))
6582 : : {
6583 : 0 : do_spec_1 ("-isysroot", 1, NULL);
6584 : : /* Make this a separate argument. */
6585 : 0 : do_spec_1 (" ", 0, NULL);
6586 : 0 : do_spec_1 (target_system_root, 1, NULL);
6587 : 0 : if (target_sysroot_hdrs_suffix)
6588 : 0 : do_spec_1 (target_sysroot_hdrs_suffix, 1, NULL);
6589 : 0 : do_spec_1 (" ", 0, NULL);
6590 : : }
6591 : :
6592 : 216289 : info.option = "-isystem";
6593 : 216289 : info.append = "include";
6594 : 216289 : info.append_len = strlen (info.append);
6595 : 216289 : info.omit_relative = false;
6596 : 216289 : info.separate_options = true;
6597 : 216289 : info.realpaths = false;
6598 : :
6599 : 216289 : for_each_path (&include_prefixes, false, info.append_len,
6600 : : spec_path, &info);
6601 : :
6602 : 216289 : info.append = "include-fixed";
6603 : 216289 : if (*sysroot_hdrs_suffix_spec)
6604 : 0 : info.append = concat (info.append, dir_separator_str,
6605 : : multilib_dir, NULL);
6606 : 216289 : else if (multiarch_dir)
6607 : : {
6608 : : /* For multiarch, search include-fixed/<multiarch-dir>
6609 : : before include-fixed. */
6610 : 0 : info.append = concat (info.append, dir_separator_str,
6611 : : multiarch_dir, NULL);
6612 : 0 : info.append_len = strlen (info.append);
6613 : 0 : for_each_path (&include_prefixes, false, info.append_len,
6614 : : spec_path, &info);
6615 : :
6616 : 0 : info.append = "include-fixed";
6617 : : }
6618 : 216289 : info.append_len = strlen (info.append);
6619 : 216289 : for_each_path (&include_prefixes, false, info.append_len,
6620 : : spec_path, &info);
6621 : : }
6622 : 216289 : break;
6623 : :
6624 : 93742 : case 'o':
6625 : : /* We are going to expand `%o' into `@FILE', where FILE
6626 : : is a newly-created temporary filename. The filenames
6627 : : that would usually be expanded in place of %o will be
6628 : : written to the temporary file. */
6629 : 93742 : if (at_file_supplied)
6630 : 6 : open_at_file ();
6631 : :
6632 : 415669 : for (i = 0; i < n_infiles + lang_specific_extra_outfiles; i++)
6633 : 321927 : if (outfiles[i])
6634 : 321887 : store_arg (outfiles[i], 0, 0);
6635 : :
6636 : 93742 : if (at_file_supplied)
6637 : 6 : close_at_file ();
6638 : : break;
6639 : :
6640 : 3973 : case 'O':
6641 : 3973 : obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
6642 : 3973 : arg_going = 1;
6643 : 3973 : break;
6644 : :
6645 : 529609 : case 's':
6646 : 529609 : this_is_library_file = 1;
6647 : 529609 : break;
6648 : :
6649 : 0 : case 'T':
6650 : 0 : this_is_linker_script = 1;
6651 : 0 : break;
6652 : :
6653 : 471 : case 'V':
6654 : 471 : outfiles[input_file_number] = NULL;
6655 : 471 : break;
6656 : :
6657 : 98668 : case 'w':
6658 : 98668 : this_is_output_file = 1;
6659 : 98668 : break;
6660 : :
6661 : 168375 : case 'W':
6662 : 168375 : {
6663 : 168375 : unsigned int cur_index = argbuf.length ();
6664 : : /* Handle the {...} following the %W. */
6665 : 168375 : if (*p != '{')
6666 : 0 : fatal_error (input_location,
6667 : : "spec %qs has invalid %<%%W%c%>", spec, *p);
6668 : 168375 : p = handle_braces (p + 1);
6669 : 168375 : if (p == 0)
6670 : : return -1;
6671 : 168375 : end_going_arg ();
6672 : : /* If any args were output, mark the last one for deletion
6673 : : on failure. */
6674 : 336750 : if (argbuf.length () != cur_index)
6675 : 165259 : record_temp_file (argbuf.last (), 0, 1);
6676 : : break;
6677 : : }
6678 : :
6679 : 296309 : case '@':
6680 : : /* Handle the {...} following the %@. */
6681 : 296309 : if (*p != '{')
6682 : 0 : fatal_error (input_location,
6683 : : "spec %qs has invalid %<%%@%c%>", spec, *p);
6684 : 296309 : if (at_file_supplied)
6685 : 15 : open_at_file ();
6686 : 296309 : p = handle_braces (p + 1);
6687 : 296309 : if (at_file_supplied)
6688 : 15 : close_at_file ();
6689 : 296309 : if (p == 0)
6690 : : return -1;
6691 : : break;
6692 : :
6693 : : /* %x{OPTION} records OPTION for %X to output. */
6694 : 0 : case 'x':
6695 : 0 : {
6696 : 0 : const char *p1 = p;
6697 : 0 : char *string;
6698 : :
6699 : : /* Skip past the option value and make a copy. */
6700 : 0 : if (*p != '{')
6701 : 0 : fatal_error (input_location,
6702 : : "spec %qs has invalid %<%%x%c%>", spec, *p);
6703 : 0 : while (*p++ != '}')
6704 : : ;
6705 : 0 : string = save_string (p1 + 1, p - p1 - 2);
6706 : :
6707 : : /* See if we already recorded this option. */
6708 : 0 : for (const char *opt : linker_options)
6709 : 0 : if (! strcmp (string, opt))
6710 : : {
6711 : 0 : free (string);
6712 : 0 : return 0;
6713 : : }
6714 : :
6715 : : /* This option is new; add it. */
6716 : 0 : add_linker_option (string, strlen (string));
6717 : 0 : free (string);
6718 : : }
6719 : 0 : break;
6720 : :
6721 : : /* Dump out the options accumulated previously using %x. */
6722 : 93742 : case 'X':
6723 : 93742 : do_specs_vec (linker_options);
6724 : 93742 : break;
6725 : :
6726 : : /* Dump out the options accumulated previously using -Wa,. */
6727 : 161632 : case 'Y':
6728 : 161632 : do_specs_vec (assembler_options);
6729 : 161632 : break;
6730 : :
6731 : : /* Dump out the options accumulated previously using -Wp,. */
6732 : 202567 : case 'Z':
6733 : 202567 : do_specs_vec (preprocessor_options);
6734 : 202567 : break;
6735 : :
6736 : : /* Here are digits and numbers that just process
6737 : : a certain constant string as a spec. */
6738 : :
6739 : 277238 : case '1':
6740 : 277238 : value = do_spec_1 (cc1_spec, 0, NULL);
6741 : 277238 : if (value != 0)
6742 : : return value;
6743 : : break;
6744 : :
6745 : 92787 : case '2':
6746 : 92787 : value = do_spec_1 (cc1plus_spec, 0, NULL);
6747 : 92787 : if (value != 0)
6748 : : return value;
6749 : : break;
6750 : :
6751 : 161632 : case 'a':
6752 : 161632 : value = do_spec_1 (asm_spec, 0, NULL);
6753 : 161632 : if (value != 0)
6754 : : return value;
6755 : : break;
6756 : :
6757 : 161632 : case 'A':
6758 : 161632 : value = do_spec_1 (asm_final_spec, 0, NULL);
6759 : 161632 : if (value != 0)
6760 : : return value;
6761 : : break;
6762 : :
6763 : 202567 : case 'C':
6764 : 202567 : {
6765 : 405134 : const char *const spec
6766 : 202567 : = (input_file_compiler->cpp_spec
6767 : 202567 : ? input_file_compiler->cpp_spec
6768 : : : cpp_spec);
6769 : 202567 : value = do_spec_1 (spec, 0, NULL);
6770 : 202567 : if (value != 0)
6771 : : return value;
6772 : : }
6773 : : break;
6774 : :
6775 : 93538 : case 'E':
6776 : 93538 : value = do_spec_1 (endfile_spec, 0, NULL);
6777 : 93538 : if (value != 0)
6778 : : return value;
6779 : : break;
6780 : :
6781 : 93742 : case 'l':
6782 : 93742 : value = do_spec_1 (link_spec, 0, NULL);
6783 : 93742 : if (value != 0)
6784 : : return value;
6785 : : break;
6786 : :
6787 : 181832 : case 'L':
6788 : 181832 : value = do_spec_1 (lib_spec, 0, NULL);
6789 : 181832 : if (value != 0)
6790 : : return value;
6791 : : break;
6792 : :
6793 : 0 : case 'M':
6794 : 0 : if (multilib_os_dir == NULL)
6795 : 0 : obstack_1grow (&obstack, '.');
6796 : : else
6797 : 0 : obstack_grow (&obstack, multilib_os_dir,
6798 : : strlen (multilib_os_dir));
6799 : : break;
6800 : :
6801 : 363470 : case 'G':
6802 : 363470 : value = do_spec_1 (libgcc_spec, 0, NULL);
6803 : 363470 : if (value != 0)
6804 : : return value;
6805 : : break;
6806 : :
6807 : 0 : case 'R':
6808 : : /* We assume there is a directory
6809 : : separator at the end of this string. */
6810 : 0 : if (target_system_root)
6811 : : {
6812 : 0 : obstack_grow (&obstack, target_system_root,
6813 : : strlen (target_system_root));
6814 : 0 : if (target_sysroot_suffix)
6815 : 0 : obstack_grow (&obstack, target_sysroot_suffix,
6816 : : strlen (target_sysroot_suffix));
6817 : : }
6818 : : break;
6819 : :
6820 : 93538 : case 'S':
6821 : 93538 : value = do_spec_1 (startfile_spec, 0, NULL);
6822 : 93538 : if (value != 0)
6823 : : return value;
6824 : : break;
6825 : :
6826 : : /* Here we define characters other than letters and digits. */
6827 : :
6828 : 38983897 : case '{':
6829 : 38983897 : p = handle_braces (p);
6830 : 38983897 : if (p == 0)
6831 : : return -1;
6832 : : break;
6833 : :
6834 : 427236 : case ':':
6835 : 427236 : p = handle_spec_function (p, NULL, soft_matched_part);
6836 : 427236 : if (p == 0)
6837 : : return -1;
6838 : : break;
6839 : :
6840 : 0 : case '%':
6841 : 0 : obstack_1grow (&obstack, '%');
6842 : 0 : break;
6843 : :
6844 : : case '.':
6845 : : {
6846 : : unsigned len = 0;
6847 : :
6848 : 11514 : while (p[len] && p[len] != ' ' && p[len] != '%')
6849 : 5775 : len++;
6850 : 5739 : suffix_subst = save_string (p - 1, len + 1);
6851 : 5739 : p += len;
6852 : : }
6853 : 5739 : break;
6854 : :
6855 : : /* Henceforth ignore the option(s) matching the pattern
6856 : : after the %<. */
6857 : 1427025 : case '<':
6858 : 1427025 : case '>':
6859 : 1427025 : {
6860 : 1427025 : unsigned len = 0;
6861 : 1427025 : int have_wildcard = 0;
6862 : 1427025 : int i;
6863 : 1427025 : int switch_option;
6864 : :
6865 : 1427025 : if (c == '>')
6866 : 1427025 : switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC;
6867 : : else
6868 : 1427003 : switch_option = SWITCH_IGNORE;
6869 : :
6870 : 17228795 : while (p[len] && p[len] != ' ' && p[len] != '\t')
6871 : 15801770 : len++;
6872 : :
6873 : 1427025 : if (p[len-1] == '*')
6874 : 15422 : have_wildcard = 1;
6875 : :
6876 : 32412072 : for (i = 0; i < n_switches; i++)
6877 : 30985047 : if (!strncmp (switches[i].part1, p, len - have_wildcard)
6878 : 49257 : && (have_wildcard || switches[i].part1[len] == '\0'))
6879 : : {
6880 : 48992 : switches[i].live_cond |= switch_option;
6881 : : /* User switch be validated from validate_all_switches.
6882 : : when the definition is seen from the spec file.
6883 : : If not defined anywhere, will be rejected. */
6884 : 48992 : if (switches[i].known)
6885 : 48992 : switches[i].validated = true;
6886 : : }
6887 : :
6888 : : p += len;
6889 : : }
6890 : : break;
6891 : :
6892 : 6712 : case '*':
6893 : 6712 : if (soft_matched_part)
6894 : : {
6895 : 6712 : if (soft_matched_part[0])
6896 : 389 : do_spec_1 (soft_matched_part, 1, NULL);
6897 : : /* Only insert a space after the substitution if it is at the
6898 : : end of the current sequence. So if:
6899 : :
6900 : : "%{foo=*:bar%*}%{foo=*:one%*two}"
6901 : :
6902 : : matches -foo=hello then it will produce:
6903 : :
6904 : : barhello onehellotwo
6905 : : */
6906 : 6712 : if (*p == 0 || *p == '}')
6907 : 6712 : do_spec_1 (" ", 0, NULL);
6908 : : }
6909 : : else
6910 : : /* Catch the case where a spec string contains something like
6911 : : '%{foo:%*}'. i.e. there is no * in the pattern on the left
6912 : : hand side of the :. */
6913 : 0 : error ("spec failure: %<%%*%> has not been initialized by pattern match");
6914 : : break;
6915 : :
6916 : : /* Process a string found as the value of a spec given by name.
6917 : : This feature allows individual machine descriptions
6918 : : to add and use their own specs. */
6919 : : case '(':
6920 : : {
6921 : 32533480 : const char *name = p;
6922 : : struct spec_list *sl;
6923 : : int len;
6924 : :
6925 : : /* The string after the S/P is the name of a spec that is to be
6926 : : processed. */
6927 : 32533480 : while (*p && *p != ')')
6928 : 30026757 : p++;
6929 : :
6930 : : /* See if it's in the list. */
6931 : 34473400 : for (len = p - name, sl = specs; sl; sl = sl->next)
6932 : 34473400 : if (sl->name_len == len && !strncmp (sl->name, name, len))
6933 : : {
6934 : 2506723 : name = *(sl->ptr_spec);
6935 : : #ifdef DEBUG_SPECS
6936 : : fnotice (stderr, "Processing spec (%s), which is '%s'\n",
6937 : : sl->name, name);
6938 : : #endif
6939 : 2506723 : break;
6940 : : }
6941 : :
6942 : 2506723 : if (sl)
6943 : : {
6944 : 2506723 : value = do_spec_1 (name, 0, NULL);
6945 : 2506723 : if (value != 0)
6946 : : return value;
6947 : : }
6948 : :
6949 : : /* Discard the closing paren. */
6950 : 2501214 : if (*p)
6951 : 2501214 : p++;
6952 : : }
6953 : : break;
6954 : :
6955 : 9 : case '"':
6956 : : /* End a previous argument, if there is one, then issue an
6957 : : empty argument. */
6958 : 9 : end_going_arg ();
6959 : 9 : arg_going = 1;
6960 : 9 : end_going_arg ();
6961 : 9 : break;
6962 : :
6963 : 0 : default:
6964 : 0 : error ("spec failure: unrecognized spec option %qc", c);
6965 : 0 : break;
6966 : : }
6967 : : break;
6968 : :
6969 : 0 : case '\\':
6970 : : /* Backslash: treat next character as ordinary. */
6971 : 0 : c = *p++;
6972 : :
6973 : : /* When adding more cases that previously matched default, make
6974 : : sure to adjust quote_spec_char_p as well. */
6975 : :
6976 : : /* Fall through. */
6977 : 336398087 : default:
6978 : : /* Ordinary character: put it into the current argument. */
6979 : 336398087 : obstack_1grow (&obstack, c);
6980 : 336398087 : arg_going = 1;
6981 : : }
6982 : :
6983 : : /* End of string. If we are processing a spec function, we need to
6984 : : end any pending argument. */
6985 : 50054335 : if (processing_spec_function)
6986 : 4322557 : end_going_arg ();
6987 : :
6988 : : return 0;
6989 : : }
6990 : :
6991 : : /* Look up a spec function. */
6992 : :
6993 : : static const struct spec_function *
6994 : 2026269 : lookup_spec_function (const char *name)
6995 : : {
6996 : 2026269 : const struct spec_function *sf;
6997 : :
6998 : 24233098 : for (sf = static_spec_functions; sf->name != NULL; sf++)
6999 : 24233098 : if (strcmp (sf->name, name) == 0)
7000 : : return sf;
7001 : :
7002 : : return NULL;
7003 : : }
7004 : :
7005 : : /* Evaluate a spec function. */
7006 : :
7007 : : static const char *
7008 : 2026269 : eval_spec_function (const char *func, const char *args,
7009 : : const char *soft_matched_part)
7010 : : {
7011 : 2026269 : const struct spec_function *sf;
7012 : 2026269 : const char *funcval;
7013 : :
7014 : : /* Saved spec processing context. */
7015 : 2026269 : vec<const_char_p> save_argbuf;
7016 : :
7017 : 2026269 : int save_arg_going;
7018 : 2026269 : int save_delete_this_arg;
7019 : 2026269 : int save_this_is_output_file;
7020 : 2026269 : int save_this_is_library_file;
7021 : 2026269 : int save_input_from_pipe;
7022 : 2026269 : int save_this_is_linker_script;
7023 : 2026269 : const char *save_suffix_subst;
7024 : :
7025 : 2026269 : int save_growing_size;
7026 : 2026269 : void *save_growing_value = NULL;
7027 : :
7028 : 2026269 : sf = lookup_spec_function (func);
7029 : 2026269 : if (sf == NULL)
7030 : 0 : fatal_error (input_location, "unknown spec function %qs", func);
7031 : :
7032 : : /* Push the spec processing context. */
7033 : 2026269 : save_argbuf = argbuf;
7034 : :
7035 : 2026269 : save_arg_going = arg_going;
7036 : 2026269 : save_delete_this_arg = delete_this_arg;
7037 : 2026269 : save_this_is_output_file = this_is_output_file;
7038 : 2026269 : save_this_is_library_file = this_is_library_file;
7039 : 2026269 : save_this_is_linker_script = this_is_linker_script;
7040 : 2026269 : save_input_from_pipe = input_from_pipe;
7041 : 2026269 : save_suffix_subst = suffix_subst;
7042 : :
7043 : : /* If we have some object growing now, finalize it so the args and function
7044 : : eval proceed from a cleared context. This is needed to prevent the first
7045 : : constructed arg from mistakenly including the growing value. We'll push
7046 : : this value back on the obstack once the function evaluation is done, to
7047 : : restore a consistent processing context for our caller. This is fine as
7048 : : the address of growing objects isn't guaranteed to remain stable until
7049 : : they are finalized, and we expect this situation to be rare enough for
7050 : : the extra copy not to be an issue. */
7051 : 2026269 : save_growing_size = obstack_object_size (&obstack);
7052 : 2026269 : if (save_growing_size > 0)
7053 : 41806 : save_growing_value = obstack_finish (&obstack);
7054 : :
7055 : : /* Create a new spec processing context, and build the function
7056 : : arguments. */
7057 : :
7058 : 2026269 : alloc_args ();
7059 : 2026269 : if (do_spec_2 (args, soft_matched_part) < 0)
7060 : 0 : fatal_error (input_location, "error in arguments to spec function %qs",
7061 : : func);
7062 : :
7063 : : /* argbuf_index is an index for the next argument to be inserted, and
7064 : : so contains the count of the args already inserted. */
7065 : :
7066 : 6078807 : funcval = (*sf->func) (argbuf.length (),
7067 : : argbuf.address ());
7068 : :
7069 : : /* Pop the spec processing context. */
7070 : 2026269 : argbuf.release ();
7071 : 2026269 : argbuf = save_argbuf;
7072 : :
7073 : 2026269 : arg_going = save_arg_going;
7074 : 2026269 : delete_this_arg = save_delete_this_arg;
7075 : 2026269 : this_is_output_file = save_this_is_output_file;
7076 : 2026269 : this_is_library_file = save_this_is_library_file;
7077 : 2026269 : this_is_linker_script = save_this_is_linker_script;
7078 : 2026269 : input_from_pipe = save_input_from_pipe;
7079 : 2026269 : suffix_subst = save_suffix_subst;
7080 : :
7081 : 2026269 : if (save_growing_size > 0)
7082 : 41806 : obstack_grow (&obstack, save_growing_value, save_growing_size);
7083 : :
7084 : 2026269 : return funcval;
7085 : : }
7086 : :
7087 : : /* Handle a spec function call of the form:
7088 : :
7089 : : %:function(args)
7090 : :
7091 : : ARGS is processed as a spec in a separate context and split into an
7092 : : argument vector in the normal fashion. The function returns a string
7093 : : containing a spec which we then process in the caller's context, or
7094 : : NULL if no processing is required.
7095 : :
7096 : : If RETVAL_NONNULL is not NULL, then store a bool whether function
7097 : : returned non-NULL.
7098 : :
7099 : : SOFT_MATCHED_PART holds the current value of a matched * pattern, which
7100 : : may be re-expanded with a %* as part of the function arguments. */
7101 : :
7102 : : static const char *
7103 : 2026269 : handle_spec_function (const char *p, bool *retval_nonnull,
7104 : : const char *soft_matched_part)
7105 : : {
7106 : 2026269 : char *func, *args;
7107 : 2026269 : const char *endp, *funcval;
7108 : 2026269 : int count;
7109 : :
7110 : 2026269 : processing_spec_function++;
7111 : :
7112 : : /* Get the function name. */
7113 : 18849398 : for (endp = p; *endp != '\0'; endp++)
7114 : : {
7115 : 18849398 : if (*endp == '(') /* ) */
7116 : : break;
7117 : : /* Only allow [A-Za-z0-9], -, and _ in function names. */
7118 : 16823129 : if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
7119 : 0 : fatal_error (input_location, "malformed spec function name");
7120 : : }
7121 : 2026269 : if (*endp != '(') /* ) */
7122 : 0 : fatal_error (input_location, "no arguments for spec function");
7123 : 2026269 : func = save_string (p, endp - p);
7124 : 2026269 : p = ++endp;
7125 : :
7126 : : /* Get the arguments. */
7127 : 24648814 : for (count = 0; *endp != '\0'; endp++)
7128 : : {
7129 : : /* ( */
7130 : 24648814 : if (*endp == ')')
7131 : : {
7132 : 2114565 : if (count == 0)
7133 : : break;
7134 : 88296 : count--;
7135 : : }
7136 : 22534249 : else if (*endp == '(') /* ) */
7137 : 88296 : count++;
7138 : : }
7139 : : /* ( */
7140 : 2026269 : if (*endp != ')')
7141 : 0 : fatal_error (input_location, "malformed spec function arguments");
7142 : 2026269 : args = save_string (p, endp - p);
7143 : 2026269 : p = ++endp;
7144 : :
7145 : : /* p now points to just past the end of the spec function expression. */
7146 : :
7147 : 2026269 : funcval = eval_spec_function (func, args, soft_matched_part);
7148 : 2026269 : if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
7149 : : p = NULL;
7150 : 2026269 : if (retval_nonnull)
7151 : 1599033 : *retval_nonnull = funcval != NULL;
7152 : :
7153 : 2026269 : free (func);
7154 : 2026269 : free (args);
7155 : :
7156 : 2026269 : processing_spec_function--;
7157 : :
7158 : 2026269 : return p;
7159 : : }
7160 : :
7161 : : /* Inline subroutine of handle_braces. Returns true if the current
7162 : : input suffix matches the atom bracketed by ATOM and END_ATOM. */
7163 : : static inline bool
7164 : 0 : input_suffix_matches (const char *atom, const char *end_atom)
7165 : : {
7166 : 0 : return (input_suffix
7167 : 0 : && !strncmp (input_suffix, atom, end_atom - atom)
7168 : 0 : && input_suffix[end_atom - atom] == '\0');
7169 : : }
7170 : :
7171 : : /* Subroutine of handle_braces. Returns true if the current
7172 : : input file's spec name matches the atom bracketed by ATOM and END_ATOM. */
7173 : : static bool
7174 : 0 : input_spec_matches (const char *atom, const char *end_atom)
7175 : : {
7176 : 0 : return (input_file_compiler
7177 : 0 : && input_file_compiler->suffix
7178 : 0 : && input_file_compiler->suffix[0] != '\0'
7179 : 0 : && !strncmp (input_file_compiler->suffix + 1, atom,
7180 : 0 : end_atom - atom)
7181 : 0 : && input_file_compiler->suffix[end_atom - atom + 1] == '\0');
7182 : : }
7183 : :
7184 : : /* Subroutine of handle_braces. Returns true if a switch
7185 : : matching the atom bracketed by ATOM and END_ATOM appeared on the
7186 : : command line. */
7187 : : static bool
7188 : 37118636 : switch_matches (const char *atom, const char *end_atom, int starred)
7189 : : {
7190 : 37118636 : int i;
7191 : 37118636 : int len = end_atom - atom;
7192 : 37118636 : int plen = starred ? len : -1;
7193 : :
7194 : 825807468 : for (i = 0; i < n_switches; i++)
7195 : 790018596 : if (!strncmp (switches[i].part1, atom, len)
7196 : 2246988 : && (starred || switches[i].part1[len] == '\0')
7197 : 791348957 : && check_live_switch (i, plen))
7198 : : return true;
7199 : :
7200 : : /* Check if a switch with separated form matching the atom.
7201 : : We check -D and -U switches. */
7202 : 788688833 : else if (switches[i].args != 0)
7203 : : {
7204 : 192368779 : if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
7205 : 8180228 : && *switches[i].part1 == atom[0])
7206 : : {
7207 : 1 : if (!strncmp (switches[i].args[0], &atom[1], len - 1)
7208 : 1 : && (starred || (switches[i].part1[1] == '\0'
7209 : 1 : && switches[i].args[0][len - 1] == '\0'))
7210 : 2 : && check_live_switch (i, (starred ? 1 : -1)))
7211 : : return true;
7212 : : }
7213 : : }
7214 : :
7215 : : return false;
7216 : : }
7217 : :
7218 : : /* Inline subroutine of handle_braces. Mark all of the switches which
7219 : : match ATOM (extends to END_ATOM; STARRED indicates whether there
7220 : : was a star after the atom) for later processing. */
7221 : : static inline void
7222 : 10908783 : mark_matching_switches (const char *atom, const char *end_atom, int starred)
7223 : : {
7224 : 10908783 : int i;
7225 : 10908783 : int len = end_atom - atom;
7226 : 10908783 : int plen = starred ? len : -1;
7227 : :
7228 : 247013713 : for (i = 0; i < n_switches; i++)
7229 : 236104930 : if (!strncmp (switches[i].part1, atom, len)
7230 : 5840663 : && (starred || switches[i].part1[len] == '\0')
7231 : 241735336 : && check_live_switch (i, plen))
7232 : 5581424 : switches[i].ordering = 1;
7233 : 10908783 : }
7234 : :
7235 : : /* Inline subroutine of handle_braces. Process all the currently
7236 : : marked switches through give_switch, and clear the marks. */
7237 : : static inline void
7238 : 9469368 : process_marked_switches (void)
7239 : : {
7240 : 9469368 : int i;
7241 : :
7242 : 214330579 : for (i = 0; i < n_switches; i++)
7243 : 204861211 : if (switches[i].ordering == 1)
7244 : : {
7245 : 5581424 : switches[i].ordering = 0;
7246 : 5581424 : give_switch (i, 0);
7247 : : }
7248 : 9469368 : }
7249 : :
7250 : : /* Handle a %{ ... } construct. P points just inside the leading {.
7251 : : Returns a pointer one past the end of the brace block, or 0
7252 : : if we call do_spec_1 and that returns -1. */
7253 : :
7254 : : static const char *
7255 : 39448581 : handle_braces (const char *p)
7256 : : {
7257 : 39448581 : const char *atom, *end_atom;
7258 : 39448581 : const char *d_atom = NULL, *d_end_atom = NULL;
7259 : 39448581 : char *esc_buf = NULL, *d_esc_buf = NULL;
7260 : 39448581 : int esc;
7261 : 39448581 : const char *orig = p;
7262 : :
7263 : 39448581 : bool a_is_suffix;
7264 : 39448581 : bool a_is_spectype;
7265 : 39448581 : bool a_is_starred;
7266 : 39448581 : bool a_is_negated;
7267 : 39448581 : bool a_matched;
7268 : :
7269 : 39448581 : bool a_must_be_last = false;
7270 : 39448581 : bool ordered_set = false;
7271 : 39448581 : bool disjunct_set = false;
7272 : 39448581 : bool disj_matched = false;
7273 : 39448581 : bool disj_starred = true;
7274 : 39448581 : bool n_way_choice = false;
7275 : 39448581 : bool n_way_matched = false;
7276 : :
7277 : : #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7278 : :
7279 : 52157812 : do
7280 : : {
7281 : 52157812 : if (a_must_be_last)
7282 : 0 : goto invalid;
7283 : :
7284 : : /* Scan one "atom" (S in the description above of %{}, possibly
7285 : : with '!', '.', '@', ',', or '*' modifiers). */
7286 : 52157812 : a_matched = false;
7287 : 52157812 : a_is_suffix = false;
7288 : 52157812 : a_is_starred = false;
7289 : 52157812 : a_is_negated = false;
7290 : 52157812 : a_is_spectype = false;
7291 : :
7292 : 59538004 : SKIP_WHITE ();
7293 : 52157812 : if (*p == '!')
7294 : 12547901 : p++, a_is_negated = true;
7295 : :
7296 : 52157812 : SKIP_WHITE ();
7297 : 52157812 : if (*p == '%' && p[1] == ':')
7298 : : {
7299 : 1599033 : atom = NULL;
7300 : 1599033 : end_atom = NULL;
7301 : 1599033 : p = handle_spec_function (p + 2, &a_matched, NULL);
7302 : : }
7303 : : else
7304 : : {
7305 : 50558779 : if (*p == '.')
7306 : 0 : p++, a_is_suffix = true;
7307 : 50558779 : else if (*p == ',')
7308 : 0 : p++, a_is_spectype = true;
7309 : :
7310 : 50558779 : atom = p;
7311 : 50558779 : esc = 0;
7312 : 50558779 : while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7313 : 376551200 : || *p == ',' || *p == '.' || *p == '@' || *p == '\\')
7314 : : {
7315 : 325992421 : if (*p == '\\')
7316 : : {
7317 : 0 : p++;
7318 : 0 : if (!*p)
7319 : 0 : fatal_error (input_location,
7320 : : "braced spec %qs ends in escape", orig);
7321 : 0 : esc++;
7322 : : }
7323 : 325992421 : p++;
7324 : : }
7325 : 50558779 : end_atom = p;
7326 : :
7327 : 50558779 : if (esc)
7328 : : {
7329 : 0 : const char *ap;
7330 : 0 : char *ep;
7331 : :
7332 : 0 : if (esc_buf && esc_buf != d_esc_buf)
7333 : 0 : free (esc_buf);
7334 : 0 : esc_buf = NULL;
7335 : 0 : ep = esc_buf = (char *) xmalloc (end_atom - atom - esc + 1);
7336 : 0 : for (ap = atom; ap != end_atom; ap++, ep++)
7337 : : {
7338 : 0 : if (*ap == '\\')
7339 : 0 : ap++;
7340 : 0 : *ep = *ap;
7341 : : }
7342 : 0 : *ep = '\0';
7343 : 0 : atom = esc_buf;
7344 : 0 : end_atom = ep;
7345 : : }
7346 : :
7347 : 50558779 : if (*p == '*')
7348 : 11480362 : p++, a_is_starred = 1;
7349 : : }
7350 : :
7351 : 52157812 : SKIP_WHITE ();
7352 : 52157812 : switch (*p)
7353 : : {
7354 : 10908783 : case '&': case '}':
7355 : : /* Substitute the switch(es) indicated by the current atom. */
7356 : 10908783 : ordered_set = true;
7357 : 10908783 : if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
7358 : 10908783 : || a_is_spectype || atom == end_atom)
7359 : 0 : goto invalid;
7360 : :
7361 : 10908783 : mark_matching_switches (atom, end_atom, a_is_starred);
7362 : :
7363 : 10908783 : if (*p == '}')
7364 : 9469368 : process_marked_switches ();
7365 : : break;
7366 : :
7367 : 41249029 : case '|': case ':':
7368 : : /* Substitute some text if the current atom appears as a switch
7369 : : or suffix. */
7370 : 41249029 : disjunct_set = true;
7371 : 41249029 : if (ordered_set)
7372 : 0 : goto invalid;
7373 : :
7374 : 41249029 : if (atom && atom == end_atom)
7375 : : {
7376 : 1732656 : if (!n_way_choice || disj_matched || *p == '|'
7377 : 1732656 : || a_is_negated || a_is_suffix || a_is_spectype
7378 : 1732656 : || a_is_starred)
7379 : 0 : goto invalid;
7380 : :
7381 : : /* An empty term may appear as the last choice of an
7382 : : N-way choice set; it means "otherwise". */
7383 : 1732656 : a_must_be_last = true;
7384 : 1732656 : disj_matched = !n_way_matched;
7385 : 1732656 : disj_starred = false;
7386 : : }
7387 : : else
7388 : : {
7389 : 39516373 : if ((a_is_suffix || a_is_spectype) && a_is_starred)
7390 : 0 : goto invalid;
7391 : :
7392 : 39516373 : if (!a_is_starred)
7393 : 34096134 : disj_starred = false;
7394 : :
7395 : : /* Don't bother testing this atom if we already have a
7396 : : match. */
7397 : 39516373 : if (!disj_matched && !n_way_matched)
7398 : : {
7399 : 38523302 : if (atom == NULL)
7400 : : /* a_matched is already set by handle_spec_function. */;
7401 : 37024890 : else if (a_is_suffix)
7402 : 0 : a_matched = input_suffix_matches (atom, end_atom);
7403 : 37024890 : else if (a_is_spectype)
7404 : 0 : a_matched = input_spec_matches (atom, end_atom);
7405 : : else
7406 : 37024890 : a_matched = switch_matches (atom, end_atom, a_is_starred);
7407 : :
7408 : 38523302 : if (a_matched != a_is_negated)
7409 : : {
7410 : 12425674 : disj_matched = true;
7411 : 12425674 : d_atom = atom;
7412 : 12425674 : d_end_atom = end_atom;
7413 : 12425674 : d_esc_buf = esc_buf;
7414 : : }
7415 : : }
7416 : : }
7417 : :
7418 : 41249029 : if (*p == ':')
7419 : : {
7420 : : /* Found the body, that is, the text to substitute if the
7421 : : current disjunction matches. */
7422 : 65836914 : p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
7423 : 32918457 : disj_matched && !n_way_matched);
7424 : 32918457 : if (p == 0)
7425 : 36346 : goto done;
7426 : :
7427 : : /* If we have an N-way choice, reset state for the next
7428 : : disjunction. */
7429 : 32882111 : if (*p == ';')
7430 : : {
7431 : 2939244 : n_way_choice = true;
7432 : 2939244 : n_way_matched |= disj_matched;
7433 : 2939244 : disj_matched = false;
7434 : 2939244 : disj_starred = true;
7435 : 2939244 : d_atom = d_end_atom = NULL;
7436 : : }
7437 : : }
7438 : : break;
7439 : :
7440 : 0 : default:
7441 : 0 : goto invalid;
7442 : : }
7443 : : }
7444 : 52121466 : while (*p++ != '}');
7445 : :
7446 : 39412235 : done:
7447 : 39448581 : if (d_esc_buf && d_esc_buf != esc_buf)
7448 : 0 : free (d_esc_buf);
7449 : 39448581 : if (esc_buf)
7450 : 0 : free (esc_buf);
7451 : :
7452 : 39448581 : return p;
7453 : :
7454 : 0 : invalid:
7455 : 0 : fatal_error (input_location, "braced spec %qs is invalid at %qc", orig, *p);
7456 : :
7457 : : #undef SKIP_WHITE
7458 : : }
7459 : :
7460 : : /* Subroutine of handle_braces. Scan and process a brace substitution body
7461 : : (X in the description of %{} syntax). P points one past the colon;
7462 : : ATOM and END_ATOM bracket the first atom which was found to be true
7463 : : (present) in the current disjunction; STARRED indicates whether all
7464 : : the atoms in the current disjunction were starred (for syntax validation);
7465 : : MATCHED indicates whether the disjunction matched or not, and therefore
7466 : : whether or not the body is to be processed through do_spec_1 or just
7467 : : skipped. Returns a pointer to the closing } or ;, or 0 if do_spec_1
7468 : : returns -1. */
7469 : :
7470 : : static const char *
7471 : 32918457 : process_brace_body (const char *p, const char *atom, const char *end_atom,
7472 : : int starred, int matched)
7473 : : {
7474 : 32918457 : const char *body, *end_body;
7475 : 32918457 : unsigned int nesting_level;
7476 : 32918457 : bool have_subst = false;
7477 : :
7478 : : /* Locate the closing } or ;, honoring nested braces.
7479 : : Trim trailing whitespace. */
7480 : 32918457 : body = p;
7481 : 32918457 : nesting_level = 1;
7482 : 11144242189 : for (;;)
7483 : : {
7484 : 5588580323 : if (*p == '{')
7485 : 165827296 : nesting_level++;
7486 : 5422753027 : else if (*p == '}')
7487 : : {
7488 : 195806509 : if (!--nesting_level)
7489 : : break;
7490 : : }
7491 : 5226946518 : else if (*p == ';' && nesting_level == 1)
7492 : : break;
7493 : 5224007274 : else if (*p == '%' && p[1] == '*' && nesting_level == 1)
7494 : : have_subst = true;
7495 : 5223242623 : else if (*p == '\0')
7496 : 0 : goto invalid;
7497 : 5555661866 : p++;
7498 : : }
7499 : :
7500 : : end_body = p;
7501 : 35619416 : while (end_body[-1] == ' ' || end_body[-1] == '\t')
7502 : 2700959 : end_body--;
7503 : :
7504 : 32918457 : if (have_subst && !starred)
7505 : 0 : goto invalid;
7506 : :
7507 : 32918457 : if (matched)
7508 : : {
7509 : : /* Copy the substitution body to permanent storage and execute it.
7510 : : If have_subst is false, this is a simple matter of running the
7511 : : body through do_spec_1... */
7512 : 13361466 : char *string = save_string (body, end_body - body);
7513 : 13361466 : if (!have_subst)
7514 : : {
7515 : 13354758 : if (do_spec_1 (string, 0, NULL) < 0)
7516 : : {
7517 : 36346 : free (string);
7518 : 36346 : return 0;
7519 : : }
7520 : : }
7521 : : else
7522 : : {
7523 : : /* ... but if have_subst is true, we have to process the
7524 : : body once for each matching switch, with %* set to the
7525 : : variant part of the switch. */
7526 : 6708 : unsigned int hard_match_len = end_atom - atom;
7527 : 6708 : int i;
7528 : :
7529 : 266344 : for (i = 0; i < n_switches; i++)
7530 : 259636 : if (!strncmp (switches[i].part1, atom, hard_match_len)
7531 : 259636 : && check_live_switch (i, hard_match_len))
7532 : : {
7533 : 6712 : if (do_spec_1 (string, 0,
7534 : : &switches[i].part1[hard_match_len]) < 0)
7535 : : {
7536 : 0 : free (string);
7537 : 0 : return 0;
7538 : : }
7539 : : /* Pass any arguments this switch has. */
7540 : 6712 : give_switch (i, 1);
7541 : 6712 : suffix_subst = NULL;
7542 : : }
7543 : : }
7544 : 13325120 : free (string);
7545 : : }
7546 : :
7547 : : return p;
7548 : :
7549 : 0 : invalid:
7550 : 0 : fatal_error (input_location, "braced spec body %qs is invalid", body);
7551 : : }
7552 : :
7553 : : /* Return 0 iff switch number SWITCHNUM is obsoleted by a later switch
7554 : : on the command line. PREFIX_LENGTH is the length of XXX in an {XXX*}
7555 : : spec, or -1 if either exact match or %* is used.
7556 : :
7557 : : A -O switch is obsoleted by a later -O switch. A -f, -g, -m, or -W switch
7558 : : whose value does not begin with "no-" is obsoleted by the same value
7559 : : with the "no-", similarly for a switch with the "no-" prefix. */
7560 : :
7561 : : static int
7562 : 6967480 : check_live_switch (int switchnum, int prefix_length)
7563 : : {
7564 : 6967480 : const char *name = switches[switchnum].part1;
7565 : 6967480 : int i;
7566 : :
7567 : : /* If we already processed this switch and determined if it was
7568 : : live or not, return our past determination. */
7569 : 6967480 : if (switches[switchnum].live_cond != 0)
7570 : 921083 : return ((switches[switchnum].live_cond & SWITCH_LIVE) != 0
7571 : : && (switches[switchnum].live_cond & SWITCH_FALSE) == 0
7572 : 921083 : && (switches[switchnum].live_cond & SWITCH_IGNORE_PERMANENTLY)
7573 : 921083 : == 0);
7574 : :
7575 : : /* In the common case of {<at-most-one-letter>*}, a negating
7576 : : switch would always match, so ignore that case. We will just
7577 : : send the conflicting switches to the compiler phase. */
7578 : 6046397 : if (prefix_length >= 0 && prefix_length <= 1)
7579 : : return 1;
7580 : :
7581 : : /* Now search for duplicate in a manner that depends on the name. */
7582 : 844762 : switch (*name)
7583 : : {
7584 : 72 : case 'O':
7585 : 429 : for (i = switchnum + 1; i < n_switches; i++)
7586 : 362 : if (switches[i].part1[0] == 'O')
7587 : : {
7588 : 5 : switches[switchnum].validated = true;
7589 : 5 : switches[switchnum].live_cond = SWITCH_FALSE;
7590 : 5 : return 0;
7591 : : }
7592 : : break;
7593 : :
7594 : 268421 : case 'W': case 'f': case 'm': case 'g':
7595 : 268421 : if (startswith (name + 1, "no-"))
7596 : : {
7597 : : /* We have Xno-YYY, search for XYYY. */
7598 : 33433 : for (i = switchnum + 1; i < n_switches; i++)
7599 : 28149 : if (switches[i].part1[0] == name[0]
7600 : 5387 : && ! strcmp (&switches[i].part1[1], &name[4]))
7601 : : {
7602 : : /* --specs are validated with the validate_switches mechanism. */
7603 : 0 : if (switches[switchnum].known)
7604 : 0 : switches[switchnum].validated = true;
7605 : 0 : switches[switchnum].live_cond = SWITCH_FALSE;
7606 : 0 : return 0;
7607 : : }
7608 : : }
7609 : : else
7610 : : {
7611 : : /* We have XYYY, search for Xno-YYY. */
7612 : 2739502 : for (i = switchnum + 1; i < n_switches; i++)
7613 : 2476365 : if (switches[i].part1[0] == name[0]
7614 : 1486123 : && switches[i].part1[1] == 'n'
7615 : 185193 : && switches[i].part1[2] == 'o'
7616 : 185192 : && switches[i].part1[3] == '-'
7617 : 185162 : && !strcmp (&switches[i].part1[4], &name[1]))
7618 : : {
7619 : : /* --specs are validated with the validate_switches mechanism. */
7620 : 0 : if (switches[switchnum].known)
7621 : 0 : switches[switchnum].validated = true;
7622 : 0 : switches[switchnum].live_cond = SWITCH_FALSE;
7623 : 0 : return 0;
7624 : : }
7625 : : }
7626 : : break;
7627 : : }
7628 : :
7629 : : /* Otherwise the switch is live. */
7630 : 844757 : switches[switchnum].live_cond |= SWITCH_LIVE;
7631 : 844757 : return 1;
7632 : : }
7633 : :
7634 : : /* Pass a switch to the current accumulating command
7635 : : in the same form that we received it.
7636 : : SWITCHNUM identifies the switch; it is an index into
7637 : : the vector of switches gcc received, which is `switches'.
7638 : : This cannot fail since it never finishes a command line.
7639 : :
7640 : : If OMIT_FIRST_WORD is nonzero, then we omit .part1 of the argument. */
7641 : :
7642 : : static void
7643 : 5588136 : give_switch (int switchnum, int omit_first_word)
7644 : : {
7645 : 5588136 : if ((switches[switchnum].live_cond & SWITCH_IGNORE) != 0)
7646 : : return;
7647 : :
7648 : 5588125 : if (!omit_first_word)
7649 : : {
7650 : 5581413 : do_spec_1 ("-", 0, NULL);
7651 : 5581413 : do_spec_1 (switches[switchnum].part1, 1, NULL);
7652 : : }
7653 : :
7654 : 5588125 : if (switches[switchnum].args != 0)
7655 : : {
7656 : : const char **p;
7657 : 2373446 : for (p = switches[switchnum].args; *p; p++)
7658 : : {
7659 : 1186723 : const char *arg = *p;
7660 : :
7661 : 1186723 : do_spec_1 (" ", 0, NULL);
7662 : 1186723 : if (suffix_subst)
7663 : : {
7664 : 5739 : unsigned length = strlen (arg);
7665 : 5739 : int dot = 0;
7666 : :
7667 : 11478 : while (length-- && !IS_DIR_SEPARATOR (arg[length]))
7668 : 11478 : if (arg[length] == '.')
7669 : : {
7670 : 5739 : (CONST_CAST (char *, arg))[length] = 0;
7671 : 5739 : dot = 1;
7672 : 5739 : break;
7673 : : }
7674 : 5739 : do_spec_1 (arg, 1, NULL);
7675 : 5739 : if (dot)
7676 : 5739 : (CONST_CAST (char *, arg))[length] = '.';
7677 : 5739 : do_spec_1 (suffix_subst, 1, NULL);
7678 : : }
7679 : : else
7680 : 1180984 : do_spec_1 (arg, 1, NULL);
7681 : : }
7682 : : }
7683 : :
7684 : 5588125 : do_spec_1 (" ", 0, NULL);
7685 : 5588125 : switches[switchnum].validated = true;
7686 : : }
7687 : :
7688 : : /* Print GCC configuration (e.g. version, thread model, target,
7689 : : configuration_arguments) to a given FILE. */
7690 : :
7691 : : static void
7692 : 1304 : print_configuration (FILE *file)
7693 : : {
7694 : 1304 : int n;
7695 : 1304 : const char *thrmod;
7696 : :
7697 : 1304 : fnotice (file, "Target: %s\n", spec_machine);
7698 : 1304 : fnotice (file, "Configured with: %s\n", configuration_arguments);
7699 : :
7700 : : #ifdef THREAD_MODEL_SPEC
7701 : : /* We could have defined THREAD_MODEL_SPEC to "%*" by default,
7702 : : but there's no point in doing all this processing just to get
7703 : : thread_model back. */
7704 : : obstack_init (&obstack);
7705 : : do_spec_1 (THREAD_MODEL_SPEC, 0, thread_model);
7706 : : obstack_1grow (&obstack, '\0');
7707 : : thrmod = XOBFINISH (&obstack, const char *);
7708 : : #else
7709 : 1304 : thrmod = thread_model;
7710 : : #endif
7711 : :
7712 : 1304 : fnotice (file, "Thread model: %s\n", thrmod);
7713 : 1304 : fnotice (file, "Supported LTO compression algorithms: zlib");
7714 : : #ifdef HAVE_ZSTD_H
7715 : 1304 : fnotice (file, " zstd");
7716 : : #endif
7717 : 1304 : fnotice (file, "\n");
7718 : :
7719 : : /* compiler_version is truncated at the first space when initialized
7720 : : from version string, so truncate version_string at the first space
7721 : : before comparing. */
7722 : 10432 : for (n = 0; version_string[n]; n++)
7723 : 9128 : if (version_string[n] == ' ')
7724 : : break;
7725 : :
7726 : 1304 : if (! strncmp (version_string, compiler_version, n)
7727 : 1304 : && compiler_version[n] == 0)
7728 : 1304 : fnotice (file, "gcc version %s %s\n", version_string,
7729 : : pkgversion_string);
7730 : : else
7731 : 0 : fnotice (file, "gcc driver version %s %sexecuting gcc version %s\n",
7732 : : version_string, pkgversion_string, compiler_version);
7733 : :
7734 : 1304 : }
7735 : :
7736 : : #define RETRY_ICE_ATTEMPTS 3
7737 : :
7738 : : /* Returns true if FILE1 and FILE2 contain equivalent data, 0 otherwise. */
7739 : :
7740 : : static bool
7741 : 0 : files_equal_p (char *file1, char *file2)
7742 : : {
7743 : 0 : struct stat st1, st2;
7744 : 0 : off_t n, len;
7745 : 0 : int fd1, fd2;
7746 : 0 : const int bufsize = 8192;
7747 : 0 : char *buf = XNEWVEC (char, bufsize);
7748 : :
7749 : 0 : fd1 = open (file1, O_RDONLY);
7750 : 0 : fd2 = open (file2, O_RDONLY);
7751 : :
7752 : 0 : if (fd1 < 0 || fd2 < 0)
7753 : 0 : goto error;
7754 : :
7755 : 0 : if (fstat (fd1, &st1) < 0 || fstat (fd2, &st2) < 0)
7756 : 0 : goto error;
7757 : :
7758 : 0 : if (st1.st_size != st2.st_size)
7759 : 0 : goto error;
7760 : :
7761 : 0 : for (n = st1.st_size; n; n -= len)
7762 : : {
7763 : 0 : len = n;
7764 : 0 : if ((int) len > bufsize / 2)
7765 : 0 : len = bufsize / 2;
7766 : :
7767 : 0 : if (read (fd1, buf, len) != (int) len
7768 : 0 : || read (fd2, buf + bufsize / 2, len) != (int) len)
7769 : : {
7770 : 0 : goto error;
7771 : : }
7772 : :
7773 : 0 : if (memcmp (buf, buf + bufsize / 2, len) != 0)
7774 : 0 : goto error;
7775 : : }
7776 : :
7777 : 0 : free (buf);
7778 : 0 : close (fd1);
7779 : 0 : close (fd2);
7780 : :
7781 : 0 : return 1;
7782 : :
7783 : 0 : error:
7784 : 0 : free (buf);
7785 : 0 : close (fd1);
7786 : 0 : close (fd2);
7787 : 0 : return 0;
7788 : : }
7789 : :
7790 : : /* Check that compiler's output doesn't differ across runs.
7791 : : TEMP_STDOUT_FILES and TEMP_STDERR_FILES are arrays of files, containing
7792 : : stdout and stderr for each compiler run. Return true if all of
7793 : : TEMP_STDOUT_FILES and TEMP_STDERR_FILES are equivalent. */
7794 : :
7795 : : static bool
7796 : 0 : check_repro (char **temp_stdout_files, char **temp_stderr_files)
7797 : : {
7798 : 0 : int i;
7799 : 0 : for (i = 0; i < RETRY_ICE_ATTEMPTS - 2; ++i)
7800 : : {
7801 : 0 : if (!files_equal_p (temp_stdout_files[i], temp_stdout_files[i + 1])
7802 : 0 : || !files_equal_p (temp_stderr_files[i], temp_stderr_files[i + 1]))
7803 : : {
7804 : 0 : fnotice (stderr, "The bug is not reproducible, so it is"
7805 : : " likely a hardware or OS problem.\n");
7806 : 0 : break;
7807 : : }
7808 : : }
7809 : 0 : return i == RETRY_ICE_ATTEMPTS - 2;
7810 : : }
7811 : :
7812 : : enum attempt_status {
7813 : : ATTEMPT_STATUS_FAIL_TO_RUN,
7814 : : ATTEMPT_STATUS_SUCCESS,
7815 : : ATTEMPT_STATUS_ICE
7816 : : };
7817 : :
7818 : :
7819 : : /* Run compiler with arguments NEW_ARGV to reproduce the ICE, storing stdout
7820 : : to OUT_TEMP and stderr to ERR_TEMP. If APPEND is TRUE, append to OUT_TEMP
7821 : : and ERR_TEMP instead of truncating. If EMIT_SYSTEM_INFO is TRUE, also write
7822 : : GCC configuration into to ERR_TEMP. Return ATTEMPT_STATUS_FAIL_TO_RUN if
7823 : : compiler failed to run, ATTEMPT_STATUS_ICE if compiled ICE-ed and
7824 : : ATTEMPT_STATUS_SUCCESS otherwise. */
7825 : :
7826 : : static enum attempt_status
7827 : 0 : run_attempt (const char **new_argv, const char *out_temp,
7828 : : const char *err_temp, int emit_system_info, int append)
7829 : : {
7830 : :
7831 : 0 : if (emit_system_info)
7832 : : {
7833 : 0 : FILE *file_out = fopen (err_temp, "a");
7834 : 0 : print_configuration (file_out);
7835 : 0 : fputs ("\n", file_out);
7836 : 0 : fclose (file_out);
7837 : : }
7838 : :
7839 : 0 : int exit_status;
7840 : 0 : const char *errmsg;
7841 : 0 : struct pex_obj *pex;
7842 : 0 : int err;
7843 : 0 : int pex_flags = PEX_USE_PIPES | PEX_LAST;
7844 : 0 : enum attempt_status status = ATTEMPT_STATUS_FAIL_TO_RUN;
7845 : :
7846 : 0 : if (append)
7847 : 0 : pex_flags |= PEX_STDOUT_APPEND | PEX_STDERR_APPEND;
7848 : :
7849 : 0 : pex = pex_init (PEX_USE_PIPES, new_argv[0], NULL);
7850 : 0 : if (!pex)
7851 : : fatal_error (input_location, "%<pex_init%> failed: %m");
7852 : :
7853 : 0 : errmsg = pex_run (pex, pex_flags, new_argv[0],
7854 : 0 : CONST_CAST2 (char *const *, const char **, &new_argv[1]),
7855 : : out_temp, err_temp, &err);
7856 : 0 : if (errmsg != NULL)
7857 : : {
7858 : 0 : errno = err;
7859 : 0 : fatal_error (input_location,
7860 : : err ? G_ ("cannot execute %qs: %s: %m")
7861 : : : G_ ("cannot execute %qs: %s"),
7862 : : new_argv[0], errmsg);
7863 : : }
7864 : :
7865 : 0 : if (!pex_get_status (pex, 1, &exit_status))
7866 : 0 : goto out;
7867 : :
7868 : 0 : switch (WEXITSTATUS (exit_status))
7869 : : {
7870 : : case ICE_EXIT_CODE:
7871 : 0 : status = ATTEMPT_STATUS_ICE;
7872 : : break;
7873 : :
7874 : 0 : case SUCCESS_EXIT_CODE:
7875 : 0 : status = ATTEMPT_STATUS_SUCCESS;
7876 : 0 : break;
7877 : :
7878 : 0 : default:
7879 : 0 : ;
7880 : : }
7881 : :
7882 : 0 : out:
7883 : 0 : pex_free (pex);
7884 : 0 : return status;
7885 : : }
7886 : :
7887 : : /* This routine reads lines from IN file, adds C++ style comments
7888 : : at the begining of each line and writes result into OUT. */
7889 : :
7890 : : static void
7891 : 0 : insert_comments (const char *file_in, const char *file_out)
7892 : : {
7893 : 0 : FILE *in = fopen (file_in, "rb");
7894 : 0 : FILE *out = fopen (file_out, "wb");
7895 : 0 : char line[256];
7896 : :
7897 : 0 : bool add_comment = true;
7898 : 0 : while (fgets (line, sizeof (line), in))
7899 : : {
7900 : 0 : if (add_comment)
7901 : 0 : fputs ("// ", out);
7902 : 0 : fputs (line, out);
7903 : 0 : add_comment = strchr (line, '\n') != NULL;
7904 : : }
7905 : :
7906 : 0 : fclose (in);
7907 : 0 : fclose (out);
7908 : 0 : }
7909 : :
7910 : : /* This routine adds preprocessed source code into the given ERR_FILE.
7911 : : To do this, it adds "-E" to NEW_ARGV and execute RUN_ATTEMPT routine to
7912 : : add information in report file. RUN_ATTEMPT should return
7913 : : ATTEMPT_STATUS_SUCCESS, in other case we cannot generate the report. */
7914 : :
7915 : : static void
7916 : 0 : do_report_bug (const char **new_argv, const int nargs,
7917 : : char **out_file, char **err_file)
7918 : : {
7919 : 0 : int i, status;
7920 : 0 : int fd = open (*out_file, O_RDWR | O_APPEND);
7921 : 0 : if (fd < 0)
7922 : : return;
7923 : 0 : write (fd, "\n//", 3);
7924 : 0 : for (i = 0; i < nargs; i++)
7925 : : {
7926 : 0 : write (fd, " ", 1);
7927 : 0 : write (fd, new_argv[i], strlen (new_argv[i]));
7928 : : }
7929 : 0 : write (fd, "\n\n", 2);
7930 : 0 : close (fd);
7931 : 0 : new_argv[nargs] = "-E";
7932 : 0 : new_argv[nargs + 1] = NULL;
7933 : :
7934 : 0 : status = run_attempt (new_argv, *out_file, *err_file, 0, 1);
7935 : :
7936 : 0 : if (status == ATTEMPT_STATUS_SUCCESS)
7937 : : {
7938 : 0 : fnotice (stderr, "Preprocessed source stored into %s file,"
7939 : : " please attach this to your bugreport.\n", *out_file);
7940 : : /* Make sure it is not deleted. */
7941 : 0 : free (*out_file);
7942 : 0 : *out_file = NULL;
7943 : : }
7944 : : }
7945 : :
7946 : : /* Try to reproduce ICE. If bug is reproducible, generate report .err file
7947 : : containing GCC configuration, backtrace, compiler's command line options
7948 : : and preprocessed source code. */
7949 : :
7950 : : static void
7951 : 0 : try_generate_repro (const char **argv)
7952 : : {
7953 : 0 : int i, nargs, out_arg = -1, quiet = 0, attempt;
7954 : 0 : const char **new_argv;
7955 : 0 : char *temp_files[RETRY_ICE_ATTEMPTS * 2];
7956 : 0 : char **temp_stdout_files = &temp_files[0];
7957 : 0 : char **temp_stderr_files = &temp_files[RETRY_ICE_ATTEMPTS];
7958 : :
7959 : 0 : if (gcc_input_filename == NULL || ! strcmp (gcc_input_filename, "-"))
7960 : 0 : return;
7961 : :
7962 : 0 : for (nargs = 0; argv[nargs] != NULL; ++nargs)
7963 : : /* Only retry compiler ICEs, not preprocessor ones. */
7964 : 0 : if (! strcmp (argv[nargs], "-E"))
7965 : : return;
7966 : 0 : else if (argv[nargs][0] == '-' && argv[nargs][1] == 'o')
7967 : : {
7968 : 0 : if (out_arg == -1)
7969 : : out_arg = nargs;
7970 : : else
7971 : : return;
7972 : : }
7973 : : /* If the compiler is going to output any time information,
7974 : : it might varry between invocations. */
7975 : 0 : else if (! strcmp (argv[nargs], "-quiet"))
7976 : : quiet = 1;
7977 : 0 : else if (! strcmp (argv[nargs], "-ftime-report"))
7978 : : return;
7979 : :
7980 : 0 : if (out_arg == -1 || !quiet)
7981 : : return;
7982 : :
7983 : 0 : memset (temp_files, '\0', sizeof (temp_files));
7984 : 0 : new_argv = XALLOCAVEC (const char *, nargs + 4);
7985 : 0 : memcpy (new_argv, argv, (nargs + 1) * sizeof (const char *));
7986 : 0 : new_argv[nargs++] = "-frandom-seed=0";
7987 : 0 : new_argv[nargs++] = "-fdump-noaddr";
7988 : 0 : new_argv[nargs] = NULL;
7989 : 0 : if (new_argv[out_arg][2] == '\0')
7990 : 0 : new_argv[out_arg + 1] = "-";
7991 : : else
7992 : 0 : new_argv[out_arg] = "-o-";
7993 : :
7994 : : int status;
7995 : 0 : for (attempt = 0; attempt < RETRY_ICE_ATTEMPTS; ++attempt)
7996 : : {
7997 : 0 : int emit_system_info = 0;
7998 : 0 : int append = 0;
7999 : 0 : temp_stdout_files[attempt] = make_temp_file (".out");
8000 : 0 : temp_stderr_files[attempt] = make_temp_file (".err");
8001 : :
8002 : 0 : if (attempt == RETRY_ICE_ATTEMPTS - 1)
8003 : : {
8004 : 0 : append = 1;
8005 : 0 : emit_system_info = 1;
8006 : : }
8007 : :
8008 : 0 : status = run_attempt (new_argv, temp_stdout_files[attempt],
8009 : : temp_stderr_files[attempt], emit_system_info,
8010 : : append);
8011 : :
8012 : 0 : if (status != ATTEMPT_STATUS_ICE)
8013 : : {
8014 : 0 : fnotice (stderr, "The bug is not reproducible, so it is"
8015 : : " likely a hardware or OS problem.\n");
8016 : 0 : goto out;
8017 : : }
8018 : : }
8019 : :
8020 : 0 : if (!check_repro (temp_stdout_files, temp_stderr_files))
8021 : 0 : goto out;
8022 : :
8023 : 0 : {
8024 : : /* Insert commented out backtrace into report file. */
8025 : 0 : char **stderr_commented = &temp_stdout_files[RETRY_ICE_ATTEMPTS - 1];
8026 : 0 : insert_comments (temp_stderr_files[RETRY_ICE_ATTEMPTS - 1],
8027 : : *stderr_commented);
8028 : :
8029 : : /* In final attempt we append compiler options and preprocesssed code to last
8030 : : generated .out file with configuration and backtrace. */
8031 : 0 : char **err = &temp_stderr_files[RETRY_ICE_ATTEMPTS - 1];
8032 : 0 : do_report_bug (new_argv, nargs, stderr_commented, err);
8033 : : }
8034 : :
8035 : : out:
8036 : 0 : for (i = 0; i < RETRY_ICE_ATTEMPTS * 2; i++)
8037 : 0 : if (temp_files[i])
8038 : : {
8039 : 0 : unlink (temp_stdout_files[i]);
8040 : 0 : free (temp_stdout_files[i]);
8041 : : }
8042 : : }
8043 : :
8044 : : /* Search for a file named NAME trying various prefixes including the
8045 : : user's -B prefix and some standard ones.
8046 : : Return the absolute file name found. If nothing is found, return NAME. */
8047 : :
8048 : : static const char *
8049 : 534192 : find_file (const char *name)
8050 : : {
8051 : 534192 : char *newname = find_a_file (&startfile_prefixes, name, R_OK, true);
8052 : 534192 : return newname ? newname : name;
8053 : : }
8054 : :
8055 : : /* Determine whether a directory exists. */
8056 : :
8057 : : static int
8058 : 10208984 : is_directory (const char *path1)
8059 : : {
8060 : 10208984 : int len1;
8061 : 10208984 : char *path;
8062 : 10208984 : char *cp;
8063 : 10208984 : struct stat st;
8064 : :
8065 : : /* Ensure the string ends with "/.". The resulting path will be a
8066 : : directory even if the given path is a symbolic link. */
8067 : 10208984 : len1 = strlen (path1);
8068 : 10208984 : path = (char *) alloca (3 + len1);
8069 : 10208984 : memcpy (path, path1, len1);
8070 : 10208984 : cp = path + len1;
8071 : 10208984 : if (!IS_DIR_SEPARATOR (cp[-1]))
8072 : 1459720 : *cp++ = DIR_SEPARATOR;
8073 : 10208984 : *cp++ = '.';
8074 : 10208984 : *cp = '\0';
8075 : :
8076 : 10208984 : return (stat (path, &st) >= 0 && S_ISDIR (st.st_mode));
8077 : : }
8078 : :
8079 : : /* Set up the various global variables to indicate that we're processing
8080 : : the input file named FILENAME. */
8081 : :
8082 : : void
8083 : 811535 : set_input (const char *filename)
8084 : : {
8085 : 811535 : const char *p;
8086 : :
8087 : 811535 : gcc_input_filename = filename;
8088 : 811535 : input_filename_length = strlen (gcc_input_filename);
8089 : 811535 : input_basename = lbasename (gcc_input_filename);
8090 : :
8091 : : /* Find a suffix starting with the last period,
8092 : : and set basename_length to exclude that suffix. */
8093 : 811535 : basename_length = strlen (input_basename);
8094 : 811535 : suffixed_basename_length = basename_length;
8095 : 811535 : p = input_basename + basename_length;
8096 : 3558997 : while (p != input_basename && *p != '.')
8097 : 2747462 : --p;
8098 : 811535 : if (*p == '.' && p != input_basename)
8099 : : {
8100 : 582006 : basename_length = p - input_basename;
8101 : 582006 : input_suffix = p + 1;
8102 : : }
8103 : : else
8104 : 229529 : input_suffix = "";
8105 : :
8106 : : /* If a spec for 'g', 'u', or 'U' is seen with -save-temps then
8107 : : we will need to do a stat on the gcc_input_filename. The
8108 : : INPUT_STAT_SET signals that the stat is needed. */
8109 : 811535 : input_stat_set = 0;
8110 : 811535 : }
8111 : :
8112 : : /* On fatal signals, delete all the temporary files. */
8113 : :
8114 : : static void
8115 : 0 : fatal_signal (int signum)
8116 : : {
8117 : 0 : signal (signum, SIG_DFL);
8118 : 0 : delete_failure_queue ();
8119 : 0 : delete_temp_files ();
8120 : : /* Get the same signal again, this time not handled,
8121 : : so its normal effect occurs. */
8122 : 0 : kill (getpid (), signum);
8123 : 0 : }
8124 : :
8125 : : /* Compare the contents of the two files named CMPFILE[0] and
8126 : : CMPFILE[1]. Return zero if they're identical, nonzero
8127 : : otherwise. */
8128 : :
8129 : : static int
8130 : 593 : compare_files (char *cmpfile[])
8131 : : {
8132 : 593 : int ret = 0;
8133 : 593 : FILE *temp[2] = { NULL, NULL };
8134 : 593 : int i;
8135 : :
8136 : : #if HAVE_MMAP_FILE
8137 : 593 : {
8138 : 593 : size_t length[2];
8139 : 593 : void *map[2] = { NULL, NULL };
8140 : :
8141 : 1779 : for (i = 0; i < 2; i++)
8142 : : {
8143 : 1186 : struct stat st;
8144 : :
8145 : 1186 : if (stat (cmpfile[i], &st) < 0 || !S_ISREG (st.st_mode))
8146 : : {
8147 : 0 : error ("%s: could not determine length of compare-debug file %s",
8148 : : gcc_input_filename, cmpfile[i]);
8149 : 0 : ret = 1;
8150 : 0 : break;
8151 : : }
8152 : :
8153 : 1186 : length[i] = st.st_size;
8154 : : }
8155 : :
8156 : 593 : if (!ret && length[0] != length[1])
8157 : : {
8158 : 17 : error ("%s: %<-fcompare-debug%> failure (length)", gcc_input_filename);
8159 : 17 : ret = 1;
8160 : : }
8161 : :
8162 : 17 : if (!ret)
8163 : 1670 : for (i = 0; i < 2; i++)
8164 : : {
8165 : 1123 : int fd = open (cmpfile[i], O_RDONLY);
8166 : 1123 : if (fd < 0)
8167 : : {
8168 : 0 : error ("%s: could not open compare-debug file %s",
8169 : : gcc_input_filename, cmpfile[i]);
8170 : 0 : ret = 1;
8171 : 0 : break;
8172 : : }
8173 : :
8174 : 1123 : map[i] = mmap (NULL, length[i], PROT_READ, MAP_PRIVATE, fd, 0);
8175 : 1123 : close (fd);
8176 : :
8177 : 1123 : if (map[i] == (void *) MAP_FAILED)
8178 : : {
8179 : : ret = -1;
8180 : : break;
8181 : : }
8182 : : }
8183 : :
8184 : 576 : if (!ret)
8185 : : {
8186 : 547 : if (memcmp (map[0], map[1], length[0]) != 0)
8187 : : {
8188 : 0 : error ("%s: %<-fcompare-debug%> failure", gcc_input_filename);
8189 : 0 : ret = 1;
8190 : : }
8191 : : }
8192 : :
8193 : 1779 : for (i = 0; i < 2; i++)
8194 : 1186 : if (map[i])
8195 : 1123 : munmap ((caddr_t) map[i], length[i]);
8196 : :
8197 : 593 : if (ret >= 0)
8198 : 564 : return ret;
8199 : :
8200 : 29 : ret = 0;
8201 : : }
8202 : : #endif
8203 : :
8204 : 87 : for (i = 0; i < 2; i++)
8205 : : {
8206 : 58 : temp[i] = fopen (cmpfile[i], "r");
8207 : 58 : if (!temp[i])
8208 : : {
8209 : 0 : error ("%s: could not open compare-debug file %s",
8210 : : gcc_input_filename, cmpfile[i]);
8211 : 0 : ret = 1;
8212 : 0 : break;
8213 : : }
8214 : : }
8215 : :
8216 : 29 : if (!ret && temp[0] && temp[1])
8217 : 29 : for (;;)
8218 : : {
8219 : 29 : int c0, c1;
8220 : 29 : c0 = fgetc (temp[0]);
8221 : 29 : c1 = fgetc (temp[1]);
8222 : :
8223 : 29 : if (c0 != c1)
8224 : : {
8225 : 0 : error ("%s: %<-fcompare-debug%> failure",
8226 : : gcc_input_filename);
8227 : 0 : ret = 1;
8228 : 0 : break;
8229 : : }
8230 : :
8231 : 29 : if (c0 == EOF)
8232 : : break;
8233 : : }
8234 : :
8235 : 87 : for (i = 1; i >= 0; i--)
8236 : : {
8237 : 58 : if (temp[i])
8238 : 58 : fclose (temp[i]);
8239 : : }
8240 : :
8241 : : return ret;
8242 : : }
8243 : :
8244 : 290894 : driver::driver (bool can_finalize, bool debug) :
8245 : 290894 : explicit_link_files (NULL),
8246 : 290894 : decoded_options (NULL)
8247 : : {
8248 : 290894 : env.init (can_finalize, debug);
8249 : 290894 : }
8250 : :
8251 : 290412 : driver::~driver ()
8252 : : {
8253 : 290412 : XDELETEVEC (explicit_link_files);
8254 : 290412 : XDELETEVEC (decoded_options);
8255 : 290412 : }
8256 : :
8257 : : /* driver::main is implemented as a series of driver:: method calls. */
8258 : :
8259 : : int
8260 : 290894 : driver::main (int argc, char **argv)
8261 : : {
8262 : 290894 : bool early_exit;
8263 : :
8264 : 290894 : set_progname (argv[0]);
8265 : 290894 : expand_at_files (&argc, &argv);
8266 : 290894 : decode_argv (argc, const_cast <const char **> (argv));
8267 : 290894 : global_initializations ();
8268 : 290894 : build_multilib_strings ();
8269 : 290894 : set_up_specs ();
8270 : 290607 : putenv_COLLECT_AS_OPTIONS (assembler_options);
8271 : 290607 : putenv_COLLECT_GCC (argv[0]);
8272 : 290607 : maybe_putenv_COLLECT_LTO_WRAPPER ();
8273 : 290607 : maybe_putenv_OFFLOAD_TARGETS ();
8274 : 290607 : handle_unrecognized_options ();
8275 : :
8276 : 290607 : if (completion)
8277 : : {
8278 : 5 : m_option_proposer.suggest_completion (completion);
8279 : 5 : return 0;
8280 : : }
8281 : :
8282 : 290602 : if (!maybe_print_and_exit ())
8283 : : return 0;
8284 : :
8285 : 276677 : early_exit = prepare_infiles ();
8286 : 276483 : if (early_exit)
8287 : 428 : return get_exit_code ();
8288 : :
8289 : 276055 : do_spec_on_infiles ();
8290 : 276055 : maybe_run_linker (argv[0]);
8291 : 276055 : final_actions ();
8292 : 276055 : return get_exit_code ();
8293 : : }
8294 : :
8295 : : /* Locate the final component of argv[0] after any leading path, and set
8296 : : the program name accordingly. */
8297 : :
8298 : : void
8299 : 290894 : driver::set_progname (const char *argv0) const
8300 : : {
8301 : 290894 : const char *p = argv0 + strlen (argv0);
8302 : 1608550 : while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
8303 : 1317656 : --p;
8304 : 290894 : progname = p;
8305 : :
8306 : 290894 : xmalloc_set_program_name (progname);
8307 : 290894 : }
8308 : :
8309 : : /* Expand any @ files within the command-line args,
8310 : : setting at_file_supplied if any were expanded. */
8311 : :
8312 : : void
8313 : 290894 : driver::expand_at_files (int *argc, char ***argv) const
8314 : : {
8315 : 290894 : char **old_argv = *argv;
8316 : :
8317 : 290894 : expandargv (argc, argv);
8318 : :
8319 : : /* Determine if any expansions were made. */
8320 : 290894 : if (*argv != old_argv)
8321 : 13110 : at_file_supplied = true;
8322 : 290894 : }
8323 : :
8324 : : /* Decode the command-line arguments from argc/argv into the
8325 : : decoded_options array. */
8326 : :
8327 : : void
8328 : 290894 : driver::decode_argv (int argc, const char **argv)
8329 : : {
8330 : 290894 : init_opts_obstack ();
8331 : 290894 : init_options_struct (&global_options, &global_options_set);
8332 : :
8333 : 290894 : decode_cmdline_options_to_array (argc, argv,
8334 : : CL_DRIVER,
8335 : : &decoded_options, &decoded_options_count);
8336 : 290894 : }
8337 : :
8338 : : /* Perform various initializations and setup. */
8339 : :
8340 : : void
8341 : 290894 : driver::global_initializations ()
8342 : : {
8343 : : /* Unlock the stdio streams. */
8344 : 290894 : unlock_std_streams ();
8345 : :
8346 : 290894 : gcc_init_libintl ();
8347 : :
8348 : 290894 : diagnostic_initialize (global_dc, 0);
8349 : 290894 : diagnostic_color_init (global_dc);
8350 : 290894 : diagnostic_urls_init (global_dc);
8351 : 290894 : global_dc->set_urlifier (make_gcc_urlifier (0));
8352 : :
8353 : : #ifdef GCC_DRIVER_HOST_INITIALIZATION
8354 : : /* Perform host dependent initialization when needed. */
8355 : : GCC_DRIVER_HOST_INITIALIZATION;
8356 : : #endif
8357 : :
8358 : 290894 : if (atexit (delete_temp_files) != 0)
8359 : 0 : fatal_error (input_location, "atexit failed");
8360 : :
8361 : 290894 : if (signal (SIGINT, SIG_IGN) != SIG_IGN)
8362 : 290743 : signal (SIGINT, fatal_signal);
8363 : : #ifdef SIGHUP
8364 : 290894 : if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
8365 : 20970 : signal (SIGHUP, fatal_signal);
8366 : : #endif
8367 : 290894 : if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
8368 : 290894 : signal (SIGTERM, fatal_signal);
8369 : : #ifdef SIGPIPE
8370 : 290894 : if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
8371 : 290894 : signal (SIGPIPE, fatal_signal);
8372 : : #endif
8373 : : #ifdef SIGCHLD
8374 : : /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
8375 : : receive the signal. A different setting is inheritable */
8376 : 290894 : signal (SIGCHLD, SIG_DFL);
8377 : : #endif
8378 : :
8379 : : /* Parsing and gimplification sometimes need quite large stack.
8380 : : Increase stack size limits if possible. */
8381 : 290894 : stack_limit_increase (64 * 1024 * 1024);
8382 : :
8383 : : /* Allocate the argument vector. */
8384 : 290894 : alloc_args ();
8385 : :
8386 : 290894 : obstack_init (&obstack);
8387 : 290894 : }
8388 : :
8389 : : /* Build multilib_select, et. al from the separate lines that make up each
8390 : : multilib selection. */
8391 : :
8392 : : void
8393 : 290894 : driver::build_multilib_strings () const
8394 : : {
8395 : 290894 : {
8396 : 290894 : const char *p;
8397 : 290894 : const char *const *q = multilib_raw;
8398 : 290894 : int need_space;
8399 : :
8400 : 290894 : obstack_init (&multilib_obstack);
8401 : 290894 : while ((p = *q++) != (char *) 0)
8402 : 1163576 : obstack_grow (&multilib_obstack, p, strlen (p));
8403 : :
8404 : 290894 : obstack_1grow (&multilib_obstack, 0);
8405 : 290894 : multilib_select = XOBFINISH (&multilib_obstack, const char *);
8406 : :
8407 : 290894 : q = multilib_matches_raw;
8408 : 290894 : while ((p = *q++) != (char *) 0)
8409 : 872682 : obstack_grow (&multilib_obstack, p, strlen (p));
8410 : :
8411 : 290894 : obstack_1grow (&multilib_obstack, 0);
8412 : 290894 : multilib_matches = XOBFINISH (&multilib_obstack, const char *);
8413 : :
8414 : 290894 : q = multilib_exclusions_raw;
8415 : 290894 : while ((p = *q++) != (char *) 0)
8416 : 290894 : obstack_grow (&multilib_obstack, p, strlen (p));
8417 : :
8418 : 290894 : obstack_1grow (&multilib_obstack, 0);
8419 : 290894 : multilib_exclusions = XOBFINISH (&multilib_obstack, const char *);
8420 : :
8421 : 290894 : q = multilib_reuse_raw;
8422 : 290894 : while ((p = *q++) != (char *) 0)
8423 : 290894 : obstack_grow (&multilib_obstack, p, strlen (p));
8424 : :
8425 : 290894 : obstack_1grow (&multilib_obstack, 0);
8426 : 290894 : multilib_reuse = XOBFINISH (&multilib_obstack, const char *);
8427 : :
8428 : 290894 : need_space = false;
8429 : 581788 : for (size_t i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
8430 : : {
8431 : 290894 : if (need_space)
8432 : 0 : obstack_1grow (&multilib_obstack, ' ');
8433 : 290894 : obstack_grow (&multilib_obstack,
8434 : : multilib_defaults_raw[i],
8435 : : strlen (multilib_defaults_raw[i]));
8436 : 290894 : need_space = true;
8437 : : }
8438 : :
8439 : 290894 : obstack_1grow (&multilib_obstack, 0);
8440 : 290894 : multilib_defaults = XOBFINISH (&multilib_obstack, const char *);
8441 : : }
8442 : 290894 : }
8443 : :
8444 : : /* Set up the spec-handling machinery. */
8445 : :
8446 : : void
8447 : 290894 : driver::set_up_specs () const
8448 : : {
8449 : 290894 : const char *spec_machine_suffix;
8450 : 290894 : char *specs_file;
8451 : 290894 : size_t i;
8452 : :
8453 : : #ifdef INIT_ENVIRONMENT
8454 : : /* Set up any other necessary machine specific environment variables. */
8455 : : xputenv (INIT_ENVIRONMENT);
8456 : : #endif
8457 : :
8458 : : /* Make a table of what switches there are (switches, n_switches).
8459 : : Make a table of specified input files (infiles, n_infiles).
8460 : : Decode switches that are handled locally. */
8461 : :
8462 : 290894 : process_command (decoded_options_count, decoded_options);
8463 : :
8464 : : /* Initialize the vector of specs to just the default.
8465 : : This means one element containing 0s, as a terminator. */
8466 : :
8467 : 290608 : compilers = XNEWVAR (struct compiler, sizeof default_compilers);
8468 : 290608 : memcpy (compilers, default_compilers, sizeof default_compilers);
8469 : 290608 : n_compilers = n_default_compilers;
8470 : :
8471 : : /* Read specs from a file if there is one. */
8472 : :
8473 : 290608 : machine_suffix = concat (spec_host_machine, dir_separator_str, spec_version,
8474 : : accel_dir_suffix, dir_separator_str, NULL);
8475 : 290608 : just_machine_suffix = concat (spec_machine, dir_separator_str, NULL);
8476 : :
8477 : 290608 : specs_file = find_a_file (&startfile_prefixes, "specs", R_OK, true);
8478 : : /* Read the specs file unless it is a default one. */
8479 : 290608 : if (specs_file != 0 && strcmp (specs_file, "specs"))
8480 : 289441 : read_specs (specs_file, true, false);
8481 : : else
8482 : 1167 : init_spec ();
8483 : :
8484 : : #ifdef ACCEL_COMPILER
8485 : : spec_machine_suffix = machine_suffix;
8486 : : #else
8487 : 290608 : spec_machine_suffix = just_machine_suffix;
8488 : : #endif
8489 : :
8490 : : /* We need to check standard_exec_prefix/spec_machine_suffix/specs
8491 : : for any override of as, ld and libraries. */
8492 : 290608 : specs_file = (char *) alloca (strlen (standard_exec_prefix)
8493 : : + strlen (spec_machine_suffix) + sizeof ("specs"));
8494 : 290608 : strcpy (specs_file, standard_exec_prefix);
8495 : 290608 : strcat (specs_file, spec_machine_suffix);
8496 : 290608 : strcat (specs_file, "specs");
8497 : 290608 : if (access (specs_file, R_OK) == 0)
8498 : 0 : read_specs (specs_file, true, false);
8499 : :
8500 : : /* Process any configure-time defaults specified for the command line
8501 : : options, via OPTION_DEFAULT_SPECS. */
8502 : 2906080 : for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
8503 : 2615472 : do_option_spec (option_default_specs[i].name,
8504 : 2615472 : option_default_specs[i].spec);
8505 : :
8506 : : /* Process DRIVER_SELF_SPECS, adding any new options to the end
8507 : : of the command line. */
8508 : :
8509 : 2034256 : for (i = 0; i < ARRAY_SIZE (driver_self_specs); i++)
8510 : 1743648 : do_self_spec (driver_self_specs[i]);
8511 : :
8512 : : /* If not cross-compiling, look for executables in the standard
8513 : : places. */
8514 : 290608 : if (*cross_compile == '0')
8515 : : {
8516 : 290608 : if (*md_exec_prefix)
8517 : : {
8518 : 0 : add_prefix (&exec_prefixes, md_exec_prefix, "GCC",
8519 : : PREFIX_PRIORITY_LAST, 0, 0);
8520 : : }
8521 : : }
8522 : :
8523 : : /* Process sysroot_suffix_spec. */
8524 : 290608 : if (*sysroot_suffix_spec != 0
8525 : 0 : && !no_sysroot_suffix
8526 : 290608 : && do_spec_2 (sysroot_suffix_spec, NULL) == 0)
8527 : : {
8528 : 0 : if (argbuf.length () > 1)
8529 : 0 : error ("spec failure: more than one argument to "
8530 : : "%<SYSROOT_SUFFIX_SPEC%>");
8531 : 0 : else if (argbuf.length () == 1)
8532 : 0 : target_sysroot_suffix = xstrdup (argbuf.last ());
8533 : : }
8534 : :
8535 : : #ifdef HAVE_LD_SYSROOT
8536 : : /* Pass the --sysroot option to the linker, if it supports that. If
8537 : : there is a sysroot_suffix_spec, it has already been processed by
8538 : : this point, so target_system_root really is the system root we
8539 : : should be using. */
8540 : 290608 : if (target_system_root)
8541 : : {
8542 : 0 : obstack_grow (&obstack, "%(sysroot_spec) ", strlen ("%(sysroot_spec) "));
8543 : 0 : obstack_grow0 (&obstack, link_spec, strlen (link_spec));
8544 : 0 : set_spec ("link", XOBFINISH (&obstack, const char *), false);
8545 : : }
8546 : : #endif
8547 : :
8548 : : /* Process sysroot_hdrs_suffix_spec. */
8549 : 290608 : if (*sysroot_hdrs_suffix_spec != 0
8550 : 0 : && !no_sysroot_suffix
8551 : 290608 : && do_spec_2 (sysroot_hdrs_suffix_spec, NULL) == 0)
8552 : : {
8553 : 0 : if (argbuf.length () > 1)
8554 : 0 : error ("spec failure: more than one argument "
8555 : : "to %<SYSROOT_HEADERS_SUFFIX_SPEC%>");
8556 : 0 : else if (argbuf.length () == 1)
8557 : 0 : target_sysroot_hdrs_suffix = xstrdup (argbuf.last ());
8558 : : }
8559 : :
8560 : : /* Look for startfiles in the standard places. */
8561 : 290608 : if (*startfile_prefix_spec != 0
8562 : 0 : && do_spec_2 (startfile_prefix_spec, NULL) == 0
8563 : 290608 : && do_spec_1 (" ", 0, NULL) == 0)
8564 : : {
8565 : 0 : for (const char *arg : argbuf)
8566 : 0 : add_sysrooted_prefix (&startfile_prefixes, arg, "BINUTILS",
8567 : : PREFIX_PRIORITY_LAST, 0, 1);
8568 : : }
8569 : : /* We should eventually get rid of all these and stick to
8570 : : startfile_prefix_spec exclusively. */
8571 : 290608 : else if (*cross_compile == '0' || target_system_root)
8572 : : {
8573 : 290608 : if (*md_startfile_prefix)
8574 : 0 : add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix,
8575 : : "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8576 : :
8577 : 290608 : if (*md_startfile_prefix_1)
8578 : 0 : add_sysrooted_prefix (&startfile_prefixes, md_startfile_prefix_1,
8579 : : "GCC", PREFIX_PRIORITY_LAST, 0, 1);
8580 : :
8581 : : /* If standard_startfile_prefix is relative, base it on
8582 : : standard_exec_prefix. This lets us move the installed tree
8583 : : as a unit. If GCC_EXEC_PREFIX is defined, base
8584 : : standard_startfile_prefix on that as well.
8585 : :
8586 : : If the prefix is relative, only search it for native compilers;
8587 : : otherwise we will search a directory containing host libraries. */
8588 : 290608 : if (IS_ABSOLUTE_PATH (standard_startfile_prefix))
8589 : : add_sysrooted_prefix (&startfile_prefixes,
8590 : : standard_startfile_prefix, "BINUTILS",
8591 : : PREFIX_PRIORITY_LAST, 0, 1);
8592 : 290608 : else if (*cross_compile == '0')
8593 : : {
8594 : 290608 : add_prefix (&startfile_prefixes,
8595 : 581216 : concat (gcc_exec_prefix
8596 : : ? gcc_exec_prefix : standard_exec_prefix,
8597 : : machine_suffix,
8598 : : standard_startfile_prefix, NULL),
8599 : : NULL, PREFIX_PRIORITY_LAST, 0, 1);
8600 : : }
8601 : :
8602 : : /* Sysrooted prefixes are relocated because target_system_root is
8603 : : also relocated by gcc_exec_prefix. */
8604 : 290608 : if (*standard_startfile_prefix_1)
8605 : 290608 : add_sysrooted_prefix (&startfile_prefixes,
8606 : : standard_startfile_prefix_1, "BINUTILS",
8607 : : PREFIX_PRIORITY_LAST, 0, 1);
8608 : 290608 : if (*standard_startfile_prefix_2)
8609 : 290608 : add_sysrooted_prefix (&startfile_prefixes,
8610 : : standard_startfile_prefix_2, "BINUTILS",
8611 : : PREFIX_PRIORITY_LAST, 0, 1);
8612 : : }
8613 : :
8614 : : /* Process any user specified specs in the order given on the command
8615 : : line. */
8616 : 290610 : for (struct user_specs *uptr = user_specs_head; uptr; uptr = uptr->next)
8617 : : {
8618 : 3 : char *filename = find_a_file (&startfile_prefixes, uptr->filename,
8619 : : R_OK, true);
8620 : 3 : read_specs (filename ? filename : uptr->filename, false, true);
8621 : : }
8622 : :
8623 : : /* Process any user self specs. */
8624 : 290607 : {
8625 : 290607 : struct spec_list *sl;
8626 : 13658529 : for (sl = specs; sl; sl = sl->next)
8627 : 13367922 : if (sl->name_len == sizeof "self_spec" - 1
8628 : 2034249 : && !strcmp (sl->name, "self_spec"))
8629 : 290607 : do_self_spec (*sl->ptr_spec);
8630 : : }
8631 : :
8632 : 290607 : if (compare_debug)
8633 : : {
8634 : 599 : enum save_temps save;
8635 : :
8636 : 599 : if (!compare_debug_second)
8637 : : {
8638 : 599 : n_switches_debug_check[1] = n_switches;
8639 : 599 : n_switches_alloc_debug_check[1] = n_switches_alloc;
8640 : 599 : switches_debug_check[1] = XDUPVEC (struct switchstr, switches,
8641 : : n_switches_alloc);
8642 : :
8643 : 599 : do_self_spec ("%:compare-debug-self-opt()");
8644 : 599 : n_switches_debug_check[0] = n_switches;
8645 : 599 : n_switches_alloc_debug_check[0] = n_switches_alloc;
8646 : 599 : switches_debug_check[0] = switches;
8647 : :
8648 : 599 : n_switches = n_switches_debug_check[1];
8649 : 599 : n_switches_alloc = n_switches_alloc_debug_check[1];
8650 : 599 : switches = switches_debug_check[1];
8651 : : }
8652 : :
8653 : : /* Avoid crash when computing %j in this early. */
8654 : 599 : save = save_temps_flag;
8655 : 599 : save_temps_flag = SAVE_TEMPS_NONE;
8656 : :
8657 : 599 : compare_debug = -compare_debug;
8658 : 599 : do_self_spec ("%:compare-debug-self-opt()");
8659 : :
8660 : 599 : save_temps_flag = save;
8661 : :
8662 : 599 : if (!compare_debug_second)
8663 : : {
8664 : 599 : n_switches_debug_check[1] = n_switches;
8665 : 599 : n_switches_alloc_debug_check[1] = n_switches_alloc;
8666 : 599 : switches_debug_check[1] = switches;
8667 : 599 : compare_debug = -compare_debug;
8668 : 599 : n_switches = n_switches_debug_check[0];
8669 : 599 : n_switches_alloc = n_switches_debug_check[0];
8670 : 599 : switches = switches_debug_check[0];
8671 : : }
8672 : : }
8673 : :
8674 : :
8675 : : /* If we have a GCC_EXEC_PREFIX envvar, modify it for cpp's sake. */
8676 : 290607 : if (gcc_exec_prefix)
8677 : 290607 : gcc_exec_prefix = concat (gcc_exec_prefix, spec_host_machine,
8678 : : dir_separator_str, spec_version,
8679 : : accel_dir_suffix, dir_separator_str, NULL);
8680 : :
8681 : : /* Now we have the specs.
8682 : : Set the `valid' bits for switches that match anything in any spec. */
8683 : :
8684 : 290607 : validate_all_switches ();
8685 : :
8686 : : /* Now that we have the switches and the specs, set
8687 : : the subdirectory based on the options. */
8688 : 290607 : set_multilib_dir ();
8689 : 290607 : }
8690 : :
8691 : : /* Set up to remember the pathname of gcc and any options
8692 : : needed for collect. We use argv[0] instead of progname because
8693 : : we need the complete pathname. */
8694 : :
8695 : : void
8696 : 290607 : driver::putenv_COLLECT_GCC (const char *argv0) const
8697 : : {
8698 : 290607 : obstack_init (&collect_obstack);
8699 : 290607 : obstack_grow (&collect_obstack, "COLLECT_GCC=", sizeof ("COLLECT_GCC=") - 1);
8700 : 290607 : obstack_grow (&collect_obstack, argv0, strlen (argv0) + 1);
8701 : 290607 : xputenv (XOBFINISH (&collect_obstack, char *));
8702 : 290607 : }
8703 : :
8704 : : /* Set up to remember the pathname of the lto wrapper. */
8705 : :
8706 : : void
8707 : 290607 : driver::maybe_putenv_COLLECT_LTO_WRAPPER () const
8708 : : {
8709 : 290607 : char *lto_wrapper_file;
8710 : :
8711 : 290607 : if (have_c)
8712 : : lto_wrapper_file = NULL;
8713 : : else
8714 : 108049 : lto_wrapper_file = find_a_program ("lto-wrapper");
8715 : 108049 : if (lto_wrapper_file)
8716 : : {
8717 : 211606 : lto_wrapper_file = convert_white_space (lto_wrapper_file);
8718 : 105803 : set_static_spec_owned (<o_wrapper_spec, lto_wrapper_file);
8719 : 105803 : obstack_init (&collect_obstack);
8720 : 105803 : obstack_grow (&collect_obstack, "COLLECT_LTO_WRAPPER=",
8721 : : sizeof ("COLLECT_LTO_WRAPPER=") - 1);
8722 : 105803 : obstack_grow (&collect_obstack, lto_wrapper_spec,
8723 : : strlen (lto_wrapper_spec) + 1);
8724 : 105803 : xputenv (XOBFINISH (&collect_obstack, char *));
8725 : : }
8726 : :
8727 : 290607 : }
8728 : :
8729 : : /* Set up to remember the names of offload targets. */
8730 : :
8731 : : void
8732 : 290607 : driver::maybe_putenv_OFFLOAD_TARGETS () const
8733 : : {
8734 : 290607 : if (offload_targets && offload_targets[0] != '\0')
8735 : : {
8736 : 0 : obstack_grow (&collect_obstack, "OFFLOAD_TARGET_NAMES=",
8737 : : sizeof ("OFFLOAD_TARGET_NAMES=") - 1);
8738 : 0 : obstack_grow (&collect_obstack, offload_targets,
8739 : : strlen (offload_targets) + 1);
8740 : 0 : xputenv (XOBFINISH (&collect_obstack, char *));
8741 : : #if OFFLOAD_DEFAULTED
8742 : : if (offload_targets_default)
8743 : : xputenv ("OFFLOAD_TARGET_DEFAULT=1");
8744 : : #endif
8745 : : }
8746 : :
8747 : 290607 : free (offload_targets);
8748 : 290607 : offload_targets = NULL;
8749 : 290607 : }
8750 : :
8751 : : /* Reject switches that no pass was interested in. */
8752 : :
8753 : : void
8754 : 290607 : driver::handle_unrecognized_options ()
8755 : : {
8756 : 6492720 : for (size_t i = 0; (int) i < n_switches; i++)
8757 : 6202113 : if (! switches[i].validated)
8758 : : {
8759 : 511 : const char *hint = m_option_proposer.suggest_option (switches[i].part1);
8760 : 511 : if (hint)
8761 : 208 : error ("unrecognized command-line option %<-%s%>;"
8762 : : " did you mean %<-%s%>?",
8763 : 208 : switches[i].part1, hint);
8764 : : else
8765 : 303 : error ("unrecognized command-line option %<-%s%>",
8766 : 303 : switches[i].part1);
8767 : : }
8768 : 290607 : }
8769 : :
8770 : : /* Handle the various -print-* options, returning 0 if the driver
8771 : : should exit, or nonzero if the driver should continue. */
8772 : :
8773 : : int
8774 : 290602 : driver::maybe_print_and_exit () const
8775 : : {
8776 : 290602 : if (print_search_dirs)
8777 : : {
8778 : 56 : printf (_("install: %s%s\n"),
8779 : : gcc_exec_prefix ? gcc_exec_prefix : standard_exec_prefix,
8780 : 28 : gcc_exec_prefix ? "" : machine_suffix);
8781 : 28 : printf (_("programs: %s\n"),
8782 : : build_search_list (&exec_prefixes, "", false, false));
8783 : 28 : printf (_("libraries: %s\n"),
8784 : : build_search_list (&startfile_prefixes, "", false, true));
8785 : 28 : return (0);
8786 : : }
8787 : :
8788 : 290574 : if (print_file_name)
8789 : : {
8790 : 4206 : printf ("%s\n", find_file (print_file_name));
8791 : 4206 : return (0);
8792 : : }
8793 : :
8794 : 286368 : if (print_prog_name)
8795 : : {
8796 : 106 : if (use_ld != NULL && ! strcmp (print_prog_name, "ld"))
8797 : : {
8798 : : /* Append USE_LD to the default linker. */
8799 : : #ifdef DEFAULT_LINKER
8800 : : char *ld;
8801 : : # ifdef HAVE_HOST_EXECUTABLE_SUFFIX
8802 : : int len = (sizeof (DEFAULT_LINKER)
8803 : : - sizeof (HOST_EXECUTABLE_SUFFIX));
8804 : : ld = NULL;
8805 : : if (len > 0)
8806 : : {
8807 : : char *default_linker = xstrdup (DEFAULT_LINKER);
8808 : : /* Strip HOST_EXECUTABLE_SUFFIX if DEFAULT_LINKER contains
8809 : : HOST_EXECUTABLE_SUFFIX. */
8810 : : if (! strcmp (&default_linker[len], HOST_EXECUTABLE_SUFFIX))
8811 : : {
8812 : : default_linker[len] = '\0';
8813 : : ld = concat (default_linker, use_ld,
8814 : : HOST_EXECUTABLE_SUFFIX, NULL);
8815 : : }
8816 : : }
8817 : : if (ld == NULL)
8818 : : # endif
8819 : : ld = concat (DEFAULT_LINKER, use_ld, NULL);
8820 : : if (access (ld, X_OK) == 0)
8821 : : {
8822 : : printf ("%s\n", ld);
8823 : : return (0);
8824 : : }
8825 : : #endif
8826 : 0 : print_prog_name = concat (print_prog_name, use_ld, NULL);
8827 : : }
8828 : 106 : char *newname = find_a_program (print_prog_name);
8829 : 106 : printf ("%s\n", (newname ? newname : print_prog_name));
8830 : 106 : return (0);
8831 : : }
8832 : :
8833 : 286262 : if (print_multi_lib)
8834 : : {
8835 : 4715 : print_multilib_info ();
8836 : 4715 : return (0);
8837 : : }
8838 : :
8839 : 281547 : if (print_multi_directory)
8840 : : {
8841 : 4127 : if (multilib_dir == NULL)
8842 : 4102 : printf (".\n");
8843 : : else
8844 : 25 : printf ("%s\n", multilib_dir);
8845 : 4127 : return (0);
8846 : : }
8847 : :
8848 : 277420 : if (print_multiarch)
8849 : : {
8850 : 0 : if (multiarch_dir == NULL)
8851 : 0 : printf ("\n");
8852 : : else
8853 : 0 : printf ("%s\n", multiarch_dir);
8854 : 0 : return (0);
8855 : : }
8856 : :
8857 : 277420 : if (print_sysroot)
8858 : : {
8859 : 0 : if (target_system_root)
8860 : : {
8861 : 0 : if (target_sysroot_suffix)
8862 : 0 : printf ("%s%s\n", target_system_root, target_sysroot_suffix);
8863 : : else
8864 : 0 : printf ("%s\n", target_system_root);
8865 : : }
8866 : 0 : return (0);
8867 : : }
8868 : :
8869 : 277420 : if (print_multi_os_directory)
8870 : : {
8871 : 149 : if (multilib_os_dir == NULL)
8872 : 0 : printf (".\n");
8873 : : else
8874 : 149 : printf ("%s\n", multilib_os_dir);
8875 : 149 : return (0);
8876 : : }
8877 : :
8878 : 277271 : if (print_sysroot_headers_suffix)
8879 : : {
8880 : 1 : if (*sysroot_hdrs_suffix_spec)
8881 : : {
8882 : 0 : printf("%s\n", (target_sysroot_hdrs_suffix
8883 : : ? target_sysroot_hdrs_suffix
8884 : : : ""));
8885 : 0 : return (0);
8886 : : }
8887 : : else
8888 : : /* The error status indicates that only one set of fixed
8889 : : headers should be built. */
8890 : 1 : fatal_error (input_location,
8891 : : "not configured with sysroot headers suffix");
8892 : : }
8893 : :
8894 : 277270 : if (print_help_list)
8895 : : {
8896 : 4 : display_help ();
8897 : :
8898 : 4 : if (! verbose_flag)
8899 : : {
8900 : 1 : printf (_("\nFor bug reporting instructions, please see:\n"));
8901 : 1 : printf ("%s.\n", bug_report_url);
8902 : :
8903 : 1 : return (0);
8904 : : }
8905 : :
8906 : : /* We do not exit here. Instead we have created a fake input file
8907 : : called 'help-dummy' which needs to be compiled, and we pass this
8908 : : on the various sub-processes, along with the --help switch.
8909 : : Ensure their output appears after ours. */
8910 : 3 : fputc ('\n', stdout);
8911 : 3 : fflush (stdout);
8912 : : }
8913 : :
8914 : 277269 : if (print_version)
8915 : : {
8916 : 78 : printf (_("%s %s%s\n"), progname, pkgversion_string,
8917 : : version_string);
8918 : 78 : printf ("Copyright %s 2024 Free Software Foundation, Inc.\n",
8919 : : _("(C)"));
8920 : 78 : fputs (_("This is free software; see the source for copying conditions. There is NO\n\
8921 : : warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
8922 : : stdout);
8923 : 78 : if (! verbose_flag)
8924 : : return 0;
8925 : :
8926 : : /* We do not exit here. We use the same mechanism of --help to print
8927 : : the version of the sub-processes. */
8928 : 0 : fputc ('\n', stdout);
8929 : 0 : fflush (stdout);
8930 : : }
8931 : :
8932 : 277191 : if (verbose_flag)
8933 : : {
8934 : 1304 : print_configuration (stderr);
8935 : 1304 : if (n_infiles == 0)
8936 : : return (0);
8937 : : }
8938 : :
8939 : : return 1;
8940 : : }
8941 : :
8942 : : /* Figure out what to do with each input file.
8943 : : Return true if we need to exit early from "main", false otherwise. */
8944 : :
8945 : : bool
8946 : 276677 : driver::prepare_infiles ()
8947 : : {
8948 : 276677 : size_t i;
8949 : 276677 : int lang_n_infiles = 0;
8950 : :
8951 : 276677 : if (n_infiles == added_libraries)
8952 : 194 : fatal_error (input_location, "no input files");
8953 : :
8954 : 276483 : if (seen_error ())
8955 : : /* Early exit needed from main. */
8956 : : return true;
8957 : :
8958 : : /* Make a place to record the compiler output file names
8959 : : that correspond to the input files. */
8960 : :
8961 : 276055 : i = n_infiles;
8962 : 276055 : i += lang_specific_extra_outfiles;
8963 : 276055 : outfiles = XCNEWVEC (const char *, i);
8964 : :
8965 : : /* Record which files were specified explicitly as link input. */
8966 : :
8967 : 276055 : explicit_link_files = XCNEWVEC (char, n_infiles);
8968 : :
8969 : 276055 : combine_inputs = have_o || flag_wpa;
8970 : :
8971 : 813412 : for (i = 0; (int) i < n_infiles; i++)
8972 : : {
8973 : 537357 : const char *name = infiles[i].name;
8974 : 537357 : struct compiler *compiler = lookup_compiler (name,
8975 : : strlen (name),
8976 : : infiles[i].language);
8977 : :
8978 : 537357 : if (compiler && !(compiler->combinable))
8979 : 246765 : combine_inputs = false;
8980 : :
8981 : 537357 : if (lang_n_infiles > 0 && compiler != input_file_compiler
8982 : 239731 : && infiles[i].language && infiles[i].language[0] != '*')
8983 : 33 : infiles[i].incompiler = compiler;
8984 : 537324 : else if (compiler)
8985 : : {
8986 : 286997 : lang_n_infiles++;
8987 : 286997 : input_file_compiler = compiler;
8988 : 286997 : infiles[i].incompiler = compiler;
8989 : : }
8990 : : else
8991 : : {
8992 : : /* Since there is no compiler for this input file, assume it is a
8993 : : linker file. */
8994 : 250327 : explicit_link_files[i] = 1;
8995 : 250327 : infiles[i].incompiler = NULL;
8996 : : }
8997 : 537357 : infiles[i].compiled = false;
8998 : 537357 : infiles[i].preprocessed = false;
8999 : : }
9000 : :
9001 : 276055 : if (!combine_inputs && have_c && have_o && lang_n_infiles > 1)
9002 : 0 : fatal_error (input_location,
9003 : : "cannot specify %<-o%> with %<-c%>, %<-S%> or %<-E%> "
9004 : : "with multiple files");
9005 : :
9006 : : /* No early exit needed from main; we can continue. */
9007 : : return false;
9008 : : }
9009 : :
9010 : : /* Run the spec machinery on each input file. */
9011 : :
9012 : : void
9013 : 276055 : driver::do_spec_on_infiles () const
9014 : : {
9015 : 276055 : size_t i;
9016 : :
9017 : 813412 : for (i = 0; (int) i < n_infiles; i++)
9018 : : {
9019 : 537357 : int this_file_error = 0;
9020 : :
9021 : : /* Tell do_spec what to substitute for %i. */
9022 : :
9023 : 537357 : input_file_number = i;
9024 : 537357 : set_input (infiles[i].name);
9025 : :
9026 : 537357 : if (infiles[i].compiled)
9027 : 9085 : continue;
9028 : :
9029 : : /* Use the same thing in %o, unless cp->spec says otherwise. */
9030 : :
9031 : 528272 : outfiles[i] = gcc_input_filename;
9032 : :
9033 : : /* Figure out which compiler from the file's suffix. */
9034 : :
9035 : 528272 : input_file_compiler
9036 : 528272 : = lookup_compiler (infiles[i].name, input_filename_length,
9037 : : infiles[i].language);
9038 : :
9039 : 528272 : if (input_file_compiler)
9040 : : {
9041 : : /* Ok, we found an applicable compiler. Run its spec. */
9042 : :
9043 : 277945 : if (input_file_compiler->spec[0] == '#')
9044 : : {
9045 : 0 : error ("%s: %s compiler not installed on this system",
9046 : : gcc_input_filename, &input_file_compiler->spec[1]);
9047 : 0 : this_file_error = 1;
9048 : : }
9049 : : else
9050 : : {
9051 : 277945 : int value;
9052 : :
9053 : 277945 : if (compare_debug)
9054 : : {
9055 : 597 : free (debug_check_temp_file[0]);
9056 : 597 : debug_check_temp_file[0] = NULL;
9057 : :
9058 : 597 : free (debug_check_temp_file[1]);
9059 : 597 : debug_check_temp_file[1] = NULL;
9060 : : }
9061 : :
9062 : 277945 : value = do_spec (input_file_compiler->spec);
9063 : 277945 : infiles[i].compiled = true;
9064 : 277945 : if (value < 0)
9065 : : this_file_error = 1;
9066 : 250112 : else if (compare_debug && debug_check_temp_file[0])
9067 : : {
9068 : 593 : if (verbose_flag)
9069 : 0 : inform (UNKNOWN_LOCATION,
9070 : : "recompiling with %<-fcompare-debug%>");
9071 : :
9072 : 593 : compare_debug = -compare_debug;
9073 : 593 : n_switches = n_switches_debug_check[1];
9074 : 593 : n_switches_alloc = n_switches_alloc_debug_check[1];
9075 : 593 : switches = switches_debug_check[1];
9076 : :
9077 : 593 : value = do_spec (input_file_compiler->spec);
9078 : :
9079 : 593 : compare_debug = -compare_debug;
9080 : 593 : n_switches = n_switches_debug_check[0];
9081 : 593 : n_switches_alloc = n_switches_alloc_debug_check[0];
9082 : 593 : switches = switches_debug_check[0];
9083 : :
9084 : 593 : if (value < 0)
9085 : : {
9086 : 3 : error ("during %<-fcompare-debug%> recompilation");
9087 : 3 : this_file_error = 1;
9088 : : }
9089 : :
9090 : 593 : gcc_assert (debug_check_temp_file[1]
9091 : : && filename_cmp (debug_check_temp_file[0],
9092 : : debug_check_temp_file[1]));
9093 : :
9094 : 593 : if (verbose_flag)
9095 : 0 : inform (UNKNOWN_LOCATION, "comparing final insns dumps");
9096 : :
9097 : 593 : if (compare_files (debug_check_temp_file))
9098 : 27850 : this_file_error = 1;
9099 : : }
9100 : :
9101 : 277945 : if (compare_debug)
9102 : : {
9103 : 597 : free (debug_check_temp_file[0]);
9104 : 597 : debug_check_temp_file[0] = NULL;
9105 : :
9106 : 597 : free (debug_check_temp_file[1]);
9107 : 597 : debug_check_temp_file[1] = NULL;
9108 : : }
9109 : : }
9110 : : }
9111 : :
9112 : : /* If this file's name does not contain a recognized suffix,
9113 : : record it as explicit linker input. */
9114 : :
9115 : : else
9116 : 250327 : explicit_link_files[i] = 1;
9117 : :
9118 : : /* Clear the delete-on-failure queue, deleting the files in it
9119 : : if this compilation failed. */
9120 : :
9121 : 528272 : if (this_file_error)
9122 : : {
9123 : 27850 : delete_failure_queue ();
9124 : 27850 : errorcount++;
9125 : : }
9126 : : /* If this compilation succeeded, don't delete those files later. */
9127 : 528272 : clear_failure_queue ();
9128 : : }
9129 : :
9130 : : /* Reset the input file name to the first compile/object file name, for use
9131 : : with %b in LINK_SPEC. We use the first input file that we can find
9132 : : a compiler to compile it instead of using infiles.language since for
9133 : : languages other than C we use aliases that we then lookup later. */
9134 : 276055 : if (n_infiles > 0)
9135 : : {
9136 : : int i;
9137 : :
9138 : 288092 : for (i = 0; i < n_infiles ; i++)
9139 : 286215 : if (infiles[i].incompiler
9140 : 12037 : || (infiles[i].language && infiles[i].language[0] != '*'))
9141 : : {
9142 : 274178 : set_input (infiles[i].name);
9143 : 274178 : break;
9144 : : }
9145 : : }
9146 : :
9147 : 276055 : if (!seen_error ())
9148 : : {
9149 : : /* Make sure INPUT_FILE_NUMBER points to first available open
9150 : : slot. */
9151 : 248205 : input_file_number = n_infiles;
9152 : 248205 : if (lang_specific_pre_link ())
9153 : 0 : errorcount++;
9154 : : }
9155 : 276055 : }
9156 : :
9157 : : /* If we have to run the linker, do it now. */
9158 : :
9159 : : void
9160 : 276055 : driver::maybe_run_linker (const char *argv0) const
9161 : : {
9162 : 276055 : size_t i;
9163 : 276055 : int linker_was_run = 0;
9164 : 276055 : int num_linker_inputs;
9165 : :
9166 : : /* Determine if there are any linker input files. */
9167 : 276055 : num_linker_inputs = 0;
9168 : 813412 : for (i = 0; (int) i < n_infiles; i++)
9169 : 537357 : if (explicit_link_files[i] || outfiles[i] != NULL)
9170 : 527801 : num_linker_inputs++;
9171 : :
9172 : : /* Arrange for temporary file names created during linking to take
9173 : : on names related with the linker output rather than with the
9174 : : inputs when appropriate. */
9175 : 276055 : if (outbase && *outbase)
9176 : : {
9177 : 253660 : if (dumpdir)
9178 : : {
9179 : 85607 : char *tofree = dumpdir;
9180 : 85607 : gcc_checking_assert (strlen (dumpdir) == dumpdir_length);
9181 : 85607 : dumpdir = concat (dumpdir, outbase, ".", NULL);
9182 : 85607 : free (tofree);
9183 : : }
9184 : : else
9185 : 168053 : dumpdir = concat (outbase, ".", NULL);
9186 : 253660 : dumpdir_length += strlen (outbase) + 1;
9187 : 253660 : dumpdir_trailing_dash_added = true;
9188 : 253660 : }
9189 : 22395 : else if (dumpdir_trailing_dash_added)
9190 : : {
9191 : 17589 : gcc_assert (dumpdir[dumpdir_length - 1] == '-');
9192 : 17589 : dumpdir[dumpdir_length - 1] = '.';
9193 : : }
9194 : :
9195 : 276055 : if (dumpdir_trailing_dash_added)
9196 : : {
9197 : 271249 : gcc_assert (dumpdir_length > 0);
9198 : 271249 : gcc_assert (dumpdir[dumpdir_length - 1] == '.');
9199 : 271249 : dumpdir_length--;
9200 : : }
9201 : :
9202 : 276055 : free (outbase);
9203 : 276055 : input_basename = outbase = NULL;
9204 : 276055 : outbase_length = suffixed_basename_length = basename_length = 0;
9205 : :
9206 : : /* Run ld to link all the compiler output files. */
9207 : :
9208 : 276055 : if (num_linker_inputs > 0 && !seen_error () && print_subprocess_help < 2)
9209 : : {
9210 : 247632 : int tmp = execution_count;
9211 : :
9212 : 247632 : detect_jobserver ();
9213 : :
9214 : 247632 : if (! have_c)
9215 : : {
9216 : : #if HAVE_LTO_PLUGIN > 0
9217 : : #if HAVE_LTO_PLUGIN == 2
9218 : 93746 : const char *fno_use_linker_plugin = "fno-use-linker-plugin";
9219 : : #else
9220 : : const char *fuse_linker_plugin = "fuse-linker-plugin";
9221 : : #endif
9222 : : #endif
9223 : :
9224 : : /* We'll use ld if we can't find collect2. */
9225 : 93746 : if (! strcmp (linker_name_spec, "collect2"))
9226 : : {
9227 : 93746 : char *s = find_a_program ("collect2");
9228 : 93746 : if (s == NULL)
9229 : 1079 : set_static_spec_shared (&linker_name_spec, "ld");
9230 : : }
9231 : :
9232 : : #if HAVE_LTO_PLUGIN > 0
9233 : : #if HAVE_LTO_PLUGIN == 2
9234 : 93746 : if (!switch_matches (fno_use_linker_plugin,
9235 : : fno_use_linker_plugin
9236 : : + strlen (fno_use_linker_plugin), 0))
9237 : : #else
9238 : : if (switch_matches (fuse_linker_plugin,
9239 : : fuse_linker_plugin
9240 : : + strlen (fuse_linker_plugin), 0))
9241 : : #endif
9242 : : {
9243 : 88497 : char *temp_spec = find_a_file (&exec_prefixes,
9244 : : LTOPLUGINSONAME, R_OK,
9245 : : false);
9246 : 88497 : if (!temp_spec)
9247 : 0 : fatal_error (input_location,
9248 : : "%<-fuse-linker-plugin%>, but %s not found",
9249 : : LTOPLUGINSONAME);
9250 : 88497 : linker_plugin_file_spec = convert_white_space (temp_spec);
9251 : : }
9252 : : #endif
9253 : 93746 : set_static_spec_shared (<o_gcc_spec, argv0);
9254 : : }
9255 : :
9256 : : /* Rebuild the COMPILER_PATH and LIBRARY_PATH environment variables
9257 : : for collect. */
9258 : 247632 : putenv_from_prefixes (&exec_prefixes, "COMPILER_PATH", false);
9259 : 247632 : putenv_from_prefixes (&startfile_prefixes, LIBRARY_PATH_ENV, true);
9260 : :
9261 : 247632 : if (print_subprocess_help == 1)
9262 : : {
9263 : 0 : printf (_("\nLinker options\n==============\n\n"));
9264 : 0 : printf (_("Use \"-Wl,OPTION\" to pass \"OPTION\""
9265 : : " to the linker.\n\n"));
9266 : 0 : fflush (stdout);
9267 : : }
9268 : 247632 : int value = do_spec (link_command_spec);
9269 : 247632 : if (value < 0)
9270 : 124 : errorcount = 1;
9271 : 247632 : linker_was_run = (tmp != execution_count);
9272 : : }
9273 : :
9274 : : /* If options said don't run linker,
9275 : : complain about input files to be given to the linker. */
9276 : :
9277 : 276055 : if (! linker_was_run && !seen_error ())
9278 : 338992 : for (i = 0; (int) i < n_infiles; i++)
9279 : 184529 : if (explicit_link_files[i]
9280 : 20999 : && !(infiles[i].language && infiles[i].language[0] == '*'))
9281 : : {
9282 : 38 : warning (0, "%s: linker input file unused because linking not done",
9283 : 19 : outfiles[i]);
9284 : 19 : if (access (outfiles[i], F_OK) < 0)
9285 : : /* This is can be an indication the user specifed an errorneous
9286 : : separated option value, (or used the wrong prefix for an
9287 : : option). */
9288 : 7 : error ("%s: linker input file not found: %m", outfiles[i]);
9289 : : }
9290 : 276055 : }
9291 : :
9292 : : /* The end of "main". */
9293 : :
9294 : : void
9295 : 276055 : driver::final_actions () const
9296 : : {
9297 : : /* Delete some or all of the temporary files we made. */
9298 : :
9299 : 276055 : if (seen_error ())
9300 : 27979 : delete_failure_queue ();
9301 : 276055 : delete_temp_files ();
9302 : :
9303 : 276055 : if (totruncate_file != NULL && !seen_error ())
9304 : : /* Truncate file specified by -truncate.
9305 : : Used by lto-wrapper to reduce temporary disk-space usage. */
9306 : 9109 : truncate(totruncate_file, 0);
9307 : :
9308 : 276055 : if (print_help_list)
9309 : : {
9310 : 3 : printf (("\nFor bug reporting instructions, please see:\n"));
9311 : 3 : printf ("%s\n", bug_report_url);
9312 : : }
9313 : 276055 : }
9314 : :
9315 : : /* Detect whether jobserver is active and working. If not drop
9316 : : --jobserver-auth from MAKEFLAGS. */
9317 : :
9318 : : void
9319 : 247632 : driver::detect_jobserver () const
9320 : : {
9321 : 247632 : jobserver_info jinfo;
9322 : 247632 : if (!jinfo.is_active && !jinfo.skipped_makeflags.empty ())
9323 : 0 : xputenv (xstrdup (jinfo.skipped_makeflags.c_str ()));
9324 : 247632 : }
9325 : :
9326 : : /* Determine what the exit code of the driver should be. */
9327 : :
9328 : : int
9329 : 276483 : driver::get_exit_code () const
9330 : : {
9331 : 276483 : return (signal_count != 0 ? 2
9332 : 276483 : : seen_error () ? (pass_exit_codes ? greatest_status : 1)
9333 : 276483 : : 0);
9334 : : }
9335 : :
9336 : : /* Find the proper compilation spec for the file name NAME,
9337 : : whose length is LENGTH. LANGUAGE is the specified language,
9338 : : or 0 if this file is to be passed to the linker. */
9339 : :
9340 : : static struct compiler *
9341 : 1065629 : lookup_compiler (const char *name, size_t length, const char *language)
9342 : : {
9343 : 1556052 : struct compiler *cp;
9344 : :
9345 : : /* If this was specified by the user to be a linker input, indicate that. */
9346 : 1556052 : if (language != 0 && language[0] == '*')
9347 : : return 0;
9348 : :
9349 : : /* Otherwise, look for the language, if one is spec'd. */
9350 : 1101438 : if (language != 0)
9351 : : {
9352 : 22439168 : for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9353 : 22439168 : if (cp->suffix[0] == '@' && !strcmp (cp->suffix + 1, language))
9354 : : {
9355 : 564961 : if (name != NULL && strcmp (name, "-") == 0
9356 : 2072 : && (strcmp (cp->suffix, "@c-header") == 0
9357 : 2072 : || strcmp (cp->suffix, "@c++-header") == 0)
9358 : 0 : && !have_E)
9359 : 0 : fatal_error (input_location,
9360 : : "cannot use %<-%> as input filename for a "
9361 : : "precompiled header");
9362 : :
9363 : : return cp;
9364 : : }
9365 : :
9366 : 0 : error ("language %s not recognized", language);
9367 : 0 : return 0;
9368 : : }
9369 : :
9370 : : /* Look for a suffix. */
9371 : 29624255 : for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9372 : : {
9373 : 29578215 : if (/* The suffix `-' matches only the file name `-'. */
9374 : 29578215 : (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9375 : 29578201 : || (strlen (cp->suffix) < length
9376 : : /* See if the suffix matches the end of NAME. */
9377 : 29162060 : && !strcmp (cp->suffix,
9378 : 29162060 : name + length - strlen (cp->suffix))
9379 : : ))
9380 : : break;
9381 : : }
9382 : :
9383 : : #if defined (OS2) ||defined (HAVE_DOS_BASED_FILE_SYSTEM)
9384 : : /* Look again, but case-insensitively this time. */
9385 : : if (cp < compilers)
9386 : : for (cp = compilers + n_compilers - 1; cp >= compilers; cp--)
9387 : : {
9388 : : if (/* The suffix `-' matches only the file name `-'. */
9389 : : (!strcmp (cp->suffix, "-") && !strcmp (name, "-"))
9390 : : || (strlen (cp->suffix) < length
9391 : : /* See if the suffix matches the end of NAME. */
9392 : : && ((!strcmp (cp->suffix,
9393 : : name + length - strlen (cp->suffix))
9394 : : || !strpbrk (cp->suffix, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
9395 : : && !strcasecmp (cp->suffix,
9396 : : name + length - strlen (cp->suffix)))
9397 : : ))
9398 : : break;
9399 : : }
9400 : : #endif
9401 : :
9402 : 536477 : if (cp >= compilers)
9403 : : {
9404 : 490437 : if (cp->spec[0] != '@')
9405 : : /* A non-alias entry: return it. */
9406 : : return cp;
9407 : :
9408 : : /* An alias entry maps a suffix to a language.
9409 : : Search for the language; pass 0 for NAME and LENGTH
9410 : : to avoid infinite recursion if language not found. */
9411 : 490423 : return lookup_compiler (NULL, 0, cp->spec + 1);
9412 : : }
9413 : : return 0;
9414 : : }
9415 : :
9416 : : static char *
9417 : 45029772 : save_string (const char *s, int len)
9418 : : {
9419 : 45029772 : char *result = XNEWVEC (char, len + 1);
9420 : :
9421 : 45029772 : gcc_checking_assert (strlen (s) >= (unsigned int) len);
9422 : 45029772 : memcpy (result, s, len);
9423 : 45029772 : result[len] = 0;
9424 : 45029772 : return result;
9425 : : }
9426 : :
9427 : :
9428 : : static inline void
9429 : 44753478 : validate_switches_from_spec (const char *spec, bool user)
9430 : : {
9431 : 44753478 : const char *p = spec;
9432 : 44753478 : char c;
9433 : 554768766 : while ((c = *p++))
9434 : 465261810 : if (c == '%'
9435 : 465261810 : && (*p == '{'
9436 : 11043066 : || *p == '<'
9437 : 10171245 : || (*p == 'W' && *++p == '{')
9438 : 10171245 : || (*p == '@' && *++p == '{')))
9439 : : /* We have a switch spec. */
9440 : 44172266 : p = validate_switches (p + 1, user, *p == '{');
9441 : 44753478 : }
9442 : :
9443 : : static void
9444 : 290607 : validate_all_switches (void)
9445 : : {
9446 : 290607 : struct compiler *comp;
9447 : 290607 : struct spec_list *spec;
9448 : :
9449 : 31385556 : for (comp = compilers; comp->spec; comp++)
9450 : 31094949 : validate_switches_from_spec (comp->spec, false);
9451 : :
9452 : : /* Look through the linked list of specs read from the specs file. */
9453 : 13658529 : for (spec = specs; spec; spec = spec->next)
9454 : 13367922 : validate_switches_from_spec (*spec->ptr_spec, spec->user_p);
9455 : :
9456 : 290607 : validate_switches_from_spec (link_command_spec, false);
9457 : 290607 : }
9458 : :
9459 : : /* Look at the switch-name that comes after START and mark as valid
9460 : : all supplied switches that match it. If BRACED, handle other
9461 : : switches after '|' and '&', and specs after ':' until ';' or '}',
9462 : : going back for more switches after ';'. Without BRACED, handle
9463 : : only one atom. Return a pointer to whatever follows the handled
9464 : : items, after the closing brace if BRACED. */
9465 : :
9466 : : static const char *
9467 : 188603945 : validate_switches (const char *start, bool user_spec, bool braced)
9468 : : {
9469 : 188603945 : const char *p = start;
9470 : 242947454 : const char *atom;
9471 : 242947454 : size_t len;
9472 : 242947454 : int i;
9473 : 242947454 : bool suffix;
9474 : 242947454 : bool starred;
9475 : :
9476 : : #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
9477 : :
9478 : 242947454 : next_member:
9479 : 242947454 : suffix = false;
9480 : 242947454 : starred = false;
9481 : :
9482 : 269102084 : SKIP_WHITE ();
9483 : :
9484 : 242947454 : if (*p == '!')
9485 : 74104786 : p++;
9486 : :
9487 : 242947454 : SKIP_WHITE ();
9488 : 242947454 : if (*p == '.' || *p == ',')
9489 : 0 : suffix = true, p++;
9490 : :
9491 : 242947454 : atom = p;
9492 : 242947454 : while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
9493 : 1602988228 : || *p == ',' || *p == '.' || *p == '@')
9494 : 1360040774 : p++;
9495 : 242947454 : len = p - atom;
9496 : :
9497 : 242947454 : if (*p == '*')
9498 : 63933540 : starred = true, p++;
9499 : :
9500 : 244109882 : SKIP_WHITE ();
9501 : :
9502 : 242947454 : if (!suffix)
9503 : : {
9504 : : /* Mark all matching switches as valid. */
9505 : 5427913950 : for (i = 0; i < n_switches; i++)
9506 : 5184966496 : if (!strncmp (switches[i].part1, atom, len)
9507 : 443650573 : && (starred || switches[i].part1[len] == '\0')
9508 : 46339987 : && (switches[i].known || user_spec))
9509 : 46338043 : switches[i].validated = true;
9510 : : }
9511 : :
9512 : 242947454 : if (!braced)
9513 : : return p;
9514 : :
9515 : 241494419 : if (*p) p++;
9516 : 241494419 : if (*p && (p[-1] == '|' || p[-1] == '&'))
9517 : 36616482 : goto next_member;
9518 : :
9519 : 204877937 : if (*p && p[-1] == ':')
9520 : : {
9521 : 2722406372 : while (*p && *p != ';' && *p != '}')
9522 : : {
9523 : 2565478589 : if (*p == '%')
9524 : : {
9525 : 241203810 : p++;
9526 : 241203810 : if (*p == '{' || *p == '<')
9527 : 141816216 : p = validate_switches (p+1, user_spec, *p == '{');
9528 : 99387594 : else if (p[0] == 'W' && p[1] == '{')
9529 : 2324856 : p = validate_switches (p+2, user_spec, true);
9530 : 97062738 : else if (p[0] == '@' && p[1] == '{')
9531 : 290607 : p = validate_switches (p+2, user_spec, true);
9532 : : }
9533 : : else
9534 : 2324274779 : p++;
9535 : : }
9536 : :
9537 : 156927783 : if (*p) p++;
9538 : 156927783 : if (*p && p[-1] == ';')
9539 : 17727027 : goto next_member;
9540 : : }
9541 : :
9542 : : return p;
9543 : : #undef SKIP_WHITE
9544 : : }
9545 : :
9546 : : struct mdswitchstr
9547 : : {
9548 : : const char *str;
9549 : : int len;
9550 : : };
9551 : :
9552 : : static struct mdswitchstr *mdswitches;
9553 : : static int n_mdswitches;
9554 : :
9555 : : /* Check whether a particular argument was used. The first time we
9556 : : canonicalize the switches to keep only the ones we care about. */
9557 : :
9558 : : struct used_arg_t
9559 : : {
9560 : : public:
9561 : : int operator () (const char *p, int len);
9562 : : void finalize ();
9563 : :
9564 : : private:
9565 : : struct mswitchstr
9566 : : {
9567 : : const char *str;
9568 : : const char *replace;
9569 : : int len;
9570 : : int rep_len;
9571 : : };
9572 : :
9573 : : mswitchstr *mswitches;
9574 : : int n_mswitches;
9575 : :
9576 : : };
9577 : :
9578 : : used_arg_t used_arg;
9579 : :
9580 : : int
9581 : 1756824 : used_arg_t::operator () (const char *p, int len)
9582 : : {
9583 : 1756824 : int i, j;
9584 : :
9585 : 1756824 : if (!mswitches)
9586 : : {
9587 : 290607 : struct mswitchstr *matches;
9588 : 290607 : const char *q;
9589 : 290607 : int cnt = 0;
9590 : :
9591 : : /* Break multilib_matches into the component strings of string
9592 : : and replacement string. */
9593 : 4940319 : for (q = multilib_matches; *q != '\0'; q++)
9594 : 4649712 : if (*q == ';')
9595 : 581214 : cnt++;
9596 : :
9597 : 290607 : matches
9598 : 290607 : = (struct mswitchstr *) alloca ((sizeof (struct mswitchstr)) * cnt);
9599 : 290607 : i = 0;
9600 : 290607 : q = multilib_matches;
9601 : 871821 : while (*q != '\0')
9602 : : {
9603 : 581214 : matches[i].str = q;
9604 : 2324856 : while (*q != ' ')
9605 : : {
9606 : 1743642 : if (*q == '\0')
9607 : : {
9608 : 0 : invalid_matches:
9609 : 0 : fatal_error (input_location, "multilib spec %qs is invalid",
9610 : : multilib_matches);
9611 : : }
9612 : 1743642 : q++;
9613 : : }
9614 : 581214 : matches[i].len = q - matches[i].str;
9615 : :
9616 : 581214 : matches[i].replace = ++q;
9617 : 2324856 : while (*q != ';' && *q != '\0')
9618 : : {
9619 : 1743642 : if (*q == ' ')
9620 : 0 : goto invalid_matches;
9621 : 1743642 : q++;
9622 : : }
9623 : 581214 : matches[i].rep_len = q - matches[i].replace;
9624 : 581214 : i++;
9625 : 581214 : if (*q == ';')
9626 : 581214 : q++;
9627 : : }
9628 : :
9629 : : /* Now build a list of the replacement string for switches that we care
9630 : : about. Make sure we allocate at least one entry. This prevents
9631 : : xmalloc from calling fatal, and prevents us from re-executing this
9632 : : block of code. */
9633 : 290607 : mswitches
9634 : 581214 : = XNEWVEC (struct mswitchstr, n_mdswitches + (n_switches ? n_switches : 1));
9635 : 6492720 : for (i = 0; i < n_switches; i++)
9636 : 6202113 : if ((switches[i].live_cond & SWITCH_IGNORE) == 0)
9637 : : {
9638 : 6202107 : int xlen = strlen (switches[i].part1);
9639 : 18593760 : for (j = 0; j < cnt; j++)
9640 : 12401826 : if (xlen == matches[j].len
9641 : 18766 : && ! strncmp (switches[i].part1, matches[j].str, xlen))
9642 : : {
9643 : 10173 : mswitches[n_mswitches].str = matches[j].replace;
9644 : 10173 : mswitches[n_mswitches].len = matches[j].rep_len;
9645 : 10173 : mswitches[n_mswitches].replace = (char *) 0;
9646 : 10173 : mswitches[n_mswitches].rep_len = 0;
9647 : 10173 : n_mswitches++;
9648 : 10173 : break;
9649 : : }
9650 : : }
9651 : :
9652 : : /* Add MULTILIB_DEFAULTS switches too, as long as they were not present
9653 : : on the command line nor any options mutually incompatible with
9654 : : them. */
9655 : 581214 : for (i = 0; i < n_mdswitches; i++)
9656 : : {
9657 : 290607 : const char *r;
9658 : :
9659 : 581214 : for (q = multilib_options; *q != '\0'; *q && q++)
9660 : : {
9661 : 290607 : while (*q == ' ')
9662 : 0 : q++;
9663 : :
9664 : 290607 : r = q;
9665 : 290607 : while (strncmp (q, mdswitches[i].str, mdswitches[i].len) != 0
9666 : 290607 : || strchr (" /", q[mdswitches[i].len]) == NULL)
9667 : : {
9668 : 0 : while (*q != ' ' && *q != '/' && *q != '\0')
9669 : 0 : q++;
9670 : 0 : if (*q != '/')
9671 : : break;
9672 : 0 : q++;
9673 : : }
9674 : :
9675 : 290607 : if (*q != ' ' && *q != '\0')
9676 : : {
9677 : 578826 : while (*r != ' ' && *r != '\0')
9678 : : {
9679 : : q = r;
9680 : 2315304 : while (*q != ' ' && *q != '/' && *q != '\0')
9681 : 1736478 : q++;
9682 : :
9683 : 578826 : if (used_arg (r, q - r))
9684 : : break;
9685 : :
9686 : 568653 : if (*q != '/')
9687 : : {
9688 : 280434 : mswitches[n_mswitches].str = mdswitches[i].str;
9689 : 280434 : mswitches[n_mswitches].len = mdswitches[i].len;
9690 : 280434 : mswitches[n_mswitches].replace = (char *) 0;
9691 : 280434 : mswitches[n_mswitches].rep_len = 0;
9692 : 280434 : n_mswitches++;
9693 : 280434 : break;
9694 : : }
9695 : :
9696 : 288219 : r = q + 1;
9697 : : }
9698 : : break;
9699 : : }
9700 : : }
9701 : : }
9702 : : }
9703 : :
9704 : 2353608 : for (i = 0; i < n_mswitches; i++)
9705 : 1195956 : if (len == mswitches[i].len && ! strncmp (p, mswitches[i].str, len))
9706 : : return 1;
9707 : :
9708 : : return 0;
9709 : : }
9710 : :
9711 : 1084 : void used_arg_t::finalize ()
9712 : : {
9713 : 1084 : XDELETEVEC (mswitches);
9714 : 1084 : mswitches = NULL;
9715 : 1084 : n_mswitches = 0;
9716 : 1084 : }
9717 : :
9718 : :
9719 : : static int
9720 : 1196858 : default_arg (const char *p, int len)
9721 : : {
9722 : 1196858 : int i;
9723 : :
9724 : 1790572 : for (i = 0; i < n_mdswitches; i++)
9725 : 1196858 : if (len == mdswitches[i].len && ! strncmp (p, mdswitches[i].str, len))
9726 : : return 1;
9727 : :
9728 : : return 0;
9729 : : }
9730 : :
9731 : : /* Work out the subdirectory to use based on the options. The format of
9732 : : multilib_select is a list of elements. Each element is a subdirectory
9733 : : name followed by a list of options followed by a semicolon. The format
9734 : : of multilib_exclusions is the same, but without the preceding
9735 : : directory. First gcc will check the exclusions, if none of the options
9736 : : beginning with an exclamation point are present, and all of the other
9737 : : options are present, then we will ignore this completely. Passing
9738 : : that, gcc will consider each multilib_select in turn using the same
9739 : : rules for matching the options. If a match is found, that subdirectory
9740 : : will be used.
9741 : : A subdirectory name is optionally followed by a colon and the corresponding
9742 : : multiarch name. */
9743 : :
9744 : : static void
9745 : 290607 : set_multilib_dir (void)
9746 : : {
9747 : 290607 : const char *p;
9748 : 290607 : unsigned int this_path_len;
9749 : 290607 : const char *this_path, *this_arg;
9750 : 290607 : const char *start, *end;
9751 : 290607 : int not_arg;
9752 : 290607 : int ok, ndfltok, first;
9753 : :
9754 : 290607 : n_mdswitches = 0;
9755 : 290607 : start = multilib_defaults;
9756 : 290607 : while (*start == ' ' || *start == '\t')
9757 : 0 : start++;
9758 : 581214 : while (*start != '\0')
9759 : : {
9760 : 290607 : n_mdswitches++;
9761 : 1162428 : while (*start != ' ' && *start != '\t' && *start != '\0')
9762 : 871821 : start++;
9763 : 290607 : while (*start == ' ' || *start == '\t')
9764 : 0 : start++;
9765 : : }
9766 : :
9767 : 290607 : if (n_mdswitches)
9768 : : {
9769 : 290607 : int i = 0;
9770 : :
9771 : 290607 : mdswitches = XNEWVEC (struct mdswitchstr, n_mdswitches);
9772 : 290607 : for (start = multilib_defaults; *start != '\0'; start = end + 1)
9773 : : {
9774 : 290607 : while (*start == ' ' || *start == '\t')
9775 : 0 : start++;
9776 : :
9777 : 290607 : if (*start == '\0')
9778 : : break;
9779 : :
9780 : 871821 : for (end = start + 1;
9781 : 871821 : *end != ' ' && *end != '\t' && *end != '\0'; end++)
9782 : : ;
9783 : :
9784 : 290607 : obstack_grow (&multilib_obstack, start, end - start);
9785 : 290607 : obstack_1grow (&multilib_obstack, 0);
9786 : 290607 : mdswitches[i].str = XOBFINISH (&multilib_obstack, const char *);
9787 : 290607 : mdswitches[i++].len = end - start;
9788 : :
9789 : 290607 : if (*end == '\0')
9790 : : break;
9791 : : }
9792 : : }
9793 : :
9794 : 290607 : p = multilib_exclusions;
9795 : 290607 : while (*p != '\0')
9796 : : {
9797 : : /* Ignore newlines. */
9798 : 0 : if (*p == '\n')
9799 : : {
9800 : 0 : ++p;
9801 : 0 : continue;
9802 : : }
9803 : :
9804 : : /* Check the arguments. */
9805 : : ok = 1;
9806 : 0 : while (*p != ';')
9807 : : {
9808 : 0 : if (*p == '\0')
9809 : : {
9810 : 0 : invalid_exclusions:
9811 : 0 : fatal_error (input_location, "multilib exclusions %qs is invalid",
9812 : : multilib_exclusions);
9813 : : }
9814 : :
9815 : 0 : if (! ok)
9816 : : {
9817 : 0 : ++p;
9818 : 0 : continue;
9819 : : }
9820 : :
9821 : 0 : this_arg = p;
9822 : 0 : while (*p != ' ' && *p != ';')
9823 : : {
9824 : 0 : if (*p == '\0')
9825 : 0 : goto invalid_exclusions;
9826 : 0 : ++p;
9827 : : }
9828 : :
9829 : 0 : if (*this_arg != '!')
9830 : : not_arg = 0;
9831 : : else
9832 : : {
9833 : 0 : not_arg = 1;
9834 : 0 : ++this_arg;
9835 : : }
9836 : :
9837 : 0 : ok = used_arg (this_arg, p - this_arg);
9838 : 0 : if (not_arg)
9839 : 0 : ok = ! ok;
9840 : :
9841 : 0 : if (*p == ' ')
9842 : 0 : ++p;
9843 : : }
9844 : :
9845 : 0 : if (ok)
9846 : : return;
9847 : :
9848 : 0 : ++p;
9849 : : }
9850 : :
9851 : 290607 : first = 1;
9852 : 290607 : p = multilib_select;
9853 : :
9854 : : /* Append multilib reuse rules if any. With those rules, we can reuse
9855 : : one multilib for certain different options sets. */
9856 : 290607 : if (strlen (multilib_reuse) > 0)
9857 : 0 : p = concat (p, multilib_reuse, NULL);
9858 : :
9859 : 588999 : while (*p != '\0')
9860 : : {
9861 : : /* Ignore newlines. */
9862 : 588999 : if (*p == '\n')
9863 : : {
9864 : 0 : ++p;
9865 : 0 : continue;
9866 : : }
9867 : :
9868 : : /* Get the initial path. */
9869 : : this_path = p;
9870 : 4146348 : while (*p != ' ')
9871 : : {
9872 : 3557349 : if (*p == '\0')
9873 : : {
9874 : 0 : invalid_select:
9875 : 0 : fatal_error (input_location, "multilib select %qs %qs is invalid",
9876 : : multilib_select, multilib_reuse);
9877 : : }
9878 : 3557349 : ++p;
9879 : : }
9880 : 588999 : this_path_len = p - this_path;
9881 : :
9882 : : /* Check the arguments. */
9883 : 588999 : ok = 1;
9884 : 588999 : ndfltok = 1;
9885 : 588999 : ++p;
9886 : 1766997 : while (*p != ';')
9887 : : {
9888 : 1177998 : if (*p == '\0')
9889 : 0 : goto invalid_select;
9890 : :
9891 : 1177998 : if (! ok)
9892 : : {
9893 : 0 : ++p;
9894 : 0 : continue;
9895 : : }
9896 : :
9897 : 5591598 : this_arg = p;
9898 : 5591598 : while (*p != ' ' && *p != ';')
9899 : : {
9900 : 4413600 : if (*p == '\0')
9901 : 0 : goto invalid_select;
9902 : 4413600 : ++p;
9903 : : }
9904 : :
9905 : 1177998 : if (*this_arg != '!')
9906 : : not_arg = 0;
9907 : : else
9908 : : {
9909 : 879606 : not_arg = 1;
9910 : 879606 : ++this_arg;
9911 : : }
9912 : :
9913 : : /* If this is a default argument, we can just ignore it.
9914 : : This is true even if this_arg begins with '!'. Beginning
9915 : : with '!' does not mean that this argument is necessarily
9916 : : inappropriate for this library: it merely means that
9917 : : there is a more specific library which uses this
9918 : : argument. If this argument is a default, we need not
9919 : : consider that more specific library. */
9920 : 1177998 : ok = used_arg (this_arg, p - this_arg);
9921 : 1177998 : if (not_arg)
9922 : 879606 : ok = ! ok;
9923 : :
9924 : 1177998 : if (! ok)
9925 : 306177 : ndfltok = 0;
9926 : :
9927 : 1177998 : if (default_arg (this_arg, p - this_arg))
9928 : 588999 : ok = 1;
9929 : :
9930 : 1177998 : if (*p == ' ')
9931 : 588999 : ++p;
9932 : : }
9933 : :
9934 : 588999 : if (ok && first)
9935 : : {
9936 : 290607 : if (this_path_len != 1
9937 : 282822 : || this_path[0] != '.')
9938 : : {
9939 : 7785 : char *new_multilib_dir = XNEWVEC (char, this_path_len + 1);
9940 : 7785 : char *q;
9941 : :
9942 : 7785 : strncpy (new_multilib_dir, this_path, this_path_len);
9943 : 7785 : new_multilib_dir[this_path_len] = '\0';
9944 : 7785 : q = strchr (new_multilib_dir, ':');
9945 : 7785 : if (q != NULL)
9946 : 7785 : *q = '\0';
9947 : 7785 : multilib_dir = new_multilib_dir;
9948 : : }
9949 : : first = 0;
9950 : : }
9951 : :
9952 : 588999 : if (ndfltok)
9953 : : {
9954 : 290607 : const char *q = this_path, *end = this_path + this_path_len;
9955 : :
9956 : 871821 : while (q < end && *q != ':')
9957 : 581214 : q++;
9958 : 290607 : if (q < end)
9959 : : {
9960 : 290607 : const char *q2 = q + 1, *ml_end = end;
9961 : 290607 : char *new_multilib_os_dir;
9962 : :
9963 : 2599893 : while (q2 < end && *q2 != ':')
9964 : 2309286 : q2++;
9965 : 290607 : if (*q2 == ':')
9966 : 0 : ml_end = q2;
9967 : 290607 : if (ml_end - q == 1)
9968 : 0 : multilib_os_dir = xstrdup (".");
9969 : : else
9970 : : {
9971 : 290607 : new_multilib_os_dir = XNEWVEC (char, ml_end - q);
9972 : 290607 : memcpy (new_multilib_os_dir, q + 1, ml_end - q - 1);
9973 : 290607 : new_multilib_os_dir[ml_end - q - 1] = '\0';
9974 : 290607 : multilib_os_dir = new_multilib_os_dir;
9975 : : }
9976 : :
9977 : 290607 : if (q2 < end && *q2 == ':')
9978 : : {
9979 : 0 : char *new_multiarch_dir = XNEWVEC (char, end - q2);
9980 : 0 : memcpy (new_multiarch_dir, q2 + 1, end - q2 - 1);
9981 : 0 : new_multiarch_dir[end - q2 - 1] = '\0';
9982 : 0 : multiarch_dir = new_multiarch_dir;
9983 : : }
9984 : : break;
9985 : : }
9986 : : }
9987 : :
9988 : 298392 : ++p;
9989 : : }
9990 : :
9991 : 581214 : multilib_dir =
9992 : 290607 : targetm_common.compute_multilib (
9993 : : switches,
9994 : : n_switches,
9995 : : multilib_dir,
9996 : : multilib_defaults,
9997 : : multilib_select,
9998 : : multilib_matches,
9999 : : multilib_exclusions,
10000 : : multilib_reuse);
10001 : :
10002 : 290607 : if (multilib_dir == NULL && multilib_os_dir != NULL
10003 : 282822 : && strcmp (multilib_os_dir, ".") == 0)
10004 : : {
10005 : 0 : free (CONST_CAST (char *, multilib_os_dir));
10006 : 0 : multilib_os_dir = NULL;
10007 : : }
10008 : 290607 : else if (multilib_dir != NULL && multilib_os_dir == NULL)
10009 : 0 : multilib_os_dir = multilib_dir;
10010 : : }
10011 : :
10012 : : /* Print out the multiple library subdirectory selection
10013 : : information. This prints out a series of lines. Each line looks
10014 : : like SUBDIRECTORY;@OPTION@OPTION, with as many options as is
10015 : : required. Only the desired options are printed out, the negative
10016 : : matches. The options are print without a leading dash. There are
10017 : : no spaces to make it easy to use the information in the shell.
10018 : : Each subdirectory is printed only once. This assumes the ordering
10019 : : generated by the genmultilib script. Also, we leave out ones that match
10020 : : the exclusions. */
10021 : :
10022 : : static void
10023 : 4715 : print_multilib_info (void)
10024 : : {
10025 : 4715 : const char *p = multilib_select;
10026 : 4715 : const char *last_path = 0, *this_path;
10027 : 4715 : int skip;
10028 : 4715 : int not_arg;
10029 : 4715 : unsigned int last_path_len = 0;
10030 : :
10031 : 18860 : while (*p != '\0')
10032 : : {
10033 : 14145 : skip = 0;
10034 : : /* Ignore newlines. */
10035 : 14145 : if (*p == '\n')
10036 : : {
10037 : 0 : ++p;
10038 : 0 : continue;
10039 : : }
10040 : :
10041 : : /* Get the initial path. */
10042 : : this_path = p;
10043 : 113160 : while (*p != ' ')
10044 : : {
10045 : 99015 : if (*p == '\0')
10046 : : {
10047 : 0 : invalid_select:
10048 : 0 : fatal_error (input_location,
10049 : : "multilib select %qs is invalid", multilib_select);
10050 : : }
10051 : :
10052 : 99015 : ++p;
10053 : : }
10054 : :
10055 : : /* When --disable-multilib was used but target defines
10056 : : MULTILIB_OSDIRNAMES, entries starting with .: (and not starting
10057 : : with .:: for multiarch configurations) are there just to find
10058 : : multilib_os_dir, so skip them from output. */
10059 : 14145 : if (this_path[0] == '.' && this_path[1] == ':' && this_path[2] != ':')
10060 : 14145 : skip = 1;
10061 : :
10062 : : /* Check for matches with the multilib_exclusions. We don't bother
10063 : : with the '!' in either list. If any of the exclusion rules match
10064 : : all of its options with the select rule, we skip it. */
10065 : 14145 : {
10066 : 14145 : const char *e = multilib_exclusions;
10067 : 14145 : const char *this_arg;
10068 : :
10069 : 14145 : while (*e != '\0')
10070 : : {
10071 : 0 : int m = 1;
10072 : : /* Ignore newlines. */
10073 : 0 : if (*e == '\n')
10074 : : {
10075 : 0 : ++e;
10076 : 0 : continue;
10077 : : }
10078 : :
10079 : : /* Check the arguments. */
10080 : 0 : while (*e != ';')
10081 : : {
10082 : 0 : const char *q;
10083 : 0 : int mp = 0;
10084 : :
10085 : 0 : if (*e == '\0')
10086 : : {
10087 : 0 : invalid_exclusion:
10088 : 0 : fatal_error (input_location,
10089 : : "multilib exclusion %qs is invalid",
10090 : : multilib_exclusions);
10091 : : }
10092 : :
10093 : 0 : if (! m)
10094 : : {
10095 : 0 : ++e;
10096 : 0 : continue;
10097 : : }
10098 : :
10099 : : this_arg = e;
10100 : :
10101 : 0 : while (*e != ' ' && *e != ';')
10102 : : {
10103 : 0 : if (*e == '\0')
10104 : 0 : goto invalid_exclusion;
10105 : 0 : ++e;
10106 : : }
10107 : :
10108 : 0 : q = p + 1;
10109 : 0 : while (*q != ';')
10110 : : {
10111 : 0 : const char *arg;
10112 : 0 : int len = e - this_arg;
10113 : :
10114 : 0 : if (*q == '\0')
10115 : 0 : goto invalid_select;
10116 : :
10117 : : arg = q;
10118 : :
10119 : 0 : while (*q != ' ' && *q != ';')
10120 : : {
10121 : 0 : if (*q == '\0')
10122 : 0 : goto invalid_select;
10123 : 0 : ++q;
10124 : : }
10125 : :
10126 : 0 : if (! strncmp (arg, this_arg,
10127 : 0 : (len < q - arg) ? q - arg : len)
10128 : 0 : || default_arg (this_arg, e - this_arg))
10129 : : {
10130 : : mp = 1;
10131 : : break;
10132 : : }
10133 : :
10134 : 0 : if (*q == ' ')
10135 : 0 : ++q;
10136 : : }
10137 : :
10138 : 0 : if (! mp)
10139 : 0 : m = 0;
10140 : :
10141 : 0 : if (*e == ' ')
10142 : 0 : ++e;
10143 : : }
10144 : :
10145 : 0 : if (m)
10146 : : {
10147 : : skip = 1;
10148 : : break;
10149 : : }
10150 : :
10151 : 0 : if (*e != '\0')
10152 : 0 : ++e;
10153 : : }
10154 : : }
10155 : :
10156 : 14145 : if (! skip)
10157 : : {
10158 : : /* If this is a duplicate, skip it. */
10159 : 28290 : skip = (last_path != 0
10160 : 9430 : && (unsigned int) (p - this_path) == last_path_len
10161 : 14145 : && ! filename_ncmp (last_path, this_path, last_path_len));
10162 : :
10163 : 14145 : last_path = this_path;
10164 : 14145 : last_path_len = p - this_path;
10165 : : }
10166 : :
10167 : : /* If all required arguments are default arguments, and no default
10168 : : arguments appear in the ! argument list, then we can skip it.
10169 : : We will already have printed a directory identical to this one
10170 : : which does not require that default argument. */
10171 : 14145 : if (! skip)
10172 : : {
10173 : 14145 : const char *q;
10174 : 14145 : bool default_arg_ok = false;
10175 : :
10176 : 14145 : q = p + 1;
10177 : 23575 : while (*q != ';')
10178 : : {
10179 : 18860 : const char *arg;
10180 : :
10181 : 18860 : if (*q == '\0')
10182 : 0 : goto invalid_select;
10183 : :
10184 : 18860 : if (*q == '!')
10185 : : {
10186 : 14145 : not_arg = 1;
10187 : 14145 : q++;
10188 : : }
10189 : : else
10190 : : not_arg = 0;
10191 : 18860 : arg = q;
10192 : :
10193 : 75440 : while (*q != ' ' && *q != ';')
10194 : : {
10195 : 56580 : if (*q == '\0')
10196 : 0 : goto invalid_select;
10197 : 56580 : ++q;
10198 : : }
10199 : :
10200 : 18860 : if (default_arg (arg, q - arg))
10201 : : {
10202 : : /* Stop checking if any default arguments appeared in not
10203 : : list. */
10204 : 14145 : if (not_arg)
10205 : : {
10206 : : default_arg_ok = false;
10207 : : break;
10208 : : }
10209 : :
10210 : : default_arg_ok = true;
10211 : : }
10212 : 4715 : else if (!not_arg)
10213 : : {
10214 : : /* Stop checking if any required argument is not provided by
10215 : : default arguments. */
10216 : : default_arg_ok = false;
10217 : : break;
10218 : : }
10219 : :
10220 : 9430 : if (*q == ' ')
10221 : 4715 : ++q;
10222 : : }
10223 : :
10224 : : /* Make sure all default argument is OK for this multi-lib set. */
10225 : 14145 : if (default_arg_ok)
10226 : : skip = 1;
10227 : : else
10228 : : skip = 0;
10229 : : }
10230 : :
10231 : : if (! skip)
10232 : : {
10233 : : const char *p1;
10234 : :
10235 : 23575 : for (p1 = last_path; p1 < p && *p1 != ':'; p1++)
10236 : 14145 : putchar (*p1);
10237 : 9430 : putchar (';');
10238 : : }
10239 : :
10240 : 14145 : ++p;
10241 : 70725 : while (*p != ';')
10242 : : {
10243 : 56580 : int use_arg;
10244 : :
10245 : 56580 : if (*p == '\0')
10246 : 0 : goto invalid_select;
10247 : :
10248 : 56580 : if (skip)
10249 : : {
10250 : 37720 : ++p;
10251 : 37720 : continue;
10252 : : }
10253 : :
10254 : 18860 : use_arg = *p != '!';
10255 : :
10256 : 18860 : if (use_arg)
10257 : 4715 : putchar ('@');
10258 : :
10259 : 89585 : while (*p != ' ' && *p != ';')
10260 : : {
10261 : 70725 : if (*p == '\0')
10262 : 0 : goto invalid_select;
10263 : 70725 : if (use_arg)
10264 : 14145 : putchar (*p);
10265 : 70725 : ++p;
10266 : : }
10267 : :
10268 : 18860 : if (*p == ' ')
10269 : 9430 : ++p;
10270 : : }
10271 : :
10272 : 14145 : if (! skip)
10273 : : {
10274 : : /* If there are extra options, print them now. */
10275 : 9430 : if (multilib_extra && *multilib_extra)
10276 : : {
10277 : : int print_at = true;
10278 : : const char *q;
10279 : :
10280 : 0 : for (q = multilib_extra; *q != '\0'; q++)
10281 : : {
10282 : 0 : if (*q == ' ')
10283 : : print_at = true;
10284 : : else
10285 : : {
10286 : 0 : if (print_at)
10287 : 0 : putchar ('@');
10288 : 0 : putchar (*q);
10289 : 0 : print_at = false;
10290 : : }
10291 : : }
10292 : : }
10293 : :
10294 : 9430 : putchar ('\n');
10295 : : }
10296 : :
10297 : 14145 : ++p;
10298 : : }
10299 : 4715 : }
10300 : :
10301 : : /* getenv built-in spec function.
10302 : :
10303 : : Returns the value of the environment variable given by its first argument,
10304 : : concatenated with the second argument. If the variable is not defined, a
10305 : : fatal error is issued unless such undefs are internally allowed, in which
10306 : : case the variable name prefixed by a '/' is used as the variable value.
10307 : :
10308 : : The leading '/' allows using the result at a spot where a full path would
10309 : : normally be expected and when the actual value doesn't really matter since
10310 : : undef vars are allowed. */
10311 : :
10312 : : static const char *
10313 : 0 : getenv_spec_function (int argc, const char **argv)
10314 : : {
10315 : 0 : const char *value;
10316 : 0 : const char *varname;
10317 : :
10318 : 0 : char *result;
10319 : 0 : char *ptr;
10320 : 0 : size_t len;
10321 : :
10322 : 0 : if (argc != 2)
10323 : : return NULL;
10324 : :
10325 : 0 : varname = argv[0];
10326 : 0 : value = env.get (varname);
10327 : :
10328 : : /* If the variable isn't defined and this is allowed, craft our expected
10329 : : return value. Assume variable names used in specs strings don't contain
10330 : : any active spec character so don't need escaping. */
10331 : 0 : if (!value && spec_undefvar_allowed)
10332 : : {
10333 : 0 : result = XNEWVAR (char, strlen(varname) + 2);
10334 : 0 : sprintf (result, "/%s", varname);
10335 : 0 : return result;
10336 : : }
10337 : :
10338 : 0 : if (!value)
10339 : 0 : fatal_error (input_location,
10340 : : "environment variable %qs not defined", varname);
10341 : :
10342 : : /* We have to escape every character of the environment variable so
10343 : : they are not interpreted as active spec characters. A
10344 : : particularly painful case is when we are reading a variable
10345 : : holding a windows path complete with \ separators. */
10346 : 0 : len = strlen (value) * 2 + strlen (argv[1]) + 1;
10347 : 0 : result = XNEWVAR (char, len);
10348 : 0 : for (ptr = result; *value; ptr += 2)
10349 : : {
10350 : 0 : ptr[0] = '\\';
10351 : 0 : ptr[1] = *value++;
10352 : : }
10353 : :
10354 : 0 : strcpy (ptr, argv[1]);
10355 : :
10356 : 0 : return result;
10357 : : }
10358 : :
10359 : : /* if-exists built-in spec function.
10360 : :
10361 : : Checks to see if the file specified by the absolute pathname in
10362 : : ARGS exists. Returns that pathname if found.
10363 : :
10364 : : The usual use for this function is to check for a library file
10365 : : (whose name has been expanded with %s). */
10366 : :
10367 : : static const char *
10368 : 0 : if_exists_spec_function (int argc, const char **argv)
10369 : : {
10370 : : /* Must have only one argument. */
10371 : 0 : if (argc == 1 && IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10372 : 0 : return argv[0];
10373 : :
10374 : : return NULL;
10375 : : }
10376 : :
10377 : : /* if-exists-else built-in spec function.
10378 : :
10379 : : This is like if-exists, but takes an additional argument which
10380 : : is returned if the first argument does not exist. */
10381 : :
10382 : : static const char *
10383 : 0 : if_exists_else_spec_function (int argc, const char **argv)
10384 : : {
10385 : : /* Must have exactly two arguments. */
10386 : 0 : if (argc != 2)
10387 : : return NULL;
10388 : :
10389 : 0 : if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10390 : 0 : return argv[0];
10391 : :
10392 : 0 : return argv[1];
10393 : : }
10394 : :
10395 : : /* if-exists-then-else built-in spec function.
10396 : :
10397 : : Checks to see if the file specified by the absolute pathname in
10398 : : the first arg exists. Returns the second arg if so, otherwise returns
10399 : : the third arg if it is present. */
10400 : :
10401 : : static const char *
10402 : 0 : if_exists_then_else_spec_function (int argc, const char **argv)
10403 : : {
10404 : :
10405 : : /* Must have two or three arguments. */
10406 : 0 : if (argc != 2 && argc != 3)
10407 : : return NULL;
10408 : :
10409 : 0 : if (IS_ABSOLUTE_PATH (argv[0]) && ! access (argv[0], R_OK))
10410 : 0 : return argv[1];
10411 : :
10412 : 0 : if (argc == 3)
10413 : 0 : return argv[2];
10414 : :
10415 : : return NULL;
10416 : : }
10417 : :
10418 : : /* sanitize built-in spec function.
10419 : :
10420 : : This returns non-NULL, if sanitizing address, thread or
10421 : : any of the undefined behavior sanitizers. */
10422 : :
10423 : : static const char *
10424 : 841824 : sanitize_spec_function (int argc, const char **argv)
10425 : : {
10426 : 841824 : if (argc != 1)
10427 : : return NULL;
10428 : :
10429 : 841824 : if (strcmp (argv[0], "address") == 0)
10430 : 371440 : return (flag_sanitize & SANITIZE_USER_ADDRESS) ? "" : NULL;
10431 : 654752 : if (strcmp (argv[0], "hwaddress") == 0)
10432 : 373744 : return (flag_sanitize & SANITIZE_USER_HWADDRESS) ? "" : NULL;
10433 : 467680 : if (strcmp (argv[0], "kernel-address") == 0)
10434 : 0 : return (flag_sanitize & SANITIZE_KERNEL_ADDRESS) ? "" : NULL;
10435 : 467680 : if (strcmp (argv[0], "kernel-hwaddress") == 0)
10436 : 0 : return (flag_sanitize & SANITIZE_KERNEL_HWADDRESS) ? "" : NULL;
10437 : 467680 : if (strcmp (argv[0], "thread") == 0)
10438 : 373532 : return (flag_sanitize & SANITIZE_THREAD) ? "" : NULL;
10439 : 280608 : if (strcmp (argv[0], "undefined") == 0)
10440 : 93536 : return ((flag_sanitize
10441 : 93536 : & ~flag_sanitize_trap
10442 : 93536 : & (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT)))
10443 : 185249 : ? "" : NULL;
10444 : 187072 : if (strcmp (argv[0], "leak") == 0)
10445 : 187072 : return ((flag_sanitize
10446 : 187072 : & (SANITIZE_ADDRESS | SANITIZE_LEAK | SANITIZE_THREAD))
10447 : 374144 : == SANITIZE_LEAK) ? "" : NULL;
10448 : : return NULL;
10449 : : }
10450 : :
10451 : : /* replace-outfile built-in spec function.
10452 : :
10453 : : This looks for the first argument in the outfiles array's name and
10454 : : replaces it with the second argument. */
10455 : :
10456 : : static const char *
10457 : 0 : replace_outfile_spec_function (int argc, const char **argv)
10458 : : {
10459 : 0 : int i;
10460 : : /* Must have exactly two arguments. */
10461 : 0 : if (argc != 2)
10462 : 0 : abort ();
10463 : :
10464 : 0 : for (i = 0; i < n_infiles; i++)
10465 : : {
10466 : 0 : if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10467 : 0 : outfiles[i] = xstrdup (argv[1]);
10468 : : }
10469 : 0 : return NULL;
10470 : : }
10471 : :
10472 : : /* remove-outfile built-in spec function.
10473 : : *
10474 : : * This looks for the first argument in the outfiles array's name and
10475 : : * removes it. */
10476 : :
10477 : : static const char *
10478 : 0 : remove_outfile_spec_function (int argc, const char **argv)
10479 : : {
10480 : 0 : int i;
10481 : : /* Must have exactly one argument. */
10482 : 0 : if (argc != 1)
10483 : 0 : abort ();
10484 : :
10485 : 0 : for (i = 0; i < n_infiles; i++)
10486 : : {
10487 : 0 : if (outfiles[i] && !filename_cmp (outfiles[i], argv[0]))
10488 : 0 : outfiles[i] = NULL;
10489 : : }
10490 : 0 : return NULL;
10491 : : }
10492 : :
10493 : : /* Given two version numbers, compares the two numbers.
10494 : : A version number must match the regular expression
10495 : : ([1-9][0-9]*|0)(\.([1-9][0-9]*|0))*
10496 : : */
10497 : : static int
10498 : 0 : compare_version_strings (const char *v1, const char *v2)
10499 : : {
10500 : 0 : int rresult;
10501 : 0 : regex_t r;
10502 : :
10503 : 0 : if (regcomp (&r, "^([1-9][0-9]*|0)(\\.([1-9][0-9]*|0))*$",
10504 : : REG_EXTENDED | REG_NOSUB) != 0)
10505 : 0 : abort ();
10506 : 0 : rresult = regexec (&r, v1, 0, NULL, 0);
10507 : 0 : if (rresult == REG_NOMATCH)
10508 : 0 : fatal_error (input_location, "invalid version number %qs", v1);
10509 : 0 : else if (rresult != 0)
10510 : 0 : abort ();
10511 : 0 : rresult = regexec (&r, v2, 0, NULL, 0);
10512 : 0 : if (rresult == REG_NOMATCH)
10513 : 0 : fatal_error (input_location, "invalid version number %qs", v2);
10514 : 0 : else if (rresult != 0)
10515 : 0 : abort ();
10516 : :
10517 : 0 : return strverscmp (v1, v2);
10518 : : }
10519 : :
10520 : :
10521 : : /* version_compare built-in spec function.
10522 : :
10523 : : This takes an argument of the following form:
10524 : :
10525 : : <comparison-op> <arg1> [<arg2>] <switch> <result>
10526 : :
10527 : : and produces "result" if the comparison evaluates to true,
10528 : : and nothing if it doesn't.
10529 : :
10530 : : The supported <comparison-op> values are:
10531 : :
10532 : : >= true if switch is a later (or same) version than arg1
10533 : : !> opposite of >=
10534 : : < true if switch is an earlier version than arg1
10535 : : !< opposite of <
10536 : : >< true if switch is arg1 or later, and earlier than arg2
10537 : : <> true if switch is earlier than arg1 or is arg2 or later
10538 : :
10539 : : If the switch is not present, the condition is false unless
10540 : : the first character of the <comparison-op> is '!'.
10541 : :
10542 : : For example,
10543 : : %:version-compare(>= 10.3 mmacosx-version-min= -lmx)
10544 : : adds -lmx if -mmacosx-version-min=10.3.9 was passed. */
10545 : :
10546 : : static const char *
10547 : 0 : version_compare_spec_function (int argc, const char **argv)
10548 : : {
10549 : 0 : int comp1, comp2;
10550 : 0 : size_t switch_len;
10551 : 0 : const char *switch_value = NULL;
10552 : 0 : int nargs = 1, i;
10553 : 0 : bool result;
10554 : :
10555 : 0 : if (argc < 3)
10556 : 0 : fatal_error (input_location, "too few arguments to %%:version-compare");
10557 : 0 : if (argv[0][0] == '\0')
10558 : 0 : abort ();
10559 : 0 : if ((argv[0][1] == '<' || argv[0][1] == '>') && argv[0][0] != '!')
10560 : 0 : nargs = 2;
10561 : 0 : if (argc != nargs + 3)
10562 : 0 : fatal_error (input_location, "too many arguments to %%:version-compare");
10563 : :
10564 : 0 : switch_len = strlen (argv[nargs + 1]);
10565 : 0 : for (i = 0; i < n_switches; i++)
10566 : 0 : if (!strncmp (switches[i].part1, argv[nargs + 1], switch_len)
10567 : 0 : && check_live_switch (i, switch_len))
10568 : 0 : switch_value = switches[i].part1 + switch_len;
10569 : :
10570 : 0 : if (switch_value == NULL)
10571 : : comp1 = comp2 = -1;
10572 : : else
10573 : : {
10574 : 0 : comp1 = compare_version_strings (switch_value, argv[1]);
10575 : 0 : if (nargs == 2)
10576 : 0 : comp2 = compare_version_strings (switch_value, argv[2]);
10577 : : else
10578 : : comp2 = -1; /* This value unused. */
10579 : : }
10580 : :
10581 : 0 : switch (argv[0][0] << 8 | argv[0][1])
10582 : : {
10583 : 0 : case '>' << 8 | '=':
10584 : 0 : result = comp1 >= 0;
10585 : 0 : break;
10586 : 0 : case '!' << 8 | '<':
10587 : 0 : result = comp1 >= 0 || switch_value == NULL;
10588 : 0 : break;
10589 : 0 : case '<' << 8:
10590 : 0 : result = comp1 < 0;
10591 : 0 : break;
10592 : 0 : case '!' << 8 | '>':
10593 : 0 : result = comp1 < 0 || switch_value == NULL;
10594 : 0 : break;
10595 : 0 : case '>' << 8 | '<':
10596 : 0 : result = comp1 >= 0 && comp2 < 0;
10597 : 0 : break;
10598 : 0 : case '<' << 8 | '>':
10599 : 0 : result = comp1 < 0 || comp2 >= 0;
10600 : 0 : break;
10601 : :
10602 : 0 : default:
10603 : 0 : fatal_error (input_location,
10604 : : "unknown operator %qs in %%:version-compare", argv[0]);
10605 : : }
10606 : 0 : if (! result)
10607 : : return NULL;
10608 : :
10609 : 0 : return argv[nargs + 2];
10610 : : }
10611 : :
10612 : : /* %:include builtin spec function. This differs from %include in that it
10613 : : can be nested inside a spec, and thus be conditionalized. It takes
10614 : : one argument, the filename, and looks for it in the startfile path.
10615 : : The result is always NULL, i.e. an empty expansion. */
10616 : :
10617 : : static const char *
10618 : 29892 : include_spec_function (int argc, const char **argv)
10619 : : {
10620 : 29892 : char *file;
10621 : :
10622 : 29892 : if (argc != 1)
10623 : 0 : abort ();
10624 : :
10625 : 29892 : file = find_a_file (&startfile_prefixes, argv[0], R_OK, true);
10626 : 29892 : read_specs (file ? file : argv[0], false, false);
10627 : :
10628 : 29892 : return NULL;
10629 : : }
10630 : :
10631 : : /* %:find-file spec function. This function replaces its argument by
10632 : : the file found through find_file, that is the -print-file-name gcc
10633 : : program option. */
10634 : : static const char *
10635 : 0 : find_file_spec_function (int argc, const char **argv)
10636 : : {
10637 : 0 : const char *file;
10638 : :
10639 : 0 : if (argc != 1)
10640 : 0 : abort ();
10641 : :
10642 : 0 : file = find_file (argv[0]);
10643 : 0 : return file;
10644 : : }
10645 : :
10646 : :
10647 : : /* %:find-plugindir spec function. This function replaces its argument
10648 : : by the -iplugindir=<dir> option. `dir' is found through find_file, that
10649 : : is the -print-file-name gcc program option. */
10650 : : static const char *
10651 : 381 : find_plugindir_spec_function (int argc, const char **argv ATTRIBUTE_UNUSED)
10652 : : {
10653 : 381 : const char *option;
10654 : :
10655 : 381 : if (argc != 0)
10656 : 0 : abort ();
10657 : :
10658 : 381 : option = concat ("-iplugindir=", find_file ("plugin"), NULL);
10659 : 381 : return option;
10660 : : }
10661 : :
10662 : :
10663 : : /* %:print-asm-header spec function. Print a banner to say that the
10664 : : following output is from the assembler. */
10665 : :
10666 : : static const char *
10667 : 0 : print_asm_header_spec_function (int arg ATTRIBUTE_UNUSED,
10668 : : const char **argv ATTRIBUTE_UNUSED)
10669 : : {
10670 : 0 : printf (_("Assembler options\n=================\n\n"));
10671 : 0 : printf (_("Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n\n"));
10672 : 0 : fflush (stdout);
10673 : 0 : return NULL;
10674 : : }
10675 : :
10676 : : /* Get a random number for -frandom-seed */
10677 : :
10678 : : static unsigned HOST_WIDE_INT
10679 : 600 : get_random_number (void)
10680 : : {
10681 : 600 : unsigned HOST_WIDE_INT ret = 0;
10682 : 600 : int fd;
10683 : :
10684 : 600 : fd = open ("/dev/urandom", O_RDONLY);
10685 : 600 : if (fd >= 0)
10686 : : {
10687 : 600 : read (fd, &ret, sizeof (HOST_WIDE_INT));
10688 : 600 : close (fd);
10689 : 600 : if (ret)
10690 : : return ret;
10691 : : }
10692 : :
10693 : : /* Get some more or less random data. */
10694 : : #ifdef HAVE_GETTIMEOFDAY
10695 : 0 : {
10696 : 0 : struct timeval tv;
10697 : :
10698 : 0 : gettimeofday (&tv, NULL);
10699 : 0 : ret = tv.tv_sec * 1000 + tv.tv_usec / 1000;
10700 : : }
10701 : : #else
10702 : : {
10703 : : time_t now = time (NULL);
10704 : :
10705 : : if (now != (time_t)-1)
10706 : : ret = (unsigned) now;
10707 : : }
10708 : : #endif
10709 : :
10710 : 0 : return ret ^ getpid ();
10711 : : }
10712 : :
10713 : : /* %:compare-debug-dump-opt spec function. Save the last argument,
10714 : : expected to be the last -fdump-final-insns option, or generate a
10715 : : temporary. */
10716 : :
10717 : : static const char *
10718 : 1193 : compare_debug_dump_opt_spec_function (int arg,
10719 : : const char **argv ATTRIBUTE_UNUSED)
10720 : : {
10721 : 1193 : char *ret;
10722 : 1193 : char *name;
10723 : 1193 : int which;
10724 : 1193 : static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
10725 : :
10726 : 1193 : if (arg != 0)
10727 : 0 : fatal_error (input_location,
10728 : : "too many arguments to %%:compare-debug-dump-opt");
10729 : :
10730 : 1193 : do_spec_2 ("%{fdump-final-insns=*:%*}", NULL);
10731 : 1193 : do_spec_1 (" ", 0, NULL);
10732 : :
10733 : 1193 : if (argbuf.length () > 0
10734 : 1193 : && strcmp (argv[argbuf.length () - 1], ".") != 0)
10735 : : {
10736 : 0 : if (!compare_debug)
10737 : : return NULL;
10738 : :
10739 : 0 : name = xstrdup (argv[argbuf.length () - 1]);
10740 : 0 : ret = NULL;
10741 : : }
10742 : : else
10743 : : {
10744 : 1193 : if (argbuf.length () > 0)
10745 : 6 : do_spec_2 ("%B.gkd", NULL);
10746 : 1187 : else if (!compare_debug)
10747 : : return NULL;
10748 : : else
10749 : 1187 : do_spec_2 ("%{!save-temps*:%g.gkd}%{save-temps*:%B.gkd}", NULL);
10750 : :
10751 : 1193 : do_spec_1 (" ", 0, NULL);
10752 : :
10753 : 1193 : gcc_assert (argbuf.length () > 0);
10754 : :
10755 : 1193 : name = xstrdup (argbuf.last ());
10756 : :
10757 : 1193 : char *arg = quote_spec (xstrdup (name));
10758 : 1193 : ret = concat ("-fdump-final-insns=", arg, NULL);
10759 : 1193 : free (arg);
10760 : : }
10761 : :
10762 : 1193 : which = compare_debug < 0;
10763 : 1193 : debug_check_temp_file[which] = name;
10764 : :
10765 : 1193 : if (!which)
10766 : : {
10767 : 600 : unsigned HOST_WIDE_INT value = get_random_number ();
10768 : :
10769 : 600 : sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
10770 : : }
10771 : :
10772 : 1193 : if (*random_seed)
10773 : : {
10774 : 1193 : char *tmp = ret;
10775 : 1193 : ret = concat ("%{!frandom-seed=*:-frandom-seed=", random_seed, "} ",
10776 : : ret, NULL);
10777 : 1193 : free (tmp);
10778 : : }
10779 : :
10780 : 1193 : if (which)
10781 : 593 : *random_seed = 0;
10782 : :
10783 : : return ret;
10784 : : }
10785 : :
10786 : : /* %:compare-debug-self-opt spec function. Expands to the options
10787 : : that are to be passed in the second compilation of
10788 : : compare-debug. */
10789 : :
10790 : : static const char *
10791 : 1198 : compare_debug_self_opt_spec_function (int arg,
10792 : : const char **argv ATTRIBUTE_UNUSED)
10793 : : {
10794 : 1198 : if (arg != 0)
10795 : 0 : fatal_error (input_location,
10796 : : "too many arguments to %%:compare-debug-self-opt");
10797 : :
10798 : 1198 : if (compare_debug >= 0)
10799 : : return NULL;
10800 : :
10801 : 599 : return concat ("\
10802 : : %<o %<MD %<MMD %<MF* %<MG %<MP %<MQ* %<MT* \
10803 : : %<fdump-final-insns=* -w -S -o %j \
10804 : : %{!fcompare-debug-second:-fcompare-debug-second} \
10805 : 599 : ", compare_debug_opt, NULL);
10806 : : }
10807 : :
10808 : : /* %:pass-through-libs spec function. Finds all -l options and input
10809 : : file names in the lib spec passed to it, and makes a list of them
10810 : : prepended with the plugin option to cause them to be passed through
10811 : : to the final link after all the new object files have been added. */
10812 : :
10813 : : const char *
10814 : 88296 : pass_through_libs_spec_func (int argc, const char **argv)
10815 : : {
10816 : 88296 : char *prepended = xstrdup (" ");
10817 : 88296 : int n;
10818 : : /* Shlemiel the painter's algorithm. Innately horrible, but at least
10819 : : we know that there will never be more than a handful of strings to
10820 : : concat, and it's only once per run, so it's not worth optimising. */
10821 : 849272 : for (n = 0; n < argc; n++)
10822 : : {
10823 : 760976 : char *old = prepended;
10824 : : /* Anything that isn't an option is a full path to an output
10825 : : file; pass it through if it ends in '.a'. Among options,
10826 : : pass only -l. */
10827 : 760976 : if (argv[n][0] == '-' && argv[n][1] == 'l')
10828 : : {
10829 : 488878 : const char *lopt = argv[n] + 2;
10830 : : /* Handle both joined and non-joined -l options. If for any
10831 : : reason there's a trailing -l with no joined or following
10832 : : arg just discard it. */
10833 : 488878 : if (!*lopt && ++n >= argc)
10834 : : break;
10835 : 488878 : else if (!*lopt)
10836 : 0 : lopt = argv[n];
10837 : 488878 : prepended = concat (prepended, "-plugin-opt=-pass-through=-l",
10838 : : lopt, " ", NULL);
10839 : 488878 : }
10840 : 272098 : else if (!strcmp (".a", argv[n] + strlen (argv[n]) - 2))
10841 : : {
10842 : 0 : prepended = concat (prepended, "-plugin-opt=-pass-through=",
10843 : : argv[n], " ", NULL);
10844 : : }
10845 : 760976 : if (prepended != old)
10846 : 488878 : free (old);
10847 : : }
10848 : 88296 : return prepended;
10849 : : }
10850 : :
10851 : : static bool
10852 : 500834 : not_actual_file_p (const char *name)
10853 : : {
10854 : 500834 : return (strcmp (name, "-") == 0
10855 : 500834 : || strcmp (name, HOST_BIT_BUCKET) == 0);
10856 : : }
10857 : :
10858 : : /* %:dumps spec function. Take an optional argument that overrides
10859 : : the default extension for -dumpbase and -dumpbase-ext.
10860 : : Return -dumpdir, -dumpbase and -dumpbase-ext, if needed. */
10861 : : const char *
10862 : 275790 : dumps_spec_func (int argc, const char **argv ATTRIBUTE_UNUSED)
10863 : : {
10864 : 275790 : const char *ext = dumpbase_ext;
10865 : 275790 : char *p;
10866 : :
10867 : 275790 : char *args[3] = { NULL, NULL, NULL };
10868 : 275790 : int nargs = 0;
10869 : :
10870 : : /* Do not compute a default for -dumpbase-ext when -dumpbase was
10871 : : given explicitly. */
10872 : 275790 : if (dumpbase && *dumpbase && !ext)
10873 : 275790 : ext = "";
10874 : :
10875 : 275790 : if (argc == 1)
10876 : : {
10877 : : /* Do not override the explicitly-specified -dumpbase-ext with
10878 : : the specs-provided overrider. */
10879 : 0 : if (!ext)
10880 : 0 : ext = argv[0];
10881 : : }
10882 : 275790 : else if (argc != 0)
10883 : 0 : fatal_error (input_location, "too many arguments for %%:dumps");
10884 : :
10885 : 275790 : if (dumpdir)
10886 : : {
10887 : 102391 : p = quote_spec_arg (xstrdup (dumpdir));
10888 : 102391 : args[nargs++] = concat (" -dumpdir ", p, NULL);
10889 : 102391 : free (p);
10890 : : }
10891 : :
10892 : 275790 : if (!ext)
10893 : 253722 : ext = input_basename + basename_length;
10894 : :
10895 : : /* Use the precomputed outbase, or compute dumpbase from
10896 : : input_basename, just like %b would. */
10897 : 275790 : char *base;
10898 : :
10899 : 275790 : if (dumpbase && *dumpbase)
10900 : : {
10901 : 22068 : base = xstrdup (dumpbase);
10902 : 22068 : p = base + outbase_length;
10903 : 22068 : gcc_checking_assert (strncmp (base, outbase, outbase_length) == 0);
10904 : 22068 : gcc_checking_assert (strcmp (p, ext) == 0);
10905 : : }
10906 : 253722 : else if (outbase_length)
10907 : : {
10908 : 155428 : base = xstrndup (outbase, outbase_length);
10909 : 155428 : p = NULL;
10910 : : }
10911 : : else
10912 : : {
10913 : 98294 : base = xstrndup (input_basename, suffixed_basename_length);
10914 : 98294 : p = base + basename_length;
10915 : : }
10916 : :
10917 : 275790 : if (compare_debug < 0 || !p || strcmp (p, ext) != 0)
10918 : : {
10919 : 593 : if (p)
10920 : 9 : *p = '\0';
10921 : :
10922 : 155437 : const char *gk;
10923 : 155437 : if (compare_debug < 0)
10924 : : gk = ".gk";
10925 : : else
10926 : 154844 : gk = "";
10927 : :
10928 : 155437 : p = concat (base, gk, ext, NULL);
10929 : :
10930 : 155437 : free (base);
10931 : 155437 : base = p;
10932 : : }
10933 : :
10934 : 275790 : base = quote_spec_arg (base);
10935 : 275790 : args[nargs++] = concat (" -dumpbase ", base, NULL);
10936 : 275790 : free (base);
10937 : :
10938 : 275790 : if (*ext)
10939 : : {
10940 : 252684 : p = quote_spec_arg (xstrdup (ext));
10941 : 252684 : args[nargs++] = concat (" -dumpbase-ext ", p, NULL);
10942 : 252684 : free (p);
10943 : : }
10944 : :
10945 : 275790 : const char *ret = concat (args[0], args[1], args[2], NULL);
10946 : 1182445 : while (nargs > 0)
10947 : 630865 : free (args[--nargs]);
10948 : :
10949 : 275790 : return ret;
10950 : : }
10951 : :
10952 : : /* Returns "" if ARGV[ARGC - 2] is greater than ARGV[ARGC-1].
10953 : : Otherwise, return NULL. */
10954 : :
10955 : : static const char *
10956 : 384350 : greater_than_spec_func (int argc, const char **argv)
10957 : : {
10958 : 384350 : char *converted;
10959 : :
10960 : 384350 : if (argc == 1)
10961 : : return NULL;
10962 : :
10963 : 276 : gcc_assert (argc >= 2);
10964 : :
10965 : 276 : long arg = strtol (argv[argc - 2], &converted, 10);
10966 : 276 : gcc_assert (converted != argv[argc - 2]);
10967 : :
10968 : 276 : long lim = strtol (argv[argc - 1], &converted, 10);
10969 : 276 : gcc_assert (converted != argv[argc - 1]);
10970 : :
10971 : 276 : if (arg > lim)
10972 : : return "";
10973 : :
10974 : : return NULL;
10975 : : }
10976 : :
10977 : : /* Returns "" if debug_info_level is greater than ARGV[ARGC-1].
10978 : : Otherwise, return NULL. */
10979 : :
10980 : : static const char *
10981 : 246676 : debug_level_greater_than_spec_func (int argc, const char **argv)
10982 : : {
10983 : 246676 : char *converted;
10984 : :
10985 : 246676 : if (argc != 1)
10986 : 0 : fatal_error (input_location,
10987 : : "wrong number of arguments to %%:debug-level-gt");
10988 : :
10989 : 246676 : long arg = strtol (argv[0], &converted, 10);
10990 : 246676 : gcc_assert (converted != argv[0]);
10991 : :
10992 : 246676 : if (debug_info_level > arg)
10993 : 44555 : return "";
10994 : :
10995 : : return NULL;
10996 : : }
10997 : :
10998 : : /* Returns "" if dwarf_version is greater than ARGV[ARGC-1].
10999 : : Otherwise, return NULL. */
11000 : :
11001 : : static const char *
11002 : 126183 : dwarf_version_greater_than_spec_func (int argc, const char **argv)
11003 : : {
11004 : 126183 : char *converted;
11005 : :
11006 : 126183 : if (argc != 1)
11007 : 0 : fatal_error (input_location,
11008 : : "wrong number of arguments to %%:dwarf-version-gt");
11009 : :
11010 : 126183 : long arg = strtol (argv[0], &converted, 10);
11011 : 126183 : gcc_assert (converted != argv[0]);
11012 : :
11013 : 126183 : if (dwarf_version > arg)
11014 : 125312 : return "";
11015 : :
11016 : : return NULL;
11017 : : }
11018 : :
11019 : : static void
11020 : 33677 : path_prefix_reset (path_prefix *prefix)
11021 : : {
11022 : 33677 : struct prefix_list *iter, *next;
11023 : 33677 : iter = prefix->plist;
11024 : 133624 : while (iter)
11025 : : {
11026 : 99947 : next = iter->next;
11027 : 99947 : free (const_cast <char *> (iter->prefix));
11028 : 99947 : XDELETE (iter);
11029 : 99947 : iter = next;
11030 : : }
11031 : 33677 : prefix->plist = 0;
11032 : 33677 : prefix->max_len = 0;
11033 : 33677 : }
11034 : :
11035 : : /* The function takes 3 arguments: OPTION name, file name and location
11036 : : where we search for Fortran modules.
11037 : : When the FILE is found by find_file, return OPTION=path_to_file. */
11038 : :
11039 : : static const char *
11040 : 30425 : find_fortran_preinclude_file (int argc, const char **argv)
11041 : : {
11042 : 30425 : char *result = NULL;
11043 : 30425 : if (argc != 3)
11044 : : return NULL;
11045 : :
11046 : 30425 : struct path_prefix prefixes = { 0, 0, "preinclude" };
11047 : :
11048 : : /* Search first for 'finclude' folder location for a header file
11049 : : installed by the compiler (similar to omp_lib.h). */
11050 : 30425 : add_prefix (&prefixes, argv[2], NULL, 0, 0, 0);
11051 : : #ifdef TOOL_INCLUDE_DIR
11052 : : /* Then search: <prefix>/<target>/<include>/finclude */
11053 : 30425 : add_prefix (&prefixes, TOOL_INCLUDE_DIR "/finclude/",
11054 : : NULL, 0, 0, 0);
11055 : : #endif
11056 : : #ifdef NATIVE_SYSTEM_HEADER_DIR
11057 : : /* Then search: <sysroot>/usr/include/finclude/<multilib> */
11058 : 30425 : add_sysrooted_hdrs_prefix (&prefixes, NATIVE_SYSTEM_HEADER_DIR "/finclude/",
11059 : : NULL, 0, 0, 0);
11060 : : #endif
11061 : :
11062 : 30425 : const char *path = find_a_file (&include_prefixes, argv[1], R_OK, false);
11063 : 30425 : if (path != NULL)
11064 : 0 : result = concat (argv[0], path, NULL);
11065 : : else
11066 : : {
11067 : 30425 : path = find_a_file (&prefixes, argv[1], R_OK, false);
11068 : 30425 : if (path != NULL)
11069 : 30425 : result = concat (argv[0], path, NULL);
11070 : : }
11071 : :
11072 : 30425 : path_prefix_reset (&prefixes);
11073 : 30425 : return result;
11074 : : }
11075 : :
11076 : : /* The function takes any number of arguments and joins them together.
11077 : :
11078 : : This seems to be necessary to build "-fjoined=foo.b" from "-fseparate foo.a"
11079 : : with a %{fseparate*:-fjoined=%.b$*} rule without adding undesired spaces:
11080 : : when doing $* replacement we first replace $* with the rest of the switch
11081 : : (in this case ""), and then add any arguments as arguments after the result,
11082 : : resulting in "-fjoined= foo.b". Using this function with e.g.
11083 : : %{fseparate*:-fjoined=%:join(%.b$*)} gets multiple words as separate argv
11084 : : elements instead of separated by spaces, and we paste them together. */
11085 : :
11086 : : static const char *
11087 : 39 : join_spec_func (int argc, const char **argv)
11088 : : {
11089 : 39 : if (argc == 1)
11090 : 0 : return argv[0];
11091 : 117 : for (int i = 0; i < argc; ++i)
11092 : 78 : obstack_grow (&obstack, argv[i], strlen (argv[i]));
11093 : 39 : obstack_1grow (&obstack, '\0');
11094 : 39 : return XOBFINISH (&obstack, const char *);
11095 : : }
11096 : :
11097 : : /* If any character in ORIG fits QUOTE_P (_, P), reallocate the string
11098 : : so as to precede every one of them with a backslash. Return the
11099 : : original string or the reallocated one. */
11100 : :
11101 : : static inline char *
11102 : 826349 : quote_string (char *orig, bool (*quote_p)(char, void *), void *p)
11103 : : {
11104 : 826349 : int len, number_of_space = 0;
11105 : :
11106 : 18962136 : for (len = 0; orig[len]; len++)
11107 : 18135787 : if (quote_p (orig[len], p))
11108 : 0 : number_of_space++;
11109 : :
11110 : 826349 : if (number_of_space)
11111 : : {
11112 : 0 : char *new_spec = (char *) xmalloc (len + number_of_space + 1);
11113 : 0 : int j, k;
11114 : 0 : for (j = 0, k = 0; j <= len; j++, k++)
11115 : : {
11116 : 0 : if (quote_p (orig[j], p))
11117 : 0 : new_spec[k++] = '\\';
11118 : 0 : new_spec[k] = orig[j];
11119 : : }
11120 : 0 : free (orig);
11121 : 0 : return new_spec;
11122 : : }
11123 : : else
11124 : : return orig;
11125 : : }
11126 : :
11127 : : /* Return true iff C is any of the characters convert_white_space
11128 : : should quote. */
11129 : :
11130 : : static inline bool
11131 : 12080194 : whitespace_to_convert_p (char c, void *)
11132 : : {
11133 : 12080194 : return (c == ' ' || c == '\t');
11134 : : }
11135 : :
11136 : : /* Insert backslash before spaces in ORIG (usually a file path), to
11137 : : avoid being broken by spec parser.
11138 : :
11139 : : This function is needed as do_spec_1 treats white space (' ' and '\t')
11140 : : as the end of an argument. But in case of -plugin /usr/gcc install/xxx.so,
11141 : : the file name should be treated as a single argument rather than being
11142 : : broken into multiple. Solution is to insert '\\' before the space in a
11143 : : file name.
11144 : :
11145 : : This function converts and only converts all occurrence of ' '
11146 : : to '\\' + ' ' and '\t' to '\\' + '\t'. For example:
11147 : : "a b" -> "a\\ b"
11148 : : "a b" -> "a\\ \\ b"
11149 : : "a\tb" -> "a\\\tb"
11150 : : "a\\ b" -> "a\\\\ b"
11151 : :
11152 : : orig: input null-terminating string that was allocated by xalloc. The
11153 : : memory it points to might be freed in this function. Behavior undefined
11154 : : if ORIG wasn't xalloced or was freed already at entry.
11155 : :
11156 : : Return: ORIG if no conversion needed. Otherwise a newly allocated string
11157 : : that was converted from ORIG. */
11158 : :
11159 : : static char *
11160 : 194300 : convert_white_space (char *orig)
11161 : : {
11162 : 194300 : return quote_string (orig, whitespace_to_convert_p, NULL);
11163 : : }
11164 : :
11165 : : /* Return true iff C matches any of the spec active characters. */
11166 : : static inline bool
11167 : 6055593 : quote_spec_char_p (char c, void *)
11168 : : {
11169 : 6055593 : switch (c)
11170 : : {
11171 : : case ' ':
11172 : : case '\t':
11173 : : case '\n':
11174 : : case '|':
11175 : : case '%':
11176 : : case '\\':
11177 : : return true;
11178 : :
11179 : 6055593 : default:
11180 : 6055593 : return false;
11181 : : }
11182 : : }
11183 : :
11184 : : /* Like convert_white_space, but deactivate all active spec chars by
11185 : : quoting them. */
11186 : :
11187 : : static inline char *
11188 : 632049 : quote_spec (char *orig)
11189 : : {
11190 : 1193 : return quote_string (orig, quote_spec_char_p, NULL);
11191 : : }
11192 : :
11193 : : /* Like quote_spec, but also turn an empty string into the spec for an
11194 : : empty argument. */
11195 : :
11196 : : static inline char *
11197 : 630865 : quote_spec_arg (char *orig)
11198 : : {
11199 : 630865 : if (!*orig)
11200 : : {
11201 : 9 : free (orig);
11202 : 9 : return xstrdup ("%\"");
11203 : : }
11204 : :
11205 : 630856 : return quote_spec (orig);
11206 : : }
11207 : :
11208 : : /* Restore all state within gcc.cc to the initial state, so that the driver
11209 : : code can be safely re-run in-process.
11210 : :
11211 : : Many const char * variables are referenced by static specs (see
11212 : : INIT_STATIC_SPEC above). These variables are restored to their default
11213 : : values by a simple loop over the static specs.
11214 : :
11215 : : For other variables, we directly restore them all to their initial
11216 : : values (often implicitly 0).
11217 : :
11218 : : Free the various obstacks in this file, along with "opts_obstack"
11219 : : from opts.cc.
11220 : :
11221 : : This function also restores any environment variables that were changed. */
11222 : :
11223 : : void
11224 : 1084 : driver::finalize ()
11225 : : {
11226 : 1084 : env.restore ();
11227 : 1084 : diagnostic_finish (global_dc);
11228 : :
11229 : 1084 : is_cpp_driver = 0;
11230 : 1084 : at_file_supplied = 0;
11231 : 1084 : print_help_list = 0;
11232 : 1084 : print_version = 0;
11233 : 1084 : verbose_only_flag = 0;
11234 : 1084 : print_subprocess_help = 0;
11235 : 1084 : use_ld = NULL;
11236 : 1084 : report_times_to_file = NULL;
11237 : 1084 : target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
11238 : 1084 : target_system_root_changed = 0;
11239 : 1084 : target_sysroot_suffix = 0;
11240 : 1084 : target_sysroot_hdrs_suffix = 0;
11241 : 1084 : save_temps_flag = SAVE_TEMPS_NONE;
11242 : 1084 : save_temps_overrides_dumpdir = false;
11243 : 1084 : dumpdir_trailing_dash_added = false;
11244 : 1084 : free (dumpdir);
11245 : 1084 : free (dumpbase);
11246 : 1084 : free (dumpbase_ext);
11247 : 1084 : free (outbase);
11248 : 1084 : dumpdir = dumpbase = dumpbase_ext = outbase = NULL;
11249 : 1084 : dumpdir_length = outbase_length = 0;
11250 : 1084 : spec_machine = DEFAULT_TARGET_MACHINE;
11251 : 1084 : greatest_status = 1;
11252 : :
11253 : 1084 : obstack_free (&obstack, NULL);
11254 : 1084 : obstack_free (&opts_obstack, NULL); /* in opts.cc */
11255 : 1084 : obstack_free (&collect_obstack, NULL);
11256 : :
11257 : 1084 : link_command_spec = LINK_COMMAND_SPEC;
11258 : :
11259 : 1084 : obstack_free (&multilib_obstack, NULL);
11260 : :
11261 : 1084 : user_specs_head = NULL;
11262 : 1084 : user_specs_tail = NULL;
11263 : :
11264 : : /* Within the "compilers" vec, the fields "suffix" and "spec" were
11265 : : statically allocated for the default compilers, but dynamically
11266 : : allocated for additional compilers. Delete them for the latter. */
11267 : 1084 : for (int i = n_default_compilers; i < n_compilers; i++)
11268 : : {
11269 : 0 : free (const_cast <char *> (compilers[i].suffix));
11270 : 0 : free (const_cast <char *> (compilers[i].spec));
11271 : : }
11272 : 1084 : XDELETEVEC (compilers);
11273 : 1084 : compilers = NULL;
11274 : 1084 : n_compilers = 0;
11275 : :
11276 : 1084 : linker_options.truncate (0);
11277 : 1084 : assembler_options.truncate (0);
11278 : 1084 : preprocessor_options.truncate (0);
11279 : :
11280 : 1084 : path_prefix_reset (&exec_prefixes);
11281 : 1084 : path_prefix_reset (&startfile_prefixes);
11282 : 1084 : path_prefix_reset (&include_prefixes);
11283 : :
11284 : 1084 : machine_suffix = 0;
11285 : 1084 : just_machine_suffix = 0;
11286 : 1084 : gcc_exec_prefix = 0;
11287 : 1084 : gcc_libexec_prefix = 0;
11288 : 1084 : set_static_spec_shared (&md_exec_prefix, MD_EXEC_PREFIX);
11289 : 1084 : set_static_spec_shared (&md_startfile_prefix, MD_STARTFILE_PREFIX);
11290 : 1084 : set_static_spec_shared (&md_startfile_prefix_1, MD_STARTFILE_PREFIX_1);
11291 : 1084 : multilib_dir = 0;
11292 : 1084 : multilib_os_dir = 0;
11293 : 1084 : multiarch_dir = 0;
11294 : :
11295 : : /* Free any specs dynamically-allocated by set_spec.
11296 : : These will be at the head of the list, before the
11297 : : statically-allocated ones. */
11298 : 1084 : if (specs)
11299 : : {
11300 : 2168 : while (specs != static_specs)
11301 : : {
11302 : 1084 : spec_list *next = specs->next;
11303 : 1084 : free (const_cast <char *> (specs->name));
11304 : 1084 : XDELETE (specs);
11305 : 1084 : specs = next;
11306 : : }
11307 : 1084 : specs = 0;
11308 : : }
11309 : 49864 : for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
11310 : : {
11311 : 48780 : spec_list *sl = &static_specs[i];
11312 : 48780 : if (sl->alloc_p)
11313 : : {
11314 : 43370 : free (const_cast <char *> (*(sl->ptr_spec)));
11315 : 43370 : sl->alloc_p = false;
11316 : : }
11317 : 48780 : *(sl->ptr_spec) = sl->default_ptr;
11318 : : }
11319 : : #ifdef EXTRA_SPECS
11320 : 1084 : extra_specs = NULL;
11321 : : #endif
11322 : :
11323 : 1084 : processing_spec_function = 0;
11324 : :
11325 : 1084 : clear_args ();
11326 : :
11327 : 1084 : have_c = 0;
11328 : 1084 : have_o = 0;
11329 : :
11330 : 1084 : temp_names = NULL;
11331 : 1084 : execution_count = 0;
11332 : 1084 : signal_count = 0;
11333 : :
11334 : 1084 : temp_filename = NULL;
11335 : 1084 : temp_filename_length = 0;
11336 : 1084 : always_delete_queue = NULL;
11337 : 1084 : failure_delete_queue = NULL;
11338 : :
11339 : 1084 : XDELETEVEC (switches);
11340 : 1084 : switches = NULL;
11341 : 1084 : n_switches = 0;
11342 : 1084 : n_switches_alloc = 0;
11343 : :
11344 : 1084 : compare_debug = 0;
11345 : 1084 : compare_debug_second = 0;
11346 : 1084 : compare_debug_opt = NULL;
11347 : 3252 : for (int i = 0; i < 2; i++)
11348 : : {
11349 : 2168 : switches_debug_check[i] = NULL;
11350 : 2168 : n_switches_debug_check[i] = 0;
11351 : 2168 : n_switches_alloc_debug_check[i] = 0;
11352 : 2168 : debug_check_temp_file[i] = NULL;
11353 : : }
11354 : :
11355 : 1084 : XDELETEVEC (infiles);
11356 : 1084 : infiles = NULL;
11357 : 1084 : n_infiles = 0;
11358 : 1084 : n_infiles_alloc = 0;
11359 : :
11360 : 1084 : combine_inputs = false;
11361 : 1084 : added_libraries = 0;
11362 : 1084 : XDELETEVEC (outfiles);
11363 : 1084 : outfiles = NULL;
11364 : 1084 : spec_lang = 0;
11365 : 1084 : last_language_n_infiles = 0;
11366 : 1084 : gcc_input_filename = NULL;
11367 : 1084 : input_file_number = 0;
11368 : 1084 : input_filename_length = 0;
11369 : 1084 : basename_length = 0;
11370 : 1084 : suffixed_basename_length = 0;
11371 : 1084 : input_basename = NULL;
11372 : 1084 : input_suffix = NULL;
11373 : : /* We don't need to purge "input_stat", just to unset "input_stat_set". */
11374 : 1084 : input_stat_set = 0;
11375 : 1084 : input_file_compiler = NULL;
11376 : 1084 : arg_going = 0;
11377 : 1084 : delete_this_arg = 0;
11378 : 1084 : this_is_output_file = 0;
11379 : 1084 : this_is_library_file = 0;
11380 : 1084 : this_is_linker_script = 0;
11381 : 1084 : input_from_pipe = 0;
11382 : 1084 : suffix_subst = NULL;
11383 : :
11384 : 1084 : XDELETEVEC (mdswitches);
11385 : 1084 : mdswitches = NULL;
11386 : 1084 : n_mdswitches = 0;
11387 : :
11388 : 1084 : used_arg.finalize ();
11389 : 1084 : }
11390 : :
11391 : : /* PR jit/64810.
11392 : : Targets can provide configure-time default options in
11393 : : OPTION_DEFAULT_SPECS. The jit needs to access these, but
11394 : : they are expressed in the spec language.
11395 : :
11396 : : Run just enough of the driver to be able to expand these
11397 : : specs, and then call the callback CB on each
11398 : : such option. The options strings are *without* a leading
11399 : : '-' character e.g. ("march=x86-64"). Finally, clean up. */
11400 : :
11401 : : void
11402 : 123 : driver_get_configure_time_options (void (*cb) (const char *option,
11403 : : void *user_data),
11404 : : void *user_data)
11405 : : {
11406 : 123 : size_t i;
11407 : :
11408 : 123 : obstack_init (&obstack);
11409 : 123 : init_opts_obstack ();
11410 : 123 : n_switches = 0;
11411 : :
11412 : 1230 : for (i = 0; i < ARRAY_SIZE (option_default_specs); i++)
11413 : 1107 : do_option_spec (option_default_specs[i].name,
11414 : 1107 : option_default_specs[i].spec);
11415 : :
11416 : 369 : for (i = 0; (int) i < n_switches; i++)
11417 : : {
11418 : 246 : gcc_assert (switches[i].part1);
11419 : 246 : (*cb) (switches[i].part1, user_data);
11420 : : }
11421 : :
11422 : 123 : obstack_free (&opts_obstack, NULL);
11423 : 123 : obstack_free (&obstack, NULL);
11424 : 123 : n_switches = 0;
11425 : 123 : }
|