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