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