(Synchronize with addition made to binutils sources):
[gcc.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
26
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
34
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
42
43 #include "line-map.h"
44 #include "input.h"
45 #include "tree.h"
46 #include "version.h"
47 #include "rtl.h"
48 #include "tm_p.h"
49 #include "flags.h"
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
54 #include "recog.h"
55 #include "output.h"
56 #include "except.h"
57 #include "function.h"
58 #include "toplev.h"
59 #include "expr.h"
60 #include "basic-block.h"
61 #include "intl.h"
62 #include "ggc.h"
63 #include "graph.h"
64 #include "regs.h"
65 #include "timevar.h"
66 #include "diagnostic.h"
67 #include "params.h"
68 #include "reload.h"
69 #include "ira.h"
70 #include "dwarf2asm.h"
71 #include "integrate.h"
72 #include "real.h"
73 #include "debug.h"
74 #include "target.h"
75 #include "langhooks.h"
76 #include "cfglayout.h"
77 #include "cfgloop.h"
78 #include "hosthooks.h"
79 #include "cgraph.h"
80 #include "opts.h"
81 #include "coverage.h"
82 #include "value-prof.h"
83 #include "alloc-pool.h"
84 #include "tree-mudflap.h"
85 #include "tree-pass.h"
86 #include "gimple.h"
87 #include "tree-ssa-alias.h"
88 #include "plugin.h"
89
90 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
91 #include "dwarf2out.h"
92 #endif
93
94 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
95 #include "dbxout.h"
96 #endif
97
98 #ifdef SDB_DEBUGGING_INFO
99 #include "sdbout.h"
100 #endif
101
102 #ifdef XCOFF_DEBUGGING_INFO
103 #include "xcoffout.h" /* Needed for external data
104 declarations for e.g. AIX 4.x. */
105 #endif
106
107 static void general_init (const char *);
108 static void do_compile (void);
109 static void process_options (void);
110 static void backend_init (void);
111 static int lang_dependent_init (const char *);
112 static void init_asm_output (const char *);
113 static void finalize (void);
114
115 static void crash_signal (int) ATTRIBUTE_NORETURN;
116 static void setup_core_dumping (void);
117 static void compile_file (void);
118
119 /* Nonzero to dump debug info whilst parsing (-dy option). */
120 static int set_yydebug;
121
122 /* True if we don't need a backend (e.g. preprocessing only). */
123 static bool no_backend;
124
125 /* Length of line when printing switch values. */
126 #define MAX_LINE 75
127
128 /* Name of program invoked, sans directories. */
129
130 const char *progname;
131
132 /* Copy of argument vector to toplev_main. */
133 static const char **save_argv;
134
135 /* Name of top-level original source file (what was input to cpp).
136 This comes from the #-command at the beginning of the actual input.
137 If there isn't any there, then this is the cc1 input file name. */
138
139 const char *main_input_filename;
140
141 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
142 to optimize and default_debug_hooks in process_options (). */
143 #define AUTODETECT_VALUE 2
144
145 /* Current position in real source file. */
146
147 location_t input_location;
148
149 struct line_maps *line_table;
150
151 /* Name to use as base of names for dump output files. */
152
153 const char *dump_base_name;
154
155 /* Name to use as a base for auxiliary output files. */
156
157 const char *aux_base_name;
158
159 /* Prefix for profile data files */
160 const char *profile_data_prefix;
161
162 /* A mask of target_flags that includes bit X if X was set or cleared
163 on the command line. */
164
165 int target_flags_explicit;
166
167 /* Debug hooks - dependent upon command line options. */
168
169 const struct gcc_debug_hooks *debug_hooks;
170
171 /* Debug hooks - target default. */
172
173 static const struct gcc_debug_hooks *default_debug_hooks;
174
175 /* Other flags saying which kinds of debugging dump have been requested. */
176
177 int rtl_dump_and_exit;
178 int flag_print_asm_name;
179 enum graph_dump_types graph_dump_format;
180
181 /* Name for output file of assembly code, specified with -o. */
182
183 const char *asm_file_name;
184
185 /* Nonzero means do optimizations. -O.
186 Particular numeric values stand for particular amounts of optimization;
187 thus, -O2 stores 2 here. However, the optimizations beyond the basic
188 ones are not controlled directly by this variable. Instead, they are
189 controlled by individual `flag_...' variables that are defaulted
190 based on this variable. */
191
192 int optimize = 0;
193
194 /* Nonzero means optimize for size. -Os.
195 The only valid values are zero and nonzero. When optimize_size is
196 nonzero, optimize defaults to 2, but certain individual code
197 bloating optimizations are disabled. */
198
199 int optimize_size = 0;
200
201 /* The FUNCTION_DECL for the function currently being compiled,
202 or 0 if between functions. */
203 tree current_function_decl;
204
205 /* Set to the FUNC_BEGIN label of the current function, or NULL
206 if none. */
207 const char * current_function_func_begin_label;
208
209 /* Nonzero means to collect statistics which might be expensive
210 and to print them when we are done. */
211 int flag_detailed_statistics = 0;
212
213 /* A random sequence of characters, unless overridden by user. */
214 static const char *flag_random_seed;
215
216 /* A local time stamp derived from the time of compilation. It will be
217 zero if the system cannot provide a time. It will be -1u, if the
218 user has specified a particular random seed. */
219 unsigned local_tick;
220
221 /* -f flags. */
222
223 /* Nonzero means `char' should be signed. */
224
225 int flag_signed_char;
226
227 /* Nonzero means give an enum type only as many bytes as it needs. A value
228 of 2 means it has not yet been initialized. */
229
230 int flag_short_enums;
231
232 /* Nonzero if structures and unions should be returned in memory.
233
234 This should only be defined if compatibility with another compiler or
235 with an ABI is needed, because it results in slower code. */
236
237 #ifndef DEFAULT_PCC_STRUCT_RETURN
238 #define DEFAULT_PCC_STRUCT_RETURN 1
239 #endif
240
241 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
242
243 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
244
245 /* 0 means straightforward implementation of complex divide acceptable.
246 1 means wide ranges of inputs must work for complex divide.
247 2 means C99-like requirements for complex multiply and divide. */
248
249 int flag_complex_method = 1;
250
251 /* Nonzero means we should be saving declaration info into a .X file. */
252
253 int flag_gen_aux_info = 0;
254
255 /* Specified name of aux-info file. */
256
257 const char *aux_info_file_name;
258
259 /* Nonzero if we are compiling code for a shared library, zero for
260 executable. */
261
262 int flag_shlib;
263
264 /* Generate code for GNU or NeXT Objective-C runtime environment. */
265
266 #ifdef NEXT_OBJC_RUNTIME
267 int flag_next_runtime = 1;
268 #else
269 int flag_next_runtime = 0;
270 #endif
271
272 /* Set to the default thread-local storage (tls) model to use. */
273
274 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
275
276 /* Set the default region and algorithm for the integrated register
277 allocator. */
278
279 enum ira_algorithm flag_ira_algorithm = IRA_ALGORITHM_CB;
280 enum ira_region flag_ira_region = IRA_REGION_MIXED;
281
282 /* Set the default value for -fira-verbose. */
283
284 unsigned int flag_ira_verbose = 5;
285
286 /* Set the default for excess precision. */
287
288 enum excess_precision flag_excess_precision_cmdline = EXCESS_PRECISION_DEFAULT;
289 enum excess_precision flag_excess_precision = EXCESS_PRECISION_DEFAULT;
290
291 /* Nonzero means change certain warnings into errors.
292 Usually these are warnings about failure to conform to some standard. */
293
294 int flag_pedantic_errors = 0;
295
296 /* Nonzero means make permerror produce warnings instead of errors. */
297
298 int flag_permissive = 0;
299
300 /* -dA causes debug commentary information to be produced in
301 the generated assembly code (to make it more readable). This option
302 is generally only of use to those who actually need to read the
303 generated assembly code (perhaps while debugging the compiler itself).
304 Currently, this switch is only used by dwarfout.c; however, it is intended
305 to be a catchall for printing debug information in the assembler file. */
306
307 int flag_debug_asm = 0;
308
309 /* -dP causes the rtl to be emitted as a comment in assembly. */
310
311 int flag_dump_rtl_in_asm = 0;
312
313 /* When non-NULL, indicates that whenever space is allocated on the
314 stack, the resulting stack pointer must not pass this
315 address---that is, for stacks that grow downward, the stack pointer
316 must always be greater than or equal to this address; for stacks
317 that grow upward, the stack pointer must be less than this address.
318 At present, the rtx may be either a REG or a SYMBOL_REF, although
319 the support provided depends on the backend. */
320 rtx stack_limit_rtx;
321
322 /* Nonzero if we should track variables. When
323 flag_var_tracking == AUTODETECT_VALUE it will be set according
324 to optimize, debug_info_level and debug_hooks in process_options (). */
325 int flag_var_tracking = AUTODETECT_VALUE;
326
327 /* Type of stack check. */
328 enum stack_check_type flag_stack_check = NO_STACK_CHECK;
329
330 /* True if the user has tagged the function with the 'section'
331 attribute. */
332
333 bool user_defined_section_attribute = false;
334
335 /* Values of the -falign-* flags: how much to align labels in code.
336 0 means `use default', 1 means `don't align'.
337 For each variable, there is an _log variant which is the power
338 of two not less than the variable, for .align output. */
339
340 int align_loops_log;
341 int align_loops_max_skip;
342 int align_jumps_log;
343 int align_jumps_max_skip;
344 int align_labels_log;
345 int align_labels_max_skip;
346 int align_functions_log;
347
348 typedef struct
349 {
350 const char *const string;
351 int *const variable;
352 const int on_value;
353 }
354 lang_independent_options;
355
356 /* Nonzero if subexpressions must be evaluated from left-to-right. */
357 int flag_evaluation_order = 0;
358
359 /* The user symbol prefix after having resolved same. */
360 const char *user_label_prefix;
361
362 static const param_info lang_independent_params[] = {
363 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
364 { OPTION, DEFAULT, false, MIN, MAX, HELP },
365 #include "params.def"
366 #undef DEFPARAM
367 { NULL, 0, false, 0, 0, NULL }
368 };
369
370 /* Output files for assembler code (real compiler output)
371 and debugging dumps. */
372
373 FILE *asm_out_file;
374 FILE *aux_info_file;
375 FILE *dump_file = NULL;
376 const char *dump_file_name;
377
378 /* The current working directory of a translation. It's generally the
379 directory from which compilation was initiated, but a preprocessed
380 file may specify the original directory in which it was
381 created. */
382
383 static const char *src_pwd;
384
385 /* Initialize src_pwd with the given string, and return true. If it
386 was already initialized, return false. As a special case, it may
387 be called with a NULL argument to test whether src_pwd has NOT been
388 initialized yet. */
389
390 bool
391 set_src_pwd (const char *pwd)
392 {
393 if (src_pwd)
394 {
395 if (strcmp (src_pwd, pwd) == 0)
396 return true;
397 else
398 return false;
399 }
400
401 src_pwd = xstrdup (pwd);
402 return true;
403 }
404
405 /* Return the directory from which the translation unit was initiated,
406 in case set_src_pwd() was not called before to assign it a
407 different value. */
408
409 const char *
410 get_src_pwd (void)
411 {
412 if (! src_pwd)
413 {
414 src_pwd = getpwd ();
415 if (!src_pwd)
416 src_pwd = ".";
417 }
418
419 return src_pwd;
420 }
421
422 /* Called when the start of a function definition is parsed,
423 this function prints on stderr the name of the function. */
424 void
425 announce_function (tree decl)
426 {
427 if (!quiet_flag)
428 {
429 if (rtl_dump_and_exit)
430 fprintf (stderr, "%s ",
431 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
432 else
433 fprintf (stderr, " %s",
434 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
435 fflush (stderr);
436 pp_needs_newline (global_dc->printer) = true;
437 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
438 }
439 }
440
441 /* Initialize local_tick with the time of day, or -1 if
442 flag_random_seed is set. */
443
444 static void
445 init_local_tick (void)
446 {
447 if (!flag_random_seed)
448 {
449 /* Get some more or less random data. */
450 #ifdef HAVE_GETTIMEOFDAY
451 {
452 struct timeval tv;
453
454 gettimeofday (&tv, NULL);
455 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
456 }
457 #else
458 {
459 time_t now = time (NULL);
460
461 if (now != (time_t)-1)
462 local_tick = (unsigned) now;
463 }
464 #endif
465 }
466 else
467 local_tick = -1;
468 }
469
470 /* Set up a default flag_random_seed and local_tick, unless the user
471 already specified one. Must be called after init_local_tick. */
472
473 static void
474 init_random_seed (void)
475 {
476 unsigned HOST_WIDE_INT value;
477 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
478
479 value = local_tick ^ getpid ();
480
481 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
482 flag_random_seed = random_seed;
483 }
484
485 /* Obtain the random_seed string. Unless NOINIT, initialize it if
486 it's not provided in the command line. */
487
488 const char *
489 get_random_seed (bool noinit)
490 {
491 if (!flag_random_seed && !noinit)
492 init_random_seed ();
493 return flag_random_seed;
494 }
495
496 /* Modify the random_seed string to VAL. Return its previous
497 value. */
498
499 const char *
500 set_random_seed (const char *val)
501 {
502 const char *old = flag_random_seed;
503 flag_random_seed = val;
504 return old;
505 }
506
507 /* Decode the string P as an integral parameter.
508 If the string is indeed an integer return its numeric value else
509 issue an Invalid Option error for the option PNAME and return DEFVAL.
510 If PNAME is zero just return DEFVAL, do not call error. */
511
512 int
513 read_integral_parameter (const char *p, const char *pname, const int defval)
514 {
515 const char *endp = p;
516
517 while (*endp)
518 {
519 if (ISDIGIT (*endp))
520 endp++;
521 else
522 break;
523 }
524
525 if (*endp != 0)
526 {
527 if (pname != 0)
528 error ("invalid option argument %qs", pname);
529 return defval;
530 }
531
532 return atoi (p);
533 }
534
535 /* When compiling with a recent enough GCC, we use the GNU C "extern inline"
536 for floor_log2 and exact_log2; see toplev.h. That construct, however,
537 conflicts with the ISO C++ One Definition Rule. */
538
539 #if GCC_VERSION < 3004 || !defined (__cplusplus)
540
541 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
542 If X is 0, return -1. */
543
544 int
545 floor_log2 (unsigned HOST_WIDE_INT x)
546 {
547 int t = 0;
548
549 if (x == 0)
550 return -1;
551
552 #ifdef CLZ_HWI
553 t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
554 #else
555 if (HOST_BITS_PER_WIDE_INT > 64)
556 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
557 t += 64;
558 if (HOST_BITS_PER_WIDE_INT > 32)
559 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
560 t += 32;
561 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
562 t += 16;
563 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
564 t += 8;
565 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
566 t += 4;
567 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
568 t += 2;
569 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
570 t += 1;
571 #endif
572
573 return t;
574 }
575
576 /* Return the logarithm of X, base 2, considering X unsigned,
577 if X is a power of 2. Otherwise, returns -1. */
578
579 int
580 exact_log2 (unsigned HOST_WIDE_INT x)
581 {
582 if (x != (x & -x))
583 return -1;
584 #ifdef CTZ_HWI
585 return x ? CTZ_HWI (x) : -1;
586 #else
587 return floor_log2 (x);
588 #endif
589 }
590
591 #endif /* GCC_VERSION < 3004 || !defined (__cplusplus) */
592
593 /* Handler for fatal signals, such as SIGSEGV. These are transformed
594 into ICE messages, which is much more user friendly. In case the
595 error printer crashes, reset the signal to prevent infinite recursion. */
596
597 static void
598 crash_signal (int signo)
599 {
600 signal (signo, SIG_DFL);
601
602 /* If we crashed while processing an ASM statement, then be a little more
603 graceful. It's most likely the user's fault. */
604 if (this_is_asm_operands)
605 {
606 output_operand_lossage ("unrecoverable error");
607 exit (FATAL_EXIT_CODE);
608 }
609
610 internal_error ("%s", strsignal (signo));
611 }
612
613 /* Arrange to dump core on error. (The regular error message is still
614 printed first, except in the case of abort().) */
615
616 static void
617 setup_core_dumping (void)
618 {
619 #ifdef SIGABRT
620 signal (SIGABRT, SIG_DFL);
621 #endif
622 #if defined(HAVE_SETRLIMIT)
623 {
624 struct rlimit rlim;
625 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
626 fatal_error ("getting core file size maximum limit: %m");
627 rlim.rlim_cur = rlim.rlim_max;
628 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
629 fatal_error ("setting core file size limit to maximum: %m");
630 }
631 #endif
632 diagnostic_abort_on_error (global_dc);
633 }
634
635
636 /* Strip off a legitimate source ending from the input string NAME of
637 length LEN. Rather than having to know the names used by all of
638 our front ends, we strip off an ending of a period followed by
639 up to five characters. (Java uses ".class".) */
640
641 void
642 strip_off_ending (char *name, int len)
643 {
644 int i;
645 for (i = 2; i < 6 && len > i; i++)
646 {
647 if (name[len - i] == '.')
648 {
649 name[len - i] = '\0';
650 break;
651 }
652 }
653 }
654
655 /* Output a quoted string. */
656
657 void
658 output_quoted_string (FILE *asm_file, const char *string)
659 {
660 #ifdef OUTPUT_QUOTED_STRING
661 OUTPUT_QUOTED_STRING (asm_file, string);
662 #else
663 char c;
664
665 putc ('\"', asm_file);
666 while ((c = *string++) != 0)
667 {
668 if (ISPRINT (c))
669 {
670 if (c == '\"' || c == '\\')
671 putc ('\\', asm_file);
672 putc (c, asm_file);
673 }
674 else
675 fprintf (asm_file, "\\%03o", (unsigned char) c);
676 }
677 putc ('\"', asm_file);
678 #endif
679 }
680
681 /* Output a file name in the form wanted by System V. */
682
683 void
684 output_file_directive (FILE *asm_file, const char *input_name)
685 {
686 int len;
687 const char *na;
688
689 if (input_name == NULL)
690 input_name = "<stdin>";
691 else
692 input_name = remap_debug_filename (input_name);
693
694 len = strlen (input_name);
695 na = input_name + len;
696
697 /* NA gets INPUT_NAME sans directory names. */
698 while (na > input_name)
699 {
700 if (IS_DIR_SEPARATOR (na[-1]))
701 break;
702 na--;
703 }
704
705 #ifdef ASM_OUTPUT_SOURCE_FILENAME
706 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
707 #else
708 fprintf (asm_file, "\t.file\t");
709 output_quoted_string (asm_file, na);
710 fputc ('\n', asm_file);
711 #endif
712 }
713
714 /* A subroutine of wrapup_global_declarations. We've come to the end of
715 the compilation unit. All deferred variables should be undeferred,
716 and all incomplete decls should be finalized. */
717
718 void
719 wrapup_global_declaration_1 (tree decl)
720 {
721 /* We're not deferring this any longer. Assignment is conditional to
722 avoid needlessly dirtying PCH pages. */
723 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
724 && DECL_DEFER_OUTPUT (decl) != 0)
725 DECL_DEFER_OUTPUT (decl) = 0;
726
727 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
728 lang_hooks.finish_incomplete_decl (decl);
729 }
730
731 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
732 needs to be output. Return true if it is output. */
733
734 bool
735 wrapup_global_declaration_2 (tree decl)
736 {
737 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
738 return false;
739
740 /* Don't write out static consts, unless we still need them.
741
742 We also keep static consts if not optimizing (for debugging),
743 unless the user specified -fno-keep-static-consts.
744 ??? They might be better written into the debug information.
745 This is possible when using DWARF.
746
747 A language processor that wants static constants to be always
748 written out (even if it is not used) is responsible for
749 calling rest_of_decl_compilation itself. E.g. the C front-end
750 calls rest_of_decl_compilation from finish_decl.
751 One motivation for this is that is conventional in some
752 environments to write things like:
753 static const char rcsid[] = "... version string ...";
754 intending to force the string to be in the executable.
755
756 A language processor that would prefer to have unneeded
757 static constants "optimized away" would just defer writing
758 them out until here. E.g. C++ does this, because static
759 constants are often defined in header files.
760
761 ??? A tempting alternative (for both C and C++) would be
762 to force a constant to be written if and only if it is
763 defined in a main file, as opposed to an include file. */
764
765 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
766 {
767 struct varpool_node *node;
768 bool needed = true;
769 node = varpool_node (decl);
770
771 if (node->finalized)
772 needed = false;
773 else if (node->alias)
774 needed = false;
775 else if (!cgraph_global_info_ready
776 && (TREE_USED (decl)
777 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
778 /* needed */;
779 else if (node->needed)
780 /* needed */;
781 else if (DECL_COMDAT (decl))
782 needed = false;
783 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
784 && (optimize || !flag_keep_static_consts
785 || DECL_ARTIFICIAL (decl)))
786 needed = false;
787
788 if (needed)
789 {
790 rest_of_decl_compilation (decl, 1, 1);
791 return true;
792 }
793 }
794
795 return false;
796 }
797
798 /* Do any final processing required for the declarations in VEC, of
799 which there are LEN. We write out inline functions and variables
800 that have been deferred until this point, but which are required.
801 Returns nonzero if anything was put out. */
802
803 bool
804 wrapup_global_declarations (tree *vec, int len)
805 {
806 bool reconsider, output_something = false;
807 int i;
808
809 for (i = 0; i < len; i++)
810 wrapup_global_declaration_1 (vec[i]);
811
812 /* Now emit any global variables or functions that we have been
813 putting off. We need to loop in case one of the things emitted
814 here references another one which comes earlier in the list. */
815 do
816 {
817 reconsider = false;
818 for (i = 0; i < len; i++)
819 reconsider |= wrapup_global_declaration_2 (vec[i]);
820 if (reconsider)
821 output_something = true;
822 }
823 while (reconsider);
824
825 return output_something;
826 }
827
828 /* A subroutine of check_global_declarations. Issue appropriate warnings
829 for the global declaration DECL. */
830
831 void
832 check_global_declaration_1 (tree decl)
833 {
834 /* Warn about any function declared static but not defined. We don't
835 warn about variables, because many programs have static variables
836 that exist only to get some text into the object file. */
837 if (TREE_CODE (decl) == FUNCTION_DECL
838 && DECL_INITIAL (decl) == 0
839 && DECL_EXTERNAL (decl)
840 && ! DECL_ARTIFICIAL (decl)
841 && ! TREE_NO_WARNING (decl)
842 && ! TREE_PUBLIC (decl)
843 && (warn_unused_function
844 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
845 {
846 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
847 pedwarn (input_location, 0, "%q+F used but never defined", decl);
848 else
849 warning (OPT_Wunused_function, "%q+F declared %<static%> but never defined", decl);
850 /* This symbol is effectively an "extern" declaration now. */
851 TREE_PUBLIC (decl) = 1;
852 assemble_external (decl);
853 }
854
855 /* Warn about static fns or vars defined but not used. */
856 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
857 /* We don't warn about "static const" variables because the
858 "rcs_id" idiom uses that construction. */
859 || (warn_unused_variable
860 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
861 && ! DECL_IN_SYSTEM_HEADER (decl)
862 && ! TREE_USED (decl)
863 /* The TREE_USED bit for file-scope decls is kept in the identifier,
864 to handle multiple external decls in different scopes. */
865 && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
866 && ! DECL_EXTERNAL (decl)
867 && ! TREE_PUBLIC (decl)
868 /* A volatile variable might be used in some non-obvious way. */
869 && ! TREE_THIS_VOLATILE (decl)
870 /* Global register variables must be declared to reserve them. */
871 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
872 /* Otherwise, ask the language. */
873 && lang_hooks.decls.warn_unused_global (decl))
874 warning ((TREE_CODE (decl) == FUNCTION_DECL)
875 ? OPT_Wunused_function
876 : OPT_Wunused_variable,
877 "%q+D defined but not used", decl);
878 }
879
880 /* Issue appropriate warnings for the global declarations in VEC (of
881 which there are LEN). */
882
883 void
884 check_global_declarations (tree *vec, int len)
885 {
886 int i;
887
888 for (i = 0; i < len; i++)
889 check_global_declaration_1 (vec[i]);
890 }
891
892 /* Emit debugging information for all global declarations in VEC. */
893
894 void
895 emit_debug_global_declarations (tree *vec, int len)
896 {
897 int i;
898
899 /* Avoid confusing the debug information machinery when there are errors. */
900 if (errorcount != 0 || sorrycount != 0)
901 return;
902
903 timevar_push (TV_SYMOUT);
904 for (i = 0; i < len; i++)
905 debug_hooks->global_decl (vec[i]);
906 timevar_pop (TV_SYMOUT);
907 }
908
909 /* Warn about a use of an identifier which was marked deprecated. */
910 void
911 warn_deprecated_use (tree node, tree attr)
912 {
913 const char *msg;
914
915 if (node == 0 || !warn_deprecated_decl)
916 return;
917
918 if (!attr)
919 {
920 if (DECL_P (node))
921 attr = DECL_ATTRIBUTES (node);
922 else if (TYPE_P (node))
923 {
924 tree decl = TYPE_STUB_DECL (node);
925 if (decl)
926 attr = lookup_attribute ("deprecated",
927 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
928 }
929 }
930
931 if (attr)
932 attr = lookup_attribute ("deprecated", attr);
933
934 if (attr)
935 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
936 else
937 msg = NULL;
938
939 if (DECL_P (node))
940 {
941 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
942 if (msg)
943 warning (OPT_Wdeprecated_declarations,
944 "%qD is deprecated (declared at %s:%d): %s",
945 node, xloc.file, xloc.line, msg);
946 else
947 warning (OPT_Wdeprecated_declarations,
948 "%qD is deprecated (declared at %s:%d)",
949 node, xloc.file, xloc.line);
950 }
951 else if (TYPE_P (node))
952 {
953 tree what = NULL_TREE;
954 tree decl = TYPE_STUB_DECL (node);
955
956 if (TYPE_NAME (node))
957 {
958 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
959 what = TYPE_NAME (node);
960 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
961 && DECL_NAME (TYPE_NAME (node)))
962 what = DECL_NAME (TYPE_NAME (node));
963 }
964
965 if (decl)
966 {
967 expanded_location xloc
968 = expand_location (DECL_SOURCE_LOCATION (decl));
969 if (what)
970 {
971 if (msg)
972 warning (OPT_Wdeprecated_declarations,
973 "%qE is deprecated (declared at %s:%d): %s",
974 what, xloc.file, xloc.line, msg);
975 else
976 warning (OPT_Wdeprecated_declarations,
977 "%qE is deprecated (declared at %s:%d)", what,
978 xloc.file, xloc.line);
979 }
980 else
981 {
982 if (msg)
983 warning (OPT_Wdeprecated_declarations,
984 "type is deprecated (declared at %s:%d): %s",
985 xloc.file, xloc.line, msg);
986 else
987 warning (OPT_Wdeprecated_declarations,
988 "type is deprecated (declared at %s:%d)",
989 xloc.file, xloc.line);
990 }
991 }
992 else
993 {
994 if (what)
995 {
996 if (msg)
997 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
998 what, msg);
999 else
1000 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
1001 }
1002 else
1003 {
1004 if (msg)
1005 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
1006 msg);
1007 else
1008 warning (OPT_Wdeprecated_declarations, "type is deprecated");
1009 }
1010 }
1011 }
1012 }
1013
1014 /* Compile an entire translation unit. Write a file of assembly
1015 output and various debugging dumps. */
1016
1017 static void
1018 compile_file (void)
1019 {
1020 /* Initialize yet another pass. */
1021
1022 ggc_protect_identifiers = true;
1023
1024 init_cgraph ();
1025 init_final (main_input_filename);
1026 coverage_init (aux_base_name);
1027 statistics_init ();
1028
1029 timevar_push (TV_PARSE);
1030
1031 /* Call the parser, which parses the entire file (calling
1032 rest_of_compilation for each function). */
1033 lang_hooks.parse_file (set_yydebug);
1034
1035 /* Compilation is now finished except for writing
1036 what's left of the symbol table output. */
1037 timevar_pop (TV_PARSE);
1038
1039 if (flag_syntax_only)
1040 return;
1041
1042 ggc_protect_identifiers = false;
1043
1044 lang_hooks.decls.final_write_globals ();
1045
1046 if (errorcount || sorrycount)
1047 return;
1048
1049 varpool_assemble_pending_decls ();
1050 finish_aliases_2 ();
1051
1052 /* Likewise for mudflap static object registrations. */
1053 if (flag_mudflap)
1054 mudflap_finish_file ();
1055
1056 /* Likewise for emulated thread-local storage. */
1057 if (!targetm.have_tls)
1058 emutls_finish ();
1059
1060 output_shared_constant_pool ();
1061 output_object_blocks ();
1062
1063 /* Write out any pending weak symbol declarations. */
1064 weak_finish ();
1065
1066 /* Do dbx symbols. */
1067 timevar_push (TV_SYMOUT);
1068
1069 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
1070 if (dwarf2out_do_frame ())
1071 dwarf2out_frame_finish ();
1072 #endif
1073
1074 (*debug_hooks->finish) (main_input_filename);
1075 timevar_pop (TV_SYMOUT);
1076
1077 /* Output some stuff at end of file if nec. */
1078
1079 dw2_output_indirect_constants ();
1080
1081 /* Flush any pending external directives. */
1082 process_pending_assemble_externals ();
1083
1084 /* Attach a special .ident directive to the end of the file to identify
1085 the version of GCC which compiled this code. The format of the .ident
1086 string is patterned after the ones produced by native SVR4 compilers. */
1087 #ifdef IDENT_ASM_OP
1088 if (!flag_no_ident)
1089 {
1090 const char *pkg_version = "(GNU) ";
1091
1092 if (strcmp ("(GCC) ", pkgversion_string))
1093 pkg_version = pkgversion_string;
1094 fprintf (asm_out_file, "%s\"GCC: %s%s\"\n",
1095 IDENT_ASM_OP, pkg_version, version_string);
1096 }
1097 #endif
1098
1099 /* This must be at the end. Some target ports emit end of file directives
1100 into the assembly file here, and hence we can not output anything to the
1101 assembly file after this point. */
1102 targetm.asm_out.file_end ();
1103 }
1104
1105 /* Parse a -d... command line switch. */
1106
1107 void
1108 decode_d_option (const char *arg)
1109 {
1110 int c;
1111
1112 while (*arg)
1113 switch (c = *arg++)
1114 {
1115 case 'A':
1116 flag_debug_asm = 1;
1117 break;
1118 case 'p':
1119 flag_print_asm_name = 1;
1120 break;
1121 case 'P':
1122 flag_dump_rtl_in_asm = 1;
1123 flag_print_asm_name = 1;
1124 break;
1125 case 'v':
1126 graph_dump_format = vcg;
1127 break;
1128 case 'x':
1129 rtl_dump_and_exit = 1;
1130 break;
1131 case 'y':
1132 set_yydebug = 1;
1133 break;
1134 case 'D': /* These are handled by the preprocessor. */
1135 case 'I':
1136 case 'M':
1137 case 'N':
1138 case 'U':
1139 break;
1140 case 'H':
1141 setup_core_dumping();
1142 break;
1143 case 'a':
1144 enable_rtl_dump_file ();
1145 break;
1146
1147 default:
1148 warning (0, "unrecognized gcc debugging option: %c", c);
1149 break;
1150 }
1151 }
1152
1153 /* Indexed by enum debug_info_type. */
1154 const char *const debug_type_names[] =
1155 {
1156 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1157 };
1158
1159 /* Print version information to FILE.
1160 Each line begins with INDENT (for the case where FILE is the
1161 assembler output file). */
1162
1163 void
1164 print_version (FILE *file, const char *indent)
1165 {
1166 static const char fmt1[] =
1167 #ifdef __GNUC__
1168 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
1169 #else
1170 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
1171 #endif
1172 ;
1173 #ifdef HAVE_mpc
1174 static const char fmt2[] =
1175 N_("GMP version %s, MPFR version %s, MPC version %s\n");
1176 #else
1177 static const char fmt2[] =
1178 N_("GMP version %s, MPFR version %s\n");
1179 #endif
1180 static const char fmt3[] =
1181 N_("%s%swarning: %s header version %s differs from library version %s.\n");
1182 static const char fmt4[] =
1183 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1184 #ifndef __VERSION__
1185 #define __VERSION__ "[?]"
1186 #endif
1187 fprintf (file,
1188 file == stderr ? _(fmt1) : fmt1,
1189 indent, *indent != 0 ? " " : "",
1190 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
1191 indent, __VERSION__);
1192
1193 /* We need to stringify the GMP macro values. Ugh, gmp_version has
1194 two string formats, "i.j.k" and "i.j" when k is zero. As of
1195 gmp-4.3.0, GMP always uses the 3 number format. */
1196 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1197 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1198 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
1199 #define GCC_GMP_VERSION \
1200 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
1201 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
1202 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1203 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1204 #else
1205 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1206 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1207 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1208 #endif
1209 fprintf (file,
1210 file == stderr ? _(fmt2) : fmt2,
1211 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING
1212 #ifdef HAVE_mpc
1213 , MPC_VERSION_STRING
1214 #endif
1215 );
1216 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1217 fprintf (file,
1218 file == stderr ? _(fmt3) : fmt3,
1219 indent, *indent != 0 ? " " : "",
1220 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1221 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1222 fprintf (file,
1223 file == stderr ? _(fmt3) : fmt3,
1224 indent, *indent != 0 ? " " : "",
1225 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1226 #ifdef HAVE_mpc
1227 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
1228 fprintf (file,
1229 file == stderr ? _(fmt3) : fmt3,
1230 indent, *indent != 0 ? " " : "",
1231 "MPC", MPC_VERSION_STRING, mpc_get_version ());
1232 #endif
1233 fprintf (file,
1234 file == stderr ? _(fmt4) : fmt4,
1235 indent, *indent != 0 ? " " : "",
1236 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1237
1238 print_plugins_versions (file, indent);
1239 }
1240
1241 #ifdef ASM_COMMENT_START
1242 static int
1243 print_to_asm_out_file (print_switch_type type, const char * text)
1244 {
1245 bool prepend_sep = true;
1246
1247 switch (type)
1248 {
1249 case SWITCH_TYPE_LINE_END:
1250 putc ('\n', asm_out_file);
1251 return 1;
1252
1253 case SWITCH_TYPE_LINE_START:
1254 fputs (ASM_COMMENT_START, asm_out_file);
1255 return strlen (ASM_COMMENT_START);
1256
1257 case SWITCH_TYPE_DESCRIPTIVE:
1258 if (ASM_COMMENT_START[0] == 0)
1259 prepend_sep = false;
1260 /* Drop through. */
1261 case SWITCH_TYPE_PASSED:
1262 case SWITCH_TYPE_ENABLED:
1263 if (prepend_sep)
1264 fputc (' ', asm_out_file);
1265 fprintf (asm_out_file, text);
1266 /* No need to return the length here as
1267 print_single_switch has already done it. */
1268 return 0;
1269
1270 default:
1271 return -1;
1272 }
1273 }
1274 #endif
1275
1276 static int
1277 print_to_stderr (print_switch_type type, const char * text)
1278 {
1279 switch (type)
1280 {
1281 case SWITCH_TYPE_LINE_END:
1282 putc ('\n', stderr);
1283 return 1;
1284
1285 case SWITCH_TYPE_LINE_START:
1286 return 0;
1287
1288 case SWITCH_TYPE_PASSED:
1289 case SWITCH_TYPE_ENABLED:
1290 fputc (' ', stderr);
1291 /* Drop through. */
1292
1293 case SWITCH_TYPE_DESCRIPTIVE:
1294 fprintf (stderr, text);
1295 /* No need to return the length here as
1296 print_single_switch has already done it. */
1297 return 0;
1298
1299 default:
1300 return -1;
1301 }
1302 }
1303
1304 /* Print an option value and return the adjusted position in the line.
1305 ??? print_fn doesn't handle errors, eg disk full; presumably other
1306 code will catch a disk full though. */
1307
1308 static int
1309 print_single_switch (print_switch_fn_type print_fn,
1310 int pos,
1311 print_switch_type type,
1312 const char * text)
1313 {
1314 /* The ultrix fprintf returns 0 on success, so compute the result
1315 we want here since we need it for the following test. The +1
1316 is for the separator character that will probably be emitted. */
1317 int len = strlen (text) + 1;
1318
1319 if (pos != 0
1320 && pos + len > MAX_LINE)
1321 {
1322 print_fn (SWITCH_TYPE_LINE_END, NULL);
1323 pos = 0;
1324 }
1325
1326 if (pos == 0)
1327 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1328
1329 print_fn (type, text);
1330 return pos + len;
1331 }
1332
1333 /* Print active target switches using PRINT_FN.
1334 POS is the current cursor position and MAX is the size of a "line".
1335 Each line begins with INDENT and ends with TERM.
1336 Each switch is separated from the next by SEP. */
1337
1338 static void
1339 print_switch_values (print_switch_fn_type print_fn)
1340 {
1341 int pos = 0;
1342 size_t j;
1343 const char **p;
1344
1345 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1346 that it can be printed below. This helps reproducibility. */
1347 if (!flag_random_seed)
1348 init_random_seed ();
1349
1350 /* Print the options as passed. */
1351 pos = print_single_switch (print_fn, pos,
1352 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1353
1354 for (p = &save_argv[1]; *p != NULL; p++)
1355 {
1356 if (**p == '-')
1357 {
1358 /* Ignore these. */
1359 if (strcmp (*p, "-o") == 0
1360 || strcmp (*p, "-dumpbase") == 0
1361 || strcmp (*p, "-auxbase") == 0)
1362 {
1363 if (p[1] != NULL)
1364 p++;
1365 continue;
1366 }
1367
1368 if (strcmp (*p, "-quiet") == 0
1369 || strcmp (*p, "-version") == 0)
1370 continue;
1371
1372 if ((*p)[1] == 'd')
1373 continue;
1374 }
1375
1376 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED, *p);
1377 }
1378
1379 if (pos > 0)
1380 print_fn (SWITCH_TYPE_LINE_END, NULL);
1381
1382 /* Print the -f and -m options that have been enabled.
1383 We don't handle language specific options but printing argv
1384 should suffice. */
1385 pos = print_single_switch (print_fn, 0,
1386 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1387
1388 for (j = 0; j < cl_options_count; j++)
1389 if ((cl_options[j].flags & CL_REPORT)
1390 && option_enabled (j) > 0)
1391 pos = print_single_switch (print_fn, pos,
1392 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1393
1394 print_fn (SWITCH_TYPE_LINE_END, NULL);
1395 }
1396
1397 /* Open assembly code output file. Do this even if -fsyntax-only is
1398 on, because then the driver will have provided the name of a
1399 temporary file or bit bucket for us. NAME is the file specified on
1400 the command line, possibly NULL. */
1401 static void
1402 init_asm_output (const char *name)
1403 {
1404 if (name == NULL && asm_file_name == 0)
1405 asm_out_file = stdout;
1406 else
1407 {
1408 if (asm_file_name == 0)
1409 {
1410 int len = strlen (dump_base_name);
1411 char *dumpname = XNEWVEC (char, len + 6);
1412
1413 memcpy (dumpname, dump_base_name, len + 1);
1414 strip_off_ending (dumpname, len);
1415 strcat (dumpname, ".s");
1416 asm_file_name = dumpname;
1417 }
1418 if (!strcmp (asm_file_name, "-"))
1419 asm_out_file = stdout;
1420 else
1421 asm_out_file = fopen (asm_file_name, "w+b");
1422 if (asm_out_file == 0)
1423 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1424 }
1425
1426 if (!flag_syntax_only)
1427 {
1428 targetm.asm_out.file_start ();
1429
1430 if (flag_record_gcc_switches)
1431 {
1432 if (targetm.asm_out.record_gcc_switches)
1433 {
1434 /* Let the target know that we are about to start recording. */
1435 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1436 NULL);
1437 /* Now record the switches. */
1438 print_switch_values (targetm.asm_out.record_gcc_switches);
1439 /* Let the target know that the recording is over. */
1440 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1441 NULL);
1442 }
1443 else
1444 inform (input_location, "-frecord-gcc-switches is not supported by the current target");
1445 }
1446
1447 #ifdef ASM_COMMENT_START
1448 if (flag_verbose_asm)
1449 {
1450 /* Print the list of switches in effect
1451 into the assembler file as comments. */
1452 print_version (asm_out_file, ASM_COMMENT_START);
1453 print_switch_values (print_to_asm_out_file);
1454 fprintf (asm_out_file, "\n");
1455 }
1456 #endif
1457 }
1458 }
1459
1460 /* Return true if the state of option OPTION should be stored in PCH files
1461 and checked by default_pch_valid_p. Store the option's current state
1462 in STATE if so. */
1463
1464 static inline bool
1465 option_affects_pch_p (int option, struct cl_option_state *state)
1466 {
1467 if ((cl_options[option].flags & CL_TARGET) == 0)
1468 return false;
1469 if (cl_options[option].flag_var == &target_flags)
1470 if (targetm.check_pch_target_flags)
1471 return false;
1472 return get_option_state (option, state);
1473 }
1474
1475 /* Default version of get_pch_validity.
1476 By default, every flag difference is fatal; that will be mostly right for
1477 most targets, but completely right for very few. */
1478
1479 void *
1480 default_get_pch_validity (size_t *len)
1481 {
1482 struct cl_option_state state;
1483 size_t i;
1484 char *result, *r;
1485
1486 *len = 2;
1487 if (targetm.check_pch_target_flags)
1488 *len += sizeof (target_flags);
1489 for (i = 0; i < cl_options_count; i++)
1490 if (option_affects_pch_p (i, &state))
1491 *len += state.size;
1492
1493 result = r = XNEWVEC (char, *len);
1494 r[0] = flag_pic;
1495 r[1] = flag_pie;
1496 r += 2;
1497 if (targetm.check_pch_target_flags)
1498 {
1499 memcpy (r, &target_flags, sizeof (target_flags));
1500 r += sizeof (target_flags);
1501 }
1502
1503 for (i = 0; i < cl_options_count; i++)
1504 if (option_affects_pch_p (i, &state))
1505 {
1506 memcpy (r, state.data, state.size);
1507 r += state.size;
1508 }
1509
1510 return result;
1511 }
1512
1513 /* Return a message which says that a PCH file was created with a different
1514 setting of OPTION. */
1515
1516 static const char *
1517 pch_option_mismatch (const char *option)
1518 {
1519 char *r;
1520
1521 asprintf (&r, _("created and used with differing settings of '%s'"), option);
1522 if (r == NULL)
1523 return _("out of memory");
1524 return r;
1525 }
1526
1527 /* Default version of pch_valid_p. */
1528
1529 const char *
1530 default_pch_valid_p (const void *data_p, size_t len)
1531 {
1532 struct cl_option_state state;
1533 const char *data = (const char *)data_p;
1534 size_t i;
1535
1536 /* -fpic and -fpie also usually make a PCH invalid. */
1537 if (data[0] != flag_pic)
1538 return _("created and used with different settings of -fpic");
1539 if (data[1] != flag_pie)
1540 return _("created and used with different settings of -fpie");
1541 data += 2;
1542
1543 /* Check target_flags. */
1544 if (targetm.check_pch_target_flags)
1545 {
1546 int tf;
1547 const char *r;
1548
1549 memcpy (&tf, data, sizeof (target_flags));
1550 data += sizeof (target_flags);
1551 len -= sizeof (target_flags);
1552 r = targetm.check_pch_target_flags (tf);
1553 if (r != NULL)
1554 return r;
1555 }
1556
1557 for (i = 0; i < cl_options_count; i++)
1558 if (option_affects_pch_p (i, &state))
1559 {
1560 if (memcmp (data, state.data, state.size) != 0)
1561 return pch_option_mismatch (cl_options[i].opt_text);
1562 data += state.size;
1563 len -= state.size;
1564 }
1565
1566 return NULL;
1567 }
1568
1569 /* Default tree printer. Handles declarations only. */
1570 static bool
1571 default_tree_printer (pretty_printer * pp, text_info *text, const char *spec,
1572 int precision, bool wide, bool set_locus, bool hash)
1573 {
1574 tree t;
1575
1576 /* FUTURE: %+x should set the locus. */
1577 if (precision != 0 || wide || hash)
1578 return false;
1579
1580 switch (*spec)
1581 {
1582 case 'E':
1583 t = va_arg (*text->args_ptr, tree);
1584 if (TREE_CODE (t) == IDENTIFIER_NODE)
1585 {
1586 pp_identifier (pp, IDENTIFIER_POINTER (t));
1587 return true;
1588 }
1589 break;
1590
1591 case 'D':
1592 t = va_arg (*text->args_ptr, tree);
1593 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1594 t = DECL_DEBUG_EXPR (t);
1595 break;
1596
1597 case 'F':
1598 case 'T':
1599 t = va_arg (*text->args_ptr, tree);
1600 break;
1601
1602 default:
1603 return false;
1604 }
1605
1606 if (set_locus && text->locus)
1607 *text->locus = DECL_SOURCE_LOCATION (t);
1608
1609 if (DECL_P (t))
1610 {
1611 const char *n = DECL_NAME (t)
1612 ? identifier_to_locale (lang_hooks.decl_printable_name (t, 2))
1613 : _("<anonymous>");
1614 pp_string (pp, n);
1615 }
1616 else
1617 dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1618
1619 return true;
1620 }
1621
1622 /* A helper function; used as the reallocator function for cpp's line
1623 table. */
1624 static void *
1625 realloc_for_line_map (void *ptr, size_t len)
1626 {
1627 return ggc_realloc (ptr, len);
1628 }
1629
1630 /* Initialization of the front end environment, before command line
1631 options are parsed. Signal handlers, internationalization etc.
1632 ARGV0 is main's argv[0]. */
1633 static void
1634 general_init (const char *argv0)
1635 {
1636 const char *p;
1637
1638 p = argv0 + strlen (argv0);
1639 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1640 --p;
1641 progname = p;
1642
1643 xmalloc_set_program_name (progname);
1644
1645 hex_init ();
1646
1647 /* Unlock the stdio streams. */
1648 unlock_std_streams ();
1649
1650 gcc_init_libintl ();
1651
1652 /* Initialize the diagnostics reporting machinery, so option parsing
1653 can give warnings and errors. */
1654 diagnostic_initialize (global_dc);
1655 /* Set a default printer. Language specific initializations will
1656 override it later. */
1657 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1658
1659 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1660 #ifdef SIGSEGV
1661 signal (SIGSEGV, crash_signal);
1662 #endif
1663 #ifdef SIGILL
1664 signal (SIGILL, crash_signal);
1665 #endif
1666 #ifdef SIGBUS
1667 signal (SIGBUS, crash_signal);
1668 #endif
1669 #ifdef SIGABRT
1670 signal (SIGABRT, crash_signal);
1671 #endif
1672 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1673 signal (SIGIOT, crash_signal);
1674 #endif
1675 #ifdef SIGFPE
1676 signal (SIGFPE, crash_signal);
1677 #endif
1678
1679 /* Other host-specific signal setup. */
1680 (*host_hooks.extra_signals)();
1681
1682 /* Initialize the garbage-collector, string pools and tree type hash
1683 table. */
1684 init_ggc ();
1685 init_stringpool ();
1686 line_table = GGC_NEW (struct line_maps);
1687 linemap_init (line_table);
1688 line_table->reallocator = realloc_for_line_map;
1689 init_ttree ();
1690
1691 /* Initialize register usage now so switches may override. */
1692 init_reg_sets ();
1693
1694 /* Register the language-independent parameters. */
1695 add_params (lang_independent_params, LAST_PARAM);
1696
1697 /* This must be done after add_params but before argument processing. */
1698 init_ggc_heuristics();
1699 init_optimization_passes ();
1700 statistics_early_init ();
1701 }
1702
1703 /* Return true if the current target supports -fsection-anchors. */
1704
1705 static bool
1706 target_supports_section_anchors_p (void)
1707 {
1708 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1709 return false;
1710
1711 if (targetm.asm_out.output_anchor == NULL)
1712 return false;
1713
1714 return true;
1715 }
1716
1717 /* Default the align_* variables to 1 if they're still unset, and
1718 set up the align_*_log variables. */
1719 static void
1720 init_alignments (void)
1721 {
1722 if (align_loops <= 0)
1723 align_loops = 1;
1724 if (align_loops_max_skip > align_loops)
1725 align_loops_max_skip = align_loops - 1;
1726 align_loops_log = floor_log2 (align_loops * 2 - 1);
1727 if (align_jumps <= 0)
1728 align_jumps = 1;
1729 if (align_jumps_max_skip > align_jumps)
1730 align_jumps_max_skip = align_jumps - 1;
1731 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1732 if (align_labels <= 0)
1733 align_labels = 1;
1734 align_labels_log = floor_log2 (align_labels * 2 - 1);
1735 if (align_labels_max_skip > align_labels)
1736 align_labels_max_skip = align_labels - 1;
1737 if (align_functions <= 0)
1738 align_functions = 1;
1739 align_functions_log = floor_log2 (align_functions * 2 - 1);
1740 }
1741
1742 /* Process the options that have been parsed. */
1743 static void
1744 process_options (void)
1745 {
1746 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1747 This can happen with incorrect pre-processed input. */
1748 debug_hooks = &do_nothing_debug_hooks;
1749
1750 /* This replaces set_Wunused. */
1751 if (warn_unused_function == -1)
1752 warn_unused_function = warn_unused;
1753 if (warn_unused_label == -1)
1754 warn_unused_label = warn_unused;
1755 /* Wunused-parameter is enabled if both -Wunused -Wextra are enabled. */
1756 if (warn_unused_parameter == -1)
1757 warn_unused_parameter = (warn_unused && extra_warnings);
1758 if (warn_unused_variable == -1)
1759 warn_unused_variable = warn_unused;
1760 if (warn_unused_value == -1)
1761 warn_unused_value = warn_unused;
1762
1763 /* This replaces set_Wextra. */
1764 if (warn_uninitialized == -1)
1765 warn_uninitialized = extra_warnings;
1766
1767 /* Allow the front end to perform consistency checks and do further
1768 initialization based on the command line options. This hook also
1769 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1770 so we can correctly initialize debug output. */
1771 no_backend = lang_hooks.post_options (&main_input_filename);
1772
1773 #ifdef OVERRIDE_OPTIONS
1774 /* Some machines may reject certain combinations of options. */
1775 OVERRIDE_OPTIONS;
1776 #endif
1777
1778 if (flag_section_anchors && !target_supports_section_anchors_p ())
1779 {
1780 warning (OPT_fsection_anchors,
1781 "this target does not support %qs", "-fsection-anchors");
1782 flag_section_anchors = 0;
1783 }
1784
1785 if (flag_short_enums == 2)
1786 flag_short_enums = targetm.default_short_enums ();
1787
1788 /* Set aux_base_name if not already set. */
1789 if (aux_base_name)
1790 ;
1791 else if (main_input_filename)
1792 {
1793 char *name = xstrdup (lbasename (main_input_filename));
1794
1795 strip_off_ending (name, strlen (name));
1796 aux_base_name = name;
1797 }
1798 else
1799 aux_base_name = "gccaux";
1800
1801 #ifndef HAVE_cloog
1802 if (flag_graphite
1803 || flag_loop_block
1804 || flag_loop_interchange
1805 || flag_loop_strip_mine
1806 || flag_graphite_identity)
1807 sorry ("Graphite loop optimizations cannot be used");
1808 #endif
1809
1810 /* Unrolling all loops implies that standard loop unrolling must also
1811 be done. */
1812 if (flag_unroll_all_loops)
1813 flag_unroll_loops = 1;
1814
1815 /* The loop unrolling code assumes that cse will be run after loop.
1816 web and rename-registers also help when run after loop unrolling. */
1817
1818 if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1819 flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1820 if (flag_web == AUTODETECT_VALUE)
1821 flag_web = flag_unroll_loops || flag_peel_loops;
1822 if (flag_rename_registers == AUTODETECT_VALUE)
1823 flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1824
1825 if (flag_non_call_exceptions)
1826 flag_asynchronous_unwind_tables = 1;
1827 if (flag_asynchronous_unwind_tables)
1828 flag_unwind_tables = 1;
1829
1830 if (flag_value_profile_transformations)
1831 flag_profile_values = 1;
1832
1833 /* Warn about options that are not supported on this machine. */
1834 #ifndef INSN_SCHEDULING
1835 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1836 warning (0, "instruction scheduling not supported on this target machine");
1837 #endif
1838 #ifndef DELAY_SLOTS
1839 if (flag_delayed_branch)
1840 warning (0, "this target machine does not have delayed branches");
1841 #endif
1842
1843 user_label_prefix = USER_LABEL_PREFIX;
1844 if (flag_leading_underscore != -1)
1845 {
1846 /* If the default prefix is more complicated than "" or "_",
1847 issue a warning and ignore this option. */
1848 if (user_label_prefix[0] == 0 ||
1849 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1850 {
1851 user_label_prefix = flag_leading_underscore ? "_" : "";
1852 }
1853 else
1854 warning (0, "-f%sleading-underscore not supported on this target machine",
1855 flag_leading_underscore ? "" : "no-");
1856 }
1857
1858 /* If we are in verbose mode, write out the version and maybe all the
1859 option flags in use. */
1860 if (version_flag)
1861 {
1862 print_version (stderr, "");
1863 if (! quiet_flag)
1864 print_switch_values (print_to_stderr);
1865 }
1866
1867 if (flag_syntax_only)
1868 {
1869 write_symbols = NO_DEBUG;
1870 profile_flag = 0;
1871 }
1872
1873 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1874 level is 0. */
1875 if (debug_info_level == DINFO_LEVEL_NONE)
1876 write_symbols = NO_DEBUG;
1877
1878 /* Now we know write_symbols, set up the debug hooks based on it.
1879 By default we do nothing for debug output. */
1880 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1881 default_debug_hooks = &do_nothing_debug_hooks;
1882 #if defined(DBX_DEBUGGING_INFO)
1883 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1884 default_debug_hooks = &dbx_debug_hooks;
1885 #endif
1886 #if defined(XCOFF_DEBUGGING_INFO)
1887 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1888 default_debug_hooks = &xcoff_debug_hooks;
1889 #endif
1890 #ifdef SDB_DEBUGGING_INFO
1891 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1892 default_debug_hooks = &sdb_debug_hooks;
1893 #endif
1894 #ifdef DWARF2_DEBUGGING_INFO
1895 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1896 default_debug_hooks = &dwarf2_debug_hooks;
1897 #endif
1898 #ifdef VMS_DEBUGGING_INFO
1899 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1900 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1901 default_debug_hooks = &vmsdbg_debug_hooks;
1902 #endif
1903
1904 if (write_symbols == NO_DEBUG)
1905 ;
1906 #if defined(DBX_DEBUGGING_INFO)
1907 else if (write_symbols == DBX_DEBUG)
1908 debug_hooks = &dbx_debug_hooks;
1909 #endif
1910 #if defined(XCOFF_DEBUGGING_INFO)
1911 else if (write_symbols == XCOFF_DEBUG)
1912 debug_hooks = &xcoff_debug_hooks;
1913 #endif
1914 #ifdef SDB_DEBUGGING_INFO
1915 else if (write_symbols == SDB_DEBUG)
1916 debug_hooks = &sdb_debug_hooks;
1917 #endif
1918 #ifdef DWARF2_DEBUGGING_INFO
1919 else if (write_symbols == DWARF2_DEBUG)
1920 debug_hooks = &dwarf2_debug_hooks;
1921 #endif
1922 #ifdef VMS_DEBUGGING_INFO
1923 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1924 debug_hooks = &vmsdbg_debug_hooks;
1925 #endif
1926 else
1927 error ("target system does not support the \"%s\" debug format",
1928 debug_type_names[write_symbols]);
1929
1930 /* Now we know which debug output will be used so we can set
1931 flag_var_tracking, flag_rename_registers if the user has
1932 not specified them. */
1933 if (debug_info_level < DINFO_LEVEL_NORMAL
1934 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1935 {
1936 if (flag_var_tracking == 1
1937 || flag_var_tracking_uninit == 1)
1938 {
1939 if (debug_info_level < DINFO_LEVEL_NORMAL)
1940 warning (0, "variable tracking requested, but useless unless "
1941 "producing debug info");
1942 else
1943 warning (0, "variable tracking requested, but not supported "
1944 "by this debug format");
1945 }
1946 flag_var_tracking = 0;
1947 flag_var_tracking_uninit = 0;
1948 }
1949
1950 if (flag_rename_registers == AUTODETECT_VALUE)
1951 flag_rename_registers = default_debug_hooks->var_location
1952 != do_nothing_debug_hooks.var_location;
1953
1954 if (flag_var_tracking == AUTODETECT_VALUE)
1955 flag_var_tracking = optimize >= 1;
1956
1957 if (flag_tree_cselim == AUTODETECT_VALUE)
1958 #ifdef HAVE_conditional_move
1959 flag_tree_cselim = 1;
1960 #else
1961 flag_tree_cselim = 0;
1962 #endif
1963
1964 /* If the user specifically requested variable tracking with tagging
1965 uninitialized variables, we need to turn on variable tracking.
1966 (We already determined above that variable tracking is feasible.) */
1967 if (flag_var_tracking_uninit)
1968 flag_var_tracking = 1;
1969
1970 /* If auxiliary info generation is desired, open the output file.
1971 This goes in the same directory as the source file--unlike
1972 all the other output files. */
1973 if (flag_gen_aux_info)
1974 {
1975 aux_info_file = fopen (aux_info_file_name, "w");
1976 if (aux_info_file == 0)
1977 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1978 }
1979
1980 if (! targetm.have_named_sections)
1981 {
1982 if (flag_function_sections)
1983 {
1984 warning (0, "-ffunction-sections not supported for this target");
1985 flag_function_sections = 0;
1986 }
1987 if (flag_data_sections)
1988 {
1989 warning (0, "-fdata-sections not supported for this target");
1990 flag_data_sections = 0;
1991 }
1992 }
1993
1994 if (flag_function_sections && profile_flag)
1995 {
1996 warning (0, "-ffunction-sections disabled; it makes profiling impossible");
1997 flag_function_sections = 0;
1998 }
1999
2000 #ifndef HAVE_prefetch
2001 if (flag_prefetch_loop_arrays)
2002 {
2003 warning (0, "-fprefetch-loop-arrays not supported for this target");
2004 flag_prefetch_loop_arrays = 0;
2005 }
2006 #else
2007 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2008 {
2009 warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
2010 flag_prefetch_loop_arrays = 0;
2011 }
2012 #endif
2013
2014 /* This combination of options isn't handled for i386 targets and doesn't
2015 make much sense anyway, so don't allow it. */
2016 if (flag_prefetch_loop_arrays && optimize_size)
2017 {
2018 warning (0, "-fprefetch-loop-arrays is not supported with -Os");
2019 flag_prefetch_loop_arrays = 0;
2020 }
2021
2022 /* The presence of IEEE signaling NaNs, implies all math can trap. */
2023 if (flag_signaling_nans)
2024 flag_trapping_math = 1;
2025
2026 /* We cannot reassociate if we want traps or signed zeros.  */
2027 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
2028 {
2029 warning (0, "-fassociative-math disabled; other options take precedence");
2030 flag_associative_math = 0;
2031 }
2032
2033 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
2034 if (flag_cx_limited_range)
2035 flag_complex_method = 0;
2036
2037 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
2038 if (flag_cx_fortran_rules)
2039 flag_complex_method = 1;
2040
2041 /* Targets must be able to place spill slots at lower addresses. If the
2042 target already uses a soft frame pointer, the transition is trivial. */
2043 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
2044 {
2045 warning (0, "-fstack-protector not supported for this target");
2046 flag_stack_protect = 0;
2047 }
2048 if (!flag_stack_protect)
2049 warn_stack_protect = 0;
2050
2051 /* ??? Unwind info is not correct around the CFG unless either a frame
2052 pointer is present or A_O_A is set. Fixing this requires rewriting
2053 unwind info generation to be aware of the CFG and propagating states
2054 around edges. */
2055 if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
2056 && flag_omit_frame_pointer)
2057 {
2058 warning (0, "unwind tables currently require a frame pointer "
2059 "for correctness");
2060 flag_omit_frame_pointer = 0;
2061 }
2062 }
2063
2064 /* This function can be called multiple times to reinitialize the compiler
2065 back end when register classes or instruction sets have changed,
2066 before each function. */
2067 static void
2068 backend_init_target (void)
2069 {
2070 /* Initialize alignment variables. */
2071 init_alignments ();
2072
2073 /* This reinitializes hard_frame_pointer, and calls init_reg_modes_target()
2074 to initialize reg_raw_mode[]. */
2075 init_emit_regs ();
2076
2077 /* This invokes target hooks to set fixed_reg[] etc, which is
2078 mode-dependent. */
2079 init_regs ();
2080
2081 /* This depends on stack_pointer_rtx. */
2082 init_fake_stack_mems ();
2083
2084 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
2085 mode-dependent. */
2086 init_alias_target ();
2087
2088 /* Depends on HARD_FRAME_POINTER_REGNUM. */
2089 init_reload ();
2090
2091 /* The following initialization functions need to generate rtl, so
2092 provide a dummy function context for them. */
2093 init_dummy_function_start ();
2094
2095 /* rtx_cost is mode-dependent, so cached values need to be recomputed
2096 on a mode change. */
2097 init_expmed ();
2098
2099 /* We may need to recompute regno_save_code[] and regno_restore_code[]
2100 after a mode change as well. */
2101 if (flag_caller_saves)
2102 init_caller_save ();
2103 expand_dummy_function_end ();
2104 }
2105
2106 /* Initialize the compiler back end. This function is called only once,
2107 when starting the compiler. */
2108 static void
2109 backend_init (void)
2110 {
2111 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2112 || debug_info_level == DINFO_LEVEL_VERBOSE
2113 #ifdef VMS_DEBUGGING_INFO
2114 /* Enable line number info for traceback. */
2115 || debug_info_level > DINFO_LEVEL_NONE
2116 #endif
2117 || flag_test_coverage);
2118
2119 init_rtlanal ();
2120 init_inline_once ();
2121 init_varasm_once ();
2122 save_register_info ();
2123
2124 /* Initialize the target-specific back end pieces. */
2125 ira_init_once ();
2126 backend_init_target ();
2127 }
2128
2129 /* Initialize excess precision settings. */
2130 static void
2131 init_excess_precision (void)
2132 {
2133 /* Adjust excess precision handling based on the target options. If
2134 the front end cannot handle it, flag_excess_precision_cmdline
2135 will already have been set accordingly in the post_options
2136 hook. */
2137 gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
2138 flag_excess_precision = flag_excess_precision_cmdline;
2139 if (flag_unsafe_math_optimizations)
2140 flag_excess_precision = EXCESS_PRECISION_FAST;
2141 if (flag_excess_precision == EXCESS_PRECISION_STANDARD)
2142 {
2143 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
2144 switch (flt_eval_method)
2145 {
2146 case -1:
2147 case 0:
2148 /* Either the target acts unpredictably (-1) or has all the
2149 operations required not to have excess precision (0). */
2150 flag_excess_precision = EXCESS_PRECISION_FAST;
2151 break;
2152 case 1:
2153 case 2:
2154 /* In these cases, predictable excess precision makes
2155 sense. */
2156 break;
2157 default:
2158 /* Any other implementation-defined FLT_EVAL_METHOD values
2159 require the compiler to handle the associated excess
2160 precision rules in excess_precision_type. */
2161 gcc_unreachable ();
2162 }
2163 }
2164 }
2165
2166 /* Initialize things that are both lang-dependent and target-dependent.
2167 This function can be called more than once if target parameters change. */
2168 static void
2169 lang_dependent_init_target (void)
2170 {
2171 /* This determines excess precision settings. */
2172 init_excess_precision ();
2173
2174 /* This creates various _DECL nodes, so needs to be called after the
2175 front end is initialized. It also depends on the HAVE_xxx macros
2176 generated from the target machine description. */
2177 init_optabs ();
2178
2179 /* The following initialization functions need to generate rtl, so
2180 provide a dummy function context for them. */
2181 init_dummy_function_start ();
2182
2183 /* Do the target-specific parts of expr initialization. */
2184 init_expr_target ();
2185
2186 /* Although the actions of these functions are language-independent,
2187 they use optabs, so we cannot call them from backend_init. */
2188 init_set_costs ();
2189 ira_init ();
2190
2191 expand_dummy_function_end ();
2192 }
2193
2194 /* Language-dependent initialization. Returns nonzero on success. */
2195 static int
2196 lang_dependent_init (const char *name)
2197 {
2198 location_t save_loc = input_location;
2199 if (dump_base_name == 0)
2200 dump_base_name = name && name[0] ? name : "gccdump";
2201
2202 /* Other front-end initialization. */
2203 input_location = BUILTINS_LOCATION;
2204 if (lang_hooks.init () == 0)
2205 return 0;
2206 input_location = save_loc;
2207
2208 init_asm_output (name);
2209
2210 /* This creates various _DECL nodes, so needs to be called after the
2211 front end is initialized. */
2212 init_eh ();
2213
2214 /* Do the target-specific parts of the initialization. */
2215 lang_dependent_init_target ();
2216
2217 /* If dbx symbol table desired, initialize writing it and output the
2218 predefined types. */
2219 timevar_push (TV_SYMOUT);
2220
2221 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2222 if (dwarf2out_do_frame ())
2223 dwarf2out_frame_init ();
2224 #endif
2225
2226 /* Now we have the correct original filename, we can initialize
2227 debug output. */
2228 (*debug_hooks->init) (name);
2229
2230 timevar_pop (TV_SYMOUT);
2231
2232 return 1;
2233 }
2234
2235
2236 /* Reinitialize everything when target parameters, such as register usage,
2237 have changed. */
2238 void
2239 target_reinit (void)
2240 {
2241 /* Reinitialize RTL backend. */
2242 backend_init_target ();
2243
2244 /* Reinitialize lang-dependent parts. */
2245 lang_dependent_init_target ();
2246 }
2247
2248 void
2249 dump_memory_report (bool final)
2250 {
2251 ggc_print_statistics ();
2252 stringpool_statistics ();
2253 dump_tree_statistics ();
2254 dump_gimple_statistics ();
2255 dump_rtx_statistics ();
2256 dump_varray_statistics ();
2257 dump_alloc_pool_statistics ();
2258 dump_bitmap_statistics ();
2259 dump_vec_loc_statistics ();
2260 dump_ggc_loc_statistics (final);
2261 dump_alias_stats (stderr);
2262 dump_pta_stats (stderr);
2263 }
2264
2265 /* Clean up: close opened files, etc. */
2266
2267 static void
2268 finalize (void)
2269 {
2270 /* Close the dump files. */
2271 if (flag_gen_aux_info)
2272 {
2273 fclose (aux_info_file);
2274 if (errorcount)
2275 unlink (aux_info_file_name);
2276 }
2277
2278 /* Close non-debugging input and output files. Take special care to note
2279 whether fclose returns an error, since the pages might still be on the
2280 buffer chain while the file is open. */
2281
2282 if (asm_out_file)
2283 {
2284 if (ferror (asm_out_file) != 0)
2285 fatal_error ("error writing to %s: %m", asm_file_name);
2286 if (fclose (asm_out_file) != 0)
2287 fatal_error ("error closing %s: %m", asm_file_name);
2288 }
2289
2290 statistics_fini ();
2291 finish_optimization_passes ();
2292
2293 ira_finish_once ();
2294
2295 if (mem_report)
2296 dump_memory_report (true);
2297
2298 /* Language-specific end of compilation actions. */
2299 lang_hooks.finish ();
2300 }
2301
2302 /* Initialize the compiler, and compile the input file. */
2303 static void
2304 do_compile (void)
2305 {
2306 /* Initialize timing first. The C front ends read the main file in
2307 the post_options hook, and C++ does file timings. */
2308 if (time_report || !quiet_flag || flag_detailed_statistics)
2309 timevar_init ();
2310 timevar_start (TV_TOTAL);
2311
2312 process_options ();
2313
2314 /* Don't do any more if an error has already occurred. */
2315 if (!errorcount)
2316 {
2317 /* This must be run always, because it is needed to compute the FP
2318 predefined macros, such as __LDBL_MAX__, for targets using non
2319 default FP formats. */
2320 init_adjust_machine_modes ();
2321
2322 /* Set up the back-end if requested. */
2323 if (!no_backend)
2324 backend_init ();
2325
2326 /* Language-dependent initialization. Returns true on success. */
2327 if (lang_dependent_init (main_input_filename))
2328 compile_file ();
2329
2330 finalize ();
2331
2332 /* Invoke registered plugin callbacks. */
2333 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
2334 }
2335
2336 /* Stop timing and print the times. */
2337 timevar_stop (TV_TOTAL);
2338 timevar_print (stderr);
2339 }
2340
2341 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2342 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2343 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2344
2345 It is not safe to call this function more than once. */
2346
2347 int
2348 toplev_main (int argc, char **argv)
2349 {
2350 expandargv (&argc, &argv);
2351
2352 save_argv = (const char **) argv;
2353
2354 /* Initialization of GCC's environment, and diagnostics. */
2355 general_init (argv[0]);
2356
2357 /* Parse the options and do minimal processing; basically just
2358 enough to default flags appropriately. */
2359 decode_options (argc, (const char **) argv);
2360
2361 init_local_tick ();
2362
2363 initialize_plugins ();
2364
2365 if (version_flag)
2366 print_version (stderr, "");
2367
2368 if (help_flag)
2369 print_plugins_help (stderr, "");
2370
2371 /* Exit early if we can (e.g. -help). */
2372 if (!exit_after_options)
2373 do_compile ();
2374
2375 if (warningcount || errorcount)
2376 print_ignored_options ();
2377
2378 /* Invoke registered plugin callbacks if any. */
2379 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2380
2381 finalize_plugins ();
2382 if (errorcount || sorrycount)
2383 return (FATAL_EXIT_CODE);
2384
2385 return (SUCCESS_EXIT_CODE);
2386 }