OSDN Git Service

49eb453f2a7e83ec9a96d2e07a7f2a9497b80d42
[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, 2007, 2008, 2009, 2010
4 ; Free Software Foundation, Inc.
5 ;
6 ; This file is part of GCC.
7 ;
8 ; GCC is free software; you can redistribute it and/or modify it under
9 ; the terms of the GNU General Public License as published by the Free
10 ; Software Foundation; either version 3, or (at your option) any later
11 ; version.
12 ;
13 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 ; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 ; for more details.
17 ;
18 ; You should have received a copy of the GNU General Public License
19 ; along with GCC; see the file COPYING3.  If not see
20 ; <http://www.gnu.org/licenses/>.
21
22 ; See the GCC internals manual (options.texi) 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 -help=
31 Common Report Joined
32 --help=<class>  Display descriptions of a specific class of options.  <class> is one or more of optimizers, target, warnings, undocumented, params
33
34 -target-help
35 Common
36 Alias for --help=target
37
38 ;; The following four entries are to work around the gcc driver
39 ;; program's insatiable desire to turn options starting with a
40 ;; double dash (--) into options starting with a dash f (-f).
41 fhelp
42 Common Var(help_flag)
43
44 fhelp=
45 Common Joined
46
47 ftarget-help
48 Common
49
50 fversion
51 Common
52
53 -param
54 Common Separate
55 --param <param>=<value> Set parameter <param> to value.  See below for a complete list of parameters
56
57 -version
58 Common
59
60 G
61 Common Joined Separate UInteger
62 -G<number>      Put global and static data smaller than <number> bytes into a special section (on some targets)
63
64 O
65 Common JoinedOrMissing Optimization
66 -O<number>      Set optimization level to <number>
67
68 Os
69 Common Optimization
70 Optimize for space rather than speed
71
72 W
73 Common RejectNegative Var(extra_warnings) Warning
74 This switch is deprecated; use -Wextra instead
75
76 Waggregate-return
77 Common Var(warn_aggregate_return) Warning
78 Warn about returning structures, unions or arrays
79
80 Warray-bounds
81 Common Var(warn_array_bounds) Warning
82 Warn if an array is accessed out of bounds
83
84 Wattributes
85 Common Var(warn_attributes) Init(1) Warning
86 Warn about inappropriate attribute usage
87
88 Wcast-align
89 Common Var(warn_cast_align) Warning
90 Warn about pointer casts which increase alignment
91
92 Wcpp
93 Common Var(warn_cpp) Init(1) Warning
94 Warn when a #warning directive is encountered
95
96 Wdeprecated-declarations
97 Common Var(warn_deprecated_decl) Init(1) Warning
98 Warn about uses of __attribute__((deprecated)) declarations
99
100 Wdisabled-optimization
101 Common Var(warn_disabled_optimization) Warning
102 Warn when an optimization pass is disabled
103
104 Werror
105 Common Var(warnings_are_errors)
106 Treat all warnings as errors
107
108 Werror=
109 Common Joined
110 Treat specified warning as error
111
112 Wextra
113 Common Var(extra_warnings) Warning
114 Print extra (possibly unwanted) warnings
115
116 Wfatal-errors
117 Common Var(flag_fatal_errors)
118 Exit on the first error occurred
119
120 Wframe-larger-than=
121 Common RejectNegative Joined UInteger
122 -Wframe-larger-than=<number>    Warn if a function's stack frame requires more than <number> bytes
123
124 Winline
125 Common Var(warn_inline) Warning
126 Warn when an inlined function cannot be inlined
127
128 Wlarger-than-
129 Common RejectNegative Joined UInteger Warning Undocumented
130
131 Wlarger-than=
132 Common RejectNegative Joined UInteger Warning
133 -Wlarger-than=<number>  Warn if an object is larger than <number> bytes
134
135 Wunsafe-loop-optimizations
136 Common Var(warn_unsafe_loop_optimizations) Warning
137 Warn if the loop cannot be optimized due to nontrivial assumptions.
138
139 Wmissing-noreturn
140 Common Var(warn_missing_noreturn) Warning
141 Warn about functions which might be candidates for __attribute__((noreturn))
142
143 Wmudflap
144 Common Var(warn_mudflap) Init(1) Warning
145 Warn about constructs not instrumented by -fmudflap
146
147 Woverflow
148 Common Var(warn_overflow) Init(1) Warning
149 Warn about overflow in arithmetic expressions
150
151 Wpacked
152 Common Var(warn_packed) Warning
153 Warn when the packed attribute has no effect on struct layout
154
155 Wpadded
156 Common Var(warn_padded) Warning
157 Warn when padding is required to align structure members
158
159 Wshadow
160 Common Var(warn_shadow) Warning
161 Warn when one local variable shadows another
162
163 Wstack-protector
164 Common Var(warn_stack_protect) Warning
165 Warn when not issuing stack smashing protection for some reason
166
167 Wstrict-aliasing
168 Common Warning
169 Warn about code which might break strict aliasing rules
170
171 Wstrict-aliasing=
172 Common Joined UInteger Var(warn_strict_aliasing) Init(-1) Warning
173 Warn about code which might break strict aliasing rules
174
175 Wstrict-overflow
176 Common Warning
177 Warn about optimizations that assume that signed overflow is undefined
178
179 Wstrict-overflow=
180 Common Joined UInteger Var(warn_strict_overflow) Init(-1) Warning
181 Warn about optimizations that assume that signed overflow is undefined
182
183 Wswitch
184 Common Var(warn_switch) Warning
185 Warn about enumerated switches, with no default, missing a case
186
187 Wswitch-default
188 Common Var(warn_switch_default) Warning
189 Warn about enumerated switches missing a \"default:\" statement
190
191 Wswitch-enum
192 Common Var(warn_switch_enum) Warning
193 Warn about all enumerated switches missing a specific case
194
195 Wsystem-headers
196 Common Var(warn_system_headers) Warning
197 Do not suppress warnings from system headers
198
199 Wtype-limits
200 Common Var(warn_type_limits) Init(-1) Warning
201 Warn if a comparison is always true or always false due to the limited range of the data type
202
203 Wuninitialized
204 Common Var(warn_uninitialized) Init(-1) Warning
205 Warn about uninitialized automatic variables
206
207 Wunreachable-code
208 Common
209 Does nothing. Preserved for backward compatibility.
210
211 Wunused
212 Common Var(warn_unused) Init(0) Warning
213 Enable all -Wunused- warnings
214
215 Wunused-function
216 Common Var(warn_unused_function) Init(-1) Warning
217 Warn when a function is unused
218
219 Wunused-label
220 Common Var(warn_unused_label) Init(-1) Warning
221 Warn when a label is unused
222
223 Wunused-parameter
224 Common Var(warn_unused_parameter) Init(-1) Warning
225 Warn when a function parameter is unused
226
227 Wunused-value
228 Common Var(warn_unused_value) Init(-1) Warning
229 Warn when an expression value is unused
230
231 Wunused-variable
232 Common Var(warn_unused_variable) Init(-1) Warning
233 Warn when a variable is unused
234
235 Wcoverage-mismatch
236 Common RejectNegative Var(warn_coverage_mismatch) Warning
237 Warn instead of error in case profiles in -fprofile-use do not match
238
239 aux-info
240 Common Separate
241 -aux-info <file>        Emit declaration information into <file>
242
243 aux-info=
244 Common Joined
245
246 auxbase
247 Common Separate
248
249 auxbase-strip
250 Common Separate
251
252 d
253 Common Joined
254 -d<letters>     Enable dumps from specific passes of the compiler
255
256 dumpbase
257 Common Separate
258 -dumpbase <file>        Set the file basename to be used for dumps
259
260 dumpdir
261 Common Separate
262 -dumpdir <dir>  Set the directory name to be used for dumps
263
264 ; The version of the C++ ABI in use.  The following values are allowed:
265 ;
266 ; 0: The version of the ABI believed most conformant with the C++ ABI
267 ;    specification.  This ABI may change as bugs are discovered and fixed.
268 ;    Therefore, 0 will not necessarily indicate the same ABI in different
269 ;    versions of G++.
270 ;
271 ; 1: The version of the ABI first used in G++ 3.2.
272 ;
273 ; 2: The version of the ABI first used in G++ 3.4 (and current default).
274 ;
275 ; 3: The version of the ABI that fixes the missing underscore
276 ;    in template non-type arguments of pointer type.
277 ;
278 ; 4: The version of the ABI that introduces unambiguous mangling of
279 ;    vector types.
280 ;
281 ; Additional positive integers will be assigned as new versions of
282 ; the ABI become the default version of the ABI.
283 fabi-version=
284 Common Joined UInteger Var(flag_abi_version) Init(2)
285
286 falign-functions
287 Common Report Var(align_functions,0) Optimization UInteger
288 Align the start of functions
289
290 falign-functions=
291 Common RejectNegative Joined UInteger
292
293 falign-jumps
294 Common Report Var(align_jumps,0) Optimization UInteger
295 Align labels which are only reached by jumping
296
297 falign-jumps=
298 Common RejectNegative Joined UInteger
299
300 falign-labels
301 Common Report Var(align_labels,0) Optimization UInteger
302 Align all labels
303
304 falign-labels=
305 Common RejectNegative Joined UInteger
306
307 falign-loops
308 Common Report Var(align_loops) Optimization UInteger
309 Align the start of loops
310
311 falign-loops=
312 Common RejectNegative Joined UInteger
313
314 fargument-alias
315 Common
316 Does nothing. Preserved for backward compatibility.
317
318 fargument-noalias
319 Common
320 Does nothing. Preserved for backward compatibility.
321
322 fargument-noalias-global
323 Common
324 Does nothing. Preserved for backward compatibility.
325
326 fargument-noalias-anything
327 Common
328 Does nothing. Preserved for backward compatibility.
329
330 fasynchronous-unwind-tables
331 Common Report Var(flag_asynchronous_unwind_tables) Optimization
332 Generate unwind tables that are exact at each instruction boundary
333
334 fauto-inc-dec
335 Common Report Var(flag_auto_inc_dec) Init(1)
336 Generate auto-inc/dec instructions
337
338 ; -fcheck-bounds causes gcc to generate array bounds checks.
339 ; For C, C++ and ObjC: defaults off.
340 ; For Java: defaults to on.
341 ; For Fortran: defaults to off.
342 fbounds-check
343 Common Report Var(flag_bounds_check)
344 Generate code to check bounds before indexing arrays
345
346 fbranch-count-reg
347 Common Report Var(flag_branch_on_count_reg) Init(1) Optimization
348 Replace add, compare, branch with branch on count register
349
350 fbranch-probabilities
351 Common Report Var(flag_branch_probabilities) Optimization
352 Use profiling information for branch probabilities
353
354 fbranch-target-load-optimize
355 Common Report Var(flag_branch_target_load_optimize) Optimization
356 Perform branch target load optimization before prologue / epilogue threading
357
358 fbranch-target-load-optimize2
359 Common Report Var(flag_branch_target_load_optimize2) Optimization
360 Perform branch target load optimization after prologue / epilogue threading
361
362 fbtr-bb-exclusive
363 Common Report Var(flag_btr_bb_exclusive) Optimization
364 Restrict target load migration not to re-use registers in any basic block
365
366 fcall-saved-
367 Common Joined RejectNegative
368 -fcall-saved-<register> Mark <register> as being preserved across functions
369
370 fcall-used-
371 Common Joined RejectNegative
372 -fcall-used-<register>  Mark <register> as being corrupted by function calls
373
374 ; Nonzero for -fcaller-saves: allocate values in regs that need to
375 ; be saved across function calls, if that produces overall better code.
376 ; Optional now, so people can test it.
377 fcaller-saves
378 Common Report Var(flag_caller_saves) Optimization
379 Save registers around function calls
380
381 fcheck-data-deps
382 Common Report Var(flag_check_data_deps)
383 Compare the results of several data dependence analyzers.
384
385 fcommon
386 Common Report Var(flag_no_common,0) Optimization
387 Do not put uninitialized globals in the common section
388
389 fcompare-debug=
390 Common JoinedOrMissing RejectNegative Var(flag_compare_debug_opt)
391 -fcompare-debug[=<opts>]        Compile with and without e.g. -gtoggle, and compare the final-insns dump
392
393 fcompare-debug-second
394 Common RejectNegative Var(flag_compare_debug)
395 Run only the second compilation of -fcompare-debug
396
397 fconserve-stack
398 Common Var(flag_conserve_stack) Optimization
399 Do not perform optimizations increasing noticeably stack usage
400
401 fcprop-registers
402 Common Report Var(flag_cprop_registers) Optimization
403 Perform a register copy-propagation optimization pass
404
405 fcrossjumping
406 Common Report Var(flag_crossjumping) Optimization
407 Perform cross-jumping optimization
408
409 fcse-follow-jumps
410 Common Report Var(flag_cse_follow_jumps) Optimization
411 When running CSE, follow jumps to their targets
412
413 fcse-skip-blocks
414 Common
415 Does nothing.  Preserved for backward compatibility.
416
417 fcx-limited-range
418 Common Report Var(flag_cx_limited_range) Optimization
419 Omit range reduction step when performing complex division
420
421 fcx-fortran-rules
422 Common Report Var(flag_cx_fortran_rules) Optimization
423 Complex multiplication and division follow Fortran rules
424
425 fdata-sections
426 Common Report Var(flag_data_sections) Optimization
427 Place data items into their own section
428
429 fdbg-cnt-list
430 Common Report
431 List all available debugging counters with their limits and counts.
432
433 fdbg-cnt=
434 Common RejectNegative Joined
435 -fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...]     Set the debug counter limit.   
436
437 fdebug-prefix-map=
438 Common Joined RejectNegative
439 Map one directory name to another in debug information
440
441 ; Nonzero for -fdefer-pop: don't pop args after each function call
442 ; instead save them up to pop many calls' args with one insns.
443 fdefer-pop
444 Common Report Var(flag_defer_pop) Optimization
445 Defer popping functions args from stack until later
446
447 fdelayed-branch
448 Common Report Var(flag_delayed_branch) Optimization
449 Attempt to fill delay slots of branch instructions
450
451 fdelete-null-pointer-checks
452 Common Report Var(flag_delete_null_pointer_checks) Init(1) Optimization
453 Delete useless null pointer checks
454
455 fdiagnostics-show-location=
456 Common Joined RejectNegative
457 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics
458
459 fdiagnostics-show-option
460 Common
461 Amend appropriate diagnostic messages with the command line option that controls them
462
463 fdump-
464 Common Joined RejectNegative
465 -fdump-<type>   Dump various compiler internals to a file
466
467 fdump-final-insns=
468 Common RejectNegative Joined Var(flag_dump_final_insns)
469 -fdump-final-insns=filename     Dump to filename the insns at the end of translation
470
471 fdump-noaddr
472 Common Report Var(flag_dump_noaddr)
473 Suppress output of addresses in debugging dumps
474
475 fdump-unnumbered
476 Common Report Var(flag_dump_unnumbered) VarExists
477 Suppress output of instruction numbers, line number notes and addresses in debugging dumps
478
479 fdump-unnumbered-links
480 Common Report Var(flag_dump_unnumbered_links) VarExists
481 Suppress output of previous and next insn numbers in debugging dumps
482
483 fdwarf2-cfi-asm
484 Common Report Var(flag_dwarf2_cfi_asm) Init(HAVE_GAS_CFI_DIRECTIVE)
485 Enable CFI tables via GAS assembler directives.
486
487 fearly-inlining
488 Common Report Var(flag_early_inlining) Init(1) Optimization
489 Perform early inlining
490
491 feliminate-dwarf2-dups
492 Common Report Var(flag_eliminate_dwarf2_dups)
493 Perform DWARF2 duplicate elimination
494
495 fipa-sra
496 Common Report Var(flag_ipa_sra) Init(0) Optimization
497 Perform interprocedural reduction of aggregates
498
499 feliminate-unused-debug-symbols
500 Common Report Var(flag_debug_only_used_symbols)
501 Perform unused type elimination in debug info
502
503 feliminate-unused-debug-types
504 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
505 Perform unused type elimination in debug info
506
507 femit-class-debug-always
508 Common Report Var(flag_emit_class_debug_always) Init(0)
509 Do not suppress C++ class debug information.
510
511 fenable-icf-debug
512 Common Report Var(flag_enable_icf_debug)
513 Generate debug information to support Identical Code Folding (ICF)
514
515 fexceptions
516 Common Report Var(flag_exceptions) Optimization
517 Enable exception handling
518
519 fexpensive-optimizations
520 Common Report Var(flag_expensive_optimizations) Optimization
521 Perform a number of minor, expensive optimizations
522
523 fexcess-precision=
524 Common Joined RejectNegative
525 -fexcess-precision=[fast|standard]      Specify handling of excess floating-point precision
526
527 ffast-math
528 Common
529
530 ffinite-math-only
531 Common Report Var(flag_finite_math_only) Optimization
532 Assume no NaNs or infinities are generated
533
534 ffixed-
535 Common Joined RejectNegative
536 -ffixed-<register>      Mark <register> as being unavailable to the compiler
537
538 ffloat-store
539 Common Report Var(flag_float_store) Optimization
540 Don't allocate floats and doubles in extended-precision registers
541
542 fforce-addr
543 Common
544 Does nothing.  Preserved for backward compatibility.
545
546 fforward-propagate
547 Common Report Var(flag_forward_propagate) Optimization
548 Perform a forward propagation pass on RTL
549
550 ; Nonzero means don't put addresses of constant functions in registers.
551 ; Used for compiling the Unix kernel, where strange substitutions are
552 ; done on the assembly output.
553 ffunction-cse
554 Common Report Var(flag_no_function_cse,0)
555 Allow function addresses to be held in registers
556
557 ffunction-sections
558 Common Report Var(flag_function_sections)
559 Place each function into its own section
560
561 fgcse
562 Common Report Var(flag_gcse) Optimization
563 Perform global common subexpression elimination
564
565 fgcse-lm
566 Common Report Var(flag_gcse_lm) Init(1) Optimization
567 Perform enhanced load motion during global common subexpression elimination
568
569 fgcse-sm
570 Common Report Var(flag_gcse_sm) Init(0) Optimization
571 Perform store motion after global common subexpression elimination
572
573 fgcse-las
574 Common Report Var(flag_gcse_las) Init(0) Optimization
575 Perform redundant load after store elimination in global common subexpression
576 elimination
577
578 fgcse-after-reload
579 Common Report Var(flag_gcse_after_reload) Optimization
580 Perform global common subexpression elimination after register allocation
581 has finished
582
583 ; This option is not documented yet as its semantics will change.
584 fgraphite
585 Common Report Var(flag_graphite)
586 Enable in and out of Graphite representation
587
588 fgraphite-identity
589 Common Report Var(flag_graphite_identity) Optimization
590 Enable Graphite Identity transformation
591
592 floop-parallelize-all
593 Common Report Var(flag_loop_parallelize_all) Optimization
594 Mark all loops as parallel
595
596 floop-strip-mine
597 Common Report Var(flag_loop_strip_mine) Optimization
598 Enable Loop Strip Mining transformation
599
600 floop-interchange
601 Common Report Var(flag_loop_interchange) Optimization
602 Enable Loop Interchange transformation
603
604 floop-block
605 Common Report Var(flag_loop_block) Optimization
606 Enable Loop Blocking transformation
607
608 fguess-branch-probability
609 Common Report Var(flag_guess_branch_prob) Optimization
610 Enable guessing of branch probabilities
611
612 ; Nonzero means ignore `#ident' directives.  0 means handle them.
613 ; Generate position-independent code for executables if possible
614 ; On SVR4 targets, it also controls whether or not to emit a
615 ; string identifying the compiler.
616 fident
617 Common Report Var(flag_no_ident,0)
618 Process #ident directives
619
620 fif-conversion
621 Common Report Var(flag_if_conversion) Optimization
622 Perform conversion of conditional jumps to branchless equivalents
623
624 fif-conversion2
625 Common Report Var(flag_if_conversion2) Optimization
626 Perform conversion of conditional jumps to conditional execution
627
628 ; -finhibit-size-directive inhibits output of .size for ELF.
629 ; This is used only for compiling crtstuff.c,
630 ; and it may be extended to other effects
631 ; needed for crtstuff.c on other systems.
632 finhibit-size-directive
633 Common Report Var(flag_inhibit_size_directive)
634 Do not generate .size directives
635
636 findirect-inlining
637 Common Report Var(flag_indirect_inlining)
638 Perform indirect inlining
639
640 ; Nonzero means that functions declared `inline' will be treated
641 ; as `static'.  Prevents generation of zillions of copies of unused
642 ; static inline functions; instead, `inlines' are written out
643 ; only when actually used.  Used in conjunction with -g.  Also
644 ; does the right thing with #pragma interface.
645 finline
646 Common Report Var(flag_no_inline,0) Init(0)
647 Pay attention to the \"inline\" keyword
648
649 finline-small-functions
650 Common Report Var(flag_inline_small_functions) Optimization
651 Integrate simple functions into their callers when code size is known to not growth
652
653 finline-functions
654 Common Report Var(flag_inline_functions) Optimization
655 Integrate simple functions into their callers
656
657 finline-functions-called-once
658 Common Report Var(flag_inline_functions_called_once) Init(1) Optimization
659 Integrate functions called once into their callers
660
661 finline-limit-
662 Common RejectNegative Joined UInteger
663
664 finline-limit=
665 Common RejectNegative Joined UInteger
666 -finline-limit=<number> Limit the size of inlined functions to <number>
667
668 finstrument-functions
669 Common Report Var(flag_instrument_function_entry_exit)
670 Instrument function entry and exit with profiling calls
671
672 finstrument-functions-exclude-function-list=
673 Common RejectNegative Joined
674 -finstrument-functions-exclude-function-list=name,...  Do not instrument listed functions
675
676 finstrument-functions-exclude-file-list=
677 Common RejectNegative Joined
678 -finstrument-functions-exclude-file-list=filename,...  Do not instrument functions listed in files
679
680 fipa-cp
681 Common Report Var(flag_ipa_cp) Optimization
682 Perform Interprocedural constant propagation
683
684 fipa-cp-clone
685 Common Report Var(flag_ipa_cp_clone) Optimization
686 Perform cloning to make Interprocedural constant propagation stronger
687
688 fipa-pure-const
689 Common Report Var(flag_ipa_pure_const) Init(0) Optimization
690 Discover pure and const functions
691
692 fipa-pta
693 Common Report Var(flag_ipa_pta) Init(0) Optimization
694 Perform interprocedural points-to analysis
695
696 fipa-reference
697 Common Report Var(flag_ipa_reference) Init(0) Optimization
698 Discover readonly and non addressable static variables
699
700 fipa-type-escape
701 Common Report Var(flag_ipa_type_escape) Init(0) Optimization
702 Type based escape and alias analysis
703
704 fipa-matrix-reorg
705 Common Report Var(flag_ipa_matrix_reorg) Optimization
706 Perform matrix layout flattening and transposing based
707 on profiling information.
708
709 fipa-struct-reorg
710 Common Report Var(flag_ipa_struct_reorg)
711 Perform structure layout optimizations based
712 on profiling information.
713
714 fira-algorithm=
715 Common Joined RejectNegative
716 -fira-algorithm=[CB|priority] Set the used IRA algorithm
717
718 fira-region=
719 Common Joined RejectNegative
720 -fira-region=[one|all|mixed] Set regions for IRA
721
722 fira-coalesce
723 Common Report Var(flag_ira_coalesce) Init(0)
724 Do optimistic coalescing.
725
726 fira-loop-pressure
727 Common Report Var(flag_ira_loop_pressure)
728 Use IRA based register pressure calculation
729 in RTL loop optimizations.
730
731 fira-share-save-slots
732 Common Report Var(flag_ira_share_save_slots) Init(1)
733 Share slots for saving different hard registers.
734
735 fira-share-spill-slots
736 Common Report Var(flag_ira_share_spill_slots) Init(1)
737 Share stack slots for spilled pseudo-registers.
738
739 fira-verbose=
740 Common RejectNegative Joined UInteger
741 -fira-verbose=<number>  Control IRA's level of diagnostic messages.
742
743 fivopts
744 Common Report Var(flag_ivopts) Init(1) Optimization
745 Optimize induction variables on trees
746
747 fjump-tables
748 Common Var(flag_jump_tables) Init(1) Optimization
749 Use jump tables for sufficiently large switch statements
750
751 fkeep-inline-functions
752 Common Report Var(flag_keep_inline_functions)
753 Generate code for functions even if they are fully inlined
754
755 fkeep-static-consts
756 Common Report Var(flag_keep_static_consts) Init(1)
757 Emit static const variables even if they are not used
758
759 fleading-underscore
760 Common Report Var(flag_leading_underscore) Init(-1)
761 Give external symbols a leading underscore
762
763 floop-optimize
764 Common
765 Does nothing.  Preserved for backward compatibility.
766
767 flto
768 Common Var(flag_lto)
769 Enable link-time optimization.
770
771 ; The initial value of -1 comes from Z_DEFAULT_COMPRESSION in zlib.h.
772 flto-compression-level=
773 Common Joined UInteger Var(flag_lto_compression_level) Init(-1)
774 -flto-compression-level=<number>        Use zlib compression level <number> for IL
775
776 flto-report
777 Common Report Var(flag_lto_report) Init(0) Optimization
778 Report various link-time optimization statistics
779
780 fmath-errno
781 Common Report Var(flag_errno_math) Init(1) Optimization
782 Set errno after built-in math functions
783
784 fmem-report
785 Common Report Var(mem_report)
786 Report on permanent memory allocation
787
788 ; This will attempt to merge constant section constants, if 1 only
789 ; string constants and constants from constant pool, if 2 also constant
790 ; variables.
791 fmerge-all-constants
792 Common Report Var(flag_merge_constants,2) Init(1) Optimization
793 Attempt to merge identical constants and constant variables
794
795 fmerge-constants
796 Common Report Var(flag_merge_constants,1) VarExists Optimization
797 Attempt to merge identical constants across compilation units
798
799 fmerge-debug-strings
800 Common Report Var(flag_merge_debug_strings) Init(1)
801 Attempt to merge identical debug strings across compilation units
802
803 fmessage-length=
804 Common RejectNegative Joined UInteger
805 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping
806
807 fmodulo-sched
808 Common Report Var(flag_modulo_sched) Optimization
809 Perform SMS based modulo scheduling before the first scheduling pass
810
811 fmodulo-sched-allow-regmoves
812 Common Report Var(flag_modulo_sched_allow_regmoves)
813 Perform SMS based modulo scheduling with register moves allowed
814
815 fmove-loop-invariants
816 Common Report Var(flag_move_loop_invariants) Init(1) Optimization
817 Move loop invariant computations out of loops
818
819 fmudflap
820 Common RejectNegative Report Var(flag_mudflap)
821 Add mudflap bounds-checking instrumentation for single-threaded program
822
823 fmudflapth
824 Common RejectNegative Report VarExists Var(flag_mudflap,2)
825 Add mudflap bounds-checking instrumentation for multi-threaded program
826
827 fmudflapir
828 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
829 Ignore read operations when inserting mudflap instrumentation
830
831 fdce
832 Common Var(flag_dce) Init(1) Optimization
833 Use the RTL dead code elimination pass
834
835 fdse
836 Common Var(flag_dse) Init(1) Optimization
837 Use the RTL dead store elimination pass
838
839 freschedule-modulo-scheduled-loops
840 Common Report Var(flag_resched_modulo_sched) Optimization
841 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
842
843 fnon-call-exceptions
844 Common Report Var(flag_non_call_exceptions) Optimization
845 Support synchronous non-call exceptions
846
847 fomit-frame-pointer
848 Common Report Var(flag_omit_frame_pointer) Optimization
849 When possible do not generate stack frames
850
851 foptimize-register-move
852 Common Report Var(flag_regmove) Optimization
853 Do the full register move optimization pass
854
855 foptimize-sibling-calls
856 Common Report Var(flag_optimize_sibling_calls) Optimization
857 Optimize sibling and tail recursive calls
858
859 fpre-ipa-mem-report
860 Common Report Var(pre_ipa_mem_report)
861 Report on memory allocation before interprocedural optimization
862
863 fpost-ipa-mem-report
864 Common Report Var(post_ipa_mem_report)
865 Report on memory allocation before interprocedural optimization
866
867 fpack-struct
868 Common Report Var(flag_pack_struct) Optimization
869 Pack structure members together without holes
870
871 fpack-struct=
872 Common RejectNegative Joined UInteger Optimization
873 -fpack-struct=<number>  Set initial maximum structure member alignment
874
875 fpcc-struct-return
876 Common Report Var(flag_pcc_struct_return,1) VarExists
877 Return small aggregates in memory, not registers
878
879 fpeel-loops
880 Common Report Var(flag_peel_loops) Optimization
881 Perform loop peeling
882
883 fpeephole
884 Common Report Var(flag_no_peephole,0) Optimization
885 Enable machine specific peephole optimizations
886
887 fpeephole2
888 Common Report Var(flag_peephole2) Optimization
889 Enable an RTL peephole pass before sched2
890
891 fPIC
892 Common Report Var(flag_pic,2)
893 Generate position-independent code if possible (large mode)
894
895 fPIE
896 Common Report Var(flag_pie,2)
897 Generate position-independent code for executables if possible (large mode)
898
899 fpic
900 Common Report Var(flag_pic,1) VarExists
901 Generate position-independent code if possible (small mode)
902
903 fpie
904 Common Report Var(flag_pie,1) VarExists
905 Generate position-independent code for executables if possible (small mode)
906
907 fplugin=
908 Common Joined RejectNegative
909 Specify a plugin to load
910
911 fplugin-arg-
912 Common Joined RejectNegative
913 -fplugin-arg-<name>-<key>[=<value>]     Specify argument <key>=<value> for plugin <name>
914
915 fpredictive-commoning
916 Common Report Var(flag_predictive_commoning) Optimization
917 Run predictive commoning optimization.
918
919 fprefetch-loop-arrays
920 Common Report Var(flag_prefetch_loop_arrays) Optimization
921 Generate prefetch instructions, if available, for arrays in loops
922
923 fprofile
924 Common Report Var(profile_flag)
925 Enable basic program profiling code
926
927 fprofile-arcs
928 Common Report Var(profile_arc_flag)
929 Insert arc-based program profiling code
930
931 fprofile-dir=
932 Common Joined RejectNegative
933 Set the top-level directory for storing the profile data.
934 The default is 'pwd'.
935
936 fprofile-correction
937 Common Report Var(flag_profile_correction)
938 Enable correction of flow inconsistent profile data input
939
940 fprofile-generate
941 Common
942 Enable common options for generating profile info for profile feedback directed optimizations
943
944 fprofile-generate=
945 Common Joined RejectNegative
946 Enable common options for generating profile info for profile feedback directed optimizations, and set -fprofile-dir=
947
948 fprofile-use
949 Common Var(flag_profile_use)
950 Enable common options for performing profile feedback directed optimizations
951
952 fprofile-use=
953 Common Joined RejectNegative
954 Enable common options for performing profile feedback directed optimizations, and set -fprofile-dir=
955
956 fprofile-values
957 Common Report Var(flag_profile_values)
958 Insert code to profile values of expressions
959
960 frandom-seed
961 Common
962
963 frandom-seed=
964 Common Joined RejectNegative
965 -frandom-seed=<string>  Make compile reproducible using <string>
966
967 ; This switch causes the command line that was used to create an
968 ; object file to be recorded into the object file.  The exact format
969 ; of this recording is target and binary file format dependent.
970 ; It is related to the -fverbose-asm switch, but that switch only
971 ; records information in the assembler output file as comments, so
972 ; they never reach the object file.
973 frecord-gcc-switches
974 Common Report Var(flag_record_gcc_switches)
975 Record gcc command line switches in the object file.
976
977 freg-struct-return
978 Common Report Var(flag_pcc_struct_return,0) VarExists Optimization
979 Return small aggregates in registers
980
981 fregmove
982 Common Report Var(flag_regmove) Optimization
983 Enables a register move optimization
984
985 frename-registers
986 Common Report Var(flag_rename_registers) Init(2) Optimization
987 Perform a register renaming optimization pass
988
989 freorder-blocks
990 Common Report Var(flag_reorder_blocks) Optimization
991 Reorder basic blocks to improve code placement
992
993 freorder-blocks-and-partition
994 Common Report Var(flag_reorder_blocks_and_partition) Optimization
995 Reorder basic blocks and partition into hot and cold sections
996
997 freorder-functions
998 Common Report Var(flag_reorder_functions) Optimization
999 Reorder functions to improve code placement
1000
1001 frerun-cse-after-loop
1002 Common Report Var(flag_rerun_cse_after_loop) Init(2) Optimization
1003 Add a common subexpression elimination pass after loop optimizations
1004
1005 frerun-loop-opt
1006 Common
1007 Does nothing.  Preserved for backward compatibility.
1008
1009 frounding-math
1010 Common Report Var(flag_rounding_math) Optimization
1011 Disable optimizations that assume default FP rounding behavior
1012
1013 fsched-interblock
1014 Common Report Var(flag_schedule_interblock) Init(1) Optimization
1015 Enable scheduling across basic blocks
1016
1017 fsched-pressure
1018 Common Report Var(flag_sched_pressure) Init(0) Optimization
1019 Enable register pressure sensitive insn scheduling
1020
1021 fsched-spec
1022 Common Report Var(flag_schedule_speculative) Init(1) Optimization
1023 Allow speculative motion of non-loads
1024
1025 fsched-spec-load
1026 Common Report Var(flag_schedule_speculative_load) Optimization
1027 Allow speculative motion of some loads
1028
1029 fsched-spec-load-dangerous
1030 Common Report Var(flag_schedule_speculative_load_dangerous) Optimization
1031 Allow speculative motion of more loads
1032
1033 fsched-verbose=
1034 Common RejectNegative Joined
1035 -fsched-verbose=<number>        Set the verbosity level of the scheduler
1036
1037 fsched2-use-superblocks
1038 Common Report Var(flag_sched2_use_superblocks) Optimization
1039 If scheduling post reload, do superblock scheduling
1040
1041 fsched2-use-traces
1042 Common
1043 Does nothing.  Preserved for backward compatibility.
1044
1045 fschedule-insns
1046 Common Report Var(flag_schedule_insns) Optimization
1047 Reschedule instructions before register allocation
1048
1049 fschedule-insns2
1050 Common Report Var(flag_schedule_insns_after_reload) Optimization
1051 Reschedule instructions after register allocation
1052
1053 ; This flag should be on when a target implements non-trivial
1054 ; scheduling hooks, maybe saving some information for its own sake.
1055 ; On IA64, for example, this is used for correct bundling. 
1056 fselective-scheduling
1057 Common Report Var(flag_selective_scheduling) Optimization
1058 Schedule instructions using selective scheduling algorithm
1059
1060 fselective-scheduling2
1061 Common Report Var(flag_selective_scheduling2) Optimization 
1062 Run selective scheduling after reload
1063
1064 fsel-sched-pipelining
1065 Common Report Var(flag_sel_sched_pipelining) Init(0) Optimization
1066 Perform software pipelining of inner loops during selective scheduling
1067
1068 fsel-sched-pipelining-outer-loops
1069 Common Report Var(flag_sel_sched_pipelining_outer_loops) Init(0) Optimization
1070 Perform software pipelining of outer loops during selective scheduling
1071
1072 fsel-sched-reschedule-pipelined
1073 Common Report Var(flag_sel_sched_reschedule_pipelined) Init(0) Optimization
1074 Reschedule pipelined regions without pipelining
1075
1076 ; sched_stalled_insns means that insns can be moved prematurely from the queue
1077 ; of stalled insns into the ready list.
1078 fsched-stalled-insns
1079 Common Report Var(flag_sched_stalled_insns) Optimization UInteger
1080 Allow premature scheduling of queued insns
1081
1082 fsched-stalled-insns=
1083 Common RejectNegative Joined UInteger
1084 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
1085
1086 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
1087 ; be examined for a dependency on a stalled insn that is candidate for
1088 ; premature removal from the queue of stalled insns into the ready list (has
1089 ; an effect only if the flag 'sched_stalled_insns' is set).
1090 fsched-stalled-insns-dep
1091 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1) Optimization UInteger
1092 Set dependence distance checking in premature scheduling of queued insns
1093
1094 fsched-stalled-insns-dep=
1095 Common RejectNegative Joined UInteger
1096 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
1097
1098 fsched-group-heuristic
1099 Common Report Var(flag_sched_group_heuristic) Init(1) Optimization
1100 Enable the group heuristic in the scheduler
1101
1102 fsched-critical-path-heuristic
1103 Common Report Var(flag_sched_critical_path_heuristic) Init(1) Optimization
1104 Enable the critical path heuristic in the scheduler
1105
1106 fsched-spec-insn-heuristic
1107 Common Report Var(flag_sched_spec_insn_heuristic) Init(1) Optimization
1108 Enable the speculative instruction heuristic in the scheduler
1109
1110 fsched-rank-heuristic
1111 Common Report Var(flag_sched_rank_heuristic) Init(1) Optimization
1112 Enable the rank heuristic in the scheduler
1113
1114 fsched-last-insn-heuristic
1115 Common Report Var(flag_sched_last_insn_heuristic) Init(1) Optimization
1116 Enable the last instruction heuristic in the scheduler
1117
1118 fsched-dep-count-heuristic
1119 Common Report Var(flag_sched_dep_count_heuristic) Init(1) Optimization
1120 Enable the dependent count heuristic in the scheduler
1121
1122 fsection-anchors
1123 Common Report Var(flag_section_anchors) Optimization
1124 Access data in the same section from shared anchor points
1125
1126 fsee
1127 Common
1128 Does nothing.  Preserved for backward compatibility.
1129
1130 fshow-column
1131 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
1132 Show column numbers in diagnostics, when available.  Default on
1133
1134 fsignaling-nans
1135 Common Report Var(flag_signaling_nans) Optimization
1136 Disable optimizations observable by IEEE signaling NaNs
1137
1138 fsigned-zeros
1139 Common Report Var(flag_signed_zeros) Init(1) Optimization
1140 Disable floating point optimizations that ignore the IEEE signedness of zero
1141
1142 fsingle-precision-constant
1143 Common Report Var(flag_single_precision_constant) Optimization
1144 Convert floating point constants to single precision constants
1145
1146 fsplit-ivs-in-unroller
1147 Common Report Var(flag_split_ivs_in_unroller) Init(1) Optimization
1148 Split lifetimes of induction variables when loops are unrolled
1149
1150 fsplit-wide-types
1151 Common Report Var(flag_split_wide_types) Optimization
1152 Split wide types into independent registers
1153
1154 fvariable-expansion-in-unroller
1155 Common Report Var(flag_variable_expansion_in_unroller) Optimization
1156 Apply variable expansion when loops are unrolled
1157
1158 fstack-check=
1159 Common Report RejectNegative Joined
1160 -fstack-check=[no|generic|specific]     Insert stack checking code into the program
1161
1162 fstack-check
1163 Common Report
1164 Insert stack checking code into the program.  Same as -fstack-check=specific
1165
1166 fstack-limit
1167 Common
1168
1169 fstack-limit-register=
1170 Common RejectNegative Joined
1171 -fstack-limit-register=<register>       Trap if the stack goes past <register>
1172
1173 fstack-limit-symbol=
1174 Common RejectNegative Joined
1175 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
1176
1177 fstack-protector
1178 Common Report Var(flag_stack_protect, 1)
1179 Use propolice as a stack protection method
1180
1181 fstack-protector-all
1182 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
1183 Use a stack protection method for every function
1184
1185 fstrength-reduce
1186 Common
1187 Does nothing.  Preserved for backward compatibility.
1188
1189 ; Nonzero if we should do (language-dependent) alias analysis.
1190 ; Typically, this analysis will assume that expressions of certain
1191 ; types do not alias expressions of certain other types.  Only used
1192 ; if alias analysis (in general) is enabled.
1193 fstrict-aliasing
1194 Common Report Var(flag_strict_aliasing) Optimization
1195 Assume strict aliasing rules apply
1196
1197 fstrict-overflow
1198 Common Report Var(flag_strict_overflow)
1199 Treat signed overflow as undefined
1200
1201 fsyntax-only
1202 Common Report Var(flag_syntax_only)
1203 Check for syntax errors, then stop
1204
1205 ftest-coverage
1206 Common Report Var(flag_test_coverage)
1207 Create data files needed by \"gcov\"
1208
1209 fthread-jumps
1210 Common Report Var(flag_thread_jumps) Optimization
1211 Perform jump threading optimizations
1212
1213 ftime-report
1214 Common Report Var(time_report)
1215 Report the time taken by each compiler pass
1216
1217 ftls-model=
1218 Common Joined RejectNegative
1219 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
1220
1221 ftoplevel-reorder
1222 Common Report Var(flag_toplevel_reorder) Init(2) Optimization
1223 Reorder top level functions, variables, and asms
1224
1225 ftracer
1226 Common Report Var(flag_tracer)
1227 Perform superblock formation via tail duplication
1228
1229 ; Zero means that floating-point math operations cannot generate a
1230 ; (user-visible) trap.  This is the case, for example, in nonstop
1231 ; IEEE 754 arithmetic.
1232 ftrapping-math
1233 Common Report Var(flag_trapping_math) Init(1) Optimization
1234 Assume floating-point operations can trap
1235
1236 ftrapv
1237 Common Report Var(flag_trapv) Optimization
1238 Trap for signed overflow in addition, subtraction and multiplication
1239
1240 ftree-ccp
1241 Common Report Var(flag_tree_ccp) Optimization
1242 Enable SSA-CCP optimization on trees
1243
1244 ftree-store-ccp
1245 Common
1246 Does nothing.  Preserved for backward compatibility.
1247
1248 ftree-ch
1249 Common Report Var(flag_tree_ch) Optimization
1250 Enable loop header copying on trees
1251
1252 ftree-copyrename
1253 Common Report Var(flag_tree_copyrename) Optimization
1254 Replace SSA temporaries with better names in copies
1255
1256 ftree-copy-prop
1257 Common Report Var(flag_tree_copy_prop) Optimization
1258 Enable copy propagation on trees
1259
1260 ftree-store-copy-prop
1261 Common
1262 Does nothing.  Preserved for backward compatibility.
1263
1264 ftree-cselim
1265 Common Report Var(flag_tree_cselim) Init(2) Optimization
1266 Transform condition stores into unconditional ones
1267
1268 ftree-switch-conversion
1269 Common Report Var(flag_tree_switch_conversion) Optimization
1270 Perform conversions of switch initializations.
1271
1272 ftree-dce
1273 Common Report Var(flag_tree_dce) Optimization
1274 Enable SSA dead code elimination optimization on trees
1275
1276 ftree-dominator-opts
1277 Common Report Var(flag_tree_dom) Optimization
1278 Enable dominator optimizations
1279
1280 ftree-dse
1281 Common Report Var(flag_tree_dse) Optimization
1282 Enable dead store elimination
1283
1284 ftree-forwprop
1285 Common Report Var(flag_tree_forwprop) Init(1) Optimization
1286 Enable forward propagation on trees
1287
1288 ftree-fre
1289 Common Report Var(flag_tree_fre) Optimization
1290 Enable Full Redundancy Elimination (FRE) on trees
1291
1292 ftree-loop-distribution
1293 Common Report Var(flag_tree_loop_distribution) Optimization
1294 Enable loop distribution on trees
1295
1296 ftree-loop-im
1297 Common Report Var(flag_tree_loop_im) Init(1) Optimization
1298 Enable loop invariant motion on trees
1299
1300 ftree-loop-linear
1301 Common Report Var(flag_tree_loop_linear) Optimization
1302 Enable linear loop transforms on trees
1303
1304 ftree-loop-ivcanon
1305 Common Report Var(flag_tree_loop_ivcanon) Init(1) Optimization
1306 Create canonical induction variables in loops
1307
1308 ftree-loop-optimize
1309 Common Report Var(flag_tree_loop_optimize) Init(1) Optimization
1310 Enable loop optimizations on tree level
1311
1312 ftree-parallelize-loops=
1313 Common Report Joined UInteger Var(flag_tree_parallelize_loops) Init(1)
1314 Enable automatic parallelization of loops
1315
1316 ftree-phiprop
1317 Common Report Var(flag_tree_phiprop) Init(1) Optimization
1318 Enable hoisting loads from conditional pointers.
1319
1320 ftree-pre
1321 Common Report Var(flag_tree_pre) Optimization
1322 Enable SSA-PRE optimization on trees
1323
1324 ftree-pta
1325 Common Report Var(flag_tree_pta) Init(1) Optimization
1326 Perform function-local points-to analysis on trees.
1327
1328 ftree-reassoc
1329 Common Report Var(flag_tree_reassoc) Init(1) Optimization
1330 Enable reassociation on tree level
1331
1332 ftree-salias
1333 Common
1334 Does nothing.  Preserved for backward compatibility.
1335
1336 ftree-sink
1337 Common Report Var(flag_tree_sink) Optimization
1338 Enable SSA code sinking on trees
1339
1340 ftree-sra
1341 Common Report Var(flag_tree_sra) Optimization
1342 Perform scalar replacement of aggregates
1343
1344 ftree-ter
1345 Common Report Var(flag_tree_ter) Init(1) Optimization
1346 Replace temporary expressions in the SSA->normal pass
1347
1348 ftree-lrs
1349 Common Report Var(flag_tree_live_range_split) Optimization
1350 Perform live range splitting during the SSA->normal pass
1351
1352 ftree-vrp
1353 Common Report Var(flag_tree_vrp) Init(0) Optimization
1354 Perform Value Range Propagation on trees
1355
1356 funit-at-a-time
1357 Common Report Var(flag_unit_at_a_time) Init(1) Optimization
1358 Compile whole compilation unit at a time
1359
1360 funroll-loops
1361 Common Report Var(flag_unroll_loops) Optimization
1362 Perform loop unrolling when iteration count is known
1363
1364 funroll-all-loops
1365 Common Report Var(flag_unroll_all_loops) Optimization
1366 Perform loop unrolling for all loops
1367
1368 ; Nonzero means that loop optimizer may assume that the induction variables
1369 ; that control loops do not overflow and that the loops with nontrivial
1370 ; exit condition are not infinite
1371 funsafe-loop-optimizations
1372 Common Report Var(flag_unsafe_loop_optimizations) Optimization
1373 Allow loop optimizations to assume that the loops behave in normal way
1374
1375 fassociative-math
1376 Common Report Var(flag_associative_math)
1377 Allow optimization for floating-point arithmetic which may change the
1378 result of the operation due to rounding.
1379
1380 freciprocal-math
1381 Common Report Var(flag_reciprocal_math)
1382 Same as -fassociative-math for expressions which include division.
1383
1384 ; Nonzero means that unsafe floating-point math optimizations are allowed
1385 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1386 ; are allowed to assume that their arguments and results are "normal"
1387 ; (e.g., nonnegative for SQRT).
1388 funsafe-math-optimizations
1389 Common Report Var(flag_unsafe_math_optimizations) Optimization
1390 Allow math optimizations that may violate IEEE or ISO standards
1391
1392 funswitch-loops
1393 Common Report Var(flag_unswitch_loops) Optimization
1394 Perform loop unswitching
1395
1396 funwind-tables
1397 Common Report Var(flag_unwind_tables) Optimization
1398 Just generate unwind tables for exception handling
1399
1400 fuse-linker-plugin
1401 Common Undocumented
1402
1403 fvar-tracking
1404 Common Report Var(flag_var_tracking) VarExists Optimization
1405 Perform variable tracking
1406
1407 fvar-tracking-assignments
1408 Common Report Var(flag_var_tracking_assignments) VarExists Optimization
1409 Perform variable tracking by annotating assignments
1410
1411 fvar-tracking-assignments-toggle
1412 Common Report Var(flag_var_tracking_assignments_toggle) VarExists Optimization
1413 Toggle -fvar-tracking-assignments
1414
1415 fvar-tracking-uninit
1416 Common Report Var(flag_var_tracking_uninit) Optimization
1417 Perform variable tracking and also tag variables that are uninitialized
1418
1419 ftree-vectorize
1420 Common Report Var(flag_tree_vectorize) Optimization
1421 Enable loop vectorization on trees
1422
1423 ftree-slp-vectorize
1424 Common Report Var(flag_tree_slp_vectorize) Init(2) Optimization
1425 Enable basic block vectorization (SLP) on trees
1426
1427 fvect-cost-model
1428 Common Report Var(flag_vect_cost_model) Optimization
1429 Enable use of cost model in vectorization
1430
1431 ftree-vect-loop-version
1432 Common Report Var(flag_tree_vect_loop_version) Init(1) Optimization
1433 Enable loop versioning when doing loop vectorization on trees
1434
1435 ftree-vectorizer-verbose=
1436 Common RejectNegative Joined
1437 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1438
1439 ftree-scev-cprop
1440 Common Report Var(flag_tree_scev_cprop) Init(1) Optimization
1441 Enable copy propagation of scalar-evolution information.
1442
1443 ; -fverbose-asm causes extra commentary information to be produced in
1444 ; the generated assembly code (to make it more readable).  This option
1445 ; is generally only of use to those who actually need to read the
1446 ; generated assembly code (perhaps while debugging the compiler itself).
1447 ; -fno-verbose-asm, the default, causes the extra information
1448 ; to not be added and is useful when comparing two assembler files.
1449 fverbose-asm
1450 Common Report Var(flag_verbose_asm)
1451 Add extra commentary to assembler output
1452
1453 fvisibility=
1454 Common Joined RejectNegative
1455 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1456
1457
1458 fvpt
1459 Common Report Var(flag_value_profile_transformations) Optimization
1460 Use expression value profiles in optimizations
1461
1462 fweb
1463 Common Report Var(flag_web) Init(2) Optimization
1464 Construct webs and split unrelated uses of single variable
1465
1466 fwhopr
1467 Common Var(flag_whopr)
1468 Enable partitioned link-time optimization.
1469
1470 ftree-builtin-call-dce
1471 Common Report Var(flag_tree_builtin_call_dce) Init(0) Optimization
1472 Enable conditional dead code elimination for builtin calls
1473
1474 fwhole-program
1475 Common Report Var(flag_whole_program) Init(0) Optimization
1476 Perform whole program optimizations
1477
1478 fwrapv
1479 Common Report Var(flag_wrapv) Optimization
1480 Assume signed arithmetic overflow wraps around
1481
1482 fzero-initialized-in-bss
1483 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1484 Put zero initialized data in the bss section
1485
1486 g
1487 Common JoinedOrMissing
1488 Generate debug information in default format
1489
1490 gcoff
1491 Common JoinedOrMissing Negative(gdwarf-)
1492 Generate debug information in COFF format
1493
1494 gdwarf-
1495 Common Joined UInteger Var(dwarf_version) Init(2) Negative(gstabs)
1496 Generate debug information in DWARF v2 (or later) format
1497
1498 ggdb
1499 Common JoinedOrMissing
1500 Generate debug information in default extended format
1501
1502 gstabs
1503 Common JoinedOrMissing Negative(gstabs+)
1504 Generate debug information in STABS format
1505
1506 gstabs+
1507 Common JoinedOrMissing Negative(gvms)
1508 Generate debug information in extended STABS format
1509
1510 gno-strict-dwarf
1511 Common RejectNegative Var(dwarf_strict,0) Init(-1)
1512 Emit DWARF additions beyond selected version
1513
1514 gstrict-dwarf
1515 Common Report RejectNegative Var(dwarf_strict,1) VarExists
1516 Don't emit DWARF additions beyond selected version
1517
1518 gtoggle
1519 Common Report Var(flag_gtoggle)
1520 Toggle debug information generation
1521
1522 gvms
1523 Common JoinedOrMissing Negative(gxcoff)
1524 Generate debug information in VMS format
1525
1526 gxcoff
1527 Common JoinedOrMissing Negative(gxcoff+)
1528 Generate debug information in XCOFF format
1529
1530 gxcoff+
1531 Common JoinedOrMissing Negative(gcoff)
1532 Generate debug information in extended XCOFF format
1533
1534 o
1535 Common Joined Separate
1536 -o <file>       Place output into <file>
1537
1538 p
1539 Common Var(profile_flag)
1540 Enable function profiling
1541
1542 pedantic
1543 Common Var(pedantic)
1544 Issue warnings needed for strict compliance to the standard
1545
1546 pedantic-errors
1547 Common
1548 Like -pedantic but issue them as errors
1549
1550 quiet
1551 Common Var(quiet_flag)
1552 Do not display functions compiled or elapsed time
1553
1554 version
1555 Common Var(version_flag)
1556 Display the compiler's version
1557
1558 w
1559 Common Var(inhibit_warnings)
1560 Suppress warnings
1561
1562 shared
1563 Common RejectNegative Negative(pie)
1564 Create a shared library
1565
1566 pie
1567 Common RejectNegative Negative(shared)
1568 Create a position independent executable
1569
1570 ; This comment is to ensure we retain the blank line above.