OSDN Git Service

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