* decl.c (grok_declarator): Remove a redundant semicolon.
[official-gcc.git] / gcc / toplev.c
blob90409b970506ccac1ac0a571b3f4f032dc7ffbc7
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 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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, 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 "loop.h"
65 #include "regs.h"
66 #include "timevar.h"
67 #include "diagnostic.h"
68 #include "params.h"
69 #include "reload.h"
70 #include "dwarf2asm.h"
71 #include "integrate.h"
72 #include "real.h"
73 #include "debug.h"
74 #include "target.h"
75 #include "langhooks.h"
76 #include "cfglayout.h"
77 #include "tree-alias-common.h"
78 #include "cfgloop.h"
79 #include "hosthooks.h"
80 #include "cgraph.h"
81 #include "opts.h"
82 #include "coverage.h"
83 #include "value-prof.h"
84 #include "alloc-pool.h"
86 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
87 #include "dwarf2out.h"
88 #endif
90 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
91 #include "dbxout.h"
92 #endif
94 #ifdef SDB_DEBUGGING_INFO
95 #include "sdbout.h"
96 #endif
98 #ifdef XCOFF_DEBUGGING_INFO
99 #include "xcoffout.h" /* Needed for external data
100 declarations for e.g. AIX 4.x. */
101 #endif
103 static void general_init (const char *);
104 static void do_compile (void);
105 static void process_options (void);
106 static void backend_init (void);
107 static int lang_dependent_init (const char *);
108 static void init_asm_output (const char *);
109 static void finalize (void);
111 static void crash_signal (int) ATTRIBUTE_NORETURN;
112 static void setup_core_dumping (void);
113 static void compile_file (void);
115 static int print_single_switch (FILE *, int, int, const char *,
116 const char *, const char *,
117 const char *, const char *);
118 static void print_switch_values (FILE *, int, int, const char *,
119 const char *, const char *);
121 /* Nonzero to dump debug info whilst parsing (-dy option). */
122 static int set_yydebug;
124 /* True if we don't need a backend (e.g. preprocessing only). */
125 static bool no_backend;
127 /* Length of line when printing switch values. */
128 #define MAX_LINE 75
130 /* Name of program invoked, sans directories. */
132 const char *progname;
134 /* Copy of argument vector to toplev_main. */
135 static const char **save_argv;
137 /* Name of top-level original source file (what was input to cpp).
138 This comes from the #-command at the beginning of the actual input.
139 If there isn't any there, then this is the cc1 input file name. */
141 const char *main_input_filename;
143 #ifndef USE_MAPPED_LOCATION
144 location_t unknown_location = { NULL, 0 };
145 #endif
147 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
148 to optimize and default_debug_hooks in process_options (). */
149 #define AUTODETECT_FLAG_VAR_TRACKING 2
151 /* Current position in real source file. */
153 location_t input_location;
155 struct line_maps line_table;
157 /* Nonzero if it is unsafe to create any new pseudo registers. */
158 int no_new_pseudos;
160 /* Stack of currently pending input files. */
162 struct file_stack *input_file_stack;
164 /* Incremented on each change to input_file_stack. */
165 int input_file_stack_tick;
167 /* Name to use as base of names for dump output files. */
169 const char *dump_base_name;
171 /* Name to use as a base for auxiliary output files. */
173 const char *aux_base_name;
175 /* Bit flags that specify the machine subtype we are compiling for.
176 Bits are tested using macros TARGET_... defined in the tm.h file
177 and set by `-m...' switches. Must be defined in rtlanal.c. */
179 extern int target_flags;
181 /* A mask of target_flags that includes bit X if X was set or cleared
182 on the command line. */
184 int target_flags_explicit;
186 /* Debug hooks - dependent upon command line options. */
188 const struct gcc_debug_hooks *debug_hooks;
190 /* Debug hooks - target default. */
192 static const struct gcc_debug_hooks *default_debug_hooks;
194 /* Other flags saying which kinds of debugging dump have been requested. */
196 int rtl_dump_and_exit;
197 int flag_print_asm_name;
198 enum graph_dump_types graph_dump_format;
200 /* Name for output file of assembly code, specified with -o. */
202 const char *asm_file_name;
204 /* Nonzero means do optimizations. -O.
205 Particular numeric values stand for particular amounts of optimization;
206 thus, -O2 stores 2 here. However, the optimizations beyond the basic
207 ones are not controlled directly by this variable. Instead, they are
208 controlled by individual `flag_...' variables that are defaulted
209 based on this variable. */
211 int optimize = 0;
213 /* Nonzero means optimize for size. -Os.
214 The only valid values are zero and nonzero. When optimize_size is
215 nonzero, optimize defaults to 2, but certain individual code
216 bloating optimizations are disabled. */
218 int optimize_size = 0;
220 /* The FUNCTION_DECL for the function currently being compiled,
221 or 0 if between functions. */
222 tree current_function_decl;
224 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
225 if none. */
226 tree current_function_func_begin_label;
228 /* Temporarily suppress certain warnings.
229 This is set while reading code from a system header file. */
231 int in_system_header = 0;
233 /* Nonzero means to collect statistics which might be expensive
234 and to print them when we are done. */
235 int flag_detailed_statistics = 0;
237 /* A random sequence of characters, unless overridden by user. */
238 const char *flag_random_seed;
240 /* A local time stamp derived from the time of compilation. It will be
241 zero if the system cannot provide a time. It will be -1u, if the
242 user has specified a particular random seed. */
243 unsigned local_tick;
245 /* -f flags. */
247 /* Nonzero means `char' should be signed. */
249 int flag_signed_char;
251 /* Nonzero means give an enum type only as many bytes as it needs. A value
252 of 2 means it has not yet been initialized. */
254 int flag_short_enums;
256 /* Nonzero if structures and unions should be returned in memory.
258 This should only be defined if compatibility with another compiler or
259 with an ABI is needed, because it results in slower code. */
261 #ifndef DEFAULT_PCC_STRUCT_RETURN
262 #define DEFAULT_PCC_STRUCT_RETURN 1
263 #endif
265 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
267 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
269 /* 0 means straightforward implementation of complex divide acceptable.
270 1 means wide ranges of inputs must work for complex divide.
271 2 means C99-like requirements for complex divide (not yet implemented). */
273 int flag_complex_divide_method = 0;
275 /* Nonzero means performs web construction pass. When flag_web ==
276 AUTODETECT_FLAG_VAR_TRACKING it will be set according to optimize
277 and default_debug_hooks in process_options (). */
279 int flag_web = AUTODETECT_FLAG_VAR_TRACKING;
281 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
282 not just because the tree inliner turned us off. */
284 int flag_really_no_inline = 2;
286 /* Nonzero means we should be saving declaration info into a .X file. */
288 int flag_gen_aux_info = 0;
290 /* Specified name of aux-info file. */
292 const char *aux_info_file_name;
294 /* Nonzero if we are compiling code for a shared library, zero for
295 executable. */
297 int flag_shlib;
299 /* Set to the default thread-local storage (tls) model to use. */
301 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
303 /* Nonzero means change certain warnings into errors.
304 Usually these are warnings about failure to conform to some standard. */
306 int flag_pedantic_errors = 0;
308 /* -dA causes debug commentary information to be produced in
309 the generated assembly code (to make it more readable). This option
310 is generally only of use to those who actually need to read the
311 generated assembly code (perhaps while debugging the compiler itself).
312 Currently, this switch is only used by dwarfout.c; however, it is intended
313 to be a catchall for printing debug information in the assembler file. */
315 int flag_debug_asm = 0;
317 /* -dP causes the rtl to be emitted as a comment in assembly. */
319 int flag_dump_rtl_in_asm = 0;
321 /* When non-NULL, indicates that whenever space is allocated on the
322 stack, the resulting stack pointer must not pass this
323 address---that is, for stacks that grow downward, the stack pointer
324 must always be greater than or equal to this address; for stacks
325 that grow upward, the stack pointer must be less than this address.
326 At present, the rtx may be either a REG or a SYMBOL_REF, although
327 the support provided depends on the backend. */
328 rtx stack_limit_rtx;
330 /* If one, renumber instruction UIDs to reduce the number of
331 unused UIDs if there are a lot of instructions. If greater than
332 one, unconditionally renumber instruction UIDs. */
333 int flag_renumber_insns = 1;
335 /* Enable points-to analysis on trees. */
336 enum pta_type flag_tree_points_to = PTA_NONE;
338 /* Nonzero if we should track variables. When
339 flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
340 to optimize, debug_info_level and debug_hooks in process_options (). */
341 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
343 /* True if the user has tagged the function with the 'section'
344 attribute. */
346 bool user_defined_section_attribute = false;
348 /* Values of the -falign-* flags: how much to align labels in code.
349 0 means `use default', 1 means `don't align'.
350 For each variable, there is an _log variant which is the power
351 of two not less than the variable, for .align output. */
353 int align_loops_log;
354 int align_loops_max_skip;
355 int align_jumps_log;
356 int align_jumps_max_skip;
357 int align_labels_log;
358 int align_labels_max_skip;
359 int align_functions_log;
361 /* Like align_functions_log above, but used by front-ends to force the
362 minimum function alignment. Zero means no alignment is forced. */
363 int force_align_functions_log;
365 typedef struct
367 const char *const string;
368 int *const variable;
369 const int on_value;
371 lang_independent_options;
373 /* Nonzero if subexpressions must be evaluated from left-to-right. */
374 int flag_evaluation_order = 0;
376 /* The user symbol prefix after having resolved same. */
377 const char *user_label_prefix;
379 static const param_info lang_independent_params[] = {
380 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
381 { OPTION, DEFAULT, HELP },
382 #include "params.def"
383 #undef DEFPARAM
384 { NULL, 0, NULL }
387 /* Here is a table, controlled by the tm.h file, listing each -m switch
388 and which bits in `target_switches' it should set or clear.
389 If VALUE is positive, it is bits to set.
390 If VALUE is negative, -VALUE is bits to clear.
391 (The sign bit is not used so there is no confusion.) */
393 static const struct
395 const char *const name;
396 const int value;
397 const char *const description;
399 target_switches[] = TARGET_SWITCHES;
401 /* This table is similar, but allows the switch to have a value. */
403 #ifdef TARGET_OPTIONS
404 static const struct
406 const char *const prefix;
407 const char **const variable;
408 const char *const description;
409 const char *const value;
411 target_options[] = TARGET_OPTIONS;
412 #endif
414 /* Nonzero means warn about function definitions that default the return type
415 or that use a null return and have a return-type other than void. */
417 int warn_return_type;
419 /* Output files for assembler code (real compiler output)
420 and debugging dumps. */
422 FILE *asm_out_file;
423 FILE *aux_info_file;
424 FILE *dump_file = NULL;
425 FILE *cgraph_dump_file = NULL;
427 /* The current working directory of a translation. It's generally the
428 directory from which compilation was initiated, but a preprocessed
429 file may specify the original directory in which it was
430 created. */
432 static const char *src_pwd;
434 /* Initialize src_pwd with the given string, and return true. If it
435 was already initialized, return false. As a special case, it may
436 be called with a NULL argument to test whether src_pwd has NOT been
437 initialized yet. */
439 bool
440 set_src_pwd (const char *pwd)
442 if (src_pwd)
444 if (strcmp (src_pwd, pwd) == 0)
445 return true;
446 else
447 return false;
450 src_pwd = xstrdup (pwd);
451 return true;
454 /* Return the directory from which the translation unit was initiated,
455 in case set_src_pwd() was not called before to assign it a
456 different value. */
458 const char *
459 get_src_pwd (void)
461 if (! src_pwd)
462 src_pwd = getpwd ();
464 return src_pwd;
467 /* Called when the start of a function definition is parsed,
468 this function prints on stderr the name of the function. */
469 void
470 announce_function (tree decl)
472 if (!quiet_flag)
474 if (rtl_dump_and_exit)
475 verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
476 else
477 verbatim (" %s", lang_hooks.decl_printable_name (decl, 2));
478 fflush (stderr);
479 pp_needs_newline (global_dc->printer) = true;
480 diagnostic_set_last_function (global_dc);
484 /* Set up a default flag_random_seed and local_tick, unless the user
485 already specified one. */
487 static void
488 randomize (void)
490 if (!flag_random_seed)
492 unsigned HOST_WIDE_INT value;
493 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
495 /* Get some more or less random data. */
496 #ifdef HAVE_GETTIMEOFDAY
498 struct timeval tv;
500 gettimeofday (&tv, NULL);
501 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
503 #else
505 time_t now = time (NULL);
507 if (now != (time_t)-1)
508 local_tick = (unsigned) now;
510 #endif
511 value = local_tick ^ getpid ();
513 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
514 flag_random_seed = random_seed;
516 else if (!local_tick)
517 local_tick = -1;
521 /* Decode the string P as an integral parameter.
522 If the string is indeed an integer return its numeric value else
523 issue an Invalid Option error for the option PNAME and return DEFVAL.
524 If PNAME is zero just return DEFVAL, do not call error. */
527 read_integral_parameter (const char *p, const char *pname, const int defval)
529 const char *endp = p;
531 while (*endp)
533 if (ISDIGIT (*endp))
534 endp++;
535 else
536 break;
539 if (*endp != 0)
541 if (pname != 0)
542 error ("invalid option argument `%s'", pname);
543 return defval;
546 return atoi (p);
549 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
550 If X is 0, return -1.
552 This should be used via the floor_log2 macro. */
555 floor_log2_wide (unsigned HOST_WIDE_INT x)
557 int t=0;
558 if (x == 0)
559 return -1;
560 if (sizeof (HOST_WIDE_INT) * 8 > 64)
561 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
562 t += 64;
563 if (sizeof (HOST_WIDE_INT) * 8 > 32)
564 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
565 t += 32;
566 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
567 t += 16;
568 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
569 t += 8;
570 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
571 t += 4;
572 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
573 t += 2;
574 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
575 t += 1;
576 return t;
579 /* Return the logarithm of X, base 2, considering X unsigned,
580 if X is a power of 2. Otherwise, returns -1.
582 This should be used via the `exact_log2' macro. */
585 exact_log2_wide (unsigned HOST_WIDE_INT x)
587 /* Test for 0 or a power of 2. */
588 if (x == 0 || x != (x & -x))
589 return -1;
590 return floor_log2_wide (x);
593 /* Handler for fatal signals, such as SIGSEGV. These are transformed
594 into ICE messages, which is much more user friendly. In case the
595 error printer crashes, reset the signal to prevent infinite recursion. */
597 static void
598 crash_signal (int signo)
600 signal (signo, SIG_DFL);
602 /* If we crashed while processing an ASM statement, then be a little more
603 graceful. It's most likely the user's fault. */
604 if (this_is_asm_operands)
606 output_operand_lossage ("unrecoverable error");
607 exit (FATAL_EXIT_CODE);
610 internal_error ("%s", strsignal (signo));
613 /* Arrange to dump core on error. (The regular error message is still
614 printed first, except in the case of abort().) */
616 static void
617 setup_core_dumping (void)
619 #ifdef SIGABRT
620 signal (SIGABRT, SIG_DFL);
621 #endif
622 #if defined(HAVE_SETRLIMIT)
624 struct rlimit rlim;
625 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
626 fatal_error ("getting core file size maximum limit: %m");
627 rlim.rlim_cur = rlim.rlim_max;
628 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
629 fatal_error ("setting core file size limit to maximum: %m");
631 #endif
632 diagnostic_abort_on_error (global_dc);
636 /* Strip off a legitimate source ending from the input string NAME of
637 length LEN. Rather than having to know the names used by all of
638 our front ends, we strip off an ending of a period followed by
639 up to five characters. (Java uses ".class".) */
641 void
642 strip_off_ending (char *name, int len)
644 int i;
645 for (i = 2; i < 6 && len > i; i++)
647 if (name[len - i] == '.')
649 name[len - i] = '\0';
650 break;
655 /* Output a quoted string. */
657 void
658 output_quoted_string (FILE *asm_file, const char *string)
660 #ifdef OUTPUT_QUOTED_STRING
661 OUTPUT_QUOTED_STRING (asm_file, string);
662 #else
663 char c;
665 putc ('\"', asm_file);
666 while ((c = *string++) != 0)
668 if (ISPRINT (c))
670 if (c == '\"' || c == '\\')
671 putc ('\\', asm_file);
672 putc (c, asm_file);
674 else
675 fprintf (asm_file, "\\%03o", (unsigned char) c);
677 putc ('\"', asm_file);
678 #endif
681 /* Output a file name in the form wanted by System V. */
683 void
684 output_file_directive (FILE *asm_file, const char *input_name)
686 int len;
687 const char *na;
689 if (input_name == NULL)
690 input_name = "<stdin>";
692 len = strlen (input_name);
693 na = input_name + len;
695 /* NA gets INPUT_NAME sans directory names. */
696 while (na > input_name)
698 if (IS_DIR_SEPARATOR (na[-1]))
699 break;
700 na--;
703 #ifdef ASM_OUTPUT_SOURCE_FILENAME
704 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
705 #else
706 fprintf (asm_file, "\t.file\t");
707 output_quoted_string (asm_file, na);
708 fputc ('\n', asm_file);
709 #endif
712 /* Do any final processing required for the declarations in VEC, of
713 which there are LEN. We write out inline functions and variables
714 that have been deferred until this point, but which are required.
715 Returns nonzero if anything was put out. */
718 wrapup_global_declarations (tree *vec, int len)
720 tree decl;
721 int i;
722 int reconsider;
723 int output_something = 0;
725 for (i = 0; i < len; i++)
727 decl = vec[i];
729 /* We're not deferring this any longer. Assignment is
730 conditional to avoid needlessly dirtying PCH pages. */
731 if (DECL_DEFER_OUTPUT (decl) != 0)
732 DECL_DEFER_OUTPUT (decl) = 0;
734 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
735 lang_hooks.finish_incomplete_decl (decl);
738 /* Now emit any global variables or functions that we have been
739 putting off. We need to loop in case one of the things emitted
740 here references another one which comes earlier in the list. */
743 reconsider = 0;
744 for (i = 0; i < len; i++)
746 decl = vec[i];
748 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
749 continue;
751 /* Don't write out static consts, unless we still need them.
753 We also keep static consts if not optimizing (for debugging),
754 unless the user specified -fno-keep-static-consts.
755 ??? They might be better written into the debug information.
756 This is possible when using DWARF.
758 A language processor that wants static constants to be always
759 written out (even if it is not used) is responsible for
760 calling rest_of_decl_compilation itself. E.g. the C front-end
761 calls rest_of_decl_compilation from finish_decl.
762 One motivation for this is that is conventional in some
763 environments to write things like:
764 static const char rcsid[] = "... version string ...";
765 intending to force the string to be in the executable.
767 A language processor that would prefer to have unneeded
768 static constants "optimized away" would just defer writing
769 them out until here. E.g. C++ does this, because static
770 constants are often defined in header files.
772 ??? A tempting alternative (for both C and C++) would be
773 to force a constant to be written if and only if it is
774 defined in a main file, as opposed to an include file. */
776 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
778 struct cgraph_varpool_node *node;
779 bool needed = 1;
780 node = cgraph_varpool_node (decl);
782 if (flag_unit_at_a_time && node->finalized)
783 needed = 0;
784 else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
785 && (TREE_USED (decl)
786 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
787 /* needed */;
788 else if (node->needed)
789 /* needed */;
790 else if (DECL_COMDAT (decl))
791 needed = 0;
792 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
793 && (optimize || !flag_keep_static_consts
794 || DECL_ARTIFICIAL (decl)))
795 needed = 0;
797 if (needed)
799 reconsider = 1;
800 rest_of_decl_compilation (decl, 1, 1);
805 if (reconsider)
806 output_something = 1;
808 while (reconsider);
810 return output_something;
813 /* Issue appropriate warnings for the global declarations in VEC (of
814 which there are LEN). Output debugging information for them. */
816 void
817 check_global_declarations (tree *vec, int len)
819 tree decl;
820 int i;
822 for (i = 0; i < len; i++)
824 decl = vec[i];
826 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
827 && ! TREE_ASM_WRITTEN (decl))
828 /* Cancel the RTL for this decl so that, if debugging info
829 output for global variables is still to come,
830 this one will be omitted. */
831 SET_DECL_RTL (decl, NULL_RTX);
833 /* Warn about any function
834 declared static but not defined.
835 We don't warn about variables,
836 because many programs have static variables
837 that exist only to get some text into the object file. */
838 if (TREE_CODE (decl) == FUNCTION_DECL
839 && DECL_INITIAL (decl) == 0
840 && DECL_EXTERNAL (decl)
841 && ! DECL_ARTIFICIAL (decl)
842 && ! TREE_PUBLIC (decl)
843 && (warn_unused_function
844 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
846 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
847 pedwarn ("%J'%F' used but never defined", decl, decl);
848 else
849 warning ("%J'%F' declared `static' but never defined", decl, decl);
850 /* This symbol is effectively an "extern" declaration now. */
851 TREE_PUBLIC (decl) = 1;
852 assemble_external (decl);
855 /* Warn about static fns or vars defined but not used. */
856 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
857 /* We don't warn about "static const" variables because the
858 "rcs_id" idiom uses that construction. */
859 || (warn_unused_variable
860 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
861 && ! DECL_IN_SYSTEM_HEADER (decl)
862 && ! TREE_USED (decl)
863 /* The TREE_USED bit for file-scope decls is kept in the identifier,
864 to handle multiple external decls in different scopes. */
865 && ! TREE_USED (DECL_NAME (decl))
866 && ! DECL_EXTERNAL (decl)
867 && ! TREE_PUBLIC (decl)
868 /* A volatile variable might be used in some non-obvious way. */
869 && ! TREE_THIS_VOLATILE (decl)
870 /* Global register variables must be declared to reserve them. */
871 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
872 /* Otherwise, ask the language. */
873 && lang_hooks.decls.warn_unused_global (decl))
874 warning ("%J'%D' defined but not used", decl, decl);
876 /* Avoid confusing the debug information machinery when there are
877 errors. */
878 if (errorcount == 0 && sorrycount == 0)
880 timevar_push (TV_SYMOUT);
881 (*debug_hooks->global_decl) (decl);
882 timevar_pop (TV_SYMOUT);
887 /* Warn about a use of an identifier which was marked deprecated. */
888 void
889 warn_deprecated_use (tree node)
891 if (node == 0 || !warn_deprecated_decl)
892 return;
894 if (DECL_P (node))
896 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
897 warning ("`%s' is deprecated (declared at %s:%d)",
898 IDENTIFIER_POINTER (DECL_NAME (node)),
899 xloc.file, xloc.line);
901 else if (TYPE_P (node))
903 const char *what = NULL;
904 tree decl = TYPE_STUB_DECL (node);
906 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
907 what = IDENTIFIER_POINTER (TYPE_NAME (node));
908 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
909 && DECL_NAME (TYPE_NAME (node)))
910 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
912 if (decl)
914 expanded_location xloc
915 = expand_location (DECL_SOURCE_LOCATION (decl));
916 if (what)
917 warning ("`%s' is deprecated (declared at %s:%d)", what,
918 xloc.file, xloc.line);
919 else
920 warning ("type is deprecated (declared at %s:%d)",
921 xloc.file, xloc.line);
923 else
925 if (what)
926 warning ("type is deprecated");
927 else
928 warning ("`%s' is deprecated", what);
933 /* Save the current INPUT_LOCATION on the top entry in the
934 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
935 INPUT_LOCATION accordingly. */
937 void
938 #ifdef USE_MAPPED_LOCATION
939 push_srcloc (location_t fline)
940 #else
941 push_srcloc (const char *file, int line)
942 #endif
944 struct file_stack *fs;
946 fs = xmalloc (sizeof (struct file_stack));
947 fs->location = input_location;
948 fs->next = input_file_stack;
949 #ifdef USE_MAPPED_LOCATION
950 input_location = fline;
951 #else
952 input_filename = file;
953 input_line = line;
954 #endif
955 input_file_stack = fs;
956 input_file_stack_tick++;
959 /* Pop the top entry off the stack of presently open source files.
960 Restore the INPUT_LOCATION from the new topmost entry on the
961 stack. */
963 void
964 pop_srcloc (void)
966 struct file_stack *fs;
968 fs = input_file_stack;
969 input_location = fs->location;
970 input_file_stack = fs->next;
971 free (fs);
972 input_file_stack_tick++;
975 /* Compile an entire translation unit. Write a file of assembly
976 output and various debugging dumps. */
978 static void
979 compile_file (void)
981 /* Initialize yet another pass. */
983 init_final (main_input_filename);
984 coverage_init (aux_base_name);
986 timevar_push (TV_PARSE);
988 /* Call the parser, which parses the entire file (calling
989 rest_of_compilation for each function). */
990 lang_hooks.parse_file (set_yydebug);
992 /* In case there were missing block closers,
993 get us back to the global binding level. */
994 lang_hooks.clear_binding_stack ();
996 /* Compilation is now finished except for writing
997 what's left of the symbol table output. */
998 timevar_pop (TV_PARSE);
1000 if (flag_syntax_only)
1001 return;
1003 lang_hooks.decls.final_write_globals ();
1005 cgraph_varpool_assemble_pending_decls ();
1007 /* This must occur after the loop to output deferred functions.
1008 Else the coverage initializer would not be emitted if all the
1009 functions in this compilation unit were deferred. */
1010 coverage_finish ();
1012 /* Write out any pending weak symbol declarations. */
1014 weak_finish ();
1016 /* Do dbx symbols. */
1017 timevar_push (TV_SYMOUT);
1019 #ifdef DWARF2_UNWIND_INFO
1020 if (dwarf2out_do_frame ())
1021 dwarf2out_frame_finish ();
1022 #endif
1024 (*debug_hooks->finish) (main_input_filename);
1025 timevar_pop (TV_SYMOUT);
1027 /* Output some stuff at end of file if nec. */
1029 dw2_output_indirect_constants ();
1031 /* Attach a special .ident directive to the end of the file to identify
1032 the version of GCC which compiled this code. The format of the .ident
1033 string is patterned after the ones produced by native SVR4 compilers. */
1034 #ifdef IDENT_ASM_OP
1035 if (!flag_no_ident)
1036 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1037 IDENT_ASM_OP, version_string);
1038 #endif
1040 /* This must be at the end. Some target ports emit end of file directives
1041 into the assembly file here, and hence we can not output anything to the
1042 assembly file after this point. */
1043 targetm.asm_out.file_end ();
1046 /* Display help for target options. */
1047 void
1048 display_target_options (void)
1050 int undoc, i;
1051 static bool displayed = false;
1053 /* Avoid double printing for --help --target-help. */
1054 if (displayed)
1055 return;
1057 displayed = true;
1059 if (ARRAY_SIZE (target_switches) > 1
1060 #ifdef TARGET_OPTIONS
1061 || ARRAY_SIZE (target_options) > 1
1062 #endif
1065 int doc = 0;
1067 undoc = 0;
1069 printf (_("\nTarget specific options:\n"));
1071 for (i = ARRAY_SIZE (target_switches); i--;)
1073 const char *option = target_switches[i].name;
1074 const char *description = target_switches[i].description;
1076 if (option == NULL || *option == 0)
1077 continue;
1078 else if (description == NULL)
1080 undoc = 1;
1082 if (extra_warnings)
1083 printf (_(" -m%-23s [undocumented]\n"), option);
1085 else if (*description != 0)
1086 doc += printf (" -m%-23s %s\n", option, _(description));
1089 #ifdef TARGET_OPTIONS
1090 for (i = ARRAY_SIZE (target_options); i--;)
1092 const char *option = target_options[i].prefix;
1093 const char *description = target_options[i].description;
1095 if (option == NULL || *option == 0)
1096 continue;
1097 else if (description == NULL)
1099 undoc = 1;
1101 if (extra_warnings)
1102 printf (_(" -m%-23s [undocumented]\n"), option);
1104 else if (*description != 0)
1105 doc += printf (" -m%-23s %s\n", option, _(description));
1107 #endif
1108 if (undoc)
1110 if (doc)
1111 printf (_("\nThere are undocumented target specific options as well.\n"));
1112 else
1113 printf (_(" They exist, but they are not documented.\n"));
1118 /* Parse a -d... command line switch. */
1120 void
1121 decode_d_option (const char *arg)
1123 int c;
1125 while (*arg)
1126 switch (c = *arg++)
1128 case 'A':
1129 flag_debug_asm = 1;
1130 break;
1131 case 'p':
1132 flag_print_asm_name = 1;
1133 break;
1134 case 'P':
1135 flag_dump_rtl_in_asm = 1;
1136 flag_print_asm_name = 1;
1137 break;
1138 case 'v':
1139 graph_dump_format = vcg;
1140 break;
1141 case 'x':
1142 rtl_dump_and_exit = 1;
1143 break;
1144 case 'y':
1145 set_yydebug = 1;
1146 break;
1147 case 'D': /* These are handled by the preprocessor. */
1148 case 'I':
1149 break;
1150 case 'H':
1151 setup_core_dumping();
1152 break;
1154 case 'a':
1155 default:
1156 if (!enable_rtl_dump_file (c))
1157 warning ("unrecognized gcc debugging option: %c", c);
1158 break;
1162 /* Indexed by enum debug_info_type. */
1163 const char *const debug_type_names[] =
1165 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
1168 /* Decode -m switches. */
1169 /* Decode the switch -mNAME. */
1171 void
1172 set_target_switch (const char *name)
1174 size_t j;
1175 int valid_target_option = 0;
1177 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1178 if (!strcmp (target_switches[j].name, name))
1180 if (target_switches[j].value < 0)
1181 target_flags &= ~-target_switches[j].value;
1182 else
1183 target_flags |= target_switches[j].value;
1184 if (name[0] != 0)
1186 if (target_switches[j].value < 0)
1187 target_flags_explicit |= -target_switches[j].value;
1188 else
1189 target_flags_explicit |= target_switches[j].value;
1191 valid_target_option = 1;
1194 #ifdef TARGET_OPTIONS
1195 if (!valid_target_option)
1196 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1198 int len = strlen (target_options[j].prefix);
1199 if (target_options[j].value)
1201 if (!strcmp (target_options[j].prefix, name))
1203 *target_options[j].variable = target_options[j].value;
1204 valid_target_option = 1;
1207 else
1209 if (!strncmp (target_options[j].prefix, name, len))
1211 *target_options[j].variable = name + len;
1212 valid_target_option = 1;
1216 #endif
1218 if (!valid_target_option)
1219 error ("invalid option `%s'", name);
1222 /* Print version information to FILE.
1223 Each line begins with INDENT (for the case where FILE is the
1224 assembler output file). */
1226 void
1227 print_version (FILE *file, const char *indent)
1229 #ifndef __VERSION__
1230 #define __VERSION__ "[?]"
1231 #endif
1232 fnotice (file,
1233 #ifdef __GNUC__
1234 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
1235 #else
1236 "%s%s%s version %s (%s) compiled by CC.\n"
1237 #endif
1238 , indent, *indent != 0 ? " " : "",
1239 lang_hooks.name, version_string, TARGET_NAME,
1240 indent, __VERSION__);
1241 fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
1242 indent, *indent != 0 ? " " : "",
1243 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1246 /* Print an option value and return the adjusted position in the line.
1247 ??? We don't handle error returns from fprintf (disk full); presumably
1248 other code will catch a disk full though. */
1250 static int
1251 print_single_switch (FILE *file, int pos, int max,
1252 const char *indent, const char *sep, const char *term,
1253 const char *type, const char *name)
1255 /* The ultrix fprintf returns 0 on success, so compute the result we want
1256 here since we need it for the following test. */
1257 int len = strlen (sep) + strlen (type) + strlen (name);
1259 if (pos != 0
1260 && pos + len > max)
1262 fprintf (file, "%s", term);
1263 pos = 0;
1265 if (pos == 0)
1267 fprintf (file, "%s", indent);
1268 pos = strlen (indent);
1270 fprintf (file, "%s%s%s", sep, type, name);
1271 pos += len;
1272 return pos;
1275 /* Print active target switches to FILE.
1276 POS is the current cursor position and MAX is the size of a "line".
1277 Each line begins with INDENT and ends with TERM.
1278 Each switch is separated from the next by SEP. */
1280 static void
1281 print_switch_values (FILE *file, int pos, int max,
1282 const char *indent, const char *sep, const char *term)
1284 size_t j;
1285 const char **p;
1287 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1288 that it can be printed below. This helps reproducibility. */
1289 randomize ();
1291 /* Print the options as passed. */
1292 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1293 _("options passed: "), "");
1295 for (p = &save_argv[1]; *p != NULL; p++)
1296 if (**p == '-')
1298 /* Ignore these. */
1299 if (strcmp (*p, "-o") == 0)
1301 if (p[1] != NULL)
1302 p++;
1303 continue;
1305 if (strcmp (*p, "-quiet") == 0)
1306 continue;
1307 if (strcmp (*p, "-version") == 0)
1308 continue;
1309 if ((*p)[1] == 'd')
1310 continue;
1312 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1314 if (pos > 0)
1315 fprintf (file, "%s", term);
1317 /* Print the -f and -m options that have been enabled.
1318 We don't handle language specific options but printing argv
1319 should suffice. */
1321 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1322 _("options enabled: "), "");
1324 for (j = 0; j < cl_options_count; j++)
1326 if (!cl_options[j].flag_var
1327 || !(cl_options[j].flags & CL_REPORT))
1328 continue;
1330 if (cl_options[j].has_set_value)
1332 if (*cl_options[j].flag_var != cl_options[j].set_value)
1333 continue;
1335 else
1337 if (!*cl_options[j].flag_var)
1338 continue;
1341 pos = print_single_switch (file, pos, max, indent, sep, term,
1342 "", cl_options[j].opt_text);
1345 /* Print target specific options. */
1347 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1348 if (target_switches[j].name[0] != '\0'
1349 && target_switches[j].value > 0
1350 && ((target_switches[j].value & target_flags)
1351 == target_switches[j].value))
1353 pos = print_single_switch (file, pos, max, indent, sep, term,
1354 "-m", target_switches[j].name);
1357 #ifdef TARGET_OPTIONS
1358 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1359 if (*target_options[j].variable != NULL)
1361 char prefix[256];
1362 sprintf (prefix, "-m%s", target_options[j].prefix);
1363 pos = print_single_switch (file, pos, max, indent, sep, term,
1364 prefix, *target_options[j].variable);
1366 #endif
1368 fprintf (file, "%s", term);
1371 /* Open assembly code output file. Do this even if -fsyntax-only is
1372 on, because then the driver will have provided the name of a
1373 temporary file or bit bucket for us. NAME is the file specified on
1374 the command line, possibly NULL. */
1375 static void
1376 init_asm_output (const char *name)
1378 if (name == NULL && asm_file_name == 0)
1379 asm_out_file = stdout;
1380 else
1382 if (asm_file_name == 0)
1384 int len = strlen (dump_base_name);
1385 char *dumpname = xmalloc (len + 6);
1386 memcpy (dumpname, dump_base_name, len + 1);
1387 strip_off_ending (dumpname, len);
1388 strcat (dumpname, ".s");
1389 asm_file_name = dumpname;
1391 if (!strcmp (asm_file_name, "-"))
1392 asm_out_file = stdout;
1393 else
1394 asm_out_file = fopen (asm_file_name, "w+b");
1395 if (asm_out_file == 0)
1396 fatal_error ("can't open %s for writing: %m", asm_file_name);
1399 #ifdef IO_BUFFER_SIZE
1400 setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
1401 _IOFBF, IO_BUFFER_SIZE);
1402 #endif
1404 if (!flag_syntax_only)
1406 targetm.asm_out.file_start ();
1408 #ifdef ASM_COMMENT_START
1409 if (flag_verbose_asm)
1411 /* Print the list of options in effect. */
1412 print_version (asm_out_file, ASM_COMMENT_START);
1413 print_switch_values (asm_out_file, 0, MAX_LINE,
1414 ASM_COMMENT_START, " ", "\n");
1415 /* Add a blank line here so it appears in assembler output but not
1416 screen output. */
1417 fprintf (asm_out_file, "\n");
1419 #endif
1423 /* Default version of get_pch_validity.
1424 By default, every flag difference is fatal; that will be mostly right for
1425 most targets, but completely right for very few. */
1427 void *
1428 default_get_pch_validity (size_t *len)
1430 #ifdef TARGET_OPTIONS
1431 size_t i;
1432 #endif
1433 char *result, *r;
1435 *len = sizeof (target_flags) + 2;
1436 #ifdef TARGET_OPTIONS
1437 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1439 *len += 1;
1440 if (*target_options[i].variable)
1441 *len += strlen (*target_options[i].variable);
1443 #endif
1445 result = r = xmalloc (*len);
1446 r[0] = flag_pic;
1447 r[1] = flag_pie;
1448 r += 2;
1449 memcpy (r, &target_flags, sizeof (target_flags));
1450 r += sizeof (target_flags);
1452 #ifdef TARGET_OPTIONS
1453 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1455 const char *str = *target_options[i].variable;
1456 size_t l;
1457 if (! str)
1458 str = "";
1459 l = strlen (str) + 1;
1460 memcpy (r, str, l);
1461 r += l;
1463 #endif
1465 return result;
1468 /* Default version of pch_valid_p. */
1470 const char *
1471 default_pch_valid_p (const void *data_p, size_t len)
1473 const char *data = (const char *)data_p;
1474 const char *flag_that_differs = NULL;
1475 size_t i;
1477 /* -fpic and -fpie also usually make a PCH invalid. */
1478 if (data[0] != flag_pic)
1479 return _("created and used with different settings of -fpic");
1480 if (data[1] != flag_pie)
1481 return _("created and used with different settings of -fpie");
1482 data += 2;
1484 /* Check target_flags. */
1485 if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
1487 for (i = 0; i < ARRAY_SIZE (target_switches); i++)
1489 int bits;
1490 int tf;
1492 memcpy (&tf, data, sizeof (target_flags));
1494 bits = target_switches[i].value;
1495 if (bits < 0)
1496 bits = -bits;
1497 if ((target_flags & bits) != (tf & bits))
1499 flag_that_differs = target_switches[i].name;
1500 goto make_message;
1503 abort ();
1505 data += sizeof (target_flags);
1506 len -= sizeof (target_flags);
1508 /* Check string options. */
1509 #ifdef TARGET_OPTIONS
1510 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1512 const char *str = *target_options[i].variable;
1513 size_t l;
1514 if (! str)
1515 str = "";
1516 l = strlen (str) + 1;
1517 if (len < l || memcmp (data, str, l) != 0)
1519 flag_that_differs = target_options[i].prefix;
1520 goto make_message;
1522 data += l;
1523 len -= l;
1525 #endif
1527 return NULL;
1529 make_message:
1531 char *r;
1532 asprintf (&r, _("created and used with differing settings of `-m%s'"),
1533 flag_that_differs);
1534 if (r == NULL)
1535 return _("out of memory");
1536 return r;
1540 /* Default tree printer. Handles declarations only. */
1541 static bool
1542 default_tree_printer (pretty_printer * pp, text_info *text)
1544 switch (*text->format_spec)
1546 case 'D':
1547 case 'F':
1548 case 'T':
1550 tree t = va_arg (*text->args_ptr, tree);
1551 const char *n = DECL_NAME (t)
1552 ? lang_hooks.decl_printable_name (t, 2)
1553 : "<anonymous>";
1554 pp_string (pp, n);
1556 return true;
1558 default:
1559 return false;
1563 /* Initialization of the front end environment, before command line
1564 options are parsed. Signal handlers, internationalization etc.
1565 ARGV0 is main's argv[0]. */
1566 static void
1567 general_init (const char *argv0)
1569 const char *p;
1571 p = argv0 + strlen (argv0);
1572 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1573 --p;
1574 progname = p;
1576 xmalloc_set_program_name (progname);
1578 hex_init ();
1580 gcc_init_libintl ();
1582 /* Initialize the diagnostics reporting machinery, so option parsing
1583 can give warnings and errors. */
1584 diagnostic_initialize (global_dc);
1585 /* Set a default printer. Language specific initializations will
1586 override it later. */
1587 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1589 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1590 #ifdef SIGSEGV
1591 signal (SIGSEGV, crash_signal);
1592 #endif
1593 #ifdef SIGILL
1594 signal (SIGILL, crash_signal);
1595 #endif
1596 #ifdef SIGBUS
1597 signal (SIGBUS, crash_signal);
1598 #endif
1599 #ifdef SIGABRT
1600 signal (SIGABRT, crash_signal);
1601 #endif
1602 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1603 signal (SIGIOT, crash_signal);
1604 #endif
1605 #ifdef SIGFPE
1606 signal (SIGFPE, crash_signal);
1607 #endif
1609 /* Other host-specific signal setup. */
1610 (*host_hooks.extra_signals)();
1612 /* Initialize the garbage-collector, string pools and tree type hash
1613 table. */
1614 init_ggc ();
1615 init_stringpool ();
1616 linemap_init (&line_table);
1617 init_ttree ();
1619 /* Initialize register usage now so switches may override. */
1620 init_reg_sets ();
1622 /* Register the language-independent parameters. */
1623 add_params (lang_independent_params, LAST_PARAM);
1625 /* This must be done after add_params but before argument processing. */
1626 init_ggc_heuristics();
1627 init_tree_optimization_passes ();
1630 /* Process the options that have been parsed. */
1631 static void
1632 process_options (void)
1634 /* Allow the front end to perform consistency checks and do further
1635 initialization based on the command line options. This hook also
1636 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1637 so we can correctly initialize debug output. */
1638 no_backend = lang_hooks.post_options (&main_input_filename);
1639 #ifndef USE_MAPPED_LOCATION
1640 input_filename = main_input_filename;
1641 #endif
1643 #ifdef OVERRIDE_OPTIONS
1644 /* Some machines may reject certain combinations of options. */
1645 OVERRIDE_OPTIONS;
1646 #endif
1648 if (flag_short_enums == 2)
1649 flag_short_enums = targetm.default_short_enums ();
1651 /* Set aux_base_name if not already set. */
1652 if (aux_base_name)
1654 else if (main_input_filename)
1656 char *name = xstrdup (lbasename (main_input_filename));
1658 strip_off_ending (name, strlen (name));
1659 aux_base_name = name;
1661 else
1662 aux_base_name = "gccaux";
1664 /* Set up the align_*_log variables, defaulting them to 1 if they
1665 were still unset. */
1666 if (align_loops <= 0) align_loops = 1;
1667 if (align_loops_max_skip > align_loops || !align_loops)
1668 align_loops_max_skip = align_loops - 1;
1669 align_loops_log = floor_log2 (align_loops * 2 - 1);
1670 if (align_jumps <= 0) align_jumps = 1;
1671 if (align_jumps_max_skip > align_jumps || !align_jumps)
1672 align_jumps_max_skip = align_jumps - 1;
1673 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1674 if (align_labels <= 0) align_labels = 1;
1675 align_labels_log = floor_log2 (align_labels * 2 - 1);
1676 if (align_labels_max_skip > align_labels || !align_labels)
1677 align_labels_max_skip = align_labels - 1;
1678 if (align_functions <= 0) align_functions = 1;
1679 align_functions_log = floor_log2 (align_functions * 2 - 1);
1681 /* Unrolling all loops implies that standard loop unrolling must also
1682 be done. */
1683 if (flag_unroll_all_loops)
1684 flag_unroll_loops = 1;
1686 if (flag_unroll_loops)
1688 flag_old_unroll_loops = 0;
1689 flag_old_unroll_all_loops = 0;
1692 if (flag_old_unroll_all_loops)
1693 flag_old_unroll_loops = 1;
1695 /* Old loop unrolling requires that strength_reduction be on also. Silently
1696 turn on strength reduction here if it isn't already on. Also, the loop
1697 unrolling code assumes that cse will be run after loop, so that must
1698 be turned on also. */
1699 if (flag_old_unroll_loops)
1701 flag_strength_reduce = 1;
1702 flag_rerun_cse_after_loop = 1;
1704 if (flag_unroll_loops || flag_peel_loops)
1705 flag_rerun_cse_after_loop = 1;
1707 /* If explicitly asked to run new loop optimizer, switch off the old
1708 one. */
1709 if (flag_loop_optimize2)
1710 flag_loop_optimize = 0;
1712 /* Enable new loop optimizer pass if any of its optimizations is called. */
1713 if (flag_move_loop_invariants
1714 || flag_unswitch_loops
1715 || flag_peel_loops
1716 || flag_unroll_loops
1717 || flag_branch_on_count_reg)
1718 flag_loop_optimize2 = 1;
1720 if (flag_non_call_exceptions)
1721 flag_asynchronous_unwind_tables = 1;
1722 if (flag_asynchronous_unwind_tables)
1723 flag_unwind_tables = 1;
1725 /* Disable unit-at-a-time mode for frontends not supporting callgraph
1726 interface. */
1727 if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
1728 flag_unit_at_a_time = 0;
1730 if (flag_value_profile_transformations)
1731 flag_profile_values = 1;
1733 /* Speculative prefetching implies the value profiling. We also switch off
1734 the prefetching in the loop optimizer, so that we do not emit double
1735 prefetches. TODO -- we should teach these two to cooperate; the loop
1736 based prefetching may sometimes do a better job, especially in connection
1737 with reuse analysis. */
1738 if (flag_speculative_prefetching)
1740 flag_profile_values = 1;
1741 flag_prefetch_loop_arrays = 0;
1744 /* Warn about options that are not supported on this machine. */
1745 #ifndef INSN_SCHEDULING
1746 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1747 warning ("instruction scheduling not supported on this target machine");
1748 #endif
1749 #ifndef DELAY_SLOTS
1750 if (flag_delayed_branch)
1751 warning ("this target machine does not have delayed branches");
1752 #endif
1754 if (flag_tree_based_profiling && flag_test_coverage)
1755 sorry ("test-coverage not yet implemented in trees.");
1756 if (flag_tree_based_profiling && flag_profile_values)
1757 sorry ("value-based profiling not yet implemented in trees.");
1759 user_label_prefix = USER_LABEL_PREFIX;
1760 if (flag_leading_underscore != -1)
1762 /* If the default prefix is more complicated than "" or "_",
1763 issue a warning and ignore this option. */
1764 if (user_label_prefix[0] == 0 ||
1765 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1767 user_label_prefix = flag_leading_underscore ? "_" : "";
1769 else
1770 warning ("-f%sleading-underscore not supported on this target machine",
1771 flag_leading_underscore ? "" : "no-");
1774 /* If we are in verbose mode, write out the version and maybe all the
1775 option flags in use. */
1776 if (version_flag)
1778 print_version (stderr, "");
1779 if (! quiet_flag)
1780 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
1783 if (flag_syntax_only)
1785 write_symbols = NO_DEBUG;
1786 profile_flag = 0;
1789 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1790 level is 0. */
1791 if (debug_info_level == DINFO_LEVEL_NONE)
1792 write_symbols = NO_DEBUG;
1794 /* Now we know write_symbols, set up the debug hooks based on it.
1795 By default we do nothing for debug output. */
1796 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1797 default_debug_hooks = &do_nothing_debug_hooks;
1798 #if defined(DBX_DEBUGGING_INFO)
1799 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1800 default_debug_hooks = &dbx_debug_hooks;
1801 #endif
1802 #if defined(XCOFF_DEBUGGING_INFO)
1803 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1804 default_debug_hooks = &xcoff_debug_hooks;
1805 #endif
1806 #ifdef SDB_DEBUGGING_INFO
1807 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1808 default_debug_hooks = &sdb_debug_hooks;
1809 #endif
1810 #ifdef DWARF2_DEBUGGING_INFO
1811 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1812 default_debug_hooks = &dwarf2_debug_hooks;
1813 #endif
1814 #ifdef VMS_DEBUGGING_INFO
1815 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1816 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1817 default_debug_hooks = &vmsdbg_debug_hooks;
1818 #endif
1820 debug_hooks = &do_nothing_debug_hooks;
1821 if (write_symbols == NO_DEBUG)
1823 #if defined(DBX_DEBUGGING_INFO)
1824 else if (write_symbols == DBX_DEBUG)
1825 debug_hooks = &dbx_debug_hooks;
1826 #endif
1827 #if defined(XCOFF_DEBUGGING_INFO)
1828 else if (write_symbols == XCOFF_DEBUG)
1829 debug_hooks = &xcoff_debug_hooks;
1830 #endif
1831 #ifdef SDB_DEBUGGING_INFO
1832 else if (write_symbols == SDB_DEBUG)
1833 debug_hooks = &sdb_debug_hooks;
1834 #endif
1835 #ifdef DWARF2_DEBUGGING_INFO
1836 else if (write_symbols == DWARF2_DEBUG)
1837 debug_hooks = &dwarf2_debug_hooks;
1838 #endif
1839 #ifdef VMS_DEBUGGING_INFO
1840 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1841 debug_hooks = &vmsdbg_debug_hooks;
1842 #endif
1843 else
1844 error ("target system does not support the \"%s\" debug format",
1845 debug_type_names[write_symbols]);
1847 /* Now we know which debug output will be used so we can set
1848 flag_var_tracking, flag_rename_registers and flag_web if the user has
1849 not specified them. */
1850 if (debug_info_level < DINFO_LEVEL_NORMAL
1851 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1853 if (flag_var_tracking == 1)
1855 if (debug_info_level < DINFO_LEVEL_NORMAL)
1856 warning ("variable tracking requested, but useless unless "
1857 "producing debug info");
1858 else
1859 warning ("variable tracking requested, but not supported "
1860 "by this debug format");
1862 flag_var_tracking = 0;
1865 if (flag_rename_registers == AUTODETECT_FLAG_VAR_TRACKING)
1866 flag_rename_registers = default_debug_hooks->var_location
1867 != do_nothing_debug_hooks.var_location;
1869 if (flag_web == AUTODETECT_FLAG_VAR_TRACKING)
1870 flag_web = optimize >= 2 && (default_debug_hooks->var_location
1871 != do_nothing_debug_hooks.var_location);
1873 if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
1874 flag_var_tracking = optimize >= 1;
1876 /* If auxiliary info generation is desired, open the output file.
1877 This goes in the same directory as the source file--unlike
1878 all the other output files. */
1879 if (flag_gen_aux_info)
1881 aux_info_file = fopen (aux_info_file_name, "w");
1882 if (aux_info_file == 0)
1883 fatal_error ("can't open %s: %m", aux_info_file_name);
1886 if (! targetm.have_named_sections)
1888 if (flag_function_sections)
1890 warning ("-ffunction-sections not supported for this target");
1891 flag_function_sections = 0;
1893 if (flag_data_sections)
1895 warning ("-fdata-sections not supported for this target");
1896 flag_data_sections = 0;
1900 if (flag_function_sections && profile_flag)
1902 warning ("-ffunction-sections disabled; it makes profiling impossible");
1903 flag_function_sections = 0;
1906 #ifndef HAVE_prefetch
1907 if (flag_prefetch_loop_arrays)
1909 warning ("-fprefetch-loop-arrays not supported for this target");
1910 flag_prefetch_loop_arrays = 0;
1912 if (flag_speculative_prefetching)
1914 if (flag_speculative_prefetching_set)
1915 warning ("-fspeculative-prefetching not supported for this target");
1916 flag_speculative_prefetching = 0;
1918 #else
1919 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
1921 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
1922 flag_prefetch_loop_arrays = 0;
1924 if (flag_speculative_prefetching && !HAVE_prefetch)
1926 if (flag_speculative_prefetching_set)
1927 warning ("-fspeculative-prefetching not supported for this target (try -march switches)");
1928 flag_speculative_prefetching = 0;
1930 #endif
1932 /* This combination of options isn't handled for i386 targets and doesn't
1933 make much sense anyway, so don't allow it. */
1934 if (flag_prefetch_loop_arrays && optimize_size)
1936 warning ("-fprefetch-loop-arrays is not supported with -Os");
1937 flag_prefetch_loop_arrays = 0;
1940 #ifndef OBJECT_FORMAT_ELF
1941 if (flag_function_sections && write_symbols != NO_DEBUG)
1942 warning ("-ffunction-sections may affect debugging on some targets");
1943 #endif
1945 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1946 if (flag_signaling_nans)
1947 flag_trapping_math = 1;
1950 /* Initialize the compiler back end. */
1951 static void
1952 backend_init (void)
1954 init_adjust_machine_modes ();
1956 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
1957 || debug_info_level == DINFO_LEVEL_VERBOSE
1958 #ifdef VMS_DEBUGGING_INFO
1959 /* Enable line number info for traceback. */
1960 || debug_info_level > DINFO_LEVEL_NONE
1961 #endif
1962 || flag_test_coverage);
1964 init_regs ();
1965 init_fake_stack_mems ();
1966 init_alias_once ();
1967 init_loop ();
1968 init_reload ();
1969 init_function_once ();
1970 init_varasm_once ();
1972 /* The following initialization functions need to generate rtl, so
1973 provide a dummy function context for them. */
1974 init_dummy_function_start ();
1975 init_expmed ();
1976 if (flag_caller_saves)
1977 init_caller_save ();
1978 expand_dummy_function_end ();
1981 /* Language-dependent initialization. Returns nonzero on success. */
1982 static int
1983 lang_dependent_init (const char *name)
1985 location_t save_loc = input_location;
1986 if (dump_base_name == 0)
1987 dump_base_name = name ? name : "gccdump";
1989 /* Other front-end initialization. */
1990 #ifdef USE_MAPPED_LOCATION
1991 input_location = BUILTINS_LOCATION;
1992 #else
1993 input_filename = "<built-in>";
1994 input_line = 0;
1995 #endif
1996 if (lang_hooks.init () == 0)
1997 return 0;
1998 input_location = save_loc;
2000 init_asm_output (name);
2002 /* These create various _DECL nodes, so need to be called after the
2003 front end is initialized. */
2004 init_eh ();
2005 init_optabs ();
2006 init_optimization_passes ();
2008 /* The following initialization functions need to generate rtl, so
2009 provide a dummy function context for them. */
2010 init_dummy_function_start ();
2011 init_expr_once ();
2012 expand_dummy_function_end ();
2014 /* If dbx symbol table desired, initialize writing it and output the
2015 predefined types. */
2016 timevar_push (TV_SYMOUT);
2018 #ifdef DWARF2_UNWIND_INFO
2019 if (dwarf2out_do_frame ())
2020 dwarf2out_frame_init ();
2021 #endif
2023 /* Now we have the correct original filename, we can initialize
2024 debug output. */
2025 (*debug_hooks->init) (name);
2027 timevar_pop (TV_SYMOUT);
2029 return 1;
2032 /* Clean up: close opened files, etc. */
2034 static void
2035 finalize (void)
2037 /* Close the dump files. */
2038 if (flag_gen_aux_info)
2040 fclose (aux_info_file);
2041 if (errorcount)
2042 unlink (aux_info_file_name);
2045 /* Close non-debugging input and output files. Take special care to note
2046 whether fclose returns an error, since the pages might still be on the
2047 buffer chain while the file is open. */
2049 if (asm_out_file)
2051 if (ferror (asm_out_file) != 0)
2052 fatal_error ("error writing to %s: %m", asm_file_name);
2053 if (fclose (asm_out_file) != 0)
2054 fatal_error ("error closing %s: %m", asm_file_name);
2057 finish_optimization_passes ();
2059 if (mem_report)
2061 ggc_print_statistics ();
2062 stringpool_statistics ();
2063 dump_tree_statistics ();
2064 dump_rtx_statistics ();
2065 dump_varray_statistics ();
2066 dump_alloc_pool_statistics ();
2067 dump_ggc_loc_statistics ();
2070 /* Free up memory for the benefit of leak detectors. */
2071 free_reg_info ();
2073 /* Language-specific end of compilation actions. */
2074 lang_hooks.finish ();
2077 /* Initialize the compiler, and compile the input file. */
2078 static void
2079 do_compile (void)
2081 /* Initialize timing first. The C front ends read the main file in
2082 the post_options hook, and C++ does file timings. */
2083 if (time_report || !quiet_flag || flag_detailed_statistics)
2084 timevar_init ();
2085 timevar_start (TV_TOTAL);
2087 process_options ();
2089 /* Don't do any more if an error has already occurred. */
2090 if (!errorcount)
2092 /* Set up the back-end if requested. */
2093 if (!no_backend)
2094 backend_init ();
2096 /* Language-dependent initialization. Returns true on success. */
2097 if (lang_dependent_init (main_input_filename))
2098 compile_file ();
2100 finalize ();
2103 /* Stop timing and print the times. */
2104 timevar_stop (TV_TOTAL);
2105 timevar_print (stderr);
2108 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2109 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2110 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2112 It is not safe to call this function more than once. */
2115 toplev_main (unsigned int argc, const char **argv)
2117 save_argv = argv;
2119 /* Initialization of GCC's environment, and diagnostics. */
2120 general_init (argv[0]);
2122 /* Parse the options and do minimal processing; basically just
2123 enough to default flags appropriately. */
2124 decode_options (argc, argv);
2126 randomize ();
2128 /* Exit early if we can (e.g. -help). */
2129 if (!exit_after_options)
2130 do_compile ();
2132 if (errorcount || sorrycount)
2133 return (FATAL_EXIT_CODE);
2135 return (SUCCESS_EXIT_CODE);