OSDN Git Service

* doc/passes.texi: Document predictive commoning.
[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
475 Common Report Var(flag_forward_propagate) Optimization
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 fpredictive-commoning
723 Common Report Var(flag_predictive_commoning)
724 Run predictive commoning optimization.
725
726 fprefetch-loop-arrays
727 Common Report Var(flag_prefetch_loop_arrays) Optimization
728 Generate prefetch instructions, if available, for arrays in loops
729
730 fprofile
731 Common Report Var(profile_flag)
732 Enable basic program profiling code
733
734 fprofile-arcs
735 Common Report Var(profile_arc_flag)
736 Insert arc-based program profiling code
737
738 fprofile-generate
739 Common
740 Enable common options for generating profile info for profile feedback directed optimizations
741
742 fprofile-use
743 Common
744 Enable common options for performing profile feedback directed optimizations
745
746 fprofile-values
747 Common Report Var(flag_profile_values)
748 Insert code to profile values of expressions
749
750 frandom-seed
751 Common
752
753 frandom-seed=
754 Common Joined RejectNegative
755 -frandom-seed=<string>  Make compile reproducible using <string>
756
757 ; This switch causes the command line that was used to create an
758 ; object file to be recorded into the object file.  The exact format
759 ; of this recording is target and binary file format dependent.
760 ; It is related to the -fverbose-asm switch, but that switch only
761 ; records information in the assembler output file as comments, so
762 ; they never reach the object file.
763 frecord-gcc-switches
764 Common Report Var(flag_record_gcc_switches)
765 Record gcc command line switches in the object file.
766
767 freg-struct-return
768 Common Report Var(flag_pcc_struct_return,0) VarExists Optimization
769 Return small aggregates in registers
770
771 fregmove
772 Common Report Var(flag_regmove) Optimization
773 Enables a register move optimization
774
775 frename-registers
776 Common Report Var(flag_rename_registers) Init(2) Optimization
777 Perform a register renaming optimization pass
778
779 freorder-blocks
780 Common Report Var(flag_reorder_blocks) Optimization
781 Reorder basic blocks to improve code placement
782
783 freorder-blocks-and-partition
784 Common Report Var(flag_reorder_blocks_and_partition) Optimization
785 Reorder basic blocks and partition into hot and cold sections
786
787 freorder-functions
788 Common Report Var(flag_reorder_functions) Optimization
789 Reorder functions to improve code placement
790
791 frerun-cse-after-loop
792 Common Report Var(flag_rerun_cse_after_loop) Init(2) Optimization
793 Add a common subexpression elimination pass after loop optimizations
794
795 frerun-loop-opt
796 Common
797 Does nothing.  Preserved for backward compatibility.
798
799 frounding-math
800 Common Report Var(flag_rounding_math) Optimization
801 Disable optimizations that assume default FP rounding behavior
802
803 fsched-interblock
804 Common Report Var(flag_schedule_interblock) Init(1) Optimization
805 Enable scheduling across basic blocks
806
807 fsched-spec
808 Common Report Var(flag_schedule_speculative) Init(1) Optimization
809 Allow speculative motion of non-loads
810
811 fsched-spec-load
812 Common Report Var(flag_schedule_speculative_load) Optimization
813 Allow speculative motion of some loads
814
815 fsched-spec-load-dangerous
816 Common Report Var(flag_schedule_speculative_load_dangerous) Optimization
817 Allow speculative motion of more loads
818
819 fsched-verbose=
820 Common RejectNegative Joined
821 -fsched-verbose=<number>        Set the verbosity level of the scheduler
822
823 fsched2-use-superblocks
824 Common Report Var(flag_sched2_use_superblocks) Optimization
825 If scheduling post reload, do superblock scheduling
826
827 fsched2-use-traces
828 Common Report Var(flag_sched2_use_traces) Optimization
829 If scheduling post reload, do trace scheduling
830
831 fschedule-insns
832 Common Report Var(flag_schedule_insns) Optimization
833 Reschedule instructions before register allocation
834
835 fschedule-insns2
836 Common Report Var(flag_schedule_insns_after_reload) Optimization
837 Reschedule instructions after register allocation
838
839 ; sched_stalled_insns means that insns can be moved prematurely from the queue
840 ; of stalled insns into the ready list.
841 fsched-stalled-insns
842 Common Report Var(flag_sched_stalled_insns) Optimization
843 Allow premature scheduling of queued insns
844
845 fsched-stalled-insns=
846 Common RejectNegative Joined UInteger
847 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
848
849 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
850 ; be examined for a dependency on a stalled insn that is candidate for
851 ; premature removal from the queue of stalled insns into the ready list (has
852 ; an effect only if the flag 'sched_stalled_insns' is set).
853 fsched-stalled-insns-dep
854 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1) Optimization
855 Set dependence distance checking in premature scheduling of queued insns
856
857 fsched-stalled-insns-dep=
858 Common RejectNegative Joined UInteger
859 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
860
861 fsection-anchors
862 Common Report Var(flag_section_anchors) Optimization
863 Access data in the same section from shared anchor points
864
865 frtl-abstract-sequences
866 Common Report Var(flag_rtl_seqabstr) Optimization
867 Perform sequence abstraction optimization on RTL
868
869 fsee
870 Common Report Var(flag_see) Init(0)
871 Eliminate redundant sign extensions using LCM.
872
873 fshow-column
874 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
875 Show column numbers in diagnostics, when available.  Default on
876
877 fsignaling-nans
878 Common Report Var(flag_signaling_nans) Optimization
879 Disable optimizations observable by IEEE signaling NaNs
880
881 fsigned-zeros
882 Common Report Var(flag_signed_zeros) Init(1) Optimization
883 Disable floating point optimizations that ignore the IEEE signedness of zero
884
885 fsingle-precision-constant
886 Common Report Var(flag_single_precision_constant) Optimization
887 Convert floating point constants to single precision constants
888
889 fsplit-ivs-in-unroller
890 Common Report Var(flag_split_ivs_in_unroller) Init(1) Optimization
891 Split lifetimes of induction variables when loops are unrolled
892
893 fsplit-wide-types
894 Common Report Var(flag_split_wide_types) Optimization
895 Split wide types into independent registers
896
897 fvariable-expansion-in-unroller
898 Common Report Var(flag_variable_expansion_in_unroller) Optimization
899 Apply variable expansion when loops are unrolled
900
901 ; Emit code to probe the stack, to help detect stack overflow; also
902 ; may cause large objects to be allocated dynamically.
903 fstack-check
904 Common Report Var(flag_stack_check)
905 Insert stack checking code into the program
906
907 fstack-limit
908 Common
909
910 fstack-limit-register=
911 Common RejectNegative Joined
912 -fstack-limit-register=<register>       Trap if the stack goes past <register>
913
914 fstack-limit-symbol=
915 Common RejectNegative Joined
916 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
917
918 fstack-protector
919 Common Report Var(flag_stack_protect, 1)
920 Use propolice as a stack protection method
921
922 fstack-protector-all
923 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
924 Use a stack protection method for every function
925
926 fstrength-reduce
927 Common
928 Does nothing.  Preserved for backward compatibility.
929
930 ; Nonzero if we should do (language-dependent) alias analysis.
931 ; Typically, this analysis will assume that expressions of certain
932 ; types do not alias expressions of certain other types.  Only used
933 ; if alias analysis (in general) is enabled.
934 fstrict-aliasing
935 Common Report Var(flag_strict_aliasing) Optimization
936 Assume strict aliasing rules apply
937
938 fstrict-overflow
939 Common Report Var(flag_strict_overflow)
940 Treat signed overflow as undefined
941
942 fsyntax-only
943 Common Report Var(flag_syntax_only)
944 Check for syntax errors, then stop
945
946 ftest-coverage
947 Common Report Var(flag_test_coverage)
948 Create data files needed by \"gcov\"
949
950 fthread-jumps
951 Common Report Var(flag_thread_jumps) Optimization
952 Perform jump threading optimizations
953
954 ftime-report
955 Common Report Var(time_report)
956 Report the time taken by each compiler pass
957
958 ftls-model=
959 Common Joined RejectNegative
960 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
961
962 ftoplevel-reorder
963 Common Report Var(flag_toplevel_reorder) Init(1) Optimization
964 Reorder top level functions, variables, and asms
965
966 ftracer
967 Common Report Var(flag_tracer)
968 Perform superblock formation via tail duplication
969
970 ; Zero means that floating-point math operations cannot generate a
971 ; (user-visible) trap.  This is the case, for example, in nonstop
972 ; IEEE 754 arithmetic.
973 ftrapping-math
974 Common Report Var(flag_trapping_math) Init(1) Optimization
975 Assume floating-point operations can trap
976
977 ftrapv
978 Common Report Var(flag_trapv) Optimization
979 Trap for signed overflow in addition, subtraction and multiplication
980
981 ftree-ccp
982 Common Report Var(flag_tree_ccp) Optimization
983 Enable SSA-CCP optimization on trees
984
985 ftree-store-ccp
986 Common Report Var(flag_tree_store_ccp) Optimization
987 Enable SSA-CCP optimization for stores and loads
988
989 ftree-ch
990 Common Report Var(flag_tree_ch) Optimization
991 Enable loop header copying on trees
992
993 ftree-copyrename
994 Common Report Var(flag_tree_copyrename) Optimization
995 Replace SSA temporaries with better names in copies
996
997 ftree-copy-prop
998 Common Report Var(flag_tree_copy_prop) Optimization
999 Enable copy propagation on trees
1000
1001 ftree-store-copy-prop
1002 Common Report Var(flag_tree_store_copy_prop) Optimization
1003 Enable copy propagation for stores and loads
1004
1005 ftree-dce
1006 Common Report Var(flag_tree_dce) Optimization
1007 Enable SSA dead code elimination optimization on trees
1008
1009 ftree-dominator-opts
1010 Common Report Var(flag_tree_dom) Optimization
1011 Enable dominator optimizations
1012
1013 ftree-dse
1014 Common Report Var(flag_tree_dse) Optimization
1015 Enable dead store elimination
1016
1017 ftree-fre
1018 Common Report Var(flag_tree_fre) Optimization
1019 Enable Full Redundancy Elimination (FRE) on trees
1020
1021 ftree-loop-im
1022 Common Report Var(flag_tree_loop_im) Init(1) Optimization
1023 Enable loop invariant motion on trees
1024
1025 ftree-loop-linear
1026 Common Report Var(flag_tree_loop_linear) Optimization
1027 Enable linear loop transforms on trees
1028
1029 ftree-loop-ivcanon
1030 Common Report Var(flag_tree_loop_ivcanon) Init(1) Optimization
1031 Create canonical induction variables in loops
1032
1033 ftree-loop-optimize
1034 Common Report Var(flag_tree_loop_optimize) Init(1) Optimization
1035 Enable loop optimizations on tree level
1036
1037 ftree-pre
1038 Common Report Var(flag_tree_pre) Optimization
1039 Enable SSA-PRE optimization on trees
1040
1041 ftree-salias
1042 Common Report Var(flag_tree_salias) Optimization
1043 Perform structural alias analysis
1044
1045 ftree-sink
1046 Common Report Var(flag_tree_sink) Optimization
1047 Enable SSA code sinking on trees
1048
1049 ftree-sra
1050 Common Report Var(flag_tree_sra) Optimization
1051 Perform scalar replacement of aggregates
1052
1053 ftree-ter
1054 Common Report Var(flag_tree_ter) Optimization
1055 Replace temporary expressions in the SSA->normal pass
1056
1057 ftree-lrs
1058 Common Report Var(flag_tree_live_range_split) Optimization
1059 Perform live range splitting during the SSA->normal pass
1060
1061 ftree-vrp
1062 Common Report Var(flag_tree_vrp) Init(0) Optimization
1063 Perform Value Range Propagation on trees
1064
1065 funit-at-a-time
1066 Common Report Var(flag_unit_at_a_time) Optimization
1067 Compile whole compilation unit at a time
1068
1069 funroll-loops
1070 Common Report Var(flag_unroll_loops) Optimization
1071 Perform loop unrolling when iteration count is known
1072
1073 funroll-all-loops
1074 Common Report Var(flag_unroll_all_loops) Optimization
1075 Perform loop unrolling for all loops
1076
1077 ; Nonzero means that loop optimizer may assume that the induction variables
1078 ; that control loops do not overflow and that the loops with nontrivial
1079 ; exit condition are not infinite
1080 funsafe-loop-optimizations
1081 Common Report Var(flag_unsafe_loop_optimizations) Optimization
1082 Allow loop optimizations to assume that the loops behave in normal way
1083
1084 ; Nonzero means that unsafe floating-point math optimizations are allowed
1085 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1086 ; are allowed to assume that their arguments and results are "normal"
1087 ; (e.g., nonnegative for SQRT).
1088 funsafe-math-optimizations
1089 Common Report Var(flag_unsafe_math_optimizations) Optimization
1090 Allow math optimizations that may violate IEEE or ISO standards
1091
1092 funswitch-loops
1093 Common Report Var(flag_unswitch_loops) Optimization
1094 Perform loop unswitching
1095
1096 funwind-tables
1097 Common Report Var(flag_unwind_tables) Optimization
1098 Just generate unwind tables for exception handling
1099
1100 fvar-tracking
1101 Common Report Var(flag_var_tracking) VarExists Optimization
1102 Perform variable tracking
1103
1104 ftree-vectorize
1105 Common Report Var(flag_tree_vectorize) Optimization
1106 Enable loop vectorization on trees
1107
1108 ftree-vect-loop-version
1109 Common Report Var(flag_tree_vect_loop_version) Init(1) Optimization
1110 Enable loop versioning when doing loop vectorization on trees
1111
1112 ftree-vectorizer-verbose=
1113 Common RejectNegative Joined
1114 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1115
1116 ftree-scev-cprop
1117 Common Report Var(flag_tree_scev_cprop) Init(1) Optimization
1118 Enable copy propagation of scalar-evolution information.
1119
1120 ; -fverbose-asm causes extra commentary information to be produced in
1121 ; the generated assembly code (to make it more readable).  This option
1122 ; is generally only of use to those who actually need to read the
1123 ; generated assembly code (perhaps while debugging the compiler itself).
1124 ; -fno-verbose-asm, the default, causes the extra information
1125 ; to not be added and is useful when comparing two assembler files.
1126 fverbose-asm
1127 Common Report Var(flag_verbose_asm)
1128 Add extra commentary to assembler output
1129
1130 fvisibility=
1131 Common Joined RejectNegative
1132 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1133
1134
1135 fvpt
1136 Common Report Var(flag_value_profile_transformations) Optimization
1137 Use expression value profiles in optimizations
1138
1139 fweb
1140 Common Report Var(flag_web) Init(2) Optimization
1141 Construct webs and split unrelated uses of single variable
1142
1143 fwhole-program
1144 Common Report Var(flag_whole_program) Init(0) Optimization
1145 Perform whole program optimizations
1146
1147 fwrapv
1148 Common Report Var(flag_wrapv) Optimization
1149 Assume signed arithmetic overflow wraps around
1150
1151 fzero-initialized-in-bss
1152 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1153 Put zero initialized data in the bss section
1154
1155 g
1156 Common JoinedOrMissing
1157 Generate debug information in default format
1158
1159 gcoff
1160 Common JoinedOrMissing Negative(gdwarf-2)
1161 Generate debug information in COFF format
1162
1163 gdwarf-2
1164 Common JoinedOrMissing Negative(gstabs)
1165 Generate debug information in DWARF v2 format
1166
1167 ggdb
1168 Common JoinedOrMissing
1169 Generate debug information in default extended format
1170
1171 gstabs
1172 Common JoinedOrMissing Negative(gstabs+)
1173 Generate debug information in STABS format
1174
1175 gstabs+
1176 Common JoinedOrMissing Negative(gvms)
1177 Generate debug information in extended STABS format
1178
1179 gvms
1180 Common JoinedOrMissing Negative(gxcoff)
1181 Generate debug information in VMS format
1182
1183 gxcoff
1184 Common JoinedOrMissing Negative(gxcoff+)
1185 Generate debug information in XCOFF format
1186
1187 gxcoff+
1188 Common JoinedOrMissing Negative(gcoff)
1189 Generate debug information in extended XCOFF format
1190
1191 o
1192 Common Joined Separate
1193 -o <file>       Place output into <file>
1194
1195 p
1196 Common Var(profile_flag)
1197 Enable function profiling
1198
1199 pedantic
1200 Common Var(pedantic)
1201 Issue warnings needed for strict compliance to the standard
1202
1203 pedantic-errors
1204 Common
1205 Like -pedantic but issue them as errors
1206
1207 quiet
1208 Common Var(quiet_flag)
1209 Do not display functions compiled or elapsed time
1210
1211 version
1212 Common Var(version_flag)
1213 Display the compiler's version
1214
1215 w
1216 Common Var(inhibit_warnings)
1217 Suppress warnings
1218
1219 ; This comment is to ensure we retain the blank line above.