]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/toplev.c
getopt.h (getopt): Also check HAVE_DECL_* when prototyping.
[thirdparty/gcc.git] / gcc / toplev.c
CommitLineData
4291d9c8 1/* Top level of GNU C compiler
4559fd9e
RK
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
4291d9c8
RS
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
e9fa0c7c
RK
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
4291d9c8 21
4291d9c8
RS
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"
670ee920
KG
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"
4291d9c8
RS
31#include <signal.h>
32#include <setjmp.h>
956d6950
JL
33
34#ifdef HAVE_SYS_RESOURCE_H
35# include <sys/resource.h>
36#endif
37
38#ifdef HAVE_SYS_TIMES_H
39# include <sys/times.h>
eb910b5a 40#endif
4291d9c8
RS
41
42#include "input.h"
43#include "tree.h"
4291d9c8 44#include "rtl.h"
6baf1cc8 45#include "tm_p.h"
4291d9c8
RS
46#include "flags.h"
47#include "insn-attr.h"
e5e809f4
JL
48#include "insn-codes.h"
49#include "insn-config.h"
50#include "recog.h"
d0d4af87 51#include "defaults.h"
e14417fa 52#include "output.h"
3d195391 53#include "except.h"
49ad7cfa 54#include "function.h"
a0c8e1b2 55#include "toplev.h"
114791ea 56#include "expr.h"
efc9bd41 57#include "hard-reg-set.h"
b1eeb243 58#include "basic-block.h"
ab87f8c8 59#include "intl.h"
0a25f1f5 60#include "ggc.h"
6a2cc2ac 61#include "graph.h"
272df862 62#include "loop.h"
d0af450d 63#include "regs.h"
2a9a326b 64#include "timevar.h"
f246a305 65
f73ad30e
JH
66#ifndef ACCUMULATE_OUTGOING_ARGS
67#define ACCUMULATE_OUTGOING_ARGS 0
68#endif
69
76ead72b
RL
70#ifdef DWARF_DEBUGGING_INFO
71#include "dwarfout.h"
72#endif
73
74#if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
75#include "dwarf2out.h"
76#endif
77
4f70758f 78#if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
76ead72b
RL
79#include "dbxout.h"
80#endif
81
82#ifdef SDB_DEBUGGING_INFO
83#include "sdbout.h"
84#endif
85
f246a305
RS
86#ifdef XCOFF_DEBUGGING_INFO
87#include "xcoffout.h"
88#endif
4291d9c8
RS
89\f
90#ifdef VMS
91/* The extra parameters substantially improve the I/O performance. */
92static FILE *
37c9f674 93vms_fopen (fname, type)
4291d9c8
RS
94 char * fname;
95 char * type;
96{
37c9f674
RK
97 /* The <stdio.h> in the gcc-vms-1.42 distribution prototypes fopen with two
98 fixed arguments, which matches ANSI's specification but not VAXCRTL's
99 pre-ANSI implementation. This hack circumvents the mismatch problem. */
100 FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
101
102 if (*type == 'w')
103 return (*vmslib_fopen) (fname, type, "mbc=32",
104 "deq=64", "fop=tef", "shr=nil");
105 else
106 return (*vmslib_fopen) (fname, type, "mbc=32");
4291d9c8 107}
37c9f674
RK
108#define fopen vms_fopen
109#endif /* VMS */
4291d9c8
RS
110
111#ifndef DEFAULT_GDB_EXTENSIONS
112#define DEFAULT_GDB_EXTENSIONS 1
113#endif
114
30657ee3
RK
115/* If more than one debugging type is supported, you must define
116 PREFERRED_DEBUGGING_TYPE to choose a format in a system-dependent way.
117
118 This is one long line cause VAXC can't handle a \-newline. */
9a666dda 119#if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) + defined (DWARF_DEBUGGING_INFO) + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO))
30657ee3
RK
120#ifndef PREFERRED_DEBUGGING_TYPE
121You Lose! You must define PREFERRED_DEBUGGING_TYPE!
122#endif /* no PREFERRED_DEBUGGING_TYPE */
123#else /* Only one debugging format supported. Define PREFERRED_DEBUGGING_TYPE
124 so the following code needn't care. */
125#ifdef DBX_DEBUGGING_INFO
126#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
127#endif
128#ifdef SDB_DEBUGGING_INFO
129#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
130#endif
131#ifdef DWARF_DEBUGGING_INFO
132#define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
133#endif
9a666dda
JM
134#ifdef DWARF2_DEBUGGING_INFO
135#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
136#endif
30657ee3
RK
137#ifdef XCOFF_DEBUGGING_INFO
138#define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
139#endif
140#endif /* More than one debugger format enabled. */
141
142/* If still not defined, must have been because no debugging formats
143 are supported. */
144#ifndef PREFERRED_DEBUGGING_TYPE
145#define PREFERRED_DEBUGGING_TYPE NO_DEBUG
146#endif
147
f31e826b 148#if defined (HAVE_DECL_ENVIRON) && !HAVE_DECL_ENVIRON
4291d9c8 149extern char **environ;
4d7e336b 150#endif
4291d9c8 151
b0316e35
RS
152/* Carry information from ASM_DECLARE_OBJECT_NAME
153 to ASM_FINISH_DECLARE_OBJECT. */
154
155extern int size_directive_output;
5e10b3cc 156extern tree last_assemble_variable_decl;
b0316e35 157
58782098
KG
158static void set_target_switch PARAMS ((const char *));
159static const char *decl_name PARAMS ((tree, int));
6ed551b4 160
58782098
KG
161static void float_signal PARAMS ((int)) ATTRIBUTE_NORETURN;
162static void pipe_closed PARAMS ((int)) ATTRIBUTE_NORETURN;
444bf316 163#ifdef ASM_IDENTIFY_LANGUAGE
47c3ed98 164/* This might or might not be used in ASM_IDENTIFY_LANGUAGE. */
58782098 165static void output_lang_identify PARAMS ((FILE *)) ATTRIBUTE_UNUSED;
444bf316 166#endif
3b304f5b 167static void compile_file PARAMS ((const char *));
58782098
KG
168static void display_help PARAMS ((void));
169static void mark_file_stack PARAMS ((void *));
170
171static void decode_d_option PARAMS ((const char *));
61098249
RH
172static int decode_f_option PARAMS ((const char *));
173static int decode_W_option PARAMS ((const char *));
174static int decode_g_option PARAMS ((const char *));
13eb1f7f
RK
175static unsigned int independent_decode_option PARAMS ((int, char **,
176 unsigned int));
58782098
KG
177
178static void print_version PARAMS ((FILE *, const char *));
179static int print_single_switch PARAMS ((FILE *, int, int, const char *,
87e11268
KG
180 const char *, const char *,
181 const char *, const char *));
58782098 182static void print_switch_values PARAMS ((FILE *, int, int, const char *,
87e11268 183 const char *, const char *));
735a0e33 184
3d5cdd42
DE
185/* Length of line when printing switch values. */
186#define MAX_LINE 75
187
4291d9c8
RS
188/* Name of program invoked, sans directories. */
189
7adfcfed 190const char *progname;
4291d9c8
RS
191
192/* Copy of arguments to main. */
193int save_argc;
194char **save_argv;
195\f
196/* Name of current original source file (what was input to cpp).
197 This comes from each #-command in the actual input. */
198
3b304f5b 199const char *input_filename;
4291d9c8
RS
200
201/* Name of top-level original source file (what was input to cpp).
202 This comes from the #-command at the beginning of the actual input.
203 If there isn't any there, then this is the cc1 input file name. */
204
3b304f5b 205const char *main_input_filename;
4291d9c8 206
4291d9c8
RS
207/* Current line number in real source file. */
208
209int lineno;
210
f1db3576
JL
211/* Nonzero if it is unsafe to create any new pseudo registers. */
212int no_new_pseudos;
213
4291d9c8
RS
214/* Stack of currently pending input files. */
215
216struct file_stack *input_file_stack;
217
218/* Incremented on each change to input_file_stack. */
219int input_file_stack_tick;
220
4291d9c8
RS
221/* Name to use as base of names for dump output files. */
222
87e11268 223const char *dump_base_name;
4291d9c8
RS
224
225/* Bit flags that specify the machine subtype we are compiling for.
226 Bits are tested using macros TARGET_... defined in the tm.h file
227 and set by `-m...' switches. Must be defined in rtlanal.c. */
228
229extern int target_flags;
230
61098249
RH
231/* Describes a dump file. */
232
233struct dump_file_info
234{
235 /* The unique extension to apply, e.g. ".jump". */
236 const char * const extension;
237
238 /* The -d<c> character that enables this dump file. */
239 char const debug_switch;
240
241 /* True if there is a corresponding graph dump file. */
242 char const graph_dump_p;
243
244 /* True if the user selected this dump. */
245 char enabled;
246
247 /* True if the files have been initialized (ie truncated). */
248 char initialized;
249};
250
251/* Enumerate the extant dump files. */
252
253enum dump_file_index
254{
255 DFI_rtl,
48d9ade5 256 DFI_sibling,
61098249
RH
257 DFI_jump,
258 DFI_cse,
259 DFI_addressof,
260 DFI_ssa,
261 DFI_ussa,
262 DFI_gcse,
263 DFI_loop,
264 DFI_cse2,
51891abe 265 DFI_cfg,
61098249 266 DFI_bp,
51891abe 267 DFI_life,
61098249 268 DFI_combine,
9ec6d7ab 269 DFI_ce,
61098249
RH
270 DFI_regmove,
271 DFI_sched,
272 DFI_lreg,
273 DFI_greg,
274 DFI_flow2,
9ec6d7ab 275 DFI_ce2,
61098249 276 DFI_peephole2,
5fa41e13 277 DFI_rnreg,
61098249
RH
278 DFI_sched2,
279 DFI_bbro,
280 DFI_jump2,
281 DFI_mach,
282 DFI_dbr,
283 DFI_stack,
284 DFI_MAX
285};
286
287/* Describes all the dump files. Should be kept in order of the
9ec6d7ab
RH
288 pass and in sync with dump_file_index above.
289
290 Remaining -d letters:
291
292 " h o q u "
293 " H K OPQ TUVWXYZ"
294*/
61098249
RH
295
296struct dump_file_info dump_file[DFI_MAX] =
297{
298 { "rtl", 'r', 0, 0, 0 },
48d9ade5 299 { "sibling", 'i', 0, 0, 0 },
61098249
RH
300 { "jump", 'j', 0, 0, 0 },
301 { "cse", 's', 0, 0, 0 },
302 { "addressof", 'F', 0, 0, 0 },
303 { "ssa", 'e', 1, 0, 0 },
304 { "ussa", 'e', 1, 0, 0 }, /* Yes, duplicate enable switch. */
305 { "gcse", 'G', 1, 0, 0 },
306 { "loop", 'L', 1, 0, 0 },
307 { "cse2", 't', 1, 0, 0 },
51891abe 308 { "cfg", 'f', 1, 0, 0 },
61098249 309 { "bp", 'b', 1, 0, 0 },
51891abe 310 { "life", 'f', 1, 0, 0 }, /* Yes, duplicate enable switch. */
61098249 311 { "combine", 'c', 1, 0, 0 },
9ec6d7ab 312 { "ce", 'C', 1, 0, 0 },
61098249
RH
313 { "regmove", 'N', 1, 0, 0 },
314 { "sched", 'S', 1, 0, 0 },
315 { "lreg", 'l', 1, 0, 0 },
316 { "greg", 'g', 1, 0, 0 },
317 { "flow2", 'w', 1, 0, 0 },
9ec6d7ab 318 { "ce2", 'E', 1, 0, 0 },
61098249 319 { "peephole2", 'z', 1, 0, 0 },
5fa41e13 320 { "rnreg", 'n', 1, 0, 0 },
61098249
RH
321 { "sched2", 'R', 1, 0, 0 },
322 { "bbro", 'B', 1, 0, 0 },
323 { "jump2", 'J', 1, 0, 0 },
324 { "mach", 'M', 1, 0, 0 },
325 { "dbr", 'd', 0, 0, 0 },
326 { "stack", 'k', 1, 0, 0 },
327};
328
329static int open_dump_file PARAMS ((enum dump_file_index, tree));
330static void close_dump_file PARAMS ((enum dump_file_index,
331 void (*) (FILE *, rtx), rtx));
332
333/* Other flags saying which kinds of debugging dump have been requested. */
334
335int rtl_dump_and_exit;
336int flag_print_asm_name;
337static int flag_print_mem;
338static int version_flag;
339static char * filename;
735a0e33 340enum graph_dump_types graph_dump_format;
4291d9c8
RS
341
342/* Name for output file of assembly code, specified with -o. */
343
344char *asm_file_name;
345
346/* Value of the -G xx switch, and whether it was passed or not. */
347int g_switch_value;
348int g_switch_set;
349
350/* Type(s) of debugging information we are producing (if any).
351 See flags.h for the definitions of the different possible
352 types of debugging information. */
353enum debug_info_type write_symbols = NO_DEBUG;
354
355/* Level of debugging information we are producing. See flags.h
356 for the definitions of the different possible levels. */
357enum debug_info_level debug_info_level = DINFO_LEVEL_NONE;
358
a53d0bcc
RS
359/* Nonzero means use GNU-only extensions in the generated symbolic
360 debugging information. */
361/* Currently, this only has an effect when write_symbols is set to
362 DBX_DEBUG, XCOFF_DEBUG, or DWARF_DEBUG. */
363int use_gnu_debug_info_extensions = 0;
4291d9c8
RS
364
365/* Nonzero means do optimizations. -O.
366 Particular numeric values stand for particular amounts of optimization;
367 thus, -O2 stores 2 here. However, the optimizations beyond the basic
368 ones are not controlled directly by this variable. Instead, they are
369 controlled by individual `flag_...' variables that are defaulted
370 based on this variable. */
371
372int optimize = 0;
373
c6aded7c
AG
374/* Nonzero means optimize for size. -Os.
375 The only valid values are zero and non-zero. When optimize_size is
376 non-zero, optimize defaults to 2, but certain individual code
377 bloating optimizations are disabled. */
378
379int optimize_size = 0;
380
4291d9c8
RS
381/* Number of error messages and warning messages so far. */
382
383int errorcount = 0;
384int warningcount = 0;
385int sorrycount = 0;
386
00262c8a
ML
387/* The FUNCTION_DECL for the function currently being compiled,
388 or 0 if between functions. */
389tree current_function_decl;
390
391/* Set to the FUNC_BEGIN label of the current function, or NULL_TREE
392 if none. */
393tree current_function_func_begin_label;
394
a1d7ffe3
JM
395/* Pointer to function to compute the name to use to print a declaration.
396 DECL is the declaration in question.
397 VERBOSITY determines what information will be printed:
398 0: DECL_NAME, demangled as necessary.
399 1: and scope information.
400 2: and any other information that might be interesting, such as function
401 parameter types in C++. */
4291d9c8 402
58782098 403const char *(*decl_printable_name) PARAMS ((tree, int));
4291d9c8
RS
404
405/* Pointer to function to compute rtl for a language-specific tree code. */
406
114791ea 407typedef rtx (*lang_expand_expr_t)
58782098 408 PARAMS ((union tree_node *, rtx, enum machine_mode,
114791ea
KG
409 enum expand_modifier modifier));
410
411lang_expand_expr_t lang_expand_expr = 0;
4291d9c8 412
58782098 413tree (*lang_expand_constant) PARAMS ((tree)) = 0;
e697e20a 414
2b599527
RS
415/* Pointer to function to finish handling an incomplete decl at the
416 end of compilation. */
417
58782098 418void (*incomplete_decl_finalize_hook) PARAMS ((tree)) = 0;
2b599527 419
4291d9c8
RS
420/* Nonzero if generating code to do profiling. */
421
422int profile_flag = 0;
423
424/* Nonzero if generating code to do profiling on a line-by-line basis. */
425
426int profile_block_flag;
427
0d332add
DE
428/* Nonzero if generating code to profile program flow graph arcs. */
429
430int profile_arc_flag = 0;
431
432/* Nonzero if generating info for gcov to calculate line test coverage. */
433
434int flag_test_coverage = 0;
435
436/* Nonzero indicates that branch taken probabilities should be calculated. */
437
438int flag_branch_probabilities = 0;
439
11bdd2ae
SC
440/* Nonzero if basic blocks should be reordered. */
441
442int flag_reorder_blocks = 0;
443
7b82b5da
SC
444/* Nonzero if registers should be renamed */
445
446int flag_rename_registers = 0;
447
4291d9c8
RS
448/* Nonzero for -pedantic switch: warn about anything
449 that standard spec forbids. */
450
451int pedantic = 0;
452
453/* Temporarily suppress certain warnings.
454 This is set while reading code from a system header file. */
455
456int in_system_header = 0;
457
4291d9c8
RS
458/* Don't print functions as they are compiled and don't print
459 times taken by the various passes. -quiet. */
460
461int quiet_flag = 0;
462\f
463/* -f flags. */
464
465/* Nonzero means `char' should be signed. */
466
467int flag_signed_char;
468
469/* Nonzero means give an enum type only as many bytes as it needs. */
470
471int flag_short_enums;
472
473/* Nonzero for -fcaller-saves: allocate values in regs that need to
474 be saved across function calls, if that produces overall better code.
475 Optional now, so people can test it. */
476
477#ifdef DEFAULT_CALLER_SAVES
478int flag_caller_saves = 1;
479#else
480int flag_caller_saves = 0;
481#endif
482
958ec8ca
JW
483/* Nonzero if structures and unions should be returned in memory.
484
485 This should only be defined if compatibility with another compiler or
486 with an ABI is needed, because it results in slower code. */
487
488#ifndef DEFAULT_PCC_STRUCT_RETURN
489#define DEFAULT_PCC_STRUCT_RETURN 1
490#endif
491
4291d9c8
RS
492/* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
493
958ec8ca 494int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
4291d9c8
RS
495
496/* Nonzero for -fforce-mem: load memory value into a register
497 before arithmetic on it. This makes better cse but slower compilation. */
498
499int flag_force_mem = 0;
500
501/* Nonzero for -fforce-addr: load memory address into a register before
502 reference to memory. This makes better cse but slower compilation. */
503
504int flag_force_addr = 0;
505
506/* Nonzero for -fdefer-pop: don't pop args after each function call;
507 instead save them up to pop many calls' args with one insns. */
508
6731a3e3 509int flag_defer_pop = 0;
4291d9c8
RS
510
511/* Nonzero for -ffloat-store: don't allocate floats and doubles
512 in extended-precision registers. */
513
514int flag_float_store = 0;
515
516/* Nonzero for -fcse-follow-jumps:
517 have cse follow jumps to do a more extensive job. */
518
519int flag_cse_follow_jumps;
520
8b3686ed
RK
521/* Nonzero for -fcse-skip-blocks:
522 have cse follow a branch around a block. */
523int flag_cse_skip_blocks;
524
4291d9c8
RS
525/* Nonzero for -fexpensive-optimizations:
526 perform miscellaneous relatively-expensive optimizations. */
527int flag_expensive_optimizations;
528
529/* Nonzero for -fthread-jumps:
530 have jump optimize output of loop. */
531
532int flag_thread_jumps;
533
534/* Nonzero enables strength-reduction in loop.c. */
535
536int flag_strength_reduce = 0;
537
538/* Nonzero enables loop unrolling in unroll.c. Only loops for which the
539 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
540 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
541 unrolled. */
542
543int flag_unroll_loops;
544
545/* Nonzero enables loop unrolling in unroll.c. All loops are unrolled.
546 This is generally not a win. */
547
548int flag_unroll_all_loops;
549
e5eb27e5
JL
550/* Nonzero forces all invariant computations in loops to be moved
551 outside the loop. */
552
553int flag_move_all_movables = 0;
554
555/* Nonzero forces all general induction variables in loops to be
556 strength reduced. */
557
558int flag_reduce_all_givs = 0;
559
9ec36da5
JL
560/* Nonzero to perform full register move optimization passes. This is the
561 default for -O2. */
562
563int flag_regmove = 0;
564
4291d9c8
RS
565/* Nonzero for -fwritable-strings:
566 store string constants in data segment and don't uniquize them. */
567
568int flag_writable_strings = 0;
569
570/* Nonzero means don't put addresses of constant functions in registers.
571 Used for compiling the Unix kernel, where strange substitutions are
572 done on the assembly output. */
573
574int flag_no_function_cse = 0;
575
576/* Nonzero for -fomit-frame-pointer:
577 don't make a frame pointer in simple functions that don't require one. */
578
579int flag_omit_frame_pointer = 0;
580
cf440348
JL
581/* Nonzero means place each function into its own section on those platforms
582 which support arbitrary section names and unlimited numbers of sections. */
583
584int flag_function_sections = 0;
585
fd868572
CM
586/* ... and similar for data. */
587
588int flag_data_sections = 0;
589
4291d9c8
RS
590/* Nonzero to inhibit use of define_optimization peephole opts. */
591
592int flag_no_peephole = 0;
593
43855b28
JL
594/* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
595 operations in the interest of optimization. For example it allows
596 GCC to assume arguments to sqrt are nonnegative numbers, allowing
0f41302f 597 faster code for sqrt to be generated. */
43855b28
JL
598
599int flag_fast_math = 0;
600
db8cb48e
JH
601/* Nonzero allows GCC to optimize sibling and tail recursive calls. */
602
603int flag_optimize_sibling_calls = 0;
604
41af162c
CB
605/* Nonzero means the front end generally wants `errno' maintained by math
606 operations, like built-in SQRT, unless overridden by flag_fast_math. */
607
608int flag_errno_math = 1;
609
c64f913e
CB
610/* 0 means straightforward implementation of complex divide acceptable.
611 1 means wide ranges of inputs must work for complex divide.
612 2 means C9X-like requirements for complex divide (not yet implemented). */
613
614int flag_complex_divide_method = 0;
615
4291d9c8
RS
616/* Nonzero means all references through pointers are volatile. */
617
618int flag_volatile;
c6e75897 619
ab87f8c8 620/* Nonzero means treat all global and extern variables as volatile. */
c6e75897 621
38d4d0c2 622int flag_volatile_global;
4291d9c8 623
ab87f8c8
JL
624/* Nonzero means treat all static variables as volatile. */
625
626int flag_volatile_static;
627
4291d9c8
RS
628/* Nonzero means just do syntax checking; don't output anything. */
629
630int flag_syntax_only = 0;
631
7506f491
DE
632/* Nonzero means perform global cse. */
633
634static int flag_gcse;
635
b6d24183
JL
636/* Nonzero means to use global dataflow analysis to eliminate
637 useless null pointer tests. */
638
639static int flag_delete_null_pointer_checks;
640
4291d9c8
RS
641/* Nonzero means to rerun cse after loop optimization. This increases
642 compilation time about 20% and picks up a few more common expressions. */
643
644static int flag_rerun_cse_after_loop;
645
6d6d0fa0
JL
646/* Nonzero means to run loop optimizations twice. */
647
64fde701 648int flag_rerun_loop_opt;
6d6d0fa0 649
4291d9c8
RS
650/* Nonzero for -finline-functions: ok to inline functions that look like
651 good inline candidates. */
652
653int flag_inline_functions;
654
655/* Nonzero for -fkeep-inline-functions: even if we make a function
ac2a9454 656 go inline everywhere, keep its definition around for debugging
4291d9c8
RS
657 purposes. */
658
659int flag_keep_inline_functions;
660
fadb3bc9 661/* Nonzero means that functions will not be inlined. */
4291d9c8
RS
662
663int flag_no_inline;
664
fbe912dd
BK
665/* Nonzero means that we should emit static const variables
666 regardless of whether or not optimization is turned on. */
667
668int flag_keep_static_consts = 1;
669
4291d9c8
RS
670/* Nonzero means we should be saving declaration info into a .X file. */
671
672int flag_gen_aux_info = 0;
673
f246a305
RS
674/* Specified name of aux-info file. */
675
676static char *aux_info_file_name;
677
4291d9c8
RS
678/* Nonzero means make the text shared if supported. */
679
680int flag_shared_data;
681
682/* Nonzero means schedule into delayed branch slots if supported. */
683
684int flag_delayed_branch;
685
686/* Nonzero if we are compiling pure (sharable) code.
687 Value is 1 if we are doing reasonable (i.e. simple
688 offset into offset table) pic. Value is 2 if we can
689 only perform register offsets. */
690
691int flag_pic;
692
3d195391
MS
693/* Nonzero means generate extra code for exception handling and enable
694 exception handling. */
695
b53beeb2 696int flag_exceptions;
3d195391 697
a1622f83
AM
698/* Nonzero means use the new model for exception handling. Replaces
699 -DNEW_EH_MODEL as a compile option. */
700
6e487a49 701int flag_new_exceptions = 1;
a1622f83 702
14a774a9
RK
703/* Nonzero means generate frame unwind info table when supported */
704
705int flag_unwind_tables = 0;
706
2786cbad 707/* Nonzero means don't place uninitialized global data in common storage
3d195391 708 by default. */
4291d9c8
RS
709
710int flag_no_common;
711
712/* Nonzero means pretend it is OK to examine bits of target floats,
713 even if that isn't true. The resulting code will have incorrect constants,
714 but the same series of instructions that the native compiler would make. */
715
716int flag_pretend_float;
717
718/* Nonzero means change certain warnings into errors.
719 Usually these are warnings about failure to conform to some standard. */
720
721int flag_pedantic_errors = 0;
722
723/* flag_schedule_insns means schedule insns within basic blocks (before
724 local_alloc).
725 flag_schedule_insns_after_reload means schedule insns after
726 global_alloc. */
727
728int flag_schedule_insns = 0;
729int flag_schedule_insns_after_reload = 0;
730
8c660648
JL
731/* The following flags have effect only for scheduling before register
732 allocation:
733
734 flag_schedule_interblock means schedule insns accross basic blocks.
735 flag_schedule_speculative means allow speculative motion of non-load insns.
736 flag_schedule_speculative_load means allow speculative motion of some
737 load insns.
738 flag_schedule_speculative_load_dangerous allows speculative motion of more
8e7336f8 739 load insns. */
8c660648
JL
740
741int flag_schedule_interblock = 1;
742int flag_schedule_speculative = 1;
743int flag_schedule_speculative_load = 0;
744int flag_schedule_speculative_load_dangerous = 0;
8c660648
JL
745
746/* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
747 by a cheaper branch, on a count register. */
748int flag_branch_on_count_reg;
8c660648 749
4291d9c8
RS
750/* -finhibit-size-directive inhibits output of .size for ELF.
751 This is used only for compiling crtstuff.c,
752 and it may be extended to other effects
753 needed for crtstuff.c on other systems. */
754int flag_inhibit_size_directive = 0;
755
9a631e8e
RS
756/* -fverbose-asm causes extra commentary information to be produced in
757 the generated assembly code (to make it more readable). This option
758 is generally only of use to those who actually need to read the
3d5cdd42 759 generated assembly code (perhaps while debugging the compiler itself).
c85f7c16 760 -fno-verbose-asm, the default, causes the extra information
3d5cdd42
DE
761 to be omitted and is useful when comparing two assembler files. */
762
c85f7c16 763int flag_verbose_asm = 0;
9a631e8e 764
3d5cdd42
DE
765/* -dA causes debug commentary information to be produced in
766 the generated assembly code (to make it more readable). This option
767 is generally only of use to those who actually need to read the
768 generated assembly code (perhaps while debugging the compiler itself).
769 Currently, this switch is only used by dwarfout.c; however, it is intended
770 to be a catchall for printing debug information in the assembler file. */
771
772int flag_debug_asm = 0;
9a631e8e 773
4291d9c8 774/* -fgnu-linker specifies use of the GNU linker for initializations.
d68c507d
RS
775 (Or, more generally, a linker that handles initializations.)
776 -fno-gnu-linker says that collect2 will be used. */
777#ifdef USE_COLLECT2
778int flag_gnu_linker = 0;
779#else
4291d9c8 780int flag_gnu_linker = 1;
d68c507d 781#endif
4291d9c8 782
d9d4fb43
AS
783/* Enable SSA. */
784int flag_ssa = 0;
785
566cdc73
MM
786/* Tag all structures with __attribute__(packed) */
787int flag_pack_struct = 0;
788
bd83d0ac
RK
789/* Emit code to check for stack overflow; also may cause large objects
790 to be allocated dynamically. */
791int flag_stack_check;
792
a157febd
GK
793/* When non-NULL, indicates that whenever space is allocated on the
794 stack, the resulting stack pointer must not pass this
795 address---that is, for stacks that grow downward, the stack pointer
796 must always be greater than or equal to this address; for stacks
797 that grow upward, the stack pointer must be less than this address.
798 At present, the rtx may be either a REG or a SYMBOL_REF, although
799 the support provided depends on the backend. */
800rtx stack_limit_rtx;
801
f602c208
RK
802/* -fcheck-memory-usage causes extra code to be generated in order to check
803 memory accesses. This is used by a detector of bad memory accesses such
804 as Checker. */
805int flag_check_memory_usage = 0;
806
807/* -fprefix-function-name causes function name to be prefixed. This
808 can be used with -fcheck-memory-usage to isolate code compiled with
809 -fcheck-memory-usage. */
810int flag_prefix_function_name = 0;
811
9ae8ffe7
JL
812/* 0 if pointer arguments may alias each other. True in C.
813 1 if pointer arguments may not alias each other but may alias
814 global variables.
815 2 if pointer arguments may not alias each other and may not
816 alias global variables. True in Fortran.
817 This defaults to 0 for C. */
818int flag_argument_noalias = 0;
819
41472af8
MM
820/* Nonzero if we should do (language-dependent) alias analysis.
821 Typically, this analysis will assume that expressions of certain
822 types do not alias expressions of certain other types. Only used
823 if alias analysis (in general) is enabled. */
824int flag_strict_aliasing = 0;
825
07417085
KR
826/* Instrument functions with calls at entry and exit, for profiling. */
827int flag_instrument_function_entry_exit = 0;
828
be163a70
ZW
829/* Nonzero means ignore `#ident' directives. 0 means handle them.
830 On SVR4 targets, it also controls whether or not to emit a
831 string identifying the compiler. */
832
833int flag_no_ident = 0;
b8468bc7 834
ede7cd44
RH
835/* This will perform a peephole pass before sched2. */
836int flag_peephole2 = 0;
837
a8aa7975
GM
838/* -fbounded-pointers causes gcc to compile pointers as composite
839 objects occupying three words: the pointer value, the base address
840 of the referent object, and the address immediately beyond the end
841 of the referent object. The base and extent allow us to perform
842 runtime bounds checking. -fbounded-pointers implies -fcheck-bounds. */
843int flag_bounded_pointers = 0;
844
845/* -fcheck-bounds causes gcc to generate array bounds checks.
846 For C, C++: defaults to value of flag_bounded_pointers.
847 For ObjC: defaults to off.
848 For Java: defaults to on.
849 For Fortran: defaults to off.
850 For CHILL: defaults to off. */
851int flag_bounds_check = 0;
852
673b5311
MM
853/* If one, renumber instruction UIDs to reduce the number of
854 unused UIDs if there are a lot of instructions. If greater than
855 one, unconditionally renumber instruction UIDs. */
856int flag_renumber_insns = 1;
857
efa3896a
GK
858/* Values of the -falign-* flags: how much to align labels in code.
859 0 means `use default', 1 means `don't align'.
860 For each variable, there is an _log variant which is the power
861 of two not less than the variable, for .align output. */
862
863int align_loops;
864int align_loops_log;
865int align_jumps;
866int align_jumps_log;
867int align_labels;
868int align_labels_log;
869int align_functions;
870int align_functions_log;
871
b8468bc7
NC
872/* Table of supported debugging formats. */
873static struct
874{
87e11268 875 const char * arg;
b8468bc7
NC
876 /* Since PREFERRED_DEBUGGING_TYPE isn't necessarily a
877 constant expression, we use NO_DEBUG in its place. */
878 enum debug_info_type debug_type;
879 int use_extensions_p;
87e11268 880 const char * description;
b8468bc7
NC
881} *da,
882debug_args[] =
883{
39dd8003 884 { "", NO_DEBUG, DEFAULT_GDB_EXTENSIONS,
b8468bc7 885 "Generate default debug format output" },
39dd8003 886 { "gdb", NO_DEBUG, 1, "Generate default extended debug format output" },
b8468bc7 887#ifdef DBX_DEBUGGING_INFO
39dd8003
NC
888 { "stabs", DBX_DEBUG, 0, "Generate STABS format debug output" },
889 { "stabs+", DBX_DEBUG, 1, "Generate extended STABS format debug output" },
b8468bc7
NC
890#endif
891#ifdef DWARF_DEBUGGING_INFO
39dd8003
NC
892 { "dwarf", DWARF_DEBUG, 0, "Generate DWARF-1 format debug output"},
893 { "dwarf+", DWARF_DEBUG, 1,
b8468bc7
NC
894 "Generated extended DWARF-1 format debug output" },
895#endif
896#ifdef DWARF2_DEBUGGING_INFO
39dd8003 897 { "dwarf-2", DWARF2_DEBUG, 0, "Enable DWARF-2 debug output" },
b8468bc7
NC
898#endif
899#ifdef XCOFF_DEBUGGING_INFO
39dd8003
NC
900 { "xcoff", XCOFF_DEBUG, 0, "Generate XCOFF format debug output" },
901 { "xcoff+", XCOFF_DEBUG, 1, "Generate extended XCOFF format debug output" },
b8468bc7
NC
902#endif
903#ifdef SDB_DEBUGGING_INFO
39dd8003 904 { "coff", SDB_DEBUG, 0, "Generate COFF format debug output" },
b8468bc7 905#endif
c84e2712 906 { 0, 0, 0, 0 }
b8468bc7
NC
907};
908
909typedef struct
910{
87e11268 911 const char * string;
b8468bc7
NC
912 int * variable;
913 int on_value;
87e11268 914 const char * description;
b8468bc7
NC
915}
916lang_independent_options;
917
19283265
RH
918/* Add or remove a leading underscore from user symbols. */
919int flag_leading_underscore = -1;
920
921/* The user symbol prefix after having resolved same. */
87e11268 922const char *user_label_prefix;
19283265
RH
923
924/* A default for same. */
925#ifndef USER_LABEL_PREFIX
926#define USER_LABEL_PREFIX ""
927#endif
928
4291d9c8
RS
929/* Table of language-independent -f options.
930 STRING is the option name. VARIABLE is the address of the variable.
931 ON_VALUE is the value to store in VARIABLE
932 if `-fSTRING' is seen as an option.
933 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
934
b8468bc7 935lang_independent_options f_options[] =
4291d9c8 936{
b8468bc7
NC
937 {"float-store", &flag_float_store, 1,
938 "Do not store floats in registers" },
939 {"volatile", &flag_volatile, 1,
940 "Consider all mem refs through pointers as volatile"},
941 {"volatile-global", &flag_volatile_global, 1,
942 "Consider all mem refs to global data to be volatile" },
ab87f8c8
JL
943 {"volatile-static", &flag_volatile_static, 1,
944 "Consider all mem refs to static data to be volatile" },
b8468bc7
NC
945 {"defer-pop", &flag_defer_pop, 1,
946 "Defer popping functions args from stack until later" },
947 {"omit-frame-pointer", &flag_omit_frame_pointer, 1,
948 "When possible do not generate stack frames"},
db8cb48e
JH
949 {"optimize-sibling-calls", &flag_optimize_sibling_calls, 1,
950 "Optimize sibling and tail recursive calls" },
b8468bc7
NC
951 {"cse-follow-jumps", &flag_cse_follow_jumps, 1,
952 "When running CSE, follow jumps to their targets" },
953 {"cse-skip-blocks", &flag_cse_skip_blocks, 1,
954 "When running CSE, follow conditional jumps" },
955 {"expensive-optimizations", &flag_expensive_optimizations, 1,
956 "Perform a number of minor, expensive optimisations" },
957 {"thread-jumps", &flag_thread_jumps, 1,
958 "Perform jump threading optimisations"},
959 {"strength-reduce", &flag_strength_reduce, 1,
960 "Perform strength reduction optimisations" },
961 {"unroll-loops", &flag_unroll_loops, 1,
62e7b719 962 "Perform loop unrolling when iteration count is known" },
b8468bc7 963 {"unroll-all-loops", &flag_unroll_all_loops, 1,
f1da1729 964 "Perform loop unrolling for all loops" },
b8468bc7
NC
965 {"move-all-movables", &flag_move_all_movables, 1,
966 "Force all loop invariant computations out of loops" },
967 {"reduce-all-givs", &flag_reduce_all_givs, 1,
968 "Strength reduce all loop general induction variables" },
969 {"writable-strings", &flag_writable_strings, 1,
970 "Store strings in writable data section" },
971 {"peephole", &flag_no_peephole, 0,
972 "Enable machine specific peephole optimisations" },
973 {"force-mem", &flag_force_mem, 1,
974 "Copy memory operands into registers before using" },
975 {"force-addr", &flag_force_addr, 1,
976 "Copy memory address constants into regs before using" },
977 {"function-cse", &flag_no_function_cse, 0,
978 "Allow function addresses to be held in registers" },
979 {"inline-functions", &flag_inline_functions, 1,
980 "Integrate simple functions into their callers" },
981 {"keep-inline-functions", &flag_keep_inline_functions, 1,
982 "Generate code for funcs even if they are fully inlined" },
983 {"inline", &flag_no_inline, 0,
984 "Pay attention to the 'inline' keyword"},
985 {"keep-static-consts", &flag_keep_static_consts, 1,
986 "Emit static const variables even if they are not used" },
987 {"syntax-only", &flag_syntax_only, 1,
988 "Check for syntax errors, then stop" },
989 {"shared-data", &flag_shared_data, 1,
990 "Mark data as shared rather than private" },
991 {"caller-saves", &flag_caller_saves, 1,
992 "Enable saving registers around function calls" },
993 {"pcc-struct-return", &flag_pcc_struct_return, 1,
994 "Return 'short' aggregates in memory, not registers" },
995 {"reg-struct-return", &flag_pcc_struct_return, 0,
996 "Return 'short' aggregates in registers" },
997 {"delayed-branch", &flag_delayed_branch, 1,
998 "Attempt to fill delay slots of branch instructions" },
999 {"gcse", &flag_gcse, 1,
1000 "Perform the global common subexpression elimination" },
1001 {"rerun-cse-after-loop", &flag_rerun_cse_after_loop, 1,
1002 "Run CSE pass after loop optimisations"},
1003 {"rerun-loop-opt", &flag_rerun_loop_opt, 1,
1004 "Run the loop optimiser twice"},
b6d24183
JL
1005 {"delete-null-pointer-checks", &flag_delete_null_pointer_checks, 1,
1006 "Delete useless null pointer checks" },
b8468bc7
NC
1007 {"pretend-float", &flag_pretend_float, 1,
1008 "Pretend that host and target use the same FP format"},
1009 {"schedule-insns", &flag_schedule_insns, 1,
1010 "Reschedule instructions to avoid pipeline stalls"},
1011 {"schedule-insns2", &flag_schedule_insns_after_reload, 1,
1012 "Run two passes of the instruction scheduler"},
b8468bc7
NC
1013 {"sched-interblock",&flag_schedule_interblock, 1,
1014 "Enable scheduling across basic blocks" },
1015 {"sched-spec",&flag_schedule_speculative, 1,
1016 "Allow speculative motion of non-loads" },
1017 {"sched-spec-load",&flag_schedule_speculative_load, 1,
1018 "Allow speculative motion of some loads" },
1019 {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1,
1020 "Allow speculative motion of more loads" },
1021 {"branch-count-reg",&flag_branch_on_count_reg, 1,
40f943dd 1022 "Replace add,compare,branch with branch on count reg"},
b8468bc7
NC
1023 {"pic", &flag_pic, 1,
1024 "Generate position independent code, if possible"},
1025 {"PIC", &flag_pic, 2, ""},
1026 {"exceptions", &flag_exceptions, 1,
1027 "Enable exception handling" },
1028 {"new-exceptions", &flag_new_exceptions, 1,
1029 "Use the new model for exception handling" },
14a774a9
RK
1030 {"unwind-tables", &flag_unwind_tables, 1,
1031 "Just generate unwind tables for exception handling" },
b8468bc7
NC
1032 {"sjlj-exceptions", &exceptions_via_longjmp, 1,
1033 "Use setjmp/longjmp to handle exceptions" },
1034 {"asynchronous-exceptions", &asynchronous_exceptions, 1,
1035 "Support asynchronous exceptions" },
1036 {"profile-arcs", &profile_arc_flag, 1,
1037 "Insert arc based program profiling code" },
1038 {"test-coverage", &flag_test_coverage, 1,
1039 "Create data files needed by gcov" },
1040 {"branch-probabilities", &flag_branch_probabilities, 1,
62e7b719 1041 "Use profiling information for branch probabilities" },
11bdd2ae
SC
1042 {"reorder-blocks", &flag_reorder_blocks, 1,
1043 "Reorder basic blocks to improve code placement" },
7b82b5da
SC
1044 {"rename-registers", &flag_rename_registers, 1,
1045 "Do the register renaming optimization pass"},
b8468bc7
NC
1046 {"fast-math", &flag_fast_math, 1,
1047 "Improve FP speed by violating ANSI & IEEE rules" },
1048 {"common", &flag_no_common, 0,
1049 "Do not put unitialised globals in the common section" },
1050 {"inhibit-size-directive", &flag_inhibit_size_directive, 1,
1051 "Do not generate .size directives" },
1052 {"function-sections", &flag_function_sections, 1,
1053 "place each function into its own section" },
257441db
CM
1054 {"data-sections", &flag_data_sections, 1,
1055 "place data items into their own section" },
b8468bc7
NC
1056 {"verbose-asm", &flag_verbose_asm, 1,
1057 "Add extra commentry to assembler output"},
1058 {"gnu-linker", &flag_gnu_linker, 1,
1059 "Output GNU ld formatted global initialisers"},
1060 {"regmove", &flag_regmove, 1,
c84e2712
KG
1061 "Enables a register move optimisation"},
1062 {"optimize-register-move", &flag_regmove, 1,
1063 "Do the full regmove optimization pass"},
b8468bc7
NC
1064 {"pack-struct", &flag_pack_struct, 1,
1065 "Pack structure members together without holes" },
1066 {"stack-check", &flag_stack_check, 1,
1067 "Insert stack checking code into the program" },
1068 {"argument-alias", &flag_argument_noalias, 0,
1069 "Specify that arguments may alias each other & globals"},
1070 {"argument-noalias", &flag_argument_noalias, 1,
1071 "Assume arguments may alias globals but not each other"},
1072 {"argument-noalias-global", &flag_argument_noalias, 2,
1073 "Assume arguments do not alias each other or globals" },
1074 {"strict-aliasing", &flag_strict_aliasing, 1,
1075 "Assume strict aliasing rules apply" },
efa3896a
GK
1076 {"align-loops", &align_loops, 0,
1077 "Align the start of loops" },
1078 {"align-jumps", &align_jumps, 0,
1079 "Align labels which are only reached by jumping" },
1080 {"align-labels", &align_labels, 0,
1081 "Align all labels" },
1082 {"align-functions", &align_functions, 0,
1083 "Align the start of functions" },
b8468bc7
NC
1084 {"check-memory-usage", &flag_check_memory_usage, 1,
1085 "Generate code to check every memory access" },
1086 {"prefix-function-name", &flag_prefix_function_name, 1,
1087 "Add a prefix to all function names" },
c84e2712
KG
1088 {"dump-unnumbered", &flag_dump_unnumbered, 1,
1089 "Suppress output of instruction numbers and line number notes in debugging dumps"},
07417085
KR
1090 {"instrument-functions", &flag_instrument_function_entry_exit, 1,
1091 "Instrument function entry/exit with profiling calls"},
d9d4fb43
AS
1092 {"ssa", &flag_ssa, 1,
1093 "Enable SSA optimizations" },
19283265 1094 {"leading-underscore", &flag_leading_underscore, 1,
be163a70
ZW
1095 "External symbols have a leading underscore" },
1096 {"ident", &flag_no_ident, 0,
ede7cd44
RH
1097 "Process #ident directives"},
1098 { "peephole2", &flag_peephole2, 1,
9605da8a
BL
1099 "Enables an rtl peephole pass run before sched2" },
1100 {"math-errno", &flag_errno_math, 1,
a8aa7975
GM
1101 "Set errno after built-in math functions"},
1102 {"bounded-pointers", &flag_bounded_pointers, 1,
1103 "Compile pointers as triples: value, base & end" },
1104 {"bounds-check", &flag_bounds_check, 1,
1105 "Generate code to check bounds before dereferencing pointers and arrays" }
4291d9c8 1106};
b99933c7 1107
b8468bc7
NC
1108#define NUM_ELEM(a) (sizeof (a) / sizeof ((a)[0]))
1109
b99933c7
RS
1110/* Table of language-specific options. */
1111
b8468bc7
NC
1112static struct lang_opt
1113{
87e11268
KG
1114 const char * option;
1115 const char * description;
b8468bc7
NC
1116}
1117documented_lang_options[] =
b99933c7 1118{
b8468bc7
NC
1119 /* In order not to overload the --help output, the convention
1120 used here is to only describe those options which are not
1121 enabled by default. */
1122
1123 { "-ansi", "Compile just for ANSI C" },
1124 { "-fallow-single-precision",
1125 "Do not promote floats to double if using -traditional" },
6f4d7222 1126 { "-std= ", "Determine language standard"},
b8468bc7
NC
1127
1128 { "-fsigned-bitfields", "" },
1129 { "-funsigned-bitfields","Make bitfields by unsigned by default" },
1130 { "-fno-signed-bitfields", "" },
1131 { "-fno-unsigned-bitfields","" },
1132 { "-fsigned-char", "Make 'char' be signed by default"},
1133 { "-funsigned-char", "Make 'char' be unsigned by default"},
1134 { "-fno-signed-char", "" },
1135 { "-fno-unsigned-char", "" },
1136
1137 { "-ftraditional", "" },
1138 { "-traditional", "Attempt to support traditional K&R style C"},
1139 { "-fnotraditional", "" },
1140 { "-fno-traditional", "" },
1141
1142 { "-fasm", "" },
1143 { "-fno-asm", "Do not recognise the 'asm' keyword" },
1144 { "-fbuiltin", "" },
1145 { "-fno-builtin", "Do not recognise any built in functions" },
1146 { "-fhosted", "Assume normal C execution environment" },
1147 { "-fno-hosted", "" },
1148 { "-ffreestanding",
1149 "Assume that standard libraries & main might not exist" },
1150 { "-fno-freestanding", "" },
1151 { "-fcond-mismatch", "Allow different types as args of ? operator"},
1152 { "-fno-cond-mismatch", "" },
62e7b719 1153 { "-fdollars-in-identifiers", "Allow the use of $ inside identifiers" },
b8468bc7 1154 { "-fno-dollars-in-identifiers", "" },
3773a46b
JM
1155 { "-fpreprocessed", "" },
1156 { "-fno-preprocessed", "" },
b8468bc7
NC
1157 { "-fshort-double", "Use the same size for double as for float" },
1158 { "-fno-short-double", "" },
1159 { "-fshort-enums", "Use the smallest fitting integer to hold enums"},
1160 { "-fno-short-enums", "" },
12a39b12
JM
1161 { "-fshort-wchar", "Override the underlying type for wchar_t to `unsigned short'" },
1162 { "-fno-short-wchar", "" },
b8468bc7
NC
1163
1164 { "-Wall", "Enable most warning messages" },
1165 { "-Wbad-function-cast",
1166 "Warn about casting functions to incompatible types" },
1167 { "-Wno-bad-function-cast", "" },
0ca3fb0a
KG
1168 { "-Wmissing-noreturn",
1169 "Warn about functions which might be candidates for attribute noreturn" },
1170 { "-Wno-missing-noreturn", "" },
b8468bc7
NC
1171 { "-Wcast-qual", "Warn about casts which discard qualifiers"},
1172 { "-Wno-cast-qual", "" },
630962bf 1173 { "-Wchar-subscripts", "Warn about subscripts whose type is 'char'"},
b8468bc7
NC
1174 { "-Wno-char-subscripts", "" },
1175 { "-Wcomment", "Warn if nested comments are detected" },
c84e2712
KG
1176 { "-Wno-comment", "" },
1177 { "-Wcomments", "Warn if nested comments are detected" },
1178 { "-Wno-comments", "" },
b8468bc7
NC
1179 { "-Wconversion", "Warn about possibly confusing type conversions" },
1180 { "-Wno-conversion", "" },
1181 { "-Wformat", "Warn about printf format anomalies" },
1182 { "-Wno-format", "" },
1183 { "-Wimplicit-function-declaration",
1184 "Warn about implicit function declarations" },
1185 { "-Wno-implicit-function-declaration", "" },
1186 { "-Werror-implicit-function-declaration", "" },
1187 { "-Wimplicit-int", "Warn when a declaration does not specify a type" },
1188 { "-Wno-implicit-int", "" },
1189 { "-Wimplicit", "" },
1190 { "-Wno-implicit", "" },
1191 { "-Wimport", "Warn about the use of the #import directive" },
1192 { "-Wno-import", "" },
1193 { "-Wlong-long","" },
1194 { "-Wno-long-long", "Do not warn about using 'long long' when -pedantic" },
1195 { "-Wmain", "Warn about suspicious declarations of main" },
1196 { "-Wno-main", "" },
1197 { "-Wmissing-braces",
1198 "Warn about possibly missing braces around initialisers" },
1199 { "-Wno-missing-braces", "" },
1200 { "-Wmissing-declarations",
1201 "Warn about global funcs without previous declarations"},
1202 { "-Wno-missing-declarations", "" },
1203 { "-Wmissing-prototypes", "Warn about global funcs without prototypes" },
1204 { "-Wno-missing-prototypes", "" },
1205 { "-Wmultichar", "Warn about use of multicharacter literals"},
1206 { "-Wno-multichar", "" },
1207 { "-Wnested-externs", "Warn about externs not at file scope level" },
1208 { "-Wno-nested-externs", "" },
1209 { "-Wparentheses", "Warn about possible missing parentheses" },
1210 { "-Wno-parentheses", "" },
1211 { "-Wpointer-arith", "Warn about function pointer arithmetic" },
1212 { "-Wno-pointer-arith", "" },
1213 { "-Wredundant-decls",
1214 "Warn about multiple declarations of the same object" },
1215 { "-Wno-redundant-decls", "" },
1216 { "-Wsign-compare", "Warn about signed/unsigned comparisons" },
1217 { "-Wno-sign-compare", "" },
b843d210
DZ
1218 { "-Wfloat-equal", "Warn about testing equality of floating point numbers" },
1219 { "-Wno-float-equal", "" },
4dbba876 1220 { "-Wunknown-pragmas", "Warn about unrecognized pragmas" },
b8468bc7
NC
1221 { "-Wno-unknown-pragmas", "" },
1222 { "-Wstrict-prototypes", "Warn about non-prototyped function decls" },
1223 { "-Wno-strict-prototypes", "" },
630962bf 1224 { "-Wtraditional", "Warn about constructs whose meaning change in ANSI C"},
b8468bc7
NC
1225 { "-Wno-traditional", "" },
1226 { "-Wtrigraphs", "Warn when trigraphs are encountered" },
1227 { "-Wno-trigraphs", "" },
1228 { "-Wundef", "" },
1229 { "-Wno-undef", "" },
1230 { "-Wwrite-strings", "Mark strings as 'const char *'"},
1231 { "-Wno-write-strings", "" },
b8468bc7
NC
1232
1233#define DEFINE_LANG_NAME(NAME) { NULL, NAME },
1234
39dd8003 1235 /* These are for Objective C. */
b8468bc7
NC
1236 DEFINE_LANG_NAME ("Objective C")
1237
1238 { "-lang-objc", "" },
1239 { "-gen-decls", "Dump decls to a .decl file" },
62e7b719 1240 { "-fgnu-runtime", "Generate code for GNU runtime environment" },
b8468bc7
NC
1241 { "-fno-gnu-runtime", "" },
1242 { "-fnext-runtime", "Generate code for NeXT runtime environment" },
1243 { "-fno-next-runtime", "" },
1244 { "-Wselector", "Warn if a selector has multiple methods" },
1245 { "-Wno-selector", "" },
1246 { "-Wprotocol", "" },
1247 { "-Wno-protocol", "Do not warn if inherited methods are unimplemented"},
1248 { "-print-objc-runtime-info",
1249 "Generate C header of platform specific features" },
a0d85b75 1250
2a95de17 1251#include "options.h"
b8468bc7 1252
b99933c7 1253};
b8468bc7
NC
1254
1255/* Here is a table, controlled by the tm.h file, listing each -m switch
1256 and which bits in `target_switches' it should set or clear.
1257 If VALUE is positive, it is bits to set.
1258 If VALUE is negative, -VALUE is bits to clear.
1259 (The sign bit is not used so there is no confusion.) */
1260
1261struct
1262{
87e11268 1263 const char * name;
b8468bc7 1264 int value;
87e11268 1265 const char * description;
b8468bc7
NC
1266}
1267target_switches [] = TARGET_SWITCHES;
1268
1269/* This table is similar, but allows the switch to have a value. */
1270
1271#ifdef TARGET_OPTIONS
1272struct
1273{
87e11268
KG
1274 const char * prefix;
1275 const char ** variable;
1276 const char * description;
b8468bc7
NC
1277}
1278target_options [] = TARGET_OPTIONS;
1279#endif
4291d9c8
RS
1280\f
1281/* Options controlling warnings */
1282
1283/* Don't print warning messages. -w. */
1284
1285int inhibit_warnings = 0;
1286
1287/* Print various extra warnings. -W. */
1288
1289int extra_warnings = 0;
1290
1291/* Treat warnings as errors. -Werror. */
1292
1293int warnings_are_errors = 0;
1294
078721e1 1295/* Nonzero to warn about unused variables, functions et.al. */
4291d9c8 1296
078721e1
AC
1297int warn_unused_function;
1298int warn_unused_label;
1299int warn_unused_parameter;
1300int warn_unused_variable;
1301int warn_unused_value;
1302
1303void
1304set_Wunused (setting)
1305 int setting;
1306{
1307 warn_unused_function = setting;
1308 warn_unused_label = setting;
1309 /* Unused function parameter warnings are reported when either ``-W
1310 -Wunused'' or ``-Wunused-parameter'' is specified. Differentiate
1311 -Wunused by setting WARN_UNUSED_PARAMETER to -1 */
1312 if (!setting)
1313 warn_unused_parameter = 0;
1314 else if (!warn_unused_parameter)
1315 warn_unused_parameter = -1;
1316 warn_unused_variable = setting;
1317 warn_unused_value = setting;
1318}
4291d9c8 1319
312f6255
GK
1320/* Nonzero to warn about code which is never reached. */
1321
1322int warn_notreached;
1323
4291d9c8
RS
1324/* Nonzero to warn about variables used before they are initialized. */
1325
1326int warn_uninitialized;
1327
1328/* Nonzero means warn about all declarations which shadow others. */
1329
1330int warn_shadow;
1331
1332/* Warn if a switch on an enum fails to have a case for every enum value. */
1333
1334int warn_switch;
1335
1336/* Nonzero means warn about function definitions that default the return type
1337 or that use a null return and have a return-type other than void. */
1338
1339int warn_return_type;
1340
1341/* Nonzero means warn about pointer casts that increase the required
1342 alignment of the target type (and might therefore lead to a crash
1343 due to a misaligned access). */
1344
1345int warn_cast_align;
1346
1347/* Nonzero means warn about any identifiers that match in the first N
1348 characters. The value N is in `id_clash_len'. */
1349
1350int warn_id_clash;
4559fd9e 1351int id_clash_len;
b51e9c62
RK
1352
1353/* Nonzero means warn about any objects definitions whose size is larger
1354 than N bytes. Also want about function definitions whose returned
1355 values are larger than N bytes. The value N is in `larger_than_size'. */
1356
1357int warn_larger_than;
4559fd9e 1358HOST_WIDE_INT larger_than_size;
4291d9c8
RS
1359
1360/* Nonzero means warn if inline function is too large. */
1361
1362int warn_inline;
1363
1364/* Warn if a function returns an aggregate,
1365 since there are often incompatible calling conventions for doing this. */
1366
1367int warn_aggregate_return;
1368
3c12fcc2
GM
1369/* Warn if packed attribute on struct is unnecessary and inefficient. */
1370
1371int warn_packed;
1372
1373/* Warn when gcc pads a structure to an alignment boundary. */
1374
1375int warn_padded;
1376
4291d9c8
RS
1377/* Likewise for -W. */
1378
b8468bc7 1379lang_independent_options W_options[] =
4291d9c8 1380{
078721e1
AC
1381 {"unused-function", &warn_unused_function, 1, "Warn when a function is unused" },
1382 {"unused-label", &warn_unused_label, 1, "Warn when a label is unused" },
1383 {"unused-parameter", &warn_unused_parameter, 1, "Warn when a function parameter is unused" },
1384 {"unused-variable", &warn_unused_variable, 1, "Warn when a variable is unused" },
1385 {"unused-value", &warn_unused_value, 1, "Warn when an expression value is unused" },
b8468bc7
NC
1386 {"error", &warnings_are_errors, 1, ""},
1387 {"shadow", &warn_shadow, 1, "Warn when one local variable shadows another" },
1388 {"switch", &warn_switch, 1,
1389 "Warn about enumerated switches missing a specific case" },
1390 {"aggregate-return", &warn_aggregate_return, 1,
1391 "Warn about returning structures, unions or arrays" },
1392 {"cast-align", &warn_cast_align, 1,
1393 "Warn about pointer casts which increase alignment" },
312f6255
GK
1394 {"unreachable-code", &warn_notreached, 1,
1395 "Warn about code that will never be executed" },
b8468bc7
NC
1396 {"uninitialized", &warn_uninitialized, 1,
1397 "Warn about unitialized automatic variables"},
1398 {"inline", &warn_inline, 1,
3c12fcc2
GM
1399 "Warn when an inlined function cannot be inlined"},
1400 {"packed", &warn_packed, 1,
1401 "Warn when the packed attribute has no effect on struct layout"},
1402 {"padded", &warn_padded, 1,
1403 "Warn when padding is required to align struct members"}
4291d9c8
RS
1404};
1405\f
1406/* Output files for assembler code (real compiler output)
1407 and debugging dumps. */
1408
1409FILE *asm_out_file;
1410FILE *aux_info_file;
032713aa 1411FILE *rtl_dump_file = NULL;
4291d9c8 1412
132e01b1
TP
1413/* Decode the string P as an integral parameter.
1414 If the string is indeed an integer return its numeric value else
192babfd
TP
1415 issue an Invalid Option error for the option PNAME and return DEFVAL.
1416 If PNAME is zero just return DEFVAL, do not call error. */
132e01b1
TP
1417
1418int
1419read_integral_parameter (p, pname, defval)
192babfd
TP
1420 const char *p;
1421 const char *pname;
1422 const int defval;
132e01b1 1423{
192babfd 1424 const char *endp = p;
132e01b1
TP
1425
1426 while (*endp)
1427 {
1428 if (*endp >= '0' && *endp <= '9')
1429 endp++;
1430 else
192babfd
TP
1431 break;
1432 }
1433
1434 if (*endp != 0)
1435 {
1436 if (pname != 0)
1437 error ("Invalid option `%s'", pname);
1438 return defval;
132e01b1
TP
1439 }
1440
1441 return atoi (p);
1442}
1443
4291d9c8 1444\f
4291d9c8
RS
1445/* This is the default decl_printable_name function. */
1446
5f8ded66 1447static const char *
a1d7ffe3 1448decl_name (decl, verbosity)
4291d9c8 1449 tree decl;
114791ea 1450 int verbosity ATTRIBUTE_UNUSED;
4291d9c8
RS
1451{
1452 return IDENTIFIER_POINTER (DECL_NAME (decl));
1453}
1454\f
afe3d090 1455/* Mark P for GC. Also mark main_input_filename and input_filename. */
77a02dba 1456
afe3d090
BS
1457static void
1458mark_file_stack (p)
1459 void *p;
1460{
1461 struct file_stack *stack = *(struct file_stack **)p;
1462
1463 /* We're only called for input_file_stack, so we can mark the current
1464 input_filename here as well. */
1465 ggc_mark_string (main_input_filename);
1466 ggc_mark_string (input_filename);
1467
1468 while (stack)
1469 {
1470 ggc_mark_string (stack->name);
1471 stack = stack->next;
1472 }
1473}
4291d9c8 1474\f
4291d9c8
RS
1475
1476/* This calls abort and is used to avoid problems when abort if a macro.
1477 It is used when we need to pass the address of abort. */
1478
1479void
1480do_abort ()
1481{
1482 abort ();
1483}
1484
1485/* When `malloc.c' is compiled with `rcheck' defined,
1486 it calls this function to report clobberage. */
1487
1488void
1489botch (s)
87e11268 1490 const char * s ATTRIBUTE_UNUSED;
4291d9c8
RS
1491{
1492 abort ();
1493}
4291d9c8
RS
1494\f
1495/* Return the logarithm of X, base 2, considering X unsigned,
37366632
RK
1496 if X is a power of 2. Otherwise, returns -1.
1497
1498 This should be used via the `exact_log2' macro. */
4291d9c8
RS
1499
1500int
37366632
RK
1501exact_log2_wide (x)
1502 register unsigned HOST_WIDE_INT x;
4291d9c8
RS
1503{
1504 register int log = 0;
1505 /* Test for 0 or a power of 2. */
1506 if (x == 0 || x != (x & -x))
1507 return -1;
1508 while ((x >>= 1) != 0)
1509 log++;
1510 return log;
1511}
1512
1513/* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
37366632
RK
1514 If X is 0, return -1.
1515
1516 This should be used via the floor_log2 macro. */
4291d9c8
RS
1517
1518int
37366632
RK
1519floor_log2_wide (x)
1520 register unsigned HOST_WIDE_INT x;
4291d9c8
RS
1521{
1522 register int log = -1;
1523 while (x != 0)
1524 log++,
1525 x >>= 1;
1526 return log;
1527}
1528
3bbfa296 1529static int float_handler_set;
4291d9c8
RS
1530int float_handled;
1531jmp_buf float_handler;
1532
3bbfa296
RK
1533/* Signals actually come here. */
1534
1535static void
1536float_signal (signo)
1537 /* If this is missing, some compilers complain. */
d6f4ec51 1538 int signo ATTRIBUTE_UNUSED;
3bbfa296
RK
1539{
1540 if (float_handled == 0)
1541 abort ();
1542#if defined (USG) || defined (hpux)
1543 signal (SIGFPE, float_signal); /* re-enable the signal catcher */
1544#endif
1545 float_handled = 0;
1546 signal (SIGFPE, float_signal);
1547 longjmp (float_handler, 1);
1548}
1549
4291d9c8
RS
1550/* Specify where to longjmp to when a floating arithmetic error happens.
1551 If HANDLER is 0, it means don't handle the errors any more. */
1552
1553void
1554set_float_handler (handler)
1555 jmp_buf handler;
1556{
1557 float_handled = (handler != 0);
1558 if (handler)
4c9a05bc 1559 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
3bbfa296
RK
1560
1561 if (float_handled && ! float_handler_set)
1562 {
1563 signal (SIGFPE, float_signal);
1564 float_handler_set = 1;
1565 }
4291d9c8
RS
1566}
1567
1a87eea2
KG
1568/* This is a wrapper function for code which might elicit an
1569 arithmetic exception. That code should be passed in as a function
1570 pointer FN, and one argument DATA. DATA is usually a struct which
1571 contains the real input and output for function FN. This function
1572 returns 0 (failure) if longjmp was called (i.e. an exception
1573 occured.) It returns 1 (success) otherwise. */
1574
1575int
1576do_float_handler (fn, data)
58782098 1577 void (*fn) PARAMS ((PTR));
1a87eea2
KG
1578 PTR data;
1579{
1580 jmp_buf buf;
1581
1582 if (setjmp (buf))
1583 {
1584 /* We got here via longjmp() caused by an exception in function fn() */
1585 set_float_handler (NULL);
1586 return 0;
1587 }
1588
1589 set_float_handler (buf);
1590 (*fn)(data);
1591 set_float_handler (NULL);
1592 return 1;
1593}
1594
bff4b641
RS
1595/* Specify, in HANDLER, where to longjmp to when a floating arithmetic
1596 error happens, pushing the previous specification into OLD_HANDLER.
1597 Return an indication of whether there was a previous handler in effect. */
1598
1599int
1600push_float_handler (handler, old_handler)
dc2b15dc 1601 jmp_buf handler, old_handler;
bff4b641
RS
1602{
1603 int was_handled = float_handled;
1604
1605 float_handled = 1;
1606 if (was_handled)
7e2231e7 1607 memcpy ((char *) old_handler, (char *) float_handler,
4c9a05bc
RK
1608 sizeof (float_handler));
1609
7e2231e7 1610 memcpy ((char *) float_handler, (char *) handler, sizeof (float_handler));
bff4b641
RS
1611 return was_handled;
1612}
1613
1614/* Restore the previous specification of whether and where to longjmp to
1615 when a floating arithmetic error happens. */
1616
1617void
1618pop_float_handler (handled, handler)
1619 int handled;
1620 jmp_buf handler;
1621{
1622 float_handled = handled;
1623 if (handled)
4c9a05bc 1624 bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
bff4b641
RS
1625}
1626
4291d9c8
RS
1627/* Handler for SIGPIPE. */
1628
1629static void
1630pipe_closed (signo)
1631 /* If this is missing, some compilers complain. */
d6f4ec51 1632 int signo ATTRIBUTE_UNUSED;
4291d9c8
RS
1633{
1634 fatal ("output pipe has been closed");
1635}
1636
1637/* Strip off a legitimate source ending from the input string NAME of
c62bdc79 1638 length LEN. Rather than having to know the names used by all of
2290e0ec
PB
1639 our front ends, we strip off an ending of a period followed by
1640 up to five characters. (Java uses ".class".) */
4291d9c8
RS
1641
1642void
1643strip_off_ending (name, len)
1644 char *name;
1645 int len;
1646{
2290e0ec
PB
1647 int i;
1648 for (i = 2; i < 6 && len > i; i++)
1649 {
1650 if (name[len - i] == '.')
1651 {
1652 name[len - i] = '\0';
1653 break;
1654 }
1655 }
4291d9c8
RS
1656}
1657
7dce5088 1658/* Output a quoted string. */
0f41302f 1659
7dce5088
PE
1660void
1661output_quoted_string (asm_file, string)
1662 FILE *asm_file;
87e11268 1663 const char *string;
7dce5088 1664{
e9a25f70
JL
1665#ifdef OUTPUT_QUOTED_STRING
1666 OUTPUT_QUOTED_STRING (asm_file, string);
1667#else
7dce5088
PE
1668 char c;
1669
1670 putc ('\"', asm_file);
1671 while ((c = *string++) != 0)
1672 {
1673 if (c == '\"' || c == '\\')
1674 putc ('\\', asm_file);
1675 putc (c, asm_file);
1676 }
1677 putc ('\"', asm_file);
e9a25f70 1678#endif
7dce5088
PE
1679}
1680
4291d9c8
RS
1681/* Output a file name in the form wanted by System V. */
1682
1683void
1684output_file_directive (asm_file, input_name)
1685 FILE *asm_file;
87e11268 1686 const char *input_name;
4291d9c8
RS
1687{
1688 int len = strlen (input_name);
87e11268 1689 const char *na = input_name + len;
4291d9c8
RS
1690
1691 /* NA gets INPUT_NAME sans directory names. */
1692 while (na > input_name)
1693 {
1a8bb3dd
JL
1694 if (IS_DIR_SEPARATOR (na[-1]))
1695 break;
4291d9c8
RS
1696 na--;
1697 }
1698
1699#ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
1700 ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
1701#else
1702#ifdef ASM_OUTPUT_SOURCE_FILENAME
1703 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
1704#else
7dce5088
PE
1705 fprintf (asm_file, "\t.file\t");
1706 output_quoted_string (asm_file, na);
1707 fputc ('\n', asm_file);
4291d9c8
RS
1708#endif
1709#endif
1710}
1711\f
444bf316 1712#ifdef ASM_IDENTIFY_LANGUAGE
0f41302f 1713/* Routine to build language identifier for object file. */
d0d4af87
MS
1714static void
1715output_lang_identify (asm_out_file)
1716 FILE *asm_out_file;
1717{
1718 int len = strlen (lang_identify ()) + sizeof ("__gnu_compiled_") + 1;
1719 char *s = (char *) alloca (len);
1720 sprintf (s, "__gnu_compiled_%s", lang_identify ());
1721 ASM_OUTPUT_LABEL (asm_out_file, s);
1722}
444bf316 1723#endif
d0d4af87 1724
61098249
RH
1725/* Routine to open a dump file. Return true if the dump file is enabled. */
1726
1727static int
1728open_dump_file (index, decl)
1729 enum dump_file_index index;
1730 tree decl;
032713aa 1731{
61098249
RH
1732 char *dump_name;
1733 const char *open_arg;
1734 char seq[16];
1735
1736 if (! dump_file[index].enabled)
1737 return 0;
0f41302f 1738
2a9a326b
AS
1739 timevar_push (TV_DUMP);
1740 if (rtl_dump_file != NULL)
1741 fclose (rtl_dump_file);
032713aa 1742
2a9a326b 1743 sprintf (seq, ".%02d.", index);
61098249 1744
2a9a326b
AS
1745 if (! dump_file[index].initialized)
1746 {
1747 /* If we've not initialized the files, do so now. */
1748 if (graph_dump_format != no_graph
1749 && dump_file[index].graph_dump_p)
1750 {
1751 dump_name = concat (seq, dump_file[index].extension, NULL);
1752 clean_graph_dump_file (dump_base_name, dump_name);
1753 free (dump_name);
1754 }
1755 dump_file[index].initialized = 1;
1756 open_arg = "w";
1757 }
1758 else
1759 open_arg = "a";
61098249 1760
2a9a326b
AS
1761 dump_name = concat (dump_base_name, seq,
1762 dump_file[index].extension, NULL);
61098249 1763
2a9a326b
AS
1764 rtl_dump_file = fopen (dump_name, open_arg);
1765 if (rtl_dump_file == NULL)
1766 pfatal_with_name (dump_name);
032713aa 1767
2a9a326b 1768 free (dump_name);
032713aa 1769
2a9a326b
AS
1770 if (decl)
1771 fprintf (rtl_dump_file, "\n;; Function %s\n\n",
1772 decl_printable_name (decl, 2));
1773
1774 timevar_pop (TV_DUMP);
61098249 1775 return 1;
032713aa
NC
1776}
1777
1778/* Routine to close a dump file. */
61098249 1779
032713aa 1780static void
61098249
RH
1781close_dump_file (index, func, insns)
1782 enum dump_file_index index;
58782098 1783 void (*func) PARAMS ((FILE *, rtx));
032713aa
NC
1784 rtx insns;
1785{
61098249
RH
1786 if (! rtl_dump_file)
1787 return;
1788
2a9a326b
AS
1789 timevar_push (TV_DUMP);
1790 if (insns
1791 && graph_dump_format != no_graph
1792 && dump_file[index].graph_dump_p)
1793 {
1794 char seq[16];
1795 char *suffix;
61098249 1796
2a9a326b
AS
1797 sprintf (seq, ".%02d.", index);
1798 suffix = concat (seq, dump_file[index].extension, NULL);
1799 print_rtl_graph_with_bb (dump_base_name, suffix, insns);
1800 free (suffix);
1801 }
61098249 1802
2a9a326b
AS
1803 if (func && insns)
1804 func (rtl_dump_file, insns);
032713aa 1805
2a9a326b
AS
1806 fflush (rtl_dump_file);
1807 fclose (rtl_dump_file);
032713aa 1808
2a9a326b
AS
1809 rtl_dump_file = NULL;
1810 timevar_pop (TV_DUMP);
dfe1a916
DE
1811}
1812
32291f94
MM
1813/* Do any final processing required for the declarations in VEC, of
1814 which there are LEN. We write out inline functions and variables
1815 that have been deferred until this point, but which are required.
1816 Returns non-zero if anything was put out. */
1817int
1818wrapup_global_declarations (vec, len)
1819 tree *vec;
1820 int len;
1821{
1822 tree decl;
1823 int i;
1824 int reconsider;
1825 int output_something = 0;
1826
1827 for (i = 0; i < len; i++)
1828 {
1829 decl = vec[i];
1830
1831 /* We're not deferring this any longer. */
1832 DECL_DEFER_OUTPUT (decl) = 0;
1833
1834 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0
1835 && incomplete_decl_finalize_hook != 0)
1836 (*incomplete_decl_finalize_hook) (decl);
1837 }
1838
1839 /* Now emit any global variables or functions that we have been
1840 putting off. We need to loop in case one of the things emitted
1841 here references another one which comes earlier in the list. */
1842 do
1843 {
1844 reconsider = 0;
1845 for (i = 0; i < len; i++)
1846 {
1847 decl = vec[i];
1848
1849 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
1850 continue;
1851
1852 /* Don't write out static consts, unless we still need them.
1853
1854 We also keep static consts if not optimizing (for debugging),
1855 unless the user specified -fno-keep-static-consts.
1856 ??? They might be better written into the debug information.
1857 This is possible when using DWARF.
1858
1859 A language processor that wants static constants to be always
1860 written out (even if it is not used) is responsible for
1861 calling rest_of_decl_compilation itself. E.g. the C front-end
1862 calls rest_of_decl_compilation from finish_decl.
1863 One motivation for this is that is conventional in some
1864 environments to write things like:
1865 static const char rcsid[] = "... version string ...";
1866 intending to force the string to be in the executable.
1867
1868 A language processor that would prefer to have unneeded
1869 static constants "optimized away" would just defer writing
1870 them out until here. E.g. C++ does this, because static
1871 constants are often defined in header files.
1872
1873 ??? A tempting alternative (for both C and C++) would be
1874 to force a constant to be written if and only if it is
1875 defined in a main file, as opposed to an include file. */
1876
1877 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1878 && (! TREE_READONLY (decl)
1879 || TREE_PUBLIC (decl)
1880 || (!optimize && flag_keep_static_consts)
1881 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1882 {
1883 reconsider = 1;
1884 rest_of_decl_compilation (decl, NULL_PTR, 1, 1);
1885 }
1886
1887 if (TREE_CODE (decl) == FUNCTION_DECL
1888 && DECL_INITIAL (decl) != 0
1889 && DECL_SAVED_INSNS (decl) != 0
1890 && (flag_keep_inline_functions
59182242 1891 || (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
32291f94
MM
1892 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1893 {
1894 reconsider = 1;
1895 temporary_allocation ();
1896 output_inline_function (decl);
1897 permanent_allocation (1);
1898 }
1899 }
1900
1901 if (reconsider)
1902 output_something = 1;
1903 }
1904 while (reconsider);
1905
1906 return output_something;
1907}
1908
1909/* Issue appropriate warnings for the global declarations in VEC (of
1910 which there are LEN). Output debugging information for them. */
1911void
1912check_global_declarations (vec, len)
1913 tree *vec;
1914 int len;
1915{
1916 tree decl;
1917 int i;
1918
1919 for (i = 0; i < len; i++)
1920 {
1921 decl = vec[i];
1922
1923 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
1924 && ! TREE_ASM_WRITTEN (decl))
1925 /* Cancel the RTL for this decl so that, if debugging info
1926 output for global variables is still to come,
1927 this one will be omitted. */
1928 DECL_RTL (decl) = NULL;
1929
1930 /* Warn about any function
1931 declared static but not defined.
1932 We don't warn about variables,
1933 because many programs have static variables
1934 that exist only to get some text into the object file. */
1935 if (TREE_CODE (decl) == FUNCTION_DECL
078721e1 1936 && (warn_unused_function
32291f94
MM
1937 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1938 && DECL_INITIAL (decl) == 0
1939 && DECL_EXTERNAL (decl)
1940 && ! DECL_ARTIFICIAL (decl)
1941 && ! TREE_PUBLIC (decl))
1942 {
1943 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
1944 pedwarn_with_decl (decl,
1945 "`%s' used but never defined");
1946 else
1947 warning_with_decl (decl,
1948 "`%s' declared `static' but never defined");
1949 /* This symbol is effectively an "extern" declaration now. */
1950 TREE_PUBLIC (decl) = 1;
1951 assemble_external (decl);
1952 }
1953
1954 /* Warn about static fns or vars defined but not used,
1955 but not about inline functions or static consts
1956 since defining those in header files is normal practice. */
078721e1
AC
1957 if (((warn_unused_function
1958 && TREE_CODE (decl) == FUNCTION_DECL && ! DECL_INLINE (decl))
1959 || (warn_unused_variable
1960 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
32291f94
MM
1961 && ! DECL_IN_SYSTEM_HEADER (decl)
1962 && ! DECL_EXTERNAL (decl)
1963 && ! TREE_PUBLIC (decl)
1964 && ! TREE_USED (decl)
1965 && (TREE_CODE (decl) == FUNCTION_DECL || ! DECL_REGISTER (decl))
1966 /* The TREE_USED bit for file-scope decls
1967 is kept in the identifier, to handle multiple
1968 external decls in different scopes. */
1969 && ! TREE_USED (DECL_NAME (decl)))
1970 warning_with_decl (decl, "`%s' defined but not used");
1971
2a9a326b 1972 timevar_push (TV_SYMOUT);
32291f94
MM
1973#ifdef SDB_DEBUGGING_INFO
1974 /* The COFF linker can move initialized global vars to the end.
1975 And that can screw up the symbol ordering.
1976 By putting the symbols in that order to begin with,
1977 we avoid a problem. mcsun!unido!fauern!tumuc!pes@uunet.uu.net. */
1978 if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == VAR_DECL
1979 && TREE_PUBLIC (decl) && DECL_INITIAL (decl)
1980 && ! DECL_EXTERNAL (decl)
1981 && DECL_RTL (decl) != 0)
2a9a326b 1982 sdbout_symbol (decl, 0);
32291f94
MM
1983
1984 /* Output COFF information for non-global
1985 file-scope initialized variables. */
1986 if (write_symbols == SDB_DEBUG
1987 && TREE_CODE (decl) == VAR_DECL
1988 && DECL_INITIAL (decl)
1989 && ! DECL_EXTERNAL (decl)
1990 && DECL_RTL (decl) != 0
1991 && GET_CODE (DECL_RTL (decl)) == MEM)
2a9a326b 1992 sdbout_toplevel_data (decl);
32291f94
MM
1993#endif /* SDB_DEBUGGING_INFO */
1994#ifdef DWARF_DEBUGGING_INFO
1995 /* Output DWARF information for file-scope tentative data object
1996 declarations, file-scope (extern) function declarations (which
1997 had no corresponding body) and file-scope tagged type declarations
1998 and definitions which have not yet been forced out. */
1999
2000 if (write_symbols == DWARF_DEBUG
2001 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2a9a326b 2002 dwarfout_file_scope_decl (decl, 1);
32291f94
MM
2003#endif
2004#ifdef DWARF2_DEBUGGING_INFO
2005 /* Output DWARF2 information for file-scope tentative data object
2006 declarations, file-scope (extern) function declarations (which
2007 had no corresponding body) and file-scope tagged type declarations
2008 and definitions which have not yet been forced out. */
2009
2010 if (write_symbols == DWARF2_DEBUG
2011 && (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl)))
2a9a326b 2012 dwarf2out_decl (decl);
32291f94 2013#endif
2a9a326b 2014 timevar_pop (TV_SYMOUT);
32291f94
MM
2015 }
2016}
032713aa 2017
68723fae
MM
2018/* Save the current INPUT_FILENAME and LINENO on the top entry in the
2019 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
2020 INPUT_FILENAME and LINENO accordingly. */
2021
2022void
2023push_srcloc (file, line)
3b304f5b 2024 const char *file;
68723fae
MM
2025 int line;
2026{
2027 struct file_stack *fs;
2028
2029 if (input_file_stack)
2030 {
2031 input_file_stack->name = input_filename;
2032 input_file_stack->line = lineno;
2033 }
2034
2035 fs = (struct file_stack *) xmalloc (sizeof (struct file_stack));
2036 fs->name = input_filename = file;
2037 fs->line = lineno = line;
2038 fs->indent_level = 0;
2039 fs->next = input_file_stack;
2040 input_file_stack = fs;
2041 input_file_stack_tick++;
2042}
2043
2044/* Pop the top entry off the stack of presently open source files.
2045 Restore the INPUT_FILENAME and LINENO from the new topmost entry on
2046 the stack. */
2047
2048void
2049pop_srcloc ()
2050{
2051 struct file_stack *fs;
2052
2053 fs = input_file_stack;
2054 input_file_stack = fs->next;
2055 free (fs);
2056 input_file_stack_tick++;
2057 /* The initial souce file is never popped. */
2058 if (!input_file_stack)
2059 abort ();
2060 input_filename = input_file_stack->name;
2061 lineno = input_file_stack->line;
2062}
2063
4291d9c8
RS
2064/* Compile an entire file of output from cpp, named NAME.
2065 Write a file of assembly output and various debugging dumps. */
2066
2067static void
2068compile_file (name)
3b304f5b 2069 const char *name;
4291d9c8
RS
2070{
2071 tree globals;
4291d9c8
RS
2072
2073 int name_specified = name != 0;
2074
2075 if (dump_base_name == 0)
2076 dump_base_name = name ? name : "gccdump";
4291d9c8 2077
2a9a326b 2078 /* Start timing total execution time. */
4291d9c8 2079
2a9a326b
AS
2080 init_timevar ();
2081 timevar_start (TV_TOTAL);
2082
4291d9c8
RS
2083 /* Initialize data in various passes. */
2084
2085 init_obstacks ();
2086 init_tree_codes ();
5c60e5c0 2087 name = init_parse (name);
4291d9c8 2088 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
0d332add 2089 || debug_info_level == DINFO_LEVEL_VERBOSE
312f6255
GK
2090 || flag_test_coverage
2091 || warn_notreached);
7f21d440 2092 init_regs ();
4291d9c8
RS
2093 init_decl_processing ();
2094 init_optabs ();
2095 init_stmt ();
fa51b01b 2096 init_eh ();
4291d9c8
RS
2097 init_loop ();
2098 init_reload ();
6e73e666 2099 init_alias_once ();
87ff9c8e 2100 init_function_once ();
d7db6646 2101 init_stor_layout_once ();
76095e2f 2102 init_varasm_once ();
4291d9c8 2103
49ad7cfa
BS
2104 /* The following initialization functions need to generate rtl, so
2105 provide a dummy function context for them. */
2106 init_dummy_function_start ();
2107 init_expmed ();
2108 init_expr_once ();
4291d9c8
RS
2109 if (flag_caller_saves)
2110 init_caller_save ();
49ad7cfa 2111 expand_dummy_function_end ();
4291d9c8 2112
f246a305
RS
2113 /* If auxiliary info generation is desired, open the output file.
2114 This goes in the same directory as the source file--unlike
2115 all the other output files. */
4291d9c8
RS
2116 if (flag_gen_aux_info)
2117 {
4291d9c8
RS
2118 aux_info_file = fopen (aux_info_file_name, "w");
2119 if (aux_info_file == 0)
2120 pfatal_with_name (aux_info_file_name);
2121 }
2122
4291d9c8
RS
2123 /* Open assembler code output file. */
2124
1fe65c00
PB
2125 if (flag_syntax_only)
2126 asm_out_file = NULL;
4291d9c8
RS
2127 else
2128 {
1fe65c00 2129 if (! name_specified && asm_file_name == 0)
4291d9c8
RS
2130 asm_out_file = stdout;
2131 else
1fe65c00 2132 {
1fe65c00 2133 if (asm_file_name == 0)
e7749837
RH
2134 {
2135 int len = strlen (dump_base_name);
2136 char *dumpname = (char *) xmalloc (len + 6);
2137 memcpy (dumpname, dump_base_name, len + 1);
2138 strip_off_ending (dumpname, len);
2139 strcat (dumpname, ".s");
2140 asm_file_name = dumpname;
2141 }
1fe65c00
PB
2142 if (!strcmp (asm_file_name, "-"))
2143 asm_out_file = stdout;
2144 else
2145 asm_out_file = fopen (asm_file_name, "w");
2146 if (asm_out_file == 0)
2147 pfatal_with_name (asm_file_name);
2148 }
4291d9c8 2149
f246a305 2150#ifdef IO_BUFFER_SIZE
1fe65c00
PB
2151 setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
2152 _IOFBF, IO_BUFFER_SIZE);
f246a305 2153#endif
1fe65c00 2154 }
f246a305 2155
296b4ed9 2156 if (ggc_p && name != 0)
afe3d090 2157 name = ggc_alloc_string (name, strlen (name));
296b4ed9 2158
4291d9c8
RS
2159 input_filename = name;
2160
18736654 2161 /* Put an entry on the input file stack for the main input file. */
68723fae 2162 push_srcloc (input_filename, 0);
18736654 2163
4291d9c8
RS
2164 /* Perform language-specific initialization.
2165 This may set main_input_filename. */
2166 lang_init ();
2167
2168 /* If the input doesn't start with a #line, use the input name
2169 as the official input file name. */
2170 if (main_input_filename == 0)
2171 main_input_filename = name;
2172
1fe65c00
PB
2173 if (flag_syntax_only)
2174 {
2175 write_symbols = NO_DEBUG;
2176 profile_flag = 0;
2177 profile_block_flag = 0;
2178 }
2179 else
2180 {
2181 ASM_FILE_START (asm_out_file);
3d5cdd42
DE
2182
2183#ifdef ASM_COMMENT_START
1fe65c00
PB
2184 if (flag_verbose_asm)
2185 {
2186 /* Print the list of options in effect. */
2187 print_version (asm_out_file, ASM_COMMENT_START);
2188 print_switch_values (asm_out_file, 0, MAX_LINE,
3d5cdd42 2189 ASM_COMMENT_START, " ", "\n");
1fe65c00
PB
2190 /* Add a blank line here so it appears in assembler output but not
2191 screen output. */
2192 fprintf (asm_out_file, "\n");
2193 }
b93a436e 2194#endif
4291d9c8 2195
1fe65c00 2196 /* Output something to inform GDB that this compilation was by GCC. */
4291d9c8 2197#ifndef ASM_IDENTIFY_GCC
1fe65c00 2198 fprintf (asm_out_file, "gcc2_compiled.:\n");
4291d9c8 2199#else
1fe65c00 2200 ASM_IDENTIFY_GCC (asm_out_file);
4291d9c8 2201#endif
d0d4af87 2202
0f41302f 2203 /* Output something to identify which front-end produced this file. */
d0d4af87 2204#ifdef ASM_IDENTIFY_LANGUAGE
1fe65c00 2205 ASM_IDENTIFY_LANGUAGE (asm_out_file);
d0d4af87 2206#endif
1fe65c00 2207 } /* ! flag_syntax_only */
d0d4af87 2208
cf440348
JL
2209#ifndef ASM_OUTPUT_SECTION_NAME
2210 if (flag_function_sections)
2211 {
2212 warning ("-ffunction-sections not supported for this target.");
2213 flag_function_sections = 0;
2214 }
257441db
CM
2215 if (flag_data_sections)
2216 {
2217 warning ("-fdata-sections not supported for this target.");
2218 flag_data_sections = 0;
2219 }
cf440348
JL
2220#endif
2221
2222 if (flag_function_sections
2223 && (profile_flag || profile_block_flag))
2224 {
2225 warning ("-ffunction-sections disabled; it makes profiling impossible.");
2226 flag_function_sections = 0;
2227 }
2228
1746404b 2229#ifndef OBJECT_FORMAT_ELF
cf440348
JL
2230 if (flag_function_sections && write_symbols != NO_DEBUG)
2231 warning ("-ffunction-sections may affect debugging on some targets.");
1746404b 2232#endif
cf440348 2233
b93a436e
JL
2234 /* ??? Note: There used to be a conditional here
2235 to call assemble_zeros without fail if DBX_DEBUGGING_INFO is defined.
2236 This was to guarantee separation between gcc_compiled. and
2237 the first function, for the sake of dbx on Suns.
2238 However, having the extra zero here confused the Emacs
2239 code for unexec, and might confuse other programs too.
2240 Therefore, I took out that change.
2241 In future versions we should find another way to solve
2242 that dbx problem. -- rms, 23 May 93. */
ca695ac9 2243
b93a436e
JL
2244 /* Don't let the first function fall at the same address
2245 as gcc_compiled., if profiling. */
2246 if (profile_flag || profile_block_flag)
e5e809f4
JL
2247 {
2248 /* It's best if we can write a nop here since some
2249 assemblers don't tolerate zeros in the text section. */
5a26ca07 2250 output_asm_insn (get_insn_template (CODE_FOR_nop, NULL), NULL_PTR);
e5e809f4 2251 }
4291d9c8
RS
2252
2253 /* If dbx symbol table desired, initialize writing it
2254 and output the predefined types. */
2a9a326b 2255 timevar_push (TV_SYMOUT);
f246a305
RS
2256#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2257 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2a9a326b 2258 dbxout_init (asm_out_file, main_input_filename, getdecls ());
4291d9c8
RS
2259#endif
2260#ifdef SDB_DEBUGGING_INFO
2261 if (write_symbols == SDB_DEBUG)
2a9a326b 2262 sdbout_init (asm_out_file, main_input_filename, getdecls ());
4291d9c8
RS
2263#endif
2264#ifdef DWARF_DEBUGGING_INFO
2265 if (write_symbols == DWARF_DEBUG)
2a9a326b 2266 dwarfout_init (asm_out_file, main_input_filename);
4291d9c8 2267#endif
0021b564
JM
2268#ifdef DWARF2_UNWIND_INFO
2269 if (dwarf2out_do_frame ())
2270 dwarf2out_frame_init ();
2271#endif
9a666dda
JM
2272#ifdef DWARF2_DEBUGGING_INFO
2273 if (write_symbols == DWARF2_DEBUG)
2a9a326b 2274 dwarf2out_init (asm_out_file, main_input_filename);
9a666dda 2275#endif
2a9a326b 2276 timevar_pop (TV_SYMOUT);
4291d9c8
RS
2277
2278 /* Initialize yet another pass. */
2279
b93a436e 2280 init_final (main_input_filename);
0d332add 2281 init_branch_prob (dump_base_name);
4291d9c8 2282
2a9a326b 2283 timevar_push (TV_PARSE);
4291d9c8
RS
2284
2285 /* Call the parser, which parses the entire file
2286 (calling rest_of_compilation for each function). */
2287
2288 if (yyparse () != 0)
453dfc78
JW
2289 {
2290 if (errorcount == 0)
6ed551b4 2291 fnotice (stderr, "Errors detected in input file (your bison.simple is out of date)\n");
453dfc78
JW
2292
2293 /* In case there were missing closebraces,
2294 get us back to the global binding level. */
2295 while (! global_bindings_p ())
2296 poplevel (0, 0, 0);
2297 }
4291d9c8
RS
2298
2299 /* Compilation is now finished except for writing
2300 what's left of the symbol table output. */
2301
2a9a326b 2302 timevar_pop (TV_PARSE);
4291d9c8 2303
1fe65c00
PB
2304 if (flag_syntax_only)
2305 goto finish_syntax;
2306
4291d9c8
RS
2307 globals = getdecls ();
2308
2309 /* Really define vars that have had only a tentative definition.
2310 Really output inline functions that must actually be callable
2311 and have not been output so far. */
2312
2313 {
2314 int len = list_length (globals);
4da896b2 2315 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
4291d9c8
RS
2316 int i;
2317 tree decl;
2318
2319 /* Process the decls in reverse order--earliest first.
2320 Put them into VEC from back to front, then take out from front. */
2321
2322 for (i = 0, decl = globals; i < len; i++, decl = TREE_CHAIN (decl))
2323 vec[len - i - 1] = decl;
2324
32291f94 2325 wrapup_global_declarations (vec, len);
4291d9c8 2326
2668793e
JL
2327 /* This must occur after the loop to output deferred functions. Else
2328 the profiler initializer would not be emitted if all the functions
2329 in this compilation unit were deferred.
2330
2331 output_func_start_profiler can not cause any additional functions or
2332 data to need to be output, so it need not be in the deferred function
2333 loop above. */
2334 output_func_start_profiler ();
2335
3d195391
MS
2336 /* Now that all possible functions have been output, we can dump
2337 the exception table. */
2338
0021b564 2339 output_exception_table ();
6c3fce73
MM
2340
2341 check_global_declarations (vec, len);
4da896b2
MM
2342
2343 /* Clean up. */
2344 free (vec);
4291d9c8
RS
2345 }
2346
4b8af8d9
JM
2347 /* Write out any pending weak symbol declarations. */
2348
2349 weak_finish ();
2350
4291d9c8 2351 /* Do dbx symbols */
2a9a326b 2352 timevar_push (TV_SYMOUT);
f246a305
RS
2353#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2354 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2a9a326b 2355 dbxout_finish (asm_out_file, main_input_filename);
4291d9c8
RS
2356#endif
2357
2358#ifdef DWARF_DEBUGGING_INFO
2359 if (write_symbols == DWARF_DEBUG)
2a9a326b 2360 dwarfout_finish ();
4291d9c8
RS
2361#endif
2362
0021b564
JM
2363#ifdef DWARF2_UNWIND_INFO
2364 if (dwarf2out_do_frame ())
2365 dwarf2out_frame_finish ();
2366#endif
2367
9a666dda
JM
2368#ifdef DWARF2_DEBUGGING_INFO
2369 if (write_symbols == DWARF2_DEBUG)
2a9a326b 2370 dwarf2out_finish ();
9a666dda 2371#endif
2a9a326b 2372 timevar_pop (TV_SYMOUT);
9a666dda 2373
4291d9c8
RS
2374 /* Output some stuff at end of file if nec. */
2375
b93a436e 2376 end_final (dump_base_name);
032713aa 2377
51891abe 2378 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
61098249 2379 {
2a9a326b 2380 timevar_push (TV_DUMP);
61098249 2381 open_dump_file (DFI_bp, NULL);
51891abe
JH
2382
2383 end_branch_prob ();
2384
61098249 2385 close_dump_file (DFI_bp, NULL, NULL_RTX);
2a9a326b 2386 timevar_pop (TV_DUMP);
61098249 2387 }
032713aa 2388
4291d9c8 2389#ifdef ASM_FILE_END
b93a436e 2390 ASM_FILE_END (asm_out_file);
4291d9c8
RS
2391#endif
2392
4291d9c8 2393 /* Language-specific end of compilation actions. */
1fe65c00 2394 finish_syntax:
4291d9c8
RS
2395 lang_finish ();
2396
2397 /* Close the dump files. */
2398
2399 if (flag_gen_aux_info)
2400 {
2401 fclose (aux_info_file);
2402 if (errorcount)
2403 unlink (aux_info_file_name);
2404 }
2405
61098249 2406 if (optimize > 0 && open_dump_file (DFI_combine, NULL))
4291d9c8 2407 {
2a9a326b
AS
2408 timevar_push (TV_DUMP);
2409 dump_combine_total_stats (rtl_dump_file);
61098249 2410 close_dump_file (DFI_combine, NULL, NULL_RTX);
2a9a326b 2411 timevar_pop (TV_DUMP);
4291d9c8
RS
2412 }
2413
4291d9c8
RS
2414 /* Close non-debugging input and output files. Take special care to note
2415 whether fclose returns an error, since the pages might still be on the
2416 buffer chain while the file is open. */
2417
e3d1fd32 2418 finish_parse ();
e56e519d 2419
1fe65c00
PB
2420 if (! flag_syntax_only
2421 && (ferror (asm_out_file) != 0 || fclose (asm_out_file) != 0))
4291d9c8
RS
2422 fatal_io_error (asm_file_name);
2423
735a0e33
UD
2424 /* Do whatever is necessary to finish printing the graphs. */
2425 if (graph_dump_format != no_graph)
2426 {
61098249
RH
2427 int i;
2428
2429 for (i = 0; i < DFI_MAX; ++i)
2430 if (dump_file[i].initialized && dump_file[i].graph_dump_p)
2431 {
2432 char seq[16];
2433 char *suffix;
2434
2435 sprintf (seq, ".%02d.", i);
2436 suffix = concat (seq, dump_file[i].extension, NULL);
2437 finish_graph_dump_file (dump_base_name, suffix);
2438 free (suffix);
2439 }
735a0e33
UD
2440 }
2441
ed396e68
BS
2442 /* Free up memory for the benefit of leak detectors. */
2443 free_reg_info ();
2444
2a9a326b
AS
2445 /* Stop timing total execution time. */
2446 timevar_stop (TV_TOTAL);
2447
4291d9c8
RS
2448 /* Print the times. */
2449
2450 if (! quiet_flag)
2a9a326b 2451 timevar_print (stderr);
4291d9c8
RS
2452}
2453\f
2454/* This is called from various places for FUNCTION_DECL, VAR_DECL,
2455 and TYPE_DECL nodes.
2456
ef6748cb
MM
2457 This does nothing for local (non-static) variables, unless the
2458 variable is a register variable with an ASMSPEC. In that case, or
2459 if the variable is not an automatice, it sets up the RTL and
2460 outputs any assembler code (label definition, storage allocation
2461 and initialization).
4291d9c8
RS
2462
2463 DECL is the declaration. If ASMSPEC is nonzero, it specifies
2464 the assembler symbol name to be used. TOP_LEVEL is nonzero
2465 if this declaration is not within a function. */
2466
2467void
2468rest_of_decl_compilation (decl, asmspec, top_level, at_end)
2469 tree decl;
87e11268 2470 const char *asmspec;
4291d9c8
RS
2471 int top_level;
2472 int at_end;
2473{
2474 /* Declarations of variables, and of functions defined elsewhere. */
2475
928eb380
RS
2476/* The most obvious approach, to put an #ifndef around where
2477 this macro is used, doesn't work since it's inside a macro call. */
2478#ifndef ASM_FINISH_DECLARE_OBJECT
2479#define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END)
2480#endif
2481
4291d9c8
RS
2482 /* Forward declarations for nested functions are not "external",
2483 but we need to treat them as if they were. */
216d5cdd 2484 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
4291d9c8 2485 || TREE_CODE (decl) == FUNCTION_DECL)
2a9a326b
AS
2486 {
2487 timevar_push (TV_VARCONST);
2488 make_decl_rtl (decl, asmspec, top_level);
2489 /* Initialized extern variable exists to be replaced
2490 with its value, or represents something that will be
2491 output in another file. */
2492 if (! (TREE_CODE (decl) == VAR_DECL
2493 && DECL_EXTERNAL (decl) && TREE_READONLY (decl)
2494 && DECL_INITIAL (decl) != 0
2495 && DECL_INITIAL (decl) != error_mark_node))
2496 /* Don't output anything
2497 when a tentative file-scope definition is seen.
2498 But at end of compilation, do output code for them. */
2499 if (! (! at_end && top_level
2500 && (DECL_INITIAL (decl) == 0
2501 || DECL_INITIAL (decl) == error_mark_node)))
2502 assemble_variable (decl, top_level, at_end, 0);
2503 if (decl == last_assemble_variable_decl)
2504 {
2505 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
2506 top_level, at_end);
2507 }
2508 timevar_pop (TV_VARCONST);
2509 }
216d5cdd 2510 else if (DECL_REGISTER (decl) && asmspec != 0)
4291d9c8
RS
2511 {
2512 if (decode_reg_name (asmspec) >= 0)
2513 {
2514 DECL_RTL (decl) = 0;
2515 make_decl_rtl (decl, asmspec, top_level);
2516 }
2517 else
2518 error ("invalid register name `%s' for register variable", asmspec);
2519 }
f246a305
RS
2520#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2521 else if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2522 && TREE_CODE (decl) == TYPE_DECL)
2a9a326b
AS
2523 {
2524 timevar_push (TV_SYMOUT);
2525 dbxout_symbol (decl, 0);
2526 timevar_pop (TV_SYMOUT);
2527 }
4291d9c8
RS
2528#endif
2529#ifdef SDB_DEBUGGING_INFO
2530 else if (write_symbols == SDB_DEBUG && top_level
2531 && TREE_CODE (decl) == TYPE_DECL)
2a9a326b
AS
2532 {
2533 timevar_push (TV_SYMOUT);
2534 sdbout_symbol (decl, 0);
2535 timevar_pop (TV_SYMOUT);
2536 }
4291d9c8
RS
2537#endif
2538}
2539
2540/* Called after finishing a record, union or enumeral type. */
2541
2542void
2543rest_of_type_compilation (type, toplev)
114791ea 2544#if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) || defined (SDB_DEBUGGING_INFO)
4291d9c8
RS
2545 tree type;
2546 int toplev;
114791ea
KG
2547#else
2548 tree type ATTRIBUTE_UNUSED;
2549 int toplev ATTRIBUTE_UNUSED;
2550#endif
4291d9c8 2551{
2a9a326b 2552 timevar_push (TV_SYMOUT);
f246a305
RS
2553#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
2554 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
2a9a326b 2555 dbxout_symbol (TYPE_STUB_DECL (type), !toplev);
4291d9c8
RS
2556#endif
2557#ifdef SDB_DEBUGGING_INFO
2558 if (write_symbols == SDB_DEBUG)
d8d1d62b 2559 sdbout_symbol (TYPE_STUB_DECL (type), !toplev);
4291d9c8 2560#endif
2a9a326b 2561 timevar_pop (TV_SYMOUT);
4291d9c8
RS
2562}
2563
de23a892
MM
2564/* DECL is an inline function, whose body is present, but which is not
2565 being output at this point. (We're putting that off until we need
2566 to do it.) If there are any actions that need to take place,
2567 including the emission of debugging information for the function,
2568 this is where they should go. This function may be called by
2569 language-dependent code for front-ends that do not even generate
2570 RTL for functions that don't need to be put out. */
2571
2572void
2573note_deferral_of_defined_inline_function (decl)
0ce8a59c 2574 tree decl ATTRIBUTE_UNUSED;
de23a892
MM
2575{
2576#ifdef DWARF_DEBUGGING_INFO
2577 /* Generate the DWARF info for the "abstract" instance of a function
2578 which we may later generate inlined and/or out-of-line instances
2579 of. */
1cfdcc15 2580 if (write_symbols == DWARF_DEBUG && DECL_INLINE (decl))
de23a892
MM
2581 {
2582 /* The front-end may not have set CURRENT_FUNCTION_DECL, but the
2583 DWARF code expects it to be set in this case. Intuitively,
2584 DECL is the function we just finished defining, so setting
2585 CURRENT_FUNCTION_DECL is sensible. */
2586 tree saved_cfd = current_function_decl;
2587 current_function_decl = decl;
2588
2589 /* Let the DWARF code do its work. */
2590 set_decl_abstract_flags (decl, 1);
2591 dwarfout_file_scope_decl (decl, 0);
2592 set_decl_abstract_flags (decl, 0);
2593
2594 /* Reset CURRENT_FUNCTION_DECL. */
2595 current_function_decl = saved_cfd;
2596 }
2597#endif
2598}
2599
4291d9c8
RS
2600/* This is called from finish_function (within yyparse)
2601 after each top-level definition is parsed.
2602 It is supposed to compile that function or variable
2603 and output the assembler code for it.
2604 After we return, the tree storage is freed. */
2605
2606void
2607rest_of_compilation (decl)
2608 tree decl;
2609{
2610 register rtx insns;
4291d9c8 2611 int tem;
ab40ad2b 2612 int failure = 0;
c4403371 2613 int rebuild_label_notes_after_reload;
4291d9c8 2614
2a9a326b
AS
2615 timevar_push (TV_REST_OF_COMPILATION);
2616
d511f9d5
AO
2617 /* When processing delayed functions, prepare_function_start() won't
2618 have been run to re-initialize it. */
2619 cse_not_expected = ! optimize;
2620
fcd7f76b
JM
2621 /* First, make sure that NOTE_BLOCK is set correctly for each
2622 NOTE_INSN_BLOCK_BEG/NOTE_INSN_BLOCK_END note. */
116eebd6
MM
2623 if (!cfun->x_whole_function_mode_p)
2624 identify_blocks ();
fcd7f76b
JM
2625
2626 /* Then remove any notes we don't need. That will make iterating
aeeeda03
MM
2627 over the instruction sequence faster, and allow the garbage
2628 collector to reclaim the memory used by the notes. */
64b59a80 2629 remove_unnecessary_notes ();
aeeeda03 2630
e619323d
DM
2631 /* In function-at-a-time mode, we do not attempt to keep the BLOCK
2632 tree in sensible shape. So, we just recalculate it here. */
01d939e8 2633 if (cfun->x_whole_function_mode_p)
116eebd6 2634 reorder_blocks ();
e619323d 2635
4291d9c8
RS
2636 /* If we are reconsidering an inline function
2637 at the end of compilation, skip the stuff for making it inline. */
2638
2639 if (DECL_SAVED_INSNS (decl) == 0)
2640 {
956d6950 2641 int inlinable = 0;
14a774a9 2642 tree parent;
dff01034 2643 const char *lose;
4291d9c8 2644
14a774a9
RK
2645 /* If this is nested inside an inlined external function, pretend
2646 it was only declared. Since we cannot inline such functions,
2647 generating code for this one is not only not necessary but will
2648 confuse some debugging output writers. */
2649 for (parent = DECL_CONTEXT (current_function_decl);
140b60b4
MM
2650 parent != NULL_TREE;
2651 parent = get_containing_scope (parent))
3e038608
MM
2652 if (TREE_CODE (parent) == FUNCTION_DECL
2653 && DECL_INLINE (parent) && DECL_EXTERNAL (parent))
14a774a9
RK
2654 {
2655 DECL_INITIAL (decl) = 0;
2656 goto exit_rest_of_compilation;
2657 }
2658
4291d9c8 2659 /* If requested, consider whether to make this function inline. */
9deaf1b1 2660 if (DECL_INLINE (decl) || flag_inline_functions)
2a9a326b
AS
2661 {
2662 timevar_push (TV_INTEGRATION);
2663 lose = function_cannot_inline_p (decl);
2664 timevar_pop (TV_INTEGRATION);
2665 if (lose || ! optimize)
2666 {
2667 if (warn_inline && DECL_INLINE (decl))
2668 warning_with_decl (decl, lose);
2669 DECL_ABSTRACT_ORIGIN (decl) = 0;
2670 /* Don't really compile an extern inline function.
2671 If we can't make it inline, pretend
2672 it was only declared. */
2673 if (DECL_EXTERNAL (decl))
2674 {
2675 DECL_INITIAL (decl) = 0;
2676 goto exit_rest_of_compilation;
2677 }
2678 }
2679 else
2680 /* ??? Note that this has the effect of making it look
2681 like "inline" was specified for a function if we choose
2682 to inline it. This isn't quite right, but it's
2683 probably not worth the trouble to fix. */
2684 inlinable = DECL_INLINE (decl) = 1;
2685 }
4291d9c8
RS
2686
2687 insns = get_insns ();
2688
2689 /* Dump the rtl code if we are dumping rtl. */
2690
61098249 2691 if (open_dump_file (DFI_rtl, decl))
032713aa 2692 {
032713aa
NC
2693 if (DECL_SAVED_INSNS (decl))
2694 fprintf (rtl_dump_file, ";; (integrable)\n\n");
61098249 2695 close_dump_file (DFI_rtl, print_rtl, insns);
032713aa 2696 }
4291d9c8
RS
2697
2698 /* If function is inline, and we don't yet know whether to
2699 compile it by itself, defer decision till end of compilation.
2700 finish_compilation will call rest_of_compilation again
16411ea6 2701 for those functions that need to be output. Also defer those
36edd3cc
BS
2702 functions that we are supposed to defer. */
2703
fcd7f76b 2704 if (inlinable
36edd3cc
BS
2705 || (DECL_INLINE (decl)
2706 && ((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
2707 && ! flag_keep_inline_functions)
2708 || DECL_EXTERNAL (decl))))
fcd7f76b 2709 DECL_DEFER_OUTPUT (decl) = 1;
951af26e 2710
f1f39752
JM
2711 if (DECL_INLINE (decl))
2712 /* DWARF wants seperate debugging info for abstract and
2713 concrete instances of all inline functions, including those
2714 declared inline but not inlined, and those inlined even
2715 though they weren't declared inline. Conveniently, that's
2716 what DECL_INLINE means at this point. */
2717 note_deferral_of_defined_inline_function (decl);
2718
fcd7f76b
JM
2719 if (DECL_DEFER_OUTPUT (decl))
2720 {
a701efba
MM
2721 /* If -Wreturn-type, we have to do a bit of compilation.
2722 However, if we just fall through we will call
2723 save_for_inline_copying() which results in excessive
2724 memory use. Instead, we just want to call
2725 jump_optimize() to figure out whether or not we can fall
2726 off the end of the function; we do the minimum amount of
2727 work necessary to make that safe. And, we set optimize
2728 to zero to keep jump_optimize from working too hard. */
2729 if (warn_return_type)
937522b5 2730 {
a701efba
MM
2731 int saved_optimize = optimize;
2732 optimize = 0;
2733 find_exception_handler_labels ();
a18820c6 2734 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
14bf4a33 2735 !JUMP_AFTER_REGSCAN);
a701efba
MM
2736 optimize = saved_optimize;
2737 }
2738
dd1ba632
JM
2739 current_function_nothrow = nothrow_function_p ();
2740 if (current_function_nothrow)
2741 /* Now we know that this can't throw; set the flag for the benefit
2742 of other functions later in this translation unit. */
2743 TREE_NOTHROW (current_function_decl) = 1;
2744
2a9a326b
AS
2745 timevar_push (TV_INTEGRATION);
2746 save_for_inline_nocopy (decl);
2747 timevar_pop (TV_INTEGRATION);
49ad7cfa 2748 DECL_SAVED_INSNS (decl)->inlinable = inlinable;
a701efba 2749 goto exit_rest_of_compilation;
4291d9c8
RS
2750 }
2751
b8471b65 2752 /* If specified extern inline but we aren't inlining it, we are
1cbe6eb6
JM
2753 done. This goes for anything that gets here with DECL_EXTERNAL
2754 set, not just things with DECL_INLINE. */
2755 if (DECL_EXTERNAL (decl))
b8471b65
RK
2756 goto exit_rest_of_compilation;
2757 }
07af9d16 2758
994a57cd
RH
2759 init_EXPR_INSN_LIST_cache ();
2760
0a1c58a2
JL
2761 if (ggc_p)
2762 ggc_collect ();
2763
49ad7cfa
BS
2764 /* Initialize some variables used by the optimizers. */
2765 init_function_for_compilation ();
2766
951af26e
JM
2767 if (! DECL_DEFER_OUTPUT (decl))
2768 TREE_ASM_WRITTEN (decl) = 1;
4291d9c8
RS
2769
2770 /* Now that integrate will no longer see our rtl, we need not distinguish
2771 between the return value of this function and the return value of called
2772 functions. */
2773 rtx_equal_function_value_matters = 0;
2774
32235b30
RS
2775 /* Don't return yet if -Wreturn-type; we need to do jump_optimize. */
2776 if ((rtl_dump_and_exit || flag_syntax_only) && !warn_return_type)
a18820c6 2777 goto exit_rest_of_compilation;
4291d9c8 2778
154bba13
TT
2779 /* Emit code to get eh context, if needed. */
2780 emit_eh_context ();
2781
9d9e5c09
RH
2782 /* We may have potential sibling or tail recursion sites. Select one
2783 (of possibly multiple) methods of performing the call. */
2784 if (flag_optimize_sibling_calls)
2785 {
2a9a326b 2786 timevar_push (TV_JUMP);
9d9e5c09
RH
2787 open_dump_file (DFI_sibling, decl);
2788
2a9a326b 2789 optimize_sibling_and_tail_recursive_calls ();
9d9e5c09
RH
2790
2791 close_dump_file (DFI_sibling, print_rtl, get_insns ());
2a9a326b 2792 timevar_pop (TV_JUMP);
9d9e5c09 2793 }
2a9a326b 2794
4291d9c8
RS
2795#ifdef FINALIZE_PIC
2796 /* If we are doing position-independent code generation, now
2797 is the time to output special prologues and epilogues.
2798 We do not want to do this earlier, because it just clutters
2799 up inline functions with meaningless insns. */
2800 if (flag_pic)
2801 FINALIZE_PIC;
2802#endif
2803
89418a92
BK
2804 /* From now on, allocate rtl in current_obstack, not in saveable_obstack.
2805 Note that that may have been done above, in save_for_inline_copying.
2806 The call to resume_temporary_allocation near the end of this function
2807 goes back to the usual state of affairs. This must be done after
2808 we've built up any unwinders for exception handling, and done
2809 the FINALIZE_PIC work, if necessary. */
2810
2811 rtl_in_current_obstack ();
3d195391 2812
4291d9c8
RS
2813 insns = get_insns ();
2814
2815 /* Copy any shared structure that should not be shared. */
d1b81779 2816 unshare_all_rtl (current_function_decl, insns);
4291d9c8 2817
c9ec4f99
DM
2818#ifdef SETJMP_VIA_SAVE_AREA
2819 /* This must be performed before virutal register instantiation. */
2820 if (current_function_calls_alloca)
2821 optimize_save_area_alloca (insns);
2822#endif
2823
4291d9c8 2824 /* Instantiate all virtual registers. */
a18820c6 2825 instantiate_virtual_regs (current_function_decl, insns);
4291d9c8 2826
3d195391
MS
2827 /* Find all the EH handlers. */
2828 find_exception_handler_labels ();
2829
61098249 2830 open_dump_file (DFI_jump, decl);
02db399d 2831
cc4e79d8
JL
2832 /* Always do one jump optimization pass to ensure that JUMP_LABEL fields
2833 are initialized and to compute whether control can drop off the end
2834 of the function. */
994a57cd 2835
2a9a326b
AS
2836 timevar_push (TV_JUMP);
2837 /* Turn NOTE_INSN_EXPECTED_VALUE into REG_BR_PROB. Do this
2838 before jump optimization switches branch directions. */
2839 expected_value_to_br_prob ();
2840
2841 reg_scan (insns, max_reg_num (), 0);
2842 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2843 JUMP_AFTER_REGSCAN);
2844
2845 timevar_pop (TV_JUMP);
673b5311 2846
32235b30 2847 /* Now is when we stop if -fsyntax-only and -Wreturn-type. */
951af26e 2848 if (rtl_dump_and_exit || flag_syntax_only || DECL_DEFER_OUTPUT (decl))
a18820c6
RH
2849 {
2850 close_dump_file (DFI_jump, print_rtl, insns);
2851 goto exit_rest_of_compilation;
2852 }
2853
2a9a326b 2854 timevar_push (TV_JUMP);
9ec6d7ab
RH
2855
2856 if (optimize > 0)
2a9a326b
AS
2857 {
2858 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2859 cleanup_cfg (insns);
9ec6d7ab
RH
2860
2861 /* ??? Run if-conversion before delete_null_pointer_checks,
2862 since the later does not preserve the CFG. This should
2863 be changed -- no since converting if's that are going to
2864 be deleted. */
2865 timevar_push (TV_IFCVT);
2866 if_convert (0);
2867 timevar_pop (TV_IFCVT);
2868
2869 /* Try to identify useless null pointer tests and delete them. */
2870 if (flag_delete_null_pointer_checks)
2871 delete_null_pointer_checks (insns);
2a9a326b
AS
2872 }
2873
2874 /* Jump optimization, and the removal of NULL pointer checks, may
2875 have reduced the number of instructions substantially. CSE, and
2876 future passes, allocate arrays whose dimensions involve the
2877 maximum instruction UID, so if we can reduce the maximum UID
2878 we'll save big on memory. */
2879 renumber_insns (rtl_dump_file);
2880 timevar_pop (TV_JUMP);
a18820c6
RH
2881
2882 close_dump_file (DFI_jump, print_rtl, insns);
dfdb644f 2883
a3770a81
RH
2884 if (ggc_p)
2885 ggc_collect ();
2886
4291d9c8
RS
2887 /* Perform common subexpression elimination.
2888 Nonzero value from `cse_main' means that jumps were simplified
2889 and some code may now be unreachable, so do
2890 jump optimization again. */
2891
4291d9c8
RS
2892 if (optimize > 0)
2893 {
61098249 2894 open_dump_file (DFI_cse, decl);
2a9a326b 2895 timevar_push (TV_CSE);
032713aa 2896
2a9a326b 2897 reg_scan (insns, max_reg_num (), 1);
4291d9c8
RS
2898
2899 if (flag_thread_jumps)
2a9a326b
AS
2900 {
2901 timevar_push (TV_JUMP);
2902 thread_jumps (insns, max_reg_num (), 1);
2903 timevar_pop (TV_JUMP);
2904 }
4291d9c8 2905
2a9a326b 2906 tem = cse_main (insns, max_reg_num (), 0, rtl_dump_file);
a18820c6 2907
c5c76735
JL
2908 /* If we are not running the second CSE pass, then we are no longer
2909 expecting CSE to be run. */
2910 cse_not_expected = !flag_rerun_cse_after_loop;
2911
534bfae4 2912 if (tem || optimize > 1)
2a9a326b
AS
2913 {
2914 timevar_push (TV_JUMP);
2915 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
2916 !JUMP_AFTER_REGSCAN);
2917 timevar_pop (TV_JUMP);
2918 }
dfdb644f 2919
e48a7fbe
JL
2920 /* Run this after jump optmizations remove all the unreachable code
2921 so that unreachable code will not keep values live. */
2a9a326b 2922 delete_trivially_dead_insns (insns, max_reg_num ());
e48a7fbe 2923
dfdb644f 2924 /* Try to identify useless null pointer tests and delete them. */
b6d24183 2925 if (flag_delete_null_pointer_checks)
2a9a326b
AS
2926 {
2927 timevar_push (TV_JUMP);
2928 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
2929
2930 cleanup_cfg (insns);
2931
2932 delete_null_pointer_checks (insns);
2933 timevar_pop (TV_JUMP);
2934 }
4291d9c8 2935
673b5311
MM
2936 /* The second pass of jump optimization is likely to have
2937 removed a bunch more instructions. */
2938 renumber_insns (rtl_dump_file);
735a0e33 2939
2a9a326b 2940 timevar_pop (TV_CSE);
61098249 2941 close_dump_file (DFI_cse, print_rtl, insns);
032713aa 2942 }
4291d9c8 2943
61098249
RH
2944 open_dump_file (DFI_addressof, decl);
2945
e9a25f70
JL
2946 purge_addressof (insns);
2947 reg_scan (insns, max_reg_num (), 1);
2948
61098249 2949 close_dump_file (DFI_addressof, print_rtl, insns);
735a0e33 2950
a3770a81
RH
2951 if (ggc_p)
2952 ggc_collect ();
2953
a18820c6 2954 if (optimize > 0 && flag_ssa)
d9d4fb43 2955 {
2a9a326b
AS
2956 /* Convert to SSA form. */
2957
2958 timevar_push (TV_TO_SSA);
61098249 2959 open_dump_file (DFI_ssa, decl);
a18820c6 2960
2a9a326b
AS
2961 find_basic_blocks (insns, max_reg_num(), rtl_dump_file);
2962 cleanup_cfg (insns);
2963 convert_to_ssa ();
a18820c6 2964
61098249 2965 close_dump_file (DFI_ssa, print_rtl_with_bb, insns);
2a9a326b 2966 timevar_pop (TV_TO_SSA);
d9d4fb43 2967
2a9a326b 2968 /* Currently, there's nothing to do in SSA form. */
d9d4fb43 2969
2a9a326b 2970 /* Convert from SSA form. */
a18820c6 2971
2a9a326b
AS
2972 timevar_push (TV_FROM_SSA);
2973 open_dump_file (DFI_ussa, decl);
a18820c6 2974
2a9a326b
AS
2975 convert_from_ssa ();
2976 /* New registers have been created. Rescan their usage. */
2977 reg_scan (insns, max_reg_num (), 1);
2978 /* Life analysis used in SSA adds log_links but these
2979 shouldn't be there until the flow stage, so clear
2980 them away. */
2981 clear_log_links (insns);
a18820c6
RH
2982
2983 close_dump_file (DFI_ussa, print_rtl_with_bb, insns);
2a9a326b 2984 timevar_pop (TV_FROM_SSA);
d9d4fb43
AS
2985
2986 if (ggc_p)
2987 ggc_collect ();
2988 }
2989
7506f491
DE
2990 /* Perform global cse. */
2991
2992 if (optimize > 0 && flag_gcse)
2993 {
2a9a326b 2994 timevar_push (TV_GCSE);
61098249 2995 open_dump_file (DFI_gcse, decl);
735a0e33 2996
2a9a326b
AS
2997 find_basic_blocks (insns, max_reg_num(), rtl_dump_file);
2998 cleanup_cfg (insns);
2999 tem = gcse_main (insns, rtl_dump_file);
e78d9500
JL
3000
3001 /* If gcse altered any jumps, rerun jump optimizations to clean
3002 things up. */
3003 if (tem)
3004 {
2a9a326b
AS
3005 timevar_push (TV_JUMP);
3006 jump_optimize (insns, !JUMP_CROSS_JUMP, !JUMP_NOOP_MOVES,
3007 !JUMP_AFTER_REGSCAN);
3008 timevar_pop (TV_JUMP);
e78d9500 3009 }
7506f491 3010
61098249 3011 close_dump_file (DFI_gcse, print_rtl, insns);
2a9a326b 3012 timevar_pop (TV_GCSE);
a3770a81
RH
3013
3014 if (ggc_p)
3015 ggc_collect ();
7506f491 3016 }
a18820c6 3017
4291d9c8
RS
3018 /* Move constant computations out of loops. */
3019
3020 if (optimize > 0)
3021 {
2a9a326b 3022 timevar_push (TV_LOOP);
61098249 3023 open_dump_file (DFI_loop, decl);
2a9a326b
AS
3024
3025 if (flag_rerun_loop_opt)
3026 {
3027 /* We only want to perform unrolling once. */
032713aa 3028
1bf14ad7 3029 loop_optimize (insns, rtl_dump_file, 0);
a18820c6 3030
2a9a326b
AS
3031 /* The first call to loop_optimize makes some instructions
3032 trivially dead. We delete those instructions now in the
3033 hope that doing so will make the heuristics in loop work
3034 better and possibly speed up compilation. */
3035 delete_trivially_dead_insns (insns, max_reg_num ());
c6a26dc4 3036
2a9a326b 3037 /* The regscan pass is currently necessary as the alias
c6a26dc4 3038 analysis code depends on this information. */
2a9a326b
AS
3039 reg_scan (insns, max_reg_num (), 1);
3040 }
1bf14ad7 3041 loop_optimize (insns, rtl_dump_file, (flag_unroll_loops ? LOOP_UNROLL : 0) | LOOP_BCT);
735a0e33 3042
61098249 3043 close_dump_file (DFI_loop, print_rtl, insns);
2a9a326b 3044 timevar_pop (TV_LOOP);
a3770a81
RH
3045
3046 if (ggc_p)
3047 ggc_collect ();
4291d9c8
RS
3048 }
3049
032713aa 3050 if (optimize > 0)
c2f006ec 3051 {
2a9a326b 3052 timevar_push (TV_CSE2);
61098249 3053 open_dump_file (DFI_cse2, decl);
735a0e33 3054
032713aa
NC
3055 if (flag_rerun_cse_after_loop)
3056 {
3057 /* Running another jump optimization pass before the second
3058 cse pass sometimes simplifies the RTL enough to allow
3059 the second CSE pass to do a better job. Jump_optimize can change
3060 max_reg_num so we must rerun reg_scan afterwards.
3061 ??? Rework to not call reg_scan so often. */
2a9a326b 3062 timevar_push (TV_JUMP);
9ec6d7ab 3063
2a9a326b
AS
3064 reg_scan (insns, max_reg_num (), 0);
3065 jump_optimize (insns, !JUMP_CROSS_JUMP,
3066 !JUMP_NOOP_MOVES, JUMP_AFTER_REGSCAN);
9ec6d7ab
RH
3067
3068 timevar_push (TV_IFCVT);
3069
3070 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3071 cleanup_cfg (insns);
3072 if_convert (0);
3073
3074 timevar_pop(TV_IFCVT);
3075
2a9a326b 3076 timevar_pop (TV_JUMP);
032713aa 3077
2a9a326b
AS
3078 reg_scan (insns, max_reg_num (), 0);
3079 tem = cse_main (insns, max_reg_num (), 1, rtl_dump_file);
a18820c6 3080
032713aa 3081 if (tem)
2a9a326b
AS
3082 {
3083 timevar_push (TV_JUMP);
3084 jump_optimize (insns, !JUMP_CROSS_JUMP,
3085 !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
3086 timevar_pop (TV_JUMP);
3087 }
032713aa 3088 }
0d332add 3089
032713aa
NC
3090 if (flag_thread_jumps)
3091 {
3092 /* This pass of jump threading straightens out code
3093 that was kinked by loop optimization. */
2a9a326b
AS
3094 timevar_push (TV_JUMP);
3095 reg_scan (insns, max_reg_num (), 0);
3096 thread_jumps (insns, max_reg_num (), 0);
3097 timevar_pop (TV_JUMP);
032713aa 3098 }
735a0e33 3099
61098249 3100 close_dump_file (DFI_cse2, print_rtl, insns);
2a9a326b 3101 timevar_pop (TV_CSE2);
a3770a81
RH
3102
3103 if (ggc_p)
3104 ggc_collect ();
032713aa 3105 }
735a0e33 3106
9ec6d7ab
RH
3107 cse_not_expected = 1;
3108
4291d9c8
RS
3109 regclass_init ();
3110
032713aa 3111
d29c259b
RH
3112 /* Do control and data flow analysis; wrote some of the results to
3113 the dump file. */
4291d9c8 3114
2a9a326b 3115 timevar_push (TV_FLOW);
51891abe
JH
3116 open_dump_file (DFI_cfg, decl);
3117
2a9a326b
AS
3118 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3119 cleanup_cfg (insns);
51891abe
JH
3120
3121 close_dump_file (DFI_cfg, print_rtl_with_bb, insns);
3122
3123 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
3124 {
3125 timevar_push (TV_BRANCH_PROB);
3126 open_dump_file (DFI_bp, decl);
3127
3128 branch_prob ();
3129
3130 close_dump_file (DFI_bp, print_rtl_with_bb, insns);
3131 timevar_pop (TV_BRANCH_PROB);
3132 }
3133
3134 open_dump_file (DFI_life, decl);
2a9a326b
AS
3135 if (optimize)
3136 {
3137 struct loops loops;
604617ba 3138
2a9a326b
AS
3139 /* Discover and record the loop depth at the head of each basic
3140 block. The loop infrastructure does the real job for us. */
3141 flow_loops_find (&loops);
604617ba 3142
2a9a326b 3143 /* Estimate using heuristics if no profiling info is available. */
51891abe 3144 estimate_probability (&loops);
604617ba 3145
2a9a326b
AS
3146 if (rtl_dump_file)
3147 flow_loops_dump (&loops, rtl_dump_file, 0);
604617ba 3148
2a9a326b
AS
3149 flow_loops_free (&loops);
3150 }
3151 life_analysis (insns, rtl_dump_file, PROP_FINAL);
3152 mark_constant_function ();
3153 timevar_pop (TV_FLOW);
5ece9746 3154
d29c259b
RH
3155 if (warn_uninitialized || extra_warnings)
3156 {
3157 uninitialized_vars_warning (DECL_INITIAL (decl));
3158 if (extra_warnings)
3159 setjmp_args_warning ();
4291d9c8
RS
3160 }
3161
51891abe 3162 close_dump_file (DFI_life, print_rtl_with_bb, insns);
735a0e33 3163
a3770a81
RH
3164 if (ggc_p)
3165 ggc_collect ();
3166
4291d9c8
RS
3167 /* If -opt, try combining insns through substitution. */
3168
3169 if (optimize > 0)
032713aa 3170 {
44a76fc8
AG
3171 int rebuild_jump_labels_after_combine = 0;
3172
2a9a326b 3173 timevar_push (TV_COMBINE);
61098249
RH
3174 open_dump_file (DFI_combine, decl);
3175
2a9a326b
AS
3176 rebuild_jump_labels_after_combine
3177 = combine_instructions (insns, max_reg_num ());
44a76fc8
AG
3178
3179 /* Combining insns may have turned an indirect jump into a
3180 direct jump. Rebuid the JUMP_LABEL fields of jumping
3181 instructions. */
3182 if (rebuild_jump_labels_after_combine)
3183 {
2a9a326b
AS
3184 timevar_push (TV_JUMP);
3185 rebuild_jump_labels (insns);
3186 timevar_pop (TV_JUMP);
9ec6d7ab
RH
3187
3188 timevar_push (TV_FLOW);
3189 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
3190 cleanup_cfg (insns);
3191
3192 /* Blimey. We've got to have the CFG up to date for the call to
3193 if_convert below. However, the random deletion of blocks
3194 without updating life info can wind up with Wierd Stuff in
3195 global_live_at_end. We then run sched1, which updates things
3196 properly, discovers the wierdness and aborts. */
3197 update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
e54d500c
JH
3198 PROP_DEATH_NOTES | PROP_KILL_DEAD_CODE
3199 | PROP_SCAN_DEAD_CODE);
9ec6d7ab
RH
3200
3201 timevar_pop (TV_FLOW);
44a76fc8 3202 }
735a0e33 3203
61098249 3204 close_dump_file (DFI_combine, print_rtl_with_bb, insns);
2a9a326b 3205 timevar_pop (TV_COMBINE);
a3770a81
RH
3206
3207 if (ggc_p)
3208 ggc_collect ();
032713aa 3209 }
8c660648 3210
9ec6d7ab
RH
3211 /* Rerun if-conversion, as combine may have simplified things enough to
3212 now meet sequence length restrictions. */
3213 if (optimize > 0)
3214 {
3215 timevar_push (TV_IFCVT);
3216 open_dump_file (DFI_ce, decl);
3217
3218 if_convert (1);
3219
3220 close_dump_file (DFI_ce, print_rtl_with_bb, insns);
3221 timevar_pop (TV_IFCVT);
3222 }
3223
8c660648
JL
3224 /* Register allocation pre-pass, to reduce number of moves
3225 necessary for two-address machines. */
1230327b 3226 if (optimize > 0 && (flag_regmove || flag_expensive_optimizations))
032713aa 3227 {
2a9a326b 3228 timevar_push (TV_REGMOVE);
61098249 3229 open_dump_file (DFI_regmove, decl);
735a0e33 3230
2a9a326b 3231 regmove_optimize (insns, max_reg_num (), rtl_dump_file);
735a0e33 3232
61098249 3233 close_dump_file (DFI_regmove, print_rtl_with_bb, insns);
2a9a326b 3234 timevar_pop (TV_REGMOVE);
a3770a81
RH
3235
3236 if (ggc_p)
3237 ggc_collect ();
032713aa 3238 }
8c660648 3239
97d36f45
RH
3240#ifdef OPTIMIZE_MODE_SWITCHING
3241 if (optimize)
9f09b1f2 3242 {
2a9a326b 3243 timevar_push (TV_GCSE);
97d36f45
RH
3244
3245 if (optimize_mode_switching (NULL_PTR))
3246 {
3247 /* We did work, and so had to regenerate global life information.
3248 Take advantage of this and don't re-recompute register life
3249 information below. */
3250 no_new_pseudos = 1;
3251 }
3252
2a9a326b 3253 timevar_pop (TV_GCSE);
9f09b1f2 3254 }
97d36f45 3255#endif
9f09b1f2 3256
375e2d5c 3257#ifdef INSN_SCHEDULING
97726216
RK
3258
3259 /* Print function header into sched dump now
3260 because doing the sched analysis makes some of the dump. */
4291d9c8
RS
3261 if (optimize > 0 && flag_schedule_insns)
3262 {
2a9a326b 3263 timevar_push (TV_SCHED);
61098249 3264 open_dump_file (DFI_sched, decl);
735a0e33 3265
4291d9c8
RS
3266 /* Do control and data sched analysis,
3267 and write some of the results to dump file. */
3268
2a9a326b 3269 schedule_insns (rtl_dump_file);
735a0e33 3270
61098249 3271 close_dump_file (DFI_sched, print_rtl_with_bb, insns);
2a9a326b 3272 timevar_pop (TV_SCHED);
a3770a81
RH
3273
3274 if (ggc_p)
3275 ggc_collect ();
9ec6d7ab
RH
3276
3277 /* Register lifetime information is up to date. From now on
3278 we can not generate any new pseudos. */
3279 no_new_pseudos = 1;
4291d9c8 3280 }
375e2d5c 3281#endif
4291d9c8 3282
54ff41b7
JW
3283 /* Determine if the current function is a leaf before running reload
3284 since this can impact optimizations done by the prologue and
3285 epilogue thus changing register elimination offsets. */
3286 current_function_is_leaf = leaf_function_p ();
3287
2a9a326b 3288 timevar_push (TV_LOCAL_ALLOC);
61098249 3289 open_dump_file (DFI_lreg, decl);
246fd41f 3290
d29c259b 3291 /* Allocate pseudo-regs that are used only within 1 basic block.
3f1b9b1b
JL
3292
3293 RUN_JUMP_AFTER_RELOAD records whether or not we need to rerun the
3294 jump optimizer after register allocation and reloading are finished. */
4291d9c8 3295
97d36f45 3296 if (! no_new_pseudos)
9ec6d7ab
RH
3297 {
3298 recompute_reg_usage (insns, ! optimize_size);
3299
3300 /* Register lifetime information is up to date. From now on
3301 we can not generate any new pseudos. */
3302 no_new_pseudos = 1;
3303 }
2a9a326b
AS
3304 regclass (insns, max_reg_num (), rtl_dump_file);
3305 rebuild_label_notes_after_reload = local_alloc ();
3306
3307 timevar_pop (TV_LOCAL_ALLOC);
4291d9c8 3308
61098249 3309 if (dump_file[DFI_lreg].enabled)
032713aa 3310 {
2a9a326b
AS
3311 timevar_push (TV_DUMP);
3312
3313 dump_flow_info (rtl_dump_file);
3314 dump_local_alloc (rtl_dump_file);
735a0e33 3315
61098249 3316 close_dump_file (DFI_lreg, print_rtl_with_bb, insns);
2a9a326b 3317 timevar_pop (TV_DUMP);
032713aa 3318 }
4291d9c8 3319
a3770a81
RH
3320 if (ggc_p)
3321 ggc_collect ();
3322
2a9a326b 3323 timevar_push (TV_GLOBAL_ALLOC);
61098249 3324 open_dump_file (DFI_greg, decl);
4291d9c8 3325
d29c259b
RH
3326 /* If optimizing, allocate remaining pseudo-regs. Do the reload
3327 pass fixing up any insns that are invalid. */
4291d9c8 3328
2a9a326b
AS
3329 if (optimize)
3330 failure = global_alloc (rtl_dump_file);
3331 else
3332 {
3333 build_insn_chain (insns);
3334 failure = reload (insns, 0, rtl_dump_file);
3335 }
3336
3337 timevar_pop (TV_GLOBAL_ALLOC);
4291d9c8 3338
ab40ad2b
RS
3339 if (failure)
3340 goto exit_rest_of_compilation;
3341
a3770a81
RH
3342 if (ggc_p)
3343 ggc_collect ();
3344
c8ed219d
RK
3345 /* Do a very simple CSE pass over just the hard registers. */
3346 if (optimize > 0)
2a9a326b
AS
3347 {
3348 timevar_push (TV_RELOAD_CSE_REGS);
3349 reload_cse_regs (insns);
3350 timevar_pop (TV_RELOAD_CSE_REGS);
3351 }
c8ed219d 3352
a18820c6
RH
3353 /* If optimizing, then go ahead and split insns now since we are about
3354 to recompute flow information anyway. */
3355 if (optimize > 0)
d3a923ee 3356 split_all_insns (0);
45c85c4e 3357
0edaaa41
HB
3358 /* Register allocation and reloading may have turned an indirect jump into
3359 a direct jump. If so, we must rebuild the JUMP_LABEL fields of
3360 jumping instructions. */
3361 if (rebuild_label_notes_after_reload)
2a9a326b
AS
3362 {
3363 timevar_push (TV_JUMP);
3364
3365 rebuild_jump_labels (insns);
3366
3367 timevar_pop (TV_JUMP);
3368 }
0edaaa41 3369
61098249 3370 if (dump_file[DFI_greg].enabled)
e881bb1b 3371 {
2a9a326b
AS
3372 timevar_push (TV_DUMP);
3373
3374 dump_global_regs (rtl_dump_file);
3375
61098249 3376 close_dump_file (DFI_greg, print_rtl_with_bb, insns);
2a9a326b 3377 timevar_pop (TV_DUMP);
e881bb1b
RH
3378 }
3379
6764d250 3380 /* Re-create the death notes which were deleted during reload. */
2a9a326b 3381 timevar_push (TV_FLOW2);
61098249 3382 open_dump_file (DFI_flow2, decl);
2a9a326b 3383
d2f7de58
RH
3384 jump_optimize (insns, !JUMP_CROSS_JUMP,
3385 !JUMP_NOOP_MOVES, !JUMP_AFTER_REGSCAN);
2a9a326b 3386 find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
19d3c25c
RH
3387
3388 /* On some machines, the prologue and epilogue code, or parts thereof,
3389 can be represented as RTL. Doing so lets us schedule insns between
3390 it and the rest of the code and also allows delayed branch
3391 scheduling to operate in the epilogue. */
3392 thread_prologue_and_epilogue_insns (insns);
3393
6764d250 3394 if (optimize)
e881bb1b 3395 {
2a9a326b
AS
3396 cleanup_cfg (insns);
3397 life_analysis (insns, rtl_dump_file, PROP_FINAL);
1e7f0a48 3398
5fa41e13 3399 /* This is kind of a heuristic. We need to run combine_stack_adjustments
f73ad30e
JH
3400 even for machines with possibly nonzero RETURN_POPS_ARGS
3401 and ACCUMULATE_OUTGOING_ARGS. We expect that only ports having
3402 push instructions will have popping returns. */
3403#ifndef PUSH_ROUNDING
3404 if (!ACCUMULATE_OUTGOING_ARGS)
1e7f0a48 3405#endif
2a9a326b 3406 combine_stack_adjustments ();
1e7f0a48 3407
a3770a81
RH
3408 if (ggc_p)
3409 ggc_collect ();
e881bb1b 3410 }
6764d250 3411
56744d1a
JL
3412 flow2_completed = 1;
3413
61098249 3414 close_dump_file (DFI_flow2, print_rtl_with_bb, insns);
2a9a326b 3415 timevar_pop (TV_FLOW2);
e881bb1b 3416
9ec6d7ab
RH
3417 if (optimize > 0)
3418 {
3419 timevar_push (TV_IFCVT2);
3420 open_dump_file (DFI_ce2, decl);
3421
3422 if_convert (1);
3423
3424 close_dump_file (DFI_ce2, print_rtl_with_bb, insns);
3425 timevar_pop (TV_IFCVT2);
3426 }
3427
ede7cd44
RH
3428#ifdef HAVE_peephole2
3429 if (optimize > 0 && flag_peephole2)
3430 {
2a9a326b 3431 timevar_push (TV_PEEPHOLE2);
2a9a326b 3432 open_dump_file (DFI_peephole2, decl);
9ec6d7ab 3433
2a9a326b 3434 peephole2_optimize (rtl_dump_file);
ede7cd44 3435
61098249 3436 close_dump_file (DFI_peephole2, print_rtl_with_bb, insns);
2a9a326b 3437 timevar_pop (TV_PEEPHOLE2);
ede7cd44
RH
3438 }
3439#endif
3440
5fa41e13
SC
3441 if (optimize > 0 && flag_rename_registers)
3442 {
3443 timevar_push (TV_RENAME_REGISTERS);
3444 open_dump_file (DFI_rnreg, decl);
3445
3446 regrename_optimize ();
3447
3448 close_dump_file (DFI_rnreg, print_rtl_with_bb, insns);
3449 timevar_pop (TV_RENAME_REGISTERS);
3450 }
3451
375e2d5c 3452#ifdef INSN_SCHEDULING
4291d9c8
RS
3453 if (optimize > 0 && flag_schedule_insns_after_reload)
3454 {
2a9a326b 3455 timevar_push (TV_SCHED2);
61098249 3456 open_dump_file (DFI_sched2, decl);
4291d9c8
RS
3457
3458 /* Do control and data sched analysis again,
3459 and write some more of the results to dump file. */
3460
2a9a326b 3461 schedule_insns (rtl_dump_file);
4291d9c8 3462
61098249 3463 close_dump_file (DFI_sched2, print_rtl_with_bb, insns);
2a9a326b 3464 timevar_pop (TV_SCHED2);
a3770a81
RH
3465
3466 if (ggc_p)
3467 ggc_collect ();
4291d9c8 3468 }
375e2d5c 3469#endif
4291d9c8
RS
3470
3471#ifdef LEAF_REGISTERS
5ad9b85f
JW
3472 current_function_uses_only_leaf_regs
3473 = optimize > 0 && only_leaf_regs_used () && leaf_function_p ();
4291d9c8
RS
3474#endif
3475
11bdd2ae
SC
3476 if (optimize > 0 && flag_reorder_blocks)
3477 {
2a9a326b 3478 timevar_push (TV_REORDER_BLOCKS);
61098249 3479 open_dump_file (DFI_bbro, decl);
11bdd2ae 3480
2a9a326b 3481 reorder_basic_blocks ();
11bdd2ae 3482
61098249 3483 close_dump_file (DFI_bbro, print_rtl_with_bb, insns);
2a9a326b 3484 timevar_pop (TV_REORDER_BLOCKS);
11bdd2ae
SC
3485 }
3486
d29c259b
RH
3487 /* One more attempt to remove jumps to .+1 left by dead-store elimination.
3488 Also do cross-jumping this time and delete no-op move insns. */
4291d9c8
RS
3489
3490 if (optimize > 0)
3491 {
2a9a326b 3492 timevar_push (TV_JUMP);
61098249
RH
3493 open_dump_file (DFI_jump2, decl);
3494
2a9a326b
AS
3495 jump_optimize (insns, JUMP_CROSS_JUMP, JUMP_NOOP_MOVES,
3496 !JUMP_AFTER_REGSCAN);
735a0e33 3497
9ec6d7ab
RH
3498 /* CFG no longer kept up to date. */
3499
61098249 3500 close_dump_file (DFI_jump2, print_rtl_with_bb, insns);
2a9a326b 3501 timevar_pop (TV_JUMP);
032713aa 3502 }
4291d9c8 3503
2c65021a
RK
3504 /* If a machine dependent reorganization is needed, call it. */
3505#ifdef MACHINE_DEPENDENT_REORG
61098249 3506 open_dump_file (DFI_mach, decl);
88924698 3507
61098249 3508 MACHINE_DEPENDENT_REORG (insns);
032713aa 3509
61098249 3510 close_dump_file (DFI_mach, print_rtl_with_bb, insns);
a3770a81 3511
61098249
RH
3512 if (ggc_p)
3513 ggc_collect ();
2c65021a
RK
3514#endif
3515
4291d9c8 3516 /* If a scheduling pass for delayed branches is to be done,
0f41302f 3517 call the scheduling code. */
4291d9c8
RS
3518
3519#ifdef DELAY_SLOTS
3520 if (optimize > 0 && flag_delayed_branch)
3521 {
2a9a326b 3522 timevar_push (TV_DBR_SCHED);
61098249 3523 open_dump_file (DFI_dbr, decl);
bbd2180d 3524
2a9a326b 3525 dbr_schedule (insns, rtl_dump_file);
735a0e33 3526
61098249 3527 close_dump_file (DFI_dbr, print_rtl_with_bb, insns);
2a9a326b 3528 timevar_pop (TV_DBR_SCHED);
a3770a81 3529
61098249
RH
3530 if (ggc_p)
3531 ggc_collect ();
3532 }
4291d9c8
RS
3533#endif
3534
67e1e279
JL
3535 /* Shorten branches.
3536
3537 Note this must run before reg-stack because of death note (ab)use
3538 in the ia32 backend. */
2a9a326b
AS
3539 timevar_push (TV_SHORTEN_BRANCH);
3540 shorten_branches (get_insns ());
3541 timevar_pop (TV_SHORTEN_BRANCH);
67e1e279 3542
4291d9c8 3543#ifdef STACK_REGS
2a9a326b 3544 timevar_push (TV_REG_STACK);
61098249 3545 open_dump_file (DFI_stack, decl);
25ba7583 3546
2a9a326b 3547 reg_to_stack (insns, rtl_dump_file);
032713aa 3548
61098249 3549 close_dump_file (DFI_stack, print_rtl_with_bb, insns);
2a9a326b 3550 timevar_pop (TV_REG_STACK);
a3770a81 3551
fb13d4d0
JM
3552 if (ggc_p)
3553 ggc_collect ();
4291d9c8
RS
3554#endif
3555
fb13d4d0 3556 current_function_nothrow = nothrow_function_p ();
12a22e76
JM
3557 if (current_function_nothrow)
3558 /* Now we know that this can't throw; set the flag for the benefit
3559 of other functions later in this translation unit. */
3560 TREE_NOTHROW (current_function_decl) = 1;
fb13d4d0 3561
4291d9c8
RS
3562 /* Now turn the rtl into assembler code. */
3563
2a9a326b
AS
3564 timevar_push (TV_FINAL);
3565 {
3566 rtx x;
3567 const char *fnname;
4291d9c8 3568
d171a5fb
RK
3569 /* Get the function's name, as described by its RTL. This may be
3570 different from the DECL_NAME name used in the source file. */
4291d9c8 3571
2a9a326b
AS
3572 x = DECL_RTL (decl);
3573 if (GET_CODE (x) != MEM)
3574 abort ();
3575 x = XEXP (x, 0);
3576 if (GET_CODE (x) != SYMBOL_REF)
3577 abort ();
3578 fnname = XSTR (x, 0);
3579
3580 assemble_start_function (decl, fnname);
3581 final_start_function (insns, asm_out_file, optimize);
3582 final (insns, asm_out_file, optimize, 0);
3583 final_end_function (insns, asm_out_file, optimize);
3584 assemble_end_function (decl, fnname);
3585 if (! quiet_flag)
3586 fflush (asm_out_file);
9ddca353 3587
e881bb1b 3588 /* Release all memory allocated by flow. */
2a9a326b 3589 free_basic_block_vars (0);
e881bb1b 3590
2a9a326b
AS
3591 /* Release all memory held by regsets now */
3592 regset_release_memory ();
3593 }
3594 timevar_pop (TV_FINAL);
4291d9c8 3595
18c038b9
MM
3596 if (ggc_p)
3597 ggc_collect ();
a3770a81 3598
4291d9c8
RS
3599 /* Write DBX symbols if requested */
3600
3601 /* Note that for those inline functions where we don't initially
3602 know for certain that we will be generating an out-of-line copy,
3603 the first invocation of this routine (rest_of_compilation) will
3604 skip over this code by doing a `goto exit_rest_of_compilation;'.
3605 Later on, finish_compilation will call rest_of_compilation again
3606 for those inline functions that need to have out-of-line copies
3607 generated. During that call, we *will* be routed past here. */
3608
2a9a326b 3609 timevar_push (TV_SYMOUT);
4291d9c8
RS
3610#ifdef DBX_DEBUGGING_INFO
3611 if (write_symbols == DBX_DEBUG)
2a9a326b 3612 dbxout_function (decl);
4291d9c8
RS
3613#endif
3614
3615#ifdef DWARF_DEBUGGING_INFO
3616 if (write_symbols == DWARF_DEBUG)
2a9a326b 3617 dwarfout_file_scope_decl (decl, 0);
4291d9c8
RS
3618#endif
3619
9a666dda
JM
3620#ifdef DWARF2_DEBUGGING_INFO
3621 if (write_symbols == DWARF2_DEBUG)
2a9a326b 3622 dwarf2out_decl (decl);
9a666dda 3623#endif
2a9a326b 3624 timevar_pop (TV_SYMOUT);
9a666dda 3625
4291d9c8
RS
3626 exit_rest_of_compilation:
3627
f246a305
RS
3628 /* In case the function was not output,
3629 don't leave any temporary anonymous types
3630 queued up for sdb output. */
3631#ifdef SDB_DEBUGGING_INFO
3632 if (write_symbols == SDB_DEBUG)
37366632 3633 sdbout_types (NULL_TREE);
f246a305
RS
3634#endif
3635
4291d9c8 3636 reload_completed = 0;
56744d1a 3637 flow2_completed = 0;
f1db3576 3638 no_new_pseudos = 0;
4291d9c8 3639
2a9a326b 3640 timevar_push (TV_FINAL);
4291d9c8 3641
2a9a326b
AS
3642 /* Clear out the insn_length contents now that they are no
3643 longer valid. */
3644 init_insn_lengths ();
3645
3646 /* Clear out the real_constant_chain before some of the rtx's
32e705c4 3647 it runs through become garbage. */
2a9a326b
AS
3648 clear_const_double_mem ();
3649
3650 /* Cancel the effect of rtl_in_current_obstack. */
3651 resume_temporary_allocation ();
4291d9c8 3652
2a9a326b
AS
3653 /* Show no temporary slots allocated. */
3654 init_temp_slots ();
adcd38c9 3655
2a9a326b 3656 free_basic_block_vars (0);
fa51b01b 3657
2a9a326b 3658 timevar_pop (TV_FINAL);
adcd38c9 3659
c8d86b9a
JW
3660 /* Make sure volatile mem refs aren't considered valid operands for
3661 arithmetic insns. We must call this here if this is a nested inline
3662 function, since the above code leaves us in the init_recog state
3663 (from final.c), and the function context push/pop code does not
3664 save/restore volatile_ok.
3665
3666 ??? Maybe it isn't necessary for expand_start_function to call this
3667 anymore if we do it here? */
3668
3669 init_recog_no_volatile ();
3670
21cd906e 3671 /* We're done with this function. Free up memory if we can. */
01d939e8 3672 free_after_parsing (cfun);
fa51b01b 3673 if (! DECL_DEFER_OUTPUT (decl))
01d939e8
BS
3674 free_after_compilation (cfun);
3675 cfun = 0;
a3770a81 3676
21cd906e
MM
3677 if (ggc_p)
3678 ggc_collect ();
a3770a81 3679
2a9a326b 3680 timevar_pop (TV_REST_OF_COMPILATION);
4291d9c8
RS
3681}
3682\f
b8468bc7
NC
3683static void
3684display_help ()
3685{
3686 int undoc;
114791ea 3687 unsigned long i;
87e11268 3688 const char * lang;
b8468bc7 3689
40f943dd 3690#ifndef USE_CPPLIB
b8468bc7
NC
3691 printf ("Usage: %s input [switches]\n", progname);
3692 printf ("Switches:\n");
40f943dd 3693#endif
b8468bc7
NC
3694 printf (" -ffixed-<register> Mark <register> as being unavailable to the compiler\n");
3695 printf (" -fcall-used-<register> Mark <register> as being corrupted by function calls\n");
3696 printf (" -fcall-saved-<register> Mark <register> as being preserved across functions\n");
efa3896a 3697 printf (" -finline-limit=<number> Limits the size of inlined functions to <number>\n");
b8468bc7
NC
3698
3699 for (i = NUM_ELEM (f_options); i--;)
3700 {
87e11268 3701 const char * description = f_options[i].description;
b8468bc7
NC
3702
3703 if (description != NULL && * description != 0)
3704 printf (" -f%-21s %s\n",
3705 f_options[i].string, description);
3706 }
3707
3708 printf (" -O[number] Set optimisation level to [number]\n");
3709 printf (" -Os Optimise for space rather than speed\n");
3710 printf (" -pedantic Issue warnings needed by strict compliance to ANSI C\n");
3711 printf (" -pedantic-errors Like -pedantic except that errors are produced\n");
3712 printf (" -w Suppress warnings\n");
3713 printf (" -W Enable extra warnings\n");
3714
3715 for (i = NUM_ELEM (W_options); i--;)
3716 {
87e11268 3717 const char * description = W_options[i].description;
b8468bc7
NC
3718
3719 if (description != NULL && * description != 0)
3720 printf (" -W%-21s %s\n",
3721 W_options[i].string, description);
3722 }
3723
078721e1 3724 printf (" -Wunused Enable unused warnings\n");
b8468bc7
NC
3725 printf (" -Wid-clash-<num> Warn if 2 identifiers have the same first <num> chars\n");
3726 printf (" -Wlarger-than-<number> Warn if an object is larger than <number> bytes\n");
3727 printf (" -p Enable function profiling\n");
3728#if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER)
3729 printf (" -a Enable block profiling \n");
3730#endif
3731#if defined (BLOCK_PROFILER) || defined (FUNCTION_BLOCK_PROFILER) || defined FUNCTION_BLOCK_PROFILER_EXIT
3732 printf (" -ax Enable jump profiling \n");
3733#endif
3734 printf (" -o <file> Place output into <file> \n");
3735 printf (" -G <number> Put global and static data smaller than <number>\n");
40f943dd 3736 printf (" bytes into a special section (on some targets)\n");
b8468bc7
NC
3737
3738 for (i = NUM_ELEM (debug_args); i--;)
3739 {
3740 if (debug_args[i].description != NULL)
39dd8003 3741 printf (" -g%-21s %s\n", debug_args[i].arg, debug_args[i].description);
b8468bc7
NC
3742 }
3743
3744 printf (" -aux-info <file> Emit declaration info into <file>.X\n");
3745 printf (" -quiet Do not display functions compiled or elapsed time\n");
3746 printf (" -version Display the compiler's version\n");
3747 printf (" -d[letters] Enable dumps from specific passes of the compiler\n");
3748 printf (" -dumpbase <file> Base name to be used for dumps from specific passes\n");
7b5efe21 3749#if defined INSN_SCHEDULING
409f8483 3750 printf (" -fsched-verbose=<number> Set the verbosity level of the scheduler\n");
b8468bc7
NC
3751#endif
3752 printf (" --help Display this information\n");
3753
3754 undoc = 0;
3755 lang = "language";
3756
3757 /* Display descriptions of language specific options.
3758 If there is no description, note that there is an undocumented option.
3759 If the description is empty, do not display anything. (This allows
3760 options to be deliberately undocumented, for whatever reason).
3761 If the option string is missing, then this is a marker, indicating
630962bf 3762 that the description string is in fact the name of a language, whose
b8468bc7
NC
3763 language specific options are to follow. */
3764
3765 if (NUM_ELEM (documented_lang_options) > 1)
3766 {
b8468bc7
NC
3767 printf ("\nLanguage specific options:\n");
3768
3769 for (i = 0; i < NUM_ELEM (documented_lang_options); i++)
3770 {
87e11268
KG
3771 const char * description = documented_lang_options[i].description;
3772 const char * option = documented_lang_options[i].option;
b8468bc7
NC
3773
3774 if (description == NULL)
844642e6
NC
3775 {
3776 undoc = 1;
3777
3778 if (extra_warnings)
3779 printf (" %-23.23s [undocumented]\n", option);
3780 }
b8468bc7
NC
3781 else if (* description == 0)
3782 continue;
3783 else if (option == NULL)
3784 {
3785 if (undoc)
3786 printf
3787 ("\nThere are undocumented %s specific options as well.\n",
3788 lang);
3789 undoc = 0;
3790
3791 printf ("\n Options for %s:\n", description);
3792
3793 lang = description;
3794 }
3795 else
3796 printf (" %-23.23s %s\n", option, description);
3797 }
3798 }
3799
3800 if (undoc)
3801 printf ("\nThere are undocumented %s specific options as well.\n", lang);
3802
3803 if (NUM_ELEM (target_switches) > 1
3804#ifdef TARGET_OPTIONS
3805 || NUM_ELEM (target_options) > 1
3806#endif
3807 )
3808 {
3809 int doc = 0;
3810
3811 undoc = 0;
3812
3813 printf ("\nTarget specific options:\n");
3814
3815 for (i = NUM_ELEM (target_switches); i--;)
3816 {
87e11268
KG
3817 const char * option = target_switches[i].name;
3818 const char * description = target_switches[i].description;
b8468bc7 3819
844642e6 3820 if (option == NULL || * option == 0)
b8468bc7
NC
3821 continue;
3822 else if (description == NULL)
844642e6
NC
3823 {
3824 undoc = 1;
3825
3826 if (extra_warnings)
3827 printf (" -m%-21.21s [undocumented]\n", option);
3828 }
b8468bc7 3829 else if (* description != 0)
1f50b029 3830 doc += printf (" -m%-21.21s %s\n", option, description);
b8468bc7
NC
3831 }
3832
3833#ifdef TARGET_OPTIONS
3834 for (i = NUM_ELEM (target_options); i--;)
3835 {
87e11268
KG
3836 const char * option = target_options[i].prefix;
3837 const char * description = target_options[i].description;
b8468bc7 3838
844642e6 3839 if (option == NULL || * option == 0)
b8468bc7
NC
3840 continue;
3841 else if (description == NULL)
844642e6
NC
3842 {
3843 undoc = 1;
3844
3845 if (extra_warnings)
3846 printf (" -m%-21.21s [undocumented]\n", option);
3847 }
b8468bc7 3848 else if (* description != 0)
1f50b029 3849 doc += printf (" -m%-21.21s %s\n", option, description);
b8468bc7
NC
3850 }
3851#endif
3852 if (undoc)
ff59bfe6
JM
3853 {
3854 if (doc)
3855 printf ("\nThere are undocumented target specific options as well.\n");
3856 else
3857 printf (" They exist, but they are not documented.\n");
3858 }
b8468bc7
NC
3859 }
3860}
39dd8003
NC
3861\f
3862/* Parse a -d... comand line switch. */
3863
3864static void
3865decode_d_option (arg)
3866 const char * arg;
3867{
61098249
RH
3868 int i, c, matched;
3869
3870 while (*arg)
3871 switch (c = *arg++)
39dd8003
NC
3872 {
3873 case 'a':
61098249
RH
3874 for (i = 0; i < DFI_MAX; ++i)
3875 dump_file[i].enabled = 1;
39dd8003
NC
3876 break;
3877 case 'A':
3878 flag_debug_asm = 1;
3879 break;
39dd8003
NC
3880 case 'm':
3881 flag_print_mem = 1;
3882 break;
39dd8003
NC
3883 case 'p':
3884 flag_print_asm_name = 1;
3885 break;
39dd8003
NC
3886 case 'v':
3887 graph_dump_format = vcg;
3888 break;
39dd8003
NC
3889 case 'x':
3890 rtl_dump_and_exit = 1;
3891 break;
3892 case 'y':
3893 set_yydebug (1);
3894 break;
39dd8003
NC
3895 case 'D': /* These are handled by the preprocessor. */
3896 case 'I':
3897 break;
61098249 3898
39dd8003 3899 default:
61098249
RH
3900 matched = 0;
3901 for (i = 0; i < DFI_MAX; ++i)
3902 if (c == dump_file[i].debug_switch)
3903 {
3904 dump_file[i].enabled = 1;
3905 matched = 1;
3906 }
3907
3908 if (! matched)
3909 warning ("unrecognized gcc debugging option: %c", c);
39dd8003
NC
3910 break;
3911 }
3912}
b8468bc7 3913
39dd8003
NC
3914/* Parse a -f... comand line switch. ARG is the value after the -f.
3915 It is safe to access 'ARG - 2' to generate the full switch name.
3916 Return the number of strings consumed. */
b8468bc7
NC
3917
3918static int
39dd8003
NC
3919decode_f_option (arg)
3920 const char * arg;
b8468bc7 3921{
39dd8003
NC
3922 int j;
3923
3924 /* Search for the option in the table of binary f options. */
3925 for (j = sizeof (f_options) / sizeof (f_options[0]); j--;)
3926 {
3927 if (!strcmp (arg, f_options[j].string))
3928 {
3929 *f_options[j].variable = f_options[j].on_value;
3930 return 1;
3931 }
3932
3933 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
3934 && ! strcmp (arg + 3, f_options[j].string))
3935 {
3936 *f_options[j].variable = ! f_options[j].on_value;
3937 return 1;
3938 }
3939 }
b8468bc7 3940
39dd8003
NC
3941 if (!strncmp (arg, "inline-limit-", 13)
3942 || !strncmp (arg, "inline-limit=", 13))
3943 inline_max_insns =
3944 read_integral_parameter (arg + 13, arg - 2, inline_max_insns);
3945#ifdef INSN_SCHEDULING
3946 else if (!strncmp (arg, "sched-verbose=", 14))
ec0ce6e2 3947 fix_sched_param ("verbose", (const char *)(arg + 14));
39dd8003
NC
3948#endif
3949 else if (!strncmp (arg, "fixed-", 6))
ec0ce6e2 3950 fix_register ((const char *)(arg + 6), 1, 1);
39dd8003 3951 else if (!strncmp (arg, "call-used-", 10))
ec0ce6e2 3952 fix_register ((const char *)(arg + 10), 0, 1);
39dd8003 3953 else if (!strncmp (arg, "call-saved-", 11))
ec0ce6e2 3954 fix_register ((const char *)(arg + 11), 0, 0);
39dd8003
NC
3955 else if (!strncmp (arg, "align-loops=", 12))
3956 align_loops = read_integral_parameter (arg + 12, arg - 2, align_loops);
3957 else if (!strncmp (arg, "align-functions=", 16))
4559fd9e
RK
3958 align_functions
3959 = read_integral_parameter (arg + 16, arg - 2, align_functions);
39dd8003
NC
3960 else if (!strncmp (arg, "align-jumps=", 12))
3961 align_jumps = read_integral_parameter (arg + 12, arg - 2, align_jumps);
3962 else if (!strncmp (arg, "align-labels=", 13))
3963 align_labels = read_integral_parameter (arg + 13, arg - 2, align_labels);
a157febd
GK
3964 else if (!strncmp (arg, "stack-limit-register=", 21))
3965 {
3966 int reg = decode_reg_name (arg + 21);
3967 if (reg < 0)
3968 error ("unrecognized register name `%s'", arg + 21);
3969 else
3970 stack_limit_rtx = gen_rtx_REG (Pmode, reg);
3971 }
3972 else if (!strncmp (arg, "stack-limit-symbol=", 19))
3973 {
3974 char *nm;
3975 if (ggc_p)
3976 nm = ggc_alloc_string (arg + 19, strlen (arg + 19));
3977 else
3978 nm = xstrdup (arg + 19);
3979 stack_limit_rtx = gen_rtx_SYMBOL_REF (Pmode, nm);
3980 }
3981 else if (!strcmp (arg, "no-stack-limit"))
3982 stack_limit_rtx = NULL_RTX;
39dd8003
NC
3983 else if (!strcmp (arg, "preprocessed"))
3984 /* Recognise this switch but do nothing. This prevents warnings
4dbba876 3985 about an unrecognized switch if cpplib has not been linked in. */
39dd8003 3986 ;
1f50b029 3987 else
39dd8003
NC
3988 return 0;
3989
3990 return 1;
3991}
3992
3993/* Parse a -W... comand line switch. ARG is the value after the -W.
3994 It is safe to access 'ARG - 2' to generate the full switch name.
3995 Return the number of strings consumed. */
4559fd9e 3996
39dd8003
NC
3997static int
3998decode_W_option (arg)
3999 const char * arg;
4000{
4001 int j;
1f50b029 4002
39dd8003
NC
4003 /* Search for the option in the table of binary W options. */
4004
4005 for (j = sizeof (W_options) / sizeof (W_options[0]); j--;)
4006 {
4007 if (!strcmp (arg, W_options[j].string))
4008 {
4009 *W_options[j].variable = W_options[j].on_value;
4010 return 1;
4011 }
4012
4013 if (arg[0] == 'n' && arg[1] == 'o' && arg[2] == '-'
4014 && ! strcmp (arg + 3, W_options[j].string))
4015 {
4016 *W_options[j].variable = ! W_options[j].on_value;
4017 return 1;
4018 }
4019 }
4020
4021 if (!strncmp (arg, "id-clash-", 9))
4022 {
4559fd9e 4023 id_clash_len = read_integral_parameter (arg + 9, arg - 2, -1);
39dd8003 4024
4559fd9e
RK
4025 if (id_clash_len != -1)
4026 warn_id_clash = 1;
39dd8003
NC
4027 }
4028 else if (!strncmp (arg, "larger-than-", 12))
4029 {
4559fd9e
RK
4030 larger_than_size = read_integral_parameter (arg + 12, arg - 2, -1);
4031
4032 if (larger_than_size != -1)
4033 warn_larger_than = 1;
39dd8003 4034 }
078721e1
AC
4035 else if (!strcmp (arg, "unused"))
4036 {
4037 set_Wunused (1);
4038 }
4039 else if (!strcmp (arg, "no-unused"))
4040 {
4041 set_Wunused (0);
4042 }
39dd8003 4043 else
b8468bc7 4044 return 0;
39dd8003
NC
4045
4046 return 1;
4047}
4048
4049/* Parse a -g... comand line switch. ARG is the value after the -g.
4050 It is safe to access 'ARG - 2' to generate the full switch name.
4051 Return the number of strings consumed. */
14a774a9 4052
39dd8003
NC
4053static int
4054decode_g_option (arg)
4055 const char * arg;
4056{
4057 unsigned level;
4058 /* A lot of code assumes write_symbols == NO_DEBUG if the
4059 debugging level is 0 (thus -gstabs1 -gstabs0 would lose track
4060 of what debugging type has been selected). This records the
4061 selected type. It is an error to specify more than one
4062 debugging type. */
4063 static enum debug_info_type selected_debug_type = NO_DEBUG;
4064 /* Non-zero if debugging format has been explicitly set.
4065 -g and -ggdb don't explicitly set the debugging format so
4066 -gdwarf -g3 is equivalent to -gdwarf3. */
4067 static int type_explicitly_set_p = 0;
4068 /* Indexed by enum debug_info_type. */
4069 static const char * debug_type_names[] =
4070 {
4071 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff"
4072 };
1f50b029 4073
39dd8003
NC
4074 /* The maximum admissible debug level value. */
4075 static const unsigned max_debug_level = 3;
1f50b029 4076
39dd8003
NC
4077 /* Look up ARG in the table. */
4078 for (da = debug_args; da->arg; da++)
4079 {
4080 const int da_len = strlen (da->arg);
4081
4082 if (da_len == 0 || ! strncmp (arg, da->arg, da_len))
4083 {
4084 enum debug_info_type type = da->debug_type;
4085 const char * p = arg + da_len;
4086
4087 if (*p && (*p < '0' || *p > '9'))
4088 continue;
4089
4090 /* A debug flag without a level defaults to level 2.
4091 Note we do not want to call read_integral_parameter
4092 for that case since it will call atoi which
4093 will return zero.
4094
4095 ??? We may want to generalize the interface to
4096 read_integral_parameter to better handle this case
4097 if this case shows up often. */
4098 if (*p)
4099 level = read_integral_parameter (p, 0, max_debug_level + 1);
4100 else
4101 level = 2;
4102
4103 if (da_len > 1 && *p && !strncmp (arg, "dwarf", da_len))
4104 {
4105 error ("use -gdwarf -g%d for DWARF v1, level %d",
4106 level, level);
4107 if (level == 2)
4108 error ("use -gdwarf-2 for DWARF v2");
4109 }
4110
4111 if (level > max_debug_level)
4112 {
4113 warning ("\
4114ignoring option `%s' due to invalid debug level specification",
4115 arg - 2);
4116 level = debug_info_level;
4117 }
4118
4119 if (type == NO_DEBUG)
4120 {
4121 type = PREFERRED_DEBUGGING_TYPE;
4122
4123 if (da_len > 1 && strncmp (arg, "gdb", da_len) == 0)
4124 {
4125#if defined (DWARF2_DEBUGGING_INFO) && !defined (LINKER_DOES_NOT_WORK_WITH_DWARF2)
4126 type = DWARF2_DEBUG;
4127#else
4128#ifdef DBX_DEBUGGING_INFO
4129 type = DBX_DEBUG;
4130#endif
4131#endif
4132 }
4133 }
4134
4135 if (type == NO_DEBUG)
14a774a9 4136 warning ("`%s': unknown or unsupported -g option", arg - 2);
39dd8003
NC
4137
4138 /* Does it conflict with an already selected type? */
4139 if (type_explicitly_set_p
4140 /* -g/-ggdb don't conflict with anything */
4141 && da->debug_type != NO_DEBUG
4142 && type != selected_debug_type)
4143 warning ("`%s' ignored, conflicts with `-g%s'",
4144 arg - 2, debug_type_names[(int) selected_debug_type]);
4145 else
4146 {
4147 /* If the format has already been set, -g/-ggdb
4148 only change the debug level. */
4149 if (type_explicitly_set_p && da->debug_type == NO_DEBUG)
4150 ; /* don't change debugging type */
4151 else
4152 {
4153 selected_debug_type = type;
4154 type_explicitly_set_p = da->debug_type != NO_DEBUG;
4155 }
4156
4157 write_symbols = (level == 0
4158 ? NO_DEBUG
4159 : selected_debug_type);
4160 use_gnu_debug_info_extensions = da->use_extensions_p;
4161 debug_info_level = (enum debug_info_level) level;
4162 }
4163
4164 break;
4165 }
4166 }
1f50b029 4167
39dd8003 4168 if (! da->arg)
14a774a9 4169 warning ("`%s': unknown or unsupported -g option", arg - 2);
39dd8003
NC
4170
4171 return 1;
4172}
4173
4174/* Decode the first argument in the argv as a language-independent option.
4175 Return the number of strings consumed. 'strings_processed' is the
4176 number of strings that have already been decoded in a language
4177 specific fashion before this function was invoked. */
4178
13eb1f7f 4179static unsigned int
39dd8003
NC
4180independent_decode_option (argc, argv, strings_processed)
4181 int argc;
13eb1f7f
RK
4182 char **argv;
4183 unsigned int strings_processed;
39dd8003 4184{
13eb1f7f 4185 char *arg = argv[0];
1f50b029 4186
39dd8003 4187 if (arg[0] != '-' || arg[1] == 0)
b8468bc7 4188 {
39dd8003
NC
4189 if (arg[0] == '+')
4190 return 0;
4191
4192 filename = arg;
4193
4194 return 1;
b8468bc7 4195 }
39dd8003
NC
4196
4197 arg ++;
1f50b029 4198
39dd8003
NC
4199 if (!strcmp (arg, "-help"))
4200 {
4201 display_help ();
4202 exit (0);
4203 }
4204
4205 if (* arg == 'Y')
4206 arg ++;
1f50b029 4207
13eb1f7f 4208 switch (*arg)
b8468bc7 4209 {
39dd8003
NC
4210 default:
4211 return 0;
4212
4213 case 'O':
4214 /* Already been treated in main (). Do nothing. */
4215 break;
4216
4217 case 'm':
4218 set_target_switch (arg + 1);
4219 break;
4220
4221 case 'f':
4222 return decode_f_option (arg + 1);
4223
4224 case 'g':
13eb1f7f
RK
4225 if (strings_processed == 0)
4226 return decode_g_option (arg + 1);
4227 else
4228 return strings_processed;
39dd8003
NC
4229
4230 case 'd':
4231 if (!strcmp (arg, "dumpbase"))
4232 {
4233 if (argc == 1)
4234 return 0;
4235
4236 dump_base_name = argv[1];
4237 return 2;
4238 }
4239 else
4240 decode_d_option (arg + 1);
4241 break;
4242
4243 case 'p':
4244 if (!strcmp (arg, "pedantic"))
4245 pedantic = 1;
4246 else if (!strcmp (arg, "pedantic-errors"))
4247 flag_pedantic_errors = pedantic = 1;
4248 else if (arg[1] == 0)
4249 profile_flag = 1;
4250 else
4251 return 0;
4252 break;
4253
4254 case 'q':
4255 if (!strcmp (arg, "quiet"))
4256 quiet_flag = 1;
4257 else
4258 return 0;
4259 break;
4260
4261 case 'v':
4262 if (!strcmp (arg, "version"))
4263 version_flag = 1;
4264 else
4265 return 0;
4266 break;
4267
4268 case 'w':
4269 if (arg[1] == 0)
4270 inhibit_warnings = 1;
4271 else
4272 return 0;
4273 break;
4274
4275 case 'W':
4276 if (arg[1] == 0)
4277 {
4278 extra_warnings = 1;
4279 /* We save the value of warn_uninitialized, since if they put
4280 -Wuninitialized on the command line, we need to generate a
4281 warning about not using it without also specifying -O. */
4282 if (warn_uninitialized != 1)
4283 warn_uninitialized = 2;
4284 }
4285 else
4286 return decode_W_option (arg + 1);
4287 break;
4288
4289 case 'a':
4290 if (arg[1] == 0)
4291 {
4292#if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4293 warning ("`-a' option (basic block profile) not supported");
4294#else
4295 profile_block_flag = (profile_block_flag < 2) ? 1 : 3;
4296#endif
4297 }
4298 else if (!strcmp (arg, "ax"))
b8468bc7 4299 {
39dd8003
NC
4300#if !defined (FUNCTION_BLOCK_PROFILER_EXIT) || !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
4301 warning ("`-ax' option (jump profiling) not supported");
4302#else
4303 profile_block_flag = (!profile_block_flag
4304 || profile_block_flag == 2) ? 2 : 3;
4305#endif
4306 }
4307 else if (!strncmp (arg, "aux-info", 8))
4308 {
4309 flag_gen_aux_info = 1;
4310 if (arg[8] == '\0')
4311 {
4312 if (argc == 1)
4313 return 0;
4314
4315 aux_info_file_name = argv[1];
4316 return 2;
4317 }
4318 else
4319 aux_info_file_name = arg + 8;
4320 }
4321 else
4322 return 0;
4323 break;
4324
4325 case 'o':
4326 if (arg[1] == 0)
4327 {
4328 if (argc == 1)
4329 return 0;
1f50b029 4330
39dd8003
NC
4331 asm_file_name = argv[1];
4332 return 2;
b8468bc7 4333 }
39dd8003
NC
4334 return 0;
4335
4336 case 'G':
4337 {
4338 int g_switch_val;
4339 int return_val;
4340
4341 if (arg[1] == 0)
4342 {
4343 if (argc == 1)
4344 return 0;
4345
4346 g_switch_val = read_integral_parameter (argv[1], 0, -1);
4347 return_val = 2;
4348 }
4349 else
4350 {
4351 g_switch_val = read_integral_parameter (arg + 1, 0, -1);
4352 return_val = 1;
4353 }
4354
4355 if (g_switch_val == -1)
4356 return_val = 0;
4357 else
4358 {
4359 g_switch_set = TRUE;
4360 g_switch_value = g_switch_val;
4361 }
4362
4363 return return_val;
4364 }
b8468bc7 4365 }
1f50b029 4366
b8468bc7
NC
4367 return 1;
4368}
4369\f
4291d9c8
RS
4370/* Entry point of cc1/c++. Decode command args, then call compile_file.
4371 Exit code is 35 if can't open files, 34 if fatal error,
4372 33 if had nonfatal errors, else success. */
4373
58782098 4374extern int main PARAMS ((int, char **));
7adfcfed 4375
4291d9c8 4376int
114791ea 4377main (argc, argv)
4291d9c8
RS
4378 int argc;
4379 char **argv;
4291d9c8
RS
4380{
4381 register int i;
4291d9c8
RS
4382 char *p;
4383
4384 /* save in case md file wants to emit args as a comment. */
4385 save_argc = argc;
4386 save_argv = argv;
4387
4388 p = argv[0] + strlen (argv[0]);
1a8bb3dd 4389 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
128373ac 4390 --p;
4291d9c8
RS
4391 progname = p;
4392
d9b53430 4393#ifdef HAVE_LC_MESSAGES
ab87f8c8 4394 setlocale (LC_MESSAGES, "");
d9b53430 4395#endif
735396d9
KG
4396 (void) bindtextdomain (PACKAGE, localedir);
4397 (void) textdomain (PACKAGE);
ab87f8c8 4398
4291d9c8
RS
4399 signal (SIGFPE, float_signal);
4400
935d4b07 4401#ifdef SIGPIPE
4291d9c8 4402 signal (SIGPIPE, pipe_closed);
935d4b07 4403#endif
4291d9c8
RS
4404
4405 decl_printable_name = decl_name;
114791ea 4406 lang_expand_expr = (lang_expand_expr_t) do_abort;
4291d9c8
RS
4407
4408 /* Initialize whether `char' is signed. */
4409 flag_signed_char = DEFAULT_SIGNED_CHAR;
4410#ifdef DEFAULT_SHORT_ENUMS
4411 /* Initialize how much space enums occupy, by default. */
4412 flag_short_enums = DEFAULT_SHORT_ENUMS;
4413#endif
4414
21cd906e 4415 /* Initialize the garbage-collector. */
d09b562c 4416 init_ggc ();
afe3d090 4417 ggc_add_root (&input_file_stack, 1, sizeof input_file_stack,
dd1bd863 4418 mark_file_stack);
a157febd 4419 ggc_add_rtx_root (&stack_limit_rtx, 1);
00262c8a
ML
4420 ggc_add_tree_root (&current_function_decl, 1);
4421 ggc_add_tree_root (&current_function_func_begin_label, 1);
afe3d090 4422
b53beeb2
RH
4423 /* Perform language-specific options intialization. */
4424 lang_init_options ();
4425
4291d9c8
RS
4426 /* Scan to see what optimization level has been specified. That will
4427 determine the default value of many flags. */
4428 for (i = 1; i < argc; i++)
4429 {
4430 if (!strcmp (argv[i], "-O"))
4431 {
4432 optimize = 1;
16b6e120 4433 optimize_size = 0;
4291d9c8
RS
4434 }
4435 else if (argv[i][0] == '-' && argv[i][1] == 'O')
4436 {
c6aded7c 4437 /* Handle -Os, -O2, -O3, -O69, ... */
4291d9c8 4438 char *p = &argv[i][2];
c6aded7c
AG
4439
4440 if ((p[0] == 's') && (p[1] == 0))
16b6e120
NC
4441 {
4442 optimize_size = 1;
4443
4444 /* Optimizing for size forces optimize to be 2. */
4445 optimize = 2;
4446 }
c6aded7c
AG
4447 else
4448 {
192babfd
TP
4449 const int optimize_val = read_integral_parameter (p, p - 2, -1);
4450 if (optimize_val != -1)
16b6e120 4451 {
192babfd 4452 optimize = optimize_val;
16b6e120
NC
4453 optimize_size = 0;
4454 }
c6aded7c 4455 }
4291d9c8
RS
4456 }
4457 }
4458
4291d9c8
RS
4459 if (optimize >= 1)
4460 {
6731a3e3 4461 flag_defer_pop = 1;
4291d9c8
RS
4462 flag_thread_jumps = 1;
4463#ifdef DELAY_SLOTS
4464 flag_delayed_branch = 1;
7e89c3a3
RK
4465#endif
4466#ifdef CAN_DEBUG_WITHOUT_FP
4467 flag_omit_frame_pointer = 1;
4291d9c8
RS
4468#endif
4469 }
4470
4471 if (optimize >= 2)
4472 {
db8cb48e 4473 flag_optimize_sibling_calls = 1;
4291d9c8 4474 flag_cse_follow_jumps = 1;
8b3686ed 4475 flag_cse_skip_blocks = 1;
7506f491 4476 flag_gcse = 1;
4291d9c8
RS
4477 flag_expensive_optimizations = 1;
4478 flag_strength_reduce = 1;
4479 flag_rerun_cse_after_loop = 1;
6d6d0fa0 4480 flag_rerun_loop_opt = 1;
ac266247 4481 flag_caller_saves = 1;
4ac8e06e 4482 flag_force_mem = 1;
ede7cd44 4483 flag_peephole2 = 1;
4291d9c8
RS
4484#ifdef INSN_SCHEDULING
4485 flag_schedule_insns = 1;
4486 flag_schedule_insns_after_reload = 1;
4487#endif
8c660648 4488 flag_regmove = 1;
3f9a83a9 4489 flag_strict_aliasing = 1;
b6d24183 4490 flag_delete_null_pointer_checks = 1;
4291d9c8
RS
4491 }
4492
7e89c3a3
RK
4493 if (optimize >= 3)
4494 {
4495 flag_inline_functions = 1;
4496 }
4497
efa3896a
GK
4498 if (optimize < 2 || optimize_size)
4499 {
4500 align_loops = 1;
4501 align_jumps = 1;
4502 align_labels = 1;
4503 align_functions = 1;
4504 }
4505
c1da383f
DE
4506 /* Initialize target_flags before OPTIMIZATION_OPTIONS so the latter can
4507 modify it. */
4508 target_flags = 0;
4509 set_target_switch ("");
4510
4291d9c8
RS
4511#ifdef OPTIMIZATION_OPTIONS
4512 /* Allow default optimizations to be specified on a per-machine basis. */
c6aded7c 4513 OPTIMIZATION_OPTIONS (optimize, optimize_size);
4291d9c8
RS
4514#endif
4515
4516 /* Initialize register usage now so switches may override. */
4517 init_reg_sets ();
4518
39dd8003
NC
4519 /* Perform normal command line switch decoding. */
4520 for (i = 1; i < argc;)
4291d9c8 4521 {
13eb1f7f
RK
4522 unsigned int lang_processed;
4523 unsigned int indep_processed;
f88b51fc 4524
39dd8003
NC
4525 /* Give the language a chance to decode the option for itself. */
4526 lang_processed = lang_decode_option (argc - i, argv + i);
43a8f6d5 4527
39dd8003
NC
4528 /* Now see if the option also has a language independent meaning.
4529 Some options are both language specific and language independent,
4530 eg --help. It is possible that there might be options that should
13eb1f7f 4531 only be decoded in a language independent way if they were not
39dd8003
NC
4532 decoded in a langauge specific way, which is why 'lang_processed'
4533 is passed in. */
5dff71ed
JM
4534 indep_processed = independent_decode_option (argc - i, argv + i,
4535 lang_processed);
39dd8003
NC
4536
4537 if (lang_processed || indep_processed)
5dff71ed
JM
4538 i += (lang_processed > indep_processed
4539 ? lang_processed : indep_processed);
39dd8003 4540 else
43a8f6d5 4541 {
0c70c30f
NC
4542 const char * option = NULL;
4543 const char * lang = NULL;
4544 unsigned int j;
4545
4546 /* It is possible that the command line switch is not valid for the
4547 current language, but it is valid for another language. In order
4548 to be compatible with previous versions of the compiler (which
4549 did not issue an error message in this case) we check for this
4550 possibilty here. If we do find a match, then if extra_warnings
4551 is set we generate a warning message, otherwise we will just
4552 ignore the option. */
4553 for (j = 0; j < NUM_ELEM (documented_lang_options); j++)
4554 {
4555 option = documented_lang_options[j].option;
4556
4557 if (option == NULL)
4558 lang = documented_lang_options[j].description;
4559 else if (! strncmp (argv[i], option, strlen (option)))
4560 break;
4561 }
4562
bb51178f 4563 if (j != NUM_ELEM (documented_lang_options))
0c70c30f
NC
4564 {
4565 if (extra_warnings)
4566 {
4567 warning ("Ignoring command line option '%s'", argv[i]);
4568 if (lang)
4569 warning ("\
4570(It is valid for %s but not the selected langauge)", lang);
4571 }
4572 }
4573 else
4dbba876 4574 error ("Unrecognized option `%s'", argv[i]);
0c70c30f 4575
43a8f6d5
JM
4576 i++;
4577 }
4291d9c8
RS
4578 }
4579
f602c208
RK
4580 /* Checker uses the frame pointer. */
4581 if (flag_check_memory_usage)
4582 flag_omit_frame_pointer = 0;
4583
f246a305
RS
4584 if (optimize == 0)
4585 {
a2468e45
BK
4586 /* Inlining does not work if not optimizing,
4587 so force it not to be done. */
f246a305
RS
4588 flag_no_inline = 1;
4589 warn_inline = 0;
a2468e45
BK
4590
4591 /* The c_decode_option and lang_decode_option functions set
4592 this to `2' if -Wall is used, so we can avoid giving out
4593 lots of errors for people who don't realize what -Wall does. */
4594 if (warn_uninitialized == 1)
4595 warning ("-Wuninitialized is not supported without -O");
f246a305
RS
4596 }
4597
4291d9c8
RS
4598#ifdef OVERRIDE_OPTIONS
4599 /* Some machines may reject certain combinations of options. */
4600 OVERRIDE_OPTIONS;
4601#endif
4602
d1485032
JM
4603 if (exceptions_via_longjmp == 2)
4604 {
4605#ifdef DWARF2_UNWIND_INFO
4606 exceptions_via_longjmp = ! DWARF2_UNWIND_INFO;
4607#else
4608 exceptions_via_longjmp = 1;
4609#endif
4610 }
4611
efa3896a
GK
4612 /* Set up the align_*_log variables, defaulting them to 1 if they
4613 were still unset. */
4614 if (align_loops <= 0) align_loops = 1;
4615 align_loops_log = floor_log2 (align_loops*2-1);
4616 if (align_jumps <= 0) align_jumps = 1;
4617 align_jumps_log = floor_log2 (align_jumps*2-1);
4618 if (align_labels <= 0) align_labels = 1;
4619 align_labels_log = floor_log2 (align_labels*2-1);
4620 if (align_functions <= 0) align_functions = 1;
4621 align_functions_log = floor_log2 (align_functions*2-1);
4622
ec6c615d
RK
4623 if (profile_block_flag == 3)
4624 {
4625 warning ("`-ax' and `-a' are conflicting options. `-a' ignored.");
4626 profile_block_flag = 2;
4627 }
4628
4291d9c8
RS
4629 /* Unrolling all loops implies that standard loop unrolling must also
4630 be done. */
4631 if (flag_unroll_all_loops)
4632 flag_unroll_loops = 1;
4633 /* Loop unrolling requires that strength_reduction be on also. Silently
4634 turn on strength reduction here if it isn't already on. Also, the loop
4635 unrolling code assumes that cse will be run after loop, so that must
4636 be turned on also. */
4637 if (flag_unroll_loops)
4638 {
4639 flag_strength_reduce = 1;
4640 flag_rerun_cse_after_loop = 1;
4641 }
4642
4643 /* Warn about options that are not supported on this machine. */
4644#ifndef INSN_SCHEDULING
4645 if (flag_schedule_insns || flag_schedule_insns_after_reload)
4646 warning ("instruction scheduling not supported on this target machine");
4647#endif
4648#ifndef DELAY_SLOTS
4649 if (flag_delayed_branch)
4650 warning ("this target machine does not have delayed branches");
4651#endif
4652
19283265
RH
4653 user_label_prefix = USER_LABEL_PREFIX;
4654 if (flag_leading_underscore != -1)
4655 {
4656 /* If the default prefix is more complicated than "" or "_",
4657 issue a warning and ignore this option. */
4658 if (user_label_prefix[0] == 0 ||
4659 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
4660 {
4661 user_label_prefix = flag_leading_underscore ? "_" : "";
4662 }
4663 else
4664 warning ("-f%sleading-underscore not supported on this target machine",
4665 flag_leading_underscore ? "" : "no-");
4666 }
4667
4291d9c8
RS
4668 /* If we are in verbose mode, write out the version and maybe all the
4669 option flags in use. */
4670 if (version_flag)
4671 {
3d5cdd42 4672 print_version (stderr, "");
4291d9c8 4673 if (! quiet_flag)
3d5cdd42 4674 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
4291d9c8
RS
4675 }
4676
4291d9c8
RS
4677 compile_file (filename);
4678
58f4af8e 4679#if !defined(OS2) && !defined(VMS) && (!defined(_WIN32) || defined (__CYGWIN__)) && !defined(__INTERIX)
4291d9c8
RS
4680 if (flag_print_mem)
4681 {
4682 char *lim = (char *) sbrk (0);
4683
6ed551b4 4684 fnotice (stderr, "Data size %ld.\n", (long) (lim - (char *) &environ));
4291d9c8
RS
4685 fflush (stderr);
4686
e9a25f70 4687#ifndef __MSDOS__
4291d9c8
RS
4688#ifdef USG
4689 system ("ps -l 1>&2");
4690#else /* not USG */
4691 system ("ps v");
4692#endif /* not USG */
e9a25f70 4693#endif
4291d9c8 4694 }
58f4af8e 4695#endif /* ! OS2 && ! VMS && (! _WIN32 || CYGWIN) && ! __INTERIX */
4291d9c8
RS
4696
4697 if (errorcount)
7adfcfed 4698 return (FATAL_EXIT_CODE);
4291d9c8 4699 if (sorrycount)
7adfcfed
KG
4700 return (FATAL_EXIT_CODE);
4701 return (SUCCESS_EXIT_CODE);
43a8f6d5 4702}
4291d9c8
RS
4703\f
4704/* Decode -m switches. */
4291d9c8
RS
4705/* Decode the switch -mNAME. */
4706
114791ea 4707static void
4291d9c8 4708set_target_switch (name)
87e11268 4709 const char *name;
4291d9c8 4710{
85066503 4711 register size_t j;
ab87f8c8 4712 int valid_target_option = 0;
4291d9c8
RS
4713
4714 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
4715 if (!strcmp (target_switches[j].name, name))
4716 {
4717 if (target_switches[j].value < 0)
4718 target_flags &= ~-target_switches[j].value;
4719 else
4720 target_flags |= target_switches[j].value;
ab87f8c8 4721 valid_target_option = 1;
4291d9c8
RS
4722 }
4723
4724#ifdef TARGET_OPTIONS
ab87f8c8 4725 if (!valid_target_option)
4291d9c8
RS
4726 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
4727 {
4728 int len = strlen (target_options[j].prefix);
4729 if (!strncmp (target_options[j].prefix, name, len))
4730 {
4731 *target_options[j].variable = name + len;
ab87f8c8 4732 valid_target_option = 1;
4291d9c8
RS
4733 }
4734 }
4735#endif
4736
ab87f8c8 4737 if (!valid_target_option)
4291d9c8
RS
4738 error ("Invalid option `%s'", name);
4739}
4740\f
3d5cdd42
DE
4741/* Print version information to FILE.
4742 Each line begins with INDENT (for the case where FILE is the
4743 assembler output file). */
4291d9c8 4744
114791ea 4745static void
3d5cdd42
DE
4746print_version (file, indent)
4747 FILE *file;
87e11268 4748 const char *indent;
4291d9c8 4749{
3d5cdd42 4750#ifndef __VERSION__
ab87f8c8 4751#define __VERSION__ "[?]"
3d5cdd42 4752#endif
ab87f8c8
JL
4753 fnotice (file,
4754#ifdef __GNUC__
4755 "%s%s%s version %s (%s) compiled by GNU C version %s.\n"
3d5cdd42 4756#else
ab87f8c8 4757 "%s%s%s version %s (%s) compiled by CC.\n"
3d5cdd42 4758#endif
ab87f8c8
JL
4759 , indent, *indent != 0 ? " " : "",
4760 language_string, version_string, TARGET_NAME, __VERSION__);
3d5cdd42 4761}
4291d9c8 4762
3d5cdd42 4763/* Print an option value and return the adjusted position in the line.
309a8875
DE
4764 ??? We don't handle error returns from fprintf (disk full); presumably
4765 other code will catch a disk full though. */
4291d9c8 4766
114791ea 4767static int
3d5cdd42
DE
4768print_single_switch (file, pos, max, indent, sep, term, type, name)
4769 FILE *file;
4770 int pos, max;
87e11268 4771 const char *indent, *sep, *term, *type, *name;
3d5cdd42 4772{
309a8875
DE
4773 /* The ultrix fprintf returns 0 on success, so compute the result we want
4774 here since we need it for the following test. */
4775 int len = strlen (sep) + strlen (type) + strlen (name);
4776
3d5cdd42 4777 if (pos != 0
309a8875 4778 && pos + len > max)
4291d9c8 4779 {
3d5cdd42
DE
4780 fprintf (file, "%s", term);
4781 pos = 0;
4291d9c8 4782 }
3d5cdd42
DE
4783 if (pos == 0)
4784 {
309a8875
DE
4785 fprintf (file, "%s", indent);
4786 pos = strlen (indent);
3d5cdd42 4787 }
309a8875
DE
4788 fprintf (file, "%s%s%s", sep, type, name);
4789 pos += len;
3d5cdd42 4790 return pos;
4291d9c8
RS
4791}
4792
3d5cdd42
DE
4793/* Print active target switches to FILE.
4794 POS is the current cursor position and MAX is the size of a "line".
4795 Each line begins with INDENT and ends with TERM.
4796 Each switch is separated from the next by SEP. */
4291d9c8 4797
25074193 4798static void
3d5cdd42
DE
4799print_switch_values (file, pos, max, indent, sep, term)
4800 FILE *file;
4801 int pos, max;
87e11268 4802 const char *indent, *sep, *term;
4291d9c8 4803{
85066503 4804 size_t j;
3d5cdd42
DE
4805 char **p;
4806
4807 /* Print the options as passed. */
4291d9c8 4808
3d5cdd42 4809 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
ab87f8c8 4810 _("options passed: "), "");
3d5cdd42 4811
520e7ff5 4812 for (p = &save_argv[1]; *p != NULL; p++)
3d5cdd42
DE
4813 if (**p == '-')
4814 {
4815 /* Ignore these. */
520e7ff5
DE
4816 if (strcmp (*p, "-o") == 0)
4817 {
4818 if (p[1] != NULL)
4819 p++;
4820 continue;
4821 }
3d5cdd42
DE
4822 if (strcmp (*p, "-quiet") == 0)
4823 continue;
4824 if (strcmp (*p, "-version") == 0)
4825 continue;
4826 if ((*p)[1] == 'd')
4827 continue;
4828
4829 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
4830 }
4831 if (pos > 0)
4832 fprintf (file, "%s", term);
4833
4834 /* Print the -f and -m options that have been enabled.
4835 We don't handle language specific options but printing argv
4836 should suffice. */
4837
4838 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
ab87f8c8 4839 _("options enabled: "), "");
4291d9c8
RS
4840
4841 for (j = 0; j < sizeof f_options / sizeof f_options[0]; j++)
4842 if (*f_options[j].variable == f_options[j].on_value)
3d5cdd42
DE
4843 pos = print_single_switch (file, pos, max, indent, sep, term,
4844 "-f", f_options[j].string);
4291d9c8 4845
3d5cdd42 4846 /* Print target specific options. */
4291d9c8
RS
4847
4848 for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
4849 if (target_switches[j].name[0] != '\0'
4850 && target_switches[j].value > 0
4851 && ((target_switches[j].value & target_flags)
4852 == target_switches[j].value))
3d5cdd42
DE
4853 {
4854 pos = print_single_switch (file, pos, max, indent, sep, term,
4855 "-m", target_switches[j].name);
3d5cdd42
DE
4856 }
4857
4858#ifdef TARGET_OPTIONS
4859 for (j = 0; j < sizeof target_options / sizeof target_options[0]; j++)
4860 if (*target_options[j].variable != NULL)
4861 {
4862 char prefix[256];
4863 sprintf (prefix, "-m%s", target_options[j].prefix);
4864 pos = print_single_switch (file, pos, max, indent, sep, term,
4865 prefix, *target_options[j].variable);
4866 }
4867#endif
4291d9c8 4868
3d5cdd42 4869 fprintf (file, "%s", term);
4291d9c8 4870}
9a666dda
JM
4871
4872/* Record the beginning of a new source file, named FILENAME. */
4873
4874void
4875debug_start_source_file (filename)
3b304f5b 4876 register const char *filename ATTRIBUTE_UNUSED;
9a666dda
JM
4877{
4878#ifdef DBX_DEBUGGING_INFO
4879 if (write_symbols == DBX_DEBUG)
4880 dbxout_start_new_source_file (filename);
4881#endif
4882#ifdef DWARF_DEBUGGING_INFO
4883 if (debug_info_level == DINFO_LEVEL_VERBOSE
4884 && write_symbols == DWARF_DEBUG)
4885 dwarfout_start_new_source_file (filename);
4886#endif /* DWARF_DEBUGGING_INFO */
4887#ifdef DWARF2_DEBUGGING_INFO
4888 if (debug_info_level == DINFO_LEVEL_VERBOSE
4889 && write_symbols == DWARF2_DEBUG)
4890 dwarf2out_start_source_file (filename);
4891#endif /* DWARF2_DEBUGGING_INFO */
cc694a81
DE
4892#ifdef SDB_DEBUGGING_INFO
4893 if (write_symbols == SDB_DEBUG)
4894 sdbout_start_new_source_file (filename);
4895#endif
9a666dda
JM
4896}
4897
4898/* Record the resumption of a source file. LINENO is the line number in
4899 the source file we are returning to. */
4900
4901void
4902debug_end_source_file (lineno)
c84e2712 4903 register unsigned lineno ATTRIBUTE_UNUSED;
9a666dda
JM
4904{
4905#ifdef DBX_DEBUGGING_INFO
4906 if (write_symbols == DBX_DEBUG)
4907 dbxout_resume_previous_source_file ();
4908#endif
4909#ifdef DWARF_DEBUGGING_INFO
4910 if (debug_info_level == DINFO_LEVEL_VERBOSE
4911 && write_symbols == DWARF_DEBUG)
4912 dwarfout_resume_previous_source_file (lineno);
4913#endif /* DWARF_DEBUGGING_INFO */
4914#ifdef DWARF2_DEBUGGING_INFO
4915 if (debug_info_level == DINFO_LEVEL_VERBOSE
4916 && write_symbols == DWARF2_DEBUG)
4917 dwarf2out_end_source_file ();
4918#endif /* DWARF2_DEBUGGING_INFO */
cc694a81
DE
4919#ifdef SDB_DEBUGGING_INFO
4920 if (write_symbols == SDB_DEBUG)
4921 sdbout_resume_previous_source_file ();
4922#endif
9a666dda
JM
4923}
4924
4925/* Called from check_newline in c-parse.y. The `buffer' parameter contains
4926 the tail part of the directive line, i.e. the part which is past the
4927 initial whitespace, #, whitespace, directive-name, whitespace part. */
4928
4929void
4930debug_define (lineno, buffer)
91813b28
KG
4931 register unsigned lineno ATTRIBUTE_UNUSED;
4932 register char *buffer ATTRIBUTE_UNUSED;
9a666dda
JM
4933{
4934#ifdef DWARF_DEBUGGING_INFO
4935 if (debug_info_level == DINFO_LEVEL_VERBOSE
4936 && write_symbols == DWARF_DEBUG)
4937 dwarfout_define (lineno, buffer);
4938#endif /* DWARF_DEBUGGING_INFO */
4939#ifdef DWARF2_DEBUGGING_INFO
4940 if (debug_info_level == DINFO_LEVEL_VERBOSE
4941 && write_symbols == DWARF2_DEBUG)
4942 dwarf2out_define (lineno, buffer);
4943#endif /* DWARF2_DEBUGGING_INFO */
4944}
4945
4946/* Called from check_newline in c-parse.y. The `buffer' parameter contains
4947 the tail part of the directive line, i.e. the part which is past the
4948 initial whitespace, #, whitespace, directive-name, whitespace part. */
4949
4950void
4951debug_undef (lineno, buffer)
91813b28
KG
4952 register unsigned lineno ATTRIBUTE_UNUSED;
4953 register char *buffer ATTRIBUTE_UNUSED;
9a666dda
JM
4954{
4955#ifdef DWARF_DEBUGGING_INFO
4956 if (debug_info_level == DINFO_LEVEL_VERBOSE
4957 && write_symbols == DWARF_DEBUG)
4958 dwarfout_undef (lineno, buffer);
4959#endif /* DWARF_DEBUGGING_INFO */
4960#ifdef DWARF2_DEBUGGING_INFO
4961 if (debug_info_level == DINFO_LEVEL_VERBOSE
4962 && write_symbols == DWARF2_DEBUG)
4963 dwarf2out_undef (lineno, buffer);
4964#endif /* DWARF2_DEBUGGING_INFO */
4965}
fcd7f76b 4966
64b59a80
JM
4967/* Returns nonzero if it is appropriate not to emit any debugging
4968 information for BLOCK, because it doesn't contain any instructions.
4969 This may not be the case for blocks containing nested functions, since
4970 we may actually call such a function even though the BLOCK information
4971 is messed up. */
fcd7f76b 4972
64b59a80 4973int
fcd7f76b 4974debug_ignore_block (block)
32070bf2 4975 tree block ATTRIBUTE_UNUSED;
fcd7f76b 4976{
64b59a80
JM
4977 /* Never delete the BLOCK for the outermost scope
4978 of the function; we can refer to names from
4979 that scope even if the block notes are messed up. */
4980 if (is_body_block (block))
4981 return 0;
4982
fcd7f76b
JM
4983#ifdef DWARF2_DEBUGGING_INFO
4984 if (write_symbols == DWARF2_DEBUG)
64b59a80 4985 return dwarf2out_ignore_block (block);
fcd7f76b 4986#endif
64b59a80
JM
4987
4988 return 1;
fcd7f76b 4989}