OSDN Git Service

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