* gcc.dg/const-elim-1.c: xfail for xtensa.
[official-gcc.git] / gcc / toplev.c
blob8192a1a8ea843cc9921273def070861012546826
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
43 #include "line-map.h"
44 #include "input.h"
45 #include "tree.h"
46 #include "rtl.h"
47 #include "tm_p.h"
48 #include "flags.h"
49 #include "insn-attr.h"
50 #include "insn-config.h"
51 #include "insn-flags.h"
52 #include "hard-reg-set.h"
53 #include "recog.h"
54 #include "output.h"
55 #include "except.h"
56 #include "function.h"
57 #include "toplev.h"
58 #include "expr.h"
59 #include "basic-block.h"
60 #include "intl.h"
61 #include "ggc.h"
62 #include "graph.h"
63 #include "loop.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"
84 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
85 #include "dwarf2out.h"
86 #endif
88 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
89 #include "dbxout.h"
90 #endif
92 #ifdef SDB_DEBUGGING_INFO
93 #include "sdbout.h"
94 #endif
96 #ifdef XCOFF_DEBUGGING_INFO
97 #include "xcoffout.h" /* Needed for external data
98 declarations for e.g. AIX 4.x. */
99 #endif
101 static void general_init (const char *);
102 static void do_compile (void);
103 static void process_options (void);
104 static void backend_init (void);
105 static int lang_dependent_init (const char *);
106 static void init_asm_output (const char *);
107 static void finalize (void);
109 static void crash_signal (int) ATTRIBUTE_NORETURN;
110 static void setup_core_dumping (void);
111 static void compile_file (void);
113 static int print_single_switch (FILE *, int, int, const char *,
114 const char *, const char *,
115 const char *, const char *);
116 static void print_switch_values (FILE *, int, int, const char *,
117 const char *, const char *);
119 /* Nonzero to dump debug info whilst parsing (-dy option). */
120 static int set_yydebug;
122 /* True if we don't need a backend (e.g. preprocessing only). */
123 static bool no_backend;
125 /* Length of line when printing switch values. */
126 #define MAX_LINE 75
128 /* Name of program invoked, sans directories. */
130 const char *progname;
132 /* Copy of argument vector to toplev_main. */
133 static const char **save_argv;
135 /* Name of top-level original source file (what was input to cpp).
136 This comes from the #-command at the beginning of the actual input.
137 If there isn't any there, then this is the cc1 input file name. */
139 const char *main_input_filename;
141 /* Current position in real source file. */
143 location_t input_location;
145 struct line_maps line_table;
147 /* Nonzero if it is unsafe to create any new pseudo registers. */
148 int no_new_pseudos;
150 /* Stack of currently pending input files. */
152 struct file_stack *input_file_stack;
154 /* Incremented on each change to input_file_stack. */
155 int input_file_stack_tick;
157 /* Name to use as base of names for dump output files. */
159 const char *dump_base_name;
161 /* Name to use as a base for auxiliary output files. */
163 const char *aux_base_name;
165 /* Bit flags that specify the machine subtype we are compiling for.
166 Bits are tested using macros TARGET_... defined in the tm.h file
167 and set by `-m...' switches. Must be defined in rtlanal.c. */
169 extern int target_flags;
171 /* A mask of target_flags that includes bit X if X was set or cleared
172 on the command line. */
174 int target_flags_explicit;
176 /* Debug hooks - dependent upon command line options. */
178 const struct gcc_debug_hooks *debug_hooks;
180 /* Other flags saying which kinds of debugging dump have been requested. */
182 int rtl_dump_and_exit;
183 int flag_print_asm_name;
184 enum graph_dump_types graph_dump_format;
186 /* Name for output file of assembly code, specified with -o. */
188 const char *asm_file_name;
190 /* Nonzero means do optimizations. -O.
191 Particular numeric values stand for particular amounts of optimization;
192 thus, -O2 stores 2 here. However, the optimizations beyond the basic
193 ones are not controlled directly by this variable. Instead, they are
194 controlled by individual `flag_...' variables that are defaulted
195 based on this variable. */
197 int optimize = 0;
199 /* Nonzero means optimize for size. -Os.
200 The only valid values are zero and nonzero. When optimize_size is
201 nonzero, optimize defaults to 2, but certain individual code
202 bloating optimizations are disabled. */
204 int optimize_size = 0;
206 /* The FUNCTION_DECL for the function currently being compiled,
207 or 0 if between functions. */
208 tree current_function_decl;
210 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
211 if none. */
212 tree current_function_func_begin_label;
214 /* Nonzero if doing dwarf2 duplicate elimination. */
216 int flag_eliminate_dwarf2_dups = 0;
218 /* Nonzero if doing unused type elimination. */
220 int flag_eliminate_unused_debug_types = 1;
222 /* Nonzero means emit debugging information only for symbols which are used. */
223 int flag_debug_only_used_symbols = 0;
225 /* Nonzero if generating code to do profiling. */
227 int profile_flag = 0;
229 /* Nonzero if generating code to profile program flow graph arcs. */
231 int profile_arc_flag = 0;
233 /* Nonzero if value histograms should be measured. */
235 int flag_profile_values = 0;
237 /* Nonzero if value histograms should be used to optimize code. */
238 int flag_value_profile_transformations = 0;
240 /* Nonzero if generating info for gcov to calculate line test coverage. */
242 int flag_test_coverage = 0;
244 /* Nonzero indicates that branch taken probabilities should be calculated. */
246 int flag_branch_probabilities = 0;
248 /* Nonzero if basic blocks should be reordered. */
250 int flag_reorder_blocks = 0;
252 /* Nonzero if functions should be reordered. */
254 int flag_reorder_functions = 0;
256 /* Nonzero if registers should be renamed. */
258 int flag_rename_registers = 0;
259 int flag_cprop_registers = 0;
261 /* Nonzero for -pedantic switch: warn about anything
262 that standard spec forbids. */
264 int pedantic = 0;
266 /* Temporarily suppress certain warnings.
267 This is set while reading code from a system header file. */
269 int in_system_header = 0;
271 /* Don't print functions as they are compiled. -quiet. */
273 int quiet_flag = 0;
275 /* Print times taken by the various passes. -ftime-report. */
277 int time_report = 0;
279 /* Print memory still in use at end of compilation (which may have little
280 to do with peak memory consumption). -fmem-report. */
282 int mem_report = 0;
284 /* Nonzero means to collect statistics which might be expensive
285 and to print them when we are done. */
286 int flag_detailed_statistics = 0;
288 /* A random sequence of characters, unless overridden by user. */
289 const char *flag_random_seed;
291 /* A local time stamp derived from the time of compilation. It will be
292 zero if the system cannot provide a time. It will be -1u, if the
293 user has specified a particular random seed. */
294 unsigned local_tick;
296 /* -f flags. */
298 /* Nonzero means `char' should be signed. */
300 int flag_signed_char;
302 /* Nonzero means give an enum type only as many bytes as it needs. */
304 int flag_short_enums;
306 /* Nonzero for -fcaller-saves: allocate values in regs that need to
307 be saved across function calls, if that produces overall better code.
308 Optional now, so people can test it. */
310 int flag_caller_saves = 0;
312 /* Nonzero if structures and unions should be returned in memory.
314 This should only be defined if compatibility with another compiler or
315 with an ABI is needed, because it results in slower code. */
317 #ifndef DEFAULT_PCC_STRUCT_RETURN
318 #define DEFAULT_PCC_STRUCT_RETURN 1
319 #endif
321 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
323 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
325 /* Nonzero for -fforce-mem: load memory value into a register
326 before arithmetic on it. This makes better cse but slower compilation. */
328 int flag_force_mem = 0;
330 /* Nonzero for -fforce-addr: load memory address into a register before
331 reference to memory. This makes better cse but slower compilation. */
333 int flag_force_addr = 0;
335 /* Nonzero for -fdefer-pop: don't pop args after each function call;
336 instead save them up to pop many calls' args with one insns. */
338 int flag_defer_pop = 0;
340 /* Nonzero for -ffloat-store: don't allocate floats and doubles
341 in extended-precision registers. */
343 int flag_float_store = 0;
345 /* Nonzero for -fcse-follow-jumps:
346 have cse follow jumps to do a more extensive job. */
348 int flag_cse_follow_jumps;
350 /* Nonzero for -fcse-skip-blocks:
351 have cse follow a branch around a block. */
352 int flag_cse_skip_blocks;
354 /* Nonzero for -fexpensive-optimizations:
355 perform miscellaneous relatively-expensive optimizations. */
356 int flag_expensive_optimizations;
358 /* Nonzero for -fthread-jumps:
359 have jump optimize output of loop. */
361 int flag_thread_jumps;
363 /* Nonzero enables strength-reduction in loop.c. */
365 int flag_strength_reduce = 0;
367 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the
368 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
369 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
370 unrolled. */
372 int flag_old_unroll_loops;
374 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
375 This is generally not a win. */
377 int flag_old_unroll_all_loops;
379 /* Enables unrolling of simple loops in loop-unroll.c. */
380 int flag_unroll_loops;
382 /* Enables unrolling of all loops in loop-unroll.c. */
383 int flag_unroll_all_loops;
385 /* Nonzero enables loop peeling. */
386 int flag_peel_loops;
388 /* Nonzero enables loop unswitching. */
389 int flag_unswitch_loops;
391 /* Nonzero enables prefetch optimizations for arrays in loops. */
393 int flag_prefetch_loop_arrays;
395 /* Nonzero forces all invariant computations in loops to be moved
396 outside the loop. */
398 int flag_move_all_movables = 0;
400 /* Nonzero forces all general induction variables in loops to be
401 strength reduced. */
403 int flag_reduce_all_givs = 0;
405 /* Nonzero to perform full register move optimization passes. This is the
406 default for -O2. */
408 int flag_regmove = 0;
410 /* Nonzero means don't put addresses of constant functions in registers.
411 Used for compiling the Unix kernel, where strange substitutions are
412 done on the assembly output. */
414 int flag_no_function_cse = 0;
416 /* Nonzero for -fomit-frame-pointer:
417 don't make a frame pointer in simple functions that don't require one. */
419 int flag_omit_frame_pointer = 0;
421 /* Nonzero means place each function into its own section on those platforms
422 which support arbitrary section names and unlimited numbers of sections. */
424 int flag_function_sections = 0;
426 /* ... and similar for data. */
428 int flag_data_sections = 0;
430 /* Nonzero to inhibit use of define_optimization peephole opts. */
432 int flag_no_peephole = 0;
434 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */
436 int flag_optimize_sibling_calls = 0;
438 /* Nonzero means the front end generally wants `errno' maintained by math
439 operations, like built-in SQRT. */
441 int flag_errno_math = 1;
443 /* Nonzero means that unsafe floating-point math optimizations are allowed
444 for the sake of speed. IEEE compliance is not guaranteed, and operations
445 are allowed to assume that their arguments and results are "normal"
446 (e.g., nonnegative for SQRT). */
448 int flag_unsafe_math_optimizations = 0;
450 /* Nonzero means that no NaNs or +-Infs are expected. */
452 int flag_finite_math_only = 0;
454 /* Zero means that floating-point math operations cannot generate a
455 (user-visible) trap. This is the case, for example, in nonstop
456 IEEE 754 arithmetic. Trapping conditions include division by zero,
457 overflow, underflow, invalid and inexact, but does not include
458 operations on signaling NaNs (see below). */
460 int flag_trapping_math = 1;
462 /* Nonzero means disable transformations that assume default floating
463 point rounding behavior. */
465 int flag_rounding_math = 0;
467 /* Nonzero means disable transformations observable by signaling NaNs.
468 This option implies that any operation on an IEEE signaling NaN can
469 generate a (user-visible) trap. */
471 int flag_signaling_nans = 0;
473 /* 0 means straightforward implementation of complex divide acceptable.
474 1 means wide ranges of inputs must work for complex divide.
475 2 means C99-like requirements for complex divide (not yet implemented). */
477 int flag_complex_divide_method = 0;
479 /* Nonzero means just do syntax checking; don't output anything. */
481 int flag_syntax_only = 0;
483 /* Nonzero means performs web construction pass. */
485 int flag_web;
487 /* Nonzero means perform loop optimizer. */
489 int flag_loop_optimize;
491 /* Nonzero means perform crossjumping. */
493 int flag_crossjumping;
495 /* Nonzero means perform if conversion. */
497 int flag_if_conversion;
499 /* Nonzero means perform if conversion after reload. */
501 int flag_if_conversion2;
503 /* Nonzero means to use global dataflow analysis to eliminate
504 useless null pointer tests. */
506 int flag_delete_null_pointer_checks;
508 /* Nonzero means perform global CSE. */
510 int flag_gcse = 0;
512 /* Nonzero means to do the enhanced load motion during gcse, which trys
513 to hoist loads by not killing them when a store to the same location
514 is seen. */
516 int flag_gcse_lm = 1;
518 /* Nonzero means to perform store motion after gcse, which will try to
519 move stores closer to the exit block. Its not very effective without
520 flag_gcse_lm. */
522 int flag_gcse_sm = 1;
524 /* Nonzero if we want to perform redundant load after store elimination
525 in gcse. */
527 int flag_gcse_las = 1;
529 /* Nonzero means perform global cse after register allocation. */
530 int flag_gcse_after_reload = 0;
532 /* Perform target register optimization before prologue / epilogue
533 threading. */
535 int flag_branch_target_load_optimize = 0;
537 /* Perform target register optimization after prologue / epilogue
538 threading and jump2. */
540 int flag_branch_target_load_optimize2 = 0;
542 /* For the bt-load pass, nonzero means don't re-use branch target registers
543 in any basic block. */
545 int flag_btr_bb_exclusive;
547 /* Nonzero means to rerun cse after loop optimization. This increases
548 compilation time about 20% and picks up a few more common expressions. */
550 int flag_rerun_cse_after_loop;
552 /* Nonzero means to run loop optimizations twice. */
554 int flag_rerun_loop_opt;
556 /* Nonzero for -finline-functions: ok to inline functions that look like
557 good inline candidates. */
559 int flag_inline_functions;
561 /* Nonzero for -fkeep-inline-functions: even if we make a function
562 go inline everywhere, keep its definition around for debugging
563 purposes. */
565 int flag_keep_inline_functions;
567 /* Nonzero means that functions will not be inlined. */
569 int flag_no_inline = 2;
571 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
572 not just because the tree inliner turned us off. */
574 int flag_really_no_inline = 2;
576 /* Nonzero means that we should emit static const variables
577 regardless of whether or not optimization is turned on. */
579 int flag_keep_static_consts = 1;
581 /* Nonzero means we should be saving declaration info into a .X file. */
583 int flag_gen_aux_info = 0;
585 /* Specified name of aux-info file. */
587 const char *aux_info_file_name;
589 /* Nonzero means make the text shared if supported. */
591 int flag_shared_data;
593 /* Nonzero means schedule into delayed branch slots if supported. */
595 int flag_delayed_branch;
597 /* Nonzero if we are compiling pure (sharable) code.
598 Value is 1 if we are doing "small" pic; value is 2 if we're doing
599 "large" pic. */
601 int flag_pic;
603 /* Nonzero if we are compiling position independent code for executable.
604 The value is 1 if we are doing "small" pic; value is 2 if we're doing
605 "large" pic. */
607 int flag_pie;
609 /* Nonzero if we are compiling code for a shared library, zero for
610 executable. */
612 int flag_shlib;
614 /* Set to the default thread-local storage (tls) model to use. */
616 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
618 /* Nonzero means generate extra code for exception handling and enable
619 exception handling. */
621 int flag_exceptions;
623 /* Nonzero means generate frame unwind info table when supported. */
625 int flag_unwind_tables = 0;
627 /* Nonzero means generate frame unwind info table exact at each insn
628 boundary. */
630 int flag_asynchronous_unwind_tables = 0;
632 /* Nonzero means don't place uninitialized global data in common storage
633 by default. */
635 int flag_no_common;
637 /* Nonzero means change certain warnings into errors.
638 Usually these are warnings about failure to conform to some standard. */
640 int flag_pedantic_errors = 0;
642 /* flag_schedule_insns means schedule insns within basic blocks (before
643 local_alloc).
644 flag_schedule_insns_after_reload means schedule insns after
645 global_alloc. */
647 int flag_schedule_insns = 0;
648 int flag_schedule_insns_after_reload = 0;
650 /* When flag_schedule_insns_after_reload is set, use EBB scheduler. */
651 int flag_sched2_use_superblocks = 0;
653 /* When flag_schedule_insns_after_reload is set, construct traces and EBB
654 scheduler. */
655 int flag_sched2_use_traces = 0;
657 /* The following flags have effect only for scheduling before register
658 allocation:
660 flag_schedule_interblock means schedule insns across basic blocks.
661 flag_schedule_speculative means allow speculative motion of non-load insns.
662 flag_schedule_speculative_load means allow speculative motion of some
663 load insns.
664 flag_schedule_speculative_load_dangerous allows speculative motion of more
665 load insns. */
667 int flag_schedule_interblock = 1;
668 int flag_schedule_speculative = 1;
669 int flag_schedule_speculative_load = 0;
670 int flag_schedule_speculative_load_dangerous = 0;
672 /* The following flags have an effect during scheduling after register
673 allocation:
675 flag_sched_stalled_insns means that insns can be moved prematurely from the queue
676 of stalled insns into the ready list.
678 flag_sched_stalled_insns_dep controls how many insn groups will be examined
679 for a dependency on a stalled insn that is candidate for premature removal
680 from the queue of stalled insns into the ready list (has an effect only if
681 the flag 'sched_stalled_insns' is set). */
683 int flag_sched_stalled_insns = 0;
684 int flag_sched_stalled_insns_dep = 1;
686 int flag_single_precision_constant;
688 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
689 by a cheaper branch on a count register. */
690 int flag_branch_on_count_reg = 1;
692 /* -finhibit-size-directive inhibits output of .size for ELF.
693 This is used only for compiling crtstuff.c,
694 and it may be extended to other effects
695 needed for crtstuff.c on other systems. */
696 int flag_inhibit_size_directive = 0;
698 /* -fverbose-asm causes extra commentary information to be produced in
699 the generated assembly code (to make it more readable). This option
700 is generally only of use to those who actually need to read the
701 generated assembly code (perhaps while debugging the compiler itself).
702 -fno-verbose-asm, the default, causes the extra information
703 to be omitted and is useful when comparing two assembler files. */
705 int flag_verbose_asm = 0;
707 /* -dA causes debug commentary information to be produced in
708 the generated assembly code (to make it more readable). This option
709 is generally only of use to those who actually need to read the
710 generated assembly code (perhaps while debugging the compiler itself).
711 Currently, this switch is only used by dwarfout.c; however, it is intended
712 to be a catchall for printing debug information in the assembler file. */
714 int flag_debug_asm = 0;
716 /* -dP causes the rtl to be emitted as a comment in assembly. */
718 int flag_dump_rtl_in_asm = 0;
720 /* Nonzero means put zero initialized data in the bss section. */
721 int flag_zero_initialized_in_bss = 1;
723 /* Tag all structures with __attribute__(packed). */
724 int flag_pack_struct = 0;
726 /* Emit code to check for stack overflow; also may cause large objects
727 to be allocated dynamically. */
728 int flag_stack_check;
730 /* When non-NULL, indicates that whenever space is allocated on the
731 stack, the resulting stack pointer must not pass this
732 address---that is, for stacks that grow downward, the stack pointer
733 must always be greater than or equal to this address; for stacks
734 that grow upward, the stack pointer must be less than this address.
735 At present, the rtx may be either a REG or a SYMBOL_REF, although
736 the support provided depends on the backend. */
737 rtx stack_limit_rtx;
739 /* 0 if pointer arguments may alias each other. True in C.
740 1 if pointer arguments may not alias each other but may alias
741 global variables.
742 2 if pointer arguments may not alias each other and may not
743 alias global variables. True in Fortran.
744 This defaults to 0 for C. */
745 int flag_argument_noalias = 0;
747 /* Nonzero if we should do (language-dependent) alias analysis.
748 Typically, this analysis will assume that expressions of certain
749 types do not alias expressions of certain other types. Only used
750 if alias analysis (in general) is enabled. */
751 int flag_strict_aliasing = 0;
753 /* Instrument functions with calls at entry and exit, for profiling. */
754 int flag_instrument_function_entry_exit = 0;
756 /* Nonzero means ignore `#ident' directives. 0 means handle them.
757 On SVR4 targets, it also controls whether or not to emit a
758 string identifying the compiler. */
760 int flag_no_ident = 0;
762 /* This will perform a peephole pass before sched2. */
763 int flag_peephole2 = 0;
765 /* This will try to guess branch probabilities. */
766 int flag_guess_branch_prob = 0;
768 /* -fcheck-bounds causes gcc to generate array bounds checks.
769 For C, C++, ObjC: defaults to off.
770 For Java: defaults to on.
771 For Fortran: defaults to off. */
772 int flag_bounds_check = 0;
774 /* This will attempt to merge constant section constants, if 1 only
775 string constants and constants from constant pool, if 2 also constant
776 variables. */
777 int flag_merge_constants = 1;
779 /* If one, renumber instruction UIDs to reduce the number of
780 unused UIDs if there are a lot of instructions. If greater than
781 one, unconditionally renumber instruction UIDs. */
782 int flag_renumber_insns = 1;
784 /* If nonzero, use the graph coloring register allocator. */
785 int flag_new_regalloc = 0;
787 /* Nonzero if we perform superblock formation. */
789 int flag_tracer = 0;
791 /* Nonzero if we perform whole unit at a time compilation. */
793 int flag_unit_at_a_time = 0;
795 /* Nonzero if we should track variables. When
796 flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
797 to optimize, debug_info_level and debug_hooks in process_options (). */
799 #define AUTODETECT_FLAG_VAR_TRACKING 2
800 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
802 /* Values of the -falign-* flags: how much to align labels in code.
803 0 means `use default', 1 means `don't align'.
804 For each variable, there is an _log variant which is the power
805 of two not less than the variable, for .align output. */
807 int align_loops;
808 int align_loops_log;
809 int align_loops_max_skip;
810 int align_jumps;
811 int align_jumps_log;
812 int align_jumps_max_skip;
813 int align_labels;
814 int align_labels_log;
815 int align_labels_max_skip;
816 int align_functions;
817 int align_functions_log;
819 /* Like align_functions_log above, but used by front-ends to force the
820 minimum function alignment. Zero means no alignment is forced. */
821 int force_align_functions_log;
823 typedef struct
825 const char *const string;
826 int *const variable;
827 const int on_value;
829 lang_independent_options;
831 /* Nonzero if signed arithmetic overflow should trap. */
832 int flag_trapv = 0;
834 /* Nonzero if signed arithmetic overflow should wrap around. */
835 int flag_wrapv = 0;
837 /* Nonzero if subexpressions must be evaluated from left-to-right. */
838 int flag_evaluation_order = 0;
840 /* Add or remove a leading underscore from user symbols. */
841 int flag_leading_underscore = -1;
843 /* The version of the C++ ABI in use. The following values are
844 allowed:
846 0: The version of the ABI believed most conformant with the
847 C++ ABI specification. This ABI may change as bugs are
848 discovered and fixed. Therefore, 0 will not necessarily
849 indicate the same ABI in different versions of G++.
851 1: The version of the ABI first used in G++ 3.2.
853 2: The version of the ABI first used in G++ 3.4.
855 Additional positive integers will be assigned as new versions of
856 the ABI become the default version of the ABI. */
858 int flag_abi_version = 2;
860 /* The user symbol prefix after having resolved same. */
861 const char *user_label_prefix;
863 static const param_info lang_independent_params[] = {
864 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
865 { OPTION, DEFAULT, HELP },
866 #include "params.def"
867 #undef DEFPARAM
868 { NULL, 0, NULL }
871 /* Table of language-independent -f options.
872 STRING is the option name. VARIABLE is the address of the variable.
873 ON_VALUE is the value to store in VARIABLE
874 if `-fSTRING' is seen as an option.
875 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
877 static const lang_independent_options f_options[] =
879 {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1 },
880 {"eliminate-unused-debug-symbols", &flag_debug_only_used_symbols, 1 },
881 {"eliminate-unused-debug-types", &flag_eliminate_unused_debug_types, 1 },
882 {"float-store", &flag_float_store, 1 },
883 {"defer-pop", &flag_defer_pop, 1 },
884 {"omit-frame-pointer", &flag_omit_frame_pointer, 1 },
885 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1 },
886 {"tracer", &flag_tracer, 1 },
887 {"unit-at-a-time", &flag_unit_at_a_time, 1 },
888 {"cse-follow-jumps", &flag_cse_follow_jumps, 1 },
889 {"cse-skip-blocks", &flag_cse_skip_blocks, 1 },
890 {"expensive-optimizations", &flag_expensive_optimizations, 1 },
891 {"thread-jumps", &flag_thread_jumps, 1 },
892 {"strength-reduce", &flag_strength_reduce, 1 },
893 {"unroll-loops", &flag_unroll_loops, 1 },
894 {"unroll-all-loops", &flag_unroll_all_loops, 1 },
895 {"old-unroll-loops", &flag_old_unroll_loops, 1 },
896 {"old-unroll-all-loops", &flag_old_unroll_all_loops, 1 },
897 {"peel-loops", &flag_peel_loops, 1 },
898 {"unswitch-loops", &flag_unswitch_loops, 1 },
899 {"prefetch-loop-arrays", &flag_prefetch_loop_arrays, 1 },
900 {"move-all-movables", &flag_move_all_movables, 1 },
901 {"reduce-all-givs", &flag_reduce_all_givs, 1 },
902 {"peephole", &flag_no_peephole, 0 },
903 {"force-mem", &flag_force_mem, 1 },
904 {"force-addr", &flag_force_addr, 1 },
905 {"function-cse", &flag_no_function_cse, 0 },
906 {"inline-functions", &flag_inline_functions, 1 },
907 {"keep-inline-functions", &flag_keep_inline_functions, 1 },
908 {"inline", &flag_no_inline, 0 },
909 {"keep-static-consts", &flag_keep_static_consts, 1 },
910 {"syntax-only", &flag_syntax_only, 1 },
911 {"shared-data", &flag_shared_data, 1 },
912 {"caller-saves", &flag_caller_saves, 1 },
913 {"pcc-struct-return", &flag_pcc_struct_return, 1 },
914 {"reg-struct-return", &flag_pcc_struct_return, 0 },
915 {"delayed-branch", &flag_delayed_branch, 1 },
916 {"web", &flag_web, 1},
917 {"gcse", &flag_gcse, 1 },
918 {"gcse-lm", &flag_gcse_lm, 1 },
919 {"gcse-sm", &flag_gcse_sm, 1 },
920 {"gcse-las", &flag_gcse_las, 1 },
921 {"gcse-after-reload", &flag_gcse_after_reload, 1},
922 {"branch-target-load-optimize", &flag_branch_target_load_optimize, 1 },
923 {"branch-target-load-optimize2", &flag_branch_target_load_optimize2, 1 },
924 {"btr-bb-exclusive", &flag_btr_bb_exclusive, 1 },
925 {"loop-optimize", &flag_loop_optimize, 1 },
926 {"crossjumping", &flag_crossjumping, 1 },
927 {"if-conversion", &flag_if_conversion, 1 },
928 {"if-conversion2", &flag_if_conversion2, 1 },
929 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1 },
930 {"rerun-loop-opt", &flag_rerun_loop_opt, 1 },
931 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1 },
932 {"schedule-insns", &flag_schedule_insns, 1 },
933 {"schedule-insns2", &flag_schedule_insns_after_reload, 1 },
934 {"sched-interblock",&flag_schedule_interblock, 1 },
935 {"sched-spec",&flag_schedule_speculative, 1 },
936 {"sched-spec-load",&flag_schedule_speculative_load, 1 },
937 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1 },
938 {"sched-stalled-insns", &flag_sched_stalled_insns, 0 },
939 {"sched-stalled-insns-dep", &flag_sched_stalled_insns_dep, 1 },
940 {"sched2-use-superblocks", &flag_sched2_use_superblocks, 1 },
941 {"sched2-use-traces", &flag_sched2_use_traces, 1 },
942 {"branch-count-reg",&flag_branch_on_count_reg, 1 },
943 {"pic", &flag_pic, 1 },
944 {"PIC", &flag_pic, 2 },
945 {"pie", &flag_pie, 1 },
946 {"PIE", &flag_pie, 2 },
947 {"exceptions", &flag_exceptions, 1 },
948 {"unwind-tables", &flag_unwind_tables, 1 },
949 {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables, 1 },
950 {"non-call-exceptions", &flag_non_call_exceptions, 1 },
951 {"profile-arcs", &profile_arc_flag, 1 },
952 {"profile-values", &flag_profile_values, 1 },
953 {"vpt", &flag_value_profile_transformations, 1 },
954 {"test-coverage", &flag_test_coverage, 1 },
955 {"branch-probabilities", &flag_branch_probabilities, 1 },
956 {"profile", &profile_flag, 1 },
957 {"reorder-blocks", &flag_reorder_blocks, 1 },
958 {"reorder-functions", &flag_reorder_functions, 1 },
959 {"rename-registers", &flag_rename_registers, 1 },
960 {"cprop-registers", &flag_cprop_registers, 1 },
961 {"common", &flag_no_common, 0 },
962 {"inhibit-size-directive", &flag_inhibit_size_directive, 1 },
963 {"function-sections", &flag_function_sections, 1 },
964 {"data-sections", &flag_data_sections, 1 },
965 {"verbose-asm", &flag_verbose_asm, 1 },
966 {"regmove", &flag_regmove, 1 },
967 {"optimize-register-move", &flag_regmove, 1 },
968 {"pack-struct", &flag_pack_struct, 1 },
969 {"stack-check", &flag_stack_check, 1 },
970 {"argument-alias", &flag_argument_noalias, 0 },
971 {"argument-noalias", &flag_argument_noalias, 1 },
972 {"argument-noalias-global", &flag_argument_noalias, 2 },
973 {"strict-aliasing", &flag_strict_aliasing, 1 },
974 {"align-loops", &align_loops, 0 },
975 {"align-jumps", &align_jumps, 0 },
976 {"align-labels", &align_labels, 0 },
977 {"align-functions", &align_functions, 0 },
978 {"merge-constants", &flag_merge_constants, 1 },
979 {"merge-all-constants", &flag_merge_constants, 2 },
980 {"dump-unnumbered", &flag_dump_unnumbered, 1 },
981 {"instrument-functions", &flag_instrument_function_entry_exit, 1 },
982 {"zero-initialized-in-bss", &flag_zero_initialized_in_bss, 1 },
983 {"leading-underscore", &flag_leading_underscore, 1 },
984 {"ident", &flag_no_ident, 0 },
985 { "peephole2", &flag_peephole2, 1 },
986 {"finite-math-only", &flag_finite_math_only, 1 },
987 { "guess-branch-probability", &flag_guess_branch_prob, 1 },
988 {"math-errno", &flag_errno_math, 1 },
989 {"trapping-math", &flag_trapping_math, 1 },
990 {"rounding-math", &flag_rounding_math, 1 },
991 {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1 },
992 {"signaling-nans", &flag_signaling_nans, 1 },
993 {"bounds-check", &flag_bounds_check, 1 },
994 {"single-precision-constant", &flag_single_precision_constant, 1 },
995 {"time-report", &time_report, 1 },
996 {"mem-report", &mem_report, 1 },
997 { "trapv", &flag_trapv, 1 },
998 { "wrapv", &flag_wrapv, 1 },
999 { "new-ra", &flag_new_regalloc, 1 },
1000 { "var-tracking", &flag_var_tracking, 1}
1003 /* Here is a table, controlled by the tm.h file, listing each -m switch
1004 and which bits in `target_switches' it should set or clear.
1005 If VALUE is positive, it is bits to set.
1006 If VALUE is negative, -VALUE is bits to clear.
1007 (The sign bit is not used so there is no confusion.) */
1009 static const struct
1011 const char *const name;
1012 const int value;
1013 const char *const description;
1015 target_switches[] = TARGET_SWITCHES;
1017 /* This table is similar, but allows the switch to have a value. */
1019 #ifdef TARGET_OPTIONS
1020 static const struct
1022 const char *const prefix;
1023 const char **const variable;
1024 const char *const description;
1025 const char *const value;
1027 target_options[] = TARGET_OPTIONS;
1028 #endif
1030 /* Nonzero means warn about function definitions that default the return type
1031 or that use a null return and have a return-type other than void. */
1033 int warn_return_type;
1035 /* Output files for assembler code (real compiler output)
1036 and debugging dumps. */
1038 FILE *asm_out_file;
1039 FILE *aux_info_file;
1040 FILE *dump_file = NULL;
1041 FILE *cgraph_dump_file = NULL;
1043 /* The current working directory of a translation. It's generally the
1044 directory from which compilation was initiated, but a preprocessed
1045 file may specify the original directory in which it was
1046 created. */
1048 static const char *src_pwd;
1050 /* Initialize src_pwd with the given string, and return true. If it
1051 was already initialized, return false. As a special case, it may
1052 be called with a NULL argument to test whether src_pwd has NOT been
1053 initialized yet. */
1055 bool
1056 set_src_pwd (const char *pwd)
1058 if (src_pwd)
1059 return false;
1061 src_pwd = xstrdup (pwd);
1062 return true;
1065 /* Return the directory from which the translation unit was initiated,
1066 in case set_src_pwd() was not called before to assign it a
1067 different value. */
1069 const char *
1070 get_src_pwd (void)
1072 if (! src_pwd)
1073 src_pwd = getpwd ();
1075 return src_pwd;
1078 /* Called when the start of a function definition is parsed,
1079 this function prints on stderr the name of the function. */
1080 void
1081 announce_function (tree decl)
1083 if (!quiet_flag)
1085 if (rtl_dump_and_exit)
1086 verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
1087 else
1088 verbatim (" %s", (*lang_hooks.decl_printable_name) (decl, 2));
1089 fflush (stderr);
1090 pp_needs_newline (global_dc->printer) = true;
1091 diagnostic_set_last_function (global_dc);
1095 /* Set up a default flag_random_seed and local_tick, unless the user
1096 already specified one. */
1098 static void
1099 randomize (void)
1101 if (!flag_random_seed)
1103 unsigned HOST_WIDE_INT value;
1104 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
1106 /* Get some more or less random data. */
1107 #ifdef HAVE_GETTIMEOFDAY
1109 struct timeval tv;
1111 gettimeofday (&tv, NULL);
1112 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
1114 #else
1116 time_t now = time (NULL);
1118 if (now != (time_t)-1)
1119 local_tick = (unsigned) now;
1121 #endif
1122 value = local_tick ^ getpid ();
1124 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
1125 flag_random_seed = random_seed;
1127 else if (!local_tick)
1128 local_tick = -1;
1132 /* Decode the string P as an integral parameter.
1133 If the string is indeed an integer return its numeric value else
1134 issue an Invalid Option error for the option PNAME and return DEFVAL.
1135 If PNAME is zero just return DEFVAL, do not call error. */
1138 read_integral_parameter (const char *p, const char *pname, const int defval)
1140 const char *endp = p;
1142 while (*endp)
1144 if (ISDIGIT (*endp))
1145 endp++;
1146 else
1147 break;
1150 if (*endp != 0)
1152 if (pname != 0)
1153 error ("invalid option argument `%s'", pname);
1154 return defval;
1157 return atoi (p);
1160 /* Return the logarithm of X, base 2, considering X unsigned,
1161 if X is a power of 2. Otherwise, returns -1.
1163 This should be used via the `exact_log2' macro. */
1166 exact_log2_wide (unsigned HOST_WIDE_INT x)
1168 int log = 0;
1169 /* Test for 0 or a power of 2. */
1170 if (x == 0 || x != (x & -x))
1171 return -1;
1172 while ((x >>= 1) != 0)
1173 log++;
1174 return log;
1177 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1178 If X is 0, return -1.
1180 This should be used via the floor_log2 macro. */
1183 floor_log2_wide (unsigned HOST_WIDE_INT x)
1185 int log = -1;
1186 while (x != 0)
1187 log++,
1188 x >>= 1;
1189 return log;
1192 /* Handler for fatal signals, such as SIGSEGV. These are transformed
1193 into ICE messages, which is much more user friendly. In case the
1194 error printer crashes, reset the signal to prevent infinite recursion. */
1196 static void
1197 crash_signal (int signo)
1199 signal (signo, SIG_DFL);
1200 internal_error ("%s", strsignal (signo));
1203 /* Arrange to dump core on error. (The regular error message is still
1204 printed first, except in the case of abort().) */
1206 static void
1207 setup_core_dumping (void)
1209 #ifdef SIGABRT
1210 signal (SIGABRT, SIG_DFL);
1211 #endif
1212 #if defined(HAVE_SETRLIMIT)
1214 struct rlimit rlim;
1215 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
1216 fatal_error ("getting core file size maximum limit: %m");
1217 rlim.rlim_cur = rlim.rlim_max;
1218 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
1219 fatal_error ("setting core file size limit to maximum: %m");
1221 #endif
1222 diagnostic_abort_on_error (global_dc);
1226 /* Strip off a legitimate source ending from the input string NAME of
1227 length LEN. Rather than having to know the names used by all of
1228 our front ends, we strip off an ending of a period followed by
1229 up to five characters. (Java uses ".class".) */
1231 void
1232 strip_off_ending (char *name, int len)
1234 int i;
1235 for (i = 2; i < 6 && len > i; i++)
1237 if (name[len - i] == '.')
1239 name[len - i] = '\0';
1240 break;
1245 /* Output a quoted string. */
1247 void
1248 output_quoted_string (FILE *asm_file, const char *string)
1250 #ifdef OUTPUT_QUOTED_STRING
1251 OUTPUT_QUOTED_STRING (asm_file, string);
1252 #else
1253 char c;
1255 putc ('\"', asm_file);
1256 while ((c = *string++) != 0)
1258 if (ISPRINT (c))
1260 if (c == '\"' || c == '\\')
1261 putc ('\\', asm_file);
1262 putc (c, asm_file);
1264 else
1265 fprintf (asm_file, "\\%03o", (unsigned char) c);
1267 putc ('\"', asm_file);
1268 #endif
1271 /* Output a file name in the form wanted by System V. */
1273 void
1274 output_file_directive (FILE *asm_file, const char *input_name)
1276 int len;
1277 const char *na;
1279 if (input_name == NULL)
1280 input_name = "<stdin>";
1282 len = strlen (input_name);
1283 na = input_name + len;
1285 /* NA gets INPUT_NAME sans directory names. */
1286 while (na > input_name)
1288 if (IS_DIR_SEPARATOR (na[-1]))
1289 break;
1290 na--;
1293 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1294 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1295 #else
1296 fprintf (asm_file, "\t.file\t");
1297 output_quoted_string (asm_file, na);
1298 fputc ('\n', asm_file);
1299 #endif
1302 /* Do any final processing required for the declarations in VEC, of
1303 which there are LEN. We write out inline functions and variables
1304 that have been deferred until this point, but which are required.
1305 Returns nonzero if anything was put out. */
1308 wrapup_global_declarations (tree *vec, int len)
1310 tree decl;
1311 int i;
1312 int reconsider;
1313 int output_something = 0;
1315 for (i = 0; i < len; i++)
1317 decl = vec[i];
1319 /* We're not deferring this any longer. Assignment is
1320 conditional to avoid needlessly dirtying PCH pages. */
1321 if (DECL_DEFER_OUTPUT (decl) != 0)
1322 DECL_DEFER_OUTPUT (decl) = 0;
1324 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1325 (*lang_hooks.finish_incomplete_decl) (decl);
1328 /* Now emit any global variables or functions that we have been
1329 putting off. We need to loop in case one of the things emitted
1330 here references another one which comes earlier in the list. */
1333 reconsider = 0;
1334 for (i = 0; i < len; i++)
1336 decl = vec[i];
1338 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1339 continue;
1341 /* Don't write out static consts, unless we still need them.
1343 We also keep static consts if not optimizing (for debugging),
1344 unless the user specified -fno-keep-static-consts.
1345 ??? They might be better written into the debug information.
1346 This is possible when using DWARF.
1348 A language processor that wants static constants to be always
1349 written out (even if it is not used) is responsible for
1350 calling rest_of_decl_compilation itself. E.g. the C front-end
1351 calls rest_of_decl_compilation from finish_decl.
1352 One motivation for this is that is conventional in some
1353 environments to write things like:
1354 static const char rcsid[] = "... version string ...";
1355 intending to force the string to be in the executable.
1357 A language processor that would prefer to have unneeded
1358 static constants "optimized away" would just defer writing
1359 them out until here. E.g. C++ does this, because static
1360 constants are often defined in header files.
1362 ??? A tempting alternative (for both C and C++) would be
1363 to force a constant to be written if and only if it is
1364 defined in a main file, as opposed to an include file. */
1366 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
1368 bool needed = 1;
1370 if (flag_unit_at_a_time
1371 && cgraph_varpool_node (decl)->finalized)
1372 needed = 0;
1373 else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
1374 && (TREE_USED (decl)
1375 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
1376 /* needed */;
1377 else if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1378 /* needed */;
1379 else if (DECL_COMDAT (decl))
1380 needed = 0;
1381 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
1382 && (optimize || !flag_keep_static_consts
1383 || DECL_ARTIFICIAL (decl)))
1384 needed = 0;
1386 if (needed)
1388 reconsider = 1;
1389 rest_of_decl_compilation (decl, NULL, 1, 1);
1393 if (TREE_CODE (decl) == FUNCTION_DECL
1394 && DECL_INITIAL (decl) != 0
1395 && DECL_STRUCT_FUNCTION (decl) != 0
1396 && DECL_STRUCT_FUNCTION (decl)->saved_for_inline
1397 && (flag_keep_inline_functions
1398 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1399 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1401 reconsider = 1;
1402 output_inline_function (decl);
1406 if (reconsider)
1407 output_something = 1;
1409 while (reconsider);
1411 return output_something;
1414 /* Issue appropriate warnings for the global declarations in VEC (of
1415 which there are LEN). Output debugging information for them. */
1417 void
1418 check_global_declarations (tree *vec, int len)
1420 tree decl;
1421 int i;
1423 for (i = 0; i < len; i++)
1425 decl = vec[i];
1427 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1428 && ! TREE_ASM_WRITTEN (decl))
1429 /* Cancel the RTL for this decl so that, if debugging info
1430 output for global variables is still to come,
1431 this one will be omitted. */
1432 SET_DECL_RTL (decl, NULL_RTX);
1434 /* Warn about any function
1435 declared static but not defined.
1436 We don't warn about variables,
1437 because many programs have static variables
1438 that exist only to get some text into the object file. */
1439 if (TREE_CODE (decl) == FUNCTION_DECL
1440 && (warn_unused_function
1441 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1442 && DECL_INITIAL (decl) == 0
1443 && DECL_EXTERNAL (decl)
1444 && ! DECL_ARTIFICIAL (decl)
1445 && ! TREE_PUBLIC (decl))
1447 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1448 pedwarn ("%J'%F' used but never defined", decl, decl);
1449 else
1450 warning ("%J'%F' declared `static' but never defined", decl, decl);
1451 /* This symbol is effectively an "extern" declaration now. */
1452 TREE_PUBLIC (decl) = 1;
1453 assemble_external (decl);
1456 /* Warn about static fns or vars defined but not used. */
1457 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
1458 /* We don't warn about "static const" variables because the
1459 "rcs_id" idiom uses that construction. */
1460 || (warn_unused_variable
1461 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
1462 && ! DECL_IN_SYSTEM_HEADER (decl)
1463 && ! TREE_USED (decl)
1464 /* The TREE_USED bit for file-scope decls is kept in the identifier,
1465 to handle multiple external decls in different scopes. */
1466 && ! TREE_USED (DECL_NAME (decl))
1467 && ! DECL_EXTERNAL (decl)
1468 && ! TREE_PUBLIC (decl)
1469 /* A volatile variable might be used in some non-obvious way. */
1470 && ! TREE_THIS_VOLATILE (decl)
1471 /* Global register variables must be declared to reserve them. */
1472 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
1473 /* Otherwise, ask the language. */
1474 && (*lang_hooks.decls.warn_unused_global) (decl))
1475 warning ("%J'%D' defined but not used", decl, decl);
1477 /* Avoid confusing the debug information machinery when there are
1478 errors. */
1479 if (errorcount == 0 && sorrycount == 0)
1481 timevar_push (TV_SYMOUT);
1482 (*debug_hooks->global_decl) (decl);
1483 timevar_pop (TV_SYMOUT);
1488 /* Warn about a use of an identifier which was marked deprecated. */
1489 void
1490 warn_deprecated_use (tree node)
1492 if (node == 0 || !warn_deprecated_decl)
1493 return;
1495 if (DECL_P (node))
1496 warning ("`%s' is deprecated (declared at %s:%d)",
1497 IDENTIFIER_POINTER (DECL_NAME (node)),
1498 DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
1499 else if (TYPE_P (node))
1501 const char *what = NULL;
1502 tree decl = TYPE_STUB_DECL (node);
1504 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
1505 what = IDENTIFIER_POINTER (TYPE_NAME (node));
1506 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
1507 && DECL_NAME (TYPE_NAME (node)))
1508 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
1510 if (what)
1512 if (decl)
1513 warning ("`%s' is deprecated (declared at %s:%d)", what,
1514 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1515 else
1516 warning ("`%s' is deprecated", what);
1518 else if (decl)
1519 warning ("type is deprecated (declared at %s:%d)",
1520 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1521 else
1522 warning ("type is deprecated");
1526 /* Save the current INPUT_LOCATION on the top entry in the
1527 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
1528 INPUT_LOCATION accordingly. */
1530 void
1531 push_srcloc (const char *file, int line)
1533 struct file_stack *fs;
1535 fs = xmalloc (sizeof (struct file_stack));
1536 fs->location = input_location;
1537 fs->next = input_file_stack;
1538 input_filename = file;
1539 input_line = line;
1540 input_file_stack = fs;
1541 input_file_stack_tick++;
1544 /* Pop the top entry off the stack of presently open source files.
1545 Restore the INPUT_LOCATION from the new topmost entry on the
1546 stack. */
1548 void
1549 pop_srcloc (void)
1551 struct file_stack *fs;
1553 fs = input_file_stack;
1554 input_location = fs->location;
1555 input_file_stack = fs->next;
1556 free (fs);
1557 input_file_stack_tick++;
1560 /* Compile an entire translation unit. Write a file of assembly
1561 output and various debugging dumps. */
1563 static void
1564 compile_file (void)
1566 /* Initialize yet another pass. */
1568 init_final (main_input_filename);
1569 coverage_init (aux_base_name);
1571 timevar_push (TV_PARSE);
1573 /* Call the parser, which parses the entire file (calling
1574 rest_of_compilation for each function). */
1575 (*lang_hooks.parse_file) (set_yydebug);
1577 /* In case there were missing block closers,
1578 get us back to the global binding level. */
1579 (*lang_hooks.clear_binding_stack) ();
1581 /* Compilation is now finished except for writing
1582 what's left of the symbol table output. */
1583 timevar_pop (TV_PARSE);
1585 if (flag_syntax_only)
1586 return;
1588 (*lang_hooks.decls.final_write_globals)();
1590 cgraph_varpool_assemble_pending_decls ();
1592 /* This must occur after the loop to output deferred functions.
1593 Else the coverage initializer would not be emitted if all the
1594 functions in this compilation unit were deferred. */
1595 coverage_finish ();
1597 /* Write out any pending weak symbol declarations. */
1599 weak_finish ();
1601 /* Do dbx symbols. */
1602 timevar_push (TV_SYMOUT);
1604 #ifdef DWARF2_UNWIND_INFO
1605 if (dwarf2out_do_frame ())
1606 dwarf2out_frame_finish ();
1607 #endif
1609 (*debug_hooks->finish) (main_input_filename);
1610 timevar_pop (TV_SYMOUT);
1612 /* Output some stuff at end of file if nec. */
1614 dw2_output_indirect_constants ();
1616 targetm.asm_out.file_end ();
1618 /* Attach a special .ident directive to the end of the file to identify
1619 the version of GCC which compiled this code. The format of the .ident
1620 string is patterned after the ones produced by native SVR4 compilers. */
1621 #ifdef IDENT_ASM_OP
1622 if (!flag_no_ident)
1623 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1624 IDENT_ASM_OP, version_string);
1625 #endif
1628 /* Display help for target options. */
1629 void
1630 display_target_options (void)
1632 int undoc, i;
1633 static bool displayed = false;
1635 /* Avoid double printing for --help --target-help. */
1636 if (displayed)
1637 return;
1639 displayed = true;
1641 if (ARRAY_SIZE (target_switches) > 1
1642 #ifdef TARGET_OPTIONS
1643 || ARRAY_SIZE (target_options) > 1
1644 #endif
1647 int doc = 0;
1649 undoc = 0;
1651 printf (_("\nTarget specific options:\n"));
1653 for (i = ARRAY_SIZE (target_switches); i--;)
1655 const char *option = target_switches[i].name;
1656 const char *description = target_switches[i].description;
1658 if (option == NULL || *option == 0)
1659 continue;
1660 else if (description == NULL)
1662 undoc = 1;
1664 if (extra_warnings)
1665 printf (_(" -m%-23s [undocumented]\n"), option);
1667 else if (*description != 0)
1668 doc += printf (" -m%-23s %s\n", option, _(description));
1671 #ifdef TARGET_OPTIONS
1672 for (i = ARRAY_SIZE (target_options); i--;)
1674 const char *option = target_options[i].prefix;
1675 const char *description = target_options[i].description;
1677 if (option == NULL || *option == 0)
1678 continue;
1679 else if (description == NULL)
1681 undoc = 1;
1683 if (extra_warnings)
1684 printf (_(" -m%-23s [undocumented]\n"), option);
1686 else if (*description != 0)
1687 doc += printf (" -m%-23s %s\n", option, _(description));
1689 #endif
1690 if (undoc)
1692 if (doc)
1693 printf (_("\nThere are undocumented target specific options as well.\n"));
1694 else
1695 printf (_(" They exist, but they are not documented.\n"));
1700 /* Parse a -d... command line switch. */
1702 void
1703 decode_d_option (const char *arg)
1705 int c;
1707 while (*arg)
1708 switch (c = *arg++)
1710 case 'A':
1711 flag_debug_asm = 1;
1712 break;
1713 case 'p':
1714 flag_print_asm_name = 1;
1715 break;
1716 case 'P':
1717 flag_dump_rtl_in_asm = 1;
1718 flag_print_asm_name = 1;
1719 break;
1720 case 'v':
1721 graph_dump_format = vcg;
1722 break;
1723 case 'x':
1724 rtl_dump_and_exit = 1;
1725 break;
1726 case 'y':
1727 set_yydebug = 1;
1728 break;
1729 case 'D': /* These are handled by the preprocessor. */
1730 case 'I':
1731 break;
1732 case 'H':
1733 setup_core_dumping();
1734 break;
1736 case 'a':
1737 default:
1738 if (!enable_rtl_dump_file (c))
1739 warning ("unrecognized gcc debugging option: %c", c);
1740 break;
1744 /* Indexed by enum debug_info_type. */
1745 const char *const debug_type_names[] =
1747 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
1750 /* Decode -m switches. */
1751 /* Decode the switch -mNAME. */
1753 void
1754 set_target_switch (const char *name)
1756 size_t j;
1757 int valid_target_option = 0;
1759 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1760 if (!strcmp (target_switches[j].name, name))
1762 if (target_switches[j].value < 0)
1763 target_flags &= ~-target_switches[j].value;
1764 else
1765 target_flags |= target_switches[j].value;
1766 if (name[0] != 0)
1768 if (target_switches[j].value < 0)
1769 target_flags_explicit |= -target_switches[j].value;
1770 else
1771 target_flags_explicit |= target_switches[j].value;
1773 valid_target_option = 1;
1776 #ifdef TARGET_OPTIONS
1777 if (!valid_target_option)
1778 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1780 int len = strlen (target_options[j].prefix);
1781 if (target_options[j].value)
1783 if (!strcmp (target_options[j].prefix, name))
1785 *target_options[j].variable = target_options[j].value;
1786 valid_target_option = 1;
1789 else
1791 if (!strncmp (target_options[j].prefix, name, len))
1793 *target_options[j].variable = name + len;
1794 valid_target_option = 1;
1798 #endif
1800 if (!valid_target_option)
1801 error ("invalid option `%s'", name);
1804 /* Print version information to FILE.
1805 Each line begins with INDENT (for the case where FILE is the
1806 assembler output file). */
1808 void
1809 print_version (FILE *file, const char *indent)
1811 #ifndef __VERSION__
1812 #define __VERSION__ "[?]"
1813 #endif
1814 fnotice (file,
1815 #ifdef __GNUC__
1816 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
1817 #else
1818 "%s%s%s version %s (%s) compiled by CC.\n"
1819 #endif
1820 , indent, *indent != 0 ? " " : "",
1821 lang_hooks.name, version_string, TARGET_NAME,
1822 indent, __VERSION__);
1823 fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
1824 indent, *indent != 0 ? " " : "",
1825 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1828 /* Print an option value and return the adjusted position in the line.
1829 ??? We don't handle error returns from fprintf (disk full); presumably
1830 other code will catch a disk full though. */
1832 static int
1833 print_single_switch (FILE *file, int pos, int max,
1834 const char *indent, const char *sep, const char *term,
1835 const char *type, const char *name)
1837 /* The ultrix fprintf returns 0 on success, so compute the result we want
1838 here since we need it for the following test. */
1839 int len = strlen (sep) + strlen (type) + strlen (name);
1841 if (pos != 0
1842 && pos + len > max)
1844 fprintf (file, "%s", term);
1845 pos = 0;
1847 if (pos == 0)
1849 fprintf (file, "%s", indent);
1850 pos = strlen (indent);
1852 fprintf (file, "%s%s%s", sep, type, name);
1853 pos += len;
1854 return pos;
1857 /* Print active target switches to FILE.
1858 POS is the current cursor position and MAX is the size of a "line".
1859 Each line begins with INDENT and ends with TERM.
1860 Each switch is separated from the next by SEP. */
1862 static void
1863 print_switch_values (FILE *file, int pos, int max,
1864 const char *indent, const char *sep, const char *term)
1866 size_t j;
1867 const char **p;
1869 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1870 that it can be printed below. This helps reproducibility. */
1871 randomize ();
1873 /* Print the options as passed. */
1874 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1875 _("options passed: "), "");
1877 for (p = &save_argv[1]; *p != NULL; p++)
1878 if (**p == '-')
1880 /* Ignore these. */
1881 if (strcmp (*p, "-o") == 0)
1883 if (p[1] != NULL)
1884 p++;
1885 continue;
1887 if (strcmp (*p, "-quiet") == 0)
1888 continue;
1889 if (strcmp (*p, "-version") == 0)
1890 continue;
1891 if ((*p)[1] == 'd')
1892 continue;
1894 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1896 if (pos > 0)
1897 fprintf (file, "%s", term);
1899 /* Print the -f and -m options that have been enabled.
1900 We don't handle language specific options but printing argv
1901 should suffice. */
1903 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1904 _("options enabled: "), "");
1906 for (j = 0; j < ARRAY_SIZE (f_options); j++)
1907 if (*f_options[j].variable == f_options[j].on_value)
1908 pos = print_single_switch (file, pos, max, indent, sep, term,
1909 "-f", f_options[j].string);
1911 /* Print target specific options. */
1913 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1914 if (target_switches[j].name[0] != '\0'
1915 && target_switches[j].value > 0
1916 && ((target_switches[j].value & target_flags)
1917 == target_switches[j].value))
1919 pos = print_single_switch (file, pos, max, indent, sep, term,
1920 "-m", target_switches[j].name);
1923 #ifdef TARGET_OPTIONS
1924 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1925 if (*target_options[j].variable != NULL)
1927 char prefix[256];
1928 sprintf (prefix, "-m%s", target_options[j].prefix);
1929 pos = print_single_switch (file, pos, max, indent, sep, term,
1930 prefix, *target_options[j].variable);
1932 #endif
1934 fprintf (file, "%s", term);
1937 /* Open assembly code output file. Do this even if -fsyntax-only is
1938 on, because then the driver will have provided the name of a
1939 temporary file or bit bucket for us. NAME is the file specified on
1940 the command line, possibly NULL. */
1941 static void
1942 init_asm_output (const char *name)
1944 if (name == NULL && asm_file_name == 0)
1945 asm_out_file = stdout;
1946 else
1948 if (asm_file_name == 0)
1950 int len = strlen (dump_base_name);
1951 char *dumpname = xmalloc (len + 6);
1952 memcpy (dumpname, dump_base_name, len + 1);
1953 strip_off_ending (dumpname, len);
1954 strcat (dumpname, ".s");
1955 asm_file_name = dumpname;
1957 if (!strcmp (asm_file_name, "-"))
1958 asm_out_file = stdout;
1959 else
1960 asm_out_file = fopen (asm_file_name, "w+");
1961 if (asm_out_file == 0)
1962 fatal_error ("can't open %s for writing: %m", asm_file_name);
1965 #ifdef IO_BUFFER_SIZE
1966 setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
1967 _IOFBF, IO_BUFFER_SIZE);
1968 #endif
1970 if (!flag_syntax_only)
1972 targetm.asm_out.file_start ();
1974 #ifdef ASM_COMMENT_START
1975 if (flag_verbose_asm)
1977 /* Print the list of options in effect. */
1978 print_version (asm_out_file, ASM_COMMENT_START);
1979 print_switch_values (asm_out_file, 0, MAX_LINE,
1980 ASM_COMMENT_START, " ", "\n");
1981 /* Add a blank line here so it appears in assembler output but not
1982 screen output. */
1983 fprintf (asm_out_file, "\n");
1985 #endif
1989 /* Default version of get_pch_validity.
1990 By default, every flag difference is fatal; that will be mostly right for
1991 most targets, but completely right for very few. */
1993 void *
1994 default_get_pch_validity (size_t *len)
1996 #ifdef TARGET_OPTIONS
1997 size_t i;
1998 #endif
1999 char *result, *r;
2001 *len = sizeof (target_flags) + 2;
2002 #ifdef TARGET_OPTIONS
2003 for (i = 0; i < ARRAY_SIZE (target_options); i++)
2005 *len += 1;
2006 if (*target_options[i].variable)
2007 *len += strlen (*target_options[i].variable);
2009 #endif
2011 result = r = xmalloc (*len);
2012 r[0] = flag_pic;
2013 r[1] = flag_pie;
2014 r += 2;
2015 memcpy (r, &target_flags, sizeof (target_flags));
2016 r += sizeof (target_flags);
2018 #ifdef TARGET_OPTIONS
2019 for (i = 0; i < ARRAY_SIZE (target_options); i++)
2021 const char *str = *target_options[i].variable;
2022 size_t l;
2023 if (! str)
2024 str = "";
2025 l = strlen (str) + 1;
2026 memcpy (r, str, l);
2027 r += l;
2029 #endif
2031 return result;
2034 /* Default version of pch_valid_p. */
2036 const char *
2037 default_pch_valid_p (const void *data_p, size_t len)
2039 const char *data = (const char *)data_p;
2040 const char *flag_that_differs = NULL;
2041 size_t i;
2043 /* -fpic and -fpie also usually make a PCH invalid. */
2044 if (data[0] != flag_pic)
2045 return _("created and used with different settings of -fpic");
2046 if (data[1] != flag_pie)
2047 return _("created and used with different settings of -fpie");
2048 data += 2;
2050 /* Check target_flags. */
2051 if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
2053 for (i = 0; i < ARRAY_SIZE (target_switches); i++)
2055 int bits;
2056 int tf;
2058 memcpy (&tf, data, sizeof (target_flags));
2060 bits = target_switches[i].value;
2061 if (bits < 0)
2062 bits = -bits;
2063 if ((target_flags & bits) != (tf & bits))
2065 flag_that_differs = target_switches[i].name;
2066 goto make_message;
2069 abort ();
2071 data += sizeof (target_flags);
2072 len -= sizeof (target_flags);
2074 /* Check string options. */
2075 #ifdef TARGET_OPTIONS
2076 for (i = 0; i < ARRAY_SIZE (target_options); i++)
2078 const char *str = *target_options[i].variable;
2079 size_t l;
2080 if (! str)
2081 str = "";
2082 l = strlen (str) + 1;
2083 if (len < l || memcmp (data, str, l) != 0)
2085 flag_that_differs = target_options[i].prefix;
2086 goto make_message;
2088 data += l;
2089 len -= l;
2091 #endif
2093 return NULL;
2095 make_message:
2097 char *r;
2098 asprintf (&r, _("created and used with differing settings of `-m%s'"),
2099 flag_that_differs);
2100 if (r == NULL)
2101 return _("out of memory");
2102 return r;
2106 /* Default tree printer. Handles declarations only. */
2107 static bool
2108 default_tree_printer (pretty_printer * pp, text_info *text)
2110 switch (*text->format_spec)
2112 case 'D':
2113 case 'F':
2114 case 'T':
2116 tree t = va_arg (*text->args_ptr, tree);
2117 const char *n = DECL_NAME (t)
2118 ? (*lang_hooks.decl_printable_name) (t, 2)
2119 : "<anonymous>";
2120 pp_string (pp, n);
2122 return true;
2124 default:
2125 return false;
2129 /* Initialization of the front end environment, before command line
2130 options are parsed. Signal handlers, internationalization etc.
2131 ARGV0 is main's argv[0]. */
2132 static void
2133 general_init (const char *argv0)
2135 const char *p;
2137 p = argv0 + strlen (argv0);
2138 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
2139 --p;
2140 progname = p;
2142 xmalloc_set_program_name (progname);
2144 hex_init ();
2146 gcc_init_libintl ();
2148 /* Initialize the diagnostics reporting machinery, so option parsing
2149 can give warnings and errors. */
2150 diagnostic_initialize (global_dc);
2151 /* Set a default printer. Language specific initializations will
2152 override it later. */
2153 pp_format_decoder (global_dc->printer) = &default_tree_printer;
2155 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
2156 #ifdef SIGSEGV
2157 signal (SIGSEGV, crash_signal);
2158 #endif
2159 #ifdef SIGILL
2160 signal (SIGILL, crash_signal);
2161 #endif
2162 #ifdef SIGBUS
2163 signal (SIGBUS, crash_signal);
2164 #endif
2165 #ifdef SIGABRT
2166 signal (SIGABRT, crash_signal);
2167 #endif
2168 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
2169 signal (SIGIOT, crash_signal);
2170 #endif
2171 #ifdef SIGFPE
2172 signal (SIGFPE, crash_signal);
2173 #endif
2175 /* Other host-specific signal setup. */
2176 (*host_hooks.extra_signals)();
2178 /* Initialize the garbage-collector, string pools and tree type hash
2179 table. */
2180 init_ggc ();
2181 init_stringpool ();
2182 linemap_init (&line_table);
2183 init_ttree ();
2185 /* Initialize register usage now so switches may override. */
2186 init_reg_sets ();
2188 /* Register the language-independent parameters. */
2189 add_params (lang_independent_params, LAST_PARAM);
2191 /* This must be done after add_params but before argument processing. */
2192 init_ggc_heuristics();
2195 /* Process the options that have been parsed. */
2196 static void
2197 process_options (void)
2199 /* Allow the front end to perform consistency checks and do further
2200 initialization based on the command line options. This hook also
2201 sets the original filename if appropriate (e.g. foo.i -> foo.c)
2202 so we can correctly initialize debug output. */
2203 no_backend = (*lang_hooks.post_options) (&main_input_filename);
2204 input_filename = main_input_filename;
2206 #ifdef OVERRIDE_OPTIONS
2207 /* Some machines may reject certain combinations of options. */
2208 OVERRIDE_OPTIONS;
2209 #endif
2211 /* Set aux_base_name if not already set. */
2212 if (aux_base_name)
2214 else if (main_input_filename)
2216 char *name = xstrdup (lbasename (main_input_filename));
2218 strip_off_ending (name, strlen (name));
2219 aux_base_name = name;
2221 else
2222 aux_base_name = "gccaux";
2224 /* Set up the align_*_log variables, defaulting them to 1 if they
2225 were still unset. */
2226 if (align_loops <= 0) align_loops = 1;
2227 if (align_loops_max_skip > align_loops || !align_loops)
2228 align_loops_max_skip = align_loops - 1;
2229 align_loops_log = floor_log2 (align_loops * 2 - 1);
2230 if (align_jumps <= 0) align_jumps = 1;
2231 if (align_jumps_max_skip > align_jumps || !align_jumps)
2232 align_jumps_max_skip = align_jumps - 1;
2233 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
2234 if (align_labels <= 0) align_labels = 1;
2235 align_labels_log = floor_log2 (align_labels * 2 - 1);
2236 if (align_labels_max_skip > align_labels || !align_labels)
2237 align_labels_max_skip = align_labels - 1;
2238 if (align_functions <= 0) align_functions = 1;
2239 align_functions_log = floor_log2 (align_functions * 2 - 1);
2241 /* Unrolling all loops implies that standard loop unrolling must also
2242 be done. */
2243 if (flag_unroll_all_loops)
2244 flag_unroll_loops = 1;
2246 if (flag_unroll_loops)
2248 flag_old_unroll_loops = 0;
2249 flag_old_unroll_all_loops = 0;
2252 if (flag_old_unroll_all_loops)
2253 flag_old_unroll_loops = 1;
2255 /* Old loop unrolling requires that strength_reduction be on also. Silently
2256 turn on strength reduction here if it isn't already on. Also, the loop
2257 unrolling code assumes that cse will be run after loop, so that must
2258 be turned on also. */
2259 if (flag_old_unroll_loops)
2261 flag_strength_reduce = 1;
2262 flag_rerun_cse_after_loop = 1;
2264 if (flag_unroll_loops || flag_peel_loops)
2265 flag_rerun_cse_after_loop = 1;
2267 if (flag_non_call_exceptions)
2268 flag_asynchronous_unwind_tables = 1;
2269 if (flag_asynchronous_unwind_tables)
2270 flag_unwind_tables = 1;
2272 /* Disable unit-at-a-time mode for frontends not supporting callgraph
2273 interface. */
2274 if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
2275 flag_unit_at_a_time = 0;
2277 if (flag_value_profile_transformations)
2278 flag_profile_values = 1;
2280 /* Warn about options that are not supported on this machine. */
2281 #ifndef INSN_SCHEDULING
2282 if (flag_schedule_insns || flag_schedule_insns_after_reload)
2283 warning ("instruction scheduling not supported on this target machine");
2284 #endif
2285 #ifndef DELAY_SLOTS
2286 if (flag_delayed_branch)
2287 warning ("this target machine does not have delayed branches");
2288 #endif
2290 user_label_prefix = USER_LABEL_PREFIX;
2291 if (flag_leading_underscore != -1)
2293 /* If the default prefix is more complicated than "" or "_",
2294 issue a warning and ignore this option. */
2295 if (user_label_prefix[0] == 0 ||
2296 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
2298 user_label_prefix = flag_leading_underscore ? "_" : "";
2300 else
2301 warning ("-f%sleading-underscore not supported on this target machine",
2302 flag_leading_underscore ? "" : "no-");
2305 /* If we are in verbose mode, write out the version and maybe all the
2306 option flags in use. */
2307 if (version_flag)
2309 print_version (stderr, "");
2310 if (! quiet_flag)
2311 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
2314 if (flag_syntax_only)
2316 write_symbols = NO_DEBUG;
2317 profile_flag = 0;
2320 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
2321 level is 0. */
2322 if (debug_info_level == DINFO_LEVEL_NONE)
2323 write_symbols = NO_DEBUG;
2325 /* Now we know write_symbols, set up the debug hooks based on it.
2326 By default we do nothing for debug output. */
2327 if (write_symbols == NO_DEBUG)
2328 debug_hooks = &do_nothing_debug_hooks;
2329 #if defined(DBX_DEBUGGING_INFO)
2330 else if (write_symbols == DBX_DEBUG)
2331 debug_hooks = &dbx_debug_hooks;
2332 #endif
2333 #if defined(XCOFF_DEBUGGING_INFO)
2334 else if (write_symbols == XCOFF_DEBUG)
2335 debug_hooks = &xcoff_debug_hooks;
2336 #endif
2337 #ifdef SDB_DEBUGGING_INFO
2338 else if (write_symbols == SDB_DEBUG)
2339 debug_hooks = &sdb_debug_hooks;
2340 #endif
2341 #ifdef DWARF2_DEBUGGING_INFO
2342 else if (write_symbols == DWARF2_DEBUG)
2343 debug_hooks = &dwarf2_debug_hooks;
2344 #endif
2345 #ifdef VMS_DEBUGGING_INFO
2346 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
2347 debug_hooks = &vmsdbg_debug_hooks;
2348 #endif
2349 else
2350 error ("target system does not support the \"%s\" debug format",
2351 debug_type_names[write_symbols]);
2353 /* Now we know which debug output will be used so we can set
2354 flag_var_tracking if user has not specified it. */
2355 if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
2357 /* User has not specified -f(no-)var-tracking so autodetect it. */
2358 flag_var_tracking
2359 = (optimize >= 1 && debug_info_level >= DINFO_LEVEL_NORMAL
2360 && debug_hooks->var_location != do_nothing_debug_hooks.var_location);
2363 /* If auxiliary info generation is desired, open the output file.
2364 This goes in the same directory as the source file--unlike
2365 all the other output files. */
2366 if (flag_gen_aux_info)
2368 aux_info_file = fopen (aux_info_file_name, "w");
2369 if (aux_info_file == 0)
2370 fatal_error ("can't open %s: %m", aux_info_file_name);
2373 if (! targetm.have_named_sections)
2375 if (flag_function_sections)
2377 warning ("-ffunction-sections not supported for this target");
2378 flag_function_sections = 0;
2380 if (flag_data_sections)
2382 warning ("-fdata-sections not supported for this target");
2383 flag_data_sections = 0;
2387 if (flag_function_sections && profile_flag)
2389 warning ("-ffunction-sections disabled; it makes profiling impossible");
2390 flag_function_sections = 0;
2393 #ifndef HAVE_prefetch
2394 if (flag_prefetch_loop_arrays)
2396 warning ("-fprefetch-loop-arrays not supported for this target");
2397 flag_prefetch_loop_arrays = 0;
2399 #else
2400 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2402 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
2403 flag_prefetch_loop_arrays = 0;
2405 #endif
2407 /* This combination of options isn't handled for i386 targets and doesn't
2408 make much sense anyway, so don't allow it. */
2409 if (flag_prefetch_loop_arrays && optimize_size)
2411 warning ("-fprefetch-loop-arrays is not supported with -Os");
2412 flag_prefetch_loop_arrays = 0;
2415 #ifndef OBJECT_FORMAT_ELF
2416 if (flag_function_sections && write_symbols != NO_DEBUG)
2417 warning ("-ffunction-sections may affect debugging on some targets");
2418 #endif
2420 /* The presence of IEEE signaling NaNs, implies all math can trap. */
2421 if (flag_signaling_nans)
2422 flag_trapping_math = 1;
2425 /* Initialize the compiler back end. */
2426 static void
2427 backend_init (void)
2429 init_adjust_machine_modes ();
2431 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2432 || debug_info_level == DINFO_LEVEL_VERBOSE
2433 #ifdef VMS_DEBUGGING_INFO
2434 /* Enable line number info for traceback. */
2435 || debug_info_level > DINFO_LEVEL_NONE
2436 #endif
2437 || flag_test_coverage
2438 || warn_notreached);
2440 init_regs ();
2441 init_fake_stack_mems ();
2442 init_alias_once ();
2443 init_loop ();
2444 init_reload ();
2445 init_function_once ();
2446 init_varasm_once ();
2448 /* The following initialization functions need to generate rtl, so
2449 provide a dummy function context for them. */
2450 init_dummy_function_start ();
2451 init_expmed ();
2452 if (flag_caller_saves)
2453 init_caller_save ();
2454 expand_dummy_function_end ();
2457 /* Language-dependent initialization. Returns nonzero on success. */
2458 static int
2459 lang_dependent_init (const char *name)
2461 if (dump_base_name == 0)
2462 dump_base_name = name ? name : "gccdump";
2464 /* Other front-end initialization. */
2465 if ((*lang_hooks.init) () == 0)
2466 return 0;
2468 init_asm_output (name);
2470 /* These create various _DECL nodes, so need to be called after the
2471 front end is initialized. */
2472 init_eh ();
2473 init_optabs ();
2475 /* The following initialization functions need to generate rtl, so
2476 provide a dummy function context for them. */
2477 init_dummy_function_start ();
2478 init_expr_once ();
2479 expand_dummy_function_end ();
2481 /* If dbx symbol table desired, initialize writing it and output the
2482 predefined types. */
2483 timevar_push (TV_SYMOUT);
2485 #ifdef DWARF2_UNWIND_INFO
2486 if (dwarf2out_do_frame ())
2487 dwarf2out_frame_init ();
2488 #endif
2490 /* Now we have the correct original filename, we can initialize
2491 debug output. */
2492 (*debug_hooks->init) (name);
2494 timevar_pop (TV_SYMOUT);
2496 return 1;
2499 /* Clean up: close opened files, etc. */
2501 static void
2502 finalize (void)
2504 /* Close the dump files. */
2505 if (flag_gen_aux_info)
2507 fclose (aux_info_file);
2508 if (errorcount)
2509 unlink (aux_info_file_name);
2512 /* Close non-debugging input and output files. Take special care to note
2513 whether fclose returns an error, since the pages might still be on the
2514 buffer chain while the file is open. */
2516 if (asm_out_file)
2518 if (ferror (asm_out_file) != 0)
2519 fatal_error ("error writing to %s: %m", asm_file_name);
2520 if (fclose (asm_out_file) != 0)
2521 fatal_error ("error closing %s: %m", asm_file_name);
2524 finish_optimization_passes ();
2526 if (mem_report)
2528 ggc_print_statistics ();
2529 stringpool_statistics ();
2530 dump_tree_statistics ();
2531 dump_rtx_statistics ();
2532 dump_varray_statistics ();
2533 dump_alloc_pool_statistics ();
2534 dump_ggc_loc_statistics ();
2537 /* Free up memory for the benefit of leak detectors. */
2538 free_reg_info ();
2540 /* Language-specific end of compilation actions. */
2541 (*lang_hooks.finish) ();
2544 /* Initialize the compiler, and compile the input file. */
2545 static void
2546 do_compile (void)
2548 /* Initialize timing first. The C front ends read the main file in
2549 the post_options hook, and C++ does file timings. */
2550 if (time_report || !quiet_flag || flag_detailed_statistics)
2551 timevar_init ();
2552 timevar_start (TV_TOTAL);
2554 process_options ();
2556 /* Don't do any more if an error has already occurred. */
2557 if (!errorcount)
2559 /* Set up the back-end if requested. */
2560 if (!no_backend)
2561 backend_init ();
2563 /* Language-dependent initialization. Returns true on success. */
2564 if (lang_dependent_init (main_input_filename))
2565 compile_file ();
2567 finalize ();
2570 /* Stop timing and print the times. */
2571 timevar_stop (TV_TOTAL);
2572 timevar_print (stderr);
2575 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2576 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2577 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2579 It is not safe to call this function more than once. */
2582 toplev_main (unsigned int argc, const char **argv)
2584 save_argv = argv;
2586 /* Initialization of GCC's environment, and diagnostics. */
2587 general_init (argv[0]);
2589 /* Parse the options and do minimal processing; basically just
2590 enough to default flags appropriately. */
2591 decode_options (argc, argv);
2593 randomize ();
2595 /* Exit early if we can (e.g. -help). */
2596 if (!exit_after_options)
2597 do_compile ();
2599 if (errorcount || sorrycount)
2600 return (FATAL_EXIT_CODE);
2602 return (SUCCESS_EXIT_CODE);