OSDN Git Service

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