OSDN Git Service

* toplev.c (backend_init): Add missing call to inint_optimization_passes.
[pf3gnuchains/gcc-fork.git] / gcc / toplev.c
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.
4
5 This file is part of GCC.
6
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.
11
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.
16
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.  */
21
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.  */
26
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>
34
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
42
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"
83
84 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
85 #include "dwarf2out.h"
86 #endif
87
88 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
89 #include "dbxout.h"
90 #endif
91
92 #ifdef SDB_DEBUGGING_INFO
93 #include "sdbout.h"
94 #endif
95
96 #ifdef XCOFF_DEBUGGING_INFO
97 #include "xcoffout.h"           /* Needed for external data
98                                    declarations for e.g. AIX 4.x.  */
99 #endif
100
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);
108
109 static void crash_signal (int) ATTRIBUTE_NORETURN;
110 static void setup_core_dumping (void);
111 static void compile_file (void);
112
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 *);
118
119 /* Nonzero to dump debug info whilst parsing (-dy option).  */
120 static int set_yydebug;
121
122 /* True if we don't need a backend (e.g. preprocessing only).  */
123 static bool no_backend;
124
125 /* Length of line when printing switch values.  */
126 #define MAX_LINE 75
127
128 /* Name of program invoked, sans directories.  */
129
130 const char *progname;
131
132 /* Copy of argument vector to toplev_main.  */
133 static const char **save_argv;
134
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.  */
138
139 const char *main_input_filename;
140
141 /* Current position in real source file.  */
142
143 location_t input_location;
144
145 struct line_maps line_table;
146
147 /* Nonzero if it is unsafe to create any new pseudo registers.  */
148 int no_new_pseudos;
149
150 /* Stack of currently pending input files.  */
151
152 struct file_stack *input_file_stack;
153
154 /* Incremented on each change to input_file_stack.  */
155 int input_file_stack_tick;
156
157 /* Name to use as base of names for dump output files.  */
158
159 const char *dump_base_name;
160
161 /* Name to use as a base for auxiliary output files.  */
162
163 const char *aux_base_name;
164
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.  */
168
169 extern int target_flags;
170
171 /* A mask of target_flags that includes bit X if X was set or cleared
172    on the command line.  */
173
174 int target_flags_explicit;
175
176 /* Debug hooks - dependent upon command line options.  */
177
178 const struct gcc_debug_hooks *debug_hooks;
179
180 /* Other flags saying which kinds of debugging dump have been requested.  */
181
182 int rtl_dump_and_exit;
183 int flag_print_asm_name;
184 enum graph_dump_types graph_dump_format;
185
186 /* Name for output file of assembly code, specified with -o.  */
187
188 const char *asm_file_name;
189
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.  */
196
197 int optimize = 0;
198
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.  */
203
204 int optimize_size = 0;
205
206 /* The FUNCTION_DECL for the function currently being compiled,
207    or 0 if between functions.  */
208 tree current_function_decl;
209
210 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
211    if none.  */
212 tree current_function_func_begin_label;
213
214 /* Nonzero if doing dwarf2 duplicate elimination.  */
215
216 int flag_eliminate_dwarf2_dups = 0;
217
218 /* Nonzero if doing unused type elimination.  */
219
220 int flag_eliminate_unused_debug_types = 1;
221
222 /* Nonzero means emit debugging information only for symbols which are used.  */
223 int flag_debug_only_used_symbols = 0;
224
225 /* Nonzero if generating code to do profiling.  */
226
227 int profile_flag = 0;
228
229 /* Nonzero if generating code to profile program flow graph arcs.  */
230
231 int profile_arc_flag = 0;
232
233 /* Nonzero if value histograms should be measured.  */
234
235 int flag_profile_values = 0;
236
237 /* Nonzero if value histograms should be used to optimize code.  */
238 int flag_value_profile_transformations = 0;
239
240 /* Nonzero if generating info for gcov to calculate line test coverage.  */
241
242 int flag_test_coverage = 0;
243
244 /* Nonzero indicates that branch taken probabilities should be calculated.  */
245
246 int flag_branch_probabilities = 0;
247
248 /* Nonzero if basic blocks should be reordered.  */
249
250 int flag_reorder_blocks = 0;
251
252 /* Nonzero if functions should be reordered.  */
253
254 int flag_reorder_functions = 0;
255
256 /* Nonzero if registers should be renamed.  */
257
258 int flag_rename_registers = 0;
259 int flag_cprop_registers = 0;
260
261 /* Nonzero for -pedantic switch: warn about anything
262    that standard spec forbids.  */
263
264 int pedantic = 0;
265
266 /* Temporarily suppress certain warnings.
267    This is set while reading code from a system header file.  */
268
269 int in_system_header = 0;
270
271 /* Don't print functions as they are compiled.  -quiet.  */
272
273 int quiet_flag = 0;
274
275 /* Print times taken by the various passes.  -ftime-report.  */
276
277 int time_report = 0;
278
279 /* Print memory still in use at end of compilation (which may have little
280    to do with peak memory consumption).  -fmem-report.  */
281
282 int mem_report = 0;
283
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;
287
288 /* A random sequence of characters, unless overridden by user.  */
289 const char *flag_random_seed;
290
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;
295
296 /* -f flags.  */
297
298 /* Nonzero means `char' should be signed.  */
299
300 int flag_signed_char;
301
302 /* Nonzero means give an enum type only as many bytes as it needs.  */
303
304 int flag_short_enums;
305
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.  */
309
310 int flag_caller_saves = 0;
311
312 /* Nonzero if structures and unions should be returned in memory.
313
314    This should only be defined if compatibility with another compiler or
315    with an ABI is needed, because it results in slower code.  */
316
317 #ifndef DEFAULT_PCC_STRUCT_RETURN
318 #define DEFAULT_PCC_STRUCT_RETURN 1
319 #endif
320
321 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
322
323 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
324
325 /* Nonzero for -fforce-mem: load memory value into a register
326    before arithmetic on it.  This makes better cse but slower compilation.  */
327
328 int flag_force_mem = 0;
329
330 /* Nonzero for -fforce-addr: load memory address into a register before
331    reference to memory.  This makes better cse but slower compilation.  */
332
333 int flag_force_addr = 0;
334
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.  */
337
338 int flag_defer_pop = 0;
339
340 /* Nonzero for -ffloat-store: don't allocate floats and doubles
341    in extended-precision registers.  */
342
343 int flag_float_store = 0;
344
345 /* Nonzero for -fcse-follow-jumps:
346    have cse follow jumps to do a more extensive job.  */
347
348 int flag_cse_follow_jumps;
349
350 /* Nonzero for -fcse-skip-blocks:
351    have cse follow a branch around a block.  */
352 int flag_cse_skip_blocks;
353
354 /* Nonzero for -fexpensive-optimizations:
355    perform miscellaneous relatively-expensive optimizations.  */
356 int flag_expensive_optimizations;
357
358 /* Nonzero for -fthread-jumps:
359    have jump optimize output of loop.  */
360
361 int flag_thread_jumps;
362
363 /* Nonzero enables strength-reduction in loop.c.  */
364
365 int flag_strength_reduce = 0;
366
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.  */
371
372 int flag_old_unroll_loops;
373
374 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
375    This is generally not a win.  */
376
377 int flag_old_unroll_all_loops;
378
379 /* Enables unrolling of simple loops in loop-unroll.c.  */
380 int flag_unroll_loops;
381
382 /* Enables unrolling of all loops in loop-unroll.c.  */
383 int flag_unroll_all_loops;
384
385 /* Nonzero enables loop peeling.  */
386 int flag_peel_loops;
387
388 /* Nonzero enables loop unswitching.  */
389 int flag_unswitch_loops;
390
391 /* Nonzero enables prefetch optimizations for arrays in loops.  */
392
393 int flag_prefetch_loop_arrays;
394
395 /* Nonzero forces all invariant computations in loops to be moved
396    outside the loop.  */
397
398 int flag_move_all_movables = 0;
399
400 /* Nonzero forces all general induction variables in loops to be
401    strength reduced.  */
402
403 int flag_reduce_all_givs = 0;
404
405 /* Nonzero to perform full register move optimization passes.  This is the
406    default for -O2.  */
407
408 int flag_regmove = 0;
409
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.  */
413
414 int flag_no_function_cse = 0;
415
416 /* Nonzero for -fomit-frame-pointer:
417    don't make a frame pointer in simple functions that don't require one.  */
418
419 int flag_omit_frame_pointer = 0;
420
421 /* Nonzero means place each function into its own section on those platforms
422    which support arbitrary section names and unlimited numbers of sections.  */
423
424 int flag_function_sections = 0;
425
426 /* ... and similar for data.  */
427
428 int flag_data_sections = 0;
429
430 /* Nonzero to inhibit use of define_optimization peephole opts.  */
431
432 int flag_no_peephole = 0;
433
434 /* Nonzero allows GCC to optimize sibling and tail recursive calls.  */
435
436 int flag_optimize_sibling_calls = 0;
437
438 /* Nonzero means the front end generally wants `errno' maintained by math
439    operations, like built-in SQRT.  */
440
441 int flag_errno_math = 1;
442
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).  */
447
448 int flag_unsafe_math_optimizations = 0;
449
450 /* Nonzero means that no NaNs or +-Infs are expected.  */
451
452 int flag_finite_math_only = 0;
453
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).  */
459
460 int flag_trapping_math = 1;
461
462 /* Nonzero means disable transformations that assume default floating
463    point rounding behavior.  */
464
465 int flag_rounding_math = 0;
466
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.  */
470
471 int flag_signaling_nans = 0;
472
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).  */
476
477 int flag_complex_divide_method = 0;
478
479 /* Nonzero means just do syntax checking; don't output anything.  */
480
481 int flag_syntax_only = 0;
482
483 /* Nonzero means performs web construction pass.  */
484
485 int flag_web;
486
487 /* Nonzero means perform loop optimizer.  */
488
489 int flag_loop_optimize;
490
491 /* Nonzero means perform crossjumping.  */
492
493 int flag_crossjumping;
494
495 /* Nonzero means perform if conversion.  */
496
497 int flag_if_conversion;
498
499 /* Nonzero means perform if conversion after reload.  */
500
501 int flag_if_conversion2;
502
503 /* Nonzero means to use global dataflow analysis to eliminate
504    useless null pointer tests.  */
505
506 int flag_delete_null_pointer_checks;
507
508 /* Nonzero means perform global CSE.  */
509
510 int flag_gcse = 0;
511
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.  */
515
516 int flag_gcse_lm = 1;
517
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.  */
521
522 int flag_gcse_sm = 1;
523
524 /* Nonzero if we want to perform redundant load after store elimination
525    in gcse.  */
526
527 int flag_gcse_las = 1;
528
529 /* Nonzero means perform global cse after register allocation.  */
530 int flag_gcse_after_reload = 0;
531
532 /* Perform target register optimization before prologue / epilogue
533    threading.  */
534
535 int flag_branch_target_load_optimize = 0;
536
537 /* Perform target register optimization after prologue / epilogue
538    threading and jump2.  */
539
540 int flag_branch_target_load_optimize2 = 0;
541
542 /* For the bt-load pass, nonzero means don't re-use branch target registers
543    in any basic block.  */
544
545 int flag_btr_bb_exclusive;
546
547 /* Nonzero means to rerun cse after loop optimization.  This increases
548    compilation time about 20% and picks up a few more common expressions.  */
549
550 int flag_rerun_cse_after_loop;
551
552 /* Nonzero means to run loop optimizations twice.  */
553
554 int flag_rerun_loop_opt;
555
556 /* Nonzero for -finline-functions: ok to inline functions that look like
557    good inline candidates.  */
558
559 int flag_inline_functions;
560
561 /* Nonzero for -fkeep-inline-functions: even if we make a function
562    go inline everywhere, keep its definition around for debugging
563    purposes.  */
564
565 int flag_keep_inline_functions;
566
567 /* Nonzero means that functions will not be inlined.  */
568
569 int flag_no_inline = 2;
570
571 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
572    not just because the tree inliner turned us off.  */
573
574 int flag_really_no_inline = 2;
575
576 /* Nonzero means that we should emit static const variables
577    regardless of whether or not optimization is turned on.  */
578
579 int flag_keep_static_consts = 1;
580
581 /* Nonzero means we should be saving declaration info into a .X file.  */
582
583 int flag_gen_aux_info = 0;
584
585 /* Specified name of aux-info file.  */
586
587 const char *aux_info_file_name;
588
589 /* Nonzero means make the text shared if supported.  */
590
591 int flag_shared_data;
592
593 /* Nonzero means schedule into delayed branch slots if supported.  */
594
595 int flag_delayed_branch;
596
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.  */
600
601 int flag_pic;
602
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.  */
606
607 int flag_pie;
608
609 /* Nonzero if we are compiling code for a shared library, zero for
610    executable.  */
611
612 int flag_shlib;
613
614 /* Set to the default thread-local storage (tls) model to use.  */
615
616 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
617
618 /* Nonzero means generate extra code for exception handling and enable
619    exception handling.  */
620
621 int flag_exceptions;
622
623 /* Nonzero means generate frame unwind info table when supported.  */
624
625 int flag_unwind_tables = 0;
626
627 /* Nonzero means generate frame unwind info table exact at each insn
628    boundary.  */
629
630 int flag_asynchronous_unwind_tables = 0;
631
632 /* Nonzero means don't place uninitialized global data in common storage
633    by default.  */
634
635 int flag_no_common;
636
637 /* Nonzero means change certain warnings into errors.
638    Usually these are warnings about failure to conform to some standard.  */
639
640 int flag_pedantic_errors = 0;
641
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.  */
646
647 int flag_schedule_insns = 0;
648 int flag_schedule_insns_after_reload = 0;
649
650 /* When flag_schedule_insns_after_reload is set, use EBB scheduler.  */
651 int flag_sched2_use_superblocks = 0;
652
653 /* When flag_schedule_insns_after_reload is set, construct traces and EBB
654    scheduler.  */
655 int flag_sched2_use_traces = 0;
656
657 /* The following flags have effect only for scheduling before register
658    allocation:
659
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.  */
666
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;
671
672 /* The following flags have an effect during scheduling after register
673    allocation:
674
675    flag_sched_stalled_insns means that insns can be moved prematurely from the queue
676    of stalled insns into the ready list.
677
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).  */
682
683 int flag_sched_stalled_insns = 0;
684 int flag_sched_stalled_insns_dep = 1;
685
686 int flag_single_precision_constant;
687
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;
691
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;
697
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.  */
704
705 int flag_verbose_asm = 0;
706
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.  */
713
714 int flag_debug_asm = 0;
715
716 /* -dP causes the rtl to be emitted as a comment in assembly.  */
717
718 int flag_dump_rtl_in_asm = 0;
719
720 /* Nonzero means put zero initialized data in the bss section.  */
721 int flag_zero_initialized_in_bss = 1;
722
723 /* Tag all structures with __attribute__(packed).  */
724 int flag_pack_struct = 0;
725
726 /* Emit code to check for stack overflow; also may cause large objects
727    to be allocated dynamically.  */
728 int flag_stack_check;
729
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;
738
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;
746
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;
752
753 /* Instrument functions with calls at entry and exit, for profiling.  */
754 int flag_instrument_function_entry_exit = 0;
755
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.  */
759
760 int flag_no_ident = 0;
761
762 /* This will perform a peephole pass before sched2.  */
763 int flag_peephole2 = 0;
764
765 /* This will try to guess branch probabilities.  */
766 int flag_guess_branch_prob = 0;
767
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;
773
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;
778
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;
783
784 /* If nonzero, use the graph coloring register allocator.  */
785 int flag_new_regalloc = 0;
786
787 /* Nonzero if we perform superblock formation.  */
788
789 int flag_tracer = 0;
790
791 /* Nonzero if we perform whole unit at a time compilation.  */
792
793 int flag_unit_at_a_time = 0;
794
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 ().  */
798  
799 #define AUTODETECT_FLAG_VAR_TRACKING 2
800 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
801
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.  */
806
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;
818
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;
822
823 typedef struct
824 {
825   const char *const string;
826   int *const variable;
827   const int on_value;
828 }
829 lang_independent_options;
830
831 /* Nonzero if signed arithmetic overflow should trap.  */
832 int flag_trapv = 0;
833
834 /* Nonzero if signed arithmetic overflow should wrap around.  */
835 int flag_wrapv = 0;
836
837 /* Nonzero if subexpressions must be evaluated from left-to-right.  */
838 int flag_evaluation_order = 0;
839
840 /* Add or remove a leading underscore from user symbols.  */
841 int flag_leading_underscore = -1;
842
843 /*  The version of the C++ ABI in use.  The following values are
844     allowed:
845
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++.
850
851     1: The version of the ABI first used in G++ 3.2.
852
853     2: The version of the ABI first used in G++ 3.4.
854
855     Additional positive integers will be assigned as new versions of
856     the ABI become the default version of the ABI.  */
857
858 int flag_abi_version = 2;
859
860 /* The user symbol prefix after having resolved same.  */
861 const char *user_label_prefix;
862
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 }
869 };
870
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.)  */
876
877 static const lang_independent_options f_options[] =
878 {
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}
1001 };
1002
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.)  */
1008
1009 static const struct
1010 {
1011   const char *const name;
1012   const int value;
1013   const char *const description;
1014 }
1015 target_switches[] = TARGET_SWITCHES;
1016
1017 /* This table is similar, but allows the switch to have a value.  */
1018
1019 #ifdef TARGET_OPTIONS
1020 static const struct
1021 {
1022   const char *const prefix;
1023   const char **const variable;
1024   const char *const description;
1025   const char *const value;
1026 }
1027 target_options[] = TARGET_OPTIONS;
1028 #endif
1029
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.  */
1032
1033 int warn_return_type;
1034
1035 /* Output files for assembler code (real compiler output)
1036    and debugging dumps.  */
1037
1038 FILE *asm_out_file;
1039 FILE *aux_info_file;
1040 FILE *dump_file = NULL;
1041 FILE *cgraph_dump_file = NULL;
1042
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.  */
1047
1048 static const char *src_pwd;
1049
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.  */
1054
1055 bool
1056 set_src_pwd (const char *pwd)
1057 {
1058   if (src_pwd)
1059     return false;
1060
1061   src_pwd = xstrdup (pwd);
1062   return true;
1063 }
1064
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.  */
1068
1069 const char *
1070 get_src_pwd (void)
1071 {
1072   if (! src_pwd)
1073     src_pwd = getpwd ();
1074
1075    return src_pwd;
1076 }
1077
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)
1082 {
1083   if (!quiet_flag)
1084     {
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);
1092     }
1093 }
1094
1095 /* Set up a default flag_random_seed and local_tick, unless the user
1096    already specified one.  */
1097
1098 static void
1099 randomize (void)
1100 {
1101   if (!flag_random_seed)
1102     {
1103       unsigned HOST_WIDE_INT value;
1104       static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
1105
1106       /* Get some more or less random data.  */
1107 #ifdef HAVE_GETTIMEOFDAY
1108       {
1109         struct timeval tv;
1110
1111         gettimeofday (&tv, NULL);
1112         local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
1113       }
1114 #else
1115       {
1116         time_t now = time (NULL);
1117
1118         if (now != (time_t)-1)
1119           local_tick = (unsigned) now;
1120       }
1121 #endif
1122       value = local_tick ^ getpid ();
1123
1124       sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
1125       flag_random_seed = random_seed;
1126     }
1127   else if (!local_tick)
1128     local_tick = -1;
1129 }
1130
1131
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.  */
1136
1137 int
1138 read_integral_parameter (const char *p, const char *pname, const int  defval)
1139 {
1140   const char *endp = p;
1141
1142   while (*endp)
1143     {
1144       if (ISDIGIT (*endp))
1145         endp++;
1146       else
1147         break;
1148     }
1149
1150   if (*endp != 0)
1151     {
1152       if (pname != 0)
1153         error ("invalid option argument `%s'", pname);
1154       return defval;
1155     }
1156
1157   return atoi (p);
1158 }
1159
1160 /* Return the logarithm of X, base 2, considering X unsigned,
1161    if X is a power of 2.  Otherwise, returns -1.
1162
1163    This should be used via the `exact_log2' macro.  */
1164
1165 int
1166 exact_log2_wide (unsigned HOST_WIDE_INT x)
1167 {
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;
1175 }
1176
1177 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1178    If X is 0, return -1.
1179
1180    This should be used via the floor_log2 macro.  */
1181
1182 int
1183 floor_log2_wide (unsigned HOST_WIDE_INT x)
1184 {
1185   int log = -1;
1186   while (x != 0)
1187     log++,
1188     x >>= 1;
1189   return log;
1190 }
1191
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.  */
1195
1196 static void
1197 crash_signal (int signo)
1198 {
1199   signal (signo, SIG_DFL);
1200   internal_error ("%s", strsignal (signo));
1201 }
1202
1203 /* Arrange to dump core on error.  (The regular error message is still
1204    printed first, except in the case of abort().)  */
1205
1206 static void
1207 setup_core_dumping (void)
1208 {
1209 #ifdef SIGABRT
1210   signal (SIGABRT, SIG_DFL);
1211 #endif
1212 #if defined(HAVE_SETRLIMIT)
1213   {
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");
1220   }
1221 #endif
1222   diagnostic_abort_on_error (global_dc);
1223 }
1224
1225
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".)  */
1230
1231 void
1232 strip_off_ending (char *name, int len)
1233 {
1234   int i;
1235   for (i = 2; i < 6 && len > i; i++)
1236     {
1237       if (name[len - i] == '.')
1238         {
1239           name[len - i] = '\0';
1240           break;
1241         }
1242     }
1243 }
1244
1245 /* Output a quoted string.  */
1246
1247 void
1248 output_quoted_string (FILE *asm_file, const char *string)
1249 {
1250 #ifdef OUTPUT_QUOTED_STRING
1251   OUTPUT_QUOTED_STRING (asm_file, string);
1252 #else
1253   char c;
1254
1255   putc ('\"', asm_file);
1256   while ((c = *string++) != 0)
1257     {
1258       if (ISPRINT (c))
1259         {
1260           if (c == '\"' || c == '\\')
1261             putc ('\\', asm_file);
1262           putc (c, asm_file);
1263         }
1264       else
1265         fprintf (asm_file, "\\%03o", (unsigned char) c);
1266     }
1267   putc ('\"', asm_file);
1268 #endif
1269 }
1270
1271 /* Output a file name in the form wanted by System V.  */
1272
1273 void
1274 output_file_directive (FILE *asm_file, const char *input_name)
1275 {
1276   int len;
1277   const char *na;
1278
1279   if (input_name == NULL)
1280     input_name = "<stdin>";
1281
1282   len = strlen (input_name);
1283   na = input_name + len;
1284
1285   /* NA gets INPUT_NAME sans directory names.  */
1286   while (na > input_name)
1287     {
1288       if (IS_DIR_SEPARATOR (na[-1]))
1289         break;
1290       na--;
1291     }
1292
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
1300 }
1301
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.  */
1306
1307 int
1308 wrapup_global_declarations (tree *vec, int len)
1309 {
1310   tree decl;
1311   int i;
1312   int reconsider;
1313   int output_something = 0;
1314
1315   for (i = 0; i < len; i++)
1316     {
1317       decl = vec[i];
1318
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;
1323
1324       if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1325         lang_hooks.finish_incomplete_decl (decl);
1326     }
1327
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.  */
1331   do
1332     {
1333       reconsider = 0;
1334       for (i = 0; i < len; i++)
1335         {
1336           decl = vec[i];
1337
1338           if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1339             continue;
1340
1341           /* Don't write out static consts, unless we still need them.
1342
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.
1347
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.
1356
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.
1361
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.  */
1365
1366           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
1367             {
1368               bool needed = 1;
1369
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;
1385
1386               if (needed)
1387                 {
1388                   reconsider = 1;
1389                   rest_of_decl_compilation (decl, NULL, 1, 1);
1390                 }
1391             }
1392
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))))
1400             {
1401               reconsider = 1;
1402               output_inline_function (decl);
1403             }
1404         }
1405
1406       if (reconsider)
1407         output_something = 1;
1408     }
1409   while (reconsider);
1410
1411   return output_something;
1412 }
1413
1414 /* Issue appropriate warnings for the global declarations in VEC (of
1415    which there are LEN).  Output debugging information for them.  */
1416
1417 void
1418 check_global_declarations (tree *vec, int len)
1419 {
1420   tree decl;
1421   int i;
1422
1423   for (i = 0; i < len; i++)
1424     {
1425       decl = vec[i];
1426
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);
1433
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))
1446         {
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);
1454         }
1455
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);
1476
1477       /* Avoid confusing the debug information machinery when there are
1478          errors.  */
1479       if (errorcount == 0 && sorrycount == 0)
1480         {
1481           timevar_push (TV_SYMOUT);
1482           (*debug_hooks->global_decl) (decl);
1483           timevar_pop (TV_SYMOUT);
1484         }
1485     }
1486 }
1487
1488 /* Warn about a use of an identifier which was marked deprecated.  */
1489 void
1490 warn_deprecated_use (tree node)
1491 {
1492   if (node == 0 || !warn_deprecated_decl)
1493     return;
1494
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))
1500     {
1501       const char *what = NULL;
1502       tree decl = TYPE_STUB_DECL (node);
1503
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)));
1509
1510       if (what)
1511         {
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);
1517         }
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");
1523     }
1524 }
1525
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.  */
1529
1530 void
1531 push_srcloc (const char *file, int line)
1532 {
1533   struct file_stack *fs;
1534
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++;
1542 }
1543
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.  */
1547
1548 void
1549 pop_srcloc (void)
1550 {
1551   struct file_stack *fs;
1552
1553   fs = input_file_stack;
1554   input_location = fs->location;
1555   input_file_stack = fs->next;
1556   free (fs);
1557   input_file_stack_tick++;
1558 }
1559
1560 /* Compile an entire translation unit.  Write a file of assembly
1561    output and various debugging dumps.  */
1562
1563 static void
1564 compile_file (void)
1565 {
1566   /* Initialize yet another pass.  */
1567
1568   init_final (main_input_filename);
1569   coverage_init (aux_base_name);
1570
1571   timevar_push (TV_PARSE);
1572
1573   /* Call the parser, which parses the entire file (calling
1574      rest_of_compilation for each function).  */
1575   lang_hooks.parse_file (set_yydebug);
1576
1577   /* In case there were missing block closers,
1578      get us back to the global binding level.  */
1579   lang_hooks.clear_binding_stack ();
1580
1581   /* Compilation is now finished except for writing
1582      what's left of the symbol table output.  */
1583   timevar_pop (TV_PARSE);
1584
1585   if (flag_syntax_only)
1586     return;
1587
1588   lang_hooks.decls.final_write_globals ();
1589
1590   cgraph_varpool_assemble_pending_decls ();
1591
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 ();
1596
1597   /* Write out any pending weak symbol declarations.  */
1598
1599   weak_finish ();
1600
1601   /* Do dbx symbols.  */
1602   timevar_push (TV_SYMOUT);
1603
1604 #ifdef DWARF2_UNWIND_INFO
1605   if (dwarf2out_do_frame ())
1606     dwarf2out_frame_finish ();
1607 #endif
1608
1609   (*debug_hooks->finish) (main_input_filename);
1610   timevar_pop (TV_SYMOUT);
1611
1612   /* Output some stuff at end of file if nec.  */
1613
1614   dw2_output_indirect_constants ();
1615
1616   targetm.asm_out.file_end ();
1617
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
1626 }
1627
1628 /* Display help for target options.  */
1629 void
1630 display_target_options (void)
1631 {
1632   int undoc, i;
1633   static bool displayed = false;
1634
1635   /* Avoid double printing for --help --target-help.  */
1636   if (displayed)
1637     return;
1638
1639   displayed = true;
1640
1641   if (ARRAY_SIZE (target_switches) > 1
1642 #ifdef TARGET_OPTIONS
1643       || ARRAY_SIZE (target_options) > 1
1644 #endif
1645       )
1646     {
1647       int doc = 0;
1648
1649       undoc = 0;
1650
1651       printf (_("\nTarget specific options:\n"));
1652
1653       for (i = ARRAY_SIZE (target_switches); i--;)
1654         {
1655           const char *option      = target_switches[i].name;
1656           const char *description = target_switches[i].description;
1657
1658           if (option == NULL || *option == 0)
1659             continue;
1660           else if (description == NULL)
1661             {
1662               undoc = 1;
1663
1664               if (extra_warnings)
1665                 printf (_("  -m%-23s [undocumented]\n"), option);
1666             }
1667           else if (*description != 0)
1668             doc += printf ("  -m%-23s %s\n", option, _(description));
1669         }
1670
1671 #ifdef TARGET_OPTIONS
1672       for (i = ARRAY_SIZE (target_options); i--;)
1673         {
1674           const char *option      = target_options[i].prefix;
1675           const char *description = target_options[i].description;
1676
1677           if (option == NULL || *option == 0)
1678             continue;
1679           else if (description == NULL)
1680             {
1681               undoc = 1;
1682
1683               if (extra_warnings)
1684                 printf (_("  -m%-23s [undocumented]\n"), option);
1685             }
1686           else if (*description != 0)
1687             doc += printf ("  -m%-23s %s\n", option, _(description));
1688         }
1689 #endif
1690       if (undoc)
1691         {
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"));
1696         }
1697     }
1698 }
1699
1700 /* Parse a -d... command line switch.  */
1701
1702 void
1703 decode_d_option (const char *arg)
1704 {
1705   int c;
1706
1707   while (*arg)
1708     switch (c = *arg++)
1709       {
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;
1735
1736       case 'a':
1737       default:
1738         if (!enable_rtl_dump_file (c))
1739           warning ("unrecognized gcc debugging option: %c", c);
1740         break;
1741       }
1742 }
1743
1744 /* Indexed by enum debug_info_type.  */
1745 const char *const debug_type_names[] =
1746 {
1747   "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
1748 };
1749
1750 /* Decode -m switches.  */
1751 /* Decode the switch -mNAME.  */
1752
1753 void
1754 set_target_switch (const char *name)
1755 {
1756   size_t j;
1757   int valid_target_option = 0;
1758
1759   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1760     if (!strcmp (target_switches[j].name, name))
1761       {
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)
1767           {
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;
1772           }
1773         valid_target_option = 1;
1774       }
1775
1776 #ifdef TARGET_OPTIONS
1777   if (!valid_target_option)
1778     for (j = 0; j < ARRAY_SIZE (target_options); j++)
1779       {
1780         int len = strlen (target_options[j].prefix);
1781         if (target_options[j].value)
1782           {
1783             if (!strcmp (target_options[j].prefix, name))
1784               {
1785                 *target_options[j].variable = target_options[j].value;
1786                 valid_target_option = 1;
1787               }
1788           }
1789         else
1790           {
1791             if (!strncmp (target_options[j].prefix, name, len))
1792               {
1793                 *target_options[j].variable = name + len;
1794                 valid_target_option = 1;
1795               }
1796           }
1797       }
1798 #endif
1799
1800   if (!valid_target_option)
1801     error ("invalid option `%s'", name);
1802 }
1803
1804 /* Print version information to FILE.
1805    Each line begins with INDENT (for the case where FILE is the
1806    assembler output file).  */
1807
1808 void
1809 print_version (FILE *file, const char *indent)
1810 {
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));
1826 }
1827
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.  */
1831
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)
1836 {
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);
1840
1841   if (pos != 0
1842       && pos + len > max)
1843     {
1844       fprintf (file, "%s", term);
1845       pos = 0;
1846     }
1847   if (pos == 0)
1848     {
1849       fprintf (file, "%s", indent);
1850       pos = strlen (indent);
1851     }
1852   fprintf (file, "%s%s%s", sep, type, name);
1853   pos += len;
1854   return pos;
1855 }
1856
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.  */
1861
1862 static void
1863 print_switch_values (FILE *file, int pos, int max,
1864                      const char *indent, const char *sep, const char *term)
1865 {
1866   size_t j;
1867   const char **p;
1868
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 ();
1872
1873   /* Print the options as passed.  */
1874   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1875                              _("options passed: "), "");
1876
1877   for (p = &save_argv[1]; *p != NULL; p++)
1878     if (**p == '-')
1879       {
1880         /* Ignore these.  */
1881         if (strcmp (*p, "-o") == 0)
1882           {
1883             if (p[1] != NULL)
1884               p++;
1885             continue;
1886           }
1887         if (strcmp (*p, "-quiet") == 0)
1888           continue;
1889         if (strcmp (*p, "-version") == 0)
1890           continue;
1891         if ((*p)[1] == 'd')
1892           continue;
1893
1894         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1895       }
1896   if (pos > 0)
1897     fprintf (file, "%s", term);
1898
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.  */
1902
1903   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1904                              _("options enabled: "), "");
1905
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);
1910
1911   /* Print target specific options.  */
1912
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))
1918       {
1919         pos = print_single_switch (file, pos, max, indent, sep, term,
1920                                    "-m", target_switches[j].name);
1921       }
1922
1923 #ifdef TARGET_OPTIONS
1924   for (j = 0; j < ARRAY_SIZE (target_options); j++)
1925     if (*target_options[j].variable != NULL)
1926       {
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);
1931       }
1932 #endif
1933
1934   fprintf (file, "%s", term);
1935 }
1936
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)
1943 {
1944   if (name == NULL && asm_file_name == 0)
1945     asm_out_file = stdout;
1946   else
1947     {
1948       if (asm_file_name == 0)
1949         {
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;
1956         }
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);
1963     }
1964
1965 #ifdef IO_BUFFER_SIZE
1966   setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
1967            _IOFBF, IO_BUFFER_SIZE);
1968 #endif
1969
1970   if (!flag_syntax_only)
1971     {
1972       targetm.asm_out.file_start ();
1973
1974 #ifdef ASM_COMMENT_START
1975       if (flag_verbose_asm)
1976         {
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");
1984         }
1985 #endif
1986     }
1987 }
1988
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.  */
1992
1993 void *
1994 default_get_pch_validity (size_t *len)
1995 {
1996 #ifdef TARGET_OPTIONS
1997   size_t i;
1998 #endif
1999   char *result, *r;
2000
2001   *len = sizeof (target_flags) + 2;
2002 #ifdef TARGET_OPTIONS
2003   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2004     {
2005       *len += 1;
2006       if (*target_options[i].variable)
2007         *len += strlen (*target_options[i].variable);
2008     }
2009 #endif
2010
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);
2017
2018 #ifdef TARGET_OPTIONS
2019   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2020     {
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;
2028     }
2029 #endif
2030
2031   return result;
2032 }
2033
2034 /* Default version of pch_valid_p.  */
2035
2036 const char *
2037 default_pch_valid_p (const void *data_p, size_t len)
2038 {
2039   const char *data = (const char *)data_p;
2040   const char *flag_that_differs = NULL;
2041   size_t i;
2042
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;
2049
2050   /* Check target_flags.  */
2051   if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
2052     {
2053       for (i = 0; i < ARRAY_SIZE (target_switches); i++)
2054         {
2055           int bits;
2056           int tf;
2057
2058           memcpy (&tf, data, sizeof (target_flags));
2059
2060           bits = target_switches[i].value;
2061           if (bits < 0)
2062             bits = -bits;
2063           if ((target_flags & bits) != (tf & bits))
2064             {
2065               flag_that_differs = target_switches[i].name;
2066               goto make_message;
2067             }
2068         }
2069       abort ();
2070     }
2071   data += sizeof (target_flags);
2072   len -= sizeof (target_flags);
2073
2074   /* Check string options.  */
2075 #ifdef TARGET_OPTIONS
2076   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2077     {
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)
2084         {
2085           flag_that_differs = target_options[i].prefix;
2086           goto make_message;
2087         }
2088       data += l;
2089       len -= l;
2090     }
2091 #endif
2092
2093   return NULL;
2094
2095  make_message:
2096   {
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;
2103   }
2104 }
2105
2106 /* Default tree printer.   Handles declarations only.  */
2107 static bool
2108 default_tree_printer (pretty_printer * pp, text_info *text)
2109 {
2110   switch (*text->format_spec)
2111     {
2112     case 'D':
2113     case 'F':
2114     case 'T':
2115       {
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);
2121       }
2122       return true;
2123
2124     default:
2125       return false;
2126     }
2127 }
2128
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)
2134 {
2135   const char *p;
2136
2137   p = argv0 + strlen (argv0);
2138   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
2139     --p;
2140   progname = p;
2141
2142   xmalloc_set_program_name (progname);
2143
2144   hex_init ();
2145
2146   gcc_init_libintl ();
2147
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;
2154
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
2174
2175   /* Other host-specific signal setup.  */
2176   (*host_hooks.extra_signals)();
2177
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 ();
2184
2185   /* Initialize register usage now so switches may override.  */
2186   init_reg_sets ();
2187
2188   /* Register the language-independent parameters.  */
2189   add_params (lang_independent_params, LAST_PARAM);
2190
2191   /* This must be done after add_params but before argument processing.  */
2192   init_ggc_heuristics();
2193 }
2194
2195 /* Process the options that have been parsed.  */
2196 static void
2197 process_options (void)
2198 {
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;
2205
2206 #ifdef OVERRIDE_OPTIONS
2207   /* Some machines may reject certain combinations of options.  */
2208   OVERRIDE_OPTIONS;
2209 #endif
2210
2211   /* Set aux_base_name if not already set.  */
2212   if (aux_base_name)
2213     ;
2214   else if (main_input_filename)
2215     {
2216       char *name = xstrdup (lbasename (main_input_filename));
2217
2218       strip_off_ending (name, strlen (name));
2219       aux_base_name = name;
2220     }
2221   else
2222     aux_base_name = "gccaux";
2223
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);
2240
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;
2245
2246   if (flag_unroll_loops)
2247     {
2248       flag_old_unroll_loops = 0;
2249       flag_old_unroll_all_loops = 0;
2250     }
2251
2252   if (flag_old_unroll_all_loops)
2253     flag_old_unroll_loops = 1;
2254
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)
2260     {
2261       flag_strength_reduce = 1;
2262       flag_rerun_cse_after_loop = 1;
2263     }
2264   if (flag_unroll_loops || flag_peel_loops)
2265     flag_rerun_cse_after_loop = 1;
2266
2267   if (flag_non_call_exceptions)
2268     flag_asynchronous_unwind_tables = 1;
2269   if (flag_asynchronous_unwind_tables)
2270     flag_unwind_tables = 1;
2271
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;
2276
2277   if (flag_value_profile_transformations)
2278     flag_profile_values = 1;
2279
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
2289
2290   user_label_prefix = USER_LABEL_PREFIX;
2291   if (flag_leading_underscore != -1)
2292     {
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))
2297         {
2298           user_label_prefix = flag_leading_underscore ? "_" : "";
2299         }
2300       else
2301         warning ("-f%sleading-underscore not supported on this target machine",
2302                  flag_leading_underscore ? "" : "no-");
2303     }
2304
2305   /* If we are in verbose mode, write out the version and maybe all the
2306      option flags in use.  */
2307   if (version_flag)
2308     {
2309       print_version (stderr, "");
2310       if (! quiet_flag)
2311         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
2312     }
2313
2314   if (flag_syntax_only)
2315     {
2316       write_symbols = NO_DEBUG;
2317       profile_flag = 0;
2318     }
2319
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;
2324
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]);
2352
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)
2356     {
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);
2361     }
2362
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)
2367     {
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);
2371     }
2372
2373   if (! targetm.have_named_sections)
2374     {
2375       if (flag_function_sections)
2376         {
2377           warning ("-ffunction-sections not supported for this target");
2378           flag_function_sections = 0;
2379         }
2380       if (flag_data_sections)
2381         {
2382           warning ("-fdata-sections not supported for this target");
2383           flag_data_sections = 0;
2384         }
2385     }
2386
2387   if (flag_function_sections && profile_flag)
2388     {
2389       warning ("-ffunction-sections disabled; it makes profiling impossible");
2390       flag_function_sections = 0;
2391     }
2392
2393 #ifndef HAVE_prefetch
2394   if (flag_prefetch_loop_arrays)
2395     {
2396       warning ("-fprefetch-loop-arrays not supported for this target");
2397       flag_prefetch_loop_arrays = 0;
2398     }
2399 #else
2400   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2401     {
2402       warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
2403       flag_prefetch_loop_arrays = 0;
2404     }
2405 #endif
2406
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)
2410     {
2411       warning ("-fprefetch-loop-arrays is not supported with -Os");
2412       flag_prefetch_loop_arrays = 0;
2413     }
2414
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
2419
2420     /* The presence of IEEE signaling NaNs, implies all math can trap.  */
2421     if (flag_signaling_nans)
2422       flag_trapping_math = 1;
2423 }
2424
2425 /* Initialize the compiler back end.  */
2426 static void
2427 backend_init (void)
2428 {
2429   init_adjust_machine_modes ();
2430
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);
2439
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 ();
2447
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   init_optimization_passes ();
2453   if (flag_caller_saves)
2454     init_caller_save ();
2455   expand_dummy_function_end ();
2456 }
2457
2458 /* Language-dependent initialization.  Returns nonzero on success.  */
2459 static int
2460 lang_dependent_init (const char *name)
2461 {
2462   if (dump_base_name == 0)
2463     dump_base_name = name ? name : "gccdump";
2464
2465   /* Other front-end initialization.  */
2466   if (lang_hooks.init () == 0)
2467     return 0;
2468
2469   init_asm_output (name);
2470
2471   /* These create various _DECL nodes, so need to be called after the
2472      front end is initialized.  */
2473   init_eh ();
2474   init_optabs ();
2475
2476   /* The following initialization functions need to generate rtl, so
2477      provide a dummy function context for them.  */
2478   init_dummy_function_start ();
2479   init_expr_once ();
2480   expand_dummy_function_end ();
2481
2482   /* If dbx symbol table desired, initialize writing it and output the
2483      predefined types.  */
2484   timevar_push (TV_SYMOUT);
2485
2486 #ifdef DWARF2_UNWIND_INFO
2487   if (dwarf2out_do_frame ())
2488     dwarf2out_frame_init ();
2489 #endif
2490
2491   /* Now we have the correct original filename, we can initialize
2492      debug output.  */
2493   (*debug_hooks->init) (name);
2494
2495   timevar_pop (TV_SYMOUT);
2496
2497   return 1;
2498 }
2499
2500 /* Clean up: close opened files, etc.  */
2501
2502 static void
2503 finalize (void)
2504 {
2505   /* Close the dump files.  */
2506   if (flag_gen_aux_info)
2507     {
2508       fclose (aux_info_file);
2509       if (errorcount)
2510         unlink (aux_info_file_name);
2511     }
2512
2513   /* Close non-debugging input and output files.  Take special care to note
2514      whether fclose returns an error, since the pages might still be on the
2515      buffer chain while the file is open.  */
2516
2517   if (asm_out_file)
2518     {
2519       if (ferror (asm_out_file) != 0)
2520         fatal_error ("error writing to %s: %m", asm_file_name);
2521       if (fclose (asm_out_file) != 0)
2522         fatal_error ("error closing %s: %m", asm_file_name);
2523     }
2524
2525   finish_optimization_passes ();
2526
2527   if (mem_report)
2528     {
2529       ggc_print_statistics ();
2530       stringpool_statistics ();
2531       dump_tree_statistics ();
2532       dump_rtx_statistics ();
2533       dump_varray_statistics ();
2534       dump_alloc_pool_statistics ();
2535       dump_ggc_loc_statistics ();
2536     }
2537
2538   /* Free up memory for the benefit of leak detectors.  */
2539   free_reg_info ();
2540
2541   /* Language-specific end of compilation actions.  */
2542   lang_hooks.finish ();
2543 }
2544
2545 /* Initialize the compiler, and compile the input file.  */
2546 static void
2547 do_compile (void)
2548 {
2549   /* Initialize timing first.  The C front ends read the main file in
2550      the post_options hook, and C++ does file timings.  */
2551   if (time_report || !quiet_flag  || flag_detailed_statistics)
2552     timevar_init ();
2553   timevar_start (TV_TOTAL);
2554
2555   process_options ();
2556
2557   /* Don't do any more if an error has already occurred.  */
2558   if (!errorcount)
2559     {
2560       /* Set up the back-end if requested.  */
2561       if (!no_backend)
2562         backend_init ();
2563
2564       /* Language-dependent initialization.  Returns true on success.  */
2565       if (lang_dependent_init (main_input_filename))
2566         compile_file ();
2567
2568       finalize ();
2569     }
2570
2571   /* Stop timing and print the times.  */
2572   timevar_stop (TV_TOTAL);
2573   timevar_print (stderr);
2574 }
2575
2576 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2577    Exit code is FATAL_EXIT_CODE if can't open files or if there were
2578    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2579
2580    It is not safe to call this function more than once.  */
2581
2582 int
2583 toplev_main (unsigned int argc, const char **argv)
2584 {
2585   save_argv = argv;
2586
2587   /* Initialization of GCC's environment, and diagnostics.  */
2588   general_init (argv[0]);
2589
2590   /* Parse the options and do minimal processing; basically just
2591      enough to default flags appropriately.  */
2592   decode_options (argc, argv);
2593
2594   randomize ();
2595
2596   /* Exit early if we can (e.g. -help).  */
2597   if (!exit_after_options)
2598     do_compile ();
2599
2600   if (errorcount || sorrycount)
2601     return (FATAL_EXIT_CODE);
2602
2603   return (SUCCESS_EXIT_CODE);
2604 }