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