OSDN Git Service

2006-02-25 Thomas Koenig <Thomas.Koenig@online.de>
[pf3gnuchains/gcc-fork.git] / gcc / common.opt
1 ; Options for the language- and target-independent parts of the compiler.
2
3 ; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 ;
5 ; This file is part of GCC.
6 ;
7 ; GCC is free software; you can redistribute it and/or modify it under
8 ; the terms of the GNU General Public License as published by the Free
9 ; Software Foundation; either version 2, or (at your option) any later
10 ; version.
11
12 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 ; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 ; for more details.
16
17 ; You should have received a copy of the GNU General Public License
18 ; along with GCC; see the file COPYING.  If not, write to the Free
19 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 ; 02110-1301, USA.
21
22 ; See the GCC internals manual for a description of this file's format.
23
24 ; Please try to keep this file in ASCII collating order.
25
26 -help
27 Common
28 Display this information
29
30 -param
31 Common Separate
32 --param <param>=<value> Set parameter <param> to value.  See below for a complete list of parameters
33
34 -target-help
35 Common
36
37 -version
38 Common
39
40 G
41 Common Joined Separate UInteger
42 -G<number>      Put global and static data smaller than <number> bytes into a special section (on some targets)
43
44 O
45 Common JoinedOrMissing
46 -O<number>      Set optimization level to <number>
47
48 Os
49 Common
50 Optimize for space rather than speed
51
52 W
53 Common RejectNegative
54 This switch is deprecated; use -Wextra instead
55
56 Waggregate-return
57 Common Var(warn_aggregate_return)
58 Warn about returning structures, unions or arrays
59
60 Walways-true
61 Common Var(warn_always_true)
62 Warn about comparisons that always evaluate to true
63
64 Wattributes
65 Common Var(warn_attributes) Init(1)
66 Warn about inappropriate attribute usage
67
68 Wcast-align
69 Common Var(warn_cast_align)
70 Warn about pointer casts which increase alignment
71
72 Wdeprecated-declarations
73 Common Var(warn_deprecated_decl) Init(1)
74 Warn about uses of __attribute__((deprecated)) declarations
75
76 Wdisabled-optimization
77 Common Var(warn_disabled_optimization)
78 Warn when an optimization pass is disabled
79
80 Werror
81 Common Var(warnings_are_errors)
82 Treat all warnings as errors
83
84 Werror=
85 Common Joined
86 Treat specified warning as error
87
88 Wextra
89 Common
90 Print extra (possibly unwanted) warnings
91
92 Wfatal-errors
93 Common Var(flag_fatal_errors)
94 Exit on the first error occurred
95
96 Winline
97 Common Var(warn_inline)
98 Warn when an inlined function cannot be inlined
99
100 Wlarger-than-
101 Common RejectNegative Joined UInteger
102 -Wlarger-than-<number>  Warn if an object is larger than <number> bytes
103
104 Wunsafe-loop-optimizations
105 Common Var(warn_unsafe_loop_optimizations)
106 Warn if the loop cannot be optimized due to nontrivial assumptions.
107
108 Wmissing-noreturn
109 Common Var(warn_missing_noreturn)
110 Warn about functions which might be candidates for __attribute__((noreturn))
111
112 Wpacked
113 Common Var(warn_packed)
114 Warn when the packed attribute has no effect on struct layout
115
116 Wpadded
117 Common Var(warn_padded)
118 Warn when padding is required to align structure members
119
120 Wshadow
121 Common Var(warn_shadow)
122 Warn when one local variable shadows another
123
124 Wstack-protector
125 Common Var(warn_stack_protect)
126 Warn when not issuing stack smashing protection for some reason
127
128 Wstrict-aliasing
129 Common
130 Warn about code which might break strict aliasing rules
131
132 Wstrict-aliasing=
133 Common Joined UInteger
134 Warn about code which might break strict aliasing rules
135
136 Wstring-literal-comparison
137 Common Var(warn_string_literal_comparison)
138 Warn about comparisons to constant string literals
139
140 Wswitch
141 Common Var(warn_switch)
142 Warn about enumerated switches, with no default, missing a case
143
144 Wswitch-default
145 Common Var(warn_switch_default)
146 Warn about enumerated switches missing a \"default:\" statement
147
148 Wswitch-enum
149 Common Var(warn_switch_enum)
150 Warn about all enumerated switches missing a specific case
151
152 Wsystem-headers
153 Common Var(warn_system_headers)
154 Do not suppress warnings from system headers
155
156 Wuninitialized
157 Common Var(warn_uninitialized)
158 Warn about uninitialized automatic variables
159
160 Wunreachable-code
161 Common Var(warn_notreached)
162 Warn about code that will never be executed
163
164 Wunused
165 Common
166 Enable all -Wunused- warnings
167
168 Wunused-function
169 Common Var(warn_unused_function)
170 Warn when a function is unused
171
172 Wunused-label
173 Common Var(warn_unused_label)
174 Warn when a label is unused
175
176 Wunused-parameter
177 Common Var(warn_unused_parameter)
178 Warn when a function parameter is unused
179
180 Wunused-value
181 Common Var(warn_unused_value)
182 Warn when an expression value is unused
183
184 Wunused-variable
185 Common Var(warn_unused_variable)
186 Warn when a variable is unused
187
188 Wvolatile-register-var
189 Common Var(warn_register_var)
190 Warn when a register variable is declared volatile
191
192 aux-info
193 Common Separate
194 -aux-info <file>        Emit declaration information into <file>
195
196 aux-info=
197 Common Joined
198
199 auxbase
200 Common Separate
201
202 auxbase-strip
203 Common Separate
204
205 d
206 Common Joined
207 -d<letters>     Enable dumps from specific passes of the compiler
208
209 dumpbase
210 Common Separate
211 -dumpbase <file>        Set the file basename to be used for dumps
212
213 ; The version of the C++ ABI in use.  The following values are allowed:
214 ;
215 ; 0: The version of the ABI believed most conformant with the C++ ABI
216 ;    specification.  This ABI may change as bugs are discovered and fixed.
217 ;    Therefore, 0 will not necessarily indicate the same ABI in different
218 ;    versions of G++.
219 ;
220 ; 1: The version of the ABI first used in G++ 3.2.
221 ;
222 ; Additional positive integers will be assigned as new versions of
223 ; the ABI become the default version of the ABI.
224 fabi-version=
225 Common Joined UInteger Var(flag_abi_version) Init(2)
226
227 falign-functions
228 Common Report Var(align_functions,0)
229 Align the start of functions
230
231 falign-functions=
232 Common RejectNegative Joined UInteger
233
234 falign-jumps
235 Common Report Var(align_jumps,0)
236 Align labels which are only reached by jumping
237
238 falign-jumps=
239 Common RejectNegative Joined UInteger
240
241 falign-labels
242 Common Report Var(align_labels,0)
243 Align all labels
244
245 falign-labels=
246 Common RejectNegative Joined UInteger
247
248 falign-loops
249 Common Report Var(align_loops)
250 Align the start of loops
251
252 falign-loops=
253 Common RejectNegative Joined UInteger
254
255 ; This flag is only tested if alias checking is enabled.
256 ; 0 if pointer arguments may alias each other.  True in C.
257 ; 1 if pointer arguments may not alias each other but may alias
258 ;   global variables.
259 ; 2 if pointer arguments may not alias each other and may not
260 ;   alias global variables.  True in Fortran.
261 fargument-alias
262 Common Report Var(flag_argument_noalias,0)
263 Specify that arguments may alias each other and globals
264
265 fargument-noalias
266 Common Report Var(flag_argument_noalias,1) VarExists
267 Assume arguments may alias globals but not each other
268
269 fargument-noalias-global
270 Common Report Var(flag_argument_noalias,2) VarExists
271 Assume arguments alias neither each other nor globals
272
273 fasynchronous-unwind-tables
274 Common Report Var(flag_asynchronous_unwind_tables)
275 Generate unwind tables that are exact at each instruction boundary
276
277 ; -fcheck-bounds causes gcc to generate array bounds checks.
278 ; For C, C++ and ObjC: defaults off.
279 ; For Java: defaults to on.
280 ; For Fortran: defaults to off.
281 fbounds-check
282 Common Report Var(flag_bounds_check)
283 Generate code to check bounds before indexing arrays
284
285 fbranch-count-reg
286 Common Report Var(flag_branch_on_count_reg) Init(1)
287 Replace add, compare, branch with branch on count register
288
289 fbranch-probabilities
290 Common Report Var(flag_branch_probabilities)
291 Use profiling information for branch probabilities
292
293 fbranch-target-load-optimize
294 Common Report Var(flag_branch_target_load_optimize)
295 Perform branch target load optimization before prologue / epilogue threading
296
297 fbranch-target-load-optimize2
298 Common Report Var(flag_branch_target_load_optimize2)
299 Perform branch target load optimization after prologue / epilogue threading
300
301 fbtr-bb-exclusive
302 Common Report Var(flag_btr_bb_exclusive)
303 Restrict target load migration not to re-use registers in any basic block
304
305 fcall-saved-
306 Common Joined RejectNegative
307 -fcall-saved-<register> Mark <register> as being preserved across functions
308
309 fcall-used-
310 Common Joined RejectNegative
311 -fcall-used-<register>  Mark <register> as being corrupted by function calls
312
313 ; Nonzero for -fcaller-saves: allocate values in regs that need to
314 ; be saved across function calls, if that produces overall better code.
315 ; Optional now, so people can test it.
316 fcaller-saves
317 Common Report Var(flag_caller_saves)
318 Save registers around function calls
319
320 fcommon
321 Common Report Var(flag_no_common,0)
322 Do not put uninitialized globals in the common section
323
324 fcprop-registers
325 Common Report Var(flag_cprop_registers)
326 Perform a register copy-propagation optimization pass
327
328 fcrossjumping
329 Common Report Var(flag_crossjumping)
330 Perform cross-jumping optimization
331
332 fcse-follow-jumps
333 Common Report Var(flag_cse_follow_jumps)
334 When running CSE, follow jumps to their targets
335
336 fcse-skip-blocks
337 Common Report Var(flag_cse_skip_blocks)
338 When running CSE, follow conditional jumps
339
340 fcx-limited-range
341 Common Report Var(flag_cx_limited_range)
342 Omit range reduction step when performing complex division
343
344 fdata-sections
345 Common Report Var(flag_data_sections)
346 Place data items into their own section
347
348 ; Nonzero for -fdefer-pop: don't pop args after each function call
349 ; instead save them up to pop many calls' args with one insns.
350 fdefer-pop
351 Common Report Var(flag_defer_pop)
352 Defer popping functions args from stack until later
353
354 fdelayed-branch
355 Common Report Var(flag_delayed_branch)
356 Attempt to fill delay slots of branch instructions
357
358 fdelete-null-pointer-checks
359 Common Report Var(flag_delete_null_pointer_checks)
360 Delete useless null pointer checks
361
362 fdiagnostics-show-location=
363 Common Joined RejectNegative
364 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics
365
366 fdiagnostics-show-option
367 Common
368 Amend appropriate diagnostic messages with the command line option that controls them
369
370 fdump-
371 Common Joined RejectNegative
372 -fdump-<type>   Dump various compiler internals to a file
373
374 fdump-unnumbered
375 Common Report Var(flag_dump_unnumbered) VarExists
376 Suppress output of instruction numbers and line number notes in debugging dumps
377
378 fearly-inlining
379 Common Report Var(flag_early_inlining) Init(1)
380 Perform early inlining
381
382 feliminate-dwarf2-dups
383 Common Report Var(flag_eliminate_dwarf2_dups)
384 Perform DWARF2 duplicate elimination
385
386 feliminate-unused-debug-symbols
387 Common Report Var(flag_debug_only_used_symbols)
388 Perform unused type elimination in debug info
389
390 feliminate-unused-debug-types
391 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
392 Perform unused type elimination in debug info
393
394 fexceptions
395 Common Report Var(flag_exceptions)
396 Enable exception handling
397
398 fexpensive-optimizations
399 Common Report Var(flag_expensive_optimizations)
400 Perform a number of minor, expensive optimizations
401
402 ffast-math
403 Common
404
405 ffinite-math-only
406 Common Report Var(flag_finite_math_only)
407 Assume no NaNs or infinities are generated
408
409 ffixed-
410 Common Joined RejectNegative
411 -ffixed-<register>      Mark <register> as being unavailable to the compiler
412
413 ffloat-store
414 Common Report Var(flag_float_store)
415 Don't allocate floats and doubles in extended-precision registers
416
417 ; Nonzero for -fforce-addr: load memory address into a register before
418 ; reference to memory.  This makes better cse but slower compilation.
419 fforce-addr
420 Common Report Var(flag_force_addr)
421 Copy memory address constants into registers before use
422
423 ; Nonzero for -fforce-mem: load memory value into a register
424 ; before arithmetic on it.  This makes better cse but slower compilation.
425 fforce-mem
426 Common Report Var(flag_force_mem)
427 Copy memory operands into registers before use
428
429 ; Nonzero means don't put addresses of constant functions in registers.
430 ; Used for compiling the Unix kernel, where strange substitutions are
431 ; done on the assembly output.
432 ffunction-cse
433 Common Report Var(flag_no_function_cse,0)
434 Allow function addresses to be held in registers
435
436 ffunction-sections
437 Common Report Var(flag_function_sections)
438 Place each function into its own section
439
440 fgcse
441 Common Report Var(flag_gcse)
442 Perform global common subexpression elimination
443
444 fgcse-lm
445 Common Report Var(flag_gcse_lm) Init(1)
446 Perform enhanced load motion during global common subexpression elimination
447
448 fgcse-sm
449 Common Report Var(flag_gcse_sm) Init(0)
450 Perform store motion after global common subexpression elimination
451
452 fgcse-las
453 Common Report Var(flag_gcse_las) Init(0)
454 Perform redundant load after store elimination in global common subexpression
455 elimination
456
457 fgcse-after-reload
458 Common Report Var(flag_gcse_after_reload)
459 Perform global common subexpression elimination after register allocation
460 has finished
461
462 fguess-branch-probability
463 Common Report Var(flag_guess_branch_prob)
464 Enable guessing of branch probabilities
465
466 ; Nonzero means ignore `#ident' directives.  0 means handle them.
467 ; Generate position-independent code for executables if possible
468 ; On SVR4 targets, it also controls whether or not to emit a
469 ; string identifying the compiler.
470 fident
471 Common Report Var(flag_no_ident,0)
472 Process #ident directives
473
474 fif-conversion
475 Common Report Var(flag_if_conversion)
476 Perform conversion of conditional jumps to branchless equivalents
477
478 fif-conversion2
479 Common Report Var(flag_if_conversion2)
480 Perform conversion of conditional jumps to conditional execution
481
482 ; -finhibit-size-directive inhibits output of .size for ELF.
483 ; This is used only for compiling crtstuff.c,
484 ; and it may be extended to other effects
485 ; needed for crtstuff.c on other systems.
486 finhibit-size-directive
487 Common Report Var(flag_inhibit_size_directive)
488 Do not generate .size directives
489
490 ; Nonzero means that functions declared `inline' will be treated
491 ; as `static'.  Prevents generation of zillions of copies of unused
492 ; static inline functions; instead, `inlines' are written out
493 ; only when actually used.  Used in conjunction with -g.  Also
494 ; does the right thing with #pragma interface.
495 finline
496 Common Report Var(flag_no_inline,0) Init(2)
497 Pay attention to the \"inline\" keyword
498
499 finline-functions
500 Common Report Var(flag_inline_functions)
501 Integrate simple functions into their callers
502
503 finline-functions-called-once
504 Common Report Var(flag_inline_functions_called_once) Init(1)
505 Integrate functions called once into their callers
506
507 finline-limit-
508 Common RejectNegative Joined UInteger
509
510 finline-limit=
511 Common RejectNegative Joined UInteger
512 -finline-limit=<number> Limit the size of inlined functions to <number>
513
514 finstrument-functions
515 Common Report Var(flag_instrument_function_entry_exit)
516 Instrument function entry and exit with profiling calls
517
518 fipa-cp
519 Common Report Var(flag_ipa_cp)
520 Perform Interprocedural constant propagation
521
522 fipa-pure-const
523 Common Report Var(flag_ipa_pure_const) Init(0)
524 Discover pure and const functions
525
526 fipa-pta
527 Common Report Var(flag_ipa_pta) Init(0)
528 Perform interprocedural points-to analysis
529
530 fipa-reference
531 Common Report Var(flag_ipa_reference) Init(0)
532 Discover readonly and non addressable static variables
533
534 fipa-type-escape
535 Common Report Var(flag_ipa_type_escape) Init(0)
536 Type based escape and alias analysis
537
538 fivopts
539 Common Report Var(flag_ivopts) Init(1)
540 Optimize induction variables on trees
541
542 fjump-tables
543 Common Var(flag_jump_tables) Init(1)
544 Use jump tables for sufficiently large switch statements
545
546 fkeep-inline-functions
547 Common Report Var(flag_keep_inline_functions)
548 Generate code for functions even if they are fully inlined
549
550 fkeep-static-consts
551 Common Report Var(flag_keep_static_consts) Init(1)
552 Emit static const variables even if they are not used
553
554 fleading-underscore
555 Common Report Var(flag_leading_underscore) Init(-1)
556 Give external symbols a leading underscore
557
558 floop-optimize
559 Common Report Var(flag_loop_optimize)
560 Perform loop optimizations
561
562 fmath-errno
563 Common Report Var(flag_errno_math) Init(1)
564 Set errno after built-in math functions
565
566 fmem-report
567 Common Report Var(mem_report)
568 Report on permanent memory allocation
569
570 ; This will attempt to merge constant section constants, if 1 only
571 ; string constants and constants from constant pool, if 2 also constant
572 ; variables.
573 fmerge-all-constants
574 Common Report Var(flag_merge_constants,2) Init(1)
575 Attempt to merge identical constants and constant variables
576
577 fmerge-constants
578 Common Report Var(flag_merge_constants,1) VarExists
579 Attempt to merge identical constants across compilation units
580
581 fmessage-length=
582 Common RejectNegative Joined UInteger
583 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping
584
585 fmodulo-sched
586 Common Report Var(flag_modulo_sched)
587 Perform SMS based modulo scheduling before the first scheduling pass
588
589 fmove-loop-invariants
590 Common Report Var(flag_move_loop_invariants) Init(1)
591 Move loop invariant computations out of loops
592
593 fmudflap
594 Common RejectNegative Report Var(flag_mudflap)
595 Add mudflap bounds-checking instrumentation for single-threaded program
596
597 fmudflapth
598 Common RejectNegative Report Var(flag_mudflap_threads)
599 Add mudflap bounds-checking instrumentation for multi-threaded program
600
601 fmudflapir
602 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
603 Ignore read operations when inserting mudflap instrumentation
604
605 freschedule-modulo-scheduled-loops
606 Common Report Var(flag_resched_modulo_sched)
607 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
608
609 fnon-call-exceptions
610 Common Report Var(flag_non_call_exceptions)
611 Support synchronous non-call exceptions
612
613 fomit-frame-pointer
614 Common Report Var(flag_omit_frame_pointer)
615 When possible do not generate stack frames
616
617 foptimize-register-move
618 Common Report Var(flag_regmove)
619 Do the full register move optimization pass
620
621 foptimize-sibling-calls
622 Common Report Var(flag_optimize_sibling_calls)
623 Optimize sibling and tail recursive calls
624
625 fpack-struct
626 Common Report Var(flag_pack_struct)
627 Pack structure members together without holes
628
629 fpack-struct=
630 Common RejectNegative Joined UInteger
631 -fpack-struct=<number>  Set initial maximum structure member alignment
632
633 fpcc-struct-return
634 Common Report Var(flag_pcc_struct_return,1) VarExists
635 Return small aggregates in memory, not registers
636
637 fpeel-loops
638 Common Report Var(flag_peel_loops)
639 Perform loop peeling
640
641 fpeephole
642 Common Report Var(flag_no_peephole,0)
643 Enable machine specific peephole optimizations
644
645 fpeephole2
646 Common Report Var(flag_peephole2)
647 Enable an RTL peephole pass before sched2
648
649 fPIC
650 Common Report Var(flag_pic,2)
651 Generate position-independent code if possible (large mode)
652
653 fPIE
654 Common Report Var(flag_pie,2)
655 Generate position-independent code for executables if possible (large mode)
656
657 fpic
658 Common Report Var(flag_pic,1) VarExists
659 Generate position-independent code if possible (small mode)
660
661 fpie
662 Common Report Var(flag_pie,1) VarExists
663 Generate position-independent code for executables if possible (small mode)
664
665 fprefetch-loop-arrays
666 Common Report Var(flag_prefetch_loop_arrays,1)
667 Generate prefetch instructions, if available, for arrays in loops
668
669 fprefetch-loop-arrays-rtl
670 Common Report Var(flag_prefetch_loop_arrays,2)
671 Generate prefetch instructions, if available, for arrays in loops
672
673 fprofile
674 Common Report Var(profile_flag)
675 Enable basic program profiling code
676
677 fprofile-arcs
678 Common Report Var(profile_arc_flag)
679 Insert arc-based program profiling code
680
681 fprofile-generate
682 Common
683 Enable common options for generating profile info for profile feedback directed optimizations
684
685 fprofile-use
686 Common
687 Enable common options for performing profile feedback directed optimizations
688
689 fprofile-values
690 Common Report Var(flag_profile_values)
691 Insert code to profile values of expressions
692
693 frandom-seed
694 Common
695
696 frandom-seed=
697 Common Joined RejectNegative
698 -frandom-seed=<string>  Make compile reproducible using <string>
699
700 freg-struct-return
701 Common Report Var(flag_pcc_struct_return,0) VarExists
702 Return small aggregates in registers
703
704 fregmove
705 Common Report Var(flag_regmove)
706 Enables a register move optimization
707
708 frename-registers
709 Common Report Var(flag_rename_registers) Init(2)
710 Perform a register renaming optimization pass
711
712 freorder-blocks
713 Common Report Var(flag_reorder_blocks)
714 Reorder basic blocks to improve code placement
715
716 freorder-blocks-and-partition
717 Common Report Var(flag_reorder_blocks_and_partition)
718 Reorder basic blocks and partition into hot and cold sections
719
720 freorder-functions
721 Common Report Var(flag_reorder_functions)
722 Reorder functions to improve code placement
723
724 frerun-cse-after-loop
725 Common Report Var(flag_rerun_cse_after_loop) Init(2)
726 Add a common subexpression elimination pass after loop optimizations
727
728 frerun-loop-opt
729 Common Report Var(flag_rerun_loop_opt)
730 Run the loop optimizer twice
731
732 frounding-math
733 Common Report Var(flag_rounding_math)
734 Disable optimizations that assume default FP rounding behavior
735
736 fsched-interblock
737 Common Report Var(flag_schedule_interblock) Init(1)
738 Enable scheduling across basic blocks
739
740 fsched-spec
741 Common Report Var(flag_schedule_speculative) Init(1)
742 Allow speculative motion of non-loads
743
744 fsched-spec-load
745 Common Report Var(flag_schedule_speculative_load)
746 Allow speculative motion of some loads
747
748 fsched-spec-load-dangerous
749 Common Report Var(flag_schedule_speculative_load_dangerous)
750 Allow speculative motion of more loads
751
752 fsched-verbose=
753 Common RejectNegative Joined
754 -fsched-verbose=<number>        Set the verbosity level of the scheduler
755
756 fsched2-use-superblocks
757 Common Report Var(flag_sched2_use_superblocks)
758 If scheduling post reload, do superblock scheduling
759
760 fsched2-use-traces
761 Common Report Var(flag_sched2_use_traces)
762 If scheduling post reload, do trace scheduling
763
764 fschedule-insns
765 Common Report Var(flag_schedule_insns)
766 Reschedule instructions before register allocation
767
768 fschedule-insns2
769 Common Report Var(flag_schedule_insns_after_reload)
770 Reschedule instructions after register allocation
771
772 ; sched_stalled_insns means that insns can be moved prematurely from the queue
773 ; of stalled insns into the ready list.
774 fsched-stalled-insns
775 Common Report Var(flag_sched_stalled_insns)
776 Allow premature scheduling of queued insns
777
778 fsched-stalled-insns=
779 Common RejectNegative Joined UInteger 
780 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
781
782 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
783 ; be examined for a dependency on a stalled insn that is candidate for
784 ; premature removal from the queue of stalled insns into the ready list (has
785 ; an effect only if the flag 'sched_stalled_insns' is set).
786 fsched-stalled-insns-dep
787 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1)
788 Set dependence distance checking in premature scheduling of queued insns
789
790 fsched-stalled-insns-dep=
791 Common RejectNegative Joined UInteger
792 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
793
794 fsection-anchors
795 Common Report Var(flag_section_anchors)
796 Access data in the same section from shared anchor points
797
798 frtl-abstract-sequences
799 Common Report Var(flag_rtl_seqabstr)
800 Perform sequence abstraction optimization on RTL
801
802 fshow-column
803 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
804 Show column numbers in diagnostics, when available.  Default on
805
806 fsignaling-nans
807 Common Report Var(flag_signaling_nans)
808 Disable optimizations observable by IEEE signaling NaNs
809
810 fsingle-precision-constant
811 Common Report Var(flag_single_precision_constant)
812 Convert floating point constants to single precision constants
813
814 fsplit-ivs-in-unroller
815 Common Report Var(flag_split_ivs_in_unroller) Init(1)
816 Split lifetimes of induction variables when loops are unrolled
817
818 fvariable-expansion-in-unroller
819 Common Report Var(flag_variable_expansion_in_unroller) 
820 Apply variable expansion when loops are unrolled
821
822 ; Emit code to probe the stack, to help detect stack overflow; also
823 ; may cause large objects to be allocated dynamically.
824 fstack-check
825 Common Report Var(flag_stack_check)
826 Insert stack checking code into the program
827
828 fstack-limit
829 Common
830
831 fstack-limit-register=
832 Common RejectNegative Joined
833 -fstack-limit-register=<register>       Trap if the stack goes past <register>
834
835 fstack-limit-symbol=
836 Common RejectNegative Joined
837 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
838
839 fstack-protector
840 Common Report Var(flag_stack_protect, 1)
841 Use propolice as a stack protection method
842
843 fstack-protector-all
844 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
845 Use a stack protection method for every function
846
847 fstrength-reduce
848 Common Report Var(flag_strength_reduce)
849 Perform strength reduction optimizations
850
851 ; Nonzero if we should do (language-dependent) alias analysis.
852 ; Typically, this analysis will assume that expressions of certain
853 ; types do not alias expressions of certain other types.  Only used
854 ; if alias analysis (in general) is enabled.
855 fstrict-aliasing
856 Common Report Var(flag_strict_aliasing)
857 Assume strict aliasing rules apply
858
859 fsyntax-only
860 Common Report Var(flag_syntax_only)
861 Check for syntax errors, then stop
862
863 ftest-coverage
864 Common Report Var(flag_test_coverage)
865 Create data files needed by \"gcov\"
866
867 fthread-jumps
868 Common Report Var(flag_thread_jumps)
869 Perform jump threading optimizations
870
871 ftime-report
872 Common Report Var(time_report)
873 Report the time taken by each compiler pass
874
875 ftls-model=
876 Common Joined RejectNegative
877 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
878
879 ftoplevel-reorder
880 Common Report Var(flag_toplevel_reorder) Init(1)
881 Reorder top level functions, variables, and asms
882
883 ftracer
884 Common Report Var(flag_tracer)
885 Perform superblock formation via tail duplication
886
887 ; Zero means that floating-point math operations cannot generate a
888 ; (user-visible) trap.  This is the case, for example, in nonstop
889 ; IEEE 754 arithmetic.
890 ftrapping-math
891 Common Report Var(flag_trapping_math) Init(1)
892 Assume floating-point operations can trap
893
894 ftrapv
895 Common Report Var(flag_trapv)
896 Trap for signed overflow in addition, subtraction and multiplication
897
898 ftree-ccp
899 Common Report Var(flag_tree_ccp)
900 Enable SSA-CCP optimization on trees
901
902 ftree-store-ccp
903 Common Report Var(flag_tree_store_ccp)
904 Enable SSA-CCP optimization for stores and loads
905
906 ftree-ch
907 Common Report Var(flag_tree_ch)
908 Enable loop header copying on trees
909
910 ftree-combine-temps
911 Common Report Var(flag_tree_combine_temps)
912 Coalesce memory temporaries in the SSA->normal pass
913
914 ftree-copyrename
915 Common Report Var(flag_tree_copyrename)
916 Replace SSA temporaries with better names in copies
917
918 ftree-copy-prop
919 Common Report Var(flag_tree_copy_prop)
920 Enable copy propagation on trees
921
922 ftree-store-copy-prop
923 Common Report Var(flag_tree_store_copy_prop)
924 Enable copy propagation for stores and loads
925
926 ftree-dce
927 Common Report Var(flag_tree_dce)
928 Enable SSA dead code elimination optimization on trees
929
930 ftree-dominator-opts
931 Common Report Var(flag_tree_dom)
932 Enable dominator optimizations
933
934 ftree-dse
935 Common Report Var(flag_tree_dse)
936 Enable dead store elimination
937
938 ftree-fre
939 Common Report Var(flag_tree_fre)
940 Enable Full Redundancy Elimination (FRE) on trees
941
942 ftree-loop-im
943 Common Report Var(flag_tree_loop_im) Init(1)
944 Enable loop invariant motion on trees
945
946 ftree-loop-linear
947 Common Report Var(flag_tree_loop_linear)
948 Enable linear loop transforms on trees
949
950 ftree-loop-ivcanon
951 Common Report Var(flag_tree_loop_ivcanon) Init(1)
952 Create canonical induction variables in loops
953
954 ftree-loop-optimize
955 Common Report Var(flag_tree_loop_optimize) Init(1)
956 Enable loop optimizations on tree level
957
958 ftree-pre
959 Common Report Var(flag_tree_pre)
960 Enable SSA-PRE optimization on trees
961
962 ftree-salias
963 Common Report Var(flag_tree_salias)
964 Perform structural alias analysis
965
966 ftree-sink
967 Common Report Var(flag_tree_sink)
968 Enable SSA code sinking on trees
969
970 ftree-sra
971 Common Report Var(flag_tree_sra)
972 Perform scalar replacement of aggregates
973
974 ftree-ter
975 Common Report Var(flag_tree_ter)
976 Replace temporary expressions in the SSA->normal pass
977
978 ftree-lrs
979 Common Report Var(flag_tree_live_range_split)
980 Perform live range splitting during the SSA->normal pass
981
982 ftree-vrp
983 Common Report Var(flag_tree_vrp) Init(0)
984 Perform Value Range Propagation on trees
985
986 funit-at-a-time
987 Common Report Var(flag_unit_at_a_time)
988 Compile whole compilation unit at a time
989
990 funroll-loops
991 Common Report Var(flag_unroll_loops)
992 Perform loop unrolling when iteration count is known
993
994 funroll-all-loops
995 Common Report Var(flag_unroll_all_loops)
996 Perform loop unrolling for all loops
997
998 ; Nonzero means that loop optimizer may assume that the induction variables
999 ; that control loops do not overflow and that the loops with nontrivial
1000 ; exit condition are not infinite
1001 funsafe-loop-optimizations
1002 Common Report Var(flag_unsafe_loop_optimizations)
1003 Allow loop optimizations to assume that the loops behave in normal way
1004
1005 ; Nonzero means that unsafe floating-point math optimizations are allowed
1006 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1007 ; are allowed to assume that their arguments and results are "normal"
1008 ; (e.g., nonnegative for SQRT).
1009 funsafe-math-optimizations
1010 Common Report Var(flag_unsafe_math_optimizations)
1011 Allow math optimizations that may violate IEEE or ISO standards
1012
1013 funswitch-loops
1014 Common Report Var(flag_unswitch_loops)
1015 Perform loop unswitching
1016
1017 funwind-tables
1018 Common Report Var(flag_unwind_tables)
1019 Just generate unwind tables for exception handling
1020
1021 fvar-tracking
1022 Common Report Var(flag_var_tracking) VarExists
1023 Perform variable tracking
1024
1025 ftree-vectorize
1026 Common Report Var(flag_tree_vectorize)
1027 Enable loop vectorization on trees
1028
1029 ftree-vect-loop-version
1030 Common Report Var(flag_tree_vect_loop_version) Init(1)
1031 Enable loop versioning when doing loop vectorization on trees
1032
1033 ftree-vectorizer-verbose=
1034 Common RejectNegative Joined
1035 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1036
1037 ; -fverbose-asm causes extra commentary information to be produced in
1038 ; the generated assembly code (to make it more readable).  This option
1039 ; is generally only of use to those who actually need to read the
1040 ; generated assembly code (perhaps while debugging the compiler itself).
1041 ; -fno-verbose-asm, the default, causes the extra information
1042 ; to not be added and is useful when comparing two assembler files.
1043 fverbose-asm
1044 Common Report Var(flag_verbose_asm)
1045 Add extra commentary to assembler output
1046
1047 fvisibility=
1048 Common Joined RejectNegative
1049 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1050
1051
1052 fvpt
1053 Common Report Var(flag_value_profile_transformations)
1054 Use expression value profiles in optimizations
1055
1056 fweb
1057 Common Report Var(flag_web) Init(2)
1058 Construct webs and split unrelated uses of single variable
1059
1060 fwhole-program
1061 Common Report Var(flag_whole_program) Init(0)
1062 Perform whole program optimizations
1063
1064 fwrapv
1065 Common Report Var(flag_wrapv)
1066 Assume signed arithmetic overflow wraps around
1067
1068 fzero-initialized-in-bss
1069 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1070 Put zero initialized data in the bss section
1071
1072 g
1073 Common JoinedOrMissing
1074 Generate debug information in default format
1075
1076 gcoff
1077 Common JoinedOrMissing
1078 Generate debug information in COFF format
1079
1080 gdwarf-2
1081 Common JoinedOrMissing
1082 Generate debug information in DWARF v2 format
1083
1084 ggdb
1085 Common JoinedOrMissing
1086 Generate debug information in default extended format
1087
1088 gstabs
1089 Common JoinedOrMissing
1090 Generate debug information in STABS format
1091
1092 gstabs+
1093 Common JoinedOrMissing
1094 Generate debug information in extended STABS format
1095
1096 gvms
1097 Common JoinedOrMissing
1098 Generate debug information in VMS format
1099
1100 gxcoff
1101 Common JoinedOrMissing
1102 Generate debug information in XCOFF format
1103
1104 gxcoff+
1105 Common JoinedOrMissing
1106 Generate debug information in extended XCOFF format
1107
1108 o
1109 Common Joined Separate
1110 -o <file>       Place output into <file>
1111
1112 p
1113 Common Var(profile_flag)
1114 Enable function profiling
1115
1116 pedantic
1117 Common Var(pedantic)
1118 Issue warnings needed for strict compliance to the standard
1119
1120 pedantic-errors
1121 Common
1122 Like -pedantic but issue them as errors
1123
1124 quiet
1125 Common Var(quiet_flag)
1126 Do not display functions compiled or elapsed time
1127
1128 version
1129 Common Var(version_flag)
1130 Display the compiler's version
1131
1132 w
1133 Common Var(inhibit_warnings)
1134 Suppress warnings
1135
1136 ; This comment is to ensure we retain the blank line above.