debug.h (struct gcc_debug_hooks): Add type_decl field.
[platform/upstream/gcc.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 "input.h"
44 #include "tree.h"
45 #include "rtl.h"
46 #include "tm_p.h"
47 #include "flags.h"
48 #include "insn-attr.h"
49 #include "insn-config.h"
50 #include "insn-flags.h"
51 #include "hard-reg-set.h"
52 #include "recog.h"
53 #include "output.h"
54 #include "except.h"
55 #include "function.h"
56 #include "toplev.h"
57 #include "expr.h"
58 #include "basic-block.h"
59 #include "intl.h"
60 #include "ggc.h"
61 #include "graph.h"
62 #include "loop.h"
63 #include "regs.h"
64 #include "timevar.h"
65 #include "diagnostic.h"
66 #include "params.h"
67 #include "reload.h"
68 #include "dwarf2asm.h"
69 #include "integrate.h"
70 #include "real.h"
71 #include "debug.h"
72 #include "target.h"
73 #include "langhooks.h"
74 #include "cfglayout.h"
75 #include "cfgloop.h"
76 #include "hosthooks.h"
77 #include "cgraph.h"
78 #include "opts.h"
79 #include "coverage.h"
80 #include "value-prof.h"
81 #include "alloc-pool.h"
82
83 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
84 #include "dwarf2out.h"
85 #endif
86
87 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
88 #include "dbxout.h"
89 #endif
90
91 #ifdef SDB_DEBUGGING_INFO
92 #include "sdbout.h"
93 #endif
94
95 #ifdef XCOFF_DEBUGGING_INFO
96 #include "xcoffout.h"           /* Needed for external data
97                                    declarations for e.g. AIX 4.x.  */
98 #endif
99
100 #ifndef HAVE_conditional_execution
101 #define HAVE_conditional_execution 0
102 #endif
103
104 /* Carry information from ASM_DECLARE_OBJECT_NAME
105    to ASM_FINISH_DECLARE_OBJECT.  */
106
107 extern int size_directive_output;
108 extern tree last_assemble_variable_decl;
109
110 extern void reg_alloc (void);
111
112 static void general_init (const char *);
113 static void do_compile (void);
114 static void process_options (void);
115 static void backend_init (void);
116 static int lang_dependent_init (const char *);
117 static void init_asm_output (const char *);
118 static void finalize (void);
119
120 static void crash_signal (int) ATTRIBUTE_NORETURN;
121 static void setup_core_dumping (void);
122 static void compile_file (void);
123
124 static int print_single_switch (FILE *, int, int, const char *,
125                                 const char *, const char *,
126                                 const char *, const char *);
127 static void print_switch_values (FILE *, int, int, const char *,
128                                  const char *, const char *);
129
130 /* Rest of compilation helper functions.  */
131 static bool rest_of_handle_inlining (tree);
132 static void rest_of_handle_cse (tree, rtx);
133 static void rest_of_handle_cse2 (tree, rtx);
134 static void rest_of_handle_gcse (tree, rtx);
135 static void rest_of_handle_life (tree, rtx);
136 static void rest_of_handle_loop_optimize (tree, rtx);
137 static void rest_of_handle_loop2 (tree, rtx);
138 static void rest_of_handle_jump_bypass (tree, rtx);
139 static void rest_of_handle_sibling_calls (rtx);
140 static void rest_of_handle_null_pointer (tree, rtx);
141 static void rest_of_handle_addressof (tree, rtx);
142 static void rest_of_handle_cfg (tree, rtx);
143 static void rest_of_handle_branch_prob (tree, rtx);
144 static void rest_of_handle_value_profile_transformations (tree, rtx);
145 static void rest_of_handle_if_conversion (tree, rtx);
146 static void rest_of_handle_if_after_combine (tree, rtx);
147 static void rest_of_handle_tracer (tree, rtx);
148 static void rest_of_handle_combine (tree, rtx);
149 static void rest_of_handle_regmove (tree, rtx);
150 #ifdef INSN_SCHEDULING
151 static void rest_of_handle_sched (tree, rtx);
152 static void rest_of_handle_sched2 (tree, rtx);
153 #endif
154 static bool rest_of_handle_new_regalloc (tree, rtx);
155 static bool rest_of_handle_old_regalloc (tree, rtx);
156 static void rest_of_handle_regrename (tree, rtx);
157 static void rest_of_handle_reorder_blocks (tree, rtx);
158 #ifdef STACK_REGS
159 static void rest_of_handle_stack_regs (tree, rtx);
160 #endif
161 static void rest_of_handle_variable_tracking (tree, rtx);
162 static void rest_of_handle_machine_reorg (tree, rtx);
163 #ifdef DELAY_SLOTS
164 static void rest_of_handle_delay_slots (tree, rtx);
165 #endif
166 static void rest_of_handle_final (tree, rtx);
167
168 /* Nonzero to dump debug info whilst parsing (-dy option).  */
169 static int set_yydebug;
170
171 /* True if we don't need a backend (e.g. preprocessing only).  */
172 static bool no_backend;
173
174 /* Length of line when printing switch values.  */
175 #define MAX_LINE 75
176
177 /* Name of program invoked, sans directories.  */
178
179 const char *progname;
180
181 /* Copy of argument vector to toplev_main.  */
182 static const char **save_argv;
183
184 /* Name of top-level original source file (what was input to cpp).
185    This comes from the #-command at the beginning of the actual input.
186    If there isn't any there, then this is the cc1 input file name.  */
187
188 const char *main_input_filename;
189
190 /* Current position in real source file.  */
191
192 location_t input_location;
193
194 struct line_maps line_table;
195
196 /* Nonzero if it is unsafe to create any new pseudo registers.  */
197 int no_new_pseudos;
198
199 /* Stack of currently pending input files.  */
200
201 struct file_stack *input_file_stack;
202
203 /* Incremented on each change to input_file_stack.  */
204 int input_file_stack_tick;
205
206 /* Name to use as base of names for dump output files.  */
207
208 const char *dump_base_name;
209
210 /* Name to use as a base for auxiliary output files.  */
211
212 const char *aux_base_name;
213
214 /* Format to use to print dumpfile index value */
215 #ifndef DUMPFILE_FORMAT
216 #define DUMPFILE_FORMAT ".%02d."
217 #endif
218
219 /* Bit flags that specify the machine subtype we are compiling for.
220    Bits are tested using macros TARGET_... defined in the tm.h file
221    and set by `-m...' switches.  Must be defined in rtlanal.c.  */
222
223 extern int target_flags;
224
225 /* A mask of target_flags that includes bit X if X was set or cleared
226    on the command line.  */
227
228 int target_flags_explicit;
229
230 /* Debug hooks - dependent upon command line options.  */
231
232 const struct gcc_debug_hooks *debug_hooks;
233
234 /* Describes a dump file.  */
235
236 struct dump_file_info
237 {
238   /* The unique extension to apply, e.g. ".jump".  */
239   const char *const extension;
240
241   /* The -d<c> character that enables this dump file.  */
242   char const debug_switch;
243
244   /* True if there is a corresponding graph dump file.  */
245   char const graph_dump_p;
246
247   /* True if the user selected this dump.  */
248   char enabled;
249
250   /* True if the files have been initialized (ie truncated).  */
251   char initialized;
252 };
253
254 /* Enumerate the extant dump files.  */
255
256 enum dump_file_index
257 {
258   DFI_cgraph,
259   DFI_rtl,
260   DFI_sibling,
261   DFI_eh,
262   DFI_jump,
263   DFI_null,
264   DFI_cse,
265   DFI_addressof,
266   DFI_gcse,
267   DFI_loop,
268   DFI_bypass,
269   DFI_cfg,
270   DFI_bp,
271   DFI_vpt,
272   DFI_ce1,
273   DFI_tracer,
274   DFI_loop2,
275   DFI_web,
276   DFI_cse2,
277   DFI_life,
278   DFI_combine,
279   DFI_ce2,
280   DFI_regmove,
281   DFI_sched,
282   DFI_lreg,
283   DFI_greg,
284   DFI_postreload,
285   DFI_flow2,
286   DFI_peephole2,
287   DFI_rnreg,
288   DFI_ce3,
289   DFI_bbro,
290   DFI_branch_target_load,
291   DFI_sched2,
292   DFI_stack,
293   DFI_vartrack,
294   DFI_mach,
295   DFI_dbr,
296   DFI_MAX
297 };
298
299 /* Describes all the dump files.  Should be kept in order of the
300    pass and in sync with dump_file_index above.
301
302    Remaining -d letters:
303
304         "   e        m   q         "
305         "         JK   O Q     WXY "
306 */
307
308 static struct dump_file_info dump_file[DFI_MAX] =
309 {
310   { "cgraph",   'U', 0, 0, 0 },
311   { "rtl",      'r', 0, 0, 0 },
312   { "sibling",  'i', 0, 0, 0 },
313   { "eh",       'h', 0, 0, 0 },
314   { "jump",     'j', 0, 0, 0 },
315   { "null",     'u', 0, 0, 0 },
316   { "cse",      's', 0, 0, 0 },
317   { "addressof", 'F', 0, 0, 0 },
318   { "gcse",     'G', 1, 0, 0 },
319   { "loop",     'L', 1, 0, 0 },
320   { "bypass",   'G', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
321   { "cfg",      'f', 1, 0, 0 },
322   { "bp",       'b', 1, 0, 0 },
323   { "vpt",      'V', 1, 0, 0 },
324   { "ce1",      'C', 1, 0, 0 },
325   { "tracer",   'T', 1, 0, 0 },
326   { "loop2",    'L', 1, 0, 0 },
327   { "web",      'Z', 0, 0, 0 },
328   { "cse2",     't', 1, 0, 0 },
329   { "life",     'f', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
330   { "combine",  'c', 1, 0, 0 },
331   { "ce2",      'C', 1, 0, 0 },
332   { "regmove",  'N', 1, 0, 0 },
333   { "sched",    'S', 1, 0, 0 },
334   { "lreg",     'l', 1, 0, 0 },
335   { "greg",     'g', 1, 0, 0 },
336   { "postreload", 'o', 1, 0, 0 },
337   { "flow2",    'w', 1, 0, 0 },
338   { "peephole2", 'z', 1, 0, 0 },
339   { "rnreg",    'n', 1, 0, 0 },
340   { "ce3",      'E', 1, 0, 0 },
341   { "bbro",     'B', 1, 0, 0 },
342   { "btl",      'd', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
343   { "sched2",   'R', 1, 0, 0 },
344   { "stack",    'k', 1, 0, 0 },
345   { "vartrack", 'V', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
346   { "mach",     'M', 1, 0, 0 },
347   { "dbr",      'd', 0, 0, 0 },
348 };
349
350 static int open_dump_file (enum dump_file_index, tree);
351 static void close_dump_file (enum dump_file_index,
352                              void (*) (FILE *, rtx), rtx);
353
354 /* Other flags saying which kinds of debugging dump have been requested.  */
355
356 int rtl_dump_and_exit;
357 int flag_print_asm_name;
358 enum graph_dump_types graph_dump_format;
359
360 /* Name for output file of assembly code, specified with -o.  */
361
362 const char *asm_file_name;
363
364 /* Nonzero means do optimizations.  -O.
365    Particular numeric values stand for particular amounts of optimization;
366    thus, -O2 stores 2 here.  However, the optimizations beyond the basic
367    ones are not controlled directly by this variable.  Instead, they are
368    controlled by individual `flag_...' variables that are defaulted
369    based on this variable.  */
370
371 int optimize = 0;
372
373 /* Nonzero means optimize for size.  -Os.
374    The only valid values are zero and nonzero. When optimize_size is
375    nonzero, optimize defaults to 2, but certain individual code
376    bloating optimizations are disabled.  */
377
378 int optimize_size = 0;
379
380 /* The FUNCTION_DECL for the function currently being compiled,
381    or 0 if between functions.  */
382 tree current_function_decl;
383
384 /* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
385    if none.  */
386 tree current_function_func_begin_label;
387
388 /* Nonzero if doing dwarf2 duplicate elimination.  */
389
390 int flag_eliminate_dwarf2_dups = 0;
391
392 /* Nonzero if doing unused type elimination.  */
393
394 int flag_eliminate_unused_debug_types = 1;
395
396 /* Nonzero means emit debugging information only for symbols which are used.  */
397 int flag_debug_only_used_symbols = 0;
398
399 /* Nonzero if generating code to do profiling.  */
400
401 int profile_flag = 0;
402
403 /* Nonzero if generating code to profile program flow graph arcs.  */
404
405 int profile_arc_flag = 0;
406
407 /* Nonzero if value histograms should be measured.  */
408
409 int flag_profile_values = 0;
410
411 /* Nonzero if value histograms should be used to optimize code.  */
412 int flag_value_profile_transformations = 0;
413
414 /* Nonzero if generating info for gcov to calculate line test coverage.  */
415
416 int flag_test_coverage = 0;
417
418 /* Nonzero indicates that branch taken probabilities should be calculated.  */
419
420 int flag_branch_probabilities = 0;
421
422 /* Nonzero if basic blocks should be reordered.  */
423
424 int flag_reorder_blocks = 0;
425
426 /* Nonzero if functions should be reordered.  */
427
428 int flag_reorder_functions = 0;
429
430 /* Nonzero if registers should be renamed.  */
431
432 int flag_rename_registers = 0;
433 int flag_cprop_registers = 0;
434
435 /* Nonzero for -pedantic switch: warn about anything
436    that standard spec forbids.  */
437
438 int pedantic = 0;
439
440 /* Temporarily suppress certain warnings.
441    This is set while reading code from a system header file.  */
442
443 int in_system_header = 0;
444
445 /* Don't print functions as they are compiled.  -quiet.  */
446
447 int quiet_flag = 0;
448
449 /* Print times taken by the various passes.  -ftime-report.  */
450
451 int time_report = 0;
452
453 /* Print memory still in use at end of compilation (which may have little
454    to do with peak memory consumption).  -fmem-report.  */
455
456 int mem_report = 0;
457
458 /* Nonzero means to collect statistics which might be expensive
459    and to print them when we are done.  */
460 int flag_detailed_statistics = 0;
461
462 /* A random sequence of characters, unless overridden by user.  */
463 const char *flag_random_seed;
464
465 /* A local time stamp derived from the time of compilation. It will be
466    zero if the system cannot provide a time.  It will be -1u, if the
467    user has specified a particular random seed.  */
468 unsigned local_tick;
469
470 /* -f flags.  */
471
472 /* Nonzero means `char' should be signed.  */
473
474 int flag_signed_char;
475
476 /* Nonzero means give an enum type only as many bytes as it needs.  */
477
478 int flag_short_enums;
479
480 /* Nonzero for -fcaller-saves: allocate values in regs that need to
481    be saved across function calls, if that produces overall better code.
482    Optional now, so people can test it.  */
483
484 int flag_caller_saves = 0;
485
486 /* Nonzero if structures and unions should be returned in memory.
487
488    This should only be defined if compatibility with another compiler or
489    with an ABI is needed, because it results in slower code.  */
490
491 #ifndef DEFAULT_PCC_STRUCT_RETURN
492 #define DEFAULT_PCC_STRUCT_RETURN 1
493 #endif
494
495 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
496
497 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
498
499 /* Nonzero for -fforce-mem: load memory value into a register
500    before arithmetic on it.  This makes better cse but slower compilation.  */
501
502 int flag_force_mem = 0;
503
504 /* Nonzero for -fforce-addr: load memory address into a register before
505    reference to memory.  This makes better cse but slower compilation.  */
506
507 int flag_force_addr = 0;
508
509 /* Nonzero for -fdefer-pop: don't pop args after each function call;
510    instead save them up to pop many calls' args with one insns.  */
511
512 int flag_defer_pop = 0;
513
514 /* Nonzero for -ffloat-store: don't allocate floats and doubles
515    in extended-precision registers.  */
516
517 int flag_float_store = 0;
518
519 /* Nonzero for -fcse-follow-jumps:
520    have cse follow jumps to do a more extensive job.  */
521
522 int flag_cse_follow_jumps;
523
524 /* Nonzero for -fcse-skip-blocks:
525    have cse follow a branch around a block.  */
526 int flag_cse_skip_blocks;
527
528 /* Nonzero for -fexpensive-optimizations:
529    perform miscellaneous relatively-expensive optimizations.  */
530 int flag_expensive_optimizations;
531
532 /* Nonzero for -fthread-jumps:
533    have jump optimize output of loop.  */
534
535 int flag_thread_jumps;
536
537 /* Nonzero enables strength-reduction in loop.c.  */
538
539 int flag_strength_reduce = 0;
540
541 /* Nonzero enables loop unrolling in unroll.c.  Only loops for which the
542    number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
543    UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
544    unrolled.  */
545
546 int flag_old_unroll_loops;
547
548 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
549    This is generally not a win.  */
550
551 int flag_old_unroll_all_loops;
552
553 /* Enables unrolling of simple loops in loop-unroll.c.  */
554 int flag_unroll_loops;
555
556 /* Enables unrolling of all loops in loop-unroll.c.  */
557 int flag_unroll_all_loops;
558
559 /* Nonzero enables loop peeling.  */
560 int flag_peel_loops;
561
562 /* Nonzero enables loop unswitching.  */
563 int flag_unswitch_loops;
564
565 /* Nonzero enables prefetch optimizations for arrays in loops.  */
566
567 int flag_prefetch_loop_arrays;
568
569 /* Nonzero forces all invariant computations in loops to be moved
570    outside the loop.  */
571
572 int flag_move_all_movables = 0;
573
574 /* Nonzero forces all general induction variables in loops to be
575    strength reduced.  */
576
577 int flag_reduce_all_givs = 0;
578
579 /* Nonzero to perform full register move optimization passes.  This is the
580    default for -O2.  */
581
582 int flag_regmove = 0;
583
584 /* Nonzero for -fwritable-strings:
585    store string constants in data segment and don't uniquize them.  */
586
587 int flag_writable_strings = 0;
588
589 /* Nonzero means don't put addresses of constant functions in registers.
590    Used for compiling the Unix kernel, where strange substitutions are
591    done on the assembly output.  */
592
593 int flag_no_function_cse = 0;
594
595 /* Nonzero for -fomit-frame-pointer:
596    don't make a frame pointer in simple functions that don't require one.  */
597
598 int flag_omit_frame_pointer = 0;
599
600 /* Nonzero means place each function into its own section on those platforms
601    which support arbitrary section names and unlimited numbers of sections.  */
602
603 int flag_function_sections = 0;
604
605 /* ... and similar for data.  */
606
607 int flag_data_sections = 0;
608
609 /* Nonzero to inhibit use of define_optimization peephole opts.  */
610
611 int flag_no_peephole = 0;
612
613 /* Nonzero allows GCC to optimize sibling and tail recursive calls.  */
614
615 int flag_optimize_sibling_calls = 0;
616
617 /* Nonzero means the front end generally wants `errno' maintained by math
618    operations, like built-in SQRT.  */
619
620 int flag_errno_math = 1;
621
622 /* Nonzero means that unsafe floating-point math optimizations are allowed
623    for the sake of speed.  IEEE compliance is not guaranteed, and operations
624    are allowed to assume that their arguments and results are "normal"
625    (e.g., nonnegative for SQRT).  */
626
627 int flag_unsafe_math_optimizations = 0;
628
629 /* Nonzero means that no NaNs or +-Infs are expected.  */
630
631 int flag_finite_math_only = 0;
632
633 /* Zero means that floating-point math operations cannot generate a
634    (user-visible) trap.  This is the case, for example, in nonstop
635    IEEE 754 arithmetic.  Trapping conditions include division by zero,
636    overflow, underflow, invalid and inexact, but does not include
637    operations on signaling NaNs (see below).  */
638
639 int flag_trapping_math = 1;
640
641 /* Nonzero means disable transformations that assume default floating
642    point rounding behavior.  */
643
644 int flag_rounding_math = 0;
645
646 /* Nonzero means disable transformations observable by signaling NaNs.
647    This option implies that any operation on an IEEE signaling NaN can
648    generate a (user-visible) trap.  */
649
650 int flag_signaling_nans = 0;
651
652 /* 0 means straightforward implementation of complex divide acceptable.
653    1 means wide ranges of inputs must work for complex divide.
654    2 means C99-like requirements for complex divide (not yet implemented).  */
655
656 int flag_complex_divide_method = 0;
657
658 /* Nonzero means just do syntax checking; don't output anything.  */
659
660 int flag_syntax_only = 0;
661
662 /* Nonzero means performs web construction pass.  */
663
664 int flag_web;
665
666 /* Nonzero means perform loop optimizer.  */
667
668 int flag_loop_optimize;
669
670 /* Nonzero means perform crossjumping.  */
671
672 int flag_crossjumping;
673
674 /* Nonzero means perform if conversion.  */
675
676 int flag_if_conversion;
677
678 /* Nonzero means perform if conversion after reload.  */
679
680 int flag_if_conversion2;
681
682 /* Nonzero means to use global dataflow analysis to eliminate
683    useless null pointer tests.  */
684
685 int flag_delete_null_pointer_checks;
686
687 /* Nonzero means perform global CSE.  */
688
689 int flag_gcse = 0;
690
691 /* Nonzero means to do the enhanced load motion during gcse, which trys
692    to hoist loads by not killing them when a store to the same location
693    is seen.  */
694
695 int flag_gcse_lm = 1;
696
697 /* Nonzero means to perform store motion after gcse, which will try to
698    move stores closer to the exit block.  Its not very effective without
699    flag_gcse_lm.  */
700
701 int flag_gcse_sm = 1;
702
703 /* Nonzero if we want to perfrom redundant load after store elimination
704    in gcse.  */
705
706 int flag_gcse_las = 1;
707
708 /* Perform target register optimization before prologue / epilogue
709    threading.  */
710
711 int flag_branch_target_load_optimize = 0;
712
713 /* Perform target register optimization after prologue / epilogue
714    threading and jump2.  */
715
716 int flag_branch_target_load_optimize2 = 0;
717
718 /* For the bt-load pass, nonzero means don't re-use branch target registers
719    in any basic block.  */
720
721 int flag_btr_bb_exclusive;
722
723 /* Nonzero means to rerun cse after loop optimization.  This increases
724    compilation time about 20% and picks up a few more common expressions.  */
725
726 int flag_rerun_cse_after_loop;
727
728 /* Nonzero means to run loop optimizations twice.  */
729
730 int flag_rerun_loop_opt;
731
732 /* Nonzero for -finline-functions: ok to inline functions that look like
733    good inline candidates.  */
734
735 int flag_inline_functions;
736
737 /* Nonzero for -fkeep-inline-functions: even if we make a function
738    go inline everywhere, keep its definition around for debugging
739    purposes.  */
740
741 int flag_keep_inline_functions;
742
743 /* Nonzero means that functions will not be inlined.  */
744
745 int flag_no_inline = 2;
746
747 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
748    not just because the tree inliner turned us off.  */
749
750 int flag_really_no_inline = 2;
751
752 /* Nonzero means that we should emit static const variables
753    regardless of whether or not optimization is turned on.  */
754
755 int flag_keep_static_consts = 1;
756
757 /* Nonzero means we should be saving declaration info into a .X file.  */
758
759 int flag_gen_aux_info = 0;
760
761 /* Specified name of aux-info file.  */
762
763 const char *aux_info_file_name;
764
765 /* Nonzero means make the text shared if supported.  */
766
767 int flag_shared_data;
768
769 /* Nonzero means schedule into delayed branch slots if supported.  */
770
771 int flag_delayed_branch;
772
773 /* Nonzero if we are compiling pure (sharable) code.
774    Value is 1 if we are doing "small" pic; value is 2 if we're doing
775    "large" pic.  */
776
777 int flag_pic;
778
779 /* Nonzero if we are compiling position independent code for executable.
780    The value is 1 if we are doing "small" pic; value is 2 if we're doing
781    "large" pic.  */
782
783 int flag_pie;
784
785 /* Nonzero if we are compiling code for a shared library, zero for
786    executable.  */
787
788 int flag_shlib;
789
790 /* Set to the default thread-local storage (tls) model to use.  */
791
792 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
793
794 /* Nonzero means generate extra code for exception handling and enable
795    exception handling.  */
796
797 int flag_exceptions;
798
799 /* Nonzero means generate frame unwind info table when supported.  */
800
801 int flag_unwind_tables = 0;
802
803 /* Nonzero means generate frame unwind info table exact at each insn
804    boundary.  */
805
806 int flag_asynchronous_unwind_tables = 0;
807
808 /* Nonzero means don't place uninitialized global data in common storage
809    by default.  */
810
811 int flag_no_common;
812
813 /* Nonzero means change certain warnings into errors.
814    Usually these are warnings about failure to conform to some standard.  */
815
816 int flag_pedantic_errors = 0;
817
818 /* flag_schedule_insns means schedule insns within basic blocks (before
819    local_alloc).
820    flag_schedule_insns_after_reload means schedule insns after
821    global_alloc.  */
822
823 int flag_schedule_insns = 0;
824 int flag_schedule_insns_after_reload = 0;
825
826 /* When flag_schedule_insns_after_reload is set, use EBB scheduler.  */
827 int flag_sched2_use_superblocks = 0;
828
829 /* When flag_schedule_insns_after_reload is set, construct traces and EBB
830    scheduler.  */
831 int flag_sched2_use_traces = 0;
832
833 /* The following flags have effect only for scheduling before register
834    allocation:
835
836    flag_schedule_interblock means schedule insns across basic blocks.
837    flag_schedule_speculative means allow speculative motion of non-load insns.
838    flag_schedule_speculative_load means allow speculative motion of some
839    load insns.
840    flag_schedule_speculative_load_dangerous allows speculative motion of more
841    load insns.  */
842
843 int flag_schedule_interblock = 1;
844 int flag_schedule_speculative = 1;
845 int flag_schedule_speculative_load = 0;
846 int flag_schedule_speculative_load_dangerous = 0;
847
848 /* The following flags have an effect during scheduling after register
849    allocation:
850
851    flag_sched_stalled_insns means that insns can be moved prematurely from the queue
852    of stalled insns into the ready list.
853
854    flag_sched_stalled_insns_dep controls how many insn groups will be examined
855    for a dependency on a stalled insn that is candidate for premature removal
856    from the queue of stalled insns into the ready list (has an effect only if
857    the flag 'sched_stalled_insns' is set).  */
858
859 int flag_sched_stalled_insns = 0;
860 int flag_sched_stalled_insns_dep = 1;
861
862 int flag_single_precision_constant;
863
864 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple
865    by a cheaper branch on a count register.  */
866 int flag_branch_on_count_reg = 1;
867
868 /* -finhibit-size-directive inhibits output of .size for ELF.
869    This is used only for compiling crtstuff.c,
870    and it may be extended to other effects
871    needed for crtstuff.c on other systems.  */
872 int flag_inhibit_size_directive = 0;
873
874 /* -fverbose-asm causes extra commentary information to be produced in
875    the generated assembly code (to make it more readable).  This option
876    is generally only of use to those who actually need to read the
877    generated assembly code (perhaps while debugging the compiler itself).
878    -fno-verbose-asm, the default, causes the extra information
879    to be omitted and is useful when comparing two assembler files.  */
880
881 int flag_verbose_asm = 0;
882
883 /* -dA causes debug commentary information to be produced in
884    the generated assembly code (to make it more readable).  This option
885    is generally only of use to those who actually need to read the
886    generated assembly code (perhaps while debugging the compiler itself).
887    Currently, this switch is only used by dwarfout.c; however, it is intended
888    to be a catchall for printing debug information in the assembler file.  */
889
890 int flag_debug_asm = 0;
891
892 /* -dP causes the rtl to be emitted as a comment in assembly.  */
893
894 int flag_dump_rtl_in_asm = 0;
895
896 /* Nonzero means put zero initialized data in the bss section.  */
897 int flag_zero_initialized_in_bss = 1;
898
899 /* Tag all structures with __attribute__(packed).  */
900 int flag_pack_struct = 0;
901
902 /* Emit code to check for stack overflow; also may cause large objects
903    to be allocated dynamically.  */
904 int flag_stack_check;
905
906 /* When non-NULL, indicates that whenever space is allocated on the
907    stack, the resulting stack pointer must not pass this
908    address---that is, for stacks that grow downward, the stack pointer
909    must always be greater than or equal to this address; for stacks
910    that grow upward, the stack pointer must be less than this address.
911    At present, the rtx may be either a REG or a SYMBOL_REF, although
912    the support provided depends on the backend.  */
913 rtx stack_limit_rtx;
914
915 /* 0 if pointer arguments may alias each other.  True in C.
916    1 if pointer arguments may not alias each other but may alias
917    global variables.
918    2 if pointer arguments may not alias each other and may not
919    alias global variables.  True in Fortran.
920    This defaults to 0 for C.  */
921 int flag_argument_noalias = 0;
922
923 /* Nonzero if we should do (language-dependent) alias analysis.
924    Typically, this analysis will assume that expressions of certain
925    types do not alias expressions of certain other types.  Only used
926    if alias analysis (in general) is enabled.  */
927 int flag_strict_aliasing = 0;
928
929 /* Instrument functions with calls at entry and exit, for profiling.  */
930 int flag_instrument_function_entry_exit = 0;
931
932 /* Nonzero means ignore `#ident' directives.  0 means handle them.
933    On SVR4 targets, it also controls whether or not to emit a
934    string identifying the compiler.  */
935
936 int flag_no_ident = 0;
937
938 /* This will perform a peephole pass before sched2.  */
939 int flag_peephole2 = 0;
940
941 /* This will try to guess branch probabilities.  */
942 int flag_guess_branch_prob = 0;
943
944 /* -fcheck-bounds causes gcc to generate array bounds checks.
945    For C, C++, ObjC: defaults to off.
946    For Java: defaults to on.
947    For Fortran: defaults to off.  */
948 int flag_bounds_check = 0;
949
950 /* This will attempt to merge constant section constants, if 1 only
951    string constants and constants from constant pool, if 2 also constant
952    variables.  */
953 int flag_merge_constants = 1;
954
955 /* If one, renumber instruction UIDs to reduce the number of
956    unused UIDs if there are a lot of instructions.  If greater than
957    one, unconditionally renumber instruction UIDs.  */
958 int flag_renumber_insns = 1;
959
960 /* If nonzero, use the graph coloring register allocator.  */
961 int flag_new_regalloc = 0;
962
963 /* Nonzero if we perform superblock formation.  */
964
965 int flag_tracer = 0;
966
967 /* Nonzero if we perform whole unit at a time compilation.  */
968
969 int flag_unit_at_a_time = 0;
970
971 /* Nonzero if we should track variables.  When
972    flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
973    to optimize, debug_info_level and debug_hooks in process_options ().  */
974  
975 #define AUTODETECT_FLAG_VAR_TRACKING 2
976 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
977
978 /* Values of the -falign-* flags: how much to align labels in code.
979    0 means `use default', 1 means `don't align'.
980    For each variable, there is an _log variant which is the power
981    of two not less than the variable, for .align output.  */
982
983 int align_loops;
984 int align_loops_log;
985 int align_loops_max_skip;
986 int align_jumps;
987 int align_jumps_log;
988 int align_jumps_max_skip;
989 int align_labels;
990 int align_labels_log;
991 int align_labels_max_skip;
992 int align_functions;
993 int align_functions_log;
994
995 /* Like align_functions_log above, but used by front-ends to force the
996    minimum function alignment.  Zero means no alignment is forced.  */
997 int force_align_functions_log;
998
999 typedef struct
1000 {
1001   const char *const string;
1002   int *const variable;
1003   const int on_value;
1004 }
1005 lang_independent_options;
1006
1007 /* Nonzero if signed arithmetic overflow should trap.  */
1008 int flag_trapv = 0;
1009
1010 /* Nonzero if signed arithmetic overflow should wrap around.  */
1011 int flag_wrapv = 0;
1012
1013 /* Nonzero if subexpressions must be evaluated from left-to-right.  */
1014 int flag_evaluation_order = 0;
1015
1016 /* Add or remove a leading underscore from user symbols.  */
1017 int flag_leading_underscore = -1;
1018
1019 /* The user symbol prefix after having resolved same.  */
1020 const char *user_label_prefix;
1021
1022 static const param_info lang_independent_params[] = {
1023 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
1024   { OPTION, DEFAULT, HELP },
1025 #include "params.def"
1026 #undef DEFPARAM
1027   { NULL, 0, NULL }
1028 };
1029
1030 /* Table of language-independent -f options.
1031    STRING is the option name.  VARIABLE is the address of the variable.
1032    ON_VALUE is the value to store in VARIABLE
1033     if `-fSTRING' is seen as an option.
1034    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
1035
1036 static const lang_independent_options f_options[] =
1037 {
1038   {"eliminate-dwarf2-dups", &flag_eliminate_dwarf2_dups, 1 },
1039   {"eliminate-unused-debug-symbols", &flag_debug_only_used_symbols, 1 },
1040   {"eliminate-unused-debug-types", &flag_eliminate_unused_debug_types, 1 },
1041   {"float-store", &flag_float_store, 1 },
1042   {"defer-pop", &flag_defer_pop, 1 },
1043   {"omit-frame-pointer", &flag_omit_frame_pointer, 1 },
1044   {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1 },
1045   {"tracer", &flag_tracer, 1 },
1046   {"unit-at-a-time", &flag_unit_at_a_time, 1 },
1047   {"cse-follow-jumps", &flag_cse_follow_jumps, 1 },
1048   {"cse-skip-blocks", &flag_cse_skip_blocks, 1 },
1049   {"expensive-optimizations", &flag_expensive_optimizations, 1 },
1050   {"thread-jumps", &flag_thread_jumps, 1 },
1051   {"strength-reduce", &flag_strength_reduce, 1 },
1052   {"unroll-loops", &flag_unroll_loops, 1 },
1053   {"unroll-all-loops", &flag_unroll_all_loops, 1 },
1054   {"old-unroll-loops", &flag_old_unroll_loops, 1 },
1055   {"old-unroll-all-loops", &flag_old_unroll_all_loops, 1 },
1056   {"peel-loops", &flag_peel_loops, 1 },
1057   {"unswitch-loops", &flag_unswitch_loops, 1 },
1058   {"prefetch-loop-arrays", &flag_prefetch_loop_arrays, 1 },
1059   {"move-all-movables", &flag_move_all_movables, 1 },
1060   {"reduce-all-givs", &flag_reduce_all_givs, 1 },
1061   {"writable-strings", &flag_writable_strings, 1 },
1062   {"peephole", &flag_no_peephole, 0 },
1063   {"force-mem", &flag_force_mem, 1 },
1064   {"force-addr", &flag_force_addr, 1 },
1065   {"function-cse", &flag_no_function_cse, 0 },
1066   {"inline-functions", &flag_inline_functions, 1 },
1067   {"keep-inline-functions", &flag_keep_inline_functions, 1 },
1068   {"inline", &flag_no_inline, 0 },
1069   {"keep-static-consts", &flag_keep_static_consts, 1 },
1070   {"syntax-only", &flag_syntax_only, 1 },
1071   {"shared-data", &flag_shared_data, 1 },
1072   {"caller-saves", &flag_caller_saves, 1 },
1073   {"pcc-struct-return", &flag_pcc_struct_return, 1 },
1074   {"reg-struct-return", &flag_pcc_struct_return, 0 },
1075   {"delayed-branch", &flag_delayed_branch, 1 },
1076   {"web", &flag_web, 1},
1077   {"gcse", &flag_gcse, 1 },
1078   {"gcse-lm", &flag_gcse_lm, 1 },
1079   {"gcse-sm", &flag_gcse_sm, 1 },
1080   {"gcse-las", &flag_gcse_las, 1 },
1081   {"branch-target-load-optimize", &flag_branch_target_load_optimize, 1 },
1082   {"branch-target-load-optimize2", &flag_branch_target_load_optimize2, 1 },
1083   {"btr-bb-exclusive", &flag_btr_bb_exclusive, 1 },
1084   {"loop-optimize", &flag_loop_optimize, 1 },
1085   {"crossjumping", &flag_crossjumping, 1 },
1086   {"if-conversion", &flag_if_conversion, 1 },
1087   {"if-conversion2", &flag_if_conversion2, 1 },
1088   {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1 },
1089   {"rerun-loop-opt", &flag_rerun_loop_opt, 1 },
1090   {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1 },
1091   {"schedule-insns", &flag_schedule_insns, 1 },
1092   {"schedule-insns2", &flag_schedule_insns_after_reload, 1 },
1093   {"sched-interblock",&flag_schedule_interblock, 1 },
1094   {"sched-spec",&flag_schedule_speculative, 1 },
1095   {"sched-spec-load",&flag_schedule_speculative_load, 1 },
1096   {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1 },
1097   {"sched-stalled-insns", &flag_sched_stalled_insns, 0 },
1098   {"sched-stalled-insns-dep", &flag_sched_stalled_insns_dep, 1 },
1099   {"sched2-use-superblocks", &flag_sched2_use_superblocks, 1 },
1100   {"sched2-use-traces", &flag_sched2_use_traces, 1 },
1101   {"branch-count-reg",&flag_branch_on_count_reg, 1 },
1102   {"pic", &flag_pic, 1 },
1103   {"PIC", &flag_pic, 2 },
1104   {"pie", &flag_pie, 1 },
1105   {"PIE", &flag_pie, 2 },
1106   {"exceptions", &flag_exceptions, 1 },
1107   {"unwind-tables", &flag_unwind_tables, 1 },
1108   {"asynchronous-unwind-tables", &flag_asynchronous_unwind_tables, 1 },
1109   {"non-call-exceptions", &flag_non_call_exceptions, 1 },
1110   {"profile-arcs", &profile_arc_flag, 1 },
1111   {"profile-values", &flag_profile_values, 1 },
1112   {"vpt", &flag_value_profile_transformations, 1 },
1113   {"test-coverage", &flag_test_coverage, 1 },
1114   {"branch-probabilities", &flag_branch_probabilities, 1 },
1115   {"profile", &profile_flag, 1 },
1116   {"reorder-blocks", &flag_reorder_blocks, 1 },
1117   {"reorder-functions", &flag_reorder_functions, 1 },
1118   {"rename-registers", &flag_rename_registers, 1 },
1119   {"cprop-registers", &flag_cprop_registers, 1 },
1120   {"common", &flag_no_common, 0 },
1121   {"inhibit-size-directive", &flag_inhibit_size_directive, 1 },
1122   {"function-sections", &flag_function_sections, 1 },
1123   {"data-sections", &flag_data_sections, 1 },
1124   {"verbose-asm", &flag_verbose_asm, 1 },
1125   {"regmove", &flag_regmove, 1 },
1126   {"optimize-register-move", &flag_regmove, 1 },
1127   {"pack-struct", &flag_pack_struct, 1 },
1128   {"stack-check", &flag_stack_check, 1 },
1129   {"argument-alias", &flag_argument_noalias, 0 },
1130   {"argument-noalias", &flag_argument_noalias, 1 },
1131   {"argument-noalias-global", &flag_argument_noalias, 2 },
1132   {"strict-aliasing", &flag_strict_aliasing, 1 },
1133   {"align-loops", &align_loops, 0 },
1134   {"align-jumps", &align_jumps, 0 },
1135   {"align-labels", &align_labels, 0 },
1136   {"align-functions", &align_functions, 0 },
1137   {"merge-constants", &flag_merge_constants, 1 },
1138   {"merge-all-constants", &flag_merge_constants, 2 },
1139   {"dump-unnumbered", &flag_dump_unnumbered, 1 },
1140   {"instrument-functions", &flag_instrument_function_entry_exit, 1 },
1141   {"zero-initialized-in-bss", &flag_zero_initialized_in_bss, 1 },
1142   {"leading-underscore", &flag_leading_underscore, 1 },
1143   {"ident", &flag_no_ident, 0 },
1144   { "peephole2", &flag_peephole2, 1 },
1145   {"finite-math-only", &flag_finite_math_only, 1 },
1146   { "guess-branch-probability", &flag_guess_branch_prob, 1 },
1147   {"math-errno", &flag_errno_math, 1 },
1148   {"trapping-math", &flag_trapping_math, 1 },
1149   {"rounding-math", &flag_rounding_math, 1 },
1150   {"unsafe-math-optimizations", &flag_unsafe_math_optimizations, 1 },
1151   {"signaling-nans", &flag_signaling_nans, 1 },
1152   {"bounds-check", &flag_bounds_check, 1 },
1153   {"single-precision-constant", &flag_single_precision_constant, 1 },
1154   {"time-report", &time_report, 1 },
1155   {"mem-report", &mem_report, 1 },
1156   { "trapv", &flag_trapv, 1 },
1157   { "wrapv", &flag_wrapv, 1 },
1158   { "new-ra", &flag_new_regalloc, 1 },
1159   { "var-tracking", &flag_var_tracking, 1}
1160 };
1161
1162 /* Here is a table, controlled by the tm.h file, listing each -m switch
1163    and which bits in `target_switches' it should set or clear.
1164    If VALUE is positive, it is bits to set.
1165    If VALUE is negative, -VALUE is bits to clear.
1166    (The sign bit is not used so there is no confusion.)  */
1167
1168 static const struct
1169 {
1170   const char *const name;
1171   const int value;
1172   const char *const description;
1173 }
1174 target_switches[] = TARGET_SWITCHES;
1175
1176 /* This table is similar, but allows the switch to have a value.  */
1177
1178 #ifdef TARGET_OPTIONS
1179 static const struct
1180 {
1181   const char *const prefix;
1182   const char **const variable;
1183   const char *const description;
1184   const char *const value;
1185 }
1186 target_options[] = TARGET_OPTIONS;
1187 #endif
1188
1189 /* Nonzero means warn about function definitions that default the return type
1190    or that use a null return and have a return-type other than void.  */
1191
1192 int warn_return_type;
1193
1194 /* Output files for assembler code (real compiler output)
1195    and debugging dumps.  */
1196
1197 FILE *asm_out_file;
1198 FILE *aux_info_file;
1199 FILE *rtl_dump_file = NULL;
1200 FILE *cgraph_dump_file = NULL;
1201
1202 /* The current working directory of a translation.  It's generally the
1203    directory from which compilation was initiated, but a preprocessed
1204    file may specify the original directory in which it was
1205    created.  */
1206
1207 static const char *src_pwd;
1208
1209 /* Initialize src_pwd with the given string, and return true.  If it
1210    was already initialized, return false.  As a special case, it may
1211    be called with a NULL argument to test whether src_pwd has NOT been
1212    initialized yet.  */
1213
1214 bool
1215 set_src_pwd (const char *pwd)
1216 {
1217   if (src_pwd)
1218     return false;
1219
1220   src_pwd = xstrdup (pwd);
1221   return true;
1222 }
1223
1224 /* Return the directory from which the translation unit was initiated,
1225    in case set_src_pwd() was not called before to assign it a
1226    different value.  */
1227
1228 const char *
1229 get_src_pwd (void)
1230 {
1231   if (! src_pwd)
1232     src_pwd = getpwd ();
1233
1234    return src_pwd;
1235 }
1236
1237 /* Called when the start of a function definition is parsed,
1238    this function prints on stderr the name of the function.  */
1239 void
1240 announce_function (tree decl)
1241 {
1242   if (!quiet_flag)
1243     {
1244       if (rtl_dump_and_exit)
1245         verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
1246       else
1247         verbatim (" %s", (*lang_hooks.decl_printable_name) (decl, 2));
1248       fflush (stderr);
1249       pp_needs_newline (global_dc->printer) = true;
1250       diagnostic_set_last_function (global_dc);
1251     }
1252 }
1253
1254 /* Set up a default flag_random_seed and local_tick, unless the user
1255    already specified one.  */
1256
1257 static void
1258 randomize (void)
1259 {
1260   if (!flag_random_seed)
1261     {
1262       unsigned HOST_WIDE_INT value;
1263       static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
1264
1265       /* Get some more or less random data.  */
1266 #ifdef HAVE_GETTIMEOFDAY
1267       {
1268         struct timeval tv;
1269
1270         gettimeofday (&tv, NULL);
1271         local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
1272       }
1273 #else
1274       {
1275         time_t now = time (NULL);
1276
1277         if (now != (time_t)-1)
1278           local_tick = (unsigned) now;
1279       }
1280 #endif
1281       value = local_tick ^ getpid ();
1282
1283       sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
1284       flag_random_seed = random_seed;
1285     }
1286   else if (!local_tick)
1287     local_tick = -1;
1288 }
1289
1290
1291 /* Decode the string P as an integral parameter.
1292    If the string is indeed an integer return its numeric value else
1293    issue an Invalid Option error for the option PNAME and return DEFVAL.
1294    If PNAME is zero just return DEFVAL, do not call error.  */
1295
1296 int
1297 read_integral_parameter (const char *p, const char *pname, const int  defval)
1298 {
1299   const char *endp = p;
1300
1301   while (*endp)
1302     {
1303       if (ISDIGIT (*endp))
1304         endp++;
1305       else
1306         break;
1307     }
1308
1309   if (*endp != 0)
1310     {
1311       if (pname != 0)
1312         error ("invalid option argument `%s'", pname);
1313       return defval;
1314     }
1315
1316   return atoi (p);
1317 }
1318
1319 /* Return the logarithm of X, base 2, considering X unsigned,
1320    if X is a power of 2.  Otherwise, returns -1.
1321
1322    This should be used via the `exact_log2' macro.  */
1323
1324 int
1325 exact_log2_wide (unsigned HOST_WIDE_INT x)
1326 {
1327   int log = 0;
1328   /* Test for 0 or a power of 2.  */
1329   if (x == 0 || x != (x & -x))
1330     return -1;
1331   while ((x >>= 1) != 0)
1332     log++;
1333   return log;
1334 }
1335
1336 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
1337    If X is 0, return -1.
1338
1339    This should be used via the floor_log2 macro.  */
1340
1341 int
1342 floor_log2_wide (unsigned HOST_WIDE_INT x)
1343 {
1344   int log = -1;
1345   while (x != 0)
1346     log++,
1347     x >>= 1;
1348   return log;
1349 }
1350
1351 /* Handler for fatal signals, such as SIGSEGV.  These are transformed
1352    into ICE messages, which is much more user friendly.  In case the
1353    error printer crashes, reset the signal to prevent infinite recursion.  */
1354
1355 static void
1356 crash_signal (int signo)
1357 {
1358   signal (signo, SIG_DFL);
1359   internal_error ("%s", strsignal (signo));
1360 }
1361
1362 /* Arrange to dump core on error.  (The regular error message is still
1363    printed first, except in the case of abort().)  */
1364
1365 static void
1366 setup_core_dumping (void)
1367 {
1368 #ifdef SIGABRT
1369   signal (SIGABRT, SIG_DFL);
1370 #endif
1371 #if defined(HAVE_SETRLIMIT)
1372   {
1373     struct rlimit rlim;
1374     if (getrlimit (RLIMIT_CORE, &rlim) != 0)
1375       fatal_error ("getting core file size maximum limit: %m");
1376     rlim.rlim_cur = rlim.rlim_max;
1377     if (setrlimit (RLIMIT_CORE, &rlim) != 0)
1378       fatal_error ("setting core file size limit to maximum: %m");
1379   }
1380 #endif
1381   diagnostic_abort_on_error (global_dc);
1382 }
1383
1384
1385 /* Strip off a legitimate source ending from the input string NAME of
1386    length LEN.  Rather than having to know the names used by all of
1387    our front ends, we strip off an ending of a period followed by
1388    up to five characters.  (Java uses ".class".)  */
1389
1390 void
1391 strip_off_ending (char *name, int len)
1392 {
1393   int i;
1394   for (i = 2; i < 6 && len > i; i++)
1395     {
1396       if (name[len - i] == '.')
1397         {
1398           name[len - i] = '\0';
1399           break;
1400         }
1401     }
1402 }
1403
1404 /* Output a quoted string.  */
1405
1406 void
1407 output_quoted_string (FILE *asm_file, const char *string)
1408 {
1409 #ifdef OUTPUT_QUOTED_STRING
1410   OUTPUT_QUOTED_STRING (asm_file, string);
1411 #else
1412   char c;
1413
1414   putc ('\"', asm_file);
1415   while ((c = *string++) != 0)
1416     {
1417       if (ISPRINT (c))
1418         {
1419           if (c == '\"' || c == '\\')
1420             putc ('\\', asm_file);
1421           putc (c, asm_file);
1422         }
1423       else
1424         fprintf (asm_file, "\\%03o", (unsigned char) c);
1425     }
1426   putc ('\"', asm_file);
1427 #endif
1428 }
1429
1430 /* Output a file name in the form wanted by System V.  */
1431
1432 void
1433 output_file_directive (FILE *asm_file, const char *input_name)
1434 {
1435   int len;
1436   const char *na;
1437
1438   if (input_name == NULL)
1439     input_name = "<stdin>";
1440
1441   len = strlen (input_name);
1442   na = input_name + len;
1443
1444   /* NA gets INPUT_NAME sans directory names.  */
1445   while (na > input_name)
1446     {
1447       if (IS_DIR_SEPARATOR (na[-1]))
1448         break;
1449       na--;
1450     }
1451
1452 #ifdef ASM_OUTPUT_SOURCE_FILENAME
1453   ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1454 #else
1455   fprintf (asm_file, "\t.file\t");
1456   output_quoted_string (asm_file, na);
1457   fputc ('\n', asm_file);
1458 #endif
1459 }
1460
1461 /* Routine to open a dump file.  Return true if the dump file is enabled.  */
1462
1463 static int
1464 open_dump_file (enum dump_file_index index, tree decl)
1465 {
1466   char *dump_name;
1467   const char *open_arg;
1468   char seq[16];
1469
1470   if (! dump_file[index].enabled)
1471     return 0;
1472
1473   timevar_push (TV_DUMP);
1474   if (rtl_dump_file != NULL)
1475     fclose (rtl_dump_file);
1476
1477   sprintf (seq, DUMPFILE_FORMAT, index);
1478
1479   if (! dump_file[index].initialized)
1480     {
1481       /* If we've not initialized the files, do so now.  */
1482       if (graph_dump_format != no_graph
1483           && dump_file[index].graph_dump_p)
1484         {
1485           dump_name = concat (seq, dump_file[index].extension, NULL);
1486           clean_graph_dump_file (dump_base_name, dump_name);
1487           free (dump_name);
1488         }
1489       dump_file[index].initialized = 1;
1490       open_arg = "w";
1491     }
1492   else
1493     open_arg = "a";
1494
1495   dump_name = concat (dump_base_name, seq,
1496                       dump_file[index].extension, NULL);
1497
1498   rtl_dump_file = fopen (dump_name, open_arg);
1499   if (rtl_dump_file == NULL)
1500     fatal_error ("can't open %s: %m", dump_name);
1501
1502   free (dump_name);
1503
1504   if (decl)
1505     fprintf (rtl_dump_file, "\n;; Function %s%s\n\n",
1506              (*lang_hooks.decl_printable_name) (decl, 2),
1507              cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1508              ? " (hot)"
1509              : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1510              ? " (unlikely executed)"
1511              : "");
1512
1513   timevar_pop (TV_DUMP);
1514   return 1;
1515 }
1516
1517 /* Routine to close a dump file.  */
1518
1519 static void
1520 close_dump_file (enum dump_file_index index,
1521                  void (*func) (FILE *, rtx),
1522                  rtx insns)
1523 {
1524   if (! rtl_dump_file)
1525     return;
1526
1527   timevar_push (TV_DUMP);
1528   if (insns
1529       && graph_dump_format != no_graph
1530       && dump_file[index].graph_dump_p)
1531     {
1532       char seq[16];
1533       char *suffix;
1534
1535       sprintf (seq, DUMPFILE_FORMAT, index);
1536       suffix = concat (seq, dump_file[index].extension, NULL);
1537       print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1538       free (suffix);
1539     }
1540
1541   if (func && insns)
1542     func (rtl_dump_file, insns);
1543
1544   fflush (rtl_dump_file);
1545   fclose (rtl_dump_file);
1546
1547   rtl_dump_file = NULL;
1548   timevar_pop (TV_DUMP);
1549 }
1550
1551 /* Do any final processing required for the declarations in VEC, of
1552    which there are LEN.  We write out inline functions and variables
1553    that have been deferred until this point, but which are required.
1554    Returns nonzero if anything was put out.  */
1555
1556 int
1557 wrapup_global_declarations (tree *vec, int len)
1558 {
1559   tree decl;
1560   int i;
1561   int reconsider;
1562   int output_something = 0;
1563
1564   for (i = 0; i < len; i++)
1565     {
1566       decl = vec[i];
1567
1568       /* We're not deferring this any longer.  Assignment is
1569          conditional to avoid needlessly dirtying PCH pages.  */
1570       if (DECL_DEFER_OUTPUT (decl) != 0)
1571         DECL_DEFER_OUTPUT (decl) = 0;
1572
1573       if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
1574         (*lang_hooks.finish_incomplete_decl) (decl);
1575     }
1576
1577   /* Now emit any global variables or functions that we have been
1578      putting off.  We need to loop in case one of the things emitted
1579      here references another one which comes earlier in the list.  */
1580   do
1581     {
1582       reconsider = 0;
1583       for (i = 0; i < len; i++)
1584         {
1585           decl = vec[i];
1586
1587           if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1588             continue;
1589
1590           /* Don't write out static consts, unless we still need them.
1591
1592              We also keep static consts if not optimizing (for debugging),
1593              unless the user specified -fno-keep-static-consts.
1594              ??? They might be better written into the debug information.
1595              This is possible when using DWARF.
1596
1597              A language processor that wants static constants to be always
1598              written out (even if it is not used) is responsible for
1599              calling rest_of_decl_compilation itself.  E.g. the C front-end
1600              calls rest_of_decl_compilation from finish_decl.
1601              One motivation for this is that is conventional in some
1602              environments to write things like:
1603              static const char rcsid[] = "... version string ...";
1604              intending to force the string to be in the executable.
1605
1606              A language processor that would prefer to have unneeded
1607              static constants "optimized away" would just defer writing
1608              them out until here.  E.g. C++ does this, because static
1609              constants are often defined in header files.
1610
1611              ??? A tempting alternative (for both C and C++) would be
1612              to force a constant to be written if and only if it is
1613              defined in a main file, as opposed to an include file.  */
1614
1615           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
1616             {
1617               bool needed = 1;
1618
1619               if (flag_unit_at_a_time
1620                   && cgraph_varpool_node (decl)->finalized)
1621                 needed = 0;
1622               else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
1623                        && (TREE_USED (decl)
1624                            || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
1625                 /* needed */;
1626               else if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1627                 /* needed */;
1628               else if (DECL_COMDAT (decl))
1629                 needed = 0;
1630               else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
1631                        && (optimize || !flag_keep_static_consts
1632                            || DECL_ARTIFICIAL (decl)))
1633                 needed = 0;
1634
1635               if (needed)
1636                 {
1637                   reconsider = 1;
1638                   rest_of_decl_compilation (decl, NULL, 1, 1);
1639                 }
1640             }
1641
1642           if (TREE_CODE (decl) == FUNCTION_DECL
1643               && DECL_INITIAL (decl) != 0
1644               && DECL_SAVED_INSNS (decl) != 0
1645               && DECL_SAVED_INSNS (decl)->saved_for_inline
1646               && (flag_keep_inline_functions
1647                   || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1648                   || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1649             {
1650               reconsider = 1;
1651               output_inline_function (decl);
1652             }
1653         }
1654
1655       if (reconsider)
1656         output_something = 1;
1657     }
1658   while (reconsider);
1659
1660   return output_something;
1661 }
1662
1663 /* Issue appropriate warnings for the global declarations in VEC (of
1664    which there are LEN).  Output debugging information for them.  */
1665
1666 void
1667 check_global_declarations (tree *vec, int len)
1668 {
1669   tree decl;
1670   int i;
1671
1672   for (i = 0; i < len; i++)
1673     {
1674       decl = vec[i];
1675
1676       if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1677           && ! TREE_ASM_WRITTEN (decl))
1678         /* Cancel the RTL for this decl so that, if debugging info
1679            output for global variables is still to come,
1680            this one will be omitted.  */
1681         SET_DECL_RTL (decl, NULL_RTX);
1682
1683       /* Warn about any function
1684          declared static but not defined.
1685          We don't warn about variables,
1686          because many programs have static variables
1687          that exist only to get some text into the object file.  */
1688       if (TREE_CODE (decl) == FUNCTION_DECL
1689           && (warn_unused_function
1690               || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1691           && DECL_INITIAL (decl) == 0
1692           && DECL_EXTERNAL (decl)
1693           && ! DECL_ARTIFICIAL (decl)
1694           && ! TREE_PUBLIC (decl))
1695         {
1696           if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1697             pedwarn ("%J'%F' used but never defined", decl, decl);
1698           else
1699             warning ("%J'%F' declared `static' but never defined", decl, decl);
1700           /* This symbol is effectively an "extern" declaration now.  */
1701           TREE_PUBLIC (decl) = 1;
1702           assemble_external (decl);
1703         }
1704
1705       /* Warn about static fns or vars defined but not used.  */
1706       if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
1707            /* We don't warn about "static const" variables because the
1708               "rcs_id" idiom uses that construction.  */
1709            || (warn_unused_variable
1710                && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
1711           && ! DECL_IN_SYSTEM_HEADER (decl)
1712           && ! TREE_USED (decl)
1713           /* The TREE_USED bit for file-scope decls is kept in the identifier,
1714              to handle multiple external decls in different scopes.  */
1715           && ! TREE_USED (DECL_NAME (decl))
1716           && ! DECL_EXTERNAL (decl)
1717           && ! TREE_PUBLIC (decl)
1718           /* A volatile variable might be used in some non-obvious way.  */
1719           && ! TREE_THIS_VOLATILE (decl)
1720           /* Global register variables must be declared to reserve them.  */
1721           && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
1722           /* Otherwise, ask the language.  */
1723           && (*lang_hooks.decls.warn_unused_global) (decl))
1724         warning ("%J'%D' defined but not used", decl, decl);
1725
1726       /* Avoid confusing the debug information machinery when there are
1727          errors.  */
1728       if (errorcount == 0 && sorrycount == 0)
1729         {
1730           timevar_push (TV_SYMOUT);
1731           (*debug_hooks->global_decl) (decl);
1732           timevar_pop (TV_SYMOUT);
1733         }
1734     }
1735 }
1736
1737 /* Warn about a use of an identifier which was marked deprecated.  */
1738 void
1739 warn_deprecated_use (tree node)
1740 {
1741   if (node == 0 || !warn_deprecated_decl)
1742     return;
1743
1744   if (DECL_P (node))
1745     warning ("`%s' is deprecated (declared at %s:%d)",
1746              IDENTIFIER_POINTER (DECL_NAME (node)),
1747              DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
1748   else if (TYPE_P (node))
1749     {
1750       const char *what = NULL;
1751       tree decl = TYPE_STUB_DECL (node);
1752
1753       if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
1754         what = IDENTIFIER_POINTER (TYPE_NAME (node));
1755       else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
1756                && DECL_NAME (TYPE_NAME (node)))
1757         what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
1758
1759       if (what)
1760         {
1761           if (decl)
1762             warning ("`%s' is deprecated (declared at %s:%d)", what,
1763                      DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1764           else
1765             warning ("`%s' is deprecated", what);
1766         }
1767       else if (decl)
1768         warning ("type is deprecated (declared at %s:%d)",
1769                  DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
1770       else
1771         warning ("type is deprecated");
1772     }
1773 }
1774
1775 /* Save the current INPUT_LOCATION on the top entry in the
1776    INPUT_FILE_STACK.  Push a new entry for FILE and LINE, and set the
1777    INPUT_LOCATION accordingly.  */
1778
1779 void
1780 push_srcloc (const char *file, int line)
1781 {
1782   struct file_stack *fs;
1783
1784   fs = xmalloc (sizeof (struct file_stack));
1785   fs->location = input_location;
1786   fs->next = input_file_stack;
1787   input_filename = file;
1788   input_line = line;
1789   input_file_stack = fs;
1790   input_file_stack_tick++;
1791 }
1792
1793 /* Pop the top entry off the stack of presently open source files.
1794    Restore the INPUT_LOCATION from the new topmost entry on the
1795    stack.  */
1796
1797 void
1798 pop_srcloc (void)
1799 {
1800   struct file_stack *fs;
1801
1802   fs = input_file_stack;
1803   input_location = fs->location;
1804   input_file_stack = fs->next;
1805   free (fs);
1806   input_file_stack_tick++;
1807 }
1808
1809 /* Compile an entire translation unit.  Write a file of assembly
1810    output and various debugging dumps.  */
1811
1812 static void
1813 compile_file (void)
1814 {
1815   /* Initialize yet another pass.  */
1816
1817   init_final (main_input_filename);
1818   coverage_init (aux_base_name);
1819
1820   timevar_push (TV_PARSE);
1821
1822   /* Call the parser, which parses the entire file (calling
1823      rest_of_compilation for each function).  */
1824   (*lang_hooks.parse_file) (set_yydebug);
1825
1826   /* In case there were missing block closers,
1827      get us back to the global binding level.  */
1828   (*lang_hooks.clear_binding_stack) ();
1829
1830   /* Compilation is now finished except for writing
1831      what's left of the symbol table output.  */
1832   timevar_pop (TV_PARSE);
1833
1834   if (flag_syntax_only)
1835     return;
1836
1837   (*lang_hooks.decls.final_write_globals)();
1838
1839   cgraph_varpool_assemble_pending_decls ();
1840
1841   /* This must occur after the loop to output deferred functions.
1842      Else the coverage initializer would not be emitted if all the
1843      functions in this compilation unit were deferred.  */
1844   coverage_finish ();
1845
1846   /* Write out any pending weak symbol declarations.  */
1847
1848   weak_finish ();
1849
1850   /* Do dbx symbols.  */
1851   timevar_push (TV_SYMOUT);
1852
1853 #ifdef DWARF2_UNWIND_INFO
1854   if (dwarf2out_do_frame ())
1855     dwarf2out_frame_finish ();
1856 #endif
1857
1858   (*debug_hooks->finish) (main_input_filename);
1859   timevar_pop (TV_SYMOUT);
1860
1861   /* Output some stuff at end of file if nec.  */
1862
1863   dw2_output_indirect_constants ();
1864
1865   if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
1866     {
1867       timevar_push (TV_DUMP);
1868       open_dump_file (DFI_bp, NULL);
1869
1870       end_branch_prob ();
1871
1872       close_dump_file (DFI_bp, NULL, NULL_RTX);
1873       timevar_pop (TV_DUMP);
1874     }
1875
1876   targetm.asm_out.file_end ();
1877
1878   /* Attach a special .ident directive to the end of the file to identify
1879      the version of GCC which compiled this code.  The format of the .ident
1880      string is patterned after the ones produced by native SVR4 compilers.  */
1881 #ifdef IDENT_ASM_OP
1882   if (!flag_no_ident)
1883     fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1884              IDENT_ASM_OP, version_string);
1885 #endif
1886
1887   if (optimize > 0 && open_dump_file (DFI_combine, NULL))
1888     {
1889       timevar_push (TV_DUMP);
1890       dump_combine_total_stats (rtl_dump_file);
1891       close_dump_file (DFI_combine, NULL, NULL_RTX);
1892       timevar_pop (TV_DUMP);
1893     }
1894 }
1895
1896 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
1897    and TYPE_DECL nodes.
1898
1899    This does nothing for local (non-static) variables, unless the
1900    variable is a register variable with an ASMSPEC.  In that case, or
1901    if the variable is not an automatic, it sets up the RTL and
1902    outputs any assembler code (label definition, storage allocation
1903    and initialization).
1904
1905    DECL is the declaration.  If ASMSPEC is nonzero, it specifies
1906    the assembler symbol name to be used.  TOP_LEVEL is nonzero
1907    if this declaration is not within a function.  */
1908
1909 void
1910 rest_of_decl_compilation (tree decl,
1911                           const char *asmspec,
1912                           int top_level,
1913                           int at_end)
1914 {
1915   /* We deferred calling assemble_alias so that we could collect
1916      other attributes such as visibility.  Emit the alias now.  */
1917   {
1918     tree alias;
1919     alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
1920     if (alias)
1921       {
1922         alias = TREE_VALUE (TREE_VALUE (alias));
1923         alias = get_identifier (TREE_STRING_POINTER (alias));
1924         assemble_alias (decl, alias);
1925       }
1926   }
1927
1928   /* Forward declarations for nested functions are not "external",
1929      but we need to treat them as if they were.  */
1930   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
1931       || TREE_CODE (decl) == FUNCTION_DECL)
1932     {
1933       timevar_push (TV_VARCONST);
1934
1935       if (asmspec)
1936         make_decl_rtl (decl, asmspec);
1937
1938       /* Don't output anything when a tentative file-scope definition
1939          is seen.  But at end of compilation, do output code for them.
1940
1941          We do output all variables when unit-at-a-time is active and rely on
1942          callgraph code to defer them except for forward declarations
1943          (see gcc.c-torture/compile/920624-1.c) */
1944       if ((at_end
1945            || !DECL_DEFER_OUTPUT (decl)
1946            || (flag_unit_at_a_time && DECL_INITIAL (decl)))
1947           && !DECL_EXTERNAL (decl))
1948         {
1949           if (flag_unit_at_a_time && !cgraph_global_info_ready
1950               && TREE_CODE (decl) != FUNCTION_DECL && top_level)
1951             cgraph_varpool_finalize_decl (decl);
1952           else
1953             assemble_variable (decl, top_level, at_end, 0);
1954         }
1955
1956 #ifdef ASM_FINISH_DECLARE_OBJECT
1957       if (decl == last_assemble_variable_decl)
1958         {
1959           ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
1960                                      top_level, at_end);
1961         }
1962 #endif
1963
1964       timevar_pop (TV_VARCONST);
1965     }
1966   else if (DECL_REGISTER (decl) && asmspec != 0)
1967     {
1968       if (decode_reg_name (asmspec) >= 0)
1969         {
1970           SET_DECL_RTL (decl, NULL_RTX);
1971           make_decl_rtl (decl, asmspec);
1972         }
1973       else
1974         {
1975           error ("invalid register name `%s' for register variable", asmspec);
1976           DECL_REGISTER (decl) = 0;
1977           if (!top_level)
1978             expand_decl (decl);
1979         }
1980     }
1981   else if (TREE_CODE (decl) == TYPE_DECL)
1982     {
1983       timevar_push (TV_SYMOUT);
1984       debug_hooks->type_decl (decl, !top_level);
1985       timevar_pop (TV_SYMOUT);
1986     }
1987 }
1988
1989 /* Called after finishing a record, union or enumeral type.  */
1990
1991 void
1992 rest_of_type_compilation (tree type, int toplev)
1993 {
1994   /* Avoid confusing the debug information machinery when there are
1995      errors.  */
1996   if (errorcount != 0 || sorrycount != 0)
1997     return;
1998
1999   timevar_push (TV_SYMOUT);
2000   debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
2001   timevar_pop (TV_SYMOUT);
2002 }
2003
2004 /* Turn the RTL into assembly.  */
2005 static void
2006 rest_of_handle_final (tree decl, rtx insns)
2007 {
2008   timevar_push (TV_FINAL);
2009   {
2010     rtx x;
2011     const char *fnname;
2012
2013     /* Get the function's name, as described by its RTL.  This may be
2014        different from the DECL_NAME name used in the source file.  */
2015
2016     x = DECL_RTL (decl);
2017     if (GET_CODE (x) != MEM)
2018       abort ();
2019     x = XEXP (x, 0);
2020     if (GET_CODE (x) != SYMBOL_REF)
2021       abort ();
2022     fnname = XSTR (x, 0);
2023
2024     assemble_start_function (decl, fnname);
2025     final_start_function (insns, asm_out_file, optimize);
2026     final (insns, asm_out_file, optimize, 0);
2027     final_end_function ();
2028
2029 #ifdef IA64_UNWIND_INFO
2030     /* ??? The IA-64 ".handlerdata" directive must be issued before
2031        the ".endp" directive that closes the procedure descriptor.  */
2032     output_function_exception_table ();
2033 #endif
2034
2035     assemble_end_function (decl, fnname);
2036
2037 #ifndef IA64_UNWIND_INFO
2038     /* Otherwise, it feels unclean to switch sections in the middle.  */
2039     output_function_exception_table ();
2040 #endif
2041
2042     if (! quiet_flag)
2043       fflush (asm_out_file);
2044
2045     /* Release all memory allocated by flow.  */
2046     free_basic_block_vars (0);
2047
2048     /* Release all memory held by regsets now.  */
2049     regset_release_memory ();
2050   }
2051   timevar_pop (TV_FINAL);
2052
2053   ggc_collect ();
2054 }
2055
2056 #ifdef DELAY_SLOTS
2057 /* Run delay slot optimization.  */
2058 static void
2059 rest_of_handle_delay_slots (tree decl, rtx insns)
2060 {
2061   timevar_push (TV_DBR_SCHED);
2062   open_dump_file (DFI_dbr, decl);
2063
2064   dbr_schedule (insns, rtl_dump_file);
2065
2066   close_dump_file (DFI_dbr, print_rtl, insns);
2067   timevar_pop (TV_DBR_SCHED);
2068
2069   ggc_collect ();
2070 }
2071 #endif
2072
2073 #ifdef STACK_REGS
2074 /* Convert register usage from flat register file usage to a stack
2075    register file.  */
2076 static void
2077 rest_of_handle_stack_regs (tree decl, rtx insns)
2078 {
2079 #if defined (HAVE_ATTR_length)
2080   /* If flow2 creates new instructions which need splitting
2081      and scheduling after reload is not done, they might not be
2082      split until final which doesn't allow splitting
2083      if HAVE_ATTR_length.  */
2084 #ifdef INSN_SCHEDULING
2085   if (optimize && !flag_schedule_insns_after_reload)
2086 #else
2087   if (optimize)
2088 #endif
2089     {
2090       timevar_push (TV_SHORTEN_BRANCH);
2091       split_all_insns (1);
2092       timevar_pop (TV_SHORTEN_BRANCH);
2093     }
2094 #endif
2095
2096   timevar_push (TV_REG_STACK);
2097   open_dump_file (DFI_stack, decl);
2098
2099   if (reg_to_stack (insns, rtl_dump_file) && optimize)
2100     {
2101       if (cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK
2102                        | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0))
2103           && flag_reorder_blocks)
2104         {
2105           reorder_basic_blocks ();
2106           cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
2107         }
2108     }
2109
2110   close_dump_file (DFI_stack, print_rtl_with_bb, insns);
2111   timevar_pop (TV_REG_STACK);
2112
2113   ggc_collect ();
2114 }
2115 #endif
2116
2117 /* Track the variables, ie. compute where the variable is stored at each position in function.  */
2118 static void
2119 rest_of_handle_variable_tracking (tree decl, rtx insns)
2120 {
2121   timevar_push (TV_VAR_TRACKING);
2122   open_dump_file (DFI_vartrack, decl);
2123
2124   variable_tracking_main ();
2125
2126   close_dump_file (DFI_vartrack, print_rtl_with_bb, insns);
2127   timevar_pop (TV_VAR_TRACKING);
2128 }
2129
2130 /* Machine independent reorg pass.  */
2131 static void
2132 rest_of_handle_machine_reorg (tree decl, rtx insns)
2133 {
2134   timevar_push (TV_MACH_DEP);
2135   open_dump_file (DFI_mach, decl);
2136
2137   (*targetm.machine_dependent_reorg) ();
2138
2139   close_dump_file (DFI_mach, print_rtl, insns);
2140   timevar_pop (TV_MACH_DEP);
2141
2142   ggc_collect ();
2143 }
2144
2145
2146 /* Run new register allocator.  Return TRUE if we must exit
2147    rest_of_compilation upon return.  */
2148 static bool
2149 rest_of_handle_new_regalloc (tree decl, rtx insns)
2150 {
2151   int failure;
2152
2153   delete_trivially_dead_insns (insns, max_reg_num ());
2154   reg_alloc ();
2155
2156   timevar_pop (TV_LOCAL_ALLOC);
2157   if (dump_file[DFI_lreg].enabled)
2158     {
2159       timevar_push (TV_DUMP);
2160
2161       close_dump_file (DFI_lreg, NULL, NULL);
2162       timevar_pop (TV_DUMP);
2163     }
2164
2165   /* XXX clean up the whole mess to bring live info in shape again.  */
2166   timevar_push (TV_GLOBAL_ALLOC);
2167   open_dump_file (DFI_greg, decl);
2168
2169   build_insn_chain (insns);
2170   failure = reload (insns, 0);
2171
2172   timevar_pop (TV_GLOBAL_ALLOC);
2173
2174   if (dump_file[DFI_greg].enabled)
2175     {
2176       timevar_push (TV_DUMP);
2177
2178       dump_global_regs (rtl_dump_file);
2179
2180       close_dump_file (DFI_greg, print_rtl_with_bb, insns);
2181       timevar_pop (TV_DUMP);
2182     }
2183
2184   if (failure)
2185     return true;
2186
2187   reload_completed = 1;
2188
2189   return false;
2190 }
2191
2192 /* Run old register allocator.  Return TRUE if we must exit
2193    rest_of_compilation upon return.  */
2194 static bool
2195 rest_of_handle_old_regalloc (tree decl, rtx insns)
2196 {
2197   int failure;
2198   int rebuild_notes;
2199
2200   /* Allocate the reg_renumber array.  */
2201   allocate_reg_info (max_regno, FALSE, TRUE);
2202
2203   /* And the reg_equiv_memory_loc array.  */
2204   reg_equiv_memory_loc = xcalloc (max_regno, sizeof (rtx));
2205
2206   allocate_initial_values (reg_equiv_memory_loc);
2207
2208   regclass (insns, max_reg_num (), rtl_dump_file);
2209   rebuild_notes = local_alloc ();
2210
2211   timevar_pop (TV_LOCAL_ALLOC);
2212
2213   /* Local allocation may have turned an indirect jump into a direct
2214      jump.  If so, we must rebuild the JUMP_LABEL fields of jumping
2215      instructions.  */
2216   if (rebuild_notes)
2217     {
2218       timevar_push (TV_JUMP);
2219
2220       rebuild_jump_labels (insns);
2221       purge_all_dead_edges (0);
2222
2223       timevar_pop (TV_JUMP);
2224     }
2225
2226   if (dump_file[DFI_lreg].enabled)
2227     {
2228       timevar_push (TV_DUMP);
2229
2230       dump_flow_info (rtl_dump_file);
2231       dump_local_alloc (rtl_dump_file);
2232
2233       close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
2234       timevar_pop (TV_DUMP);
2235     }
2236
2237   ggc_collect ();
2238
2239   timevar_push (TV_GLOBAL_ALLOC);
2240   open_dump_file (DFI_greg, decl);
2241
2242   /* If optimizing, allocate remaining pseudo-regs.  Do the reload
2243      pass fixing up any insns that are invalid.  */
2244
2245   if (optimize)
2246     failure = global_alloc (rtl_dump_file);
2247   else
2248     {
2249       build_insn_chain (insns);
2250       failure = reload (insns, 0);
2251     }
2252
2253   timevar_pop (TV_GLOBAL_ALLOC);
2254
2255   if (dump_file[DFI_greg].enabled)
2256     {
2257       timevar_push (TV_DUMP);
2258
2259       dump_global_regs (rtl_dump_file);
2260
2261       close_dump_file (DFI_greg, print_rtl_with_bb, insns);
2262       timevar_pop (TV_DUMP);
2263     }
2264
2265   return failure;
2266 }
2267
2268 /* Run the regrename and cprop passes.  */
2269 static void
2270 rest_of_handle_regrename (tree decl, rtx insns)
2271 {
2272   timevar_push (TV_RENAME_REGISTERS);
2273   open_dump_file (DFI_rnreg, decl);
2274
2275   if (flag_rename_registers)
2276     regrename_optimize ();
2277   if (flag_cprop_registers)
2278     copyprop_hardreg_forward ();
2279
2280   close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
2281   timevar_pop (TV_RENAME_REGISTERS);
2282 }
2283
2284 /* Reorder basic blocks.  */
2285 static void
2286 rest_of_handle_reorder_blocks (tree decl, rtx insns)
2287 {
2288   bool changed;
2289   open_dump_file (DFI_bbro, decl);
2290
2291   /* Last attempt to optimize CFG, as scheduling, peepholing and insn
2292      splitting possibly introduced more crossjumping opportunities.  */
2293   changed = cleanup_cfg (CLEANUP_EXPENSIVE
2294                          | (!HAVE_conditional_execution
2295                             ? CLEANUP_UPDATE_LIFE : 0));
2296
2297   if (flag_sched2_use_traces && flag_schedule_insns_after_reload)
2298     tracer ();
2299   if (flag_reorder_blocks)
2300     reorder_basic_blocks ();
2301   if (flag_reorder_blocks
2302       || (flag_sched2_use_traces && flag_schedule_insns_after_reload))
2303     changed |= cleanup_cfg (CLEANUP_EXPENSIVE
2304                             | (!HAVE_conditional_execution
2305                                ? CLEANUP_UPDATE_LIFE : 0));
2306
2307   /* On conditional execution targets we can not update the life cheaply, so
2308      we deffer the updating to after both cleanups.  This may lose some cases
2309      but should not be terribly bad.  */
2310   if (changed && HAVE_conditional_execution)
2311     update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
2312                       PROP_DEATH_NOTES);
2313   close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
2314 }
2315
2316 #ifdef INSN_SCHEDULING
2317 /* Run instruction scheduler.  */
2318 static void
2319 rest_of_handle_sched (tree decl, rtx insns)
2320 {
2321   timevar_push (TV_SCHED);
2322
2323   /* Print function header into sched dump now
2324      because doing the sched analysis makes some of the dump.  */
2325   if (optimize > 0 && flag_schedule_insns)
2326     {
2327       open_dump_file (DFI_sched, decl);
2328
2329       /* Do control and data sched analysis,
2330          and write some of the results to dump file.  */
2331
2332       schedule_insns (rtl_dump_file);
2333
2334       close_dump_file (DFI_sched, print_rtl_with_bb, insns);
2335     }
2336   timevar_pop (TV_SCHED);
2337
2338   ggc_collect ();
2339 }
2340
2341 /* Run second scheduling pass after reload.  */
2342 static void
2343 rest_of_handle_sched2 (tree decl, rtx insns)
2344 {
2345   timevar_push (TV_SCHED2);
2346   open_dump_file (DFI_sched2, decl);
2347
2348   /* Do control and data sched analysis again,
2349      and write some more of the results to dump file.  */
2350
2351   split_all_insns (1);
2352
2353   if (flag_sched2_use_superblocks || flag_sched2_use_traces)
2354     {
2355       schedule_ebbs (rtl_dump_file);
2356       /* No liveness updating code yet, but it should be easy to do.
2357          reg-stack recompute the liveness when needed for now.  */
2358       count_or_remove_death_notes (NULL, 1);
2359       cleanup_cfg (CLEANUP_EXPENSIVE);
2360     }
2361   else
2362     schedule_insns (rtl_dump_file);
2363
2364   close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
2365   timevar_pop (TV_SCHED2);
2366
2367   ggc_collect ();
2368 }
2369 #endif
2370
2371 /* Register allocation pre-pass, to reduce number of moves necessary
2372    for two-address machines.  */
2373 static void
2374 rest_of_handle_regmove (tree decl, rtx insns)
2375 {
2376   timevar_push (TV_REGMOVE);
2377   open_dump_file (DFI_regmove, decl);
2378
2379   regmove_optimize (insns, max_reg_num (), rtl_dump_file);
2380
2381   cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
2382   close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
2383   timevar_pop (TV_REGMOVE);
2384
2385   ggc_collect ();
2386 }
2387
2388 /* Run tracer.  */
2389 static void
2390 rest_of_handle_tracer (tree decl, rtx insns)
2391 {
2392   open_dump_file (DFI_tracer, decl);
2393   if (rtl_dump_file)
2394     dump_flow_info (rtl_dump_file);
2395   tracer ();
2396   cleanup_cfg (CLEANUP_EXPENSIVE);
2397   reg_scan (insns, max_reg_num (), 0);
2398   close_dump_file (DFI_tracer, print_rtl_with_bb, get_insns ());
2399 }
2400
2401 /* If-conversion and CFG cleanup.  */
2402 static void
2403 rest_of_handle_if_conversion (tree decl, rtx insns)
2404 {
2405   open_dump_file (DFI_ce1, decl);
2406   if (flag_if_conversion)
2407     {
2408       timevar_push (TV_IFCVT);
2409       if (rtl_dump_file)
2410         dump_flow_info (rtl_dump_file);
2411       cleanup_cfg (CLEANUP_EXPENSIVE);
2412       reg_scan (insns, max_reg_num (), 0);
2413       if_convert (0);
2414       timevar_pop (TV_IFCVT);
2415     }
2416   timevar_push (TV_JUMP);
2417   cleanup_cfg (CLEANUP_EXPENSIVE);
2418   reg_scan (insns, max_reg_num (), 0);
2419   timevar_pop (TV_JUMP);
2420   close_dump_file (DFI_ce1, print_rtl_with_bb, get_insns ());
2421 }
2422
2423 /* Rerun if-conversion, as combine may have simplified things enough
2424    to now meet sequence length restrictions.  */
2425 static void
2426 rest_of_handle_if_after_combine (tree decl, rtx insns)
2427 {
2428   timevar_push (TV_IFCVT);
2429   open_dump_file (DFI_ce2, decl);
2430
2431   no_new_pseudos = 0;
2432   if_convert (1);
2433   no_new_pseudos = 1;
2434
2435   close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
2436   timevar_pop (TV_IFCVT);
2437 }
2438
2439 static void
2440 rest_of_handle_web (tree decl, rtx insns)
2441 {
2442   open_dump_file (DFI_web, decl);
2443   timevar_push (TV_WEB);
2444   web_main ();
2445   delete_trivially_dead_insns (insns, max_reg_num ());
2446   cleanup_cfg (CLEANUP_EXPENSIVE);
2447
2448   timevar_pop (TV_WEB);
2449   close_dump_file (DFI_web, print_rtl_with_bb, insns);
2450   reg_scan (get_insns (), max_reg_num (), 0);
2451 }
2452
2453 /* Do branch profiling and static profile estimation passes.  */
2454 static void
2455 rest_of_handle_branch_prob (tree decl, rtx insns)
2456 {
2457   struct loops loops;
2458
2459   timevar_push (TV_BRANCH_PROB);
2460   open_dump_file (DFI_bp, decl);
2461
2462   if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
2463     branch_prob ();
2464
2465   /* Discover and record the loop depth at the head of each basic
2466      block.  The loop infrastructure does the real job for us.  */
2467   flow_loops_find (&loops, LOOP_TREE);
2468
2469   if (rtl_dump_file)
2470     flow_loops_dump (&loops, rtl_dump_file, NULL, 0);
2471
2472   /* Estimate using heuristics if no profiling info is available.  */
2473   if (flag_guess_branch_prob)
2474     estimate_probability (&loops);
2475
2476   flow_loops_free (&loops);
2477   free_dominance_info (CDI_DOMINATORS);
2478   close_dump_file (DFI_bp, print_rtl_with_bb, insns);
2479   timevar_pop (TV_BRANCH_PROB);
2480 }
2481
2482 /* Do optimizations based on expression value profiles.  */
2483 static void
2484 rest_of_handle_value_profile_transformations (tree decl, rtx insns)
2485 {
2486   open_dump_file (DFI_vpt, decl);
2487   timevar_push (TV_VPT);
2488
2489   if (value_profile_transformations ())
2490     cleanup_cfg (CLEANUP_EXPENSIVE);
2491
2492   timevar_pop (TV_VPT);
2493   close_dump_file (DFI_vpt, print_rtl_with_bb, insns);
2494 }
2495
2496 /* Do control and data flow analysis; write some of the results to the
2497    dump file.  */
2498 static void
2499 rest_of_handle_cfg (tree decl, rtx insns)
2500 {
2501   open_dump_file (DFI_cfg, decl);
2502   if (rtl_dump_file)
2503     dump_flow_info (rtl_dump_file);
2504   if (optimize)
2505     cleanup_cfg (CLEANUP_EXPENSIVE
2506                  | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2507
2508   /* It may make more sense to mark constant functions after dead code is
2509      eliminated by life_analysis, but we need to do it early, as -fprofile-arcs
2510      may insert code making function non-constant, but we still must consider
2511      it as constant, otherwise -fbranch-probabilities will not read data back.
2512
2513      life_analysis rarely eliminates modification of external memory.
2514    */
2515   if (optimize)
2516     {
2517       /* Alias analysis depends on this information and mark_constant_function
2518        depends on alias analysis.  */
2519       reg_scan (insns, max_reg_num (), 1);
2520       mark_constant_function ();
2521     }
2522
2523   close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
2524 }
2525
2526 /* Purge addressofs.  */
2527 static void
2528 rest_of_handle_addressof (tree decl, rtx insns)
2529 {
2530   open_dump_file (DFI_addressof, decl);
2531
2532   purge_addressof (insns);
2533   if (optimize && purge_all_dead_edges (0))
2534     delete_unreachable_blocks ();
2535   reg_scan (insns, max_reg_num (), 1);
2536
2537   close_dump_file (DFI_addressof, print_rtl, insns);
2538 }
2539
2540 /* We may have potential sibling or tail recursion sites.  Select one
2541    (of possibly multiple) methods of performing the call.  */
2542 static void
2543 rest_of_handle_sibling_calls (rtx insns)
2544 {
2545   rtx insn;
2546   optimize_sibling_and_tail_recursive_calls ();
2547
2548   /* Recompute the CFG as sibling optimization clobbers it randomly.  */
2549   free_bb_for_insn ();
2550   find_exception_handler_labels ();
2551   rebuild_jump_labels (insns);
2552   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2553
2554   /* There is pass ordering problem - we must lower NOTE_INSN_PREDICTION
2555      notes before simplifying cfg and we must do lowering after sibcall
2556      that unhides parts of RTL chain and cleans up the CFG.
2557
2558      Until sibcall is replaced by tree-level optimizer, lets just
2559      sweep away the NOTE_INSN_PREDICTION notes that leaked out.  */
2560   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2561     if (GET_CODE (insn) == NOTE
2562         && NOTE_LINE_NUMBER (insn) == NOTE_INSN_PREDICTION)
2563       delete_insn (insn);
2564
2565   close_dump_file (DFI_sibling, print_rtl, get_insns ());
2566 }
2567
2568 /* Perform jump bypassing and control flow optimizations.  */
2569 static void
2570 rest_of_handle_jump_bypass (tree decl, rtx insns)
2571 {
2572   timevar_push (TV_BYPASS);
2573   open_dump_file (DFI_bypass, decl);
2574
2575   cleanup_cfg (CLEANUP_EXPENSIVE);
2576   reg_scan (insns, max_reg_num (), 1);
2577
2578   if (bypass_jumps (rtl_dump_file))
2579     {
2580       rebuild_jump_labels (insns);
2581       cleanup_cfg (CLEANUP_EXPENSIVE);
2582       delete_trivially_dead_insns (insns, max_reg_num ());
2583     }
2584
2585   close_dump_file (DFI_bypass, print_rtl_with_bb, insns);
2586   timevar_pop (TV_BYPASS);
2587
2588   ggc_collect ();
2589
2590 #ifdef ENABLE_CHECKING
2591   verify_flow_info ();
2592 #endif
2593 }
2594
2595 /* Handle inlining of functions in rest_of_compilation.  Return TRUE
2596    if we must exit rest_of_compilation upon return.  */
2597 static bool
2598 rest_of_handle_inlining (tree decl)
2599 {
2600   rtx insns;
2601   int inlinable = 0;
2602   tree parent;
2603   const char *lose;
2604
2605   /* If we are reconsidering an inline function at the end of
2606      compilation, skip the stuff for making it inline.  */
2607   if (cfun->rtl_inline_init)
2608     return 0;
2609   cfun->rtl_inline_init = 1;
2610
2611   /* If this is nested inside an inlined external function, pretend
2612      it was only declared.  Since we cannot inline such functions,
2613      generating code for this one is not only not necessary but will
2614      confuse some debugging output writers.  */
2615   for (parent = DECL_CONTEXT (current_function_decl);
2616        parent != NULL_TREE;
2617        parent = get_containing_scope (parent))
2618     if (TREE_CODE (parent) == FUNCTION_DECL
2619         && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
2620       {
2621         DECL_INITIAL (decl) = 0;
2622         return true;
2623       }
2624     else if (TYPE_P (parent))
2625       /* A function in a local class should be treated normally.  */
2626       break;
2627
2628   /* If requested, consider whether to make this function inline.  */
2629   if ((DECL_INLINE (decl) && !flag_no_inline)
2630       || flag_inline_functions)
2631     {
2632       timevar_push (TV_INTEGRATION);
2633       lose = function_cannot_inline_p (decl);
2634       timevar_pop (TV_INTEGRATION);
2635       if (lose || ! optimize)
2636         {
2637           if (warn_inline && lose && DECL_INLINE (decl))
2638             {
2639               char *msg = concat ("%J", lose, NULL);
2640               warning (msg, decl);
2641               free (msg);
2642             }
2643           DECL_ABSTRACT_ORIGIN (decl) = 0;
2644           /* Don't really compile an extern inline function.
2645              If we can't make it inline, pretend
2646              it was only declared.  */
2647           if (DECL_EXTERNAL (decl))
2648             {
2649               DECL_INITIAL (decl) = 0;
2650               return true;
2651             }
2652         }
2653       else
2654         inlinable = DECL_INLINE (decl) = 1;
2655     }
2656
2657   insns = get_insns ();
2658
2659   /* Dump the rtl code if we are dumping rtl.  */
2660
2661   if (open_dump_file (DFI_rtl, decl))
2662     {
2663       if (DECL_SAVED_INSNS (decl) && DECL_SAVED_INSNS (decl)->saved_for_inline)
2664         fprintf (rtl_dump_file, ";; (integrable)\n\n");
2665       close_dump_file (DFI_rtl, print_rtl, insns);
2666     }
2667
2668   /* Convert from NOTE_INSN_EH_REGION style notes, and do other
2669      sorts of eh initialization.  Delay this until after the
2670      initial rtl dump so that we can see the original nesting.  */
2671   convert_from_eh_region_ranges ();
2672
2673   /* If function is inline, and we don't yet know whether to
2674      compile it by itself, defer decision till end of compilation.
2675      wrapup_global_declarations will (indirectly) call
2676      rest_of_compilation again for those functions that need to
2677      be output.  Also defer those functions that we are supposed
2678      to defer.  */
2679
2680   if (inlinable
2681       || (DECL_INLINE (decl)
2682           /* Egad.  This RTL deferral test conflicts with Fortran assumptions
2683              for unreferenced symbols.  See g77.f-torture/execute/980520-1.f.
2684              But removing this line from the check breaks all languages that
2685              use the call graph to output symbols.  This hard-coded check is
2686              the least invasive work-around.  */
2687           && (flag_inline_functions
2688               || strcmp (lang_hooks.name, "GNU F77") == 0)
2689           && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2690                && ! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
2691                && ! flag_keep_inline_functions)
2692               || DECL_EXTERNAL (decl))))
2693     DECL_DEFER_OUTPUT (decl) = 1;
2694
2695   if (DECL_INLINE (decl))
2696     /* DWARF wants separate debugging info for abstract and
2697        concrete instances of all inline functions, including those
2698        declared inline but not inlined, and those inlined even
2699        though they weren't declared inline.  Conveniently, that's
2700        what DECL_INLINE means at this point.  */
2701     (*debug_hooks->deferred_inline_function) (decl);
2702
2703   if (DECL_DEFER_OUTPUT (decl))
2704     {
2705       /* If -Wreturn-type, we have to do a bit of compilation.  We just
2706          want to call cleanup the cfg to figure out whether or not we can
2707          fall off the end of the function; we do the minimum amount of
2708          work necessary to make that safe.  */
2709       if (warn_return_type)
2710         {
2711           int saved_optimize = optimize;
2712
2713           optimize = 0;
2714           rebuild_jump_labels (insns);
2715           find_exception_handler_labels ();
2716           find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2717           cleanup_cfg (CLEANUP_PRE_SIBCALL | CLEANUP_PRE_LOOP);
2718           optimize = saved_optimize;
2719
2720           /* CFG is no longer maintained up-to-date.  */
2721           free_bb_for_insn ();
2722         }
2723
2724       set_nothrow_function_flags ();
2725       if (current_function_nothrow)
2726         /* Now we know that this can't throw; set the flag for the benefit
2727            of other functions later in this translation unit.  */
2728         TREE_NOTHROW (current_function_decl) = 1;
2729
2730       timevar_push (TV_INTEGRATION);
2731       save_for_inline (decl);
2732       timevar_pop (TV_INTEGRATION);
2733       DECL_SAVED_INSNS (decl)->inlinable = inlinable;
2734       return true;
2735     }
2736
2737   /* If specified extern inline but we aren't inlining it, we are
2738      done.  This goes for anything that gets here with DECL_EXTERNAL
2739      set, not just things with DECL_INLINE.  */
2740   return (bool) DECL_EXTERNAL (decl);
2741 }
2742
2743 /* Try to identify useless null pointer tests and delete them.  */
2744 static void
2745 rest_of_handle_null_pointer (tree decl, rtx insns)
2746 {
2747   open_dump_file (DFI_null, decl);
2748   if (rtl_dump_file)
2749     dump_flow_info (rtl_dump_file);
2750
2751   if (delete_null_pointer_checks (insns))
2752     cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2753
2754   close_dump_file (DFI_null, print_rtl_with_bb, insns);
2755 }
2756
2757 /* Try combining insns through substitution.  */
2758 static void
2759 rest_of_handle_combine (tree decl, rtx insns)
2760 {
2761   int rebuild_jump_labels_after_combine = 0;
2762
2763   timevar_push (TV_COMBINE);
2764   open_dump_file (DFI_combine, decl);
2765
2766   rebuild_jump_labels_after_combine
2767     = combine_instructions (insns, max_reg_num ());
2768
2769   /* Combining insns may have turned an indirect jump into a
2770      direct jump.  Rebuild the JUMP_LABEL fields of jumping
2771      instructions.  */
2772   if (rebuild_jump_labels_after_combine)
2773     {
2774       timevar_push (TV_JUMP);
2775       rebuild_jump_labels (insns);
2776       timevar_pop (TV_JUMP);
2777
2778       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE);
2779     }
2780
2781   close_dump_file (DFI_combine, print_rtl_with_bb, insns);
2782   timevar_pop (TV_COMBINE);
2783
2784   ggc_collect ();
2785 }
2786
2787 /* Perform life analysis.  */
2788 static void
2789 rest_of_handle_life (tree decl, rtx insns)
2790 {
2791   open_dump_file (DFI_life, decl);
2792   regclass_init ();
2793
2794 #ifdef ENABLE_CHECKING
2795   verify_flow_info ();
2796 #endif
2797   life_analysis (insns, rtl_dump_file, PROP_FINAL);
2798   if (optimize)
2799     cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_UPDATE_LIFE
2800                  | CLEANUP_LOG_LINKS
2801                  | (flag_thread_jumps ? CLEANUP_THREADING : 0));
2802   timevar_pop (TV_FLOW);
2803
2804   if (warn_uninitialized)
2805     {
2806       uninitialized_vars_warning (DECL_INITIAL (decl));
2807       if (extra_warnings)
2808         setjmp_args_warning ();
2809     }
2810
2811   if (optimize)
2812     {
2813       if (!flag_new_regalloc && initialize_uninitialized_subregs ())
2814         {
2815           /* Insns were inserted, and possibly pseudos created, so
2816              things might look a bit different.  */
2817           insns = get_insns ();
2818           allocate_reg_life_data ();
2819           update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
2820                             PROP_LOG_LINKS | PROP_REG_INFO | PROP_DEATH_NOTES);
2821         }
2822     }
2823
2824   no_new_pseudos = 1;
2825
2826   close_dump_file (DFI_life, print_rtl_with_bb, insns);
2827
2828   ggc_collect ();
2829 }
2830
2831 /* Perform common subexpression elimination.  Nonzero value from
2832    `cse_main' means that jumps were simplified and some code may now
2833    be unreachable, so do jump optimization again.  */
2834 static void
2835 rest_of_handle_cse (tree decl, rtx insns)
2836 {
2837   int tem;
2838
2839   open_dump_file (DFI_cse, decl);
2840   if (rtl_dump_file)
2841     dump_flow_info (rtl_dump_file);
2842   timevar_push (TV_CSE);
2843
2844   reg_scan (insns, max_reg_num (), 1);
2845
2846   tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2847   if (tem)
2848     rebuild_jump_labels (insns);
2849   if (purge_all_dead_edges (0))
2850     delete_unreachable_blocks ();
2851
2852   delete_trivially_dead_insns (insns, max_reg_num ());
2853
2854   /* If we are not running more CSE passes, then we are no longer
2855      expecting CSE to be run.  But always rerun it in a cheap mode.  */
2856   cse_not_expected = !flag_rerun_cse_after_loop && !flag_gcse;
2857
2858   if (tem || optimize > 1)
2859     cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2860   /* Try to identify useless null pointer tests and delete them.  */
2861   if (flag_delete_null_pointer_checks)
2862     {
2863       timevar_push (TV_JUMP);
2864
2865       if (delete_null_pointer_checks (insns))
2866         cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2867       timevar_pop (TV_JUMP);
2868     }
2869
2870   /* The second pass of jump optimization is likely to have
2871      removed a bunch more instructions.  */
2872   renumber_insns (rtl_dump_file);
2873
2874   timevar_pop (TV_CSE);
2875   close_dump_file (DFI_cse, print_rtl_with_bb, insns);
2876 }
2877
2878 /* Run second CSE pass after loop optimizations.  */
2879 static void
2880 rest_of_handle_cse2 (tree decl, rtx insns)
2881 {
2882   int tem;
2883
2884   timevar_push (TV_CSE2);
2885   open_dump_file (DFI_cse2, decl);
2886   if (rtl_dump_file)
2887     dump_flow_info (rtl_dump_file);
2888   /* CFG is no longer maintained up-to-date.  */
2889   tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
2890
2891   /* Run a pass to eliminate duplicated assignments to condition code
2892      registers.  We have to run this after bypass_jumps, because it
2893      makes it harder for that pass to determine whether a jump can be
2894      bypassed safely.  */
2895   cse_condition_code_reg ();
2896
2897   purge_all_dead_edges (0);
2898   delete_trivially_dead_insns (insns, max_reg_num ());
2899
2900   if (tem)
2901     {
2902       timevar_push (TV_JUMP);
2903       rebuild_jump_labels (insns);
2904       cleanup_cfg (CLEANUP_EXPENSIVE);
2905       timevar_pop (TV_JUMP);
2906     }
2907   reg_scan (insns, max_reg_num (), 0);
2908   close_dump_file (DFI_cse2, print_rtl_with_bb, insns);
2909   ggc_collect ();
2910   timevar_pop (TV_CSE2);
2911 }
2912
2913 /* Perform global cse.  */
2914 static void
2915 rest_of_handle_gcse (tree decl, rtx insns)
2916 {
2917   int save_csb, save_cfj;
2918   int tem2 = 0, tem;
2919
2920   timevar_push (TV_GCSE);
2921   open_dump_file (DFI_gcse, decl);
2922
2923   tem = gcse_main (insns, rtl_dump_file);
2924   rebuild_jump_labels (insns);
2925   delete_trivially_dead_insns (insns, max_reg_num ());
2926
2927   save_csb = flag_cse_skip_blocks;
2928   save_cfj = flag_cse_follow_jumps;
2929   flag_cse_skip_blocks = flag_cse_follow_jumps = 0;
2930
2931   /* Instantiate any remaining CONSTANT_P_RTX nodes.  */
2932   if (current_function_calls_constant_p)
2933     purge_builtin_constant_p ();
2934
2935   /* If -fexpensive-optimizations, re-run CSE to clean up things done
2936      by gcse.  */
2937   if (flag_expensive_optimizations)
2938     {
2939       timevar_push (TV_CSE);
2940       reg_scan (insns, max_reg_num (), 1);
2941       tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2942       purge_all_dead_edges (0);
2943       delete_trivially_dead_insns (insns, max_reg_num ());
2944       timevar_pop (TV_CSE);
2945       cse_not_expected = !flag_rerun_cse_after_loop;
2946     }
2947
2948   /* If gcse or cse altered any jumps, rerun jump optimizations to clean
2949      things up.  Then possibly re-run CSE again.  */
2950   while (tem || tem2)
2951     {
2952       tem = tem2 = 0;
2953       timevar_push (TV_JUMP);
2954       rebuild_jump_labels (insns);
2955       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2956       timevar_pop (TV_JUMP);
2957
2958       if (flag_expensive_optimizations)
2959         {
2960           timevar_push (TV_CSE);
2961           reg_scan (insns, max_reg_num (), 1);
2962           tem2 = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
2963           purge_all_dead_edges (0);
2964           delete_trivially_dead_insns (insns, max_reg_num ());
2965           timevar_pop (TV_CSE);
2966         }
2967     }
2968
2969   close_dump_file (DFI_gcse, print_rtl_with_bb, insns);
2970   timevar_pop (TV_GCSE);
2971
2972   ggc_collect ();
2973   flag_cse_skip_blocks = save_csb;
2974   flag_cse_follow_jumps = save_cfj;
2975 #ifdef ENABLE_CHECKING
2976   verify_flow_info ();
2977 #endif
2978 }
2979
2980 /* Move constant computations out of loops.  */
2981 static void
2982 rest_of_handle_loop_optimize (tree decl, rtx insns)
2983 {
2984   int do_unroll, do_prefetch;
2985
2986   timevar_push (TV_LOOP);
2987   delete_dead_jumptables ();
2988   cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
2989   open_dump_file (DFI_loop, decl);
2990
2991   /* CFG is no longer maintained up-to-date.  */
2992   free_bb_for_insn ();
2993
2994   if (flag_unroll_loops)
2995     do_unroll = LOOP_AUTO_UNROLL;       /* Having two unrollers is useless.  */
2996   else
2997     do_unroll = flag_old_unroll_loops ? LOOP_UNROLL : LOOP_AUTO_UNROLL;
2998   do_prefetch = flag_prefetch_loop_arrays ? LOOP_PREFETCH : 0;
2999
3000   if (flag_rerun_loop_opt)
3001     {
3002       cleanup_barriers ();
3003
3004       /* We only want to perform unrolling once.  */
3005       loop_optimize (insns, rtl_dump_file, do_unroll);
3006       do_unroll = 0;
3007
3008       /* The first call to loop_optimize makes some instructions
3009          trivially dead.  We delete those instructions now in the
3010          hope that doing so will make the heuristics in loop work
3011          better and possibly speed up compilation.  */
3012       delete_trivially_dead_insns (insns, max_reg_num ());
3013
3014       /* The regscan pass is currently necessary as the alias
3015          analysis code depends on this information.  */
3016       reg_scan (insns, max_reg_num (), 1);
3017     }
3018   cleanup_barriers ();
3019   loop_optimize (insns, rtl_dump_file, do_unroll | LOOP_BCT | do_prefetch);
3020
3021   /* Loop can create trivially dead instructions.  */
3022   delete_trivially_dead_insns (insns, max_reg_num ());
3023   close_dump_file (DFI_loop, print_rtl, insns);
3024   timevar_pop (TV_LOOP);
3025   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3026
3027   ggc_collect ();
3028 }
3029
3030 /* Perform loop optimizations.  It might be better to do them a bit
3031    sooner, but we want the profile feedback to work more
3032    efficiently.  */
3033 static void
3034 rest_of_handle_loop2 (tree decl, rtx insns)
3035 {
3036   struct loops *loops;
3037   timevar_push (TV_LOOP);
3038   open_dump_file (DFI_loop2, decl);
3039   if (rtl_dump_file)
3040     dump_flow_info (rtl_dump_file);
3041
3042   loops = loop_optimizer_init (rtl_dump_file);
3043
3044   if (loops)
3045     {
3046       /* The optimizations:  */
3047       if (flag_unswitch_loops)
3048         unswitch_loops (loops);
3049
3050       if (flag_peel_loops || flag_unroll_loops)
3051         unroll_and_peel_loops (loops,
3052                                (flag_peel_loops ? UAP_PEEL : 0) |
3053                                (flag_unroll_loops ? UAP_UNROLL : 0) |
3054                                (flag_unroll_all_loops ? UAP_UNROLL_ALL : 0));
3055
3056       loop_optimizer_finalize (loops, rtl_dump_file);
3057     }
3058
3059   cleanup_cfg (CLEANUP_EXPENSIVE);
3060   delete_trivially_dead_insns (insns, max_reg_num ());
3061   reg_scan (insns, max_reg_num (), 0);
3062   if (rtl_dump_file)
3063     dump_flow_info (rtl_dump_file);
3064   close_dump_file (DFI_loop2, print_rtl_with_bb, get_insns ());
3065   timevar_pop (TV_LOOP);
3066   ggc_collect ();
3067 }
3068
3069 /* This is called from finish_function (within langhooks.parse_file)
3070    after each top-level definition is parsed.
3071    It is supposed to compile that function or variable
3072    and output the assembler code for it.
3073    After we return, the tree storage is freed.  */
3074
3075 void
3076 rest_of_compilation (tree decl)
3077 {
3078   rtx insns;
3079
3080   timevar_push (TV_REST_OF_COMPILATION);
3081
3082   /* Register rtl specific functions for cfg.  */
3083   rtl_register_cfg_hooks ();
3084
3085   /* Now that we're out of the frontend, we shouldn't have any more
3086      CONCATs anywhere.  */
3087   generating_concat_p = 0;
3088
3089   /* When processing delayed functions, prepare_function_start() won't
3090      have been run to re-initialize it.  */
3091   cse_not_expected = ! optimize;
3092
3093   /* First, make sure that NOTE_BLOCK is set correctly for each
3094      NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note.  */
3095   if (!cfun->x_whole_function_mode_p)
3096     identify_blocks ();
3097
3098   /* In function-at-a-time mode, we do not attempt to keep the BLOCK
3099      tree in sensible shape.  So, we just recalculate it here.  */
3100   if (cfun->x_whole_function_mode_p)
3101     reorder_blocks ();
3102
3103   init_flow ();
3104
3105   if (rest_of_handle_inlining (decl))
3106     goto exit_rest_of_compilation;
3107
3108   /* If we're emitting a nested function, make sure its parent gets
3109      emitted as well.  Doing otherwise confuses debug info.  */
3110   {
3111     tree parent;
3112     for (parent = DECL_CONTEXT (current_function_decl);
3113          parent != NULL_TREE;
3114          parent = get_containing_scope (parent))
3115       if (TREE_CODE (parent) == FUNCTION_DECL)
3116         TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent)) = 1;
3117   }
3118
3119   /* We are now committed to emitting code for this function.  Do any
3120      preparation, such as emitting abstract debug info for the inline
3121      before it gets mangled by optimization.  */
3122   if (cgraph_function_possibly_inlined_p (decl))
3123     (*debug_hooks->outlining_inline_function) (decl);
3124
3125   /* Remove any notes we don't need.  That will make iterating
3126      over the instruction sequence faster, and allow the garbage
3127      collector to reclaim the memory used by the notes.  */
3128   remove_unnecessary_notes ();
3129   reorder_blocks ();
3130
3131   ggc_collect ();
3132
3133   /* Initialize some variables used by the optimizers.  */
3134   init_function_for_compilation ();
3135
3136   if (! DECL_DEFER_OUTPUT (decl))
3137     TREE_ASM_WRITTEN (decl) = 1;
3138
3139   /* Now that integrate will no longer see our rtl, we need not
3140      distinguish between the return value of this function and the
3141      return value of called functions.  Also, we can remove all SETs
3142      of subregs of hard registers; they are only here because of
3143      integrate.  Also, we can now initialize pseudos intended to
3144      carry magic hard reg data throughout the function.  */
3145   rtx_equal_function_value_matters = 0;
3146   purge_hard_subreg_sets (get_insns ());
3147
3148   /* Early return if there were errors.  We can run afoul of our
3149      consistency checks, and there's not really much point in fixing them.
3150      Don't return yet if -Wreturn-type; we need to do cleanup_cfg.  */
3151   if (((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
3152       || errorcount || sorrycount)
3153     goto exit_rest_of_compilation;
3154
3155   timevar_push (TV_JUMP);
3156   open_dump_file (DFI_sibling, decl);
3157   insns = get_insns ();
3158   rebuild_jump_labels (insns);
3159   find_exception_handler_labels ();
3160   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3161
3162   delete_unreachable_blocks ();
3163
3164   /* Turn NOTE_INSN_PREDICTIONs into branch predictions.  */
3165   if (flag_guess_branch_prob)
3166     {
3167       timevar_push (TV_BRANCH_PROB);
3168       note_prediction_to_br_prob ();
3169       timevar_pop (TV_BRANCH_PROB);
3170     }
3171
3172   if (flag_optimize_sibling_calls)
3173     rest_of_handle_sibling_calls (insns);
3174
3175   /* We have to issue these warnings now already, because CFG cleanups
3176      further down may destroy the required information.  However, this
3177      must be done after the sibcall optimization pass because the barrier
3178      emitted for noreturn calls that are candidate for the optimization
3179      is folded into the CALL_PLACEHOLDER until after this pass, so the
3180      CFG is inaccurate.  */
3181   check_function_return_warnings ();
3182
3183   timevar_pop (TV_JUMP);
3184
3185   insn_locators_initialize ();
3186   /* Complete generation of exception handling code.  */
3187   if (doing_eh (0))
3188     {
3189       timevar_push (TV_JUMP);
3190       open_dump_file (DFI_eh, decl);
3191
3192       finish_eh_generation ();
3193
3194       close_dump_file (DFI_eh, print_rtl, get_insns ());
3195       timevar_pop (TV_JUMP);
3196     }
3197
3198   /* Delay emitting hard_reg_initial_value sets until after EH landing pad
3199      generation, which might create new sets.  */
3200   emit_initial_value_sets ();
3201
3202 #ifdef FINALIZE_PIC
3203   /* If we are doing position-independent code generation, now
3204      is the time to output special prologues and epilogues.
3205      We do not want to do this earlier, because it just clutters
3206      up inline functions with meaningless insns.  */
3207   if (flag_pic)
3208     FINALIZE_PIC;
3209 #endif
3210
3211   insns = get_insns ();
3212
3213   /* Copy any shared structure that should not be shared.  */
3214   unshare_all_rtl (current_function_decl, insns);
3215
3216 #ifdef SETJMP_VIA_SAVE_AREA
3217   /* This must be performed before virtual register instantiation.
3218      Please be aware the everything in the compiler that can look
3219      at the RTL up to this point must understand that REG_SAVE_AREA
3220      is just like a use of the REG contained inside.  */
3221   if (current_function_calls_alloca)
3222     optimize_save_area_alloca (insns);
3223 #endif
3224
3225   /* Instantiate all virtual registers.  */
3226   instantiate_virtual_regs (current_function_decl, insns);
3227
3228   open_dump_file (DFI_jump, decl);
3229
3230   /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
3231      are initialized and to compute whether control can drop off the end
3232      of the function.  */
3233
3234   timevar_push (TV_JUMP);
3235   /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB.  Do this
3236      before jump optimization switches branch directions.  */
3237   if (flag_guess_branch_prob)
3238     expected_value_to_br_prob ();
3239
3240   reg_scan (insns, max_reg_num (), 0);
3241   rebuild_jump_labels (insns);
3242   find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3243   delete_trivially_dead_insns (insns, max_reg_num ());
3244   if (rtl_dump_file)
3245     dump_flow_info (rtl_dump_file);
3246   cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_PRE_LOOP
3247                | (flag_thread_jumps ? CLEANUP_THREADING : 0));
3248
3249   if (optimize)
3250     {
3251       free_bb_for_insn ();
3252       copy_loop_headers (insns);
3253       find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3254     }
3255   purge_line_number_notes (insns);
3256
3257   timevar_pop (TV_JUMP);
3258   close_dump_file (DFI_jump, print_rtl, insns);
3259
3260   /* Now is when we stop if -fsyntax-only and -Wreturn-type.  */
3261   if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
3262     goto exit_rest_of_compilation;
3263
3264   timevar_push (TV_JUMP);
3265
3266   if (optimize)
3267     cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
3268
3269   if (flag_delete_null_pointer_checks)
3270     rest_of_handle_null_pointer (decl, insns);
3271
3272   /* Jump optimization, and the removal of NULL pointer checks, may
3273      have reduced the number of instructions substantially.  CSE, and
3274      future passes, allocate arrays whose dimensions involve the
3275      maximum instruction UID, so if we can reduce the maximum UID
3276      we'll save big on memory.  */
3277   renumber_insns (rtl_dump_file);
3278   timevar_pop (TV_JUMP);
3279
3280   close_dump_file (DFI_jump, print_rtl_with_bb, insns);
3281
3282   ggc_collect ();
3283
3284   if (optimize > 0)
3285     rest_of_handle_cse (decl, insns);
3286
3287   rest_of_handle_addressof (decl, insns);
3288
3289   ggc_collect ();
3290
3291   if (optimize > 0)
3292     {
3293       if (flag_gcse)
3294         rest_of_handle_gcse (decl, insns);
3295
3296       if (flag_loop_optimize)
3297         rest_of_handle_loop_optimize (decl, insns);
3298
3299       if (flag_gcse)
3300         rest_of_handle_jump_bypass (decl, insns);
3301     }
3302
3303   timevar_push (TV_FLOW);
3304
3305   rest_of_handle_cfg (decl, insns);
3306
3307   if (optimize > 0
3308       || profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3309     {
3310       rest_of_handle_branch_prob (decl, insns);
3311
3312       if (flag_branch_probabilities
3313           && flag_profile_values
3314           && flag_value_profile_transformations)
3315         rest_of_handle_value_profile_transformations (decl, insns);
3316
3317       /* Remove the death notes created for vpt.  */
3318       if (flag_profile_values)
3319         count_or_remove_death_notes (NULL, 1);
3320     }
3321
3322   if (optimize > 0)
3323     rest_of_handle_if_conversion (decl, insns);
3324
3325   if (flag_tracer)
3326     rest_of_handle_tracer (decl, insns);
3327
3328   if (optimize > 0
3329       && (flag_unswitch_loops
3330           || flag_peel_loops
3331           || flag_unroll_loops))
3332     rest_of_handle_loop2 (decl, insns);
3333
3334   if (flag_web)
3335     rest_of_handle_web (decl, insns);
3336
3337   if (flag_rerun_cse_after_loop)
3338     rest_of_handle_cse2 (decl, insns);
3339
3340   cse_not_expected = 1;
3341
3342   rest_of_handle_life (decl, insns);
3343
3344   if (optimize > 0)
3345     rest_of_handle_combine (decl, insns);
3346
3347   if (flag_if_conversion)
3348     rest_of_handle_if_after_combine (decl, insns);
3349
3350   if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
3351     rest_of_handle_regmove (decl, insns);
3352
3353   /* Do unconditional splitting before register allocation to allow machine
3354      description to add extra information not needed previously.  */
3355   split_all_insns (1);
3356
3357 #ifdef OPTIMIZE_MODE_SWITCHING
3358   timevar_push (TV_MODE_SWITCH);
3359
3360   no_new_pseudos = 0;
3361   optimize_mode_switching (NULL);
3362   no_new_pseudos = 1;
3363
3364   timevar_pop (TV_MODE_SWITCH);
3365 #endif
3366
3367   /* Any of the several passes since flow1 will have munged register
3368      lifetime data a bit.  We need it to be up to date for scheduling
3369      (see handling of reg_known_equiv in init_alias_analysis).  */
3370   recompute_reg_usage (insns, !optimize_size);
3371
3372 #ifdef INSN_SCHEDULING
3373   rest_of_handle_sched (decl, insns);
3374 #endif
3375
3376   /* Determine if the current function is a leaf before running reload
3377      since this can impact optimizations done by the prologue and
3378      epilogue thus changing register elimination offsets.  */
3379   current_function_is_leaf = leaf_function_p ();
3380
3381   timevar_push (TV_LOCAL_ALLOC);
3382   open_dump_file (DFI_lreg, decl);
3383
3384   if (flag_new_regalloc)
3385     {
3386       if (rest_of_handle_new_regalloc (decl, insns))
3387         goto exit_rest_of_compilation;
3388     }
3389   else
3390     {
3391       if (rest_of_handle_old_regalloc (decl, insns))
3392         goto exit_rest_of_compilation;
3393     }
3394
3395   ggc_collect ();
3396
3397   open_dump_file (DFI_postreload, decl);
3398
3399   /* Do a very simple CSE pass over just the hard registers.  */
3400   if (optimize > 0)
3401     {
3402       timevar_push (TV_RELOAD_CSE_REGS);
3403       reload_cse_regs (insns);
3404       /* reload_cse_regs can eliminate potentially-trapping MEMs.
3405          Remove any EH edges associated with them.  */
3406       if (flag_non_call_exceptions)
3407         purge_all_dead_edges (0);
3408       timevar_pop (TV_RELOAD_CSE_REGS);
3409     }
3410
3411   close_dump_file (DFI_postreload, print_rtl_with_bb, insns);
3412
3413   /* Re-create the death notes which were deleted during reload.  */
3414   timevar_push (TV_FLOW2);
3415   open_dump_file (DFI_flow2, decl);
3416
3417 #ifdef ENABLE_CHECKING
3418   verify_flow_info ();
3419 #endif
3420
3421   /* If optimizing, then go ahead and split insns now.  */
3422 #ifndef STACK_REGS
3423   if (optimize > 0)
3424 #endif
3425     split_all_insns (0);
3426
3427     if (flag_branch_target_load_optimize)
3428       {
3429         open_dump_file (DFI_branch_target_load, decl);
3430
3431         branch_target_load_optimize (insns, false);
3432
3433         close_dump_file (DFI_branch_target_load, print_rtl_with_bb, insns);
3434
3435         ggc_collect ();
3436       }
3437
3438   if (optimize)
3439     cleanup_cfg (CLEANUP_EXPENSIVE);
3440
3441   /* On some machines, the prologue and epilogue code, or parts thereof,
3442      can be represented as RTL.  Doing so lets us schedule insns between
3443      it and the rest of the code and also allows delayed branch
3444      scheduling to operate in the epilogue.  */
3445   thread_prologue_and_epilogue_insns (insns);
3446   epilogue_completed = 1;
3447
3448   if (optimize)
3449     {
3450       life_analysis (insns, rtl_dump_file, PROP_POSTRELOAD);
3451       cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE
3452                    | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3453
3454       /* This is kind of a heuristic.  We need to run combine_stack_adjustments
3455          even for machines with possibly nonzero RETURN_POPS_ARGS
3456          and ACCUMULATE_OUTGOING_ARGS.  We expect that only ports having
3457          push instructions will have popping returns.  */
3458 #ifndef PUSH_ROUNDING
3459       if (!ACCUMULATE_OUTGOING_ARGS)
3460 #endif
3461         combine_stack_adjustments ();
3462
3463       ggc_collect ();
3464     }
3465
3466   flow2_completed = 1;
3467
3468   close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
3469   timevar_pop (TV_FLOW2);
3470
3471 #ifdef HAVE_peephole2
3472   if (optimize > 0 && flag_peephole2)
3473     {
3474       timevar_push (TV_PEEPHOLE2);
3475       open_dump_file (DFI_peephole2, decl);
3476
3477       peephole2_optimize (rtl_dump_file);
3478
3479       close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
3480       timevar_pop (TV_PEEPHOLE2);
3481     }
3482 #endif
3483
3484   open_dump_file (DFI_ce3, decl);
3485   if (optimize)
3486     /* Last attempt to optimize CFG, as scheduling, peepholing and insn
3487        splitting possibly introduced more crossjumping opportunities.  */
3488     cleanup_cfg (CLEANUP_EXPENSIVE
3489                  | CLEANUP_UPDATE_LIFE 
3490                  | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0));
3491   if (flag_if_conversion2)
3492     {
3493       timevar_push (TV_IFCVT2);
3494
3495       if_convert (1);
3496
3497       timevar_pop (TV_IFCVT2);
3498     }
3499   close_dump_file (DFI_ce3, print_rtl_with_bb, insns);
3500
3501   if (optimize > 0)
3502     {
3503       if (flag_rename_registers || flag_cprop_registers)
3504         rest_of_handle_regrename (decl, insns);
3505
3506       rest_of_handle_reorder_blocks (decl, insns);
3507     }
3508
3509   if (flag_branch_target_load_optimize2)
3510     {
3511       /* Leave this a warning for now so that it is possible to experiment
3512          with running this pass twice.  In 3.6, we should either make this
3513          an error, or use separate dump files.  */
3514       if (flag_branch_target_load_optimize)
3515         warning ("branch target register load optimization is not intended "
3516                  "to be run twice");
3517
3518       open_dump_file (DFI_branch_target_load, decl);
3519
3520       branch_target_load_optimize (insns, true);
3521
3522       close_dump_file (DFI_branch_target_load, print_rtl_with_bb, insns);
3523
3524       ggc_collect ();
3525     }
3526
3527 #ifdef INSN_SCHEDULING
3528   if (optimize > 0 && flag_schedule_insns_after_reload)
3529     rest_of_handle_sched2 (decl, insns);
3530 #endif
3531
3532 #ifdef LEAF_REGISTERS
3533   current_function_uses_only_leaf_regs
3534     = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
3535 #endif
3536
3537 #ifdef STACK_REGS
3538   rest_of_handle_stack_regs (decl, insns);
3539 #endif
3540
3541   compute_alignments ();
3542
3543   if (flag_var_tracking)
3544     rest_of_handle_variable_tracking (decl, insns);
3545
3546   /* CFG is no longer maintained up-to-date.  */
3547   free_bb_for_insn ();
3548
3549   if (targetm.machine_dependent_reorg != 0)
3550     rest_of_handle_machine_reorg (decl, insns);
3551
3552   purge_line_number_notes (insns);
3553   cleanup_barriers ();
3554
3555 #ifdef DELAY_SLOTS
3556   if (optimize > 0 && flag_delayed_branch)
3557     rest_of_handle_delay_slots (decl, insns);
3558 #endif
3559
3560 #if defined (HAVE_ATTR_length) && !defined (STACK_REGS)
3561   timevar_push (TV_SHORTEN_BRANCH);
3562   split_all_insns_noflow ();
3563   timevar_pop (TV_SHORTEN_BRANCH);
3564 #endif
3565
3566   convert_to_eh_region_ranges ();
3567
3568   /* Shorten branches.  */
3569   timevar_push (TV_SHORTEN_BRANCH);
3570   shorten_branches (get_insns ());
3571   timevar_pop (TV_SHORTEN_BRANCH);
3572
3573   set_nothrow_function_flags ();
3574   if (current_function_nothrow)
3575     /* Now we know that this can't throw; set the flag for the benefit
3576        of other functions later in this translation unit.  */
3577     TREE_NOTHROW (current_function_decl) = 1;
3578
3579   rest_of_handle_final (decl, insns);
3580
3581   /* Write DBX symbols if requested.  */
3582
3583   /* Note that for those inline functions where we don't initially
3584      know for certain that we will be generating an out-of-line copy,
3585      the first invocation of this routine (rest_of_compilation) will
3586      skip over this code by doing a `goto exit_rest_of_compilation;'.
3587      Later on, wrapup_global_declarations will (indirectly) call
3588      rest_of_compilation again for those inline functions that need
3589      to have out-of-line copies generated.  During that call, we
3590      *will* be routed past here.  */
3591
3592   timevar_push (TV_SYMOUT);
3593   (*debug_hooks->function_decl) (decl);
3594   timevar_pop (TV_SYMOUT);
3595
3596  exit_rest_of_compilation:
3597
3598   coverage_end_function ();
3599
3600   /* In case the function was not output,
3601      don't leave any temporary anonymous types
3602      queued up for sdb output.  */
3603 #ifdef SDB_DEBUGGING_INFO
3604   if (write_symbols == SDB_DEBUG)
3605     sdbout_types (NULL_TREE);
3606 #endif
3607
3608   reload_completed = 0;
3609   epilogue_completed = 0;
3610   flow2_completed = 0;
3611   no_new_pseudos = 0;
3612
3613   timevar_push (TV_FINAL);
3614
3615   /* Clear out the insn_length contents now that they are no
3616      longer valid.  */
3617   init_insn_lengths ();
3618
3619   /* Show no temporary slots allocated.  */
3620   init_temp_slots ();
3621
3622   free_basic_block_vars (0);
3623   free_bb_for_insn ();
3624
3625   timevar_pop (TV_FINAL);
3626
3627   if ((*targetm.binds_local_p) (current_function_decl))
3628     {
3629       int pref = cfun->preferred_stack_boundary;
3630       if (cfun->recursive_call_emit
3631           && cfun->stack_alignment_needed > cfun->preferred_stack_boundary)
3632         pref = cfun->stack_alignment_needed;
3633       cgraph_rtl_info (current_function_decl)->preferred_incoming_stack_boundary
3634         = pref;
3635     }
3636
3637   /* Make sure volatile mem refs aren't considered valid operands for
3638      arithmetic insns.  We must call this here if this is a nested inline
3639      function, since the above code leaves us in the init_recog state
3640      (from final.c), and the function context push/pop code does not
3641      save/restore volatile_ok.
3642
3643      ??? Maybe it isn't necessary for expand_start_function to call this
3644      anymore if we do it here?  */
3645
3646   init_recog_no_volatile ();
3647
3648   /* We're done with this function.  Free up memory if we can.  */
3649   free_after_parsing (cfun);
3650   if (! DECL_DEFER_OUTPUT (decl))
3651     {
3652       free_after_compilation (cfun);
3653       DECL_SAVED_INSNS (decl) = 0;
3654     }
3655   cfun = 0;
3656
3657   ggc_collect ();
3658
3659   timevar_pop (TV_REST_OF_COMPILATION);
3660 }
3661
3662 /* Display help for target options.  */
3663 void
3664 display_target_options (void)
3665 {
3666   int undoc, i;
3667   static bool displayed = false;
3668
3669   /* Avoid double printing for --help --target-help.  */
3670   if (displayed)
3671     return;
3672
3673   displayed = true;
3674
3675   if (ARRAY_SIZE (target_switches) > 1
3676 #ifdef TARGET_OPTIONS
3677       || ARRAY_SIZE (target_options) > 1
3678 #endif
3679       )
3680     {
3681       int doc = 0;
3682
3683       undoc = 0;
3684
3685       printf (_("\nTarget specific options:\n"));
3686
3687       for (i = ARRAY_SIZE (target_switches); i--;)
3688         {
3689           const char *option      = target_switches[i].name;
3690           const char *description = target_switches[i].description;
3691
3692           if (option == NULL || *option == 0)
3693             continue;
3694           else if (description == NULL)
3695             {
3696               undoc = 1;
3697
3698               if (extra_warnings)
3699                 printf (_("  -m%-23s [undocumented]\n"), option);
3700             }
3701           else if (*description != 0)
3702             doc += printf ("  -m%-23s %s\n", option, _(description));
3703         }
3704
3705 #ifdef TARGET_OPTIONS
3706       for (i = ARRAY_SIZE (target_options); i--;)
3707         {
3708           const char *option      = target_options[i].prefix;
3709           const char *description = target_options[i].description;
3710
3711           if (option == NULL || *option == 0)
3712             continue;
3713           else if (description == NULL)
3714             {
3715               undoc = 1;
3716
3717               if (extra_warnings)
3718                 printf (_("  -m%-23s [undocumented]\n"), option);
3719             }
3720           else if (*description != 0)
3721             doc += printf ("  -m%-23s %s\n", option, _(description));
3722         }
3723 #endif
3724       if (undoc)
3725         {
3726           if (doc)
3727             printf (_("\nThere are undocumented target specific options as well.\n"));
3728           else
3729             printf (_("  They exist, but they are not documented.\n"));
3730         }
3731     }
3732 }
3733
3734 /* Parse a -d... command line switch.  */
3735
3736 void
3737 decode_d_option (const char *arg)
3738 {
3739   int i, c, matched;
3740
3741   while (*arg)
3742     switch (c = *arg++)
3743       {
3744       case 'a':
3745         for (i = 0; i < (int) DFI_MAX; ++i)
3746           dump_file[i].enabled = 1;
3747         break;
3748       case 'A':
3749         flag_debug_asm = 1;
3750         break;
3751       case 'p':
3752         flag_print_asm_name = 1;
3753         break;
3754       case 'P':
3755         flag_dump_rtl_in_asm = 1;
3756         flag_print_asm_name = 1;
3757         break;
3758       case 'v':
3759         graph_dump_format = vcg;
3760         break;
3761       case 'x':
3762         rtl_dump_and_exit = 1;
3763         break;
3764       case 'y':
3765         set_yydebug = 1;
3766         break;
3767       case 'D': /* These are handled by the preprocessor.  */
3768       case 'I':
3769         break;
3770       case 'H':
3771         setup_core_dumping();
3772         break;
3773
3774       default:
3775         matched = 0;
3776         for (i = 0; i < (int) DFI_MAX; ++i)
3777           if (c == dump_file[i].debug_switch)
3778             {
3779               dump_file[i].enabled = 1;
3780               matched = 1;
3781             }
3782
3783         if (! matched)
3784           warning ("unrecognized gcc debugging option: %c", c);
3785         break;
3786       }
3787 }
3788
3789 /* Indexed by enum debug_info_type.  */
3790 const char *const debug_type_names[] =
3791 {
3792   "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
3793 };
3794
3795 /* Decode -m switches.  */
3796 /* Decode the switch -mNAME.  */
3797
3798 void
3799 set_target_switch (const char *name)
3800 {
3801   size_t j;
3802   int valid_target_option = 0;
3803
3804   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
3805     if (!strcmp (target_switches[j].name, name))
3806       {
3807         if (target_switches[j].value < 0)
3808           target_flags &= ~-target_switches[j].value;
3809         else
3810           target_flags |= target_switches[j].value;
3811         if (name[0] != 0)
3812           {
3813             if (target_switches[j].value < 0)
3814               target_flags_explicit |= -target_switches[j].value;
3815             else
3816               target_flags_explicit |= target_switches[j].value;
3817           }
3818         valid_target_option = 1;
3819       }
3820
3821 #ifdef TARGET_OPTIONS
3822   if (!valid_target_option)
3823     for (j = 0; j < ARRAY_SIZE (target_options); j++)
3824       {
3825         int len = strlen (target_options[j].prefix);
3826         if (target_options[j].value)
3827           {
3828             if (!strcmp (target_options[j].prefix, name))
3829               {
3830                 *target_options[j].variable = target_options[j].value;
3831                 valid_target_option = 1;
3832               }
3833           }
3834         else
3835           {
3836             if (!strncmp (target_options[j].prefix, name, len))
3837               {
3838                 *target_options[j].variable = name + len;
3839                 valid_target_option = 1;
3840               }
3841           }
3842       }
3843 #endif
3844
3845   if (!valid_target_option)
3846     error ("invalid option `%s'", name);
3847 }
3848
3849 /* Print version information to FILE.
3850    Each line begins with INDENT (for the case where FILE is the
3851    assembler output file).  */
3852
3853 void
3854 print_version (FILE *file, const char *indent)
3855 {
3856 #ifndef __VERSION__
3857 #define __VERSION__ "[?]"
3858 #endif
3859   fnotice (file,
3860 #ifdef __GNUC__
3861            "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
3862 #else
3863            "%s%s%s version %s (%s) compiled by CC.\n"
3864 #endif
3865            , indent, *indent != 0 ? " " : "",
3866            lang_hooks.name, version_string, TARGET_NAME,
3867            indent, __VERSION__);
3868   fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
3869            indent, *indent != 0 ? " " : "",
3870            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
3871 }
3872
3873 /* Print an option value and return the adjusted position in the line.
3874    ??? We don't handle error returns from fprintf (disk full); presumably
3875    other code will catch a disk full though.  */
3876
3877 static int
3878 print_single_switch (FILE *file, int pos, int max,
3879                      const char *indent, const char *sep, const char *term,
3880                      const char *type, const char *name)
3881 {
3882   /* The ultrix fprintf returns 0 on success, so compute the result we want
3883      here since we need it for the following test.  */
3884   int len = strlen (sep) + strlen (type) + strlen (name);
3885
3886   if (pos != 0
3887       && pos + len > max)
3888     {
3889       fprintf (file, "%s", term);
3890       pos = 0;
3891     }
3892   if (pos == 0)
3893     {
3894       fprintf (file, "%s", indent);
3895       pos = strlen (indent);
3896     }
3897   fprintf (file, "%s%s%s", sep, type, name);
3898   pos += len;
3899   return pos;
3900 }
3901
3902 /* Print active target switches to FILE.
3903    POS is the current cursor position and MAX is the size of a "line".
3904    Each line begins with INDENT and ends with TERM.
3905    Each switch is separated from the next by SEP.  */
3906
3907 static void
3908 print_switch_values (FILE *file, int pos, int max,
3909                      const char *indent, const char *sep, const char *term)
3910 {
3911   size_t j;
3912   const char **p;
3913
3914   /* Fill in the -frandom-seed option, if the user didn't pass it, so
3915      that it can be printed below.  This helps reproducibility.  */
3916   randomize ();
3917
3918   /* Print the options as passed.  */
3919   pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
3920                              _("options passed: "), "");
3921
3922   for (p = &save_argv[1]; *p != NULL; p++)
3923     if (**p == '-')
3924       {
3925         /* Ignore these.  */
3926         if (strcmp (*p, "-o") == 0)
3927           {
3928             if (p[1] != NULL)
3929               p++;
3930             continue;
3931           }
3932         if (strcmp (*p, "-quiet") == 0)
3933           continue;
3934         if (strcmp (*p, "-version") == 0)
3935           continue;
3936         if ((*p)[1] == 'd')
3937           continue;
3938
3939         pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
3940       }
3941   if (pos > 0)
3942     fprintf (file, "%s", term);
3943
3944   /* Print the -f and -m options that have been enabled.
3945      We don't handle language specific options but printing argv
3946      should suffice.  */
3947
3948   pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
3949                              _("options enabled: "), "");
3950
3951   for (j = 0; j < ARRAY_SIZE (f_options); j++)
3952     if (*f_options[j].variable == f_options[j].on_value)
3953       pos = print_single_switch (file, pos, max, indent, sep, term,
3954                                  "-f", f_options[j].string);
3955
3956   /* Print target specific options.  */
3957
3958   for (j = 0; j < ARRAY_SIZE (target_switches); j++)
3959     if (target_switches[j].name[0] != '\0'
3960         && target_switches[j].value > 0
3961         && ((target_switches[j].value & target_flags)
3962             == target_switches[j].value))
3963       {
3964         pos = print_single_switch (file, pos, max, indent, sep, term,
3965                                    "-m", target_switches[j].name);
3966       }
3967
3968 #ifdef TARGET_OPTIONS
3969   for (j = 0; j < ARRAY_SIZE (target_options); j++)
3970     if (*target_options[j].variable != NULL)
3971       {
3972         char prefix[256];
3973         sprintf (prefix, "-m%s", target_options[j].prefix);
3974         pos = print_single_switch (file, pos, max, indent, sep, term,
3975                                    prefix, *target_options[j].variable);
3976       }
3977 #endif
3978
3979   fprintf (file, "%s", term);
3980 }
3981
3982 /* Open assembly code output file.  Do this even if -fsyntax-only is
3983    on, because then the driver will have provided the name of a
3984    temporary file or bit bucket for us.  NAME is the file specified on
3985    the command line, possibly NULL.  */
3986 static void
3987 init_asm_output (const char *name)
3988 {
3989   if (name == NULL && asm_file_name == 0)
3990     asm_out_file = stdout;
3991   else
3992     {
3993       if (asm_file_name == 0)
3994         {
3995           int len = strlen (dump_base_name);
3996           char *dumpname = xmalloc (len + 6);
3997           memcpy (dumpname, dump_base_name, len + 1);
3998           strip_off_ending (dumpname, len);
3999           strcat (dumpname, ".s");
4000           asm_file_name = dumpname;
4001         }
4002       if (!strcmp (asm_file_name, "-"))
4003         asm_out_file = stdout;
4004       else
4005         asm_out_file = fopen (asm_file_name, "w+");
4006       if (asm_out_file == 0)
4007         fatal_error ("can't open %s for writing: %m", asm_file_name);
4008     }
4009
4010 #ifdef IO_BUFFER_SIZE
4011   setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
4012            _IOFBF, IO_BUFFER_SIZE);
4013 #endif
4014
4015   if (!flag_syntax_only)
4016     {
4017       targetm.asm_out.file_start ();
4018
4019 #ifdef ASM_COMMENT_START
4020       if (flag_verbose_asm)
4021         {
4022           /* Print the list of options in effect.  */
4023           print_version (asm_out_file, ASM_COMMENT_START);
4024           print_switch_values (asm_out_file, 0, MAX_LINE,
4025                                ASM_COMMENT_START, " ", "\n");
4026           /* Add a blank line here so it appears in assembler output but not
4027              screen output.  */
4028           fprintf (asm_out_file, "\n");
4029         }
4030 #endif
4031     }
4032 }
4033
4034 /* Default version of get_pch_validity.
4035    By default, every flag difference is fatal; that will be mostly right for
4036    most targets, but completely right for very few.  */
4037
4038 void *
4039 default_get_pch_validity (size_t *len)
4040 {
4041 #ifdef TARGET_OPTIONS
4042   size_t i;
4043 #endif
4044   char *result, *r;
4045
4046   *len = sizeof (target_flags) + 2;
4047 #ifdef TARGET_OPTIONS
4048   for (i = 0; i < ARRAY_SIZE (target_options); i++)
4049     {
4050       *len += 1;
4051       if (*target_options[i].variable)
4052         *len += strlen (*target_options[i].variable);
4053     }
4054 #endif
4055
4056   result = r = xmalloc (*len);
4057   r[0] = flag_pic;
4058   r[1] = flag_pie;
4059   r += 2;
4060   memcpy (r, &target_flags, sizeof (target_flags));
4061   r += sizeof (target_flags);
4062
4063 #ifdef TARGET_OPTIONS
4064   for (i = 0; i < ARRAY_SIZE (target_options); i++)
4065     {
4066       const char *str = *target_options[i].variable;
4067       size_t l;
4068       if (! str)
4069         str = "";
4070       l = strlen (str) + 1;
4071       memcpy (r, str, l);
4072       r += l;
4073     }
4074 #endif
4075
4076   return result;
4077 }
4078
4079 /* Default version of pch_valid_p.  */
4080
4081 const char *
4082 default_pch_valid_p (const void *data_p, size_t len)
4083 {
4084   const char *data = (const char *)data_p;
4085   const char *flag_that_differs = NULL;
4086   size_t i;
4087
4088   /* -fpic and -fpie also usually make a PCH invalid.  */
4089   if (data[0] != flag_pic)
4090     return _("created and used with different settings of -fpic");
4091   if (data[1] != flag_pie)
4092     return _("created and used with different settings of -fpie");
4093   data += 2;
4094
4095   /* Check target_flags.  */
4096   if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
4097     {
4098       for (i = 0; i < ARRAY_SIZE (target_switches); i++)
4099         {
4100           int bits;
4101           int tf;
4102
4103           memcpy (&tf, data, sizeof (target_flags));
4104
4105           bits = target_switches[i].value;
4106           if (bits < 0)
4107             bits = -bits;
4108           if ((target_flags & bits) != (tf & bits))
4109             {
4110               flag_that_differs = target_switches[i].name;
4111               goto make_message;
4112             }
4113         }
4114       abort ();
4115     }
4116   data += sizeof (target_flags);
4117   len -= sizeof (target_flags);
4118
4119   /* Check string options.  */
4120 #ifdef TARGET_OPTIONS
4121   for (i = 0; i < ARRAY_SIZE (target_options); i++)
4122     {
4123       const char *str = *target_options[i].variable;
4124       size_t l;
4125       if (! str)
4126         str = "";
4127       l = strlen (str) + 1;
4128       if (len < l || memcmp (data, str, l) != 0)
4129         {
4130           flag_that_differs = target_options[i].prefix;
4131           goto make_message;
4132         }
4133       data += l;
4134       len -= l;
4135     }
4136 #endif
4137
4138   return NULL;
4139
4140  make_message:
4141   {
4142     char *r;
4143     asprintf (&r, _("created and used with differing settings of `-m%s'"),
4144                   flag_that_differs);
4145     if (r == NULL)
4146       return _("out of memory");
4147     return r;
4148   }
4149 }
4150
4151 /* Default tree printer.   Handles declarations only.  */
4152 static bool
4153 default_tree_printer (pretty_printer * pp, text_info *text)
4154 {
4155   switch (*text->format_spec)
4156     {
4157     case 'D':
4158     case 'F':
4159     case 'T':
4160       {
4161         tree t = va_arg (*text->args_ptr, tree);
4162         const char *n = DECL_NAME (t)
4163           ? (*lang_hooks.decl_printable_name) (t, 2)
4164           : "<anonymous>";
4165         pp_string (pp, n);
4166       }
4167       return true;
4168
4169     default:
4170       return false;
4171     }
4172 }
4173
4174 /* Initialization of the front end environment, before command line
4175    options are parsed.  Signal handlers, internationalization etc.
4176    ARGV0 is main's argv[0].  */
4177 static void
4178 general_init (const char *argv0)
4179 {
4180   const char *p;
4181
4182   p = argv0 + strlen (argv0);
4183   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
4184     --p;
4185   progname = p;
4186
4187   xmalloc_set_program_name (progname);
4188
4189   hex_init ();
4190
4191   gcc_init_libintl ();
4192
4193   /* Initialize the diagnostics reporting machinery, so option parsing
4194      can give warnings and errors.  */
4195   diagnostic_initialize (global_dc);
4196   /* Set a default printer.  Language specific initializations will
4197      override it later.  */
4198   pp_format_decoder (global_dc->printer) = &default_tree_printer;
4199
4200   /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages.  */
4201 #ifdef SIGSEGV
4202   signal (SIGSEGV, crash_signal);
4203 #endif
4204 #ifdef SIGILL
4205   signal (SIGILL, crash_signal);
4206 #endif
4207 #ifdef SIGBUS
4208   signal (SIGBUS, crash_signal);
4209 #endif
4210 #ifdef SIGABRT
4211   signal (SIGABRT, crash_signal);
4212 #endif
4213 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
4214   signal (SIGIOT, crash_signal);
4215 #endif
4216 #ifdef SIGFPE
4217   signal (SIGFPE, crash_signal);
4218 #endif
4219
4220   /* Other host-specific signal setup.  */
4221   (*host_hooks.extra_signals)();
4222
4223   /* Initialize the garbage-collector, string pools and tree type hash
4224      table.  */
4225   init_ggc ();
4226   init_stringpool ();
4227   linemap_init (&line_table);
4228   init_ttree ();
4229
4230   /* Initialize register usage now so switches may override.  */
4231   init_reg_sets ();
4232
4233   /* Register the language-independent parameters.  */
4234   add_params (lang_independent_params, LAST_PARAM);
4235
4236   /* This must be done after add_params but before argument processing.  */
4237   init_ggc_heuristics();
4238 }
4239
4240 /* Process the options that have been parsed.  */
4241 static void
4242 process_options (void)
4243 {
4244   /* Allow the front end to perform consistency checks and do further
4245      initialization based on the command line options.  This hook also
4246      sets the original filename if appropriate (e.g. foo.i -> foo.c)
4247      so we can correctly initialize debug output.  */
4248   no_backend = (*lang_hooks.post_options) (&main_input_filename);
4249   input_filename = main_input_filename;
4250
4251 #ifdef OVERRIDE_OPTIONS
4252   /* Some machines may reject certain combinations of options.  */
4253   OVERRIDE_OPTIONS;
4254 #endif
4255
4256   /* Set aux_base_name if not already set.  */
4257   if (aux_base_name)
4258     ;
4259   else if (main_input_filename)
4260     {
4261       char *name = xstrdup (lbasename (main_input_filename));
4262
4263       strip_off_ending (name, strlen (name));
4264       aux_base_name = name;
4265     }
4266   else
4267     aux_base_name = "gccaux";
4268
4269   /* Set up the align_*_log variables, defaulting them to 1 if they
4270      were still unset.  */
4271   if (align_loops <= 0) align_loops = 1;
4272   if (align_loops_max_skip > align_loops || !align_loops)
4273     align_loops_max_skip = align_loops - 1;
4274   align_loops_log = floor_log2 (align_loops * 2 - 1);
4275   if (align_jumps <= 0) align_jumps = 1;
4276   if (align_jumps_max_skip > align_jumps || !align_jumps)
4277     align_jumps_max_skip = align_jumps - 1;
4278   align_jumps_log = floor_log2 (align_jumps * 2 - 1);
4279   if (align_labels <= 0) align_labels = 1;
4280   align_labels_log = floor_log2 (align_labels * 2 - 1);
4281   if (align_labels_max_skip > align_labels || !align_labels)
4282     align_labels_max_skip = align_labels - 1;
4283   if (align_functions <= 0) align_functions = 1;
4284   align_functions_log = floor_log2 (align_functions * 2 - 1);
4285
4286   /* Unrolling all loops implies that standard loop unrolling must also
4287      be done.  */
4288   if (flag_unroll_all_loops)
4289     flag_unroll_loops = 1;
4290
4291   if (flag_unroll_loops)
4292     {
4293       flag_old_unroll_loops = 0;
4294       flag_old_unroll_all_loops = 0;
4295     }
4296
4297   if (flag_old_unroll_all_loops)
4298     flag_old_unroll_loops = 1;
4299
4300   /* Old loop unrolling requires that strength_reduction be on also.  Silently
4301      turn on strength reduction here if it isn't already on.  Also, the loop
4302      unrolling code assumes that cse will be run after loop, so that must
4303      be turned on also.  */
4304   if (flag_old_unroll_loops)
4305     {
4306       flag_strength_reduce = 1;
4307       flag_rerun_cse_after_loop = 1;
4308     }
4309   if (flag_unroll_loops || flag_peel_loops)
4310     flag_rerun_cse_after_loop = 1;
4311
4312   if (flag_non_call_exceptions)
4313     flag_asynchronous_unwind_tables = 1;
4314   if (flag_asynchronous_unwind_tables)
4315     flag_unwind_tables = 1;
4316
4317   /* Disable unit-at-a-time mode for frontends not supporting callgraph
4318      interface.  */
4319   if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
4320     flag_unit_at_a_time = 0;
4321
4322   if (flag_value_profile_transformations)
4323     flag_profile_values = 1;
4324
4325   /* Warn about options that are not supported on this machine.  */
4326 #ifndef INSN_SCHEDULING
4327   if (flag_schedule_insns || flag_schedule_insns_after_reload)
4328     warning ("instruction scheduling not supported on this target machine");
4329 #endif
4330 #ifndef DELAY_SLOTS
4331   if (flag_delayed_branch)
4332     warning ("this target machine does not have delayed branches");
4333 #endif
4334
4335   user_label_prefix = USER_LABEL_PREFIX;
4336   if (flag_leading_underscore != -1)
4337     {
4338       /* If the default prefix is more complicated than "" or "_",
4339          issue a warning and ignore this option.  */
4340       if (user_label_prefix[0] == 0 ||
4341           (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4342         {
4343           user_label_prefix = flag_leading_underscore ? "_" : "";
4344         }
4345       else
4346         warning ("-f%sleading-underscore not supported on this target machine",
4347                  flag_leading_underscore ? "" : "no-");
4348     }
4349
4350   /* If we are in verbose mode, write out the version and maybe all the
4351      option flags in use.  */
4352   if (version_flag)
4353     {
4354       print_version (stderr, "");
4355       if (! quiet_flag)
4356         print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4357     }
4358
4359   if (flag_syntax_only)
4360     {
4361       write_symbols = NO_DEBUG;
4362       profile_flag = 0;
4363     }
4364
4365   /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
4366      level is 0.  */
4367   if (debug_info_level == DINFO_LEVEL_NONE)
4368     write_symbols = NO_DEBUG;
4369
4370   /* Now we know write_symbols, set up the debug hooks based on it.
4371      By default we do nothing for debug output.  */
4372   if (write_symbols == NO_DEBUG)
4373     debug_hooks = &do_nothing_debug_hooks;
4374 #if defined(DBX_DEBUGGING_INFO)
4375   else if (write_symbols == DBX_DEBUG)
4376     debug_hooks = &dbx_debug_hooks;
4377 #endif
4378 #if defined(XCOFF_DEBUGGING_INFO)
4379   else if (write_symbols == XCOFF_DEBUG)
4380     debug_hooks = &xcoff_debug_hooks;
4381 #endif
4382 #ifdef SDB_DEBUGGING_INFO
4383   else if (write_symbols == SDB_DEBUG)
4384     debug_hooks = &sdb_debug_hooks;
4385 #endif
4386 #ifdef DWARF2_DEBUGGING_INFO
4387   else if (write_symbols == DWARF2_DEBUG)
4388     debug_hooks = &dwarf2_debug_hooks;
4389 #endif
4390 #ifdef VMS_DEBUGGING_INFO
4391   else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
4392     debug_hooks = &vmsdbg_debug_hooks;
4393 #endif
4394   else
4395     error ("target system does not support the \"%s\" debug format",
4396            debug_type_names[write_symbols]);
4397
4398   /* Now we know which debug output will be used so we can set
4399      flag_var_tracking if user has not specified it.  */
4400   if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
4401     {
4402       /* User has not specified -f(no-)var-tracking so autodetect it.  */
4403       flag_var_tracking
4404         = (optimize >= 1 && debug_info_level >= DINFO_LEVEL_NORMAL
4405            && debug_hooks->var_location != do_nothing_debug_hooks.var_location);
4406     }
4407
4408   /* If auxiliary info generation is desired, open the output file.
4409      This goes in the same directory as the source file--unlike
4410      all the other output files.  */
4411   if (flag_gen_aux_info)
4412     {
4413       aux_info_file = fopen (aux_info_file_name, "w");
4414       if (aux_info_file == 0)
4415         fatal_error ("can't open %s: %m", aux_info_file_name);
4416     }
4417
4418   if (! targetm.have_named_sections)
4419     {
4420       if (flag_function_sections)
4421         {
4422           warning ("-ffunction-sections not supported for this target");
4423           flag_function_sections = 0;
4424         }
4425       if (flag_data_sections)
4426         {
4427           warning ("-fdata-sections not supported for this target");
4428           flag_data_sections = 0;
4429         }
4430     }
4431
4432   if (flag_function_sections && profile_flag)
4433     {
4434       warning ("-ffunction-sections disabled; it makes profiling impossible");
4435       flag_function_sections = 0;
4436     }
4437
4438 #ifndef HAVE_prefetch
4439   if (flag_prefetch_loop_arrays)
4440     {
4441       warning ("-fprefetch-loop-arrays not supported for this target");
4442       flag_prefetch_loop_arrays = 0;
4443     }
4444 #else
4445   if (flag_prefetch_loop_arrays && !HAVE_prefetch)
4446     {
4447       warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
4448       flag_prefetch_loop_arrays = 0;
4449     }
4450 #endif
4451
4452   /* This combination of options isn't handled for i386 targets and doesn't
4453      make much sense anyway, so don't allow it.  */
4454   if (flag_prefetch_loop_arrays && optimize_size)
4455     {
4456       warning ("-fprefetch-loop-arrays is not supported with -Os");
4457       flag_prefetch_loop_arrays = 0;
4458     }
4459
4460 #ifndef OBJECT_FORMAT_ELF
4461   if (flag_function_sections && write_symbols != NO_DEBUG)
4462     warning ("-ffunction-sections may affect debugging on some targets");
4463 #endif
4464
4465     /* The presence of IEEE signaling NaNs, implies all math can trap.  */
4466     if (flag_signaling_nans)
4467       flag_trapping_math = 1;
4468 }
4469
4470 /* Initialize the compiler back end.  */
4471 static void
4472 backend_init (void)
4473 {
4474   init_adjust_machine_modes ();
4475
4476   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
4477                   || debug_info_level == DINFO_LEVEL_VERBOSE
4478 #ifdef VMS_DEBUGGING_INFO
4479                     /* Enable line number info for traceback.  */
4480                     || debug_info_level > DINFO_LEVEL_NONE
4481 #endif
4482                     || flag_test_coverage
4483                     || warn_notreached);
4484
4485   init_regs ();
4486   init_fake_stack_mems ();
4487   init_alias_once ();
4488   init_loop ();
4489   init_reload ();
4490   init_function_once ();
4491   init_varasm_once ();
4492
4493   /* The following initialization functions need to generate rtl, so
4494      provide a dummy function context for them.  */
4495   init_dummy_function_start ();
4496   init_expmed ();
4497   if (flag_caller_saves)
4498     init_caller_save ();
4499   expand_dummy_function_end ();
4500 }
4501
4502 /* Language-dependent initialization.  Returns nonzero on success.  */
4503 static int
4504 lang_dependent_init (const char *name)
4505 {
4506   if (dump_base_name == 0)
4507     dump_base_name = name ? name : "gccdump";
4508
4509   /* Other front-end initialization.  */
4510   if ((*lang_hooks.init) () == 0)
4511     return 0;
4512
4513   init_asm_output (name);
4514
4515   /* These create various _DECL nodes, so need to be called after the
4516      front end is initialized.  */
4517   init_eh ();
4518   init_optabs ();
4519
4520   /* The following initialization functions need to generate rtl, so
4521      provide a dummy function context for them.  */
4522   init_dummy_function_start ();
4523   init_expr_once ();
4524   expand_dummy_function_end ();
4525
4526   /* If dbx symbol table desired, initialize writing it and output the
4527      predefined types.  */
4528   timevar_push (TV_SYMOUT);
4529
4530 #ifdef DWARF2_UNWIND_INFO
4531   if (dwarf2out_do_frame ())
4532     dwarf2out_frame_init ();
4533 #endif
4534
4535   /* Now we have the correct original filename, we can initialize
4536      debug output.  */
4537   (*debug_hooks->init) (name);
4538
4539   timevar_pop (TV_SYMOUT);
4540
4541   return 1;
4542 }
4543
4544 /* Clean up: close opened files, etc.  */
4545
4546 static void
4547 finalize (void)
4548 {
4549   /* Close the dump files.  */
4550   if (flag_gen_aux_info)
4551     {
4552       fclose (aux_info_file);
4553       if (errorcount)
4554         unlink (aux_info_file_name);
4555     }
4556
4557   /* Close non-debugging input and output files.  Take special care to note
4558      whether fclose returns an error, since the pages might still be on the
4559      buffer chain while the file is open.  */
4560
4561   if (asm_out_file)
4562     {
4563       if (ferror (asm_out_file) != 0)
4564         fatal_error ("error writing to %s: %m", asm_file_name);
4565       if (fclose (asm_out_file) != 0)
4566         fatal_error ("error closing %s: %m", asm_file_name);
4567     }
4568
4569   /* Do whatever is necessary to finish printing the graphs.  */
4570   if (graph_dump_format != no_graph)
4571     {
4572       int i;
4573
4574       for (i = 0; i < (int) DFI_MAX; ++i)
4575         if (dump_file[i].initialized && dump_file[i].graph_dump_p)
4576           {
4577             char seq[16];
4578             char *suffix;
4579
4580             sprintf (seq, DUMPFILE_FORMAT, i);
4581             suffix = concat (seq, dump_file[i].extension, NULL);
4582             finish_graph_dump_file (dump_base_name, suffix);
4583             free (suffix);
4584           }
4585     }
4586
4587   if (mem_report)
4588     {
4589       ggc_print_statistics ();
4590       stringpool_statistics ();
4591       dump_tree_statistics ();
4592       dump_rtx_statistics ();
4593       dump_varray_statistics ();
4594       dump_alloc_pool_statistics ();
4595     }
4596
4597   /* Free up memory for the benefit of leak detectors.  */
4598   free_reg_info ();
4599
4600   /* Language-specific end of compilation actions.  */
4601   (*lang_hooks.finish) ();
4602 }
4603
4604 /* Initialize the compiler, and compile the input file.  */
4605 static void
4606 do_compile (void)
4607 {
4608   /* Initialize timing first.  The C front ends read the main file in
4609      the post_options hook, and C++ does file timings.  */
4610   if (time_report || !quiet_flag  || flag_detailed_statistics)
4611     timevar_init ();
4612   timevar_start (TV_TOTAL);
4613
4614   process_options ();
4615
4616   /* Don't do any more if an error has already occurred.  */
4617   if (!errorcount)
4618     {
4619       /* Set up the back-end if requested.  */
4620       if (!no_backend)
4621         backend_init ();
4622
4623       /* Language-dependent initialization.  Returns true on success.  */
4624       if (lang_dependent_init (main_input_filename))
4625         {
4626           if (flag_unit_at_a_time)
4627             {
4628               open_dump_file (DFI_cgraph, NULL);
4629               cgraph_dump_file = rtl_dump_file;
4630               rtl_dump_file = NULL;
4631             }
4632
4633           compile_file ();
4634
4635           if (flag_unit_at_a_time)
4636             {
4637               rtl_dump_file = cgraph_dump_file;
4638               cgraph_dump_file = NULL;
4639               close_dump_file (DFI_cgraph, NULL, NULL_RTX);
4640             }
4641         }
4642
4643       finalize ();
4644     }
4645
4646   /* Stop timing and print the times.  */
4647   timevar_stop (TV_TOTAL);
4648   timevar_print (stderr);
4649 }
4650
4651 /* Entry point of cc1, cc1plus, jc1, f771, etc.
4652    Exit code is FATAL_EXIT_CODE if can't open files or if there were
4653    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
4654
4655    It is not safe to call this function more than once.  */
4656
4657 int
4658 toplev_main (unsigned int argc, const char **argv)
4659 {
4660   save_argv = argv;
4661
4662   /* Initialization of GCC's environment, and diagnostics.  */
4663   general_init (argv[0]);
4664
4665   /* Parse the options and do minimal processing; basically just
4666      enough to default flags appropriately.  */
4667   decode_options (argc, argv);
4668
4669   randomize ();
4670
4671   /* Exit early if we can (e.g. -help).  */
4672   if (!exit_after_options)
4673     do_compile ();
4674
4675   if (errorcount || sorrycount)
4676     return (FATAL_EXIT_CODE);
4677
4678   return (SUCCESS_EXIT_CODE);
4679 }