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