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
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
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
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. */
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
31 #include "coretypes.h"
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
60 #include "basic-block.h"
66 #include "diagnostic.h"
70 #include "dwarf2asm.h"
71 #include "integrate.h"
75 #include "langhooks.h"
76 #include "cfglayout.h"
78 #include "hosthooks.h"
82 #include "value-prof.h"
83 #include "alloc-pool.h"
84 #include "tree-mudflap.h"
85 #include "tree-pass.h"
87 #include "tree-ssa-alias.h"
90 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
91 #include "dwarf2out.h"
94 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
98 #ifdef SDB_DEBUGGING_INFO
102 #ifdef XCOFF_DEBUGGING_INFO
103 #include "xcoffout.h" /* Needed for external data
104 declarations for e.g. AIX 4.x. */
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);
115 static void crash_signal (int) ATTRIBUTE_NORETURN;
116 static void setup_core_dumping (void);
117 static void compile_file (void);
119 /* Nonzero to dump debug info whilst parsing (-dy option). */
120 static int set_yydebug;
122 /* True if we don't need a backend (e.g. preprocessing only). */
123 static bool no_backend;
125 /* Length of line when printing switch values. */
128 /* Name of program invoked, sans directories. */
130 const char *progname;
132 /* Copy of argument vector to toplev_main. */
133 static const char **save_argv;
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. */
139 const char *main_input_filename;
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
145 /* Current position in real source file. */
147 location_t input_location;
149 struct line_maps *line_table;
151 /* Name to use as base of names for dump output files. */
153 const char *dump_base_name;
155 /* Name to use as a base for auxiliary output files. */
157 const char *aux_base_name;
159 /* Prefix for profile data files */
160 const char *profile_data_prefix;
162 /* A mask of target_flags that includes bit X if X was set or cleared
163 on the command line. */
165 int target_flags_explicit;
167 /* Debug hooks - dependent upon command line options. */
169 const struct gcc_debug_hooks *debug_hooks;
171 /* Debug hooks - target default. */
173 static const struct gcc_debug_hooks *default_debug_hooks;
175 /* Other flags saying which kinds of debugging dump have been requested. */
177 int rtl_dump_and_exit;
178 int flag_print_asm_name;
179 enum graph_dump_types graph_dump_format;
181 /* Name for output file of assembly code, specified with -o. */
183 const char *asm_file_name;
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. */
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. */
199 int optimize_size = 0;
201 /* The FUNCTION_DECL for the function currently being compiled,
202 or 0 if between functions. */
203 tree current_function_decl;
205 /* Set to the FUNC_BEGIN label of the current function, or NULL
207 const char * current_function_func_begin_label;
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;
213 /* A random sequence of characters, unless overridden by user. */
214 static const char *flag_random_seed;
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. */
223 /* Nonzero means `char' should be signed. */
225 int flag_signed_char;
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. */
230 int flag_short_enums;
232 /* Nonzero if structures and unions should be returned in memory.
234 This should only be defined if compatibility with another compiler or
235 with an ABI is needed, because it results in slower code. */
237 #ifndef DEFAULT_PCC_STRUCT_RETURN
238 #define DEFAULT_PCC_STRUCT_RETURN 1
241 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
243 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
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. */
249 int flag_complex_method = 1;
251 /* Nonzero means we should be saving declaration info into a .X file. */
253 int flag_gen_aux_info = 0;
255 /* Specified name of aux-info file. */
257 const char *aux_info_file_name;
259 /* Nonzero if we are compiling code for a shared library, zero for
264 /* Generate code for GNU or NeXT Objective-C runtime environment. */
266 #ifdef NEXT_OBJC_RUNTIME
267 int flag_next_runtime = 1;
269 int flag_next_runtime = 0;
272 /* Set to the default thread-local storage (tls) model to use. */
274 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
276 /* Set the default region and algorithm for the integrated register
279 enum ira_algorithm flag_ira_algorithm = IRA_ALGORITHM_CB;
280 enum ira_region flag_ira_region = IRA_REGION_MIXED;
282 /* Set the default value for -fira-verbose. */
284 unsigned int flag_ira_verbose = 5;
286 /* Set the default for excess precision. */
288 enum excess_precision flag_excess_precision_cmdline = EXCESS_PRECISION_DEFAULT;
289 enum excess_precision flag_excess_precision = EXCESS_PRECISION_DEFAULT;
291 /* Nonzero means change certain warnings into errors.
292 Usually these are warnings about failure to conform to some standard. */
294 int flag_pedantic_errors = 0;
296 /* Nonzero means make permerror produce warnings instead of errors. */
298 int flag_permissive = 0;
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. */
307 int flag_debug_asm = 0;
309 /* -dP causes the rtl to be emitted as a comment in assembly. */
311 int flag_dump_rtl_in_asm = 0;
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. */
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;
327 /* Type of stack check. */
328 enum stack_check_type flag_stack_check = NO_STACK_CHECK;
330 /* True if the user has tagged the function with the 'section'
333 bool user_defined_section_attribute = false;
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. */
341 int align_loops_max_skip;
343 int align_jumps_max_skip;
344 int align_labels_log;
345 int align_labels_max_skip;
346 int align_functions_log;
350 const char *const string;
354 lang_independent_options;
356 /* Nonzero if subexpressions must be evaluated from left-to-right. */
357 int flag_evaluation_order = 0;
359 /* The user symbol prefix after having resolved same. */
360 const char *user_label_prefix;
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"
367 { NULL, 0, false, 0, 0, NULL }
370 /* Output files for assembler code (real compiler output)
371 and debugging dumps. */
375 FILE *dump_file = NULL;
376 const char *dump_file_name;
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
383 static const char *src_pwd;
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
391 set_src_pwd (const char *pwd)
395 if (strcmp (src_pwd, pwd) == 0)
401 src_pwd = xstrdup (pwd);
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
422 /* Called when the start of a function definition is parsed,
423 this function prints on stderr the name of the function. */
425 announce_function (tree decl)
429 if (rtl_dump_and_exit)
430 fprintf (stderr, "%s ",
431 identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));
433 fprintf (stderr, " %s",
434 identifier_to_locale (lang_hooks.decl_printable_name (decl, 2)));
436 pp_needs_newline (global_dc->printer) = true;
437 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
441 /* Initialize local_tick with the time of day, or -1 if
442 flag_random_seed is set. */
445 init_local_tick (void)
447 if (!flag_random_seed)
449 /* Get some more or less random data. */
450 #ifdef HAVE_GETTIMEOFDAY
454 gettimeofday (&tv, NULL);
455 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
459 time_t now = time (NULL);
461 if (now != (time_t)-1)
462 local_tick = (unsigned) now;
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. */
474 init_random_seed (void)
476 unsigned HOST_WIDE_INT value;
477 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
479 value = local_tick ^ getpid ();
481 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
482 flag_random_seed = random_seed;
485 /* Obtain the random_seed string. Unless NOINIT, initialize it if
486 it's not provided in the command line. */
489 get_random_seed (bool noinit)
491 if (!flag_random_seed && !noinit)
493 return flag_random_seed;
496 /* Modify the random_seed string to VAL. Return its previous
500 set_random_seed (const char *val)
502 const char *old = flag_random_seed;
503 flag_random_seed = val;
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. */
513 read_integral_parameter (const char *p, const char *pname, const int defval)
515 const char *endp = p;
528 error ("invalid option argument %qs", pname);
535 #if GCC_VERSION < 3004
537 /* The functions floor_log2 and exact_log2 are defined as inline
538 functions in toplev.h if GCC_VERSION >= 3004. The definitions here
539 are used for older versions of gcc. */
541 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
542 If X is 0, return -1. */
545 floor_log2 (unsigned HOST_WIDE_INT x)
552 if (HOST_BITS_PER_WIDE_INT > 64)
553 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
555 if (HOST_BITS_PER_WIDE_INT > 32)
556 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
558 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
560 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
562 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
564 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
566 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
572 /* Return the logarithm of X, base 2, considering X unsigned,
573 if X is a power of 2. Otherwise, returns -1. */
576 exact_log2 (unsigned HOST_WIDE_INT x)
580 return floor_log2 (x);
583 #endif /* GCC_VERSION < 3004 */
585 /* Handler for fatal signals, such as SIGSEGV. These are transformed
586 into ICE messages, which is much more user friendly. In case the
587 error printer crashes, reset the signal to prevent infinite recursion. */
590 crash_signal (int signo)
592 signal (signo, SIG_DFL);
594 /* If we crashed while processing an ASM statement, then be a little more
595 graceful. It's most likely the user's fault. */
596 if (this_is_asm_operands)
598 output_operand_lossage ("unrecoverable error");
599 exit (FATAL_EXIT_CODE);
602 internal_error ("%s", strsignal (signo));
605 /* Arrange to dump core on error. (The regular error message is still
606 printed first, except in the case of abort().) */
609 setup_core_dumping (void)
612 signal (SIGABRT, SIG_DFL);
614 #if defined(HAVE_SETRLIMIT)
617 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
618 fatal_error ("getting core file size maximum limit: %m");
619 rlim.rlim_cur = rlim.rlim_max;
620 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
621 fatal_error ("setting core file size limit to maximum: %m");
624 diagnostic_abort_on_error (global_dc);
628 /* Strip off a legitimate source ending from the input string NAME of
629 length LEN. Rather than having to know the names used by all of
630 our front ends, we strip off an ending of a period followed by
631 up to five characters. (Java uses ".class".) */
634 strip_off_ending (char *name, int len)
637 for (i = 2; i < 6 && len > i; i++)
639 if (name[len - i] == '.')
641 name[len - i] = '\0';
647 /* Output a quoted string. */
650 output_quoted_string (FILE *asm_file, const char *string)
652 #ifdef OUTPUT_QUOTED_STRING
653 OUTPUT_QUOTED_STRING (asm_file, string);
657 putc ('\"', asm_file);
658 while ((c = *string++) != 0)
662 if (c == '\"' || c == '\\')
663 putc ('\\', asm_file);
667 fprintf (asm_file, "\\%03o", (unsigned char) c);
669 putc ('\"', asm_file);
673 /* Output a file name in the form wanted by System V. */
676 output_file_directive (FILE *asm_file, const char *input_name)
681 if (input_name == NULL)
682 input_name = "<stdin>";
684 input_name = remap_debug_filename (input_name);
686 len = strlen (input_name);
687 na = input_name + len;
689 /* NA gets INPUT_NAME sans directory names. */
690 while (na > input_name)
692 if (IS_DIR_SEPARATOR (na[-1]))
697 #ifdef ASM_OUTPUT_SOURCE_FILENAME
698 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
700 fprintf (asm_file, "\t.file\t");
701 output_quoted_string (asm_file, na);
702 fputc ('\n', asm_file);
706 /* A subroutine of wrapup_global_declarations. We've come to the end of
707 the compilation unit. All deferred variables should be undeferred,
708 and all incomplete decls should be finalized. */
711 wrapup_global_declaration_1 (tree decl)
713 /* We're not deferring this any longer. Assignment is conditional to
714 avoid needlessly dirtying PCH pages. */
715 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
716 && DECL_DEFER_OUTPUT (decl) != 0)
717 DECL_DEFER_OUTPUT (decl) = 0;
719 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
720 lang_hooks.finish_incomplete_decl (decl);
723 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
724 needs to be output. Return true if it is output. */
727 wrapup_global_declaration_2 (tree decl)
729 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
732 /* Don't write out static consts, unless we still need them.
734 We also keep static consts if not optimizing (for debugging),
735 unless the user specified -fno-keep-static-consts.
736 ??? They might be better written into the debug information.
737 This is possible when using DWARF.
739 A language processor that wants static constants to be always
740 written out (even if it is not used) is responsible for
741 calling rest_of_decl_compilation itself. E.g. the C front-end
742 calls rest_of_decl_compilation from finish_decl.
743 One motivation for this is that is conventional in some
744 environments to write things like:
745 static const char rcsid[] = "... version string ...";
746 intending to force the string to be in the executable.
748 A language processor that would prefer to have unneeded
749 static constants "optimized away" would just defer writing
750 them out until here. E.g. C++ does this, because static
751 constants are often defined in header files.
753 ??? A tempting alternative (for both C and C++) would be
754 to force a constant to be written if and only if it is
755 defined in a main file, as opposed to an include file. */
757 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
759 struct varpool_node *node;
761 node = varpool_node (decl);
765 else if (node->alias)
767 else if (!cgraph_global_info_ready
769 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
771 else if (node->needed)
773 else if (DECL_COMDAT (decl))
775 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
776 && (optimize || !flag_keep_static_consts
777 || DECL_ARTIFICIAL (decl)))
782 rest_of_decl_compilation (decl, 1, 1);
790 /* Do any final processing required for the declarations in VEC, of
791 which there are LEN. We write out inline functions and variables
792 that have been deferred until this point, but which are required.
793 Returns nonzero if anything was put out. */
796 wrapup_global_declarations (tree *vec, int len)
798 bool reconsider, output_something = false;
801 for (i = 0; i < len; i++)
802 wrapup_global_declaration_1 (vec[i]);
804 /* Now emit any global variables or functions that we have been
805 putting off. We need to loop in case one of the things emitted
806 here references another one which comes earlier in the list. */
810 for (i = 0; i < len; i++)
811 reconsider |= wrapup_global_declaration_2 (vec[i]);
813 output_something = true;
817 return output_something;
820 /* A subroutine of check_global_declarations. Issue appropriate warnings
821 for the global declaration DECL. */
824 check_global_declaration_1 (tree decl)
826 /* Warn about any function declared static but not defined. We don't
827 warn about variables, because many programs have static variables
828 that exist only to get some text into the object file. */
829 if (TREE_CODE (decl) == FUNCTION_DECL
830 && DECL_INITIAL (decl) == 0
831 && DECL_EXTERNAL (decl)
832 && ! DECL_ARTIFICIAL (decl)
833 && ! TREE_NO_WARNING (decl)
834 && ! TREE_PUBLIC (decl)
835 && (warn_unused_function
836 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
838 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
839 pedwarn (input_location, 0, "%q+F used but never defined", decl);
841 warning (OPT_Wunused_function, "%q+F declared %<static%> but never defined", decl);
842 /* This symbol is effectively an "extern" declaration now. */
843 TREE_PUBLIC (decl) = 1;
844 assemble_external (decl);
847 /* Warn about static fns or vars defined but not used. */
848 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
849 /* We don't warn about "static const" variables because the
850 "rcs_id" idiom uses that construction. */
851 || (warn_unused_variable
852 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
853 && ! DECL_IN_SYSTEM_HEADER (decl)
854 && ! TREE_USED (decl)
855 /* The TREE_USED bit for file-scope decls is kept in the identifier,
856 to handle multiple external decls in different scopes. */
857 && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
858 && ! DECL_EXTERNAL (decl)
859 && ! TREE_PUBLIC (decl)
860 /* A volatile variable might be used in some non-obvious way. */
861 && ! TREE_THIS_VOLATILE (decl)
862 /* Global register variables must be declared to reserve them. */
863 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
864 /* Otherwise, ask the language. */
865 && lang_hooks.decls.warn_unused_global (decl))
866 warning ((TREE_CODE (decl) == FUNCTION_DECL)
867 ? OPT_Wunused_function
868 : OPT_Wunused_variable,
869 "%q+D defined but not used", decl);
872 /* Issue appropriate warnings for the global declarations in VEC (of
873 which there are LEN). */
876 check_global_declarations (tree *vec, int len)
880 for (i = 0; i < len; i++)
881 check_global_declaration_1 (vec[i]);
884 /* Emit debugging information for all global declarations in VEC. */
887 emit_debug_global_declarations (tree *vec, int len)
891 /* Avoid confusing the debug information machinery when there are errors. */
892 if (errorcount != 0 || sorrycount != 0)
895 timevar_push (TV_SYMOUT);
896 for (i = 0; i < len; i++)
897 debug_hooks->global_decl (vec[i]);
898 timevar_pop (TV_SYMOUT);
901 /* Warn about a use of an identifier which was marked deprecated. */
903 warn_deprecated_use (tree node, tree attr)
907 if (node == 0 || !warn_deprecated_decl)
913 attr = DECL_ATTRIBUTES (node);
914 else if (TYPE_P (node))
916 tree decl = TYPE_STUB_DECL (node);
918 attr = lookup_attribute ("deprecated",
919 TYPE_ATTRIBUTES (TREE_TYPE (decl)));
924 attr = lookup_attribute ("deprecated", attr);
927 msg = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
933 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
935 warning (OPT_Wdeprecated_declarations,
936 "%qD is deprecated (declared at %s:%d): %s",
937 node, xloc.file, xloc.line, msg);
939 warning (OPT_Wdeprecated_declarations,
940 "%qD is deprecated (declared at %s:%d)",
941 node, xloc.file, xloc.line);
943 else if (TYPE_P (node))
945 tree what = NULL_TREE;
946 tree decl = TYPE_STUB_DECL (node);
948 if (TYPE_NAME (node))
950 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
951 what = TYPE_NAME (node);
952 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
953 && DECL_NAME (TYPE_NAME (node)))
954 what = DECL_NAME (TYPE_NAME (node));
959 expanded_location xloc
960 = expand_location (DECL_SOURCE_LOCATION (decl));
964 warning (OPT_Wdeprecated_declarations,
965 "%qE is deprecated (declared at %s:%d): %s",
966 what, xloc.file, xloc.line, msg);
968 warning (OPT_Wdeprecated_declarations,
969 "%qE is deprecated (declared at %s:%d)", what,
970 xloc.file, xloc.line);
975 warning (OPT_Wdeprecated_declarations,
976 "type is deprecated (declared at %s:%d): %s",
977 xloc.file, xloc.line, msg);
979 warning (OPT_Wdeprecated_declarations,
980 "type is deprecated (declared at %s:%d)",
981 xloc.file, xloc.line);
989 warning (OPT_Wdeprecated_declarations, "%qE is deprecated: %s",
992 warning (OPT_Wdeprecated_declarations, "%qE is deprecated", what);
997 warning (OPT_Wdeprecated_declarations, "type is deprecated: %s",
1000 warning (OPT_Wdeprecated_declarations, "type is deprecated");
1006 /* Compile an entire translation unit. Write a file of assembly
1007 output and various debugging dumps. */
1012 /* Initialize yet another pass. */
1014 ggc_protect_identifiers = true;
1017 init_final (main_input_filename);
1018 coverage_init (aux_base_name);
1021 timevar_push (TV_PARSE);
1023 /* Call the parser, which parses the entire file (calling
1024 rest_of_compilation for each function). */
1025 lang_hooks.parse_file (set_yydebug);
1027 /* Compilation is now finished except for writing
1028 what's left of the symbol table output. */
1029 timevar_pop (TV_PARSE);
1031 if (flag_syntax_only)
1034 ggc_protect_identifiers = false;
1036 lang_hooks.decls.final_write_globals ();
1038 if (errorcount || sorrycount)
1041 varpool_assemble_pending_decls ();
1042 finish_aliases_2 ();
1044 /* Likewise for mudflap static object registrations. */
1046 mudflap_finish_file ();
1048 /* Likewise for emulated thread-local storage. */
1049 if (!targetm.have_tls)
1052 output_shared_constant_pool ();
1053 output_object_blocks ();
1055 /* Write out any pending weak symbol declarations. */
1058 /* Do dbx symbols. */
1059 timevar_push (TV_SYMOUT);
1061 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
1062 if (dwarf2out_do_frame ())
1063 dwarf2out_frame_finish ();
1066 (*debug_hooks->finish) (main_input_filename);
1067 timevar_pop (TV_SYMOUT);
1069 /* Output some stuff at end of file if nec. */
1071 dw2_output_indirect_constants ();
1073 /* Flush any pending external directives. */
1074 process_pending_assemble_externals ();
1076 /* Attach a special .ident directive to the end of the file to identify
1077 the version of GCC which compiled this code. The format of the .ident
1078 string is patterned after the ones produced by native SVR4 compilers. */
1082 const char *pkg_version = "(GNU) ";
1084 if (strcmp ("(GCC) ", pkgversion_string))
1085 pkg_version = pkgversion_string;
1086 fprintf (asm_out_file, "%s\"GCC: %s%s\"\n",
1087 IDENT_ASM_OP, pkg_version, version_string);
1091 /* This must be at the end. Some target ports emit end of file directives
1092 into the assembly file here, and hence we can not output anything to the
1093 assembly file after this point. */
1094 targetm.asm_out.file_end ();
1097 /* Parse a -d... command line switch. */
1100 decode_d_option (const char *arg)
1111 flag_print_asm_name = 1;
1114 flag_dump_rtl_in_asm = 1;
1115 flag_print_asm_name = 1;
1118 graph_dump_format = vcg;
1121 rtl_dump_and_exit = 1;
1126 case 'D': /* These are handled by the preprocessor. */
1133 setup_core_dumping();
1136 enable_rtl_dump_file ();
1140 warning (0, "unrecognized gcc debugging option: %c", c);
1145 /* Indexed by enum debug_info_type. */
1146 const char *const debug_type_names[] =
1148 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1151 /* Print version information to FILE.
1152 Each line begins with INDENT (for the case where FILE is the
1153 assembler output file). */
1156 print_version (FILE *file, const char *indent)
1158 static const char fmt1[] =
1160 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
1162 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
1166 static const char fmt2[] =
1167 N_("GMP version %s, MPFR version %s, MPC version %s\n");
1169 static const char fmt2[] =
1170 N_("GMP version %s, MPFR version %s\n");
1172 static const char fmt3[] =
1173 N_("%s%swarning: %s header version %s differs from library version %s.\n");
1174 static const char fmt4[] =
1175 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1177 #define __VERSION__ "[?]"
1180 file == stderr ? _(fmt1) : fmt1,
1181 indent, *indent != 0 ? " " : "",
1182 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
1183 indent, __VERSION__);
1185 /* We need to stringify the GMP macro values. Ugh, gmp_version has
1186 two string formats, "i.j.k" and "i.j" when k is zero. As of
1187 gmp-4.3.0, GMP always uses the 3 number format. */
1188 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1189 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1190 #define GCC_GMP_VERSION_NUM(X,Y,Z) (((X) << 16L) | ((Y) << 8) | (Z))
1191 #define GCC_GMP_VERSION \
1192 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)
1193 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,0) && __GNU_MP_VERSION_PATCHLEVEL == 0
1194 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1195 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1197 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1198 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1199 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1202 file == stderr ? _(fmt2) : fmt2,
1203 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING
1205 , MPC_VERSION_STRING
1208 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1210 file == stderr ? _(fmt3) : fmt3,
1211 indent, *indent != 0 ? " " : "",
1212 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1213 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1215 file == stderr ? _(fmt3) : fmt3,
1216 indent, *indent != 0 ? " " : "",
1217 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1219 if (strcmp (MPC_VERSION_STRING, mpc_get_version ()))
1221 file == stderr ? _(fmt3) : fmt3,
1222 indent, *indent != 0 ? " " : "",
1223 "MPC", MPC_VERSION_STRING, mpc_get_version ());
1226 file == stderr ? _(fmt4) : fmt4,
1227 indent, *indent != 0 ? " " : "",
1228 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1230 print_plugins_versions (file, indent);
1233 #ifdef ASM_COMMENT_START
1235 print_to_asm_out_file (print_switch_type type, const char * text)
1237 bool prepend_sep = true;
1241 case SWITCH_TYPE_LINE_END:
1242 putc ('\n', asm_out_file);
1245 case SWITCH_TYPE_LINE_START:
1246 fputs (ASM_COMMENT_START, asm_out_file);
1247 return strlen (ASM_COMMENT_START);
1249 case SWITCH_TYPE_DESCRIPTIVE:
1250 if (ASM_COMMENT_START[0] == 0)
1251 prepend_sep = false;
1253 case SWITCH_TYPE_PASSED:
1254 case SWITCH_TYPE_ENABLED:
1256 fputc (' ', asm_out_file);
1257 fprintf (asm_out_file, text);
1258 /* No need to return the length here as
1259 print_single_switch has already done it. */
1269 print_to_stderr (print_switch_type type, const char * text)
1273 case SWITCH_TYPE_LINE_END:
1274 putc ('\n', stderr);
1277 case SWITCH_TYPE_LINE_START:
1280 case SWITCH_TYPE_PASSED:
1281 case SWITCH_TYPE_ENABLED:
1282 fputc (' ', stderr);
1285 case SWITCH_TYPE_DESCRIPTIVE:
1286 fprintf (stderr, text);
1287 /* No need to return the length here as
1288 print_single_switch has already done it. */
1296 /* Print an option value and return the adjusted position in the line.
1297 ??? print_fn doesn't handle errors, eg disk full; presumably other
1298 code will catch a disk full though. */
1301 print_single_switch (print_switch_fn_type print_fn,
1303 print_switch_type type,
1306 /* The ultrix fprintf returns 0 on success, so compute the result
1307 we want here since we need it for the following test. The +1
1308 is for the separator character that will probably be emitted. */
1309 int len = strlen (text) + 1;
1312 && pos + len > MAX_LINE)
1314 print_fn (SWITCH_TYPE_LINE_END, NULL);
1319 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1321 print_fn (type, text);
1325 /* Print active target switches using PRINT_FN.
1326 POS is the current cursor position and MAX is the size of a "line".
1327 Each line begins with INDENT and ends with TERM.
1328 Each switch is separated from the next by SEP. */
1331 print_switch_values (print_switch_fn_type print_fn)
1337 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1338 that it can be printed below. This helps reproducibility. */
1339 if (!flag_random_seed)
1340 init_random_seed ();
1342 /* Print the options as passed. */
1343 pos = print_single_switch (print_fn, pos,
1344 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1346 for (p = &save_argv[1]; *p != NULL; p++)
1351 if (strcmp (*p, "-o") == 0
1352 || strcmp (*p, "-dumpbase") == 0
1353 || strcmp (*p, "-auxbase") == 0)
1360 if (strcmp (*p, "-quiet") == 0
1361 || strcmp (*p, "-version") == 0)
1368 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED, *p);
1372 print_fn (SWITCH_TYPE_LINE_END, NULL);
1374 /* Print the -f and -m options that have been enabled.
1375 We don't handle language specific options but printing argv
1377 pos = print_single_switch (print_fn, 0,
1378 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1380 for (j = 0; j < cl_options_count; j++)
1381 if ((cl_options[j].flags & CL_REPORT)
1382 && option_enabled (j) > 0)
1383 pos = print_single_switch (print_fn, pos,
1384 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1386 print_fn (SWITCH_TYPE_LINE_END, NULL);
1389 /* Open assembly code output file. Do this even if -fsyntax-only is
1390 on, because then the driver will have provided the name of a
1391 temporary file or bit bucket for us. NAME is the file specified on
1392 the command line, possibly NULL. */
1394 init_asm_output (const char *name)
1396 if (name == NULL && asm_file_name == 0)
1397 asm_out_file = stdout;
1400 if (asm_file_name == 0)
1402 int len = strlen (dump_base_name);
1403 char *dumpname = XNEWVEC (char, len + 6);
1405 memcpy (dumpname, dump_base_name, len + 1);
1406 strip_off_ending (dumpname, len);
1407 strcat (dumpname, ".s");
1408 asm_file_name = dumpname;
1410 if (!strcmp (asm_file_name, "-"))
1411 asm_out_file = stdout;
1413 asm_out_file = fopen (asm_file_name, "w+b");
1414 if (asm_out_file == 0)
1415 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1418 if (!flag_syntax_only)
1420 targetm.asm_out.file_start ();
1422 if (flag_record_gcc_switches)
1424 if (targetm.asm_out.record_gcc_switches)
1426 /* Let the target know that we are about to start recording. */
1427 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1429 /* Now record the switches. */
1430 print_switch_values (targetm.asm_out.record_gcc_switches);
1431 /* Let the target know that the recording is over. */
1432 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1436 inform (input_location, "-frecord-gcc-switches is not supported by the current target");
1439 #ifdef ASM_COMMENT_START
1440 if (flag_verbose_asm)
1442 /* Print the list of switches in effect
1443 into the assembler file as comments. */
1444 print_version (asm_out_file, ASM_COMMENT_START);
1445 print_switch_values (print_to_asm_out_file);
1446 fprintf (asm_out_file, "\n");
1452 /* Return true if the state of option OPTION should be stored in PCH files
1453 and checked by default_pch_valid_p. Store the option's current state
1457 option_affects_pch_p (int option, struct cl_option_state *state)
1459 if ((cl_options[option].flags & CL_TARGET) == 0)
1461 if (cl_options[option].flag_var == &target_flags)
1462 if (targetm.check_pch_target_flags)
1464 return get_option_state (option, state);
1467 /* Default version of get_pch_validity.
1468 By default, every flag difference is fatal; that will be mostly right for
1469 most targets, but completely right for very few. */
1472 default_get_pch_validity (size_t *len)
1474 struct cl_option_state state;
1479 if (targetm.check_pch_target_flags)
1480 *len += sizeof (target_flags);
1481 for (i = 0; i < cl_options_count; i++)
1482 if (option_affects_pch_p (i, &state))
1485 result = r = XNEWVEC (char, *len);
1489 if (targetm.check_pch_target_flags)
1491 memcpy (r, &target_flags, sizeof (target_flags));
1492 r += sizeof (target_flags);
1495 for (i = 0; i < cl_options_count; i++)
1496 if (option_affects_pch_p (i, &state))
1498 memcpy (r, state.data, state.size);
1505 /* Return a message which says that a PCH file was created with a different
1506 setting of OPTION. */
1509 pch_option_mismatch (const char *option)
1513 asprintf (&r, _("created and used with differing settings of '%s'"), option);
1515 return _("out of memory");
1519 /* Default version of pch_valid_p. */
1522 default_pch_valid_p (const void *data_p, size_t len)
1524 struct cl_option_state state;
1525 const char *data = (const char *)data_p;
1528 /* -fpic and -fpie also usually make a PCH invalid. */
1529 if (data[0] != flag_pic)
1530 return _("created and used with different settings of -fpic");
1531 if (data[1] != flag_pie)
1532 return _("created and used with different settings of -fpie");
1535 /* Check target_flags. */
1536 if (targetm.check_pch_target_flags)
1541 memcpy (&tf, data, sizeof (target_flags));
1542 data += sizeof (target_flags);
1543 len -= sizeof (target_flags);
1544 r = targetm.check_pch_target_flags (tf);
1549 for (i = 0; i < cl_options_count; i++)
1550 if (option_affects_pch_p (i, &state))
1552 if (memcmp (data, state.data, state.size) != 0)
1553 return pch_option_mismatch (cl_options[i].opt_text);
1561 /* Default tree printer. Handles declarations only. */
1563 default_tree_printer (pretty_printer * pp, text_info *text, const char *spec,
1564 int precision, bool wide, bool set_locus, bool hash)
1568 /* FUTURE: %+x should set the locus. */
1569 if (precision != 0 || wide || hash)
1575 t = va_arg (*text->args_ptr, tree);
1576 if (TREE_CODE (t) == IDENTIFIER_NODE)
1578 pp_identifier (pp, IDENTIFIER_POINTER (t));
1584 t = va_arg (*text->args_ptr, tree);
1585 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1586 t = DECL_DEBUG_EXPR (t);
1591 t = va_arg (*text->args_ptr, tree);
1598 if (set_locus && text->locus)
1599 *text->locus = DECL_SOURCE_LOCATION (t);
1603 const char *n = DECL_NAME (t)
1604 ? identifier_to_locale (lang_hooks.decl_printable_name (t, 2))
1609 dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1614 /* A helper function; used as the reallocator function for cpp's line
1617 realloc_for_line_map (void *ptr, size_t len)
1619 return ggc_realloc (ptr, len);
1622 /* Initialization of the front end environment, before command line
1623 options are parsed. Signal handlers, internationalization etc.
1624 ARGV0 is main's argv[0]. */
1626 general_init (const char *argv0)
1630 p = argv0 + strlen (argv0);
1631 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1635 xmalloc_set_program_name (progname);
1639 /* Unlock the stdio streams. */
1640 unlock_std_streams ();
1642 gcc_init_libintl ();
1644 /* Initialize the diagnostics reporting machinery, so option parsing
1645 can give warnings and errors. */
1646 diagnostic_initialize (global_dc);
1647 /* Set a default printer. Language specific initializations will
1648 override it later. */
1649 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1651 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1653 signal (SIGSEGV, crash_signal);
1656 signal (SIGILL, crash_signal);
1659 signal (SIGBUS, crash_signal);
1662 signal (SIGABRT, crash_signal);
1664 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1665 signal (SIGIOT, crash_signal);
1668 signal (SIGFPE, crash_signal);
1671 /* Other host-specific signal setup. */
1672 (*host_hooks.extra_signals)();
1674 /* Initialize the garbage-collector, string pools and tree type hash
1678 line_table = GGC_NEW (struct line_maps);
1679 linemap_init (line_table);
1680 line_table->reallocator = realloc_for_line_map;
1683 /* Initialize register usage now so switches may override. */
1686 /* Register the language-independent parameters. */
1687 add_params (lang_independent_params, LAST_PARAM);
1689 /* This must be done after add_params but before argument processing. */
1690 init_ggc_heuristics();
1691 init_optimization_passes ();
1692 statistics_early_init ();
1695 /* Return true if the current target supports -fsection-anchors. */
1698 target_supports_section_anchors_p (void)
1700 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1703 if (targetm.asm_out.output_anchor == NULL)
1709 /* Default the align_* variables to 1 if they're still unset, and
1710 set up the align_*_log variables. */
1712 init_alignments (void)
1714 if (align_loops <= 0)
1716 if (align_loops_max_skip > align_loops)
1717 align_loops_max_skip = align_loops - 1;
1718 align_loops_log = floor_log2 (align_loops * 2 - 1);
1719 if (align_jumps <= 0)
1721 if (align_jumps_max_skip > align_jumps)
1722 align_jumps_max_skip = align_jumps - 1;
1723 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1724 if (align_labels <= 0)
1726 align_labels_log = floor_log2 (align_labels * 2 - 1);
1727 if (align_labels_max_skip > align_labels)
1728 align_labels_max_skip = align_labels - 1;
1729 if (align_functions <= 0)
1730 align_functions = 1;
1731 align_functions_log = floor_log2 (align_functions * 2 - 1);
1734 /* Process the options that have been parsed. */
1736 process_options (void)
1738 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1739 This can happen with incorrect pre-processed input. */
1740 debug_hooks = &do_nothing_debug_hooks;
1742 /* This replaces set_Wunused. */
1743 if (warn_unused_function == -1)
1744 warn_unused_function = warn_unused;
1745 if (warn_unused_label == -1)
1746 warn_unused_label = warn_unused;
1747 /* Wunused-parameter is enabled if both -Wunused -Wextra are enabled. */
1748 if (warn_unused_parameter == -1)
1749 warn_unused_parameter = (warn_unused && extra_warnings);
1750 if (warn_unused_variable == -1)
1751 warn_unused_variable = warn_unused;
1752 if (warn_unused_value == -1)
1753 warn_unused_value = warn_unused;
1755 /* This replaces set_Wextra. */
1756 if (warn_uninitialized == -1)
1757 warn_uninitialized = extra_warnings;
1759 /* Allow the front end to perform consistency checks and do further
1760 initialization based on the command line options. This hook also
1761 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1762 so we can correctly initialize debug output. */
1763 no_backend = lang_hooks.post_options (&main_input_filename);
1765 #ifdef OVERRIDE_OPTIONS
1766 /* Some machines may reject certain combinations of options. */
1770 if (flag_section_anchors && !target_supports_section_anchors_p ())
1772 warning (OPT_fsection_anchors,
1773 "this target does not support %qs", "-fsection-anchors");
1774 flag_section_anchors = 0;
1777 if (flag_short_enums == 2)
1778 flag_short_enums = targetm.default_short_enums ();
1780 /* Set aux_base_name if not already set. */
1783 else if (main_input_filename)
1785 char *name = xstrdup (lbasename (main_input_filename));
1787 strip_off_ending (name, strlen (name));
1788 aux_base_name = name;
1791 aux_base_name = "gccaux";
1796 || flag_loop_interchange
1797 || flag_loop_strip_mine
1798 || flag_graphite_identity)
1799 sorry ("Graphite loop optimizations cannot be used");
1802 /* Unrolling all loops implies that standard loop unrolling must also
1804 if (flag_unroll_all_loops)
1805 flag_unroll_loops = 1;
1807 /* The loop unrolling code assumes that cse will be run after loop.
1808 web and rename-registers also help when run after loop unrolling. */
1810 if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1811 flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1812 if (flag_web == AUTODETECT_VALUE)
1813 flag_web = flag_unroll_loops || flag_peel_loops;
1814 if (flag_rename_registers == AUTODETECT_VALUE)
1815 flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1817 if (flag_non_call_exceptions)
1818 flag_asynchronous_unwind_tables = 1;
1819 if (flag_asynchronous_unwind_tables)
1820 flag_unwind_tables = 1;
1822 if (flag_value_profile_transformations)
1823 flag_profile_values = 1;
1825 /* Warn about options that are not supported on this machine. */
1826 #ifndef INSN_SCHEDULING
1827 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1828 warning (0, "instruction scheduling not supported on this target machine");
1831 if (flag_delayed_branch)
1832 warning (0, "this target machine does not have delayed branches");
1835 user_label_prefix = USER_LABEL_PREFIX;
1836 if (flag_leading_underscore != -1)
1838 /* If the default prefix is more complicated than "" or "_",
1839 issue a warning and ignore this option. */
1840 if (user_label_prefix[0] == 0 ||
1841 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1843 user_label_prefix = flag_leading_underscore ? "_" : "";
1846 warning (0, "-f%sleading-underscore not supported on this target machine",
1847 flag_leading_underscore ? "" : "no-");
1850 /* If we are in verbose mode, write out the version and maybe all the
1851 option flags in use. */
1854 print_version (stderr, "");
1856 print_switch_values (print_to_stderr);
1859 if (flag_syntax_only)
1861 write_symbols = NO_DEBUG;
1867 if (debug_info_level == DINFO_LEVEL_NONE)
1868 debug_info_level = DINFO_LEVEL_NORMAL;
1870 debug_info_level = DINFO_LEVEL_NONE;
1873 if (flag_dump_final_insns)
1875 FILE *final_output = fopen (flag_dump_final_insns, "w");
1878 error ("could not open final insn dump file %qs: %s",
1879 flag_dump_final_insns, strerror (errno));
1880 flag_dump_final_insns = NULL;
1882 else if (fclose (final_output))
1884 error ("could not close zeroed insn dump file %qs: %s",
1885 flag_dump_final_insns, strerror (errno));
1886 flag_dump_final_insns = NULL;
1890 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1892 if (debug_info_level == DINFO_LEVEL_NONE)
1893 write_symbols = NO_DEBUG;
1895 /* Now we know write_symbols, set up the debug hooks based on it.
1896 By default we do nothing for debug output. */
1897 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1898 default_debug_hooks = &do_nothing_debug_hooks;
1899 #if defined(DBX_DEBUGGING_INFO)
1900 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1901 default_debug_hooks = &dbx_debug_hooks;
1903 #if defined(XCOFF_DEBUGGING_INFO)
1904 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1905 default_debug_hooks = &xcoff_debug_hooks;
1907 #ifdef SDB_DEBUGGING_INFO
1908 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1909 default_debug_hooks = &sdb_debug_hooks;
1911 #ifdef DWARF2_DEBUGGING_INFO
1912 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1913 default_debug_hooks = &dwarf2_debug_hooks;
1915 #ifdef VMS_DEBUGGING_INFO
1916 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1917 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1918 default_debug_hooks = &vmsdbg_debug_hooks;
1921 if (write_symbols == NO_DEBUG)
1923 #if defined(DBX_DEBUGGING_INFO)
1924 else if (write_symbols == DBX_DEBUG)
1925 debug_hooks = &dbx_debug_hooks;
1927 #if defined(XCOFF_DEBUGGING_INFO)
1928 else if (write_symbols == XCOFF_DEBUG)
1929 debug_hooks = &xcoff_debug_hooks;
1931 #ifdef SDB_DEBUGGING_INFO
1932 else if (write_symbols == SDB_DEBUG)
1933 debug_hooks = &sdb_debug_hooks;
1935 #ifdef DWARF2_DEBUGGING_INFO
1936 else if (write_symbols == DWARF2_DEBUG)
1937 debug_hooks = &dwarf2_debug_hooks;
1939 #ifdef VMS_DEBUGGING_INFO
1940 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1941 debug_hooks = &vmsdbg_debug_hooks;
1944 error ("target system does not support the \"%s\" debug format",
1945 debug_type_names[write_symbols]);
1947 /* Now we know which debug output will be used so we can set
1948 flag_var_tracking, flag_rename_registers if the user has
1949 not specified them. */
1950 if (debug_info_level < DINFO_LEVEL_NORMAL
1951 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1953 if (flag_var_tracking == 1
1954 || flag_var_tracking_uninit == 1)
1956 if (debug_info_level < DINFO_LEVEL_NORMAL)
1957 warning (0, "variable tracking requested, but useless unless "
1958 "producing debug info");
1960 warning (0, "variable tracking requested, but not supported "
1961 "by this debug format");
1963 flag_var_tracking = 0;
1964 flag_var_tracking_uninit = 0;
1967 if (flag_rename_registers == AUTODETECT_VALUE)
1968 flag_rename_registers = default_debug_hooks->var_location
1969 != do_nothing_debug_hooks.var_location;
1971 if (flag_var_tracking == AUTODETECT_VALUE)
1972 flag_var_tracking = optimize >= 1;
1974 if (flag_tree_cselim == AUTODETECT_VALUE)
1975 #ifdef HAVE_conditional_move
1976 flag_tree_cselim = 1;
1978 flag_tree_cselim = 0;
1981 /* If the user specifically requested variable tracking with tagging
1982 uninitialized variables, we need to turn on variable tracking.
1983 (We already determined above that variable tracking is feasible.) */
1984 if (flag_var_tracking_uninit)
1985 flag_var_tracking = 1;
1987 /* If auxiliary info generation is desired, open the output file.
1988 This goes in the same directory as the source file--unlike
1989 all the other output files. */
1990 if (flag_gen_aux_info)
1992 aux_info_file = fopen (aux_info_file_name, "w");
1993 if (aux_info_file == 0)
1994 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1997 if (! targetm.have_named_sections)
1999 if (flag_function_sections)
2001 warning (0, "-ffunction-sections not supported for this target");
2002 flag_function_sections = 0;
2004 if (flag_data_sections)
2006 warning (0, "-fdata-sections not supported for this target");
2007 flag_data_sections = 0;
2011 if (flag_function_sections && profile_flag)
2013 warning (0, "-ffunction-sections disabled; it makes profiling impossible");
2014 flag_function_sections = 0;
2017 #ifndef HAVE_prefetch
2018 if (flag_prefetch_loop_arrays)
2020 warning (0, "-fprefetch-loop-arrays not supported for this target");
2021 flag_prefetch_loop_arrays = 0;
2024 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2026 warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
2027 flag_prefetch_loop_arrays = 0;
2031 /* This combination of options isn't handled for i386 targets and doesn't
2032 make much sense anyway, so don't allow it. */
2033 if (flag_prefetch_loop_arrays && optimize_size)
2035 warning (0, "-fprefetch-loop-arrays is not supported with -Os");
2036 flag_prefetch_loop_arrays = 0;
2039 /* The presence of IEEE signaling NaNs, implies all math can trap. */
2040 if (flag_signaling_nans)
2041 flag_trapping_math = 1;
2043 /* We cannot reassociate if we want traps or signed zeros. Â */
2044 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
2046 warning (0, "-fassociative-math disabled; other options take precedence");
2047 flag_associative_math = 0;
2050 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
2051 if (flag_cx_limited_range)
2052 flag_complex_method = 0;
2054 /* With -fcx-fortran-rules, we do something in-between cheap and C99. */
2055 if (flag_cx_fortran_rules)
2056 flag_complex_method = 1;
2058 /* Targets must be able to place spill slots at lower addresses. If the
2059 target already uses a soft frame pointer, the transition is trivial. */
2060 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
2062 warning (0, "-fstack-protector not supported for this target");
2063 flag_stack_protect = 0;
2065 if (!flag_stack_protect)
2066 warn_stack_protect = 0;
2068 /* ??? Unwind info is not correct around the CFG unless either a frame
2069 pointer is present or A_O_A is set. Fixing this requires rewriting
2070 unwind info generation to be aware of the CFG and propagating states
2072 if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
2073 && flag_omit_frame_pointer)
2075 warning (0, "unwind tables currently require a frame pointer "
2077 flag_omit_frame_pointer = 0;
2081 /* This function can be called multiple times to reinitialize the compiler
2082 back end when register classes or instruction sets have changed,
2083 before each function. */
2085 backend_init_target (void)
2087 /* Initialize alignment variables. */
2090 /* This reinitializes hard_frame_pointer, and calls init_reg_modes_target()
2091 to initialize reg_raw_mode[]. */
2094 /* This invokes target hooks to set fixed_reg[] etc, which is
2098 /* This depends on stack_pointer_rtx. */
2099 init_fake_stack_mems ();
2101 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
2103 init_alias_target ();
2105 /* Depends on HARD_FRAME_POINTER_REGNUM. */
2108 /* The following initialization functions need to generate rtl, so
2109 provide a dummy function context for them. */
2110 init_dummy_function_start ();
2112 /* rtx_cost is mode-dependent, so cached values need to be recomputed
2113 on a mode change. */
2116 /* We may need to recompute regno_save_code[] and regno_restore_code[]
2117 after a mode change as well. */
2118 if (flag_caller_saves)
2119 init_caller_save ();
2120 expand_dummy_function_end ();
2123 /* Initialize the compiler back end. This function is called only once,
2124 when starting the compiler. */
2128 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2129 || debug_info_level == DINFO_LEVEL_VERBOSE
2130 #ifdef VMS_DEBUGGING_INFO
2131 /* Enable line number info for traceback. */
2132 || debug_info_level > DINFO_LEVEL_NONE
2134 || flag_test_coverage);
2137 init_inline_once ();
2138 init_varasm_once ();
2139 save_register_info ();
2141 /* Initialize the target-specific back end pieces. */
2143 backend_init_target ();
2146 /* Initialize excess precision settings. */
2148 init_excess_precision (void)
2150 /* Adjust excess precision handling based on the target options. If
2151 the front end cannot handle it, flag_excess_precision_cmdline
2152 will already have been set accordingly in the post_options
2154 gcc_assert (flag_excess_precision_cmdline != EXCESS_PRECISION_DEFAULT);
2155 flag_excess_precision = flag_excess_precision_cmdline;
2156 if (flag_unsafe_math_optimizations)
2157 flag_excess_precision = EXCESS_PRECISION_FAST;
2158 if (flag_excess_precision == EXCESS_PRECISION_STANDARD)
2160 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
2161 switch (flt_eval_method)
2165 /* Either the target acts unpredictably (-1) or has all the
2166 operations required not to have excess precision (0). */
2167 flag_excess_precision = EXCESS_PRECISION_FAST;
2171 /* In these cases, predictable excess precision makes
2175 /* Any other implementation-defined FLT_EVAL_METHOD values
2176 require the compiler to handle the associated excess
2177 precision rules in excess_precision_type. */
2183 /* Initialize things that are both lang-dependent and target-dependent.
2184 This function can be called more than once if target parameters change. */
2186 lang_dependent_init_target (void)
2188 /* This determines excess precision settings. */
2189 init_excess_precision ();
2191 /* This creates various _DECL nodes, so needs to be called after the
2192 front end is initialized. It also depends on the HAVE_xxx macros
2193 generated from the target machine description. */
2196 /* The following initialization functions need to generate rtl, so
2197 provide a dummy function context for them. */
2198 init_dummy_function_start ();
2200 /* Do the target-specific parts of expr initialization. */
2201 init_expr_target ();
2203 /* Although the actions of these functions are language-independent,
2204 they use optabs, so we cannot call them from backend_init. */
2208 expand_dummy_function_end ();
2211 /* Language-dependent initialization. Returns nonzero on success. */
2213 lang_dependent_init (const char *name)
2215 location_t save_loc = input_location;
2216 if (dump_base_name == 0)
2217 dump_base_name = name && name[0] ? name : "gccdump";
2219 /* Other front-end initialization. */
2220 input_location = BUILTINS_LOCATION;
2221 if (lang_hooks.init () == 0)
2223 input_location = save_loc;
2225 init_asm_output (name);
2227 /* This creates various _DECL nodes, so needs to be called after the
2228 front end is initialized. */
2231 /* Do the target-specific parts of the initialization. */
2232 lang_dependent_init_target ();
2234 /* If dbx symbol table desired, initialize writing it and output the
2235 predefined types. */
2236 timevar_push (TV_SYMOUT);
2238 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2239 if (dwarf2out_do_frame ())
2240 dwarf2out_frame_init ();
2243 /* Now we have the correct original filename, we can initialize
2245 (*debug_hooks->init) (name);
2247 timevar_pop (TV_SYMOUT);
2253 /* Reinitialize everything when target parameters, such as register usage,
2256 target_reinit (void)
2258 /* Reinitialize RTL backend. */
2259 backend_init_target ();
2261 /* Reinitialize lang-dependent parts. */
2262 lang_dependent_init_target ();
2266 dump_memory_report (bool final)
2268 ggc_print_statistics ();
2269 stringpool_statistics ();
2270 dump_tree_statistics ();
2271 dump_gimple_statistics ();
2272 dump_rtx_statistics ();
2273 dump_varray_statistics ();
2274 dump_alloc_pool_statistics ();
2275 dump_bitmap_statistics ();
2276 dump_vec_loc_statistics ();
2277 dump_ggc_loc_statistics (final);
2278 dump_alias_stats (stderr);
2279 dump_pta_stats (stderr);
2282 /* Clean up: close opened files, etc. */
2287 /* Close the dump files. */
2288 if (flag_gen_aux_info)
2290 fclose (aux_info_file);
2292 unlink (aux_info_file_name);
2295 /* Close non-debugging input and output files. Take special care to note
2296 whether fclose returns an error, since the pages might still be on the
2297 buffer chain while the file is open. */
2301 if (ferror (asm_out_file) != 0)
2302 fatal_error ("error writing to %s: %m", asm_file_name);
2303 if (fclose (asm_out_file) != 0)
2304 fatal_error ("error closing %s: %m", asm_file_name);
2308 finish_optimization_passes ();
2313 dump_memory_report (true);
2315 /* Language-specific end of compilation actions. */
2316 lang_hooks.finish ();
2319 /* Initialize the compiler, and compile the input file. */
2323 /* Initialize timing first. The C front ends read the main file in
2324 the post_options hook, and C++ does file timings. */
2325 if (time_report || !quiet_flag || flag_detailed_statistics)
2327 timevar_start (TV_TOTAL);
2331 /* Don't do any more if an error has already occurred. */
2334 /* This must be run always, because it is needed to compute the FP
2335 predefined macros, such as __LDBL_MAX__, for targets using non
2336 default FP formats. */
2337 init_adjust_machine_modes ();
2339 /* Set up the back-end if requested. */
2343 /* Language-dependent initialization. Returns true on success. */
2344 if (lang_dependent_init (main_input_filename))
2349 /* Invoke registered plugin callbacks. */
2350 invoke_plugin_callbacks (PLUGIN_FINISH_UNIT, NULL);
2353 /* Stop timing and print the times. */
2354 timevar_stop (TV_TOTAL);
2355 timevar_print (stderr);
2358 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2359 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2360 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2362 It is not safe to call this function more than once. */
2365 toplev_main (int argc, char **argv)
2367 expandargv (&argc, &argv);
2369 save_argv = CONST_CAST2 (const char **, char **, argv);
2371 /* Initialization of GCC's environment, and diagnostics. */
2372 general_init (argv[0]);
2374 /* Parse the options and do minimal processing; basically just
2375 enough to default flags appropriately. */
2376 decode_options (argc, CONST_CAST2 (const char **, char **, argv));
2380 initialize_plugins ();
2383 print_version (stderr, "");
2386 print_plugins_help (stderr, "");
2388 /* Exit early if we can (e.g. -help). */
2389 if (!exit_after_options)
2392 if (warningcount || errorcount)
2393 print_ignored_options ();
2395 /* Invoke registered plugin callbacks if any. */
2396 invoke_plugin_callbacks (PLUGIN_FINISH, NULL);
2398 finalize_plugins ();
2399 if (errorcount || sorrycount)
2400 return (FATAL_EXIT_CODE);
2402 return (SUCCESS_EXIT_CODE);