Daily bump.
[official-gcc.git] / gcc / toplev.c
blob512e0fb870892433d99c42d2e6aa737f577ba450
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
27 #include "config.h"
28 #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"
84 #include "tree-pass.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 /* Nonzero to dump debug info whilst parsing (-dy option). */
116 static int set_yydebug;
118 /* True if we don't need a backend (e.g. preprocessing only). */
119 static bool no_backend;
121 /* Length of line when printing switch values. */
122 #define MAX_LINE 75
124 /* Name of program invoked, sans directories. */
126 const char *progname;
128 /* Copy of argument vector to toplev_main. */
129 static const char **save_argv;
131 /* Name of top-level original source file (what was input to cpp).
132 This comes from the #-command at the beginning of the actual input.
133 If there isn't any there, then this is the cc1 input file name. */
135 const char *main_input_filename;
137 #ifndef USE_MAPPED_LOCATION
138 location_t unknown_location = { NULL, 0 };
139 #endif
141 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
142 to optimize and default_debug_hooks in process_options (). */
143 #define AUTODETECT_VALUE 2
145 /* Current position in real source file. */
147 location_t input_location;
149 struct line_maps *line_table;
151 /* Stack of currently pending input files. */
153 struct file_stack *input_file_stack;
155 /* Incremented on each change to input_file_stack. */
156 int input_file_stack_tick;
158 /* Record of input_file_stack at each tick. */
159 typedef struct file_stack *fs_p;
160 DEF_VEC_P(fs_p);
161 DEF_VEC_ALLOC_P(fs_p,heap);
162 static VEC(fs_p,heap) *input_file_stack_history;
164 /* Whether input_file_stack has been restored to a previous state (in
165 which case there should be no more pushing). */
166 static bool input_file_stack_restored;
168 /* Name to use as base of names for dump output files. */
170 const char *dump_base_name;
172 /* Name to use as a base for auxiliary output files. */
174 const char *aux_base_name;
176 /* A mask of target_flags that includes bit X if X was set or cleared
177 on the command line. */
179 int target_flags_explicit;
181 /* Debug hooks - dependent upon command line options. */
183 const struct gcc_debug_hooks *debug_hooks;
185 /* Debug hooks - target default. */
187 static const struct gcc_debug_hooks *default_debug_hooks;
189 /* Other flags saying which kinds of debugging dump have been requested. */
191 int rtl_dump_and_exit;
192 int flag_print_asm_name;
193 enum graph_dump_types graph_dump_format;
195 /* Name for output file of assembly code, specified with -o. */
197 const char *asm_file_name;
199 /* Nonzero means do optimizations. -O.
200 Particular numeric values stand for particular amounts of optimization;
201 thus, -O2 stores 2 here. However, the optimizations beyond the basic
202 ones are not controlled directly by this variable. Instead, they are
203 controlled by individual `flag_...' variables that are defaulted
204 based on this variable. */
206 int optimize = 0;
208 /* Nonzero means optimize for size. -Os.
209 The only valid values are zero and nonzero. When optimize_size is
210 nonzero, optimize defaults to 2, but certain individual code
211 bloating optimizations are disabled. */
213 int optimize_size = 0;
215 /* The FUNCTION_DECL for the function currently being compiled,
216 or 0 if between functions. */
217 tree current_function_decl;
219 /* Set to the FUNC_BEGIN label of the current function, or NULL
220 if none. */
221 const char * current_function_func_begin_label;
223 /* Temporarily suppress certain warnings.
224 This is set while reading code from a system header file. */
226 int in_system_header = 0;
228 /* Nonzero means to collect statistics which might be expensive
229 and to print them when we are done. */
230 int flag_detailed_statistics = 0;
232 /* A random sequence of characters, unless overridden by user. */
233 static const char *flag_random_seed;
235 /* A local time stamp derived from the time of compilation. It will be
236 zero if the system cannot provide a time. It will be -1u, if the
237 user has specified a particular random seed. */
238 unsigned local_tick;
240 /* -f flags. */
242 /* Nonzero means `char' should be signed. */
244 int flag_signed_char;
246 /* Nonzero means give an enum type only as many bytes as it needs. A value
247 of 2 means it has not yet been initialized. */
249 int flag_short_enums;
251 /* Nonzero if structures and unions should be returned in memory.
253 This should only be defined if compatibility with another compiler or
254 with an ABI is needed, because it results in slower code. */
256 #ifndef DEFAULT_PCC_STRUCT_RETURN
257 #define DEFAULT_PCC_STRUCT_RETURN 1
258 #endif
260 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
262 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
264 /* 0 means straightforward implementation of complex divide acceptable.
265 1 means wide ranges of inputs must work for complex divide.
266 2 means C99-like requirements for complex multiply and divide. */
268 int flag_complex_method = 1;
270 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
271 not just because the tree inliner turned us off. */
273 int flag_really_no_inline = 2;
275 /* Nonzero means we should be saving declaration info into a .X file. */
277 int flag_gen_aux_info = 0;
279 /* Specified name of aux-info file. */
281 const char *aux_info_file_name;
283 /* Nonzero if we are compiling code for a shared library, zero for
284 executable. */
286 int flag_shlib;
288 /* Generate code for GNU or NeXT Objective-C runtime environment. */
290 #ifdef NEXT_OBJC_RUNTIME
291 int flag_next_runtime = 1;
292 #else
293 int flag_next_runtime = 0;
294 #endif
296 /* Set to the default thread-local storage (tls) model to use. */
298 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
300 /* Nonzero means change certain warnings into errors.
301 Usually these are warnings about failure to conform to some standard. */
303 int flag_pedantic_errors = 0;
305 /* -dA causes debug commentary information to be produced in
306 the generated assembly code (to make it more readable). This option
307 is generally only of use to those who actually need to read the
308 generated assembly code (perhaps while debugging the compiler itself).
309 Currently, this switch is only used by dwarfout.c; however, it is intended
310 to be a catchall for printing debug information in the assembler file. */
312 int flag_debug_asm = 0;
314 /* -dP causes the rtl to be emitted as a comment in assembly. */
316 int flag_dump_rtl_in_asm = 0;
318 /* When non-NULL, indicates that whenever space is allocated on the
319 stack, the resulting stack pointer must not pass this
320 address---that is, for stacks that grow downward, the stack pointer
321 must always be greater than or equal to this address; for stacks
322 that grow upward, the stack pointer must be less than this address.
323 At present, the rtx may be either a REG or a SYMBOL_REF, although
324 the support provided depends on the backend. */
325 rtx stack_limit_rtx;
327 /* Nonzero if we should track variables. When
328 flag_var_tracking == AUTODETECT_VALUE it will be set according
329 to optimize, debug_info_level and debug_hooks in process_options (). */
330 int flag_var_tracking = AUTODETECT_VALUE;
332 /* True if the user has tagged the function with the 'section'
333 attribute. */
335 bool user_defined_section_attribute = false;
337 /* Values of the -falign-* flags: how much to align labels in code.
338 0 means `use default', 1 means `don't align'.
339 For each variable, there is an _log variant which is the power
340 of two not less than the variable, for .align output. */
342 int align_loops_log;
343 int align_loops_max_skip;
344 int align_jumps_log;
345 int align_jumps_max_skip;
346 int align_labels_log;
347 int align_labels_max_skip;
348 int align_functions_log;
350 typedef struct
352 const char *const string;
353 int *const variable;
354 const int on_value;
356 lang_independent_options;
358 /* Nonzero if subexpressions must be evaluated from left-to-right. */
359 int flag_evaluation_order = 0;
361 /* The user symbol prefix after having resolved same. */
362 const char *user_label_prefix;
364 static const param_info lang_independent_params[] = {
365 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT, MIN, MAX) \
366 { OPTION, DEFAULT, false, MIN, MAX, HELP },
367 #include "params.def"
368 #undef DEFPARAM
369 { NULL, 0, false, 0, 0, NULL }
372 /* Output files for assembler code (real compiler output)
373 and debugging dumps. */
375 FILE *asm_out_file;
376 FILE *aux_info_file;
377 FILE *dump_file = NULL;
378 const char *dump_file_name;
380 /* The current working directory of a translation. It's generally the
381 directory from which compilation was initiated, but a preprocessed
382 file may specify the original directory in which it was
383 created. */
385 static const char *src_pwd;
387 /* Initialize src_pwd with the given string, and return true. If it
388 was already initialized, return false. As a special case, it may
389 be called with a NULL argument to test whether src_pwd has NOT been
390 initialized yet. */
392 bool
393 set_src_pwd (const char *pwd)
395 if (src_pwd)
397 if (strcmp (src_pwd, pwd) == 0)
398 return true;
399 else
400 return false;
403 src_pwd = xstrdup (pwd);
404 return true;
407 /* Return the directory from which the translation unit was initiated,
408 in case set_src_pwd() was not called before to assign it a
409 different value. */
411 const char *
412 get_src_pwd (void)
414 if (! src_pwd)
416 src_pwd = getpwd ();
417 if (!src_pwd)
418 src_pwd = ".";
421 return src_pwd;
424 /* Called when the start of a function definition is parsed,
425 this function prints on stderr the name of the function. */
426 void
427 announce_function (tree decl)
429 if (!quiet_flag)
431 if (rtl_dump_and_exit)
432 fprintf (stderr, "%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
433 else
434 fprintf (stderr, " %s", lang_hooks.decl_printable_name (decl, 2));
435 fflush (stderr);
436 pp_needs_newline (global_dc->printer) = true;
437 diagnostic_set_last_function (global_dc, (diagnostic_info *) NULL);
441 /* Initialize local_tick with the time of day, or -1 if
442 flag_random_seed is set. */
444 static void
445 init_local_tick (void)
447 if (!flag_random_seed)
449 /* Get some more or less random data. */
450 #ifdef HAVE_GETTIMEOFDAY
452 struct timeval tv;
454 gettimeofday (&tv, NULL);
455 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
457 #else
459 time_t now = time (NULL);
461 if (now != (time_t)-1)
462 local_tick = (unsigned) now;
464 #endif
466 else
467 local_tick = -1;
470 /* Set up a default flag_random_seed and local_tick, unless the user
471 already specified one. Must be called after init_local_tick. */
473 static void
474 init_random_seed (void)
476 unsigned HOST_WIDE_INT value;
477 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
479 value = local_tick ^ getpid ();
481 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
482 flag_random_seed = random_seed;
485 /* Obtain the random_seed string. Unless NOINIT, initialize it if
486 it's not provided in the command line. */
488 const char *
489 get_random_seed (bool noinit)
491 if (!flag_random_seed && !noinit)
492 init_random_seed ();
493 return flag_random_seed;
496 /* Modify the random_seed string to VAL. Return its previous
497 value. */
499 const char *
500 set_random_seed (const char *val)
502 const char *old = flag_random_seed;
503 flag_random_seed = val;
504 return old;
507 /* Decode the string P as an integral parameter.
508 If the string is indeed an integer return its numeric value else
509 issue an Invalid Option error for the option PNAME and return DEFVAL.
510 If PNAME is zero just return DEFVAL, do not call error. */
513 read_integral_parameter (const char *p, const char *pname, const int defval)
515 const char *endp = p;
517 while (*endp)
519 if (ISDIGIT (*endp))
520 endp++;
521 else
522 break;
525 if (*endp != 0)
527 if (pname != 0)
528 error ("invalid option argument %qs", pname);
529 return defval;
532 return atoi (p);
535 /* When compiling with a recent enough GCC, we use the GNU C "extern inline"
536 for floor_log2 and exact_log2; see toplev.h. That construct, however,
537 conflicts with the ISO C++ One Definition Rule. */
539 #if GCC_VERSION < 3004 || !defined (__cplusplus)
541 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
542 If X is 0, return -1. */
545 floor_log2 (unsigned HOST_WIDE_INT x)
547 int t = 0;
549 if (x == 0)
550 return -1;
552 #ifdef CLZ_HWI
553 t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
554 #else
555 if (HOST_BITS_PER_WIDE_INT > 64)
556 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
557 t += 64;
558 if (HOST_BITS_PER_WIDE_INT > 32)
559 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
560 t += 32;
561 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
562 t += 16;
563 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
564 t += 8;
565 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
566 t += 4;
567 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
568 t += 2;
569 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
570 t += 1;
571 #endif
573 return t;
576 /* Return the logarithm of X, base 2, considering X unsigned,
577 if X is a power of 2. Otherwise, returns -1. */
580 exact_log2 (unsigned HOST_WIDE_INT x)
582 if (x != (x & -x))
583 return -1;
584 #ifdef CTZ_HWI
585 return x ? CTZ_HWI (x) : -1;
586 #else
587 return floor_log2 (x);
588 #endif
591 #endif /* GCC_VERSION < 3004 || !defined (__cplusplus) */
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>";
691 else
692 input_name = remap_debug_filename (input_name);
694 len = strlen (input_name);
695 na = input_name + len;
697 /* NA gets INPUT_NAME sans directory names. */
698 while (na > input_name)
700 if (IS_DIR_SEPARATOR (na[-1]))
701 break;
702 na--;
705 #ifdef ASM_OUTPUT_SOURCE_FILENAME
706 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
707 #else
708 fprintf (asm_file, "\t.file\t");
709 output_quoted_string (asm_file, na);
710 fputc ('\n', asm_file);
711 #endif
714 /* A subroutine of wrapup_global_declarations. We've come to the end of
715 the compilation unit. All deferred variables should be undeferred,
716 and all incomplete decls should be finalized. */
718 void
719 wrapup_global_declaration_1 (tree decl)
721 /* We're not deferring this any longer. Assignment is conditional to
722 avoid needlessly dirtying PCH pages. */
723 if (CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_WITH_VIS)
724 && DECL_DEFER_OUTPUT (decl) != 0)
725 DECL_DEFER_OUTPUT (decl) = 0;
727 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
728 lang_hooks.finish_incomplete_decl (decl);
731 /* A subroutine of wrapup_global_declarations. Decide whether or not DECL
732 needs to be output. Return true if it is output. */
734 bool
735 wrapup_global_declaration_2 (tree decl)
737 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
738 return false;
740 /* Don't write out static consts, unless we still need them.
742 We also keep static consts if not optimizing (for debugging),
743 unless the user specified -fno-keep-static-consts.
744 ??? They might be better written into the debug information.
745 This is possible when using DWARF.
747 A language processor that wants static constants to be always
748 written out (even if it is not used) is responsible for
749 calling rest_of_decl_compilation itself. E.g. the C front-end
750 calls rest_of_decl_compilation from finish_decl.
751 One motivation for this is that is conventional in some
752 environments to write things like:
753 static const char rcsid[] = "... version string ...";
754 intending to force the string to be in the executable.
756 A language processor that would prefer to have unneeded
757 static constants "optimized away" would just defer writing
758 them out until here. E.g. C++ does this, because static
759 constants are often defined in header files.
761 ??? A tempting alternative (for both C and C++) would be
762 to force a constant to be written if and only if it is
763 defined in a main file, as opposed to an include file. */
765 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
767 struct varpool_node *node;
768 bool needed = true;
769 node = varpool_node (decl);
771 if (node->finalized)
772 needed = false;
773 else if (node->alias)
774 needed = false;
775 else if (!cgraph_global_info_ready
776 && (TREE_USED (decl)
777 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
778 /* needed */;
779 else if (node->needed)
780 /* needed */;
781 else if (DECL_COMDAT (decl))
782 needed = false;
783 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
784 && (optimize || !flag_keep_static_consts
785 || DECL_ARTIFICIAL (decl)))
786 needed = false;
788 if (needed)
790 rest_of_decl_compilation (decl, 1, 1);
791 return true;
795 return false;
798 /* Do any final processing required for the declarations in VEC, of
799 which there are LEN. We write out inline functions and variables
800 that have been deferred until this point, but which are required.
801 Returns nonzero if anything was put out. */
803 bool
804 wrapup_global_declarations (tree *vec, int len)
806 bool reconsider, output_something = false;
807 int i;
809 for (i = 0; i < len; i++)
810 wrapup_global_declaration_1 (vec[i]);
812 /* Now emit any global variables or functions that we have been
813 putting off. We need to loop in case one of the things emitted
814 here references another one which comes earlier in the list. */
817 reconsider = false;
818 for (i = 0; i < len; i++)
819 reconsider |= wrapup_global_declaration_2 (vec[i]);
820 if (reconsider)
821 output_something = true;
823 while (reconsider);
825 return output_something;
828 /* A subroutine of check_global_declarations. Issue appropriate warnings
829 for the global declaration DECL. */
831 void
832 check_global_declaration_1 (tree decl)
834 /* Warn about any function declared static but not defined. We don't
835 warn about variables, because many programs have static variables
836 that exist only to get some text into the object file. */
837 if (TREE_CODE (decl) == FUNCTION_DECL
838 && DECL_INITIAL (decl) == 0
839 && DECL_EXTERNAL (decl)
840 && ! DECL_ARTIFICIAL (decl)
841 && ! TREE_NO_WARNING (decl)
842 && ! TREE_PUBLIC (decl)
843 && (warn_unused_function
844 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
846 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
847 pedwarn ("%q+F used but never defined", decl);
848 else
849 warning (OPT_Wunused_function, "%q+F declared %<static%> but never defined", decl);
850 /* This symbol is effectively an "extern" declaration now. */
851 TREE_PUBLIC (decl) = 1;
852 assemble_external (decl);
855 /* Warn about static fns or vars defined but not used. */
856 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
857 /* We don't warn about "static const" variables because the
858 "rcs_id" idiom uses that construction. */
859 || (warn_unused_variable
860 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
861 && ! DECL_IN_SYSTEM_HEADER (decl)
862 && ! TREE_USED (decl)
863 /* The TREE_USED bit for file-scope decls is kept in the identifier,
864 to handle multiple external decls in different scopes. */
865 && ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
866 && ! DECL_EXTERNAL (decl)
867 && ! TREE_PUBLIC (decl)
868 /* A volatile variable might be used in some non-obvious way. */
869 && ! TREE_THIS_VOLATILE (decl)
870 /* Global register variables must be declared to reserve them. */
871 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
872 /* Otherwise, ask the language. */
873 && lang_hooks.decls.warn_unused_global (decl))
874 warning ((TREE_CODE (decl) == FUNCTION_DECL)
875 ? OPT_Wunused_function
876 : OPT_Wunused_variable,
877 "%q+D defined but not used", decl);
880 /* Issue appropriate warnings for the global declarations in VEC (of
881 which there are LEN). */
883 void
884 check_global_declarations (tree *vec, int len)
886 int i;
888 for (i = 0; i < len; i++)
889 check_global_declaration_1 (vec[i]);
892 /* Emit debugging information for all global declarations in VEC. */
894 void
895 emit_debug_global_declarations (tree *vec, int len)
897 int i;
899 /* Avoid confusing the debug information machinery when there are errors. */
900 if (errorcount != 0 || sorrycount != 0)
901 return;
903 timevar_push (TV_SYMOUT);
904 for (i = 0; i < len; i++)
905 debug_hooks->global_decl (vec[i]);
906 timevar_pop (TV_SYMOUT);
909 /* Warn about a use of an identifier which was marked deprecated. */
910 void
911 warn_deprecated_use (tree node)
913 if (node == 0 || !warn_deprecated_decl)
914 return;
916 if (DECL_P (node))
918 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
919 warning (OPT_Wdeprecated_declarations,
920 "%qD is deprecated (declared at %s:%d)",
921 node, xloc.file, xloc.line);
923 else if (TYPE_P (node))
925 const char *what = NULL;
926 tree decl = TYPE_STUB_DECL (node);
928 if (TYPE_NAME (node))
930 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
931 what = IDENTIFIER_POINTER (TYPE_NAME (node));
932 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
933 && DECL_NAME (TYPE_NAME (node)))
934 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
937 if (decl)
939 expanded_location xloc
940 = expand_location (DECL_SOURCE_LOCATION (decl));
941 if (what)
942 warning (OPT_Wdeprecated_declarations,
943 "%qs is deprecated (declared at %s:%d)", what,
944 xloc.file, xloc.line);
945 else
946 warning (OPT_Wdeprecated_declarations,
947 "type is deprecated (declared at %s:%d)",
948 xloc.file, xloc.line);
950 else
952 if (what)
953 warning (OPT_Wdeprecated_declarations, "%qs is deprecated", what);
954 else
955 warning (OPT_Wdeprecated_declarations, "type is deprecated");
960 /* Save the current INPUT_LOCATION on the top entry in the
961 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
962 INPUT_LOCATION accordingly. */
964 void
965 #ifdef USE_MAPPED_LOCATION
966 push_srcloc (location_t fline)
967 #else
968 push_srcloc (const char *file, int line)
969 #endif
971 struct file_stack *fs;
973 gcc_assert (!input_file_stack_restored);
974 if (input_file_stack_tick == (int) ((1U << INPUT_FILE_STACK_BITS) - 1))
975 sorry ("GCC supports only %d input file changes", input_file_stack_tick);
977 fs = XNEW (struct file_stack);
978 fs->location = input_location;
979 fs->next = input_file_stack;
980 #ifdef USE_MAPPED_LOCATION
981 input_location = fline;
982 #else
983 input_filename = file;
984 input_line = line;
985 #endif
986 input_file_stack = fs;
987 input_file_stack_tick++;
988 VEC_safe_push (fs_p, heap, input_file_stack_history, input_file_stack);
991 /* Pop the top entry off the stack of presently open source files.
992 Restore the INPUT_LOCATION from the new topmost entry on the
993 stack. */
995 void
996 pop_srcloc (void)
998 struct file_stack *fs;
1000 gcc_assert (!input_file_stack_restored);
1001 if (input_file_stack_tick == (int) ((1U << INPUT_FILE_STACK_BITS) - 1))
1002 sorry ("GCC supports only %d input file changes", input_file_stack_tick);
1004 fs = input_file_stack;
1005 input_location = fs->location;
1006 input_file_stack = fs->next;
1007 input_file_stack_tick++;
1008 VEC_safe_push (fs_p, heap, input_file_stack_history, input_file_stack);
1011 /* Restore the input file stack to its state as of TICK, for the sake
1012 of diagnostics after processing the whole input. Once this has
1013 been called, push_srcloc and pop_srcloc may no longer be
1014 called. */
1015 void
1016 restore_input_file_stack (int tick)
1018 if (tick == 0)
1019 input_file_stack = NULL;
1020 else
1021 input_file_stack = VEC_index (fs_p, input_file_stack_history, tick - 1);
1022 input_file_stack_tick = tick;
1023 input_file_stack_restored = true;
1026 /* Compile an entire translation unit. Write a file of assembly
1027 output and various debugging dumps. */
1029 static void
1030 compile_file (void)
1032 /* Initialize yet another pass. */
1034 init_cgraph ();
1035 init_final (main_input_filename);
1036 coverage_init (aux_base_name);
1038 timevar_push (TV_PARSE);
1040 /* Call the parser, which parses the entire file (calling
1041 rest_of_compilation for each function). */
1042 lang_hooks.parse_file (set_yydebug);
1044 /* In case there were missing block closers,
1045 get us back to the global binding level. */
1046 lang_hooks.clear_binding_stack ();
1048 /* Compilation is now finished except for writing
1049 what's left of the symbol table output. */
1050 timevar_pop (TV_PARSE);
1052 if (flag_syntax_only)
1053 return;
1055 lang_hooks.decls.final_write_globals ();
1057 if (errorcount || sorrycount)
1058 return;
1060 varpool_assemble_pending_decls ();
1061 finish_aliases_2 ();
1063 /* This must occur after the loop to output deferred functions.
1064 Else the coverage initializer would not be emitted if all the
1065 functions in this compilation unit were deferred. */
1066 coverage_finish ();
1068 /* Likewise for mudflap static object registrations. */
1069 if (flag_mudflap)
1070 mudflap_finish_file ();
1072 /* Likewise for emulated thread-local storage. */
1073 if (!targetm.have_tls)
1074 emutls_finish ();
1076 output_shared_constant_pool ();
1077 output_object_blocks ();
1079 /* Write out any pending weak symbol declarations. */
1080 weak_finish ();
1082 /* Do dbx symbols. */
1083 timevar_push (TV_SYMOUT);
1085 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
1086 if (dwarf2out_do_frame ())
1087 dwarf2out_frame_finish ();
1088 #endif
1090 (*debug_hooks->finish) (main_input_filename);
1091 timevar_pop (TV_SYMOUT);
1093 /* Output some stuff at end of file if nec. */
1095 dw2_output_indirect_constants ();
1097 /* Flush any pending external directives. */
1098 process_pending_assemble_externals ();
1100 /* Attach a special .ident directive to the end of the file to identify
1101 the version of GCC which compiled this code. The format of the .ident
1102 string is patterned after the ones produced by native SVR4 compilers. */
1103 #ifdef IDENT_ASM_OP
1104 if (!flag_no_ident)
1106 const char *pkg_version = "(GNU) ";
1108 if (strcmp ("(GCC) ", pkgversion_string))
1109 pkg_version = pkgversion_string;
1110 fprintf (asm_out_file, "%s\"GCC: %s%s\"\n",
1111 IDENT_ASM_OP, pkg_version, version_string);
1113 #endif
1115 /* This must be at the end. Some target ports emit end of file directives
1116 into the assembly file here, and hence we can not output anything to the
1117 assembly file after this point. */
1118 targetm.asm_out.file_end ();
1121 /* Parse a -d... command line switch. */
1123 void
1124 decode_d_option (const char *arg)
1126 int c;
1128 while (*arg)
1129 switch (c = *arg++)
1131 case 'A':
1132 flag_debug_asm = 1;
1133 break;
1134 case 'p':
1135 flag_print_asm_name = 1;
1136 break;
1137 case 'P':
1138 flag_dump_rtl_in_asm = 1;
1139 flag_print_asm_name = 1;
1140 break;
1141 case 'v':
1142 graph_dump_format = vcg;
1143 break;
1144 case 'x':
1145 rtl_dump_and_exit = 1;
1146 break;
1147 case 'y':
1148 set_yydebug = 1;
1149 break;
1150 case 'D': /* These are handled by the preprocessor. */
1151 case 'I':
1152 break;
1153 case 'H':
1154 setup_core_dumping();
1155 break;
1157 case 'a':
1158 default:
1159 if (!enable_rtl_dump_file (c))
1160 warning (0, "unrecognized gcc debugging option: %c", c);
1161 break;
1165 /* Indexed by enum debug_info_type. */
1166 const char *const debug_type_names[] =
1168 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1171 /* Print version information to FILE.
1172 Each line begins with INDENT (for the case where FILE is the
1173 assembler output file). */
1175 void
1176 print_version (FILE *file, const char *indent)
1178 static const char fmt1[] =
1179 #ifdef __GNUC__
1180 N_("%s%s%s %sversion %s (%s)\n%s\tcompiled by GNU C version %s, ")
1181 #else
1182 N_("%s%s%s %sversion %s (%s) compiled by CC, ")
1183 #endif
1185 static const char fmt2[] =
1186 N_("GMP version %s, MPFR version %s.\n");
1187 static const char fmt3[] =
1188 N_("%s%swarning: %s header version %s differs from library version %s.\n");
1189 static const char fmt4[] =
1190 N_("%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n");
1191 #ifndef __VERSION__
1192 #define __VERSION__ "[?]"
1193 #endif
1194 fprintf (file,
1195 file == stderr ? _(fmt1) : fmt1,
1196 indent, *indent != 0 ? " " : "",
1197 lang_hooks.name, pkgversion_string, version_string, TARGET_NAME,
1198 indent, __VERSION__);
1200 /* We need to stringify the GMP macro values. Ugh, gmp_version has
1201 two string formats, "i.j.k" and "i.j" when k is zero. */
1202 #define GCC_GMP_STRINGIFY_VERSION3(X) #X
1203 #define GCC_GMP_STRINGIFY_VERSION2(X) GCC_GMP_STRINGIFY_VERSION3(X)
1204 #if __GNU_MP_VERSION_PATCHLEVEL == 0
1205 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1206 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR)
1207 #else
1208 #define GCC_GMP_STRINGIFY_VERSION GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION) "." \
1209 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_MINOR) "." \
1210 GCC_GMP_STRINGIFY_VERSION2(__GNU_MP_VERSION_PATCHLEVEL)
1211 #endif
1212 fprintf (file,
1213 file == stderr ? _(fmt2) : fmt2,
1214 GCC_GMP_STRINGIFY_VERSION, MPFR_VERSION_STRING);
1215 if (strcmp (GCC_GMP_STRINGIFY_VERSION, gmp_version))
1216 fprintf (file,
1217 file == stderr ? _(fmt3) : fmt3,
1218 indent, *indent != 0 ? " " : "",
1219 "GMP", GCC_GMP_STRINGIFY_VERSION, gmp_version);
1220 if (strcmp (MPFR_VERSION_STRING, mpfr_get_version ()))
1221 fprintf (file,
1222 file == stderr ? _(fmt3) : fmt3,
1223 indent, *indent != 0 ? " " : "",
1224 "MPFR", MPFR_VERSION_STRING, mpfr_get_version ());
1225 fprintf (file,
1226 file == stderr ? _(fmt4) : fmt4,
1227 indent, *indent != 0 ? " " : "",
1228 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1231 #ifdef ASM_COMMENT_START
1232 static int
1233 print_to_asm_out_file (print_switch_type type, const char * text)
1235 bool prepend_sep = true;
1237 switch (type)
1239 case SWITCH_TYPE_LINE_END:
1240 putc ('\n', asm_out_file);
1241 return 1;
1243 case SWITCH_TYPE_LINE_START:
1244 fputs (ASM_COMMENT_START, asm_out_file);
1245 return strlen (ASM_COMMENT_START);
1247 case SWITCH_TYPE_DESCRIPTIVE:
1248 if (ASM_COMMENT_START[0] == 0)
1249 prepend_sep = false;
1250 /* Drop through. */
1251 case SWITCH_TYPE_PASSED:
1252 case SWITCH_TYPE_ENABLED:
1253 if (prepend_sep)
1254 fputc (' ', asm_out_file);
1255 fprintf (asm_out_file, text);
1256 /* No need to return the length here as
1257 print_single_switch has already done it. */
1258 return 0;
1260 default:
1261 return -1;
1264 #endif
1266 static int
1267 print_to_stderr (print_switch_type type, const char * text)
1269 switch (type)
1271 case SWITCH_TYPE_LINE_END:
1272 putc ('\n', stderr);
1273 return 1;
1275 case SWITCH_TYPE_LINE_START:
1276 return 0;
1278 case SWITCH_TYPE_PASSED:
1279 case SWITCH_TYPE_ENABLED:
1280 fputc (' ', stderr);
1281 /* Drop through. */
1283 case SWITCH_TYPE_DESCRIPTIVE:
1284 fprintf (stderr, text);
1285 /* No need to return the length here as
1286 print_single_switch has already done it. */
1287 return 0;
1289 default:
1290 return -1;
1294 /* Print an option value and return the adjusted position in the line.
1295 ??? print_fn doesn't handle errors, eg disk full; presumably other
1296 code will catch a disk full though. */
1298 static int
1299 print_single_switch (print_switch_fn_type print_fn,
1300 int pos,
1301 print_switch_type type,
1302 const char * text)
1304 /* The ultrix fprintf returns 0 on success, so compute the result
1305 we want here since we need it for the following test. The +1
1306 is for the separator character that will probably be emitted. */
1307 int len = strlen (text) + 1;
1309 if (pos != 0
1310 && pos + len > MAX_LINE)
1312 print_fn (SWITCH_TYPE_LINE_END, NULL);
1313 pos = 0;
1316 if (pos == 0)
1317 pos += print_fn (SWITCH_TYPE_LINE_START, NULL);
1319 print_fn (type, text);
1320 return pos + len;
1323 /* Print active target switches using PRINT_FN.
1324 POS is the current cursor position and MAX is the size of a "line".
1325 Each line begins with INDENT and ends with TERM.
1326 Each switch is separated from the next by SEP. */
1328 static void
1329 print_switch_values (print_switch_fn_type print_fn)
1331 int pos = 0;
1332 size_t j;
1333 const char **p;
1335 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1336 that it can be printed below. This helps reproducibility. */
1337 if (!flag_random_seed)
1338 init_random_seed ();
1340 /* Print the options as passed. */
1341 pos = print_single_switch (print_fn, pos,
1342 SWITCH_TYPE_DESCRIPTIVE, _("options passed: "));
1344 for (p = &save_argv[1]; *p != NULL; p++)
1346 if (**p == '-')
1348 /* Ignore these. */
1349 if (strcmp (*p, "-o") == 0
1350 || strcmp (*p, "-dumpbase") == 0
1351 || strcmp (*p, "-auxbase") == 0)
1353 if (p[1] != NULL)
1354 p++;
1355 continue;
1358 if (strcmp (*p, "-quiet") == 0
1359 || strcmp (*p, "-version") == 0)
1360 continue;
1362 if ((*p)[1] == 'd')
1363 continue;
1366 pos = print_single_switch (print_fn, pos, SWITCH_TYPE_PASSED, *p);
1369 if (pos > 0)
1370 print_fn (SWITCH_TYPE_LINE_END, NULL);
1372 /* Print the -f and -m options that have been enabled.
1373 We don't handle language specific options but printing argv
1374 should suffice. */
1375 pos = print_single_switch (print_fn, 0,
1376 SWITCH_TYPE_DESCRIPTIVE, _("options enabled: "));
1378 for (j = 0; j < cl_options_count; j++)
1379 if ((cl_options[j].flags & CL_REPORT)
1380 && option_enabled (j) > 0)
1381 pos = print_single_switch (print_fn, pos,
1382 SWITCH_TYPE_ENABLED, cl_options[j].opt_text);
1384 print_fn (SWITCH_TYPE_LINE_END, NULL);
1387 /* Open assembly code output file. Do this even if -fsyntax-only is
1388 on, because then the driver will have provided the name of a
1389 temporary file or bit bucket for us. NAME is the file specified on
1390 the command line, possibly NULL. */
1391 static void
1392 init_asm_output (const char *name)
1394 if (name == NULL && asm_file_name == 0)
1395 asm_out_file = stdout;
1396 else
1398 if (asm_file_name == 0)
1400 int len = strlen (dump_base_name);
1401 char *dumpname = XNEWVEC (char, len + 6);
1403 memcpy (dumpname, dump_base_name, len + 1);
1404 strip_off_ending (dumpname, len);
1405 strcat (dumpname, ".s");
1406 asm_file_name = dumpname;
1408 if (!strcmp (asm_file_name, "-"))
1409 asm_out_file = stdout;
1410 else
1411 asm_out_file = fopen (asm_file_name, "w+b");
1412 if (asm_out_file == 0)
1413 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1416 if (!flag_syntax_only)
1418 targetm.asm_out.file_start ();
1420 if (flag_record_gcc_switches)
1422 if (targetm.asm_out.record_gcc_switches)
1424 /* Let the target know that we are about to start recording. */
1425 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1426 NULL);
1427 /* Now record the switches. */
1428 print_switch_values (targetm.asm_out.record_gcc_switches);
1429 /* Let the target know that the recording is over. */
1430 targetm.asm_out.record_gcc_switches (SWITCH_TYPE_DESCRIPTIVE,
1431 NULL);
1433 else
1434 inform ("-frecord-gcc-switches is not supported by the current target");
1437 #ifdef ASM_COMMENT_START
1438 if (flag_verbose_asm)
1440 /* Print the list of switches in effect
1441 into the assembler file as comments. */
1442 print_version (asm_out_file, ASM_COMMENT_START);
1443 print_switch_values (print_to_asm_out_file);
1444 fprintf (asm_out_file, "\n");
1446 #endif
1450 /* Return true if the state of option OPTION should be stored in PCH files
1451 and checked by default_pch_valid_p. Store the option's current state
1452 in STATE if so. */
1454 static inline bool
1455 option_affects_pch_p (int option, struct cl_option_state *state)
1457 if ((cl_options[option].flags & CL_TARGET) == 0)
1458 return false;
1459 if (cl_options[option].flag_var == &target_flags)
1460 if (targetm.check_pch_target_flags)
1461 return false;
1462 return get_option_state (option, state);
1465 /* Default version of get_pch_validity.
1466 By default, every flag difference is fatal; that will be mostly right for
1467 most targets, but completely right for very few. */
1469 void *
1470 default_get_pch_validity (size_t *len)
1472 struct cl_option_state state;
1473 size_t i;
1474 char *result, *r;
1476 *len = 2;
1477 if (targetm.check_pch_target_flags)
1478 *len += sizeof (target_flags);
1479 for (i = 0; i < cl_options_count; i++)
1480 if (option_affects_pch_p (i, &state))
1481 *len += state.size;
1483 result = r = XNEWVEC (char, *len);
1484 r[0] = flag_pic;
1485 r[1] = flag_pie;
1486 r += 2;
1487 if (targetm.check_pch_target_flags)
1489 memcpy (r, &target_flags, sizeof (target_flags));
1490 r += sizeof (target_flags);
1493 for (i = 0; i < cl_options_count; i++)
1494 if (option_affects_pch_p (i, &state))
1496 memcpy (r, state.data, state.size);
1497 r += state.size;
1500 return result;
1503 /* Return a message which says that a PCH file was created with a different
1504 setting of OPTION. */
1506 static const char *
1507 pch_option_mismatch (const char *option)
1509 char *r;
1511 asprintf (&r, _("created and used with differing settings of '%s'"), option);
1512 if (r == NULL)
1513 return _("out of memory");
1514 return r;
1517 /* Default version of pch_valid_p. */
1519 const char *
1520 default_pch_valid_p (const void *data_p, size_t len)
1522 struct cl_option_state state;
1523 const char *data = (const char *)data_p;
1524 size_t i;
1526 /* -fpic and -fpie also usually make a PCH invalid. */
1527 if (data[0] != flag_pic)
1528 return _("created and used with different settings of -fpic");
1529 if (data[1] != flag_pie)
1530 return _("created and used with different settings of -fpie");
1531 data += 2;
1533 /* Check target_flags. */
1534 if (targetm.check_pch_target_flags)
1536 int tf;
1537 const char *r;
1539 memcpy (&tf, data, sizeof (target_flags));
1540 data += sizeof (target_flags);
1541 len -= sizeof (target_flags);
1542 r = targetm.check_pch_target_flags (tf);
1543 if (r != NULL)
1544 return r;
1547 for (i = 0; i < cl_options_count; i++)
1548 if (option_affects_pch_p (i, &state))
1550 if (memcmp (data, state.data, state.size) != 0)
1551 return pch_option_mismatch (cl_options[i].opt_text);
1552 data += state.size;
1553 len -= state.size;
1556 return NULL;
1559 /* Default tree printer. Handles declarations only. */
1560 static bool
1561 default_tree_printer (pretty_printer * pp, text_info *text, const char *spec,
1562 int precision, bool wide, bool set_locus, bool hash)
1564 tree t;
1566 /* FUTURE: %+x should set the locus. */
1567 if (precision != 0 || wide || hash)
1568 return false;
1570 switch (*spec)
1572 case 'D':
1573 t = va_arg (*text->args_ptr, tree);
1574 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
1575 t = DECL_DEBUG_EXPR (t);
1576 break;
1578 case 'F':
1579 case 'T':
1580 t = va_arg (*text->args_ptr, tree);
1581 break;
1583 default:
1584 return false;
1587 if (set_locus && text->locus)
1588 *text->locus = DECL_SOURCE_LOCATION (t);
1590 if (DECL_P (t))
1592 const char *n = DECL_NAME (t)
1593 ? lang_hooks.decl_printable_name (t, 2)
1594 : "<anonymous>";
1595 pp_string (pp, n);
1597 else
1598 dump_generic_node (pp, t, 0, TDF_DIAGNOSTIC, 0);
1600 return true;
1603 /* A helper function; used as the reallocator function for cpp's line
1604 table. */
1605 static void *
1606 realloc_for_line_map (void *ptr, size_t len)
1608 return ggc_realloc (ptr, len);
1611 /* Initialization of the front end environment, before command line
1612 options are parsed. Signal handlers, internationalization etc.
1613 ARGV0 is main's argv[0]. */
1614 static void
1615 general_init (const char *argv0)
1617 const char *p;
1619 p = argv0 + strlen (argv0);
1620 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1621 --p;
1622 progname = p;
1624 xmalloc_set_program_name (progname);
1626 hex_init ();
1628 /* Unlock the stdio streams. */
1629 unlock_std_streams ();
1631 gcc_init_libintl ();
1633 /* Initialize the diagnostics reporting machinery, so option parsing
1634 can give warnings and errors. */
1635 diagnostic_initialize (global_dc);
1636 /* Set a default printer. Language specific initializations will
1637 override it later. */
1638 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1640 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1641 #ifdef SIGSEGV
1642 signal (SIGSEGV, crash_signal);
1643 #endif
1644 #ifdef SIGILL
1645 signal (SIGILL, crash_signal);
1646 #endif
1647 #ifdef SIGBUS
1648 signal (SIGBUS, crash_signal);
1649 #endif
1650 #ifdef SIGABRT
1651 signal (SIGABRT, crash_signal);
1652 #endif
1653 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1654 signal (SIGIOT, crash_signal);
1655 #endif
1656 #ifdef SIGFPE
1657 signal (SIGFPE, crash_signal);
1658 #endif
1660 /* Other host-specific signal setup. */
1661 (*host_hooks.extra_signals)();
1663 /* Initialize the garbage-collector, string pools and tree type hash
1664 table. */
1665 init_ggc ();
1666 init_stringpool ();
1667 line_table = GGC_NEW (struct line_maps);
1668 linemap_init (line_table);
1669 line_table->reallocator = realloc_for_line_map;
1670 init_ttree ();
1672 /* Initialize register usage now so switches may override. */
1673 init_reg_sets ();
1675 /* Register the language-independent parameters. */
1676 add_params (lang_independent_params, LAST_PARAM);
1678 /* This must be done after add_params but before argument processing. */
1679 init_ggc_heuristics();
1680 init_optimization_passes ();
1683 /* Return true if the current target supports -fsection-anchors. */
1685 static bool
1686 target_supports_section_anchors_p (void)
1688 if (targetm.min_anchor_offset == 0 && targetm.max_anchor_offset == 0)
1689 return false;
1691 if (targetm.asm_out.output_anchor == NULL)
1692 return false;
1694 return true;
1697 /* Default the align_* variables to 1 if they're still unset, and
1698 set up the align_*_log variables. */
1699 static void
1700 init_alignments (void)
1702 if (align_loops <= 0)
1703 align_loops = 1;
1704 if (align_loops_max_skip > align_loops)
1705 align_loops_max_skip = align_loops - 1;
1706 align_loops_log = floor_log2 (align_loops * 2 - 1);
1707 if (align_jumps <= 0)
1708 align_jumps = 1;
1709 if (align_jumps_max_skip > align_jumps)
1710 align_jumps_max_skip = align_jumps - 1;
1711 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1712 if (align_labels <= 0)
1713 align_labels = 1;
1714 align_labels_log = floor_log2 (align_labels * 2 - 1);
1715 if (align_labels_max_skip > align_labels)
1716 align_labels_max_skip = align_labels - 1;
1717 if (align_functions <= 0)
1718 align_functions = 1;
1719 align_functions_log = floor_log2 (align_functions * 2 - 1);
1722 /* Process the options that have been parsed. */
1723 static void
1724 process_options (void)
1726 /* Just in case lang_hooks.post_options ends up calling a debug_hook.
1727 This can happen with incorrect pre-processed input. */
1728 debug_hooks = &do_nothing_debug_hooks;
1730 /* Allow the front end to perform consistency checks and do further
1731 initialization based on the command line options. This hook also
1732 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1733 so we can correctly initialize debug output. */
1734 no_backend = lang_hooks.post_options (&main_input_filename);
1735 #ifndef USE_MAPPED_LOCATION
1736 input_filename = main_input_filename;
1737 #endif
1739 #ifdef OVERRIDE_OPTIONS
1740 /* Some machines may reject certain combinations of options. */
1741 OVERRIDE_OPTIONS;
1742 #endif
1744 if (flag_section_anchors && !target_supports_section_anchors_p ())
1746 warning (OPT_fsection_anchors,
1747 "this target does not support %qs", "-fsection-anchors");
1748 flag_section_anchors = 0;
1751 if (flag_short_enums == 2)
1752 flag_short_enums = targetm.default_short_enums ();
1754 /* Set aux_base_name if not already set. */
1755 if (aux_base_name)
1757 else if (main_input_filename)
1759 char *name = xstrdup (lbasename (main_input_filename));
1761 strip_off_ending (name, strlen (name));
1762 aux_base_name = name;
1764 else
1765 aux_base_name = "gccaux";
1767 /* Unrolling all loops implies that standard loop unrolling must also
1768 be done. */
1769 if (flag_unroll_all_loops)
1770 flag_unroll_loops = 1;
1772 /* The loop unrolling code assumes that cse will be run after loop.
1773 web and rename-registers also help when run after loop unrolling. */
1775 if (flag_rerun_cse_after_loop == AUTODETECT_VALUE)
1776 flag_rerun_cse_after_loop = flag_unroll_loops || flag_peel_loops;
1777 if (flag_web == AUTODETECT_VALUE)
1778 flag_web = flag_unroll_loops || flag_peel_loops;
1779 if (flag_rename_registers == AUTODETECT_VALUE)
1780 flag_rename_registers = flag_unroll_loops || flag_peel_loops;
1782 if (flag_non_call_exceptions)
1783 flag_asynchronous_unwind_tables = 1;
1784 if (flag_asynchronous_unwind_tables)
1785 flag_unwind_tables = 1;
1787 if (!flag_unit_at_a_time)
1788 flag_section_anchors = 0;
1790 if (flag_value_profile_transformations)
1791 flag_profile_values = 1;
1793 /* Warn about options that are not supported on this machine. */
1794 #ifndef INSN_SCHEDULING
1795 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1796 warning (0, "instruction scheduling not supported on this target machine");
1797 #endif
1798 #ifndef DELAY_SLOTS
1799 if (flag_delayed_branch)
1800 warning (0, "this target machine does not have delayed branches");
1801 #endif
1803 user_label_prefix = USER_LABEL_PREFIX;
1804 if (flag_leading_underscore != -1)
1806 /* If the default prefix is more complicated than "" or "_",
1807 issue a warning and ignore this option. */
1808 if (user_label_prefix[0] == 0 ||
1809 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1811 user_label_prefix = flag_leading_underscore ? "_" : "";
1813 else
1814 warning (0, "-f%sleading-underscore not supported on this target machine",
1815 flag_leading_underscore ? "" : "no-");
1818 /* If we are in verbose mode, write out the version and maybe all the
1819 option flags in use. */
1820 if (version_flag)
1822 print_version (stderr, "");
1823 if (! quiet_flag)
1824 print_switch_values (print_to_stderr);
1827 if (flag_syntax_only)
1829 write_symbols = NO_DEBUG;
1830 profile_flag = 0;
1833 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1834 level is 0. */
1835 if (debug_info_level == DINFO_LEVEL_NONE)
1836 write_symbols = NO_DEBUG;
1838 /* Now we know write_symbols, set up the debug hooks based on it.
1839 By default we do nothing for debug output. */
1840 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1841 default_debug_hooks = &do_nothing_debug_hooks;
1842 #if defined(DBX_DEBUGGING_INFO)
1843 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1844 default_debug_hooks = &dbx_debug_hooks;
1845 #endif
1846 #if defined(XCOFF_DEBUGGING_INFO)
1847 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1848 default_debug_hooks = &xcoff_debug_hooks;
1849 #endif
1850 #ifdef SDB_DEBUGGING_INFO
1851 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1852 default_debug_hooks = &sdb_debug_hooks;
1853 #endif
1854 #ifdef DWARF2_DEBUGGING_INFO
1855 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1856 default_debug_hooks = &dwarf2_debug_hooks;
1857 #endif
1858 #ifdef VMS_DEBUGGING_INFO
1859 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1860 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1861 default_debug_hooks = &vmsdbg_debug_hooks;
1862 #endif
1864 if (write_symbols == NO_DEBUG)
1866 #if defined(DBX_DEBUGGING_INFO)
1867 else if (write_symbols == DBX_DEBUG)
1868 debug_hooks = &dbx_debug_hooks;
1869 #endif
1870 #if defined(XCOFF_DEBUGGING_INFO)
1871 else if (write_symbols == XCOFF_DEBUG)
1872 debug_hooks = &xcoff_debug_hooks;
1873 #endif
1874 #ifdef SDB_DEBUGGING_INFO
1875 else if (write_symbols == SDB_DEBUG)
1876 debug_hooks = &sdb_debug_hooks;
1877 #endif
1878 #ifdef DWARF2_DEBUGGING_INFO
1879 else if (write_symbols == DWARF2_DEBUG)
1880 debug_hooks = &dwarf2_debug_hooks;
1881 #endif
1882 #ifdef VMS_DEBUGGING_INFO
1883 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1884 debug_hooks = &vmsdbg_debug_hooks;
1885 #endif
1886 else
1887 error ("target system does not support the \"%s\" debug format",
1888 debug_type_names[write_symbols]);
1890 /* Now we know which debug output will be used so we can set
1891 flag_var_tracking, flag_rename_registers if the user has
1892 not specified them. */
1893 if (debug_info_level < DINFO_LEVEL_NORMAL
1894 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1896 if (flag_var_tracking == 1
1897 || flag_var_tracking_uninit == 1)
1899 if (debug_info_level < DINFO_LEVEL_NORMAL)
1900 warning (0, "variable tracking requested, but useless unless "
1901 "producing debug info");
1902 else
1903 warning (0, "variable tracking requested, but not supported "
1904 "by this debug format");
1906 flag_var_tracking = 0;
1907 flag_var_tracking_uninit = 0;
1910 if (flag_rename_registers == AUTODETECT_VALUE)
1911 flag_rename_registers = default_debug_hooks->var_location
1912 != do_nothing_debug_hooks.var_location;
1914 if (flag_var_tracking == AUTODETECT_VALUE)
1915 flag_var_tracking = optimize >= 1;
1917 if (flag_tree_cselim == AUTODETECT_VALUE)
1918 #ifdef HAVE_conditional_move
1919 flag_tree_cselim = 1;
1920 #else
1921 flag_tree_cselim = 0;
1922 #endif
1924 /* If the user specifically requested variable tracking with tagging
1925 uninitialized variables, we need to turn on variable tracking.
1926 (We already determined above that variable tracking is feasible.) */
1927 if (flag_var_tracking_uninit)
1928 flag_var_tracking = 1;
1930 /* If auxiliary info generation is desired, open the output file.
1931 This goes in the same directory as the source file--unlike
1932 all the other output files. */
1933 if (flag_gen_aux_info)
1935 aux_info_file = fopen (aux_info_file_name, "w");
1936 if (aux_info_file == 0)
1937 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1940 if (! targetm.have_named_sections)
1942 if (flag_function_sections)
1944 warning (0, "-ffunction-sections not supported for this target");
1945 flag_function_sections = 0;
1947 if (flag_data_sections)
1949 warning (0, "-fdata-sections not supported for this target");
1950 flag_data_sections = 0;
1954 if (flag_function_sections && profile_flag)
1956 warning (0, "-ffunction-sections disabled; it makes profiling impossible");
1957 flag_function_sections = 0;
1960 #ifndef HAVE_prefetch
1961 if (flag_prefetch_loop_arrays)
1963 warning (0, "-fprefetch-loop-arrays not supported for this target");
1964 flag_prefetch_loop_arrays = 0;
1966 #else
1967 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
1969 warning (0, "-fprefetch-loop-arrays not supported for this target (try -march switches)");
1970 flag_prefetch_loop_arrays = 0;
1972 #endif
1974 /* This combination of options isn't handled for i386 targets and doesn't
1975 make much sense anyway, so don't allow it. */
1976 if (flag_prefetch_loop_arrays && optimize_size)
1978 warning (0, "-fprefetch-loop-arrays is not supported with -Os");
1979 flag_prefetch_loop_arrays = 0;
1982 #ifndef OBJECT_FORMAT_ELF
1983 #ifndef OBJECT_FORMAT_MACHO
1984 if (flag_function_sections && write_symbols != NO_DEBUG)
1985 warning (0, "-ffunction-sections may affect debugging on some targets");
1986 #endif
1987 #endif
1989 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1990 if (flag_signaling_nans)
1991 flag_trapping_math = 1;
1993 /* We cannot reassociate if we want traps or signed zeros.  */
1994 if (flag_associative_math && (flag_trapping_math || flag_signed_zeros))
1996 warning (0, "-fassociative-math disabled; other options take precedence");
1997 flag_associative_math = 0;
2000 /* With -fcx-limited-range, we do cheap and quick complex arithmetic. */
2001 if (flag_cx_limited_range)
2002 flag_complex_method = 0;
2004 /* Targets must be able to place spill slots at lower addresses. If the
2005 target already uses a soft frame pointer, the transition is trivial. */
2006 if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
2008 warning (0, "-fstack-protector not supported for this target");
2009 flag_stack_protect = 0;
2011 if (!flag_stack_protect)
2012 warn_stack_protect = 0;
2014 /* ??? Unwind info is not correct around the CFG unless either a frame
2015 pointer is present or A_O_A is set. Fixing this requires rewriting
2016 unwind info generation to be aware of the CFG and propagating states
2017 around edges. */
2018 if (flag_unwind_tables && !ACCUMULATE_OUTGOING_ARGS
2019 && flag_omit_frame_pointer)
2021 warning (0, "unwind tables currently require a frame pointer "
2022 "for correctness");
2023 flag_omit_frame_pointer = 0;
2027 /* This function can be called multiple times to reinitialize the compiler
2028 back end when register classes or instruction sets have changed,
2029 before each function. */
2030 static void
2031 backend_init_target (void)
2033 /* Initialize alignment variables. */
2034 init_alignments ();
2036 /* This reinitializes hard_frame_pointer, and calls init_reg_modes_target()
2037 to initialize reg_raw_mode[]. */
2038 init_emit_regs ();
2040 /* This invokes target hooks to set fixed_reg[] etc, which is
2041 mode-dependent. */
2042 init_regs ();
2044 /* This depends on stack_pointer_rtx. */
2045 init_fake_stack_mems ();
2047 /* Sets static_base_value[HARD_FRAME_POINTER_REGNUM], which is
2048 mode-dependent. */
2049 init_alias_target ();
2051 /* Depends on HARD_FRAME_POINTER_REGNUM. */
2052 init_reload ();
2054 /* The following initialization functions need to generate rtl, so
2055 provide a dummy function context for them. */
2056 init_dummy_function_start ();
2058 /* rtx_cost is mode-dependent, so cached values need to be recomputed
2059 on a mode change. */
2060 init_expmed ();
2062 /* We may need to recompute regno_save_code[] and regno_restore_code[]
2063 after a mode change as well. */
2064 if (flag_caller_saves)
2065 init_caller_save ();
2066 expand_dummy_function_end ();
2069 /* Initialize the compiler back end. This function is called only once,
2070 when starting the compiler. */
2071 static void
2072 backend_init (void)
2074 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2075 || debug_info_level == DINFO_LEVEL_VERBOSE
2076 #ifdef VMS_DEBUGGING_INFO
2077 /* Enable line number info for traceback. */
2078 || debug_info_level > DINFO_LEVEL_NONE
2079 #endif
2080 || flag_test_coverage);
2082 init_rtlanal ();
2083 init_inline_once ();
2084 init_varasm_once ();
2085 save_register_info ();
2087 /* Initialize the target-specific back end pieces. */
2088 backend_init_target ();
2091 /* Initialize things that are both lang-dependent and target-dependent.
2092 This function can be called more than once if target parameters change. */
2093 static void
2094 lang_dependent_init_target (void)
2096 /* This creates various _DECL nodes, so needs to be called after the
2097 front end is initialized. It also depends on the HAVE_xxx macros
2098 generated from the target machine description. */
2099 init_optabs ();
2101 /* The following initialization functions need to generate rtl, so
2102 provide a dummy function context for them. */
2103 init_dummy_function_start ();
2105 /* Do the target-specific parts of expr initialization. */
2106 init_expr_target ();
2108 /* Although the actions of init_set_costs are language-independent,
2109 it uses optabs, so we cannot call it from backend_init. */
2110 init_set_costs ();
2112 expand_dummy_function_end ();
2115 /* Language-dependent initialization. Returns nonzero on success. */
2116 static int
2117 lang_dependent_init (const char *name)
2119 location_t save_loc = input_location;
2120 if (dump_base_name == 0)
2121 dump_base_name = name && name[0] ? name : "gccdump";
2123 /* Other front-end initialization. */
2124 #ifdef USE_MAPPED_LOCATION
2125 input_location = BUILTINS_LOCATION;
2126 #else
2127 input_filename = "<built-in>";
2128 input_line = 0;
2129 #endif
2130 if (lang_hooks.init () == 0)
2131 return 0;
2132 input_location = save_loc;
2134 init_asm_output (name);
2136 /* This creates various _DECL nodes, so needs to be called after the
2137 front end is initialized. */
2138 init_eh ();
2140 /* Do the target-specific parts of the initialization. */
2141 lang_dependent_init_target ();
2143 /* If dbx symbol table desired, initialize writing it and output the
2144 predefined types. */
2145 timevar_push (TV_SYMOUT);
2147 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
2148 if (dwarf2out_do_frame ())
2149 dwarf2out_frame_init ();
2150 #endif
2152 /* Now we have the correct original filename, we can initialize
2153 debug output. */
2154 (*debug_hooks->init) (name);
2156 timevar_pop (TV_SYMOUT);
2158 return 1;
2162 /* Reinitialize everything when target parameters, such as register usage,
2163 have changed. */
2164 void
2165 target_reinit (void)
2167 /* Reinitialize RTL backend. */
2168 backend_init_target ();
2170 /* Reinitialize lang-dependent parts. */
2171 lang_dependent_init_target ();
2174 void
2175 dump_memory_report (bool final)
2177 ggc_print_statistics ();
2178 stringpool_statistics ();
2179 dump_tree_statistics ();
2180 dump_rtx_statistics ();
2181 dump_varray_statistics ();
2182 dump_alloc_pool_statistics ();
2183 dump_bitmap_statistics ();
2184 dump_ggc_loc_statistics (final);
2187 /* Clean up: close opened files, etc. */
2189 static void
2190 finalize (void)
2192 /* Close the dump files. */
2193 if (flag_gen_aux_info)
2195 fclose (aux_info_file);
2196 if (errorcount)
2197 unlink (aux_info_file_name);
2200 /* Close non-debugging input and output files. Take special care to note
2201 whether fclose returns an error, since the pages might still be on the
2202 buffer chain while the file is open. */
2204 if (asm_out_file)
2206 if (ferror (asm_out_file) != 0)
2207 fatal_error ("error writing to %s: %m", asm_file_name);
2208 if (fclose (asm_out_file) != 0)
2209 fatal_error ("error closing %s: %m", asm_file_name);
2212 finish_optimization_passes ();
2214 if (mem_report)
2215 dump_memory_report (true);
2217 /* Language-specific end of compilation actions. */
2218 lang_hooks.finish ();
2221 /* Initialize the compiler, and compile the input file. */
2222 static void
2223 do_compile (void)
2225 /* Initialize timing first. The C front ends read the main file in
2226 the post_options hook, and C++ does file timings. */
2227 if (time_report || !quiet_flag || flag_detailed_statistics)
2228 timevar_init ();
2229 timevar_start (TV_TOTAL);
2231 process_options ();
2233 /* Don't do any more if an error has already occurred. */
2234 if (!errorcount)
2236 /* This must be run always, because it is needed to compute the FP
2237 predefined macros, such as __LDBL_MAX__, for targets using non
2238 default FP formats. */
2239 init_adjust_machine_modes ();
2241 /* Set up the back-end if requested. */
2242 if (!no_backend)
2243 backend_init ();
2245 /* Language-dependent initialization. Returns true on success. */
2246 if (lang_dependent_init (main_input_filename))
2247 compile_file ();
2249 finalize ();
2252 /* Stop timing and print the times. */
2253 timevar_stop (TV_TOTAL);
2254 timevar_print (stderr);
2257 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2258 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2259 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2261 It is not safe to call this function more than once. */
2264 toplev_main (unsigned int argc, const char **argv)
2266 save_argv = argv;
2268 /* Initialization of GCC's environment, and diagnostics. */
2269 general_init (argv[0]);
2271 /* Parse the options and do minimal processing; basically just
2272 enough to default flags appropriately. */
2273 decode_options (argc, argv);
2275 init_local_tick ();
2277 /* Exit early if we can (e.g. -help). */
2278 if (!exit_after_options)
2279 do_compile ();
2281 if (errorcount || sorrycount)
2282 return (FATAL_EXIT_CODE);
2284 return (SUCCESS_EXIT_CODE);