[Ada] Argument_String_To_List creates empty items from whitespace
[gcc.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2018 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 is the top level of cc1/c++.
21 It parses command args, opens files, invokes the various passes
22 in the proper order, and counts the time used by each.
23 Error messages and low-level interface to malloc also handled here. */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "backend.h"
29 #include "target.h"
30 #include "rtl.h"
31 #include "tree.h"
32 #include "gimple.h"
33 #include "alloc-pool.h"
34 #include "timevar.h"
35 #include "memmodel.h"
36 #include "tm_p.h"
37 #include "optabs-libfuncs.h"
38 #include "insn-config.h"
39 #include "ira.h"
40 #include "recog.h"
41 #include "cgraph.h"
42 #include "coverage.h"
43 #include "diagnostic.h"
44 #include "varasm.h"
45 #include "tree-inline.h"
46 #include "realmpfr.h" /* For GMP/MPFR/MPC versions, in print_version. */
47 #include "version.h"
48 #include "flags.h"
49 #include "insn-attr.h"
50 #include "output.h"
51 #include "toplev.h"
52 #include "expr.h"
53 #include "intl.h"
54 #include "tree-diagnostic.h"
55 #include "params.h"
56 #include "reload.h"
57 #include "lra.h"
58 #include "dwarf2asm.h"
59 #include "debug.h"
60 #include "common/common-target.h"
61 #include "langhooks.h"
62 #include "cfgloop.h" /* for init_set_costs */
63 #include "hosthooks.h"
64 #include "opts.h"
65 #include "opts-diagnostic.h"
66 #include "stringpool.h"
67 #include "attribs.h"
68 #include "asan.h"
69 #include "tsan.h"
70 #include "plugin.h"
71 #include "context.h"
72 #include "pass_manager.h"
73 #include "auto-profile.h"
74 #include "dwarf2out.h"
75 #include "ipa-reference.h"
76 #include "symbol-summary.h"
77 #include "tree-vrp.h"
78 #include "ipa-prop.h"
79 #include "gcse.h"
80 #include "omp-offload.h"
81 #include "hsa-common.h"
82 #include "edit-context.h"
83 #include "tree-pass.h"
84 #include "dumpfile.h"
85 #include "ipa-fnsummary.h"
86
87 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
88 #include "dbxout.h"
89 #endif
90
91 #ifdef XCOFF_DEBUGGING_INFO
92 #include "xcoffout.h" /* Needed for external data declarations. */
93 #endif
94
95 #include "selftest.h"
96
97 #ifdef HAVE_isl
98 #include <isl/version.h>
99 #endif
100
101 static void general_init (const char *, bool);
102 static void do_compile ();
103 static void process_options (void);
104 static void backend_init (void);
105 static int lang_dependent_init (const char *);
106 static void init_asm_output (const char *);
107 static void finalize (bool);
108
109 static void crash_signal (int) ATTRIBUTE_NORETURN;
110 static void compile_file (void);
111
112 /* True if we don't need a backend (e.g. preprocessing only). */
113 static bool no_backend;
114
115 /* Length of line when printing switch values. */
116 #define MAX_LINE 75
117
118 /* Decoded options, and number of such options. */
119 struct cl_decoded_option *save_decoded_options;
120 unsigned int save_decoded_options_count;
121
122 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
123 to optimize in process_options (). */
124 #define AUTODETECT_VALUE 2
125
126 /* Debug hooks - dependent upon command line options. */
127
128 const struct gcc_debug_hooks *debug_hooks;
129
130 /* The FUNCTION_DECL for the function currently being compiled,
131 or 0 if between functions. */
132 tree current_function_decl;
133
134 /* Set to the FUNC_BEGIN label of the current function, or NULL
135 if none. */
136 const char * current_function_func_begin_label;
137
138 /* A random sequence of characters, unless overridden by user. */
139 static const char *flag_random_seed;
140
141 /* A local time stamp derived from the time of compilation. It will be
142 zero if the system cannot provide a time. It will be -1u, if the
143 user has specified a particular random seed. */
144 unsigned local_tick;
145
146 /* Random number for this compilation */
147 HOST_WIDE_INT random_seed;
148
149 /* -f flags. */
150
151 /* When non-NULL, indicates that whenever space is allocated on the
152 stack, the resulting stack pointer must not pass this
153 address---that is, for stacks that grow downward, the stack pointer
154 must always be greater than or equal to this address; for stacks
155 that grow upward, the stack pointer must be less than this address.
156 At present, the rtx may be either a REG or a SYMBOL_REF, although
157 the support provided depends on the backend. */
158 rtx stack_limit_rtx;
159
160 struct target_flag_state default_target_flag_state;
161 #if SWITCHABLE_TARGET
162 struct target_flag_state *this_target_flag_state = &default_target_flag_state;
163 #else
164 #define this_target_flag_state (&default_target_flag_state)
165 #endif
166
167 /* The user symbol prefix after having resolved same. */
168 const char *user_label_prefix;
169
170 /* Output files for assembler code (real compiler output)
171 and debugging dumps. */
172
173 FILE *asm_out_file;
174 FILE *aux_info_file;
175 FILE *stack_usage_file = NULL;
176
177 /* The current working directory of a translation. It's generally the
178 directory from which compilation was initiated, but a preprocessed
179 file may specify the original directory in which it was
180 created. */
181
182 static const char *src_pwd;
183
184 /* Initialize src_pwd with the given string, and return true. If it
185 was already initialized, return false. As a special case, it may
186 be called with a NULL argument to test whether src_pwd has NOT been
187 initialized yet. */
188
189 bool
190 set_src_pwd (const char *pwd)
191 {
192 if (src_pwd)
193 {
194 if (strcmp (src_pwd, pwd) == 0)
195 return true;
196 else
197 return false;
198 }
199
200 src_pwd = xstrdup (pwd);
201 return true;
202 }
203
204 /* Return the directory from which the translation unit was initiated,
205 in case set_src_pwd() was not called before to assign it a
206 different value. */
207
208 const char *
209 get_src_pwd (void)
210 {
211 if (! src_pwd)
212 {
213 src_pwd = getpwd ();
214 if (!src_pwd)
215 src_pwd = ".";
216 }
217
218 return src_pwd;
219 }
220
221 /* Called when the start of a function definition is parsed,
222 this function prints on stderr the name of the function. */
223 void
224 announce_function (tree decl)
225 {
226 if (!quiet_flag)
227 {
228 if (rtl_dump_and_exit)
229 fprintf (stderr, "%s ",
230 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
231 else
232 fprintf (stderr, " %s",
233 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
234 fflush (stderr);
235 pp_needs_newline (global_dc->printer) = true;
236 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
237 }
238 }
239
240 /* Initialize local_tick with the time of day, or -1 if
241 flag_random_seed is set. */
242
243 static void
244 init_local_tick (void)
245 {
246 if (!flag_random_seed)
247 {
248 #ifdef HAVE_GETTIMEOFDAY
249 {
250 struct timeval tv;
251
252 gettimeofday (&tv, NULL);
253 local_tick = (unsigned) tv.tv_sec * 1000 + tv.tv_usec / 1000;
254 }
255 #else
256 {
257 time_t now = time (NULL);
258
259 if (now != (time_t)-1)
260 local_tick = (unsigned) now;
261 }
262 #endif
263 }
264 else
265 local_tick = -1;
266 }
267
268 /* Obtain the random_seed. Unless NOINIT, initialize it if
269 it's not provided in the command line. */
270
271 HOST_WIDE_INT
272 get_random_seed (bool noinit)
273 {
274 if (!random_seed && !noinit)
275 {
276 int fd = open ("/dev/urandom", O_RDONLY);
277 if (fd >= 0)
278 {
279 if (read (fd, &random_seed, sizeof (random_seed))
280 != sizeof (random_seed))
281 random_seed = 0;
282 close (fd);
283 }
284 if (!random_seed)
285 random_seed = local_tick ^ getpid ();
286 }
287 return random_seed;
288 }
289
290 /* Set flag_random_seed to VAL, and if non-null, reinitialize random_seed. */
291
292 void
293 set_random_seed (const char *val)
294 {
295 flag_random_seed = val;
296 if (flag_random_seed)
297 {
298 char *endp;
299
300 /* When the driver passed in a hex number don't crc it again */
301 random_seed = strtoul (flag_random_seed, &endp, 0);
302 if (!(endp > flag_random_seed && *endp == 0))
303 random_seed = crc32_string (0, flag_random_seed);
304 }
305 }
306
307 /* Handler for fatal signals, such as SIGSEGV. These are transformed
308 into ICE messages, which is much more user friendly. In case the
309 error printer crashes, reset the signal to prevent infinite recursion. */
310
311 static void
312 crash_signal (int signo)
313 {
314 signal (signo, SIG_DFL);
315
316 /* If we crashed while processing an ASM statement, then be a little more
317 graceful. It's most likely the user's fault. */
318 if (this_is_asm_operands)
319 {
320 output_operand_lossage ("unrecoverable error");
321 exit (FATAL_EXIT_CODE);
322 }
323
324 internal_error ("%s", strsignal (signo));
325 }
326
327 /* A subroutine of wrapup_global_declarations. We've come to the end of
328 the compilation unit. All deferred variables should be undeferred,
329 and all incomplete decls should be finalized. */
330
331 void
332 wrapup_global_declaration_1 (tree decl)
333 {
334 /* We're not deferring this any longer. Assignment is conditional to
335 avoid needlessly dirtying PCH pages. */
336 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
337 && DECL_DEFER_OUTPUT (decl) != 0)
338 DECL_DEFER_OUTPUT (decl) = 0;
339
340 if (VAR_P (decl) && DECL_SIZE (decl) == 0)
341 lang_hooks.finish_incomplete_decl (decl);
342 }
343
344 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
345 needs to be output. Return true if it is output. */
346
347 bool
348 wrapup_global_declaration_2 (tree decl)
349 {
350 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl)
351 || (VAR_P (decl) && DECL_HAS_VALUE_EXPR_P (decl)))
352 return false;
353
354 /* Don't write out static consts, unless we still need them.
355
356 We also keep static consts if not optimizing (for debugging),
357 unless the user specified -fno-keep-static-consts.
358 ??? They might be better written into the debug information.
359 This is possible when using DWARF.
360
361 A language processor that wants static constants to be always
362 written out (even if it is not used) is responsible for
363 calling rest_of_decl_compilation itself. E.g. the C front-end
364 calls rest_of_decl_compilation from finish_decl.
365 One motivation for this is that is conventional in some
366 environments to write things like:
367 static const char rcsid[] = "... version string ...";
368 intending to force the string to be in the executable.
369
370 A language processor that would prefer to have unneeded
371 static constants "optimized away" would just defer writing
372 them out until here. E.g. C++ does this, because static
373 constants are often defined in header files.
374
375 ??? A tempting alternative (for both C and C++) would be
376 to force a constant to be written if and only if it is
377 defined in a main file, as opposed to an include file. */
378
379 if (VAR_P (decl) && TREE_STATIC (decl))
380 {
381 varpool_node *node;
382 bool needed = true;
383 node = varpool_node::get (decl);
384
385 if (!node && flag_ltrans)
386 needed = false;
387 else if (node && node->definition)
388 needed = false;
389 else if (node && node->alias)
390 needed = false;
391 else if (!symtab->global_info_ready
392 && (TREE_USED (decl)
393 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
394 /* needed */;
395 else if (node && node->analyzed)
396 /* needed */;
397 else if (DECL_COMDAT (decl))
398 needed = false;
399 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
400 && (optimize || !flag_keep_static_consts
401 || DECL_ARTIFICIAL (decl)))
402 needed = false;
403
404 if (needed)
405 {
406 rest_of_decl_compilation (decl, 1, 1);
407 return true;
408 }
409 }
410
411 return false;
412 }
413
414 /* Do any final processing required for the declarations in VEC, of
415 which there are LEN. We write out inline functions and variables
416 that have been deferred until this point, but which are required.
417 Returns nonzero if anything was put out. */
418
419 bool
420 wrapup_global_declarations (tree *vec, int len)
421 {
422 bool reconsider, output_something = false;
423 int i;
424
425 for (i = 0; i < len; i++)
426 wrapup_global_declaration_1 (vec[i]);
427
428 /* Now emit any global variables or functions that we have been
429 putting off. We need to loop in case one of the things emitted
430 here references another one which comes earlier in the list. */
431 do
432 {
433 reconsider = false;
434 for (i = 0; i < len; i++)
435 reconsider |= wrapup_global_declaration_2 (vec[i]);
436 if (reconsider)
437 output_something = true;
438 }
439 while (reconsider);
440
441 return output_something;
442 }
443
444 /* Compile an entire translation unit. Write a file of assembly
445 output and various debugging dumps. */
446
447 static void
448 compile_file (void)
449 {
450 timevar_start (TV_PHASE_PARSING);
451 timevar_push (TV_PARSE_GLOBAL);
452
453 /* Parse entire file and generate initial debug information. */
454 lang_hooks.parse_file ();
455
456 timevar_pop (TV_PARSE_GLOBAL);
457 timevar_stop (TV_PHASE_PARSING);
458
459 if (flag_dump_locations)
460 dump_location_info (stderr);
461
462 /* Compilation is now finished except for writing
463 what's left of the symbol table output. */
464
465 if (flag_syntax_only || flag_wpa)
466 return;
467
468 /* Reset maximum_field_alignment, it can be adjusted by #pragma pack
469 and this shouldn't influence any types built by the middle-end
470 from now on (like gcov_info_type). */
471 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
472
473 ggc_protect_identifiers = false;
474
475 /* Run the actual compilation process. */
476 if (!in_lto_p)
477 {
478 timevar_start (TV_PHASE_OPT_GEN);
479 symtab->finalize_compilation_unit ();
480 timevar_stop (TV_PHASE_OPT_GEN);
481 }
482
483 /* Perform any post compilation-proper parser cleanups and
484 processing. This is currently only needed for the C++ parser,
485 which can be hopefully cleaned up so this hook is no longer
486 necessary. */
487 if (lang_hooks.decls.post_compilation_parsing_cleanups)
488 lang_hooks.decls.post_compilation_parsing_cleanups ();
489
490 if (seen_error ())
491 return;
492
493 timevar_start (TV_PHASE_LATE_ASM);
494
495 /* Compilation unit is finalized. When producing non-fat LTO object, we are
496 basically finished. */
497 if ((in_lto_p && flag_incremental_link != INCREMENTAL_LINK_LTO)
498 || !flag_lto || flag_fat_lto_objects)
499 {
500 /* File-scope initialization for AddressSanitizer. */
501 if (flag_sanitize & SANITIZE_ADDRESS)
502 asan_finish_file ();
503
504 if (flag_sanitize & SANITIZE_THREAD)
505 tsan_finish_file ();
506
507 omp_finish_file ();
508
509 hsa_output_brig ();
510
511 output_shared_constant_pool ();
512 output_object_blocks ();
513 finish_tm_clone_pairs ();
514
515 /* Write out any pending weak symbol declarations. */
516 weak_finish ();
517
518 /* This must be at the end before unwind and debug info.
519 Some target ports emit PIC setup thunks here. */
520 targetm.asm_out.code_end ();
521
522 /* Do dbx symbols. */
523 timevar_push (TV_SYMOUT);
524
525 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
526 dwarf2out_frame_finish ();
527 #endif
528
529 (*debug_hooks->finish) (main_input_filename);
530 timevar_pop (TV_SYMOUT);
531
532 /* Output some stuff at end of file if nec. */
533
534 dw2_output_indirect_constants ();
535
536 /* Flush any pending external directives. */
537 process_pending_assemble_externals ();
538 }
539
540 /* Emit LTO marker if LTO info has been previously emitted. This is
541 used by collect2 to determine whether an object file contains IL.
542 We used to emit an undefined reference here, but this produces
543 link errors if an object file with IL is stored into a shared
544 library without invoking lto1. */
545 if (flag_generate_lto || flag_generate_offload)
546 {
547 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
548 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE,
549 "__gnu_lto_v1",
550 HOST_WIDE_INT_1U, 8);
551 #elif defined ASM_OUTPUT_ALIGNED_COMMON
552 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_v1",
553 HOST_WIDE_INT_1U, 8);
554 #else
555 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_v1",
556 HOST_WIDE_INT_1U,
557 HOST_WIDE_INT_1U);
558 #endif
559 }
560
561 /* Let linker plugin know that this is a slim object and must be LTOed
562 even when user did not ask for it. */
563 if (flag_generate_lto && !flag_fat_lto_objects)
564 {
565 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
566 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE, "__gnu_lto_slim",
567 HOST_WIDE_INT_1U, 8);
568 #elif defined ASM_OUTPUT_ALIGNED_COMMON
569 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_slim",
570 HOST_WIDE_INT_1U, 8);
571 #else
572 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_slim",
573 HOST_WIDE_INT_1U,
574 HOST_WIDE_INT_1U);
575 #endif
576 }
577
578 /* Attach a special .ident directive to the end of the file to identify
579 the version of GCC which compiled this code. The format of the .ident
580 string is patterned after the ones produced by native SVR4 compilers. */
581 if (!flag_no_ident)
582 {
583 const char *pkg_version = "(GNU) ";
584 char *ident_str;
585
586 if (strcmp ("(GCC) ", pkgversion_string))
587 pkg_version = pkgversion_string;
588
589 ident_str = ACONCAT (("GCC: ", pkg_version, version_string, NULL));
590 targetm.asm_out.output_ident (ident_str);
591 }
592
593 /* Auto profile finalization. */
594 if (flag_auto_profile)
595 end_auto_profile ();
596
597 /* Invoke registered plugin callbacks. */
598 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
599
600 /* This must be at the end. Some target ports emit end of file directives
601 into the assembly file here, and hence we can not output anything to the
602 assembly file after this point. */
603 targetm.asm_out.file_end ();
604
605 timevar_stop (TV_PHASE_LATE_ASM);
606 }
607
608 /* Print version information to FILE.
609 Each line begins with INDENT (for the case where FILE is the
610 assembler output file).
611
612 If SHOW_GLOBAL_STATE is true (for cc1 etc), we are within the compiler
613 proper and can print pertinent state (e.g. params and plugins).
614
615 If SHOW_GLOBAL_STATE is false (for use by libgccjit), we are outside the
616 compiler, and we don't hold the mutex on the compiler's global state:
617 we can't print params and plugins, since they might not be initialized,
618 or might be being manipulated by a compile running in another
619 thread. */
620
621 void
622 print_version (FILE *file, const char *indent, bool show_global_state)
623 {
624 static const char fmt1[] =
625 #ifdef __GNUC__
626 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
627 #else
628 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
629 #endif
630 ;
631 static const char fmt2[] =
632 N_("GMP version %s, MPFR version %s, MPC version %s, isl version %s\n");
633 static const char fmt3[] =
634 N_("%s%swarning: %s header version %s differs from library version %s.\n");
635 static const char fmt4[] =
636 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
637 #ifndef __VERSION__
638 #define __VERSION__ "[?]"
639 #endif
640 fprintf (file,
641 file == stderr ? _(fmt1) : fmt1,
642 indent, *indent != 0 ? " " : "",
643 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
644 indent, __VERSION__);
645
646 /* We need to stringify the GMP macro values. Ugh, gmp_version has
647 two string formats, "i.j.k" and "i.j" when k is zero. As of
648 gmp-4.3.0, GMP always uses the 3 number format. */
649 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
650 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3 (X)
651 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
652 #define GCC_GMP_VERSION \
653 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
654 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
655 #define GCC_GMP_STRINGIFY_VERSION \
656 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
657 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR)
658 #else
659 #define GCC_GMP_STRINGIFY_VERSION \
660 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION) "." \
661 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_MINOR) "." \
662 GCC_GMP_STRINGIFY_VERSION2 (__GNU_MP_VERSION_PATCHLEVEL)
663 #endif
664 fprintf (file,
665 file == stderr ? _(fmt2) : fmt2,
666 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING,
667 #ifndef HAVE_isl
668 "none"
669 #else
670 isl_version ()
671 #endif
672 );
673 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
674 fprintf (file,
675 file == stderr ? _(fmt3) : fmt3,
676 indent, *indent != 0 ? " " : "",
677 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
678 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
679 fprintf (file,
680 file == stderr ? _(fmt3) : fmt3,
681 indent, *indent != 0 ? " " : "",
682 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
683 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
684 fprintf (file,
685 file == stderr ? _(fmt3) : fmt3,
686 indent, *indent != 0 ? " " : "",
687 "MPC", MPC_VERSION_STRING, mpc_get_version ());
688
689 if (show_global_state)
690 {
691 fprintf (file,
692 file == stderr ? _(fmt4) : fmt4,
693 indent, *indent != 0 ? " " : "",
694 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
695
696 print_plugins_versions (file, indent);
697 }
698 }
699
700 static int
701 print_to_asm_out_file (print_switch_type type, const char * text)
702 {
703 bool prepend_sep = true;
704
705 switch (type)
706 {
707 case SWITCH_TYPE_LINE_END:
708 putc ('\n', asm_out_file);
709 return 1;
710
711 case SWITCH_TYPE_LINE_START:
712 fputs (ASM_COMMENT_START, asm_out_file);
713 return strlen (ASM_COMMENT_START);
714
715 case SWITCH_TYPE_DESCRIPTIVE:
716 if (ASM_COMMENT_START[0] == 0)
717 prepend_sep = false;
718 /* FALLTHRU */
719 case SWITCH_TYPE_PASSED:
720 case SWITCH_TYPE_ENABLED:
721 if (prepend_sep)
722 fputc (' ', asm_out_file);
723 fputs (text, asm_out_file);
724 /* No need to return the length here as
725 print_single_switch has already done it. */
726 return 0;
727
728 default:
729 return -1;
730 }
731 }
732
733 static int
734 print_to_stderr (print_switch_type type, const char * text)
735 {
736 switch (type)
737 {
738 case SWITCH_TYPE_LINE_END:
739 putc ('\n', stderr);
740 return 1;
741
742 case SWITCH_TYPE_LINE_START:
743 return 0;
744
745 case SWITCH_TYPE_PASSED:
746 case SWITCH_TYPE_ENABLED:
747 fputc (' ', stderr);
748 /* FALLTHRU */
749
750 case SWITCH_TYPE_DESCRIPTIVE:
751 fputs (text, stderr);
752 /* No need to return the length here as
753 print_single_switch has already done it. */
754 return 0;
755
756 default:
757 return -1;
758 }
759 }
760
761 /* Print an option value and return the adjusted position in the line.
762 ??? print_fn doesn't handle errors, eg disk full; presumably other
763 code will catch a disk full though. */
764
765 static int
766 print_single_switch (print_switch_fn_type print_fn,
767 int pos,
768 print_switch_type type,
769 const char * text)
770 {
771 /* The ultrix fprintf returns 0 on success, so compute the result
772 we want here since we need it for the following test. The +1
773 is for the separator character that will probably be emitted. */
774 int len = strlen (text) + 1;
775
776 if (pos != 0
777 && pos + len > MAX_LINE)
778 {
779 print_fn (SWITCH_TYPE_LINE_END, NULL);
780 pos = 0;
781 }
782
783 if (pos == 0)
784 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
785
786 print_fn (type, text);
787 return pos + len;
788 }
789
790 /* Print active target switches using PRINT_FN.
791 POS is the current cursor position and MAX is the size of a "line".
792 Each line begins with INDENT and ends with TERM.
793 Each switch is separated from the next by SEP. */
794
795 static void
796 print_switch_values (print_switch_fn_type print_fn)
797 {
798 int pos = 0;
799 size_t j;
800
801 /* Print the options as passed. */
802 pos = print_single_switch (print_fn, pos,
803 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
804
805 for (j = 1; j < save_decoded_options_count; j++)
806 {
807 switch (save_decoded_options[j].opt_index)
808 {
809 case OPT_o:
810 case OPT_d:
811 case OPT_dumpbase:
812 case OPT_dumpdir:
813 case OPT_auxbase:
814 case OPT_quiet:
815 case OPT_version:
816 /* Ignore these. */
817 continue;
818 }
819
820 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED,
821 save_decoded_options[j].orig_option_with_args_text);
822 }
823
824 if (pos > 0)
825 print_fn (SWITCH_TYPE_LINE_END, NULL);
826
827 /* Print the -f and -m options that have been enabled.
828 We don't handle language specific options but printing argv
829 should suffice. */
830 pos = print_single_switch (print_fn, 0,
831 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
832
833 for (j = 0; j < cl_options_count; j++)
834 if (cl_options[j].cl_report
835 && option_enabled (j, &global_options) > 0)
836 pos = print_single_switch (print_fn, pos,
837 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
838
839 print_fn (SWITCH_TYPE_LINE_END, NULL);
840 }
841
842 /* Open assembly code output file. Do this even if -fsyntax-only is
843 on, because then the driver will have provided the name of a
844 temporary file or bit bucket for us. NAME is the file specified on
845 the command line, possibly NULL. */
846 static void
847 init_asm_output (const char *name)
848 {
849 if (name == NULL && asm_file_name == 0)
850 asm_out_file = stdout;
851 else
852 {
853 if (asm_file_name == 0)
854 {
855 int len = strlen (dump_base_name);
856 char *dumpname = XNEWVEC (char, len + 6);
857
858 memcpy (dumpname, dump_base_name, len + 1);
859 strip_off_ending (dumpname, len);
860 strcat (dumpname, ".s");
861 asm_file_name = dumpname;
862 }
863 if (!strcmp (asm_file_name, "-"))
864 asm_out_file = stdout;
865 else if (!canonical_filename_eq (asm_file_name, name)
866 || !strcmp (asm_file_name, HOST_BIT_BUCKET))
867 asm_out_file = fopen (asm_file_name, "w");
868 else
869 /* Use UNKOWN_LOCATION to prevent gcc from printing the first
870 line in the current file. */
871 fatal_error (UNKNOWN_LOCATION,
872 "input file %qs is the same as output file",
873 asm_file_name);
874 if (asm_out_file == 0)
875 fatal_error (UNKNOWN_LOCATION,
876 "can%'t open %qs for writing: %m", asm_file_name);
877 }
878
879 if (!flag_syntax_only)
880 {
881 targetm.asm_out.file_start ();
882
883 if (flag_record_gcc_switches)
884 {
885 if (targetm.asm_out.record_gcc_switches)
886 {
887 /* Let the target know that we are about to start recording. */
888 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
889 NULL);
890 /* Now record the switches. */
891 print_switch_values (targetm.asm_out.record_gcc_switches);
892 /* Let the target know that the recording is over. */
893 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
894 NULL);
895 }
896 else
897 inform (UNKNOWN_LOCATION,
898 "-frecord-gcc-switches is not supported by "
899 "the current target");
900 }
901
902 if (flag_verbose_asm)
903 {
904 /* Print the list of switches in effect
905 into the assembler file as comments. */
906 print_version (asm_out_file, ASM_COMMENT_START, true);
907 print_switch_values (print_to_asm_out_file);
908 putc ('\n', asm_out_file);
909 }
910 }
911 }
912
913 /* A helper function; used as the reallocator function for cpp's line
914 table. */
915 static void *
916 realloc_for_line_map (void *ptr, size_t len)
917 {
918 return ggc_realloc (ptr, len);
919 }
920
921 /* A helper function: used as the allocator function for
922 identifier_to_locale. */
923 static void *
924 alloc_for_identifier_to_locale (size_t len)
925 {
926 return ggc_alloc_atomic (len);
927 }
928
929 /* Output stack usage information. */
930 void
931 output_stack_usage (void)
932 {
933 static bool warning_issued = false;
934 enum stack_usage_kind_type { STATIC = 0, DYNAMIC, DYNAMIC_BOUNDED };
935 const char *stack_usage_kind_str[] = {
936 "static",
937 "dynamic",
938 "dynamic,bounded"
939 };
940 HOST_WIDE_INT stack_usage = current_function_static_stack_size;
941 enum stack_usage_kind_type stack_usage_kind;
942
943 if (stack_usage < 0)
944 {
945 if (!warning_issued)
946 {
947 warning (0, "stack usage computation not supported for this target");
948 warning_issued = true;
949 }
950 return;
951 }
952
953 stack_usage_kind = STATIC;
954
955 /* Add the maximum amount of space pushed onto the stack. */
956 if (maybe_ne (current_function_pushed_stack_size, 0))
957 {
958 HOST_WIDE_INT extra;
959 if (current_function_pushed_stack_size.is_constant (&extra))
960 {
961 stack_usage += extra;
962 stack_usage_kind = DYNAMIC_BOUNDED;
963 }
964 else
965 {
966 extra = constant_lower_bound (current_function_pushed_stack_size);
967 stack_usage += extra;
968 stack_usage_kind = DYNAMIC;
969 }
970 }
971
972 /* Now on to the tricky part: dynamic stack allocation. */
973 if (current_function_allocates_dynamic_stack_space)
974 {
975 if (stack_usage_kind != DYNAMIC)
976 {
977 if (current_function_has_unbounded_dynamic_stack_size)
978 stack_usage_kind = DYNAMIC;
979 else
980 stack_usage_kind = DYNAMIC_BOUNDED;
981 }
982
983 /* Add the size even in the unbounded case, this can't hurt. */
984 stack_usage += current_function_dynamic_stack_size;
985 }
986
987 if (flag_stack_usage)
988 {
989 expanded_location loc
990 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
991 /* We don't want to print the full qualified name because it can be long,
992 so we strip the scope prefix, but we may need to deal with the suffix
993 created by the compiler. */
994 const char *suffix
995 = strchr (IDENTIFIER_POINTER (DECL_NAME (current_function_decl)), '.');
996 const char *name
997 = lang_hooks.decl_printable_name (current_function_decl, 2);
998 if (suffix)
999 {
1000 const char *dot = strchr (name, '.');
1001 while (dot && strcasecmp (dot, suffix) != 0)
1002 {
1003 name = dot + 1;
1004 dot = strchr (name, '.');
1005 }
1006 }
1007 else
1008 {
1009 const char *dot = strrchr (name, '.');
1010 if (dot)
1011 name = dot + 1;
1012 }
1013
1014 fprintf (stack_usage_file,
1015 "%s:%d:%d:%s\t" HOST_WIDE_INT_PRINT_DEC"\t%s\n",
1016 lbasename (loc.file),
1017 loc.line,
1018 loc.column,
1019 name,
1020 stack_usage,
1021 stack_usage_kind_str[stack_usage_kind]);
1022 }
1023
1024 if (warn_stack_usage >= 0)
1025 {
1026 const location_t loc = DECL_SOURCE_LOCATION (current_function_decl);
1027
1028 if (stack_usage_kind == DYNAMIC)
1029 warning_at (loc, OPT_Wstack_usage_, "stack usage might be unbounded");
1030 else if (stack_usage > warn_stack_usage)
1031 {
1032 if (stack_usage_kind == DYNAMIC_BOUNDED)
1033 warning_at (loc,
1034 OPT_Wstack_usage_, "stack usage might be %wd bytes",
1035 stack_usage);
1036 else
1037 warning_at (loc, OPT_Wstack_usage_, "stack usage is %wd bytes",
1038 stack_usage);
1039 }
1040 }
1041 }
1042
1043 /* Open an auxiliary output file. */
1044 static FILE *
1045 open_auxiliary_file (const char *ext)
1046 {
1047 char *filename;
1048 FILE *file;
1049
1050 filename = concat (aux_base_name, ".", ext, NULL);
1051 file = fopen (filename, "w");
1052 if (!file)
1053 fatal_error (input_location, "can%'t open %s for writing: %m", filename);
1054 free (filename);
1055 return file;
1056 }
1057
1058 /* Alternative diagnostics callback for reentered ICE reporting. */
1059
1060 static void
1061 internal_error_reentered (diagnostic_context *, const char *, va_list *)
1062 {
1063 /* Flush the dump file if emergency_dump_function itself caused an ICE. */
1064 if (dump_file)
1065 fflush (dump_file);
1066 }
1067
1068 /* Auxiliary callback for the diagnostics code. */
1069
1070 static void
1071 internal_error_function (diagnostic_context *, const char *, va_list *)
1072 {
1073 global_dc->internal_error = internal_error_reentered;
1074 warn_if_plugins ();
1075 emergency_dump_function ();
1076 }
1077
1078 /* Initialization of the front end environment, before command line
1079 options are parsed. Signal handlers, internationalization etc.
1080 ARGV0 is main's argv[0]. */
1081 static void
1082 general_init (const char *argv0, bool init_signals)
1083 {
1084 const char *p;
1085
1086 p = argv0 + strlen (argv0);
1087 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1088 --p;
1089 progname = p;
1090
1091 xmalloc_set_program_name (progname);
1092
1093 hex_init ();
1094
1095 /* Unlock the stdio streams. */
1096 unlock_std_streams ();
1097
1098 gcc_init_libintl ();
1099
1100 identifier_to_locale_alloc = alloc_for_identifier_to_locale;
1101 identifier_to_locale_free = ggc_free;
1102
1103 /* Initialize the diagnostics reporting machinery, so option parsing
1104 can give warnings and errors. */
1105 diagnostic_initialize (global_dc, N_OPTS);
1106 /* Set a default printer. Language specific initializations will
1107 override it later. */
1108 tree_diagnostics_defaults (global_dc);
1109
1110 global_dc->show_caret
1111 = global_options_init.x_flag_diagnostics_show_caret;
1112 global_dc->show_option_requested
1113 = global_options_init.x_flag_diagnostics_show_option;
1114 global_dc->show_column
1115 = global_options_init.x_flag_show_column;
1116 global_dc->internal_error = internal_error_function;
1117 global_dc->option_enabled = option_enabled;
1118 global_dc->option_state = &global_options;
1119 global_dc->option_name = option_name;
1120
1121 if (init_signals)
1122 {
1123 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1124 #ifdef SIGSEGV
1125 signal (SIGSEGV, crash_signal);
1126 #endif
1127 #ifdef SIGILL
1128 signal (SIGILL, crash_signal);
1129 #endif
1130 #ifdef SIGBUS
1131 signal (SIGBUS, crash_signal);
1132 #endif
1133 #ifdef SIGABRT
1134 signal (SIGABRT, crash_signal);
1135 #endif
1136 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1137 signal (SIGIOT, crash_signal);
1138 #endif
1139 #ifdef SIGFPE
1140 signal (SIGFPE, crash_signal);
1141 #endif
1142
1143 /* Other host-specific signal setup. */
1144 (*host_hooks.extra_signals)();
1145 }
1146
1147 /* Initialize the garbage-collector, string pools and tree type hash
1148 table. */
1149 init_ggc ();
1150 init_stringpool ();
1151 input_location = UNKNOWN_LOCATION;
1152 line_table = ggc_alloc<line_maps> ();
1153 linemap_init (line_table, BUILTINS_LOCATION);
1154 line_table->reallocator = realloc_for_line_map;
1155 line_table->round_alloc_size = ggc_round_alloc_size;
1156 line_table->default_range_bits = 5;
1157 init_ttree ();
1158
1159 /* Initialize register usage now so switches may override. */
1160 init_reg_sets ();
1161
1162 /* Register the language-independent parameters. */
1163 global_init_params ();
1164
1165 /* This must be done after global_init_params but before argument
1166 processing. */
1167 init_ggc_heuristics ();
1168
1169 /* Create the singleton holder for global state. This creates the
1170 dump manager. */
1171 g = new gcc::context ();
1172
1173 /* Allow languages and middle-end to register their dumps before the
1174 optimization passes. */
1175 g->get_dumps ()->register_dumps ();
1176
1177 /* Create the passes. */
1178 g->set_passes (new gcc::pass_manager (g));
1179
1180 symtab = new (ggc_cleared_alloc <symbol_table> ()) symbol_table ();
1181
1182 statistics_early_init ();
1183 finish_params ();
1184 }
1185
1186 /* Return true if the current target supports -fsection-anchors. */
1187
1188 static bool
1189 target_supports_section_anchors_p (void)
1190 {
1191 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1192 return false;
1193
1194 if (targetm.asm_out.output_anchor == NULL)
1195 return false;
1196
1197 return true;
1198 }
1199
1200 /* Parse "N[:M][:...]" into struct align_flags A.
1201 VALUES contains parsed values (in reverse order), all processed
1202 values are popped. */
1203
1204 static void
1205 read_log_maxskip (auto_vec<unsigned> &values, align_flags_tuple *a)
1206 {
1207 unsigned n = values.pop ();
1208 if (n != 0)
1209 a->log = floor_log2 (n * 2 - 1);
1210 if (values.is_empty ())
1211 a->maxskip = n ? n - 1 : 0;
1212 else
1213 {
1214 unsigned m = values.pop ();
1215 if (m > n)
1216 m = n;
1217 /* -falign-foo=N:M means M-1 max bytes of padding, not M. */
1218 if (m > 0)
1219 m--;
1220 a->maxskip = m;
1221 }
1222 }
1223
1224 /* Parse "N[:M[:N2[:M2]]]" string FLAG into a pair of struct align_flags. */
1225
1226 static void
1227 parse_N_M (const char *flag, align_flags &a, unsigned int min_align_log)
1228 {
1229 if (flag)
1230 {
1231 static hash_map <nofree_string_hash, align_flags> cache;
1232 align_flags *entry = cache.get (flag);
1233 if (entry)
1234 {
1235 a = *entry;
1236 return;
1237 }
1238
1239 auto_vec<unsigned> result_values;
1240 bool r = parse_and_check_align_values (flag, NULL, result_values, false,
1241 UNKNOWN_LOCATION);
1242 if (!r)
1243 return;
1244
1245 /* Reverse values for easier manipulation. */
1246 result_values.reverse ();
1247
1248 read_log_maxskip (result_values, &a.levels[0]);
1249 if (!result_values.is_empty ())
1250 read_log_maxskip (result_values, &a.levels[1]);
1251 #ifdef SUBALIGN_LOG
1252 else
1253 {
1254 /* N2[:M2] is not specified. This arch has a default for N2.
1255 Before -falign-foo=N:M:N2:M2 was introduced, x86 had a tweak.
1256 -falign-functions=N with N > 8 was adding secondary alignment.
1257 -falign-functions=10 was emitting this before every function:
1258 .p2align 4,,9
1259 .p2align 3
1260 Now this behavior (and more) can be explicitly requested:
1261 -falign-functions=16:10:8
1262 Retain old behavior if N2 is missing: */
1263
1264 int align = 1 << a.levels[0].log;
1265 int subalign = 1 << SUBALIGN_LOG;
1266
1267 if (a.levels[0].log > SUBALIGN_LOG
1268 && a.levels[0].maxskip >= subalign - 1)
1269 {
1270 /* Set N2 unless subalign can never have any effect. */
1271 if (align > a.levels[0].maxskip + 1)
1272 a.levels[1].log = SUBALIGN_LOG;
1273 }
1274 }
1275 #endif
1276
1277 /* Cache seen value. */
1278 cache.put (flag, a);
1279 }
1280 else
1281 {
1282 /* Reset values to zero. */
1283 for (unsigned i = 0; i < 2; i++)
1284 {
1285 a.levels[i].log = 0;
1286 a.levels[i].maxskip = 0;
1287 }
1288 }
1289
1290 if ((unsigned int)a.levels[0].log < min_align_log)
1291 {
1292 a.levels[0].log = min_align_log;
1293 a.levels[0].maxskip = (1 << min_align_log) - 1;
1294 }
1295 }
1296
1297 /* Minimum alignment requirements, if arch has them. */
1298
1299 unsigned int min_align_loops_log = 0;
1300 unsigned int min_align_jumps_log = 0;
1301 unsigned int min_align_labels_log = 0;
1302 unsigned int min_align_functions_log = 0;
1303
1304 /* Process -falign-foo=N[:M[:N2[:M2]]] options. */
1305
1306 void
1307 parse_alignment_opts (void)
1308 {
1309 parse_N_M (str_align_loops, state_align_loops, min_align_loops_log);
1310 parse_N_M (str_align_jumps, state_align_jumps, min_align_jumps_log);
1311 parse_N_M (str_align_labels, state_align_labels, min_align_labels_log);
1312 parse_N_M (str_align_functions, state_align_functions,
1313 min_align_functions_log);
1314 }
1315
1316 /* Process the options that have been parsed. */
1317 static void
1318 process_options (void)
1319 {
1320 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1321 This can happen with incorrect pre-processed input. */
1322 debug_hooks = &do_nothing_debug_hooks;
1323
1324 maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT;
1325
1326 /* Allow the front end to perform consistency checks and do further
1327 initialization based on the command line options. This hook also
1328 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1329 so we can correctly initialize debug output. */
1330 no_backend = lang_hooks.post_options (&main_input_filename);
1331
1332 /* Some machines may reject certain combinations of options. */
1333 location_t saved_location = input_location;
1334 input_location = UNKNOWN_LOCATION;
1335 targetm.target_option.override ();
1336 input_location = saved_location;
1337
1338 if (flag_diagnostics_generate_patch)
1339 global_dc->edit_context_ptr = new edit_context ();
1340
1341 /* Avoid any informative notes in the second run of -fcompare-debug. */
1342 if (flag_compare_debug)
1343 diagnostic_inhibit_notes (global_dc);
1344
1345 if (flag_section_anchors && !target_supports_section_anchors_p ())
1346 {
1347 warning_at (UNKNOWN_LOCATION, OPT_fsection_anchors,
1348 "this target does not support %qs",
1349 "-fsection-anchors");
1350 flag_section_anchors = 0;
1351 }
1352
1353 if (flag_short_enums == 2)
1354 flag_short_enums = targetm.default_short_enums ();
1355
1356 /* Set aux_base_name if not already set. */
1357 if (aux_base_name)
1358 ;
1359 else if (main_input_filename)
1360 {
1361 char *name = xstrdup (lbasename (main_input_filename));
1362
1363 strip_off_ending (name, strlen (name));
1364 aux_base_name = name;
1365 }
1366 else
1367 aux_base_name = "gccaux";
1368
1369 #ifndef HAVE_isl
1370 if (flag_graphite
1371 || flag_loop_nest_optimize
1372 || flag_graphite_identity
1373 || flag_loop_parallelize_all)
1374 sorry ("Graphite loop optimizations cannot be used (isl is not available) "
1375 "(-fgraphite, -fgraphite-identity, -floop-nest-optimize, "
1376 "-floop-parallelize-all)");
1377 #endif
1378
1379 if (flag_cf_protection != CF_NONE
1380 && !(flag_cf_protection & CF_SET))
1381 {
1382 if (flag_cf_protection == CF_FULL)
1383 {
1384 error_at (UNKNOWN_LOCATION,
1385 "%<-fcf-protection=full%> is not supported for this "
1386 "target");
1387 flag_cf_protection = CF_NONE;
1388 }
1389 if (flag_cf_protection == CF_BRANCH)
1390 {
1391 error_at (UNKNOWN_LOCATION,
1392 "%<-fcf-protection=branch%> is not supported for this "
1393 "target");
1394 flag_cf_protection = CF_NONE;
1395 }
1396 if (flag_cf_protection == CF_RETURN)
1397 {
1398 error_at (UNKNOWN_LOCATION,
1399 "%<-fcf-protection=return%> is not supported for this "
1400 "target");
1401 flag_cf_protection = CF_NONE;
1402 }
1403 }
1404
1405 /* One region RA really helps to decrease the code size. */
1406 if (flag_ira_region == IRA_REGION_AUTODETECT)
1407 flag_ira_region
1408 = optimize_size || !optimize ? IRA_REGION_ONE : IRA_REGION_MIXED;
1409
1410 if (!abi_version_at_least (2))
1411 {
1412 /* -fabi-version=1 support was removed after GCC 4.9. */
1413 error_at (UNKNOWN_LOCATION,
1414 "%<-fabi-version=1%> is no longer supported");
1415 flag_abi_version = 2;
1416 }
1417
1418 /* Unrolling all loops implies that standard loop unrolling must also
1419 be done. */
1420 if (flag_unroll_all_loops)
1421 flag_unroll_loops = 1;
1422
1423 /* web and rename-registers help when run after loop unrolling. */
1424 if (flag_web == AUTODETECT_VALUE)
1425 flag_web = flag_unroll_loops;
1426
1427 if (flag_rename_registers == AUTODETECT_VALUE)
1428 flag_rename_registers = flag_unroll_loops;
1429
1430 if (flag_non_call_exceptions)
1431 flag_asynchronous_unwind_tables = 1;
1432 if (flag_asynchronous_unwind_tables)
1433 flag_unwind_tables = 1;
1434
1435 if (flag_value_profile_transformations)
1436 flag_profile_values = 1;
1437
1438 /* Warn about options that are not supported on this machine. */
1439 #ifndef INSN_SCHEDULING
1440 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1441 warning_at (UNKNOWN_LOCATION, 0,
1442 "instruction scheduling not supported on this target machine");
1443 #endif
1444 if (!DELAY_SLOTS && flag_delayed_branch)
1445 warning_at (UNKNOWN_LOCATION, 0,
1446 "this target machine does not have delayed branches");
1447
1448 user_label_prefix = USER_LABEL_PREFIX;
1449 if (flag_leading_underscore != -1)
1450 {
1451 /* If the default prefix is more complicated than "" or "_",
1452 issue a warning and ignore this option. */
1453 if (user_label_prefix[0] == 0 ||
1454 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1455 {
1456 user_label_prefix = flag_leading_underscore ? "_" : "";
1457 }
1458 else
1459 warning_at (UNKNOWN_LOCATION, 0,
1460 "-f%sleading-underscore not supported on this "
1461 "target machine", flag_leading_underscore ? "" : "no-");
1462 }
1463
1464 /* If we are in verbose mode, write out the version and maybe all the
1465 option flags in use. */
1466 if (version_flag)
1467 {
1468 print_version (stderr, "", true);
1469 if (! quiet_flag)
1470 print_switch_values (print_to_stderr);
1471 }
1472
1473 if (flag_syntax_only)
1474 {
1475 write_symbols = NO_DEBUG;
1476 profile_flag = 0;
1477 }
1478
1479 if (flag_gtoggle)
1480 {
1481 if (debug_info_level == DINFO_LEVEL_NONE)
1482 {
1483 debug_info_level = DINFO_LEVEL_NORMAL;
1484
1485 if (write_symbols == NO_DEBUG)
1486 write_symbols = PREFERRED_DEBUGGING_TYPE;
1487 }
1488 else
1489 debug_info_level = DINFO_LEVEL_NONE;
1490 }
1491
1492 if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1493 {
1494 FILE *final_output = fopen (flag_dump_final_insns, "w");
1495 if (!final_output)
1496 {
1497 error_at (UNKNOWN_LOCATION,
1498 "could not open final insn dump file %qs: %m",
1499 flag_dump_final_insns);
1500 flag_dump_final_insns = NULL;
1501 }
1502 else if (fclose (final_output))
1503 {
1504 error_at (UNKNOWN_LOCATION,
1505 "could not close zeroed insn dump file %qs: %m",
1506 flag_dump_final_insns);
1507 flag_dump_final_insns = NULL;
1508 }
1509 }
1510
1511 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1512 level is 0. */
1513 if (debug_info_level == DINFO_LEVEL_NONE)
1514 write_symbols = NO_DEBUG;
1515
1516 if (write_symbols == NO_DEBUG)
1517 ;
1518 #if defined(DBX_DEBUGGING_INFO)
1519 else if (write_symbols == DBX_DEBUG)
1520 debug_hooks = &dbx_debug_hooks;
1521 #endif
1522 #if defined(XCOFF_DEBUGGING_INFO)
1523 else if (write_symbols == XCOFF_DEBUG)
1524 debug_hooks = &xcoff_debug_hooks;
1525 #endif
1526 #ifdef DWARF2_DEBUGGING_INFO
1527 else if (write_symbols == DWARF2_DEBUG)
1528 debug_hooks = &dwarf2_debug_hooks;
1529 #endif
1530 #ifdef VMS_DEBUGGING_INFO
1531 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1532 debug_hooks = &vmsdbg_debug_hooks;
1533 #endif
1534 #ifdef DWARF2_LINENO_DEBUGGING_INFO
1535 else if (write_symbols == DWARF2_DEBUG)
1536 debug_hooks = &dwarf2_lineno_debug_hooks;
1537 #endif
1538 else
1539 error_at (UNKNOWN_LOCATION,
1540 "target system does not support the %qs debug format",
1541 debug_type_names[write_symbols]);
1542
1543 /* We know which debug output will be used so we can set flag_var_tracking
1544 and flag_var_tracking_uninit if the user has not specified them. */
1545 if (debug_info_level < DINFO_LEVEL_NORMAL
1546 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1547 {
1548 if (flag_var_tracking == 1
1549 || flag_var_tracking_uninit == 1)
1550 {
1551 if (debug_info_level < DINFO_LEVEL_NORMAL)
1552 warning_at (UNKNOWN_LOCATION, 0,
1553 "variable tracking requested, but useless unless "
1554 "producing debug info");
1555 else
1556 warning_at (UNKNOWN_LOCATION, 0,
1557 "variable tracking requested, but not supported "
1558 "by this debug format");
1559 }
1560 flag_var_tracking = 0;
1561 flag_var_tracking_uninit = 0;
1562 }
1563
1564 /* The debug hooks are used to implement -fdump-go-spec because it
1565 gives a simple and stable API for all the information we need to
1566 dump. */
1567 if (flag_dump_go_spec != NULL)
1568 debug_hooks = dump_go_spec_init (flag_dump_go_spec, debug_hooks);
1569
1570 /* If the user specifically requested variable tracking with tagging
1571 uninitialized variables, we need to turn on variable tracking.
1572 (We already determined above that variable tracking is feasible.) */
1573 if (flag_var_tracking_uninit == 1)
1574 flag_var_tracking = 1;
1575
1576 if (flag_var_tracking == AUTODETECT_VALUE)
1577 flag_var_tracking = optimize >= 1;
1578
1579 if (flag_var_tracking_uninit == AUTODETECT_VALUE)
1580 flag_var_tracking_uninit = flag_var_tracking;
1581
1582 if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1583 flag_var_tracking_assignments
1584 = (flag_var_tracking
1585 && !(flag_selective_scheduling || flag_selective_scheduling2));
1586
1587 if (flag_var_tracking_assignments_toggle)
1588 flag_var_tracking_assignments = !flag_var_tracking_assignments;
1589
1590 if (flag_var_tracking_assignments && !flag_var_tracking)
1591 flag_var_tracking = flag_var_tracking_assignments = -1;
1592
1593 if (flag_var_tracking_assignments
1594 && (flag_selective_scheduling || flag_selective_scheduling2))
1595 warning_at (UNKNOWN_LOCATION, 0,
1596 "var-tracking-assignments changes selective scheduling");
1597
1598 if (debug_nonbind_markers_p == AUTODETECT_VALUE)
1599 debug_nonbind_markers_p
1600 = (optimize
1601 && debug_info_level >= DINFO_LEVEL_NORMAL
1602 && (write_symbols == DWARF2_DEBUG
1603 || write_symbols == VMS_AND_DWARF2_DEBUG)
1604 && !(flag_selective_scheduling || flag_selective_scheduling2));
1605
1606 if (dwarf2out_as_loc_support == AUTODETECT_VALUE)
1607 dwarf2out_as_loc_support
1608 = dwarf2out_default_as_loc_support ();
1609 if (dwarf2out_as_locview_support == AUTODETECT_VALUE)
1610 dwarf2out_as_locview_support
1611 = dwarf2out_default_as_locview_support ();
1612
1613 if (debug_variable_location_views == AUTODETECT_VALUE)
1614 {
1615 debug_variable_location_views
1616 = (flag_var_tracking
1617 && debug_info_level >= DINFO_LEVEL_NORMAL
1618 && (write_symbols == DWARF2_DEBUG
1619 || write_symbols == VMS_AND_DWARF2_DEBUG)
1620 && !dwarf_strict
1621 && dwarf2out_as_loc_support
1622 && dwarf2out_as_locview_support);
1623 }
1624 else if (debug_variable_location_views == -1 && dwarf_version != 5)
1625 {
1626 warning_at (UNKNOWN_LOCATION, 0,
1627 "without -gdwarf-5, -gvariable-location-views=incompat5 "
1628 "is equivalent to -gvariable-location-views");
1629 debug_variable_location_views = 1;
1630 }
1631
1632 if (debug_internal_reset_location_views == 2)
1633 {
1634 debug_internal_reset_location_views
1635 = (debug_variable_location_views
1636 && targetm.reset_location_view);
1637 }
1638 else if (debug_internal_reset_location_views
1639 && !debug_variable_location_views)
1640 {
1641 warning_at (UNKNOWN_LOCATION, 0,
1642 "-ginternal-reset-location-views is forced disabled "
1643 "without -gvariable-location-views");
1644 debug_internal_reset_location_views = 0;
1645 }
1646
1647 if (debug_inline_points == AUTODETECT_VALUE)
1648 debug_inline_points = debug_variable_location_views;
1649 else if (debug_inline_points && !debug_nonbind_markers_p)
1650 {
1651 warning_at (UNKNOWN_LOCATION, 0,
1652 "-ginline-points is forced disabled without "
1653 "-gstatement-frontiers");
1654 debug_inline_points = 0;
1655 }
1656
1657 if (flag_tree_cselim == AUTODETECT_VALUE)
1658 {
1659 if (HAVE_conditional_move)
1660 flag_tree_cselim = 1;
1661 else
1662 flag_tree_cselim = 0;
1663 }
1664
1665 /* If auxiliary info generation is desired, open the output file.
1666 This goes in the same directory as the source file--unlike
1667 all the other output files. */
1668 if (flag_gen_aux_info)
1669 {
1670 aux_info_file = fopen (aux_info_file_name, "w");
1671 if (aux_info_file == 0)
1672 fatal_error (UNKNOWN_LOCATION,
1673 "can%'t open %s: %m", aux_info_file_name);
1674 }
1675
1676 if (!targetm_common.have_named_sections)
1677 {
1678 if (flag_function_sections)
1679 {
1680 warning_at (UNKNOWN_LOCATION, 0,
1681 "-ffunction-sections not supported for this target");
1682 flag_function_sections = 0;
1683 }
1684 if (flag_data_sections)
1685 {
1686 warning_at (UNKNOWN_LOCATION, 0,
1687 "-fdata-sections not supported for this target");
1688 flag_data_sections = 0;
1689 }
1690 }
1691
1692 if (flag_prefetch_loop_arrays > 0 && !targetm.code_for_prefetch)
1693 {
1694 warning_at (UNKNOWN_LOCATION, 0,
1695 "-fprefetch-loop-arrays not supported for this target");
1696 flag_prefetch_loop_arrays = 0;
1697 }
1698 else if (flag_prefetch_loop_arrays > 0 && !targetm.have_prefetch ())
1699 {
1700 warning_at (UNKNOWN_LOCATION, 0,
1701 "-fprefetch-loop-arrays not supported for this target "
1702 "(try -march switches)");
1703 flag_prefetch_loop_arrays = 0;
1704 }
1705
1706 /* This combination of options isn't handled for i386 targets and doesn't
1707 make much sense anyway, so don't allow it. */
1708 if (flag_prefetch_loop_arrays > 0 && optimize_size)
1709 {
1710 warning_at (UNKNOWN_LOCATION, 0,
1711 "-fprefetch-loop-arrays is not supported with -Os");
1712 flag_prefetch_loop_arrays = 0;
1713 }
1714
1715 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1716 if (flag_signaling_nans)
1717 flag_trapping_math = 1;
1718
1719 /* We cannot reassociate if we want traps or signed zeros. */
1720 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1721 {
1722 warning_at (UNKNOWN_LOCATION, 0,
1723 "-fassociative-math disabled; other options take "
1724 "precedence");
1725 flag_associative_math = 0;
1726 }
1727
1728 /* -fstack-clash-protection is not currently supported on targets
1729 where the stack grows up. */
1730 if (flag_stack_clash_protection && !STACK_GROWS_DOWNWARD)
1731 {
1732 warning_at (UNKNOWN_LOCATION, 0,
1733 "%<-fstack-clash-protection%> is not supported on targets "
1734 "where the stack grows from lower to higher addresses");
1735 flag_stack_clash_protection = 0;
1736 }
1737
1738 /* We can not support -fstack-check= and -fstack-clash-protection at
1739 the same time. */
1740 if (flag_stack_check != NO_STACK_CHECK && flag_stack_clash_protection)
1741 {
1742 warning_at (UNKNOWN_LOCATION, 0,
1743 "%<-fstack-check=%> and %<-fstack-clash_protection%> are "
1744 "mutually exclusive. Disabling %<-fstack-check=%>");
1745 flag_stack_check = NO_STACK_CHECK;
1746 }
1747
1748 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
1749 if (flag_cx_limited_range)
1750 flag_complex_method = 0;
1751
1752 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
1753 if (flag_cx_fortran_rules)
1754 flag_complex_method = 1;
1755
1756 /* Targets must be able to place spill slots at lower addresses. If the
1757 target already uses a soft frame pointer, the transition is trivial. */
1758 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1759 {
1760 warning_at (UNKNOWN_LOCATION, 0,
1761 "-fstack-protector not supported for this target");
1762 flag_stack_protect = 0;
1763 }
1764 if (!flag_stack_protect)
1765 warn_stack_protect = 0;
1766
1767 /* Address Sanitizer needs porting to each target architecture. */
1768
1769 if ((flag_sanitize & SANITIZE_ADDRESS)
1770 && !FRAME_GROWS_DOWNWARD)
1771 {
1772 warning_at (UNKNOWN_LOCATION, 0,
1773 "-fsanitize=address and -fsanitize=kernel-address "
1774 "are not supported for this target");
1775 flag_sanitize &= ~SANITIZE_ADDRESS;
1776 }
1777
1778 if ((flag_sanitize & SANITIZE_USER_ADDRESS)
1779 && targetm.asan_shadow_offset == NULL)
1780 {
1781 warning_at (UNKNOWN_LOCATION, 0,
1782 "-fsanitize=address not supported for this target");
1783 flag_sanitize &= ~SANITIZE_ADDRESS;
1784 }
1785
1786 /* Do not use IPA optimizations for register allocation if profiler is active
1787 or patchable function entries are inserted for run-time instrumentation
1788 or port does not emit prologue and epilogue as RTL. */
1789 if (profile_flag || function_entry_patch_area_size
1790 || !targetm.have_prologue () || !targetm.have_epilogue ())
1791 flag_ipa_ra = 0;
1792
1793 /* Enable -Werror=coverage-mismatch when -Werror and -Wno-error
1794 have not been set. */
1795 if (!global_options_set.x_warnings_are_errors
1796 && warn_coverage_mismatch
1797 && (global_dc->classify_diagnostic[OPT_Wcoverage_mismatch] ==
1798 DK_UNSPECIFIED))
1799 diagnostic_classify_diagnostic (global_dc, OPT_Wcoverage_mismatch,
1800 DK_ERROR, UNKNOWN_LOCATION);
1801
1802 /* Save the current optimization options. */
1803 optimization_default_node = build_optimization_node (&global_options);
1804 optimization_current_node = optimization_default_node;
1805
1806 /* Please don't change global_options after this point, those changes won't
1807 be reflected in optimization_{default,current}_node. */
1808 }
1809
1810 /* This function can be called multiple times to reinitialize the compiler
1811 back end when register classes or instruction sets have changed,
1812 before each function. */
1813 static void
1814 backend_init_target (void)
1815 {
1816 /* This depends on stack_pointer_rtx. */
1817 init_fake_stack_mems ();
1818
1819 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
1820 mode-dependent. */
1821 init_alias_target ();
1822
1823 /* Depends on HARD_FRAME_POINTER_REGNUM. */
1824 if (!ira_use_lra_p)
1825 init_reload ();
1826
1827 /* Depends on the enabled attribute. */
1828 recog_init ();
1829
1830 /* The following initialization functions need to generate rtl, so
1831 provide a dummy function context for them. */
1832 init_dummy_function_start ();
1833
1834 /* rtx_cost is mode-dependent, so cached values need to be recomputed
1835 on a mode change. */
1836 init_expmed ();
1837 init_lower_subreg ();
1838 init_set_costs ();
1839
1840 init_expr_target ();
1841 ira_init ();
1842
1843 /* We may need to recompute regno_save_code[] and regno_restore_code[]
1844 after a mode change as well. */
1845 caller_save_initialized_p = false;
1846
1847 expand_dummy_function_end ();
1848 }
1849
1850 /* Initialize the compiler back end. This function is called only once,
1851 when starting the compiler. */
1852 static void
1853 backend_init (void)
1854 {
1855 init_emit_once ();
1856
1857 init_rtlanal ();
1858 init_inline_once ();
1859 init_varasm_once ();
1860 save_register_info ();
1861
1862 /* Middle end needs this initialization for default mem attributes
1863 used by early calls to make_decl_rtl. */
1864 init_emit_regs ();
1865
1866 /* Middle end needs this initialization for mode tables used to assign
1867 modes to vector variables. */
1868 init_regs ();
1869 }
1870
1871 /* Initialize excess precision settings.
1872
1873 We have no need to modify anything here, just keep track of what the
1874 user requested. We'll figure out any appropriate relaxations
1875 later. */
1876
1877 static void
1878 init_excess_precision (void)
1879 {
1880 gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
1881 flag_excess_precision = flag_excess_precision_cmdline;
1882 }
1883
1884 /* Initialize things that are both lang-dependent and target-dependent.
1885 This function can be called more than once if target parameters change. */
1886 static void
1887 lang_dependent_init_target (void)
1888 {
1889 /* This determines excess precision settings. */
1890 init_excess_precision ();
1891
1892 /* This creates various _DECL nodes, so needs to be called after the
1893 front end is initialized. It also depends on the HAVE_xxx macros
1894 generated from the target machine description. */
1895 init_optabs ();
1896
1897 gcc_assert (!this_target_rtl->target_specific_initialized);
1898 }
1899
1900 /* Perform initializations that are lang-dependent or target-dependent.
1901 but matters only for late optimizations and RTL generation. */
1902
1903 static int rtl_initialized;
1904
1905 void
1906 initialize_rtl (void)
1907 {
1908 auto_timevar tv (g_timer, TV_INITIALIZE_RTL);
1909
1910 /* Initialization done just once per compilation, but delayed
1911 till code generation. */
1912 if (!rtl_initialized)
1913 ira_init_once ();
1914 rtl_initialized = true;
1915
1916 /* Target specific RTL backend initialization. */
1917 if (!this_target_rtl->target_specific_initialized)
1918 {
1919 backend_init_target ();
1920 this_target_rtl->target_specific_initialized = true;
1921 }
1922 }
1923
1924 /* Language-dependent initialization. Returns nonzero on success. */
1925 static int
1926 lang_dependent_init (const char *name)
1927 {
1928 location_t save_loc = input_location;
1929 if (dump_base_name == 0)
1930 dump_base_name = name && name[0] ? name : "gccdump";
1931
1932 /* Other front-end initialization. */
1933 input_location = BUILTINS_LOCATION;
1934 if (lang_hooks.init () == 0)
1935 return 0;
1936 input_location = save_loc;
1937
1938 if (!flag_wpa)
1939 {
1940 init_asm_output (name);
1941
1942 /* If stack usage information is desired, open the output file. */
1943 if (flag_stack_usage)
1944 stack_usage_file = open_auxiliary_file ("su");
1945 }
1946
1947 /* This creates various _DECL nodes, so needs to be called after the
1948 front end is initialized. */
1949 init_eh ();
1950
1951 /* Do the target-specific parts of the initialization. */
1952 lang_dependent_init_target ();
1953
1954 if (!flag_wpa)
1955 {
1956 /* If dbx symbol table desired, initialize writing it and output the
1957 predefined types. */
1958 timevar_push (TV_SYMOUT);
1959
1960 /* Now we have the correct original filename, we can initialize
1961 debug output. */
1962 (*debug_hooks->init) (name);
1963
1964 timevar_pop (TV_SYMOUT);
1965 }
1966
1967 return 1;
1968 }
1969
1970
1971 /* Reinitialize everything when target parameters, such as register usage,
1972 have changed. */
1973 void
1974 target_reinit (void)
1975 {
1976 struct rtl_data saved_x_rtl;
1977 rtx *saved_regno_reg_rtx;
1978 tree saved_optimization_current_node;
1979 struct target_optabs *saved_this_fn_optabs;
1980
1981 /* Temporarily switch to the default optimization node, so that
1982 *this_target_optabs is set to the default, not reflecting
1983 whatever a previous function used for the optimize
1984 attribute. */
1985 saved_optimization_current_node = optimization_current_node;
1986 saved_this_fn_optabs = this_fn_optabs;
1987 if (saved_optimization_current_node != optimization_default_node)
1988 {
1989 optimization_current_node = optimization_default_node;
1990 cl_optimization_restore
1991 (&global_options,
1992 TREE_OPTIMIZATION (optimization_default_node));
1993 }
1994 this_fn_optabs = this_target_optabs;
1995
1996 /* Save *crtl and regno_reg_rtx around the reinitialization
1997 to allow target_reinit being called even after prepare_function_start. */
1998 saved_regno_reg_rtx = regno_reg_rtx;
1999 if (saved_regno_reg_rtx)
2000 {
2001 saved_x_rtl = *crtl;
2002 memset (crtl, '\0', sizeof (*crtl));
2003 regno_reg_rtx = NULL;
2004 }
2005
2006 this_target_rtl->target_specific_initialized = false;
2007
2008 /* This initializes hard_frame_pointer, and calls init_reg_modes_target()
2009 to initialize reg_raw_mode[]. */
2010 init_emit_regs ();
2011
2012 /* This invokes target hooks to set fixed_reg[] etc, which is
2013 mode-dependent. */
2014 init_regs ();
2015
2016 /* Reinitialize lang-dependent parts. */
2017 lang_dependent_init_target ();
2018
2019 /* Restore the original optimization node. */
2020 if (saved_optimization_current_node != optimization_default_node)
2021 {
2022 optimization_current_node = saved_optimization_current_node;
2023 cl_optimization_restore (&global_options,
2024 TREE_OPTIMIZATION (optimization_current_node));
2025 }
2026 this_fn_optabs = saved_this_fn_optabs;
2027
2028 /* Restore regno_reg_rtx at the end, as free_after_compilation from
2029 expand_dummy_function_end clears it. */
2030 if (saved_regno_reg_rtx)
2031 {
2032 *crtl = saved_x_rtl;
2033 regno_reg_rtx = saved_regno_reg_rtx;
2034 saved_regno_reg_rtx = NULL;
2035 }
2036 }
2037
2038 void
2039 dump_memory_report (bool final)
2040 {
2041 dump_line_table_statistics ();
2042 ggc_print_statistics ();
2043 stringpool_statistics ();
2044 dump_tree_statistics ();
2045 dump_gimple_statistics ();
2046 dump_rtx_statistics ();
2047 dump_alloc_pool_statistics ();
2048 dump_bitmap_statistics ();
2049 dump_hash_table_loc_statistics ();
2050 dump_vec_loc_statistics ();
2051 dump_ggc_loc_statistics (final);
2052 dump_alias_stats (stderr);
2053 dump_pta_stats (stderr);
2054 }
2055
2056 /* Clean up: close opened files, etc. */
2057
2058 static void
2059 finalize (bool no_backend)
2060 {
2061 /* Close the dump files. */
2062 if (flag_gen_aux_info)
2063 {
2064 fclose (aux_info_file);
2065 aux_info_file = NULL;
2066 if (seen_error ())
2067 unlink (aux_info_file_name);
2068 }
2069
2070 /* Close non-debugging input and output files. Take special care to note
2071 whether fclose returns an error, since the pages might still be on the
2072 buffer chain while the file is open. */
2073
2074 if (asm_out_file)
2075 {
2076 if (ferror (asm_out_file) != 0)
2077 fatal_error (input_location, "error writing to %s: %m", asm_file_name);
2078 if (fclose (asm_out_file) != 0)
2079 fatal_error (input_location, "error closing %s: %m", asm_file_name);
2080 asm_out_file = NULL;
2081 }
2082
2083 if (stack_usage_file)
2084 {
2085 fclose (stack_usage_file);
2086 stack_usage_file = NULL;
2087 }
2088
2089 if (seen_error ())
2090 coverage_remove_note_file ();
2091
2092 if (!no_backend)
2093 {
2094 statistics_fini ();
2095
2096 g->get_passes ()->finish_optimization_passes ();
2097
2098 lra_finish_once ();
2099 }
2100
2101 if (mem_report)
2102 dump_memory_report (true);
2103
2104 if (profile_report)
2105 dump_profile_report ();
2106
2107 /* Language-specific end of compilation actions. */
2108 lang_hooks.finish ();
2109 }
2110
2111 static bool
2112 standard_type_bitsize (int bitsize)
2113 {
2114 /* As a special exception, we always want __int128 enabled if possible. */
2115 if (bitsize == 128)
2116 return false;
2117 if (bitsize == CHAR_TYPE_SIZE
2118 || bitsize == SHORT_TYPE_SIZE
2119 || bitsize == INT_TYPE_SIZE
2120 || bitsize == LONG_TYPE_SIZE
2121 || bitsize == LONG_LONG_TYPE_SIZE)
2122 return true;
2123 return false;
2124 }
2125
2126 /* Initialize the compiler, and compile the input file. */
2127 static void
2128 do_compile ()
2129 {
2130 process_options ();
2131
2132 /* Don't do any more if an error has already occurred. */
2133 if (!seen_error ())
2134 {
2135 int i;
2136
2137 timevar_start (TV_PHASE_SETUP);
2138
2139 /* This must be run always, because it is needed to compute the FP
2140 predefined macros, such as __LDBL_MAX__, for targets using non
2141 default FP formats. */
2142 init_adjust_machine_modes ();
2143 init_derived_machine_modes ();
2144
2145 /* This must happen after the backend has a chance to process
2146 command line options, but before the parsers are
2147 initialized. */
2148 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2149 if (targetm.scalar_mode_supported_p (int_n_data[i].m)
2150 && ! standard_type_bitsize (int_n_data[i].bitsize))
2151 int_n_enabled_p[i] = true;
2152 else
2153 int_n_enabled_p[i] = false;
2154
2155 /* Set up the back-end if requested. */
2156 if (!no_backend)
2157 backend_init ();
2158
2159 /* Language-dependent initialization. Returns true on success. */
2160 if (lang_dependent_init (main_input_filename))
2161 {
2162 /* Initialize yet another pass. */
2163
2164 ggc_protect_identifiers = true;
2165
2166 symtab->initialize ();
2167 init_final (main_input_filename);
2168 coverage_init (aux_base_name);
2169 statistics_init ();
2170 invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
2171
2172 timevar_stop (TV_PHASE_SETUP);
2173
2174 compile_file ();
2175 }
2176 else
2177 {
2178 timevar_stop (TV_PHASE_SETUP);
2179 }
2180
2181 timevar_start (TV_PHASE_FINALIZE);
2182
2183 finalize (no_backend);
2184
2185 timevar_stop (TV_PHASE_FINALIZE);
2186 }
2187 }
2188
2189 toplev::toplev (timer *external_timer,
2190 bool init_signals)
2191 : m_use_TV_TOTAL (external_timer == NULL),
2192 m_init_signals (init_signals)
2193 {
2194 if (external_timer)
2195 g_timer = external_timer;
2196 }
2197
2198 toplev::~toplev ()
2199 {
2200 if (g_timer && m_use_TV_TOTAL)
2201 {
2202 g_timer->stop (TV_TOTAL);
2203 g_timer->print (stderr);
2204 delete g_timer;
2205 g_timer = NULL;
2206 }
2207 }
2208
2209 /* Potentially call timevar_init (which will create g_timevars if it
2210 doesn't already exist). */
2211
2212 void
2213 toplev::start_timevars ()
2214 {
2215 if (time_report || !quiet_flag || flag_detailed_statistics)
2216 timevar_init ();
2217
2218 timevar_start (TV_TOTAL);
2219 }
2220
2221 /* Handle -fself-test. */
2222
2223 void
2224 toplev::run_self_tests ()
2225 {
2226 if (no_backend)
2227 {
2228 error_at (UNKNOWN_LOCATION, "self-tests incompatible with -E");
2229 return;
2230 }
2231 #if CHECKING_P
2232 /* Reset some state. */
2233 input_location = UNKNOWN_LOCATION;
2234 bitmap_obstack_initialize (NULL);
2235
2236 /* Run the tests; any failures will lead to an abort of the process.
2237 Use "make selftests-gdb" to run under the debugger. */
2238 ::selftest::run_tests ();
2239
2240 /* Cleanup. */
2241 bitmap_obstack_release (NULL);
2242 #else
2243 inform (UNKNOWN_LOCATION, "self-tests are not enabled in this build");
2244 #endif /* #if CHECKING_P */
2245 }
2246
2247 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2248 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2249 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2250
2251 It is not safe to call this function more than once. */
2252
2253 int
2254 toplev::main (int argc, char **argv)
2255 {
2256 /* Parsing and gimplification sometimes need quite large stack.
2257 Increase stack size limits if possible. */
2258 stack_limit_increase (64 * 1024 * 1024);
2259
2260 expandargv (&argc, &argv);
2261
2262 /* Initialization of GCC's environment, and diagnostics. */
2263 general_init (argv[0], m_init_signals);
2264
2265 /* One-off initialization of options that does not need to be
2266 repeated when options are added for particular functions. */
2267 init_options_once ();
2268 init_opts_obstack ();
2269
2270 /* Initialize global options structures; this must be repeated for
2271 each structure used for parsing options. */
2272 init_options_struct (&global_options, &global_options_set);
2273 lang_hooks.init_options_struct (&global_options);
2274
2275 /* Convert the options to an array. */
2276 decode_cmdline_options_to_array_default_mask (argc,
2277 CONST_CAST2 (const char **,
2278 char **, argv),
2279 &save_decoded_options,
2280 &save_decoded_options_count);
2281
2282 /* Perform language-specific options initialization. */
2283 lang_hooks.init_options (save_decoded_options_count, save_decoded_options);
2284
2285 /* Parse the options and do minimal processing; basically just
2286 enough to default flags appropriately. */
2287 decode_options (&global_options, &global_options_set,
2288 save_decoded_options, save_decoded_options_count,
2289 UNKNOWN_LOCATION, global_dc,
2290 targetm.target_option.override);
2291
2292 handle_common_deferred_options ();
2293
2294 init_local_tick ();
2295
2296 initialize_plugins ();
2297
2298 if (version_flag)
2299 print_version (stderr, "", true);
2300
2301 if (help_flag)
2302 print_plugins_help (stderr, "");
2303
2304 /* Exit early if we can (e.g. -help). */
2305 if (!exit_after_options)
2306 {
2307 if (m_use_TV_TOTAL)
2308 start_timevars ();
2309 do_compile ();
2310 }
2311
2312 if (warningcount || errorcount || werrorcount)
2313 print_ignored_options ();
2314
2315 if (flag_self_test)
2316 run_self_tests ();
2317
2318 /* Invoke registered plugin callbacks if any. Some plugins could
2319 emit some diagnostics here. */
2320 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2321
2322 if (flag_diagnostics_generate_patch)
2323 {
2324 gcc_assert (global_dc->edit_context_ptr);
2325
2326 pretty_printer pp;
2327 pp_show_color (&pp) = pp_show_color (global_dc->printer);
2328 global_dc->edit_context_ptr->print_diff (&pp, true);
2329 pp_flush (&pp);
2330 }
2331
2332 diagnostic_finish (global_dc);
2333
2334 finalize_plugins ();
2335
2336 after_memory_report = true;
2337
2338 if (seen_error () || werrorcount)
2339 return (FATAL_EXIT_CODE);
2340
2341 return (SUCCESS_EXIT_CODE);
2342 }
2343
2344 /* For those that want to, this function aims to clean up enough state that
2345 you can call toplev::main again. */
2346 void
2347 toplev::finalize (void)
2348 {
2349 rtl_initialized = false;
2350 this_target_rtl->target_specific_initialized = false;
2351
2352 /* Needs to be called before cgraph_c_finalize since it uses symtab. */
2353 ipa_reference_c_finalize ();
2354 ipa_fnsummary_c_finalize ();
2355
2356 cgraph_c_finalize ();
2357 cgraphunit_c_finalize ();
2358 dwarf2out_c_finalize ();
2359 gcse_c_finalize ();
2360 ipa_cp_c_finalize ();
2361 ira_costs_c_finalize ();
2362 params_c_finalize ();
2363
2364 finalize_options_struct (&global_options);
2365 finalize_options_struct (&global_options_set);
2366
2367 /* save_decoded_options uses opts_obstack, so these must
2368 be cleaned up together. */
2369 obstack_free (&opts_obstack, NULL);
2370 XDELETEVEC (save_decoded_options);
2371 save_decoded_options = NULL;
2372 save_decoded_options_count = 0;
2373
2374 /* Clean up the context (and pass_manager etc). */
2375 delete g;
2376 g = NULL;
2377
2378 }