OSDN Git Service

d03652c0ad3d01efd6c6dcce807464dc938ef575
[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 fauto-inc-dec
317 Common Report Var(flag_auto_inc_dec) Init(1)
318 Generate auto-inc/dec instructions
319
320 ; -fcheck-bounds causes gcc to generate array bounds checks.
321 ; For C, C++ and ObjC: defaults off.
322 ; For Java: defaults to on.
323 ; For Fortran: defaults to off.
324 fbounds-check
325 Common Report Var(flag_bounds_check)
326 Generate code to check bounds before indexing arrays
327
328 fbranch-count-reg
329 Common Report Var(flag_branch_on_count_reg) Init(1) Optimization
330 Replace add, compare, branch with branch on count register
331
332 fbranch-probabilities
333 Common Report Var(flag_branch_probabilities) Optimization
334 Use profiling information for branch probabilities
335
336 fbranch-target-load-optimize
337 Common Report Var(flag_branch_target_load_optimize) Optimization
338 Perform branch target load optimization before prologue / epilogue threading
339
340 fbranch-target-load-optimize2
341 Common Report Var(flag_branch_target_load_optimize2) Optimization
342 Perform branch target load optimization after prologue / epilogue threading
343
344 fbtr-bb-exclusive
345 Common Report Var(flag_btr_bb_exclusive) Optimization
346 Restrict target load migration not to re-use registers in any basic block
347
348 fcall-saved-
349 Common Joined RejectNegative
350 -fcall-saved-<register> Mark <register> as being preserved across functions
351
352 fcall-used-
353 Common Joined RejectNegative
354 -fcall-used-<register>  Mark <register> as being corrupted by function calls
355
356 ; Nonzero for -fcaller-saves: allocate values in regs that need to
357 ; be saved across function calls, if that produces overall better code.
358 ; Optional now, so people can test it.
359 fcaller-saves
360 Common Report Var(flag_caller_saves) Optimization
361 Save registers around function calls
362
363 fcheck-data-deps
364 Common Report Var(flag_check_data_deps)
365 Compare the results of several data dependence analyzers.
366
367 fcommon
368 Common Report Var(flag_no_common,0) Optimization
369 Do not put uninitialized globals in the common section
370
371 fcprop-registers
372 Common Report Var(flag_cprop_registers) Optimization
373 Perform a register copy-propagation optimization pass
374
375 fcrossjumping
376 Common Report Var(flag_crossjumping) Optimization
377 Perform cross-jumping optimization
378
379 fcse-follow-jumps
380 Common Report Var(flag_cse_follow_jumps) Optimization
381 When running CSE, follow jumps to their targets
382
383 fcse-skip-blocks
384 Common Report Var(flag_cse_skip_blocks) Optimization
385 When running CSE, follow conditional jumps
386
387 fcx-limited-range
388 Common Report Var(flag_cx_limited_range) Optimization
389 Omit range reduction step when performing complex division
390
391 fdata-sections
392 Common Report Var(flag_data_sections) Optimization
393 Place data items into their own section
394
395 fdbg-cnt-list
396 Common Report
397 List all available debugging counters with their limits and counts.
398
399 fdbg-cnt=
400 Common RejectNegative Joined
401 -fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...]    Set the debug counter limit.   
402
403 ; Nonzero for -fdefer-pop: don't pop args after each function call
404 ; instead save them up to pop many calls' args with one insns.
405 fdefer-pop
406 Common Report Var(flag_defer_pop) Optimization
407 Defer popping functions args from stack until later
408
409 fdelayed-branch
410 Common Report Var(flag_delayed_branch) Optimization
411 Attempt to fill delay slots of branch instructions
412
413 fdelete-null-pointer-checks
414 Common Report Var(flag_delete_null_pointer_checks) Optimization
415 Delete useless null pointer checks
416
417 fdiagnostics-show-location=
418 Common Joined RejectNegative
419 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics
420
421 fdiagnostics-show-option
422 Common
423 Amend appropriate diagnostic messages with the command line option that controls them
424
425 fdump-
426 Common Joined RejectNegative
427 -fdump-<type>   Dump various compiler internals to a file
428
429 fdump-noaddr
430 Common Report Var(flag_dump_noaddr)
431 Suppress output of addresses in debugging dumps
432
433 fdump-unnumbered
434 Common Report Var(flag_dump_unnumbered) VarExists
435 Suppress output of instruction numbers, line number notes and addresses in debugging dumps
436
437 fearly-inlining
438 Common Report Var(flag_early_inlining) Init(1) Optimization
439 Perform early inlining
440
441 feliminate-dwarf2-dups
442 Common Report Var(flag_eliminate_dwarf2_dups)
443 Perform DWARF2 duplicate elimination
444
445 feliminate-unused-debug-symbols
446 Common Report Var(flag_debug_only_used_symbols)
447 Perform unused type elimination in debug info
448
449 feliminate-unused-debug-types
450 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
451 Perform unused type elimination in debug info
452
453 femit-class-debug-always
454 Common Report Var(flag_emit_class_debug_always) Init(1)
455 Do not suppress C++ class debug information.
456
457 fexceptions
458 Common Report Var(flag_exceptions) Optimization
459 Enable exception handling
460
461 fexpensive-optimizations
462 Common Report Var(flag_expensive_optimizations) Optimization
463 Perform a number of minor, expensive optimizations
464
465 ffast-math
466 Common
467
468 ffinite-math-only
469 Common Report Var(flag_finite_math_only) Optimization
470 Assume no NaNs or infinities are generated
471
472 ffixed-
473 Common Joined RejectNegative
474 -ffixed-<register>      Mark <register> as being unavailable to the compiler
475
476 ffloat-store
477 Common Report Var(flag_float_store) Optimization
478 Don't allocate floats and doubles in extended-precision registers
479
480 ; Nonzero for -fforce-addr: load memory address into a register before
481 ; reference to memory.  This makes better cse but slower compilation.
482 fforce-addr
483 Common Report Var(flag_force_addr) Optimization
484 Copy memory address constants into registers before use
485
486 fforward-propagate
487 Common Report Var(flag_forward_propagate) Optimization
488 Perform a forward propagation pass on RTL
489
490 ; Nonzero means don't put addresses of constant functions in registers.
491 ; Used for compiling the Unix kernel, where strange substitutions are
492 ; done on the assembly output.
493 ffunction-cse
494 Common Report Var(flag_no_function_cse,0)
495 Allow function addresses to be held in registers
496
497 ffunction-sections
498 Common Report Var(flag_function_sections)
499 Place each function into its own section
500
501 fgcse
502 Common Report Var(flag_gcse) Optimization
503 Perform global common subexpression elimination
504
505 fgcse-lm
506 Common Report Var(flag_gcse_lm) Init(1) Optimization
507 Perform enhanced load motion during global common subexpression elimination
508
509 fgcse-sm
510 Common Report Var(flag_gcse_sm) Init(0) Optimization
511 Perform store motion after global common subexpression elimination
512
513 fgcse-las
514 Common Report Var(flag_gcse_las) Init(0) Optimization
515 Perform redundant load after store elimination in global common subexpression
516 elimination
517
518 fgcse-after-reload
519 Common Report Var(flag_gcse_after_reload) Optimization
520 Perform global common subexpression elimination after register allocation
521 has finished
522
523 fguess-branch-probability
524 Common Report Var(flag_guess_branch_prob) Optimization
525 Enable guessing of branch probabilities
526
527 ; Nonzero means ignore `#ident' directives.  0 means handle them.
528 ; Generate position-independent code for executables if possible
529 ; On SVR4 targets, it also controls whether or not to emit a
530 ; string identifying the compiler.
531 fident
532 Common Report Var(flag_no_ident,0)
533 Process #ident directives
534
535 fif-conversion
536 Common Report Var(flag_if_conversion) Optimization
537 Perform conversion of conditional jumps to branchless equivalents
538
539 fif-conversion2
540 Common Report Var(flag_if_conversion2) Optimization
541 Perform conversion of conditional jumps to conditional execution
542
543 ; -finhibit-size-directive inhibits output of .size for ELF.
544 ; This is used only for compiling crtstuff.c,
545 ; and it may be extended to other effects
546 ; needed for crtstuff.c on other systems.
547 finhibit-size-directive
548 Common Report Var(flag_inhibit_size_directive)
549 Do not generate .size directives
550
551 ; Nonzero means that functions declared `inline' will be treated
552 ; as `static'.  Prevents generation of zillions of copies of unused
553 ; static inline functions; instead, `inlines' are written out
554 ; only when actually used.  Used in conjunction with -g.  Also
555 ; does the right thing with #pragma interface.
556 finline
557 Common Report Var(flag_no_inline,0) Init(2)
558 Pay attention to the \"inline\" keyword
559
560 finline-functions
561 Common Report Var(flag_inline_functions) Optimization
562 Integrate simple functions into their callers
563
564 finline-functions-called-once
565 Common Report Var(flag_inline_functions_called_once) Init(1) Optimization
566 Integrate functions called once into their callers
567
568 finline-limit-
569 Common RejectNegative Joined UInteger
570
571 finline-limit=
572 Common RejectNegative Joined UInteger
573 -finline-limit=<number> Limit the size of inlined functions to <number>
574
575 finstrument-functions
576 Common Report Var(flag_instrument_function_entry_exit)
577 Instrument function entry and exit with profiling calls
578
579 fipa-cp
580 Common Report Var(flag_ipa_cp) Optimization
581 Perform Interprocedural constant propagation
582
583 fipa-pure-const
584 Common Report Var(flag_ipa_pure_const) Init(0) Optimization
585 Discover pure and const functions
586
587 fipa-pta
588 Common Report Var(flag_ipa_pta) Init(0) Optimization
589 Perform interprocedural points-to analysis
590
591 fipa-reference
592 Common Report Var(flag_ipa_reference) Init(0) Optimization
593 Discover readonly and non addressable static variables
594
595 fipa-type-escape
596 Common Report Var(flag_ipa_type_escape) Init(0) Optimization
597 Type based escape and alias analysis
598
599 fipa-matrix-reorg
600 Common Report Var(flag_ipa_matrix_reorg)
601 Perform matrix layout flattening and transposing based
602 on profiling information.
603
604 fivopts
605 Common Report Var(flag_ivopts) Init(1) Optimization
606 Optimize induction variables on trees
607
608 fjump-tables
609 Common Var(flag_jump_tables) Init(1) Optimization
610 Use jump tables for sufficiently large switch statements
611
612 fkeep-inline-functions
613 Common Report Var(flag_keep_inline_functions)
614 Generate code for functions even if they are fully inlined
615
616 fkeep-static-consts
617 Common Report Var(flag_keep_static_consts) Init(1)
618 Emit static const variables even if they are not used
619
620 fleading-underscore
621 Common Report Var(flag_leading_underscore) Init(-1)
622 Give external symbols a leading underscore
623
624 floop-optimize
625 Common
626 Does nothing.  Preserved for backward compatibility.
627
628 fmath-errno
629 Common Report Var(flag_errno_math) Init(1)
630 Set errno after built-in math functions
631
632 fmem-report
633 Common Report Var(mem_report)
634 Report on permanent memory allocation
635
636 ; This will attempt to merge constant section constants, if 1 only
637 ; string constants and constants from constant pool, if 2 also constant
638 ; variables.
639 fmerge-all-constants
640 Common Report Var(flag_merge_constants,2) Init(1) Optimization
641 Attempt to merge identical constants and constant variables
642
643 fmerge-constants
644 Common Report Var(flag_merge_constants,1) VarExists Optimization
645 Attempt to merge identical constants across compilation units
646
647 fmessage-length=
648 Common RejectNegative Joined UInteger
649 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping
650
651 fmodulo-sched
652 Common Report Var(flag_modulo_sched) Optimization
653 Perform SMS based modulo scheduling before the first scheduling pass
654
655 fmove-loop-invariants
656 Common Report Var(flag_move_loop_invariants) Init(1) Optimization
657 Move loop invariant computations out of loops
658
659 fmudflap
660 Common RejectNegative Report Var(flag_mudflap)
661 Add mudflap bounds-checking instrumentation for single-threaded program
662
663 fmudflapth
664 Common RejectNegative Report VarExists Var(flag_mudflap,2)
665 Add mudflap bounds-checking instrumentation for multi-threaded program
666
667 fmudflapir
668 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
669 Ignore read operations when inserting mudflap instrumentation
670
671 fdce
672 Common Var(flag_dce) Init(1)
673 Use the RTL dead code elimination pass
674
675 fdse
676 Common Var(flag_dse) Init(1)
677 Use the RTL dead store elimination pass
678
679 freschedule-modulo-scheduled-loops
680 Common Report Var(flag_resched_modulo_sched) Optimization
681 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
682
683 fnon-call-exceptions
684 Common Report Var(flag_non_call_exceptions) Optimization
685 Support synchronous non-call exceptions
686
687 fomit-frame-pointer
688 Common Report Var(flag_omit_frame_pointer) Optimization
689 When possible do not generate stack frames
690
691 foptimize-register-move
692 Common Report Var(flag_regmove) Optimization
693 Do the full register move optimization pass
694
695 foptimize-sibling-calls
696 Common Report Var(flag_optimize_sibling_calls) Optimization
697 Optimize sibling and tail recursive calls
698
699 fpre-ipa-mem-report
700 Common Report Var(pre_ipa_mem_report)
701 Report on memory allocation before interprocedural optimization
702
703 fpost-ipa-mem-report
704 Common Report Var(post_ipa_mem_report)
705 Report on memory allocation before interprocedural optimization
706
707 fpack-struct
708 Common Report Var(flag_pack_struct) Optimization
709 Pack structure members together without holes
710
711 fpack-struct=
712 Common RejectNegative Joined UInteger Optimization
713 -fpack-struct=<number>  Set initial maximum structure member alignment
714
715 fpcc-struct-return
716 Common Report Var(flag_pcc_struct_return,1) VarExists
717 Return small aggregates in memory, not registers
718
719 fpeel-loops
720 Common Report Var(flag_peel_loops) Optimization
721 Perform loop peeling
722
723 fpeephole
724 Common Report Var(flag_no_peephole,0) Optimization
725 Enable machine specific peephole optimizations
726
727 fpeephole2
728 Common Report Var(flag_peephole2) Optimization
729 Enable an RTL peephole pass before sched2
730
731 fPIC
732 Common Report Var(flag_pic,2)
733 Generate position-independent code if possible (large mode)
734
735 fPIE
736 Common Report Var(flag_pie,2)
737 Generate position-independent code for executables if possible (large mode)
738
739 fpic
740 Common Report Var(flag_pic,1) VarExists
741 Generate position-independent code if possible (small mode)
742
743 fpie
744 Common Report Var(flag_pie,1) VarExists
745 Generate position-independent code for executables if possible (small mode)
746
747 fpredictive-commoning
748 Common Report Var(flag_predictive_commoning)
749 Run predictive commoning optimization.
750
751 fprefetch-loop-arrays
752 Common Report Var(flag_prefetch_loop_arrays) Optimization
753 Generate prefetch instructions, if available, for arrays in loops
754
755 fprofile
756 Common Report Var(profile_flag)
757 Enable basic program profiling code
758
759 fprofile-arcs
760 Common Report Var(profile_arc_flag)
761 Insert arc-based program profiling code
762
763 fprofile-generate
764 Common
765 Enable common options for generating profile info for profile feedback directed optimizations
766
767 fprofile-use
768 Common
769 Enable common options for performing profile feedback directed optimizations
770
771 fprofile-values
772 Common Report Var(flag_profile_values)
773 Insert code to profile values of expressions
774
775 frandom-seed
776 Common
777
778 frandom-seed=
779 Common Joined RejectNegative
780 -frandom-seed=<string>  Make compile reproducible using <string>
781
782 ; This switch causes the command line that was used to create an
783 ; object file to be recorded into the object file.  The exact format
784 ; of this recording is target and binary file format dependent.
785 ; It is related to the -fverbose-asm switch, but that switch only
786 ; records information in the assembler output file as comments, so
787 ; they never reach the object file.
788 frecord-gcc-switches
789 Common Report Var(flag_record_gcc_switches)
790 Record gcc command line switches in the object file.
791
792 freg-struct-return
793 Common Report Var(flag_pcc_struct_return,0) VarExists Optimization
794 Return small aggregates in registers
795
796 fregmove
797 Common Report Var(flag_regmove) Optimization
798 Enables a register move optimization
799
800 frename-registers
801 Common Report Var(flag_rename_registers) Init(2) Optimization
802 Perform a register renaming optimization pass
803
804 freorder-blocks
805 Common Report Var(flag_reorder_blocks) Optimization
806 Reorder basic blocks to improve code placement
807
808 freorder-blocks-and-partition
809 Common Report Var(flag_reorder_blocks_and_partition) Optimization
810 Reorder basic blocks and partition into hot and cold sections
811
812 freorder-functions
813 Common Report Var(flag_reorder_functions) Optimization
814 Reorder functions to improve code placement
815
816 frerun-cse-after-loop
817 Common Report Var(flag_rerun_cse_after_loop) Init(2) Optimization
818 Add a common subexpression elimination pass after loop optimizations
819
820 frerun-loop-opt
821 Common
822 Does nothing.  Preserved for backward compatibility.
823
824 frounding-math
825 Common Report Var(flag_rounding_math) Optimization
826 Disable optimizations that assume default FP rounding behavior
827
828 fsched-interblock
829 Common Report Var(flag_schedule_interblock) Init(1) Optimization
830 Enable scheduling across basic blocks
831
832 fsched-spec
833 Common Report Var(flag_schedule_speculative) Init(1) Optimization
834 Allow speculative motion of non-loads
835
836 fsched-spec-load
837 Common Report Var(flag_schedule_speculative_load) Optimization
838 Allow speculative motion of some loads
839
840 fsched-spec-load-dangerous
841 Common Report Var(flag_schedule_speculative_load_dangerous) Optimization
842 Allow speculative motion of more loads
843
844 fsched-verbose=
845 Common RejectNegative Joined
846 -fsched-verbose=<number>        Set the verbosity level of the scheduler
847
848 fsched2-use-superblocks
849 Common Report Var(flag_sched2_use_superblocks) Optimization
850 If scheduling post reload, do superblock scheduling
851
852 fsched2-use-traces
853 Common Report Var(flag_sched2_use_traces) Optimization
854 If scheduling post reload, do trace scheduling
855
856 fschedule-insns
857 Common Report Var(flag_schedule_insns) Optimization
858 Reschedule instructions before register allocation
859
860 fschedule-insns2
861 Common Report Var(flag_schedule_insns_after_reload) Optimization
862 Reschedule instructions after register allocation
863
864 ; sched_stalled_insns means that insns can be moved prematurely from the queue
865 ; of stalled insns into the ready list.
866 fsched-stalled-insns
867 Common Report Var(flag_sched_stalled_insns) Optimization
868 Allow premature scheduling of queued insns
869
870 fsched-stalled-insns=
871 Common RejectNegative Joined UInteger
872 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled
873
874 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
875 ; be examined for a dependency on a stalled insn that is candidate for
876 ; premature removal from the queue of stalled insns into the ready list (has
877 ; an effect only if the flag 'sched_stalled_insns' is set).
878 fsched-stalled-insns-dep
879 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1) Optimization
880 Set dependence distance checking in premature scheduling of queued insns
881
882 fsched-stalled-insns-dep=
883 Common RejectNegative Joined UInteger
884 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns
885
886 fsection-anchors
887 Common Report Var(flag_section_anchors) Optimization
888 Access data in the same section from shared anchor points
889
890 frtl-abstract-sequences
891 Common Report Var(flag_rtl_seqabstr) Optimization
892 Perform sequence abstraction optimization on RTL
893
894 fsee
895 Common Report Var(flag_see) Init(0)
896 Eliminate redundant sign extensions using LCM.
897
898 fshow-column
899 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
900 Show column numbers in diagnostics, when available.  Default on
901
902 fsignaling-nans
903 Common Report Var(flag_signaling_nans) Optimization
904 Disable optimizations observable by IEEE signaling NaNs
905
906 fsigned-zeros
907 Common Report Var(flag_signed_zeros) Init(1) Optimization
908 Disable floating point optimizations that ignore the IEEE signedness of zero
909
910 fsingle-precision-constant
911 Common Report Var(flag_single_precision_constant) Optimization
912 Convert floating point constants to single precision constants
913
914 fsplit-ivs-in-unroller
915 Common Report Var(flag_split_ivs_in_unroller) Init(1) Optimization
916 Split lifetimes of induction variables when loops are unrolled
917
918 fsplit-wide-types
919 Common Report Var(flag_split_wide_types) Optimization
920 Split wide types into independent registers
921
922 fvariable-expansion-in-unroller
923 Common Report Var(flag_variable_expansion_in_unroller) Optimization
924 Apply variable expansion when loops are unrolled
925
926 ; Emit code to probe the stack, to help detect stack overflow; also
927 ; may cause large objects to be allocated dynamically.
928 fstack-check
929 Common Report Var(flag_stack_check)
930 Insert stack checking code into the program
931
932 fstack-limit
933 Common
934
935 fstack-limit-register=
936 Common RejectNegative Joined
937 -fstack-limit-register=<register>       Trap if the stack goes past <register>
938
939 fstack-limit-symbol=
940 Common RejectNegative Joined
941 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>
942
943 fstack-protector
944 Common Report Var(flag_stack_protect, 1)
945 Use propolice as a stack protection method
946
947 fstack-protector-all
948 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
949 Use a stack protection method for every function
950
951 fstrength-reduce
952 Common
953 Does nothing.  Preserved for backward compatibility.
954
955 ; Nonzero if we should do (language-dependent) alias analysis.
956 ; Typically, this analysis will assume that expressions of certain
957 ; types do not alias expressions of certain other types.  Only used
958 ; if alias analysis (in general) is enabled.
959 fstrict-aliasing
960 Common Report Var(flag_strict_aliasing) Optimization
961 Assume strict aliasing rules apply
962
963 fstrict-overflow
964 Common Report Var(flag_strict_overflow)
965 Treat signed overflow as undefined
966
967 fsyntax-only
968 Common Report Var(flag_syntax_only)
969 Check for syntax errors, then stop
970
971 ftest-coverage
972 Common Report Var(flag_test_coverage)
973 Create data files needed by \"gcov\"
974
975 fthread-jumps
976 Common Report Var(flag_thread_jumps) Optimization
977 Perform jump threading optimizations
978
979 ftime-report
980 Common Report Var(time_report)
981 Report the time taken by each compiler pass
982
983 ftls-model=
984 Common Joined RejectNegative
985 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model
986
987 ftoplevel-reorder
988 Common Report Var(flag_toplevel_reorder) Init(1) Optimization
989 Reorder top level functions, variables, and asms
990
991 ftracer
992 Common Report Var(flag_tracer)
993 Perform superblock formation via tail duplication
994
995 ; Zero means that floating-point math operations cannot generate a
996 ; (user-visible) trap.  This is the case, for example, in nonstop
997 ; IEEE 754 arithmetic.
998 ftrapping-math
999 Common Report Var(flag_trapping_math) Init(1) Optimization
1000 Assume floating-point operations can trap
1001
1002 ftrapv
1003 Common Report Var(flag_trapv) Optimization
1004 Trap for signed overflow in addition, subtraction and multiplication
1005
1006 ftree-ccp
1007 Common Report Var(flag_tree_ccp) Optimization
1008 Enable SSA-CCP optimization on trees
1009
1010 ftree-store-ccp
1011 Common Report Var(flag_tree_store_ccp) Optimization
1012 Enable SSA-CCP optimization for stores and loads
1013
1014 ftree-ch
1015 Common Report Var(flag_tree_ch) Optimization
1016 Enable loop header copying on trees
1017
1018 ftree-copyrename
1019 Common Report Var(flag_tree_copyrename) Optimization
1020 Replace SSA temporaries with better names in copies
1021
1022 ftree-copy-prop
1023 Common Report Var(flag_tree_copy_prop) Optimization
1024 Enable copy propagation on trees
1025
1026 ftree-store-copy-prop
1027 Common Report Var(flag_tree_store_copy_prop) Optimization
1028 Enable copy propagation for stores and loads
1029
1030 ftree-dce
1031 Common Report Var(flag_tree_dce) Optimization
1032 Enable SSA dead code elimination optimization on trees
1033
1034 ftree-dominator-opts
1035 Common Report Var(flag_tree_dom) Optimization
1036 Enable dominator optimizations
1037
1038 ftree-dse
1039 Common Report Var(flag_tree_dse) Optimization
1040 Enable dead store elimination
1041
1042 ftree-fre
1043 Common Report Var(flag_tree_fre) Optimization
1044 Enable Full Redundancy Elimination (FRE) on trees
1045
1046 ftree-loop-im
1047 Common Report Var(flag_tree_loop_im) Init(1) Optimization
1048 Enable loop invariant motion on trees
1049
1050 ftree-loop-linear
1051 Common Report Var(flag_tree_loop_linear) Optimization
1052 Enable linear loop transforms on trees
1053
1054 ftree-loop-ivcanon
1055 Common Report Var(flag_tree_loop_ivcanon) Init(1) Optimization
1056 Create canonical induction variables in loops
1057
1058 ftree-loop-optimize
1059 Common Report Var(flag_tree_loop_optimize) Init(1) Optimization
1060 Enable loop optimizations on tree level
1061
1062 ftree-pre
1063 Common Report Var(flag_tree_pre) Optimization
1064 Enable SSA-PRE optimization on trees
1065
1066 ftree-salias
1067 Common Report Var(flag_tree_salias) Optimization
1068 Perform structural alias analysis
1069
1070 ftree-sink
1071 Common Report Var(flag_tree_sink) Optimization
1072 Enable SSA code sinking on trees
1073
1074 ftree-sra
1075 Common Report Var(flag_tree_sra) Optimization
1076 Perform scalar replacement of aggregates
1077
1078 ftree-ter
1079 Common Report Var(flag_tree_ter) Optimization
1080 Replace temporary expressions in the SSA->normal pass
1081
1082 ftree-lrs
1083 Common Report Var(flag_tree_live_range_split) Optimization
1084 Perform live range splitting during the SSA->normal pass
1085
1086 ftree-vrp
1087 Common Report Var(flag_tree_vrp) Init(0) Optimization
1088 Perform Value Range Propagation on trees
1089
1090 funit-at-a-time
1091 Common Report Var(flag_unit_at_a_time) Optimization
1092 Compile whole compilation unit at a time
1093
1094 funroll-loops
1095 Common Report Var(flag_unroll_loops) Optimization
1096 Perform loop unrolling when iteration count is known
1097
1098 funroll-all-loops
1099 Common Report Var(flag_unroll_all_loops) Optimization
1100 Perform loop unrolling for all loops
1101
1102 ; Nonzero means that loop optimizer may assume that the induction variables
1103 ; that control loops do not overflow and that the loops with nontrivial
1104 ; exit condition are not infinite
1105 funsafe-loop-optimizations
1106 Common Report Var(flag_unsafe_loop_optimizations) Optimization
1107 Allow loop optimizations to assume that the loops behave in normal way
1108
1109 ; Nonzero means that unsafe floating-point math optimizations are allowed
1110 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
1111 ; are allowed to assume that their arguments and results are "normal"
1112 ; (e.g., nonnegative for SQRT).
1113 funsafe-math-optimizations
1114 Common Report Var(flag_unsafe_math_optimizations) Optimization
1115 Allow math optimizations that may violate IEEE or ISO standards
1116
1117 funswitch-loops
1118 Common Report Var(flag_unswitch_loops) Optimization
1119 Perform loop unswitching
1120
1121 funwind-tables
1122 Common Report Var(flag_unwind_tables) Optimization
1123 Just generate unwind tables for exception handling
1124
1125 fvar-tracking
1126 Common Report Var(flag_var_tracking) VarExists Optimization
1127 Perform variable tracking
1128
1129 ftree-vectorize
1130 Common Report Var(flag_tree_vectorize) Optimization
1131 Enable loop vectorization on trees
1132
1133 fvect-cost-model
1134 Common Report Var(flag_vect_cost_model) Optimization
1135 Enable use of cost model in vectorization
1136
1137 ftree-vect-loop-version
1138 Common Report Var(flag_tree_vect_loop_version) Init(1) Optimization
1139 Enable loop versioning when doing loop vectorization on trees
1140
1141 ftree-vectorizer-verbose=
1142 Common RejectNegative Joined
1143 -ftree-vectorizer-verbose=<number>      Set the verbosity level of the vectorizer
1144
1145 ftree-scev-cprop
1146 Common Report Var(flag_tree_scev_cprop) Init(1) Optimization
1147 Enable copy propagation of scalar-evolution information.
1148
1149 ; -fverbose-asm causes extra commentary information to be produced in
1150 ; the generated assembly code (to make it more readable).  This option
1151 ; is generally only of use to those who actually need to read the
1152 ; generated assembly code (perhaps while debugging the compiler itself).
1153 ; -fno-verbose-asm, the default, causes the extra information
1154 ; to not be added and is useful when comparing two assembler files.
1155 fverbose-asm
1156 Common Report Var(flag_verbose_asm)
1157 Add extra commentary to assembler output
1158
1159 fvisibility=
1160 Common Joined RejectNegative
1161 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility
1162
1163
1164 fvpt
1165 Common Report Var(flag_value_profile_transformations) Optimization
1166 Use expression value profiles in optimizations
1167
1168 fweb
1169 Common Report Var(flag_web) Init(2) Optimization
1170 Construct webs and split unrelated uses of single variable
1171
1172 fwhole-program
1173 Common Report Var(flag_whole_program) Init(0) Optimization
1174 Perform whole program optimizations
1175
1176 fwrapv
1177 Common Report Var(flag_wrapv) Optimization
1178 Assume signed arithmetic overflow wraps around
1179
1180 fzero-initialized-in-bss
1181 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1182 Put zero initialized data in the bss section
1183
1184 g
1185 Common JoinedOrMissing
1186 Generate debug information in default format
1187
1188 gcoff
1189 Common JoinedOrMissing Negative(gdwarf-2)
1190 Generate debug information in COFF format
1191
1192 gdwarf-2
1193 Common JoinedOrMissing Negative(gstabs)
1194 Generate debug information in DWARF v2 format
1195
1196 ggdb
1197 Common JoinedOrMissing
1198 Generate debug information in default extended format
1199
1200 gstabs
1201 Common JoinedOrMissing Negative(gstabs+)
1202 Generate debug information in STABS format
1203
1204 gstabs+
1205 Common JoinedOrMissing Negative(gvms)
1206 Generate debug information in extended STABS format
1207
1208 gvms
1209 Common JoinedOrMissing Negative(gxcoff)
1210 Generate debug information in VMS format
1211
1212 gxcoff
1213 Common JoinedOrMissing Negative(gxcoff+)
1214 Generate debug information in XCOFF format
1215
1216 gxcoff+
1217 Common JoinedOrMissing Negative(gcoff)
1218 Generate debug information in extended XCOFF format
1219
1220 o
1221 Common Joined Separate
1222 -o <file>       Place output into <file>
1223
1224 p
1225 Common Var(profile_flag)
1226 Enable function profiling
1227
1228 pedantic
1229 Common Var(pedantic)
1230 Issue warnings needed for strict compliance to the standard
1231
1232 pedantic-errors
1233 Common
1234 Like -pedantic but issue them as errors
1235
1236 quiet
1237 Common Var(quiet_flag)
1238 Do not display functions compiled or elapsed time
1239
1240 version
1241 Common Var(version_flag)
1242 Display the compiler's version
1243
1244 w
1245 Common Var(inhibit_warnings)
1246 Suppress warnings
1247
1248 ; This comment is to ensure we retain the blank line above.