2008-08-26 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / common.opt
blob21d1ae3396c00975eaf5887e59276f172dbb0096
1 ; Options for the language- and target-independent parts of the compiler.
3 ; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
4 ; Free Software Foundation, Inc.
6 ; This file is part of GCC.
8 ; GCC is free software; you can redistribute it and/or modify it under
9 ; the terms of the GNU General Public License as published by the Free
10 ; Software Foundation; either version 3, or (at your option) any later
11 ; version.
13 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 ; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 ; for more details.
18 ; You should have received a copy of the GNU General Public License
19 ; along with GCC; see the file COPYING3.  If not see
20 ; <http://www.gnu.org/licenses/>.
22 ; See the GCC internals manual (options.texi) 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 -help=
31 Common Report Joined
32 --help=<class>  Display descriptions of a specific class of options.  <class> is one or more of optimizers, target, warnings, undocumented, params
34 -target-help
35 Common
36 Alias for --help=target
38 ;; The following three entries are to work around the gcc driver
39 ;; program's insatiable desire to turn options starting with a
40 ;; double dash (--) into options starting with a dash f (-f).
41 fhelp
42 Common
44 fhelp=
45 Common Joined
47 ftarget-help
48 Common
50 -param
51 Common Separate
52 --param <param>=<value> Set parameter <param> to value.  See below for a complete list of parameters
54 -version
55 Common
58 Common Joined Separate UInteger
59 -G<number>      Put global and static data smaller than <number> bytes into a special section (on some targets)
62 Common JoinedOrMissing Optimization
63 -O<number>      Set optimization level to <number>
66 Common Optimization
67 Optimize for space rather than speed
70 Common RejectNegative
71 This switch is deprecated; use -Wextra instead
73 Waggregate-return
74 Common Var(warn_aggregate_return) Warning
75 Warn about returning structures, unions or arrays
77 Warray-bounds
78 Common Var(warn_array_bounds) Warning
79 Warn if an array is accessed out of bounds
81 Wattributes
82 Common Var(warn_attributes) Init(1) Warning
83 Warn about inappropriate attribute usage
85 Wcast-align
86 Common Var(warn_cast_align) Warning
87 Warn about pointer casts which increase alignment
89 Wdeprecated-declarations
90 Common Var(warn_deprecated_decl) Init(1) Warning
91 Warn about uses of __attribute__((deprecated)) declarations
93 Wdisabled-optimization
94 Common Var(warn_disabled_optimization) Warning
95 Warn when an optimization pass is disabled
97 Wdisallowed-function-list=
98 Common RejectNegative Joined Warning
99 Warn on calls to these functions
101 Werror
102 Common Var(warnings_are_errors)
103 Treat all warnings as errors
105 Werror=
106 Common Joined
107 Treat specified warning as error
109 Wextra
110 Common Warning
111 Print extra (possibly unwanted) warnings
113 Wfatal-errors
114 Common Var(flag_fatal_errors)
115 Exit on the first error occurred
117 Wframe-larger-than=
118 Common RejectNegative Joined UInteger
119 -Wframe-larger-than=<number> Warn if a function's stack frame requires more than <number> bytes
121 Winline
122 Common Var(warn_inline) Warning
123 Warn when an inlined function cannot be inlined
125 Wlarger-than-
126 Common RejectNegative Joined UInteger Warning
128 Wlarger-than=
129 Common RejectNegative Joined UInteger Warning
130 -Wlarger-than=<number>  Warn if an object is larger than <number> bytes
132 Wlogical-op
133 Common Warning Var(warn_logical_op)
134 Warn when a logical operator is suspicously always evaluating to true or false
136 Wunsafe-loop-optimizations
137 Common Var(warn_unsafe_loop_optimizations) Warning
138 Warn if the loop cannot be optimized due to nontrivial assumptions.
140 Wmissing-noreturn
141 Common Var(warn_missing_noreturn) Warning
142 Warn about functions which might be candidates for __attribute__((noreturn))
144 Wmudflap
145 Common Var(warn_mudflap) Init(1) Warning
146 Warn about constructs not instrumented by -fmudflap
148 Woverflow
149 Common Var(warn_overflow) Init(1) Warning
150 Warn about overflow in arithmetic expressions
152 Wpacked
153 Common Var(warn_packed) Warning
154 Warn when the packed attribute has no effect on struct layout
156 Wpadded
157 Common Var(warn_padded) Warning
158 Warn when padding is required to align structure members
160 Wshadow
161 Common Var(warn_shadow) Warning
162 Warn when one local variable shadows another
164 Wstack-protector
165 Common Var(warn_stack_protect) Warning
166 Warn when not issuing stack smashing protection for some reason
168 Wstrict-aliasing
169 Common Warning
170 Warn about code which might break strict aliasing rules
172 Wstrict-aliasing=
173 Common Joined UInteger Var(warn_strict_aliasing) Init(-1) Warning
174 Warn about code which might break strict aliasing rules
176 Wstrict-overflow
177 Common Warning
178 Warn about optimizations that assume that signed overflow is undefined
180 Wstrict-overflow=
181 Common Joined UInteger Var(warn_strict_overflow) Init(-1) Warning
182 Warn about optimizations that assume that signed overflow is undefined
184 Wswitch
185 Common Var(warn_switch) Warning
186 Warn about enumerated switches, with no default, missing a case
188 Wswitch-default
189 Common Var(warn_switch_default) Warning
190 Warn about enumerated switches missing a \"default:\" statement
192 Wswitch-enum
193 Common Var(warn_switch_enum) Warning
194 Warn about all enumerated switches missing a specific case
196 Wsystem-headers
197 Common Var(warn_system_headers) Warning
198 Do not suppress warnings from system headers
200 Wtype-limits
201 Common Var(warn_type_limits) Init(-1) Warning
202 Warn if a comparison is always true or always false due to the limited range of the data type
204 Wuninitialized
205 Common Var(warn_uninitialized) Warning
206 Warn about uninitialized automatic variables
208 Wunreachable-code
209 Common Var(warn_notreached) Warning
210 Warn about code that will never be executed
212 Wunused
213 Common Var(warn_unused) Init(0) Warning
214 Enable all -Wunused- warnings
216 Wunused-function
217 Common Var(warn_unused_function) Init(-1) Warning
218 Warn when a function is unused
220 Wunused-label
221 Common Var(warn_unused_label) Init(-1) Warning
222 Warn when a label is unused
224 Wunused-parameter
225 Common Var(warn_unused_parameter) Init(-1) Warning
226 Warn when a function parameter is unused
228 Wunused-value
229 Common Var(warn_unused_value) Init(-1) Warning
230 Warn when an expression value is unused
232 Wunused-variable
233 Common Var(warn_unused_variable) Init(-1) Warning
234 Warn when a variable is unused
236 Wcoverage-mismatch
237 Common RejectNegative Var(warn_coverage_mismatch) Warning
238 Warn instead of error in case profiles in -fprofile-use do not match
240 aux-info
241 Common Separate
242 -aux-info <file>        Emit declaration information into <file>
244 aux-info=
245 Common Joined
247 auxbase
248 Common Separate
250 auxbase-strip
251 Common Separate
254 Common Joined
255 -d<letters>     Enable dumps from specific passes of the compiler
257 dumpbase
258 Common Separate
259 -dumpbase <file>        Set the file basename to be used for dumps
261 ; The version of the C++ ABI in use.  The following values are allowed:
263 ; 0: The version of the ABI believed most conformant with the C++ ABI
264 ;    specification.  This ABI may change as bugs are discovered and fixed.
265 ;    Therefore, 0 will not necessarily indicate the same ABI in different
266 ;    versions of G++.
268 ; 1: The version of the ABI first used in G++ 3.2.
270 ; 2: The version of the ABI first used in G++ 3.4.
272 ; Additional positive integers will be assigned as new versions of
273 ; the ABI become the default version of the ABI.
274 fabi-version=
275 Common Joined UInteger Var(flag_abi_version) Init(2)
277 falign-functions
278 Common Report Var(align_functions,0) Optimization UInteger
279 Align the start of functions
281 falign-functions=
282 Common RejectNegative Joined UInteger
284 falign-jumps
285 Common Report Var(align_jumps,0) Optimization UInteger
286 Align labels which are only reached by jumping
288 falign-jumps=
289 Common RejectNegative Joined UInteger
291 falign-labels
292 Common Report Var(align_labels,0) Optimization UInteger
293 Align all labels
295 falign-labels=
296 Common RejectNegative Joined UInteger
298 falign-loops
299 Common Report Var(align_loops) Optimization UInteger
300 Align the start of loops
302 falign-loops=
303 Common RejectNegative Joined UInteger
305 ; This flag is only tested if alias checking is enabled.
306 ; 0 if pointer arguments may alias each other.  True in C.
307 ; 1 if pointer arguments may not alias each other but may alias
308 ;   global variables.
309 ; 2 if pointer arguments may not alias each other and may not
310 ;   alias global variables.
311 ; 3 if pointer arguments may not alias anything.  True in Fortran.
312 ;   Set by the front end.
313 fargument-alias
314 Common Report Var(flag_argument_noalias,0) Optimization
315 Specify that arguments may alias each other and globals
317 fargument-noalias
318 Common Report Var(flag_argument_noalias,1) VarExists Optimization
319 Assume arguments may alias globals but not each other
321 fargument-noalias-global
322 Common Report Var(flag_argument_noalias,2) VarExists Optimization
323 Assume arguments alias neither each other nor globals
325 fargument-noalias-anything
326 Common Report Var(flag_argument_noalias,3) VarExists Optimization
327 Assume arguments alias no other storage
329 fasynchronous-unwind-tables
330 Common Report Var(flag_asynchronous_unwind_tables) Optimization
331 Generate unwind tables that are exact at each instruction boundary
333 fauto-inc-dec
334 Common Report Var(flag_auto_inc_dec) Init(1)
335 Generate auto-inc/dec instructions
337 ; -fcheck-bounds causes gcc to generate array bounds checks.
338 ; For C, C++ and ObjC: defaults off.
339 ; For Java: defaults to on.
340 ; For Fortran: defaults to off.
341 fbounds-check
342 Common Report Var(flag_bounds_check)
343 Generate code to check bounds before indexing arrays
345 fbranch-count-reg
346 Common Report Var(flag_branch_on_count_reg) Init(1) Optimization
347 Replace add, compare, branch with branch on count register
349 fbranch-probabilities
350 Common Report Var(flag_branch_probabilities) Optimization
351 Use profiling information for branch probabilities
353 fbranch-target-load-optimize
354 Common Report Var(flag_branch_target_load_optimize) Optimization
355 Perform branch target load optimization before prologue / epilogue threading
357 fbranch-target-load-optimize2
358 Common Report Var(flag_branch_target_load_optimize2) Optimization
359 Perform branch target load optimization after prologue / epilogue threading
361 fbtr-bb-exclusive
362 Common Report Var(flag_btr_bb_exclusive) Optimization
363 Restrict target load migration not to re-use registers in any basic block
365 fcall-saved-
366 Common Joined RejectNegative
367 -fcall-saved-<register> Mark <register> as being preserved across functions
369 fcall-used-
370 Common Joined RejectNegative
371 -fcall-used-<register>  Mark <register> as being corrupted by function calls
373 ; Nonzero for -fcaller-saves: allocate values in regs that need to
374 ; be saved across function calls, if that produces overall better code.
375 ; Optional now, so people can test it.
376 fcaller-saves
377 Common Report Var(flag_caller_saves) Optimization
378 Save registers around function calls
380 fcheck-data-deps
381 Common Report Var(flag_check_data_deps)
382 Compare the results of several data dependence analyzers.
384 fcommon
385 Common Report Var(flag_no_common,0) Optimization
386 Do not put uninitialized globals in the common section
388 fcprop-registers
389 Common Report Var(flag_cprop_registers) Optimization
390 Perform a register copy-propagation optimization pass
392 fcrossjumping
393 Common Report Var(flag_crossjumping) Optimization
394 Perform cross-jumping optimization
396 fcse-follow-jumps
397 Common Report Var(flag_cse_follow_jumps) Optimization
398 When running CSE, follow jumps to their targets
400 fcse-skip-blocks
401 Common Report Var(flag_cse_skip_blocks) Optimization
402 When running CSE, follow conditional jumps
404 fcx-limited-range
405 Common Report Var(flag_cx_limited_range) Optimization
406 Omit range reduction step when performing complex division
408 fcx-fortran-rules
409 Common Report Var(flag_cx_fortran_rules) Optimization
410 Complex multiplication and division follow Fortran rules
412 fdata-sections
413 Common Report Var(flag_data_sections) Optimization
414 Place data items into their own section
416 fdbg-cnt-list
417 Common Report
418 List all available debugging counters with their limits and counts.
420 fdbg-cnt=
421 Common RejectNegative Joined
422 -fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...]    Set the debug counter limit.   
424 fdebug-prefix-map=
425 Common Joined RejectNegative
426 Map one directory name to another in debug information
428 ; Nonzero for -fdefer-pop: don't pop args after each function call
429 ; instead save them up to pop many calls' args with one insns.
430 fdefer-pop
431 Common Report Var(flag_defer_pop) Optimization
432 Defer popping functions args from stack until later
434 fdelayed-branch
435 Common Report Var(flag_delayed_branch) Optimization
436 Attempt to fill delay slots of branch instructions
438 fdelete-null-pointer-checks
439 Common Report Var(flag_delete_null_pointer_checks) Optimization
440 Delete useless null pointer checks
442 fdiagnostics-show-location=
443 Common Joined RejectNegative
444 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics
446 fdiagnostics-show-option
447 Common
448 Amend appropriate diagnostic messages with the command line option that controls them
450 fdump-
451 Common Joined RejectNegative
452 -fdump-<type>   Dump various compiler internals to a file
454 fdump-noaddr
455 Common Report Var(flag_dump_noaddr)
456 Suppress output of addresses in debugging dumps
458 fdump-unnumbered
459 Common Report Var(flag_dump_unnumbered) VarExists
460 Suppress output of instruction numbers, line number notes and addresses in debugging dumps
462 fdwarf2-cfi-asm
463 Common Report Var(flag_dwarf2_cfi_asm) Init(HAVE_GAS_CFI_DIRECTIVE)
464 Enable CFI tables via GAS assembler directives.
466 fearly-inlining
467 Common Report Var(flag_early_inlining) Init(1) Optimization
468 Perform early inlining
470 feliminate-dwarf2-dups
471 Common Report Var(flag_eliminate_dwarf2_dups)
472 Perform DWARF2 duplicate elimination
474 feliminate-unused-debug-symbols
475 Common Report Var(flag_debug_only_used_symbols)
476 Perform unused type elimination in debug info
478 feliminate-unused-debug-types
479 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
480 Perform unused type elimination in debug info
482 femit-class-debug-always
483 Common Report Var(flag_emit_class_debug_always) Init(0)
484 Do not suppress C++ class debug information.
486 fexceptions
487 Common Report Var(flag_exceptions) Optimization
488 Enable exception handling
490 fexpensive-optimizations
491 Common Report Var(flag_expensive_optimizations) Optimization
492 Perform a number of minor, expensive optimizations
494 ffast-math
495 Common
497 ffinite-math-only
498 Common Report Var(flag_finite_math_only) Optimization
499 Assume no NaNs or infinities are generated
501 ffixed-
502 Common Joined RejectNegative
503 -ffixed-<register>      Mark <register> as being unavailable to the compiler
505 ffloat-store
506 Common Report Var(flag_float_store) Optimization
507 Don't allocate floats and doubles in extended-precision registers
509 fforce-addr
510 Common
511 Does nothing.  Preserved for backward compatibility.
513 fforward-propagate
514 Common Report Var(flag_forward_propagate) Optimization
515 Perform a forward propagation pass on RTL
517 ; Nonzero means don't put addresses of constant functions in registers.
518 ; Used for compiling the Unix kernel, where strange substitutions are
519 ; done on the assembly output.
520 ffunction-cse
521 Common Report Var(flag_no_function_cse,0)
522 Allow function addresses to be held in registers
524 ffunction-sections
525 Common Report Var(flag_function_sections)
526 Place each function into its own section
528 fgcse
529 Common Report Var(flag_gcse) Optimization
530 Perform global common subexpression elimination
532 fgcse-lm
533 Common Report Var(flag_gcse_lm) Init(1) Optimization
534 Perform enhanced load motion during global common subexpression elimination
536 fgcse-sm
537 Common Report Var(flag_gcse_sm) Init(0) Optimization
538 Perform store motion after global common subexpression elimination
540 fgcse-las
541 Common Report Var(flag_gcse_las) Init(0) Optimization
542 Perform redundant load after store elimination in global common subexpression
543 elimination
545 fgcse-after-reload
546 Common Report Var(flag_gcse_after_reload) Optimization
547 Perform global common subexpression elimination after register allocation
548 has finished
550 fguess-branch-probability
551 Common Report Var(flag_guess_branch_prob) Optimization
552 Enable guessing of branch probabilities
554 ; Nonzero means ignore `#ident' directives.  0 means handle them.
555 ; Generate position-independent code for executables if possible
556 ; On SVR4 targets, it also controls whether or not to emit a
557 ; string identifying the compiler.
558 fident
559 Common Report Var(flag_no_ident,0)
560 Process #ident directives
562 fif-conversion
563 Common Report Var(flag_if_conversion) Optimization
564 Perform conversion of conditional jumps to branchless equivalents
566 fif-conversion2
567 Common Report Var(flag_if_conversion2) Optimization
568 Perform conversion of conditional jumps to conditional execution
570 ; -finhibit-size-directive inhibits output of .size for ELF.
571 ; This is used only for compiling crtstuff.c,
572 ; and it may be extended to other effects
573 ; needed for crtstuff.c on other systems.
574 finhibit-size-directive
575 Common Report Var(flag_inhibit_size_directive)
576 Do not generate .size directives
578 findirect-inlining
579 Common Report Var(flag_indirect_inlining)
580 Perform indirect inlining
582 ; Nonzero means that functions declared `inline' will be treated
583 ; as `static'.  Prevents generation of zillions of copies of unused
584 ; static inline functions; instead, `inlines' are written out
585 ; only when actually used.  Used in conjunction with -g.  Also
586 ; does the right thing with #pragma interface.
587 finline
588 Common Report Var(flag_no_inline,0) Init(0)
589 Pay attention to the \"inline\" keyword
591 finline-small-functions
592 Common Report Var(flag_inline_small_functions) Optimization
593 Integrate simple functions into their callers when code size is known to not growth
595 finline-functions
596 Common Report Var(flag_inline_functions) Optimization
597 Integrate simple functions into their callers
599 finline-functions-called-once
600 Common Report Var(flag_inline_functions_called_once) Init(1) Optimization
601 Integrate functions called once into their callers
603 finline-limit-
604 Common RejectNegative Joined UInteger
606 finline-limit=
607 Common RejectNegative Joined UInteger
608 -finline-limit=<number> Limit the size of inlined functions to <number>
610 finstrument-functions
611 Common Report Var(flag_instrument_function_entry_exit)
612 Instrument function entry and exit with profiling calls
614 finstrument-functions-exclude-function-list=
615 Common RejectNegative Joined
616 -finstrument-functions-exclude-function-list=name,...  Do not instrument listed functions
618 finstrument-functions-exclude-file-list=
619 Common RejectNegative Joined
620 -finstrument-functions-exclude-file-list=filename,...  Do not instrument functions listed in files
622 fipa-cp
623 Common Report Var(flag_ipa_cp) Optimization
624 Perform Interprocedural constant propagation
626 fipa-cp-clone
627 Common Report Var(flag_ipa_cp_clone) Optimization
628 Perform cloning to make Interprocedural constant propagation stronger
630 fipa-pure-const
631 Common Report Var(flag_ipa_pure_const) Init(0) Optimization
632 Discover pure and const functions
634 fipa-pta
635 Common Report Var(flag_ipa_pta) Init(0) Optimization
636 Perform interprocedural points-to analysis
638 fipa-reference
639 Common Report Var(flag_ipa_reference) Init(0) Optimization
640 Discover readonly and non addressable static variables
642 fipa-type-escape
643 Common Report Var(flag_ipa_type_escape) Init(0) Optimization
644 Type based escape and alias analysis
646 fipa-matrix-reorg
647 Common Report Var(flag_ipa_matrix_reorg) Optimization
648 Perform matrix layout flattening and transposing based
649 on profiling information.
651 fipa-struct-reorg
652 Common Report Var(flag_ipa_struct_reorg)
653 Perform structure layout optimizations based
654 on profiling information.
656 fira
657 Common Report Var(flag_ira) Init(0)
658 Use integrated register allocator.
660 fira-algorithm=
661 Common Joined RejectNegative
662 -fira-algorithm=[regional|CB|mixed] Set the used IRA algorithm
664 fira-coalesce
665 Common Report Var(flag_ira_coalesce) Init(0)
666 Do optimistic coalescing.
668 fira-share-save-slots
669 Common Report Var(flag_ira_share_save_slots) Init(1)
670 Share slots for saving different hard registers.
672 fira-share-spill-slots
673 Common Report Var(flag_ira_share_spill_slots) Init(1)
674 Share stack slots for spilled pseudo-registers.
676 fira-verbose=
677 Common RejectNegative Joined UInteger
678 -fira-verbose=<number> Control IRA's level of diagnostic messages.
680 fivopts
681 Common Report Var(flag_ivopts) Init(1) Optimization
682 Optimize induction variables on trees
684 fjump-tables
685 Common Var(flag_jump_tables) Init(1) Optimization
686 Use jump tables for sufficiently large switch statements
688 fkeep-inline-functions
689 Common Report Var(flag_keep_inline_functions)
690 Generate code for functions even if they are fully inlined
692 fkeep-static-consts
693 Common Report Var(flag_keep_static_consts) Init(1)
694 Emit static const variables even if they are not used
696 fleading-underscore
697 Common Report Var(flag_leading_underscore) Init(-1)
698 Give external symbols a leading underscore
700 floop-optimize
701 Common
702 Does nothing.  Preserved for backward compatibility.
704 fmath-errno
705 Common Report Var(flag_errno_math) Init(1) Optimization
706 Set errno after built-in math functions
708 fmem-report
709 Common Report Var(mem_report)
710 Report on permanent memory allocation
712 ; This will attempt to merge constant section constants, if 1 only
713 ; string constants and constants from constant pool, if 2 also constant
714 ; variables.
715 fmerge-all-constants
716 Common Report Var(flag_merge_constants,2) Init(1) Optimization
717 Attempt to merge identical constants and constant variables
719 fmerge-constants
720 Common Report Var(flag_merge_constants,1) VarExists Optimization
721 Attempt to merge identical constants across compilation units
723 fmerge-debug-strings
724 Common Report Var(flag_merge_debug_strings) Init(1)
725 Attempt to merge identical debug strings across compilation units
727 fmessage-length=
728 Common RejectNegative Joined UInteger
729 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping
731 fmodulo-sched
732 Common Report Var(flag_modulo_sched) Optimization
733 Perform SMS based modulo scheduling before the first scheduling pass
735 fmodulo-sched-allow-regmoves
736 Common Report Var(flag_modulo_sched_allow_regmoves)
737 Perform SMS based modulo scheduling with register moves allowed
739 fmove-loop-invariants
740 Common Report Var(flag_move_loop_invariants) Init(1) Optimization
741 Move loop invariant computations out of loops
743 fmudflap
744 Common RejectNegative Report Var(flag_mudflap)
745 Add mudflap bounds-checking instrumentation for single-threaded program
747 fmudflapth
748 Common RejectNegative Report VarExists Var(flag_mudflap,2)
749 Add mudflap bounds-checking instrumentation for multi-threaded program
751 fmudflapir
752 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
753 Ignore read operations when inserting mudflap instrumentation
755 fdce
756 Common Var(flag_dce) Init(1) Optimization
757 Use the RTL dead code elimination pass
759 fdse
760 Common Var(flag_dse) Init(1) Optimization
761 Use the RTL dead store elimination pass
763 freschedule-modulo-scheduled-loops
764 Common Report Var(flag_resched_modulo_sched) Optimization
765 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
767 fnon-call-exceptions
768 Common Report Var(flag_non_call_exceptions) Optimization
769 Support synchronous non-call exceptions
771 fomit-frame-pointer
772 Common Report Var(flag_omit_frame_pointer) Optimization
773 When possible do not generate stack frames
775 foptimize-register-move
776 Common Report Var(flag_regmove) Optimization
777 Do the full register move optimization pass
779 foptimize-sibling-calls
780 Common Report Var(flag_optimize_sibling_calls) Optimization
781 Optimize sibling and tail recursive calls
783 fpre-ipa-mem-report
784 Common Report Var(pre_ipa_mem_report)
785 Report on memory allocation before interprocedural optimization
787 fpost-ipa-mem-report
788 Common Report Var(post_ipa_mem_report)
789 Report on memory allocation before interprocedural optimization
791 fpack-struct
792 Common Report Var(flag_pack_struct) Optimization
793 Pack structure members together without holes
795 fpack-struct=
796 Common RejectNegative Joined UInteger Optimization
797 -fpack-struct=<number>  Set initial maximum structure member alignment
799 fpcc-struct-return
800 Common Report Var(flag_pcc_struct_return,1) VarExists
801 Return small aggregates in memory, not registers
803 fpeel-loops
804 Common Report Var(flag_peel_loops) Optimization
805 Perform loop peeling
807 fpeephole
808 Common Report Var(flag_no_peephole,0) Optimization
809 Enable machine specific peephole optimizations
811 fpeephole2
812 Common Report Var(flag_peephole2) Optimization
813 Enable an RTL peephole pass before sched2
815 fPIC
816 Common Report Var(flag_pic,2)
817 Generate position-independent code if possible (large mode)
819 fPIE
820 Common Report Var(flag_pie,2)
821 Generate position-independent code for executables if possible (large mode)
823 fpic
824 Common Report Var(flag_pic,1) VarExists
825 Generate position-independent code if possible (small mode)
827 fpie
828 Common Report Var(flag_pie,1) VarExists
829 Generate position-independent code for executables if possible (small mode)
831 fpredictive-commoning
832 Common Report Var(flag_predictive_commoning) Optimization
833 Run predictive commoning optimization.
835 fprefetch-loop-arrays
836 Common Report Var(flag_prefetch_loop_arrays) Optimization
837 Generate prefetch instructions, if available, for arrays in loops
839 fprofile
840 Common Report Var(profile_flag)
841 Enable basic program profiling code
843 fprofile-arcs
844 Common Report Var(profile_arc_flag)
845 Insert arc-based program profiling code
847 fprofile-dir=
848 Common Joined RejectNegative
849 Set the top-level directory for storing the profile data.
850 The default is 'pwd'.
852 fprofile-correction
853 Common Report Var(flag_profile_correction)
854 Enable correction of flow inconsistent profile data input
856 fprofile-generate
857 Common
858 Enable common options for generating profile info for profile feedback directed optimizations
860 fprofile-generate=
861 Common Joined RejectNegative
862 Enable common options for generating profile info for profile feedback directed optimizations, and set -fprofile-dir=
864 fprofile-use
865 Common Var(flag_profile_use)
866 Enable common options for performing profile feedback directed optimizations
868 fprofile-use=
869 Common Joined RejectNegative
870 Enable common options for performing profile feedback directed optimizations, and set -fprofile-dir=
872 fprofile-values
873 Common Report Var(flag_profile_values)
874 Insert code to profile values of expressions
876 frandom-seed
877 Common
879 frandom-seed=
880 Common Joined RejectNegative
881 -frandom-seed=<string>  Make compile reproducible using <string>
883 ; This switch causes the command line that was used to create an
884 ; object file to be recorded into the object file.  The exact format
885 ; of this recording is target and binary file format dependent.
886 ; It is related to the -fverbose-asm switch, but that switch only
887 ; records information in the assembler output file as comments, so
888 ; they never reach the object file.
889 frecord-gcc-switches
890 Common Report Var(flag_record_gcc_switches)
891 Record gcc command line switches in the object file.
893 freg-struct-return
894 Common Report Var(flag_pcc_struct_return,0) VarExists Optimization
895 Return small aggregates in registers
897 fregmove
898 Common Report Var(flag_regmove) Optimization
899 Enables a register move optimization
901 frename-registers
902 Common Report Var(flag_rename_registers) Init(2) Optimization
903 Perform a register renaming optimization pass
905 freorder-blocks
906 Common Report Var(flag_reorder_blocks) Optimization
907 Reorder basic blocks to improve code placement
909 freorder-blocks-and-partition
910 Common Report Var(flag_reorder_blocks_and_partition) Optimization
911 Reorder basic blocks and partition into hot and cold sections
913 freorder-functions
914 Common Report Var(flag_reorder_functions) Optimization
915 Reorder functions to improve code placement
917 frerun-cse-after-loop
918 Common Report Var(flag_rerun_cse_after_loop) Init(2) Optimization
919 Add a common subexpression elimination pass after loop optimizations
921 frerun-loop-opt
922 Common
923 Does nothing.  Preserved for backward compatibility.
925 frounding-math
926 Common Report Var(flag_rounding_math) Optimization
927 Disable optimizations that assume default FP rounding behavior
929 fsched-interblock
930 Common Report Var(flag_schedule_interblock) Init(1) Optimization
931 Enable scheduling across basic blocks
933 fsched-spec
934 Common Report Var(flag_schedule_speculative) Init(1) Optimization
935 Allow speculative motion of non-loads
937 fsched-spec-load
938 Common Report Var(flag_schedule_speculative_load) Optimization
939 Allow speculative motion of some loads
941 fsched-spec-load-dangerous
942 Common Report Var(flag_schedule_speculative_load_dangerous) Optimization
943 Allow speculative motion of more loads
945 fsched-verbose=
946 Common RejectNegative Joined
947 -fsched-verbose=<number>        Set the verbosity level of the scheduler
949 fsched2-use-superblocks
950 Common Report Var(flag_sched2_use_superblocks) Optimization
951 If scheduling post reload, do superblock scheduling
953 fsched2-use-traces
954 Common Report Var(flag_sched2_use_traces) Optimization
955 If scheduling post reload, do trace scheduling
957 fschedule-insns
958 Common Report Var(flag_schedule_insns) Optimization
959 Reschedule instructions before register allocation
961 fschedule-insns2
962 Common Report Var(flag_schedule_insns_after_reload) Optimization
963 Reschedule instructions after register allocation
965 ; sched_stalled_insns means that insns can be moved prematurely from the queue
966 ; of stalled insns into the ready list.
967 fsched-stalled-insns
968 Common Report Var(flag_sched_stalled_insns) Optimization UInteger
969 Allow premature scheduling of queued insns
971 fsched-stalled-insns=
972 Common RejectNegative Joined UInteger
973 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
975 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
976 ; be examined for a dependency on a stalled insn that is candidate for
977 ; premature removal from the queue of stalled insns into the ready list (has
978 ; an effect only if the flag 'sched_stalled_insns' is set).
979 fsched-stalled-insns-dep
980 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1) Optimization UInteger
981 Set dependence distance checking in premature scheduling of queued insns
983 fsched-stalled-insns-dep=
984 Common RejectNegative Joined UInteger
985 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
987 fsection-anchors
988 Common Report Var(flag_section_anchors) Optimization
989 Access data in the same section from shared anchor points
991 frtl-abstract-sequences
992 Common Report Var(flag_rtl_seqabstr) Optimization
993 Perform sequence abstraction optimization on RTL
995 fsee
996 Common Report Var(flag_see) Init(0)
997 Eliminate redundant sign extensions using LCM.
999 fshow-column
1000 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(0)
1001 Show column numbers in diagnostics, when available.  Default off
1003 fsignaling-nans
1004 Common Report Var(flag_signaling_nans) Optimization
1005 Disable optimizations observable by IEEE signaling NaNs
1007 fsigned-zeros
1008 Common Report Var(flag_signed_zeros) Init(1) Optimization
1009 Disable floating point optimizations that ignore the IEEE signedness of zero
1011 fsingle-precision-constant
1012 Common Report Var(flag_single_precision_constant) Optimization
1013 Convert floating point constants to single precision constants
1015 fsplit-ivs-in-unroller
1016 Common Report Var(flag_split_ivs_in_unroller) Init(1) Optimization
1017 Split lifetimes of induction variables when loops are unrolled
1019 fsplit-wide-types
1020 Common Report Var(flag_split_wide_types) Optimization
1021 Split wide types into independent registers
1023 fvariable-expansion-in-unroller
1024 Common Report Var(flag_variable_expansion_in_unroller) Optimization
1025 Apply variable expansion when loops are unrolled
1027 fstack-check=
1028 Common Report RejectNegative Joined
1029 -fstack-check=[no|generic|specific]     Insert stack checking code into the program
1031 fstack-check
1032 Common Report
1033 Insert stack checking code into the program.  Same as -fstack-check=specific
1035 fstack-limit
1036 Common
1038 fstack-limit-register=
1039 Common RejectNegative Joined
1040 -fstack-limit-register=<register>       Trap if the stack goes past <register>
1042 fstack-limit-symbol=
1043 Common RejectNegative Joined
1044 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
1046 fstack-protector
1047 Common Report Var(flag_stack_protect, 1)
1048 Use propolice as a stack protection method
1050 fstack-protector-all
1051 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
1052 Use a stack protection method for every function
1054 fstrength-reduce
1055 Common
1056 Does nothing.  Preserved for backward compatibility.
1058 ; Nonzero if we should do (language-dependent) alias analysis.
1059 ; Typically, this analysis will assume that expressions of certain
1060 ; types do not alias expressions of certain other types.  Only used
1061 ; if alias analysis (in general) is enabled.
1062 fstrict-aliasing
1063 Common Report Var(flag_strict_aliasing) Optimization
1064 Assume strict aliasing rules apply
1066 fstrict-overflow
1067 Common Report Var(flag_strict_overflow)
1068 Treat signed overflow as undefined
1070 fsyntax-only
1071 Common Report Var(flag_syntax_only)
1072 Check for syntax errors, then stop
1074 ftest-coverage
1075 Common Report Var(flag_test_coverage)
1076 Create data files needed by \"gcov\"
1078 fthread-jumps
1079 Common Report Var(flag_thread_jumps) Optimization
1080 Perform jump threading optimizations
1082 ftime-report
1083 Common Report Var(time_report)
1084 Report the time taken by each compiler pass
1086 ftls-model=
1087 Common Joined RejectNegative
1088 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
1090 ftoplevel-reorder
1091 Common Report Var(flag_toplevel_reorder) Init(2) Optimization
1092 Reorder top level functions, variables, and asms
1094 ftracer
1095 Common Report Var(flag_tracer)
1096 Perform superblock formation via tail duplication
1098 ; Zero means that floating-point math operations cannot generate a
1099 ; (user-visible) trap.  This is the case, for example, in nonstop
1100 ; IEEE 754 arithmetic.
1101 ftrapping-math
1102 Common Report Var(flag_trapping_math) Init(1) Optimization
1103 Assume floating-point operations can trap
1105 ftrapv
1106 Common Report Var(flag_trapv) Optimization
1107 Trap for signed overflow in addition, subtraction and multiplication
1109 ftree-ccp
1110 Common Report Var(flag_tree_ccp) Optimization
1111 Enable SSA-CCP optimization on trees
1113 ftree-store-ccp
1114 Common Report Var(flag_tree_store_ccp) Optimization
1115 Enable SSA-CCP optimization for stores and loads
1117 ftree-ch
1118 Common Report Var(flag_tree_ch) Optimization
1119 Enable loop header copying on trees
1121 ftree-copyrename
1122 Common Report Var(flag_tree_copyrename) Optimization
1123 Replace SSA temporaries with better names in copies
1125 ftree-copy-prop
1126 Common Report Var(flag_tree_copy_prop) Optimization
1127 Enable copy propagation on trees
1129 ftree-store-copy-prop
1130 Common
1131 Does nothing.  Preserved for backward compatibility.
1133 ftree-cselim
1134 Common Report Var(flag_tree_cselim) Init(2) Optimization
1135 Transform condition stores into unconditional ones
1137 ftree-switch-conversion
1138 Common Report Var(flag_tree_switch_conversion) Optimization
1139 Perform conversions of switch initializations.
1141 ftree-dce
1142 Common Report Var(flag_tree_dce) Optimization
1143 Enable SSA dead code elimination optimization on trees
1145 ftree-dominator-opts
1146 Common Report Var(flag_tree_dom) Optimization
1147 Enable dominator optimizations
1149 ftree-dse
1150 Common Report Var(flag_tree_dse) Optimization
1151 Enable dead store elimination
1153 ftree-fre
1154 Common Report Var(flag_tree_fre) Optimization
1155 Enable Full Redundancy Elimination (FRE) on trees
1157 ftree-loop-distribution
1158 Common Report Var(flag_tree_loop_distribution) Optimization
1159 Enable loop distribution on trees
1161 ftree-loop-im
1162 Common Report Var(flag_tree_loop_im) Init(1) Optimization
1163 Enable loop invariant motion on trees
1165 ftree-loop-linear
1166 Common Report Var(flag_tree_loop_linear) Optimization
1167 Enable linear loop transforms on trees
1169 ftree-loop-ivcanon
1170 Common Report Var(flag_tree_loop_ivcanon) Init(1) Optimization
1171 Create canonical induction variables in loops
1173 ftree-loop-optimize
1174 Common Report Var(flag_tree_loop_optimize) Init(1) Optimization
1175 Enable loop optimizations on tree level
1177 ftree-parallelize-loops=
1178 Common Report Joined UInteger Var(flag_tree_parallelize_loops) Init(1)
1179 Enable automatic parallelization of loops
1181 ftree-pre
1182 Common Report Var(flag_tree_pre) Optimization
1183 Enable SSA-PRE optimization on trees
1185 ftree-reassoc
1186 Common Report Var(flag_tree_reassoc) Init(1) Optimization
1187 Enable reassociation on tree level
1189 ftree-salias
1190 Common
1191 Does nothing.  Preserved for backward compatibility.
1193 ftree-sink
1194 Common Report Var(flag_tree_sink) Optimization
1195 Enable SSA code sinking on trees
1197 ftree-sra
1198 Common Report Var(flag_tree_sra) Optimization
1199 Perform scalar replacement of aggregates
1201 ftree-ter
1202 Common Report Var(flag_tree_ter) Init(1) Optimization
1203 Replace temporary expressions in the SSA->normal pass
1205 ftree-lrs
1206 Common Report Var(flag_tree_live_range_split) Optimization
1207 Perform live range splitting during the SSA->normal pass
1209 ftree-vrp
1210 Common Report Var(flag_tree_vrp) Init(0) Optimization
1211 Perform Value Range Propagation on trees
1213 funit-at-a-time
1214 Common Report Var(flag_unit_at_a_time) Init(1) Optimization
1215 Compile whole compilation unit at a time
1217 funroll-loops
1218 Common Report Var(flag_unroll_loops) Optimization
1219 Perform loop unrolling when iteration count is known
1221 funroll-all-loops
1222 Common Report Var(flag_unroll_all_loops) Optimization
1223 Perform loop unrolling for all loops
1225 ; Nonzero means that loop optimizer may assume that the induction variables
1226 ; that control loops do not overflow and that the loops with nontrivial
1227 ; exit condition are not infinite
1228 funsafe-loop-optimizations
1229 Common Report Var(flag_unsafe_loop_optimizations) Optimization
1230 Allow loop optimizations to assume that the loops behave in normal way
1232 fassociative-math
1233 Common Report Var(flag_associative_math)
1234 Allow optimization for floating-point arithmetic which may change the
1235 result of the operation due to rounding.
1237 freciprocal-math
1238 Common Report Var(flag_reciprocal_math)
1239 Same as -fassociative-math for expressions which include division.
1241 ; Nonzero means that unsafe floating-point math optimizations are allowed
1242 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1243 ; are allowed to assume that their arguments and results are "normal"
1244 ; (e.g., nonnegative for SQRT).
1245 funsafe-math-optimizations
1246 Common Report Var(flag_unsafe_math_optimizations) Optimization
1247 Allow math optimizations that may violate IEEE or ISO standards
1249 funswitch-loops
1250 Common Report Var(flag_unswitch_loops) Optimization
1251 Perform loop unswitching
1253 funwind-tables
1254 Common Report Var(flag_unwind_tables) Optimization
1255 Just generate unwind tables for exception handling
1257 fvar-tracking
1258 Common Report Var(flag_var_tracking) VarExists Optimization
1259 Perform variable tracking
1261 fvar-tracking-uninit
1262 Common Report Var(flag_var_tracking_uninit) Optimization
1263 Perform variable tracking and also tag variables that are uninitialized
1265 ftree-vectorize
1266 Common Report Var(flag_tree_vectorize) Optimization
1267 Enable loop vectorization on trees
1269 fvect-cost-model
1270 Common Report Var(flag_vect_cost_model) Optimization
1271 Enable use of cost model in vectorization
1273 ftree-vect-loop-version
1274 Common Report Var(flag_tree_vect_loop_version) Init(1) Optimization
1275 Enable loop versioning when doing loop vectorization on trees
1277 ftree-vectorizer-verbose=
1278 Common RejectNegative Joined
1279 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1281 ftree-scev-cprop
1282 Common Report Var(flag_tree_scev_cprop) Init(1) Optimization
1283 Enable copy propagation of scalar-evolution information.
1285 ; -fverbose-asm causes extra commentary information to be produced in
1286 ; the generated assembly code (to make it more readable).  This option
1287 ; is generally only of use to those who actually need to read the
1288 ; generated assembly code (perhaps while debugging the compiler itself).
1289 ; -fno-verbose-asm, the default, causes the extra information
1290 ; to not be added and is useful when comparing two assembler files.
1291 fverbose-asm
1292 Common Report Var(flag_verbose_asm)
1293 Add extra commentary to assembler output
1295 fvisibility=
1296 Common Joined RejectNegative
1297 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1300 fvpt
1301 Common Report Var(flag_value_profile_transformations) Optimization
1302 Use expression value profiles in optimizations
1304 fweb
1305 Common Report Var(flag_web) Init(2) Optimization
1306 Construct webs and split unrelated uses of single variable
1308 ftree-builtin-call-dce
1309 Common Report Var(flag_tree_builtin_call_dce) Init(0) Optimization
1310 Enable conditional dead code elimination for builtin calls
1312 fwhole-program
1313 Common Report Var(flag_whole_program) Init(0) Optimization
1314 Perform whole program optimizations
1316 fwrapv
1317 Common Report Var(flag_wrapv) Optimization
1318 Assume signed arithmetic overflow wraps around
1320 fzero-initialized-in-bss
1321 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1322 Put zero initialized data in the bss section
1325 Common JoinedOrMissing
1326 Generate debug information in default format
1328 gcoff
1329 Common JoinedOrMissing Negative(gdwarf-2)
1330 Generate debug information in COFF format
1332 gdwarf-2
1333 Common JoinedOrMissing Negative(gstabs)
1334 Generate debug information in DWARF v2 format
1336 ggdb
1337 Common JoinedOrMissing
1338 Generate debug information in default extended format
1340 gstabs
1341 Common JoinedOrMissing Negative(gstabs+)
1342 Generate debug information in STABS format
1344 gstabs+
1345 Common JoinedOrMissing Negative(gvms)
1346 Generate debug information in extended STABS format
1348 gvms
1349 Common JoinedOrMissing Negative(gxcoff)
1350 Generate debug information in VMS format
1352 gxcoff
1353 Common JoinedOrMissing Negative(gxcoff+)
1354 Generate debug information in XCOFF format
1356 gxcoff+
1357 Common JoinedOrMissing Negative(gcoff)
1358 Generate debug information in extended XCOFF format
1361 Common Joined Separate
1362 -o <file>       Place output into <file>
1365 Common Var(profile_flag)
1366 Enable function profiling
1368 pedantic
1369 Common Var(pedantic)
1370 Issue warnings needed for strict compliance to the standard
1372 pedantic-errors
1373 Common
1374 Like -pedantic but issue them as errors
1376 quiet
1377 Common Var(quiet_flag)
1378 Do not display functions compiled or elapsed time
1380 version
1381 Common Var(version_flag)
1382 Display the compiler's version
1385 Common Var(inhibit_warnings)
1386 Suppress warnings
1388 shared
1389 Common RejectNegative Negative(pie)
1390 Create a shared library
1393 Common RejectNegative Negative(shared)
1394 Create a position independent executable
1396 ; This comment is to ensure we retain the blank line above.