1 ; Options for the language- and target-independent parts of the compiler.
3 ; Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
5 ; This file is part of GCC.
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
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
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
22 ; See the GCC internals manual for a description of this file's format.
24 ; Please try to keep this file in ASCII collating order.
28 Display this information
32 --param <param>=<value> Set parameter <param> to value. See below for a complete list of parameters
41 Common Joined Separate UInteger
42 -G<number> Put global and static data smaller than <number> bytes into a special section (on some targets)
45 Common JoinedOrMissing
46 -O<number> Set optimization level to <number>
50 Optimize for space rather than speed
54 This switch is deprecated; use -Wextra instead
57 Common Var(warn_aggregate_return)
58 Warn about returning structures, unions or arrays
61 Common Var(warn_always_true)
62 Warn about comparisons that always evaluate to true
65 Common Var(warn_attributes) Init(1)
66 Warn about inappropriate attribute usage
69 Common Var(warn_cast_align)
70 Warn about pointer casts which increase alignment
72 Wdeprecated-declarations
73 Common Var(warn_deprecated_decl) Init(1)
74 Warn about uses of __attribute__((deprecated)) declarations
76 Wdisabled-optimization
77 Common Var(warn_disabled_optimization)
78 Warn when an optimization pass is disabled
81 Common Var(warnings_are_errors)
82 Treat all warnings as errors
86 Print extra (possibly unwanted) warnings
89 Common Var(flag_fatal_errors)
90 Exit on the first error occurred
93 Common Var(warn_inline)
94 Warn when an inlined function cannot be inlined
97 Common RejectNegative Joined UInteger
98 -Wlarger-than-<number> Warn if an object is larger than <number> bytes
100 Wunsafe-loop-optimizations
101 Common Var(warn_unsafe_loop_optimizations)
102 Warn if the loop cannot be optimized due to nontrivial assumptions.
105 Common Var(warn_missing_noreturn)
106 Warn about functions which might be candidates for __attribute__((noreturn))
109 Common Var(warn_packed)
110 Warn when the packed attribute has no effect on struct layout
113 Common Var(warn_padded)
114 Warn when padding is required to align structure members
117 Common Var(warn_shadow)
118 Warn when one local variable shadows another
121 Common Var(warn_stack_protect)
122 Warn when not issuing stack smashing protection for some reason
126 Warn about code which might break strict aliasing rules
129 Common Joined UInteger
130 Warn about code which might break strict aliasing rules
132 Wstring-literal-comparison
133 Common Var(warn_string_literal_comparison)
134 Warn about comparisons to constant string literals
137 Common Var(warn_switch)
138 Warn about enumerated switches, with no default, missing a case
141 Common Var(warn_switch_default)
142 Warn about enumerated switches missing a \"default:\" statement
145 Common Var(warn_switch_enum)
146 Warn about all enumerated switches missing a specific case
149 Common Var(warn_system_headers)
150 Do not suppress warnings from system headers
153 Common Var(warn_uninitialized)
154 Warn about uninitialized automatic variables
157 Common Var(warn_notreached)
158 Warn about code that will never be executed
162 Enable all -Wunused- warnings
165 Common Var(warn_unused_function)
166 Warn when a function is unused
169 Common Var(warn_unused_label)
170 Warn when a label is unused
173 Common Var(warn_unused_parameter)
174 Warn when a function parameter is unused
177 Common Var(warn_unused_value)
178 Warn when an expression value is unused
181 Common Var(warn_unused_variable)
182 Warn when a variable is unused
184 Wvolatile-register-var
185 Common Var(warn_register_var)
186 Warn when a register variable is declared volatile
190 -aux-info <file> Emit declaration information into <file>
203 -d<letters> Enable dumps from specific passes of the compiler
207 -dumpbase <file> Set the file basename to be used for dumps
209 ; The version of the C++ ABI in use. The following values are allowed:
211 ; 0: The version of the ABI believed most conformant with the C++ ABI
212 ; specification. This ABI may change as bugs are discovered and fixed.
213 ; Therefore, 0 will not necessarily indicate the same ABI in different
216 ; 1: The version of the ABI first used in G++ 3.2.
218 ; Additional positive integers will be assigned as new versions of
219 ; the ABI become the default version of the ABI.
221 Common Joined UInteger Var(flag_abi_version) Init(2)
224 Common Report Var(align_functions,0)
225 Align the start of functions
228 Common RejectNegative Joined UInteger
231 Common Report Var(align_jumps,0)
232 Align labels which are only reached by jumping
235 Common RejectNegative Joined UInteger
238 Common Report Var(align_labels,0)
242 Common RejectNegative Joined UInteger
245 Common Report Var(align_loops)
246 Align the start of loops
249 Common RejectNegative Joined UInteger
251 ; This flag is only tested if alias checking is enabled.
252 ; 0 if pointer arguments may alias each other. True in C.
253 ; 1 if pointer arguments may not alias each other but may alias
255 ; 2 if pointer arguments may not alias each other and may not
256 ; alias global variables. True in Fortran.
258 Common Report Var(flag_argument_noalias,0)
259 Specify that arguments may alias each other and globals
262 Common Report Var(flag_argument_noalias,1) VarExists
263 Assume arguments may alias globals but not each other
265 fargument-noalias-global
266 Common Report Var(flag_argument_noalias,2) VarExists
267 Assume arguments alias neither each other nor globals
269 fasynchronous-unwind-tables
270 Common Report Var(flag_asynchronous_unwind_tables)
271 Generate unwind tables that are exact at each instruction boundary
273 ; -fcheck-bounds causes gcc to generate array bounds checks.
274 ; For C, C++ and ObjC: defaults off.
275 ; For Java: defaults to on.
276 ; For Fortran: defaults to off.
278 Common Report Var(flag_bounds_check)
279 Generate code to check bounds before indexing arrays
282 Common Report Var(flag_branch_on_count_reg) Init(1)
283 Replace add, compare, branch with branch on count register
285 fbranch-probabilities
286 Common Report Var(flag_branch_probabilities)
287 Use profiling information for branch probabilities
289 fbranch-target-load-optimize
290 Common Report Var(flag_branch_target_load_optimize)
291 Perform branch target load optimization before prologue / epilogue threading
293 fbranch-target-load-optimize2
294 Common Report Var(flag_branch_target_load_optimize2)
295 Perform branch target load optimization after prologue / epilogue threading
298 Common Report Var(flag_btr_bb_exclusive)
299 Restrict target load migration not to re-use registers in any basic block
302 Common Joined RejectNegative
303 -fcall-saved-<register> Mark <register> as being preserved across functions
306 Common Joined RejectNegative
307 -fcall-used-<register> Mark <register> as being corrupted by function calls
309 ; Nonzero for -fcaller-saves: allocate values in regs that need to
310 ; be saved across function calls, if that produces overall better code.
311 ; Optional now, so people can test it.
313 Common Report Var(flag_caller_saves)
314 Save registers around function calls
317 Common Report Var(flag_no_common,0)
318 Do not put uninitialized globals in the common section
321 Common Report Var(flag_cprop_registers)
322 Perform a register copy-propagation optimization pass
325 Common Report Var(flag_crossjumping)
326 Perform cross-jumping optimization
329 Common Report Var(flag_cse_follow_jumps)
330 When running CSE, follow jumps to their targets
333 Common Report Var(flag_cse_skip_blocks)
334 When running CSE, follow conditional jumps
337 Common Report Var(flag_cx_limited_range)
338 Omit range reduction step when performing complex division
341 Common Report Var(flag_data_sections)
342 Place data items into their own section
344 ; Nonzero for -fdefer-pop: don't pop args after each function call
345 ; instead save them up to pop many calls' args with one insns.
347 Common Report Var(flag_defer_pop)
348 Defer popping functions args from stack until later
351 Common Report Var(flag_delayed_branch)
352 Attempt to fill delay slots of branch instructions
354 fdelete-null-pointer-checks
355 Common Report Var(flag_delete_null_pointer_checks)
356 Delete useless null pointer checks
358 fdiagnostics-show-location=
359 Common Joined RejectNegative
360 -fdiagnostics-show-location=[once|every-line] How often to emit source location at the beginning of line-wrapped diagnostics
362 fdiagnostics-show-option
364 Amend appropriate diagnostic messages with the command line option that controls them
367 Common Joined RejectNegative
368 -fdump-<type> Dump various compiler internals to a file
371 Common Report Var(flag_dump_unnumbered) VarExists
372 Suppress output of instruction numbers and line number notes in debugging dumps
375 Common Report Var(flag_early_inlining) Init(1)
376 Perform early inlining
378 feliminate-dwarf2-dups
379 Common Report Var(flag_eliminate_dwarf2_dups)
380 Perform DWARF2 duplicate elimination
382 feliminate-unused-debug-symbols
383 Common Report Var(flag_debug_only_used_symbols)
384 Perform unused type elimination in debug info
386 feliminate-unused-debug-types
387 Common Report Var(flag_eliminate_unused_debug_types) Init(1)
388 Perform unused type elimination in debug info
391 Common Report Var(flag_exceptions)
392 Enable exception handling
394 fexpensive-optimizations
395 Common Report Var(flag_expensive_optimizations)
396 Perform a number of minor, expensive optimizations
402 Common Report Var(flag_finite_math_only)
403 Assume no NaNs or infinities are generated
406 Common Joined RejectNegative
407 -ffixed-<register> Mark <register> as being unavailable to the compiler
410 Common Report Var(flag_float_store)
411 Don't allocate floats and doubles in extended-precision registers
413 ; Nonzero for -fforce-addr: load memory address into a register before
414 ; reference to memory. This makes better cse but slower compilation.
416 Common Report Var(flag_force_addr)
417 Copy memory address constants into registers before use
419 ; Nonzero for -fforce-mem: load memory value into a register
420 ; before arithmetic on it. This makes better cse but slower compilation.
422 Common Report Var(flag_force_mem)
423 Copy memory operands into registers before use
425 ; Nonzero means don't put addresses of constant functions in registers.
426 ; Used for compiling the Unix kernel, where strange substitutions are
427 ; done on the assembly output.
429 Common Report Var(flag_no_function_cse,0)
430 Allow function addresses to be held in registers
433 Common Report Var(flag_function_sections)
434 Place each function into its own section
437 Common Report Var(flag_gcse)
438 Perform global common subexpression elimination
441 Common Report Var(flag_gcse_lm) Init(1)
442 Perform enhanced load motion during global common subexpression elimination
445 Common Report Var(flag_gcse_sm) Init(0)
446 Perform store motion after global common subexpression elimination
449 Common Report Var(flag_gcse_las) Init(0)
450 Perform redundant load after store elimination in global common subexpression
454 Common Report Var(flag_gcse_after_reload)
455 Perform global common subexpression elimination after register allocation
458 fguess-branch-probability
459 Common Report Var(flag_guess_branch_prob)
460 Enable guessing of branch probabilities
462 ; Nonzero means ignore `#ident' directives. 0 means handle them.
463 ; Generate position-independent code for executables if possible
464 ; On SVR4 targets, it also controls whether or not to emit a
465 ; string identifying the compiler.
467 Common Report Var(flag_no_ident,0)
468 Process #ident directives
471 Common Report Var(flag_if_conversion)
472 Perform conversion of conditional jumps to branchless equivalents
475 Common Report Var(flag_if_conversion2)
476 Perform conversion of conditional jumps to conditional execution
478 ; -finhibit-size-directive inhibits output of .size for ELF.
479 ; This is used only for compiling crtstuff.c,
480 ; and it may be extended to other effects
481 ; needed for crtstuff.c on other systems.
482 finhibit-size-directive
483 Common Report Var(flag_inhibit_size_directive)
484 Do not generate .size directives
486 ; Nonzero means that functions declared `inline' will be treated
487 ; as `static'. Prevents generation of zillions of copies of unused
488 ; static inline functions; instead, `inlines' are written out
489 ; only when actually used. Used in conjunction with -g. Also
490 ; does the right thing with #pragma interface.
492 Common Report Var(flag_no_inline,0) Init(2)
493 Pay attention to the \"inline\" keyword
496 Common Report Var(flag_inline_functions)
497 Integrate simple functions into their callers
499 finline-functions-called-once
500 Common Report Var(flag_inline_functions_called_once) Init(1)
501 Integrate functions called once into their callers
504 Common RejectNegative Joined UInteger
507 Common RejectNegative Joined UInteger
508 -finline-limit=<number> Limit the size of inlined functions to <number>
510 finstrument-functions
511 Common Report Var(flag_instrument_function_entry_exit)
512 Instrument function entry and exit with profiling calls
515 Common Report Var(flag_ipa_cp)
516 Perform Interprocedural constant propagation
519 Common Report Var(flag_ipa_pure_const) Init(0)
520 Discover pure and const functions
523 Common Report Var(flag_ipa_reference) Init(0)
524 Discover readonly and non addressable static variables
527 Common Report Var(flag_ipa_type_escape) Init(0)
528 Type based escape and alias analysis
531 Common Report Var(flag_ivopts) Init(1)
532 Optimize induction variables on trees
535 Common Var(flag_jump_tables) Init(1)
536 Use jump tables for sufficiently large switch statements
538 fkeep-inline-functions
539 Common Report Var(flag_keep_inline_functions)
540 Generate code for functions even if they are fully inlined
543 Common Report Var(flag_keep_static_consts) Init(1)
544 Emit static const variables even if they are not used
547 Common Report Var(flag_leading_underscore) Init(-1)
548 Give external symbols a leading underscore
551 Common Report Var(flag_loop_optimize)
552 Perform loop optimizations
555 Common Report Var(flag_loop_optimize2)
556 Perform loop optimizations using the new loop optimizer
559 Common Report Var(flag_errno_math) Init(1)
560 Set errno after built-in math functions
563 Common Report Var(mem_report)
564 Report on permanent memory allocation
566 ; This will attempt to merge constant section constants, if 1 only
567 ; string constants and constants from constant pool, if 2 also constant
570 Common Report Var(flag_merge_constants,2) Init(1)
571 Attempt to merge identical constants and constant variables
574 Common Report Var(flag_merge_constants,1) VarExists
575 Attempt to merge identical constants across compilation units
578 Common RejectNegative Joined UInteger
579 -fmessage-length=<number> Limit diagnostics to <number> characters per line. 0 suppresses line-wrapping
582 Common Report Var(flag_modulo_sched)
583 Perform SMS based modulo scheduling before the first scheduling pass
585 fmove-loop-invariants
586 Common Report Var(flag_move_loop_invariants)
587 Move loop invariant computations out of loops
590 Common RejectNegative Report Var(flag_mudflap)
591 Add mudflap bounds-checking instrumentation for single-threaded program
594 Common RejectNegative Report Var(flag_mudflap_threads)
595 Add mudflap bounds-checking instrumentation for multi-threaded program
598 Common RejectNegative Report Var(flag_mudflap_ignore_reads)
599 Ignore read operations when inserting mudflap instrumentation
601 freschedule-modulo-scheduled-loops
602 Common Report Var(flag_resched_modulo_sched)
603 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling
606 Common Report Var(flag_non_call_exceptions)
607 Support synchronous non-call exceptions
610 Common Report Var(flag_omit_frame_pointer)
611 When possible do not generate stack frames
613 foptimize-register-move
614 Common Report Var(flag_regmove)
615 Do the full register move optimization pass
617 foptimize-sibling-calls
618 Common Report Var(flag_optimize_sibling_calls)
619 Optimize sibling and tail recursive calls
622 Common Report Var(flag_pack_struct)
623 Pack structure members together without holes
626 Common RejectNegative Joined UInteger
627 -fpack-struct=<number> Set initial maximum structure member alignment
630 Common Report Var(flag_pcc_struct_return,1) VarExists
631 Return small aggregates in memory, not registers
634 Common Report Var(flag_peel_loops)
638 Common Report Var(flag_no_peephole,0)
639 Enable machine specific peephole optimizations
642 Common Report Var(flag_peephole2)
643 Enable an RTL peephole pass before sched2
646 Common Report Var(flag_pic,2)
647 Generate position-independent code if possible (large mode)
650 Common Report Var(flag_pie,2)
651 Generate position-independent code for executables if possible (large mode)
654 Common Report Var(flag_pic,1) VarExists
655 Generate position-independent code if possible (small mode)
658 Common Report Var(flag_pie,1) VarExists
659 Generate position-independent code for executables if possible (small mode)
661 fprefetch-loop-arrays
662 Common Report Var(flag_prefetch_loop_arrays)
663 Generate prefetch instructions, if available, for arrays in loops
666 Common Report Var(profile_flag)
667 Enable basic program profiling code
670 Common Report Var(profile_arc_flag)
671 Insert arc-based program profiling code
675 Enable common options for generating profile info for profile feedback directed optimizations
679 Enable common options for performing profile feedback directed optimizations
682 Common Report Var(flag_profile_values)
683 Insert code to profile values of expressions
689 Common Joined RejectNegative
690 -frandom-seed=<string> Make compile reproducible using <string>
693 Common Report Var(flag_pcc_struct_return,0) VarExists
694 Return small aggregates in registers
697 Common Report Var(flag_regmove)
698 Enables a register move optimization
701 Common Report Var(flag_rename_registers) Init(2)
702 Perform a register renaming optimization pass
705 Common Report Var(flag_reorder_blocks)
706 Reorder basic blocks to improve code placement
708 freorder-blocks-and-partition
709 Common Report Var(flag_reorder_blocks_and_partition)
710 Reorder basic blocks and partition into hot and cold sections
713 Common Report Var(flag_reorder_functions)
714 Reorder functions to improve code placement
716 frerun-cse-after-loop
717 Common Report Var(flag_rerun_cse_after_loop) Init(2)
718 Add a common subexpression elimination pass after loop optimizations
721 Common Report Var(flag_rerun_loop_opt)
722 Run the loop optimizer twice
725 Common Report Var(flag_rounding_math)
726 Disable optimizations that assume default FP rounding behavior
729 Common Report Var(flag_schedule_interblock) Init(1)
730 Enable scheduling across basic blocks
733 Common Report Var(flag_schedule_speculative) Init(1)
734 Allow speculative motion of non-loads
737 Common Report Var(flag_schedule_speculative_load)
738 Allow speculative motion of some loads
740 fsched-spec-load-dangerous
741 Common Report Var(flag_schedule_speculative_load_dangerous)
742 Allow speculative motion of more loads
745 Common RejectNegative Joined
746 -fsched-verbose=<number> Set the verbosity level of the scheduler
748 fsched2-use-superblocks
749 Common Report Var(flag_sched2_use_superblocks)
750 If scheduling post reload, do superblock scheduling
753 Common Report Var(flag_sched2_use_traces)
754 If scheduling post reload, do trace scheduling
757 Common Report Var(flag_schedule_insns)
758 Reschedule instructions before register allocation
761 Common Report Var(flag_schedule_insns_after_reload)
762 Reschedule instructions after register allocation
764 ; sched_stalled_insns means that insns can be moved prematurely from the queue
765 ; of stalled insns into the ready list.
767 Common Report Var(flag_sched_stalled_insns)
768 Allow premature scheduling of queued insns
770 fsched-stalled-insns=
771 Common RejectNegative Joined UInteger
772 -fsched-stalled-insns=<number> Set number of queued insns that can be prematurely scheduled
774 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
775 ; be examined for a dependency on a stalled insn that is candidate for
776 ; premature removal from the queue of stalled insns into the ready list (has
777 ; an effect only if the flag 'sched_stalled_insns' is set).
778 fsched-stalled-insns-dep
779 Common Report Var(flag_sched_stalled_insns_dep,1) Init(1)
780 Set dependence distance checking in premature scheduling of queued insns
782 fsched-stalled-insns-dep=
783 Common RejectNegative Joined UInteger
784 -fsched-stalled-insns-dep=<number> Set dependence distance checking in premature scheduling of queued insns
787 Common Report Var(flag_shared_data)
788 Mark data as shared rather than private
791 Common C ObjC C++ ObjC++ Report Var(flag_show_column) Init(1)
792 Show column numbers in diagnostics, when available. Default on
795 Common Report Var(flag_signaling_nans)
796 Disable optimizations observable by IEEE signaling NaNs
798 fsingle-precision-constant
799 Common Report Var(flag_single_precision_constant)
800 Convert floating point constants to single precision constants
802 fsplit-ivs-in-unroller
803 Common Report Var(flag_split_ivs_in_unroller) Init(1)
804 Split lifetimes of induction variables when loops are unrolled
806 fvariable-expansion-in-unroller
807 Common Report Var(flag_variable_expansion_in_unroller)
808 Apply variable expansion when loops are unrolled
810 ; Emit code to probe the stack, to help detect stack overflow; also
811 ; may cause large objects to be allocated dynamically.
813 Common Report Var(flag_stack_check)
814 Insert stack checking code into the program
819 fstack-limit-register=
820 Common RejectNegative Joined
821 -fstack-limit-register=<register> Trap if the stack goes past <register>
824 Common RejectNegative Joined
825 -fstack-limit-symbol=<name> Trap if the stack goes past symbol <name>
828 Common Report Var(flag_stack_protect, 1)
829 Use propolice as a stack protection method
832 Common Report RejectNegative Var(flag_stack_protect, 2) VarExists
833 Use a stack protection method for every function
836 Common Report Var(flag_strength_reduce)
837 Perform strength reduction optimizations
839 ; Nonzero if we should do (language-dependent) alias analysis.
840 ; Typically, this analysis will assume that expressions of certain
841 ; types do not alias expressions of certain other types. Only used
842 ; if alias analysis (in general) is enabled.
844 Common Report Var(flag_strict_aliasing)
845 Assume strict aliasing rules apply
848 Common Report Var(flag_syntax_only)
849 Check for syntax errors, then stop
852 Common Report Var(flag_test_coverage)
853 Create data files needed by \"gcov\"
856 Common Report Var(flag_thread_jumps)
857 Perform jump threading optimizations
860 Common Report Var(time_report)
861 Report the time taken by each compiler pass
864 Common Joined RejectNegative
865 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec] Set the default thread-local storage code generation model
868 Common Report Var(flag_tracer)
869 Perform superblock formation via tail duplication
871 ; Zero means that floating-point math operations cannot generate a
872 ; (user-visible) trap. This is the case, for example, in nonstop
873 ; IEEE 754 arithmetic.
875 Common Report Var(flag_trapping_math) Init(1)
876 Assume floating-point operations can trap
879 Common Report Var(flag_trapv)
880 Trap for signed overflow in addition, subtraction and multiplication
883 Common Report Var(flag_tree_ccp)
884 Enable SSA-CCP optimization on trees
887 Common Report Var(flag_tree_store_ccp)
888 Enable SSA-CCP optimization for stores and loads
891 Common Report Var(flag_tree_ch)
892 Enable loop header copying on trees
895 Common Report Var(flag_tree_combine_temps)
896 Coalesce memory temporaries in the SSA->normal pass
899 Common Report Var(flag_tree_copyrename)
900 Replace SSA temporaries with better names in copies
903 Common Report Var(flag_tree_copy_prop)
904 Enable copy propagation on trees
906 ftree-store-copy-prop
907 Common Report Var(flag_tree_store_copy_prop)
908 Enable copy propagation for stores and loads
911 Common Report Var(flag_tree_dce)
912 Enable SSA dead code elimination optimization on trees
915 Common Report Var(flag_tree_dom)
916 Enable dominator optimizations
919 Common Report Var(flag_tree_dse)
920 Enable dead store elimination
923 Common Report Var(flag_tree_fre)
924 Enable Full Redundancy Elimination (FRE) on trees
927 Common Report Var(flag_tree_loop_im) Init(1)
928 Enable loop invariant motion on trees
931 Common Report Var(flag_tree_loop_linear)
932 Enable linear loop transforms on trees
935 Common Report Var(flag_tree_loop_ivcanon) Init(1)
936 Create canonical induction variables in loops
939 Common Report Var(flag_tree_loop_optimize) Init(1)
940 Enable loop optimizations on tree level
943 Common Report Var(flag_tree_pre)
944 Enable SSA-PRE optimization on trees
947 Common Report Var(flag_tree_salias)
948 Perform structural alias analysis
951 Common Report Var(flag_tree_sink)
952 Enable SSA code sinking on trees
955 Common Report Var(flag_tree_sra)
956 Perform scalar replacement of aggregates
959 Common Report Var(flag_tree_ter)
960 Replace temporary expressions in the SSA->normal pass
963 Common Report Var(flag_tree_live_range_split)
964 Perform live range splitting during the SSA->normal pass
967 Common Report Var(flag_tree_vrp) Init(0)
968 Perform Value Range Propagation on trees
971 Common Report Var(flag_unit_at_a_time)
972 Compile whole compilation unit at a time
975 Common Report Var(flag_unroll_loops)
976 Perform loop unrolling when iteration count is known
979 Common Report Var(flag_unroll_all_loops)
980 Perform loop unrolling for all loops
982 ; Nonzero means that loop optimizer may assume that the induction variables
983 ; that control loops do not overflow and that the loops with nontrivial
984 ; exit condition are not infinite
985 funsafe-loop-optimizations
986 Common Report Var(flag_unsafe_loop_optimizations)
987 Allow loop optimizations to assume that the loops behave in normal way
989 ; Nonzero means that unsafe floating-point math optimizations are allowed
990 ; for the sake of speed. IEEE compliance is not guaranteed, and operations
991 ; are allowed to assume that their arguments and results are "normal"
992 ; (e.g., nonnegative for SQRT).
993 funsafe-math-optimizations
994 Common Report Var(flag_unsafe_math_optimizations)
995 Allow math optimizations that may violate IEEE or ISO standards
998 Common Report Var(flag_unswitch_loops)
999 Perform loop unswitching
1002 Common Report Var(flag_unwind_tables)
1003 Just generate unwind tables for exception handling
1006 Common Report Var(flag_var_tracking) VarExists
1007 Perform variable tracking
1010 Common Report Var(flag_tree_vectorize)
1011 Enable loop vectorization on trees
1013 ftree-vect-loop-version
1014 Common Report Var(flag_tree_vect_loop_version) Init(1)
1015 Enable loop versioning when doing loop vectorization on trees
1017 ftree-vectorizer-verbose=
1018 Common RejectNegative Joined
1019 -ftree-vectorizer-verbose=<number> Set the verbosity level of the vectorizer
1021 ; -fverbose-asm causes extra commentary information to be produced in
1022 ; the generated assembly code (to make it more readable). This option
1023 ; is generally only of use to those who actually need to read the
1024 ; generated assembly code (perhaps while debugging the compiler itself).
1025 ; -fno-verbose-asm, the default, causes the extra information
1026 ; to not be added and is useful when comparing two assembler files.
1028 Common Report Var(flag_verbose_asm)
1029 Add extra commentary to assembler output
1032 Common Joined RejectNegative
1033 -fvisibility=[default|internal|hidden|protected] Set the default symbol visibility
1037 Common Report Var(flag_value_profile_transformations)
1038 Use expression value profiles in optimizations
1041 Common Report Var(flag_web) Init(2)
1042 Construct webs and split unrelated uses of single variable
1045 Common Report Var(flag_whole_program) Init(0)
1046 Perform whole program optimizations
1049 Common Report Var(flag_wrapv)
1050 Assume signed arithmetic overflow wraps around
1052 fzero-initialized-in-bss
1053 Common Report Var(flag_zero_initialized_in_bss) Init(1)
1054 Put zero initialized data in the bss section
1057 Common JoinedOrMissing
1058 Generate debug information in default format
1061 Common JoinedOrMissing
1062 Generate debug information in COFF format
1065 Common JoinedOrMissing
1066 Generate debug information in DWARF v2 format
1069 Common JoinedOrMissing
1070 Generate debug information in default extended format
1073 Common JoinedOrMissing
1074 Generate debug information in STABS format
1077 Common JoinedOrMissing
1078 Generate debug information in extended STABS format
1081 Common JoinedOrMissing
1082 Generate debug information in VMS format
1085 Common JoinedOrMissing
1086 Generate debug information in XCOFF format
1089 Common JoinedOrMissing
1090 Generate debug information in extended XCOFF format
1093 Common Joined Separate
1094 -o <file> Place output into <file>
1097 Common Var(profile_flag)
1098 Enable function profiling
1101 Common Var(pedantic)
1102 Issue warnings needed for strict compliance to the standard
1106 Like -pedantic but issue them as errors
1109 Common Var(quiet_flag)
1110 Do not display functions compiled or elapsed time
1113 Common Var(version_flag)
1114 Display the compiler's version
1117 Common Var(inhibit_warnings)
1120 ; This comment is to ensure we retain the blank line above.