Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / gcc / flags.h
1 /* Compilation switch flag definitions for GNU CC.
2    Copyright (C) 1987, 88, 94-98, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* $FreeBSD: src/contrib/gcc/flags.h,v 1.4.2.1 2002/06/21 22:38:04 obrien Exp $ */
22
23 /* Name of the input .c file being compiled.  */
24 extern char *main_input_filename;
25
26 enum debug_info_type
27 {
28   NO_DEBUG,         /* Write no debug info.  */
29   DBX_DEBUG,        /* Write BSD .stabs for DBX (using dbxout.c).  */
30   SDB_DEBUG,        /* Write COFF for (old) SDB (using sdbout.c).  */
31   DWARF_DEBUG,      /* Write Dwarf debug info (using dwarfout.c).  */
32   DWARF2_DEBUG,     /* Write Dwarf v2 debug info (using dwarf2out.c).  */
33   XCOFF_DEBUG       /* Write IBM/Xcoff debug info (using dbxout.c).  */
34 };
35
36 /* Specify which kind of debugging info to generate.  */
37 extern enum debug_info_type write_symbols;
38
39 enum debug_info_level
40 {
41   DINFO_LEVEL_NONE,     /* Write no debugging info.  */
42   DINFO_LEVEL_TERSE,    /* Write minimal info to support tracebacks only.  */
43   DINFO_LEVEL_NORMAL,   /* Write info for all declarations (and line table). */
44   DINFO_LEVEL_VERBOSE   /* Write normal info plus #define/#undef info.  */
45 };
46
47 /* Specify how much debugging info to generate.  */
48 extern enum debug_info_level debug_info_level;
49
50 /* Nonzero means use GNU-only extensions in the generated symbolic
51    debugging information.  */
52 extern int use_gnu_debug_info_extensions;
53
54 /* Nonzero means do optimizations.  -opt.  */
55
56 extern int optimize;
57
58 /* Nonzero means optimize for size.  -Os.  */
59
60 extern int optimize_size;
61
62 /* Nonzero means do stupid register allocation.  -noreg.
63    Currently, this is 1 if `optimize' is 0.  */
64
65 extern int obey_regdecls;
66
67 /* Don't print functions as they are compiled and don't print
68    times taken by the various passes.  -quiet.  */
69
70 extern int quiet_flag;
71
72 /* Don't print warning messages.  -w.  */
73
74 extern int inhibit_warnings;
75
76 /* Do print extra warnings (such as for uninitialized variables).  -W.  */
77
78 extern int extra_warnings;
79
80 /* Nonzero to warn about unused local variables.  */
81
82 extern int warn_unused;
83
84 /* Nonzero means warn if inline function is too large.  */
85
86 extern int warn_inline;
87
88 /* Nonzero to warn about variables used before they are initialized.  */
89
90 extern int warn_uninitialized;
91
92 /* Zero if unknown pragmas are ignored
93    One if the compiler should warn about an unknown pragma not in
94    a system include file.
95    Greater than one if the compiler should warn for all unknown
96    pragmas.  */
97
98 extern int warn_unknown_pragmas;
99
100 /* Nonzero means warn about all declarations which shadow others.   */
101
102 extern int warn_shadow;
103
104 /* Warn if a switch on an enum fails to have a case for every enum value.  */
105
106 extern int warn_switch;
107
108 /* Nonzero means warn about function definitions that default the return type
109    or that use a null return and have a return-type other than void.  */
110
111 extern int warn_return_type;
112
113 /* Nonzero means warn about pointer casts that increase the required
114    alignment of the target type (and might therefore lead to a crash
115    due to a misaligned access).  */
116
117 extern int warn_cast_align;
118
119 /* Nonzero means warn that dbx info for template class methods isn't fully
120    supported yet.  */
121
122 extern int warn_template_debugging;
123
124 /* Nonzero means warn if a frame is larger that N bytes.  The value 
125    of N is warn_frame_size. */
126  
127 extern int warn_frame_size_flag;
128 extern int warn_frame_size;
129  
130 /* Nonzero means warn if a function call pushes more than N bytes 
131    onto the stack.  The value of N is warn_arglist_size. */
132  
133 extern int warn_arglist_size_flag;
134 extern int warn_arglist_size;
135
136 /* Nonzero means warn about any identifiers that match in the first N
137    characters.  The value N is in `id_clash_len'.  */
138
139 extern int warn_id_clash;
140 extern unsigned id_clash_len;
141
142 /* Nonzero means warn about any objects definitions whose size is larger
143    than N bytes.  Also want about function definitions whose returned
144    values are larger than N bytes. The value N is in `larger_than_size'.  */
145
146 extern int warn_larger_than;
147 extern unsigned larger_than_size;
148
149 /* Warn if a function returns an aggregate,
150    since there are often incompatible calling conventions for doing this.  */
151
152 extern int warn_aggregate_return;
153
154 /* Nonzero means that -Wformat accepts certain non-ANSI formats.  */
155
156 extern int flag_format_extensions;
157
158 /* Nonzero if generating code to do profiling.  */
159
160 extern int profile_flag;
161
162 /* Nonzero if generating code to do profiling on the basis of basic blocks.  */
163
164 extern int profile_block_flag;
165
166 /* Nonzero if generating code to profile program flow graph arcs. */
167
168 extern int profile_arc_flag;
169
170 /* Nonzero if generating info for gcov to calculate line test coverage. */
171
172 extern int flag_test_coverage;
173
174 /* Nonzero indicates that branch taken probabilities should be calculated. */
175
176 extern int flag_branch_probabilities;
177
178 /* Nonzero for -pedantic switch: warn about anything
179    that standard C forbids.  */
180
181 extern int pedantic;
182
183 /* Temporarily suppress certain warnings.
184    This is set while reading code from a system header file.  */
185
186 extern int in_system_header;
187
188 /* Nonzero for -dp: annotate the assembly with a comment describing the
189    pattern and alternative used.  */
190
191 extern int flag_print_asm_name;
192 \f
193 /* Now the symbols that are set with `-f' switches.  */
194
195 /* Nonzero means `char' should be signed.  */
196
197 extern int flag_signed_char;
198
199 /* Nonzero means give an enum type only as many bytes as it needs.  */
200
201 extern int flag_short_enums;
202
203 /* Nonzero for -fcaller-saves: allocate values in regs that need to
204    be saved across function calls, if that produces overall better code.
205    Optional now, so people can test it.  */
206
207 extern int flag_caller_saves;
208
209 /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
210
211 extern int flag_pcc_struct_return;
212
213 /* Nonzero for -fforce-mem: load memory value into a register
214    before arithmetic on it.  This makes better cse but slower compilation.  */
215
216 extern int flag_force_mem;
217
218 /* Nonzero for -fforce-addr: load memory address into a register before
219    reference to memory.  This makes better cse but slower compilation.  */
220
221 extern int flag_force_addr;
222
223 /* Nonzero for -fdefer-pop: don't pop args after each function call;
224    instead save them up to pop many calls' args with one insns.  */
225
226 extern int flag_defer_pop;
227
228 /* Nonzero for -ffloat-store: don't allocate floats and doubles
229    in extended-precision registers.  */
230
231 extern int flag_float_store;
232
233 /* Nonzero enables strength-reduction in loop.c.  */
234
235 extern int flag_strength_reduce;
236
237 /* Nonzero enables loop unrolling in unroll.c.  Only loops for which the
238    number of iterations can be calculated at compile-time (UNROLL_COMPLETELY,
239    UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are
240    unrolled.  */
241
242 extern int flag_unroll_loops;
243
244 /* Nonzero enables loop unrolling in unroll.c.  All loops are unrolled.
245    This is generally not a win.  */
246
247 extern int flag_unroll_all_loops;
248
249 /* Nonzero forces all invariant computations in loops to be moved
250    outside the loop. */
251
252 extern int flag_move_all_movables;
253
254 /* Nonzero forces all general induction variables in loops to be
255    strength reduced. */
256
257 extern int flag_reduce_all_givs;
258
259 /* Nonzero for -fcse-follow-jumps:
260    have cse follow jumps to do a more extensive job.  */
261
262 extern int flag_cse_follow_jumps;
263
264 /* Nonzero for -fcse-skip-blocks:
265    have cse follow a branch around a block.  */
266
267 extern int flag_cse_skip_blocks;
268
269 /* Nonzero for -fexpensive-optimizations:
270    perform miscellaneous relatively-expensive optimizations.  */
271 extern int flag_expensive_optimizations;
272
273 /* Nonzero for -fwritable-strings:
274    store string constants in data segment and don't uniquize them.  */
275
276 extern int flag_writable_strings;
277
278 /* Nonzero means don't put addresses of constant functions in registers.
279    Used for compiling the Unix kernel, where strange substitutions are
280    done on the assembly output.  */
281
282 extern int flag_no_function_cse;
283
284 /* Nonzero for -fomit-frame-pointer:
285    don't make a frame pointer in simple functions that don't require one.  */
286
287 extern int flag_omit_frame_pointer;
288
289 /* Nonzero to inhibit use of define_optimization peephole opts.  */
290
291 extern int flag_no_peephole;
292
293 /* Nonzero means all references through pointers are volatile.  */
294
295 extern int flag_volatile;
296
297 /* Nonzero means treat all global and extern variables as volatile.  */
298
299 extern int flag_volatile_global;
300
301 /* Nonzero means treat all static variables as volatile.  */
302
303 extern int flag_volatile_static;
304
305 /* Nonzero allows GCC to violate some IEEE or ANSI rules regarding math
306    operations in the interest of optimization.  For example it allows
307    GCC to assume arguments to sqrt are nonnegative numbers, allowing
308    faster code for sqrt to be generated. */
309
310 extern int flag_fast_math;
311
312 /* Nonzero means the front end generally wants `errno' maintained by math
313    operations, like built-in SQRT, unless overridden by flag_fast_math.  */
314
315 extern int flag_errno_math;
316
317 /* 0 means straightforward implementation of complex divide acceptable.
318    1 means wide ranges of inputs must work for complex divide.
319    2 means C9X-like requirements for complex divide (not yet implemented).  */
320
321 extern int flag_complex_divide_method;
322
323 /* Nonzero means to run loop optimizations twice.  */
324
325 extern int flag_rerun_loop_opt;
326
327 /* Nonzero means make functions that look like good inline candidates
328    go inline.  */
329
330 extern int flag_inline_functions;
331
332 /* Nonzero for -fkeep-inline-functions: even if we make a function
333    go inline everywhere, keep its definition around for debugging
334    purposes.  */
335
336 extern int flag_keep_inline_functions;
337
338 /* Nonzero means that functions declared `inline' will be treated
339    as `static'.  Prevents generation of zillions of copies of unused
340    static inline functions; instead, `inlines' are written out
341    only when actually used.  Used in conjunction with -g.  Also
342    does the right thing with #pragma interface.  */
343
344 extern int flag_no_inline;
345
346 /* Nonzero if we are only using compiler to check syntax errors.  */
347
348 extern int flag_syntax_only;
349
350 /* Nonzero means we should save auxiliary info into a .X file.  */
351
352 extern int flag_gen_aux_info;
353
354 /* Nonzero means make the text shared if supported.  */
355
356 extern int flag_shared_data;
357
358 /* flag_schedule_insns means schedule insns within basic blocks (before
359    local_alloc).
360    flag_schedule_insns_after_reload means schedule insns after
361    global_alloc.  */
362
363 extern int flag_schedule_insns;
364 extern int flag_schedule_insns_after_reload;
365
366 #ifdef HAIFA
367 /* The following flags have effect only for scheduling before register
368    allocation:
369
370    flag_schedule_interblock means schedule insns accross basic blocks.
371    flag_schedule_speculative means allow speculative motion of non-load insns.
372    flag_schedule_speculative_load means allow speculative motion of some
373    load insns.
374    flag_schedule_speculative_load_dangerous allows speculative motion of more
375    load insns.  */
376
377 extern int flag_schedule_interblock;
378 extern int flag_schedule_speculative;
379 extern int flag_schedule_speculative_load;
380 extern int flag_schedule_speculative_load_dangerous;
381 #endif  /* HAIFA */
382
383 /* flag_on_branch_count_reg means try to replace add-1,compare,branch tupple
384    by a cheaper branch, on a count register. */
385 extern int flag_branch_on_count_reg;
386
387
388 /* Nonzero means put things in delayed-branch slots if supported. */
389
390 extern int flag_delayed_branch;
391
392 /* Nonzero means suppress output of instruction numbers and line number
393    notes in debugging dumps.  */
394
395 extern int flag_dump_unnumbered;
396
397 /* Nonzero means pretend it is OK to examine bits of target floats,
398    even if that isn't true.  The resulting code will have incorrect constants,
399    but the same series of instructions that the native compiler would make.  */
400
401 extern int flag_pretend_float;
402
403 /* Nonzero means change certain warnings into errors.
404    Usually these are warnings about failure to conform to some standard.  */
405
406 extern int flag_pedantic_errors;
407
408 /* Nonzero means generate position-independent code.
409    This is not fully implemented yet.  */
410
411 extern int flag_pic;
412
413 /* Nonzero means generate extra code for exception handling and enable
414    exception handling.  */
415
416 extern int flag_exceptions;
417
418 /* Nonzero means use the new model for exception handling. Replaces 
419    -DNEW_EH_MODEL as a compile option. */
420
421 extern int flag_new_exceptions;
422
423 /* Nonzero means don't place uninitialized global data in common storage
424    by default.  */
425
426 extern int flag_no_common;
427
428 /* -finhibit-size-directive inhibits output of .size for ELF.
429    This is used only for compiling crtstuff.c,
430    and it may be extended to other effects
431    needed for crtstuff.c on other systems.  */
432 extern int flag_inhibit_size_directive;
433
434 /* Nonzero means place each function into its own section on those platforms
435    which support arbitrary section names and unlimited numbers of sections.  */
436
437 extern int flag_function_sections;
438
439 /* ... and similar for data.  */
440  
441 extern int flag_data_sections;
442
443 /* -fverbose-asm causes extra commentary information to be produced in
444    the generated assembly code (to make it more readable).  This option
445    is generally only of use to those who actually need to read the
446    generated assembly code (perhaps while debugging the compiler itself).
447    -fno-verbose-asm, the default, causes the extra information
448    to not be added and is useful when comparing two assembler files.  */
449
450 extern int flag_verbose_asm;
451
452 /* -dA causes debug information to be produced in
453    the generated assembly code (to make it more readable).  This option
454    is generally only of use to those who actually need to read the
455    generated assembly code (perhaps while debugging the compiler itself).
456    Currently, this switch is only used by dwarfout.c; however, it is intended
457    to be a catchall for printing debug information in the assembler file.  */
458
459 extern int flag_debug_asm;
460
461 /* -fgnu-linker specifies use of the GNU linker for initializations.
462    -fno-gnu-linker says that collect will be used.  */
463 extern int flag_gnu_linker;
464
465 /* Tag all structures with __attribute__(packed) */
466 extern int flag_pack_struct;
467
468 /* This flag is only tested if alias checking is enabled.
469    0 if pointer arguments may alias each other.  True in C.
470    1 if pointer arguments may not alias each other but may alias
471    global variables.
472    2 if pointer arguments may not alias each other and may not
473    alias global variables.  True in Fortran.
474    The value is ignored if flag_alias_check is 0.  */
475 extern int flag_argument_noalias;
476
477 /* Nonzero if we should do (language-dependent) alias analysis.
478    Typically, this analysis will assume that expressions of certain
479    types do not alias expressions of certain other types.  Only used
480    if alias analysis (in general) is enabled.  */
481 extern int flag_strict_aliasing;
482
483 /* Emit code to check for stack overflow; also may cause large objects
484    to be allocated dynamically.  */
485 extern int flag_stack_check;
486
487 /* Do the full regmove optimization pass.  */
488 extern int flag_regmove;
489
490 /* Instrument functions with calls at entry and exit, for profiling.  */
491 extern int flag_instrument_function_entry_exit;
492 \f
493 /* Other basic status info about current function.  */
494
495 /* Nonzero means current function must be given a frame pointer.
496    Set in stmt.c if anything is allocated on the stack there.
497    Set in reload1.c if anything is allocated on the stack there.  */
498
499 extern int frame_pointer_needed;
500
501 /* Set nonzero if jump_optimize finds that control falls through
502    at the end of the function.  */
503
504 extern int can_reach_end;
505
506 /* Nonzero if function being compiled receives nonlocal gotos
507    from nested functions.  */
508
509 extern int current_function_has_nonlocal_label;
510
511 /* Nonzero if function being compiled has nonlocal gotos to parent
512    function.  */
513
514 extern int current_function_has_nonlocal_goto;
515
516 /* Nonzero if this function has a computed goto.
517
518    It is computed during find_basic_blocks or during stupid life
519    analysis.  */
520
521 extern int current_function_has_computed_jump;
522
523 /* Nonzero if GCC must add code to check memory access (used by Checker).  */
524
525 extern int flag_check_memory_usage;
526
527 /* Nonzero if GCC must prefix function names (used with
528    flag_check_memory_usage).  */
529
530 extern int flag_prefix_function_name;
531 /* Nonzero if the current function is a thunk, so we should try to cut
532    corners where we can.  */
533 extern int current_function_is_thunk;
534
535 /* Value of the -G xx switch, and whether it was passed or not.  */
536 extern int g_switch_value;
537 extern int g_switch_set;
538
539 /* Value of the -finline-limit flag.  */
540
541 extern int inline_max_insns;
542
543 /* Nonzero if we dump in VCG format, not plain text.  */
544 extern int dump_for_graph;
545
546 /* Selection of the graph form.  */
547 enum graph_dump_types
548 {
549   no_graph = 0,
550   vcg
551 };
552 extern enum graph_dump_types graph_dump_format;
553
554 /* Nonzero means ignore `#ident' directives.  0 means handle them.
555    On SVR4 targets, it also controls whether or not to emit a
556    string identifying the compiler.  */
557
558 extern int flag_no_ident;