* tree-ssa-phiopt.c (conditional_replacement): Construct proper SSA
[official-gcc.git] / gcc / toplev.c
blob094a2e245ace6d629012987e7671acb13a9a01aa
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 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
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 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
43 #include "line-map.h"
44 #include "input.h"
45 #include "tree.h"
46 #include "version.h"
47 #include "rtl.h"
48 #include "tm_p.h"
49 #include "flags.h"
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
54 #include "recog.h"
55 #include "output.h"
56 #include "except.h"
57 #include "function.h"
58 #include "toplev.h"
59 #include "expr.h"
60 #include "basic-block.h"
61 #include "intl.h"
62 #include "ggc.h"
63 #include "graph.h"
64 #include "regs.h"
65 #include "timevar.h"
66 #include "diagnostic.h"
67 #include "params.h"
68 #include "reload.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
71 #include "real.h"
72 #include "debug.h"
73 #include "target.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
76 #include "cfgloop.h"
77 #include "hosthooks.h"
78 #include "cgraph.h"
79 #include "opts.h"
80 #include "coverage.h"
81 #include "value-prof.h"
82 #include "alloc-pool.h"
83 #include "tree-mudflap.h"
85 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
86 #include "dwarf2out.h"
87 #endif
89 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
90 #include "dbxout.h"
91 #endif
93 #ifdef SDB_DEBUGGING_INFO
94 #include "sdbout.h"
95 #endif
97 #ifdef XCOFF_DEBUGGING_INFO
98 #include "xcoffout.h" /* Needed for external data
99 declarations for e.g. AIX 4.x. */
100 #endif
102 static void general_init (const char *);
103 static void do_compile (void);
104 static void process_options (void);
105 static void backend_init (void);
106 static int lang_dependent_init (const char *);
107 static void init_asm_output (const char *);
108 static void finalize (void);
110 static void crash_signal (int) ATTRIBUTE_NORETURN;
111 static void setup_core_dumping (void);
112 static void compile_file (void);
114 static int print_single_switch (FILE *, int, int, const char *,
115 const char *, const char *,
116 const char *, const char *);
117 static void print_switch_values (FILE *, int, int, const char *,
118 const char *, const char *);
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 /* Name of program invoked, sans directories. */
131 const char *progname;
133 /* Copy of argument vector to toplev_main. */
134 static const char **save_argv;
136 /* Name of top-level original source file (what was input to cpp).
137 This comes from the #-command at the beginning of the actual input.
138 If there isn't any there, then this is the cc1 input file name. */
140 const char *main_input_filename;
142 #ifndef USE_MAPPED_LOCATION
143 location_t unknown_location = { NULL, 0 };
144 #endif
146 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
147 to optimize and default_debug_hooks in process_options (). */
148 #define AUTODETECT_VALUE 2
150 /* Current position in real source file. */
152 location_t input_location;
154 struct line_maps line_table;
156 /* Nonzero if it is unsafe to create any new pseudo registers. */
157 int no_new_pseudos;
159 /* Stack of currently pending input files. */
161 struct file_stack *input_file_stack;
163 /* Incremented on each change to input_file_stack. */
164 int input_file_stack_tick;
166 /* Name to use as base of names for dump output files. */
168 const char *dump_base_name;
170 /* Name to use as a base for auxiliary output files. */
172 const char *aux_base_name;
174 /* Bit flags that specify the machine subtype we are compiling for.
175 Bits are tested using macros TARGET_... defined in the tm.h file
176 and set by `-m...' switches. Must be defined in rtlanal.c. */
178 extern int target_flags;
180 /* A mask of target_flags that includes bit X if X was set or cleared
181 on the command line. */
183 int target_flags_explicit;
185 /* Debug hooks - dependent upon command line options. */
187 const struct gcc_debug_hooks *debug_hooks;
189 /* Debug hooks - target default. */
191 static const struct gcc_debug_hooks *default_debug_hooks;
193 /* Other flags saying which kinds of debugging dump have been requested. */
195 int rtl_dump_and_exit;
196 int flag_print_asm_name;
197 enum graph_dump_types graph_dump_format;
199 /* Name for output file of assembly code, specified with -o. */
201 const char *asm_file_name;
203 /* Nonzero means do optimizations. -O.
204 Particular numeric values stand for particular amounts of optimization;
205 thus, -O2 stores 2 here. However, the optimizations beyond the basic
206 ones are not controlled directly by this variable. Instead, they are
207 controlled by individual `flag_...' variables that are defaulted
208 based on this variable. */
210 int optimize = 0;
212 /* Nonzero means optimize for size. -Os.
213 The only valid values are zero and nonzero. When optimize_size is
214 nonzero, optimize defaults to 2, but certain individual code
215 bloating optimizations are disabled. */
217 int optimize_size = 0;
219 /* The FUNCTION_DECL for the function currently being compiled,
220 or 0 if between functions. */
221 tree current_function_decl;
223 /* Set to the FUNC_BEGIN label of the current function, or NULL
224 if none. */
225 const char * current_function_func_begin_label;
227 /* Temporarily suppress certain warnings.
228 This is set while reading code from a system header file. */
230 int in_system_header = 0;
232 /* Nonzero means to collect statistics which might be expensive
233 and to print them when we are done. */
234 int flag_detailed_statistics = 0;
236 /* A random sequence of characters, unless overridden by user. */
237 const char *flag_random_seed;
239 /* A local time stamp derived from the time of compilation. It will be
240 zero if the system cannot provide a time. It will be -1u, if the
241 user has specified a particular random seed. */
242 unsigned local_tick;
244 /* -f flags. */
246 /* Nonzero means `char' should be signed. */
248 int flag_signed_char;
250 /* Nonzero means give an enum type only as many bytes as it needs. A value
251 of 2 means it has not yet been initialized. */
253 int flag_short_enums;
255 /* Nonzero if structures and unions should be returned in memory.
257 This should only be defined if compatibility with another compiler or
258 with an ABI is needed, because it results in slower code. */
260 #ifndef DEFAULT_PCC_STRUCT_RETURN
261 #define DEFAULT_PCC_STRUCT_RETURN 1
262 #endif
264 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
266 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
268 /* 0 means straightforward implementation of complex divide acceptable.
269 1 means wide ranges of inputs must work for complex divide.
270 2 means C99-like requirements for complex multiply and divide. */
272 int flag_complex_method = 1;
274 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
275 not just because the tree inliner turned us off. */
277 int flag_really_no_inline = 2;
279 /* Nonzero means we should be saving declaration info into a .X file. */
281 int flag_gen_aux_info = 0;
283 /* Specified name of aux-info file. */
285 const char *aux_info_file_name;
287 /* Nonzero if we are compiling code for a shared library, zero for
288 executable. */
290 int flag_shlib;
292 /* Generate code for GNU or NeXT Objective-C runtime environment. */
294 #ifdef NEXT_OBJC_RUNTIME
295 int flag_next_runtime = 1;
296 #else
297 int flag_next_runtime = 0;
298 #endif
300 /* Set to the default thread-local storage (tls) model to use. */
302 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
304 /* Nonzero means change certain warnings into errors.
305 Usually these are warnings about failure to conform to some standard. */
307 int flag_pedantic_errors = 0;
309 /* -dA causes debug commentary information to be produced in
310 the generated assembly code (to make it more readable). This option
311 is generally only of use to those who actually need to read the
312 generated assembly code (perhaps while debugging the compiler itself).
313 Currently, this switch is only used by dwarfout.c; however, it is intended
314 to be a catchall for printing debug information in the assembler file. */
316 int flag_debug_asm = 0;
318 /* -dP causes the rtl to be emitted as a comment in assembly. */
320 int flag_dump_rtl_in_asm = 0;
322 /* When non-NULL, indicates that whenever space is allocated on the
323 stack, the resulting stack pointer must not pass this
324 address---that is, for stacks that grow downward, the stack pointer
325 must always be greater than or equal to this address; for stacks
326 that grow upward, the stack pointer must be less than this address.
327 At present, the rtx may be either a REG or a SYMBOL_REF, although
328 the support provided depends on the backend. */
329 rtx stack_limit_rtx;
331 /* If one, renumber instruction UIDs to reduce the number of
332 unused UIDs if there are a lot of instructions. If greater than
333 one, unconditionally renumber instruction UIDs. */
334 int flag_renumber_insns = 1;
336 /* Nonzero if we should track variables. When
337 flag_var_tracking == AUTODETECT_VALUE it will be set according
338 to optimize, debug_info_level and debug_hooks in process_options (). */
339 int flag_var_tracking = AUTODETECT_VALUE;
341 /* True if the user has tagged the function with the 'section'
342 attribute. */
344 bool user_defined_section_attribute = false;
346 /* Values of the -falign-* flags: how much to align labels in code.
347 0 means `use default', 1 means `don't align'.
348 For each variable, there is an _log variant which is the power
349 of two not less than the variable, for .align output. */
351 int align_loops_log;
352 int align_loops_max_skip;
353 int align_jumps_log;
354 int align_jumps_max_skip;
355 int align_labels_log;
356 int align_labels_max_skip;
357 int align_functions_log;
359 /* Like align_functions_log above, but used by front-ends to force the
360 minimum function alignment. Zero means no alignment is forced. */
361 int force_align_functions_log;
363 typedef struct
365 const char *const string;
366 int *const variable;
367 const int on_value;
369 lang_independent_options;
371 /* Nonzero if subexpressions must be evaluated from left-to-right. */
372 int flag_evaluation_order = 0;
374 /* The user symbol prefix after having resolved same. */
375 const char *user_label_prefix;
377 static const param_info lang_independent_params[] = {
378 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
379 { OPTION, DEFAULT, MIN, MAX, HELP },
380 #include "params.def"
381 #undef DEFPARAM
382 { NULL, 0, 0, 0, NULL }
385 /* Output files for assembler code (real compiler output)
386 and debugging dumps. */
388 FILE *asm_out_file;
389 FILE *aux_info_file;
390 FILE *dump_file = NULL;
391 const char *dump_file_name;
393 /* The current working directory of a translation. It's generally the
394 directory from which compilation was initiated, but a preprocessed
395 file may specify the original directory in which it was
396 created. */
398 static const char *src_pwd;
400 /* Initialize src_pwd with the given string, and return true. If it
401 was already initialized, return false. As a special case, it may
402 be called with a NULL argument to test whether src_pwd has NOT been
403 initialized yet. */
405 bool
406 set_src_pwd (const char *pwd)
408 if (src_pwd)
410 if (strcmp (src_pwd, pwd) == 0)
411 return true;
412 else
413 return false;
416 src_pwd = xstrdup (pwd);
417 return true;
420 /* Return the directory from which the translation unit was initiated,
421 in case set_src_pwd() was not called before to assign it a
422 different value. */
424 const char *
425 get_src_pwd (void)
427 if (! src_pwd)
429 src_pwd = getpwd ();
430 if (!src_pwd)
431 src_pwd = ".";
434 return src_pwd;
437 /* Called when the start of a function definition is parsed,
438 this function prints on stderr the name of the function. */
439 void
440 announce_function (tree decl)
442 if (!quiet_flag)
444 if (rtl_dump_and_exit)
445 fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
446 else
447 fprintf (stderr, " %s", lang_hooks.decl_printable_name (decl, 2));
448 fflush (stderr);
449 pp_needs_newline (global_dc->printer) = true;
450 diagnostic_set_last_function (global_dc);
454 /* Set up a default flag_random_seed and local_tick, unless the user
455 already specified one. */
457 static void
458 randomize (void)
460 if (!flag_random_seed)
462 unsigned HOST_WIDE_INT value;
463 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
465 /* Get some more or less random data. */
466 #ifdef HAVE_GETTIMEOFDAY
468 struct timeval tv;
470 gettimeofday (&tv, NULL);
471 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
473 #else
475 time_t now = time (NULL);
477 if (now != (time_t)-1)
478 local_tick = (unsigned) now;
480 #endif
481 value = local_tick ^ getpid ();
483 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
484 flag_random_seed = random_seed;
486 else if (!local_tick)
487 local_tick = -1;
491 /* Decode the string P as an integral parameter.
492 If the string is indeed an integer return its numeric value else
493 issue an Invalid Option error for the option PNAME and return DEFVAL.
494 If PNAME is zero just return DEFVAL, do not call error. */
497 read_integral_parameter (const char *p, const char *pname, const int defval)
499 const char *endp = p;
501 while (*endp)
503 if (ISDIGIT (*endp))
504 endp++;
505 else
506 break;
509 if (*endp != 0)
511 if (pname != 0)
512 error ("invalid option argument %qs", pname);
513 return defval;
516 return atoi (p);
519 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
520 If X is 0, return -1. */
523 floor_log2 (unsigned HOST_WIDE_INT x)
525 int t = 0;
527 if (x == 0)
528 return -1;
530 #ifdef CLZ_HWI
531 t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
532 #else
533 if (HOST_BITS_PER_WIDE_INT > 64)
534 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
535 t += 64;
536 if (HOST_BITS_PER_WIDE_INT > 32)
537 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
538 t += 32;
539 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
540 t += 16;
541 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
542 t += 8;
543 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
544 t += 4;
545 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
546 t += 2;
547 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
548 t += 1;
549 #endif
551 return t;
554 /* Return the logarithm of X, base 2, considering X unsigned,
555 if X is a power of 2. Otherwise, returns -1. */
558 exact_log2 (unsigned HOST_WIDE_INT x)
560 if (x != (x & -x))
561 return -1;
562 #ifdef CTZ_HWI
563 return x ? CTZ_HWI (x) : -1;
564 #else
565 return floor_log2 (x);
566 #endif
569 /* Handler for fatal signals, such as SIGSEGV. These are transformed
570 into ICE messages, which is much more user friendly. In case the
571 error printer crashes, reset the signal to prevent infinite recursion. */
573 static void
574 crash_signal (int signo)
576 signal (signo, SIG_DFL);
578 /* If we crashed while processing an ASM statement, then be a little more
579 graceful. It's most likely the user's fault. */
580 if (this_is_asm_operands)
582 output_operand_lossage ("unrecoverable error");
583 exit (FATAL_EXIT_CODE);
586 internal_error ("%s", strsignal (signo));
589 /* Arrange to dump core on error. (The regular error message is still
590 printed first, except in the case of abort().) */
592 static void
593 setup_core_dumping (void)
595 #ifdef SIGABRT
596 signal (SIGABRT, SIG_DFL);
597 #endif
598 #if defined(HAVE_SETRLIMIT)
600 struct rlimit rlim;
601 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
602 fatal_error ("getting core file size maximum limit: %m");
603 rlim.rlim_cur = rlim.rlim_max;
604 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
605 fatal_error ("setting core file size limit to maximum: %m");
607 #endif
608 diagnostic_abort_on_error (global_dc);
612 /* Strip off a legitimate source ending from the input string NAME of
613 length LEN. Rather than having to know the names used by all of
614 our front ends, we strip off an ending of a period followed by
615 up to five characters. (Java uses ".class".) */
617 void
618 strip_off_ending (char *name, int len)
620 int i;
621 for (i = 2; i < 6 && len > i; i++)
623 if (name[len - i] == '.')
625 name[len - i] = '\0';
626 break;
631 /* Output a quoted string. */
633 void
634 output_quoted_string (FILE *asm_file, const char *string)
636 #ifdef OUTPUT_QUOTED_STRING
637 OUTPUT_QUOTED_STRING (asm_file, string);
638 #else
639 char c;
641 putc ('\"', asm_file);
642 while ((c = *string++) != 0)
644 if (ISPRINT (c))
646 if (c == '\"' || c == '\\')
647 putc ('\\', asm_file);
648 putc (c, asm_file);
650 else
651 fprintf (asm_file, "\\%03o", (unsigned char) c);
653 putc ('\"', asm_file);
654 #endif
657 /* Output a file name in the form wanted by System V. */
659 void
660 output_file_directive (FILE *asm_file, const char *input_name)
662 int len;
663 const char *na;
665 if (input_name == NULL)
666 input_name = "<stdin>";
668 len = strlen (input_name);
669 na = input_name + len;
671 /* NA gets INPUT_NAME sans directory names. */
672 while (na > input_name)
674 if (IS_DIR_SEPARATOR (na[-1]))
675 break;
676 na--;
679 #ifdef ASM_OUTPUT_SOURCE_FILENAME
680 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
681 #else
682 fprintf (asm_file, "\t.file\t");
683 output_quoted_string (asm_file, na);
684 fputc ('\n', asm_file);
685 #endif
688 /* Do any final processing required for the declarations in VEC, of
689 which there are LEN. We write out inline functions and variables
690 that have been deferred until this point, but which are required.
691 Returns nonzero if anything was put out. */
694 wrapup_global_declarations (tree *vec, int len)
696 tree decl;
697 int i;
698 int reconsider;
699 int output_something = 0;
701 for (i = 0; i < len; i++)
703 decl = vec[i];
705 /* We're not deferring this any longer. Assignment is
706 conditional to avoid needlessly dirtying PCH pages. */
707 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
708 && DECL_DEFER_OUTPUT (decl) != 0)
709 DECL_DEFER_OUTPUT (decl) = 0;
711 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
712 lang_hooks.finish_incomplete_decl (decl);
715 /* Now emit any global variables or functions that we have been
716 putting off. We need to loop in case one of the things emitted
717 here references another one which comes earlier in the list. */
720 reconsider = 0;
721 for (i = 0; i < len; i++)
723 decl = vec[i];
725 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
726 continue;
728 /* Don't write out static consts, unless we still need them.
730 We also keep static consts if not optimizing (for debugging),
731 unless the user specified -fno-keep-static-consts.
732 ??? They might be better written into the debug information.
733 This is possible when using DWARF.
735 A language processor that wants static constants to be always
736 written out (even if it is not used) is responsible for
737 calling rest_of_decl_compilation itself. E.g. the C front-end
738 calls rest_of_decl_compilation from finish_decl.
739 One motivation for this is that is conventional in some
740 environments to write things like:
741 static const char rcsid[] = "... version string ...";
742 intending to force the string to be in the executable.
744 A language processor that would prefer to have unneeded
745 static constants "optimized away" would just defer writing
746 them out until here. E.g. C++ does this, because static
747 constants are often defined in header files.
749 ??? A tempting alternative (for both C and C++) would be
750 to force a constant to be written if and only if it is
751 defined in a main file, as opposed to an include file. */
753 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
755 struct cgraph_varpool_node *node;
756 bool needed = 1;
757 node = cgraph_varpool_node (decl);
759 if (node->finalized)
760 needed = 0;
761 else if (node->alias)
762 needed = 0;
763 else if (!cgraph_global_info_ready
764 && (TREE_USED (decl)
765 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
766 /* needed */;
767 else if (node->needed)
768 /* needed */;
769 else if (DECL_COMDAT (decl))
770 needed = 0;
771 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
772 && (optimize || !flag_keep_static_consts
773 || DECL_ARTIFICIAL (decl)))
774 needed = 0;
776 if (needed)
778 reconsider = 1;
779 rest_of_decl_compilation (decl, 1, 1);
784 if (reconsider)
785 output_something = 1;
787 while (reconsider);
789 return output_something;
792 /* Issue appropriate warnings for the global declarations in VEC (of
793 which there are LEN). Output debugging information for them. */
795 void
796 check_global_declarations (tree *vec, int len)
798 tree decl;
799 int i;
801 for (i = 0; i < len; i++)
803 decl = vec[i];
805 /* Warn about any function
806 declared static but not defined.
807 We don't warn about variables,
808 because many programs have static variables
809 that exist only to get some text into the object file. */
810 if (TREE_CODE (decl) == FUNCTION_DECL
811 && DECL_INITIAL (decl) == 0
812 && DECL_EXTERNAL (decl)
813 && ! DECL_ARTIFICIAL (decl)
814 && ! TREE_NO_WARNING (decl)
815 && ! TREE_PUBLIC (decl)
816 && (warn_unused_function
817 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
819 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
820 pedwarn ("%q+F used but never defined", decl);
821 else
822 warning (0, "%q+F declared %<static%> but never defined",
823 decl);
824 /* This symbol is effectively an "extern" declaration now. */
825 TREE_PUBLIC (decl) = 1;
826 assemble_external (decl);
829 /* Warn about static fns or vars defined but not used. */
830 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
831 /* We don't warn about "static const" variables because the
832 "rcs_id" idiom uses that construction. */
833 || (warn_unused_variable
834 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
835 && ! DECL_IN_SYSTEM_HEADER (decl)
836 && ! TREE_USED (decl)
837 /* The TREE_USED bit for file-scope decls is kept in the identifier,
838 to handle multiple external decls in different scopes. */
839 && ! TREE_USED (DECL_NAME (decl))
840 && ! DECL_EXTERNAL (decl)
841 && ! TREE_PUBLIC (decl)
842 /* A volatile variable might be used in some non-obvious way. */
843 && ! TREE_THIS_VOLATILE (decl)
844 /* Global register variables must be declared to reserve them. */
845 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
846 /* Otherwise, ask the language. */
847 && lang_hooks.decls.warn_unused_global (decl))
848 warning (0, "%q+D defined but not used", decl);
850 /* Avoid confusing the debug information machinery when there are
851 errors. */
852 if (errorcount == 0 && sorrycount == 0)
854 timevar_push (TV_SYMOUT);
855 (*debug_hooks->global_decl) (decl);
856 timevar_pop (TV_SYMOUT);
861 /* Warn about a use of an identifier which was marked deprecated. */
862 void
863 warn_deprecated_use (tree node)
865 if (node == 0 || !warn_deprecated_decl)
866 return;
868 if (DECL_P (node))
870 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
871 warning (OPT_Wdeprecated_declarations,
872 "%qs is deprecated (declared at %s:%d)",
873 IDENTIFIER_POINTER (DECL_NAME (node)),
874 xloc.file, xloc.line);
876 else if (TYPE_P (node))
878 const char *what = NULL;
879 tree decl = TYPE_STUB_DECL (node);
881 if (TYPE_NAME (node))
883 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
884 what = IDENTIFIER_POINTER (TYPE_NAME (node));
885 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
886 && DECL_NAME (TYPE_NAME (node)))
887 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
890 if (decl)
892 expanded_location xloc
893 = expand_location (DECL_SOURCE_LOCATION (decl));
894 if (what)
895 warning (OPT_Wdeprecated_declarations,
896 "%qs is deprecated (declared at %s:%d)", what,
897 xloc.file, xloc.line);
898 else
899 warning (OPT_Wdeprecated_declarations,
900 "type is deprecated (declared at %s:%d)",
901 xloc.file, xloc.line);
903 else
905 if (what)
906 warning (OPT_Wdeprecated_declarations, "%qs is deprecated", what);
907 else
908 warning (OPT_Wdeprecated_declarations, "type is deprecated");
913 /* Save the current INPUT_LOCATION on the top entry in the
914 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
915 INPUT_LOCATION accordingly. */
917 void
918 #ifdef USE_MAPPED_LOCATION
919 push_srcloc (location_t fline)
920 #else
921 push_srcloc (const char *file, int line)
922 #endif
924 struct file_stack *fs;
926 fs = xmalloc (sizeof (struct file_stack));
927 fs->location = input_location;
928 fs->next = input_file_stack;
929 #ifdef USE_MAPPED_LOCATION
930 input_location = fline;
931 #else
932 input_filename = file;
933 input_line = line;
934 #endif
935 input_file_stack = fs;
936 input_file_stack_tick++;
939 /* Pop the top entry off the stack of presently open source files.
940 Restore the INPUT_LOCATION from the new topmost entry on the
941 stack. */
943 void
944 pop_srcloc (void)
946 struct file_stack *fs;
948 fs = input_file_stack;
949 input_location = fs->location;
950 input_file_stack = fs->next;
951 free (fs);
952 input_file_stack_tick++;
955 /* Compile an entire translation unit. Write a file of assembly
956 output and various debugging dumps. */
958 static void
959 compile_file (void)
961 /* Initialize yet another pass. */
963 init_cgraph ();
964 init_final (main_input_filename);
965 coverage_init (aux_base_name);
967 timevar_push (TV_PARSE);
969 /* Call the parser, which parses the entire file (calling
970 rest_of_compilation for each function). */
971 lang_hooks.parse_file (set_yydebug);
973 /* In case there were missing block closers,
974 get us back to the global binding level. */
975 lang_hooks.clear_binding_stack ();
977 /* Compilation is now finished except for writing
978 what's left of the symbol table output. */
979 timevar_pop (TV_PARSE);
981 if (flag_syntax_only)
982 return;
984 lang_hooks.decls.final_write_globals ();
985 cgraph_varpool_assemble_pending_decls ();
986 finish_aliases_2 ();
988 /* This must occur after the loop to output deferred functions.
989 Else the coverage initializer would not be emitted if all the
990 functions in this compilation unit were deferred. */
991 coverage_finish ();
993 /* Likewise for mudflap static object registrations. */
994 if (flag_mudflap)
995 mudflap_finish_file ();
997 /* Write out any pending weak symbol declarations. */
999 weak_finish ();
1001 /* Do dbx symbols. */
1002 timevar_push (TV_SYMOUT);
1004 #ifdef DWARF2_UNWIND_INFO
1005 if (dwarf2out_do_frame ())
1006 dwarf2out_frame_finish ();
1007 #endif
1009 (*debug_hooks->finish) (main_input_filename);
1010 timevar_pop (TV_SYMOUT);
1012 /* Output some stuff at end of file if nec. */
1014 dw2_output_indirect_constants ();
1016 /* Flush any pending external directives. cgraph did this for
1017 assemble_external calls from the front end, but the RTL
1018 expander can also generate them. */
1019 process_pending_assemble_externals ();
1021 /* Attach a special .ident directive to the end of the file to identify
1022 the version of GCC which compiled this code. The format of the .ident
1023 string is patterned after the ones produced by native SVR4 compilers. */
1024 #ifdef IDENT_ASM_OP
1025 if (!flag_no_ident)
1026 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1027 IDENT_ASM_OP, version_string);
1028 #endif
1030 /* This must be at the end. Some target ports emit end of file directives
1031 into the assembly file here, and hence we can not output anything to the
1032 assembly file after this point. */
1033 targetm.asm_out.file_end ();
1036 /* Parse a -d... command line switch. */
1038 void
1039 decode_d_option (const char *arg)
1041 int c;
1043 while (*arg)
1044 switch (c = *arg++)
1046 case 'A':
1047 flag_debug_asm = 1;
1048 break;
1049 case 'p':
1050 flag_print_asm_name = 1;
1051 break;
1052 case 'P':
1053 flag_dump_rtl_in_asm = 1;
1054 flag_print_asm_name = 1;
1055 break;
1056 case 'v':
1057 graph_dump_format = vcg;
1058 break;
1059 case 'x':
1060 rtl_dump_and_exit = 1;
1061 break;
1062 case 'y':
1063 set_yydebug = 1;
1064 break;
1065 case 'D': /* These are handled by the preprocessor. */
1066 case 'I':
1067 break;
1068 case 'H':
1069 setup_core_dumping();
1070 break;
1072 case 'a':
1073 default:
1074 if (!enable_rtl_dump_file (c))
1075 warning (0, "unrecognized gcc debugging option: %c", c);
1076 break;
1080 /* Indexed by enum debug_info_type. */
1081 const char *const debug_type_names[] =
1083 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1086 /* Print version information to FILE.
1087 Each line begins with INDENT (for the case where FILE is the
1088 assembler output file). */
1090 void
1091 print_version (FILE *file, const char *indent)
1093 static const char fmt1[] =
1094 #ifdef __GNUC__
1095 N_("%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n")
1096 #else
1097 N_("%s%s%s version %s (%s) compiled by CC.\n")
1098 #endif
1100 static const char fmt2[] =
1101 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1102 #ifndef __VERSION__
1103 #define __VERSION__ "[?]"
1104 #endif
1105 fprintf (file,
1106 file == stderr ? _(fmt1) : fmt1,
1107 indent, *indent != 0 ? " " : "",
1108 lang_hooks.name, version_string, TARGET_NAME,
1109 indent, __VERSION__);
1110 fprintf (file,
1111 file == stderr ? _(fmt2) : fmt2,
1112 indent, *indent != 0 ? " " : "",
1113 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1116 /* Print an option value and return the adjusted position in the line.
1117 ??? We don't handle error returns from fprintf (disk full); presumably
1118 other code will catch a disk full though. */
1120 static int
1121 print_single_switch (FILE *file, int pos, int max,
1122 const char *indent, const char *sep, const char *term,
1123 const char *type, const char *name)
1125 /* The ultrix fprintf returns 0 on success, so compute the result we want
1126 here since we need it for the following test. */
1127 int len = strlen (sep) + strlen (type) + strlen (name);
1129 if (pos != 0
1130 && pos + len > max)
1132 fprintf (file, "%s", term);
1133 pos = 0;
1135 if (pos == 0)
1137 fprintf (file, "%s", indent);
1138 pos = strlen (indent);
1140 fprintf (file, "%s%s%s", sep, type, name);
1141 pos += len;
1142 return pos;
1145 /* Print active target switches to FILE.
1146 POS is the current cursor position and MAX is the size of a "line".
1147 Each line begins with INDENT and ends with TERM.
1148 Each switch is separated from the next by SEP. */
1150 static void
1151 print_switch_values (FILE *file, int pos, int max,
1152 const char *indent, const char *sep, const char *term)
1154 size_t j;
1155 const char **p;
1157 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1158 that it can be printed below. This helps reproducibility. */
1159 randomize ();
1161 /* Print the options as passed. */
1162 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1163 _("options passed: "), "");
1165 for (p = &save_argv[1]; *p != NULL; p++)
1166 if (**p == '-')
1168 /* Ignore these. */
1169 if (strcmp (*p, "-o") == 0)
1171 if (p[1] != NULL)
1172 p++;
1173 continue;
1175 if (strcmp (*p, "-quiet") == 0)
1176 continue;
1177 if (strcmp (*p, "-version") == 0)
1178 continue;
1179 if ((*p)[1] == 'd')
1180 continue;
1182 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1184 if (pos > 0)
1185 fprintf (file, "%s", term);
1187 /* Print the -f and -m options that have been enabled.
1188 We don't handle language specific options but printing argv
1189 should suffice. */
1191 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1192 _("options enabled: "), "");
1194 for (j = 0; j < cl_options_count; j++)
1195 if ((cl_options[j].flags & CL_REPORT)
1196 && option_enabled (j) > 0)
1197 pos = print_single_switch (file, pos, max, indent, sep, term,
1198 "", cl_options[j].opt_text);
1200 fprintf (file, "%s", term);
1203 /* Open assembly code output file. Do this even if -fsyntax-only is
1204 on, because then the driver will have provided the name of a
1205 temporary file or bit bucket for us. NAME is the file specified on
1206 the command line, possibly NULL. */
1207 static void
1208 init_asm_output (const char *name)
1210 if (name == NULL && asm_file_name == 0)
1211 asm_out_file = stdout;
1212 else
1214 if (asm_file_name == 0)
1216 int len = strlen (dump_base_name);
1217 char *dumpname = xmalloc (len + 6);
1218 memcpy (dumpname, dump_base_name, len + 1);
1219 strip_off_ending (dumpname, len);
1220 strcat (dumpname, ".s");
1221 asm_file_name = dumpname;
1223 if (!strcmp (asm_file_name, "-"))
1224 asm_out_file = stdout;
1225 else
1226 asm_out_file = fopen (asm_file_name, "w+b");
1227 if (asm_out_file == 0)
1228 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1231 if (!flag_syntax_only)
1233 targetm.asm_out.file_start ();
1235 #ifdef ASM_COMMENT_START
1236 if (flag_verbose_asm)
1238 /* Print the list of options in effect. */
1239 print_version (asm_out_file, ASM_COMMENT_START);
1240 print_switch_values (asm_out_file, 0, MAX_LINE,
1241 ASM_COMMENT_START, " ", "\n");
1242 /* Add a blank line here so it appears in assembler output but not
1243 screen output. */
1244 fprintf (asm_out_file, "\n");
1246 #endif
1250 /* Return true if the state of option OPTION should be stored in PCH files
1251 and checked by default_pch_valid_p. Store the option's current state
1252 in STATE if so. */
1254 static inline bool
1255 option_affects_pch_p (int option, struct cl_option_state *state)
1257 if ((cl_options[option].flags & CL_TARGET) == 0)
1258 return false;
1259 if (cl_options[option].flag_var == &target_flags)
1260 if (targetm.check_pch_target_flags)
1261 return false;
1262 return get_option_state (option, state);
1265 /* Default version of get_pch_validity.
1266 By default, every flag difference is fatal; that will be mostly right for
1267 most targets, but completely right for very few. */
1269 void *
1270 default_get_pch_validity (size_t *len)
1272 struct cl_option_state state;
1273 size_t i;
1274 char *result, *r;
1276 *len = 2;
1277 if (targetm.check_pch_target_flags)
1278 *len += sizeof (target_flags);
1279 for (i = 0; i < cl_options_count; i++)
1280 if (option_affects_pch_p (i, &state))
1281 *len += state.size;
1283 result = r = xmalloc (*len);
1284 r[0] = flag_pic;
1285 r[1] = flag_pie;
1286 r += 2;
1287 if (targetm.check_pch_target_flags)
1289 memcpy (r, &target_flags, sizeof (target_flags));
1290 r += sizeof (target_flags);
1293 for (i = 0; i < cl_options_count; i++)
1294 if (option_affects_pch_p (i, &state))
1296 memcpy (r, state.data, state.size);
1297 r += state.size;
1300 return result;
1303 /* Return a message which says that a PCH file was created with a different
1304 setting of OPTION. */
1306 static const char *
1307 pch_option_mismatch (const char *option)
1309 char *r;
1311 asprintf (&r, _("created and used with differing settings of '%s'"), option);
1312 if (r == NULL)
1313 return _("out of memory");
1314 return r;
1317 /* Default version of pch_valid_p. */
1319 const char *
1320 default_pch_valid_p (const void *data_p, size_t len)
1322 struct cl_option_state state;
1323 const char *data = (const char *)data_p;
1324 size_t i;
1326 /* -fpic and -fpie also usually make a PCH invalid. */
1327 if (data[0] != flag_pic)
1328 return _("created and used with different settings of -fpic");
1329 if (data[1] != flag_pie)
1330 return _("created and used with different settings of -fpie");
1331 data += 2;
1333 /* Check target_flags. */
1334 if (targetm.check_pch_target_flags)
1336 int tf;
1337 const char *r;
1339 memcpy (&tf, data, sizeof (target_flags));
1340 data += sizeof (target_flags);
1341 len -= sizeof (target_flags);
1342 r = targetm.check_pch_target_flags (tf);
1343 if (r != NULL)
1344 return r;
1347 for (i = 0; i < cl_options_count; i++)
1348 if (option_affects_pch_p (i, &state))
1350 if (memcmp (data, state.data, state.size) != 0)
1351 return pch_option_mismatch (cl_options[i].opt_text);
1352 data += state.size;
1353 len -= state.size;
1356 return NULL;
1359 /* Default tree printer. Handles declarations only. */
1360 static bool
1361 default_tree_printer (pretty_printer * pp, text_info *text, const char *spec,
1362 int precision, bool wide, bool set_locus, bool hash)
1364 tree t;
1366 /* FUTURE: %+x should set the locus. */
1367 if (precision != 0 || wide || hash)
1368 return false;
1370 switch (*spec)
1372 case 'D':
1373 t = va_arg (*text->args_ptr, tree);
1374 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1375 t = DECL_DEBUG_EXPR (t);
1376 break;
1378 case 'F':
1379 case 'T':
1380 t = va_arg (*text->args_ptr, tree);
1381 break;
1383 default:
1384 return false;
1387 if (set_locus && text->locus)
1388 *text->locus = DECL_SOURCE_LOCATION (t);
1390 if (DECL_P (t))
1392 const char *n = DECL_NAME (t)
1393 ? lang_hooks.decl_printable_name (t, 2)
1394 : "<anonymous>";
1395 pp_string (pp, n);
1397 else
1398 dump_generic_node (pp, t, 0, 0, 0);
1400 return true;
1403 /* Initialization of the front end environment, before command line
1404 options are parsed. Signal handlers, internationalization etc.
1405 ARGV0 is main's argv[0]. */
1406 static void
1407 general_init (const char *argv0)
1409 const char *p;
1411 p = argv0 + strlen (argv0);
1412 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1413 --p;
1414 progname = p;
1416 xmalloc_set_program_name (progname);
1418 hex_init ();
1420 /* Unlock the stdio streams. */
1421 unlock_std_streams ();
1423 gcc_init_libintl ();
1425 /* Initialize the diagnostics reporting machinery, so option parsing
1426 can give warnings and errors. */
1427 diagnostic_initialize (global_dc);
1428 /* Set a default printer. Language specific initializations will
1429 override it later. */
1430 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1432 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1433 #ifdef SIGSEGV
1434 signal (SIGSEGV, crash_signal);
1435 #endif
1436 #ifdef SIGILL
1437 signal (SIGILL, crash_signal);
1438 #endif
1439 #ifdef SIGBUS
1440 signal (SIGBUS, crash_signal);
1441 #endif
1442 #ifdef SIGABRT
1443 signal (SIGABRT, crash_signal);
1444 #endif
1445 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1446 signal (SIGIOT, crash_signal);
1447 #endif
1448 #ifdef SIGFPE
1449 signal (SIGFPE, crash_signal);
1450 #endif
1452 /* Other host-specific signal setup. */
1453 (*host_hooks.extra_signals)();
1455 /* Initialize the garbage-collector, string pools and tree type hash
1456 table. */
1457 init_ggc ();
1458 init_stringpool ();
1459 linemap_init (&line_table);
1460 init_ttree ();
1462 /* Initialize register usage now so switches may override. */
1463 init_reg_sets ();
1465 /* Register the language-independent parameters. */
1466 add_params (lang_independent_params, LAST_PARAM);
1468 /* This must be done after add_params but before argument processing. */
1469 init_ggc_heuristics();
1470 init_optimization_passes ();
1473 /* Process the options that have been parsed. */
1474 static void
1475 process_options (void)
1477 /* Allow the front end to perform consistency checks and do further
1478 initialization based on the command line options. This hook also
1479 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1480 so we can correctly initialize debug output. */
1481 no_backend = lang_hooks.post_options (&main_input_filename);
1482 #ifndef USE_MAPPED_LOCATION
1483 input_filename = main_input_filename;
1484 #endif
1486 #ifdef OVERRIDE_OPTIONS
1487 /* Some machines may reject certain combinations of options. */
1488 OVERRIDE_OPTIONS;
1489 #endif
1491 if (flag_short_enums == 2)
1492 flag_short_enums = targetm.default_short_enums ();
1494 /* Set aux_base_name if not already set. */
1495 if (aux_base_name)
1497 else if (main_input_filename)
1499 char *name = xstrdup (lbasename (main_input_filename));
1501 strip_off_ending (name, strlen (name));
1502 aux_base_name = name;
1504 else
1505 aux_base_name = "gccaux";
1507 /* Set up the align_*_log variables, defaulting them to 1 if they
1508 were still unset. */
1509 if (align_loops <= 0) align_loops = 1;
1510 if (align_loops_max_skip > align_loops || !align_loops)
1511 align_loops_max_skip = align_loops - 1;
1512 align_loops_log = floor_log2 (align_loops * 2 - 1);
1513 if (align_jumps <= 0) align_jumps = 1;
1514 if (align_jumps_max_skip > align_jumps || !align_jumps)
1515 align_jumps_max_skip = align_jumps - 1;
1516 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1517 if (align_labels <= 0) align_labels = 1;
1518 align_labels_log = floor_log2 (align_labels * 2 - 1);
1519 if (align_labels_max_skip > align_labels || !align_labels)
1520 align_labels_max_skip = align_labels - 1;
1521 if (align_functions <= 0) align_functions = 1;
1522 align_functions_log = floor_log2 (align_functions * 2 - 1);
1524 /* Unrolling all loops implies that standard loop unrolling must also
1525 be done. */
1526 if (flag_unroll_all_loops)
1527 flag_unroll_loops = 1;
1529 /* The loop unrolling code assumes that cse will be run after loop.
1530 web and rename-registers also help when run after loop unrolling. */
1532 if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1533 flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1534 if (flag_web == AUTODETECT_VALUE)
1535 flag_web = flag_unroll_loops || flag_peel_loops;
1536 if (flag_rename_registers == AUTODETECT_VALUE)
1537 flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1539 /* If explicitly asked to run new loop optimizer, switch off the old
1540 one. */
1541 if (flag_loop_optimize2)
1542 flag_loop_optimize = 0;
1544 /* Enable new loop optimizer pass if any of its optimizations is called. */
1545 if (flag_move_loop_invariants
1546 || flag_unswitch_loops
1547 || flag_peel_loops
1548 || flag_unroll_loops
1549 || flag_branch_on_count_reg)
1550 flag_loop_optimize2 = 1;
1552 if (flag_non_call_exceptions)
1553 flag_asynchronous_unwind_tables = 1;
1554 if (flag_asynchronous_unwind_tables)
1555 flag_unwind_tables = 1;
1557 /* Disable unit-at-a-time mode for frontends not supporting callgraph
1558 interface. */
1559 if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
1560 flag_unit_at_a_time = 0;
1562 if (flag_value_profile_transformations)
1563 flag_profile_values = 1;
1565 /* Warn about options that are not supported on this machine. */
1566 #ifndef INSN_SCHEDULING
1567 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1568 warning (0, "instruction scheduling not supported on this target machine");
1569 #endif
1570 #ifndef DELAY_SLOTS
1571 if (flag_delayed_branch)
1572 warning (0, "this target machine does not have delayed branches");
1573 #endif
1575 user_label_prefix = USER_LABEL_PREFIX;
1576 if (flag_leading_underscore != -1)
1578 /* If the default prefix is more complicated than "" or "_",
1579 issue a warning and ignore this option. */
1580 if (user_label_prefix[0] == 0 ||
1581 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1583 user_label_prefix = flag_leading_underscore ? "_" : "";
1585 else
1586 warning (0, "-f%sleading-underscore not supported on this target machine",
1587 flag_leading_underscore ? "" : "no-");
1590 /* If we are in verbose mode, write out the version and maybe all the
1591 option flags in use. */
1592 if (version_flag)
1594 print_version (stderr, "");
1595 if (! quiet_flag)
1596 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
1599 if (flag_syntax_only)
1601 write_symbols = NO_DEBUG;
1602 profile_flag = 0;
1605 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1606 level is 0. */
1607 if (debug_info_level == DINFO_LEVEL_NONE)
1608 write_symbols = NO_DEBUG;
1610 /* Now we know write_symbols, set up the debug hooks based on it.
1611 By default we do nothing for debug output. */
1612 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1613 default_debug_hooks = &do_nothing_debug_hooks;
1614 #if defined(DBX_DEBUGGING_INFO)
1615 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1616 default_debug_hooks = &dbx_debug_hooks;
1617 #endif
1618 #if defined(XCOFF_DEBUGGING_INFO)
1619 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1620 default_debug_hooks = &xcoff_debug_hooks;
1621 #endif
1622 #ifdef SDB_DEBUGGING_INFO
1623 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1624 default_debug_hooks = &sdb_debug_hooks;
1625 #endif
1626 #ifdef DWARF2_DEBUGGING_INFO
1627 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1628 default_debug_hooks = &dwarf2_debug_hooks;
1629 #endif
1630 #ifdef VMS_DEBUGGING_INFO
1631 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1632 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1633 default_debug_hooks = &vmsdbg_debug_hooks;
1634 #endif
1636 debug_hooks = &do_nothing_debug_hooks;
1637 if (write_symbols == NO_DEBUG)
1639 #if defined(DBX_DEBUGGING_INFO)
1640 else if (write_symbols == DBX_DEBUG)
1641 debug_hooks = &dbx_debug_hooks;
1642 #endif
1643 #if defined(XCOFF_DEBUGGING_INFO)
1644 else if (write_symbols == XCOFF_DEBUG)
1645 debug_hooks = &xcoff_debug_hooks;
1646 #endif
1647 #ifdef SDB_DEBUGGING_INFO
1648 else if (write_symbols == SDB_DEBUG)
1649 debug_hooks = &sdb_debug_hooks;
1650 #endif
1651 #ifdef DWARF2_DEBUGGING_INFO
1652 else if (write_symbols == DWARF2_DEBUG)
1653 debug_hooks = &dwarf2_debug_hooks;
1654 #endif
1655 #ifdef VMS_DEBUGGING_INFO
1656 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1657 debug_hooks = &vmsdbg_debug_hooks;
1658 #endif
1659 else
1660 error ("target system does not support the \"%s\" debug format",
1661 debug_type_names[write_symbols]);
1663 /* Now we know which debug output will be used so we can set
1664 flag_var_tracking, flag_rename_registers if the user has
1665 not specified them. */
1666 if (debug_info_level < DINFO_LEVEL_NORMAL
1667 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1669 if (flag_var_tracking == 1)
1671 if (debug_info_level < DINFO_LEVEL_NORMAL)
1672 warning (0, "variable tracking requested, but useless unless "
1673 "producing debug info");
1674 else
1675 warning (0, "variable tracking requested, but not supported "
1676 "by this debug format");
1678 flag_var_tracking = 0;
1681 if (flag_rename_registers == AUTODETECT_VALUE)
1682 flag_rename_registers = default_debug_hooks->var_location
1683 != do_nothing_debug_hooks.var_location;
1685 if (flag_var_tracking == AUTODETECT_VALUE)
1686 flag_var_tracking = optimize >= 1;
1688 /* If auxiliary info generation is desired, open the output file.
1689 This goes in the same directory as the source file--unlike
1690 all the other output files. */
1691 if (flag_gen_aux_info)
1693 aux_info_file = fopen (aux_info_file_name, "w");
1694 if (aux_info_file == 0)
1695 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1698 if (! targetm.have_named_sections)
1700 if (flag_function_sections)
1702 warning (0, "-ffunction-sections not supported for this target");
1703 flag_function_sections = 0;
1705 if (flag_data_sections)
1707 warning (0, "-fdata-sections not supported for this target");
1708 flag_data_sections = 0;
1712 if (flag_function_sections && profile_flag)
1714 warning (0, "-ffunction-sections disabled; it makes profiling impossible");
1715 flag_function_sections = 0;
1718 #ifndef HAVE_prefetch
1719 if (flag_prefetch_loop_arrays)
1721 warning (0, "-fprefetch-loop-arrays not supported for this target");
1722 flag_prefetch_loop_arrays = 0;
1724 #else
1725 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
1727 warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
1728 flag_prefetch_loop_arrays = 0;
1730 #endif
1732 /* This combination of options isn't handled for i386 targets and doesn't
1733 make much sense anyway, so don't allow it. */
1734 if (flag_prefetch_loop_arrays && optimize_size)
1736 warning (0, "-fprefetch-loop-arrays is not supported with -Os");
1737 flag_prefetch_loop_arrays = 0;
1740 #ifndef OBJECT_FORMAT_ELF
1741 if (flag_function_sections && write_symbols != NO_DEBUG)
1742 warning (0, "-ffunction-sections may affect debugging on some targets");
1743 #endif
1745 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1746 if (flag_signaling_nans)
1747 flag_trapping_math = 1;
1749 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
1750 if (flag_cx_limited_range)
1751 flag_complex_method = 0;
1753 /* Targets must be able to place spill slots at lower addresses. If the
1754 target already uses a soft frame pointer, the transition is trivial. */
1755 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
1757 warning (0, "-fstack-protector not supported for this target");
1758 flag_stack_protect = 0;
1760 if (!flag_stack_protect)
1761 warn_stack_protect = 0;
1764 /* Initialize the compiler back end. */
1765 static void
1766 backend_init (void)
1768 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
1769 || debug_info_level == DINFO_LEVEL_VERBOSE
1770 #ifdef VMS_DEBUGGING_INFO
1771 /* Enable line number info for traceback. */
1772 || debug_info_level > DINFO_LEVEL_NONE
1773 #endif
1774 || flag_test_coverage);
1776 init_rtlanal ();
1777 init_regs ();
1778 init_fake_stack_mems ();
1779 init_alias_once ();
1780 init_loop ();
1781 init_reload ();
1782 init_varasm_once ();
1784 /* The following initialization functions need to generate rtl, so
1785 provide a dummy function context for them. */
1786 init_dummy_function_start ();
1787 init_expmed ();
1788 if (flag_caller_saves)
1789 init_caller_save ();
1790 expand_dummy_function_end ();
1793 /* Language-dependent initialization. Returns nonzero on success. */
1794 static int
1795 lang_dependent_init (const char *name)
1797 location_t save_loc = input_location;
1798 if (dump_base_name == 0)
1799 dump_base_name = name && name[0] ? name : "gccdump";
1801 /* Other front-end initialization. */
1802 #ifdef USE_MAPPED_LOCATION
1803 input_location = BUILTINS_LOCATION;
1804 #else
1805 input_filename = "<built-in>";
1806 input_line = 0;
1807 #endif
1808 if (lang_hooks.init () == 0)
1809 return 0;
1810 input_location = save_loc;
1812 init_asm_output (name);
1814 /* These create various _DECL nodes, so need to be called after the
1815 front end is initialized. */
1816 init_eh ();
1817 init_optabs ();
1819 /* The following initialization functions need to generate rtl, so
1820 provide a dummy function context for them. */
1821 init_dummy_function_start ();
1822 init_expr_once ();
1823 expand_dummy_function_end ();
1825 /* If dbx symbol table desired, initialize writing it and output the
1826 predefined types. */
1827 timevar_push (TV_SYMOUT);
1829 #ifdef DWARF2_UNWIND_INFO
1830 if (dwarf2out_do_frame ())
1831 dwarf2out_frame_init ();
1832 #endif
1834 /* Now we have the correct original filename, we can initialize
1835 debug output. */
1836 (*debug_hooks->init) (name);
1838 timevar_pop (TV_SYMOUT);
1840 return 1;
1843 /* Clean up: close opened files, etc. */
1845 static void
1846 finalize (void)
1848 /* Close the dump files. */
1849 if (flag_gen_aux_info)
1851 fclose (aux_info_file);
1852 if (errorcount)
1853 unlink (aux_info_file_name);
1856 /* Close non-debugging input and output files. Take special care to note
1857 whether fclose returns an error, since the pages might still be on the
1858 buffer chain while the file is open. */
1860 if (asm_out_file)
1862 if (ferror (asm_out_file) != 0)
1863 fatal_error ("error writing to %s: %m", asm_file_name);
1864 if (fclose (asm_out_file) != 0)
1865 fatal_error ("error closing %s: %m", asm_file_name);
1868 finish_optimization_passes ();
1870 if (mem_report)
1872 ggc_print_statistics ();
1873 stringpool_statistics ();
1874 dump_tree_statistics ();
1875 dump_rtx_statistics ();
1876 dump_varray_statistics ();
1877 dump_alloc_pool_statistics ();
1878 dump_ggc_loc_statistics ();
1881 /* Free up memory for the benefit of leak detectors. */
1882 free_reg_info ();
1884 /* Language-specific end of compilation actions. */
1885 lang_hooks.finish ();
1888 /* Initialize the compiler, and compile the input file. */
1889 static void
1890 do_compile (void)
1892 /* Initialize timing first. The C front ends read the main file in
1893 the post_options hook, and C++ does file timings. */
1894 if (time_report || !quiet_flag || flag_detailed_statistics)
1895 timevar_init ();
1896 timevar_start (TV_TOTAL);
1898 process_options ();
1900 /* Don't do any more if an error has already occurred. */
1901 if (!errorcount)
1903 /* This must be run always, because it is needed to compute the FP
1904 predefined macros, such as __LDBL_MAX__, for targets using non
1905 default FP formats. */
1906 init_adjust_machine_modes ();
1908 /* Set up the back-end if requested. */
1909 if (!no_backend)
1910 backend_init ();
1912 /* Language-dependent initialization. Returns true on success. */
1913 if (lang_dependent_init (main_input_filename))
1914 compile_file ();
1916 finalize ();
1919 /* Stop timing and print the times. */
1920 timevar_stop (TV_TOTAL);
1921 timevar_print (stderr);
1924 /* Entry point of cc1, cc1plus, jc1, f771, etc.
1925 Exit code is FATAL_EXIT_CODE if can't open files or if there were
1926 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
1928 It is not safe to call this function more than once. */
1931 toplev_main (unsigned int argc, const char **argv)
1933 save_argv = argv;
1935 /* Initialization of GCC's environment, and diagnostics. */
1936 general_init (argv[0]);
1938 /* Parse the options and do minimal processing; basically just
1939 enough to default flags appropriately. */
1940 decode_options (argc, argv);
1942 randomize ();
1944 /* Exit early if we can (e.g. -help). */
1945 if (!exit_after_options)
1946 do_compile ();
1948 if (errorcount || sorrycount)
1949 return (FATAL_EXIT_CODE);
1951 return (SUCCESS_EXIT_CODE);