OSDN Git Service

Merge tree-ssa-20020619-branch into mainline.
[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 "tree-alias-common.h" 
77 #include "cfgloop.h"
78 #include "hosthooks.h"
79 #include "cgraph.h"
80 #include "opts.h"
81 #include "coverage.h"
82 #include "value-prof.h"
83 #include "alloc-pool.h"
84
85 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
86 #include "dwarf2out.h"
87 #endif
88
89 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
90 #include "dbxout.h"
91 #endif
92
93 #ifdef SDB_DEBUGGING_INFO
94 #include "sdbout.h"
95 #endif
96
97 #ifdef XCOFF_DEBUGGING_INFO
98 #include "xcoffout.h"           /* Needed for external data
99                                    declarations for e.g. AIX 4.x.  */
100 #endif
101
102 static void general_init (const char *);
103 static void do_compile (void);
104 static void process_options (void);
105 static void backend_init (void);
106 static int lang_dependent_init (const char *);
107 static void init_asm_output (const char *);
108 static void finalize (void);
109
110 static void crash_signal (int) ATTRIBUTE_NORETURN;
111 static void setup_core_dumping (void);
112 static void compile_file (void);
113
114 static int print_single_switch (FILE *, int, int, const char *,
115                                 const char *, const char *,
116                                 const char *, const char *);
117 static void print_switch_values (FILE *, int, int, const char *,
118                                  const char *, const char *);
119
120 /* Nonzero to dump debug info whilst parsing (-dy option).  */
121 static int set_yydebug;
122
123 /* True if we don't need a backend (e.g. preprocessing only).  */
124 static bool no_backend;
125
126 /* Length of line when printing switch values.  */
127 #define MAX_LINE 75
128
129 /* Name of program invoked, sans directories.  */
130
131 const char *progname;
132
133 /* Copy of argument vector to toplev_main.  */
134 static const char **save_argv;
135
136 /* Name of top-level original source file (what was input to cpp).
137    This comes from the #-command at the beginning of the actual input.
138    If there isn't any there, then this is the cc1 input file name.  */
139
140 const char *main_input_filename;
141
142 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
143    to optimize and default_debug_hooks in process_options ().  */
144 #define AUTODETECT_FLAG_VAR_TRACKING 2
145
146 /* Current position in real source file.  */
147
148 location_t input_location;
149
150 struct line_maps line_table;
151
152 /* Nonzero if it is unsafe to create any new pseudo registers.  */
153 int no_new_pseudos;
154
155 /* Stack of currently pending input files.  */
156
157 struct file_stack *input_file_stack;
158
159 /* Incremented on each change to input_file_stack.  */
160 int input_file_stack_tick;
161
162 /* Name to use as base of names for dump output files.  */
163
164 const char *dump_base_name;
165
166 /* Name to use as a base for auxiliary output files.  */
167
168 const char *aux_base_name;
169
170 /* Bit flags that specify the machine subtype we are compiling for.
171    Bits are tested using macros TARGET_... defined in the tm.h file
172    and set by `-m...' switches.  Must be defined in rtlanal.c.  */
173
174 extern int target_flags;
175
176 /* A mask of target_flags that includes bit X if X was set or cleared
177    on the command line.  */
178
179 int target_flags_explicit;
180
181 /* Debug hooks - dependent upon command line options.  */
182
183 const struct gcc_debug_hooks *debug_hooks;
184
185 /* Debug hooks - target default.  */
186
187 static const struct gcc_debug_hooks *default_debug_hooks;
188
189 /* Other flags saying which kinds of debugging dump have been requested.  */
190
191 int rtl_dump_and_exit;
192 int flag_print_asm_name;
193 enum graph_dump_types graph_dump_format;
194
195 /* Name for output file of assembly code, specified with -o.  */
196
197 const char *asm_file_name;
198
199 /* Nonzero means do optimizations.  -O.
200    Particular numeric values stand for particular amounts of optimization;
201    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
202    ones are not controlled directly by this variable.  Instead, they are
203    controlled by individual `flag_...' variables that are defaulted
204    based on this variable.  */
205
206 int optimize = 0;
207
208 /* Nonzero means optimize for size.  -Os.
209    The only valid values are zero and nonzero. When optimize_size is
210    nonzero, optimize defaults to 2, but certain individual code
211    bloating optimizations are disabled.  */
212
213 int optimize_size = 0;
214
215 /* The FUNCTION_DECL for the function currently being compiled,
216    or 0 if between functions.  */
217 tree current_function_decl;
218
219 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
220    if none.  */
221 tree current_function_func_begin_label;
222
223 /* A DECL for the current file-scope context.  When using IMA, this heads a
224    chain of FILE_DECLs; currently only C uses it.  */
225
226 tree current_file_decl;
227
228 /* Nonzero if doing dwarf2 duplicate elimination.  */
229
230 int flag_eliminate_dwarf2_dups = 0;
231
232 /* Nonzero if doing unused type elimination.  */
233
234 int flag_eliminate_unused_debug_types = 1;
235
236 /* Nonzero means emit debugging information only for symbols which are used.  */
237 int flag_debug_only_used_symbols = 0;
238
239 /* Nonzero if generating code to do profiling.  */
240
241 int profile_flag = 0;
242
243 /* Nonzero if generating code to profile program flow graph arcs.  */
244
245 int profile_arc_flag = 0;
246
247 /* Nonzero if value histograms should be measured.  */
248
249 int flag_profile_values = 0;
250
251 /* Nonzero if value histograms should be used to optimize code.  */
252 int flag_value_profile_transformations = 0;
253
254 /* Nonzero if generating info for gcov to calculate line test coverage.  */
255
256 int flag_test_coverage = 0;
257
258 /* Nonzero indicates that branch taken probabilities should be calculated.  */
259
260 int flag_branch_probabilities = 0;
261
262 /* Nonzero if basic blocks should be reordered.  */
263
264 int flag_reorder_blocks = 0;
265
266 /* Nonzero if blocks should be partitioned into hot and cold sections in
267    addition to being reordered. */
268
269 int flag_reorder_blocks_and_partition = 0;
270
271 /* Nonzero if functions should be reordered.  */
272
273 int flag_reorder_functions = 0;
274
275 /* Nonzero if registers should be renamed.  When
276    flag_rename_registers == AUTODETECT_FLAG_VAR_TRACKING it will be set
277    according to optimize and default_debug_hooks in process_options (),
278    but we do not do this yet because it triggers aborts in flow.c.  */
279 int flag_rename_registers = 0;
280 int flag_cprop_registers = 0;
281
282 /* Nonzero for -pedantic switch: warn about anything
283    that standard spec forbids.  */
284
285 int pedantic = 0;
286
287 /* Temporarily suppress certain warnings.
288    This is set while reading code from a system header file.  */
289
290 int in_system_header = 0;
291
292 /* Don't print functions as they are compiled.  -quiet.  */
293
294 int quiet_flag = 0;
295
296 /* Print times taken by the various passes.  -ftime-report.  */
297
298 int time_report = 0;
299
300 /* Print memory still in use at end of compilation (which may have little
301    to do with peak memory consumption).  -fmem-report.  */
302
303 int mem_report = 0;
304
305 /* Nonzero means to collect statistics which might be expensive
306    and to print them when we are done.  */
307 int flag_detailed_statistics = 0;
308
309 /* A random sequence of characters, unless overridden by user.  */
310 const char *flag_random_seed;
311
312 /* A local time stamp derived from the time of compilation. It will be
313    zero if the system cannot provide a time.  It will be -1u, if the
314    user has specified a particular random seed.  */
315 unsigned local_tick;
316
317 /* -f flags.  */
318
319 /* Nonzero means `char' should be signed.  */
320
321 int flag_signed_char;
322
323 /* Nonzero means give an enum type only as many bytes as it needs.  A value
324    of 2 means it has not yet been initialized.  */
325
326 int flag_short_enums;
327
328 /* Nonzero for -fcaller-saves: allocate values in regs that need to
329    be saved across function calls, if that produces overall better code.
330    Optional now, so people can test it.  */
331
332 int flag_caller_saves = 0;
333
334 /* Nonzero if structures and unions should be returned in memory.
335
336    This should only be defined if compatibility with another compiler or
337    with an ABI is needed, because it results in slower code.  */
338
339 #ifndef DEFAULT_PCC_STRUCT_RETURN
340 #define DEFAULT_PCC_STRUCT_RETURN 1
341 #endif
342
343 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
344
345 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
346
347 /* Nonzero for -fforce-mem: load memory value into a register
348    before arithmetic on it.  This makes better cse but slower compilation.  */
349
350 int flag_force_mem = 0;
351
352 /* Nonzero for -fforce-addr: load memory address into a register before
353    reference to memory.  This makes better cse but slower compilation.  */
354
355 int flag_force_addr = 0;
356
357 /* Nonzero for -fdefer-pop: don't pop args after each function call;
358    instead save them up to pop many calls' args with one insns.  */
359
360 int flag_defer_pop = 0;
361
362 /* Nonzero for -ffloat-store: don't allocate floats and doubles
363    in extended-precision registers.  */
364
365 int flag_float_store = 0;
366
367 /* Nonzero for -fcse-follow-jumps:
368    have cse follow jumps to do a more extensive job.  */
369
370 int flag_cse_follow_jumps;
371
372 /* Nonzero for -fcse-skip-blocks:
373    have cse follow a branch around a block.  */
374 int flag_cse_skip_blocks;
375
376 /* Nonzero for -fexpensive-optimizations:
377    perform miscellaneous relatively-expensive optimizations.  */
378 int flag_expensive_optimizations;
379
380 /* Nonzero for -fthread-jumps:
381    have jump optimize output of loop.  */
382
383 int flag_thread_jumps;
384
385 /* Nonzero enables strength-reduction in loop.c.  */
386
387 int flag_strength_reduce = 0;
388
389 /* Nonzero enables loop unrolling in unroll.c.  Only loops for which the
390    number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
391    UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
392    unrolled.  */
393
394 int flag_old_unroll_loops;
395
396 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
397    This is generally not a win.  */
398
399 int flag_old_unroll_all_loops;
400
401 /* Enables unrolling of simple loops in loop-unroll.c.  */
402 int flag_unroll_loops;
403
404 /* Enables unrolling of all loops in loop-unroll.c.  */
405 int flag_unroll_all_loops;
406
407 /* Nonzero enables loop peeling.  */
408 int flag_peel_loops;
409
410 /* Nonzero enables loop unswitching.  */
411 int flag_unswitch_loops;
412
413 /* Nonzero enables prefetch optimizations for arrays in loops.  */
414
415 int flag_prefetch_loop_arrays;
416
417 /* Nonzero forces all invariant computations in loops to be moved
418    outside the loop.  */
419
420 int flag_move_all_movables = 0;
421
422 /* Nonzero forces all general induction variables in loops to be
423    strength reduced.  */
424
425 int flag_reduce_all_givs = 0;
426
427 /* Nonzero to perform full register move optimization passes.  This is the
428    default for -O2.  */
429
430 int flag_regmove = 0;
431
432 /* Nonzero means don't put addresses of constant functions in registers.
433    Used for compiling the Unix kernel, where strange substitutions are
434    done on the assembly output.  */
435
436 int flag_no_function_cse = 0;
437
438 /* Nonzero for -fomit-frame-pointer:
439    don't make a frame pointer in simple functions that don't require one.  */
440
441 int flag_omit_frame_pointer = 0;
442
443 /* Nonzero means place each function into its own section on those platforms
444    which support arbitrary section names and unlimited numbers of sections.  */
445
446 int flag_function_sections = 0;
447
448 /* ... and similar for data.  */
449
450 int flag_data_sections = 0;
451
452 /* Nonzero to inhibit use of define_optimization peephole opts.  */
453
454 int flag_no_peephole = 0;
455
456 /* Nonzero allows GCC to optimize sibling and tail recursive calls.  */
457
458 int flag_optimize_sibling_calls = 0;
459
460 /* Nonzero means the front end generally wants `errno' maintained by math
461    operations, like built-in SQRT.  */
462
463 int flag_errno_math = 1;
464
465 /* Nonzero means that unsafe floating-point math optimizations are allowed
466    for the sake of speed.  IEEE compliance is not guaranteed, and operations
467    are allowed to assume that their arguments and results are "normal"
468    (e.g., nonnegative for SQRT).  */
469
470 int flag_unsafe_math_optimizations = 0;
471
472 /* Nonzero means that no NaNs or +-Infs are expected.  */
473
474 int flag_finite_math_only = 0;
475
476 /* Zero means that floating-point math operations cannot generate a
477    (user-visible) trap.  This is the case, for example, in nonstop
478    IEEE 754 arithmetic.  Trapping conditions include division by zero,
479    overflow, underflow, invalid and inexact, but does not include
480    operations on signaling NaNs (see below).  */
481
482 int flag_trapping_math = 1;
483
484 /* Nonzero means disable transformations that assume default floating
485    point rounding behavior.  */
486
487 int flag_rounding_math = 0;
488
489 /* Nonzero means disable transformations observable by signaling NaNs.
490    This option implies that any operation on an IEEE signaling NaN can
491    generate a (user-visible) trap.  */
492
493 int flag_signaling_nans = 0;
494
495 /* 0 means straightforward implementation of complex divide acceptable.
496    1 means wide ranges of inputs must work for complex divide.
497    2 means C99-like requirements for complex divide (not yet implemented).  */
498
499 int flag_complex_divide_method = 0;
500
501 /* Nonzero means just do syntax checking; don't output anything.  */
502
503 int flag_syntax_only = 0;
504
505 /* Nonzero means performs web construction pass.  When flag_web ==
506    AUTODETECT_FLAG_VAR_TRACKING it will be set according to optimize
507    and default_debug_hooks in process_options ().  */
508
509 int flag_web = AUTODETECT_FLAG_VAR_TRACKING;
510
511 /* Nonzero means perform loop optimizer.  */
512
513 int flag_loop_optimize;
514
515 /* Nonzero means perform crossjumping.  */
516
517 int flag_crossjumping;
518
519 /* Nonzero means perform if conversion.  */
520
521 int flag_if_conversion;
522
523 /* Nonzero means perform if conversion after reload.  */
524
525 int flag_if_conversion2;
526
527 /* Nonzero means to use global dataflow analysis to eliminate
528    useless null pointer tests.  */
529
530 int flag_delete_null_pointer_checks;
531
532 /* Nonzero means perform global CSE.  */
533
534 int flag_gcse = 0;
535
536 /* Nonzero means to do the enhanced load motion during gcse, which trys
537    to hoist loads by not killing them when a store to the same location
538    is seen.  */
539
540 int flag_gcse_lm = 1;
541
542 /* Nonzero means to perform store motion after gcse, which will try to
543    move stores closer to the exit block.  Its not very effective without
544    flag_gcse_lm.  */
545
546 int flag_gcse_sm = 1;
547
548 /* Nonzero if we want to perform redundant load after store elimination
549    in gcse.  */
550
551 int flag_gcse_las = 1;
552
553 /* Nonzero means perform global cse after register allocation.  */
554 int flag_gcse_after_reload = 0;
555
556 /* Perform target register optimization before prologue / epilogue
557    threading.  */
558
559 int flag_branch_target_load_optimize = 0;
560
561 /* Perform target register optimization after prologue / epilogue
562    threading and jump2.  */
563
564 int flag_branch_target_load_optimize2 = 0;
565
566 /* For the bt-load pass, nonzero means don't re-use branch target registers
567    in any basic block.  */
568
569 int flag_btr_bb_exclusive;
570
571 /* Nonzero means to rerun cse after loop optimization.  This increases
572    compilation time about 20% and picks up a few more common expressions.  */
573
574 int flag_rerun_cse_after_loop;
575
576 /* Nonzero means to run loop optimizations twice.  */
577
578 int flag_rerun_loop_opt;
579
580 /* Nonzero for -finline-functions: ok to inline functions that look like
581    good inline candidates.  */
582
583 int flag_inline_functions;
584
585 /* Nonzero for -fkeep-inline-functions: even if we make a function
586    go inline everywhere, keep its definition around for debugging
587    purposes.  */
588
589 int flag_keep_inline_functions;
590
591 /* Nonzero means that functions will not be inlined.  */
592
593 int flag_no_inline = 2;
594
595 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
596    not just because the tree inliner turned us off.  */
597
598 int flag_really_no_inline = 2;
599
600 /* Nonzero means that we should emit static const variables
601    regardless of whether or not optimization is turned on.  */
602
603 int flag_keep_static_consts = 1;
604
605 /* Nonzero means we should be saving declaration info into a .X file.  */
606
607 int flag_gen_aux_info = 0;
608
609 /* Specified name of aux-info file.  */
610
611 const char *aux_info_file_name;
612
613 /* Nonzero means make the text shared if supported.  */
614
615 int flag_shared_data;
616
617 /* Nonzero means schedule into delayed branch slots if supported.  */
618
619 int flag_delayed_branch;
620
621 /* Nonzero if we are compiling pure (sharable) code.
622    Value is 1 if we are doing "small" pic; value is 2 if we're doing
623    "large" pic.  */
624
625 int flag_pic;
626
627 /* Nonzero if we are compiling position independent code for executable.
628    The value is 1 if we are doing "small" pic; value is 2 if we're doing
629    "large" pic.  */
630
631 int flag_pie;
632
633 /* Nonzero if we are compiling code for a shared library, zero for
634    executable.  */
635
636 int flag_shlib;
637
638 /* Set to the default thread-local storage (tls) model to use.  */
639
640 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
641
642 /* Nonzero means generate extra code for exception handling and enable
643    exception handling.  */
644
645 int flag_exceptions;
646
647 /* Nonzero means generate frame unwind info table when supported.  */
648
649 int flag_unwind_tables = 0;
650
651 /* Nonzero means generate frame unwind info table exact at each insn
652    boundary.  */
653
654 int flag_asynchronous_unwind_tables = 0;
655
656 /* Nonzero means don't place uninitialized global data in common storage
657    by default.  */
658
659 int flag_no_common;
660
661 /* Nonzero means change certain warnings into errors.
662    Usually these are warnings about failure to conform to some standard.  */
663
664 int flag_pedantic_errors = 0;
665
666 /* flag_schedule_insns means schedule insns within basic blocks (before
667    local_alloc).
668    flag_schedule_insns_after_reload means schedule insns after
669    global_alloc.  */
670
671 int flag_schedule_insns = 0;
672 int flag_schedule_insns_after_reload = 0;
673
674 /* When flag_schedule_insns_after_reload is set, use EBB scheduler.  */
675 int flag_sched2_use_superblocks = 0;
676
677 /* When flag_schedule_insns_after_reload is set, construct traces and EBB
678    scheduler.  */
679 int flag_sched2_use_traces = 0;
680
681 /* The following flags have effect only for scheduling before register
682    allocation:
683
684    flag_schedule_interblock means schedule insns across basic blocks.
685    flag_schedule_speculative means allow speculative motion of non-load insns.
686    flag_schedule_speculative_load means allow speculative motion of some
687    load insns.
688    flag_schedule_speculative_load_dangerous allows speculative motion of more
689    load insns.  */
690
691 int flag_schedule_interblock = 1;
692 int flag_schedule_speculative = 1;
693 int flag_schedule_speculative_load = 0;
694 int flag_schedule_speculative_load_dangerous = 0;
695
696 /* The following flags have an effect during scheduling after register
697    allocation:
698
699    flag_sched_stalled_insns means that insns can be moved prematurely from the queue
700    of stalled insns into the ready list.
701
702    flag_sched_stalled_insns_dep controls how many insn groups will be examined
703    for a dependency on a stalled insn that is candidate for premature removal
704    from the queue of stalled insns into the ready list (has an effect only if
705    the flag 'sched_stalled_insns' is set).  */
706
707 int flag_sched_stalled_insns = 0;
708 int flag_sched_stalled_insns_dep = 1;
709
710 int flag_single_precision_constant;
711
712 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
713    by a cheaper branch on a count register.  */
714 int flag_branch_on_count_reg = 1;
715
716 /* -finhibit-size-directive inhibits output of .size for ELF.
717    This is used only for compiling crtstuff.c,
718    and it may be extended to other effects
719    needed for crtstuff.c on other systems.  */
720 int flag_inhibit_size_directive = 0;
721
722 /* -fverbose-asm causes extra commentary information to be produced in
723    the generated assembly code (to make it more readable).  This option
724    is generally only of use to those who actually need to read the
725    generated assembly code (perhaps while debugging the compiler itself).
726    -fno-verbose-asm, the default, causes the extra information
727    to be omitted and is useful when comparing two assembler files.  */
728
729 int flag_verbose_asm = 0;
730
731 /* -dA causes debug commentary information to be produced in
732    the generated assembly code (to make it more readable).  This option
733    is generally only of use to those who actually need to read the
734    generated assembly code (perhaps while debugging the compiler itself).
735    Currently, this switch is only used by dwarfout.c; however, it is intended
736    to be a catchall for printing debug information in the assembler file.  */
737
738 int flag_debug_asm = 0;
739
740 /* -dP causes the rtl to be emitted as a comment in assembly.  */
741
742 int flag_dump_rtl_in_asm = 0;
743
744 /* Nonzero means put zero initialized data in the bss section.  */
745 int flag_zero_initialized_in_bss = 1;
746
747 /* Tag all structures with __attribute__(packed).  */
748 int flag_pack_struct = 0;
749
750 /* Emit code to check for stack overflow; also may cause large objects
751    to be allocated dynamically.  */
752 int flag_stack_check;
753
754 /* When non-NULL, indicates that whenever space is allocated on the
755    stack, the resulting stack pointer must not pass this
756    address---that is, for stacks that grow downward, the stack pointer
757    must always be greater than or equal to this address; for stacks
758    that grow upward, the stack pointer must be less than this address.
759    At present, the rtx may be either a REG or a SYMBOL_REF, although
760    the support provided depends on the backend.  */
761 rtx stack_limit_rtx;
762
763 /* 0 if pointer arguments may alias each other.  True in C.
764    1 if pointer arguments may not alias each other but may alias
765    global variables.
766    2 if pointer arguments may not alias each other and may not
767    alias global variables.  True in Fortran.
768    This defaults to 0 for C.  */
769 int flag_argument_noalias = 0;
770
771 /* Nonzero if we should do (language-dependent) alias analysis.
772    Typically, this analysis will assume that expressions of certain
773    types do not alias expressions of certain other types.  Only used
774    if alias analysis (in general) is enabled.  */
775 int flag_strict_aliasing = 0;
776
777 /* Instrument functions with calls at entry and exit, for profiling.  */
778 int flag_instrument_function_entry_exit = 0;
779
780 /* Nonzero means ignore `#ident' directives.  0 means handle them.
781    On SVR4 targets, it also controls whether or not to emit a
782    string identifying the compiler.  */
783
784 int flag_no_ident = 0;
785
786 /* This will perform a peephole pass before sched2.  */
787 int flag_peephole2 = 0;
788
789 /* This will try to guess branch probabilities.  */
790 int flag_guess_branch_prob = 0;
791
792 /* -fcheck-bounds causes gcc to generate array bounds checks.
793    For C, C++, ObjC: defaults to off.
794    For Java: defaults to on.
795    For Fortran: defaults to off.  */
796 int flag_bounds_check = 0;
797
798 /* Mudflap bounds-checking transform.  */
799 int flag_mudflap = 0;
800 int flag_mudflap_threads = 0;
801 int flag_mudflap_ignore_reads = 0;
802
803 /* This will attempt to merge constant section constants, if 1 only
804    string constants and constants from constant pool, if 2 also constant
805    variables.  */
806 int flag_merge_constants = 1;
807
808 /* If one, renumber instruction UIDs to reduce the number of
809    unused UIDs if there are a lot of instructions.  If greater than
810    one, unconditionally renumber instruction UIDs.  */
811 int flag_renumber_insns = 1;
812
813 /* If nonzero, use the graph coloring register allocator.  */
814 int flag_new_regalloc = 0;
815
816 /* If nonzero, use tree-based instead of rtl-based profiling.  */
817 int flag_tree_based_profiling = 0;
818
819 /* Enable SSA-GVN on trees.  */
820 int flag_tree_gvn = 0;
821
822 /* Enable the SSA-PRE tree optimization.  */
823 int flag_tree_pre = 0;
824
825 /* Enable points-to analysis on trees. */
826 enum pta_type flag_tree_points_to = PTA_NONE;
827
828 /* Enable SSA-CCP on trees.  */
829 int flag_tree_ccp = 0;
830
831 /* Enable SSA-DCE on trees.  */
832 int flag_tree_dce = 0;
833
834 /* Enable loop header copying on tree-ssa.  */
835 int flag_tree_ch = 0;
836
837 /* Enable scalar replacement of aggregates.  */
838 int flag_tree_sra = 0;
839
840 /* Enable SSA->normal pass memory location coalescing.  */
841 int flag_tree_combine_temps = 0;
842
843 /* Enable SSA->normal pass expression replacement.  */
844 int flag_tree_ter = 0;
845
846 /* Enable SSA->normal live range splitting.  */
847 int flag_tree_live_range_split = 0;
848
849 /* Enable dominator optimizations.  */
850 int flag_tree_dom = 0;
851
852 /* Enable copy rename optimization.  */
853 int flag_tree_copyrename = 0;
854
855 /* Enable dead store elimination.  */
856 int flag_tree_dse = 0;
857
858 /* Nonzero if we perform superblock formation.  */
859 int flag_tracer = 0;
860
861 /* Nonzero if we perform whole unit at a time compilation.  */
862
863 int flag_unit_at_a_time = 0;
864
865 /* Nonzero if we should track variables.  When
866    flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
867    to optimize, debug_info_level and debug_hooks in process_options ().  */
868 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
869
870 /* Values of the -falign-* flags: how much to align labels in code.
871    0 means `use default', 1 means `don't align'.
872    For each variable, there is an _log variant which is the power
873    of two not less than the variable, for .align output.  */
874
875 int align_loops;
876 int align_loops_log;
877 int align_loops_max_skip;
878 int align_jumps;
879 int align_jumps_log;
880 int align_jumps_max_skip;
881 int align_labels;
882 int align_labels_log;
883 int align_labels_max_skip;
884 int align_functions;
885 int align_functions_log;
886
887 /* Like align_functions_log above, but used by front-ends to force the
888    minimum function alignment.  Zero means no alignment is forced.  */
889 int force_align_functions_log;
890
891 typedef struct
892 {
893   const char *const string;
894   int *const variable;
895   const int on_value;
896 }
897 lang_independent_options;
898
899 /* Nonzero if signed arithmetic overflow should trap.  */
900 int flag_trapv = 0;
901
902 /* Nonzero if signed arithmetic overflow should wrap around.  */
903 int flag_wrapv = 0;
904
905 /* Nonzero if subexpressions must be evaluated from left-to-right.  */
906 int flag_evaluation_order = 0;
907
908 /* Add or remove a leading underscore from user symbols.  */
909 int flag_leading_underscore = -1;
910
911 /*  The version of the C++ ABI in use.  The following values are
912     allowed:
913
914     0: The version of the ABI believed most conformant with the
915        C++ ABI specification.  This ABI may change as bugs are
916        discovered and fixed.  Therefore, 0 will not necessarily
917        indicate the same ABI in different versions of G++.
918
919     1: The version of the ABI first used in G++ 3.2.
920
921     2: The version of the ABI first used in G++ 3.4.
922
923     Additional positive integers will be assigned as new versions of
924     the ABI become the default version of the ABI.  */
925
926 int flag_abi_version = 2;
927
928 /* The user symbol prefix after having resolved same.  */
929 const char *user_label_prefix;
930
931 static const param_info lang_independent_params[] = {
932 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
933   { OPTION, DEFAULT, HELP },
934 #include "params.def"
935 #undef DEFPARAM
936   { NULL, 0, NULL }
937 };
938
939 /* Table of language-independent -f options.
940    STRING is the option name.  VARIABLE is the address of the variable.
941    ON_VALUE is the value to store in VARIABLE
942     if `-fSTRING' is seen as an option.
943    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
944
945 static const lang_independent_options f_options[] =
946 {
947   {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1 },
948   {"eliminate-unused-debug-symbols", &flag_debug_only_used_symbols, 1 },
949   {"eliminate-unused-debug-types", &flag_eliminate_unused_debug_types, 1 },
950   {"float-store", &flag_float_store, 1 },
951   {"defer-pop", &flag_defer_pop, 1 },
952   {"omit-frame-pointer", &flag_omit_frame_pointer, 1 },
953   {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1 },
954   {"tracer", &flag_tracer, 1 },
955   {"unit-at-a-time", &flag_unit_at_a_time, 1 },
956   {"cse-follow-jumps", &flag_cse_follow_jumps, 1 },
957   {"cse-skip-blocks", &flag_cse_skip_blocks, 1 },
958   {"expensive-optimizations", &flag_expensive_optimizations, 1 },
959   {"thread-jumps", &flag_thread_jumps, 1 },
960   {"strength-reduce", &flag_strength_reduce, 1 },
961   {"unroll-loops", &flag_unroll_loops, 1 },
962   {"unroll-all-loops", &flag_unroll_all_loops, 1 },
963   {"old-unroll-loops", &flag_old_unroll_loops, 1 },
964   {"old-unroll-all-loops", &flag_old_unroll_all_loops, 1 },
965   {"peel-loops", &flag_peel_loops, 1 },
966   {"unswitch-loops", &flag_unswitch_loops, 1 },
967   {"prefetch-loop-arrays", &flag_prefetch_loop_arrays, 1 },
968   {"move-all-movables", &flag_move_all_movables, 1 },
969   {"reduce-all-givs", &flag_reduce_all_givs, 1 },
970   {"peephole", &flag_no_peephole, 0 },
971   {"force-mem", &flag_force_mem, 1 },
972   {"force-addr", &flag_force_addr, 1 },
973   {"function-cse", &flag_no_function_cse, 0 },
974   {"inline-functions", &flag_inline_functions, 1 },
975   {"keep-inline-functions", &flag_keep_inline_functions, 1 },
976   {"inline", &flag_no_inline, 0 },
977   {"keep-static-consts", &flag_keep_static_consts, 1 },
978   {"syntax-only", &flag_syntax_only, 1 },
979   {"shared-data", &flag_shared_data, 1 },
980   {"caller-saves", &flag_caller_saves, 1 },
981   {"pcc-struct-return", &flag_pcc_struct_return, 1 },
982   {"reg-struct-return", &flag_pcc_struct_return, 0 },
983   {"delayed-branch", &flag_delayed_branch, 1 },
984   {"web", &flag_web, 1},
985   {"gcse", &flag_gcse, 1 },
986   {"gcse-lm", &flag_gcse_lm, 1 },
987   {"gcse-sm", &flag_gcse_sm, 1 },
988   {"gcse-las", &flag_gcse_las, 1 },
989   {"gcse-after-reload", &flag_gcse_after_reload, 1},
990   {"branch-target-load-optimize", &flag_branch_target_load_optimize, 1 },
991   {"branch-target-load-optimize2", &flag_branch_target_load_optimize2, 1 },
992   {"btr-bb-exclusive", &flag_btr_bb_exclusive, 1 },
993   {"loop-optimize", &flag_loop_optimize, 1 },
994   {"crossjumping", &flag_crossjumping, 1 },
995   {"if-conversion", &flag_if_conversion, 1 },
996   {"if-conversion2", &flag_if_conversion2, 1 },
997   {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1 },
998   {"rerun-loop-opt", &flag_rerun_loop_opt, 1 },
999   {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1 },
1000   {"schedule-insns", &flag_schedule_insns, 1 },
1001   {"schedule-insns2", &flag_schedule_insns_after_reload, 1 },
1002   {"sched-interblock",&flag_schedule_interblock, 1 },
1003   {"sched-spec",&flag_schedule_speculative, 1 },
1004   {"sched-spec-load",&flag_schedule_speculative_load, 1 },
1005   {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1 },
1006   {"sched-stalled-insns", &flag_sched_stalled_insns, 0 },
1007   {"sched-stalled-insns-dep", &flag_sched_stalled_insns_dep, 1 },
1008   {"sched2-use-superblocks", &flag_sched2_use_superblocks, 1 },
1009   {"sched2-use-traces", &flag_sched2_use_traces, 1 },
1010   {"branch-count-reg",&flag_branch_on_count_reg, 1 },
1011   {"pic", &flag_pic, 1 },
1012   {"PIC", &flag_pic, 2 },
1013   {"pie", &flag_pie, 1 },
1014   {"PIE", &flag_pie, 2 },
1015   {"exceptions", &flag_exceptions, 1 },
1016   {"unwind-tables", &flag_unwind_tables, 1 },
1017   {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables, 1 },
1018   {"non-call-exceptions", &flag_non_call_exceptions, 1 },
1019   {"profile-arcs", &profile_arc_flag, 1 },
1020   {"profile-values", &flag_profile_values, 1 },
1021   {"vpt", &flag_value_profile_transformations, 1 },
1022   {"test-coverage", &flag_test_coverage, 1 },
1023   {"branch-probabilities", &flag_branch_probabilities, 1 },
1024   {"profile", &profile_flag, 1 },
1025   {"tree-based-profiling", &flag_tree_based_profiling, 1 },
1026   {"reorder-blocks", &flag_reorder_blocks, 1 },
1027   {"reorder-blocks-and-partition", &flag_reorder_blocks_and_partition, 1},
1028   {"reorder-functions", &flag_reorder_functions, 1 },
1029   {"rename-registers", &flag_rename_registers, 1 },
1030   {"cprop-registers", &flag_cprop_registers, 1 },
1031   {"common", &flag_no_common, 0 },
1032   {"inhibit-size-directive", &flag_inhibit_size_directive, 1 },
1033   {"function-sections", &flag_function_sections, 1 },
1034   {"data-sections", &flag_data_sections, 1 },
1035   {"verbose-asm", &flag_verbose_asm, 1 },
1036   {"regmove", &flag_regmove, 1 },
1037   {"optimize-register-move", &flag_regmove, 1 },
1038   {"pack-struct", &flag_pack_struct, 1 },
1039   {"stack-check", &flag_stack_check, 1 },
1040   {"argument-alias", &flag_argument_noalias, 0 },
1041   {"argument-noalias", &flag_argument_noalias, 1 },
1042   {"argument-noalias-global", &flag_argument_noalias, 2 },
1043   {"strict-aliasing", &flag_strict_aliasing, 1 },
1044   {"align-loops", &align_loops, 0 },
1045   {"align-jumps", &align_jumps, 0 },
1046   {"align-labels", &align_labels, 0 },
1047   {"align-functions", &align_functions, 0 },
1048   {"merge-constants", &flag_merge_constants, 1 },
1049   {"merge-all-constants", &flag_merge_constants, 2 },
1050   {"dump-unnumbered", &flag_dump_unnumbered, 1 },
1051   {"instrument-functions", &flag_instrument_function_entry_exit, 1 },
1052   {"zero-initialized-in-bss", &flag_zero_initialized_in_bss, 1 },
1053   {"leading-underscore", &flag_leading_underscore, 1 },
1054   {"ident", &flag_no_ident, 0 },
1055   { "peephole2", &flag_peephole2, 1 },
1056   {"finite-math-only", &flag_finite_math_only, 1 },
1057   { "guess-branch-probability", &flag_guess_branch_prob, 1 },
1058   {"math-errno", &flag_errno_math, 1 },
1059   {"trapping-math", &flag_trapping_math, 1 },
1060   {"rounding-math", &flag_rounding_math, 1 },
1061   {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1 },
1062   {"signaling-nans", &flag_signaling_nans, 1 },
1063   {"bounds-check", &flag_bounds_check, 1 },
1064   {"single-precision-constant", &flag_single_precision_constant, 1 },
1065   {"time-report", &time_report, 1 },
1066   {"mem-report", &mem_report, 1 },
1067   { "trapv", &flag_trapv, 1 },
1068   { "wrapv", &flag_wrapv, 1 },
1069   { "new-ra", &flag_new_regalloc, 1 },
1070   { "var-tracking", &flag_var_tracking, 1},
1071   { "tree-gvn", &flag_tree_gvn, 1 },
1072   { "tree-pre", &flag_tree_pre, 1 },
1073   { "tree-ccp", &flag_tree_ccp, 1 },
1074   { "tree-dce", &flag_tree_dce, 1 },
1075   { "tree-dominator-opts", &flag_tree_dom, 1 },
1076   { "tree-copyrename", &flag_tree_copyrename, 1 },
1077   { "tree-dse", &flag_tree_dse, 1 },
1078   { "tree-combine-temps", &flag_tree_combine_temps, 1 },
1079   { "tree-ter", &flag_tree_ter, 1 },
1080   { "tree-lrs", &flag_tree_live_range_split, 1 },
1081   { "tree-ch", &flag_tree_ch, 1 }
1082 };
1083
1084 /* Here is a table, controlled by the tm.h file, listing each -m switch
1085    and which bits in `target_switches' it should set or clear.
1086    If VALUE is positive, it is bits to set.
1087    If VALUE is negative, -VALUE is bits to clear.
1088    (The sign bit is not used so there is no confusion.)  */
1089
1090 static const struct
1091 {
1092   const char *const name;
1093   const int value;
1094   const char *const description;
1095 }
1096 target_switches[] = TARGET_SWITCHES;
1097
1098 /* This table is similar, but allows the switch to have a value.  */
1099
1100 #ifdef TARGET_OPTIONS
1101 static const struct
1102 {
1103   const char *const prefix;
1104   const char **const variable;
1105   const char *const description;
1106   const char *const value;
1107 }
1108 target_options[] = TARGET_OPTIONS;
1109 #endif
1110
1111 /* Nonzero means warn about function definitions that default the return type
1112    or that use a null return and have a return-type other than void.  */
1113
1114 int warn_return_type;
1115
1116 /* Output files for assembler code (real compiler output)
1117    and debugging dumps.  */
1118
1119 FILE *asm_out_file;
1120 FILE *aux_info_file;
1121 FILE *dump_file = NULL;
1122 FILE *cgraph_dump_file = NULL;
1123
1124 /* The current working directory of a translation.  It's generally the
1125    directory from which compilation was initiated, but a preprocessed
1126    file may specify the original directory in which it was
1127    created.  */
1128
1129 static const char *src_pwd;
1130
1131 /* Initialize src_pwd with the given string, and return true.  If it
1132    was already initialized, return false.  As a special case, it may
1133    be called with a NULL argument to test whether src_pwd has NOT been
1134    initialized yet.  */
1135
1136 bool
1137 set_src_pwd (const char *pwd)
1138 {
1139   if (src_pwd)
1140     {
1141       if (strcmp (src_pwd, pwd) == 0)
1142         return true;
1143       else
1144         return false;
1145     }
1146
1147   src_pwd = xstrdup (pwd);
1148   return true;
1149 }
1150
1151 /* Return the directory from which the translation unit was initiated,
1152    in case set_src_pwd() was not called before to assign it a
1153    different value.  */
1154
1155 const char *
1156 get_src_pwd (void)
1157 {
1158   if (! src_pwd)
1159     src_pwd = getpwd ();
1160
1161    return src_pwd;
1162 }
1163
1164 /* Called when the start of a function definition is parsed,
1165    this function prints on stderr the name of the function.  */
1166 void
1167 announce_function (tree decl)
1168 {
1169   if (!quiet_flag)
1170     {
1171       if (rtl_dump_and_exit)
1172         verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
1173       else
1174         verbatim (" %s", lang_hooks.decl_printable_name (decl, 2));
1175       fflush (stderr);
1176       pp_needs_newline (global_dc->printer) = true;
1177       diagnostic_set_last_function (global_dc);
1178     }
1179 }
1180
1181 /* Set up a default flag_random_seed and local_tick, unless the user
1182    already specified one.  */
1183
1184 static void
1185 randomize (void)
1186 {
1187   if (!flag_random_seed)
1188     {
1189       unsigned HOST_WIDE_INT value;
1190       static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
1191
1192       /* Get some more or less random data.  */
1193 #ifdef HAVE_GETTIMEOFDAY
1194       {
1195         struct timeval tv;
1196
1197         gettimeofday (&tv, NULL);
1198         local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
1199       }
1200 #else
1201       {
1202         time_t now = time (NULL);
1203
1204         if (now != (time_t)-1)
1205           local_tick = (unsigned) now;
1206       }
1207 #endif
1208       value = local_tick ^ getpid ();
1209
1210       sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
1211       flag_random_seed = random_seed;
1212     }
1213   else if (!local_tick)
1214     local_tick = -1;
1215 }
1216
1217
1218 /* Decode the string P as an integral parameter.
1219    If the string is indeed an integer return its numeric value else
1220    issue an Invalid Option error for the option PNAME and return DEFVAL.
1221    If PNAME is zero just return DEFVAL, do not call error.  */
1222
1223 int
1224 read_integral_parameter (const char *p, const char *pname, const int  defval)
1225 {
1226   const char *endp = p;
1227
1228   while (*endp)
1229     {
1230       if (ISDIGIT (*endp))
1231         endp++;
1232       else
1233         break;
1234     }
1235
1236   if (*endp != 0)
1237     {
1238       if (pname != 0)
1239         error ("invalid option argument `%s'", pname);
1240       return defval;
1241     }
1242
1243   return atoi (p);
1244 }
1245
1246 /* Return the logarithm of X, base 2, considering X unsigned,
1247    if X is a power of 2.  Otherwise, returns -1.
1248
1249    This should be used via the `exact_log2' macro.  */
1250
1251 int
1252 exact_log2_wide (unsigned HOST_WIDE_INT x)
1253 {
1254   int log = 0;
1255   /* Test for 0 or a power of 2.  */
1256   if (x == 0 || x != (x & -x))
1257     return -1;
1258   while ((x >>= 1) != 0)
1259     log++;
1260   return log;
1261 }
1262
1263 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1264    If X is 0, return -1.
1265
1266    This should be used via the floor_log2 macro.  */
1267
1268 int
1269 floor_log2_wide (unsigned HOST_WIDE_INT x)
1270 {
1271   int log = -1;
1272   while (x != 0)
1273     log++,
1274     x >>= 1;
1275   return log;
1276 }
1277
1278 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
1279    into ICE messages, which is much more user friendly.  In case the
1280    error printer crashes, reset the signal to prevent infinite recursion.  */
1281
1282 static void
1283 crash_signal (int signo)
1284 {
1285   signal (signo, SIG_DFL);
1286   internal_error ("%s", strsignal (signo));
1287 }
1288
1289 /* Arrange to dump core on error.  (The regular error message is still
1290    printed first, except in the case of abort().)  */
1291
1292 static void
1293 setup_core_dumping (void)
1294 {
1295 #ifdef SIGABRT
1296   signal (SIGABRT, SIG_DFL);
1297 #endif
1298 #if defined(HAVE_SETRLIMIT)
1299   {
1300     struct rlimit rlim;
1301     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
1302       fatal_error ("getting core file size maximum limit: %m");
1303     rlim.rlim_cur = rlim.rlim_max;
1304     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
1305       fatal_error ("setting core file size limit to maximum: %m");
1306   }
1307 #endif
1308   diagnostic_abort_on_error (global_dc);
1309 }
1310
1311
1312 /* Strip off a legitimate source ending from the input string NAME of
1313    length LEN.  Rather than having to know the names used by all of
1314    our front ends, we strip off an ending of a period followed by
1315    up to five characters.  (Java uses ".class".)  */
1316
1317 void
1318 strip_off_ending (char *name, int len)
1319 {
1320   int i;
1321   for (i = 2; i < 6 && len > i; i++)
1322     {
1323       if (name[len - i] == '.')
1324         {
1325           name[len - i] = '\0';
1326           break;
1327         }
1328     }
1329 }
1330
1331 /* Output a quoted string.  */
1332
1333 void
1334 output_quoted_string (FILE *asm_file, const char *string)
1335 {
1336 #ifdef OUTPUT_QUOTED_STRING
1337   OUTPUT_QUOTED_STRING (asm_file, string);
1338 #else
1339   char c;
1340
1341   putc ('\"', asm_file);
1342   while ((c = *string++) != 0)
1343     {
1344       if (ISPRINT (c))
1345         {
1346           if (c == '\"' || c == '\\')
1347             putc ('\\', asm_file);
1348           putc (c, asm_file);
1349         }
1350       else
1351         fprintf (asm_file, "\\%03o", (unsigned char) c);
1352     }
1353   putc ('\"', asm_file);
1354 #endif
1355 }
1356
1357 /* Output a file name in the form wanted by System V.  */
1358
1359 void
1360 output_file_directive (FILE *asm_file, const char *input_name)
1361 {
1362   int len;
1363   const char *na;
1364
1365   if (input_name == NULL)
1366     input_name = "<stdin>";
1367
1368   len = strlen (input_name);
1369   na = input_name + len;
1370
1371   /* NA gets INPUT_NAME sans directory names.  */
1372   while (na > input_name)
1373     {
1374       if (IS_DIR_SEPARATOR (na[-1]))
1375         break;
1376       na--;
1377     }
1378
1379 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1380   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1381 #else
1382   fprintf (asm_file, "\t.file\t");
1383   output_quoted_string (asm_file, na);
1384   fputc ('\n', asm_file);
1385 #endif
1386 }
1387
1388 /* Do any final processing required for the declarations in VEC, of
1389    which there are LEN.  We write out inline functions and variables
1390    that have been deferred until this point, but which are required.
1391    Returns nonzero if anything was put out.  */
1392
1393 int
1394 wrapup_global_declarations (tree *vec, int len)
1395 {
1396   tree decl;
1397   int i;
1398   int reconsider;
1399   int output_something = 0;
1400
1401   for (i = 0; i < len; i++)
1402     {
1403       decl = vec[i];
1404
1405       /* We're not deferring this any longer.  Assignment is
1406          conditional to avoid needlessly dirtying PCH pages.  */
1407       if (DECL_DEFER_OUTPUT (decl) != 0)
1408         DECL_DEFER_OUTPUT (decl) = 0;
1409
1410       if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1411         lang_hooks.finish_incomplete_decl (decl);
1412     }
1413
1414   /* Now emit any global variables or functions that we have been
1415      putting off.  We need to loop in case one of the things emitted
1416      here references another one which comes earlier in the list.  */
1417   do
1418     {
1419       reconsider = 0;
1420       for (i = 0; i < len; i++)
1421         {
1422           decl = vec[i];
1423
1424           if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1425             continue;
1426
1427           /* Don't write out static consts, unless we still need them.
1428
1429              We also keep static consts if not optimizing (for debugging),
1430              unless the user specified -fno-keep-static-consts.
1431              ??? They might be better written into the debug information.
1432              This is possible when using DWARF.
1433
1434              A language processor that wants static constants to be always
1435              written out (even if it is not used) is responsible for
1436              calling rest_of_decl_compilation itself.  E.g. the C front-end
1437              calls rest_of_decl_compilation from finish_decl.
1438              One motivation for this is that is conventional in some
1439              environments to write things like:
1440              static const char rcsid[] = "... version string ...";
1441              intending to force the string to be in the executable.
1442
1443              A language processor that would prefer to have unneeded
1444              static constants "optimized away" would just defer writing
1445              them out until here.  E.g. C++ does this, because static
1446              constants are often defined in header files.
1447
1448              ??? A tempting alternative (for both C and C++) would be
1449              to force a constant to be written if and only if it is
1450              defined in a main file, as opposed to an include file.  */
1451
1452           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
1453             {
1454               bool needed = 1;
1455
1456               if (flag_unit_at_a_time
1457                   && cgraph_varpool_node (decl)->finalized)
1458                 needed = 0;
1459               else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
1460                        && (TREE_USED (decl)
1461                            || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
1462                 /* needed */;
1463               else if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1464                 /* needed */;
1465               else if (DECL_COMDAT (decl))
1466                 needed = 0;
1467               else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
1468                        && (optimize || !flag_keep_static_consts
1469                            || DECL_ARTIFICIAL (decl)))
1470                 needed = 0;
1471
1472               if (needed)
1473                 {
1474                   reconsider = 1;
1475                   rest_of_decl_compilation (decl, NULL, 1, 1);
1476                 }
1477             }
1478         }
1479
1480       if (reconsider)
1481         output_something = 1;
1482     }
1483   while (reconsider);
1484
1485   return output_something;
1486 }
1487
1488 /* Issue appropriate warnings for the global declarations in VEC (of
1489    which there are LEN).  Output debugging information for them.  */
1490
1491 void
1492 check_global_declarations (tree *vec, int len)
1493 {
1494   tree decl;
1495   int i;
1496
1497   for (i = 0; i < len; i++)
1498     {
1499       decl = vec[i];
1500
1501       if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1502           && ! TREE_ASM_WRITTEN (decl))
1503         /* Cancel the RTL for this decl so that, if debugging info
1504            output for global variables is still to come,
1505            this one will be omitted.  */
1506         SET_DECL_RTL (decl, NULL_RTX);
1507
1508       /* Warn about any function
1509          declared static but not defined.
1510          We don't warn about variables,
1511          because many programs have static variables
1512          that exist only to get some text into the object file.  */
1513       if (TREE_CODE (decl) == FUNCTION_DECL
1514           && (warn_unused_function
1515               || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1516           && DECL_INITIAL (decl) == 0
1517           && DECL_EXTERNAL (decl)
1518           && ! DECL_ARTIFICIAL (decl)
1519           && ! TREE_PUBLIC (decl))
1520         {
1521           if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1522             pedwarn ("%J'%F' used but never defined", decl, decl);
1523           else
1524             warning ("%J'%F' declared `static' but never defined", decl, decl);
1525           /* This symbol is effectively an "extern" declaration now.  */
1526           TREE_PUBLIC (decl) = 1;
1527           assemble_external (decl);
1528         }
1529
1530       /* Warn about static fns or vars defined but not used.  */
1531       if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
1532            /* We don't warn about "static const" variables because the
1533               "rcs_id" idiom uses that construction.  */
1534            || (warn_unused_variable
1535                && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
1536           && ! DECL_IN_SYSTEM_HEADER (decl)
1537           && ! TREE_USED (decl)
1538           /* The TREE_USED bit for file-scope decls is kept in the identifier,
1539              to handle multiple external decls in different scopes.  */
1540           && ! TREE_USED (DECL_NAME (decl))
1541           && ! DECL_EXTERNAL (decl)
1542           && ! TREE_PUBLIC (decl)
1543           /* A volatile variable might be used in some non-obvious way.  */
1544           && ! TREE_THIS_VOLATILE (decl)
1545           /* Global register variables must be declared to reserve them.  */
1546           && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
1547           /* Otherwise, ask the language.  */
1548           && lang_hooks.decls.warn_unused_global (decl))
1549         warning ("%J'%D' defined but not used", decl, decl);
1550
1551       /* Avoid confusing the debug information machinery when there are
1552          errors.  */
1553       if (errorcount == 0 && sorrycount == 0)
1554         {
1555           timevar_push (TV_SYMOUT);
1556           (*debug_hooks->global_decl) (decl);
1557           timevar_pop (TV_SYMOUT);
1558         }
1559     }
1560 }
1561
1562 /* Warn about a use of an identifier which was marked deprecated.  */
1563 void
1564 warn_deprecated_use (tree node)
1565 {
1566   if (node == 0 || !warn_deprecated_decl)
1567     return;
1568
1569   if (DECL_P (node))
1570     warning ("`%s' is deprecated (declared at %s:%d)",
1571              IDENTIFIER_POINTER (DECL_NAME (node)),
1572              DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
1573   else if (TYPE_P (node))
1574     {
1575       const char *what = NULL;
1576       tree decl = TYPE_STUB_DECL (node);
1577
1578       if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
1579         what = IDENTIFIER_POINTER (TYPE_NAME (node));
1580       else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
1581                && DECL_NAME (TYPE_NAME (node)))
1582         what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
1583
1584       if (what)
1585         {
1586           if (decl)
1587             warning ("`%s' is deprecated (declared at %s:%d)", what,
1588                      DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1589           else
1590             warning ("`%s' is deprecated", what);
1591         }
1592       else if (decl)
1593         warning ("type is deprecated (declared at %s:%d)",
1594                  DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1595       else
1596         warning ("type is deprecated");
1597     }
1598 }
1599
1600 /* Save the current INPUT_LOCATION on the top entry in the
1601    INPUT_FILE_STACK.  Push a new entry for FILE and LINE, and set the
1602    INPUT_LOCATION accordingly.  */
1603
1604 void
1605 push_srcloc (const char *file, int line)
1606 {
1607   struct file_stack *fs;
1608
1609   fs = xmalloc (sizeof (struct file_stack));
1610   fs->location = input_location;
1611   fs->next = input_file_stack;
1612   input_filename = file;
1613   input_line = line;
1614   input_file_stack = fs;
1615   input_file_stack_tick++;
1616 }
1617
1618 /* Pop the top entry off the stack of presently open source files.
1619    Restore the INPUT_LOCATION from the new topmost entry on the
1620    stack.  */
1621
1622 void
1623 pop_srcloc (void)
1624 {
1625   struct file_stack *fs;
1626
1627   fs = input_file_stack;
1628   input_location = fs->location;
1629   input_file_stack = fs->next;
1630   free (fs);
1631   input_file_stack_tick++;
1632 }
1633
1634 /* Compile an entire translation unit.  Write a file of assembly
1635    output and various debugging dumps.  */
1636
1637 static void
1638 compile_file (void)
1639 {
1640   /* Initialize yet another pass.  */
1641
1642   init_final (main_input_filename);
1643   coverage_init (aux_base_name);
1644
1645   timevar_push (TV_PARSE);
1646
1647   /* Call the parser, which parses the entire file (calling
1648      rest_of_compilation for each function).  */
1649   lang_hooks.parse_file (set_yydebug);
1650
1651   /* In case there were missing block closers,
1652      get us back to the global binding level.  */
1653   lang_hooks.clear_binding_stack ();
1654
1655   /* Compilation is now finished except for writing
1656      what's left of the symbol table output.  */
1657   timevar_pop (TV_PARSE);
1658
1659   if (flag_syntax_only)
1660     return;
1661
1662   lang_hooks.decls.final_write_globals ();
1663
1664   cgraph_varpool_assemble_pending_decls ();
1665
1666   /* This must occur after the loop to output deferred functions.
1667      Else the coverage initializer would not be emitted if all the
1668      functions in this compilation unit were deferred.  */
1669   coverage_finish ();
1670
1671   /* Write out any pending weak symbol declarations.  */
1672
1673   weak_finish ();
1674
1675   /* Do dbx symbols.  */
1676   timevar_push (TV_SYMOUT);
1677
1678 #ifdef DWARF2_UNWIND_INFO
1679   if (dwarf2out_do_frame ())
1680     dwarf2out_frame_finish ();
1681 #endif
1682
1683   (*debug_hooks->finish) (main_input_filename);
1684   timevar_pop (TV_SYMOUT);
1685
1686   /* Output some stuff at end of file if nec.  */
1687
1688   dw2_output_indirect_constants ();
1689
1690   /* Attach a special .ident directive to the end of the file to identify
1691      the version of GCC which compiled this code.  The format of the .ident
1692      string is patterned after the ones produced by native SVR4 compilers.  */
1693 #ifdef IDENT_ASM_OP
1694   if (!flag_no_ident)
1695     fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1696              IDENT_ASM_OP, version_string);
1697 #endif
1698
1699   /* This must be at the end.  Some target ports emit end of file directives
1700      into the assembly file here, and hence we can not output anything to the
1701      assembly file after this point.  */
1702   targetm.asm_out.file_end ();
1703 }
1704
1705 /* Display help for target options.  */
1706 void
1707 display_target_options (void)
1708 {
1709   int undoc, i;
1710   static bool displayed = false;
1711
1712   /* Avoid double printing for --help --target-help.  */
1713   if (displayed)
1714     return;
1715
1716   displayed = true;
1717
1718   if (ARRAY_SIZE (target_switches) > 1
1719 #ifdef TARGET_OPTIONS
1720       || ARRAY_SIZE (target_options) > 1
1721 #endif
1722       )
1723     {
1724       int doc = 0;
1725
1726       undoc = 0;
1727
1728       printf (_("\nTarget specific options:\n"));
1729
1730       for (i = ARRAY_SIZE (target_switches); i--;)
1731         {
1732           const char *option      = target_switches[i].name;
1733           const char *description = target_switches[i].description;
1734
1735           if (option == NULL || *option == 0)
1736             continue;
1737           else if (description == NULL)
1738             {
1739               undoc = 1;
1740
1741               if (extra_warnings)
1742                 printf (_("  -m%-23s [undocumented]\n"), option);
1743             }
1744           else if (*description != 0)
1745             doc += printf ("  -m%-23s %s\n", option, _(description));
1746         }
1747
1748 #ifdef TARGET_OPTIONS
1749       for (i = ARRAY_SIZE (target_options); i--;)
1750         {
1751           const char *option      = target_options[i].prefix;
1752           const char *description = target_options[i].description;
1753
1754           if (option == NULL || *option == 0)
1755             continue;
1756           else if (description == NULL)
1757             {
1758               undoc = 1;
1759
1760               if (extra_warnings)
1761                 printf (_("  -m%-23s [undocumented]\n"), option);
1762             }
1763           else if (*description != 0)
1764             doc += printf ("  -m%-23s %s\n", option, _(description));
1765         }
1766 #endif
1767       if (undoc)
1768         {
1769           if (doc)
1770             printf (_("\nThere are undocumented target specific options as well.\n"));
1771           else
1772             printf (_("  They exist, but they are not documented.\n"));
1773         }
1774     }
1775 }
1776
1777 /* Parse a -d... command line switch.  */
1778
1779 void
1780 decode_d_option (const char *arg)
1781 {
1782   int c;
1783
1784   while (*arg)
1785     switch (c = *arg++)
1786       {
1787       case 'A':
1788         flag_debug_asm = 1;
1789         break;
1790       case 'p':
1791         flag_print_asm_name = 1;
1792         break;
1793       case 'P':
1794         flag_dump_rtl_in_asm = 1;
1795         flag_print_asm_name = 1;
1796         break;
1797       case 'v':
1798         graph_dump_format = vcg;
1799         break;
1800       case 'x':
1801         rtl_dump_and_exit = 1;
1802         break;
1803       case 'y':
1804         set_yydebug = 1;
1805         break;
1806       case 'D': /* These are handled by the preprocessor.  */
1807       case 'I':
1808         break;
1809       case 'H':
1810         setup_core_dumping();
1811         break;
1812
1813       case 'a':
1814       default:
1815         if (!enable_rtl_dump_file (c))
1816           warning ("unrecognized gcc debugging option: %c", c);
1817         break;
1818       }
1819 }
1820
1821 /* Indexed by enum debug_info_type.  */
1822 const char *const debug_type_names[] =
1823 {
1824   "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
1825 };
1826
1827 /* Decode -m switches.  */
1828 /* Decode the switch -mNAME.  */
1829
1830 void
1831 set_target_switch (const char *name)
1832 {
1833   size_t j;
1834   int valid_target_option = 0;
1835
1836   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1837     if (!strcmp (target_switches[j].name, name))
1838       {
1839         if (target_switches[j].value < 0)
1840           target_flags &= ~-target_switches[j].value;
1841         else
1842           target_flags |= target_switches[j].value;
1843         if (name[0] != 0)
1844           {
1845             if (target_switches[j].value < 0)
1846               target_flags_explicit |= -target_switches[j].value;
1847             else
1848               target_flags_explicit |= target_switches[j].value;
1849           }
1850         valid_target_option = 1;
1851       }
1852
1853 #ifdef TARGET_OPTIONS
1854   if (!valid_target_option)
1855     for (j = 0; j < ARRAY_SIZE (target_options); j++)
1856       {
1857         int len = strlen (target_options[j].prefix);
1858         if (target_options[j].value)
1859           {
1860             if (!strcmp (target_options[j].prefix, name))
1861               {
1862                 *target_options[j].variable = target_options[j].value;
1863                 valid_target_option = 1;
1864               }
1865           }
1866         else
1867           {
1868             if (!strncmp (target_options[j].prefix, name, len))
1869               {
1870                 *target_options[j].variable = name + len;
1871                 valid_target_option = 1;
1872               }
1873           }
1874       }
1875 #endif
1876
1877   if (!valid_target_option)
1878     error ("invalid option `%s'", name);
1879 }
1880
1881 /* Print version information to FILE.
1882    Each line begins with INDENT (for the case where FILE is the
1883    assembler output file).  */
1884
1885 void
1886 print_version (FILE *file, const char *indent)
1887 {
1888 #ifndef __VERSION__
1889 #define __VERSION__ "[?]"
1890 #endif
1891   fnotice (file,
1892 #ifdef __GNUC__
1893            "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
1894 #else
1895            "%s%s%s version %s (%s) compiled by CC.\n"
1896 #endif
1897            , indent, *indent != 0 ? " " : "",
1898            lang_hooks.name, version_string, TARGET_NAME,
1899            indent, __VERSION__);
1900   fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
1901            indent, *indent != 0 ? " " : "",
1902            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1903 }
1904
1905 /* Print an option value and return the adjusted position in the line.
1906    ??? We don't handle error returns from fprintf (disk full); presumably
1907    other code will catch a disk full though.  */
1908
1909 static int
1910 print_single_switch (FILE *file, int pos, int max,
1911                      const char *indent, const char *sep, const char *term,
1912                      const char *type, const char *name)
1913 {
1914   /* The ultrix fprintf returns 0 on success, so compute the result we want
1915      here since we need it for the following test.  */
1916   int len = strlen (sep) + strlen (type) + strlen (name);
1917
1918   if (pos != 0
1919       && pos + len > max)
1920     {
1921       fprintf (file, "%s", term);
1922       pos = 0;
1923     }
1924   if (pos == 0)
1925     {
1926       fprintf (file, "%s", indent);
1927       pos = strlen (indent);
1928     }
1929   fprintf (file, "%s%s%s", sep, type, name);
1930   pos += len;
1931   return pos;
1932 }
1933
1934 /* Print active target switches to FILE.
1935    POS is the current cursor position and MAX is the size of a "line".
1936    Each line begins with INDENT and ends with TERM.
1937    Each switch is separated from the next by SEP.  */
1938
1939 static void
1940 print_switch_values (FILE *file, int pos, int max,
1941                      const char *indent, const char *sep, const char *term)
1942 {
1943   size_t j;
1944   const char **p;
1945
1946   /* Fill in the -frandom-seed option, if the user didn't pass it, so
1947      that it can be printed below.  This helps reproducibility.  */
1948   randomize ();
1949
1950   /* Print the options as passed.  */
1951   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1952                              _("options passed: "), "");
1953
1954   for (p = &save_argv[1]; *p != NULL; p++)
1955     if (**p == '-')
1956       {
1957         /* Ignore these.  */
1958         if (strcmp (*p, "-o") == 0)
1959           {
1960             if (p[1] != NULL)
1961               p++;
1962             continue;
1963           }
1964         if (strcmp (*p, "-quiet") == 0)
1965           continue;
1966         if (strcmp (*p, "-version") == 0)
1967           continue;
1968         if ((*p)[1] == 'd')
1969           continue;
1970
1971         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1972       }
1973   if (pos > 0)
1974     fprintf (file, "%s", term);
1975
1976   /* Print the -f and -m options that have been enabled.
1977      We don't handle language specific options but printing argv
1978      should suffice.  */
1979
1980   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1981                              _("options enabled: "), "");
1982
1983   for (j = 0; j < ARRAY_SIZE (f_options); j++)
1984     if (*f_options[j].variable == f_options[j].on_value)
1985       pos = print_single_switch (file, pos, max, indent, sep, term,
1986                                  "-f", f_options[j].string);
1987
1988   /* Print target specific options.  */
1989
1990   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1991     if (target_switches[j].name[0] != '\0'
1992         && target_switches[j].value > 0
1993         && ((target_switches[j].value & target_flags)
1994             == target_switches[j].value))
1995       {
1996         pos = print_single_switch (file, pos, max, indent, sep, term,
1997                                    "-m", target_switches[j].name);
1998       }
1999
2000 #ifdef TARGET_OPTIONS
2001   for (j = 0; j < ARRAY_SIZE (target_options); j++)
2002     if (*target_options[j].variable != NULL)
2003       {
2004         char prefix[256];
2005         sprintf (prefix, "-m%s", target_options[j].prefix);
2006         pos = print_single_switch (file, pos, max, indent, sep, term,
2007                                    prefix, *target_options[j].variable);
2008       }
2009 #endif
2010
2011   fprintf (file, "%s", term);
2012 }
2013
2014 /* Open assembly code output file.  Do this even if -fsyntax-only is
2015    on, because then the driver will have provided the name of a
2016    temporary file or bit bucket for us.  NAME is the file specified on
2017    the command line, possibly NULL.  */
2018 static void
2019 init_asm_output (const char *name)
2020 {
2021   if (name == NULL && asm_file_name == 0)
2022     asm_out_file = stdout;
2023   else
2024     {
2025       if (asm_file_name == 0)
2026         {
2027           int len = strlen (dump_base_name);
2028           char *dumpname = xmalloc (len + 6);
2029           memcpy (dumpname, dump_base_name, len + 1);
2030           strip_off_ending (dumpname, len);
2031           strcat (dumpname, ".s");
2032           asm_file_name = dumpname;
2033         }
2034       if (!strcmp (asm_file_name, "-"))
2035         asm_out_file = stdout;
2036       else
2037         asm_out_file = fopen (asm_file_name, "w+");
2038       if (asm_out_file == 0)
2039         fatal_error ("can't open %s for writing: %m", asm_file_name);
2040     }
2041
2042 #ifdef IO_BUFFER_SIZE
2043   setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
2044            _IOFBF, IO_BUFFER_SIZE);
2045 #endif
2046
2047   if (!flag_syntax_only)
2048     {
2049       targetm.asm_out.file_start ();
2050
2051 #ifdef ASM_COMMENT_START
2052       if (flag_verbose_asm)
2053         {
2054           /* Print the list of options in effect.  */
2055           print_version (asm_out_file, ASM_COMMENT_START);
2056           print_switch_values (asm_out_file, 0, MAX_LINE,
2057                                ASM_COMMENT_START, " ", "\n");
2058           /* Add a blank line here so it appears in assembler output but not
2059              screen output.  */
2060           fprintf (asm_out_file, "\n");
2061         }
2062 #endif
2063     }
2064 }
2065
2066 /* Default version of get_pch_validity.
2067    By default, every flag difference is fatal; that will be mostly right for
2068    most targets, but completely right for very few.  */
2069
2070 void *
2071 default_get_pch_validity (size_t *len)
2072 {
2073 #ifdef TARGET_OPTIONS
2074   size_t i;
2075 #endif
2076   char *result, *r;
2077
2078   *len = sizeof (target_flags) + 2;
2079 #ifdef TARGET_OPTIONS
2080   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2081     {
2082       *len += 1;
2083       if (*target_options[i].variable)
2084         *len += strlen (*target_options[i].variable);
2085     }
2086 #endif
2087
2088   result = r = xmalloc (*len);
2089   r[0] = flag_pic;
2090   r[1] = flag_pie;
2091   r += 2;
2092   memcpy (r, &target_flags, sizeof (target_flags));
2093   r += sizeof (target_flags);
2094
2095 #ifdef TARGET_OPTIONS
2096   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2097     {
2098       const char *str = *target_options[i].variable;
2099       size_t l;
2100       if (! str)
2101         str = "";
2102       l = strlen (str) + 1;
2103       memcpy (r, str, l);
2104       r += l;
2105     }
2106 #endif
2107
2108   return result;
2109 }
2110
2111 /* Default version of pch_valid_p.  */
2112
2113 const char *
2114 default_pch_valid_p (const void *data_p, size_t len)
2115 {
2116   const char *data = (const char *)data_p;
2117   const char *flag_that_differs = NULL;
2118   size_t i;
2119
2120   /* -fpic and -fpie also usually make a PCH invalid.  */
2121   if (data[0] != flag_pic)
2122     return _("created and used with different settings of -fpic");
2123   if (data[1] != flag_pie)
2124     return _("created and used with different settings of -fpie");
2125   data += 2;
2126
2127   /* Check target_flags.  */
2128   if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
2129     {
2130       for (i = 0; i < ARRAY_SIZE (target_switches); i++)
2131         {
2132           int bits;
2133           int tf;
2134
2135           memcpy (&tf, data, sizeof (target_flags));
2136
2137           bits = target_switches[i].value;
2138           if (bits < 0)
2139             bits = -bits;
2140           if ((target_flags & bits) != (tf & bits))
2141             {
2142               flag_that_differs = target_switches[i].name;
2143               goto make_message;
2144             }
2145         }
2146       abort ();
2147     }
2148   data += sizeof (target_flags);
2149   len -= sizeof (target_flags);
2150
2151   /* Check string options.  */
2152 #ifdef TARGET_OPTIONS
2153   for (i = 0; i < ARRAY_SIZE (target_options); i++)
2154     {
2155       const char *str = *target_options[i].variable;
2156       size_t l;
2157       if (! str)
2158         str = "";
2159       l = strlen (str) + 1;
2160       if (len < l || memcmp (data, str, l) != 0)
2161         {
2162           flag_that_differs = target_options[i].prefix;
2163           goto make_message;
2164         }
2165       data += l;
2166       len -= l;
2167     }
2168 #endif
2169
2170   return NULL;
2171
2172  make_message:
2173   {
2174     char *r;
2175     asprintf (&r, _("created and used with differing settings of `-m%s'"),
2176                   flag_that_differs);
2177     if (r == NULL)
2178       return _("out of memory");
2179     return r;
2180   }
2181 }
2182
2183 /* Default tree printer.   Handles declarations only.  */
2184 static bool
2185 default_tree_printer (pretty_printer * pp, text_info *text)
2186 {
2187   switch (*text->format_spec)
2188     {
2189     case 'D':
2190     case 'F':
2191     case 'T':
2192       {
2193         tree t = va_arg (*text->args_ptr, tree);
2194         const char *n = DECL_NAME (t)
2195           ? lang_hooks.decl_printable_name (t, 2)
2196           : "<anonymous>";
2197         pp_string (pp, n);
2198       }
2199       return true;
2200
2201     default:
2202       return false;
2203     }
2204 }
2205
2206 /* Initialization of the front end environment, before command line
2207    options are parsed.  Signal handlers, internationalization etc.
2208    ARGV0 is main's argv[0].  */
2209 static void
2210 general_init (const char *argv0)
2211 {
2212   const char *p;
2213
2214   p = argv0 + strlen (argv0);
2215   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
2216     --p;
2217   progname = p;
2218
2219   xmalloc_set_program_name (progname);
2220
2221   hex_init ();
2222
2223   gcc_init_libintl ();
2224
2225   /* Initialize the diagnostics reporting machinery, so option parsing
2226      can give warnings and errors.  */
2227   diagnostic_initialize (global_dc);
2228   /* Set a default printer.  Language specific initializations will
2229      override it later.  */
2230   pp_format_decoder (global_dc->printer) = &default_tree_printer;
2231
2232   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
2233 #ifdef SIGSEGV
2234   signal (SIGSEGV, crash_signal);
2235 #endif
2236 #ifdef SIGILL
2237   signal (SIGILL, crash_signal);
2238 #endif
2239 #ifdef SIGBUS
2240   signal (SIGBUS, crash_signal);
2241 #endif
2242 #ifdef SIGABRT
2243   signal (SIGABRT, crash_signal);
2244 #endif
2245 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
2246   signal (SIGIOT, crash_signal);
2247 #endif
2248 #ifdef SIGFPE
2249   signal (SIGFPE, crash_signal);
2250 #endif
2251
2252   /* Other host-specific signal setup.  */
2253   (*host_hooks.extra_signals)();
2254
2255   /* Initialize the garbage-collector, string pools and tree type hash
2256      table.  */
2257   init_ggc ();
2258   init_stringpool ();
2259   linemap_init (&line_table);
2260   init_ttree ();
2261
2262   /* Initialize register usage now so switches may override.  */
2263   init_reg_sets ();
2264
2265   /* Register the language-independent parameters.  */
2266   add_params (lang_independent_params, LAST_PARAM);
2267
2268   /* This must be done after add_params but before argument processing.  */
2269   init_ggc_heuristics();
2270   init_tree_optimization_passes ();
2271 }
2272
2273 /* Process the options that have been parsed.  */
2274 static void
2275 process_options (void)
2276 {
2277   /* Allow the front end to perform consistency checks and do further
2278      initialization based on the command line options.  This hook also
2279      sets the original filename if appropriate (e.g. foo.i -> foo.c)
2280      so we can correctly initialize debug output.  */
2281   no_backend = lang_hooks.post_options (&main_input_filename);
2282   input_filename = main_input_filename;
2283
2284 #ifdef OVERRIDE_OPTIONS
2285   /* Some machines may reject certain combinations of options.  */
2286   OVERRIDE_OPTIONS;
2287 #endif
2288
2289   if (flag_short_enums == 2)
2290     flag_short_enums = targetm.default_short_enums ();
2291
2292   /* Set aux_base_name if not already set.  */
2293   if (aux_base_name)
2294     ;
2295   else if (main_input_filename)
2296     {
2297       char *name = xstrdup (lbasename (main_input_filename));
2298
2299       strip_off_ending (name, strlen (name));
2300       aux_base_name = name;
2301     }
2302   else
2303     aux_base_name = "gccaux";
2304
2305   /* Set up the align_*_log variables, defaulting them to 1 if they
2306      were still unset.  */
2307   if (align_loops <= 0) align_loops = 1;
2308   if (align_loops_max_skip > align_loops || !align_loops)
2309     align_loops_max_skip = align_loops - 1;
2310   align_loops_log = floor_log2 (align_loops * 2 - 1);
2311   if (align_jumps <= 0) align_jumps = 1;
2312   if (align_jumps_max_skip > align_jumps || !align_jumps)
2313     align_jumps_max_skip = align_jumps - 1;
2314   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
2315   if (align_labels <= 0) align_labels = 1;
2316   align_labels_log = floor_log2 (align_labels * 2 - 1);
2317   if (align_labels_max_skip > align_labels || !align_labels)
2318     align_labels_max_skip = align_labels - 1;
2319   if (align_functions <= 0) align_functions = 1;
2320   align_functions_log = floor_log2 (align_functions * 2 - 1);
2321
2322   /* Unrolling all loops implies that standard loop unrolling must also
2323      be done.  */
2324   if (flag_unroll_all_loops)
2325     flag_unroll_loops = 1;
2326
2327   if (flag_unroll_loops)
2328     {
2329       flag_old_unroll_loops = 0;
2330       flag_old_unroll_all_loops = 0;
2331     }
2332
2333   if (flag_old_unroll_all_loops)
2334     flag_old_unroll_loops = 1;
2335
2336   /* Old loop unrolling requires that strength_reduction be on also.  Silently
2337      turn on strength reduction here if it isn't already on.  Also, the loop
2338      unrolling code assumes that cse will be run after loop, so that must
2339      be turned on also.  */
2340   if (flag_old_unroll_loops)
2341     {
2342       flag_strength_reduce = 1;
2343       flag_rerun_cse_after_loop = 1;
2344     }
2345   if (flag_unroll_loops || flag_peel_loops)
2346     flag_rerun_cse_after_loop = 1;
2347
2348   if (flag_non_call_exceptions)
2349     flag_asynchronous_unwind_tables = 1;
2350   if (flag_asynchronous_unwind_tables)
2351     flag_unwind_tables = 1;
2352
2353   /* Disable unit-at-a-time mode for frontends not supporting callgraph
2354      interface.  */
2355   if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
2356     flag_unit_at_a_time = 0;
2357
2358   if (flag_value_profile_transformations)
2359     flag_profile_values = 1;
2360
2361   /* Warn about options that are not supported on this machine.  */
2362 #ifndef INSN_SCHEDULING
2363   if (flag_schedule_insns || flag_schedule_insns_after_reload)
2364     warning ("instruction scheduling not supported on this target machine");
2365 #endif
2366 #ifndef DELAY_SLOTS
2367   if (flag_delayed_branch)
2368     warning ("this target machine does not have delayed branches");
2369 #endif
2370
2371   if (flag_tree_based_profiling && flag_test_coverage)
2372     sorry ("test-coverage not yet implemented in trees.");
2373   if (flag_tree_based_profiling && flag_profile_values)
2374     sorry ("value-based profiling not yet implemented in trees.");
2375
2376   user_label_prefix = USER_LABEL_PREFIX;
2377   if (flag_leading_underscore != -1)
2378     {
2379       /* If the default prefix is more complicated than "" or "_",
2380          issue a warning and ignore this option.  */
2381       if (user_label_prefix[0] == 0 ||
2382           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
2383         {
2384           user_label_prefix = flag_leading_underscore ? "_" : "";
2385         }
2386       else
2387         warning ("-f%sleading-underscore not supported on this target machine",
2388                  flag_leading_underscore ? "" : "no-");
2389     }
2390
2391   /* If we are in verbose mode, write out the version and maybe all the
2392      option flags in use.  */
2393   if (version_flag)
2394     {
2395       print_version (stderr, "");
2396       if (! quiet_flag)
2397         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
2398     }
2399
2400   if (flag_syntax_only)
2401     {
2402       write_symbols = NO_DEBUG;
2403       profile_flag = 0;
2404     }
2405
2406   /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
2407      level is 0.  */
2408   if (debug_info_level == DINFO_LEVEL_NONE)
2409     write_symbols = NO_DEBUG;
2410
2411   /* Now we know write_symbols, set up the debug hooks based on it.
2412      By default we do nothing for debug output.  */
2413   if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
2414     default_debug_hooks = &do_nothing_debug_hooks;
2415 #if defined(DBX_DEBUGGING_INFO)
2416   else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
2417     default_debug_hooks = &dbx_debug_hooks;
2418 #endif
2419 #if defined(XCOFF_DEBUGGING_INFO)
2420   else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
2421     default_debug_hooks = &xcoff_debug_hooks;
2422 #endif
2423 #ifdef SDB_DEBUGGING_INFO
2424   else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
2425     default_debug_hooks = &sdb_debug_hooks;
2426 #endif
2427 #ifdef DWARF2_DEBUGGING_INFO
2428   else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
2429     default_debug_hooks = &dwarf2_debug_hooks;
2430 #endif
2431 #ifdef VMS_DEBUGGING_INFO
2432   else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
2433            || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
2434     default_debug_hooks = &vmsdbg_debug_hooks;
2435 #endif
2436
2437   if (write_symbols == NO_DEBUG)
2438     debug_hooks = &do_nothing_debug_hooks;
2439 #if defined(DBX_DEBUGGING_INFO)
2440   else if (write_symbols == DBX_DEBUG)
2441     debug_hooks = &dbx_debug_hooks;
2442 #endif
2443 #if defined(XCOFF_DEBUGGING_INFO)
2444   else if (write_symbols == XCOFF_DEBUG)
2445     debug_hooks = &xcoff_debug_hooks;
2446 #endif
2447 #ifdef SDB_DEBUGGING_INFO
2448   else if (write_symbols == SDB_DEBUG)
2449     debug_hooks = &sdb_debug_hooks;
2450 #endif
2451 #ifdef DWARF2_DEBUGGING_INFO
2452   else if (write_symbols == DWARF2_DEBUG)
2453     debug_hooks = &dwarf2_debug_hooks;
2454 #endif
2455 #ifdef VMS_DEBUGGING_INFO
2456   else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
2457     debug_hooks = &vmsdbg_debug_hooks;
2458 #endif
2459   else
2460     error ("target system does not support the \"%s\" debug format",
2461            debug_type_names[write_symbols]);
2462
2463   /* Now we know which debug output will be used so we can set
2464      flag_var_tracking, flag_rename_registers and flag_web if the user has
2465      not specified them.  */
2466   if (debug_info_level < DINFO_LEVEL_NORMAL
2467       || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
2468     {
2469       if (flag_var_tracking == 1)
2470         {
2471           if (debug_info_level < DINFO_LEVEL_NORMAL)
2472             warning ("variable tracking requested, but useless unless "
2473                      "producing debug info");
2474           else
2475             warning ("variable tracking requested, but not supported "
2476                      "by this debug format");
2477         }
2478       flag_var_tracking = 0;
2479     }
2480
2481   if (flag_rename_registers == AUTODETECT_FLAG_VAR_TRACKING)
2482     flag_rename_registers = default_debug_hooks->var_location
2483                             != do_nothing_debug_hooks.var_location;
2484
2485   if (flag_web == AUTODETECT_FLAG_VAR_TRACKING)
2486     flag_web = optimize >= 2 && (default_debug_hooks->var_location
2487                                  != do_nothing_debug_hooks.var_location);
2488
2489   if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
2490     flag_var_tracking = optimize >= 1;
2491
2492   /* If auxiliary info generation is desired, open the output file.
2493      This goes in the same directory as the source file--unlike
2494      all the other output files.  */
2495   if (flag_gen_aux_info)
2496     {
2497       aux_info_file = fopen (aux_info_file_name, "w");
2498       if (aux_info_file == 0)
2499         fatal_error ("can't open %s: %m", aux_info_file_name);
2500     }
2501
2502   if (! targetm.have_named_sections)
2503     {
2504       if (flag_function_sections)
2505         {
2506           warning ("-ffunction-sections not supported for this target");
2507           flag_function_sections = 0;
2508         }
2509       if (flag_data_sections)
2510         {
2511           warning ("-fdata-sections not supported for this target");
2512           flag_data_sections = 0;
2513         }
2514     }
2515
2516   if (flag_function_sections && profile_flag)
2517     {
2518       warning ("-ffunction-sections disabled; it makes profiling impossible");
2519       flag_function_sections = 0;
2520     }
2521
2522 #ifndef HAVE_prefetch
2523   if (flag_prefetch_loop_arrays)
2524     {
2525       warning ("-fprefetch-loop-arrays not supported for this target");
2526       flag_prefetch_loop_arrays = 0;
2527     }
2528 #else
2529   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
2530     {
2531       warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
2532       flag_prefetch_loop_arrays = 0;
2533     }
2534 #endif
2535
2536   /* This combination of options isn't handled for i386 targets and doesn't
2537      make much sense anyway, so don't allow it.  */
2538   if (flag_prefetch_loop_arrays && optimize_size)
2539     {
2540       warning ("-fprefetch-loop-arrays is not supported with -Os");
2541       flag_prefetch_loop_arrays = 0;
2542     }
2543
2544 #ifndef OBJECT_FORMAT_ELF
2545   if (flag_function_sections && write_symbols != NO_DEBUG)
2546     warning ("-ffunction-sections may affect debugging on some targets");
2547 #endif
2548
2549   /* The presence of IEEE signaling NaNs, implies all math can trap.  */
2550   if (flag_signaling_nans)
2551     flag_trapping_math = 1;
2552 }
2553
2554 /* Initialize the compiler back end.  */
2555 static void
2556 backend_init (void)
2557 {
2558   init_adjust_machine_modes ();
2559
2560   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
2561                   || debug_info_level == DINFO_LEVEL_VERBOSE
2562 #ifdef VMS_DEBUGGING_INFO
2563                     /* Enable line number info for traceback.  */
2564                     || debug_info_level > DINFO_LEVEL_NONE
2565 #endif
2566                     || flag_test_coverage
2567                     || warn_notreached);
2568
2569   init_regs ();
2570   init_fake_stack_mems ();
2571   init_alias_once ();
2572   init_loop ();
2573   init_reload ();
2574   init_function_once ();
2575   init_varasm_once ();
2576
2577   /* The following initialization functions need to generate rtl, so
2578      provide a dummy function context for them.  */
2579   init_dummy_function_start ();
2580   init_expmed ();
2581   if (flag_caller_saves)
2582     init_caller_save ();
2583   expand_dummy_function_end ();
2584 }
2585
2586 /* Language-dependent initialization.  Returns nonzero on success.  */
2587 static int
2588 lang_dependent_init (const char *name)
2589 {
2590   if (dump_base_name == 0)
2591     dump_base_name = name ? name : "gccdump";
2592
2593   /* Other front-end initialization.  */
2594   if (lang_hooks.init () == 0)
2595     return 0;
2596
2597   init_asm_output (name);
2598
2599   /* These create various _DECL nodes, so need to be called after the
2600      front end is initialized.  */
2601   init_eh ();
2602   init_optabs ();
2603   init_optimization_passes ();
2604
2605   /* The following initialization functions need to generate rtl, so
2606      provide a dummy function context for them.  */
2607   init_dummy_function_start ();
2608   init_expr_once ();
2609   expand_dummy_function_end ();
2610
2611   /* If dbx symbol table desired, initialize writing it and output the
2612      predefined types.  */
2613   timevar_push (TV_SYMOUT);
2614
2615 #ifdef DWARF2_UNWIND_INFO
2616   if (dwarf2out_do_frame ())
2617     dwarf2out_frame_init ();
2618 #endif
2619
2620   /* Now we have the correct original filename, we can initialize
2621      debug output.  */
2622   (*debug_hooks->init) (name);
2623
2624   timevar_pop (TV_SYMOUT);
2625
2626   return 1;
2627 }
2628
2629 /* Clean up: close opened files, etc.  */
2630
2631 static void
2632 finalize (void)
2633 {
2634   /* Close the dump files.  */
2635   if (flag_gen_aux_info)
2636     {
2637       fclose (aux_info_file);
2638       if (errorcount)
2639         unlink (aux_info_file_name);
2640     }
2641
2642   /* Close non-debugging input and output files.  Take special care to note
2643      whether fclose returns an error, since the pages might still be on the
2644      buffer chain while the file is open.  */
2645
2646   if (asm_out_file)
2647     {
2648       if (ferror (asm_out_file) != 0)
2649         fatal_error ("error writing to %s: %m", asm_file_name);
2650       if (fclose (asm_out_file) != 0)
2651         fatal_error ("error closing %s: %m", asm_file_name);
2652     }
2653
2654   finish_optimization_passes ();
2655
2656   if (mem_report)
2657     {
2658       ggc_print_statistics ();
2659       stringpool_statistics ();
2660       dump_tree_statistics ();
2661       dump_rtx_statistics ();
2662       dump_varray_statistics ();
2663       dump_alloc_pool_statistics ();
2664       dump_ggc_loc_statistics ();
2665     }
2666
2667   /* Free up memory for the benefit of leak detectors.  */
2668   free_reg_info ();
2669
2670   /* Language-specific end of compilation actions.  */
2671   lang_hooks.finish ();
2672 }
2673
2674 /* Initialize the compiler, and compile the input file.  */
2675 static void
2676 do_compile (void)
2677 {
2678   /* Initialize timing first.  The C front ends read the main file in
2679      the post_options hook, and C++ does file timings.  */
2680   if (time_report || !quiet_flag  || flag_detailed_statistics)
2681     timevar_init ();
2682   timevar_start (TV_TOTAL);
2683
2684   process_options ();
2685
2686   /* Don't do any more if an error has already occurred.  */
2687   if (!errorcount)
2688     {
2689       /* Set up the back-end if requested.  */
2690       if (!no_backend)
2691         backend_init ();
2692
2693       /* Language-dependent initialization.  Returns true on success.  */
2694       if (lang_dependent_init (main_input_filename))
2695         compile_file ();
2696
2697       finalize ();
2698     }
2699
2700   /* Stop timing and print the times.  */
2701   timevar_stop (TV_TOTAL);
2702   timevar_print (stderr);
2703 }
2704
2705 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2706    Exit code is FATAL_EXIT_CODE if can't open files or if there were
2707    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2708
2709    It is not safe to call this function more than once.  */
2710
2711 int
2712 toplev_main (unsigned int argc, const char **argv)
2713 {
2714   save_argv = argv;
2715
2716   /* Initialization of GCC's environment, and diagnostics.  */
2717   general_init (argv[0]);
2718
2719   /* Parse the options and do minimal processing; basically just
2720      enough to default flags appropriately.  */
2721   decode_options (argc, argv);
2722
2723   randomize ();
2724
2725   /* Exit early if we can (e.g. -help).  */
2726   if (!exit_after_options)
2727     do_compile ();
2728
2729   if (errorcount || sorrycount)
2730     return (FATAL_EXIT_CODE);
2731
2732   return (SUCCESS_EXIT_CODE);
2733 }