2010-07-27 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc/alias-decl.git] / gcc / toplev.c
blob3836d0c50cf64ee115eeed66ae87c813e1ffc7cf
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, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
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.
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.
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/>. */
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. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include <signal.h>
33 #ifdef HAVE_SYS_RESOURCE_H
34 # include <sys/resource.h>
35 #endif
37 #ifdef HAVE_SYS_TIMES_H
38 # include <sys/times.h>
39 #endif
41 #include "line-map.h"
42 #include "input.h"
43 #include "tree.h"
44 #include "realmpfr.h" /* For GMP/MPFR/MPC versions, in print_version. */
45 #include "version.h"
46 #include "rtl.h"
47 #include "tm_p.h"
48 #include "flags.h"
49 #include "insn-attr.h"
50 #include "insn-config.h"
51 #include "insn-flags.h"
52 #include "hard-reg-set.h"
53 #include "recog.h"
54 #include "output.h"
55 #include "except.h"
56 #include "function.h"
57 #include "toplev.h"
58 #include "expr.h"
59 #include "basic-block.h"
60 #include "intl.h"
61 #include "ggc.h"
62 #include "graph.h"
63 #include "regs.h"
64 #include "timevar.h"
65 #include "diagnostic.h"
66 #include "tree-diagnostic.h"
67 #include "tree-pretty-print.h"
68 #include "params.h"
69 #include "reload.h"
70 #include "ira.h"
71 #include "dwarf2asm.h"
72 #include "integrate.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 "opts-diagnostic.h"
82 #include "coverage.h"
83 #include "value-prof.h"
84 #include "alloc-pool.h"
85 #include "tree-mudflap.h"
86 #include "tree-pass.h"
87 #include "gimple.h"
88 #include "tree-ssa-alias.h"
89 #include "plugin.h"
91 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
92 #include "dwarf2out.h"
93 #endif
95 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
96 #include "dbxout.h"
97 #endif
99 #ifdef SDB_DEBUGGING_INFO
100 #include "sdbout.h"
101 #endif
103 #ifdef XCOFF_DEBUGGING_INFO
104 #include "xcoffout.h" /* Needed for external data
105 declarations for e.g. AIX 4.x. */
106 #endif
108 static void general_init (const char *);
109 static void do_compile (void);
110 static void process_options (void);
111 static void backend_init (void);
112 static int lang_dependent_init (const char *);
113 static void init_asm_output (const char *);
114 static void finalize (void);
116 static void crash_signal (int) ATTRIBUTE_NORETURN;
117 static void setup_core_dumping (void);
118 static void compile_file (void);
120 /* Nonzero to dump debug info whilst parsing (-dy option). */
121 static int set_yydebug;
123 /* True if we don't need a backend (e.g. preprocessing only). */
124 static bool no_backend;
126 /* Length of line when printing switch values. */
127 #define MAX_LINE 75
129 /* Decoded options, and number of such options. */
130 static struct cl_decoded_option *save_decoded_options;
131 static unsigned int save_decoded_options_count;
133 /* Name of top-level original source file (what was input to cpp).
134 This comes from the #-command at the beginning of the actual input.
135 If there isn't any there, then this is the cc1 input file name. */
137 const char *main_input_filename;
139 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
140 to optimize in process_options (). */
141 #define AUTODETECT_VALUE 2
143 /* Name to use as base of names for dump output files. */
145 const char *dump_base_name;
147 /* Directory used for dump output files. */
149 const char *dump_dir_name;
151 /* Name to use as a base for auxiliary output files. */
153 const char *aux_base_name;
155 /* Prefix for profile data files */
156 const char *profile_data_prefix;
158 /* A mask of target_flags that includes bit X if X was set or cleared
159 on the command line. */
161 int target_flags_explicit;
163 /* Debug hooks - dependent upon command line options. */
165 const struct gcc_debug_hooks *debug_hooks;
167 /* Other flags saying which kinds of debugging dump have been requested. */
169 int rtl_dump_and_exit;
170 int flag_print_asm_name;
171 enum graph_dump_types graph_dump_format;
173 /* Name for output file of assembly code, specified with -o. */
175 const char *asm_file_name;
177 /* Nonzero means do optimizations. -O.
178 Particular numeric values stand for particular amounts of optimization;
179 thus, -O2 stores 2 here. However, the optimizations beyond the basic
180 ones are not controlled directly by this variable. Instead, they are
181 controlled by individual `flag_...' variables that are defaulted
182 based on this variable. */
184 int optimize = 0;
186 /* Nonzero means optimize for size. -Os.
187 The only valid values are zero and nonzero. When optimize_size is
188 nonzero, optimize defaults to 2, but certain individual code
189 bloating optimizations are disabled. */
191 int optimize_size = 0;
193 /* True if this is the lto front end. This is used to disable
194 gimple generation and lowering passes that are normally run on the
195 output of a front end. These passes must be bypassed for lto since
196 they have already been done before the gimple was written. */
198 bool in_lto_p = false;
200 /* Nonzero if we should write GIMPLE bytecode for link-time optimization. */
202 int flag_generate_lto;
204 /* The FUNCTION_DECL for the function currently being compiled,
205 or 0 if between functions. */
206 tree current_function_decl;
208 /* Set to the FUNC_BEGIN label of the current function, or NULL
209 if none. */
210 const char * current_function_func_begin_label;
212 /* A random sequence of characters, unless overridden by user. */
213 static const char *flag_random_seed;
215 /* A local time stamp derived from the time of compilation. It will be
216 zero if the system cannot provide a time. It will be -1u, if the
217 user has specified a particular random seed. */
218 unsigned local_tick;
220 /* -f flags. */
222 /* 0 means straightforward implementation of complex divide acceptable.
223 1 means wide ranges of inputs must work for complex divide.
224 2 means C99-like requirements for complex multiply and divide. */
226 int flag_complex_method = 1;
228 /* Nonzero means we should be saving declaration info into a .X file. */
230 int flag_gen_aux_info = 0;
232 /* Specified name of aux-info file. */
234 const char *aux_info_file_name;
236 /* Nonzero if we are compiling code for a shared library, zero for
237 executable. */
239 int flag_shlib;
241 /* Generate code for GNU or NeXT Objective-C runtime environment. */
243 #ifdef NEXT_OBJC_RUNTIME
244 int flag_next_runtime = 1;
245 #else
246 int flag_next_runtime = 0;
247 #endif
249 /* Set to the default thread-local storage (tls) model to use. */
251 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
253 /* Set the default region and algorithm for the integrated register
254 allocator. */
256 enum ira_algorithm flag_ira_algorithm = IRA_ALGORITHM_CB;
257 enum ira_region flag_ira_region = IRA_REGION_MIXED;
259 /* Set the default for excess precision. */
261 enum excess_precision flag_excess_precision_cmdline = EXCESS_PRECISION_DEFAULT;
263 /* Nonzero means change certain warnings into errors.
264 Usually these are warnings about failure to conform to some standard. */
266 int flag_pedantic_errors = 0;
268 /* Nonzero means make permerror produce warnings instead of errors. */
270 int flag_permissive = 0;
272 /* -dA causes debug commentary information to be produced in
273 the generated assembly code (to make it more readable). This option
274 is generally only of use to those who actually need to read the
275 generated assembly code (perhaps while debugging the compiler itself).
276 Currently, this switch is only used by dwarfout.c; however, it is intended
277 to be a catchall for printing debug information in the assembler file. */
279 int flag_debug_asm = 0;
281 /* -dP causes the rtl to be emitted as a comment in assembly. */
283 int flag_dump_rtl_in_asm = 0;
285 /* When non-NULL, indicates that whenever space is allocated on the
286 stack, the resulting stack pointer must not pass this
287 address---that is, for stacks that grow downward, the stack pointer
288 must always be greater than or equal to this address; for stacks
289 that grow upward, the stack pointer must be less than this address.
290 At present, the rtx may be either a REG or a SYMBOL_REF, although
291 the support provided depends on the backend. */
292 rtx stack_limit_rtx;
294 /* Positive if we should track variables, negative if we should run
295 the var-tracking pass only to discard debug annotations, zero if
296 we're not to run it. When flag_var_tracking == AUTODETECT_VALUE it
297 will be set according to optimize, debug_info_level and debug_hooks
298 in process_options (). */
299 int flag_var_tracking = AUTODETECT_VALUE;
301 /* Positive if we should track variables at assignments, negative if
302 we should run the var-tracking pass only to discard debug
303 annotations. When flag_var_tracking_assignments ==
304 AUTODETECT_VALUE it will be set according to flag_var_tracking. */
305 int flag_var_tracking_assignments = AUTODETECT_VALUE;
307 /* Nonzero if we should toggle flag_var_tracking_assignments after
308 processing options and computing its default. */
309 int flag_var_tracking_assignments_toggle = 0;
311 /* Type of stack check. */
312 enum stack_check_type flag_stack_check = NO_STACK_CHECK;
314 /* True if the user has tagged the function with the 'section'
315 attribute. */
317 bool user_defined_section_attribute = false;
319 struct target_flag_state default_target_flag_state;
320 #if SWITCHABLE_TARGET
321 struct target_flag_state *this_target_flag_state = &default_target_flag_state;
322 #else
323 #define this_target_flag_state (&default_target_flag_state)
324 #endif
326 typedef struct
328 const char *const string;
329 int *const variable;
330 const int on_value;
332 lang_independent_options;
334 /* Nonzero if subexpressions must be evaluated from left-to-right. */
335 int flag_evaluation_order = 0;
337 /* The user symbol prefix after having resolved same. */
338 const char *user_label_prefix;
340 static const param_info lang_independent_params[] = {
341 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
342 { OPTION, DEFAULT, false, MIN, MAX, HELP },
343 #include "params.def"
344 #undef DEFPARAM
345 { NULL, 0, false, 0, 0, NULL }
348 /* Output files for assembler code (real compiler output)
349 and debugging dumps. */
351 FILE *asm_out_file;
352 FILE *aux_info_file;
353 FILE *dump_file = NULL;
354 const char *dump_file_name;
356 /* The current working directory of a translation. It's generally the
357 directory from which compilation was initiated, but a preprocessed
358 file may specify the original directory in which it was
359 created. */
361 static const char *src_pwd;
363 /* Initialize src_pwd with the given string, and return true. If it
364 was already initialized, return false. As a special case, it may
365 be called with a NULL argument to test whether src_pwd has NOT been
366 initialized yet. */
368 bool
369 set_src_pwd (const char *pwd)
371 if (src_pwd)
373 if (strcmp (src_pwd, pwd) == 0)
374 return true;
375 else
376 return false;
379 src_pwd = xstrdup (pwd);
380 return true;
383 /* Return the directory from which the translation unit was initiated,
384 in case set_src_pwd() was not called before to assign it a
385 different value. */
387 const char *
388 get_src_pwd (void)
390 if (! src_pwd)
392 src_pwd = getpwd ();
393 if (!src_pwd)
394 src_pwd = ".";
397 return src_pwd;
400 /* Called when the start of a function definition is parsed,
401 this function prints on stderr the name of the function. */
402 void
403 announce_function (tree decl)
405 if (!quiet_flag)
407 if (rtl_dump_and_exit)
408 fprintf (stderr, "%s ",
409 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
410 else
411 fprintf (stderr, " %s",
412 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
413 fflush (stderr);
414 pp_needs_newline (global_dc->printer) = true;
415 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
419 /* Initialize local_tick with the time of day, or -1 if
420 flag_random_seed is set. */
422 static void
423 init_local_tick (void)
425 if (!flag_random_seed)
427 /* Get some more or less random data. */
428 #ifdef HAVE_GETTIMEOFDAY
430 struct timeval tv;
432 gettimeofday (&tv, NULL);
433 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
435 #else
437 time_t now = time (NULL);
439 if (now != (time_t)-1)
440 local_tick = (unsigned) now;
442 #endif
444 else
445 local_tick = -1;
448 /* Set up a default flag_random_seed and local_tick, unless the user
449 already specified one. Must be called after init_local_tick. */
451 static void
452 init_random_seed (void)
454 unsigned HOST_WIDE_INT value;
455 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
457 value = local_tick ^ getpid ();
459 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
460 flag_random_seed = random_seed;
463 /* Obtain the random_seed string. Unless NOINIT, initialize it if
464 it's not provided in the command line. */
466 const char *
467 get_random_seed (bool noinit)
469 if (!flag_random_seed && !noinit)
470 init_random_seed ();
471 return flag_random_seed;
474 /* Modify the random_seed string to VAL. Return its previous
475 value. */
477 const char *
478 set_random_seed (const char *val)
480 const char *old = flag_random_seed;
481 flag_random_seed = val;
482 return old;
485 #if GCC_VERSION < 3004
487 /* The functions floor_log2 and exact_log2 are defined as inline
488 functions in toplev.h if GCC_VERSION >= 3004. The definitions here
489 are used for older versions of gcc. */
491 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
492 If X is 0, return -1. */
495 floor_log2 (unsigned HOST_WIDE_INT x)
497 int t = 0;
499 if (x == 0)
500 return -1;
502 if (HOST_BITS_PER_WIDE_INT > 64)
503 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
504 t += 64;
505 if (HOST_BITS_PER_WIDE_INT > 32)
506 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
507 t += 32;
508 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
509 t += 16;
510 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
511 t += 8;
512 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
513 t += 4;
514 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
515 t += 2;
516 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
517 t += 1;
519 return t;
522 /* Return the logarithm of X, base 2, considering X unsigned,
523 if X is a power of 2. Otherwise, returns -1. */
526 exact_log2 (unsigned HOST_WIDE_INT x)
528 if (x != (x & -x))
529 return -1;
530 return floor_log2 (x);
533 #endif /* GCC_VERSION < 3004 */
535 /* Handler for fatal signals, such as SIGSEGV. These are transformed
536 into ICE messages, which is much more user friendly. In case the
537 error printer crashes, reset the signal to prevent infinite recursion. */
539 static void
540 crash_signal (int signo)
542 signal (signo, SIG_DFL);
544 /* If we crashed while processing an ASM statement, then be a little more
545 graceful. It's most likely the user's fault. */
546 if (this_is_asm_operands)
548 output_operand_lossage ("unrecoverable error");
549 exit (FATAL_EXIT_CODE);
552 internal_error ("%s", strsignal (signo));
555 /* Arrange to dump core on error. (The regular error message is still
556 printed first, except in the case of abort().) */
558 static void
559 setup_core_dumping (void)
561 #ifdef SIGABRT
562 signal (SIGABRT, SIG_DFL);
563 #endif
564 #if defined(HAVE_SETRLIMIT)
566 struct rlimit rlim;
567 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
568 fatal_error ("getting core file size maximum limit: %m");
569 rlim.rlim_cur = rlim.rlim_max;
570 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
571 fatal_error ("setting core file size limit to maximum: %m");
573 #endif
574 diagnostic_abort_on_error (global_dc);
578 /* Strip off a legitimate source ending from the input string NAME of
579 length LEN. Rather than having to know the names used by all of
580 our front ends, we strip off an ending of a period followed by
581 up to five characters. (Java uses ".class".) */
583 void
584 strip_off_ending (char *name, int len)
586 int i;
587 for (i = 2; i < 6 && len > i; i++)
589 if (name[len - i] == '.')
591 name[len - i] = '\0';
592 break;
597 /* Output a quoted string. */
599 void
600 output_quoted_string (FILE *asm_file, const char *string)
602 #ifdef OUTPUT_QUOTED_STRING
603 OUTPUT_QUOTED_STRING (asm_file, string);
604 #else
605 char c;
607 putc ('\"', asm_file);
608 while ((c = *string++) != 0)
610 if (ISPRINT (c))
612 if (c == '\"' || c == '\\')
613 putc ('\\', asm_file);
614 putc (c, asm_file);
616 else
617 fprintf (asm_file, "\\%03o", (unsigned char) c);
619 putc ('\"', asm_file);
620 #endif
623 /* A subroutine of wrapup_global_declarations. We've come to the end of
624 the compilation unit. All deferred variables should be undeferred,
625 and all incomplete decls should be finalized. */
627 void
628 wrapup_global_declaration_1 (tree decl)
630 /* We're not deferring this any longer. Assignment is conditional to
631 avoid needlessly dirtying PCH pages. */
632 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
633 && DECL_DEFER_OUTPUT (decl) != 0)
634 DECL_DEFER_OUTPUT (decl) = 0;
636 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
637 lang_hooks.finish_incomplete_decl (decl);
640 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
641 needs to be output. Return true if it is output. */
643 bool
644 wrapup_global_declaration_2 (tree decl)
646 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
647 return false;
649 /* Don't write out static consts, unless we still need them.
651 We also keep static consts if not optimizing (for debugging),
652 unless the user specified -fno-keep-static-consts.
653 ??? They might be better written into the debug information.
654 This is possible when using DWARF.
656 A language processor that wants static constants to be always
657 written out (even if it is not used) is responsible for
658 calling rest_of_decl_compilation itself. E.g. the C front-end
659 calls rest_of_decl_compilation from finish_decl.
660 One motivation for this is that is conventional in some
661 environments to write things like:
662 static const char rcsid[] = "... version string ...";
663 intending to force the string to be in the executable.
665 A language processor that would prefer to have unneeded
666 static constants "optimized away" would just defer writing
667 them out until here. E.g. C++ does this, because static
668 constants are often defined in header files.
670 ??? A tempting alternative (for both C and C++) would be
671 to force a constant to be written if and only if it is
672 defined in a main file, as opposed to an include file. */
674 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
676 struct varpool_node *node;
677 bool needed = true;
678 node = varpool_get_node (decl);
680 if (!node && flag_ltrans)
681 needed = false;
682 else if (node && node->finalized)
683 needed = false;
684 else if (node && node->alias)
685 needed = false;
686 else if (!cgraph_global_info_ready
687 && (TREE_USED (decl)
688 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
689 /* needed */;
690 else if (node && node->needed)
691 /* needed */;
692 else if (DECL_COMDAT (decl))
693 needed = false;
694 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
695 && (optimize || !flag_keep_static_consts
696 || DECL_ARTIFICIAL (decl)))
697 needed = false;
699 if (needed)
701 rest_of_decl_compilation (decl, 1, 1);
702 return true;
706 return false;
709 /* Do any final processing required for the declarations in VEC, of
710 which there are LEN. We write out inline functions and variables
711 that have been deferred until this point, but which are required.
712 Returns nonzero if anything was put out. */
714 bool
715 wrapup_global_declarations (tree *vec, int len)
717 bool reconsider, output_something = false;
718 int i;
720 for (i = 0; i < len; i++)
721 wrapup_global_declaration_1 (vec[i]);
723 /* Now emit any global variables or functions that we have been
724 putting off. We need to loop in case one of the things emitted
725 here references another one which comes earlier in the list. */
728 reconsider = false;
729 for (i = 0; i < len; i++)
730 reconsider |= wrapup_global_declaration_2 (vec[i]);
731 if (reconsider)
732 output_something = true;
734 while (reconsider);
736 return output_something;
739 /* A subroutine of check_global_declarations. Issue appropriate warnings
740 for the global declaration DECL. */
742 void
743 check_global_declaration_1 (tree decl)
745 /* Warn about any function declared static but not defined. We don't
746 warn about variables, because many programs have static variables
747 that exist only to get some text into the object file. */
748 if (TREE_CODE (decl) == FUNCTION_DECL
749 && DECL_INITIAL (decl) == 0
750 && DECL_EXTERNAL (decl)
751 && ! DECL_ARTIFICIAL (decl)
752 && ! TREE_NO_WARNING (decl)
753 && ! TREE_PUBLIC (decl)
754 && (warn_unused_function
755 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
757 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
758 pedwarn (input_location, 0, "%q+F used but never defined", decl);
759 else
760 warning (OPT_Wunused_function, "%q+F declared %<static%> but never defined", decl);
761 /* This symbol is effectively an "extern" declaration now. */
762 TREE_PUBLIC (decl) = 1;
763 assemble_external (decl);
766 /* Warn about static fns or vars defined but not used. */
767 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
768 /* We don't warn about "static const" variables because the
769 "rcs_id" idiom uses that construction. */
770 || (warn_unused_variable
771 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
772 && ! DECL_IN_SYSTEM_HEADER (decl)
773 && ! TREE_USED (decl)
774 /* The TREE_USED bit for file-scope decls is kept in the identifier,
775 to handle multiple external decls in different scopes. */
776 && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
777 && ! DECL_EXTERNAL (decl)
778 && ! TREE_PUBLIC (decl)
779 /* A volatile variable might be used in some non-obvious way. */
780 && ! TREE_THIS_VOLATILE (decl)
781 /* Global register variables must be declared to reserve them. */
782 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
783 /* Otherwise, ask the language. */
784 && lang_hooks.decls.warn_unused_global (decl))
785 warning ((TREE_CODE (decl) == FUNCTION_DECL)
786 ? OPT_Wunused_function
787 : OPT_Wunused_variable,
788 "%q+D defined but not used", decl);
791 /* Issue appropriate warnings for the global declarations in VEC (of
792 which there are LEN). */
794 void
795 check_global_declarations (tree *vec, int len)
797 int i;
799 for (i = 0; i < len; i++)
800 check_global_declaration_1 (vec[i]);
803 /* Emit debugging information for all global declarations in VEC. */
805 void
806 emit_debug_global_declarations (tree *vec, int len)
808 int i;
810 /* Avoid confusing the debug information machinery when there are errors. */
811 if (seen_error ())
812 return;
814 timevar_push (TV_SYMOUT);
815 for (i = 0; i < len; i++)
816 debug_hooks->global_decl (vec[i]);
817 timevar_pop (TV_SYMOUT);
820 /* Warn about a use of an identifier which was marked deprecated. */
821 void
822 warn_deprecated_use (tree node, tree attr)
824 const char *msg;
826 if (node == 0 || !warn_deprecated_decl)
827 return;
829 if (!attr)
831 if (DECL_P (node))
832 attr = DECL_ATTRIBUTES (node);
833 else if (TYPE_P (node))
835 tree decl = TYPE_STUB_DECL (node);
836 if (decl)
837 attr = lookup_attribute ("deprecated",
838 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
842 if (attr)
843 attr = lookup_attribute ("deprecated", attr);
845 if (attr)
846 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
847 else
848 msg = NULL;
850 if (DECL_P (node))
852 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
853 if (msg)
854 warning (OPT_Wdeprecated_declarations,
855 "%qD is deprecated (declared at %s:%d): %s",
856 node, xloc.file, xloc.line, msg);
857 else
858 warning (OPT_Wdeprecated_declarations,
859 "%qD is deprecated (declared at %s:%d)",
860 node, xloc.file, xloc.line);
862 else if (TYPE_P (node))
864 tree what = NULL_TREE;
865 tree decl = TYPE_STUB_DECL (node);
867 if (TYPE_NAME (node))
869 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
870 what = TYPE_NAME (node);
871 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
872 && DECL_NAME (TYPE_NAME (node)))
873 what = DECL_NAME (TYPE_NAME (node));
876 if (decl)
878 expanded_location xloc
879 = expand_location (DECL_SOURCE_LOCATION (decl));
880 if (what)
882 if (msg)
883 warning (OPT_Wdeprecated_declarations,
884 "%qE is deprecated (declared at %s:%d): %s",
885 what, xloc.file, xloc.line, msg);
886 else
887 warning (OPT_Wdeprecated_declarations,
888 "%qE is deprecated (declared at %s:%d)", what,
889 xloc.file, xloc.line);
891 else
893 if (msg)
894 warning (OPT_Wdeprecated_declarations,
895 "type is deprecated (declared at %s:%d): %s",
896 xloc.file, xloc.line, msg);
897 else
898 warning (OPT_Wdeprecated_declarations,
899 "type is deprecated (declared at %s:%d)",
900 xloc.file, xloc.line);
903 else
905 if (what)
907 if (msg)
908 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
909 what, msg);
910 else
911 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
913 else
915 if (msg)
916 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
917 msg);
918 else
919 warning (OPT_Wdeprecated_declarations, "type is deprecated");
925 /* Compile an entire translation unit. Write a file of assembly
926 output and various debugging dumps. */
928 static void
929 compile_file (void)
931 /* Initialize yet another pass. */
933 ggc_protect_identifiers = true;
935 init_cgraph ();
936 init_final (main_input_filename);
937 coverage_init (aux_base_name);
938 statistics_init ();
939 invoke_plugin_callbacks (PLUGIN_START_UNIT, NULL);
941 timevar_push (TV_PARSE);
943 /* Call the parser, which parses the entire file (calling
944 rest_of_compilation for each function). */
945 lang_hooks.parse_file (set_yydebug);
947 /* Compilation is now finished except for writing
948 what's left of the symbol table output. */
949 timevar_pop (TV_PARSE);
951 if (flag_syntax_only || flag_wpa)
952 return;
954 ggc_protect_identifiers = false;
956 /* This must also call cgraph_finalize_compilation_unit. */
957 lang_hooks.decls.final_write_globals ();
959 if (seen_error ())
960 return;
962 varpool_assemble_pending_decls ();
963 finish_aliases_2 ();
965 /* Likewise for mudflap static object registrations. */
966 if (flag_mudflap)
967 mudflap_finish_file ();
969 output_shared_constant_pool ();
970 output_object_blocks ();
972 /* Write out any pending weak symbol declarations. */
973 weak_finish ();
975 /* This must be at the end before unwind and debug info.
976 Some target ports emit PIC setup thunks here. */
977 targetm.asm_out.code_end ();
979 /* Do dbx symbols. */
980 timevar_push (TV_SYMOUT);
982 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
983 if (dwarf2out_do_frame ())
984 dwarf2out_frame_finish ();
985 #endif
987 (*debug_hooks->finish) (main_input_filename);
988 timevar_pop (TV_SYMOUT);
990 /* Output some stuff at end of file if nec. */
992 dw2_output_indirect_constants ();
994 /* Flush any pending external directives. */
995 process_pending_assemble_externals ();
997 /* Emit LTO marker if LTO info has been previously emitted. This is
998 used by collect2 to determine whether an object file contains IL.
999 We used to emit an undefined reference here, but this produces
1000 link errors if an object file with IL is stored into a shared
1001 library without invoking lto1. */
1002 if (flag_generate_lto)
1004 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1005 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, NULL_TREE,
1006 "__gnu_lto_v1",
1007 (unsigned HOST_WIDE_INT) 1, 8);
1008 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1009 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, "__gnu_lto_v1",
1010 (unsigned HOST_WIDE_INT) 1, 8);
1011 #else
1012 ASM_OUTPUT_COMMON (asm_out_file, "__gnu_lto_v1",
1013 (unsigned HOST_WIDE_INT) 1,
1014 (unsigned HOST_WIDE_INT) 1);
1015 #endif
1018 /* Attach a special .ident directive to the end of the file to identify
1019 the version of GCC which compiled this code. The format of the .ident
1020 string is patterned after the ones produced by native SVR4 compilers. */
1021 #ifdef IDENT_ASM_OP
1022 if (!flag_no_ident)
1024 const char *pkg_version = "(GNU) ";
1026 if (strcmp ("(GCC) ", pkgversion_string))
1027 pkg_version = pkgversion_string;
1028 fprintf (asm_out_file, "%s\"GCC: %s%s\"\n",
1029 IDENT_ASM_OP, pkg_version, version_string);
1031 #endif
1033 /* Invoke registered plugin callbacks. */
1034 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
1036 /* This must be at the end. Some target ports emit end of file directives
1037 into the assembly file here, and hence we can not output anything to the
1038 assembly file after this point. */
1039 targetm.asm_out.file_end ();
1042 /* Parse a -d... command line switch. */
1044 void
1045 decode_d_option (const char *arg)
1047 int c;
1049 while (*arg)
1050 switch (c = *arg++)
1052 case 'A':
1053 flag_debug_asm = 1;
1054 break;
1055 case 'p':
1056 flag_print_asm_name = 1;
1057 break;
1058 case 'P':
1059 flag_dump_rtl_in_asm = 1;
1060 flag_print_asm_name = 1;
1061 break;
1062 case 'v':
1063 graph_dump_format = vcg;
1064 break;
1065 case 'x':
1066 rtl_dump_and_exit = 1;
1067 break;
1068 case 'y':
1069 set_yydebug = 1;
1070 break;
1071 case 'D': /* These are handled by the preprocessor. */
1072 case 'I':
1073 case 'M':
1074 case 'N':
1075 case 'U':
1076 break;
1077 case 'H':
1078 setup_core_dumping();
1079 break;
1080 case 'a':
1081 enable_rtl_dump_file ();
1082 break;
1084 default:
1085 warning (0, "unrecognized gcc debugging option: %c", c);
1086 break;
1090 /* Indexed by enum debug_info_type. */
1091 const char *const debug_type_names[] =
1093 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1096 /* Print version information to FILE.
1097 Each line begins with INDENT (for the case where FILE is the
1098 assembler output file). */
1100 void
1101 print_version (FILE *file, const char *indent)
1103 static const char fmt1[] =
1104 #ifdef __GNUC__
1105 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
1106 #else
1107 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
1108 #endif
1110 static const char fmt2[] =
1111 N_("GMP version %s, MPFR version %s, MPC version %s\n");
1112 static const char fmt3[] =
1113 N_("%s%swarning: %s header version %s differs from library version %s.\n");
1114 static const char fmt4[] =
1115 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1116 #ifndef __VERSION__
1117 #define __VERSION__ "[?]"
1118 #endif
1119 fprintf (file,
1120 file == stderr ? _(fmt1) : fmt1,
1121 indent, *indent != 0 ? " " : "",
1122 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
1123 indent, __VERSION__);
1125 /* We need to stringify the GMP macro values. Ugh, gmp_version has
1126 two string formats, "i.j.k" and "i.j" when k is zero. As of
1127 gmp-4.3.0, GMP always uses the 3 number format. */
1128 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1129 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1130 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
1131 #define GCC_GMP_VERSION \
1132 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
1133 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
1134 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1135 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1136 #else
1137 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1138 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1139 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1140 #endif
1141 fprintf (file,
1142 file == stderr ? _(fmt2) : fmt2,
1143 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING, MPC_VERSION_STRING);
1144 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1145 fprintf (file,
1146 file == stderr ? _(fmt3) : fmt3,
1147 indent, *indent != 0 ? " " : "",
1148 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1149 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1150 fprintf (file,
1151 file == stderr ? _(fmt3) : fmt3,
1152 indent, *indent != 0 ? " " : "",
1153 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1154 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
1155 fprintf (file,
1156 file == stderr ? _(fmt3) : fmt3,
1157 indent, *indent != 0 ? " " : "",
1158 "MPC", MPC_VERSION_STRING, mpc_get_version ());
1159 fprintf (file,
1160 file == stderr ? _(fmt4) : fmt4,
1161 indent, *indent != 0 ? " " : "",
1162 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1164 print_plugins_versions (file, indent);
1167 #ifdef ASM_COMMENT_START
1168 static int
1169 print_to_asm_out_file (print_switch_type type, const char * text)
1171 bool prepend_sep = true;
1173 switch (type)
1175 case SWITCH_TYPE_LINE_END:
1176 putc ('\n', asm_out_file);
1177 return 1;
1179 case SWITCH_TYPE_LINE_START:
1180 fputs (ASM_COMMENT_START, asm_out_file);
1181 return strlen (ASM_COMMENT_START);
1183 case SWITCH_TYPE_DESCRIPTIVE:
1184 if (ASM_COMMENT_START[0] == 0)
1185 prepend_sep = false;
1186 /* Drop through. */
1187 case SWITCH_TYPE_PASSED:
1188 case SWITCH_TYPE_ENABLED:
1189 if (prepend_sep)
1190 fputc (' ', asm_out_file);
1191 fputs (text, asm_out_file);
1192 /* No need to return the length here as
1193 print_single_switch has already done it. */
1194 return 0;
1196 default:
1197 return -1;
1200 #endif
1202 static int
1203 print_to_stderr (print_switch_type type, const char * text)
1205 switch (type)
1207 case SWITCH_TYPE_LINE_END:
1208 putc ('\n', stderr);
1209 return 1;
1211 case SWITCH_TYPE_LINE_START:
1212 return 0;
1214 case SWITCH_TYPE_PASSED:
1215 case SWITCH_TYPE_ENABLED:
1216 fputc (' ', stderr);
1217 /* Drop through. */
1219 case SWITCH_TYPE_DESCRIPTIVE:
1220 fputs (text, stderr);
1221 /* No need to return the length here as
1222 print_single_switch has already done it. */
1223 return 0;
1225 default:
1226 return -1;
1230 /* Print an option value and return the adjusted position in the line.
1231 ??? print_fn doesn't handle errors, eg disk full; presumably other
1232 code will catch a disk full though. */
1234 static int
1235 print_single_switch (print_switch_fn_type print_fn,
1236 int pos,
1237 print_switch_type type,
1238 const char * text)
1240 /* The ultrix fprintf returns 0 on success, so compute the result
1241 we want here since we need it for the following test. The +1
1242 is for the separator character that will probably be emitted. */
1243 int len = strlen (text) + 1;
1245 if (pos != 0
1246 && pos + len > MAX_LINE)
1248 print_fn (SWITCH_TYPE_LINE_END, NULL);
1249 pos = 0;
1252 if (pos == 0)
1253 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1255 print_fn (type, text);
1256 return pos + len;
1259 /* Print active target switches using PRINT_FN.
1260 POS is the current cursor position and MAX is the size of a "line".
1261 Each line begins with INDENT and ends with TERM.
1262 Each switch is separated from the next by SEP. */
1264 static void
1265 print_switch_values (print_switch_fn_type print_fn)
1267 int pos = 0;
1268 size_t j;
1270 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1271 that it can be printed below. This helps reproducibility. */
1272 if (!flag_random_seed)
1273 init_random_seed ();
1275 /* Print the options as passed. */
1276 pos = print_single_switch (print_fn, pos,
1277 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1279 for (j = 1; j < save_decoded_options_count; j++)
1281 switch (save_decoded_options[j].opt_index)
1283 case OPT_o:
1284 case OPT_d:
1285 case OPT_dumpbase:
1286 case OPT_dumpdir:
1287 case OPT_auxbase:
1288 case OPT_quiet:
1289 case OPT_version:
1290 /* Ignore these. */
1291 continue;
1294 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED,
1295 save_decoded_options[j].orig_option_with_args_text);
1298 if (pos > 0)
1299 print_fn (SWITCH_TYPE_LINE_END, NULL);
1301 /* Print the -f and -m options that have been enabled.
1302 We don't handle language specific options but printing argv
1303 should suffice. */
1304 pos = print_single_switch (print_fn, 0,
1305 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1307 for (j = 0; j < cl_options_count; j++)
1308 if ((cl_options[j].flags & CL_REPORT)
1309 && option_enabled (j) > 0)
1310 pos = print_single_switch (print_fn, pos,
1311 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1313 print_fn (SWITCH_TYPE_LINE_END, NULL);
1316 /* Open assembly code output file. Do this even if -fsyntax-only is
1317 on, because then the driver will have provided the name of a
1318 temporary file or bit bucket for us. NAME is the file specified on
1319 the command line, possibly NULL. */
1320 static void
1321 init_asm_output (const char *name)
1323 if (name == NULL && asm_file_name == 0)
1324 asm_out_file = stdout;
1325 else
1327 if (asm_file_name == 0)
1329 int len = strlen (dump_base_name);
1330 char *dumpname = XNEWVEC (char, len + 6);
1332 memcpy (dumpname, dump_base_name, len + 1);
1333 strip_off_ending (dumpname, len);
1334 strcat (dumpname, ".s");
1335 asm_file_name = dumpname;
1337 if (!strcmp (asm_file_name, "-"))
1338 asm_out_file = stdout;
1339 else
1340 asm_out_file = fopen (asm_file_name, "w+b");
1341 if (asm_out_file == 0)
1342 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1345 if (!flag_syntax_only)
1347 targetm.asm_out.file_start ();
1349 if (flag_record_gcc_switches)
1351 if (targetm.asm_out.record_gcc_switches)
1353 /* Let the target know that we are about to start recording. */
1354 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1355 NULL);
1356 /* Now record the switches. */
1357 print_switch_values (targetm.asm_out.record_gcc_switches);
1358 /* Let the target know that the recording is over. */
1359 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1360 NULL);
1362 else
1363 inform (input_location, "-frecord-gcc-switches is not supported by the current target");
1366 #ifdef ASM_COMMENT_START
1367 if (flag_verbose_asm)
1369 /* Print the list of switches in effect
1370 into the assembler file as comments. */
1371 print_version (asm_out_file, ASM_COMMENT_START);
1372 print_switch_values (print_to_asm_out_file);
1373 putc ('\n', asm_out_file);
1375 #endif
1379 /* Return true if the state of option OPTION should be stored in PCH files
1380 and checked by default_pch_valid_p. Store the option's current state
1381 in STATE if so. */
1383 static inline bool
1384 option_affects_pch_p (int option, struct cl_option_state *state)
1386 if ((cl_options[option].flags & CL_TARGET) == 0)
1387 return false;
1388 if (cl_options[option].flag_var == &target_flags)
1389 if (targetm.check_pch_target_flags)
1390 return false;
1391 return get_option_state (option, state);
1394 /* Default version of get_pch_validity.
1395 By default, every flag difference is fatal; that will be mostly right for
1396 most targets, but completely right for very few. */
1398 void *
1399 default_get_pch_validity (size_t *sz)
1401 struct cl_option_state state;
1402 size_t i;
1403 char *result, *r;
1405 *sz = 2;
1406 if (targetm.check_pch_target_flags)
1407 *sz += sizeof (target_flags);
1408 for (i = 0; i < cl_options_count; i++)
1409 if (option_affects_pch_p (i, &state))
1410 *sz += state.size;
1412 result = r = XNEWVEC (char, *sz);
1413 r[0] = flag_pic;
1414 r[1] = flag_pie;
1415 r += 2;
1416 if (targetm.check_pch_target_flags)
1418 memcpy (r, &target_flags, sizeof (target_flags));
1419 r += sizeof (target_flags);
1422 for (i = 0; i < cl_options_count; i++)
1423 if (option_affects_pch_p (i, &state))
1425 memcpy (r, state.data, state.size);
1426 r += state.size;
1429 return result;
1432 /* Return a message which says that a PCH file was created with a different
1433 setting of OPTION. */
1435 static const char *
1436 pch_option_mismatch (const char *option)
1438 char *r;
1440 asprintf (&r, _("created and used with differing settings of '%s'"), option);
1441 if (r == NULL)
1442 return _("out of memory");
1443 return r;
1446 /* Default version of pch_valid_p. */
1448 const char *
1449 default_pch_valid_p (const void *data_p, size_t len)
1451 struct cl_option_state state;
1452 const char *data = (const char *)data_p;
1453 size_t i;
1455 /* -fpic and -fpie also usually make a PCH invalid. */
1456 if (data[0] != flag_pic)
1457 return _("created and used with different settings of -fpic");
1458 if (data[1] != flag_pie)
1459 return _("created and used with different settings of -fpie");
1460 data += 2;
1462 /* Check target_flags. */
1463 if (targetm.check_pch_target_flags)
1465 int tf;
1466 const char *r;
1468 memcpy (&tf, data, sizeof (target_flags));
1469 data += sizeof (target_flags);
1470 len -= sizeof (target_flags);
1471 r = targetm.check_pch_target_flags (tf);
1472 if (r != NULL)
1473 return r;
1476 for (i = 0; i < cl_options_count; i++)
1477 if (option_affects_pch_p (i, &state))
1479 if (memcmp (data, state.data, state.size) != 0)
1480 return pch_option_mismatch (cl_options[i].opt_text);
1481 data += state.size;
1482 len -= state.size;
1485 return NULL;
1488 /* Default tree printer. Handles declarations only. */
1489 bool
1490 default_tree_printer (pretty_printer *pp, text_info *text, const char *spec,
1491 int precision, bool wide, bool set_locus, bool hash)
1493 tree t;
1495 /* FUTURE: %+x should set the locus. */
1496 if (precision != 0 || wide || hash)
1497 return false;
1499 switch (*spec)
1501 case 'E':
1502 t = va_arg (*text->args_ptr, tree);
1503 if (TREE_CODE (t) == IDENTIFIER_NODE)
1505 pp_identifier (pp, IDENTIFIER_POINTER (t));
1506 return true;
1508 break;
1510 case 'D':
1511 t = va_arg (*text->args_ptr, tree);
1512 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1513 t = DECL_DEBUG_EXPR (t);
1514 break;
1516 case 'F':
1517 case 'T':
1518 t = va_arg (*text->args_ptr, tree);
1519 break;
1521 case 'K':
1522 percent_K_format (text);
1523 return true;
1525 default:
1526 return false;
1529 if (set_locus && text->locus)
1530 *text->locus = DECL_SOURCE_LOCATION (t);
1532 if (DECL_P (t))
1534 const char *n = DECL_NAME (t)
1535 ? identifier_to_locale (lang_hooks.decl_printable_name (t, 2))
1536 : _("<anonymous>");
1537 pp_string (pp, n);
1539 else
1540 dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1542 return true;
1545 /* A helper function; used as the reallocator function for cpp's line
1546 table. */
1547 static void *
1548 realloc_for_line_map (void *ptr, size_t len)
1550 return GGC_RESIZEVAR (void, ptr, len);
1553 /* A helper function: used as the allocator function for
1554 identifier_to_locale. */
1555 static void *
1556 alloc_for_identifier_to_locale (size_t len)
1558 return ggc_alloc_atomic (len);
1561 /* Initialization of the front end environment, before command line
1562 options are parsed. Signal handlers, internationalization etc.
1563 ARGV0 is main's argv[0]. */
1564 static void
1565 general_init (const char *argv0)
1567 const char *p;
1569 p = argv0 + strlen (argv0);
1570 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1571 --p;
1572 progname = p;
1574 xmalloc_set_program_name (progname);
1576 hex_init ();
1578 /* Unlock the stdio streams. */
1579 unlock_std_streams ();
1581 gcc_init_libintl ();
1583 identifier_to_locale_alloc = alloc_for_identifier_to_locale;
1584 identifier_to_locale_free = ggc_free;
1586 /* Initialize the diagnostics reporting machinery, so option parsing
1587 can give warnings and errors. */
1588 diagnostic_initialize (global_dc, N_OPTS);
1589 diagnostic_starter (global_dc) = default_tree_diagnostic_starter;
1590 /* Set a default printer. Language specific initializations will
1591 override it later. */
1592 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1593 global_dc->show_option_requested = flag_diagnostics_show_option;
1594 global_dc->show_column = flag_show_column;
1595 global_dc->internal_error = plugins_internal_error_function;
1596 global_dc->option_enabled = option_enabled;
1597 global_dc->option_name = option_name;
1599 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1600 #ifdef SIGSEGV
1601 signal (SIGSEGV, crash_signal);
1602 #endif
1603 #ifdef SIGILL
1604 signal (SIGILL, crash_signal);
1605 #endif
1606 #ifdef SIGBUS
1607 signal (SIGBUS, crash_signal);
1608 #endif
1609 #ifdef SIGABRT
1610 signal (SIGABRT, crash_signal);
1611 #endif
1612 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1613 signal (SIGIOT, crash_signal);
1614 #endif
1615 #ifdef SIGFPE
1616 signal (SIGFPE, crash_signal);
1617 #endif
1619 /* Other host-specific signal setup. */
1620 (*host_hooks.extra_signals)();
1622 /* Initialize the garbage-collector, string pools and tree type hash
1623 table. */
1624 init_ggc ();
1625 init_stringpool ();
1626 line_table = ggc_alloc_line_maps ();
1627 linemap_init (line_table);
1628 line_table->reallocator = realloc_for_line_map;
1629 init_ttree ();
1631 /* Initialize register usage now so switches may override. */
1632 init_reg_sets ();
1634 /* Register the language-independent parameters. */
1635 add_params (lang_independent_params, LAST_PARAM);
1637 /* This must be done after add_params but before argument processing. */
1638 init_ggc_heuristics();
1639 init_optimization_passes ();
1640 statistics_early_init ();
1643 /* Return true if the current target supports -fsection-anchors. */
1645 static bool
1646 target_supports_section_anchors_p (void)
1648 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1649 return false;
1651 if (targetm.asm_out.output_anchor == NULL)
1652 return false;
1654 return true;
1657 /* Default the align_* variables to 1 if they're still unset, and
1658 set up the align_*_log variables. */
1659 static void
1660 init_alignments (void)
1662 if (align_loops <= 0)
1663 align_loops = 1;
1664 if (align_loops_max_skip > align_loops)
1665 align_loops_max_skip = align_loops - 1;
1666 align_loops_log = floor_log2 (align_loops * 2 - 1);
1667 if (align_jumps <= 0)
1668 align_jumps = 1;
1669 if (align_jumps_max_skip > align_jumps)
1670 align_jumps_max_skip = align_jumps - 1;
1671 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1672 if (align_labels <= 0)
1673 align_labels = 1;
1674 align_labels_log = floor_log2 (align_labels * 2 - 1);
1675 if (align_labels_max_skip > align_labels)
1676 align_labels_max_skip = align_labels - 1;
1677 if (align_functions <= 0)
1678 align_functions = 1;
1679 align_functions_log = floor_log2 (align_functions * 2 - 1);
1682 /* Process the options that have been parsed. */
1683 static void
1684 process_options (void)
1686 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1687 This can happen with incorrect pre-processed input. */
1688 debug_hooks = &do_nothing_debug_hooks;
1690 /* This replaces set_Wunused. */
1691 if (warn_unused_function == -1)
1692 warn_unused_function = warn_unused;
1693 if (warn_unused_label == -1)
1694 warn_unused_label = warn_unused;
1695 /* Wunused-parameter is enabled if both -Wunused -Wextra are enabled. */
1696 if (warn_unused_parameter == -1)
1697 warn_unused_parameter = (warn_unused && extra_warnings);
1698 if (warn_unused_variable == -1)
1699 warn_unused_variable = warn_unused;
1700 /* Wunused-but-set-parameter is enabled if both -Wunused -Wextra are
1701 enabled. */
1702 if (warn_unused_but_set_parameter == -1)
1703 warn_unused_but_set_parameter = (warn_unused && extra_warnings);
1704 if (warn_unused_but_set_variable == -1)
1705 warn_unused_but_set_variable = warn_unused;
1706 if (warn_unused_value == -1)
1707 warn_unused_value = warn_unused;
1709 /* This replaces set_Wextra. */
1710 if (warn_uninitialized == -1)
1711 warn_uninitialized = extra_warnings;
1713 /* Allow the front end to perform consistency checks and do further
1714 initialization based on the command line options. This hook also
1715 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1716 so we can correctly initialize debug output. */
1717 no_backend = lang_hooks.post_options (&main_input_filename);
1719 /* Some machines may reject certain combinations of options. */
1720 targetm.target_option.override ();
1722 /* Avoid any informative notes in the second run of -fcompare-debug. */
1723 if (flag_compare_debug)
1724 diagnostic_inhibit_notes (global_dc);
1726 if (flag_section_anchors && !target_supports_section_anchors_p ())
1728 warning (OPT_fsection_anchors,
1729 "this target does not support %qs", "-fsection-anchors");
1730 flag_section_anchors = 0;
1733 if (flag_short_enums == 2)
1734 flag_short_enums = targetm.default_short_enums ();
1736 /* Set aux_base_name if not already set. */
1737 if (aux_base_name)
1739 else if (main_input_filename)
1741 char *name = xstrdup (lbasename (main_input_filename));
1743 strip_off_ending (name, strlen (name));
1744 aux_base_name = name;
1746 else
1747 aux_base_name = "gccaux";
1749 #ifndef HAVE_cloog
1750 if (flag_graphite
1751 || flag_loop_block
1752 || flag_loop_interchange
1753 || flag_loop_strip_mine
1754 || flag_graphite_identity
1755 || flag_loop_parallelize_all)
1756 sorry ("Graphite loop optimizations cannot be used");
1757 #endif
1759 /* Unrolling all loops implies that standard loop unrolling must also
1760 be done. */
1761 if (flag_unroll_all_loops)
1762 flag_unroll_loops = 1;
1764 /* The loop unrolling code assumes that cse will be run after loop.
1765 web and rename-registers also help when run after loop unrolling. */
1766 if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1767 flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1769 if (flag_web == AUTODETECT_VALUE)
1770 flag_web = flag_unroll_loops || flag_peel_loops;
1772 if (flag_rename_registers == AUTODETECT_VALUE)
1773 flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1775 if (flag_non_call_exceptions)
1776 flag_asynchronous_unwind_tables = 1;
1777 if (flag_asynchronous_unwind_tables)
1778 flag_unwind_tables = 1;
1780 if (flag_value_profile_transformations)
1781 flag_profile_values = 1;
1783 /* Warn about options that are not supported on this machine. */
1784 #ifndef INSN_SCHEDULING
1785 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1786 warning (0, "instruction scheduling not supported on this target machine");
1787 #endif
1788 #ifndef DELAY_SLOTS
1789 if (flag_delayed_branch)
1790 warning (0, "this target machine does not have delayed branches");
1791 #endif
1793 user_label_prefix = USER_LABEL_PREFIX;
1794 if (flag_leading_underscore != -1)
1796 /* If the default prefix is more complicated than "" or "_",
1797 issue a warning and ignore this option. */
1798 if (user_label_prefix[0] == 0 ||
1799 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1801 user_label_prefix = flag_leading_underscore ? "_" : "";
1803 else
1804 warning (0, "-f%sleading-underscore not supported on this target machine",
1805 flag_leading_underscore ? "" : "no-");
1808 /* If we are in verbose mode, write out the version and maybe all the
1809 option flags in use. */
1810 if (version_flag)
1812 print_version (stderr, "");
1813 if (! quiet_flag)
1814 print_switch_values (print_to_stderr);
1817 if (flag_syntax_only)
1819 write_symbols = NO_DEBUG;
1820 profile_flag = 0;
1823 if (flag_gtoggle)
1825 if (debug_info_level == DINFO_LEVEL_NONE)
1827 debug_info_level = DINFO_LEVEL_NORMAL;
1829 if (write_symbols == NO_DEBUG)
1830 write_symbols = PREFERRED_DEBUGGING_TYPE;
1832 else
1833 debug_info_level = DINFO_LEVEL_NONE;
1836 if (flag_dump_final_insns && !flag_syntax_only && !no_backend)
1838 FILE *final_output = fopen (flag_dump_final_insns, "w");
1839 if (!final_output)
1841 error ("could not open final insn dump file %qs: %m",
1842 flag_dump_final_insns);
1843 flag_dump_final_insns = NULL;
1845 else if (fclose (final_output))
1847 error ("could not close zeroed insn dump file %qs: %m",
1848 flag_dump_final_insns);
1849 flag_dump_final_insns = NULL;
1853 /* Unless over-ridden for the target, assume that all DWARF levels
1854 may be emitted, if DWARF2_DEBUG is selected. */
1855 if (dwarf_strict < 0)
1856 dwarf_strict = 0;
1858 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1859 level is 0. */
1860 if (debug_info_level == DINFO_LEVEL_NONE)
1861 write_symbols = NO_DEBUG;
1863 if (write_symbols == NO_DEBUG)
1865 #if defined(DBX_DEBUGGING_INFO)
1866 else if (write_symbols == DBX_DEBUG)
1867 debug_hooks = &dbx_debug_hooks;
1868 #endif
1869 #if defined(XCOFF_DEBUGGING_INFO)
1870 else if (write_symbols == XCOFF_DEBUG)
1871 debug_hooks = &xcoff_debug_hooks;
1872 #endif
1873 #ifdef SDB_DEBUGGING_INFO
1874 else if (write_symbols == SDB_DEBUG)
1875 debug_hooks = &sdb_debug_hooks;
1876 #endif
1877 #ifdef DWARF2_DEBUGGING_INFO
1878 else if (write_symbols == DWARF2_DEBUG)
1879 debug_hooks = &dwarf2_debug_hooks;
1880 #endif
1881 #ifdef VMS_DEBUGGING_INFO
1882 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1883 debug_hooks = &vmsdbg_debug_hooks;
1884 #endif
1885 else
1886 error ("target system does not support the \"%s\" debug format",
1887 debug_type_names[write_symbols]);
1889 /* We know which debug output will be used so we can set flag_var_tracking
1890 and flag_var_tracking_uninit if the user has not specified them. */
1891 if (debug_info_level < DINFO_LEVEL_NORMAL
1892 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1894 if (flag_var_tracking == 1
1895 || flag_var_tracking_uninit == 1)
1897 if (debug_info_level < DINFO_LEVEL_NORMAL)
1898 warning (0, "variable tracking requested, but useless unless "
1899 "producing debug info");
1900 else
1901 warning (0, "variable tracking requested, but not supported "
1902 "by this debug format");
1904 flag_var_tracking = 0;
1905 flag_var_tracking_uninit = 0;
1908 /* If the user specifically requested variable tracking with tagging
1909 uninitialized variables, we need to turn on variable tracking.
1910 (We already determined above that variable tracking is feasible.) */
1911 if (flag_var_tracking_uninit)
1912 flag_var_tracking = 1;
1914 if (flag_var_tracking == AUTODETECT_VALUE)
1915 flag_var_tracking = optimize >= 1;
1917 if (flag_var_tracking_assignments == AUTODETECT_VALUE)
1918 flag_var_tracking_assignments = flag_var_tracking
1919 && !(flag_selective_scheduling || flag_selective_scheduling2);
1921 if (flag_var_tracking_assignments_toggle)
1922 flag_var_tracking_assignments = !flag_var_tracking_assignments;
1924 if (flag_var_tracking_assignments && !flag_var_tracking)
1925 flag_var_tracking = flag_var_tracking_assignments = -1;
1927 if (flag_var_tracking_assignments
1928 && (flag_selective_scheduling || flag_selective_scheduling2))
1929 warning (0, "var-tracking-assignments changes selective scheduling");
1931 if (flag_tree_cselim == AUTODETECT_VALUE)
1932 #ifdef HAVE_conditional_move
1933 flag_tree_cselim = 1;
1934 #else
1935 flag_tree_cselim = 0;
1936 #endif
1938 /* If auxiliary info generation is desired, open the output file.
1939 This goes in the same directory as the source file--unlike
1940 all the other output files. */
1941 if (flag_gen_aux_info)
1943 aux_info_file = fopen (aux_info_file_name, "w");
1944 if (aux_info_file == 0)
1945 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1948 if (! targetm.have_named_sections)
1950 if (flag_function_sections)
1952 warning (0, "-ffunction-sections not supported for this target");
1953 flag_function_sections = 0;
1955 if (flag_data_sections)
1957 warning (0, "-fdata-sections not supported for this target");
1958 flag_data_sections = 0;
1962 if (flag_function_sections && profile_flag)
1964 warning (0, "-ffunction-sections disabled; it makes profiling impossible");
1965 flag_function_sections = 0;
1968 #ifndef HAVE_prefetch
1969 if (flag_prefetch_loop_arrays > 0)
1971 warning (0, "-fprefetch-loop-arrays not supported for this target");
1972 flag_prefetch_loop_arrays = 0;
1974 #else
1975 if (flag_prefetch_loop_arrays > 0 && !HAVE_prefetch)
1977 warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
1978 flag_prefetch_loop_arrays = 0;
1980 #endif
1982 /* This combination of options isn't handled for i386 targets and doesn't
1983 make much sense anyway, so don't allow it. */
1984 if (flag_prefetch_loop_arrays > 0 && optimize_size)
1986 warning (0, "-fprefetch-loop-arrays is not supported with -Os");
1987 flag_prefetch_loop_arrays = 0;
1990 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1991 if (flag_signaling_nans)
1992 flag_trapping_math = 1;
1994 /* We cannot reassociate if we want traps or signed zeros. */
1995 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1997 warning (0, "-fassociative-math disabled; other options take precedence");
1998 flag_associative_math = 0;
2001 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
2002 if (flag_cx_limited_range)
2003 flag_complex_method = 0;
2005 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
2006 if (flag_cx_fortran_rules)
2007 flag_complex_method = 1;
2009 /* Targets must be able to place spill slots at lower addresses. If the
2010 target already uses a soft frame pointer, the transition is trivial. */
2011 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
2013 warning (0, "-fstack-protector not supported for this target");
2014 flag_stack_protect = 0;
2016 if (!flag_stack_protect)
2017 warn_stack_protect = 0;
2019 /* ??? Unwind info is not correct around the CFG unless either a frame
2020 pointer is present or A_O_A is set. Fixing this requires rewriting
2021 unwind info generation to be aware of the CFG and propagating states
2022 around edges. */
2023 if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
2024 && flag_omit_frame_pointer)
2026 warning (0, "unwind tables currently require a frame pointer "
2027 "for correctness");
2028 flag_omit_frame_pointer = 0;
2031 /* Save the current optimization options. */
2032 optimization_default_node = build_optimization_node ();
2033 optimization_current_node = optimization_default_node;
2036 /* This function can be called multiple times to reinitialize the compiler
2037 back end when register classes or instruction sets have changed,
2038 before each function. */
2039 static void
2040 backend_init_target (void)
2042 /* Initialize alignment variables. */
2043 init_alignments ();
2045 /* This reinitializes hard_frame_pointer, and calls init_reg_modes_target()
2046 to initialize reg_raw_mode[]. */
2047 init_emit_regs ();
2049 /* This invokes target hooks to set fixed_reg[] etc, which is
2050 mode-dependent. */
2051 init_regs ();
2053 /* This depends on stack_pointer_rtx. */
2054 init_fake_stack_mems ();
2056 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
2057 mode-dependent. */
2058 init_alias_target ();
2060 /* Depends on HARD_FRAME_POINTER_REGNUM. */
2061 init_reload ();
2063 /* The following initialization functions need to generate rtl, so
2064 provide a dummy function context for them. */
2065 init_dummy_function_start ();
2067 /* rtx_cost is mode-dependent, so cached values need to be recomputed
2068 on a mode change. */
2069 init_expmed ();
2071 /* We may need to recompute regno_save_code[] and regno_restore_code[]
2072 after a mode change as well. */
2073 caller_save_initialized_p = false;
2075 expand_dummy_function_end ();
2078 /* Initialize the compiler back end. This function is called only once,
2079 when starting the compiler. */
2080 static void
2081 backend_init (void)
2083 init_emit_once ();
2085 init_rtlanal ();
2086 init_inline_once ();
2087 init_varasm_once ();
2088 save_register_info ();
2090 /* Initialize the target-specific back end pieces. */
2091 ira_init_once ();
2092 backend_init_target ();
2095 /* Initialize excess precision settings. */
2096 static void
2097 init_excess_precision (void)
2099 /* Adjust excess precision handling based on the target options. If
2100 the front end cannot handle it, flag_excess_precision_cmdline
2101 will already have been set accordingly in the post_options
2102 hook. */
2103 gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
2104 flag_excess_precision = flag_excess_precision_cmdline;
2105 if (flag_unsafe_math_optimizations)
2106 flag_excess_precision = EXCESS_PRECISION_FAST;
2107 if (flag_excess_precision == EXCESS_PRECISION_STANDARD)
2109 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
2110 switch (flt_eval_method)
2112 case -1:
2113 case 0:
2114 /* Either the target acts unpredictably (-1) or has all the
2115 operations required not to have excess precision (0). */
2116 flag_excess_precision = EXCESS_PRECISION_FAST;
2117 break;
2118 case 1:
2119 case 2:
2120 /* In these cases, predictable excess precision makes
2121 sense. */
2122 break;
2123 default:
2124 /* Any other implementation-defined FLT_EVAL_METHOD values
2125 require the compiler to handle the associated excess
2126 precision rules in excess_precision_type. */
2127 gcc_unreachable ();
2132 /* Initialize things that are both lang-dependent and target-dependent.
2133 This function can be called more than once if target parameters change. */
2134 static void
2135 lang_dependent_init_target (void)
2137 /* This determines excess precision settings. */
2138 init_excess_precision ();
2140 /* This creates various _DECL nodes, so needs to be called after the
2141 front end is initialized. It also depends on the HAVE_xxx macros
2142 generated from the target machine description. */
2143 init_optabs ();
2145 /* The following initialization functions need to generate rtl, so
2146 provide a dummy function context for them. */
2147 init_dummy_function_start ();
2149 /* Do the target-specific parts of expr initialization. */
2150 init_expr_target ();
2152 /* Although the actions of these functions are language-independent,
2153 they use optabs, so we cannot call them from backend_init. */
2154 init_set_costs ();
2155 ira_init ();
2157 expand_dummy_function_end ();
2160 /* Language-dependent initialization. Returns nonzero on success. */
2161 static int
2162 lang_dependent_init (const char *name)
2164 location_t save_loc = input_location;
2165 if (dump_base_name == 0)
2166 dump_base_name = name && name[0] ? name : "gccdump";
2168 /* Other front-end initialization. */
2169 input_location = BUILTINS_LOCATION;
2170 if (lang_hooks.init () == 0)
2171 return 0;
2172 input_location = save_loc;
2174 init_asm_output (name);
2176 /* This creates various _DECL nodes, so needs to be called after the
2177 front end is initialized. */
2178 init_eh ();
2180 /* Do the target-specific parts of the initialization. */
2181 lang_dependent_init_target ();
2183 /* If dbx symbol table desired, initialize writing it and output the
2184 predefined types. */
2185 timevar_push (TV_SYMOUT);
2187 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2188 if (dwarf2out_do_frame ())
2189 dwarf2out_frame_init ();
2190 #endif
2192 /* Now we have the correct original filename, we can initialize
2193 debug output. */
2194 (*debug_hooks->init) (name);
2196 timevar_pop (TV_SYMOUT);
2198 return 1;
2202 /* Reinitialize everything when target parameters, such as register usage,
2203 have changed. */
2204 void
2205 target_reinit (void)
2207 /* Reinitialize RTL backend. */
2208 backend_init_target ();
2210 /* Reinitialize lang-dependent parts. */
2211 lang_dependent_init_target ();
2214 void
2215 dump_memory_report (bool final)
2217 ggc_print_statistics ();
2218 stringpool_statistics ();
2219 dump_tree_statistics ();
2220 dump_gimple_statistics ();
2221 dump_rtx_statistics ();
2222 dump_alloc_pool_statistics ();
2223 dump_bitmap_statistics ();
2224 dump_vec_loc_statistics ();
2225 dump_ggc_loc_statistics (final);
2226 dump_alias_stats (stderr);
2227 dump_pta_stats (stderr);
2230 /* Clean up: close opened files, etc. */
2232 static void
2233 finalize (void)
2235 /* Close the dump files. */
2236 if (flag_gen_aux_info)
2238 fclose (aux_info_file);
2239 if (seen_error ())
2240 unlink (aux_info_file_name);
2243 /* Close non-debugging input and output files. Take special care to note
2244 whether fclose returns an error, since the pages might still be on the
2245 buffer chain while the file is open. */
2247 if (asm_out_file)
2249 if (ferror (asm_out_file) != 0)
2250 fatal_error ("error writing to %s: %m", asm_file_name);
2251 if (fclose (asm_out_file) != 0)
2252 fatal_error ("error closing %s: %m", asm_file_name);
2253 if (flag_wpa)
2254 unlink_if_ordinary (asm_file_name);
2257 statistics_fini ();
2258 finish_optimization_passes ();
2260 ira_finish_once ();
2262 if (mem_report)
2263 dump_memory_report (true);
2265 /* Language-specific end of compilation actions. */
2266 lang_hooks.finish ();
2269 /* Initialize the compiler, and compile the input file. */
2270 static void
2271 do_compile (void)
2273 /* Initialize timing first. The C front ends read the main file in
2274 the post_options hook, and C++ does file timings. */
2275 if (time_report || !quiet_flag || flag_detailed_statistics)
2276 timevar_init ();
2277 timevar_start (TV_TOTAL);
2279 process_options ();
2281 /* Don't do any more if an error has already occurred. */
2282 if (!seen_error ())
2284 /* This must be run always, because it is needed to compute the FP
2285 predefined macros, such as __LDBL_MAX__, for targets using non
2286 default FP formats. */
2287 init_adjust_machine_modes ();
2289 /* Set up the back-end if requested. */
2290 if (!no_backend)
2291 backend_init ();
2293 /* Language-dependent initialization. Returns true on success. */
2294 if (lang_dependent_init (main_input_filename))
2295 compile_file ();
2297 finalize ();
2300 /* Stop timing and print the times. */
2301 timevar_stop (TV_TOTAL);
2302 timevar_print (stderr);
2305 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2306 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2307 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2309 It is not safe to call this function more than once. */
2312 toplev_main (int argc, char **argv)
2314 expandargv (&argc, &argv);
2316 /* Initialization of GCC's environment, and diagnostics. */
2317 general_init (argv[0]);
2319 /* Parse the options and do minimal processing; basically just
2320 enough to default flags appropriately. */
2321 decode_options (argc, CONST_CAST2 (const char **, char **, argv),
2322 &save_decoded_options, &save_decoded_options_count);
2324 init_local_tick ();
2326 initialize_plugins ();
2328 if (version_flag)
2329 print_version (stderr, "");
2331 if (help_flag)
2332 print_plugins_help (stderr, "");
2334 /* Exit early if we can (e.g. -help). */
2335 if (!exit_after_options)
2336 do_compile ();
2338 if (warningcount || errorcount)
2339 print_ignored_options ();
2340 diagnostic_finish (global_dc);
2342 /* Invoke registered plugin callbacks if any. */
2343 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2345 finalize_plugins ();
2346 if (seen_error ())
2347 return (FATAL_EXIT_CODE);
2349 return (SUCCESS_EXIT_CODE);