OSDN Git Service

2006-04-21 Andrew Haley <aph@redhat.com>
[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.
261 ; 3 if pointer arguments may not alias anything.  True in Fortran.
262 ;   Set by the front end.
263 fargument-alias
264 Common Report Var(flag_argument_noalias,0)
265 Specify that arguments may alias each other and globals
266
267 fargument-noalias
268 Common Report Var(flag_argument_noalias,1) VarExists
269 Assume arguments may alias globals but not each other
270
271 fargument-noalias-global
272 Common Report Var(flag_argument_noalias,2) VarExists
273 Assume arguments alias neither each other nor globals
274
275 fargument-noalias-anything
276 Common Report Var(flag_argument_noalias,3) VarExists
277 Assume arguments alias no other storage
278
279 fasynchronous-unwind-tables
280 Common Report Var(flag_asynchronous_unwind_tables)
281 Generate unwind tables that are exact at each instruction boundary
282
283 ; -fcheck-bounds causes gcc to generate array bounds checks.
284 ; For C, C++ and ObjC: defaults off.
285 ; For Java: defaults to on.
286 ; For Fortran: defaults to off.
287 fbounds-check
288 Common Report Var(flag_bounds_check)
289 Generate code to check bounds before indexing arrays
290
291 fbranch-count-reg
292 Common Report Var(flag_branch_on_count_reg) Init(1)
293 Replace add, compare, branch with branch on count register
294
295 fbranch-probabilities
296 Common Report Var(flag_branch_probabilities)
297 Use profiling information for branch probabilities
298
299 fbranch-target-load-optimize
300 Common Report Var(flag_branch_target_load_optimize)
301 Perform branch target load optimization before prologue / epilogue threading
302
303 fbranch-target-load-optimize2
304 Common Report Var(flag_branch_target_load_optimize2)
305 Perform branch target load optimization after prologue / epilogue threading
306
307 fbtr-bb-exclusive
308 Common Report Var(flag_btr_bb_exclusive)
309 Restrict target load migration not to re-use registers in any basic block
310
311 fcall-saved-
312 Common Joined RejectNegative
313 -fcall-saved-<register> Mark <register> as being preserved across functions
314
315 fcall-used-
316 Common Joined RejectNegative
317 -fcall-used-<register>  Mark <register> as being corrupted by function calls
318
319 ; Nonzero for -fcaller-saves: allocate values in regs that need to
320 ; be saved across function calls, if that produces overall better code.
321 ; Optional now, so people can test it.
322 fcaller-saves
323 Common Report Var(flag_caller_saves)
324 Save registers around function calls
325
326 fcommon
327 Common Report Var(flag_no_common,0)
328 Do not put uninitialized globals in the common section
329
330 fcprop-registers
331 Common Report Var(flag_cprop_registers)
332 Perform a register copy-propagation optimization pass
333
334 fcrossjumping
335 Common Report Var(flag_crossjumping)
336 Perform cross-jumping optimization
337
338 fcse-follow-jumps
339 Common Report Var(flag_cse_follow_jumps)
340 When running CSE, follow jumps to their targets
341
342 fcse-skip-blocks
343 Common Report Var(flag_cse_skip_blocks)
344 When running CSE, follow conditional jumps
345
346 fcx-limited-range
347 Common Report Var(flag_cx_limited_range)
348 Omit range reduction step when performing complex division
349
350 fdata-sections
351 Common Report Var(flag_data_sections)
352 Place data items into their own section
353
354 ; Nonzero for -fdefer-pop: don't pop args after each function call
355 ; instead save them up to pop many calls' args with one insns.
356 fdefer-pop
357 Common Report Var(flag_defer_pop)
358 Defer popping functions args from stack until later
359
360 fdelayed-branch
361 Common Report Var(flag_delayed_branch)
362 Attempt to fill delay slots of branch instructions
363
364 fdelete-null-pointer-checks
365 Common Report Var(flag_delete_null_pointer_checks)
366 Delete useless null pointer checks
367
368 fdiagnostics-show-location=
369 Common Joined RejectNegative
370 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics
371
372 fdiagnostics-show-option
373 Common
374 Amend appropriate diagnostic messages with the command line option that controls them
375
376 fdump-
377 Common Joined RejectNegative
378 -fdump-<type>   Dump various compiler internals to a file
379
380 fdump-unnumbered
381 Common Report Var(flag_dump_unnumbered) VarExists
382 Suppress output of instruction numbers and line number notes in debugging dumps
383
384 fearly-inlining
385 Common Report Var(flag_early_inlining) Init(1)
386 Perform early inlining
387
388 feliminate-dwarf2-dups
389 Common Report Var(flag_eliminate_dwarf2_dups)
390 Perform DWARF2 duplicate elimination
391
392 feliminate-unused-debug-symbols
393 Common Report Var(flag_debug_only_used_symbols)
394 Perform unused type elimination in debug info
395
396 feliminate-unused-debug-types
397 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
398 Perform unused type elimination in debug info
399
400 femit-class-debug-always
401 Common Report Var(flag_emit_class_debug_always) Init(1)
402 Do not suppress C++ class debug information.
403
404 fexceptions
405 Common Report Var(flag_exceptions)
406 Enable exception handling
407
408 fexpensive-optimizations
409 Common Report Var(flag_expensive_optimizations)
410 Perform a number of minor, expensive optimizations
411
412 ffast-math
413 Common
414
415 ffinite-math-only
416 Common Report Var(flag_finite_math_only)
417 Assume no NaNs or infinities are generated
418
419 ffixed-
420 Common Joined RejectNegative
421 -ffixed-<register>      Mark <register> as being unavailable to the compiler
422
423 ffloat-store
424 Common Report Var(flag_float_store)
425 Don't allocate floats and doubles in extended-precision registers
426
427 ; Nonzero for -fforce-addr: load memory address into a register before
428 ; reference to memory.  This makes better cse but slower compilation.
429 fforce-addr
430 Common Report Var(flag_force_addr)
431 Copy memory address constants into registers before use
432
433 ; Nonzero for -fforce-mem: load memory value into a register
434 ; before arithmetic on it.  This makes better cse but slower compilation.
435 fforce-mem
436 Common Report Var(flag_force_mem)
437 Copy memory operands into registers before use
438
439 ; Nonzero means don't put addresses of constant functions in registers.
440 ; Used for compiling the Unix kernel, where strange substitutions are
441 ; done on the assembly output.
442 ffunction-cse
443 Common Report Var(flag_no_function_cse,0)
444 Allow function addresses to be held in registers
445
446 ffunction-sections
447 Common Report Var(flag_function_sections)
448 Place each function into its own section
449
450 fgcse
451 Common Report Var(flag_gcse)
452 Perform global common subexpression elimination
453
454 fgcse-lm
455 Common Report Var(flag_gcse_lm) Init(1)
456 Perform enhanced load motion during global common subexpression elimination
457
458 fgcse-sm
459 Common Report Var(flag_gcse_sm) Init(0)
460 Perform store motion after global common subexpression elimination
461
462 fgcse-las
463 Common Report Var(flag_gcse_las) Init(0)
464 Perform redundant load after store elimination in global common subexpression
465 elimination
466
467 fgcse-after-reload
468 Common Report Var(flag_gcse_after_reload)
469 Perform global common subexpression elimination after register allocation
470 has finished
471
472 fguess-branch-probability
473 Common Report Var(flag_guess_branch_prob)
474 Enable guessing of branch probabilities
475
476 ; Nonzero means ignore `#ident' directives.  0 means handle them.
477 ; Generate position-independent code for executables if possible
478 ; On SVR4 targets, it also controls whether or not to emit a
479 ; string identifying the compiler.
480 fident
481 Common Report Var(flag_no_ident,0)
482 Process #ident directives
483
484 fif-conversion
485 Common Report Var(flag_if_conversion)
486 Perform conversion of conditional jumps to branchless equivalents
487
488 fif-conversion2
489 Common Report Var(flag_if_conversion2)
490 Perform conversion of conditional jumps to conditional execution
491
492 ; -finhibit-size-directive inhibits output of .size for ELF.
493 ; This is used only for compiling crtstuff.c,
494 ; and it may be extended to other effects
495 ; needed for crtstuff.c on other systems.
496 finhibit-size-directive
497 Common Report Var(flag_inhibit_size_directive)
498 Do not generate .size directives
499
500 ; Nonzero means that functions declared `inline' will be treated
501 ; as `static'.  Prevents generation of zillions of copies of unused
502 ; static inline functions; instead, `inlines' are written out
503 ; only when actually used.  Used in conjunction with -g.  Also
504 ; does the right thing with #pragma interface.
505 finline
506 Common Report Var(flag_no_inline,0) Init(2)
507 Pay attention to the \"inline\" keyword
508
509 finline-functions
510 Common Report Var(flag_inline_functions)
511 Integrate simple functions into their callers
512
513 finline-functions-called-once
514 Common Report Var(flag_inline_functions_called_once) Init(1)
515 Integrate functions called once into their callers
516
517 finline-limit-
518 Common RejectNegative Joined UInteger
519
520 finline-limit=
521 Common RejectNegative Joined UInteger
522 -finline-limit=<number> Limit the size of inlined functions to <number>
523
524 finstrument-functions
525 Common Report Var(flag_instrument_function_entry_exit)
526 Instrument function entry and exit with profiling calls
527
528 fipa-cp
529 Common Report Var(flag_ipa_cp)
530 Perform Interprocedural constant propagation
531
532 fipa-pure-const
533 Common Report Var(flag_ipa_pure_const) Init(0)
534 Discover pure and const functions
535
536 fipa-pta
537 Common Report Var(flag_ipa_pta) Init(0)
538 Perform interprocedural points-to analysis
539
540 fipa-reference
541 Common Report Var(flag_ipa_reference) Init(0)
542 Discover readonly and non addressable static variables
543
544 fipa-type-escape
545 Common Report Var(flag_ipa_type_escape) Init(0)
546 Type based escape and alias analysis
547
548 fivopts
549 Common Report Var(flag_ivopts) Init(1)
550 Optimize induction variables on trees
551
552 fjump-tables
553 Common Var(flag_jump_tables) Init(1)
554 Use jump tables for sufficiently large switch statements
555
556 fkeep-inline-functions
557 Common Report Var(flag_keep_inline_functions)
558 Generate code for functions even if they are fully inlined
559
560 fkeep-static-consts
561 Common Report Var(flag_keep_static_consts) Init(1)
562 Emit static const variables even if they are not used
563
564 fleading-underscore
565 Common Report Var(flag_leading_underscore) Init(-1)
566 Give external symbols a leading underscore
567
568 floop-optimize
569 Common
570 Does nothing.  Preserved for backward compatibility.
571
572 fmath-errno
573 Common Report Var(flag_errno_math) Init(1)
574 Set errno after built-in math functions
575
576 fmem-report
577 Common Report Var(mem_report)
578 Report on permanent memory allocation
579
580 ; This will attempt to merge constant section constants, if 1 only
581 ; string constants and constants from constant pool, if 2 also constant
582 ; variables.
583 fmerge-all-constants
584 Common Report Var(flag_merge_constants,2) Init(1)
585 Attempt to merge identical constants and constant variables
586
587 fmerge-constants
588 Common Report Var(flag_merge_constants,1) VarExists
589 Attempt to merge identical constants across compilation units
590
591 fmessage-length=
592 Common RejectNegative Joined UInteger
593 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping
594
595 fmodulo-sched
596 Common Report Var(flag_modulo_sched)
597 Perform SMS based modulo scheduling before the first scheduling pass
598
599 fmove-loop-invariants
600 Common Report Var(flag_move_loop_invariants) Init(1)
601 Move loop invariant computations out of loops
602
603 fmudflap
604 Common RejectNegative Report Var(flag_mudflap)
605 Add mudflap bounds-checking instrumentation for single-threaded program
606
607 fmudflapth
608 Common RejectNegative Report VarExists Var(flag_mudflap,2)
609 Add mudflap bounds-checking instrumentation for multi-threaded program
610
611 fmudflapir
612 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
613 Ignore read operations when inserting mudflap instrumentation
614
615 freschedule-modulo-scheduled-loops
616 Common Report Var(flag_resched_modulo_sched)
617 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
618
619 fnon-call-exceptions
620 Common Report Var(flag_non_call_exceptions)
621 Support synchronous non-call exceptions
622
623 fomit-frame-pointer
624 Common Report Var(flag_omit_frame_pointer)
625 When possible do not generate stack frames
626
627 foptimize-register-move
628 Common Report Var(flag_regmove)
629 Do the full register move optimization pass
630
631 foptimize-sibling-calls
632 Common Report Var(flag_optimize_sibling_calls)
633 Optimize sibling and tail recursive calls
634
635 fpack-struct
636 Common Report Var(flag_pack_struct)
637 Pack structure members together without holes
638
639 fpack-struct=
640 Common RejectNegative Joined UInteger
641 -fpack-struct=<number>  Set initial maximum structure member alignment
642
643 fpcc-struct-return
644 Common Report Var(flag_pcc_struct_return,1) VarExists
645 Return small aggregates in memory, not registers
646
647 fpeel-loops
648 Common Report Var(flag_peel_loops)
649 Perform loop peeling
650
651 fpeephole
652 Common Report Var(flag_no_peephole,0)
653 Enable machine specific peephole optimizations
654
655 fpeephole2
656 Common Report Var(flag_peephole2)
657 Enable an RTL peephole pass before sched2
658
659 fPIC
660 Common Report Var(flag_pic,2)
661 Generate position-independent code if possible (large mode)
662
663 fPIE
664 Common Report Var(flag_pie,2)
665 Generate position-independent code for executables if possible (large mode)
666
667 fpic
668 Common Report Var(flag_pic,1) VarExists
669 Generate position-independent code if possible (small mode)
670
671 fpie
672 Common Report Var(flag_pie,1) VarExists
673 Generate position-independent code for executables if possible (small mode)
674
675 fprefetch-loop-arrays
676 Common Report Var(flag_prefetch_loop_arrays)
677 Generate prefetch instructions, if available, for arrays in loops
678
679 fprofile
680 Common Report Var(profile_flag)
681 Enable basic program profiling code
682
683 fprofile-arcs
684 Common Report Var(profile_arc_flag)
685 Insert arc-based program profiling code
686
687 fprofile-generate
688 Common
689 Enable common options for generating profile info for profile feedback directed optimizations
690
691 fprofile-use
692 Common
693 Enable common options for performing profile feedback directed optimizations
694
695 fprofile-values
696 Common Report Var(flag_profile_values)
697 Insert code to profile values of expressions
698
699 frandom-seed
700 Common
701
702 frandom-seed=
703 Common Joined RejectNegative
704 -frandom-seed=<string>  Make compile reproducible using <string>
705
706 freg-struct-return
707 Common Report Var(flag_pcc_struct_return,0) VarExists
708 Return small aggregates in registers
709
710 fregmove
711 Common Report Var(flag_regmove)
712 Enables a register move optimization
713
714 frename-registers
715 Common Report Var(flag_rename_registers) Init(2)
716 Perform a register renaming optimization pass
717
718 freorder-blocks
719 Common Report Var(flag_reorder_blocks)
720 Reorder basic blocks to improve code placement
721
722 freorder-blocks-and-partition
723 Common Report Var(flag_reorder_blocks_and_partition)
724 Reorder basic blocks and partition into hot and cold sections
725
726 freorder-functions
727 Common Report Var(flag_reorder_functions)
728 Reorder functions to improve code placement
729
730 frerun-cse-after-loop
731 Common Report Var(flag_rerun_cse_after_loop) Init(2)
732 Add a common subexpression elimination pass after loop optimizations
733
734 frerun-loop-opt
735 Common
736 Does nothing.  Preserved for backward compatibility.
737
738 frounding-math
739 Common Report Var(flag_rounding_math)
740 Disable optimizations that assume default FP rounding behavior
741
742 fsched-interblock
743 Common Report Var(flag_schedule_interblock) Init(1)
744 Enable scheduling across basic blocks
745
746 fsched-spec
747 Common Report Var(flag_schedule_speculative) Init(1)
748 Allow speculative motion of non-loads
749
750 fsched-spec-load
751 Common Report Var(flag_schedule_speculative_load)
752 Allow speculative motion of some loads
753
754 fsched-spec-load-dangerous
755 Common Report Var(flag_schedule_speculative_load_dangerous)
756 Allow speculative motion of more loads
757
758 fsched-verbose=
759 Common RejectNegative Joined
760 -fsched-verbose=<number>        Set the verbosity level of the scheduler
761
762 fsched2-use-superblocks
763 Common Report Var(flag_sched2_use_superblocks)
764 If scheduling post reload, do superblock scheduling
765
766 fsched2-use-traces
767 Common Report Var(flag_sched2_use_traces)
768 If scheduling post reload, do trace scheduling
769
770 fschedule-insns
771 Common Report Var(flag_schedule_insns)
772 Reschedule instructions before register allocation
773
774 fschedule-insns2
775 Common Report Var(flag_schedule_insns_after_reload)
776 Reschedule instructions after register allocation
777
778 ; sched_stalled_insns means that insns can be moved prematurely from the queue
779 ; of stalled insns into the ready list.
780 fsched-stalled-insns
781 Common Report Var(flag_sched_stalled_insns)
782 Allow premature scheduling of queued insns
783
784 fsched-stalled-insns=
785 Common RejectNegative Joined UInteger 
786 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
787
788 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
789 ; be examined for a dependency on a stalled insn that is candidate for
790 ; premature removal from the queue of stalled insns into the ready list (has
791 ; an effect only if the flag 'sched_stalled_insns' is set).
792 fsched-stalled-insns-dep
793 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1)
794 Set dependence distance checking in premature scheduling of queued insns
795
796 fsched-stalled-insns-dep=
797 Common RejectNegative Joined UInteger
798 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
799
800 fsection-anchors
801 Common Report Var(flag_section_anchors)
802 Access data in the same section from shared anchor points
803
804 frtl-abstract-sequences
805 Common Report Var(flag_rtl_seqabstr)
806 Perform sequence abstraction optimization on RTL
807
808 fshow-column
809 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
810 Show column numbers in diagnostics, when available.  Default on
811
812 fsignaling-nans
813 Common Report Var(flag_signaling_nans)
814 Disable optimizations observable by IEEE signaling NaNs
815
816 fsingle-precision-constant
817 Common Report Var(flag_single_precision_constant)
818 Convert floating point constants to single precision constants
819
820 fsplit-ivs-in-unroller
821 Common Report Var(flag_split_ivs_in_unroller) Init(1)
822 Split lifetimes of induction variables when loops are unrolled
823
824 fvariable-expansion-in-unroller
825 Common Report Var(flag_variable_expansion_in_unroller) 
826 Apply variable expansion when loops are unrolled
827
828 ; Emit code to probe the stack, to help detect stack overflow; also
829 ; may cause large objects to be allocated dynamically.
830 fstack-check
831 Common Report Var(flag_stack_check)
832 Insert stack checking code into the program
833
834 fstack-limit
835 Common
836
837 fstack-limit-register=
838 Common RejectNegative Joined
839 -fstack-limit-register=<register>       Trap if the stack goes past <register>
840
841 fstack-limit-symbol=
842 Common RejectNegative Joined
843 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
844
845 fstack-protector
846 Common Report Var(flag_stack_protect, 1)
847 Use propolice as a stack protection method
848
849 fstack-protector-all
850 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
851 Use a stack protection method for every function
852
853 fstrength-reduce
854 Common
855 Does nothing.  Preserved for backward compatibility.
856
857 ; Nonzero if we should do (language-dependent) alias analysis.
858 ; Typically, this analysis will assume that expressions of certain
859 ; types do not alias expressions of certain other types.  Only used
860 ; if alias analysis (in general) is enabled.
861 fstrict-aliasing
862 Common Report Var(flag_strict_aliasing)
863 Assume strict aliasing rules apply
864
865 fsyntax-only
866 Common Report Var(flag_syntax_only)
867 Check for syntax errors, then stop
868
869 ftest-coverage
870 Common Report Var(flag_test_coverage)
871 Create data files needed by \"gcov\"
872
873 fthread-jumps
874 Common Report Var(flag_thread_jumps)
875 Perform jump threading optimizations
876
877 ftime-report
878 Common Report Var(time_report)
879 Report the time taken by each compiler pass
880
881 ftls-model=
882 Common Joined RejectNegative
883 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
884
885 ftoplevel-reorder
886 Common Report Var(flag_toplevel_reorder) Init(1)
887 Reorder top level functions, variables, and asms
888
889 ftracer
890 Common Report Var(flag_tracer)
891 Perform superblock formation via tail duplication
892
893 ; Zero means that floating-point math operations cannot generate a
894 ; (user-visible) trap.  This is the case, for example, in nonstop
895 ; IEEE 754 arithmetic.
896 ftrapping-math
897 Common Report Var(flag_trapping_math) Init(1)
898 Assume floating-point operations can trap
899
900 ftrapv
901 Common Report Var(flag_trapv)
902 Trap for signed overflow in addition, subtraction and multiplication
903
904 ftree-ccp
905 Common Report Var(flag_tree_ccp)
906 Enable SSA-CCP optimization on trees
907
908 ftree-store-ccp
909 Common Report Var(flag_tree_store_ccp)
910 Enable SSA-CCP optimization for stores and loads
911
912 ftree-ch
913 Common Report Var(flag_tree_ch)
914 Enable loop header copying on trees
915
916 ftree-combine-temps
917 Common Report Var(flag_tree_combine_temps)
918 Coalesce memory temporaries in the SSA->normal pass
919
920 ftree-copyrename
921 Common Report Var(flag_tree_copyrename)
922 Replace SSA temporaries with better names in copies
923
924 ftree-copy-prop
925 Common Report Var(flag_tree_copy_prop)
926 Enable copy propagation on trees
927
928 ftree-store-copy-prop
929 Common Report Var(flag_tree_store_copy_prop)
930 Enable copy propagation for stores and loads
931
932 ftree-dce
933 Common Report Var(flag_tree_dce)
934 Enable SSA dead code elimination optimization on trees
935
936 ftree-dominator-opts
937 Common Report Var(flag_tree_dom)
938 Enable dominator optimizations
939
940 ftree-dse
941 Common Report Var(flag_tree_dse)
942 Enable dead store elimination
943
944 ftree-fre
945 Common Report Var(flag_tree_fre)
946 Enable Full Redundancy Elimination (FRE) on trees
947
948 ftree-loop-im
949 Common Report Var(flag_tree_loop_im) Init(1)
950 Enable loop invariant motion on trees
951
952 ftree-loop-linear
953 Common Report Var(flag_tree_loop_linear)
954 Enable linear loop transforms on trees
955
956 ftree-loop-ivcanon
957 Common Report Var(flag_tree_loop_ivcanon) Init(1)
958 Create canonical induction variables in loops
959
960 ftree-loop-optimize
961 Common Report Var(flag_tree_loop_optimize) Init(1)
962 Enable loop optimizations on tree level
963
964 ftree-pre
965 Common Report Var(flag_tree_pre)
966 Enable SSA-PRE optimization on trees
967
968 ftree-salias
969 Common Report Var(flag_tree_salias)
970 Perform structural alias analysis
971
972 ftree-sink
973 Common Report Var(flag_tree_sink)
974 Enable SSA code sinking on trees
975
976 ftree-sra
977 Common Report Var(flag_tree_sra)
978 Perform scalar replacement of aggregates
979
980 ftree-ter
981 Common Report Var(flag_tree_ter)
982 Replace temporary expressions in the SSA->normal pass
983
984 ftree-lrs
985 Common Report Var(flag_tree_live_range_split)
986 Perform live range splitting during the SSA->normal pass
987
988 ftree-vrp
989 Common Report Var(flag_tree_vrp) Init(0)
990 Perform Value Range Propagation on trees
991
992 funit-at-a-time
993 Common Report Var(flag_unit_at_a_time)
994 Compile whole compilation unit at a time
995
996 funroll-loops
997 Common Report Var(flag_unroll_loops)
998 Perform loop unrolling when iteration count is known
999
1000 funroll-all-loops
1001 Common Report Var(flag_unroll_all_loops)
1002 Perform loop unrolling for all loops
1003
1004 ; Nonzero means that loop optimizer may assume that the induction variables
1005 ; that control loops do not overflow and that the loops with nontrivial
1006 ; exit condition are not infinite
1007 funsafe-loop-optimizations
1008 Common Report Var(flag_unsafe_loop_optimizations)
1009 Allow loop optimizations to assume that the loops behave in normal way
1010
1011 ; Nonzero means that unsafe floating-point math optimizations are allowed
1012 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1013 ; are allowed to assume that their arguments and results are "normal"
1014 ; (e.g., nonnegative for SQRT).
1015 funsafe-math-optimizations
1016 Common Report Var(flag_unsafe_math_optimizations)
1017 Allow math optimizations that may violate IEEE or ISO standards
1018
1019 funswitch-loops
1020 Common Report Var(flag_unswitch_loops)
1021 Perform loop unswitching
1022
1023 funwind-tables
1024 Common Report Var(flag_unwind_tables)
1025 Just generate unwind tables for exception handling
1026
1027 fvar-tracking
1028 Common Report Var(flag_var_tracking) VarExists
1029 Perform variable tracking
1030
1031 ftree-vectorize
1032 Common Report Var(flag_tree_vectorize)
1033 Enable loop vectorization on trees
1034
1035 ftree-vect-loop-version
1036 Common Report Var(flag_tree_vect_loop_version) Init(1)
1037 Enable loop versioning when doing loop vectorization on trees
1038
1039 ftree-vectorizer-verbose=
1040 Common RejectNegative Joined
1041 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1042
1043 ; -fverbose-asm causes extra commentary information to be produced in
1044 ; the generated assembly code (to make it more readable).  This option
1045 ; is generally only of use to those who actually need to read the
1046 ; generated assembly code (perhaps while debugging the compiler itself).
1047 ; -fno-verbose-asm, the default, causes the extra information
1048 ; to not be added and is useful when comparing two assembler files.
1049 fverbose-asm
1050 Common Report Var(flag_verbose_asm)
1051 Add extra commentary to assembler output
1052
1053 fvisibility=
1054 Common Joined RejectNegative
1055 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1056
1057
1058 fvpt
1059 Common Report Var(flag_value_profile_transformations)
1060 Use expression value profiles in optimizations
1061
1062 fweb
1063 Common Report Var(flag_web) Init(2)
1064 Construct webs and split unrelated uses of single variable
1065
1066 fwhole-program
1067 Common Report Var(flag_whole_program) Init(0)
1068 Perform whole program optimizations
1069
1070 fwrapv
1071 Common Report Var(flag_wrapv)
1072 Assume signed arithmetic overflow wraps around
1073
1074 fzero-initialized-in-bss
1075 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1076 Put zero initialized data in the bss section
1077
1078 g
1079 Common JoinedOrMissing
1080 Generate debug information in default format
1081
1082 gcoff
1083 Common JoinedOrMissing
1084 Generate debug information in COFF format
1085
1086 gdwarf-2
1087 Common JoinedOrMissing
1088 Generate debug information in DWARF v2 format
1089
1090 ggdb
1091 Common JoinedOrMissing
1092 Generate debug information in default extended format
1093
1094 gstabs
1095 Common JoinedOrMissing
1096 Generate debug information in STABS format
1097
1098 gstabs+
1099 Common JoinedOrMissing
1100 Generate debug information in extended STABS format
1101
1102 gvms
1103 Common JoinedOrMissing
1104 Generate debug information in VMS format
1105
1106 gxcoff
1107 Common JoinedOrMissing
1108 Generate debug information in XCOFF format
1109
1110 gxcoff+
1111 Common JoinedOrMissing
1112 Generate debug information in extended XCOFF format
1113
1114 o
1115 Common Joined Separate
1116 -o <file>       Place output into <file>
1117
1118 p
1119 Common Var(profile_flag)
1120 Enable function profiling
1121
1122 pedantic
1123 Common Var(pedantic)
1124 Issue warnings needed for strict compliance to the standard
1125
1126 pedantic-errors
1127 Common
1128 Like -pedantic but issue them as errors
1129
1130 quiet
1131 Common Var(quiet_flag)
1132 Do not display functions compiled or elapsed time
1133
1134 version
1135 Common Var(version_flag)
1136 Display the compiler's version
1137
1138 w
1139 Common Var(inhibit_warnings)
1140 Suppress warnings
1141
1142 ; This comment is to ensure we retain the blank line above.