OSDN Git Service

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