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 : 287863 : env_manager::init (bool can_restore, bool debug)
100 : : {
101 : 287863 : m_can_restore = can_restore;
102 : 287863 : m_debug = debug;
103 : 287863 : }
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 : 1438418 : env_manager::get (const char *name)
111 : : {
112 : 1438418 : const char *result = ::getenv (name);
113 : 1438418 : if (m_debug)
114 : 0 : fprintf (stderr, "env_manager::getenv (%s) -> %s\n", name, result);
115 : 1438418 : 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 : 1707556 : env_manager::xput (const char *string)
125 : : {
126 : 1707556 : if (m_debug)
127 : 0 : fprintf (stderr, "env_manager::xput (%s)\n", string);
128 : 1707556 : if (verbose_flag)
129 : 5576 : fnotice (stderr, "%s\n", string);
130 : :
131 : 1707556 : 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 : 1707556 : ::putenv (CONST_CAST (char *, string));
146 : 1707556 : }
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 : 27327761 : skip_whitespace (char *p)
1536 : : {
1537 : 63337715 : while (1)
1538 : : {
1539 : : /* A fully-blank line is a delimiter in the SPEC file and shouldn't
1540 : : be considered whitespace. */
1541 : 63337715 : if (p[0] == '\n' && p[1] == '\n' && p[2] == '\n')
1542 : 4585232 : return p + 1;
1543 : 58752483 : else if (*p == '\n' || *p == ' ' || *p == '\t')
1544 : 35895449 : p++;
1545 : 22857034 : else if (*p == '#')
1546 : : {
1547 : 3528320 : while (*p != '\n')
1548 : 3413815 : p++;
1549 : 114505 : 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 : 1001 : init_gcc_specs (struct obstack *obstack, const char *shared_name,
1813 : : const char *static_name, const char *eh_name)
1814 : : {
1815 : 1001 : char *buf;
1816 : :
1817 : : #if USE_LD_AS_NEEDED
1818 : 1001 : 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 : 1001 : obstack_grow (obstack, buf, strlen (buf));
1846 : 1001 : free (buf);
1847 : 1001 : }
1848 : : #endif /* ENABLE_SHARED_LIBGCC */
1849 : :
1850 : : /* Initialize the specs lookup routines. */
1851 : :
1852 : : static void
1853 : 1001 : init_spec (void)
1854 : : {
1855 : 1001 : struct spec_list *next = (struct spec_list *) 0;
1856 : 1001 : struct spec_list *sl = (struct spec_list *) 0;
1857 : 1001 : int i;
1858 : :
1859 : 1001 : if (specs)
1860 : : return; /* Already initialized. */
1861 : :
1862 : 1001 : if (verbose_flag)
1863 : 80 : fnotice (stderr, "Using built-in specs.\n");
1864 : :
1865 : : #ifdef EXTRA_SPECS
1866 : 1001 : extra_specs = XCNEWVEC (struct spec_list, ARRAY_SIZE (extra_specs_1));
1867 : :
1868 : 2002 : for (i = ARRAY_SIZE (extra_specs_1) - 1; i >= 0; i--)
1869 : : {
1870 : 1001 : sl = &extra_specs[i];
1871 : 1001 : sl->name = extra_specs_1[i].name;
1872 : 1001 : sl->ptr = extra_specs_1[i].ptr;
1873 : 1001 : sl->next = next;
1874 : 1001 : sl->name_len = strlen (sl->name);
1875 : 1001 : sl->ptr_spec = &sl->ptr;
1876 : 1001 : gcc_assert (sl->ptr_spec != NULL);
1877 : 1001 : sl->default_ptr = sl->ptr;
1878 : 1001 : next = sl;
1879 : : }
1880 : : #endif
1881 : :
1882 : 46046 : for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
1883 : : {
1884 : 45045 : sl = &static_specs[i];
1885 : 45045 : sl->next = next;
1886 : 45045 : 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 : 1001 : {
1918 : 1001 : const char *p = libgcc_spec;
1919 : 1001 : 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 : 2002 : while (*p)
1924 : : {
1925 : 1001 : if (in_sep && *p == '-' && startswith (p, "-lgcc"))
1926 : : {
1927 : 1001 : 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 : 1001 : p += 5;
1946 : 1001 : 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 : 1001 : obstack_1grow (&obstack, '\0');
1972 : 1001 : 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 : 1001 : 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 : 1001 : obstack_grow0 (&obstack, link_spec, strlen (link_spec));
2006 : 1001 : link_spec = XOBFINISH (&obstack, const char *);
2007 : : #endif
2008 : :
2009 : 1001 : 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 : 201575 : set_static_spec (const char **spec, const char *value, bool alloc_p)
2018 : : {
2019 : 201575 : struct spec_list *sl = NULL;
2020 : :
2021 : 6960232 : for (unsigned i = 0; i < ARRAY_SIZE (static_specs); i++)
2022 : : {
2023 : 6960232 : if (static_specs[i].ptr_spec == spec)
2024 : : {
2025 : 201575 : sl = static_specs + i;
2026 : 201575 : break;
2027 : : }
2028 : : }
2029 : :
2030 : 0 : gcc_assert (sl);
2031 : :
2032 : 201575 : if (sl->alloc_p)
2033 : : {
2034 : 201575 : const char *old = *spec;
2035 : 201575 : free (const_cast <char *> (old));
2036 : : }
2037 : :
2038 : 201575 : *spec = value;
2039 : 201575 : sl->alloc_p = alloc_p;
2040 : 201575 : }
2041 : :
2042 : : /* Update a static spec to a new string, taking ownership of that
2043 : : string's memory. */
2044 : 104664 : 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 : 96911 : 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 : 13229507 : set_spec (const char *name, const char *spec, bool user_p)
2063 : : {
2064 : 13229507 : struct spec_list *sl;
2065 : 13229507 : const char *old_spec;
2066 : 13229507 : int name_len = strlen (name);
2067 : 13229507 : int i;
2068 : :
2069 : : /* If this is the first call, initialize the statically allocated specs. */
2070 : 13229507 : if (!specs)
2071 : : {
2072 : : struct spec_list *next = (struct spec_list *) 0;
2073 : 13182542 : for (i = ARRAY_SIZE (static_specs) - 1; i >= 0; i--)
2074 : : {
2075 : 12895965 : sl = &static_specs[i];
2076 : 12895965 : sl->next = next;
2077 : 12895965 : next = sl;
2078 : : }
2079 : 286577 : specs = sl;
2080 : : }
2081 : :
2082 : : /* See if the spec already exists. */
2083 : 311316504 : for (sl = specs; sl; sl = sl->next)
2084 : 311009143 : if (name_len == sl->name_len && !strcmp (sl->name, name))
2085 : : break;
2086 : :
2087 : 13229507 : if (!sl)
2088 : : {
2089 : : /* Not found - make it. */
2090 : 307361 : sl = XNEW (struct spec_list);
2091 : 307361 : sl->name = xstrdup (name);
2092 : 307361 : sl->name_len = name_len;
2093 : 307361 : sl->ptr_spec = &sl->ptr;
2094 : 307361 : sl->alloc_p = 0;
2095 : 307361 : *(sl->ptr_spec) = "";
2096 : 307361 : sl->next = specs;
2097 : 307361 : sl->default_ptr = NULL;
2098 : 307361 : specs = sl;
2099 : : }
2100 : :
2101 : 13229507 : old_spec = *(sl->ptr_spec);
2102 : 13229507 : *(sl->ptr_spec) = ((spec[0] == '+' && ISSPACE ((unsigned char)spec[1]))
2103 : 1 : ? concat (old_spec, spec + 1, NULL)
2104 : 13229506 : : 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 : 13229507 : if (old_spec && sl->alloc_p)
2113 : 5490 : free (CONST_CAST (char *, old_spec));
2114 : :
2115 : 13229507 : sl->user_p = user_p;
2116 : 13229507 : sl->alloc_p = true;
2117 : 13229507 : }
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 : 2291508 : alloc_args (void)
2173 : : {
2174 : 2291508 : argbuf.create (10);
2175 : 2291508 : at_file_argbuf.create (10);
2176 : 2291508 : }
2177 : :
2178 : : /* Clear out the vector of arguments (after a command is executed). */
2179 : :
2180 : : static void
2181 : 5393521 : clear_args (void)
2182 : : {
2183 : 5393521 : argbuf.truncate (0);
2184 : 5393521 : at_file_argbuf.truncate (0);
2185 : 5393521 : }
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 : 18567355 : store_arg (const char *arg, int delete_always, int delete_failure)
2196 : : {
2197 : 18567355 : if (in_at_file)
2198 : 13487 : at_file_argbuf.safe_push (arg);
2199 : : else
2200 : 18553868 : argbuf.safe_push (arg);
2201 : :
2202 : 18567355 : if (delete_always || delete_failure)
2203 : : {
2204 : 508638 : const char *p;
2205 : : /* If the temporary file we should delete is specified as
2206 : : part of a joined argument extract the filename. */
2207 : 508638 : if (arg[0] == '-'
2208 : 508638 : && (p = strrchr (arg, '=')))
2209 : 88214 : arg = p + 1;
2210 : 508638 : record_temp_file (arg, delete_always, delete_failure);
2211 : : }
2212 : 18567355 : }
2213 : :
2214 : : /* Open a temporary @file into which subsequent arguments will be stored. */
2215 : :
2216 : : static void
2217 : 12466 : open_at_file (void)
2218 : : {
2219 : 12466 : if (in_at_file)
2220 : 0 : fatal_error (input_location, "cannot open nested response file");
2221 : : else
2222 : 12466 : in_at_file = true;
2223 : 12466 : }
2224 : :
2225 : : /* Create a temporary @file name. */
2226 : :
2227 : 12456 : static char *make_at_file (void)
2228 : : {
2229 : 12456 : static int fileno = 0;
2230 : 12456 : char filename[20];
2231 : 12456 : const char *base, *ext;
2232 : :
2233 : 12456 : if (!save_temps_flag)
2234 : 12414 : 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 : 12466 : close_at_file (void)
2255 : : {
2256 : 12466 : if (!in_at_file)
2257 : 0 : fatal_error (input_location, "cannot close nonexistent response file");
2258 : :
2259 : 12466 : in_at_file = false;
2260 : :
2261 : 12466 : const unsigned int n_args = at_file_argbuf.length ();
2262 : 12466 : if (n_args == 0)
2263 : : return;
2264 : :
2265 : 12456 : char **argv = XALLOCAVEC (char *, n_args + 1);
2266 : 12456 : char *temp_file = make_at_file ();
2267 : 12456 : char *at_argument = concat ("@", temp_file, NULL);
2268 : 12456 : FILE *f = fopen (temp_file, "w");
2269 : 12456 : int status;
2270 : 12456 : unsigned int i;
2271 : :
2272 : : /* Copy the strings over. */
2273 : 38399 : for (i = 0; i < n_args; i++)
2274 : 13487 : argv[i] = CONST_CAST (char *, at_file_argbuf[i]);
2275 : 12456 : argv[i] = NULL;
2276 : :
2277 : 12456 : at_file_argbuf.truncate (0);
2278 : :
2279 : 12456 : if (f == NULL)
2280 : 0 : fatal_error (input_location, "could not open temporary response file %s",
2281 : : temp_file);
2282 : :
2283 : 12456 : status = writeargv (argv, f);
2284 : :
2285 : 12456 : if (status)
2286 : 0 : fatal_error (input_location,
2287 : : "could not write to temporary response file %s",
2288 : : temp_file);
2289 : :
2290 : 12456 : status = fclose (f);
2291 : :
2292 : 12456 : if (status == EOF)
2293 : 0 : fatal_error (input_location, "could not close temporary response file %s",
2294 : : temp_file);
2295 : :
2296 : 12456 : store_arg (at_argument, 0, 0);
2297 : :
2298 : 12456 : 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 : 316285 : load_specs (const char *filename)
2307 : : {
2308 : 316285 : int desc;
2309 : 316285 : int readlen;
2310 : 316285 : struct stat statbuf;
2311 : 316285 : char *buffer;
2312 : 316285 : char *buffer_p;
2313 : 316285 : char *specs;
2314 : 316285 : char *specs_p;
2315 : :
2316 : 316285 : if (verbose_flag)
2317 : 1190 : fnotice (stderr, "Reading specs from %s\n", filename);
2318 : :
2319 : : /* Open and stat the file. */
2320 : 316285 : desc = open (filename, O_RDONLY, 0);
2321 : 316285 : 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 : 316284 : if (stat (filename, &statbuf) < 0)
2329 : 0 : goto failed;
2330 : :
2331 : : /* Read contents of file into BUFFER. */
2332 : 316284 : buffer = XNEWVEC (char, statbuf.st_size + 1);
2333 : 316284 : readlen = read (desc, buffer, (unsigned) statbuf.st_size);
2334 : 316284 : if (readlen < 0)
2335 : 0 : goto failed;
2336 : 316284 : buffer[readlen] = 0;
2337 : 316284 : close (desc);
2338 : :
2339 : 316284 : specs = XNEWVEC (char, readlen + 1);
2340 : 316284 : specs_p = specs;
2341 : 2869622570 : for (buffer_p = buffer; buffer_p && *buffer_p; buffer_p++)
2342 : : {
2343 : 2869306286 : int skip = 0;
2344 : 2869306286 : char c = *buffer_p;
2345 : 2869306286 : 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 : 2869306286 : *specs_p++ = c;
2356 : : }
2357 : 316284 : *specs_p = '\0';
2358 : :
2359 : 316284 : free (buffer);
2360 : 316284 : 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 : 316285 : read_specs (const char *filename, bool main_p, bool user_p)
2376 : : {
2377 : 316285 : char *buffer;
2378 : 316285 : char *p;
2379 : :
2380 : 316285 : buffer = load_specs (filename);
2381 : :
2382 : : /* Scan BUFFER for specs, putting them in the vector. */
2383 : 316285 : p = buffer;
2384 : 13832368 : while (1)
2385 : : {
2386 : 13832368 : char *suffix;
2387 : 13832368 : char *spec;
2388 : 13832368 : char *in, *out, *p1, *p2, *p3;
2389 : :
2390 : : /* Advance P in BUFFER to the next nonblank nocomment line. */
2391 : 13832368 : p = skip_whitespace (p);
2392 : 13832368 : 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 : 13516084 : if (*p == '%' && !main_p)
2399 : : {
2400 : 413820 : p1 = p;
2401 : 413820 : while (*p && *p != '\n')
2402 : 393129 : p++;
2403 : :
2404 : : /* Skip '\n'. */
2405 : 20691 : p++;
2406 : :
2407 : 20691 : if (startswith (p1, "%include")
2408 : 20691 : && (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 : 20691 : else if (startswith (p1, "%include_noerr")
2428 : 20691 : && (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 : 20691 : else if (startswith (p1, "%rename")
2451 : 20691 : && (p1[sizeof "%rename" - 1] == ' '
2452 : 0 : || p1[sizeof "%rename" - 1] == '\t'))
2453 : : {
2454 : 20691 : int name_len;
2455 : 20691 : struct spec_list *sl;
2456 : 20691 : struct spec_list *newsl;
2457 : :
2458 : : /* Get original name. */
2459 : 20691 : p1 += sizeof "%rename";
2460 : 20691 : while (*p1 == ' ' || *p1 == '\t')
2461 : 0 : p1++;
2462 : :
2463 : 20691 : 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 : 82764 : while (*p2 && !ISSPACE ((unsigned char) *p2))
2470 : 62073 : p2++;
2471 : :
2472 : 20691 : if (*p2 != ' ' && *p2 != '\t')
2473 : 0 : fatal_error (input_location,
2474 : : "specs %%rename syntax malformed after "
2475 : : "%td characters", p2 - buffer);
2476 : :
2477 : 20691 : name_len = p2 - p1;
2478 : 20691 : *p2++ = '\0';
2479 : 20691 : while (*p2 == ' ' || *p2 == '\t')
2480 : 0 : p2++;
2481 : :
2482 : 20691 : 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 : 165528 : while (*p3 && !ISSPACE ((unsigned char) *p3))
2490 : 144837 : p3++;
2491 : :
2492 : 20691 : if (p3 != p - 1)
2493 : 0 : fatal_error (input_location,
2494 : : "specs %%rename syntax malformed after "
2495 : : "%td characters", p3 - buffer);
2496 : 20691 : *p3 = '\0';
2497 : :
2498 : 413820 : for (sl = specs; sl; sl = sl->next)
2499 : 413820 : if (name_len == sl->name_len && !strcmp (sl->name, p1))
2500 : : break;
2501 : :
2502 : 20691 : if (!sl)
2503 : 0 : fatal_error (input_location,
2504 : : "specs %s spec was not found to be renamed", p1);
2505 : :
2506 : 20691 : if (strcmp (p1, p2) == 0)
2507 : 0 : continue;
2508 : :
2509 : 972477 : for (newsl = specs; newsl; newsl = newsl->next)
2510 : 951786 : 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 : 20691 : 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 : 20691 : set_spec (p2, *(sl->ptr_spec), user_p);
2525 : 20691 : if (sl->alloc_p)
2526 : 20691 : free (CONST_CAST (char *, *(sl->ptr_spec)));
2527 : :
2528 : 20691 : *(sl->ptr_spec) = "";
2529 : 20691 : sl->alloc_p = 0;
2530 : 20691 : continue;
2531 : 20691 : }
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 : 185293850 : while (*p1 && *p1 != ':' && *p1 != '\n')
2541 : 171798457 : p1++;
2542 : :
2543 : : /* The colon shouldn't be missing. */
2544 : 13495393 : 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 : 13495393 : while (p2 > buffer && (p2[-1] == ' ' || p2[-1] == '\t'))
2552 : 0 : p2--;
2553 : :
2554 : : /* Copy the suffix to a string. */
2555 : 13495393 : suffix = save_string (p, p2 - p);
2556 : : /* Find the next line. */
2557 : 13495393 : p = skip_whitespace (p1 + 1);
2558 : 13495393 : 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 : 2653085008 : while (*p1 && !(*p1 == '\n' && (p1[1] == '\n' || p1[1] == '\0')))
2566 : 2639589615 : p1++;
2567 : :
2568 : : /* Specs end at the blank line and do not include the newline. */
2569 : 13495393 : spec = save_string (p, p1 - p);
2570 : 13495393 : p = p1;
2571 : :
2572 : : /* Delete backslash-newline sequences from the spec. */
2573 : 13495393 : in = spec;
2574 : 13495393 : out = spec;
2575 : 2666580399 : while (*in != 0)
2576 : : {
2577 : 2639589613 : if (in[0] == '\\' && in[1] == '\n')
2578 : 2 : in += 2;
2579 : 2639589611 : else if (in[0] == '#')
2580 : 0 : while (*in && *in != '\n')
2581 : 0 : in++;
2582 : :
2583 : : else
2584 : 2639589611 : *out++ = *in++;
2585 : : }
2586 : 13495393 : *out = 0;
2587 : :
2588 : 13495393 : if (suffix[0] == '*')
2589 : : {
2590 : 13495393 : if (! strcmp (suffix, "*link_command"))
2591 : 286577 : link_command_spec = spec;
2592 : : else
2593 : : {
2594 : 13208816 : set_spec (suffix + 1, spec, user_p);
2595 : 13208816 : 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 : 13495393 : if (*suffix == 0)
2611 : 0 : link_command_spec = spec;
2612 : : }
2613 : :
2614 : 316284 : if (link_command_spec == 0)
2615 : 0 : fatal_error (input_location, "spec file has no spec for linking");
2616 : :
2617 : 316284 : XDELETEVEC (buffer);
2618 : 316284 : }
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 : 685533 : record_temp_file (const char *filename, int always_delete, int fail_delete)
2661 : : {
2662 : 685533 : char *const name = xstrdup (filename);
2663 : :
2664 : 685533 : if (always_delete)
2665 : : {
2666 : 518290 : struct temp_file *temp;
2667 : 897716 : for (temp = always_delete_queue; temp; temp = temp->next)
2668 : 541122 : if (! filename_cmp (name, temp->name))
2669 : : {
2670 : 161696 : free (name);
2671 : 161696 : goto already1;
2672 : : }
2673 : :
2674 : 356594 : temp = XNEW (struct temp_file);
2675 : 356594 : temp->next = always_delete_queue;
2676 : 356594 : temp->name = name;
2677 : 356594 : always_delete_queue = temp;
2678 : :
2679 : 685533 : already1:;
2680 : : }
2681 : :
2682 : 685533 : if (fail_delete)
2683 : : {
2684 : 273862 : struct temp_file *temp;
2685 : 278713 : for (temp = failure_delete_queue; temp; temp = temp->next)
2686 : 4940 : if (! filename_cmp (name, temp->name))
2687 : : {
2688 : 89 : free (name);
2689 : 89 : goto already2;
2690 : : }
2691 : :
2692 : 273773 : temp = XNEW (struct temp_file);
2693 : 273773 : temp->next = failure_delete_queue;
2694 : 273773 : temp->name = name;
2695 : 273773 : failure_delete_queue = temp;
2696 : :
2697 : 685533 : already2:;
2698 : : }
2699 : 685533 : }
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 : 378553 : delete_if_ordinary (const char *name)
2716 : : {
2717 : 378553 : 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 : 378553 : DELETE_IF_ORDINARY (name, st, verbose_flag);
2731 : 378553 : }
2732 : :
2733 : : static void
2734 : 561057 : delete_temp_files (void)
2735 : : {
2736 : 561057 : struct temp_file *temp;
2737 : :
2738 : 917651 : for (temp = always_delete_queue; temp; temp = temp->next)
2739 : 356594 : delete_if_ordinary (temp->name);
2740 : 561057 : always_delete_queue = 0;
2741 : 561057 : }
2742 : :
2743 : : /* Delete all the files to be deleted on error. */
2744 : :
2745 : : static void
2746 : 55107 : delete_failure_queue (void)
2747 : : {
2748 : 55107 : struct temp_file *temp;
2749 : :
2750 : 77066 : for (temp = failure_delete_queue; temp; temp = temp->next)
2751 : 21959 : delete_if_ordinary (temp->name);
2752 : 55107 : }
2753 : :
2754 : : static void
2755 : 526095 : clear_failure_queue (void)
2756 : : {
2757 : 526095 : failure_delete_queue = 0;
2758 : 526095 : }
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 : 2741999 : 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 : 2741999 : struct prefix_list *pl;
2781 : 2741999 : const char *multi_dir = NULL;
2782 : 2741999 : const char *multi_os_dir = NULL;
2783 : 2741999 : const char *multiarch_suffix = NULL;
2784 : 2741999 : const char *multi_suffix;
2785 : 2741999 : const char *just_multi_suffix;
2786 : 2741999 : char *path = NULL;
2787 : 2741999 : void *ret = NULL;
2788 : 2741999 : bool skip_multi_dir = false;
2789 : 2741999 : bool skip_multi_os_dir = false;
2790 : :
2791 : 2741999 : multi_suffix = machine_suffix;
2792 : 2741999 : just_multi_suffix = just_machine_suffix;
2793 : 2741999 : 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 : 1192140 : if (do_multi && multilib_os_dir && strcmp (multilib_os_dir, ".") != 0)
2800 : 904561 : multi_os_dir = concat (multilib_os_dir, dir_separator_str, NULL);
2801 : 2741999 : if (multiarch_dir)
2802 : 0 : multiarch_suffix = concat (multiarch_dir, dir_separator_str, NULL);
2803 : :
2804 : 3151677 : while (1)
2805 : : {
2806 : 3151677 : size_t multi_dir_len = 0;
2807 : 3151677 : size_t multi_os_dir_len = 0;
2808 : 3151677 : size_t multiarch_len = 0;
2809 : 3151677 : size_t suffix_len;
2810 : 3151677 : size_t just_suffix_len;
2811 : 3151677 : size_t len;
2812 : :
2813 : 3151677 : if (multi_dir)
2814 : 15698 : multi_dir_len = strlen (multi_dir);
2815 : 3151677 : if (multi_os_dir)
2816 : 904561 : multi_os_dir_len = strlen (multi_os_dir);
2817 : 3151677 : if (multiarch_suffix)
2818 : 0 : multiarch_len = strlen (multiarch_suffix);
2819 : 3151677 : suffix_len = strlen (multi_suffix);
2820 : 3151677 : just_suffix_len = strlen (just_multi_suffix);
2821 : :
2822 : 3151677 : if (path == NULL)
2823 : : {
2824 : 2741999 : len = paths->max_len + extra_space + 1;
2825 : 2741999 : len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
2826 : 2741999 : path = XNEWVEC (char, len);
2827 : : }
2828 : :
2829 : 12348657 : for (pl = paths->plist; pl != 0; pl = pl->next)
2830 : : {
2831 : 10819519 : len = strlen (pl->prefix);
2832 : 10819519 : memcpy (path, pl->prefix, len);
2833 : :
2834 : : /* Look first in MACHINE/VERSION subdirectory. */
2835 : 10819519 : if (!skip_multi_dir)
2836 : : {
2837 : 7921056 : memcpy (path + len, multi_suffix, suffix_len + 1);
2838 : 7921056 : ret = callback (path, callback_info);
2839 : 7921056 : 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 : 7921056 : if (!skip_multi_dir
2846 : 7921056 : && 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 : 7921056 : if (!skip_multi_dir
2856 : 7921056 : && !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 : 10819519 : if (!pl->require_machine_suffix
2866 : 17212663 : && !(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
2867 : : {
2868 : 9674022 : const char *this_multi;
2869 : 9674022 : size_t this_multi_len;
2870 : :
2871 : 9674022 : if (pl->os_multilib)
2872 : : {
2873 : : this_multi = multi_os_dir;
2874 : : this_multi_len = multi_os_dir_len;
2875 : : }
2876 : : else
2877 : : {
2878 : 5247647 : this_multi = multi_dir;
2879 : 5247647 : this_multi_len = multi_dir_len;
2880 : : }
2881 : :
2882 : 9674022 : if (this_multi_len)
2883 : 2697740 : memcpy (path + len, this_multi, this_multi_len + 1);
2884 : : else
2885 : 6976282 : path[len] = '\0';
2886 : :
2887 : 9674022 : ret = callback (path, callback_info);
2888 : 9674022 : if (ret)
2889 : : break;
2890 : : }
2891 : : }
2892 : 3151677 : if (pl)
2893 : : break;
2894 : :
2895 : 1529138 : 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 : 409678 : 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 : 409678 : if (multi_os_dir)
2912 : : {
2913 : 409678 : free (CONST_CAST (char *, multi_os_dir));
2914 : 409678 : multi_os_dir = NULL;
2915 : : }
2916 : : else
2917 : : skip_multi_os_dir = true;
2918 : : }
2919 : :
2920 : 2741999 : 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 : 2741999 : if (multi_os_dir)
2927 : 494883 : free (CONST_CAST (char *, multi_os_dir));
2928 : 2741999 : if (ret != path)
2929 : 1119460 : free (path);
2930 : 2741999 : 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 : 6743488 : add_to_obstack (char *path, void *data)
2943 : : {
2944 : 6743488 : struct add_to_obstack_info *info = (struct add_to_obstack_info *) data;
2945 : :
2946 : 6743488 : if (info->check_dir && !is_directory (path))
2947 : : return NULL;
2948 : :
2949 : 2473626 : if (!info->first_time)
2950 : 1984310 : obstack_1grow (info->ob, PATH_SEPARATOR);
2951 : :
2952 : 2473626 : obstack_grow (info->ob, path, strlen (path));
2953 : :
2954 : 2473626 : info->first_time = false;
2955 : 2473626 : 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 : 1707556 : xputenv (const char *string)
2962 : : {
2963 : 0 : env.xput (string);
2964 : 132775 : }
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 : 490400 : build_search_list (const struct path_prefix *paths, const char *prefix,
2976 : : bool check_dir, bool do_multi)
2977 : : {
2978 : 490400 : struct add_to_obstack_info info;
2979 : :
2980 : 490400 : info.ob = &collect_obstack;
2981 : 490400 : info.check_dir = check_dir;
2982 : 490400 : info.first_time = true;
2983 : :
2984 : 490400 : obstack_grow (&collect_obstack, prefix, strlen (prefix));
2985 : 490400 : obstack_1grow (&collect_obstack, '=');
2986 : :
2987 : 490400 : for_each_path (paths, do_multi, 0, add_to_obstack, &info);
2988 : :
2989 : 490400 : obstack_1grow (&collect_obstack, '\0');
2990 : 490400 : 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 : 490344 : putenv_from_prefixes (const struct path_prefix *paths, const char *env_var,
2998 : : bool do_multi)
2999 : : {
3000 : 490344 : xputenv (build_search_list (paths, env_var, true, do_multi));
3001 : 490344 : }
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 : 7620822 : access_check (const char *name, int mode)
3008 : : {
3009 : 7620822 : if (mode == X_OK)
3010 : : {
3011 : 1466686 : struct stat st;
3012 : :
3013 : 1466686 : if (stat (name, &st) < 0
3014 : 1466686 : || S_ISDIR (st.st_mode))
3015 : 745475 : return -1;
3016 : : }
3017 : :
3018 : 6875347 : 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 : 7620822 : file_at_path (char *path, void *data)
3035 : : {
3036 : 7620822 : struct file_at_path_info *info = (struct file_at_path_info *) data;
3037 : 7620822 : size_t len = strlen (path);
3038 : :
3039 : 7620822 : memcpy (path + len, info->name, info->name_len);
3040 : 7620822 : len += info->name_len;
3041 : :
3042 : : /* Some systems have a suffix for executable files.
3043 : : So try appending that first. */
3044 : 7620822 : 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 : 7620822 : path[len] = '\0';
3052 : 7620822 : 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 : 1720484 : find_a_file (const struct path_prefix *pprefix, const char *name, int mode,
3065 : : bool do_multi)
3066 : : {
3067 : 1720484 : struct file_at_path_info info;
3068 : :
3069 : : /* Find the filename in question (special case for absolute paths). */
3070 : :
3071 : 1720484 : 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 : 1720483 : info.name = name;
3080 : 1720483 : info.suffix = (mode & X_OK) != 0 ? HOST_EXECUTABLE_SUFFIX : "";
3081 : 1720483 : info.name_len = strlen (info.name);
3082 : 1720483 : info.suffix_len = strlen (info.suffix);
3083 : 1720483 : info.mode = mode;
3084 : :
3085 : 1720483 : return (char*) for_each_path (pprefix, do_multi,
3086 : : info.name_len + info.suffix_len,
3087 : 1720483 : 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 : 726972 : 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 : 3755605 : 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 : 3755605 : struct prefix_list *pl, **prev;
3145 : 3755605 : int len;
3146 : :
3147 : 3755605 : for (prev = &pprefix->plist;
3148 : 11889153 : (*prev) != NULL && (*prev)->priority <= priority;
3149 : 8133548 : prev = &(*prev)->next)
3150 : : ;
3151 : :
3152 : : /* Keep track of the longest prefix. */
3153 : :
3154 : 3755605 : prefix = update_path (prefix, component);
3155 : 3755605 : len = strlen (prefix);
3156 : 3755605 : if (len > pprefix->max_len)
3157 : 2039086 : pprefix->max_len = len;
3158 : :
3159 : 3755605 : pl = XNEW (struct prefix_list);
3160 : 3755605 : pl->prefix = prefix;
3161 : 3755605 : pl->require_machine_suffix = require_machine_suffix;
3162 : 3755605 : pl->priority = priority;
3163 : 3755605 : pl->os_multilib = os_multilib;
3164 : :
3165 : : /* Insert after PREV. */
3166 : 3755605 : pl->next = (*prev);
3167 : 3755605 : (*prev) = pl;
3168 : 3755605 : }
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 : 575154 : 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 : 575154 : if (!IS_ABSOLUTE_PATH (prefix))
3179 : 0 : fatal_error (input_location, "system path %qs is not absolute", prefix);
3180 : :
3181 : 575154 : 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 : 575154 : add_prefix (pprefix, prefix, component, priority,
3204 : : require_machine_suffix, os_multilib);
3205 : 575154 : }
3206 : :
3207 : : /* Same as add_prefix, but prepending target_sysroot_hdrs_suffix to prefix. */
3208 : :
3209 : : static void
3210 : 30388 : 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 : 30388 : if (!IS_ABSOLUTE_PATH (prefix))
3216 : 0 : fatal_error (input_location, "system path %qs is not absolute", prefix);
3217 : :
3218 : 30388 : 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 : 30388 : add_prefix (pprefix, prefix, component, priority,
3241 : : require_machine_suffix, os_multilib);
3242 : 30388 : }
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 : 527542 : execute (void)
3253 : : {
3254 : 527542 : int i;
3255 : 527542 : int n_commands; /* # of command. */
3256 : 527542 : char *string;
3257 : 527542 : struct pex_obj *pex;
3258 : 527542 : struct command
3259 : : {
3260 : : const char *prog; /* program name. */
3261 : : const char **argv; /* vector of args. */
3262 : : };
3263 : 527542 : const char *arg;
3264 : :
3265 : 527542 : struct command *commands; /* each command buffer with above info. */
3266 : :
3267 : 527542 : gcc_assert (!processing_spec_function);
3268 : :
3269 : 527542 : 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 : 15916707 : for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3279 : 15389165 : if (strcmp (arg, "|") == 0)
3280 : 0 : n_commands++;
3281 : :
3282 : : /* Get storage for each command. */
3283 : 527542 : 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 : 527542 : argbuf.safe_push (0);
3290 : :
3291 : 527542 : commands[0].prog = argbuf[0]; /* first command. */
3292 : 527542 : commands[0].argv = argbuf.address ();
3293 : :
3294 : 527542 : if (!wrapper_string)
3295 : : {
3296 : 527542 : string = find_a_program(commands[0].prog);
3297 : 527542 : if (string)
3298 : 525013 : commands[0].argv[0] = string;
3299 : : }
3300 : :
3301 : 16444249 : for (n_commands = 1, i = 0; argbuf.iterate (i, &arg); i++)
3302 : 15916707 : 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 : 527542 : if (verbose_flag)
3320 : : {
3321 : : /* For help listings, put a blank line between sub-processes. */
3322 : 1387 : if (print_help_list)
3323 : 9 : fputc ('\n', stderr);
3324 : :
3325 : : /* Print each piped command as a separate line. */
3326 : 2774 : for (i = 0; i < n_commands; i++)
3327 : : {
3328 : 1387 : const char *const *j;
3329 : :
3330 : 1387 : if (verbose_only_flag)
3331 : : {
3332 : 17795 : for (j = commands[i].argv; *j; j++)
3333 : : {
3334 : : const char *p;
3335 : 425174 : for (p = *j; *p; ++p)
3336 : 410864 : if (!ISALNUM ((unsigned char) *p)
3337 : 97235 : && *p != '_' && *p != '/' && *p != '-' && *p != '.')
3338 : : break;
3339 : 16784 : if (*p || !*j)
3340 : : {
3341 : 2474 : fprintf (stderr, " \"");
3342 : 128745 : for (p = *j; *p; ++p)
3343 : : {
3344 : 126271 : if (*p == '"' || *p == '\\' || *p == '$')
3345 : 0 : fputc ('\\', stderr);
3346 : 126271 : fputc (*p, stderr);
3347 : : }
3348 : 2474 : fputc ('"', stderr);
3349 : : }
3350 : : /* If it's empty, print "". */
3351 : 14310 : else if (!**j)
3352 : 0 : fprintf (stderr, " \"\"");
3353 : : else
3354 : 14310 : 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 : 1387 : if (i + 1 != n_commands)
3367 : 0 : fprintf (stderr, " |");
3368 : 1387 : fprintf (stderr, "\n");
3369 : : }
3370 : 1387 : fflush (stderr);
3371 : 1387 : 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 : 1011 : execution_count++;
3378 : 1011 : 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 : 526531 : pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3423 : : ? PEX_RECORD_TIMES : 0),
3424 : : progname, temp_filename);
3425 : 526531 : if (pex == NULL)
3426 : : fatal_error (input_location, "%<pex_init%> failed: %m");
3427 : :
3428 : 1053062 : for (i = 0; i < n_commands; i++)
3429 : : {
3430 : 526531 : const char *errmsg;
3431 : 526531 : int err;
3432 : 526531 : const char *string = commands[i].argv[0];
3433 : :
3434 : 526531 : errmsg = pex_run (pex,
3435 : 526531 : ((i + 1 == n_commands ? PEX_LAST : 0)
3436 : 526531 : | (string == commands[i].prog ? PEX_SEARCH : 0)),
3437 : : string, CONST_CAST (char **, commands[i].argv),
3438 : : NULL, NULL, &err);
3439 : 526531 : 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 : 526531 : if (i && string != commands[i].prog)
3449 : 0 : free (CONST_CAST (char *, string));
3450 : : }
3451 : :
3452 : 526531 : execution_count++;
3453 : :
3454 : : /* Wait for all the subprocesses to finish. */
3455 : :
3456 : 526531 : {
3457 : 526531 : int *statuses;
3458 : 526531 : struct pex_time *times = NULL;
3459 : 526531 : int ret_code = 0;
3460 : :
3461 : 526531 : statuses = XALLOCAVEC (int, n_commands);
3462 : 526531 : if (!pex_get_status (pex, n_commands, statuses))
3463 : 0 : fatal_error (input_location, "failed to get exit status: %m");
3464 : :
3465 : 526531 : 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 : 526531 : pex_free (pex);
3473 : :
3474 : 1053062 : for (i = 0; i < n_commands; ++i)
3475 : : {
3476 : 526531 : int status = statuses[i];
3477 : :
3478 : 526531 : 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 : 526531 : else if (WIFEXITED (status)
3524 : 526531 : && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
3525 : : {
3526 : : /* For ICEs in cc1, cc1obj, cc1plus see if it is
3527 : : reproducible or not. */
3528 : 27599 : const char *p;
3529 : 27599 : 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 : 27599 : && startswith (p + 1, "cc1"))
3534 : 0 : try_generate_repro (commands[0].argv);
3535 : 27599 : if (WEXITSTATUS (status) > greatest_status)
3536 : 19 : greatest_status = WEXITSTATUS (status);
3537 : : ret_code = -1;
3538 : : }
3539 : :
3540 : 526531 : 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 : 526531 : if (commands[0].argv[0] != commands[0].prog)
3593 : 524002 : 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 : 863898 : alloc_infile (void)
3830 : : {
3831 : 863898 : if (n_infiles_alloc == 0)
3832 : : {
3833 : 287578 : n_infiles_alloc = 16;
3834 : 287578 : infiles = XNEWVEC (struct infile, n_infiles_alloc);
3835 : : }
3836 : 576320 : 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 : 863898 : }
3842 : :
3843 : : /* Store an input file with the given NAME and LANGUAGE in
3844 : : infiles. */
3845 : :
3846 : : static void
3847 : 576321 : add_infile (const char *name, const char *language)
3848 : : {
3849 : 576321 : alloc_infile ();
3850 : 576321 : infiles[n_infiles].name = name;
3851 : 576321 : infiles[n_infiles++].language = language;
3852 : 576321 : }
3853 : :
3854 : : /* Allocate space for a switch in switches. */
3855 : :
3856 : : static void
3857 : 7045352 : alloc_switch (void)
3858 : : {
3859 : 7045352 : if (n_switches_alloc == 0)
3860 : : {
3861 : 287891 : n_switches_alloc = 16;
3862 : 287891 : switches = XNEWVEC (struct switchstr, n_switches_alloc);
3863 : : }
3864 : 6757461 : else if (n_switches_alloc == n_switches)
3865 : : {
3866 : 242235 : n_switches_alloc *= 2;
3867 : 242235 : switches = XRESIZEVEC (struct switchstr, switches, n_switches_alloc);
3868 : : }
3869 : 7045352 : }
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 : 6213657 : save_switch (const char *opt, size_t n_args, const char *const *args,
3876 : : bool validated, bool known)
3877 : : {
3878 : 6213657 : alloc_switch ();
3879 : 6213657 : switches[n_switches].part1 = opt + 1;
3880 : 6213657 : if (n_args == 0)
3881 : 4742649 : switches[n_switches].args = 0;
3882 : : else
3883 : : {
3884 : 1471008 : switches[n_switches].args = XNEWVEC (const char *, n_args + 1);
3885 : 1471008 : memcpy (switches[n_switches].args, args, n_args * sizeof (const char *));
3886 : 1471008 : switches[n_switches].args[n_args] = NULL;
3887 : : }
3888 : :
3889 : 6213657 : switches[n_switches].live_cond = 0;
3890 : 6213657 : switches[n_switches].validated = validated;
3891 : 6213657 : switches[n_switches].known = known;
3892 : 6213657 : switches[n_switches].ordering = 0;
3893 : 6213657 : n_switches++;
3894 : 6213657 : }
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 : 619 : driver_unknown_option_callback (const struct cl_decoded_option *decoded)
3924 : : {
3925 : 619 : const char *opt = decoded->arg;
3926 : 619 : 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 : 528 : if (decoded->opt_index == OPT_SPECIAL_unknown)
3937 : : {
3938 : : /* Give it a chance to define it a spec file. */
3939 : 528 : save_switch (decoded->canonical_option[0],
3940 : 528 : decoded->canonical_option_num_elements - 1,
3941 : : &decoded->canonical_option[1], false, false);
3942 : 528 : 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 : 3920410 : 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 : 3920410 : const struct cl_option *option = &cl_options[decoded->opt_index];
3961 : :
3962 : 3920410 : if (option->cl_reject_driver)
3963 : 0 : error ("unrecognized command-line option %qs",
3964 : 0 : decoded->orig_option_with_args_text);
3965 : : else
3966 : 3920410 : save_switch (decoded->canonical_option[0],
3967 : 3920410 : decoded->canonical_option_num_elements - 1,
3968 : : &decoded->canonical_option[1], false, true);
3969 : 3920410 : }
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 : 109 : check_offload_target_name (const char *target, ptrdiff_t len)
3979 : : {
3980 : 109 : const char *n, *c = OFFLOAD_TARGETS;
3981 : 218 : while (c)
3982 : : {
3983 : 109 : n = strchr (c, ',');
3984 : 109 : if (n == NULL)
3985 : 109 : n = strchr (c, '\0');
3986 : 109 : if (len == n - c && strncmp (target, c, n - c) == 0)
3987 : : break;
3988 : 109 : c = *n ? n + 1 : NULL;
3989 : : }
3990 : 109 : if (!c)
3991 : : {
3992 : 109 : auto_vec<const char*> candidates;
3993 : 109 : size_t olen = strlen (OFFLOAD_TARGETS) + 1;
3994 : 109 : char *cand = XALLOCAVEC (char, olen);
3995 : 109 : memcpy (cand, OFFLOAD_TARGETS, olen);
3996 : 109 : for (c = strtok (cand, ","); c; c = strtok (NULL, ","))
3997 : 0 : candidates.safe_push (c);
3998 : 109 : candidates.safe_push ("default");
3999 : 109 : candidates.safe_push ("disable");
4000 : :
4001 : 109 : char *target2 = XALLOCAVEC (char, len + 1);
4002 : 109 : memcpy (target2, target, len);
4003 : 109 : target2[len] = '\0';
4004 : :
4005 : 109 : error ("GCC is not configured to support %qs as %<-foffload=%> argument",
4006 : : target2);
4007 : :
4008 : 109 : char *s;
4009 : 109 : const char *hint = candidates_list_and_hint (target2, s, candidates);
4010 : 109 : if (hint)
4011 : 0 : inform (UNKNOWN_LOCATION,
4012 : : "valid %<-foffload=%> arguments are: %s; "
4013 : : "did you mean %qs?", s, hint);
4014 : : else
4015 : 109 : inform (UNKNOWN_LOCATION, "valid %<-foffload=%> arguments are: %s", s);
4016 : 109 : XDELETEVEC (s);
4017 : 109 : return false;
4018 : 109 : }
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 : 2781 : handle_foffload_option (const char *arg)
4058 : : {
4059 : 2781 : const char *c, *cur, *n, *next, *end;
4060 : 2781 : char *target;
4061 : :
4062 : : /* If option argument starts with '-' then no target is specified and we
4063 : : do not need to parse it. */
4064 : 2781 : if (arg[0] == '-')
4065 : : return;
4066 : :
4067 : 1942 : end = strchr (arg, '=');
4068 : 1942 : if (end == NULL)
4069 : 1942 : end = strchr (arg, '\0');
4070 : 1942 : cur = arg;
4071 : :
4072 : 1942 : while (cur < end)
4073 : : {
4074 : 1942 : next = strchr (cur, ',');
4075 : 1942 : if (next == NULL)
4076 : 1942 : next = end;
4077 : 1942 : next = (next > end) ? end : next;
4078 : :
4079 : 1942 : target = XNEWVEC (char, next - cur + 1);
4080 : 1942 : memcpy (target, cur, next - cur);
4081 : 1942 : target[next - cur] = '\0';
4082 : :
4083 : : /* Reset offloading list and continue. */
4084 : 1942 : 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 : 1942 : if (strcmp (target, "disable") == 0
4095 : 1942 : || !check_offload_target_name (target, next - cur))
4096 : : {
4097 : 1942 : free (offload_targets);
4098 : 1942 : offload_targets = xstrdup ("");
4099 : 1942 : 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 : 2627937 : 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 : 2627937 : size_t opt_index = decoded->opt_index;
4197 : 2627937 : const char *arg = decoded->arg;
4198 : 2627937 : const char *compare_debug_replacement_opt;
4199 : 2627937 : int value = decoded->value;
4200 : 2627937 : bool validated = false;
4201 : 2627937 : bool do_save = true;
4202 : :
4203 : 2627937 : gcc_assert (opts == &global_options);
4204 : 2627937 : gcc_assert (opts_set == &global_options_set);
4205 : 2627937 : gcc_assert (kind == DK_UNSPECIFIED);
4206 : 2627937 : gcc_assert (loc == UNKNOWN_LOCATION);
4207 : 2627937 : gcc_assert (dc == global_dc);
4208 : :
4209 : 2627937 : 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 : 93 : case OPT__help_:
4260 : 93 : print_subprocess_help = 2;
4261 : 93 : 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 : 261219 : case OPT_fdiagnostics_color_:
4349 : 261219 : diagnostic_color_init (dc, value);
4350 : 261219 : break;
4351 : :
4352 : 247439 : case OPT_fdiagnostics_urls_:
4353 : 247439 : diagnostic_urls_init (dc, value);
4354 : 247439 : 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 : 274929 : case OPT_fdiagnostics_text_art_charset_:
4381 : 274929 : dc->set_text_art_charset ((enum diagnostic_text_art_charset)value);
4382 : 274929 : 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 : 124996 : for (j = 0; arg[j]; j++)
4430 : 117524 : 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 : 7472 : add_infile (arg + prev, "*");
4437 : : }
4438 : 7472 : do_save = false;
4439 : 7472 : 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 : 257236 : case OPT_l:
4457 : : /* POSIX allows separation of -l and the lib arg; canonicalize
4458 : : by concatenating -l with its arg */
4459 : 257236 : 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 : 257236 : if (ENABLE_OFFLOADING)
4469 : : forward_offload_option (opt_index, arg, validated);
4470 : :
4471 : 257236 : do_save = false;
4472 : 257236 : break;
4473 : :
4474 : 260904 : case OPT_L:
4475 : : /* Similarly, canonicalize -L for linkers that may not accept
4476 : : separate arguments. */
4477 : 260904 : save_switch (concat ("-L", arg, NULL), 0, NULL, validated, true);
4478 : 260904 : 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 : 21059 : case OPT_dumpdir:
4504 : 21059 : free (dumpdir);
4505 : 21059 : dumpdir = xstrdup (arg);
4506 : 21059 : save_temps_overrides_dumpdir = false;
4507 : 21059 : break;
4508 : :
4509 : 22493 : case OPT_dumpbase:
4510 : 22493 : free (dumpbase);
4511 : 22493 : dumpbase = xstrdup (arg);
4512 : 22493 : 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 : 8447 : case OPT_truncate:
4563 : 8447 : totruncate_file = arg;
4564 : 8447 : do_save = false;
4565 : 8447 : break;
4566 : :
4567 : 635 : 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 : 635 : verbose_only_flag++;
4574 : 635 : verbose_flag = 1;
4575 : 635 : do_save = false;
4576 : 635 : break;
4577 : :
4578 : 474697 : case OPT_B:
4579 : 474697 : {
4580 : 474697 : 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 : 474697 : if (!IS_DIR_SEPARATOR (arg[len - 1])
4590 : 474697 : && is_directory (arg))
4591 : : {
4592 : 95953 : char *tmp = XNEWVEC (char, len + 2);
4593 : 95953 : strcpy (tmp, arg);
4594 : 95953 : tmp[len] = DIR_SEPARATOR;
4595 : 95953 : tmp[++len] = 0;
4596 : 95953 : arg = tmp;
4597 : : }
4598 : :
4599 : 474697 : add_prefix (&exec_prefixes, arg, NULL,
4600 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4601 : 474697 : add_prefix (&startfile_prefixes, arg, NULL,
4602 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4603 : 474697 : add_prefix (&include_prefixes, arg, NULL,
4604 : : PREFIX_PRIORITY_B_OPT, 0, 0);
4605 : : }
4606 : 474697 : validated = true;
4607 : 474697 : break;
4608 : :
4609 : 2302 : case OPT_E:
4610 : 2302 : have_E = true;
4611 : 2302 : break;
4612 : :
4613 : 47220 : case OPT_x:
4614 : 47220 : spec_lang = arg;
4615 : 47220 : 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 : 12328 : spec_lang = 0;
4620 : : else
4621 : 34892 : last_language_n_infiles = n_infiles;
4622 : : do_save = false;
4623 : : break;
4624 : :
4625 : 261740 : case OPT_o:
4626 : 261740 : 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 : 261740 : output_file = arg;
4631 : : /* On some systems, ld cannot handle "-o" without a space. So
4632 : : split the option from its argument. */
4633 : 261740 : save_switch ("-o", 1, &arg, validated, true);
4634 : 261740 : return true;
4635 : :
4636 : 2042 : case OPT_pie:
4637 : : #ifdef ENABLE_DEFAULT_PIE
4638 : : /* -pie is turned on by default. */
4639 : : validated = true;
4640 : : #endif
4641 : : /* FALLTHROUGH */
4642 : 2042 : case OPT_r:
4643 : 2042 : case OPT_shared:
4644 : 2042 : case OPT_no_pie:
4645 : 2042 : any_link_options_p = true;
4646 : 2042 : 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 : 79 : case OPT_fwpa:
4669 : 79 : flag_wpa = "";
4670 : 79 : break;
4671 : :
4672 : 6 : case OPT_foffload_options_:
4673 : 6 : check_foffload_target_names (arg);
4674 : 6 : break;
4675 : :
4676 : 2781 : case OPT_foffload_:
4677 : 2781 : handle_foffload_option (arg);
4678 : 2781 : 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 : 1581137 : if (do_save)
4696 : 1767281 : save_switch (decoded->canonical_option[0],
4697 : 1767281 : 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 : 83186 : adds_single_suffix_p (const char *f2, const char *f1)
4707 : : {
4708 : 83186 : size_t len = strlen (f1);
4709 : :
4710 : 83186 : return (strncmp (f1, f2, len) == 0
4711 : 74169 : && f2[len] == '.'
4712 : 156902 : && strchr (f2 + len + 1, '.') == NULL);
4713 : : }
4714 : :
4715 : : /* Put the driver's standard set of option handlers in *HANDLERS. */
4716 : :
4717 : : static void
4718 : 831977 : set_option_handlers (struct cl_option_handlers *handlers)
4719 : : {
4720 : 831977 : handlers->unknown_option_callback = driver_unknown_option_callback;
4721 : 831977 : handlers->wrong_lang_callback = driver_wrong_lang_callback;
4722 : 831977 : handlers->num_handlers = 3;
4723 : 831977 : handlers->handlers[0].handler = driver_handle_option;
4724 : 831977 : handlers->handlers[0].mask = CL_DRIVER;
4725 : 831977 : handlers->handlers[1].handler = common_handle_option;
4726 : 831977 : handlers->handlers[1].mask = CL_COMMON;
4727 : 831977 : handlers->handlers[2].handler = target_handle_option;
4728 : 831977 : 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 : 146986 : single_input_file_index ()
4737 : : {
4738 : 146986 : int ret = -1;
4739 : :
4740 : 486916 : for (int i = 0; i < n_infiles; i++)
4741 : : {
4742 : 351925 : if (infiles[i].language
4743 : 248185 : && (infiles[i].language[0] == '*'
4744 : 46346 : || (flag_wpa
4745 : 17748 : && strcmp (infiles[i].language, "lto") == 0)))
4746 : 219587 : continue;
4747 : :
4748 : 132338 : 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 : 287863 : process_command (unsigned int decoded_options_count,
4762 : : struct cl_decoded_option *decoded_options)
4763 : : {
4764 : 287863 : const char *temp;
4765 : 287863 : char *temp1;
4766 : 287863 : char *tooldir_prefix, *tooldir_prefix2;
4767 : 287863 : char *(*get_relative_prefix) (const char *, const char *,
4768 : : const char *) = NULL;
4769 : 287863 : struct cl_option_handlers handlers;
4770 : 287863 : unsigned int j;
4771 : :
4772 : 287863 : gcc_exec_prefix = env.get ("GCC_EXEC_PREFIX");
4773 : :
4774 : 287863 : n_switches = 0;
4775 : 287863 : n_infiles = 0;
4776 : 287863 : added_libraries = 0;
4777 : :
4778 : : /* Figure compiler version from version string. */
4779 : :
4780 : 287863 : compiler_version = temp1 = xstrdup (version_string);
4781 : :
4782 : 2015041 : for (; *temp1; ++temp1)
4783 : : {
4784 : 2015041 : if (*temp1 == ' ')
4785 : : {
4786 : 287863 : *temp1 = '\0';
4787 : 287863 : 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 : 6224741 : for (j = 1; j < decoded_options_count; j++)
4796 : : {
4797 : 5936878 : 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 : 287863 : if (! get_relative_prefix)
4804 : 287863 : 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 : 287863 : gcc_libexec_prefix = standard_libexec_prefix;
4811 : : #ifndef VMS
4812 : : /* FIXME: make_relative_prefix doesn't yet work for VMS. */
4813 : 287863 : if (!gcc_exec_prefix)
4814 : : {
4815 : 28111 : gcc_exec_prefix = get_relative_prefix (decoded_options[0].arg,
4816 : : standard_bindir_prefix,
4817 : : standard_exec_prefix);
4818 : 28111 : gcc_libexec_prefix = get_relative_prefix (decoded_options[0].arg,
4819 : : standard_bindir_prefix,
4820 : : standard_libexec_prefix);
4821 : 28111 : if (gcc_exec_prefix)
4822 : 28111 : 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 : 259752 : char *tmp_prefix = concat (gcc_exec_prefix, "gcc", NULL);
4831 : 259752 : 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 : 259752 : if (!gcc_libexec_prefix)
4837 : 259407 : gcc_libexec_prefix = standard_libexec_prefix;
4838 : :
4839 : 259752 : 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 : 287863 : lang_specific_driver (&decoded_options, &decoded_options_count,
4850 : : &added_libraries);
4851 : :
4852 : 287859 : if (gcc_exec_prefix)
4853 : : {
4854 : 287859 : int len = strlen (gcc_exec_prefix);
4855 : :
4856 : 287859 : if (len > (int) sizeof ("/lib/gcc/") - 1
4857 : 287859 : && (IS_DIR_SEPARATOR (gcc_exec_prefix[len-1])))
4858 : : {
4859 : 287859 : temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
4860 : 287859 : if (IS_DIR_SEPARATOR (*temp)
4861 : 287859 : && filename_ncmp (temp + 1, "lib", 3) == 0
4862 : 287859 : && IS_DIR_SEPARATOR (temp[4])
4863 : 575718 : && filename_ncmp (temp + 5, "gcc", 3) == 0)
4864 : 287859 : len -= sizeof ("/lib/gcc/") - 1;
4865 : : }
4866 : :
4867 : 287859 : set_std_prefix (gcc_exec_prefix, len);
4868 : 287859 : add_prefix (&exec_prefixes, gcc_libexec_prefix, "GCC",
4869 : : PREFIX_PRIORITY_LAST, 0, 0);
4870 : 287859 : 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 : 287859 : temp = env.get ("COMPILER_PATH");
4878 : 287859 : if (temp)
4879 : : {
4880 : 20895 : const char *startp, *endp;
4881 : 20895 : char *nstore = (char *) alloca (strlen (temp) + 3);
4882 : :
4883 : 20895 : startp = endp = temp;
4884 : 1870128 : while (1)
4885 : : {
4886 : 1870128 : if (*endp == PATH_SEPARATOR || *endp == 0)
4887 : : {
4888 : 33588 : strncpy (nstore, startp, endp - startp);
4889 : 33588 : if (endp == startp)
4890 : 0 : strcpy (nstore, concat (".", dir_separator_str, NULL));
4891 : 33588 : 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 : 33588 : nstore[endp - startp] = 0;
4898 : 33588 : add_prefix (&exec_prefixes, nstore, 0,
4899 : : PREFIX_PRIORITY_LAST, 0, 0);
4900 : 33588 : add_prefix (&include_prefixes, nstore, 0,
4901 : : PREFIX_PRIORITY_LAST, 0, 0);
4902 : 33588 : if (*endp == 0)
4903 : : break;
4904 : 12693 : endp = startp = endp + 1;
4905 : : }
4906 : : else
4907 : 1836540 : endp++;
4908 : : }
4909 : : }
4910 : :
4911 : 287859 : temp = env.get (LIBRARY_PATH_ENV);
4912 : 287859 : if (temp && *cross_compile == '0')
4913 : : {
4914 : 22198 : const char *startp, *endp;
4915 : 22198 : char *nstore = (char *) alloca (strlen (temp) + 3);
4916 : :
4917 : 22198 : startp = endp = temp;
4918 : 3814377 : while (1)
4919 : : {
4920 : 3814377 : if (*endp == PATH_SEPARATOR || *endp == 0)
4921 : : {
4922 : 159571 : strncpy (nstore, startp, endp - startp);
4923 : 159571 : if (endp == startp)
4924 : 0 : strcpy (nstore, concat (".", dir_separator_str, NULL));
4925 : 159571 : 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 : 158268 : nstore[endp - startp] = 0;
4932 : 159571 : add_prefix (&startfile_prefixes, nstore, NULL,
4933 : : PREFIX_PRIORITY_LAST, 0, 1);
4934 : 159571 : if (*endp == 0)
4935 : : break;
4936 : 137373 : endp = startp = endp + 1;
4937 : : }
4938 : : else
4939 : 3654806 : endp++;
4940 : : }
4941 : : }
4942 : :
4943 : : /* Use LPATH like LIBRARY_PATH (for the CMU build program). */
4944 : 287859 : temp = env.get ("LPATH");
4945 : 287859 : 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 : 287859 : last_language_n_infiles = -1;
4980 : :
4981 : 287859 : set_option_handlers (&handlers);
4982 : :
4983 : 5341232 : for (j = 1; j < decoded_options_count; j++)
4984 : : {
4985 : 5234206 : switch (decoded_options[j].opt_index)
4986 : : {
4987 : 180833 : case OPT_S:
4988 : 180833 : case OPT_c:
4989 : 180833 : case OPT_E:
4990 : 180833 : have_c = 1;
4991 : 180833 : break;
4992 : : }
4993 : 5234206 : if (have_c)
4994 : : break;
4995 : : }
4996 : :
4997 : 6602490 : for (j = 1; j < decoded_options_count; j++)
4998 : : {
4999 : 6314912 : if (decoded_options[j].opt_index == OPT_SPECIAL_input_file)
5000 : : {
5001 : 311237 : 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 : 311237 : add_infile (arg, spec_lang);
5007 : :
5008 : 311237 : continue;
5009 : 311237 : }
5010 : :
5011 : 6003675 : 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 : 287578 : 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 : 287578 : 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 : 287578 : 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 : 287578 : if (output_file
5066 : 261739 : && strcmp (output_file, "-") != 0
5067 : 261576 : && strcmp (output_file, HOST_BIT_BUCKET) != 0)
5068 : : {
5069 : : int i;
5070 : 779571 : for (i = 0; i < n_infiles; i++)
5071 : 252653 : if ((!infiles[i].language || infiles[i].language[0] != '*')
5072 : 545451 : && 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 : 287577 : 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 : 287577 : bool explicit_dumpdir = dumpdir;
5215 : :
5216 : 287525 : if ((!save_temps_overrides_dumpdir && explicit_dumpdir)
5217 : 554051 : || (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 : 265026 : else if (save_temps_flag != SAVE_TEMPS_CWD && output_file != NULL)
5225 : : {
5226 : 247206 : free (dumpdir);
5227 : 247206 : dumpdir = NULL;
5228 : 247206 : temp = lbasename (output_file);
5229 : 247206 : if (temp != output_file)
5230 : 100106 : dumpdir = xstrndup (output_file,
5231 : 100106 : strlen (output_file) - strlen (temp));
5232 : : }
5233 : 17820 : else if (dumpdir)
5234 : : {
5235 : 5 : free (dumpdir);
5236 : 5 : dumpdir = NULL;
5237 : : }
5238 : :
5239 : 287577 : 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 : 287577 : if (dumpdir && dumpbase && lbasename (dumpbase) != dumpbase)
5248 : : {
5249 : 20964 : free (dumpdir);
5250 : 20964 : dumpdir = NULL;
5251 : : }
5252 : :
5253 : : /* Check that dumpbase_ext matches the end of dumpbase, drop it
5254 : : otherwise. */
5255 : 287577 : 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 : 22493 : if (dumpbase && *dumpbase
5275 : 308619 : && (single_input_file_index () == -2
5276 : 20759 : || (!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 : 287282 : 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 : 106643 : gcc_assert (!dumpbase || !*dumpbase);
5310 : :
5311 : 106643 : const char *obase;
5312 : 106643 : char *tofree = NULL;
5313 : 106643 : if (!output_file || not_actual_file_p (output_file))
5314 : : obase = "a";
5315 : : else
5316 : : {
5317 : 92157 : obase = lbasename (output_file);
5318 : 92157 : 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 : 92157 : if (dumpbase_ext
5323 : 92157 : ? (blen > (xlen = strlen (dumpbase_ext))
5324 : 219 : && strcmp ((temp = (obase + blen - xlen)),
5325 : : dumpbase_ext) == 0)
5326 : 91938 : : ((temp = strrchr (obase + 1, '.'))
5327 : 90082 : && (xlen = strlen (temp))
5328 : 182020 : && (strcmp (temp, ".exe") == 0
5329 : : #if defined(HAVE_TARGET_EXECUTABLE_SUFFIX)
5330 : : || strcmp (temp, TARGET_EXECUTABLE_SUFFIX) == 0
5331 : : #endif
5332 : 8771 : || strcmp (obase, "a.out") == 0)))
5333 : : {
5334 : 81556 : tofree = xstrndup (obase, blen - xlen);
5335 : 81556 : 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 : 106643 : gcc_assert (!outbase);
5344 : 106643 : 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 : 106643 : int idxin;
5351 : 106643 : if (dumpbase
5352 : 106643 : || ((idxin = single_input_file_index ()) >= 0
5353 : 83186 : && adds_single_suffix_p (lbasename (infiles[idxin].name),
5354 : : obase)))
5355 : : {
5356 : 75162 : if (obase == tofree)
5357 : 73399 : outbase = tofree;
5358 : : else
5359 : : {
5360 : 1763 : outbase = xstrdup (obase);
5361 : 1763 : free (tofree);
5362 : : }
5363 : 106643 : obase = tofree = NULL;
5364 : : }
5365 : : else
5366 : : {
5367 : 31481 : if (dumpdir)
5368 : : {
5369 : 14692 : char *p = concat (dumpdir, obase, "-", NULL);
5370 : 14692 : free (dumpdir);
5371 : 14692 : dumpdir = p;
5372 : : }
5373 : : else
5374 : 16789 : dumpdir = concat (obase, "-", NULL);
5375 : :
5376 : 31481 : dumpdir_trailing_dash_added = true;
5377 : :
5378 : 31481 : free (tofree);
5379 : 31481 : obase = tofree = NULL;
5380 : : }
5381 : :
5382 : 106643 : 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 : 106643 : free (dumpbase_ext);
5388 : 106643 : 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 : 287577 : if ((dumpbase || have_c)
5400 : 182301 : && !(dumpbase && !*dumpbase))
5401 : : {
5402 : 180850 : gcc_assert (!outbase);
5403 : :
5404 : 180850 : if (dumpbase)
5405 : : {
5406 : 20747 : 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 : 20747 : 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 : 20734 : outbase = xstrdup (dumpbase);
5416 : : }
5417 : 160103 : else if (output_file && !not_actual_file_p (output_file))
5418 : : {
5419 : 155285 : outbase = xstrdup (lbasename (output_file));
5420 : 155285 : char *p = strrchr (outbase + 1, '.');
5421 : 155285 : if (p)
5422 : 155285 : *p = '\0';
5423 : : }
5424 : :
5425 : 180850 : if (outbase)
5426 : 176032 : 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 : 287577 : if (dumpdir)
5432 : 117264 : dumpdir_length = strlen (dumpdir);
5433 : : else
5434 : 170313 : 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 : 287577 : 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 : 287577 : 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 : 287577 : if (!compare_debug)
5469 : : {
5470 : 286978 : const char *gcd = env.get ("GCC_COMPARE_DEBUG");
5471 : :
5472 : 286978 : 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 : 287577 : 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 : 287577 : gcc_assert (!IS_ABSOLUTE_PATH (tooldir_base_prefix));
5511 : 287577 : 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 : 287577 : tooldir_prefix
5517 : 575154 : = 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 : 287577 : free (tooldir_prefix2);
5521 : :
5522 : 287577 : add_prefix (&exec_prefixes,
5523 : 287577 : concat (tooldir_prefix, "bin", dir_separator_str, NULL),
5524 : : "BINUTILS", PREFIX_PRIORITY_LAST, 0, 0);
5525 : 287577 : add_prefix (&startfile_prefixes,
5526 : 287577 : concat (tooldir_prefix, "lib", dir_separator_str, NULL),
5527 : : "BINUTILS", PREFIX_PRIORITY_LAST, 0, 1);
5528 : 287577 : 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 : 287577 : 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 : 287577 : 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 : 287577 : if (n_infiles == 0
5565 : 6667 : && (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 : 287577 : unsigned help_version_count = 0;
5581 : :
5582 : 287577 : if (print_version)
5583 : 78 : help_version_count++;
5584 : :
5585 : 287577 : if (print_help_list)
5586 : 4 : help_version_count++;
5587 : :
5588 : 575154 : spec_undefvar_allowed =
5589 : 1268 : ((verbose_flag && decoded_options_count == 2)
5590 : 288787 : || help_version_count == decoded_options_count - 1);
5591 : :
5592 : 287577 : alloc_switch ();
5593 : 287577 : switches[n_switches].part1 = 0;
5594 : 287577 : alloc_infile ();
5595 : 287577 : infiles[n_infiles].name = 0;
5596 : 287577 : }
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 : 796770 : set_collect_gcc_options (void)
5603 : : {
5604 : 796770 : int i;
5605 : 796770 : int first_time;
5606 : :
5607 : : /* Build COLLECT_GCC_OPTIONS to have all of the options specified to
5608 : : the compiler. */
5609 : 796770 : obstack_grow (&collect_obstack, "COLLECT_GCC_OPTIONS=",
5610 : : sizeof ("COLLECT_GCC_OPTIONS=") - 1);
5611 : :
5612 : 796770 : first_time = true;
5613 : 18339647 : for (i = 0; (int) i < n_switches; i++)
5614 : : {
5615 : 17542877 : const char *const *args;
5616 : 17542877 : const char *p, *q;
5617 : 17542877 : if (!first_time)
5618 : 16746107 : obstack_grow (&collect_obstack, " ", 1);
5619 : :
5620 : 17542877 : first_time = false;
5621 : :
5622 : : /* Ignore elided switches. */
5623 : 17665600 : if ((switches[i].live_cond
5624 : 17542877 : & (SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC))
5625 : : == SWITCH_IGNORE)
5626 : 122723 : continue;
5627 : :
5628 : 17420154 : obstack_grow (&collect_obstack, "'-", 2);
5629 : 17420154 : q = switches[i].part1;
5630 : 17420154 : 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 : 17420154 : obstack_grow (&collect_obstack, q, strlen (q));
5637 : 17420154 : obstack_grow (&collect_obstack, "'", 1);
5638 : :
5639 : 21430612 : for (args = switches[i].args; args && *args; args++)
5640 : : {
5641 : 4010458 : obstack_grow (&collect_obstack, " '", 2);
5642 : 4010458 : q = *args;
5643 : 4010458 : 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 : 4010458 : obstack_grow (&collect_obstack, q, strlen (q));
5650 : 4010458 : obstack_grow (&collect_obstack, "'", 1);
5651 : : }
5652 : : }
5653 : :
5654 : 796770 : if (dumpdir)
5655 : : {
5656 : 564328 : if (!first_time)
5657 : 564328 : obstack_grow (&collect_obstack, " ", 1);
5658 : 564328 : first_time = false;
5659 : :
5660 : 564328 : obstack_grow (&collect_obstack, "'-dumpdir' '", 12);
5661 : 564328 : const char *p, *q;
5662 : :
5663 : 564328 : q = dumpdir;
5664 : 564328 : 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 : 564328 : obstack_grow (&collect_obstack, q, strlen (q));
5671 : :
5672 : 564328 : obstack_grow (&collect_obstack, "'", 1);
5673 : : }
5674 : :
5675 : 796770 : obstack_grow (&collect_obstack, "\0", 1);
5676 : 796770 : xputenv (XOBFINISH (&collect_obstack, char *));
5677 : 796770 : }
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 : 77543832 : end_going_arg (void)
5740 : : {
5741 : 77543832 : if (arg_going)
5742 : : {
5743 : 18198028 : const char *string;
5744 : :
5745 : 18198028 : obstack_1grow (&obstack, 0);
5746 : 18198028 : string = XOBFINISH (&obstack, const char *);
5747 : 18198028 : if (this_is_library_file)
5748 : 523519 : string = find_file (string);
5749 : 18198028 : 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 : 18198028 : store_arg (string, delete_this_arg, this_is_output_file);
5763 : 18198028 : if (this_is_output_file)
5764 : 97009 : outfiles[input_file_number] = string;
5765 : 18198028 : 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 : 545029 : do_spec (const char *spec)
5816 : : {
5817 : 545029 : int value;
5818 : :
5819 : 545029 : 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 : 545029 : if (value == 0)
5824 : : {
5825 : 539587 : if (argbuf.length () > 0
5826 : 809946 : && !strcmp (argbuf.last (), "|"))
5827 : 0 : argbuf.pop ();
5828 : :
5829 : 539587 : set_collect_gcc_options ();
5830 : :
5831 : 539587 : if (argbuf.length () > 0)
5832 : 270359 : value = execute ();
5833 : : }
5834 : :
5835 : 545029 : 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 : 5140696 : do_spec_2 (const char *spec, const char *soft_matched_part)
5843 : : {
5844 : 5140696 : int result;
5845 : :
5846 : 5140696 : clear_args ();
5847 : 5140696 : arg_going = 0;
5848 : 5140696 : delete_this_arg = 0;
5849 : 5140696 : this_is_output_file = 0;
5850 : 5140696 : this_is_library_file = 0;
5851 : 5140696 : this_is_linker_script = 0;
5852 : 5140696 : input_from_pipe = 0;
5853 : 5140696 : suffix_subst = NULL;
5854 : :
5855 : 5140696 : result = do_spec_1 (spec, 0, soft_matched_part);
5856 : :
5857 : 5140696 : end_going_arg ();
5858 : :
5859 : 5140696 : 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 : 2589300 : do_option_spec (const char *name, const char *spec)
5867 : : {
5868 : 2589300 : unsigned int i, value_count, value_len;
5869 : 2589300 : const char *p, *q, *value;
5870 : 2589300 : char *tmp_spec, *tmp_spec_p;
5871 : :
5872 : 2589300 : if (configure_default_options[0].name == NULL)
5873 : : return;
5874 : :
5875 : 6904800 : for (i = 0; i < ARRAY_SIZE (configure_default_options); i++)
5876 : 4890900 : if (strcmp (configure_default_options[i].name, name) == 0)
5877 : : break;
5878 : 2589300 : if (i == ARRAY_SIZE (configure_default_options))
5879 : : return;
5880 : :
5881 : 575400 : value = configure_default_options[i].value;
5882 : 575400 : value_len = strlen (value);
5883 : :
5884 : : /* Compute the size of the final spec. */
5885 : 575400 : value_count = 0;
5886 : 575400 : p = spec;
5887 : 1150800 : while ((p = strstr (p, "%(VALUE)")) != NULL)
5888 : : {
5889 : 575400 : p ++;
5890 : 575400 : value_count ++;
5891 : : }
5892 : :
5893 : : /* Replace each %(VALUE) by the specified value. */
5894 : 575400 : tmp_spec = (char *) alloca (strlen (spec) + 1
5895 : : + value_count * (value_len - strlen ("%(VALUE)")));
5896 : 575400 : tmp_spec_p = tmp_spec;
5897 : 575400 : q = spec;
5898 : 1150800 : while ((p = strstr (q, "%(VALUE)")) != NULL)
5899 : : {
5900 : 575400 : memcpy (tmp_spec_p, q, p - q);
5901 : 575400 : tmp_spec_p = tmp_spec_p + (p - q);
5902 : 575400 : memcpy (tmp_spec_p, value, value_len);
5903 : 575400 : tmp_spec_p += value_len;
5904 : 575400 : q = p + strlen ("%(VALUE)");
5905 : : }
5906 : 575400 : strcpy (tmp_spec_p, q);
5907 : :
5908 : 575400 : 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 : 2589636 : do_self_spec (const char *spec)
5916 : : {
5917 : 2589636 : int i;
5918 : :
5919 : 2589636 : do_spec_2 (spec, NULL);
5920 : 2589636 : 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 : 60208119 : for (i = 0; i < n_switches; i++)
5926 : 55028847 : if ((switches[i].live_cond & SWITCH_IGNORE))
5927 : 647 : switches[i].live_cond |= SWITCH_IGNORE_PERMANENTLY;
5928 : :
5929 : 2589636 : if (argbuf.length () > 0)
5930 : : {
5931 : 544118 : const char **argbuf_copy;
5932 : 544118 : struct cl_decoded_option *decoded_options;
5933 : 544118 : struct cl_option_handlers handlers;
5934 : 544118 : unsigned int decoded_options_count;
5935 : 544118 : unsigned int j;
5936 : :
5937 : : /* Create a copy of argbuf with a dummy argv[0] entry for
5938 : : decode_cmdline_options_to_array. */
5939 : 544118 : argbuf_copy = XNEWVEC (const char *,
5940 : : argbuf.length () + 1);
5941 : 544118 : argbuf_copy[0] = "";
5942 : 544118 : memcpy (argbuf_copy + 1, argbuf.address (),
5943 : 544118 : argbuf.length () * sizeof (const char *));
5944 : :
5945 : 1088236 : decode_cmdline_options_to_array (argbuf.length () + 1,
5946 : : argbuf_copy,
5947 : : CL_DRIVER, &decoded_options,
5948 : : &decoded_options_count);
5949 : 544118 : free (argbuf_copy);
5950 : :
5951 : 544118 : set_option_handlers (&handlers);
5952 : :
5953 : 1090632 : for (j = 1; j < decoded_options_count; j++)
5954 : : {
5955 : 546514 : 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 : 545316 : default:
5982 : 545316 : read_cmdline_option (&global_options, &global_options_set,
5983 : : decoded_options + j, UNKNOWN_LOCATION,
5984 : : CL_DRIVER, &handlers, global_dc);
5985 : 545316 : break;
5986 : : }
5987 : : }
5988 : :
5989 : 544118 : free (decoded_options);
5990 : :
5991 : 544118 : alloc_switch ();
5992 : 544118 : switches[n_switches].part1 = 0;
5993 : : }
5994 : 2589636 : }
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 : 3230768 : spec_path (char *path, void *data)
6009 : : {
6010 : 3230768 : struct spec_path_info *info = (struct spec_path_info *) data;
6011 : 3230768 : size_t len = 0;
6012 : 3230768 : 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 : 3230768 : 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 : 3230768 : if (!path)
6022 : : return NULL;
6023 : :
6024 : 3230768 : if (info->omit_relative && !IS_ABSOLUTE_PATH (path))
6025 : : return NULL;
6026 : :
6027 : 3230768 : if (info->append_len != 0)
6028 : : {
6029 : 1343432 : len = strlen (path);
6030 : 1343432 : memcpy (path + len, info->append, info->append_len + 1);
6031 : : }
6032 : :
6033 : 3230768 : if (!is_directory (path))
6034 : : return NULL;
6035 : :
6036 : 1208082 : do_spec_1 (info->option, 1, NULL);
6037 : 1208082 : if (info->separate_options)
6038 : 431565 : do_spec_1 (" ", 0, NULL);
6039 : :
6040 : 1208082 : if (info->append_len == 0)
6041 : : {
6042 : 776517 : len = strlen (path);
6043 : 776517 : save = path[len - 1];
6044 : 776517 : if (IS_DIR_SEPARATOR (path[len - 1]))
6045 : 776517 : path[len - 1] = '\0';
6046 : : }
6047 : :
6048 : 1208082 : do_spec_1 (path, 1, NULL);
6049 : 1208082 : do_spec_1 (" ", 0, NULL);
6050 : :
6051 : : /* Must not damage the original path. */
6052 : 1208082 : if (info->append_len == 0)
6053 : 776517 : path[len - 1] = save;
6054 : :
6055 : : return NULL;
6056 : : }
6057 : :
6058 : : /* True if we should compile INFILE. */
6059 : :
6060 : : static bool
6061 : 42475 : compile_input_file_p (struct infile *infile)
6062 : : {
6063 : 25992 : if ((!infile->language) || (infile->language[0] != '*'))
6064 : 38403 : 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 : 452417 : do_specs_vec (vec<char_p> vec)
6073 : : {
6074 : 452499 : 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 : 452417 : }
6081 : :
6082 : : /* Add options passed via -Xassembler or -Wa to COLLECT_AS_OPTIONS. */
6083 : :
6084 : : static void
6085 : 287576 : putenv_COLLECT_AS_OPTIONS (vec<char_p> vec)
6086 : : {
6087 : 287576 : if (vec.is_empty ())
6088 : 287576 : 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 : 49695004 : do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
6124 : : {
6125 : 49695004 : const char *p = spec;
6126 : 49695004 : int c;
6127 : 49695004 : int i;
6128 : 49695004 : int value;
6129 : :
6130 : : /* If it's an empty string argument to a switch, keep it as is. */
6131 : 49695004 : if (inswitch && !*p)
6132 : 1 : arg_going = 1;
6133 : :
6134 : 499824592 : while ((c = *p++))
6135 : : /* If substituting a switch, treat all chars like letters.
6136 : : Otherwise, NL, SPC, TAB and % are special. */
6137 : 450175462 : switch (inswitch ? 'a' : c)
6138 : : {
6139 : 257183 : case '\n':
6140 : 257183 : end_going_arg ();
6141 : :
6142 : 257183 : if (argbuf.length () > 0
6143 : 514366 : && !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 : 163771 : if (use_pipes)
6149 : : {
6150 : 0 : input_from_pipe = 1;
6151 : 0 : break;
6152 : : }
6153 : : else
6154 : 163771 : argbuf.pop ();
6155 : : }
6156 : :
6157 : 257183 : set_collect_gcc_options ();
6158 : :
6159 : 257183 : if (argbuf.length () > 0)
6160 : : {
6161 : 257183 : value = execute ();
6162 : 257183 : if (value)
6163 : : return value;
6164 : : }
6165 : : /* Reinitialize for a new command, and for a new argument. */
6166 : 251741 : clear_args ();
6167 : 251741 : arg_going = 0;
6168 : 251741 : delete_this_arg = 0;
6169 : 251741 : this_is_output_file = 0;
6170 : 251741 : this_is_library_file = 0;
6171 : 251741 : this_is_linker_script = 0;
6172 : 251741 : input_from_pipe = 0;
6173 : 251741 : break;
6174 : :
6175 : 163771 : case '|':
6176 : 163771 : end_going_arg ();
6177 : :
6178 : : /* Use pipe */
6179 : 163771 : obstack_1grow (&obstack, c);
6180 : 163771 : arg_going = 1;
6181 : 163771 : break;
6182 : :
6183 : 67542151 : case '\t':
6184 : 67542151 : case ' ':
6185 : 67542151 : end_going_arg ();
6186 : :
6187 : : /* Reinitialize for a new argument. */
6188 : 67542151 : delete_this_arg = 0;
6189 : 67542151 : this_is_output_file = 0;
6190 : 67542151 : this_is_library_file = 0;
6191 : 67542151 : this_is_linker_script = 0;
6192 : 67542151 : break;
6193 : :
6194 : 47401280 : case '%':
6195 : 47401280 : switch (c = *p++)
6196 : : {
6197 : 0 : case 0:
6198 : 0 : fatal_error (input_location, "spec %qs invalid", spec);
6199 : :
6200 : 3560 : case 'b':
6201 : : /* Don't use %b in the linker command. */
6202 : 3560 : gcc_assert (suffixed_basename_length);
6203 : 3560 : if (!this_is_output_file && dumpdir_length)
6204 : 689 : obstack_grow (&obstack, dumpdir, dumpdir_length);
6205 : 3560 : if (this_is_output_file || !outbase_length)
6206 : 3220 : obstack_grow (&obstack, input_basename, basename_length);
6207 : : else
6208 : 340 : obstack_grow (&obstack, outbase, outbase_length);
6209 : 3560 : if (compare_debug < 0)
6210 : 6 : obstack_grow (&obstack, ".gk", 3);
6211 : 3560 : arg_going = 1;
6212 : 3560 : 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 : 94529 : case 'd':
6232 : 94529 : delete_this_arg = 2;
6233 : 94529 : break;
6234 : :
6235 : : /* Dump out the directories specified with LIBRARY_PATH,
6236 : : followed by the absolute directories
6237 : : that we search for startfiles. */
6238 : 101536 : case 'D':
6239 : 101536 : {
6240 : 101536 : struct spec_path_info info;
6241 : :
6242 : 101536 : info.option = "-L";
6243 : 101536 : 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 : 101536 : info.omit_relative = false;
6253 : : #endif
6254 : 101536 : info.separate_options = false;
6255 : 101536 : info.realpaths = false;
6256 : :
6257 : 101536 : for_each_path (&startfile_prefixes, true, 0, spec_path, &info);
6258 : : }
6259 : 101536 : 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 : 163771 : case '|':
6329 : 163771 : 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 : 163771 : goto create_temp_file;
6344 : 158461 : case 'm':
6345 : 158461 : 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 : 158461 : goto create_temp_file;
6356 : 507074 : case 'g':
6357 : 507074 : case 'u':
6358 : 507074 : case 'U':
6359 : 507074 : create_temp_file:
6360 : 507074 : {
6361 : 507074 : struct temp_name *t;
6362 : 507074 : int suffix_length;
6363 : 507074 : const char *suffix = p;
6364 : 507074 : char *saved_suffix = NULL;
6365 : :
6366 : 1510904 : while (*p == '.' || ISALNUM ((unsigned char) *p))
6367 : 1003830 : p++;
6368 : 507074 : suffix_length = p - suffix;
6369 : 507074 : if (p[0] == '%' && p[1] == 'O')
6370 : : {
6371 : 94745 : p += 2;
6372 : : /* We don't support extra suffix characters after %O. */
6373 : 94745 : if (*p == '.' || ISALNUM ((unsigned char) *p))
6374 : 0 : fatal_error (input_location,
6375 : : "spec %qs has invalid %<%%0%c%>", spec, *p);
6376 : 94745 : 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 : 94745 : suffix_length += strlen (TARGET_OBJECT_SUFFIX);
6388 : : }
6389 : :
6390 : 507074 : 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 : 507074 : 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 : 864023 : for (t = temp_names; t; t = t->next)
6483 : 523552 : if (t->length == suffix_length
6484 : 350776 : && strncmp (t->suffix, suffix, suffix_length) == 0
6485 : 169308 : && 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 : 505876 : if (t == 0 || c == 'u' || c == 'j')
6491 : : {
6492 : 344180 : if (t == 0)
6493 : : {
6494 : 340471 : t = XNEW (struct temp_name);
6495 : 340471 : t->next = temp_names;
6496 : 340471 : temp_names = t;
6497 : : }
6498 : 344180 : t->length = suffix_length;
6499 : 344180 : if (saved_suffix)
6500 : : {
6501 : 0 : t->suffix = saved_suffix;
6502 : 0 : saved_suffix = NULL;
6503 : : }
6504 : : else
6505 : 344180 : t->suffix = save_string (suffix, suffix_length);
6506 : 344180 : t->unique = (c == 'u' || c == 'U' || c == 'j');
6507 : 344180 : temp_filename = make_temp_file (t->suffix);
6508 : 344180 : temp_filename_length = strlen (temp_filename);
6509 : 344180 : t->filename = temp_filename;
6510 : 344180 : t->filename_length = temp_filename_length;
6511 : : }
6512 : :
6513 : 505876 : free (saved_suffix);
6514 : :
6515 : 505876 : obstack_grow (&obstack, t->filename, t->filename_length);
6516 : 505876 : delete_this_arg = 1;
6517 : : }
6518 : 505876 : arg_going = 1;
6519 : 505876 : break;
6520 : :
6521 : 277326 : case 'i':
6522 : 277326 : 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 : 29256 : if (at_file_supplied)
6529 : 12445 : open_at_file ();
6530 : :
6531 : 71731 : for (i = 0; (int) i < n_infiles; i++)
6532 : 84950 : if (compile_input_file_p (&infiles[i]))
6533 : : {
6534 : 38341 : store_arg (infiles[i].name, 0, 0);
6535 : 38341 : infiles[i].compiled = true;
6536 : : }
6537 : :
6538 : 29256 : if (at_file_supplied)
6539 : 12445 : close_at_file ();
6540 : : }
6541 : : else
6542 : : {
6543 : 248070 : obstack_grow (&obstack, gcc_input_filename,
6544 : : input_filename_length);
6545 : 248070 : arg_going = 1;
6546 : : }
6547 : : break;
6548 : :
6549 : 214790 : case 'I':
6550 : 214790 : {
6551 : 214790 : struct spec_path_info info;
6552 : :
6553 : 214790 : 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 : 214790 : 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 : 214790 : if (gcc_exec_prefix)
6572 : : {
6573 : 214790 : do_spec_1 ("-iprefix", 1, NULL);
6574 : : /* Make this a separate argument. */
6575 : 214790 : do_spec_1 (" ", 0, NULL);
6576 : 214790 : do_spec_1 (gcc_exec_prefix, 1, NULL);
6577 : 214790 : do_spec_1 (" ", 0, NULL);
6578 : : }
6579 : :
6580 : 214790 : if (target_system_root_changed ||
6581 : 214790 : (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 : 214790 : info.option = "-isystem";
6593 : 214790 : info.append = "include";
6594 : 214790 : info.append_len = strlen (info.append);
6595 : 214790 : info.omit_relative = false;
6596 : 214790 : info.separate_options = true;
6597 : 214790 : info.realpaths = false;
6598 : :
6599 : 214790 : for_each_path (&include_prefixes, false, info.append_len,
6600 : : spec_path, &info);
6601 : :
6602 : 214790 : info.append = "include-fixed";
6603 : 214790 : if (*sysroot_hdrs_suffix_spec)
6604 : 0 : info.append = concat (info.append, dir_separator_str,
6605 : : multilib_dir, NULL);
6606 : 214790 : 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 : 214790 : info.append_len = strlen (info.append);
6619 : 214790 : for_each_path (&include_prefixes, false, info.append_len,
6620 : : spec_path, &info);
6621 : : }
6622 : 214790 : break;
6623 : :
6624 : 92576 : 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 : 92576 : if (at_file_supplied)
6630 : 6 : open_at_file ();
6631 : :
6632 : 411146 : for (i = 0; i < n_infiles + lang_specific_extra_outfiles; i++)
6633 : 318570 : if (outfiles[i])
6634 : 318530 : store_arg (outfiles[i], 0, 0);
6635 : :
6636 : 92576 : if (at_file_supplied)
6637 : 6 : close_at_file ();
6638 : : break;
6639 : :
6640 : 3796 : case 'O':
6641 : 3796 : obstack_grow (&obstack, TARGET_OBJECT_SUFFIX, strlen (TARGET_OBJECT_SUFFIX));
6642 : 3796 : arg_going = 1;
6643 : 3796 : break;
6644 : :
6645 : 523523 : case 's':
6646 : 523523 : this_is_library_file = 1;
6647 : 523523 : break;
6648 : :
6649 : 0 : case 'T':
6650 : 0 : this_is_linker_script = 1;
6651 : 0 : break;
6652 : :
6653 : 443 : case 'V':
6654 : 443 : outfiles[input_file_number] = NULL;
6655 : 443 : break;
6656 : :
6657 : 97459 : case 'w':
6658 : 97459 : this_is_output_file = 1;
6659 : 97459 : break;
6660 : :
6661 : 167552 : case 'W':
6662 : 167552 : {
6663 : 167552 : unsigned int cur_index = argbuf.length ();
6664 : : /* Handle the {...} following the %W. */
6665 : 167552 : if (*p != '{')
6666 : 0 : fatal_error (input_location,
6667 : : "spec %qs has invalid %<%%W%c%>", spec, *p);
6668 : 167552 : p = handle_braces (p + 1);
6669 : 167552 : if (p == 0)
6670 : : return -1;
6671 : 167552 : end_going_arg ();
6672 : : /* If any args were output, mark the last one for deletion
6673 : : on failure. */
6674 : 335104 : if (argbuf.length () != cur_index)
6675 : 164439 : record_temp_file (argbuf.last (), 0, 1);
6676 : : break;
6677 : : }
6678 : :
6679 : 292194 : case '@':
6680 : : /* Handle the {...} following the %@. */
6681 : 292194 : if (*p != '{')
6682 : 0 : fatal_error (input_location,
6683 : : "spec %qs has invalid %<%%@%c%>", spec, *p);
6684 : 292194 : if (at_file_supplied)
6685 : 15 : open_at_file ();
6686 : 292194 : p = handle_braces (p + 1);
6687 : 292194 : if (at_file_supplied)
6688 : 15 : close_at_file ();
6689 : 292194 : 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 : 92576 : case 'X':
6723 : 92576 : do_specs_vec (linker_options);
6724 : 92576 : break;
6725 : :
6726 : : /* Dump out the options accumulated previously using -Wa,. */
6727 : 160223 : case 'Y':
6728 : 160223 : do_specs_vec (assembler_options);
6729 : 160223 : break;
6730 : :
6731 : : /* Dump out the options accumulated previously using -Wp,. */
6732 : 199618 : case 'Z':
6733 : 199618 : do_specs_vec (preprocessor_options);
6734 : 199618 : break;
6735 : :
6736 : : /* Here are digits and numbers that just process
6737 : : a certain constant string as a spec. */
6738 : :
6739 : 274377 : case '1':
6740 : 274377 : value = do_spec_1 (cc1_spec, 0, NULL);
6741 : 274377 : if (value != 0)
6742 : : return value;
6743 : : break;
6744 : :
6745 : 91867 : case '2':
6746 : 91867 : value = do_spec_1 (cc1plus_spec, 0, NULL);
6747 : 91867 : if (value != 0)
6748 : : return value;
6749 : : break;
6750 : :
6751 : 160223 : case 'a':
6752 : 160223 : value = do_spec_1 (asm_spec, 0, NULL);
6753 : 160223 : if (value != 0)
6754 : : return value;
6755 : : break;
6756 : :
6757 : 160223 : case 'A':
6758 : 160223 : value = do_spec_1 (asm_final_spec, 0, NULL);
6759 : 160223 : if (value != 0)
6760 : : return value;
6761 : : break;
6762 : :
6763 : 199618 : case 'C':
6764 : 199618 : {
6765 : 399236 : const char *const spec
6766 : 199618 : = (input_file_compiler->cpp_spec
6767 : 199618 : ? input_file_compiler->cpp_spec
6768 : : : cpp_spec);
6769 : 199618 : value = do_spec_1 (spec, 0, NULL);
6770 : 199618 : if (value != 0)
6771 : : return value;
6772 : : }
6773 : : break;
6774 : :
6775 : 92371 : case 'E':
6776 : 92371 : value = do_spec_1 (endfile_spec, 0, NULL);
6777 : 92371 : if (value != 0)
6778 : : return value;
6779 : : break;
6780 : :
6781 : 92576 : case 'l':
6782 : 92576 : value = do_spec_1 (link_spec, 0, NULL);
6783 : 92576 : if (value != 0)
6784 : : return value;
6785 : : break;
6786 : :
6787 : 179498 : case 'L':
6788 : 179498 : value = do_spec_1 (lib_spec, 0, NULL);
6789 : 179498 : 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 : 358802 : case 'G':
6802 : 358802 : value = do_spec_1 (libgcc_spec, 0, NULL);
6803 : 358802 : 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 : 92371 : case 'S':
6821 : 92371 : value = do_spec_1 (startfile_spec, 0, NULL);
6822 : 92371 : if (value != 0)
6823 : : return value;
6824 : : break;
6825 : :
6826 : : /* Here we define characters other than letters and digits. */
6827 : :
6828 : 38543799 : case '{':
6829 : 38543799 : p = handle_braces (p);
6830 : 38543799 : if (p == 0)
6831 : : return -1;
6832 : : break;
6833 : :
6834 : 422985 : case ':':
6835 : 422985 : p = handle_spec_function (p, NULL, soft_matched_part);
6836 : 422985 : 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 : 1411723 : case '<':
6858 : 1411723 : case '>':
6859 : 1411723 : {
6860 : 1411723 : unsigned len = 0;
6861 : 1411723 : int have_wildcard = 0;
6862 : 1411723 : int i;
6863 : 1411723 : int switch_option;
6864 : :
6865 : 1411723 : if (c == '>')
6866 : 1411723 : switch_option = SWITCH_IGNORE | SWITCH_KEEP_FOR_GCC;
6867 : : else
6868 : 1411701 : switch_option = SWITCH_IGNORE;
6869 : :
6870 : 17041505 : while (p[len] && p[len] != ' ' && p[len] != '\t')
6871 : 15629782 : len++;
6872 : :
6873 : 1411723 : if (p[len-1] == '*')
6874 : 14762 : have_wildcard = 1;
6875 : :
6876 : 32260458 : for (i = 0; i < n_switches; i++)
6877 : 30848735 : if (!strncmp (switches[i].part1, p, len - have_wildcard)
6878 : 46615 : && (have_wildcard || switches[i].part1[len] == '\0'))
6879 : : {
6880 : 46350 : 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 : 46350 : if (switches[i].known)
6885 : 46350 : switches[i].validated = true;
6886 : : }
6887 : :
6888 : : p += len;
6889 : : }
6890 : : break;
6891 : :
6892 : 6672 : case '*':
6893 : 6672 : if (soft_matched_part)
6894 : : {
6895 : 6672 : if (soft_matched_part[0])
6896 : 377 : 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 : 6672 : if (*p == 0 || *p == '}')
6907 : 6672 : 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 : 32165876 : 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 : 32165876 : while (*p && *p != ')')
6928 : 29686946 : p++;
6929 : :
6930 : : /* See if it's in the list. */
6931 : 34062862 : for (len = p - name, sl = specs; sl; sl = sl->next)
6932 : 34062862 : if (sl->name_len == len && !strncmp (sl->name, name, len))
6933 : : {
6934 : 2478930 : 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 : 2478930 : break;
6940 : : }
6941 : :
6942 : 2478930 : if (sl)
6943 : : {
6944 : 2478930 : value = do_spec_1 (name, 0, NULL);
6945 : 2478930 : if (value != 0)
6946 : : return value;
6947 : : }
6948 : :
6949 : : /* Discard the closing paren. */
6950 : 2473620 : if (*p)
6951 : 2473620 : 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 : 334811077 : default:
6978 : : /* Ordinary character: put it into the current argument. */
6979 : 334811077 : obstack_1grow (&obstack, c);
6980 : 334811077 : 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 : 49649130 : if (processing_spec_function)
6986 : 4272461 : end_going_arg ();
6987 : :
6988 : : return 0;
6989 : : }
6990 : :
6991 : : /* Look up a spec function. */
6992 : :
6993 : : static const struct spec_function *
6994 : 2003645 : lookup_spec_function (const char *name)
6995 : : {
6996 : 2003645 : const struct spec_function *sf;
6997 : :
6998 : 23976895 : for (sf = static_spec_functions; sf->name != NULL; sf++)
6999 : 23976895 : 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 : 2003645 : eval_spec_function (const char *func, const char *args,
7009 : : const char *soft_matched_part)
7010 : : {
7011 : 2003645 : const struct spec_function *sf;
7012 : 2003645 : const char *funcval;
7013 : :
7014 : : /* Saved spec processing context. */
7015 : 2003645 : vec<const_char_p> save_argbuf;
7016 : :
7017 : 2003645 : int save_arg_going;
7018 : 2003645 : int save_delete_this_arg;
7019 : 2003645 : int save_this_is_output_file;
7020 : 2003645 : int save_this_is_library_file;
7021 : 2003645 : int save_input_from_pipe;
7022 : 2003645 : int save_this_is_linker_script;
7023 : 2003645 : const char *save_suffix_subst;
7024 : :
7025 : 2003645 : int save_growing_size;
7026 : 2003645 : void *save_growing_value = NULL;
7027 : :
7028 : 2003645 : sf = lookup_spec_function (func);
7029 : 2003645 : if (sf == NULL)
7030 : 0 : fatal_error (input_location, "unknown spec function %qs", func);
7031 : :
7032 : : /* Push the spec processing context. */
7033 : 2003645 : save_argbuf = argbuf;
7034 : :
7035 : 2003645 : save_arg_going = arg_going;
7036 : 2003645 : save_delete_this_arg = delete_this_arg;
7037 : 2003645 : save_this_is_output_file = this_is_output_file;
7038 : 2003645 : save_this_is_library_file = this_is_library_file;
7039 : 2003645 : save_this_is_linker_script = this_is_linker_script;
7040 : 2003645 : save_input_from_pipe = input_from_pipe;
7041 : 2003645 : 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 : 2003645 : save_growing_size = obstack_object_size (&obstack);
7052 : 2003645 : if (save_growing_size > 0)
7053 : 41627 : save_growing_value = obstack_finish (&obstack);
7054 : :
7055 : : /* Create a new spec processing context, and build the function
7056 : : arguments. */
7057 : :
7058 : 2003645 : alloc_args ();
7059 : 2003645 : 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 : 6010935 : funcval = (*sf->func) (argbuf.length (),
7067 : : argbuf.address ());
7068 : :
7069 : : /* Pop the spec processing context. */
7070 : 2003645 : argbuf.release ();
7071 : 2003645 : argbuf = save_argbuf;
7072 : :
7073 : 2003645 : arg_going = save_arg_going;
7074 : 2003645 : delete_this_arg = save_delete_this_arg;
7075 : 2003645 : this_is_output_file = save_this_is_output_file;
7076 : 2003645 : this_is_library_file = save_this_is_library_file;
7077 : 2003645 : this_is_linker_script = save_this_is_linker_script;
7078 : 2003645 : input_from_pipe = save_input_from_pipe;
7079 : 2003645 : suffix_subst = save_suffix_subst;
7080 : :
7081 : 2003645 : if (save_growing_size > 0)
7082 : 41627 : obstack_grow (&obstack, save_growing_value, save_growing_size);
7083 : :
7084 : 2003645 : 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 : 2003645 : handle_spec_function (const char *p, bool *retval_nonnull,
7104 : : const char *soft_matched_part)
7105 : : {
7106 : 2003645 : char *func, *args;
7107 : 2003645 : const char *endp, *funcval;
7108 : 2003645 : int count;
7109 : :
7110 : 2003645 : processing_spec_function++;
7111 : :
7112 : : /* Get the function name. */
7113 : 18645561 : for (endp = p; *endp != '\0'; endp++)
7114 : : {
7115 : 18645561 : if (*endp == '(') /* ) */
7116 : : break;
7117 : : /* Only allow [A-Za-z0-9], -, and _ in function names. */
7118 : 16641916 : if (!ISALNUM (*endp) && !(*endp == '-' || *endp == '_'))
7119 : 0 : fatal_error (input_location, "malformed spec function name");
7120 : : }
7121 : 2003645 : if (*endp != '(') /* ) */
7122 : 0 : fatal_error (input_location, "no arguments for spec function");
7123 : 2003645 : func = save_string (p, endp - p);
7124 : 2003645 : p = ++endp;
7125 : :
7126 : : /* Get the arguments. */
7127 : 24382387 : for (count = 0; *endp != '\0'; endp++)
7128 : : {
7129 : : /* ( */
7130 : 24382387 : if (*endp == ')')
7131 : : {
7132 : 2090774 : if (count == 0)
7133 : : break;
7134 : 87129 : count--;
7135 : : }
7136 : 22291613 : else if (*endp == '(') /* ) */
7137 : 87129 : count++;
7138 : : }
7139 : : /* ( */
7140 : 2003645 : if (*endp != ')')
7141 : 0 : fatal_error (input_location, "malformed spec function arguments");
7142 : 2003645 : args = save_string (p, endp - p);
7143 : 2003645 : p = ++endp;
7144 : :
7145 : : /* p now points to just past the end of the spec function expression. */
7146 : :
7147 : 2003645 : funcval = eval_spec_function (func, args, soft_matched_part);
7148 : 2003645 : if (funcval != NULL && do_spec_1 (funcval, 0, NULL) < 0)
7149 : : p = NULL;
7150 : 2003645 : if (retval_nonnull)
7151 : 1580660 : *retval_nonnull = funcval != NULL;
7152 : :
7153 : 2003645 : free (func);
7154 : 2003645 : free (args);
7155 : :
7156 : 2003645 : processing_spec_function--;
7157 : :
7158 : 2003645 : 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 : 36702057 : switch_matches (const char *atom, const char *end_atom, int starred)
7189 : : {
7190 : 36702057 : int i;
7191 : 36702057 : int len = end_atom - atom;
7192 : 36702057 : int plen = starred ? len : -1;
7193 : :
7194 : 818627888 : for (i = 0; i < n_switches; i++)
7195 : 783242896 : if (!strncmp (switches[i].part1, atom, len)
7196 : 2225800 : && (starred || switches[i].part1[len] == '\0')
7197 : 784560558 : && 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 : 781925832 : else if (switches[i].args != 0)
7203 : : {
7204 : 190197356 : if ((*switches[i].part1 == 'D' || *switches[i].part1 == 'U')
7205 : 8161107 : && *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 : 10784054 : mark_matching_switches (const char *atom, const char *end_atom, int starred)
7223 : : {
7224 : 10784054 : int i;
7225 : 10784054 : int len = end_atom - atom;
7226 : 10784054 : int plen = starred ? len : -1;
7227 : :
7228 : 244822800 : for (i = 0; i < n_switches; i++)
7229 : 234038746 : if (!strncmp (switches[i].part1, atom, len)
7230 : 5817232 : && (starred || switches[i].part1[len] == '\0')
7231 : 239647025 : && check_live_switch (i, plen))
7232 : 5561939 : switches[i].ordering = 1;
7233 : 10784054 : }
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 : 9362069 : process_marked_switches (void)
7239 : : {
7240 : 9362069 : int i;
7241 : :
7242 : 212451024 : for (i = 0; i < n_switches; i++)
7243 : 203088955 : if (switches[i].ordering == 1)
7244 : : {
7245 : 5561939 : switches[i].ordering = 0;
7246 : 5561939 : give_switch (i, 0);
7247 : : }
7248 : 9362069 : }
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 : 39003545 : handle_braces (const char *p)
7256 : : {
7257 : 39003545 : const char *atom, *end_atom;
7258 : 39003545 : const char *d_atom = NULL, *d_end_atom = NULL;
7259 : 39003545 : char *esc_buf = NULL, *d_esc_buf = NULL;
7260 : 39003545 : int esc;
7261 : 39003545 : const char *orig = p;
7262 : :
7263 : 39003545 : bool a_is_suffix;
7264 : 39003545 : bool a_is_spectype;
7265 : 39003545 : bool a_is_starred;
7266 : 39003545 : bool a_is_negated;
7267 : 39003545 : bool a_matched;
7268 : :
7269 : 39003545 : bool a_must_be_last = false;
7270 : 39003545 : bool ordered_set = false;
7271 : 39003545 : bool disjunct_set = false;
7272 : 39003545 : bool disj_matched = false;
7273 : 39003545 : bool disj_starred = true;
7274 : 39003545 : bool n_way_choice = false;
7275 : 39003545 : bool n_way_matched = false;
7276 : :
7277 : : #define SKIP_WHITE() do { while (*p == ' ' || *p == '\t') p++; } while (0)
7278 : :
7279 : 51570183 : do
7280 : : {
7281 : 51570183 : 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 : 51570183 : a_matched = false;
7287 : 51570183 : a_is_suffix = false;
7288 : 51570183 : a_is_starred = false;
7289 : 51570183 : a_is_negated = false;
7290 : 51570183 : a_is_spectype = false;
7291 : :
7292 : 58868049 : SKIP_WHITE ();
7293 : 51570183 : if (*p == '!')
7294 : 12404867 : p++, a_is_negated = true;
7295 : :
7296 : 51570183 : SKIP_WHITE ();
7297 : 51570183 : if (*p == '%' && p[1] == ':')
7298 : : {
7299 : 1580660 : atom = NULL;
7300 : 1580660 : end_atom = NULL;
7301 : 1580660 : p = handle_spec_function (p + 2, &a_matched, NULL);
7302 : : }
7303 : : else
7304 : : {
7305 : 49989523 : if (*p == '.')
7306 : 0 : p++, a_is_suffix = true;
7307 : 49989523 : else if (*p == ',')
7308 : 0 : p++, a_is_spectype = true;
7309 : :
7310 : 49989523 : atom = p;
7311 : 49989523 : esc = 0;
7312 : 49989523 : while (ISIDNUM (*p) || *p == '-' || *p == '+' || *p == '='
7313 : 372194189 : || *p == ',' || *p == '.' || *p == '@' || *p == '\\')
7314 : : {
7315 : 322204666 : 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 : 322204666 : p++;
7324 : : }
7325 : 49989523 : end_atom = p;
7326 : :
7327 : 49989523 : 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 : 49989523 : if (*p == '*')
7348 : 11356523 : p++, a_is_starred = 1;
7349 : : }
7350 : :
7351 : 51570183 : SKIP_WHITE ();
7352 : 51570183 : switch (*p)
7353 : : {
7354 : 10784054 : case '&': case '}':
7355 : : /* Substitute the switch(es) indicated by the current atom. */
7356 : 10784054 : ordered_set = true;
7357 : 10784054 : if (disjunct_set || n_way_choice || a_is_negated || a_is_suffix
7358 : 10784054 : || a_is_spectype || atom == end_atom)
7359 : 0 : goto invalid;
7360 : :
7361 : 10784054 : mark_matching_switches (atom, end_atom, a_is_starred);
7362 : :
7363 : 10784054 : if (*p == '}')
7364 : 9362069 : process_marked_switches ();
7365 : : break;
7366 : :
7367 : 40786129 : case '|': case ':':
7368 : : /* Substitute some text if the current atom appears as a switch
7369 : : or suffix. */
7370 : 40786129 : disjunct_set = true;
7371 : 40786129 : if (ordered_set)
7372 : 0 : goto invalid;
7373 : :
7374 : 40786129 : if (atom && atom == end_atom)
7375 : : {
7376 : 1714383 : if (!n_way_choice || disj_matched || *p == '|'
7377 : 1714383 : || a_is_negated || a_is_suffix || a_is_spectype
7378 : 1714383 : || 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 : 1714383 : a_must_be_last = true;
7384 : 1714383 : disj_matched = !n_way_matched;
7385 : 1714383 : disj_starred = false;
7386 : : }
7387 : : else
7388 : : {
7389 : 39071746 : if ((a_is_suffix || a_is_spectype) && a_is_starred)
7390 : 0 : goto invalid;
7391 : :
7392 : 39071746 : if (!a_is_starred)
7393 : 33709306 : disj_starred = false;
7394 : :
7395 : : /* Don't bother testing this atom if we already have a
7396 : : match. */
7397 : 39071746 : if (!disj_matched && !n_way_matched)
7398 : : {
7399 : 38089961 : if (atom == NULL)
7400 : : /* a_matched is already set by handle_spec_function. */;
7401 : 36609477 : else if (a_is_suffix)
7402 : 0 : a_matched = input_suffix_matches (atom, end_atom);
7403 : 36609477 : else if (a_is_spectype)
7404 : 0 : a_matched = input_spec_matches (atom, end_atom);
7405 : : else
7406 : 36609477 : a_matched = switch_matches (atom, end_atom, a_is_starred);
7407 : :
7408 : 38089961 : if (a_matched != a_is_negated)
7409 : : {
7410 : 12286009 : disj_matched = true;
7411 : 12286009 : d_atom = atom;
7412 : 12286009 : d_end_atom = end_atom;
7413 : 12286009 : d_esc_buf = esc_buf;
7414 : : }
7415 : : }
7416 : : }
7417 : :
7418 : 40786129 : if (*p == ':')
7419 : : {
7420 : : /* Found the body, that is, the text to substitute if the
7421 : : current disjunction matches. */
7422 : 65096172 : p = process_brace_body (p + 1, d_atom, d_end_atom, disj_starred,
7423 : 32548086 : disj_matched && !n_way_matched);
7424 : 32548086 : if (p == 0)
7425 : 35122 : goto done;
7426 : :
7427 : : /* If we have an N-way choice, reset state for the next
7428 : : disjunction. */
7429 : 32512964 : if (*p == ';')
7430 : : {
7431 : 2906610 : n_way_choice = true;
7432 : 2906610 : n_way_matched |= disj_matched;
7433 : 2906610 : disj_matched = false;
7434 : 2906610 : disj_starred = true;
7435 : 2906610 : d_atom = d_end_atom = NULL;
7436 : : }
7437 : : }
7438 : : break;
7439 : :
7440 : 0 : default:
7441 : 0 : goto invalid;
7442 : : }
7443 : : }
7444 : 51535061 : while (*p++ != '}');
7445 : :
7446 : 38968423 : done:
7447 : 39003545 : if (d_esc_buf && d_esc_buf != esc_buf)
7448 : 0 : free (d_esc_buf);
7449 : 39003545 : if (esc_buf)
7450 : 0 : free (esc_buf);
7451 : :
7452 : 39003545 : 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 : 32548086 : process_brace_body (const char *p, const char *atom, const char *end_atom,
7472 : : int starred, int matched)
7473 : : {
7474 : 32548086 : const char *body, *end_body;
7475 : 32548086 : unsigned int nesting_level;
7476 : 32548086 : bool have_subst = false;
7477 : :
7478 : : /* Locate the closing } or ;, honoring nested braces.
7479 : : Trim trailing whitespace. */
7480 : 32548086 : body = p;
7481 : 32548086 : nesting_level = 1;
7482 : 11031308874 : for (;;)
7483 : : {
7484 : 5531928480 : if (*p == '{')
7485 : 164258530 : nesting_level++;
7486 : 5367669950 : else if (*p == '}')
7487 : : {
7488 : 193900006 : if (!--nesting_level)
7489 : : break;
7490 : : }
7491 : 5173769944 : else if (*p == ';' && nesting_level == 1)
7492 : : break;
7493 : 5170863334 : else if (*p == '%' && p[1] == '*' && nesting_level == 1)
7494 : : have_subst = true;
7495 : 5170106930 : else if (*p == '\0')
7496 : 0 : goto invalid;
7497 : 5499380394 : p++;
7498 : : }
7499 : :
7500 : : end_body = p;
7501 : 35235365 : while (end_body[-1] == ' ' || end_body[-1] == '\t')
7502 : 2687279 : end_body--;
7503 : :
7504 : 32548086 : if (have_subst && !starred)
7505 : 0 : goto invalid;
7506 : :
7507 : 32548086 : 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 : 13212458 : char *string = save_string (body, end_body - body);
7513 : 13212458 : if (!have_subst)
7514 : : {
7515 : 13205790 : if (do_spec_1 (string, 0, NULL) < 0)
7516 : : {
7517 : 35122 : free (string);
7518 : 35122 : return 0;
7519 : : }
7520 : : }
7521 : : else
7522 |