Fix a typo in ChangeLog
[official-gcc.git] / gcc / doc / invoke.texi
blob6eb5c607e7d946c7e7aadbe27082a30f79486f43
1 @c Copyright (C) 1988-2013 Free Software Foundation, Inc.
2 @c This is part of the GCC manual.
3 @c For copying conditions, see the file gcc.texi.
5 @ignore
6 @c man begin INCLUDE
7 @include gcc-vers.texi
8 @c man end
10 @c man begin COPYRIGHT
11 Copyright @copyright{} 1988-2013 Free Software Foundation, Inc.
13 Permission is granted to copy, distribute and/or modify this document
14 under the terms of the GNU Free Documentation License, Version 1.3 or
15 any later version published by the Free Software Foundation; with the
16 Invariant Sections being ``GNU General Public License'' and ``Funding
17 Free Software'', the Front-Cover texts being (a) (see below), and with
18 the Back-Cover Texts being (b) (see below).  A copy of the license is
19 included in the gfdl(7) man page.
21 (a) The FSF's Front-Cover Text is:
23      A GNU Manual
25 (b) The FSF's Back-Cover Text is:
27      You have freedom to copy and modify this GNU Manual, like GNU
28      software.  Copies published by the Free Software Foundation raise
29      funds for GNU development.
30 @c man end
31 @c Set file name and title for the man page.
32 @setfilename gcc
33 @settitle GNU project C and C++ compiler
34 @c man begin SYNOPSIS
35 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
36     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
37     [@option{-W}@var{warn}@dots{}] [@option{-Wpedantic}]
38     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
39     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
40     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
41     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
43 Only the most useful options are listed here; see below for the
44 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
45 @c man end
46 @c man begin SEEALSO
47 gpl(7), gfdl(7), fsf-funding(7),
48 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
49 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
50 @file{ld}, @file{binutils} and @file{gdb}.
51 @c man end
52 @c man begin BUGS
53 For instructions on reporting bugs, see
54 @w{@value{BUGURL}}.
55 @c man end
56 @c man begin AUTHOR
57 See the Info entry for @command{gcc}, or
58 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
59 for contributors to GCC@.
60 @c man end
61 @end ignore
63 @node Invoking GCC
64 @chapter GCC Command Options
65 @cindex GCC command options
66 @cindex command options
67 @cindex options, GCC command
69 @c man begin DESCRIPTION
70 When you invoke GCC, it normally does preprocessing, compilation,
71 assembly and linking.  The ``overall options'' allow you to stop this
72 process at an intermediate stage.  For example, the @option{-c} option
73 says not to run the linker.  Then the output consists of object files
74 output by the assembler.
76 Other options are passed on to one stage of processing.  Some options
77 control the preprocessor and others the compiler itself.  Yet other
78 options control the assembler and linker; most of these are not
79 documented here, since you rarely need to use any of them.
81 @cindex C compilation options
82 Most of the command-line options that you can use with GCC are useful
83 for C programs; when an option is only useful with another language
84 (usually C++), the explanation says so explicitly.  If the description
85 for a particular option does not mention a source language, you can use
86 that option with all supported languages.
88 @cindex C++ compilation options
89 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
90 options for compiling C++ programs.
92 @cindex grouping options
93 @cindex options, grouping
94 The @command{gcc} program accepts options and file names as operands.  Many
95 options have multi-letter names; therefore multiple single-letter options
96 may @emph{not} be grouped: @option{-dv} is very different from @w{@samp{-d
97 -v}}.
99 @cindex order of options
100 @cindex options, order
101 You can mix options and other arguments.  For the most part, the order
102 you use doesn't matter.  Order does matter when you use several
103 options of the same kind; for example, if you specify @option{-L} more
104 than once, the directories are searched in the order specified.  Also,
105 the placement of the @option{-l} option is significant.
107 Many options have long names starting with @samp{-f} or with
108 @samp{-W}---for example,
109 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
110 these have both positive and negative forms; the negative form of
111 @option{-ffoo} is @option{-fno-foo}.  This manual documents
112 only one of these two forms, whichever one is not the default.
114 @c man end
116 @xref{Option Index}, for an index to GCC's options.
118 @menu
119 * Option Summary::      Brief list of all options, without explanations.
120 * Overall Options::     Controlling the kind of output:
121                         an executable, object files, assembler files,
122                         or preprocessed source.
123 * Invoking G++::        Compiling C++ programs.
124 * C Dialect Options::   Controlling the variant of C language compiled.
125 * C++ Dialect Options:: Variations on C++.
126 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
127                         and Objective-C++.
128 * Language Independent Options:: Controlling how diagnostics should be
129                         formatted.
130 * Warning Options::     How picky should the compiler be?
131 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
132 * Optimize Options::    How much optimization?
133 * Preprocessor Options:: Controlling header files and macro definitions.
134                          Also, getting dependency information for Make.
135 * Assembler Options::   Passing options to the assembler.
136 * Link Options::        Specifying libraries and so on.
137 * Directory Options::   Where to find header files and libraries.
138                         Where to find the compiler executable files.
139 * Spec Files::          How to pass switches to sub-processes.
140 * Target Options::      Running a cross-compiler, or an old version of GCC.
141 * Submodel Options::    Specifying minor hardware or convention variations,
142                         such as 68010 vs 68020.
143 * Code Gen Options::    Specifying conventions for function calls, data layout
144                         and register usage.
145 * Environment Variables:: Env vars that affect GCC.
146 * Precompiled Headers:: Compiling a header once, and using it many times.
147 @end menu
149 @c man begin OPTIONS
151 @node Option Summary
152 @section Option Summary
154 Here is a summary of all the options, grouped by type.  Explanations are
155 in the following sections.
157 @table @emph
158 @item Overall Options
159 @xref{Overall Options,,Options Controlling the Kind of Output}.
160 @gccoptlist{-c  -S  -E  -o @var{file}  -no-canonical-prefixes  @gol
161 -pipe  -pass-exit-codes  @gol
162 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{[},@dots{}@r{]]}  --target-help  @gol
163 --version -wrapper @@@var{file} -fplugin=@var{file} -fplugin-arg-@var{name}=@var{arg}  @gol
164 -fdump-ada-spec@r{[}-slim@r{]} -fada-spec-parent=@var{arg} -fdump-go-spec=@var{file}}
166 @item C Language Options
167 @xref{C Dialect Options,,Options Controlling C Dialect}.
168 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
169 -aux-info @var{filename} -fallow-parameterless-variadic-functions @gol
170 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
171 -fhosted  -ffreestanding -fopenmp -fms-extensions -fplan9-extensions @gol
172 -trigraphs  -traditional  -traditional-cpp @gol
173 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
174 -fsigned-bitfields  -fsigned-char @gol
175 -funsigned-bitfields  -funsigned-char}
177 @item C++ Language Options
178 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
179 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
180 -fconstexpr-depth=@var{n}  -ffriend-injection @gol
181 -fno-elide-constructors @gol
182 -fno-enforce-eh-specs @gol
183 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
184 -fno-implicit-templates @gol
185 -fno-implicit-inline-templates @gol
186 -fno-implement-inlines  -fms-extensions @gol
187 -fno-nonansi-builtins  -fnothrow-opt  -fno-operator-names @gol
188 -fno-optional-diags  -fpermissive @gol
189 -fno-pretty-templates @gol
190 -frepo  -fno-rtti  -fstats  -ftemplate-backtrace-limit=@var{n} @gol
191 -ftemplate-depth=@var{n} @gol
192 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
193 -fno-default-inline  -fvisibility-inlines-hidden @gol
194 -fvisibility-ms-compat @gol
195 -fext-numeric-literals @gol
196 -Wabi  -Wconversion-null  -Wctor-dtor-privacy @gol
197 -Wdelete-non-virtual-dtor -Wliteral-suffix -Wnarrowing @gol
198 -Wnoexcept -Wnon-virtual-dtor  -Wreorder @gol
199 -Weffc++  -Wstrict-null-sentinel @gol
200 -Wno-non-template-friend  -Wold-style-cast @gol
201 -Woverloaded-virtual  -Wno-pmf-conversions @gol
202 -Wsign-promo}
204 @item Objective-C and Objective-C++ Language Options
205 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
206 Objective-C and Objective-C++ Dialects}.
207 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
208 -fgnu-runtime  -fnext-runtime @gol
209 -fno-nil-receivers @gol
210 -fobjc-abi-version=@var{n} @gol
211 -fobjc-call-cxx-cdtors @gol
212 -fobjc-direct-dispatch @gol
213 -fobjc-exceptions @gol
214 -fobjc-gc @gol
215 -fobjc-nilcheck @gol
216 -fobjc-std=objc1 @gol
217 -freplace-objc-classes @gol
218 -fzero-link @gol
219 -gen-decls @gol
220 -Wassign-intercept @gol
221 -Wno-protocol  -Wselector @gol
222 -Wstrict-selector-match @gol
223 -Wundeclared-selector}
225 @item Language Independent Options
226 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
227 @gccoptlist{-fmessage-length=@var{n}  @gol
228 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
229 -fdiagnostics-color=@r{[}auto@r{|}never@r{|}always@r{]}  @gol
230 -fno-diagnostics-show-option -fno-diagnostics-show-caret}
232 @item Warning Options
233 @xref{Warning Options,,Options to Request or Suppress Warnings}.
234 @gccoptlist{-fsyntax-only  -fmax-errors=@var{n}  -Wpedantic @gol
235 -pedantic-errors @gol
236 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  @gol
237 -Waggressive-loop-optimizations -Warray-bounds @gol
238 -Wno-attributes -Wno-builtin-macro-redefined @gol
239 -Wc++-compat -Wc++11-compat -Wcast-align  -Wcast-qual  @gol
240 -Wchar-subscripts -Wclobbered  -Wcomment @gol
241 -Wconversion  -Wcoverage-mismatch  -Wno-cpp  -Wno-deprecated  @gol
242 -Wno-deprecated-declarations -Wdisabled-optimization  @gol
243 -Wno-div-by-zero -Wdouble-promotion -Wempty-body  -Wenum-compare @gol
244 -Wno-endif-labels -Werror  -Werror=* @gol
245 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
246 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
247 -Wformat-security  -Wformat-y2k @gol
248 -Wframe-larger-than=@var{len} -Wno-free-nonheap-object -Wjump-misses-init @gol
249 -Wignored-qualifiers @gol
250 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
251 -Winit-self  -Winline -Wmaybe-uninitialized @gol
252 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
253 -Winvalid-pch -Wlarger-than=@var{len}  -Wunsafe-loop-optimizations @gol
254 -Wlogical-op -Wlong-long @gol
255 -Wmain -Wmaybe-uninitialized -Wmissing-braces  -Wmissing-field-initializers @gol
256 -Wmissing-include-dirs @gol
257 -Wno-mudflap @gol
258 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
259 -Woverlength-strings  -Wpacked  -Wpacked-bitfield-compat  -Wpadded @gol
260 -Wparentheses  -Wpedantic-ms-format -Wno-pedantic-ms-format @gol
261 -Wpointer-arith  -Wno-pointer-to-int-cast @gol
262 -Wredundant-decls  -Wno-return-local-addr @gol
263 -Wreturn-type  -Wsequence-point  -Wshadow @gol
264 -Wsign-compare  -Wsign-conversion  -Wsizeof-pointer-memaccess @gol
265 -Wstack-protector -Wstack-usage=@var{len} -Wstrict-aliasing @gol
266 -Wstrict-aliasing=n @gol -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
267 -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{|}format@r{]} @gol
268 -Wmissing-format-attribute @gol
269 -Wswitch  -Wswitch-default  -Wswitch-enum -Wsync-nand @gol
270 -Wsystem-headers  -Wtrampolines  -Wtrigraphs  -Wtype-limits  -Wundef @gol
271 -Wuninitialized  -Wunknown-pragmas  -Wno-pragmas @gol
272 -Wunsuffixed-float-constants  -Wunused  -Wunused-function @gol
273 -Wunused-label  -Wunused-local-typedefs -Wunused-parameter @gol
274 -Wno-unused-result -Wunused-value @gol -Wunused-variable @gol
275 -Wunused-but-set-parameter -Wunused-but-set-variable @gol
276 -Wuseless-cast -Wvariadic-macros -Wvector-operation-performance @gol
277 -Wvla -Wvolatile-register-var  -Wwrite-strings -Wzero-as-null-pointer-constant}
279 @item C and Objective-C-only Warning Options
280 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
281 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
282 -Wold-style-declaration  -Wold-style-definition @gol
283 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
284 -Wdeclaration-after-statement -Wpointer-sign}
286 @item Debugging Options
287 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
288 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
289 -fsanitize=@var{style} @gol
290 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
291 -fdisable-ipa-@var{pass_name} @gol
292 -fdisable-rtl-@var{pass_name} @gol
293 -fdisable-rtl-@var{pass-name}=@var{range-list} @gol
294 -fdisable-tree-@var{pass_name} @gol
295 -fdisable-tree-@var{pass-name}=@var{range-list} @gol
296 -fdump-noaddr -fdump-unnumbered -fdump-unnumbered-links @gol
297 -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
298 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
299 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
300 -fdump-passes @gol
301 -fdump-statistics @gol
302 -fdump-tree-all @gol
303 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
304 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
305 -fdump-tree-cfg -fdump-tree-alias @gol
306 -fdump-tree-ch @gol
307 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
308 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
309 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
310 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
311 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
312 -fdump-tree-phiprop@r{[}-@var{n}@r{]} @gol
313 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
314 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
315 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
316 -fdump-tree-nrv -fdump-tree-vect @gol
317 -fdump-tree-sink @gol
318 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
319 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
320 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
321 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
322 -ftree-vectorizer-verbose=@var{n} @gol
323 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
324 -fdump-final-insns=@var{file} @gol
325 -fcompare-debug@r{[}=@var{opts}@r{]}  -fcompare-debug-second @gol
326 -feliminate-dwarf2-dups -fno-eliminate-unused-debug-types @gol
327 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
328 -fenable-@var{kind}-@var{pass} @gol
329 -fenable-@var{kind}-@var{pass}=@var{range-list} @gol
330 -fdebug-types-section -fmem-report-wpa @gol
331 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
332 -fopt-info @gol
333 -fopt-info-@var{options}@r{[}=@var{file}@r{]} @gol
334 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
335 -fsel-sched-verbose -fsel-sched-dump-cfg -fsel-sched-pipelining-verbose @gol
336 -fstack-usage  -ftest-coverage  -ftime-report -fvar-tracking @gol
337 -fvar-tracking-assignments  -fvar-tracking-assignments-toggle @gol
338 -g  -g@var{level}  -gtoggle  -gcoff  -gdwarf-@var{version} @gol
339 -ggdb  -grecord-gcc-switches  -gno-record-gcc-switches @gol
340 -gstabs  -gstabs+  -gstrict-dwarf  -gno-strict-dwarf @gol
341 -gvms  -gxcoff  -gxcoff+ @gol
342 -fno-merge-debug-strings -fno-dwarf2-cfi-asm @gol
343 -fdebug-prefix-map=@var{old}=@var{new} @gol
344 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
345 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
346 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
347 -print-multi-directory  -print-multi-lib  -print-multi-os-directory @gol
348 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
349 -print-sysroot -print-sysroot-headers-suffix @gol
350 -save-temps -save-temps=cwd -save-temps=obj -time@r{[}=@var{file}@r{]}}
352 @item Optimization Options
353 @xref{Optimize Options,,Options that Control Optimization}.
354 @gccoptlist{-faggressive-loop-optimizations -falign-functions[=@var{n}] @gol
355 -falign-jumps[=@var{n}] @gol
356 -falign-labels[=@var{n}] -falign-loops[=@var{n}] @gol
357 -fassociative-math -fauto-inc-dec -fbranch-probabilities @gol
358 -fbranch-target-load-optimize -fbranch-target-load-optimize2 @gol
359 -fbtr-bb-exclusive -fcaller-saves @gol
360 -fcheck-data-deps -fcombine-stack-adjustments -fconserve-stack @gol
361 -fcompare-elim -fcprop-registers -fcrossjumping @gol
362 -fcse-follow-jumps -fcse-skip-blocks -fcx-fortran-rules @gol
363 -fcx-limited-range @gol
364 -fdata-sections -fdce -fdelayed-branch @gol
365 -fdelete-null-pointer-checks -fdevirtualize -fdse @gol
366 -fearly-inlining -fipa-sra -fexpensive-optimizations -ffat-lto-objects @gol
367 -ffast-math -ffinite-math-only -ffloat-store -fexcess-precision=@var{style} @gol
368 -fforward-propagate -ffp-contract=@var{style} -ffunction-sections @gol
369 -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm -fgraphite-identity @gol
370 -fgcse-sm -fhoist-adjacent-loads -fif-conversion @gol
371 -fif-conversion2 -findirect-inlining @gol
372 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
373 -finline-small-functions -fipa-cp -fipa-cp-clone @gol
374 -fipa-pta -fipa-profile -fipa-pure-const -fipa-reference @gol
375 -fira-algorithm=@var{algorithm} @gol
376 -fira-region=@var{region} -fira-hoist-pressure @gol
377 -fira-loop-pressure -fno-ira-share-save-slots @gol
378 -fno-ira-share-spill-slots -fira-verbose=@var{n} @gol
379 -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
380 -floop-block -floop-interchange -floop-strip-mine -floop-nest-optimize @gol
381 -floop-parallelize-all -flto -flto-compression-level @gol
382 -flto-partition=@var{alg} -flto-report -flto-report-wpa -fmerge-all-constants @gol
383 -fmerge-constants -fmodulo-sched -fmodulo-sched-allow-regmoves @gol
384 -fmove-loop-invariants fmudflap -fmudflapir -fmudflapth -fno-branch-count-reg @gol
385 -fno-default-inline @gol
386 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
387 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
388 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
389 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
390 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
391 -fpartial-inlining -fpeel-loops -fpredictive-commoning @gol
392 -fprefetch-loop-arrays -fprofile-report @gol
393 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
394 -fprofile-generate=@var{path} @gol
395 -fprofile-use -fprofile-use=@var{path} -fprofile-values @gol
396 -freciprocal-math -free -fregmove -frename-registers -freorder-blocks @gol
397 -freorder-blocks-and-partition -freorder-functions @gol
398 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
399 -frounding-math -fsched2-use-superblocks -fsched-pressure @gol
400 -fsched-spec-load -fsched-spec-load-dangerous @gol
401 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
402 -fsched-group-heuristic -fsched-critical-path-heuristic @gol
403 -fsched-spec-insn-heuristic -fsched-rank-heuristic @gol
404 -fsched-last-insn-heuristic -fsched-dep-count-heuristic @gol
405 -fschedule-insns -fschedule-insns2 -fsection-anchors @gol
406 -fselective-scheduling -fselective-scheduling2 @gol
407 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops @gol
408 -fshrink-wrap -fsignaling-nans -fsingle-precision-constant @gol
409 -fsplit-ivs-in-unroller -fsplit-wide-types -fstack-protector @gol
410 -fstack-protector-all -fstrict-aliasing -fstrict-overflow @gol
411 -fthread-jumps -ftracer -ftree-bit-ccp @gol
412 -ftree-builtin-call-dce -ftree-ccp -ftree-ch @gol
413 -ftree-coalesce-inline-vars -ftree-coalesce-vars -ftree-copy-prop @gol
414 -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse @gol
415 -ftree-forwprop -ftree-fre -ftree-loop-if-convert @gol
416 -ftree-loop-if-convert-stores -ftree-loop-im @gol
417 -ftree-phiprop -ftree-loop-distribution -ftree-loop-distribute-patterns @gol
418 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
419 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-partial-pre -ftree-pta @gol
420 -ftree-reassoc -ftree-sink -ftree-slsr -ftree-sra @gol
421 -ftree-switch-conversion -ftree-tail-merge @gol
422 -ftree-ter -ftree-vect-loop-version -ftree-vectorize -ftree-vrp @gol
423 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
424 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
425 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
426 -fwhole-program -fwpa -fuse-ld=@var{linker} -fuse-linker-plugin @gol
427 --param @var{name}=@var{value}
428 -O  -O0  -O1  -O2  -O3  -Os -Ofast -Og}
430 @item Preprocessor Options
431 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
432 @gccoptlist{-A@var{question}=@var{answer} @gol
433 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
434 -C  -dD  -dI  -dM  -dN @gol
435 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
436 -idirafter @var{dir} @gol
437 -include @var{file}  -imacros @var{file} @gol
438 -iprefix @var{file}  -iwithprefix @var{dir} @gol
439 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
440 -imultilib @var{dir} -isysroot @var{dir} @gol
441 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
442 -P  -fdebug-cpp -ftrack-macro-expansion -fworking-directory @gol
443 -remap -trigraphs  -undef  -U@var{macro}  @gol
444 -Wp,@var{option} -Xpreprocessor @var{option} -no-integrated-cpp}
446 @item Assembler Option
447 @xref{Assembler Options,,Passing Options to the Assembler}.
448 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
450 @item Linker Options
451 @xref{Link Options,,Options for Linking}.
452 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
453 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
454 -s  -static -static-libgcc -static-libstdc++ @gol
455 -static-libasan -static-libtsan @gol
456 -shared -shared-libgcc  -symbolic @gol
457 -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
458 -u @var{symbol}}
460 @item Directory Options
461 @xref{Directory Options,,Options for Directory Search}.
462 @gccoptlist{-B@var{prefix} -I@var{dir} -iplugindir=@var{dir} @gol
463 -iquote@var{dir} -L@var{dir} -specs=@var{file} -I- @gol
464 --sysroot=@var{dir} --no-sysroot-suffix}
466 @item Machine Dependent Options
467 @xref{Submodel Options,,Hardware Models and Configurations}.
468 @c This list is ordered alphanumerically by subsection name.
469 @c Try and put the significant identifier (CPU or system) first,
470 @c so users have a clue at guessing where the ones they want will be.
472 @emph{AArch64 Options}
473 @gccoptlist{-mbig-endian  -mlittle-endian @gol
474 -mgeneral-regs-only @gol
475 -mcmodel=tiny  -mcmodel=small  -mcmodel=large @gol
476 -mstrict-align @gol
477 -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
478 -mtls-dialect=desc  -mtls-dialect=traditional @gol
479 -march=@var{name}  -mcpu=@var{name}  -mtune=@var{name}}
481 @emph{Adapteva Epiphany Options}
482 @gccoptlist{-mhalf-reg-file -mprefer-short-insn-regs @gol
483 -mbranch-cost=@var{num} -mcmove -mnops=@var{num} -msoft-cmpsf @gol
484 -msplit-lohi -mpost-inc -mpost-modify -mstack-offset=@var{num} @gol
485 -mround-nearest -mlong-calls -mshort-calls -msmall16 @gol
486 -mfp-mode=@var{mode} -mvect-double -max-vect-align=@var{num} @gol
487 -msplit-vecmove-early -m1reg-@var{reg}}
489 @emph{ARM Options}
490 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
491 -mabi=@var{name} @gol
492 -mapcs-stack-check  -mno-apcs-stack-check @gol
493 -mapcs-float  -mno-apcs-float @gol
494 -mapcs-reentrant  -mno-apcs-reentrant @gol
495 -msched-prolog  -mno-sched-prolog @gol
496 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
497 -mfloat-abi=@var{name} @gol
498 -mfp16-format=@var{name}
499 -mthumb-interwork  -mno-thumb-interwork @gol
500 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
501 -mstructure-size-boundary=@var{n} @gol
502 -mabort-on-noreturn @gol
503 -mlong-calls  -mno-long-calls @gol
504 -msingle-pic-base  -mno-single-pic-base @gol
505 -mpic-register=@var{reg} @gol
506 -mnop-fun-dllimport @gol
507 -mpoke-function-name @gol
508 -mthumb  -marm @gol
509 -mtpcs-frame  -mtpcs-leaf-frame @gol
510 -mcaller-super-interworking  -mcallee-super-interworking @gol
511 -mtp=@var{name} -mtls-dialect=@var{dialect} @gol
512 -mword-relocations @gol
513 -mfix-cortex-m3-ldrd @gol
514 -munaligned-access @gol
515 -mneon-for-64bits}
517 @emph{AVR Options}
518 @gccoptlist{-mmcu=@var{mcu} -maccumulate-args -mbranch-cost=@var{cost} @gol
519 -mcall-prologues -mint8 -mno-interrupts -mrelax @gol
520 -mstrict-X -mtiny-stack -Waddr-space-convert}
522 @emph{Blackfin Options}
523 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
524 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
525 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
526 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
527 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
528 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
529 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
530 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram @gol
531 -micplb}
533 @emph{C6X Options}
534 @gccoptlist{-mbig-endian  -mlittle-endian -march=@var{cpu} @gol
535 -msim -msdata=@var{sdata-type}}
537 @emph{CRIS Options}
538 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
539 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
540 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
541 -mstack-align  -mdata-align  -mconst-align @gol
542 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
543 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
544 -mmul-bug-workaround  -mno-mul-bug-workaround}
546 @emph{CR16 Options}
547 @gccoptlist{-mmac @gol
548 -mcr16cplus -mcr16c @gol
549 -msim -mint32 -mbit-ops
550 -mdata-model=@var{model}}
552 @emph{Darwin Options}
553 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
554 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
555 -client_name  -compatibility_version  -current_version @gol
556 -dead_strip @gol
557 -dependency-file  -dylib_file  -dylinker_install_name @gol
558 -dynamic  -dynamiclib  -exported_symbols_list @gol
559 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
560 -force_flat_namespace  -headerpad_max_install_names @gol
561 -iframework @gol
562 -image_base  -init  -install_name  -keep_private_externs @gol
563 -multi_module  -multiply_defined  -multiply_defined_unused @gol
564 -noall_load   -no_dead_strip_inits_and_terms @gol
565 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
566 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
567 -private_bundle  -read_only_relocs  -sectalign @gol
568 -sectobjectsymbols  -whyload  -seg1addr @gol
569 -sectcreate  -sectobjectsymbols  -sectorder @gol
570 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
571 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
572 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
573 -single_module  -static  -sub_library  -sub_umbrella @gol
574 -twolevel_namespace  -umbrella  -undefined @gol
575 -unexported_symbols_list  -weak_reference_mismatches @gol
576 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
577 -mkernel -mone-byte-bool}
579 @emph{DEC Alpha Options}
580 @gccoptlist{-mno-fp-regs  -msoft-float @gol
581 -mieee  -mieee-with-inexact  -mieee-conformant @gol
582 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
583 -mtrap-precision=@var{mode}  -mbuild-constants @gol
584 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
585 -mbwx  -mmax  -mfix  -mcix @gol
586 -mfloat-vax  -mfloat-ieee @gol
587 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
588 -msmall-text  -mlarge-text @gol
589 -mmemory-latency=@var{time}}
591 @emph{FR30 Options}
592 @gccoptlist{-msmall-model -mno-lsim}
594 @emph{FRV Options}
595 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
596 -mhard-float  -msoft-float @gol
597 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
598 -mdouble  -mno-double @gol
599 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
600 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
601 -mlinked-fp  -mlong-calls  -malign-labels @gol
602 -mlibrary-pic  -macc-4  -macc-8 @gol
603 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
604 -moptimize-membar -mno-optimize-membar @gol
605 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
606 -mvliw-branch  -mno-vliw-branch @gol
607 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
608 -mno-nested-cond-exec  -mtomcat-stats @gol
609 -mTLS -mtls @gol
610 -mcpu=@var{cpu}}
612 @emph{GNU/Linux Options}
613 @gccoptlist{-mglibc -muclibc -mbionic -mandroid @gol
614 -tno-android-cc -tno-android-ld}
616 @emph{H8/300 Options}
617 @gccoptlist{-mrelax  -mh  -ms  -mn  -mexr -mno-exr  -mint32  -malign-300}
619 @emph{HPPA Options}
620 @gccoptlist{-march=@var{architecture-type} @gol
621 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
622 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
623 -mfixed-range=@var{register-range} @gol
624 -mjump-in-delay -mlinker-opt -mlong-calls @gol
625 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
626 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
627 -mno-jump-in-delay  -mno-long-load-store @gol
628 -mno-portable-runtime  -mno-soft-float @gol
629 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
630 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
631 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
632 -munix=@var{unix-std}  -nolibdld  -static  -threads}
634 @emph{i386 and x86-64 Options}
635 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
636 -mfpmath=@var{unit} @gol
637 -masm=@var{dialect}  -mno-fancy-math-387 @gol
638 -mno-fp-ret-in-387  -msoft-float @gol
639 -mno-wide-multiply  -mrtd  -malign-double @gol
640 -mpreferred-stack-boundary=@var{num} @gol
641 -mincoming-stack-boundary=@var{num} @gol
642 -mcld -mcx16 -msahf -mmovbe -mcrc32 @gol
643 -mrecip -mrecip=@var{opt} @gol
644 -mvzeroupper -mprefer-avx128 @gol
645 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 -mavx @gol
646 -mavx2 -maes -mpclmul -mfsgsbase -mrdrnd -mf16c -mfma @gol
647 -msse4a -m3dnow -mpopcnt -mabm -mbmi -mtbm -mfma4 -mxop -mlzcnt @gol
648 -mbmi2 -mrtm -mlwp -mthreads @gol
649 -mno-align-stringops  -minline-all-stringops @gol
650 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
651 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
652 -m96bit-long-double -mlong-double-64 -mlong-double-80 @gol
653 -mregparm=@var{num}  -msseregparm @gol
654 -mveclibabi=@var{type} -mvect8-ret-in-mem @gol
655 -mpc32 -mpc64 -mpc80 -mstackrealign @gol
656 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
657 -mcmodel=@var{code-model} -mabi=@var{name} -maddress-mode=@var{mode} @gol
658 -m32 -m64 -mx32 -mlarge-data-threshold=@var{num} @gol
659 -msse2avx -mfentry -m8bit-idiv @gol
660 -mavx256-split-unaligned-load -mavx256-split-unaligned-store @gol
661 -mstack-protector-guard=@var{guard}}
663 @emph{i386 and x86-64 Windows Options}
664 @gccoptlist{-mconsole -mcygwin -mno-cygwin -mdll @gol
665 -mnop-fun-dllimport -mthread @gol
666 -municode -mwin32 -mwindows -fno-set-stack-executable}
668 @emph{IA-64 Options}
669 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
670 -mvolatile-asm-stop  -mregister-names  -msdata -mno-sdata @gol
671 -mconstant-gp  -mauto-pic  -mfused-madd @gol
672 -minline-float-divide-min-latency @gol
673 -minline-float-divide-max-throughput @gol
674 -mno-inline-float-divide @gol
675 -minline-int-divide-min-latency @gol
676 -minline-int-divide-max-throughput  @gol
677 -mno-inline-int-divide @gol
678 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
679 -mno-inline-sqrt @gol
680 -mdwarf2-asm -mearly-stop-bits @gol
681 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
682 -mtune=@var{cpu-type} -milp32 -mlp64 @gol
683 -msched-br-data-spec -msched-ar-data-spec -msched-control-spec @gol
684 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
685 -msched-spec-ldc -msched-spec-control-ldc @gol
686 -msched-prefer-non-data-spec-insns -msched-prefer-non-control-spec-insns @gol
687 -msched-stop-bits-after-every-cycle -msched-count-spec-in-critical-path @gol
688 -msel-sched-dont-check-control-spec -msched-fp-mem-deps-zero-cost @gol
689 -msched-max-memory-insns-hard-limit -msched-max-memory-insns=@var{max-insns}}
691 @emph{LM32 Options}
692 @gccoptlist{-mbarrel-shift-enabled -mdivide-enabled -mmultiply-enabled @gol
693 -msign-extend-enabled -muser-enabled}
695 @emph{M32R/D Options}
696 @gccoptlist{-m32r2 -m32rx -m32r @gol
697 -mdebug @gol
698 -malign-loops -mno-align-loops @gol
699 -missue-rate=@var{number} @gol
700 -mbranch-cost=@var{number} @gol
701 -mmodel=@var{code-size-model-type} @gol
702 -msdata=@var{sdata-type} @gol
703 -mno-flush-func -mflush-func=@var{name} @gol
704 -mno-flush-trap -mflush-trap=@var{number} @gol
705 -G @var{num}}
707 @emph{M32C Options}
708 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
710 @emph{M680x0 Options}
711 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
712 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
713 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
714 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
715 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
716 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
717 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
718 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
719 -mxgot -mno-xgot}
721 @emph{MCore Options}
722 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
723 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
724 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
725 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
726 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
728 @emph{MeP Options}
729 @gccoptlist{-mabsdiff -mall-opts -maverage -mbased=@var{n} -mbitops @gol
730 -mc=@var{n} -mclip -mconfig=@var{name} -mcop -mcop32 -mcop64 -mivc2 @gol
731 -mdc -mdiv -meb -mel -mio-volatile -ml -mleadz -mm -mminmax @gol
732 -mmult -mno-opts -mrepeat -ms -msatur -msdram -msim -msimnovec -mtf @gol
733 -mtiny=@var{n}}
735 @emph{MicroBlaze Options}
736 @gccoptlist{-msoft-float -mhard-float -msmall-divides -mcpu=@var{cpu} @gol
737 -mmemcpy -mxl-soft-mul -mxl-soft-div -mxl-barrel-shift @gol
738 -mxl-pattern-compare -mxl-stack-check -mxl-gp-opt -mno-clearbss @gol
739 -mxl-multiply-high -mxl-float-convert -mxl-float-sqrt @gol
740 -mbig-endian -mlittle-endian -mxl-reorder -mxl-mode-@var{app-model}}
742 @emph{MIPS Options}
743 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
744 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2 @gol
745 -mips64  -mips64r2 @gol
746 -mips16  -mno-mips16  -mflip-mips16 @gol
747 -minterlink-compressed -mno-interlink-compressed @gol
748 -minterlink-mips16  -mno-interlink-mips16 @gol
749 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
750 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
751 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
752 -mno-float -msingle-float  -mdouble-float  @gol
753 -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
754 -mmcu -mmno-mcu @gol
755 -mmicromips -mno-micromips @gol
756 -mfpu=@var{fpu-type} @gol
757 -msmartmips  -mno-smartmips @gol
758 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
759 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
760 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
761 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
762 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
763 -membedded-data  -mno-embedded-data @gol
764 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
765 -mcode-readable=@var{setting} @gol
766 -msplit-addresses  -mno-split-addresses @gol
767 -mexplicit-relocs  -mno-explicit-relocs @gol
768 -mcheck-zero-division  -mno-check-zero-division @gol
769 -mdivide-traps  -mdivide-breaks @gol
770 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
771 -mmad -mno-mad -mimadd -mno-imadd -mfused-madd  -mno-fused-madd  -nocpp @gol
772 -mfix-24k -mno-fix-24k @gol
773 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
774 -mfix-r10000 -mno-fix-r10000  -mfix-vr4120  -mno-fix-vr4120 @gol
775 -mfix-vr4130  -mno-fix-vr4130  -mfix-sb1  -mno-fix-sb1 @gol
776 -mflush-func=@var{func}  -mno-flush-func @gol
777 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
778 -mfp-exceptions -mno-fp-exceptions @gol
779 -mvr4130-align -mno-vr4130-align -msynci -mno-synci @gol
780 -mrelax-pic-calls -mno-relax-pic-calls -mmcount-ra-address}
782 @emph{MMIX Options}
783 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
784 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
785 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
786 -mno-base-addresses  -msingle-exit  -mno-single-exit}
788 @emph{MN10300 Options}
789 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
790 -mno-am33 -mam33 -mam33-2 -mam34 @gol
791 -mtune=@var{cpu-type} @gol
792 -mreturn-pointer-on-d0 @gol
793 -mno-crt0  -mrelax -mliw -msetlb}
795 @emph{Moxie Options}
796 @gccoptlist{-meb -mel -mno-crt0}
798 @emph{PDP-11 Options}
799 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
800 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
801 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
802 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
803 -mbranch-expensive  -mbranch-cheap @gol
804 -munix-asm  -mdec-asm}
806 @emph{picoChip Options}
807 @gccoptlist{-mae=@var{ae_type} -mvliw-lookahead=@var{N} @gol
808 -msymbol-as-address -mno-inefficient-warnings}
810 @emph{PowerPC Options}
811 See RS/6000 and PowerPC Options.
813 @emph{RL78 Options}
814 @gccoptlist{-msim -mmul=none -mmul=g13 -mmul=rl78}
816 @emph{RS/6000 and PowerPC Options}
817 @gccoptlist{-mcpu=@var{cpu-type} @gol
818 -mtune=@var{cpu-type} @gol
819 -mcmodel=@var{code-model} @gol
820 -mpowerpc64 @gol
821 -maltivec  -mno-altivec @gol
822 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
823 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
824 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb -mpopcntd -mno-popcntd @gol
825 -mfprnd  -mno-fprnd @gol
826 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
827 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
828 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
829 -malign-power  -malign-natural @gol
830 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
831 -msingle-float -mdouble-float -msimple-fpu @gol
832 -mstring  -mno-string  -mupdate  -mno-update @gol
833 -mavoid-indexed-addresses  -mno-avoid-indexed-addresses @gol
834 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
835 -mstrict-align  -mno-strict-align  -mrelocatable @gol
836 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
837 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
838 -mdynamic-no-pic  -maltivec -mswdiv  -msingle-pic-base @gol
839 -mprioritize-restricted-insns=@var{priority} @gol
840 -msched-costly-dep=@var{dependence_type} @gol
841 -minsert-sched-nops=@var{scheme} @gol
842 -mcall-sysv  -mcall-netbsd @gol
843 -maix-struct-return  -msvr4-struct-return @gol
844 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
845 -mblock-move-inline-limit=@var{num} @gol
846 -misel -mno-isel @gol
847 -misel=yes  -misel=no @gol
848 -mspe -mno-spe @gol
849 -mspe=yes  -mspe=no @gol
850 -mpaired @gol
851 -mgen-cell-microcode -mwarn-cell-microcode @gol
852 -mvrsave -mno-vrsave @gol
853 -mmulhw -mno-mulhw @gol
854 -mdlmzb -mno-dlmzb @gol
855 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
856 -mprototype  -mno-prototype @gol
857 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
858 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread @gol
859 -mrecip -mrecip=@var{opt} -mno-recip -mrecip-precision @gol
860 -mno-recip-precision @gol
861 -mveclibabi=@var{type} -mfriz -mno-friz @gol
862 -mpointers-to-nested-functions -mno-pointers-to-nested-functions @gol
863 -msave-toc-indirect -mno-save-toc-indirect}
865 @emph{RX Options}
866 @gccoptlist{-m64bit-doubles  -m32bit-doubles  -fpu  -nofpu@gol
867 -mcpu=@gol
868 -mbig-endian-data -mlittle-endian-data @gol
869 -msmall-data @gol
870 -msim  -mno-sim@gol
871 -mas100-syntax -mno-as100-syntax@gol
872 -mrelax@gol
873 -mmax-constant-size=@gol
874 -mint-register=@gol
875 -mpid@gol
876 -mno-warn-multiple-fast-interrupts@gol
877 -msave-acc-in-interrupts}
879 @emph{S/390 and zSeries Options}
880 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
881 -mhard-float  -msoft-float  -mhard-dfp -mno-hard-dfp @gol
882 -mlong-double-64 -mlong-double-128 @gol
883 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
884 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
885 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
886 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
887 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
889 @emph{Score Options}
890 @gccoptlist{-meb -mel @gol
891 -mnhwloop @gol
892 -muls @gol
893 -mmac @gol
894 -mscore5 -mscore5u -mscore7 -mscore7d}
896 @emph{SH Options}
897 @gccoptlist{-m1  -m2  -m2e @gol
898 -m2a-nofpu -m2a-single-only -m2a-single -m2a @gol
899 -m3  -m3e @gol
900 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
901 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
902 -m5-64media  -m5-64media-nofpu @gol
903 -m5-32media  -m5-32media-nofpu @gol
904 -m5-compact  -m5-compact-nofpu @gol
905 -mb  -ml  -mdalign  -mrelax @gol
906 -mbigtable -mfmovd -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
907 -mieee -mno-ieee -mbitops  -misize  -minline-ic_invalidate -mpadstruct @gol
908 -mspace -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
909 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
910 -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
911 -maccumulate-outgoing-args -minvalid-symbols @gol
912 -matomic-model=@var{atomic-model} @gol
913 -mbranch-cost=@var{num} -mzdcbranch -mno-zdcbranch -mcbranchdi -mcmpeqdi @gol
914 -mfused-madd -mno-fused-madd -mfsca -mno-fsca -mfsrra -mno-fsrra @gol
915 -mpretend-cmove -mtas}
917 @emph{Solaris 2 Options}
918 @gccoptlist{-mimpure-text  -mno-impure-text @gol
919 -pthreads -pthread}
921 @emph{SPARC Options}
922 @gccoptlist{-mcpu=@var{cpu-type} @gol
923 -mtune=@var{cpu-type} @gol
924 -mcmodel=@var{code-model} @gol
925 -mmemory-model=@var{mem-model} @gol
926 -m32  -m64  -mapp-regs  -mno-app-regs @gol
927 -mfaster-structs  -mno-faster-structs  -mflat  -mno-flat @gol
928 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
929 -mhard-quad-float  -msoft-quad-float @gol
930 -mstack-bias  -mno-stack-bias @gol
931 -munaligned-doubles  -mno-unaligned-doubles @gol
932 -mv8plus  -mno-v8plus  -mvis  -mno-vis @gol
933 -mvis2  -mno-vis2  -mvis3  -mno-vis3 @gol
934 -mcbcond -mno-cbcond @gol
935 -mfmaf  -mno-fmaf  -mpopc  -mno-popc @gol
936 -mfix-at697f}
938 @emph{SPU Options}
939 @gccoptlist{-mwarn-reloc -merror-reloc @gol
940 -msafe-dma -munsafe-dma @gol
941 -mbranch-hints @gol
942 -msmall-mem -mlarge-mem -mstdmain @gol
943 -mfixed-range=@var{register-range} @gol
944 -mea32 -mea64 @gol
945 -maddress-space-conversion -mno-address-space-conversion @gol
946 -mcache-size=@var{cache-size} @gol
947 -matomic-updates -mno-atomic-updates}
949 @emph{System V Options}
950 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
952 @emph{TILE-Gx Options}
953 @gccoptlist{-mcpu=@var{cpu} -m32 -m64 -mcmodel=@var{code-model}}
955 @emph{TILEPro Options}
956 @gccoptlist{-mcpu=@var{cpu} -m32}
958 @emph{V850 Options}
959 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
960 -mprolog-function  -mno-prolog-function  -mspace @gol
961 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
962 -mapp-regs  -mno-app-regs @gol
963 -mdisable-callt  -mno-disable-callt @gol
964 -mv850e2v3 -mv850e2 -mv850e1 -mv850es @gol
965 -mv850e -mv850 -mv850e3v5 @gol
966 -mloop @gol
967 -mrelax @gol
968 -mlong-jumps @gol
969 -msoft-float @gol
970 -mhard-float @gol
971 -mgcc-abi @gol
972 -mrh850-abi @gol
973 -mbig-switch}
975 @emph{VAX Options}
976 @gccoptlist{-mg  -mgnu  -munix}
978 @emph{VMS Options}
979 @gccoptlist{-mvms-return-codes -mdebug-main=@var{prefix} -mmalloc64 @gol
980 -mpointer-size=@var{size}}
982 @emph{VxWorks Options}
983 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
984 -Xbind-lazy  -Xbind-now}
986 @emph{x86-64 Options}
987 See i386 and x86-64 Options.
989 @emph{Xstormy16 Options}
990 @gccoptlist{-msim}
992 @emph{Xtensa Options}
993 @gccoptlist{-mconst16 -mno-const16 @gol
994 -mfused-madd  -mno-fused-madd @gol
995 -mforce-no-pic @gol
996 -mserialize-volatile  -mno-serialize-volatile @gol
997 -mtext-section-literals  -mno-text-section-literals @gol
998 -mtarget-align  -mno-target-align @gol
999 -mlongcalls  -mno-longcalls}
1001 @emph{zSeries Options}
1002 See S/390 and zSeries Options.
1004 @item Code Generation Options
1005 @xref{Code Gen Options,,Options for Code Generation Conventions}.
1006 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
1007 -ffixed-@var{reg}  -fexceptions @gol
1008 -fnon-call-exceptions  -fdelete-dead-exceptions  -funwind-tables @gol
1009 -fasynchronous-unwind-tables @gol
1010 -finhibit-size-directive  -finstrument-functions @gol
1011 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
1012 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
1013 -fno-common  -fno-ident @gol
1014 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
1015 -fno-jump-tables @gol
1016 -frecord-gcc-switches @gol
1017 -freg-struct-return  -fshort-enums @gol
1018 -fshort-double  -fshort-wchar @gol
1019 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
1020 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
1021 -fno-stack-limit -fsplit-stack @gol
1022 -fleading-underscore  -ftls-model=@var{model} @gol
1023 -fstack-reuse=@var{reuse_level} @gol
1024 -ftrapv  -fwrapv  -fbounds-check @gol
1025 -fvisibility -fstrict-volatile-bitfields -fsync-libcalls}
1026 @end table
1028 @menu
1029 * Overall Options::     Controlling the kind of output:
1030                         an executable, object files, assembler files,
1031                         or preprocessed source.
1032 * C Dialect Options::   Controlling the variant of C language compiled.
1033 * C++ Dialect Options:: Variations on C++.
1034 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
1035                         and Objective-C++.
1036 * Language Independent Options:: Controlling how diagnostics should be
1037                         formatted.
1038 * Warning Options::     How picky should the compiler be?
1039 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
1040 * Optimize Options::    How much optimization?
1041 * Preprocessor Options:: Controlling header files and macro definitions.
1042                          Also, getting dependency information for Make.
1043 * Assembler Options::   Passing options to the assembler.
1044 * Link Options::        Specifying libraries and so on.
1045 * Directory Options::   Where to find header files and libraries.
1046                         Where to find the compiler executable files.
1047 * Spec Files::          How to pass switches to sub-processes.
1048 * Target Options::      Running a cross-compiler, or an old version of GCC.
1049 @end menu
1051 @node Overall Options
1052 @section Options Controlling the Kind of Output
1054 Compilation can involve up to four stages: preprocessing, compilation
1055 proper, assembly and linking, always in that order.  GCC is capable of
1056 preprocessing and compiling several files either into several
1057 assembler input files, or into one assembler input file; then each
1058 assembler input file produces an object file, and linking combines all
1059 the object files (those newly compiled, and those specified as input)
1060 into an executable file.
1062 @cindex file name suffix
1063 For any given input file, the file name suffix determines what kind of
1064 compilation is done:
1066 @table @gcctabopt
1067 @item @var{file}.c
1068 C source code that must be preprocessed.
1070 @item @var{file}.i
1071 C source code that should not be preprocessed.
1073 @item @var{file}.ii
1074 C++ source code that should not be preprocessed.
1076 @item @var{file}.m
1077 Objective-C source code.  Note that you must link with the @file{libobjc}
1078 library to make an Objective-C program work.
1080 @item @var{file}.mi
1081 Objective-C source code that should not be preprocessed.
1083 @item @var{file}.mm
1084 @itemx @var{file}.M
1085 Objective-C++ source code.  Note that you must link with the @file{libobjc}
1086 library to make an Objective-C++ program work.  Note that @samp{.M} refers
1087 to a literal capital M@.
1089 @item @var{file}.mii
1090 Objective-C++ source code that should not be preprocessed.
1092 @item @var{file}.h
1093 C, C++, Objective-C or Objective-C++ header file to be turned into a
1094 precompiled header (default), or C, C++ header file to be turned into an
1095 Ada spec (via the @option{-fdump-ada-spec} switch).
1097 @item @var{file}.cc
1098 @itemx @var{file}.cp
1099 @itemx @var{file}.cxx
1100 @itemx @var{file}.cpp
1101 @itemx @var{file}.CPP
1102 @itemx @var{file}.c++
1103 @itemx @var{file}.C
1104 C++ source code that must be preprocessed.  Note that in @samp{.cxx},
1105 the last two letters must both be literally @samp{x}.  Likewise,
1106 @samp{.C} refers to a literal capital C@.
1108 @item @var{file}.mm
1109 @itemx @var{file}.M
1110 Objective-C++ source code that must be preprocessed.
1112 @item @var{file}.mii
1113 Objective-C++ source code that should not be preprocessed.
1115 @item @var{file}.hh
1116 @itemx @var{file}.H
1117 @itemx @var{file}.hp
1118 @itemx @var{file}.hxx
1119 @itemx @var{file}.hpp
1120 @itemx @var{file}.HPP
1121 @itemx @var{file}.h++
1122 @itemx @var{file}.tcc
1123 C++ header file to be turned into a precompiled header or Ada spec.
1125 @item @var{file}.f
1126 @itemx @var{file}.for
1127 @itemx @var{file}.ftn
1128 Fixed form Fortran source code that should not be preprocessed.
1130 @item @var{file}.F
1131 @itemx @var{file}.FOR
1132 @itemx @var{file}.fpp
1133 @itemx @var{file}.FPP
1134 @itemx @var{file}.FTN
1135 Fixed form Fortran source code that must be preprocessed (with the traditional
1136 preprocessor).
1138 @item @var{file}.f90
1139 @itemx @var{file}.f95
1140 @itemx @var{file}.f03
1141 @itemx @var{file}.f08
1142 Free form Fortran source code that should not be preprocessed.
1144 @item @var{file}.F90
1145 @itemx @var{file}.F95
1146 @itemx @var{file}.F03
1147 @itemx @var{file}.F08
1148 Free form Fortran source code that must be preprocessed (with the
1149 traditional preprocessor).
1151 @item @var{file}.go
1152 Go source code.
1154 @c FIXME: Descriptions of Java file types.
1155 @c @var{file}.java
1156 @c @var{file}.class
1157 @c @var{file}.zip
1158 @c @var{file}.jar
1160 @item @var{file}.ads
1161 Ada source code file that contains a library unit declaration (a
1162 declaration of a package, subprogram, or generic, or a generic
1163 instantiation), or a library unit renaming declaration (a package,
1164 generic, or subprogram renaming declaration).  Such files are also
1165 called @dfn{specs}.
1167 @item @var{file}.adb
1168 Ada source code file containing a library unit body (a subprogram or
1169 package body).  Such files are also called @dfn{bodies}.
1171 @c GCC also knows about some suffixes for languages not yet included:
1172 @c Pascal:
1173 @c @var{file}.p
1174 @c @var{file}.pas
1175 @c Ratfor:
1176 @c @var{file}.r
1178 @item @var{file}.s
1179 Assembler code.
1181 @item @var{file}.S
1182 @itemx @var{file}.sx
1183 Assembler code that must be preprocessed.
1185 @item @var{other}
1186 An object file to be fed straight into linking.
1187 Any file name with no recognized suffix is treated this way.
1188 @end table
1190 @opindex x
1191 You can specify the input language explicitly with the @option{-x} option:
1193 @table @gcctabopt
1194 @item -x @var{language}
1195 Specify explicitly the @var{language} for the following input files
1196 (rather than letting the compiler choose a default based on the file
1197 name suffix).  This option applies to all following input files until
1198 the next @option{-x} option.  Possible values for @var{language} are:
1199 @smallexample
1200 c  c-header  cpp-output
1201 c++  c++-header  c++-cpp-output
1202 objective-c  objective-c-header  objective-c-cpp-output
1203 objective-c++ objective-c++-header objective-c++-cpp-output
1204 assembler  assembler-with-cpp
1206 f77  f77-cpp-input f95  f95-cpp-input
1208 java
1209 @end smallexample
1211 @item -x none
1212 Turn off any specification of a language, so that subsequent files are
1213 handled according to their file name suffixes (as they are if @option{-x}
1214 has not been used at all).
1216 @item -pass-exit-codes
1217 @opindex pass-exit-codes
1218 Normally the @command{gcc} program exits with the code of 1 if any
1219 phase of the compiler returns a non-success return code.  If you specify
1220 @option{-pass-exit-codes}, the @command{gcc} program instead returns with
1221 the numerically highest error produced by any phase returning an error
1222 indication.  The C, C++, and Fortran front ends return 4 if an internal
1223 compiler error is encountered.
1224 @end table
1226 If you only want some of the stages of compilation, you can use
1227 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1228 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1229 @command{gcc} is to stop.  Note that some combinations (for example,
1230 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1232 @table @gcctabopt
1233 @item -c
1234 @opindex c
1235 Compile or assemble the source files, but do not link.  The linking
1236 stage simply is not done.  The ultimate output is in the form of an
1237 object file for each source file.
1239 By default, the object file name for a source file is made by replacing
1240 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1242 Unrecognized input files, not requiring compilation or assembly, are
1243 ignored.
1245 @item -S
1246 @opindex S
1247 Stop after the stage of compilation proper; do not assemble.  The output
1248 is in the form of an assembler code file for each non-assembler input
1249 file specified.
1251 By default, the assembler file name for a source file is made by
1252 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1254 Input files that don't require compilation are ignored.
1256 @item -E
1257 @opindex E
1258 Stop after the preprocessing stage; do not run the compiler proper.  The
1259 output is in the form of preprocessed source code, which is sent to the
1260 standard output.
1262 Input files that don't require preprocessing are ignored.
1264 @cindex output file option
1265 @item -o @var{file}
1266 @opindex o
1267 Place output in file @var{file}.  This applies to whatever
1268 sort of output is being produced, whether it be an executable file,
1269 an object file, an assembler file or preprocessed C code.
1271 If @option{-o} is not specified, the default is to put an executable
1272 file in @file{a.out}, the object file for
1273 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1274 assembler file in @file{@var{source}.s}, a precompiled header file in
1275 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1276 standard output.
1278 @item -v
1279 @opindex v
1280 Print (on standard error output) the commands executed to run the stages
1281 of compilation.  Also print the version number of the compiler driver
1282 program and of the preprocessor and the compiler proper.
1284 @item -###
1285 @opindex ###
1286 Like @option{-v} except the commands are not executed and arguments
1287 are quoted unless they contain only alphanumeric characters or @code{./-_}.
1288 This is useful for shell scripts to capture the driver-generated command lines.
1290 @item -pipe
1291 @opindex pipe
1292 Use pipes rather than temporary files for communication between the
1293 various stages of compilation.  This fails to work on some systems where
1294 the assembler is unable to read from a pipe; but the GNU assembler has
1295 no trouble.
1297 @item --help
1298 @opindex help
1299 Print (on the standard output) a description of the command-line options
1300 understood by @command{gcc}.  If the @option{-v} option is also specified
1301 then @option{--help} is also passed on to the various processes
1302 invoked by @command{gcc}, so that they can display the command-line options
1303 they accept.  If the @option{-Wextra} option has also been specified
1304 (prior to the @option{--help} option), then command-line options that
1305 have no documentation associated with them are also displayed.
1307 @item --target-help
1308 @opindex target-help
1309 Print (on the standard output) a description of target-specific command-line
1310 options for each tool.  For some targets extra target-specific
1311 information may also be printed.
1313 @item --help=@{@var{class}@r{|[}^@r{]}@var{qualifier}@}@r{[},@dots{}@r{]}
1314 Print (on the standard output) a description of the command-line
1315 options understood by the compiler that fit into all specified classes
1316 and qualifiers.  These are the supported classes:
1318 @table @asis
1319 @item @samp{optimizers}
1320 Display all of the optimization options supported by the
1321 compiler.
1323 @item @samp{warnings}
1324 Display all of the options controlling warning messages
1325 produced by the compiler.
1327 @item @samp{target}
1328 Display target-specific options.  Unlike the
1329 @option{--target-help} option however, target-specific options of the
1330 linker and assembler are not displayed.  This is because those
1331 tools do not currently support the extended @option{--help=} syntax.
1333 @item @samp{params}
1334 Display the values recognized by the @option{--param}
1335 option.
1337 @item @var{language}
1338 Display the options supported for @var{language}, where
1339 @var{language} is the name of one of the languages supported in this
1340 version of GCC@.
1342 @item @samp{common}
1343 Display the options that are common to all languages.
1344 @end table
1346 These are the supported qualifiers:
1348 @table @asis
1349 @item @samp{undocumented}
1350 Display only those options that are undocumented.
1352 @item @samp{joined}
1353 Display options taking an argument that appears after an equal
1354 sign in the same continuous piece of text, such as:
1355 @samp{--help=target}.
1357 @item @samp{separate}
1358 Display options taking an argument that appears as a separate word
1359 following the original option, such as: @samp{-o output-file}.
1360 @end table
1362 Thus for example to display all the undocumented target-specific
1363 switches supported by the compiler, use:
1365 @smallexample
1366 --help=target,undocumented
1367 @end smallexample
1369 The sense of a qualifier can be inverted by prefixing it with the
1370 @samp{^} character, so for example to display all binary warning
1371 options (i.e., ones that are either on or off and that do not take an
1372 argument) that have a description, use:
1374 @smallexample
1375 --help=warnings,^joined,^undocumented
1376 @end smallexample
1378 The argument to @option{--help=} should not consist solely of inverted
1379 qualifiers.
1381 Combining several classes is possible, although this usually
1382 restricts the output so much that there is nothing to display.  One
1383 case where it does work, however, is when one of the classes is
1384 @var{target}.  For example, to display all the target-specific
1385 optimization options, use:
1387 @smallexample
1388 --help=target,optimizers
1389 @end smallexample
1391 The @option{--help=} option can be repeated on the command line.  Each
1392 successive use displays its requested class of options, skipping
1393 those that have already been displayed.
1395 If the @option{-Q} option appears on the command line before the
1396 @option{--help=} option, then the descriptive text displayed by
1397 @option{--help=} is changed.  Instead of describing the displayed
1398 options, an indication is given as to whether the option is enabled,
1399 disabled or set to a specific value (assuming that the compiler
1400 knows this at the point where the @option{--help=} option is used).
1402 Here is a truncated example from the ARM port of @command{gcc}:
1404 @smallexample
1405   % gcc -Q -mabi=2 --help=target -c
1406   The following options are target specific:
1407   -mabi=                                2
1408   -mabort-on-noreturn                   [disabled]
1409   -mapcs                                [disabled]
1410 @end smallexample
1412 The output is sensitive to the effects of previous command-line
1413 options, so for example it is possible to find out which optimizations
1414 are enabled at @option{-O2} by using:
1416 @smallexample
1417 -Q -O2 --help=optimizers
1418 @end smallexample
1420 Alternatively you can discover which binary optimizations are enabled
1421 by @option{-O3} by using:
1423 @smallexample
1424 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1425 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1426 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1427 @end smallexample
1429 @item -no-canonical-prefixes
1430 @opindex no-canonical-prefixes
1431 Do not expand any symbolic links, resolve references to @samp{/../}
1432 or @samp{/./}, or make the path absolute when generating a relative
1433 prefix.
1435 @item --version
1436 @opindex version
1437 Display the version number and copyrights of the invoked GCC@.
1439 @item -wrapper
1440 @opindex wrapper
1441 Invoke all subcommands under a wrapper program.  The name of the
1442 wrapper program and its parameters are passed as a comma separated
1443 list.
1445 @smallexample
1446 gcc -c t.c -wrapper gdb,--args
1447 @end smallexample
1449 @noindent
1450 This invokes all subprograms of @command{gcc} under
1451 @samp{gdb --args}, thus the invocation of @command{cc1} is
1452 @samp{gdb --args cc1 @dots{}}.
1454 @item -fplugin=@var{name}.so
1455 Load the plugin code in file @var{name}.so, assumed to be a
1456 shared object to be dlopen'd by the compiler.  The base name of
1457 the shared object file is used to identify the plugin for the
1458 purposes of argument parsing (See
1459 @option{-fplugin-arg-@var{name}-@var{key}=@var{value}} below).
1460 Each plugin should define the callback functions specified in the
1461 Plugins API.
1463 @item -fplugin-arg-@var{name}-@var{key}=@var{value}
1464 Define an argument called @var{key} with a value of @var{value}
1465 for the plugin called @var{name}.
1467 @item -fdump-ada-spec@r{[}-slim@r{]}
1468 For C and C++ source and include files, generate corresponding Ada
1469 specs. @xref{Generating Ada Bindings for C and C++ headers,,, gnat_ugn,
1470 GNAT User's Guide}, which provides detailed documentation on this feature.
1472 @item -fdump-go-spec=@var{file}
1473 For input files in any language, generate corresponding Go
1474 declarations in @var{file}.  This generates Go @code{const},
1475 @code{type}, @code{var}, and @code{func} declarations which may be a
1476 useful way to start writing a Go interface to code written in some
1477 other language.
1479 @include @value{srcdir}/../libiberty/at-file.texi
1480 @end table
1482 @node Invoking G++
1483 @section Compiling C++ Programs
1485 @cindex suffixes for C++ source
1486 @cindex C++ source file suffixes
1487 C++ source files conventionally use one of the suffixes @samp{.C},
1488 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1489 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1490 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1491 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1492 files with these names and compiles them as C++ programs even if you
1493 call the compiler the same way as for compiling C programs (usually
1494 with the name @command{gcc}).
1496 @findex g++
1497 @findex c++
1498 However, the use of @command{gcc} does not add the C++ library.
1499 @command{g++} is a program that calls GCC and automatically specifies linking
1500 against the C++ library.  It treats @samp{.c},
1501 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1502 files unless @option{-x} is used.  This program is also useful when
1503 precompiling a C header file with a @samp{.h} extension for use in C++
1504 compilations.  On many systems, @command{g++} is also installed with
1505 the name @command{c++}.
1507 @cindex invoking @command{g++}
1508 When you compile C++ programs, you may specify many of the same
1509 command-line options that you use for compiling programs in any
1510 language; or command-line options meaningful for C and related
1511 languages; or options that are meaningful only for C++ programs.
1512 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1513 explanations of options for languages related to C@.
1514 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1515 explanations of options that are meaningful only for C++ programs.
1517 @node C Dialect Options
1518 @section Options Controlling C Dialect
1519 @cindex dialect options
1520 @cindex language dialect options
1521 @cindex options, dialect
1523 The following options control the dialect of C (or languages derived
1524 from C, such as C++, Objective-C and Objective-C++) that the compiler
1525 accepts:
1527 @table @gcctabopt
1528 @cindex ANSI support
1529 @cindex ISO support
1530 @item -ansi
1531 @opindex ansi
1532 In C mode, this is equivalent to @option{-std=c90}. In C++ mode, it is
1533 equivalent to @option{-std=c++98}.
1535 This turns off certain features of GCC that are incompatible with ISO
1536 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1537 such as the @code{asm} and @code{typeof} keywords, and
1538 predefined macros such as @code{unix} and @code{vax} that identify the
1539 type of system you are using.  It also enables the undesirable and
1540 rarely used ISO trigraph feature.  For the C compiler,
1541 it disables recognition of C++ style @samp{//} comments as well as
1542 the @code{inline} keyword.
1544 The alternate keywords @code{__asm__}, @code{__extension__},
1545 @code{__inline__} and @code{__typeof__} continue to work despite
1546 @option{-ansi}.  You would not want to use them in an ISO C program, of
1547 course, but it is useful to put them in header files that might be included
1548 in compilations done with @option{-ansi}.  Alternate predefined macros
1549 such as @code{__unix__} and @code{__vax__} are also available, with or
1550 without @option{-ansi}.
1552 The @option{-ansi} option does not cause non-ISO programs to be
1553 rejected gratuitously.  For that, @option{-Wpedantic} is required in
1554 addition to @option{-ansi}.  @xref{Warning Options}.
1556 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1557 option is used.  Some header files may notice this macro and refrain
1558 from declaring certain functions or defining certain macros that the
1559 ISO standard doesn't call for; this is to avoid interfering with any
1560 programs that might use these names for other things.
1562 Functions that are normally built in but do not have semantics
1563 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1564 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1565 built-in functions provided by GCC}, for details of the functions
1566 affected.
1568 @item -std=
1569 @opindex std
1570 Determine the language standard. @xref{Standards,,Language Standards
1571 Supported by GCC}, for details of these standard versions.  This option
1572 is currently only supported when compiling C or C++.
1574 The compiler can accept several base standards, such as @samp{c90} or
1575 @samp{c++98}, and GNU dialects of those standards, such as
1576 @samp{gnu90} or @samp{gnu++98}.  When a base standard is specified, the
1577 compiler accepts all programs following that standard plus those
1578 using GNU extensions that do not contradict it.  For example,
1579 @option{-std=c90} turns off certain features of GCC that are
1580 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1581 keywords, but not other GNU extensions that do not have a meaning in
1582 ISO C90, such as omitting the middle term of a @code{?:}
1583 expression. On the other hand, when a GNU dialect of a standard is
1584 specified, all features supported by the compiler are enabled, even when
1585 those features change the meaning of the base standard.  As a result, some
1586 strict-conforming programs may be rejected.  The particular standard
1587 is used by @option{-Wpedantic} to identify which features are GNU
1588 extensions given that version of the standard. For example
1589 @option{-std=gnu90 -Wpedantic} warns about C++ style @samp{//}
1590 comments, while @option{-std=gnu99 -Wpedantic} does not.
1592 A value for this option must be provided; possible values are
1594 @table @samp
1595 @item c90
1596 @itemx c89
1597 @itemx iso9899:1990
1598 Support all ISO C90 programs (certain GNU extensions that conflict
1599 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1601 @item iso9899:199409
1602 ISO C90 as modified in amendment 1.
1604 @item c99
1605 @itemx c9x
1606 @itemx iso9899:1999
1607 @itemx iso9899:199x
1608 ISO C99.  Note that this standard is not yet fully supported; see
1609 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1610 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1612 @item c11
1613 @itemx c1x
1614 @itemx iso9899:2011
1615 ISO C11, the 2011 revision of the ISO C standard.
1616 Support is incomplete and experimental.  The name @samp{c1x} is
1617 deprecated.
1619 @item gnu90
1620 @itemx gnu89
1621 GNU dialect of ISO C90 (including some C99 features). This
1622 is the default for C code.
1624 @item gnu99
1625 @itemx gnu9x
1626 GNU dialect of ISO C99.  When ISO C99 is fully implemented in GCC,
1627 this will become the default.  The name @samp{gnu9x} is deprecated.
1629 @item gnu11
1630 @itemx gnu1x
1631 GNU dialect of ISO C11.  Support is incomplete and experimental.  The
1632 name @samp{gnu1x} is deprecated.
1634 @item c++98
1635 @itemx c++03
1636 The 1998 ISO C++ standard plus the 2003 technical corrigendum and some
1637 additional defect reports. Same as @option{-ansi} for C++ code.
1639 @item gnu++98
1640 @itemx gnu++03
1641 GNU dialect of @option{-std=c++98}.  This is the default for
1642 C++ code.
1644 @item c++11
1645 @itemx c++0x
1646 The 2011 ISO C++ standard plus amendments.  Support for C++11 is still
1647 experimental, and may change in incompatible ways in future releases.
1648 The name @samp{c++0x} is deprecated.
1650 @item gnu++11
1651 @itemx gnu++0x
1652 GNU dialect of @option{-std=c++11}. Support for C++11 is still
1653 experimental, and may change in incompatible ways in future releases.
1654 The name @samp{gnu++0x} is deprecated.
1656 @item c++1y
1657 The next revision of the ISO C++ standard, tentatively planned for
1658 2014.  Support is highly experimental, and will almost certainly
1659 change in incompatible ways in future releases.
1661 @item gnu++1y
1662 GNU dialect of @option{-std=c++1y}.  Support is highly experimental,
1663 and will almost certainly change in incompatible ways in future
1664 releases.
1665 @end table
1667 @item -fgnu89-inline
1668 @opindex fgnu89-inline
1669 The option @option{-fgnu89-inline} tells GCC to use the traditional
1670 GNU semantics for @code{inline} functions when in C99 mode.
1671 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1672 is accepted and ignored by GCC versions 4.1.3 up to but not including
1673 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1674 C99 mode.  Using this option is roughly equivalent to adding the
1675 @code{gnu_inline} function attribute to all inline functions
1676 (@pxref{Function Attributes}).
1678 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1679 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1680 specifies the default behavior).  This option was first supported in
1681 GCC 4.3.  This option is not supported in @option{-std=c90} or
1682 @option{-std=gnu90} mode.
1684 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1685 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1686 in effect for @code{inline} functions.  @xref{Common Predefined
1687 Macros,,,cpp,The C Preprocessor}.
1689 @item -aux-info @var{filename}
1690 @opindex aux-info
1691 Output to the given filename prototyped declarations for all functions
1692 declared and/or defined in a translation unit, including those in header
1693 files.  This option is silently ignored in any language other than C@.
1695 Besides declarations, the file indicates, in comments, the origin of
1696 each declaration (source file and line), whether the declaration was
1697 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1698 @samp{O} for old, respectively, in the first character after the line
1699 number and the colon), and whether it came from a declaration or a
1700 definition (@samp{C} or @samp{F}, respectively, in the following
1701 character).  In the case of function definitions, a K&R-style list of
1702 arguments followed by their declarations is also provided, inside
1703 comments, after the declaration.
1705 @item -fallow-parameterless-variadic-functions
1706 Accept variadic functions without named parameters.
1708 Although it is possible to define such a function, this is not very
1709 useful as it is not possible to read the arguments.  This is only
1710 supported for C as this construct is allowed by C++.
1712 @item -fno-asm
1713 @opindex fno-asm
1714 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1715 keyword, so that code can use these words as identifiers.  You can use
1716 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1717 instead.  @option{-ansi} implies @option{-fno-asm}.
1719 In C++, this switch only affects the @code{typeof} keyword, since
1720 @code{asm} and @code{inline} are standard keywords.  You may want to
1721 use the @option{-fno-gnu-keywords} flag instead, which has the same
1722 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1723 switch only affects the @code{asm} and @code{typeof} keywords, since
1724 @code{inline} is a standard keyword in ISO C99.
1726 @item -fno-builtin
1727 @itemx -fno-builtin-@var{function}
1728 @opindex fno-builtin
1729 @cindex built-in functions
1730 Don't recognize built-in functions that do not begin with
1731 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1732 functions provided by GCC}, for details of the functions affected,
1733 including those which are not built-in functions when @option{-ansi} or
1734 @option{-std} options for strict ISO C conformance are used because they
1735 do not have an ISO standard meaning.
1737 GCC normally generates special code to handle certain built-in functions
1738 more efficiently; for instance, calls to @code{alloca} may become single
1739 instructions which adjust the stack directly, and calls to @code{memcpy}
1740 may become inline copy loops.  The resulting code is often both smaller
1741 and faster, but since the function calls no longer appear as such, you
1742 cannot set a breakpoint on those calls, nor can you change the behavior
1743 of the functions by linking with a different library.  In addition,
1744 when a function is recognized as a built-in function, GCC may use
1745 information about that function to warn about problems with calls to
1746 that function, or to generate more efficient code, even if the
1747 resulting code still contains calls to that function.  For example,
1748 warnings are given with @option{-Wformat} for bad calls to
1749 @code{printf} when @code{printf} is built in and @code{strlen} is
1750 known not to modify global memory.
1752 With the @option{-fno-builtin-@var{function}} option
1753 only the built-in function @var{function} is
1754 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1755 function is named that is not built-in in this version of GCC, this
1756 option is ignored.  There is no corresponding
1757 @option{-fbuiltin-@var{function}} option; if you wish to enable
1758 built-in functions selectively when using @option{-fno-builtin} or
1759 @option{-ffreestanding}, you may define macros such as:
1761 @smallexample
1762 #define abs(n)          __builtin_abs ((n))
1763 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1764 @end smallexample
1766 @item -fhosted
1767 @opindex fhosted
1768 @cindex hosted environment
1770 Assert that compilation targets a hosted environment.  This implies
1771 @option{-fbuiltin}.  A hosted environment is one in which the
1772 entire standard library is available, and in which @code{main} has a return
1773 type of @code{int}.  Examples are nearly everything except a kernel.
1774 This is equivalent to @option{-fno-freestanding}.
1776 @item -ffreestanding
1777 @opindex ffreestanding
1778 @cindex hosted environment
1780 Assert that compilation targets a freestanding environment.  This
1781 implies @option{-fno-builtin}.  A freestanding environment
1782 is one in which the standard library may not exist, and program startup may
1783 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1784 This is equivalent to @option{-fno-hosted}.
1786 @xref{Standards,,Language Standards Supported by GCC}, for details of
1787 freestanding and hosted environments.
1789 @item -fopenmp
1790 @opindex fopenmp
1791 @cindex OpenMP parallel
1792 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1793 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1794 compiler generates parallel code according to the OpenMP Application
1795 Program Interface v3.0 @w{@uref{http://www.openmp.org/}}.  This option
1796 implies @option{-pthread}, and thus is only supported on targets that
1797 have support for @option{-pthread}.
1799 @item -fgnu-tm
1800 @opindex fgnu-tm
1801 When the option @option{-fgnu-tm} is specified, the compiler
1802 generates code for the Linux variant of Intel's current Transactional
1803 Memory ABI specification document (Revision 1.1, May 6 2009).  This is
1804 an experimental feature whose interface may change in future versions
1805 of GCC, as the official specification changes.  Please note that not
1806 all architectures are supported for this feature.
1808 For more information on GCC's support for transactional memory,
1809 @xref{Enabling libitm,,The GNU Transactional Memory Library,libitm,GNU
1810 Transactional Memory Library}.
1812 Note that the transactional memory feature is not supported with
1813 non-call exceptions (@option{-fnon-call-exceptions}).
1815 @item -fms-extensions
1816 @opindex fms-extensions
1817 Accept some non-standard constructs used in Microsoft header files.
1819 In C++ code, this allows member names in structures to be similar
1820 to previous types declarations.
1822 @smallexample
1823 typedef int UOW;
1824 struct ABC @{
1825   UOW UOW;
1827 @end smallexample
1829 Some cases of unnamed fields in structures and unions are only
1830 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1831 fields within structs/unions}, for details.
1833 @item -fplan9-extensions
1834 Accept some non-standard constructs used in Plan 9 code.
1836 This enables @option{-fms-extensions}, permits passing pointers to
1837 structures with anonymous fields to functions that expect pointers to
1838 elements of the type of the field, and permits referring to anonymous
1839 fields declared using a typedef.  @xref{Unnamed Fields,,Unnamed
1840 struct/union fields within structs/unions}, for details.  This is only
1841 supported for C, not C++.
1843 @item -trigraphs
1844 @opindex trigraphs
1845 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1846 options for strict ISO C conformance) implies @option{-trigraphs}.
1848 @cindex traditional C language
1849 @cindex C language, traditional
1850 @item -traditional
1851 @itemx -traditional-cpp
1852 @opindex traditional-cpp
1853 @opindex traditional
1854 Formerly, these options caused GCC to attempt to emulate a pre-standard
1855 C compiler.  They are now only supported with the @option{-E} switch.
1856 The preprocessor continues to support a pre-standard mode.  See the GNU
1857 CPP manual for details.
1859 @item -fcond-mismatch
1860 @opindex fcond-mismatch
1861 Allow conditional expressions with mismatched types in the second and
1862 third arguments.  The value of such an expression is void.  This option
1863 is not supported for C++.
1865 @item -flax-vector-conversions
1866 @opindex flax-vector-conversions
1867 Allow implicit conversions between vectors with differing numbers of
1868 elements and/or incompatible element types.  This option should not be
1869 used for new code.
1871 @item -funsigned-char
1872 @opindex funsigned-char
1873 Let the type @code{char} be unsigned, like @code{unsigned char}.
1875 Each kind of machine has a default for what @code{char} should
1876 be.  It is either like @code{unsigned char} by default or like
1877 @code{signed char} by default.
1879 Ideally, a portable program should always use @code{signed char} or
1880 @code{unsigned char} when it depends on the signedness of an object.
1881 But many programs have been written to use plain @code{char} and
1882 expect it to be signed, or expect it to be unsigned, depending on the
1883 machines they were written for.  This option, and its inverse, let you
1884 make such a program work with the opposite default.
1886 The type @code{char} is always a distinct type from each of
1887 @code{signed char} or @code{unsigned char}, even though its behavior
1888 is always just like one of those two.
1890 @item -fsigned-char
1891 @opindex fsigned-char
1892 Let the type @code{char} be signed, like @code{signed char}.
1894 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1895 the negative form of @option{-funsigned-char}.  Likewise, the option
1896 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1898 @item -fsigned-bitfields
1899 @itemx -funsigned-bitfields
1900 @itemx -fno-signed-bitfields
1901 @itemx -fno-unsigned-bitfields
1902 @opindex fsigned-bitfields
1903 @opindex funsigned-bitfields
1904 @opindex fno-signed-bitfields
1905 @opindex fno-unsigned-bitfields
1906 These options control whether a bit-field is signed or unsigned, when the
1907 declaration does not use either @code{signed} or @code{unsigned}.  By
1908 default, such a bit-field is signed, because this is consistent: the
1909 basic integer types such as @code{int} are signed types.
1910 @end table
1912 @node C++ Dialect Options
1913 @section Options Controlling C++ Dialect
1915 @cindex compiler options, C++
1916 @cindex C++ options, command-line
1917 @cindex options, C++
1918 This section describes the command-line options that are only meaningful
1919 for C++ programs.  You can also use most of the GNU compiler options
1920 regardless of what language your program is in.  For example, you
1921 might compile a file @code{firstClass.C} like this:
1923 @smallexample
1924 g++ -g -frepo -O -c firstClass.C
1925 @end smallexample
1927 @noindent
1928 In this example, only @option{-frepo} is an option meant
1929 only for C++ programs; you can use the other options with any
1930 language supported by GCC@.
1932 Here is a list of options that are @emph{only} for compiling C++ programs:
1934 @table @gcctabopt
1936 @item -fabi-version=@var{n}
1937 @opindex fabi-version
1938 Use version @var{n} of the C++ ABI@.  The default is version 2.
1940 Version 0 refers to the version conforming most closely to
1941 the C++ ABI specification.  Therefore, the ABI obtained using version 0
1942 will change in different versions of G++ as ABI bugs are fixed.
1944 Version 1 is the version of the C++ ABI that first appeared in G++ 3.2.  
1946 Version 2 is the version of the C++ ABI that first appeared in G++ 3.4.  
1948 Version 3 corrects an error in mangling a constant address as a
1949 template argument.
1951 Version 4, which first appeared in G++ 4.5, implements a standard
1952 mangling for vector types.
1954 Version 5, which first appeared in G++ 4.6, corrects the mangling of
1955 attribute const/volatile on function pointer types, decltype of a
1956 plain decl, and use of a function parameter in the declaration of
1957 another parameter.
1959 Version 6, which first appeared in G++ 4.7, corrects the promotion
1960 behavior of C++11 scoped enums and the mangling of template argument
1961 packs, const/static_cast, prefix ++ and --, and a class scope function
1962 used as a template argument.
1964 See also @option{-Wabi}.
1966 @item -fno-access-control
1967 @opindex fno-access-control
1968 Turn off all access checking.  This switch is mainly useful for working
1969 around bugs in the access control code.
1971 @item -fcheck-new
1972 @opindex fcheck-new
1973 Check that the pointer returned by @code{operator new} is non-null
1974 before attempting to modify the storage allocated.  This check is
1975 normally unnecessary because the C++ standard specifies that
1976 @code{operator new} only returns @code{0} if it is declared
1977 @samp{throw()}, in which case the compiler always checks the
1978 return value even without this option.  In all other cases, when
1979 @code{operator new} has a non-empty exception specification, memory
1980 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1981 @samp{new (nothrow)}.
1983 @item -fconstexpr-depth=@var{n}
1984 @opindex fconstexpr-depth
1985 Set the maximum nested evaluation depth for C++11 constexpr functions
1986 to @var{n}.  A limit is needed to detect endless recursion during
1987 constant expression evaluation.  The minimum specified by the standard
1988 is 512.
1990 @item -fdeduce-init-list
1991 @opindex fdeduce-init-list
1992 Enable deduction of a template type parameter as
1993 @code{std::initializer_list} from a brace-enclosed initializer list, i.e.@:
1995 @smallexample
1996 template <class T> auto forward(T t) -> decltype (realfn (t))
1998   return realfn (t);
2001 void f()
2003   forward(@{1,2@}); // call forward<std::initializer_list<int>>
2005 @end smallexample
2007 This deduction was implemented as a possible extension to the
2008 originally proposed semantics for the C++11 standard, but was not part
2009 of the final standard, so it is disabled by default.  This option is
2010 deprecated, and may be removed in a future version of G++.
2012 @item -ffriend-injection
2013 @opindex ffriend-injection
2014 Inject friend functions into the enclosing namespace, so that they are
2015 visible outside the scope of the class in which they are declared.
2016 Friend functions were documented to work this way in the old Annotated
2017 C++ Reference Manual, and versions of G++ before 4.1 always worked
2018 that way.  However, in ISO C++ a friend function that is not declared
2019 in an enclosing scope can only be found using argument dependent
2020 lookup.  This option causes friends to be injected as they were in
2021 earlier releases.
2023 This option is for compatibility, and may be removed in a future
2024 release of G++.
2026 @item -fno-elide-constructors
2027 @opindex fno-elide-constructors
2028 The C++ standard allows an implementation to omit creating a temporary
2029 that is only used to initialize another object of the same type.
2030 Specifying this option disables that optimization, and forces G++ to
2031 call the copy constructor in all cases.
2033 @item -fno-enforce-eh-specs
2034 @opindex fno-enforce-eh-specs
2035 Don't generate code to check for violation of exception specifications
2036 at run time.  This option violates the C++ standard, but may be useful
2037 for reducing code size in production builds, much like defining
2038 @samp{NDEBUG}.  This does not give user code permission to throw
2039 exceptions in violation of the exception specifications; the compiler
2040 still optimizes based on the specifications, so throwing an
2041 unexpected exception results in undefined behavior at run time.
2043 @item -fextern-tls-init
2044 @itemx -fno-extern-tls-init
2045 @opindex fextern-tls-init
2046 @opindex fno-extern-tls-init
2047 The C++11 and OpenMP standards allow @samp{thread_local} and
2048 @samp{threadprivate} variables to have dynamic (runtime)
2049 initialization.  To support this, any use of such a variable goes
2050 through a wrapper function that performs any necessary initialization.
2051 When the use and definition of the variable are in the same
2052 translation unit, this overhead can be optimized away, but when the
2053 use is in a different translation unit there is significant overhead
2054 even if the variable doesn't actually need dynamic initialization.  If
2055 the programmer can be sure that no use of the variable in a
2056 non-defining TU needs to trigger dynamic initialization (either
2057 because the variable is statically initialized, or a use of the
2058 variable in the defining TU will be executed before any uses in
2059 another TU), they can avoid this overhead with the
2060 @option{-fno-extern-tls-init} option.
2062 On targets that support symbol aliases, the default is
2063 @option{-fextern-tls-init}.  On targets that do not support symbol
2064 aliases, the default is @option{-fno-extern-tls-init}.
2066 @item -ffor-scope
2067 @itemx -fno-for-scope
2068 @opindex ffor-scope
2069 @opindex fno-for-scope
2070 If @option{-ffor-scope} is specified, the scope of variables declared in
2071 a @i{for-init-statement} is limited to the @samp{for} loop itself,
2072 as specified by the C++ standard.
2073 If @option{-fno-for-scope} is specified, the scope of variables declared in
2074 a @i{for-init-statement} extends to the end of the enclosing scope,
2075 as was the case in old versions of G++, and other (traditional)
2076 implementations of C++.
2078 If neither flag is given, the default is to follow the standard,
2079 but to allow and give a warning for old-style code that would
2080 otherwise be invalid, or have different behavior.
2082 @item -fno-gnu-keywords
2083 @opindex fno-gnu-keywords
2084 Do not recognize @code{typeof} as a keyword, so that code can use this
2085 word as an identifier.  You can use the keyword @code{__typeof__} instead.
2086 @option{-ansi} implies @option{-fno-gnu-keywords}.
2088 @item -fno-implicit-templates
2089 @opindex fno-implicit-templates
2090 Never emit code for non-inline templates that are instantiated
2091 implicitly (i.e.@: by use); only emit code for explicit instantiations.
2092 @xref{Template Instantiation}, for more information.
2094 @item -fno-implicit-inline-templates
2095 @opindex fno-implicit-inline-templates
2096 Don't emit code for implicit instantiations of inline templates, either.
2097 The default is to handle inlines differently so that compiles with and
2098 without optimization need the same set of explicit instantiations.
2100 @item -fno-implement-inlines
2101 @opindex fno-implement-inlines
2102 To save space, do not emit out-of-line copies of inline functions
2103 controlled by @samp{#pragma implementation}.  This causes linker
2104 errors if these functions are not inlined everywhere they are called.
2106 @item -fms-extensions
2107 @opindex fms-extensions
2108 Disable Wpedantic warnings about constructs used in MFC, such as implicit
2109 int and getting a pointer to member function via non-standard syntax.
2111 @item -fno-nonansi-builtins
2112 @opindex fno-nonansi-builtins
2113 Disable built-in declarations of functions that are not mandated by
2114 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
2115 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
2117 @item -fnothrow-opt
2118 @opindex fnothrow-opt
2119 Treat a @code{throw()} exception specification as if it were a
2120 @code{noexcept} specification to reduce or eliminate the text size
2121 overhead relative to a function with no exception specification.  If
2122 the function has local variables of types with non-trivial
2123 destructors, the exception specification actually makes the
2124 function smaller because the EH cleanups for those variables can be
2125 optimized away.  The semantic effect is that an exception thrown out of
2126 a function with such an exception specification results in a call
2127 to @code{terminate} rather than @code{unexpected}.
2129 @item -fno-operator-names
2130 @opindex fno-operator-names
2131 Do not treat the operator name keywords @code{and}, @code{bitand},
2132 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
2133 synonyms as keywords.
2135 @item -fno-optional-diags
2136 @opindex fno-optional-diags
2137 Disable diagnostics that the standard says a compiler does not need to
2138 issue.  Currently, the only such diagnostic issued by G++ is the one for
2139 a name having multiple meanings within a class.
2141 @item -fpermissive
2142 @opindex fpermissive
2143 Downgrade some diagnostics about nonconformant code from errors to
2144 warnings.  Thus, using @option{-fpermissive} allows some
2145 nonconforming code to compile.
2147 @item -fno-pretty-templates
2148 @opindex fno-pretty-templates
2149 When an error message refers to a specialization of a function
2150 template, the compiler normally prints the signature of the
2151 template followed by the template arguments and any typedefs or
2152 typenames in the signature (e.g. @code{void f(T) [with T = int]}
2153 rather than @code{void f(int)}) so that it's clear which template is
2154 involved.  When an error message refers to a specialization of a class
2155 template, the compiler omits any template arguments that match
2156 the default template arguments for that template.  If either of these
2157 behaviors make it harder to understand the error message rather than
2158 easier, you can use @option{-fno-pretty-templates} to disable them.
2160 @item -frepo
2161 @opindex frepo
2162 Enable automatic template instantiation at link time.  This option also
2163 implies @option{-fno-implicit-templates}.  @xref{Template
2164 Instantiation}, for more information.
2166 @item -fno-rtti
2167 @opindex fno-rtti
2168 Disable generation of information about every class with virtual
2169 functions for use by the C++ run-time type identification features
2170 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
2171 of the language, you can save some space by using this flag.  Note that
2172 exception handling uses the same information, but G++ generates it as
2173 needed. The @samp{dynamic_cast} operator can still be used for casts that
2174 do not require run-time type information, i.e.@: casts to @code{void *} or to
2175 unambiguous base classes.
2177 @item -fstats
2178 @opindex fstats
2179 Emit statistics about front-end processing at the end of the compilation.
2180 This information is generally only useful to the G++ development team.
2182 @item -fstrict-enums
2183 @opindex fstrict-enums
2184 Allow the compiler to optimize using the assumption that a value of
2185 enumerated type can only be one of the values of the enumeration (as
2186 defined in the C++ standard; basically, a value that can be
2187 represented in the minimum number of bits needed to represent all the
2188 enumerators).  This assumption may not be valid if the program uses a
2189 cast to convert an arbitrary integer value to the enumerated type.
2191 @item -ftemplate-backtrace-limit=@var{n}
2192 @opindex ftemplate-backtrace-limit
2193 Set the maximum number of template instantiation notes for a single
2194 warning or error to @var{n}.  The default value is 10.
2196 @item -ftemplate-depth=@var{n}
2197 @opindex ftemplate-depth
2198 Set the maximum instantiation depth for template classes to @var{n}.
2199 A limit on the template instantiation depth is needed to detect
2200 endless recursions during template class instantiation.  ANSI/ISO C++
2201 conforming programs must not rely on a maximum depth greater than 17
2202 (changed to 1024 in C++11).  The default value is 900, as the compiler
2203 can run out of stack space before hitting 1024 in some situations.
2205 @item -fno-threadsafe-statics
2206 @opindex fno-threadsafe-statics
2207 Do not emit the extra code to use the routines specified in the C++
2208 ABI for thread-safe initialization of local statics.  You can use this
2209 option to reduce code size slightly in code that doesn't need to be
2210 thread-safe.
2212 @item -fuse-cxa-atexit
2213 @opindex fuse-cxa-atexit
2214 Register destructors for objects with static storage duration with the
2215 @code{__cxa_atexit} function rather than the @code{atexit} function.
2216 This option is required for fully standards-compliant handling of static
2217 destructors, but only works if your C library supports
2218 @code{__cxa_atexit}.
2220 @item -fno-use-cxa-get-exception-ptr
2221 @opindex fno-use-cxa-get-exception-ptr
2222 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
2223 causes @code{std::uncaught_exception} to be incorrect, but is necessary
2224 if the runtime routine is not available.
2226 @item -fvisibility-inlines-hidden
2227 @opindex fvisibility-inlines-hidden
2228 This switch declares that the user does not attempt to compare
2229 pointers to inline functions or methods where the addresses of the two functions
2230 are taken in different shared objects.
2232 The effect of this is that GCC may, effectively, mark inline methods with
2233 @code{__attribute__ ((visibility ("hidden")))} so that they do not
2234 appear in the export table of a DSO and do not require a PLT indirection
2235 when used within the DSO@.  Enabling this option can have a dramatic effect
2236 on load and link times of a DSO as it massively reduces the size of the
2237 dynamic export table when the library makes heavy use of templates.
2239 The behavior of this switch is not quite the same as marking the
2240 methods as hidden directly, because it does not affect static variables
2241 local to the function or cause the compiler to deduce that
2242 the function is defined in only one shared object.
2244 You may mark a method as having a visibility explicitly to negate the
2245 effect of the switch for that method.  For example, if you do want to
2246 compare pointers to a particular inline method, you might mark it as
2247 having default visibility.  Marking the enclosing class with explicit
2248 visibility has no effect.
2250 Explicitly instantiated inline methods are unaffected by this option
2251 as their linkage might otherwise cross a shared library boundary.
2252 @xref{Template Instantiation}.
2254 @item -fvisibility-ms-compat
2255 @opindex fvisibility-ms-compat
2256 This flag attempts to use visibility settings to make GCC's C++
2257 linkage model compatible with that of Microsoft Visual Studio.
2259 The flag makes these changes to GCC's linkage model:
2261 @enumerate
2262 @item
2263 It sets the default visibility to @code{hidden}, like
2264 @option{-fvisibility=hidden}.
2266 @item
2267 Types, but not their members, are not hidden by default.
2269 @item
2270 The One Definition Rule is relaxed for types without explicit
2271 visibility specifications that are defined in more than one
2272 shared object: those declarations are permitted if they are
2273 permitted when this option is not used.
2274 @end enumerate
2276 In new code it is better to use @option{-fvisibility=hidden} and
2277 export those classes that are intended to be externally visible.
2278 Unfortunately it is possible for code to rely, perhaps accidentally,
2279 on the Visual Studio behavior.
2281 Among the consequences of these changes are that static data members
2282 of the same type with the same name but defined in different shared
2283 objects are different, so changing one does not change the other;
2284 and that pointers to function members defined in different shared
2285 objects may not compare equal.  When this flag is given, it is a
2286 violation of the ODR to define types with the same name differently.
2288 @item -fno-weak
2289 @opindex fno-weak
2290 Do not use weak symbol support, even if it is provided by the linker.
2291 By default, G++ uses weak symbols if they are available.  This
2292 option exists only for testing, and should not be used by end-users;
2293 it results in inferior code and has no benefits.  This option may
2294 be removed in a future release of G++.
2296 @item -nostdinc++
2297 @opindex nostdinc++
2298 Do not search for header files in the standard directories specific to
2299 C++, but do still search the other standard directories.  (This option
2300 is used when building the C++ library.)
2301 @end table
2303 In addition, these optimization, warning, and code generation options
2304 have meanings only for C++ programs:
2306 @table @gcctabopt
2307 @item -fno-default-inline
2308 @opindex fno-default-inline
2309 Do not assume @samp{inline} for functions defined inside a class scope.
2310 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
2311 functions have linkage like inline functions; they just aren't
2312 inlined by default.
2314 @item -Wabi @r{(C, Objective-C, C++ and Objective-C++ only)}
2315 @opindex Wabi
2316 @opindex Wno-abi
2317 Warn when G++ generates code that is probably not compatible with the
2318 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
2319 all such cases, there are probably some cases that are not warned about,
2320 even though G++ is generating incompatible code.  There may also be
2321 cases where warnings are emitted even though the code that is generated
2322 is compatible.
2324 You should rewrite your code to avoid these warnings if you are
2325 concerned about the fact that code generated by G++ may not be binary
2326 compatible with code generated by other compilers.
2328 The known incompatibilities in @option{-fabi-version=2} (the default) include:
2330 @itemize @bullet
2332 @item
2333 A template with a non-type template parameter of reference type is
2334 mangled incorrectly:
2335 @smallexample
2336 extern int N;
2337 template <int &> struct S @{@};
2338 void n (S<N>) @{2@}
2339 @end smallexample
2341 This is fixed in @option{-fabi-version=3}.
2343 @item
2344 SIMD vector types declared using @code{__attribute ((vector_size))} are
2345 mangled in a non-standard way that does not allow for overloading of
2346 functions taking vectors of different sizes.
2348 The mangling is changed in @option{-fabi-version=4}.
2349 @end itemize
2351 The known incompatibilities in @option{-fabi-version=1} include:
2353 @itemize @bullet
2355 @item
2356 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
2357 pack data into the same byte as a base class.  For example:
2359 @smallexample
2360 struct A @{ virtual void f(); int f1 : 1; @};
2361 struct B : public A @{ int f2 : 1; @};
2362 @end smallexample
2364 @noindent
2365 In this case, G++ places @code{B::f2} into the same byte
2366 as @code{A::f1}; other compilers do not.  You can avoid this problem
2367 by explicitly padding @code{A} so that its size is a multiple of the
2368 byte size on your platform; that causes G++ and other compilers to
2369 lay out @code{B} identically.
2371 @item
2372 Incorrect handling of tail-padding for virtual bases.  G++ does not use
2373 tail padding when laying out virtual bases.  For example:
2375 @smallexample
2376 struct A @{ virtual void f(); char c1; @};
2377 struct B @{ B(); char c2; @};
2378 struct C : public A, public virtual B @{@};
2379 @end smallexample
2381 @noindent
2382 In this case, G++ does not place @code{B} into the tail-padding for
2383 @code{A}; other compilers do.  You can avoid this problem by
2384 explicitly padding @code{A} so that its size is a multiple of its
2385 alignment (ignoring virtual base classes); that causes G++ and other
2386 compilers to lay out @code{C} identically.
2388 @item
2389 Incorrect handling of bit-fields with declared widths greater than that
2390 of their underlying types, when the bit-fields appear in a union.  For
2391 example:
2393 @smallexample
2394 union U @{ int i : 4096; @};
2395 @end smallexample
2397 @noindent
2398 Assuming that an @code{int} does not have 4096 bits, G++ makes the
2399 union too small by the number of bits in an @code{int}.
2401 @item
2402 Empty classes can be placed at incorrect offsets.  For example:
2404 @smallexample
2405 struct A @{@};
2407 struct B @{
2408   A a;
2409   virtual void f ();
2412 struct C : public B, public A @{@};
2413 @end smallexample
2415 @noindent
2416 G++ places the @code{A} base class of @code{C} at a nonzero offset;
2417 it should be placed at offset zero.  G++ mistakenly believes that the
2418 @code{A} data member of @code{B} is already at offset zero.
2420 @item
2421 Names of template functions whose types involve @code{typename} or
2422 template template parameters can be mangled incorrectly.
2424 @smallexample
2425 template <typename Q>
2426 void f(typename Q::X) @{@}
2428 template <template <typename> class Q>
2429 void f(typename Q<int>::X) @{@}
2430 @end smallexample
2432 @noindent
2433 Instantiations of these templates may be mangled incorrectly.
2435 @end itemize
2437 It also warns about psABI-related changes.  The known psABI changes at this
2438 point include:
2440 @itemize @bullet
2442 @item
2443 For SysV/x86-64, unions with @code{long double} members are 
2444 passed in memory as specified in psABI.  For example:
2446 @smallexample
2447 union U @{
2448   long double ld;
2449   int i;
2451 @end smallexample
2453 @noindent
2454 @code{union U} is always passed in memory.
2456 @end itemize
2458 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2459 @opindex Wctor-dtor-privacy
2460 @opindex Wno-ctor-dtor-privacy
2461 Warn when a class seems unusable because all the constructors or
2462 destructors in that class are private, and it has neither friends nor
2463 public static member functions.  Also warn if there are no non-private
2464 methods, and there's at least one private member function that isn't
2465 a constructor or destructor.
2467 @item -Wdelete-non-virtual-dtor @r{(C++ and Objective-C++ only)}
2468 @opindex Wdelete-non-virtual-dtor
2469 @opindex Wno-delete-non-virtual-dtor
2470 Warn when @samp{delete} is used to destroy an instance of a class that
2471 has virtual functions and non-virtual destructor. It is unsafe to delete
2472 an instance of a derived class through a pointer to a base class if the
2473 base class does not have a virtual destructor.  This warning is enabled
2474 by @option{-Wall}.
2476 @item -Wliteral-suffix @r{(C++ and Objective-C++ only)}
2477 @opindex Wliteral-suffix
2478 @opindex Wno-literal-suffix
2479 Warn when a string or character literal is followed by a ud-suffix which does
2480 not begin with an underscore.  As a conforming extension, GCC treats such
2481 suffixes as separate preprocessing tokens in order to maintain backwards
2482 compatibility with code that uses formatting macros from @code{<inttypes.h>}.
2483 For example:
2485 @smallexample
2486 #define __STDC_FORMAT_MACROS
2487 #include <inttypes.h>
2488 #include <stdio.h>
2490 int main() @{
2491   int64_t i64 = 123;
2492   printf("My int64: %"PRId64"\n", i64);
2494 @end smallexample
2496 In this case, @code{PRId64} is treated as a separate preprocessing token.
2498 This warning is enabled by default.
2500 @item -Wnarrowing @r{(C++ and Objective-C++ only)}
2501 @opindex Wnarrowing
2502 @opindex Wno-narrowing
2503 Warn when a narrowing conversion prohibited by C++11 occurs within
2504 @samp{@{ @}}, e.g.
2506 @smallexample
2507 int i = @{ 2.2 @}; // error: narrowing from double to int
2508 @end smallexample
2510 This flag is included in @option{-Wall} and @option{-Wc++11-compat}.
2512 With @option{-std=c++11}, @option{-Wno-narrowing} suppresses the diagnostic
2513 required by the standard.  Note that this does not affect the meaning
2514 of well-formed code; narrowing conversions are still considered
2515 ill-formed in SFINAE context.
2517 @item -Wnoexcept @r{(C++ and Objective-C++ only)}
2518 @opindex Wnoexcept
2519 @opindex Wno-noexcept
2520 Warn when a noexcept-expression evaluates to false because of a call
2521 to a function that does not have a non-throwing exception
2522 specification (i.e. @samp{throw()} or @samp{noexcept}) but is known by
2523 the compiler to never throw an exception.
2525 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2526 @opindex Wnon-virtual-dtor
2527 @opindex Wno-non-virtual-dtor
2528 Warn when a class has virtual functions and an accessible non-virtual
2529 destructor, in which case it is possible but unsafe to delete
2530 an instance of a derived class through a pointer to the base class.
2531 This warning is also enabled if @option{-Weffc++} is specified.
2533 @item -Wreorder @r{(C++ and Objective-C++ only)}
2534 @opindex Wreorder
2535 @opindex Wno-reorder
2536 @cindex reordering, warning
2537 @cindex warning for reordering of member initializers
2538 Warn when the order of member initializers given in the code does not
2539 match the order in which they must be executed.  For instance:
2541 @smallexample
2542 struct A @{
2543   int i;
2544   int j;
2545   A(): j (0), i (1) @{ @}
2547 @end smallexample
2549 @noindent
2550 The compiler rearranges the member initializers for @samp{i}
2551 and @samp{j} to match the declaration order of the members, emitting
2552 a warning to that effect.  This warning is enabled by @option{-Wall}.
2554 @item -fext-numeric-literals @r{(C++ and Objective-C++ only)}
2555 @opindex fext-numeric-literals
2556 @opindex fno-ext-numeric-literals
2557 Accept imaginary, fixed-point, or machine-defined
2558 literal number suffixes as GNU extensions.
2559 When this option is turned off these suffixes are treated
2560 as C++11 user-defined literal numeric suffixes.
2561 This is on by default for all pre-C++11 dialects and all GNU dialects:
2562 @option{-std=c++98}, @option{-std=gnu++98}, @option{-std=gnu++11},
2563 @option{-std=gnu++1y}.
2564 This option is off by default
2565 for ISO C++11 onwards (@option{-std=c++11}, ...).
2566 @end table
2568 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2570 @table @gcctabopt
2571 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2572 @opindex Weffc++
2573 @opindex Wno-effc++
2574 Warn about violations of the following style guidelines from Scott Meyers'
2575 @cite{Effective C++, Second Edition} book:
2577 @itemize @bullet
2578 @item
2579 Item 11:  Define a copy constructor and an assignment operator for classes
2580 with dynamically-allocated memory.
2582 @item
2583 Item 12:  Prefer initialization to assignment in constructors.
2585 @item
2586 Item 14:  Make destructors virtual in base classes.
2588 @item
2589 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2591 @item
2592 Item 23:  Don't try to return a reference when you must return an object.
2594 @end itemize
2596 Also warn about violations of the following style guidelines from
2597 Scott Meyers' @cite{More Effective C++} book:
2599 @itemize @bullet
2600 @item
2601 Item 6:  Distinguish between prefix and postfix forms of increment and
2602 decrement operators.
2604 @item
2605 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2607 @end itemize
2609 When selecting this option, be aware that the standard library
2610 headers do not obey all of these guidelines; use @samp{grep -v}
2611 to filter out those warnings.
2613 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2614 @opindex Wstrict-null-sentinel
2615 @opindex Wno-strict-null-sentinel
2616 Warn about the use of an uncasted @code{NULL} as sentinel.  When
2617 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2618 to @code{__null}.  Although it is a null pointer constant rather than a
2619 null pointer, it is guaranteed to be of the same size as a pointer.
2620 But this use is not portable across different compilers.
2622 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2623 @opindex Wno-non-template-friend
2624 @opindex Wnon-template-friend
2625 Disable warnings when non-templatized friend functions are declared
2626 within a template.  Since the advent of explicit template specification
2627 support in G++, if the name of the friend is an unqualified-id (i.e.,
2628 @samp{friend foo(int)}), the C++ language specification demands that the
2629 friend declare or define an ordinary, nontemplate function.  (Section
2630 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2631 could be interpreted as a particular specialization of a templatized
2632 function.  Because this non-conforming behavior is no longer the default
2633 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2634 check existing code for potential trouble spots and is on by default.
2635 This new compiler behavior can be turned off with
2636 @option{-Wno-non-template-friend}, which keeps the conformant compiler code
2637 but disables the helpful warning.
2639 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2640 @opindex Wold-style-cast
2641 @opindex Wno-old-style-cast
2642 Warn if an old-style (C-style) cast to a non-void type is used within
2643 a C++ program.  The new-style casts (@samp{dynamic_cast},
2644 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2645 less vulnerable to unintended effects and much easier to search for.
2647 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2648 @opindex Woverloaded-virtual
2649 @opindex Wno-overloaded-virtual
2650 @cindex overloaded virtual function, warning
2651 @cindex warning for overloaded virtual function
2652 Warn when a function declaration hides virtual functions from a
2653 base class.  For example, in:
2655 @smallexample
2656 struct A @{
2657   virtual void f();
2660 struct B: public A @{
2661   void f(int);
2663 @end smallexample
2665 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2666 like:
2668 @smallexample
2669 B* b;
2670 b->f();
2671 @end smallexample
2673 @noindent
2674 fails to compile.
2676 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2677 @opindex Wno-pmf-conversions
2678 @opindex Wpmf-conversions
2679 Disable the diagnostic for converting a bound pointer to member function
2680 to a plain pointer.
2682 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2683 @opindex Wsign-promo
2684 @opindex Wno-sign-promo
2685 Warn when overload resolution chooses a promotion from unsigned or
2686 enumerated type to a signed type, over a conversion to an unsigned type of
2687 the same size.  Previous versions of G++ tried to preserve
2688 unsignedness, but the standard mandates the current behavior.
2689 @end table
2691 @node Objective-C and Objective-C++ Dialect Options
2692 @section Options Controlling Objective-C and Objective-C++ Dialects
2694 @cindex compiler options, Objective-C and Objective-C++
2695 @cindex Objective-C and Objective-C++ options, command-line
2696 @cindex options, Objective-C and Objective-C++
2697 (NOTE: This manual does not describe the Objective-C and Objective-C++
2698 languages themselves.  @xref{Standards,,Language Standards
2699 Supported by GCC}, for references.)
2701 This section describes the command-line options that are only meaningful
2702 for Objective-C and Objective-C++ programs.  You can also use most of
2703 the language-independent GNU compiler options.
2704 For example, you might compile a file @code{some_class.m} like this:
2706 @smallexample
2707 gcc -g -fgnu-runtime -O -c some_class.m
2708 @end smallexample
2710 @noindent
2711 In this example, @option{-fgnu-runtime} is an option meant only for
2712 Objective-C and Objective-C++ programs; you can use the other options with
2713 any language supported by GCC@.
2715 Note that since Objective-C is an extension of the C language, Objective-C
2716 compilations may also use options specific to the C front-end (e.g.,
2717 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2718 C++-specific options (e.g., @option{-Wabi}).
2720 Here is a list of options that are @emph{only} for compiling Objective-C
2721 and Objective-C++ programs:
2723 @table @gcctabopt
2724 @item -fconstant-string-class=@var{class-name}
2725 @opindex fconstant-string-class
2726 Use @var{class-name} as the name of the class to instantiate for each
2727 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2728 class name is @code{NXConstantString} if the GNU runtime is being used, and
2729 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2730 @option{-fconstant-cfstrings} option, if also present, overrides the
2731 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2732 to be laid out as constant CoreFoundation strings.
2734 @item -fgnu-runtime
2735 @opindex fgnu-runtime
2736 Generate object code compatible with the standard GNU Objective-C
2737 runtime.  This is the default for most types of systems.
2739 @item -fnext-runtime
2740 @opindex fnext-runtime
2741 Generate output compatible with the NeXT runtime.  This is the default
2742 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2743 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2744 used.
2746 @item -fno-nil-receivers
2747 @opindex fno-nil-receivers
2748 Assume that all Objective-C message dispatches (@code{[receiver
2749 message:arg]}) in this translation unit ensure that the receiver is
2750 not @code{nil}.  This allows for more efficient entry points in the
2751 runtime to be used.  This option is only available in conjunction with
2752 the NeXT runtime and ABI version 0 or 1.
2754 @item -fobjc-abi-version=@var{n}
2755 @opindex fobjc-abi-version
2756 Use version @var{n} of the Objective-C ABI for the selected runtime.
2757 This option is currently supported only for the NeXT runtime.  In that
2758 case, Version 0 is the traditional (32-bit) ABI without support for
2759 properties and other Objective-C 2.0 additions.  Version 1 is the
2760 traditional (32-bit) ABI with support for properties and other
2761 Objective-C 2.0 additions.  Version 2 is the modern (64-bit) ABI.  If
2762 nothing is specified, the default is Version 0 on 32-bit target
2763 machines, and Version 2 on 64-bit target machines.
2765 @item -fobjc-call-cxx-cdtors
2766 @opindex fobjc-call-cxx-cdtors
2767 For each Objective-C class, check if any of its instance variables is a
2768 C++ object with a non-trivial default constructor.  If so, synthesize a
2769 special @code{- (id) .cxx_construct} instance method which runs
2770 non-trivial default constructors on any such instance variables, in order,
2771 and then return @code{self}.  Similarly, check if any instance variable
2772 is a C++ object with a non-trivial destructor, and if so, synthesize a
2773 special @code{- (void) .cxx_destruct} method which runs
2774 all such default destructors, in reverse order.
2776 The @code{- (id) .cxx_construct} and @code{- (void) .cxx_destruct}
2777 methods thusly generated only operate on instance variables
2778 declared in the current Objective-C class, and not those inherited
2779 from superclasses.  It is the responsibility of the Objective-C
2780 runtime to invoke all such methods in an object's inheritance
2781 hierarchy.  The @code{- (id) .cxx_construct} methods are invoked
2782 by the runtime immediately after a new object instance is allocated;
2783 the @code{- (void) .cxx_destruct} methods are invoked immediately
2784 before the runtime deallocates an object instance.
2786 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2787 support for invoking the @code{- (id) .cxx_construct} and
2788 @code{- (void) .cxx_destruct} methods.
2790 @item -fobjc-direct-dispatch
2791 @opindex fobjc-direct-dispatch
2792 Allow fast jumps to the message dispatcher.  On Darwin this is
2793 accomplished via the comm page.
2795 @item -fobjc-exceptions
2796 @opindex fobjc-exceptions
2797 Enable syntactic support for structured exception handling in
2798 Objective-C, similar to what is offered by C++ and Java.  This option
2799 is required to use the Objective-C keywords @code{@@try},
2800 @code{@@throw}, @code{@@catch}, @code{@@finally} and
2801 @code{@@synchronized}.  This option is available with both the GNU
2802 runtime and the NeXT runtime (but not available in conjunction with
2803 the NeXT runtime on Mac OS X 10.2 and earlier).
2805 @item -fobjc-gc
2806 @opindex fobjc-gc
2807 Enable garbage collection (GC) in Objective-C and Objective-C++
2808 programs.  This option is only available with the NeXT runtime; the
2809 GNU runtime has a different garbage collection implementation that
2810 does not require special compiler flags.
2812 @item -fobjc-nilcheck
2813 @opindex fobjc-nilcheck
2814 For the NeXT runtime with version 2 of the ABI, check for a nil
2815 receiver in method invocations before doing the actual method call.
2816 This is the default and can be disabled using
2817 @option{-fno-objc-nilcheck}.  Class methods and super calls are never
2818 checked for nil in this way no matter what this flag is set to.
2819 Currently this flag does nothing when the GNU runtime, or an older
2820 version of the NeXT runtime ABI, is used.
2822 @item -fobjc-std=objc1
2823 @opindex fobjc-std
2824 Conform to the language syntax of Objective-C 1.0, the language
2825 recognized by GCC 4.0.  This only affects the Objective-C additions to
2826 the C/C++ language; it does not affect conformance to C/C++ standards,
2827 which is controlled by the separate C/C++ dialect option flags.  When
2828 this option is used with the Objective-C or Objective-C++ compiler,
2829 any Objective-C syntax that is not recognized by GCC 4.0 is rejected.
2830 This is useful if you need to make sure that your Objective-C code can
2831 be compiled with older versions of GCC@.
2833 @item -freplace-objc-classes
2834 @opindex freplace-objc-classes
2835 Emit a special marker instructing @command{ld(1)} not to statically link in
2836 the resulting object file, and allow @command{dyld(1)} to load it in at
2837 run time instead.  This is used in conjunction with the Fix-and-Continue
2838 debugging mode, where the object file in question may be recompiled and
2839 dynamically reloaded in the course of program execution, without the need
2840 to restart the program itself.  Currently, Fix-and-Continue functionality
2841 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2842 and later.
2844 @item -fzero-link
2845 @opindex fzero-link
2846 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2847 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2848 compile time) with static class references that get initialized at load time,
2849 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2850 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2851 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2852 for individual class implementations to be modified during program execution.
2853 The GNU runtime currently always retains calls to @code{objc_get_class("@dots{}")}
2854 regardless of command-line options.
2856 @item -gen-decls
2857 @opindex gen-decls
2858 Dump interface declarations for all classes seen in the source file to a
2859 file named @file{@var{sourcename}.decl}.
2861 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
2862 @opindex Wassign-intercept
2863 @opindex Wno-assign-intercept
2864 Warn whenever an Objective-C assignment is being intercepted by the
2865 garbage collector.
2867 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
2868 @opindex Wno-protocol
2869 @opindex Wprotocol
2870 If a class is declared to implement a protocol, a warning is issued for
2871 every method in the protocol that is not implemented by the class.  The
2872 default behavior is to issue a warning for every method not explicitly
2873 implemented in the class, even if a method implementation is inherited
2874 from the superclass.  If you use the @option{-Wno-protocol} option, then
2875 methods inherited from the superclass are considered to be implemented,
2876 and no warning is issued for them.
2878 @item -Wselector @r{(Objective-C and Objective-C++ only)}
2879 @opindex Wselector
2880 @opindex Wno-selector
2881 Warn if multiple methods of different types for the same selector are
2882 found during compilation.  The check is performed on the list of methods
2883 in the final stage of compilation.  Additionally, a check is performed
2884 for each selector appearing in a @code{@@selector(@dots{})}
2885 expression, and a corresponding method for that selector has been found
2886 during compilation.  Because these checks scan the method table only at
2887 the end of compilation, these warnings are not produced if the final
2888 stage of compilation is not reached, for example because an error is
2889 found during compilation, or because the @option{-fsyntax-only} option is
2890 being used.
2892 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
2893 @opindex Wstrict-selector-match
2894 @opindex Wno-strict-selector-match
2895 Warn if multiple methods with differing argument and/or return types are
2896 found for a given selector when attempting to send a message using this
2897 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2898 is off (which is the default behavior), the compiler omits such warnings
2899 if any differences found are confined to types that share the same size
2900 and alignment.
2902 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
2903 @opindex Wundeclared-selector
2904 @opindex Wno-undeclared-selector
2905 Warn if a @code{@@selector(@dots{})} expression referring to an
2906 undeclared selector is found.  A selector is considered undeclared if no
2907 method with that name has been declared before the
2908 @code{@@selector(@dots{})} expression, either explicitly in an
2909 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2910 an @code{@@implementation} section.  This option always performs its
2911 checks as soon as a @code{@@selector(@dots{})} expression is found,
2912 while @option{-Wselector} only performs its checks in the final stage of
2913 compilation.  This also enforces the coding style convention
2914 that methods and selectors must be declared before being used.
2916 @item -print-objc-runtime-info
2917 @opindex print-objc-runtime-info
2918 Generate C header describing the largest structure that is passed by
2919 value, if any.
2921 @end table
2923 @node Language Independent Options
2924 @section Options to Control Diagnostic Messages Formatting
2925 @cindex options to control diagnostics formatting
2926 @cindex diagnostic messages
2927 @cindex message formatting
2929 Traditionally, diagnostic messages have been formatted irrespective of
2930 the output device's aspect (e.g.@: its width, @dots{}).  You can use the
2931 options described below
2932 to control the formatting algorithm for diagnostic messages, 
2933 e.g.@: how many characters per line, how often source location
2934 information should be reported.  Note that some language front ends may not
2935 honor these options.
2937 @table @gcctabopt
2938 @item -fmessage-length=@var{n}
2939 @opindex fmessage-length
2940 Try to format error messages so that they fit on lines of about @var{n}
2941 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2942 the front ends supported by GCC@.  If @var{n} is zero, then no
2943 line-wrapping is done; each error message appears on a single
2944 line.
2946 @item -fdiagnostics-show-location=once
2947 @opindex fdiagnostics-show-location
2948 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2949 reporter to emit source location information @emph{once}; that is, in
2950 case the message is too long to fit on a single physical line and has to
2951 be wrapped, the source location won't be emitted (as prefix) again,
2952 over and over, in subsequent continuation lines.  This is the default
2953 behavior.
2955 @item -fdiagnostics-show-location=every-line
2956 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2957 messages reporter to emit the same source location information (as
2958 prefix) for physical lines that result from the process of breaking
2959 a message which is too long to fit on a single line.
2961 @item -fdiagnostics-color[=@var{WHEN}]
2962 @itemx -fno-diagnostics-color
2963 @opindex fdiagnostics-color
2964 @cindex highlight, color, colour
2965 @vindex GCC_COLORS @r{environment variable}
2966 Use color in diagnostics.  @var{WHEN} is @samp{never}, @samp{always},
2967 or @samp{auto}.  The default is @samp{never} if @env{GCC_COLORS} environment
2968 variable isn't present in the environment, and @samp{auto} otherwise.
2969 @samp{auto} means to use color only when the standard error is a terminal.
2970 The forms @option{-fdiagnostics-color} and @option{-fno-diagnostics-color} are
2971 aliases for @option{-fdiagnostics-color=always} and
2972 @option{-fdiagnostics-color=never}, respectively.
2974 The colors are defined by the environment variable @env{GCC_COLORS}.
2975 Its value is a colon-separated list of capabilities and Select Graphic
2976 Rendition (SGR) substrings. SGR commands are interpreted by the
2977 terminal or terminal emulator.  (See the section in the documentation
2978 of your text terminal for permitted values and their meanings as
2979 character attributes.)  These substring values are integers in decimal
2980 representation and can be concatenated with semicolons.
2981 Common values to concatenate include
2982 @samp{1} for bold,
2983 @samp{4} for underline,
2984 @samp{5} for blink,
2985 @samp{7} for inverse,
2986 @samp{39} for default foreground color,
2987 @samp{30} to @samp{37} for foreground colors,
2988 @samp{90} to @samp{97} for 16-color mode foreground colors,
2989 @samp{38;5;0} to @samp{38;5;255}
2990 for 88-color and 256-color modes foreground colors,
2991 @samp{49} for default background color,
2992 @samp{40} to @samp{47} for background colors,
2993 @samp{100} to @samp{107} for 16-color mode background colors,
2994 and @samp{48;5;0} to @samp{48;5;255}
2995 for 88-color and 256-color modes background colors.
2997 The default @env{GCC_COLORS} is
2998 @samp{error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01}
2999 where @samp{01;31} is bold red, @samp{01;35} is bold magenta,
3000 @samp{01;36} is bold cyan, @samp{01;32} is bold green and
3001 @samp{01} is bold. Setting @env{GCC_COLORS} to the empty
3002 string disables colors.
3003 Supported capabilities are as follows.
3005 @table @code
3006 @item error=
3007 @vindex error GCC_COLORS @r{capability}
3008 SGR substring for error: markers.
3010 @item warning=
3011 @vindex warning GCC_COLORS @r{capability}
3012 SGR substring for warning: markers.
3014 @item note=
3015 @vindex note GCC_COLORS @r{capability}
3016 SGR substring for note: markers.
3018 @item caret=
3019 @vindex caret GCC_COLORS @r{capability}
3020 SGR substring for caret line.
3022 @item locus=
3023 @vindex locus GCC_COLORS @r{capability}
3024 SGR substring for location information, @samp{file:line} or
3025 @samp{file:line:column} etc.
3027 @item quote=
3028 @vindex quote GCC_COLORS @r{capability}
3029 SGR substring for information printed within quotes.
3030 @end table
3032 @item -fno-diagnostics-show-option
3033 @opindex fno-diagnostics-show-option
3034 @opindex fdiagnostics-show-option
3035 By default, each diagnostic emitted includes text indicating the
3036 command-line option that directly controls the diagnostic (if such an
3037 option is known to the diagnostic machinery).  Specifying the
3038 @option{-fno-diagnostics-show-option} flag suppresses that behavior.
3040 @item -fno-diagnostics-show-caret
3041 @opindex fno-diagnostics-show-caret
3042 @opindex fdiagnostics-show-caret
3043 By default, each diagnostic emitted includes the original source line
3044 and a caret '^' indicating the column.  This option suppresses this
3045 information.
3047 @end table
3049 @node Warning Options
3050 @section Options to Request or Suppress Warnings
3051 @cindex options to control warnings
3052 @cindex warning messages
3053 @cindex messages, warning
3054 @cindex suppressing warnings
3056 Warnings are diagnostic messages that report constructions that
3057 are not inherently erroneous but that are risky or suggest there
3058 may have been an error.
3060 The following language-independent options do not enable specific
3061 warnings but control the kinds of diagnostics produced by GCC@.
3063 @table @gcctabopt
3064 @cindex syntax checking
3065 @item -fsyntax-only
3066 @opindex fsyntax-only
3067 Check the code for syntax errors, but don't do anything beyond that.
3069 @item -fmax-errors=@var{n}
3070 @opindex fmax-errors
3071 Limits the maximum number of error messages to @var{n}, at which point
3072 GCC bails out rather than attempting to continue processing the source
3073 code.  If @var{n} is 0 (the default), there is no limit on the number
3074 of error messages produced.  If @option{-Wfatal-errors} is also
3075 specified, then @option{-Wfatal-errors} takes precedence over this
3076 option.
3078 @item -w
3079 @opindex w
3080 Inhibit all warning messages.
3082 @item -Werror
3083 @opindex Werror
3084 @opindex Wno-error
3085 Make all warnings into errors.
3087 @item -Werror=
3088 @opindex Werror=
3089 @opindex Wno-error=
3090 Make the specified warning into an error.  The specifier for a warning
3091 is appended; for example @option{-Werror=switch} turns the warnings
3092 controlled by @option{-Wswitch} into errors.  This switch takes a
3093 negative form, to be used to negate @option{-Werror} for specific
3094 warnings; for example @option{-Wno-error=switch} makes
3095 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
3096 is in effect.
3098 The warning message for each controllable warning includes the
3099 option that controls the warning.  That option can then be used with
3100 @option{-Werror=} and @option{-Wno-error=} as described above.
3101 (Printing of the option in the warning message can be disabled using the
3102 @option{-fno-diagnostics-show-option} flag.)
3104 Note that specifying @option{-Werror=}@var{foo} automatically implies
3105 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
3106 imply anything.
3108 @item -Wfatal-errors
3109 @opindex Wfatal-errors
3110 @opindex Wno-fatal-errors
3111 This option causes the compiler to abort compilation on the first error
3112 occurred rather than trying to keep going and printing further error
3113 messages.
3115 @end table
3117 You can request many specific warnings with options beginning with
3118 @samp{-W}, for example @option{-Wimplicit} to request warnings on
3119 implicit declarations.  Each of these specific warning options also
3120 has a negative form beginning @samp{-Wno-} to turn off warnings; for
3121 example, @option{-Wno-implicit}.  This manual lists only one of the
3122 two forms, whichever is not the default.  For further
3123 language-specific options also refer to @ref{C++ Dialect Options} and
3124 @ref{Objective-C and Objective-C++ Dialect Options}.
3126 When an unrecognized warning option is requested (e.g.,
3127 @option{-Wunknown-warning}), GCC emits a diagnostic stating
3128 that the option is not recognized.  However, if the @option{-Wno-} form
3129 is used, the behavior is slightly different: no diagnostic is
3130 produced for @option{-Wno-unknown-warning} unless other diagnostics
3131 are being produced.  This allows the use of new @option{-Wno-} options
3132 with old compilers, but if something goes wrong, the compiler
3133 warns that an unrecognized option is present.
3135 @table @gcctabopt
3136 @item -Wpedantic
3137 @itemx -pedantic
3138 @opindex pedantic
3139 @opindex Wpedantic
3140 Issue all the warnings demanded by strict ISO C and ISO C++;
3141 reject all programs that use forbidden extensions, and some other
3142 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
3143 version of the ISO C standard specified by any @option{-std} option used.
3145 Valid ISO C and ISO C++ programs should compile properly with or without
3146 this option (though a rare few require @option{-ansi} or a
3147 @option{-std} option specifying the required version of ISO C)@.  However,
3148 without this option, certain GNU extensions and traditional C and C++
3149 features are supported as well.  With this option, they are rejected.
3151 @option{-Wpedantic} does not cause warning messages for use of the
3152 alternate keywords whose names begin and end with @samp{__}.  Pedantic
3153 warnings are also disabled in the expression that follows
3154 @code{__extension__}.  However, only system header files should use
3155 these escape routes; application programs should avoid them.
3156 @xref{Alternate Keywords}.
3158 Some users try to use @option{-Wpedantic} to check programs for strict ISO
3159 C conformance.  They soon find that it does not do quite what they want:
3160 it finds some non-ISO practices, but not all---only those for which
3161 ISO C @emph{requires} a diagnostic, and some others for which
3162 diagnostics have been added.
3164 A feature to report any failure to conform to ISO C might be useful in
3165 some instances, but would require considerable additional work and would
3166 be quite different from @option{-Wpedantic}.  We don't have plans to
3167 support such a feature in the near future.
3169 Where the standard specified with @option{-std} represents a GNU
3170 extended dialect of C, such as @samp{gnu90} or @samp{gnu99}, there is a
3171 corresponding @dfn{base standard}, the version of ISO C on which the GNU
3172 extended dialect is based.  Warnings from @option{-Wpedantic} are given
3173 where they are required by the base standard.  (It does not make sense
3174 for such warnings to be given only for features not in the specified GNU
3175 C dialect, since by definition the GNU dialects of C include all
3176 features the compiler supports with the given option, and there would be
3177 nothing to warn about.)
3179 @item -pedantic-errors
3180 @opindex pedantic-errors
3181 Like @option{-Wpedantic}, except that errors are produced rather than
3182 warnings.
3184 @item -Wall
3185 @opindex Wall
3186 @opindex Wno-all
3187 This enables all the warnings about constructions that some users
3188 consider questionable, and that are easy to avoid (or modify to
3189 prevent the warning), even in conjunction with macros.  This also
3190 enables some language-specific warnings described in @ref{C++ Dialect
3191 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
3193 @option{-Wall} turns on the following warning flags:
3195 @gccoptlist{-Waddress   @gol
3196 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
3197 -Wc++11-compat  @gol
3198 -Wchar-subscripts  @gol
3199 -Wenum-compare @r{(in C/ObjC; this is on by default in C++)} @gol
3200 -Wimplicit-int @r{(C and Objective-C only)} @gol
3201 -Wimplicit-function-declaration @r{(C and Objective-C only)} @gol
3202 -Wcomment  @gol
3203 -Wformat   @gol
3204 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
3205 -Wmaybe-uninitialized @gol
3206 -Wmissing-braces @r{(only for C/ObjC)} @gol
3207 -Wnonnull  @gol
3208 -Wparentheses  @gol
3209 -Wpointer-sign  @gol
3210 -Wreorder   @gol
3211 -Wreturn-type  @gol
3212 -Wsequence-point  @gol
3213 -Wsign-compare @r{(only in C++)}  @gol
3214 -Wstrict-aliasing  @gol
3215 -Wstrict-overflow=1  @gol
3216 -Wswitch  @gol
3217 -Wtrigraphs  @gol
3218 -Wuninitialized  @gol
3219 -Wunknown-pragmas  @gol
3220 -Wunused-function  @gol
3221 -Wunused-label     @gol
3222 -Wunused-value     @gol
3223 -Wunused-variable  @gol
3224 -Wvolatile-register-var @gol
3227 Note that some warning flags are not implied by @option{-Wall}.  Some of
3228 them warn about constructions that users generally do not consider
3229 questionable, but which occasionally you might wish to check for;
3230 others warn about constructions that are necessary or hard to avoid in
3231 some cases, and there is no simple way to modify the code to suppress
3232 the warning. Some of them are enabled by @option{-Wextra} but many of
3233 them must be enabled individually.
3235 @item -Wextra
3236 @opindex W
3237 @opindex Wextra
3238 @opindex Wno-extra
3239 This enables some extra warning flags that are not enabled by
3240 @option{-Wall}. (This option used to be called @option{-W}.  The older
3241 name is still supported, but the newer name is more descriptive.)
3243 @gccoptlist{-Wclobbered  @gol
3244 -Wempty-body  @gol
3245 -Wignored-qualifiers @gol
3246 -Wmissing-field-initializers  @gol
3247 -Wmissing-parameter-type @r{(C only)}  @gol
3248 -Wold-style-declaration @r{(C only)}  @gol
3249 -Woverride-init  @gol
3250 -Wsign-compare  @gol
3251 -Wtype-limits  @gol
3252 -Wuninitialized  @gol
3253 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)} @gol
3254 -Wunused-but-set-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
3257 The option @option{-Wextra} also prints warning messages for the
3258 following cases:
3260 @itemize @bullet
3262 @item
3263 A pointer is compared against integer zero with @samp{<}, @samp{<=},
3264 @samp{>}, or @samp{>=}.
3266 @item
3267 (C++ only) An enumerator and a non-enumerator both appear in a
3268 conditional expression.
3270 @item
3271 (C++ only) Ambiguous virtual bases.
3273 @item
3274 (C++ only) Subscripting an array that has been declared @samp{register}.
3276 @item
3277 (C++ only) Taking the address of a variable that has been declared
3278 @samp{register}.
3280 @item
3281 (C++ only) A base class is not initialized in a derived class's copy
3282 constructor.
3284 @end itemize
3286 @item -Wchar-subscripts
3287 @opindex Wchar-subscripts
3288 @opindex Wno-char-subscripts
3289 Warn if an array subscript has type @code{char}.  This is a common cause
3290 of error, as programmers often forget that this type is signed on some
3291 machines.
3292 This warning is enabled by @option{-Wall}.
3294 @item -Wcomment
3295 @opindex Wcomment
3296 @opindex Wno-comment
3297 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
3298 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
3299 This warning is enabled by @option{-Wall}.
3301 @item -Wno-coverage-mismatch
3302 @opindex Wno-coverage-mismatch
3303 Warn if feedback profiles do not match when using the
3304 @option{-fprofile-use} option.
3305 If a source file is changed between compiling with @option{-fprofile-gen} and
3306 with @option{-fprofile-use}, the files with the profile feedback can fail
3307 to match the source file and GCC cannot use the profile feedback
3308 information.  By default, this warning is enabled and is treated as an
3309 error.  @option{-Wno-coverage-mismatch} can be used to disable the
3310 warning or @option{-Wno-error=coverage-mismatch} can be used to
3311 disable the error.  Disabling the error for this warning can result in
3312 poorly optimized code and is useful only in the
3313 case of very minor changes such as bug fixes to an existing code-base.
3314 Completely disabling the warning is not recommended.
3316 @item -Wno-cpp
3317 @r{(C, Objective-C, C++, Objective-C++ and Fortran only)}
3319 Suppress warning messages emitted by @code{#warning} directives.
3321 @item -Wdouble-promotion @r{(C, C++, Objective-C and Objective-C++ only)}
3322 @opindex Wdouble-promotion
3323 @opindex Wno-double-promotion
3324 Give a warning when a value of type @code{float} is implicitly
3325 promoted to @code{double}.  CPUs with a 32-bit ``single-precision''
3326 floating-point unit implement @code{float} in hardware, but emulate
3327 @code{double} in software.  On such a machine, doing computations
3328 using @code{double} values is much more expensive because of the
3329 overhead required for software emulation.
3331 It is easy to accidentally do computations with @code{double} because
3332 floating-point literals are implicitly of type @code{double}.  For
3333 example, in:
3334 @smallexample
3335 @group
3336 float area(float radius)
3338    return 3.14159 * radius * radius;
3340 @end group
3341 @end smallexample
3342 the compiler performs the entire computation with @code{double}
3343 because the floating-point literal is a @code{double}.
3345 @item -Wformat
3346 @itemx -Wformat=@var{n}
3347 @opindex Wformat
3348 @opindex Wno-format
3349 @opindex ffreestanding
3350 @opindex fno-builtin
3351 @opindex Wformat=
3352 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
3353 the arguments supplied have types appropriate to the format string
3354 specified, and that the conversions specified in the format string make
3355 sense.  This includes standard functions, and others specified by format
3356 attributes (@pxref{Function Attributes}), in the @code{printf},
3357 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
3358 not in the C standard) families (or other target-specific families).
3359 Which functions are checked without format attributes having been
3360 specified depends on the standard version selected, and such checks of
3361 functions without the attribute specified are disabled by
3362 @option{-ffreestanding} or @option{-fno-builtin}.
3364 The formats are checked against the format features supported by GNU
3365 libc version 2.2.  These include all ISO C90 and C99 features, as well
3366 as features from the Single Unix Specification and some BSD and GNU
3367 extensions.  Other library implementations may not support all these
3368 features; GCC does not support warning about features that go beyond a
3369 particular library's limitations.  However, if @option{-Wpedantic} is used
3370 with @option{-Wformat}, warnings are given about format features not
3371 in the selected standard version (but not for @code{strfmon} formats,
3372 since those are not in any version of the C standard).  @xref{C Dialect
3373 Options,,Options Controlling C Dialect}.
3375 @table @gcctabopt
3376 @item -Wformat=1
3377 @itemx -Wformat
3378 Option @option{-Wformat} is equivalent to @option{-Wformat=1}, and
3379 @option{-Wno-format} is equivalent to @option{-Wformat=0}.  Since
3380 @option{-Wformat} also checks for null format arguments for several
3381 functions, @option{-Wformat} also implies @option{-Wnonnull}.  Some
3382 aspects of this level of format checking can be disabled by the
3383 options: @option{-Wno-format-contains-nul},
3384 @option{-Wno-format-extra-args}, and @option{-Wno-format-zero-length}.
3385 @option{-Wformat} is enabled by @option{-Wall}.
3387 @item -Wno-format-contains-nul
3388 @opindex Wno-format-contains-nul
3389 @opindex Wformat-contains-nul
3390 If @option{-Wformat} is specified, do not warn about format strings that
3391 contain NUL bytes.
3393 @item -Wno-format-extra-args
3394 @opindex Wno-format-extra-args
3395 @opindex Wformat-extra-args
3396 If @option{-Wformat} is specified, do not warn about excess arguments to a
3397 @code{printf} or @code{scanf} format function.  The C standard specifies
3398 that such arguments are ignored.
3400 Where the unused arguments lie between used arguments that are
3401 specified with @samp{$} operand number specifications, normally
3402 warnings are still given, since the implementation could not know what
3403 type to pass to @code{va_arg} to skip the unused arguments.  However,
3404 in the case of @code{scanf} formats, this option suppresses the
3405 warning if the unused arguments are all pointers, since the Single
3406 Unix Specification says that such unused arguments are allowed.
3408 @item -Wno-format-zero-length
3409 @opindex Wno-format-zero-length
3410 @opindex Wformat-zero-length
3411 If @option{-Wformat} is specified, do not warn about zero-length formats.
3412 The C standard specifies that zero-length formats are allowed.
3415 @item -Wformat=2
3416 Enable @option{-Wformat} plus additional format checks.  Currently
3417 equivalent to @option{-Wformat -Wformat-nonliteral -Wformat-security
3418 -Wformat-y2k}.
3420 @item -Wformat-nonliteral
3421 @opindex Wformat-nonliteral
3422 @opindex Wno-format-nonliteral
3423 If @option{-Wformat} is specified, also warn if the format string is not a
3424 string literal and so cannot be checked, unless the format function
3425 takes its format arguments as a @code{va_list}.
3427 @item -Wformat-security
3428 @opindex Wformat-security
3429 @opindex Wno-format-security
3430 If @option{-Wformat} is specified, also warn about uses of format
3431 functions that represent possible security problems.  At present, this
3432 warns about calls to @code{printf} and @code{scanf} functions where the
3433 format string is not a string literal and there are no format arguments,
3434 as in @code{printf (foo);}.  This may be a security hole if the format
3435 string came from untrusted input and contains @samp{%n}.  (This is
3436 currently a subset of what @option{-Wformat-nonliteral} warns about, but
3437 in future warnings may be added to @option{-Wformat-security} that are not
3438 included in @option{-Wformat-nonliteral}.)
3440 @item -Wformat-y2k
3441 @opindex Wformat-y2k
3442 @opindex Wno-format-y2k
3443 If @option{-Wformat} is specified, also warn about @code{strftime}
3444 formats that may yield only a two-digit year.
3445 @end table
3447 @item -Wnonnull
3448 @opindex Wnonnull
3449 @opindex Wno-nonnull
3450 Warn about passing a null pointer for arguments marked as
3451 requiring a non-null value by the @code{nonnull} function attribute.
3453 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
3454 can be disabled with the @option{-Wno-nonnull} option.
3456 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
3457 @opindex Winit-self
3458 @opindex Wno-init-self
3459 Warn about uninitialized variables that are initialized with themselves.
3460 Note this option can only be used with the @option{-Wuninitialized} option.
3462 For example, GCC warns about @code{i} being uninitialized in the
3463 following snippet only when @option{-Winit-self} has been specified:
3464 @smallexample
3465 @group
3466 int f()
3468   int i = i;
3469   return i;
3471 @end group
3472 @end smallexample
3474 This warning is enabled by @option{-Wall} in C++.
3476 @item -Wimplicit-int @r{(C and Objective-C only)}
3477 @opindex Wimplicit-int
3478 @opindex Wno-implicit-int
3479 Warn when a declaration does not specify a type.
3480 This warning is enabled by @option{-Wall}.
3482 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
3483 @opindex Wimplicit-function-declaration
3484 @opindex Wno-implicit-function-declaration
3485 Give a warning whenever a function is used before being declared. In
3486 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
3487 enabled by default and it is made into an error by
3488 @option{-pedantic-errors}. This warning is also enabled by
3489 @option{-Wall}.
3491 @item -Wimplicit @r{(C and Objective-C only)}
3492 @opindex Wimplicit
3493 @opindex Wno-implicit
3494 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
3495 This warning is enabled by @option{-Wall}.
3497 @item -Wignored-qualifiers @r{(C and C++ only)}
3498 @opindex Wignored-qualifiers
3499 @opindex Wno-ignored-qualifiers
3500 Warn if the return type of a function has a type qualifier
3501 such as @code{const}.  For ISO C such a type qualifier has no effect,
3502 since the value returned by a function is not an lvalue.
3503 For C++, the warning is only emitted for scalar types or @code{void}.
3504 ISO C prohibits qualified @code{void} return types on function
3505 definitions, so such return types always receive a warning
3506 even without this option.
3508 This warning is also enabled by @option{-Wextra}.
3510 @item -Wmain
3511 @opindex Wmain
3512 @opindex Wno-main
3513 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
3514 a function with external linkage, returning int, taking either zero
3515 arguments, two, or three arguments of appropriate types.  This warning
3516 is enabled by default in C++ and is enabled by either @option{-Wall}
3517 or @option{-Wpedantic}.
3519 @item -Wmissing-braces
3520 @opindex Wmissing-braces
3521 @opindex Wno-missing-braces
3522 Warn if an aggregate or union initializer is not fully bracketed.  In
3523 the following example, the initializer for @samp{a} is not fully
3524 bracketed, but that for @samp{b} is fully bracketed.  This warning is
3525 enabled by @option{-Wall} in C.
3527 @smallexample
3528 int a[2][2] = @{ 0, 1, 2, 3 @};
3529 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
3530 @end smallexample
3532 This warning is enabled by @option{-Wall}.
3534 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
3535 @opindex Wmissing-include-dirs
3536 @opindex Wno-missing-include-dirs
3537 Warn if a user-supplied include directory does not exist.
3539 @item -Wparentheses
3540 @opindex Wparentheses
3541 @opindex Wno-parentheses
3542 Warn if parentheses are omitted in certain contexts, such
3543 as when there is an assignment in a context where a truth value
3544 is expected, or when operators are nested whose precedence people
3545 often get confused about.
3547 Also warn if a comparison like @samp{x<=y<=z} appears; this is
3548 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
3549 interpretation from that of ordinary mathematical notation.
3551 Also warn about constructions where there may be confusion to which
3552 @code{if} statement an @code{else} branch belongs.  Here is an example of
3553 such a case:
3555 @smallexample
3556 @group
3558   if (a)
3559     if (b)
3560       foo ();
3561   else
3562     bar ();
3564 @end group
3565 @end smallexample
3567 In C/C++, every @code{else} branch belongs to the innermost possible
3568 @code{if} statement, which in this example is @code{if (b)}.  This is
3569 often not what the programmer expected, as illustrated in the above
3570 example by indentation the programmer chose.  When there is the
3571 potential for this confusion, GCC issues a warning when this flag
3572 is specified.  To eliminate the warning, add explicit braces around
3573 the innermost @code{if} statement so there is no way the @code{else}
3574 can belong to the enclosing @code{if}.  The resulting code
3575 looks like this:
3577 @smallexample
3578 @group
3580   if (a)
3581     @{
3582       if (b)
3583         foo ();
3584       else
3585         bar ();
3586     @}
3588 @end group
3589 @end smallexample
3591 Also warn for dangerous uses of the GNU extension to
3592 @code{?:} with omitted middle operand. When the condition
3593 in the @code{?}: operator is a boolean expression, the omitted value is
3594 always 1.  Often programmers expect it to be a value computed
3595 inside the conditional expression instead.
3597 This warning is enabled by @option{-Wall}.
3599 @item -Wsequence-point
3600 @opindex Wsequence-point
3601 @opindex Wno-sequence-point
3602 Warn about code that may have undefined semantics because of violations
3603 of sequence point rules in the C and C++ standards.
3605 The C and C++ standards define the order in which expressions in a C/C++
3606 program are evaluated in terms of @dfn{sequence points}, which represent
3607 a partial ordering between the execution of parts of the program: those
3608 executed before the sequence point, and those executed after it.  These
3609 occur after the evaluation of a full expression (one which is not part
3610 of a larger expression), after the evaluation of the first operand of a
3611 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3612 function is called (but after the evaluation of its arguments and the
3613 expression denoting the called function), and in certain other places.
3614 Other than as expressed by the sequence point rules, the order of
3615 evaluation of subexpressions of an expression is not specified.  All
3616 these rules describe only a partial order rather than a total order,
3617 since, for example, if two functions are called within one expression
3618 with no sequence point between them, the order in which the functions
3619 are called is not specified.  However, the standards committee have
3620 ruled that function calls do not overlap.
3622 It is not specified when between sequence points modifications to the
3623 values of objects take effect.  Programs whose behavior depends on this
3624 have undefined behavior; the C and C++ standards specify that ``Between
3625 the previous and next sequence point an object shall have its stored
3626 value modified at most once by the evaluation of an expression.
3627 Furthermore, the prior value shall be read only to determine the value
3628 to be stored.''.  If a program breaks these rules, the results on any
3629 particular implementation are entirely unpredictable.
3631 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3632 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3633 diagnosed by this option, and it may give an occasional false positive
3634 result, but in general it has been found fairly effective at detecting
3635 this sort of problem in programs.
3637 The standard is worded confusingly, therefore there is some debate
3638 over the precise meaning of the sequence point rules in subtle cases.
3639 Links to discussions of the problem, including proposed formal
3640 definitions, may be found on the GCC readings page, at
3641 @uref{http://gcc.gnu.org/@/readings.html}.
3643 This warning is enabled by @option{-Wall} for C and C++.
3645 @item -Wno-return-local-addr
3646 @opindex Wno-return-local-addr
3647 @opindex Wreturn-local-addr
3648 Do not warn about returning a pointer (or in C++, a reference) to a
3649 variable that goes out of scope after the function returns.
3651 @item -Wreturn-type
3652 @opindex Wreturn-type
3653 @opindex Wno-return-type
3654 Warn whenever a function is defined with a return type that defaults
3655 to @code{int}.  Also warn about any @code{return} statement with no
3656 return value in a function whose return type is not @code{void}
3657 (falling off the end of the function body is considered returning
3658 without a value), and about a @code{return} statement with an
3659 expression in a function whose return type is @code{void}.
3661 For C++, a function without return type always produces a diagnostic
3662 message, even when @option{-Wno-return-type} is specified.  The only
3663 exceptions are @samp{main} and functions defined in system headers.
3665 This warning is enabled by @option{-Wall}.
3667 @item -Wswitch
3668 @opindex Wswitch
3669 @opindex Wno-switch
3670 Warn whenever a @code{switch} statement has an index of enumerated type
3671 and lacks a @code{case} for one or more of the named codes of that
3672 enumeration.  (The presence of a @code{default} label prevents this
3673 warning.)  @code{case} labels outside the enumeration range also
3674 provoke warnings when this option is used (even if there is a
3675 @code{default} label).
3676 This warning is enabled by @option{-Wall}.
3678 @item -Wswitch-default
3679 @opindex Wswitch-default
3680 @opindex Wno-switch-default
3681 Warn whenever a @code{switch} statement does not have a @code{default}
3682 case.
3684 @item -Wswitch-enum
3685 @opindex Wswitch-enum
3686 @opindex Wno-switch-enum
3687 Warn whenever a @code{switch} statement has an index of enumerated type
3688 and lacks a @code{case} for one or more of the named codes of that
3689 enumeration.  @code{case} labels outside the enumeration range also
3690 provoke warnings when this option is used.  The only difference
3691 between @option{-Wswitch} and this option is that this option gives a
3692 warning about an omitted enumeration code even if there is a
3693 @code{default} label.
3695 @item -Wsync-nand @r{(C and C++ only)}
3696 @opindex Wsync-nand
3697 @opindex Wno-sync-nand
3698 Warn when @code{__sync_fetch_and_nand} and @code{__sync_nand_and_fetch}
3699 built-in functions are used.  These functions changed semantics in GCC 4.4.
3701 @item -Wtrigraphs
3702 @opindex Wtrigraphs
3703 @opindex Wno-trigraphs
3704 Warn if any trigraphs are encountered that might change the meaning of
3705 the program (trigraphs within comments are not warned about).
3706 This warning is enabled by @option{-Wall}.
3708 @item -Wunused-but-set-parameter
3709 @opindex Wunused-but-set-parameter
3710 @opindex Wno-unused-but-set-parameter
3711 Warn whenever a function parameter is assigned to, but otherwise unused
3712 (aside from its declaration).
3714 To suppress this warning use the @samp{unused} attribute
3715 (@pxref{Variable Attributes}).
3717 This warning is also enabled by @option{-Wunused} together with
3718 @option{-Wextra}.
3720 @item -Wunused-but-set-variable
3721 @opindex Wunused-but-set-variable
3722 @opindex Wno-unused-but-set-variable
3723 Warn whenever a local variable is assigned to, but otherwise unused
3724 (aside from its declaration).
3725 This warning is enabled by @option{-Wall}.
3727 To suppress this warning use the @samp{unused} attribute
3728 (@pxref{Variable Attributes}).
3730 This warning is also enabled by @option{-Wunused}, which is enabled
3731 by @option{-Wall}.
3733 @item -Wunused-function
3734 @opindex Wunused-function
3735 @opindex Wno-unused-function
3736 Warn whenever a static function is declared but not defined or a
3737 non-inline static function is unused.
3738 This warning is enabled by @option{-Wall}.
3740 @item -Wunused-label
3741 @opindex Wunused-label
3742 @opindex Wno-unused-label
3743 Warn whenever a label is declared but not used.
3744 This warning is enabled by @option{-Wall}.
3746 To suppress this warning use the @samp{unused} attribute
3747 (@pxref{Variable Attributes}).
3749 @item -Wunused-local-typedefs @r{(C, Objective-C, C++ and Objective-C++ only)}
3750 @opindex Wunused-local-typedefs
3751 Warn when a typedef locally defined in a function is not used.
3752 This warning is enabled by @option{-Wall}.
3754 @item -Wunused-parameter
3755 @opindex Wunused-parameter
3756 @opindex Wno-unused-parameter
3757 Warn whenever a function parameter is unused aside from its declaration.
3759 To suppress this warning use the @samp{unused} attribute
3760 (@pxref{Variable Attributes}).
3762 @item -Wno-unused-result
3763 @opindex Wunused-result
3764 @opindex Wno-unused-result
3765 Do not warn if a caller of a function marked with attribute
3766 @code{warn_unused_result} (@pxref{Function Attributes}) does not use
3767 its return value. The default is @option{-Wunused-result}.
3769 @item -Wunused-variable
3770 @opindex Wunused-variable
3771 @opindex Wno-unused-variable
3772 Warn whenever a local variable or non-constant static variable is unused
3773 aside from its declaration.
3774 This warning is enabled by @option{-Wall}.
3776 To suppress this warning use the @samp{unused} attribute
3777 (@pxref{Variable Attributes}).
3779 @item -Wunused-value
3780 @opindex Wunused-value
3781 @opindex Wno-unused-value
3782 Warn whenever a statement computes a result that is explicitly not
3783 used. To suppress this warning cast the unused expression to
3784 @samp{void}. This includes an expression-statement or the left-hand
3785 side of a comma expression that contains no side effects. For example,
3786 an expression such as @samp{x[i,j]} causes a warning, while
3787 @samp{x[(void)i,j]} does not.
3789 This warning is enabled by @option{-Wall}.
3791 @item -Wunused
3792 @opindex Wunused
3793 @opindex Wno-unused
3794 All the above @option{-Wunused} options combined.
3796 In order to get a warning about an unused function parameter, you must
3797 either specify @option{-Wextra -Wunused} (note that @option{-Wall} implies
3798 @option{-Wunused}), or separately specify @option{-Wunused-parameter}.
3800 @item -Wuninitialized
3801 @opindex Wuninitialized
3802 @opindex Wno-uninitialized
3803 Warn if an automatic variable is used without first being initialized
3804 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3805 warn if a non-static reference or non-static @samp{const} member
3806 appears in a class without constructors.
3808 If you want to warn about code that uses the uninitialized value of the
3809 variable in its own initializer, use the @option{-Winit-self} option.
3811 These warnings occur for individual uninitialized or clobbered
3812 elements of structure, union or array variables as well as for
3813 variables that are uninitialized or clobbered as a whole.  They do
3814 not occur for variables or elements declared @code{volatile}.  Because
3815 these warnings depend on optimization, the exact variables or elements
3816 for which there are warnings depends on the precise optimization
3817 options and version of GCC used.
3819 Note that there may be no warning about a variable that is used only
3820 to compute a value that itself is never used, because such
3821 computations may be deleted by data flow analysis before the warnings
3822 are printed.
3824 @item -Wmaybe-uninitialized
3825 @opindex Wmaybe-uninitialized
3826 @opindex Wno-maybe-uninitialized
3827 For an automatic variable, if there exists a path from the function
3828 entry to a use of the variable that is initialized, but there exist
3829 some other paths for which the variable is not initialized, the compiler
3830 emits a warning if it cannot prove the uninitialized paths are not
3831 executed at run time. These warnings are made optional because GCC is
3832 not smart enough to see all the reasons why the code might be correct
3833 in spite of appearing to have an error.  Here is one example of how
3834 this can happen:
3836 @smallexample
3837 @group
3839   int x;
3840   switch (y)
3841     @{
3842     case 1: x = 1;
3843       break;
3844     case 2: x = 4;
3845       break;
3846     case 3: x = 5;
3847     @}
3848   foo (x);
3850 @end group
3851 @end smallexample
3853 @noindent
3854 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3855 always initialized, but GCC doesn't know this. To suppress the
3856 warning, you need to provide a default case with assert(0) or
3857 similar code.
3859 @cindex @code{longjmp} warnings
3860 This option also warns when a non-volatile automatic variable might be
3861 changed by a call to @code{longjmp}.  These warnings as well are possible
3862 only in optimizing compilation.
3864 The compiler sees only the calls to @code{setjmp}.  It cannot know
3865 where @code{longjmp} will be called; in fact, a signal handler could
3866 call it at any point in the code.  As a result, you may get a warning
3867 even when there is in fact no problem because @code{longjmp} cannot
3868 in fact be called at the place that would cause a problem.
3870 Some spurious warnings can be avoided if you declare all the functions
3871 you use that never return as @code{noreturn}.  @xref{Function
3872 Attributes}.
3874 This warning is enabled by @option{-Wall} or @option{-Wextra}.
3876 @item -Wunknown-pragmas
3877 @opindex Wunknown-pragmas
3878 @opindex Wno-unknown-pragmas
3879 @cindex warning for unknown pragmas
3880 @cindex unknown pragmas, warning
3881 @cindex pragmas, warning of unknown
3882 Warn when a @code{#pragma} directive is encountered that is not understood by 
3883 GCC@.  If this command-line option is used, warnings are even issued
3884 for unknown pragmas in system header files.  This is not the case if
3885 the warnings are only enabled by the @option{-Wall} command-line option.
3887 @item -Wno-pragmas
3888 @opindex Wno-pragmas
3889 @opindex Wpragmas
3890 Do not warn about misuses of pragmas, such as incorrect parameters,
3891 invalid syntax, or conflicts between pragmas.  See also
3892 @option{-Wunknown-pragmas}.
3894 @item -Wstrict-aliasing
3895 @opindex Wstrict-aliasing
3896 @opindex Wno-strict-aliasing
3897 This option is only active when @option{-fstrict-aliasing} is active.
3898 It warns about code that might break the strict aliasing rules that the
3899 compiler is using for optimization.  The warning does not catch all
3900 cases, but does attempt to catch the more common pitfalls.  It is
3901 included in @option{-Wall}.
3902 It is equivalent to @option{-Wstrict-aliasing=3}
3904 @item -Wstrict-aliasing=n
3905 @opindex Wstrict-aliasing=n
3906 This option is only active when @option{-fstrict-aliasing} is active.
3907 It warns about code that might break the strict aliasing rules that the
3908 compiler is using for optimization.
3909 Higher levels correspond to higher accuracy (fewer false positives).
3910 Higher levels also correspond to more effort, similar to the way @option{-O} 
3911 works.
3912 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=3}.
3914 Level 1: Most aggressive, quick, least accurate.
3915 Possibly useful when higher levels
3916 do not warn but @option{-fstrict-aliasing} still breaks the code, as it has very few
3917 false negatives.  However, it has many false positives.
3918 Warns for all pointer conversions between possibly incompatible types,
3919 even if never dereferenced.  Runs in the front end only.
3921 Level 2: Aggressive, quick, not too precise.
3922 May still have many false positives (not as many as level 1 though),
3923 and few false negatives (but possibly more than level 1).
3924 Unlike level 1, it only warns when an address is taken.  Warns about
3925 incomplete types.  Runs in the front end only.
3927 Level 3 (default for @option{-Wstrict-aliasing}):
3928 Should have very few false positives and few false
3929 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3930 Takes care of the common pun+dereference pattern in the front end:
3931 @code{*(int*)&some_float}.
3932 If optimization is enabled, it also runs in the back end, where it deals
3933 with multiple statement cases using flow-sensitive points-to information.
3934 Only warns when the converted pointer is dereferenced.
3935 Does not warn about incomplete types.
3937 @item -Wstrict-overflow
3938 @itemx -Wstrict-overflow=@var{n}
3939 @opindex Wstrict-overflow
3940 @opindex Wno-strict-overflow
3941 This option is only active when @option{-fstrict-overflow} is active.
3942 It warns about cases where the compiler optimizes based on the
3943 assumption that signed overflow does not occur.  Note that it does not
3944 warn about all cases where the code might overflow: it only warns
3945 about cases where the compiler implements some optimization.  Thus
3946 this warning depends on the optimization level.
3948 An optimization that assumes that signed overflow does not occur is
3949 perfectly safe if the values of the variables involved are such that
3950 overflow never does, in fact, occur.  Therefore this warning can
3951 easily give a false positive: a warning about code that is not
3952 actually a problem.  To help focus on important issues, several
3953 warning levels are defined.  No warnings are issued for the use of
3954 undefined signed overflow when estimating how many iterations a loop
3955 requires, in particular when determining whether a loop will be
3956 executed at all.
3958 @table @gcctabopt
3959 @item -Wstrict-overflow=1
3960 Warn about cases that are both questionable and easy to avoid.  For
3961 example,  with @option{-fstrict-overflow}, the compiler simplifies
3962 @code{x + 1 > x} to @code{1}.  This level of
3963 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3964 are not, and must be explicitly requested.
3966 @item -Wstrict-overflow=2
3967 Also warn about other cases where a comparison is simplified to a
3968 constant.  For example: @code{abs (x) >= 0}.  This can only be
3969 simplified when @option{-fstrict-overflow} is in effect, because
3970 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3971 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3972 @option{-Wstrict-overflow=2}.
3974 @item -Wstrict-overflow=3
3975 Also warn about other cases where a comparison is simplified.  For
3976 example: @code{x + 1 > 1} is simplified to @code{x > 0}.
3978 @item -Wstrict-overflow=4
3979 Also warn about other simplifications not covered by the above cases.
3980 For example: @code{(x * 10) / 5} is simplified to @code{x * 2}.
3982 @item -Wstrict-overflow=5
3983 Also warn about cases where the compiler reduces the magnitude of a
3984 constant involved in a comparison.  For example: @code{x + 2 > y} is
3985 simplified to @code{x + 1 >= y}.  This is reported only at the
3986 highest warning level because this simplification applies to many
3987 comparisons, so this warning level gives a very large number of
3988 false positives.
3989 @end table
3991 @item -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{|}format@r{]}
3992 @opindex Wsuggest-attribute=
3993 @opindex Wno-suggest-attribute=
3994 Warn for cases where adding an attribute may be beneficial. The
3995 attributes currently supported are listed below.
3997 @table @gcctabopt
3998 @item -Wsuggest-attribute=pure
3999 @itemx -Wsuggest-attribute=const
4000 @itemx -Wsuggest-attribute=noreturn
4001 @opindex Wsuggest-attribute=pure
4002 @opindex Wno-suggest-attribute=pure
4003 @opindex Wsuggest-attribute=const
4004 @opindex Wno-suggest-attribute=const
4005 @opindex Wsuggest-attribute=noreturn
4006 @opindex Wno-suggest-attribute=noreturn
4008 Warn about functions that might be candidates for attributes
4009 @code{pure}, @code{const} or @code{noreturn}.  The compiler only warns for
4010 functions visible in other compilation units or (in the case of @code{pure} and
4011 @code{const}) if it cannot prove that the function returns normally. A function
4012 returns normally if it doesn't contain an infinite loop or return abnormally
4013 by throwing, calling @code{abort()} or trapping.  This analysis requires option
4014 @option{-fipa-pure-const}, which is enabled by default at @option{-O} and
4015 higher.  Higher optimization levels improve the accuracy of the analysis.
4017 @item -Wsuggest-attribute=format
4018 @itemx -Wmissing-format-attribute
4019 @opindex Wsuggest-attribute=format
4020 @opindex Wmissing-format-attribute
4021 @opindex Wno-suggest-attribute=format
4022 @opindex Wno-missing-format-attribute
4023 @opindex Wformat
4024 @opindex Wno-format
4026 Warn about function pointers that might be candidates for @code{format}
4027 attributes.  Note these are only possible candidates, not absolute ones.
4028 GCC guesses that function pointers with @code{format} attributes that
4029 are used in assignment, initialization, parameter passing or return
4030 statements should have a corresponding @code{format} attribute in the
4031 resulting type.  I.e.@: the left-hand side of the assignment or
4032 initialization, the type of the parameter variable, or the return type
4033 of the containing function respectively should also have a @code{format}
4034 attribute to avoid the warning.
4036 GCC also warns about function definitions that might be
4037 candidates for @code{format} attributes.  Again, these are only
4038 possible candidates.  GCC guesses that @code{format} attributes
4039 might be appropriate for any function that calls a function like
4040 @code{vprintf} or @code{vscanf}, but this might not always be the
4041 case, and some functions for which @code{format} attributes are
4042 appropriate may not be detected.
4043 @end table
4045 @item -Warray-bounds
4046 @opindex Wno-array-bounds
4047 @opindex Warray-bounds
4048 This option is only active when @option{-ftree-vrp} is active
4049 (default for @option{-O2} and above). It warns about subscripts to arrays
4050 that are always out of bounds. This warning is enabled by @option{-Wall}.
4052 @item -Wno-div-by-zero
4053 @opindex Wno-div-by-zero
4054 @opindex Wdiv-by-zero
4055 Do not warn about compile-time integer division by zero.  Floating-point
4056 division by zero is not warned about, as it can be a legitimate way of
4057 obtaining infinities and NaNs.
4059 @item -Wsystem-headers
4060 @opindex Wsystem-headers
4061 @opindex Wno-system-headers
4062 @cindex warnings from system headers
4063 @cindex system headers, warnings from
4064 Print warning messages for constructs found in system header files.
4065 Warnings from system headers are normally suppressed, on the assumption
4066 that they usually do not indicate real problems and would only make the
4067 compiler output harder to read.  Using this command-line option tells
4068 GCC to emit warnings from system headers as if they occurred in user
4069 code.  However, note that using @option{-Wall} in conjunction with this
4070 option does @emph{not} warn about unknown pragmas in system
4071 headers---for that, @option{-Wunknown-pragmas} must also be used.
4073 @item -Wtrampolines
4074 @opindex Wtrampolines
4075 @opindex Wno-trampolines
4076  Warn about trampolines generated for pointers to nested functions.
4078  A trampoline is a small piece of data or code that is created at run
4079  time on the stack when the address of a nested function is taken, and
4080  is used to call the nested function indirectly.  For some targets, it
4081  is made up of data only and thus requires no special treatment.  But,
4082  for most targets, it is made up of code and thus requires the stack
4083  to be made executable in order for the program to work properly.
4085 @item -Wfloat-equal
4086 @opindex Wfloat-equal
4087 @opindex Wno-float-equal
4088 Warn if floating-point values are used in equality comparisons.
4090 The idea behind this is that sometimes it is convenient (for the
4091 programmer) to consider floating-point values as approximations to
4092 infinitely precise real numbers.  If you are doing this, then you need
4093 to compute (by analyzing the code, or in some other way) the maximum or
4094 likely maximum error that the computation introduces, and allow for it
4095 when performing comparisons (and when producing output, but that's a
4096 different problem).  In particular, instead of testing for equality, you
4097 should check to see whether the two values have ranges that overlap; and
4098 this is done with the relational operators, so equality comparisons are
4099 probably mistaken.
4101 @item -Wtraditional @r{(C and Objective-C only)}
4102 @opindex Wtraditional
4103 @opindex Wno-traditional
4104 Warn about certain constructs that behave differently in traditional and
4105 ISO C@.  Also warn about ISO C constructs that have no traditional C
4106 equivalent, and/or problematic constructs that should be avoided.
4108 @itemize @bullet
4109 @item
4110 Macro parameters that appear within string literals in the macro body.
4111 In traditional C macro replacement takes place within string literals,
4112 but in ISO C it does not.
4114 @item
4115 In traditional C, some preprocessor directives did not exist.
4116 Traditional preprocessors only considered a line to be a directive
4117 if the @samp{#} appeared in column 1 on the line.  Therefore
4118 @option{-Wtraditional} warns about directives that traditional C
4119 understands but ignores because the @samp{#} does not appear as the
4120 first character on the line.  It also suggests you hide directives like
4121 @samp{#pragma} not understood by traditional C by indenting them.  Some
4122 traditional implementations do not recognize @samp{#elif}, so this option
4123 suggests avoiding it altogether.
4125 @item
4126 A function-like macro that appears without arguments.
4128 @item
4129 The unary plus operator.
4131 @item
4132 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating-point
4133 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
4134 constants.)  Note, these suffixes appear in macros defined in the system
4135 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
4136 Use of these macros in user code might normally lead to spurious
4137 warnings, however GCC's integrated preprocessor has enough context to
4138 avoid warning in these cases.
4140 @item
4141 A function declared external in one block and then used after the end of
4142 the block.
4144 @item
4145 A @code{switch} statement has an operand of type @code{long}.
4147 @item
4148 A non-@code{static} function declaration follows a @code{static} one.
4149 This construct is not accepted by some traditional C compilers.
4151 @item
4152 The ISO type of an integer constant has a different width or
4153 signedness from its traditional type.  This warning is only issued if
4154 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
4155 typically represent bit patterns, are not warned about.
4157 @item
4158 Usage of ISO string concatenation is detected.
4160 @item
4161 Initialization of automatic aggregates.
4163 @item
4164 Identifier conflicts with labels.  Traditional C lacks a separate
4165 namespace for labels.
4167 @item
4168 Initialization of unions.  If the initializer is zero, the warning is
4169 omitted.  This is done under the assumption that the zero initializer in
4170 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
4171 initializer warnings and relies on default initialization to zero in the
4172 traditional C case.
4174 @item
4175 Conversions by prototypes between fixed/floating-point values and vice
4176 versa.  The absence of these prototypes when compiling with traditional
4177 C causes serious problems.  This is a subset of the possible
4178 conversion warnings; for the full set use @option{-Wtraditional-conversion}.
4180 @item
4181 Use of ISO C style function definitions.  This warning intentionally is
4182 @emph{not} issued for prototype declarations or variadic functions
4183 because these ISO C features appear in your code when using
4184 libiberty's traditional C compatibility macros, @code{PARAMS} and
4185 @code{VPARAMS}.  This warning is also bypassed for nested functions
4186 because that feature is already a GCC extension and thus not relevant to
4187 traditional C compatibility.
4188 @end itemize
4190 @item -Wtraditional-conversion @r{(C and Objective-C only)}
4191 @opindex Wtraditional-conversion
4192 @opindex Wno-traditional-conversion
4193 Warn if a prototype causes a type conversion that is different from what
4194 would happen to the same argument in the absence of a prototype.  This
4195 includes conversions of fixed point to floating and vice versa, and
4196 conversions changing the width or signedness of a fixed-point argument
4197 except when the same as the default promotion.
4199 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
4200 @opindex Wdeclaration-after-statement
4201 @opindex Wno-declaration-after-statement
4202 Warn when a declaration is found after a statement in a block.  This
4203 construct, known from C++, was introduced with ISO C99 and is by default
4204 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
4205 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
4207 @item -Wundef
4208 @opindex Wundef
4209 @opindex Wno-undef
4210 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
4212 @item -Wno-endif-labels
4213 @opindex Wno-endif-labels
4214 @opindex Wendif-labels
4215 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
4217 @item -Wshadow
4218 @opindex Wshadow
4219 @opindex Wno-shadow
4220 Warn whenever a local variable or type declaration shadows another variable,
4221 parameter, type, or class member (in C++), or whenever a built-in function
4222 is shadowed. Note that in C++, the compiler warns if a local variable
4223 shadows an explicit typedef, but not if it shadows a struct/class/enum.
4225 @item -Wlarger-than=@var{len}
4226 @opindex Wlarger-than=@var{len}
4227 @opindex Wlarger-than-@var{len}
4228 Warn whenever an object of larger than @var{len} bytes is defined.
4230 @item -Wframe-larger-than=@var{len}
4231 @opindex Wframe-larger-than
4232 Warn if the size of a function frame is larger than @var{len} bytes.
4233 The computation done to determine the stack frame size is approximate
4234 and not conservative.
4235 The actual requirements may be somewhat greater than @var{len}
4236 even if you do not get a warning.  In addition, any space allocated
4237 via @code{alloca}, variable-length arrays, or related constructs
4238 is not included by the compiler when determining
4239 whether or not to issue a warning.
4241 @item -Wno-free-nonheap-object
4242 @opindex Wno-free-nonheap-object
4243 @opindex Wfree-nonheap-object
4244 Do not warn when attempting to free an object that was not allocated
4245 on the heap.
4247 @item -Wstack-usage=@var{len}
4248 @opindex Wstack-usage
4249 Warn if the stack usage of a function might be larger than @var{len} bytes.
4250 The computation done to determine the stack usage is conservative.
4251 Any space allocated via @code{alloca}, variable-length arrays, or related
4252 constructs is included by the compiler when determining whether or not to
4253 issue a warning.
4255 The message is in keeping with the output of @option{-fstack-usage}.
4257 @itemize
4258 @item
4259 If the stack usage is fully static but exceeds the specified amount, it's:
4261 @smallexample
4262   warning: stack usage is 1120 bytes
4263 @end smallexample
4264 @item
4265 If the stack usage is (partly) dynamic but bounded, it's:
4267 @smallexample
4268   warning: stack usage might be 1648 bytes
4269 @end smallexample
4270 @item
4271 If the stack usage is (partly) dynamic and not bounded, it's:
4273 @smallexample
4274   warning: stack usage might be unbounded
4275 @end smallexample
4276 @end itemize
4278 @item -Wunsafe-loop-optimizations
4279 @opindex Wunsafe-loop-optimizations
4280 @opindex Wno-unsafe-loop-optimizations
4281 Warn if the loop cannot be optimized because the compiler cannot
4282 assume anything on the bounds of the loop indices.  With
4283 @option{-funsafe-loop-optimizations} warn if the compiler makes
4284 such assumptions.
4286 @item -Wno-pedantic-ms-format @r{(MinGW targets only)}
4287 @opindex Wno-pedantic-ms-format
4288 @opindex Wpedantic-ms-format
4289 When used in combination with @option{-Wformat}
4290 and @option{-pedantic} without GNU extensions, this option
4291 disables the warnings about non-ISO @code{printf} / @code{scanf} format
4292 width specifiers @code{I32}, @code{I64}, and @code{I} used on Windows targets,
4293 which depend on the MS runtime.
4295 @item -Wpointer-arith
4296 @opindex Wpointer-arith
4297 @opindex Wno-pointer-arith
4298 Warn about anything that depends on the ``size of'' a function type or
4299 of @code{void}.  GNU C assigns these types a size of 1, for
4300 convenience in calculations with @code{void *} pointers and pointers
4301 to functions.  In C++, warn also when an arithmetic operation involves
4302 @code{NULL}.  This warning is also enabled by @option{-Wpedantic}.
4304 @item -Wtype-limits
4305 @opindex Wtype-limits
4306 @opindex Wno-type-limits
4307 Warn if a comparison is always true or always false due to the limited
4308 range of the data type, but do not warn for constant expressions.  For
4309 example, warn if an unsigned variable is compared against zero with
4310 @samp{<} or @samp{>=}.  This warning is also enabled by
4311 @option{-Wextra}.
4313 @item -Wbad-function-cast @r{(C and Objective-C only)}
4314 @opindex Wbad-function-cast
4315 @opindex Wno-bad-function-cast
4316 Warn whenever a function call is cast to a non-matching type.
4317 For example, warn if @code{int malloc()} is cast to @code{anything *}.
4319 @item -Wc++-compat @r{(C and Objective-C only)}
4320 Warn about ISO C constructs that are outside of the common subset of
4321 ISO C and ISO C++, e.g.@: request for implicit conversion from
4322 @code{void *} to a pointer to non-@code{void} type.
4324 @item -Wc++11-compat @r{(C++ and Objective-C++ only)}
4325 Warn about C++ constructs whose meaning differs between ISO C++ 1998
4326 and ISO C++ 2011, e.g., identifiers in ISO C++ 1998 that are keywords
4327 in ISO C++ 2011.  This warning turns on @option{-Wnarrowing} and is
4328 enabled by @option{-Wall}.
4330 @item -Wcast-qual
4331 @opindex Wcast-qual
4332 @opindex Wno-cast-qual
4333 Warn whenever a pointer is cast so as to remove a type qualifier from
4334 the target type.  For example, warn if a @code{const char *} is cast
4335 to an ordinary @code{char *}.
4337 Also warn when making a cast that introduces a type qualifier in an
4338 unsafe way.  For example, casting @code{char **} to @code{const char **}
4339 is unsafe, as in this example:
4341 @smallexample
4342   /* p is char ** value.  */
4343   const char **q = (const char **) p;
4344   /* Assignment of readonly string to const char * is OK.  */
4345   *q = "string";
4346   /* Now char** pointer points to read-only memory.  */
4347   **p = 'b';
4348 @end smallexample
4350 @item -Wcast-align
4351 @opindex Wcast-align
4352 @opindex Wno-cast-align
4353 Warn whenever a pointer is cast such that the required alignment of the
4354 target is increased.  For example, warn if a @code{char *} is cast to
4355 an @code{int *} on machines where integers can only be accessed at
4356 two- or four-byte boundaries.
4358 @item -Wwrite-strings
4359 @opindex Wwrite-strings
4360 @opindex Wno-write-strings
4361 When compiling C, give string constants the type @code{const
4362 char[@var{length}]} so that copying the address of one into a
4363 non-@code{const} @code{char *} pointer produces a warning.  These
4364 warnings help you find at compile time code that can try to write
4365 into a string constant, but only if you have been very careful about
4366 using @code{const} in declarations and prototypes.  Otherwise, it is
4367 just a nuisance. This is why we did not make @option{-Wall} request
4368 these warnings.
4370 When compiling C++, warn about the deprecated conversion from string
4371 literals to @code{char *}.  This warning is enabled by default for C++
4372 programs.
4374 @item -Wclobbered
4375 @opindex Wclobbered
4376 @opindex Wno-clobbered
4377 Warn for variables that might be changed by @samp{longjmp} or
4378 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
4380 @item -Wconversion
4381 @opindex Wconversion
4382 @opindex Wno-conversion
4383 Warn for implicit conversions that may alter a value. This includes
4384 conversions between real and integer, like @code{abs (x)} when
4385 @code{x} is @code{double}; conversions between signed and unsigned,
4386 like @code{unsigned ui = -1}; and conversions to smaller types, like
4387 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
4388 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
4389 changed by the conversion like in @code{abs (2.0)}.  Warnings about
4390 conversions between signed and unsigned integers can be disabled by
4391 using @option{-Wno-sign-conversion}.
4393 For C++, also warn for confusing overload resolution for user-defined
4394 conversions; and conversions that never use a type conversion
4395 operator: conversions to @code{void}, the same type, a base class or a
4396 reference to them. Warnings about conversions between signed and
4397 unsigned integers are disabled by default in C++ unless
4398 @option{-Wsign-conversion} is explicitly enabled.
4400 @item -Wno-conversion-null @r{(C++ and Objective-C++ only)}
4401 @opindex Wconversion-null
4402 @opindex Wno-conversion-null
4403 Do not warn for conversions between @code{NULL} and non-pointer
4404 types. @option{-Wconversion-null} is enabled by default.
4406 @item -Wzero-as-null-pointer-constant @r{(C++ and Objective-C++ only)}
4407 @opindex Wzero-as-null-pointer-constant
4408 @opindex Wno-zero-as-null-pointer-constant
4409 Warn when a literal '0' is used as null pointer constant.  This can
4410 be useful to facilitate the conversion to @code{nullptr} in C++11.
4412 @item -Wuseless-cast @r{(C++ and Objective-C++ only)}
4413 @opindex Wuseless-cast
4414 @opindex Wno-useless-cast
4415 Warn when an expression is casted to its own type.
4417 @item -Wempty-body
4418 @opindex Wempty-body
4419 @opindex Wno-empty-body
4420 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
4421 while} statement.  This warning is also enabled by @option{-Wextra}.
4423 @item -Wenum-compare
4424 @opindex Wenum-compare
4425 @opindex Wno-enum-compare
4426 Warn about a comparison between values of different enumerated types.
4427 In C++ enumeral mismatches in conditional expressions are also
4428 diagnosed and the warning is enabled by default.  In C this warning is 
4429 enabled by @option{-Wall}.
4431 @item -Wjump-misses-init @r{(C, Objective-C only)}
4432 @opindex Wjump-misses-init
4433 @opindex Wno-jump-misses-init
4434 Warn if a @code{goto} statement or a @code{switch} statement jumps
4435 forward across the initialization of a variable, or jumps backward to a
4436 label after the variable has been initialized.  This only warns about
4437 variables that are initialized when they are declared.  This warning is
4438 only supported for C and Objective-C; in C++ this sort of branch is an
4439 error in any case.
4441 @option{-Wjump-misses-init} is included in @option{-Wc++-compat}.  It
4442 can be disabled with the @option{-Wno-jump-misses-init} option.
4444 @item -Wsign-compare
4445 @opindex Wsign-compare
4446 @opindex Wno-sign-compare
4447 @cindex warning for comparison of signed and unsigned values
4448 @cindex comparison of signed and unsigned values, warning
4449 @cindex signed and unsigned values, comparison warning
4450 Warn when a comparison between signed and unsigned values could produce
4451 an incorrect result when the signed value is converted to unsigned.
4452 This warning is also enabled by @option{-Wextra}; to get the other warnings
4453 of @option{-Wextra} without this warning, use @option{-Wextra -Wno-sign-compare}.
4455 @item -Wsign-conversion
4456 @opindex Wsign-conversion
4457 @opindex Wno-sign-conversion
4458 Warn for implicit conversions that may change the sign of an integer
4459 value, like assigning a signed integer expression to an unsigned
4460 integer variable. An explicit cast silences the warning. In C, this
4461 option is enabled also by @option{-Wconversion}.
4463 @item -Wsizeof-pointer-memaccess
4464 @opindex Wsizeof-pointer-memaccess
4465 @opindex Wno-sizeof-pointer-memaccess
4466 Warn for suspicious length parameters to certain string and memory built-in
4467 functions if the argument uses @code{sizeof}.  This warning warns e.g.@:
4468 about @code{memset (ptr, 0, sizeof (ptr));} if @code{ptr} is not an array,
4469 but a pointer, and suggests a possible fix, or about
4470 @code{memcpy (&foo, ptr, sizeof (&foo));}.  This warning is enabled by
4471 @option{-Wall}.
4473 @item -Waddress
4474 @opindex Waddress
4475 @opindex Wno-address
4476 Warn about suspicious uses of memory addresses. These include using
4477 the address of a function in a conditional expression, such as
4478 @code{void func(void); if (func)}, and comparisons against the memory
4479 address of a string literal, such as @code{if (x == "abc")}.  Such
4480 uses typically indicate a programmer error: the address of a function
4481 always evaluates to true, so their use in a conditional usually
4482 indicate that the programmer forgot the parentheses in a function
4483 call; and comparisons against string literals result in unspecified
4484 behavior and are not portable in C, so they usually indicate that the
4485 programmer intended to use @code{strcmp}.  This warning is enabled by
4486 @option{-Wall}.
4488 @item -Wlogical-op
4489 @opindex Wlogical-op
4490 @opindex Wno-logical-op
4491 Warn about suspicious uses of logical operators in expressions.
4492 This includes using logical operators in contexts where a
4493 bit-wise operator is likely to be expected.
4495 @item -Waggregate-return
4496 @opindex Waggregate-return
4497 @opindex Wno-aggregate-return
4498 Warn if any functions that return structures or unions are defined or
4499 called.  (In languages where you can return an array, this also elicits
4500 a warning.)
4502 @item -Wno-aggressive-loop-optimizations
4503 @opindex Wno-aggressive-loop-optimizations
4504 @opindex Waggressive-loop-optimizations
4505 Warn if in a loop with constant number of iterations the compiler detects
4506 undefined behavior in some statement during one or more of the iterations.
4508 @item -Wno-attributes
4509 @opindex Wno-attributes
4510 @opindex Wattributes
4511 Do not warn if an unexpected @code{__attribute__} is used, such as
4512 unrecognized attributes, function attributes applied to variables,
4513 etc.  This does not stop errors for incorrect use of supported
4514 attributes.
4516 @item -Wno-builtin-macro-redefined
4517 @opindex Wno-builtin-macro-redefined
4518 @opindex Wbuiltin-macro-redefined
4519 Do not warn if certain built-in macros are redefined.  This suppresses
4520 warnings for redefinition of @code{__TIMESTAMP__}, @code{__TIME__},
4521 @code{__DATE__}, @code{__FILE__}, and @code{__BASE_FILE__}.
4523 @item -Wstrict-prototypes @r{(C and Objective-C only)}
4524 @opindex Wstrict-prototypes
4525 @opindex Wno-strict-prototypes
4526 Warn if a function is declared or defined without specifying the
4527 argument types.  (An old-style function definition is permitted without
4528 a warning if preceded by a declaration that specifies the argument
4529 types.)
4531 @item -Wold-style-declaration @r{(C and Objective-C only)}
4532 @opindex Wold-style-declaration
4533 @opindex Wno-old-style-declaration
4534 Warn for obsolescent usages, according to the C Standard, in a
4535 declaration. For example, warn if storage-class specifiers like
4536 @code{static} are not the first things in a declaration.  This warning
4537 is also enabled by @option{-Wextra}.
4539 @item -Wold-style-definition @r{(C and Objective-C only)}
4540 @opindex Wold-style-definition
4541 @opindex Wno-old-style-definition
4542 Warn if an old-style function definition is used.  A warning is given
4543 even if there is a previous prototype.
4545 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
4546 @opindex Wmissing-parameter-type
4547 @opindex Wno-missing-parameter-type
4548 A function parameter is declared without a type specifier in K&R-style
4549 functions:
4551 @smallexample
4552 void foo(bar) @{ @}
4553 @end smallexample
4555 This warning is also enabled by @option{-Wextra}.
4557 @item -Wmissing-prototypes @r{(C and Objective-C only)}
4558 @opindex Wmissing-prototypes
4559 @opindex Wno-missing-prototypes
4560 Warn if a global function is defined without a previous prototype
4561 declaration.  This warning is issued even if the definition itself
4562 provides a prototype.  Use this option to detect global functions
4563 that do not have a matching prototype declaration in a header file.
4564 This option is not valid for C++ because all function declarations
4565 provide prototypes and a non-matching declaration will declare an
4566 overload rather than conflict with an earlier declaration.
4567 Use @option{-Wmissing-declarations} to detect missing declarations in C++.
4569 @item -Wmissing-declarations
4570 @opindex Wmissing-declarations
4571 @opindex Wno-missing-declarations
4572 Warn if a global function is defined without a previous declaration.
4573 Do so even if the definition itself provides a prototype.
4574 Use this option to detect global functions that are not declared in
4575 header files.  In C, no warnings are issued for functions with previous
4576 non-prototype declarations; use @option{-Wmissing-prototype} to detect
4577 missing prototypes.  In C++, no warnings are issued for function templates,
4578 or for inline functions, or for functions in anonymous namespaces.
4580 @item -Wmissing-field-initializers
4581 @opindex Wmissing-field-initializers
4582 @opindex Wno-missing-field-initializers
4583 @opindex W
4584 @opindex Wextra
4585 @opindex Wno-extra
4586 Warn if a structure's initializer has some fields missing.  For
4587 example, the following code causes such a warning, because
4588 @code{x.h} is implicitly zero:
4590 @smallexample
4591 struct s @{ int f, g, h; @};
4592 struct s x = @{ 3, 4 @};
4593 @end smallexample
4595 This option does not warn about designated initializers, so the following
4596 modification does not trigger a warning:
4598 @smallexample
4599 struct s @{ int f, g, h; @};
4600 struct s x = @{ .f = 3, .g = 4 @};
4601 @end smallexample
4603 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
4604 warnings without this one, use @option{-Wextra -Wno-missing-field-initializers}.
4606 @item -Wno-multichar
4607 @opindex Wno-multichar
4608 @opindex Wmultichar
4609 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
4610 Usually they indicate a typo in the user's code, as they have
4611 implementation-defined values, and should not be used in portable code.
4613 @item -Wnormalized=<none|id|nfc|nfkc>
4614 @opindex Wnormalized=
4615 @cindex NFC
4616 @cindex NFKC
4617 @cindex character set, input normalization
4618 In ISO C and ISO C++, two identifiers are different if they are
4619 different sequences of characters.  However, sometimes when characters
4620 outside the basic ASCII character set are used, you can have two
4621 different character sequences that look the same.  To avoid confusion,
4622 the ISO 10646 standard sets out some @dfn{normalization rules} which
4623 when applied ensure that two sequences that look the same are turned into
4624 the same sequence.  GCC can warn you if you are using identifiers that
4625 have not been normalized; this option controls that warning.
4627 There are four levels of warning supported by GCC@.  The default is
4628 @option{-Wnormalized=nfc}, which warns about any identifier that is
4629 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
4630 recommended form for most uses.
4632 Unfortunately, there are some characters allowed in identifiers by
4633 ISO C and ISO C++ that, when turned into NFC, are not allowed in 
4634 identifiers.  That is, there's no way to use these symbols in portable
4635 ISO C or C++ and have all your identifiers in NFC@.
4636 @option{-Wnormalized=id} suppresses the warning for these characters.
4637 It is hoped that future versions of the standards involved will correct
4638 this, which is why this option is not the default.
4640 You can switch the warning off for all characters by writing
4641 @option{-Wnormalized=none}.  You should only do this if you
4642 are using some other normalization scheme (like ``D''), because
4643 otherwise you can easily create bugs that are literally impossible to see.
4645 Some characters in ISO 10646 have distinct meanings but look identical
4646 in some fonts or display methodologies, especially once formatting has
4647 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
4648 LETTER N'', displays just like a regular @code{n} that has been
4649 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
4650 normalization scheme to convert all these into a standard form as
4651 well, and GCC warns if your code is not in NFKC if you use
4652 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
4653 about every identifier that contains the letter O because it might be
4654 confused with the digit 0, and so is not the default, but may be
4655 useful as a local coding convention if the programming environment 
4656 cannot be fixed to display these characters distinctly.
4658 @item -Wno-deprecated
4659 @opindex Wno-deprecated
4660 @opindex Wdeprecated
4661 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
4663 @item -Wno-deprecated-declarations
4664 @opindex Wno-deprecated-declarations
4665 @opindex Wdeprecated-declarations
4666 Do not warn about uses of functions (@pxref{Function Attributes}),
4667 variables (@pxref{Variable Attributes}), and types (@pxref{Type
4668 Attributes}) marked as deprecated by using the @code{deprecated}
4669 attribute.
4671 @item -Wno-overflow
4672 @opindex Wno-overflow
4673 @opindex Woverflow
4674 Do not warn about compile-time overflow in constant expressions.
4676 @item -Woverride-init @r{(C and Objective-C only)}
4677 @opindex Woverride-init
4678 @opindex Wno-override-init
4679 @opindex W
4680 @opindex Wextra
4681 @opindex Wno-extra
4682 Warn if an initialized field without side effects is overridden when
4683 using designated initializers (@pxref{Designated Inits, , Designated
4684 Initializers}).
4686 This warning is included in @option{-Wextra}.  To get other
4687 @option{-Wextra} warnings without this one, use @option{-Wextra
4688 -Wno-override-init}.
4690 @item -Wpacked
4691 @opindex Wpacked
4692 @opindex Wno-packed
4693 Warn if a structure is given the packed attribute, but the packed
4694 attribute has no effect on the layout or size of the structure.
4695 Such structures may be mis-aligned for little benefit.  For
4696 instance, in this code, the variable @code{f.x} in @code{struct bar}
4697 is misaligned even though @code{struct bar} does not itself
4698 have the packed attribute:
4700 @smallexample
4701 @group
4702 struct foo @{
4703   int x;
4704   char a, b, c, d;
4705 @} __attribute__((packed));
4706 struct bar @{
4707   char z;
4708   struct foo f;
4710 @end group
4711 @end smallexample
4713 @item -Wpacked-bitfield-compat
4714 @opindex Wpacked-bitfield-compat
4715 @opindex Wno-packed-bitfield-compat
4716 The 4.1, 4.2 and 4.3 series of GCC ignore the @code{packed} attribute
4717 on bit-fields of type @code{char}.  This has been fixed in GCC 4.4 but
4718 the change can lead to differences in the structure layout.  GCC
4719 informs you when the offset of such a field has changed in GCC 4.4.
4720 For example there is no longer a 4-bit padding between field @code{a}
4721 and @code{b} in this structure:
4723 @smallexample
4724 struct foo
4726   char a:4;
4727   char b:8;
4728 @} __attribute__ ((packed));
4729 @end smallexample
4731 This warning is enabled by default.  Use
4732 @option{-Wno-packed-bitfield-compat} to disable this warning.
4734 @item -Wpadded
4735 @opindex Wpadded
4736 @opindex Wno-padded
4737 Warn if padding is included in a structure, either to align an element
4738 of the structure or to align the whole structure.  Sometimes when this
4739 happens it is possible to rearrange the fields of the structure to
4740 reduce the padding and so make the structure smaller.
4742 @item -Wredundant-decls
4743 @opindex Wredundant-decls
4744 @opindex Wno-redundant-decls
4745 Warn if anything is declared more than once in the same scope, even in
4746 cases where multiple declaration is valid and changes nothing.
4748 @item -Wnested-externs @r{(C and Objective-C only)}
4749 @opindex Wnested-externs
4750 @opindex Wno-nested-externs
4751 Warn if an @code{extern} declaration is encountered within a function.
4753 @item -Wno-inherited-variadic-ctor
4754 @opindex Winherited-variadic-ctor
4755 @opindex Wno-inherited-variadic-ctor
4756 Suppress warnings about use of C++11 inheriting constructors when the
4757 base class inherited from has a C variadic constructor; the warning is
4758 on by default because the ellipsis is not inherited.
4760 @item -Winline
4761 @opindex Winline
4762 @opindex Wno-inline
4763 Warn if a function that is declared as inline cannot be inlined.
4764 Even with this option, the compiler does not warn about failures to
4765 inline functions declared in system headers.
4767 The compiler uses a variety of heuristics to determine whether or not
4768 to inline a function.  For example, the compiler takes into account
4769 the size of the function being inlined and the amount of inlining
4770 that has already been done in the current function.  Therefore,
4771 seemingly insignificant changes in the source program can cause the
4772 warnings produced by @option{-Winline} to appear or disappear.
4774 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
4775 @opindex Wno-invalid-offsetof
4776 @opindex Winvalid-offsetof
4777 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
4778 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
4779 to a non-POD type is undefined.  In existing C++ implementations,
4780 however, @samp{offsetof} typically gives meaningful results even when
4781 applied to certain kinds of non-POD types (such as a simple
4782 @samp{struct} that fails to be a POD type only by virtue of having a
4783 constructor).  This flag is for users who are aware that they are
4784 writing nonportable code and who have deliberately chosen to ignore the
4785 warning about it.
4787 The restrictions on @samp{offsetof} may be relaxed in a future version
4788 of the C++ standard.
4790 @item -Wno-int-to-pointer-cast
4791 @opindex Wno-int-to-pointer-cast
4792 @opindex Wint-to-pointer-cast
4793 Suppress warnings from casts to pointer type of an integer of a
4794 different size. In C++, casting to a pointer type of smaller size is
4795 an error. @option{Wint-to-pointer-cast} is enabled by default.
4798 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
4799 @opindex Wno-pointer-to-int-cast
4800 @opindex Wpointer-to-int-cast
4801 Suppress warnings from casts from a pointer to an integer type of a
4802 different size.
4804 @item -Winvalid-pch
4805 @opindex Winvalid-pch
4806 @opindex Wno-invalid-pch
4807 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
4808 the search path but can't be used.
4810 @item -Wlong-long
4811 @opindex Wlong-long
4812 @opindex Wno-long-long
4813 Warn if @samp{long long} type is used.  This is enabled by either
4814 @option{-Wpedantic} or @option{-Wtraditional} in ISO C90 and C++98
4815 modes.  To inhibit the warning messages, use @option{-Wno-long-long}.
4817 @item -Wvariadic-macros
4818 @opindex Wvariadic-macros
4819 @opindex Wno-variadic-macros
4820 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
4821 alternate syntax when in pedantic ISO C99 mode.  This is default.
4822 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
4824 @item -Wvarargs
4825 @opindex Wvarargs
4826 @opindex Wno-varargs
4827 Warn upon questionable usage of the macros used to handle variable
4828 arguments like @samp{va_start}.  This is default.  To inhibit the
4829 warning messages, use @option{-Wno-varargs}.
4831 @item -Wvector-operation-performance
4832 @opindex Wvector-operation-performance
4833 @opindex Wno-vector-operation-performance
4834 Warn if vector operation is not implemented via SIMD capabilities of the
4835 architecture.  Mainly useful for the performance tuning.
4836 Vector operation can be implemented @code{piecewise}, which means that the
4837 scalar operation is performed on every vector element; 
4838 @code{in parallel}, which means that the vector operation is implemented
4839 using scalars of wider type, which normally is more performance efficient;
4840 and @code{as a single scalar}, which means that vector fits into a
4841 scalar type.
4843 @item -Wno-virtual-move-assign
4844 @opindex Wvirtual-move-assign
4845 @opindex Wno-virtual-move-assign
4846 Suppress warnings about inheriting from a virtual base with a
4847 non-trivial C++11 move assignment operator.  This is dangerous because
4848 if the virtual base is reachable along more than one path, it will be
4849 moved multiple times, which can mean both objects end up in the
4850 moved-from state.  If the move assignment operator is written to avoid
4851 moving from a moved-from object, this warning can be disabled.
4853 @item -Wvla
4854 @opindex Wvla
4855 @opindex Wno-vla
4856 Warn if variable length array is used in the code.
4857 @option{-Wno-vla} prevents the @option{-Wpedantic} warning of
4858 the variable length array.
4860 @item -Wvolatile-register-var
4861 @opindex Wvolatile-register-var
4862 @opindex Wno-volatile-register-var
4863 Warn if a register variable is declared volatile.  The volatile
4864 modifier does not inhibit all optimizations that may eliminate reads
4865 and/or writes to register variables.  This warning is enabled by
4866 @option{-Wall}.
4868 @item -Wdisabled-optimization
4869 @opindex Wdisabled-optimization
4870 @opindex Wno-disabled-optimization
4871 Warn if a requested optimization pass is disabled.  This warning does
4872 not generally indicate that there is anything wrong with your code; it
4873 merely indicates that GCC's optimizers are unable to handle the code
4874 effectively.  Often, the problem is that your code is too big or too
4875 complex; GCC refuses to optimize programs when the optimization
4876 itself is likely to take inordinate amounts of time.
4878 @item -Wpointer-sign @r{(C and Objective-C only)}
4879 @opindex Wpointer-sign
4880 @opindex Wno-pointer-sign
4881 Warn for pointer argument passing or assignment with different signedness.
4882 This option is only supported for C and Objective-C@.  It is implied by
4883 @option{-Wall} and by @option{-Wpedantic}, which can be disabled with
4884 @option{-Wno-pointer-sign}.
4886 @item -Wstack-protector
4887 @opindex Wstack-protector
4888 @opindex Wno-stack-protector
4889 This option is only active when @option{-fstack-protector} is active.  It
4890 warns about functions that are not protected against stack smashing.
4892 @item -Wno-mudflap
4893 @opindex Wno-mudflap
4894 Suppress warnings about constructs that cannot be instrumented by
4895 @option{-fmudflap}.
4897 @item -Woverlength-strings
4898 @opindex Woverlength-strings
4899 @opindex Wno-overlength-strings
4900 Warn about string constants that are longer than the ``minimum
4901 maximum'' length specified in the C standard.  Modern compilers
4902 generally allow string constants that are much longer than the
4903 standard's minimum limit, but very portable programs should avoid
4904 using longer strings.
4906 The limit applies @emph{after} string constant concatenation, and does
4907 not count the trailing NUL@.  In C90, the limit was 509 characters; in
4908 C99, it was raised to 4095.  C++98 does not specify a normative
4909 minimum maximum, so we do not diagnose overlength strings in C++@.
4911 This option is implied by @option{-Wpedantic}, and can be disabled with
4912 @option{-Wno-overlength-strings}.
4914 @item -Wunsuffixed-float-constants @r{(C and Objective-C only)}
4915 @opindex Wunsuffixed-float-constants
4917 Issue a warning for any floating constant that does not have
4918 a suffix.  When used together with @option{-Wsystem-headers} it
4919 warns about such constants in system header files.  This can be useful
4920 when preparing code to use with the @code{FLOAT_CONST_DECIMAL64} pragma
4921 from the decimal floating-point extension to C99.
4922 @end table
4924 @node Debugging Options
4925 @section Options for Debugging Your Program or GCC
4926 @cindex options, debugging
4927 @cindex debugging information options
4929 GCC has various special options that are used for debugging
4930 either your program or GCC:
4932 @table @gcctabopt
4933 @item -g
4934 @opindex g
4935 Produce debugging information in the operating system's native format
4936 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
4937 information.
4939 On most systems that use stabs format, @option{-g} enables use of extra
4940 debugging information that only GDB can use; this extra information
4941 makes debugging work better in GDB but probably makes other debuggers
4942 crash or
4943 refuse to read the program.  If you want to control for certain whether
4944 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
4945 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4947 GCC allows you to use @option{-g} with
4948 @option{-O}.  The shortcuts taken by optimized code may occasionally
4949 produce surprising results: some variables you declared may not exist
4950 at all; flow of control may briefly move where you did not expect it;
4951 some statements may not be executed because they compute constant
4952 results or their values are already at hand; some statements may
4953 execute in different places because they have been moved out of loops.
4955 Nevertheless it proves possible to debug optimized output.  This makes
4956 it reasonable to use the optimizer for programs that might have bugs.
4958 The following options are useful when GCC is generated with the
4959 capability for more than one debugging format.
4961 @item -gsplit-dwarf
4962 @opindex gsplit-dwarf
4963 Separate as much dwarf debugging information as possible into a
4964 separate output file with the extension .dwo.  This option allows
4965 the build system to avoid linking files with debug information.  To
4966 be useful, this option requires a debugger capable of reading .dwo
4967 files.
4969 @item -ggdb
4970 @opindex ggdb
4971 Produce debugging information for use by GDB@.  This means to use the
4972 most expressive format available (DWARF 2, stabs, or the native format
4973 if neither of those are supported), including GDB extensions if at all
4974 possible.
4976 @item -gpubnames
4977 @opindex gpubnames
4978 Generate dwarf .debug_pubnames and .debug_pubtypes sections.
4980 @item -gstabs
4981 @opindex gstabs
4982 Produce debugging information in stabs format (if that is supported),
4983 without GDB extensions.  This is the format used by DBX on most BSD
4984 systems.  On MIPS, Alpha and System V Release 4 systems this option
4985 produces stabs debugging output that is not understood by DBX or SDB@.
4986 On System V Release 4 systems this option requires the GNU assembler.
4988 @item -feliminate-unused-debug-symbols
4989 @opindex feliminate-unused-debug-symbols
4990 Produce debugging information in stabs format (if that is supported),
4991 for only symbols that are actually used.
4993 @item -femit-class-debug-always
4994 Instead of emitting debugging information for a C++ class in only one
4995 object file, emit it in all object files using the class.  This option
4996 should be used only with debuggers that are unable to handle the way GCC
4997 normally emits debugging information for classes because using this
4998 option increases the size of debugging information by as much as a
4999 factor of two.
5001 @item -fdebug-types-section
5002 @opindex fdebug-types-section
5003 @opindex fno-debug-types-section
5004 When using DWARF Version 4 or higher, type DIEs can be put into
5005 their own @code{.debug_types} section instead of making them part of the
5006 @code{.debug_info} section.  It is more efficient to put them in a separate
5007 comdat sections since the linker can then remove duplicates.
5008 But not all DWARF consumers support @code{.debug_types} sections yet
5009 and on some objects @code{.debug_types} produces larger instead of smaller
5010 debugging information.
5012 @item -gstabs+
5013 @opindex gstabs+
5014 Produce debugging information in stabs format (if that is supported),
5015 using GNU extensions understood only by the GNU debugger (GDB)@.  The
5016 use of these extensions is likely to make other debuggers crash or
5017 refuse to read the program.
5019 @item -gcoff
5020 @opindex gcoff
5021 Produce debugging information in COFF format (if that is supported).
5022 This is the format used by SDB on most System V systems prior to
5023 System V Release 4.
5025 @item -gxcoff
5026 @opindex gxcoff
5027 Produce debugging information in XCOFF format (if that is supported).
5028 This is the format used by the DBX debugger on IBM RS/6000 systems.
5030 @item -gxcoff+
5031 @opindex gxcoff+
5032 Produce debugging information in XCOFF format (if that is supported),
5033 using GNU extensions understood only by the GNU debugger (GDB)@.  The
5034 use of these extensions is likely to make other debuggers crash or
5035 refuse to read the program, and may cause assemblers other than the GNU
5036 assembler (GAS) to fail with an error.
5038 @item -gdwarf-@var{version}
5039 @opindex gdwarf-@var{version}
5040 Produce debugging information in DWARF format (if that is supported).
5041 The value of @var{version} may be either 2, 3 or 4; the default version
5042 for most targets is 4.
5044 Note that with DWARF Version 2, some ports require and always
5045 use some non-conflicting DWARF 3 extensions in the unwind tables.
5047 Version 4 may require GDB 7.0 and @option{-fvar-tracking-assignments}
5048 for maximum benefit.
5050 @item -grecord-gcc-switches
5051 @opindex grecord-gcc-switches
5052 This switch causes the command-line options used to invoke the
5053 compiler that may affect code generation to be appended to the
5054 DW_AT_producer attribute in DWARF debugging information.  The options
5055 are concatenated with spaces separating them from each other and from
5056 the compiler version.  See also @option{-frecord-gcc-switches} for another
5057 way of storing compiler options into the object file.  This is the default.
5059 @item -gno-record-gcc-switches
5060 @opindex gno-record-gcc-switches
5061 Disallow appending command-line options to the DW_AT_producer attribute
5062 in DWARF debugging information.
5064 @item -gstrict-dwarf
5065 @opindex gstrict-dwarf
5066 Disallow using extensions of later DWARF standard version than selected
5067 with @option{-gdwarf-@var{version}}.  On most targets using non-conflicting
5068 DWARF extensions from later standard versions is allowed.
5070 @item -gno-strict-dwarf
5071 @opindex gno-strict-dwarf
5072 Allow using extensions of later DWARF standard version than selected with
5073 @option{-gdwarf-@var{version}}.
5075 @item -gvms
5076 @opindex gvms
5077 Produce debugging information in Alpha/VMS debug format (if that is
5078 supported).  This is the format used by DEBUG on Alpha/VMS systems.
5080 @item -g@var{level}
5081 @itemx -ggdb@var{level}
5082 @itemx -gstabs@var{level}
5083 @itemx -gcoff@var{level}
5084 @itemx -gxcoff@var{level}
5085 @itemx -gvms@var{level}
5086 Request debugging information and also use @var{level} to specify how
5087 much information.  The default level is 2.
5089 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
5090 @option{-g}.
5092 Level 1 produces minimal information, enough for making backtraces in
5093 parts of the program that you don't plan to debug.  This includes
5094 descriptions of functions and external variables, but no information
5095 about local variables and no line numbers.
5097 Level 3 includes extra information, such as all the macro definitions
5098 present in the program.  Some debuggers support macro expansion when
5099 you use @option{-g3}.
5101 @option{-gdwarf-2} does not accept a concatenated debug level, because
5102 GCC used to support an option @option{-gdwarf} that meant to generate
5103 debug information in version 1 of the DWARF format (which is very
5104 different from version 2), and it would have been too confusing.  That
5105 debug format is long obsolete, but the option cannot be changed now.
5106 Instead use an additional @option{-g@var{level}} option to change the
5107 debug level for DWARF.
5109 @item -gtoggle
5110 @opindex gtoggle
5111 Turn off generation of debug info, if leaving out this option
5112 generates it, or turn it on at level 2 otherwise.  The position of this
5113 argument in the command line does not matter; it takes effect after all
5114 other options are processed, and it does so only once, no matter how
5115 many times it is given.  This is mainly intended to be used with
5116 @option{-fcompare-debug}.
5118 @item -fsanitize=address
5119 Enable AddressSanitizer, a fast memory error detector.
5120 Memory access instructions will be instrumented to detect
5121 out-of-bounds and use-after-free bugs.
5122 See @uref{http://code.google.com/p/address-sanitizer/} for more details.
5124 @item -fsanitize=thread
5125 Enable ThreadSanitizer, a fast data race detector.
5126 Memory access instructions will be instrumented to detect
5127 data race bugs.
5128 See @uref{http://code.google.com/p/data-race-test/wiki/ThreadSanitizer} for more details.
5130 @item -fdump-final-insns@r{[}=@var{file}@r{]}
5131 @opindex fdump-final-insns
5132 Dump the final internal representation (RTL) to @var{file}.  If the
5133 optional argument is omitted (or if @var{file} is @code{.}), the name
5134 of the dump file is determined by appending @code{.gkd} to the
5135 compilation output file name.
5137 @item -fcompare-debug@r{[}=@var{opts}@r{]}
5138 @opindex fcompare-debug
5139 @opindex fno-compare-debug
5140 If no error occurs during compilation, run the compiler a second time,
5141 adding @var{opts} and @option{-fcompare-debug-second} to the arguments
5142 passed to the second compilation.  Dump the final internal
5143 representation in both compilations, and print an error if they differ.
5145 If the equal sign is omitted, the default @option{-gtoggle} is used.
5147 The environment variable @env{GCC_COMPARE_DEBUG}, if defined, non-empty
5148 and nonzero, implicitly enables @option{-fcompare-debug}.  If
5149 @env{GCC_COMPARE_DEBUG} is defined to a string starting with a dash,
5150 then it is used for @var{opts}, otherwise the default @option{-gtoggle}
5151 is used.
5153 @option{-fcompare-debug=}, with the equal sign but without @var{opts},
5154 is equivalent to @option{-fno-compare-debug}, which disables the dumping
5155 of the final representation and the second compilation, preventing even
5156 @env{GCC_COMPARE_DEBUG} from taking effect.
5158 To verify full coverage during @option{-fcompare-debug} testing, set
5159 @env{GCC_COMPARE_DEBUG} to say @samp{-fcompare-debug-not-overridden},
5160 which GCC rejects as an invalid option in any actual compilation
5161 (rather than preprocessing, assembly or linking).  To get just a
5162 warning, setting @env{GCC_COMPARE_DEBUG} to @samp{-w%n-fcompare-debug
5163 not overridden} will do.
5165 @item -fcompare-debug-second
5166 @opindex fcompare-debug-second
5167 This option is implicitly passed to the compiler for the second
5168 compilation requested by @option{-fcompare-debug}, along with options to
5169 silence warnings, and omitting other options that would cause
5170 side-effect compiler outputs to files or to the standard output.  Dump
5171 files and preserved temporary files are renamed so as to contain the
5172 @code{.gk} additional extension during the second compilation, to avoid
5173 overwriting those generated by the first.
5175 When this option is passed to the compiler driver, it causes the
5176 @emph{first} compilation to be skipped, which makes it useful for little
5177 other than debugging the compiler proper.
5179 @item -feliminate-dwarf2-dups
5180 @opindex feliminate-dwarf2-dups
5181 Compress DWARF 2 debugging information by eliminating duplicated
5182 information about each symbol.  This option only makes sense when
5183 generating DWARF 2 debugging information with @option{-gdwarf-2}.
5185 @item -femit-struct-debug-baseonly
5186 Emit debug information for struct-like types
5187 only when the base name of the compilation source file
5188 matches the base name of file in which the struct is defined.
5190 This option substantially reduces the size of debugging information,
5191 but at significant potential loss in type information to the debugger.
5192 See @option{-femit-struct-debug-reduced} for a less aggressive option.
5193 See @option{-femit-struct-debug-detailed} for more detailed control.
5195 This option works only with DWARF 2.
5197 @item -femit-struct-debug-reduced
5198 Emit debug information for struct-like types
5199 only when the base name of the compilation source file
5200 matches the base name of file in which the type is defined,
5201 unless the struct is a template or defined in a system header.
5203 This option significantly reduces the size of debugging information,
5204 with some potential loss in type information to the debugger.
5205 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
5206 See @option{-femit-struct-debug-detailed} for more detailed control.
5208 This option works only with DWARF 2.
5210 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
5211 Specify the struct-like types
5212 for which the compiler generates debug information.
5213 The intent is to reduce duplicate struct debug information
5214 between different object files within the same program.
5216 This option is a detailed version of
5217 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
5218 which serves for most needs.
5220 A specification has the syntax@*
5221 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
5223 The optional first word limits the specification to
5224 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
5225 A struct type is used directly when it is the type of a variable, member.
5226 Indirect uses arise through pointers to structs.
5227 That is, when use of an incomplete struct is valid, the use is indirect.
5228 An example is
5229 @samp{struct one direct; struct two * indirect;}.
5231 The optional second word limits the specification to
5232 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
5233 Generic structs are a bit complicated to explain.
5234 For C++, these are non-explicit specializations of template classes,
5235 or non-template classes within the above.
5236 Other programming languages have generics,
5237 but @option{-femit-struct-debug-detailed} does not yet implement them.
5239 The third word specifies the source files for those
5240 structs for which the compiler should emit debug information.
5241 The values @samp{none} and @samp{any} have the normal meaning.
5242 The value @samp{base} means that
5243 the base of name of the file in which the type declaration appears
5244 must match the base of the name of the main compilation file.
5245 In practice, this means that when compiling @file{foo.c}, debug information
5246 is generated for types declared in that file and @file{foo.h},
5247 but not other header files.
5248 The value @samp{sys} means those types satisfying @samp{base}
5249 or declared in system or compiler headers.
5251 You may need to experiment to determine the best settings for your application.
5253 The default is @option{-femit-struct-debug-detailed=all}.
5255 This option works only with DWARF 2.
5257 @item -fno-merge-debug-strings
5258 @opindex fmerge-debug-strings
5259 @opindex fno-merge-debug-strings
5260 Direct the linker to not merge together strings in the debugging
5261 information that are identical in different object files.  Merging is
5262 not supported by all assemblers or linkers.  Merging decreases the size
5263 of the debug information in the output file at the cost of increasing
5264 link processing time.  Merging is enabled by default.
5266 @item -fdebug-prefix-map=@var{old}=@var{new}
5267 @opindex fdebug-prefix-map
5268 When compiling files in directory @file{@var{old}}, record debugging
5269 information describing them as in @file{@var{new}} instead.
5271 @item -fno-dwarf2-cfi-asm
5272 @opindex fdwarf2-cfi-asm
5273 @opindex fno-dwarf2-cfi-asm
5274 Emit DWARF 2 unwind info as compiler generated @code{.eh_frame} section
5275 instead of using GAS @code{.cfi_*} directives.
5277 @cindex @command{prof}
5278 @item -p
5279 @opindex p
5280 Generate extra code to write profile information suitable for the
5281 analysis program @command{prof}.  You must use this option when compiling
5282 the source files you want data about, and you must also use it when
5283 linking.
5285 @cindex @command{gprof}
5286 @item -pg
5287 @opindex pg
5288 Generate extra code to write profile information suitable for the
5289 analysis program @command{gprof}.  You must use this option when compiling
5290 the source files you want data about, and you must also use it when
5291 linking.
5293 @item -Q
5294 @opindex Q
5295 Makes the compiler print out each function name as it is compiled, and
5296 print some statistics about each pass when it finishes.
5298 @item -ftime-report
5299 @opindex ftime-report
5300 Makes the compiler print some statistics about the time consumed by each
5301 pass when it finishes.
5303 @item -fmem-report
5304 @opindex fmem-report
5305 Makes the compiler print some statistics about permanent memory
5306 allocation when it finishes.
5308 @item -fmem-report-wpa
5309 @opindex fmem-report-wpa
5310 Makes the compiler print some statistics about permanent memory
5311 allocation for the WPA phase only.
5313 @item -fpre-ipa-mem-report
5314 @opindex fpre-ipa-mem-report
5315 @item -fpost-ipa-mem-report
5316 @opindex fpost-ipa-mem-report
5317 Makes the compiler print some statistics about permanent memory
5318 allocation before or after interprocedural optimization.
5320 @item -fprofile-report
5321 @opindex fprofile-report
5322 Makes the compiler print some statistics about consistency of the
5323 (estimated) profile and effect of individual passes.
5325 @item -fstack-usage
5326 @opindex fstack-usage
5327 Makes the compiler output stack usage information for the program, on a
5328 per-function basis.  The filename for the dump is made by appending
5329 @file{.su} to the @var{auxname}.  @var{auxname} is generated from the name of
5330 the output file, if explicitly specified and it is not an executable,
5331 otherwise it is the basename of the source file.  An entry is made up
5332 of three fields:
5334 @itemize
5335 @item
5336 The name of the function.
5337 @item
5338 A number of bytes.
5339 @item
5340 One or more qualifiers: @code{static}, @code{dynamic}, @code{bounded}.
5341 @end itemize
5343 The qualifier @code{static} means that the function manipulates the stack
5344 statically: a fixed number of bytes are allocated for the frame on function
5345 entry and released on function exit; no stack adjustments are otherwise made
5346 in the function.  The second field is this fixed number of bytes.
5348 The qualifier @code{dynamic} means that the function manipulates the stack
5349 dynamically: in addition to the static allocation described above, stack
5350 adjustments are made in the body of the function, for example to push/pop
5351 arguments around function calls.  If the qualifier @code{bounded} is also
5352 present, the amount of these adjustments is bounded at compile time and
5353 the second field is an upper bound of the total amount of stack used by
5354 the function.  If it is not present, the amount of these adjustments is
5355 not bounded at compile time and the second field only represents the
5356 bounded part.
5358 @item -fprofile-arcs
5359 @opindex fprofile-arcs
5360 Add code so that program flow @dfn{arcs} are instrumented.  During
5361 execution the program records how many times each branch and call is
5362 executed and how many times it is taken or returns.  When the compiled
5363 program exits it saves this data to a file called
5364 @file{@var{auxname}.gcda} for each source file.  The data may be used for
5365 profile-directed optimizations (@option{-fbranch-probabilities}), or for
5366 test coverage analysis (@option{-ftest-coverage}).  Each object file's
5367 @var{auxname} is generated from the name of the output file, if
5368 explicitly specified and it is not the final executable, otherwise it is
5369 the basename of the source file.  In both cases any suffix is removed
5370 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
5371 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
5372 @xref{Cross-profiling}.
5374 @cindex @command{gcov}
5375 @item --coverage
5376 @opindex coverage
5378 This option is used to compile and link code instrumented for coverage
5379 analysis.  The option is a synonym for @option{-fprofile-arcs}
5380 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
5381 linking).  See the documentation for those options for more details.
5383 @itemize
5385 @item
5386 Compile the source files with @option{-fprofile-arcs} plus optimization
5387 and code generation options.  For test coverage analysis, use the
5388 additional @option{-ftest-coverage} option.  You do not need to profile
5389 every source file in a program.
5391 @item
5392 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
5393 (the latter implies the former).
5395 @item
5396 Run the program on a representative workload to generate the arc profile
5397 information.  This may be repeated any number of times.  You can run
5398 concurrent instances of your program, and provided that the file system
5399 supports locking, the data files will be correctly updated.  Also
5400 @code{fork} calls are detected and correctly handled (double counting
5401 will not happen).
5403 @item
5404 For profile-directed optimizations, compile the source files again with
5405 the same optimization and code generation options plus
5406 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
5407 Control Optimization}).
5409 @item
5410 For test coverage analysis, use @command{gcov} to produce human readable
5411 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
5412 @command{gcov} documentation for further information.
5414 @end itemize
5416 With @option{-fprofile-arcs}, for each function of your program GCC
5417 creates a program flow graph, then finds a spanning tree for the graph.
5418 Only arcs that are not on the spanning tree have to be instrumented: the
5419 compiler adds code to count the number of times that these arcs are
5420 executed.  When an arc is the only exit or only entrance to a block, the
5421 instrumentation code can be added to the block; otherwise, a new basic
5422 block must be created to hold the instrumentation code.
5424 @need 2000
5425 @item -ftest-coverage
5426 @opindex ftest-coverage
5427 Produce a notes file that the @command{gcov} code-coverage utility
5428 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
5429 show program coverage.  Each source file's note file is called
5430 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
5431 above for a description of @var{auxname} and instructions on how to
5432 generate test coverage data.  Coverage data matches the source files
5433 more closely if you do not optimize.
5435 @item -fdbg-cnt-list
5436 @opindex fdbg-cnt-list
5437 Print the name and the counter upper bound for all debug counters.
5440 @item -fdbg-cnt=@var{counter-value-list}
5441 @opindex fdbg-cnt
5442 Set the internal debug counter upper bound.  @var{counter-value-list}
5443 is a comma-separated list of @var{name}:@var{value} pairs
5444 which sets the upper bound of each debug counter @var{name} to @var{value}.
5445 All debug counters have the initial upper bound of @code{UINT_MAX};
5446 thus @code{dbg_cnt()} returns true always unless the upper bound
5447 is set by this option.
5448 For example, with @option{-fdbg-cnt=dce:10,tail_call:0},
5449 @code{dbg_cnt(dce)} returns true only for first 10 invocations.
5451 @item -fenable-@var{kind}-@var{pass}
5452 @itemx -fdisable-@var{kind}-@var{pass}=@var{range-list}
5453 @opindex fdisable-
5454 @opindex fenable-
5456 This is a set of options that are used to explicitly disable/enable
5457 optimization passes.  These options are intended for use for debugging GCC.
5458 Compiler users should use regular options for enabling/disabling
5459 passes instead.
5461 @table @gcctabopt
5463 @item -fdisable-ipa-@var{pass}
5464 Disable IPA pass @var{pass}. @var{pass} is the pass name.  If the same pass is
5465 statically invoked in the compiler multiple times, the pass name should be
5466 appended with a sequential number starting from 1.
5468 @item -fdisable-rtl-@var{pass}
5469 @itemx -fdisable-rtl-@var{pass}=@var{range-list}
5470 Disable RTL pass @var{pass}.  @var{pass} is the pass name.  If the same pass is
5471 statically invoked in the compiler multiple times, the pass name should be
5472 appended with a sequential number starting from 1.  @var{range-list} is a 
5473 comma-separated list of function ranges or assembler names.  Each range is a number
5474 pair separated by a colon.  The range is inclusive in both ends.  If the range
5475 is trivial, the number pair can be simplified as a single number.  If the
5476 function's call graph node's @var{uid} falls within one of the specified ranges,
5477 the @var{pass} is disabled for that function.  The @var{uid} is shown in the
5478 function header of a dump file, and the pass names can be dumped by using
5479 option @option{-fdump-passes}.
5481 @item -fdisable-tree-@var{pass}
5482 @itemx -fdisable-tree-@var{pass}=@var{range-list}
5483 Disable tree pass @var{pass}.  See @option{-fdisable-rtl} for the description of
5484 option arguments.
5486 @item -fenable-ipa-@var{pass}
5487 Enable IPA pass @var{pass}.  @var{pass} is the pass name.  If the same pass is
5488 statically invoked in the compiler multiple times, the pass name should be
5489 appended with a sequential number starting from 1.
5491 @item -fenable-rtl-@var{pass}
5492 @itemx -fenable-rtl-@var{pass}=@var{range-list}
5493 Enable RTL pass @var{pass}.  See @option{-fdisable-rtl} for option argument
5494 description and examples.
5496 @item -fenable-tree-@var{pass}
5497 @itemx -fenable-tree-@var{pass}=@var{range-list}
5498 Enable tree pass @var{pass}.  See @option{-fdisable-rtl} for the description
5499 of option arguments.
5501 @end table
5503 Here are some examples showing uses of these options.
5505 @smallexample
5507 # disable ccp1 for all functions
5508    -fdisable-tree-ccp1
5509 # disable complete unroll for function whose cgraph node uid is 1
5510    -fenable-tree-cunroll=1
5511 # disable gcse2 for functions at the following ranges [1,1],
5512 # [300,400], and [400,1000]
5513 # disable gcse2 for functions foo and foo2
5514    -fdisable-rtl-gcse2=foo,foo2
5515 # disable early inlining
5516    -fdisable-tree-einline
5517 # disable ipa inlining
5518    -fdisable-ipa-inline
5519 # enable tree full unroll
5520    -fenable-tree-unroll
5522 @end smallexample
5524 @item -d@var{letters}
5525 @itemx -fdump-rtl-@var{pass}
5526 @itemx -fdump-rtl-@var{pass}=@var{filename}
5527 @opindex d
5528 Says to make debugging dumps during compilation at times specified by
5529 @var{letters}.  This is used for debugging the RTL-based passes of the
5530 compiler.  The file names for most of the dumps are made by appending
5531 a pass number and a word to the @var{dumpname}, and the files are
5532 created in the directory of the output file. In case of
5533 @option{=@var{filename}} option, the dump is output on the given file
5534 instead of the pass numbered dump files. Note that the pass number is
5535 computed statically as passes get registered into the pass manager.
5536 Thus the numbering is not related to the dynamic order of execution of
5537 passes.  In particular, a pass installed by a plugin could have a
5538 number over 200 even if it executed quite early.  @var{dumpname} is
5539 generated from the name of the output file, if explicitly specified
5540 and it is not an executable, otherwise it is the basename of the
5541 source file. These switches may have different effects when
5542 @option{-E} is used for preprocessing.
5544 Debug dumps can be enabled with a @option{-fdump-rtl} switch or some
5545 @option{-d} option @var{letters}.  Here are the possible
5546 letters for use in @var{pass} and @var{letters}, and their meanings:
5548 @table @gcctabopt
5550 @item -fdump-rtl-alignments
5551 @opindex fdump-rtl-alignments
5552 Dump after branch alignments have been computed.
5554 @item -fdump-rtl-asmcons
5555 @opindex fdump-rtl-asmcons
5556 Dump after fixing rtl statements that have unsatisfied in/out constraints.
5558 @item -fdump-rtl-auto_inc_dec
5559 @opindex fdump-rtl-auto_inc_dec
5560 Dump after auto-inc-dec discovery.  This pass is only run on
5561 architectures that have auto inc or auto dec instructions.
5563 @item -fdump-rtl-barriers
5564 @opindex fdump-rtl-barriers
5565 Dump after cleaning up the barrier instructions.
5567 @item -fdump-rtl-bbpart
5568 @opindex fdump-rtl-bbpart
5569 Dump after partitioning hot and cold basic blocks.
5571 @item -fdump-rtl-bbro
5572 @opindex fdump-rtl-bbro
5573 Dump after block reordering.
5575 @item -fdump-rtl-btl1
5576 @itemx -fdump-rtl-btl2
5577 @opindex fdump-rtl-btl2
5578 @opindex fdump-rtl-btl2
5579 @option{-fdump-rtl-btl1} and @option{-fdump-rtl-btl2} enable dumping
5580 after the two branch
5581 target load optimization passes.
5583 @item -fdump-rtl-bypass
5584 @opindex fdump-rtl-bypass
5585 Dump after jump bypassing and control flow optimizations.
5587 @item -fdump-rtl-combine
5588 @opindex fdump-rtl-combine
5589 Dump after the RTL instruction combination pass.
5591 @item -fdump-rtl-compgotos
5592 @opindex fdump-rtl-compgotos
5593 Dump after duplicating the computed gotos.
5595 @item -fdump-rtl-ce1
5596 @itemx -fdump-rtl-ce2
5597 @itemx -fdump-rtl-ce3
5598 @opindex fdump-rtl-ce1
5599 @opindex fdump-rtl-ce2
5600 @opindex fdump-rtl-ce3
5601 @option{-fdump-rtl-ce1}, @option{-fdump-rtl-ce2}, and
5602 @option{-fdump-rtl-ce3} enable dumping after the three
5603 if conversion passes.
5605 @item -fdump-rtl-cprop_hardreg
5606 @opindex fdump-rtl-cprop_hardreg
5607 Dump after hard register copy propagation.
5609 @item -fdump-rtl-csa
5610 @opindex fdump-rtl-csa
5611 Dump after combining stack adjustments.
5613 @item -fdump-rtl-cse1
5614 @itemx -fdump-rtl-cse2
5615 @opindex fdump-rtl-cse1
5616 @opindex fdump-rtl-cse2
5617 @option{-fdump-rtl-cse1} and @option{-fdump-rtl-cse2} enable dumping after
5618 the two common subexpression elimination passes.
5620 @item -fdump-rtl-dce
5621 @opindex fdump-rtl-dce
5622 Dump after the standalone dead code elimination passes.
5624 @item -fdump-rtl-dbr
5625 @opindex fdump-rtl-dbr
5626 Dump after delayed branch scheduling.
5628 @item -fdump-rtl-dce1
5629 @itemx -fdump-rtl-dce2
5630 @opindex fdump-rtl-dce1
5631 @opindex fdump-rtl-dce2
5632 @option{-fdump-rtl-dce1} and @option{-fdump-rtl-dce2} enable dumping after
5633 the two dead store elimination passes.
5635 @item -fdump-rtl-eh
5636 @opindex fdump-rtl-eh
5637 Dump after finalization of EH handling code.
5639 @item -fdump-rtl-eh_ranges
5640 @opindex fdump-rtl-eh_ranges
5641 Dump after conversion of EH handling range regions.
5643 @item -fdump-rtl-expand
5644 @opindex fdump-rtl-expand
5645 Dump after RTL generation.
5647 @item -fdump-rtl-fwprop1
5648 @itemx -fdump-rtl-fwprop2
5649 @opindex fdump-rtl-fwprop1
5650 @opindex fdump-rtl-fwprop2
5651 @option{-fdump-rtl-fwprop1} and @option{-fdump-rtl-fwprop2} enable
5652 dumping after the two forward propagation passes.
5654 @item -fdump-rtl-gcse1
5655 @itemx -fdump-rtl-gcse2
5656 @opindex fdump-rtl-gcse1
5657 @opindex fdump-rtl-gcse2
5658 @option{-fdump-rtl-gcse1} and @option{-fdump-rtl-gcse2} enable dumping
5659 after global common subexpression elimination.
5661 @item -fdump-rtl-init-regs
5662 @opindex fdump-rtl-init-regs
5663 Dump after the initialization of the registers.
5665 @item -fdump-rtl-initvals
5666 @opindex fdump-rtl-initvals
5667 Dump after the computation of the initial value sets.
5669 @item -fdump-rtl-into_cfglayout
5670 @opindex fdump-rtl-into_cfglayout
5671 Dump after converting to cfglayout mode.
5673 @item -fdump-rtl-ira
5674 @opindex fdump-rtl-ira
5675 Dump after iterated register allocation.
5677 @item -fdump-rtl-jump
5678 @opindex fdump-rtl-jump
5679 Dump after the second jump optimization.
5681 @item -fdump-rtl-loop2
5682 @opindex fdump-rtl-loop2
5683 @option{-fdump-rtl-loop2} enables dumping after the rtl
5684 loop optimization passes.
5686 @item -fdump-rtl-mach
5687 @opindex fdump-rtl-mach
5688 Dump after performing the machine dependent reorganization pass, if that
5689 pass exists.
5691 @item -fdump-rtl-mode_sw
5692 @opindex fdump-rtl-mode_sw
5693 Dump after removing redundant mode switches.
5695 @item -fdump-rtl-rnreg
5696 @opindex fdump-rtl-rnreg
5697 Dump after register renumbering.
5699 @item -fdump-rtl-outof_cfglayout
5700 @opindex fdump-rtl-outof_cfglayout
5701 Dump after converting from cfglayout mode.
5703 @item -fdump-rtl-peephole2
5704 @opindex fdump-rtl-peephole2
5705 Dump after the peephole pass.
5707 @item -fdump-rtl-postreload
5708 @opindex fdump-rtl-postreload
5709 Dump after post-reload optimizations.
5711 @item -fdump-rtl-pro_and_epilogue
5712 @opindex fdump-rtl-pro_and_epilogue
5713 Dump after generating the function prologues and epilogues.
5715 @item -fdump-rtl-regmove
5716 @opindex fdump-rtl-regmove
5717 Dump after the register move pass.
5719 @item -fdump-rtl-sched1
5720 @itemx -fdump-rtl-sched2
5721 @opindex fdump-rtl-sched1
5722 @opindex fdump-rtl-sched2
5723 @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2} enable dumping
5724 after the basic block scheduling passes.
5726 @item -fdump-rtl-see
5727 @opindex fdump-rtl-see
5728 Dump after sign extension elimination.
5730 @item -fdump-rtl-seqabstr
5731 @opindex fdump-rtl-seqabstr
5732 Dump after common sequence discovery.
5734 @item -fdump-rtl-shorten
5735 @opindex fdump-rtl-shorten
5736 Dump after shortening branches.
5738 @item -fdump-rtl-sibling
5739 @opindex fdump-rtl-sibling
5740 Dump after sibling call optimizations.
5742 @item -fdump-rtl-split1
5743 @itemx -fdump-rtl-split2
5744 @itemx -fdump-rtl-split3
5745 @itemx -fdump-rtl-split4
5746 @itemx -fdump-rtl-split5
5747 @opindex fdump-rtl-split1
5748 @opindex fdump-rtl-split2
5749 @opindex fdump-rtl-split3
5750 @opindex fdump-rtl-split4
5751 @opindex fdump-rtl-split5
5752 @option{-fdump-rtl-split1}, @option{-fdump-rtl-split2},
5753 @option{-fdump-rtl-split3}, @option{-fdump-rtl-split4} and
5754 @option{-fdump-rtl-split5} enable dumping after five rounds of
5755 instruction splitting.
5757 @item -fdump-rtl-sms
5758 @opindex fdump-rtl-sms
5759 Dump after modulo scheduling.  This pass is only run on some
5760 architectures.
5762 @item -fdump-rtl-stack
5763 @opindex fdump-rtl-stack
5764 Dump after conversion from GCC's ``flat register file'' registers to the
5765 x87's stack-like registers.  This pass is only run on x86 variants.
5767 @item -fdump-rtl-subreg1
5768 @itemx -fdump-rtl-subreg2
5769 @opindex fdump-rtl-subreg1
5770 @opindex fdump-rtl-subreg2
5771 @option{-fdump-rtl-subreg1} and @option{-fdump-rtl-subreg2} enable dumping after
5772 the two subreg expansion passes.
5774 @item -fdump-rtl-unshare
5775 @opindex fdump-rtl-unshare
5776 Dump after all rtl has been unshared.
5778 @item -fdump-rtl-vartrack
5779 @opindex fdump-rtl-vartrack
5780 Dump after variable tracking.
5782 @item -fdump-rtl-vregs
5783 @opindex fdump-rtl-vregs
5784 Dump after converting virtual registers to hard registers.
5786 @item -fdump-rtl-web
5787 @opindex fdump-rtl-web
5788 Dump after live range splitting.
5790 @item -fdump-rtl-regclass
5791 @itemx -fdump-rtl-subregs_of_mode_init
5792 @itemx -fdump-rtl-subregs_of_mode_finish
5793 @itemx -fdump-rtl-dfinit
5794 @itemx -fdump-rtl-dfinish
5795 @opindex fdump-rtl-regclass
5796 @opindex fdump-rtl-subregs_of_mode_init
5797 @opindex fdump-rtl-subregs_of_mode_finish
5798 @opindex fdump-rtl-dfinit
5799 @opindex fdump-rtl-dfinish
5800 These dumps are defined but always produce empty files.
5802 @item -da
5803 @itemx -fdump-rtl-all
5804 @opindex da
5805 @opindex fdump-rtl-all
5806 Produce all the dumps listed above.
5808 @item -dA
5809 @opindex dA
5810 Annotate the assembler output with miscellaneous debugging information.
5812 @item -dD
5813 @opindex dD
5814 Dump all macro definitions, at the end of preprocessing, in addition to
5815 normal output.
5817 @item -dH
5818 @opindex dH
5819 Produce a core dump whenever an error occurs.
5821 @item -dp
5822 @opindex dp
5823 Annotate the assembler output with a comment indicating which
5824 pattern and alternative is used.  The length of each instruction is
5825 also printed.
5827 @item -dP
5828 @opindex dP
5829 Dump the RTL in the assembler output as a comment before each instruction.
5830 Also turns on @option{-dp} annotation.
5832 @item -dx
5833 @opindex dx
5834 Just generate RTL for a function instead of compiling it.  Usually used
5835 with @option{-fdump-rtl-expand}.
5836 @end table
5838 @item -fdump-noaddr
5839 @opindex fdump-noaddr
5840 When doing debugging dumps, suppress address output.  This makes it more
5841 feasible to use diff on debugging dumps for compiler invocations with
5842 different compiler binaries and/or different
5843 text / bss / data / heap / stack / dso start locations.
5845 @item -fdump-unnumbered
5846 @opindex fdump-unnumbered
5847 When doing debugging dumps, suppress instruction numbers and address output.
5848 This makes it more feasible to use diff on debugging dumps for compiler
5849 invocations with different options, in particular with and without
5850 @option{-g}.
5852 @item -fdump-unnumbered-links
5853 @opindex fdump-unnumbered-links
5854 When doing debugging dumps (see @option{-d} option above), suppress
5855 instruction numbers for the links to the previous and next instructions
5856 in a sequence.
5858 @item -fdump-translation-unit @r{(C++ only)}
5859 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
5860 @opindex fdump-translation-unit
5861 Dump a representation of the tree structure for the entire translation
5862 unit to a file.  The file name is made by appending @file{.tu} to the
5863 source file name, and the file is created in the same directory as the
5864 output file.  If the @samp{-@var{options}} form is used, @var{options}
5865 controls the details of the dump as described for the
5866 @option{-fdump-tree} options.
5868 @item -fdump-class-hierarchy @r{(C++ only)}
5869 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
5870 @opindex fdump-class-hierarchy
5871 Dump a representation of each class's hierarchy and virtual function
5872 table layout to a file.  The file name is made by appending
5873 @file{.class} to the source file name, and the file is created in the
5874 same directory as the output file.  If the @samp{-@var{options}} form
5875 is used, @var{options} controls the details of the dump as described
5876 for the @option{-fdump-tree} options.
5878 @item -fdump-ipa-@var{switch}
5879 @opindex fdump-ipa
5880 Control the dumping at various stages of inter-procedural analysis
5881 language tree to a file.  The file name is generated by appending a
5882 switch specific suffix to the source file name, and the file is created
5883 in the same directory as the output file.  The following dumps are
5884 possible:
5886 @table @samp
5887 @item all
5888 Enables all inter-procedural analysis dumps.
5890 @item cgraph
5891 Dumps information about call-graph optimization, unused function removal,
5892 and inlining decisions.
5894 @item inline
5895 Dump after function inlining.
5897 @end table
5899 @item -fdump-passes
5900 @opindex fdump-passes
5901 Dump the list of optimization passes that are turned on and off by
5902 the current command-line options.
5904 @item -fdump-statistics-@var{option}
5905 @opindex fdump-statistics
5906 Enable and control dumping of pass statistics in a separate file.  The
5907 file name is generated by appending a suffix ending in
5908 @samp{.statistics} to the source file name, and the file is created in
5909 the same directory as the output file.  If the @samp{-@var{option}}
5910 form is used, @samp{-stats} causes counters to be summed over the
5911 whole compilation unit while @samp{-details} dumps every event as
5912 the passes generate them.  The default with no option is to sum
5913 counters for each function compiled.
5915 @item -fdump-tree-@var{switch}
5916 @itemx -fdump-tree-@var{switch}-@var{options}
5917 @itemx -fdump-tree-@var{switch}-@var{options}=@var{filename}
5918 @opindex fdump-tree
5919 Control the dumping at various stages of processing the intermediate
5920 language tree to a file.  The file name is generated by appending a
5921 switch-specific suffix to the source file name, and the file is
5922 created in the same directory as the output file. In case of
5923 @option{=@var{filename}} option, the dump is output on the given file
5924 instead of the auto named dump files.  If the @samp{-@var{options}}
5925 form is used, @var{options} is a list of @samp{-} separated options
5926 which control the details of the dump.  Not all options are applicable
5927 to all dumps; those that are not meaningful are ignored.  The
5928 following options are available
5930 @table @samp
5931 @item address
5932 Print the address of each node.  Usually this is not meaningful as it
5933 changes according to the environment and source file.  Its primary use
5934 is for tying up a dump file with a debug environment.
5935 @item asmname
5936 If @code{DECL_ASSEMBLER_NAME} has been set for a given decl, use that
5937 in the dump instead of @code{DECL_NAME}.  Its primary use is ease of
5938 use working backward from mangled names in the assembly file.
5939 @item slim
5940 When dumping front-end intermediate representations, inhibit dumping
5941 of members of a scope or body of a function merely because that scope
5942 has been reached.  Only dump such items when they are directly reachable
5943 by some other path.
5945 When dumping pretty-printed trees, this option inhibits dumping the
5946 bodies of control structures.
5948 When dumping RTL, print the RTL in slim (condensed) form instead of
5949 the default LISP-like representation.
5950 @item raw
5951 Print a raw representation of the tree.  By default, trees are
5952 pretty-printed into a C-like representation.
5953 @item details
5954 Enable more detailed dumps (not honored by every dump option). Also
5955 include information from the optimization passes.
5956 @item stats
5957 Enable dumping various statistics about the pass (not honored by every dump
5958 option).
5959 @item blocks
5960 Enable showing basic block boundaries (disabled in raw dumps).
5961 @item graph
5962 For each of the other indicated dump files (@option{-fdump-rtl-@var{pass}}),
5963 dump a representation of the control flow graph suitable for viewing with
5964 GraphViz to @file{@var{file}.@var{passid}.@var{pass}.dot}.  Each function in
5965 the file is pretty-printed as a subgraph, so that GraphViz can render them
5966 all in a single plot.
5968 This option currently only works for RTL dumps, and the RTL is always
5969 dumped in slim form.
5970 @item vops
5971 Enable showing virtual operands for every statement.
5972 @item lineno
5973 Enable showing line numbers for statements.
5974 @item uid
5975 Enable showing the unique ID (@code{DECL_UID}) for each variable.
5976 @item verbose
5977 Enable showing the tree dump for each statement.
5978 @item eh
5979 Enable showing the EH region number holding each statement.
5980 @item scev
5981 Enable showing scalar evolution analysis details.
5982 @item optimized
5983 Enable showing optimization information (only available in certain
5984 passes).
5985 @item missed
5986 Enable showing missed optimization information (only available in certain
5987 passes).
5988 @item notes
5989 Enable other detailed optimization information (only available in
5990 certain passes).
5991 @item =@var{filename}
5992 Instead of an auto named dump file, output into the given file
5993 name. The file names @file{stdout} and @file{stderr} are treated
5994 specially and are considered already open standard streams. For
5995 example,
5997 @smallexample
5998 gcc -O2 -ftree-vectorize -fdump-tree-vect-blocks=foo.dump
5999      -fdump-tree-pre=stderr file.c
6000 @end smallexample
6002 outputs vectorizer dump into @file{foo.dump}, while the PRE dump is
6003 output on to @file{stderr}. If two conflicting dump filenames are
6004 given for the same pass, then the latter option overrides the earlier
6005 one.
6007 @item all
6008 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
6009 and @option{lineno}.
6011 @item optall
6012 Turn on all optimization options, i.e., @option{optimized},
6013 @option{missed}, and @option{note}.
6014 @end table
6016 The following tree dumps are possible:
6017 @table @samp
6019 @item original
6020 @opindex fdump-tree-original
6021 Dump before any tree based optimization, to @file{@var{file}.original}.
6023 @item optimized
6024 @opindex fdump-tree-optimized
6025 Dump after all tree based optimization, to @file{@var{file}.optimized}.
6027 @item gimple
6028 @opindex fdump-tree-gimple
6029 Dump each function before and after the gimplification pass to a file.  The
6030 file name is made by appending @file{.gimple} to the source file name.
6032 @item cfg
6033 @opindex fdump-tree-cfg
6034 Dump the control flow graph of each function to a file.  The file name is
6035 made by appending @file{.cfg} to the source file name.
6037 @item ch
6038 @opindex fdump-tree-ch
6039 Dump each function after copying loop headers.  The file name is made by
6040 appending @file{.ch} to the source file name.
6042 @item ssa
6043 @opindex fdump-tree-ssa
6044 Dump SSA related information to a file.  The file name is made by appending
6045 @file{.ssa} to the source file name.
6047 @item alias
6048 @opindex fdump-tree-alias
6049 Dump aliasing information for each function.  The file name is made by
6050 appending @file{.alias} to the source file name.
6052 @item ccp
6053 @opindex fdump-tree-ccp
6054 Dump each function after CCP@.  The file name is made by appending
6055 @file{.ccp} to the source file name.
6057 @item storeccp
6058 @opindex fdump-tree-storeccp
6059 Dump each function after STORE-CCP@.  The file name is made by appending
6060 @file{.storeccp} to the source file name.
6062 @item pre
6063 @opindex fdump-tree-pre
6064 Dump trees after partial redundancy elimination.  The file name is made
6065 by appending @file{.pre} to the source file name.
6067 @item fre
6068 @opindex fdump-tree-fre
6069 Dump trees after full redundancy elimination.  The file name is made
6070 by appending @file{.fre} to the source file name.
6072 @item copyprop
6073 @opindex fdump-tree-copyprop
6074 Dump trees after copy propagation.  The file name is made
6075 by appending @file{.copyprop} to the source file name.
6077 @item store_copyprop
6078 @opindex fdump-tree-store_copyprop
6079 Dump trees after store copy-propagation.  The file name is made
6080 by appending @file{.store_copyprop} to the source file name.
6082 @item dce
6083 @opindex fdump-tree-dce
6084 Dump each function after dead code elimination.  The file name is made by
6085 appending @file{.dce} to the source file name.
6087 @item mudflap
6088 @opindex fdump-tree-mudflap
6089 Dump each function after adding mudflap instrumentation.  The file name is
6090 made by appending @file{.mudflap} to the source file name.
6092 @item sra
6093 @opindex fdump-tree-sra
6094 Dump each function after performing scalar replacement of aggregates.  The
6095 file name is made by appending @file{.sra} to the source file name.
6097 @item sink
6098 @opindex fdump-tree-sink
6099 Dump each function after performing code sinking.  The file name is made
6100 by appending @file{.sink} to the source file name.
6102 @item dom
6103 @opindex fdump-tree-dom
6104 Dump each function after applying dominator tree optimizations.  The file
6105 name is made by appending @file{.dom} to the source file name.
6107 @item dse
6108 @opindex fdump-tree-dse
6109 Dump each function after applying dead store elimination.  The file
6110 name is made by appending @file{.dse} to the source file name.
6112 @item phiopt
6113 @opindex fdump-tree-phiopt
6114 Dump each function after optimizing PHI nodes into straightline code.  The file
6115 name is made by appending @file{.phiopt} to the source file name.
6117 @item forwprop
6118 @opindex fdump-tree-forwprop
6119 Dump each function after forward propagating single use variables.  The file
6120 name is made by appending @file{.forwprop} to the source file name.
6122 @item copyrename
6123 @opindex fdump-tree-copyrename
6124 Dump each function after applying the copy rename optimization.  The file
6125 name is made by appending @file{.copyrename} to the source file name.
6127 @item nrv
6128 @opindex fdump-tree-nrv
6129 Dump each function after applying the named return value optimization on
6130 generic trees.  The file name is made by appending @file{.nrv} to the source
6131 file name.
6133 @item vect
6134 @opindex fdump-tree-vect
6135 Dump each function after applying vectorization of loops.  The file name is
6136 made by appending @file{.vect} to the source file name.
6138 @item slp
6139 @opindex fdump-tree-slp
6140 Dump each function after applying vectorization of basic blocks.  The file name
6141 is made by appending @file{.slp} to the source file name.
6143 @item vrp
6144 @opindex fdump-tree-vrp
6145 Dump each function after Value Range Propagation (VRP).  The file name
6146 is made by appending @file{.vrp} to the source file name.
6148 @item all
6149 @opindex fdump-tree-all
6150 Enable all the available tree dumps with the flags provided in this option.
6151 @end table
6153 @item -fopt-info
6154 @itemx -fopt-info-@var{options}
6155 @itemx -fopt-info-@var{options}=@var{filename}
6156 @opindex fopt-info
6157 Controls optimization dumps from various optimization passes. If the
6158 @samp{-@var{options}} form is used, @var{options} is a list of
6159 @samp{-} separated options to select the dump details and
6160 optimizations.  If @var{options} is not specified, it defaults to
6161 @option{all} for details and @option{optall} for optimization
6162 groups. If the @var{filename} is not specified, it defaults to
6163 @file{stderr}. Note that the output @var{filename} will be overwritten
6164 in case of multiple translation units. If a combined output from
6165 multiple translation units is desired, @file{stderr} should be used
6166 instead.
6168 The options can be divided into two groups, 1) options describing the
6169 verbosity of the dump, and 2) options describing which optimizations
6170 should be included. The options from both the groups can be freely
6171 mixed as they are non-overlapping. However, in case of any conflicts,
6172 the latter options override the earlier options on the command
6173 line. Though multiple -fopt-info options are accepted, only one of
6174 them can have @option{=filename}. If other filenames are provided then
6175 all but the first one are ignored.
6177 The dump verbosity has the following options
6179 @table @samp
6180 @item optimized
6181 Print information when an optimization is successfully applied. It is
6182 up to a pass to decide which information is relevant. For example, the
6183 vectorizer passes print the source location of loops which got
6184 successfully vectorized.
6185 @item missed
6186 Print information about missed optimizations. Individual passes
6187 control which information to include in the output. For example,
6189 @smallexample
6190 gcc -O2 -ftree-vectorize -fopt-info-vec-missed
6191 @end smallexample
6193 will print information about missed optimization opportunities from
6194 vectorization passes on stderr.
6195 @item note
6196 Print verbose information about optimizations, such as certain
6197 transformations, more detailed messages about decisions etc.
6198 @item all
6199 Print detailed optimization information. This includes
6200 @var{optimized}, @var{missed}, and @var{note}.
6201 @end table
6203 The second set of options describes a group of optimizations and may
6204 include one or more of the following.
6206 @table @samp
6207 @item ipa
6208 Enable dumps from all interprocedural optimizations.
6209 @item loop
6210 Enable dumps from all loop optimizations.
6211 @item inline
6212 Enable dumps from all inlining optimizations.
6213 @item vec
6214 Enable dumps from all vectorization optimizations.
6215 @end table
6217 For example,
6218 @smallexample
6219 gcc -O3 -fopt-info-missed=missed.all
6220 @end smallexample
6222 outputs missed optimization report from all the passes into
6223 @file{missed.all}.
6225 As another example,
6226 @smallexample
6227 gcc -O3 -fopt-info-inline-optimized-missed=inline.txt
6228 @end smallexample
6230 will output information about missed optimizations as well as
6231 optimized locations from all the inlining passes into
6232 @file{inline.txt}.
6234 If the @var{filename} is provided, then the dumps from all the
6235 applicable optimizations are concatenated into the @file{filename}.
6236 Otherwise the dump is output onto @file{stderr}. If @var{options} is
6237 omitted, it defaults to @option{all-optall}, which means dump all
6238 available optimization info from all the passes. In the following
6239 example, all optimization info is output on to @file{stderr}.
6241 @smallexample
6242 gcc -O3 -fopt-info
6243 @end smallexample
6245 Note that @option{-fopt-info-vec-missed} behaves the same as
6246 @option{-fopt-info-missed-vec}.
6248 As another example, consider
6250 @smallexample
6251 gcc -fopt-info-vec-missed=vec.miss -fopt-info-loop-optimized=loop.opt
6252 @end smallexample
6254 Here the two output filenames @file{vec.miss} and @file{loop.opt} are
6255 in conflict since only one output file is allowed. In this case, only
6256 the first option takes effect and the subsequent options are
6257 ignored. Thus only the @file{vec.miss} is produced which cotaints
6258 dumps from the vectorizer about missed opportunities.
6260 @item -ftree-vectorizer-verbose=@var{n}
6261 @opindex ftree-vectorizer-verbose
6262 This option is deprecated and is implemented in terms of
6263 @option{-fopt-info}. Please use @option{-fopt-info-@var{kind}} form
6264 instead, where @var{kind} is one of the valid opt-info options. It
6265 prints additional optimization information.  For @var{n}=0 no
6266 diagnostic information is reported.  If @var{n}=1 the vectorizer
6267 reports each loop that got vectorized, and the total number of loops
6268 that got vectorized.  If @var{n}=2 the vectorizer reports locations
6269 which could not be vectorized and the reasons for those. For any
6270 higher verbosity levels all the analysis and transformation
6271 information from the vectorizer is reported.
6273 Note that the information output by @option{-ftree-vectorizer-verbose}
6274 option is sent to @file{stderr}. If the equivalent form
6275 @option{-fopt-info-@var{options}=@var{filename}} is used then the
6276 output is sent into @var{filename} instead.
6278 @item -frandom-seed=@var{string}
6279 @opindex frandom-seed
6280 This option provides a seed that GCC uses in place of
6281 random numbers in generating certain symbol names
6282 that have to be different in every compiled file.  It is also used to
6283 place unique stamps in coverage data files and the object files that
6284 produce them.  You can use the @option{-frandom-seed} option to produce
6285 reproducibly identical object files.
6287 The @var{string} should be different for every file you compile.
6289 @item -fsched-verbose=@var{n}
6290 @opindex fsched-verbose
6291 On targets that use instruction scheduling, this option controls the
6292 amount of debugging output the scheduler prints.  This information is
6293 written to standard error, unless @option{-fdump-rtl-sched1} or
6294 @option{-fdump-rtl-sched2} is specified, in which case it is output
6295 to the usual dump listing file, @file{.sched1} or @file{.sched2}
6296 respectively.  However for @var{n} greater than nine, the output is
6297 always printed to standard error.
6299 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
6300 same information as @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2}.
6301 For @var{n} greater than one, it also output basic block probabilities,
6302 detailed ready list information and unit/insn info.  For @var{n} greater
6303 than two, it includes RTL at abort point, control-flow and regions info.
6304 And for @var{n} over four, @option{-fsched-verbose} also includes
6305 dependence info.
6307 @item -save-temps
6308 @itemx -save-temps=cwd
6309 @opindex save-temps
6310 Store the usual ``temporary'' intermediate files permanently; place them
6311 in the current directory and name them based on the source file.  Thus,
6312 compiling @file{foo.c} with @option{-c -save-temps} produces files
6313 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
6314 preprocessed @file{foo.i} output file even though the compiler now
6315 normally uses an integrated preprocessor.
6317 When used in combination with the @option{-x} command-line option,
6318 @option{-save-temps} is sensible enough to avoid over writing an
6319 input source file with the same extension as an intermediate file.
6320 The corresponding intermediate file may be obtained by renaming the
6321 source file before using @option{-save-temps}.
6323 If you invoke GCC in parallel, compiling several different source
6324 files that share a common base name in different subdirectories or the
6325 same source file compiled for multiple output destinations, it is
6326 likely that the different parallel compilers will interfere with each
6327 other, and overwrite the temporary files.  For instance:
6329 @smallexample
6330 gcc -save-temps -o outdir1/foo.o indir1/foo.c&
6331 gcc -save-temps -o outdir2/foo.o indir2/foo.c&
6332 @end smallexample
6334 may result in @file{foo.i} and @file{foo.o} being written to
6335 simultaneously by both compilers.
6337 @item -save-temps=obj
6338 @opindex save-temps=obj
6339 Store the usual ``temporary'' intermediate files permanently.  If the
6340 @option{-o} option is used, the temporary files are based on the
6341 object file.  If the @option{-o} option is not used, the
6342 @option{-save-temps=obj} switch behaves like @option{-save-temps}.
6344 For example:
6346 @smallexample
6347 gcc -save-temps=obj -c foo.c
6348 gcc -save-temps=obj -c bar.c -o dir/xbar.o
6349 gcc -save-temps=obj foobar.c -o dir2/yfoobar
6350 @end smallexample
6352 @noindent
6353 creates @file{foo.i}, @file{foo.s}, @file{dir/xbar.i},
6354 @file{dir/xbar.s}, @file{dir2/yfoobar.i}, @file{dir2/yfoobar.s}, and
6355 @file{dir2/yfoobar.o}.
6357 @item -time@r{[}=@var{file}@r{]}
6358 @opindex time
6359 Report the CPU time taken by each subprocess in the compilation
6360 sequence.  For C source files, this is the compiler proper and assembler
6361 (plus the linker if linking is done).
6363 Without the specification of an output file, the output looks like this:
6365 @smallexample
6366 # cc1 0.12 0.01
6367 # as 0.00 0.01
6368 @end smallexample
6370 The first number on each line is the ``user time'', that is time spent
6371 executing the program itself.  The second number is ``system time'',
6372 time spent executing operating system routines on behalf of the program.
6373 Both numbers are in seconds.
6375 With the specification of an output file, the output is appended to the
6376 named file, and it looks like this:
6378 @smallexample
6379 0.12 0.01 cc1 @var{options}
6380 0.00 0.01 as @var{options}
6381 @end smallexample
6383 The ``user time'' and the ``system time'' are moved before the program
6384 name, and the options passed to the program are displayed, so that one
6385 can later tell what file was being compiled, and with which options.
6387 @item -fvar-tracking
6388 @opindex fvar-tracking
6389 Run variable tracking pass.  It computes where variables are stored at each
6390 position in code.  Better debugging information is then generated
6391 (if the debugging information format supports this information).
6393 It is enabled by default when compiling with optimization (@option{-Os},
6394 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
6395 the debug info format supports it.
6397 @item -fvar-tracking-assignments
6398 @opindex fvar-tracking-assignments
6399 @opindex fno-var-tracking-assignments
6400 Annotate assignments to user variables early in the compilation and
6401 attempt to carry the annotations over throughout the compilation all the
6402 way to the end, in an attempt to improve debug information while
6403 optimizing.  Use of @option{-gdwarf-4} is recommended along with it.
6405 It can be enabled even if var-tracking is disabled, in which case
6406 annotations are created and maintained, but discarded at the end.
6408 @item -fvar-tracking-assignments-toggle
6409 @opindex fvar-tracking-assignments-toggle
6410 @opindex fno-var-tracking-assignments-toggle
6411 Toggle @option{-fvar-tracking-assignments}, in the same way that
6412 @option{-gtoggle} toggles @option{-g}.
6414 @item -print-file-name=@var{library}
6415 @opindex print-file-name
6416 Print the full absolute name of the library file @var{library} that
6417 would be used when linking---and don't do anything else.  With this
6418 option, GCC does not compile or link anything; it just prints the
6419 file name.
6421 @item -print-multi-directory
6422 @opindex print-multi-directory
6423 Print the directory name corresponding to the multilib selected by any
6424 other switches present in the command line.  This directory is supposed
6425 to exist in @env{GCC_EXEC_PREFIX}.
6427 @item -print-multi-lib
6428 @opindex print-multi-lib
6429 Print the mapping from multilib directory names to compiler switches
6430 that enable them.  The directory name is separated from the switches by
6431 @samp{;}, and each switch starts with an @samp{@@} instead of the
6432 @samp{-}, without spaces between multiple switches.  This is supposed to
6433 ease shell processing.
6435 @item -print-multi-os-directory
6436 @opindex print-multi-os-directory
6437 Print the path to OS libraries for the selected
6438 multilib, relative to some @file{lib} subdirectory.  If OS libraries are
6439 present in the @file{lib} subdirectory and no multilibs are used, this is
6440 usually just @file{.}, if OS libraries are present in @file{lib@var{suffix}}
6441 sibling directories this prints e.g.@: @file{../lib64}, @file{../lib} or
6442 @file{../lib32}, or if OS libraries are present in @file{lib/@var{subdir}}
6443 subdirectories it prints e.g.@: @file{amd64}, @file{sparcv9} or @file{ev6}.
6445 @item -print-multiarch
6446 @opindex print-multiarch
6447 Print the path to OS libraries for the selected multiarch,
6448 relative to some @file{lib} subdirectory.
6450 @item -print-prog-name=@var{program}
6451 @opindex print-prog-name
6452 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
6454 @item -print-libgcc-file-name
6455 @opindex print-libgcc-file-name
6456 Same as @option{-print-file-name=libgcc.a}.
6458 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
6459 but you do want to link with @file{libgcc.a}.  You can do:
6461 @smallexample
6462 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
6463 @end smallexample
6465 @item -print-search-dirs
6466 @opindex print-search-dirs
6467 Print the name of the configured installation directory and a list of
6468 program and library directories @command{gcc} searches---and don't do anything else.
6470 This is useful when @command{gcc} prints the error message
6471 @samp{installation problem, cannot exec cpp0: No such file or directory}.
6472 To resolve this you either need to put @file{cpp0} and the other compiler
6473 components where @command{gcc} expects to find them, or you can set the environment
6474 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
6475 Don't forget the trailing @samp{/}.
6476 @xref{Environment Variables}.
6478 @item -print-sysroot
6479 @opindex print-sysroot
6480 Print the target sysroot directory that is used during
6481 compilation.  This is the target sysroot specified either at configure
6482 time or using the @option{--sysroot} option, possibly with an extra
6483 suffix that depends on compilation options.  If no target sysroot is
6484 specified, the option prints nothing.
6486 @item -print-sysroot-headers-suffix
6487 @opindex print-sysroot-headers-suffix
6488 Print the suffix added to the target sysroot when searching for
6489 headers, or give an error if the compiler is not configured with such
6490 a suffix---and don't do anything else.
6492 @item -dumpmachine
6493 @opindex dumpmachine
6494 Print the compiler's target machine (for example,
6495 @samp{i686-pc-linux-gnu})---and don't do anything else.
6497 @item -dumpversion
6498 @opindex dumpversion
6499 Print the compiler version (for example, @samp{3.0})---and don't do
6500 anything else.
6502 @item -dumpspecs
6503 @opindex dumpspecs
6504 Print the compiler's built-in specs---and don't do anything else.  (This
6505 is used when GCC itself is being built.)  @xref{Spec Files}.
6507 @item -fno-eliminate-unused-debug-types
6508 @opindex feliminate-unused-debug-types
6509 @opindex fno-eliminate-unused-debug-types
6510 Normally, when producing DWARF 2 output, GCC avoids producing debug symbol 
6511 output for types that are nowhere used in the source file being compiled.
6512 Sometimes it is useful to have GCC emit debugging
6513 information for all types declared in a compilation
6514 unit, regardless of whether or not they are actually used
6515 in that compilation unit, for example 
6516 if, in the debugger, you want to cast a value to a type that is
6517 not actually used in your program (but is declared).  More often,
6518 however, this results in a significant amount of wasted space.
6519 @end table
6521 @node Optimize Options
6522 @section Options That Control Optimization
6523 @cindex optimize options
6524 @cindex options, optimization
6526 These options control various sorts of optimizations.
6528 Without any optimization option, the compiler's goal is to reduce the
6529 cost of compilation and to make debugging produce the expected
6530 results.  Statements are independent: if you stop the program with a
6531 breakpoint between statements, you can then assign a new value to any
6532 variable or change the program counter to any other statement in the
6533 function and get exactly the results you expect from the source
6534 code.
6536 Turning on optimization flags makes the compiler attempt to improve
6537 the performance and/or code size at the expense of compilation time
6538 and possibly the ability to debug the program.
6540 The compiler performs optimization based on the knowledge it has of the
6541 program.  Compiling multiple files at once to a single output file mode allows
6542 the compiler to use information gained from all of the files when compiling
6543 each of them.
6545 Not all optimizations are controlled directly by a flag.  Only
6546 optimizations that have a flag are listed in this section.
6548 Most optimizations are only enabled if an @option{-O} level is set on
6549 the command line.  Otherwise they are disabled, even if individual
6550 optimization flags are specified.
6552 Depending on the target and how GCC was configured, a slightly different
6553 set of optimizations may be enabled at each @option{-O} level than
6554 those listed here.  You can invoke GCC with @option{-Q --help=optimizers}
6555 to find out the exact set of optimizations that are enabled at each level.
6556 @xref{Overall Options}, for examples.
6558 @table @gcctabopt
6559 @item -O
6560 @itemx -O1
6561 @opindex O
6562 @opindex O1
6563 Optimize.  Optimizing compilation takes somewhat more time, and a lot
6564 more memory for a large function.
6566 With @option{-O}, the compiler tries to reduce code size and execution
6567 time, without performing any optimizations that take a great deal of
6568 compilation time.
6570 @option{-O} turns on the following optimization flags:
6571 @gccoptlist{
6572 -fauto-inc-dec @gol
6573 -fcompare-elim @gol
6574 -fcprop-registers @gol
6575 -fdce @gol
6576 -fdefer-pop @gol
6577 -fdelayed-branch @gol
6578 -fdse @gol
6579 -fguess-branch-probability @gol
6580 -fif-conversion2 @gol
6581 -fif-conversion @gol
6582 -fipa-pure-const @gol
6583 -fipa-profile @gol
6584 -fipa-reference @gol
6585 -fmerge-constants
6586 -fsplit-wide-types @gol
6587 -ftree-bit-ccp @gol
6588 -ftree-builtin-call-dce @gol
6589 -ftree-ccp @gol
6590 -ftree-ch @gol
6591 -ftree-copyrename @gol
6592 -ftree-dce @gol
6593 -ftree-dominator-opts @gol
6594 -ftree-dse @gol
6595 -ftree-forwprop @gol
6596 -ftree-fre @gol
6597 -ftree-phiprop @gol
6598 -ftree-slsr @gol
6599 -ftree-sra @gol
6600 -ftree-pta @gol
6601 -ftree-ter @gol
6602 -funit-at-a-time}
6604 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
6605 where doing so does not interfere with debugging.
6607 @item -O2
6608 @opindex O2
6609 Optimize even more.  GCC performs nearly all supported optimizations
6610 that do not involve a space-speed tradeoff.
6611 As compared to @option{-O}, this option increases both compilation time
6612 and the performance of the generated code.
6614 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
6615 also turns on the following optimization flags:
6616 @gccoptlist{-fthread-jumps @gol
6617 -falign-functions  -falign-jumps @gol
6618 -falign-loops  -falign-labels @gol
6619 -fcaller-saves @gol
6620 -fcrossjumping @gol
6621 -fcse-follow-jumps  -fcse-skip-blocks @gol
6622 -fdelete-null-pointer-checks @gol
6623 -fdevirtualize @gol
6624 -fexpensive-optimizations @gol
6625 -fgcse  -fgcse-lm  @gol
6626 -fhoist-adjacent-loads @gol
6627 -finline-small-functions @gol
6628 -findirect-inlining @gol
6629 -fipa-sra @gol
6630 -foptimize-sibling-calls @gol
6631 -fpartial-inlining @gol
6632 -fpeephole2 @gol
6633 -fregmove @gol
6634 -freorder-blocks  -freorder-functions @gol
6635 -frerun-cse-after-loop  @gol
6636 -fsched-interblock  -fsched-spec @gol
6637 -fschedule-insns  -fschedule-insns2 @gol
6638 -fstrict-aliasing -fstrict-overflow @gol
6639 -ftree-switch-conversion -ftree-tail-merge @gol
6640 -ftree-pre @gol
6641 -ftree-vrp}
6643 Please note the warning under @option{-fgcse} about
6644 invoking @option{-O2} on programs that use computed gotos.
6646 @item -O3
6647 @opindex O3
6648 Optimize yet more.  @option{-O3} turns on all optimizations specified
6649 by @option{-O2} and also turns on the @option{-finline-functions},
6650 @option{-funswitch-loops}, @option{-fpredictive-commoning},
6651 @option{-fgcse-after-reload}, @option{-ftree-vectorize},
6652 @option{-fvect-cost-model},
6653 @option{-ftree-partial-pre} and @option{-fipa-cp-clone} options.
6655 @item -O0
6656 @opindex O0
6657 Reduce compilation time and make debugging produce the expected
6658 results.  This is the default.
6660 @item -Os
6661 @opindex Os
6662 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
6663 do not typically increase code size.  It also performs further
6664 optimizations designed to reduce code size.
6666 @option{-Os} disables the following optimization flags:
6667 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
6668 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
6669 -fprefetch-loop-arrays  -ftree-vect-loop-version}
6671 @item -Ofast
6672 @opindex Ofast
6673 Disregard strict standards compliance.  @option{-Ofast} enables all
6674 @option{-O3} optimizations.  It also enables optimizations that are not
6675 valid for all standard-compliant programs.
6676 It turns on @option{-ffast-math} and the Fortran-specific
6677 @option{-fno-protect-parens} and @option{-fstack-arrays}.
6679 @item -Og
6680 @opindex Og
6681 Optimize debugging experience.  @option{-Og} enables optimizations
6682 that do not interfere with debugging. It should be the optimization
6683 level of choice for the standard edit-compile-debug cycle, offering
6684 a reasonable level of optimization while maintaining fast compilation
6685 and a good debugging experience.
6687 If you use multiple @option{-O} options, with or without level numbers,
6688 the last such option is the one that is effective.
6689 @end table
6691 Options of the form @option{-f@var{flag}} specify machine-independent
6692 flags.  Most flags have both positive and negative forms; the negative
6693 form of @option{-ffoo} is @option{-fno-foo}.  In the table
6694 below, only one of the forms is listed---the one you typically 
6695 use.  You can figure out the other form by either removing @samp{no-}
6696 or adding it.
6698 The following options control specific optimizations.  They are either
6699 activated by @option{-O} options or are related to ones that are.  You
6700 can use the following flags in the rare cases when ``fine-tuning'' of
6701 optimizations to be performed is desired.
6703 @table @gcctabopt
6704 @item -fno-default-inline
6705 @opindex fno-default-inline
6706 Do not make member functions inline by default merely because they are
6707 defined inside the class scope (C++ only).  Otherwise, when you specify
6708 @w{@option{-O}}, member functions defined inside class scope are compiled
6709 inline by default; i.e., you don't need to add @samp{inline} in front of
6710 the member function name.
6712 @item -fno-defer-pop
6713 @opindex fno-defer-pop
6714 Always pop the arguments to each function call as soon as that function
6715 returns.  For machines that must pop arguments after a function call,
6716 the compiler normally lets arguments accumulate on the stack for several
6717 function calls and pops them all at once.
6719 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6721 @item -fforward-propagate
6722 @opindex fforward-propagate
6723 Perform a forward propagation pass on RTL@.  The pass tries to combine two
6724 instructions and checks if the result can be simplified.  If loop unrolling
6725 is active, two passes are performed and the second is scheduled after
6726 loop unrolling.
6728 This option is enabled by default at optimization levels @option{-O},
6729 @option{-O2}, @option{-O3}, @option{-Os}.
6731 @item -ffp-contract=@var{style}
6732 @opindex ffp-contract
6733 @option{-ffp-contract=off} disables floating-point expression contraction.
6734 @option{-ffp-contract=fast} enables floating-point expression contraction
6735 such as forming of fused multiply-add operations if the target has
6736 native support for them.
6737 @option{-ffp-contract=on} enables floating-point expression contraction
6738 if allowed by the language standard.  This is currently not implemented
6739 and treated equal to @option{-ffp-contract=off}.
6741 The default is @option{-ffp-contract=fast}.
6743 @item -fomit-frame-pointer
6744 @opindex fomit-frame-pointer
6745 Don't keep the frame pointer in a register for functions that
6746 don't need one.  This avoids the instructions to save, set up and
6747 restore frame pointers; it also makes an extra register available
6748 in many functions.  @strong{It also makes debugging impossible on
6749 some machines.}
6751 On some machines, such as the VAX, this flag has no effect, because
6752 the standard calling sequence automatically handles the frame pointer
6753 and nothing is saved by pretending it doesn't exist.  The
6754 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
6755 whether a target machine supports this flag.  @xref{Registers,,Register
6756 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
6758 Starting with GCC version 4.6, the default setting (when not optimizing for
6759 size) for 32-bit GNU/Linux x86 and 32-bit Darwin x86 targets has been changed to
6760 @option{-fomit-frame-pointer}.  The default can be reverted to
6761 @option{-fno-omit-frame-pointer} by configuring GCC with the
6762 @option{--enable-frame-pointer} configure option.
6764 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6766 @item -foptimize-sibling-calls
6767 @opindex foptimize-sibling-calls
6768 Optimize sibling and tail recursive calls.
6770 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6772 @item -fno-inline
6773 @opindex fno-inline
6774 Do not expand any functions inline apart from those marked with
6775 the @code{always_inline} attribute.  This is the default when not
6776 optimizing.
6778 Single functions can be exempted from inlining by marking them
6779 with the @code{noinline} attribute.
6781 @item -finline-small-functions
6782 @opindex finline-small-functions
6783 Integrate functions into their callers when their body is smaller than expected
6784 function call code (so overall size of program gets smaller).  The compiler
6785 heuristically decides which functions are simple enough to be worth integrating
6786 in this way.  This inlining applies to all functions, even those not declared
6787 inline.
6789 Enabled at level @option{-O2}.
6791 @item -findirect-inlining
6792 @opindex findirect-inlining
6793 Inline also indirect calls that are discovered to be known at compile
6794 time thanks to previous inlining.  This option has any effect only
6795 when inlining itself is turned on by the @option{-finline-functions}
6796 or @option{-finline-small-functions} options.
6798 Enabled at level @option{-O2}.
6800 @item -finline-functions
6801 @opindex finline-functions
6802 Consider all functions for inlining, even if they are not declared inline.
6803 The compiler heuristically decides which functions are worth integrating
6804 in this way.
6806 If all calls to a given function are integrated, and the function is
6807 declared @code{static}, then the function is normally not output as
6808 assembler code in its own right.
6810 Enabled at level @option{-O3}.
6812 @item -finline-functions-called-once
6813 @opindex finline-functions-called-once
6814 Consider all @code{static} functions called once for inlining into their
6815 caller even if they are not marked @code{inline}.  If a call to a given
6816 function is integrated, then the function is not output as assembler code
6817 in its own right.
6819 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
6821 @item -fearly-inlining
6822 @opindex fearly-inlining
6823 Inline functions marked by @code{always_inline} and functions whose body seems
6824 smaller than the function call overhead early before doing
6825 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
6826 makes profiling significantly cheaper and usually inlining faster on programs
6827 having large chains of nested wrapper functions.
6829 Enabled by default.
6831 @item -fipa-sra
6832 @opindex fipa-sra
6833 Perform interprocedural scalar replacement of aggregates, removal of
6834 unused parameters and replacement of parameters passed by reference
6835 by parameters passed by value.
6837 Enabled at levels @option{-O2}, @option{-O3} and @option{-Os}.
6839 @item -finline-limit=@var{n}
6840 @opindex finline-limit
6841 By default, GCC limits the size of functions that can be inlined.  This flag
6842 allows coarse control of this limit.  @var{n} is the size of functions that
6843 can be inlined in number of pseudo instructions.
6845 Inlining is actually controlled by a number of parameters, which may be
6846 specified individually by using @option{--param @var{name}=@var{value}}.
6847 The @option{-finline-limit=@var{n}} option sets some of these parameters
6848 as follows:
6850 @table @gcctabopt
6851 @item max-inline-insns-single
6852 is set to @var{n}/2.
6853 @item max-inline-insns-auto
6854 is set to @var{n}/2.
6855 @end table
6857 See below for a documentation of the individual
6858 parameters controlling inlining and for the defaults of these parameters.
6860 @emph{Note:} there may be no value to @option{-finline-limit} that results
6861 in default behavior.
6863 @emph{Note:} pseudo instruction represents, in this particular context, an
6864 abstract measurement of function's size.  In no way does it represent a count
6865 of assembly instructions and as such its exact meaning might change from one
6866 release to an another.
6868 @item -fno-keep-inline-dllexport
6869 @opindex -fno-keep-inline-dllexport
6870 This is a more fine-grained version of @option{-fkeep-inline-functions},
6871 which applies only to functions that are declared using the @code{dllexport}
6872 attribute or declspec (@xref{Function Attributes,,Declaring Attributes of
6873 Functions}.)
6875 @item -fkeep-inline-functions
6876 @opindex fkeep-inline-functions
6877 In C, emit @code{static} functions that are declared @code{inline}
6878 into the object file, even if the function has been inlined into all
6879 of its callers.  This switch does not affect functions using the
6880 @code{extern inline} extension in GNU C90@.  In C++, emit any and all
6881 inline functions into the object file.
6883 @item -fkeep-static-consts
6884 @opindex fkeep-static-consts
6885 Emit variables declared @code{static const} when optimization isn't turned
6886 on, even if the variables aren't referenced.
6888 GCC enables this option by default.  If you want to force the compiler to
6889 check if a variable is referenced, regardless of whether or not
6890 optimization is turned on, use the @option{-fno-keep-static-consts} option.
6892 @item -fmerge-constants
6893 @opindex fmerge-constants
6894 Attempt to merge identical constants (string constants and floating-point
6895 constants) across compilation units.
6897 This option is the default for optimized compilation if the assembler and
6898 linker support it.  Use @option{-fno-merge-constants} to inhibit this
6899 behavior.
6901 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6903 @item -fmerge-all-constants
6904 @opindex fmerge-all-constants
6905 Attempt to merge identical constants and identical variables.
6907 This option implies @option{-fmerge-constants}.  In addition to
6908 @option{-fmerge-constants} this considers e.g.@: even constant initialized
6909 arrays or initialized constant variables with integral or floating-point
6910 types.  Languages like C or C++ require each variable, including multiple
6911 instances of the same variable in recursive calls, to have distinct locations,
6912 so using this option results in non-conforming
6913 behavior.
6915 @item -fmodulo-sched
6916 @opindex fmodulo-sched
6917 Perform swing modulo scheduling immediately before the first scheduling
6918 pass.  This pass looks at innermost loops and reorders their
6919 instructions by overlapping different iterations.
6921 @item -fmodulo-sched-allow-regmoves
6922 @opindex fmodulo-sched-allow-regmoves
6923 Perform more aggressive SMS-based modulo scheduling with register moves
6924 allowed.  By setting this flag certain anti-dependences edges are
6925 deleted, which triggers the generation of reg-moves based on the
6926 life-range analysis.  This option is effective only with
6927 @option{-fmodulo-sched} enabled.
6929 @item -fno-branch-count-reg
6930 @opindex fno-branch-count-reg
6931 Do not use ``decrement and branch'' instructions on a count register,
6932 but instead generate a sequence of instructions that decrement a
6933 register, compare it against zero, then branch based upon the result.
6934 This option is only meaningful on architectures that support such
6935 instructions, which include x86, PowerPC, IA-64 and S/390.
6937 The default is @option{-fbranch-count-reg}.
6939 @item -fno-function-cse
6940 @opindex fno-function-cse
6941 Do not put function addresses in registers; make each instruction that
6942 calls a constant function contain the function's address explicitly.
6944 This option results in less efficient code, but some strange hacks
6945 that alter the assembler output may be confused by the optimizations
6946 performed when this option is not used.
6948 The default is @option{-ffunction-cse}
6950 @item -fno-zero-initialized-in-bss
6951 @opindex fno-zero-initialized-in-bss
6952 If the target supports a BSS section, GCC by default puts variables that
6953 are initialized to zero into BSS@.  This can save space in the resulting
6954 code.
6956 This option turns off this behavior because some programs explicitly
6957 rely on variables going to the data section---e.g., so that the
6958 resulting executable can find the beginning of that section and/or make
6959 assumptions based on that.
6961 The default is @option{-fzero-initialized-in-bss}.
6963 @item -fmudflap -fmudflapth -fmudflapir
6964 @opindex fmudflap
6965 @opindex fmudflapth
6966 @opindex fmudflapir
6967 @cindex bounds checking
6968 @cindex mudflap
6969 For front-ends that support it (C and C++), instrument all risky
6970 pointer/array dereferencing operations, some standard library
6971 string/heap functions, and some other associated constructs with
6972 range/validity tests.  Modules so instrumented should be immune to
6973 buffer overflows, invalid heap use, and some other classes of C/C++
6974 programming errors.  The instrumentation relies on a separate runtime
6975 library (@file{libmudflap}), which is linked into a program if
6976 @option{-fmudflap} is given at link time.  Run-time behavior of the
6977 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
6978 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
6979 for its options.
6981 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
6982 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
6983 addition to @option{-fmudflap} or @option{-fmudflapth}, if
6984 instrumentation should ignore pointer reads.  This produces less
6985 instrumentation (and therefore faster execution) and still provides
6986 some protection against outright memory corrupting writes, but allows
6987 erroneously read data to propagate within a program.
6989 @item -fthread-jumps
6990 @opindex fthread-jumps
6991 Perform optimizations that check to see if a jump branches to a
6992 location where another comparison subsumed by the first is found.  If
6993 so, the first branch is redirected to either the destination of the
6994 second branch or a point immediately following it, depending on whether
6995 the condition is known to be true or false.
6997 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6999 @item -fsplit-wide-types
7000 @opindex fsplit-wide-types
7001 When using a type that occupies multiple registers, such as @code{long
7002 long} on a 32-bit system, split the registers apart and allocate them
7003 independently.  This normally generates better code for those types,
7004 but may make debugging more difficult.
7006 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
7007 @option{-Os}.
7009 @item -fcse-follow-jumps
7010 @opindex fcse-follow-jumps
7011 In common subexpression elimination (CSE), scan through jump instructions
7012 when the target of the jump is not reached by any other path.  For
7013 example, when CSE encounters an @code{if} statement with an
7014 @code{else} clause, CSE follows the jump when the condition
7015 tested is false.
7017 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7019 @item -fcse-skip-blocks
7020 @opindex fcse-skip-blocks
7021 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
7022 follow jumps that conditionally skip over blocks.  When CSE
7023 encounters a simple @code{if} statement with no else clause,
7024 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
7025 body of the @code{if}.
7027 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7029 @item -frerun-cse-after-loop
7030 @opindex frerun-cse-after-loop
7031 Re-run common subexpression elimination after loop optimizations are
7032 performed.
7034 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7036 @item -fgcse
7037 @opindex fgcse
7038 Perform a global common subexpression elimination pass.
7039 This pass also performs global constant and copy propagation.
7041 @emph{Note:} When compiling a program using computed gotos, a GCC
7042 extension, you may get better run-time performance if you disable
7043 the global common subexpression elimination pass by adding
7044 @option{-fno-gcse} to the command line.
7046 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7048 @item -fgcse-lm
7049 @opindex fgcse-lm
7050 When @option{-fgcse-lm} is enabled, global common subexpression elimination
7051 attempts to move loads that are only killed by stores into themselves.  This
7052 allows a loop containing a load/store sequence to be changed to a load outside
7053 the loop, and a copy/store within the loop.
7055 Enabled by default when @option{-fgcse} is enabled.
7057 @item -fgcse-sm
7058 @opindex fgcse-sm
7059 When @option{-fgcse-sm} is enabled, a store motion pass is run after
7060 global common subexpression elimination.  This pass attempts to move
7061 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
7062 loops containing a load/store sequence can be changed to a load before
7063 the loop and a store after the loop.
7065 Not enabled at any optimization level.
7067 @item -fgcse-las
7068 @opindex fgcse-las
7069 When @option{-fgcse-las} is enabled, the global common subexpression
7070 elimination pass eliminates redundant loads that come after stores to the
7071 same memory location (both partial and full redundancies).
7073 Not enabled at any optimization level.
7075 @item -fgcse-after-reload
7076 @opindex fgcse-after-reload
7077 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
7078 pass is performed after reload.  The purpose of this pass is to clean up
7079 redundant spilling.
7081 @item -faggressive-loop-optimizations
7082 @opindex faggressive-loop-optimizations
7083 This option tells the loop optimizer to use language constraints to
7084 derive bounds for the number of iterations of a loop.  This assumes that
7085 loop code does not invoke undefined behavior by for example causing signed
7086 integer overflows or out-of-bound array accesses.  The bounds for the
7087 number of iterations of a loop are used to guide loop unrolling and peeling
7088 and loop exit test optimizations.
7089 This option is enabled by default.
7091 @item -funsafe-loop-optimizations
7092 @opindex funsafe-loop-optimizations
7093 This option tells the loop optimizer to assume that loop indices do not
7094 overflow, and that loops with nontrivial exit condition are not
7095 infinite.  This enables a wider range of loop optimizations even if
7096 the loop optimizer itself cannot prove that these assumptions are valid.
7097 If you use @option{-Wunsafe-loop-optimizations}, the compiler warns you
7098 if it finds this kind of loop.
7100 @item -fcrossjumping
7101 @opindex fcrossjumping
7102 Perform cross-jumping transformation.
7103 This transformation unifies equivalent code and saves code size.  The
7104 resulting code may or may not perform better than without cross-jumping.
7106 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7108 @item -fauto-inc-dec
7109 @opindex fauto-inc-dec
7110 Combine increments or decrements of addresses with memory accesses.
7111 This pass is always skipped on architectures that do not have
7112 instructions to support this.  Enabled by default at @option{-O} and
7113 higher on architectures that support this.
7115 @item -fdce
7116 @opindex fdce
7117 Perform dead code elimination (DCE) on RTL@.
7118 Enabled by default at @option{-O} and higher.
7120 @item -fdse
7121 @opindex fdse
7122 Perform dead store elimination (DSE) on RTL@.
7123 Enabled by default at @option{-O} and higher.
7125 @item -fif-conversion
7126 @opindex fif-conversion
7127 Attempt to transform conditional jumps into branch-less equivalents.  This
7128 includes use of conditional moves, min, max, set flags and abs instructions, and
7129 some tricks doable by standard arithmetics.  The use of conditional execution
7130 on chips where it is available is controlled by @code{if-conversion2}.
7132 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7134 @item -fif-conversion2
7135 @opindex fif-conversion2
7136 Use conditional execution (where available) to transform conditional jumps into
7137 branch-less equivalents.
7139 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7141 @item -fdelete-null-pointer-checks
7142 @opindex fdelete-null-pointer-checks
7143 Assume that programs cannot safely dereference null pointers, and that
7144 no code or data element resides there.  This enables simple constant
7145 folding optimizations at all optimization levels.  In addition, other
7146 optimization passes in GCC use this flag to control global dataflow
7147 analyses that eliminate useless checks for null pointers; these assume
7148 that if a pointer is checked after it has already been dereferenced,
7149 it cannot be null.
7151 Note however that in some environments this assumption is not true.
7152 Use @option{-fno-delete-null-pointer-checks} to disable this optimization
7153 for programs that depend on that behavior.
7155 Some targets, especially embedded ones, disable this option at all levels.
7156 Otherwise it is enabled at all levels: @option{-O0}, @option{-O1},
7157 @option{-O2}, @option{-O3}, @option{-Os}.  Passes that use the information
7158 are enabled independently at different optimization levels.
7160 @item -fdevirtualize
7161 @opindex fdevirtualize
7162 Attempt to convert calls to virtual functions to direct calls.  This
7163 is done both within a procedure and interprocedurally as part of
7164 indirect inlining (@code{-findirect-inlining}) and interprocedural constant
7165 propagation (@option{-fipa-cp}).
7166 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7168 @item -fexpensive-optimizations
7169 @opindex fexpensive-optimizations
7170 Perform a number of minor optimizations that are relatively expensive.
7172 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7174 @item -free
7175 @opindex free
7176 Attempt to remove redundant extension instructions.  This is especially
7177 helpful for the x86-64 architecture, which implicitly zero-extends in 64-bit
7178 registers after writing to their lower 32-bit half.
7180 Enabled for x86 at levels @option{-O2}, @option{-O3}.
7182 @item -foptimize-register-move
7183 @itemx -fregmove
7184 @opindex foptimize-register-move
7185 @opindex fregmove
7186 Attempt to reassign register numbers in move instructions and as
7187 operands of other simple instructions in order to maximize the amount of
7188 register tying.  This is especially helpful on machines with two-operand
7189 instructions.
7191 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
7192 optimization.
7194 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7196 @item -fira-algorithm=@var{algorithm}
7197 Use the specified coloring algorithm for the integrated register
7198 allocator.  The @var{algorithm} argument can be @samp{priority}, which
7199 specifies Chow's priority coloring, or @samp{CB}, which specifies
7200 Chaitin-Briggs coloring.  Chaitin-Briggs coloring is not implemented
7201 for all architectures, but for those targets that do support it, it is
7202 the default because it generates better code.
7204 @item -fira-region=@var{region}
7205 Use specified regions for the integrated register allocator.  The
7206 @var{region} argument should be one of the following:
7208 @table @samp
7210 @item all
7211 Use all loops as register allocation regions.
7212 This can give the best results for machines with a small and/or
7213 irregular register set.
7215 @item mixed
7216 Use all loops except for loops with small register pressure 
7217 as the regions.  This value usually gives
7218 the best results in most cases and for most architectures,
7219 and is enabled by default when compiling with optimization for speed
7220 (@option{-O}, @option{-O2}, @dots{}).
7222 @item one
7223 Use all functions as a single region.  
7224 This typically results in the smallest code size, and is enabled by default for
7225 @option{-Os} or @option{-O0}.
7227 @end table
7229 @item -fira-hoist-pressure
7230 @opindex fira-hoist-pressure
7231 Use IRA to evaluate register pressure in the code hoisting pass for
7232 decisions to hoist expressions.  This option usually results in smaller
7233 code, but it can slow the compiler down.
7235 This option is enabled at level @option{-Os} for all targets.
7237 @item -fira-loop-pressure
7238 @opindex fira-loop-pressure
7239 Use IRA to evaluate register pressure in loops for decisions to move
7240 loop invariants.  This option usually results in generation
7241 of faster and smaller code on machines with large register files (>= 32
7242 registers), but it can slow the compiler down.
7244 This option is enabled at level @option{-O3} for some targets.
7246 @item -fno-ira-share-save-slots
7247 @opindex fno-ira-share-save-slots
7248 Disable sharing of stack slots used for saving call-used hard
7249 registers living through a call.  Each hard register gets a
7250 separate stack slot, and as a result function stack frames are
7251 larger.
7253 @item -fno-ira-share-spill-slots
7254 @opindex fno-ira-share-spill-slots
7255 Disable sharing of stack slots allocated for pseudo-registers.  Each
7256 pseudo-register that does not get a hard register gets a separate
7257 stack slot, and as a result function stack frames are larger.
7259 @item -fira-verbose=@var{n}
7260 @opindex fira-verbose
7261 Control the verbosity of the dump file for the integrated register allocator.
7262 The default value is 5.  If the value @var{n} is greater or equal to 10,
7263 the dump output is sent to stderr using the same format as @var{n} minus 10.
7265 @item -fdelayed-branch
7266 @opindex fdelayed-branch
7267 If supported for the target machine, attempt to reorder instructions
7268 to exploit instruction slots available after delayed branch
7269 instructions.
7271 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7273 @item -fschedule-insns
7274 @opindex fschedule-insns
7275 If supported for the target machine, attempt to reorder instructions to
7276 eliminate execution stalls due to required data being unavailable.  This
7277 helps machines that have slow floating point or memory load instructions
7278 by allowing other instructions to be issued until the result of the load
7279 or floating-point instruction is required.
7281 Enabled at levels @option{-O2}, @option{-O3}.
7283 @item -fschedule-insns2
7284 @opindex fschedule-insns2
7285 Similar to @option{-fschedule-insns}, but requests an additional pass of
7286 instruction scheduling after register allocation has been done.  This is
7287 especially useful on machines with a relatively small number of
7288 registers and where memory load instructions take more than one cycle.
7290 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7292 @item -fno-sched-interblock
7293 @opindex fno-sched-interblock
7294 Don't schedule instructions across basic blocks.  This is normally
7295 enabled by default when scheduling before register allocation, i.e.@:
7296 with @option{-fschedule-insns} or at @option{-O2} or higher.
7298 @item -fno-sched-spec
7299 @opindex fno-sched-spec
7300 Don't allow speculative motion of non-load instructions.  This is normally
7301 enabled by default when scheduling before register allocation, i.e.@:
7302 with @option{-fschedule-insns} or at @option{-O2} or higher.
7304 @item -fsched-pressure
7305 @opindex fsched-pressure
7306 Enable register pressure sensitive insn scheduling before register
7307 allocation.  This only makes sense when scheduling before register
7308 allocation is enabled, i.e.@: with @option{-fschedule-insns} or at
7309 @option{-O2} or higher.  Usage of this option can improve the
7310 generated code and decrease its size by preventing register pressure
7311 increase above the number of available hard registers and subsequent
7312 spills in register allocation.
7314 @item -fsched-spec-load
7315 @opindex fsched-spec-load
7316 Allow speculative motion of some load instructions.  This only makes
7317 sense when scheduling before register allocation, i.e.@: with
7318 @option{-fschedule-insns} or at @option{-O2} or higher.
7320 @item -fsched-spec-load-dangerous
7321 @opindex fsched-spec-load-dangerous
7322 Allow speculative motion of more load instructions.  This only makes
7323 sense when scheduling before register allocation, i.e.@: with
7324 @option{-fschedule-insns} or at @option{-O2} or higher.
7326 @item -fsched-stalled-insns
7327 @itemx -fsched-stalled-insns=@var{n}
7328 @opindex fsched-stalled-insns
7329 Define how many insns (if any) can be moved prematurely from the queue
7330 of stalled insns into the ready list during the second scheduling pass.
7331 @option{-fno-sched-stalled-insns} means that no insns are moved
7332 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
7333 on how many queued insns can be moved prematurely.
7334 @option{-fsched-stalled-insns} without a value is equivalent to
7335 @option{-fsched-stalled-insns=1}.
7337 @item -fsched-stalled-insns-dep
7338 @itemx -fsched-stalled-insns-dep=@var{n}
7339 @opindex fsched-stalled-insns-dep
7340 Define how many insn groups (cycles) are examined for a dependency
7341 on a stalled insn that is a candidate for premature removal from the queue
7342 of stalled insns.  This has an effect only during the second scheduling pass,
7343 and only if @option{-fsched-stalled-insns} is used.
7344 @option{-fno-sched-stalled-insns-dep} is equivalent to
7345 @option{-fsched-stalled-insns-dep=0}.
7346 @option{-fsched-stalled-insns-dep} without a value is equivalent to
7347 @option{-fsched-stalled-insns-dep=1}.
7349 @item -fsched2-use-superblocks
7350 @opindex fsched2-use-superblocks
7351 When scheduling after register allocation, use superblock scheduling.
7352 This allows motion across basic block boundaries,
7353 resulting in faster schedules.  This option is experimental, as not all machine
7354 descriptions used by GCC model the CPU closely enough to avoid unreliable
7355 results from the algorithm.
7357 This only makes sense when scheduling after register allocation, i.e.@: with
7358 @option{-fschedule-insns2} or at @option{-O2} or higher.
7360 @item -fsched-group-heuristic
7361 @opindex fsched-group-heuristic
7362 Enable the group heuristic in the scheduler.  This heuristic favors
7363 the instruction that belongs to a schedule group.  This is enabled
7364 by default when scheduling is enabled, i.e.@: with @option{-fschedule-insns}
7365 or @option{-fschedule-insns2} or at @option{-O2} or higher.
7367 @item -fsched-critical-path-heuristic
7368 @opindex fsched-critical-path-heuristic
7369 Enable the critical-path heuristic in the scheduler.  This heuristic favors
7370 instructions on the critical path.  This is enabled by default when
7371 scheduling is enabled, i.e.@: with @option{-fschedule-insns}
7372 or @option{-fschedule-insns2} or at @option{-O2} or higher.
7374 @item -fsched-spec-insn-heuristic
7375 @opindex fsched-spec-insn-heuristic
7376 Enable the speculative instruction heuristic in the scheduler.  This
7377 heuristic favors speculative instructions with greater dependency weakness.
7378 This is enabled by default when scheduling is enabled, i.e.@:
7379 with @option{-fschedule-insns} or @option{-fschedule-insns2}
7380 or at @option{-O2} or higher.
7382 @item -fsched-rank-heuristic
7383 @opindex fsched-rank-heuristic
7384 Enable the rank heuristic in the scheduler.  This heuristic favors
7385 the instruction belonging to a basic block with greater size or frequency.
7386 This is enabled by default when scheduling is enabled, i.e.@:
7387 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7388 at @option{-O2} or higher.
7390 @item -fsched-last-insn-heuristic
7391 @opindex fsched-last-insn-heuristic
7392 Enable the last-instruction heuristic in the scheduler.  This heuristic
7393 favors the instruction that is less dependent on the last instruction
7394 scheduled.  This is enabled by default when scheduling is enabled,
7395 i.e.@: with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7396 at @option{-O2} or higher.
7398 @item -fsched-dep-count-heuristic
7399 @opindex fsched-dep-count-heuristic
7400 Enable the dependent-count heuristic in the scheduler.  This heuristic
7401 favors the instruction that has more instructions depending on it.
7402 This is enabled by default when scheduling is enabled, i.e.@:
7403 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7404 at @option{-O2} or higher.
7406 @item -freschedule-modulo-scheduled-loops
7407 @opindex freschedule-modulo-scheduled-loops
7408 Modulo scheduling is performed before traditional scheduling.  If a loop
7409 is modulo scheduled, later scheduling passes may change its schedule.  
7410 Use this option to control that behavior.
7412 @item -fselective-scheduling
7413 @opindex fselective-scheduling
7414 Schedule instructions using selective scheduling algorithm.  Selective
7415 scheduling runs instead of the first scheduler pass.
7417 @item -fselective-scheduling2
7418 @opindex fselective-scheduling2
7419 Schedule instructions using selective scheduling algorithm.  Selective
7420 scheduling runs instead of the second scheduler pass.
7422 @item -fsel-sched-pipelining
7423 @opindex fsel-sched-pipelining
7424 Enable software pipelining of innermost loops during selective scheduling.
7425 This option has no effect unless one of @option{-fselective-scheduling} or
7426 @option{-fselective-scheduling2} is turned on.
7428 @item -fsel-sched-pipelining-outer-loops
7429 @opindex fsel-sched-pipelining-outer-loops
7430 When pipelining loops during selective scheduling, also pipeline outer loops.
7431 This option has no effect unless @option{-fsel-sched-pipelining} is turned on.
7433 @item -fshrink-wrap
7434 @opindex fshrink-wrap
7435 Emit function prologues only before parts of the function that need it,
7436 rather than at the top of the function.  This flag is enabled by default at
7437 @option{-O} and higher.
7439 @item -fcaller-saves
7440 @opindex fcaller-saves
7441 Enable allocation of values to registers that are clobbered by
7442 function calls, by emitting extra instructions to save and restore the
7443 registers around such calls.  Such allocation is done only when it
7444 seems to result in better code.
7446 This option is always enabled by default on certain machines, usually
7447 those which have no call-preserved registers to use instead.
7449 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7451 @item -fcombine-stack-adjustments
7452 @opindex fcombine-stack-adjustments
7453 Tracks stack adjustments (pushes and pops) and stack memory references
7454 and then tries to find ways to combine them.
7456 Enabled by default at @option{-O1} and higher.
7458 @item -fconserve-stack
7459 @opindex fconserve-stack
7460 Attempt to minimize stack usage.  The compiler attempts to use less
7461 stack space, even if that makes the program slower.  This option
7462 implies setting the @option{large-stack-frame} parameter to 100
7463 and the @option{large-stack-frame-growth} parameter to 400.
7465 @item -ftree-reassoc
7466 @opindex ftree-reassoc
7467 Perform reassociation on trees.  This flag is enabled by default
7468 at @option{-O} and higher.
7470 @item -ftree-pre
7471 @opindex ftree-pre
7472 Perform partial redundancy elimination (PRE) on trees.  This flag is
7473 enabled by default at @option{-O2} and @option{-O3}.
7475 @item -ftree-partial-pre
7476 @opindex ftree-partial-pre
7477 Make partial redundancy elimination (PRE) more aggressive.  This flag is
7478 enabled by default at @option{-O3}.
7480 @item -ftree-forwprop
7481 @opindex ftree-forwprop
7482 Perform forward propagation on trees.  This flag is enabled by default
7483 at @option{-O} and higher.
7485 @item -ftree-fre
7486 @opindex ftree-fre
7487 Perform full redundancy elimination (FRE) on trees.  The difference
7488 between FRE and PRE is that FRE only considers expressions
7489 that are computed on all paths leading to the redundant computation.
7490 This analysis is faster than PRE, though it exposes fewer redundancies.
7491 This flag is enabled by default at @option{-O} and higher.
7493 @item -ftree-phiprop
7494 @opindex ftree-phiprop
7495 Perform hoisting of loads from conditional pointers on trees.  This
7496 pass is enabled by default at @option{-O} and higher.
7498 @item -fhoist-adjacent-loads
7499 @opindex hoist-adjacent-loads
7500 Speculatively hoist loads from both branches of an if-then-else if the
7501 loads are from adjacent locations in the same structure and the target
7502 architecture has a conditional move instruction.  This flag is enabled
7503 by default at @option{-O2} and higher.
7505 @item -ftree-copy-prop
7506 @opindex ftree-copy-prop
7507 Perform copy propagation on trees.  This pass eliminates unnecessary
7508 copy operations.  This flag is enabled by default at @option{-O} and
7509 higher.
7511 @item -fipa-pure-const
7512 @opindex fipa-pure-const
7513 Discover which functions are pure or constant.
7514 Enabled by default at @option{-O} and higher.
7516 @item -fipa-reference
7517 @opindex fipa-reference
7518 Discover which static variables do not escape the
7519 compilation unit.
7520 Enabled by default at @option{-O} and higher.
7522 @item -fipa-pta
7523 @opindex fipa-pta
7524 Perform interprocedural pointer analysis and interprocedural modification
7525 and reference analysis.  This option can cause excessive memory and
7526 compile-time usage on large compilation units.  It is not enabled by
7527 default at any optimization level.
7529 @item -fipa-profile
7530 @opindex fipa-profile
7531 Perform interprocedural profile propagation.  The functions called only from
7532 cold functions are marked as cold. Also functions executed once (such as
7533 @code{cold}, @code{noreturn}, static constructors or destructors) are identified. Cold
7534 functions and loop less parts of functions executed once are then optimized for
7535 size.
7536 Enabled by default at @option{-O} and higher.
7538 @item -fipa-cp
7539 @opindex fipa-cp
7540 Perform interprocedural constant propagation.
7541 This optimization analyzes the program to determine when values passed
7542 to functions are constants and then optimizes accordingly.
7543 This optimization can substantially increase performance
7544 if the application has constants passed to functions.
7545 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
7547 @item -fipa-cp-clone
7548 @opindex fipa-cp-clone
7549 Perform function cloning to make interprocedural constant propagation stronger.
7550 When enabled, interprocedural constant propagation performs function cloning
7551 when externally visible function can be called with constant arguments.
7552 Because this optimization can create multiple copies of functions,
7553 it may significantly increase code size
7554 (see @option{--param ipcp-unit-growth=@var{value}}).
7555 This flag is enabled by default at @option{-O3}.
7557 @item -ftree-sink
7558 @opindex ftree-sink
7559 Perform forward store motion  on trees.  This flag is
7560 enabled by default at @option{-O} and higher.
7562 @item -ftree-bit-ccp
7563 @opindex ftree-bit-ccp
7564 Perform sparse conditional bit constant propagation on trees and propagate
7565 pointer alignment information.
7566 This pass only operates on local scalar variables and is enabled by default
7567 at @option{-O} and higher.  It requires that @option{-ftree-ccp} is enabled.
7569 @item -ftree-ccp
7570 @opindex ftree-ccp
7571 Perform sparse conditional constant propagation (CCP) on trees.  This
7572 pass only operates on local scalar variables and is enabled by default
7573 at @option{-O} and higher.
7575 @item -ftree-switch-conversion
7576 Perform conversion of simple initializations in a switch to
7577 initializations from a scalar array.  This flag is enabled by default
7578 at @option{-O2} and higher.
7580 @item -ftree-tail-merge
7581 Look for identical code sequences.  When found, replace one with a jump to the
7582 other.  This optimization is known as tail merging or cross jumping.  This flag
7583 is enabled by default at @option{-O2} and higher.  The compilation time
7584 in this pass can
7585 be limited using @option{max-tail-merge-comparisons} parameter and
7586 @option{max-tail-merge-iterations} parameter.
7588 @item -ftree-dce
7589 @opindex ftree-dce
7590 Perform dead code elimination (DCE) on trees.  This flag is enabled by
7591 default at @option{-O} and higher.
7593 @item -ftree-builtin-call-dce
7594 @opindex ftree-builtin-call-dce
7595 Perform conditional dead code elimination (DCE) for calls to built-in functions
7596 that may set @code{errno} but are otherwise side-effect free.  This flag is
7597 enabled by default at @option{-O2} and higher if @option{-Os} is not also
7598 specified.
7600 @item -ftree-dominator-opts
7601 @opindex ftree-dominator-opts
7602 Perform a variety of simple scalar cleanups (constant/copy
7603 propagation, redundancy elimination, range propagation and expression
7604 simplification) based on a dominator tree traversal.  This also
7605 performs jump threading (to reduce jumps to jumps). This flag is
7606 enabled by default at @option{-O} and higher.
7608 @item -ftree-dse
7609 @opindex ftree-dse
7610 Perform dead store elimination (DSE) on trees.  A dead store is a store into
7611 a memory location that is later overwritten by another store without
7612 any intervening loads.  In this case the earlier store can be deleted.  This
7613 flag is enabled by default at @option{-O} and higher.
7615 @item -ftree-ch
7616 @opindex ftree-ch
7617 Perform loop header copying on trees.  This is beneficial since it increases
7618 effectiveness of code motion optimizations.  It also saves one jump.  This flag
7619 is enabled by default at @option{-O} and higher.  It is not enabled
7620 for @option{-Os}, since it usually increases code size.
7622 @item -ftree-loop-optimize
7623 @opindex ftree-loop-optimize
7624 Perform loop optimizations on trees.  This flag is enabled by default
7625 at @option{-O} and higher.
7627 @item -ftree-loop-linear
7628 @opindex ftree-loop-linear
7629 Perform loop interchange transformations on tree.  Same as
7630 @option{-floop-interchange}.  To use this code transformation, GCC has
7631 to be configured with @option{--with-ppl} and @option{--with-cloog} to
7632 enable the Graphite loop transformation infrastructure.
7634 @item -floop-interchange
7635 @opindex floop-interchange
7636 Perform loop interchange transformations on loops.  Interchanging two
7637 nested loops switches the inner and outer loops.  For example, given a
7638 loop like:
7639 @smallexample
7640 DO J = 1, M
7641   DO I = 1, N
7642     A(J, I) = A(J, I) * C
7643   ENDDO
7644 ENDDO
7645 @end smallexample
7646 loop interchange transforms the loop as if it were written:
7647 @smallexample
7648 DO I = 1, N
7649   DO J = 1, M
7650     A(J, I) = A(J, I) * C
7651   ENDDO
7652 ENDDO
7653 @end smallexample
7654 which can be beneficial when @code{N} is larger than the caches,
7655 because in Fortran, the elements of an array are stored in memory
7656 contiguously by column, and the original loop iterates over rows,
7657 potentially creating at each access a cache miss.  This optimization
7658 applies to all the languages supported by GCC and is not limited to
7659 Fortran.  To use this code transformation, GCC has to be configured
7660 with @option{--with-ppl} and @option{--with-cloog} to enable the
7661 Graphite loop transformation infrastructure.
7663 @item -floop-strip-mine
7664 @opindex floop-strip-mine
7665 Perform loop strip mining transformations on loops.  Strip mining
7666 splits a loop into two nested loops.  The outer loop has strides
7667 equal to the strip size and the inner loop has strides of the
7668 original loop within a strip.  The strip length can be changed
7669 using the @option{loop-block-tile-size} parameter.  For example,
7670 given a loop like:
7671 @smallexample
7672 DO I = 1, N
7673   A(I) = A(I) + C
7674 ENDDO
7675 @end smallexample
7676 loop strip mining transforms the loop as if it were written:
7677 @smallexample
7678 DO II = 1, N, 51
7679   DO I = II, min (II + 50, N)
7680     A(I) = A(I) + C
7681   ENDDO
7682 ENDDO
7683 @end smallexample
7684 This optimization applies to all the languages supported by GCC and is
7685 not limited to Fortran.  To use this code transformation, GCC has to
7686 be configured with @option{--with-ppl} and @option{--with-cloog} to
7687 enable the Graphite loop transformation infrastructure.
7689 @item -floop-block
7690 @opindex floop-block
7691 Perform loop blocking transformations on loops.  Blocking strip mines
7692 each loop in the loop nest such that the memory accesses of the
7693 element loops fit inside caches.  The strip length can be changed
7694 using the @option{loop-block-tile-size} parameter.  For example, given
7695 a loop like:
7696 @smallexample
7697 DO I = 1, N
7698   DO J = 1, M
7699     A(J, I) = B(I) + C(J)
7700   ENDDO
7701 ENDDO
7702 @end smallexample
7703 loop blocking transforms the loop as if it were written:
7704 @smallexample
7705 DO II = 1, N, 51
7706   DO JJ = 1, M, 51
7707     DO I = II, min (II + 50, N)
7708       DO J = JJ, min (JJ + 50, M)
7709         A(J, I) = B(I) + C(J)
7710       ENDDO
7711     ENDDO
7712   ENDDO
7713 ENDDO
7714 @end smallexample
7715 which can be beneficial when @code{M} is larger than the caches,
7716 because the innermost loop iterates over a smaller amount of data
7717 which can be kept in the caches.  This optimization applies to all the
7718 languages supported by GCC and is not limited to Fortran.  To use this
7719 code transformation, GCC has to be configured with @option{--with-ppl}
7720 and @option{--with-cloog} to enable the Graphite loop transformation
7721 infrastructure.
7723 @item -fgraphite-identity
7724 @opindex fgraphite-identity
7725 Enable the identity transformation for graphite.  For every SCoP we generate
7726 the polyhedral representation and transform it back to gimple.  Using
7727 @option{-fgraphite-identity} we can check the costs or benefits of the
7728 GIMPLE -> GRAPHITE -> GIMPLE transformation.  Some minimal optimizations
7729 are also performed by the code generator CLooG, like index splitting and
7730 dead code elimination in loops.
7732 @item -floop-nest-optimize
7733 @opindex floop-nest-optimize
7734 Enable the ISL based loop nest optimizer.  This is a generic loop nest
7735 optimizer based on the Pluto optimization algorithms.  It calculates a loop
7736 structure optimized for data-locality and parallelism.  This option
7737 is experimental.
7739 @item -floop-parallelize-all
7740 @opindex floop-parallelize-all
7741 Use the Graphite data dependence analysis to identify loops that can
7742 be parallelized.  Parallelize all the loops that can be analyzed to
7743 not contain loop carried dependences without checking that it is
7744 profitable to parallelize the loops.
7746 @item -fcheck-data-deps
7747 @opindex fcheck-data-deps
7748 Compare the results of several data dependence analyzers.  This option
7749 is used for debugging the data dependence analyzers.
7751 @item -ftree-loop-if-convert
7752 Attempt to transform conditional jumps in the innermost loops to
7753 branch-less equivalents.  The intent is to remove control-flow from
7754 the innermost loops in order to improve the ability of the
7755 vectorization pass to handle these loops.  This is enabled by default
7756 if vectorization is enabled.
7758 @item -ftree-loop-if-convert-stores
7759 Attempt to also if-convert conditional jumps containing memory writes.
7760 This transformation can be unsafe for multi-threaded programs as it
7761 transforms conditional memory writes into unconditional memory writes.
7762 For example,
7763 @smallexample
7764 for (i = 0; i < N; i++)
7765   if (cond)
7766     A[i] = expr;
7767 @end smallexample
7768 is transformed to
7769 @smallexample
7770 for (i = 0; i < N; i++)
7771   A[i] = cond ? expr : A[i];
7772 @end smallexample
7773 potentially producing data races.
7775 @item -ftree-loop-distribution
7776 Perform loop distribution.  This flag can improve cache performance on
7777 big loop bodies and allow further loop optimizations, like
7778 parallelization or vectorization, to take place.  For example, the loop
7779 @smallexample
7780 DO I = 1, N
7781   A(I) = B(I) + C
7782   D(I) = E(I) * F
7783 ENDDO
7784 @end smallexample
7785 is transformed to
7786 @smallexample
7787 DO I = 1, N
7788    A(I) = B(I) + C
7789 ENDDO
7790 DO I = 1, N
7791    D(I) = E(I) * F
7792 ENDDO
7793 @end smallexample
7795 @item -ftree-loop-distribute-patterns
7796 Perform loop distribution of patterns that can be code generated with
7797 calls to a library.  This flag is enabled by default at @option{-O3}.
7799 This pass distributes the initialization loops and generates a call to
7800 memset zero.  For example, the loop
7801 @smallexample
7802 DO I = 1, N
7803   A(I) = 0
7804   B(I) = A(I) + I
7805 ENDDO
7806 @end smallexample
7807 is transformed to
7808 @smallexample
7809 DO I = 1, N
7810    A(I) = 0
7811 ENDDO
7812 DO I = 1, N
7813    B(I) = A(I) + I
7814 ENDDO
7815 @end smallexample
7816 and the initialization loop is transformed into a call to memset zero.
7818 @item -ftree-loop-im
7819 @opindex ftree-loop-im
7820 Perform loop invariant motion on trees.  This pass moves only invariants that
7821 are hard to handle at RTL level (function calls, operations that expand to
7822 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
7823 operands of conditions that are invariant out of the loop, so that we can use
7824 just trivial invariantness analysis in loop unswitching.  The pass also includes
7825 store motion.
7827 @item -ftree-loop-ivcanon
7828 @opindex ftree-loop-ivcanon
7829 Create a canonical counter for number of iterations in loops for which
7830 determining number of iterations requires complicated analysis.  Later
7831 optimizations then may determine the number easily.  Useful especially
7832 in connection with unrolling.
7834 @item -fivopts
7835 @opindex fivopts
7836 Perform induction variable optimizations (strength reduction, induction
7837 variable merging and induction variable elimination) on trees.
7839 @item -ftree-parallelize-loops=n
7840 @opindex ftree-parallelize-loops
7841 Parallelize loops, i.e., split their iteration space to run in n threads.
7842 This is only possible for loops whose iterations are independent
7843 and can be arbitrarily reordered.  The optimization is only
7844 profitable on multiprocessor machines, for loops that are CPU-intensive,
7845 rather than constrained e.g.@: by memory bandwidth.  This option
7846 implies @option{-pthread}, and thus is only supported on targets
7847 that have support for @option{-pthread}.
7849 @item -ftree-pta
7850 @opindex ftree-pta
7851 Perform function-local points-to analysis on trees.  This flag is
7852 enabled by default at @option{-O} and higher.
7854 @item -ftree-sra
7855 @opindex ftree-sra
7856 Perform scalar replacement of aggregates.  This pass replaces structure
7857 references with scalars to prevent committing structures to memory too
7858 early.  This flag is enabled by default at @option{-O} and higher.
7860 @item -ftree-copyrename
7861 @opindex ftree-copyrename
7862 Perform copy renaming on trees.  This pass attempts to rename compiler
7863 temporaries to other variables at copy locations, usually resulting in
7864 variable names which more closely resemble the original variables.  This flag
7865 is enabled by default at @option{-O} and higher.
7867 @item -ftree-coalesce-inlined-vars
7868 Tell the copyrename pass (see @option{-ftree-copyrename}) to attempt to
7869 combine small user-defined variables too, but only if they were inlined
7870 from other functions.  It is a more limited form of
7871 @option{-ftree-coalesce-vars}.  This may harm debug information of such
7872 inlined variables, but it will keep variables of the inlined-into
7873 function apart from each other, such that they are more likely to
7874 contain the expected values in a debugging session.  This was the
7875 default in GCC versions older than 4.7.
7877 @item -ftree-coalesce-vars
7878 Tell the copyrename pass (see @option{-ftree-copyrename}) to attempt to
7879 combine small user-defined variables too, instead of just compiler
7880 temporaries.  This may severely limit the ability to debug an optimized
7881 program compiled with @option{-fno-var-tracking-assignments}.  In the
7882 negated form, this flag prevents SSA coalescing of user variables,
7883 including inlined ones.  This option is enabled by default.
7885 @item -ftree-ter
7886 @opindex ftree-ter
7887 Perform temporary expression replacement during the SSA->normal phase.  Single
7888 use/single def temporaries are replaced at their use location with their
7889 defining expression.  This results in non-GIMPLE code, but gives the expanders
7890 much more complex trees to work on resulting in better RTL generation.  This is
7891 enabled by default at @option{-O} and higher.
7893 @item -ftree-slsr
7894 @opindex ftree-slsr
7895 Perform straight-line strength reduction on trees.  This recognizes related
7896 expressions involving multiplications and replaces them by less expensive
7897 calculations when possible.  This is enabled by default at @option{-O} and
7898 higher.
7900 @item -ftree-vectorize
7901 @opindex ftree-vectorize
7902 Perform loop vectorization on trees. This flag is enabled by default at
7903 @option{-O3}.
7905 @item -ftree-slp-vectorize
7906 @opindex ftree-slp-vectorize
7907 Perform basic block vectorization on trees. This flag is enabled by default at
7908 @option{-O3} and when @option{-ftree-vectorize} is enabled.
7910 @item -ftree-vect-loop-version
7911 @opindex ftree-vect-loop-version
7912 Perform loop versioning when doing loop vectorization on trees.  When a loop
7913 appears to be vectorizable except that data alignment or data dependence cannot
7914 be determined at compile time, then vectorized and non-vectorized versions of
7915 the loop are generated along with run-time checks for alignment or dependence
7916 to control which version is executed.  This option is enabled by default
7917 except at level @option{-Os} where it is disabled.
7919 @item -fvect-cost-model
7920 @opindex fvect-cost-model
7921 Enable cost model for vectorization.  This option is enabled by default at
7922 @option{-O3}.
7924 @item -ftree-vrp
7925 @opindex ftree-vrp
7926 Perform Value Range Propagation on trees.  This is similar to the
7927 constant propagation pass, but instead of values, ranges of values are
7928 propagated.  This allows the optimizers to remove unnecessary range
7929 checks like array bound checks and null pointer checks.  This is
7930 enabled by default at @option{-O2} and higher.  Null pointer check
7931 elimination is only done if @option{-fdelete-null-pointer-checks} is
7932 enabled.
7934 @item -ftracer
7935 @opindex ftracer
7936 Perform tail duplication to enlarge superblock size.  This transformation
7937 simplifies the control flow of the function allowing other optimizations to do
7938 a better job.
7940 @item -funroll-loops
7941 @opindex funroll-loops
7942 Unroll loops whose number of iterations can be determined at compile
7943 time or upon entry to the loop.  @option{-funroll-loops} implies
7944 @option{-frerun-cse-after-loop}.  This option makes code larger,
7945 and may or may not make it run faster.
7947 @item -funroll-all-loops
7948 @opindex funroll-all-loops
7949 Unroll all loops, even if their number of iterations is uncertain when
7950 the loop is entered.  This usually makes programs run more slowly.
7951 @option{-funroll-all-loops} implies the same options as
7952 @option{-funroll-loops},
7954 @item -fsplit-ivs-in-unroller
7955 @opindex fsplit-ivs-in-unroller
7956 Enables expression of values of induction variables in later iterations
7957 of the unrolled loop using the value in the first iteration.  This breaks
7958 long dependency chains, thus improving efficiency of the scheduling passes.
7960 A combination of @option{-fweb} and CSE is often sufficient to obtain the
7961 same effect.  However, that is not reliable in cases where the loop body
7962 is more complicated than a single basic block.  It also does not work at all
7963 on some architectures due to restrictions in the CSE pass.
7965 This optimization is enabled by default.
7967 @item -fvariable-expansion-in-unroller
7968 @opindex fvariable-expansion-in-unroller
7969 With this option, the compiler creates multiple copies of some
7970 local variables when unrolling a loop, which can result in superior code.
7972 @item -fpartial-inlining
7973 @opindex fpartial-inlining
7974 Inline parts of functions.  This option has any effect only
7975 when inlining itself is turned on by the @option{-finline-functions}
7976 or @option{-finline-small-functions} options.
7978 Enabled at level @option{-O2}.
7980 @item -fpredictive-commoning
7981 @opindex fpredictive-commoning
7982 Perform predictive commoning optimization, i.e., reusing computations
7983 (especially memory loads and stores) performed in previous
7984 iterations of loops.
7986 This option is enabled at level @option{-O3}.
7988 @item -fprefetch-loop-arrays
7989 @opindex fprefetch-loop-arrays
7990 If supported by the target machine, generate instructions to prefetch
7991 memory to improve the performance of loops that access large arrays.
7993 This option may generate better or worse code; results are highly
7994 dependent on the structure of loops within the source code.
7996 Disabled at level @option{-Os}.
7998 @item -fno-peephole
7999 @itemx -fno-peephole2
8000 @opindex fno-peephole
8001 @opindex fno-peephole2
8002 Disable any machine-specific peephole optimizations.  The difference
8003 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
8004 are implemented in the compiler; some targets use one, some use the
8005 other, a few use both.
8007 @option{-fpeephole} is enabled by default.
8008 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8010 @item -fno-guess-branch-probability
8011 @opindex fno-guess-branch-probability
8012 Do not guess branch probabilities using heuristics.
8014 GCC uses heuristics to guess branch probabilities if they are
8015 not provided by profiling feedback (@option{-fprofile-arcs}).  These
8016 heuristics are based on the control flow graph.  If some branch probabilities
8017 are specified by @samp{__builtin_expect}, then the heuristics are
8018 used to guess branch probabilities for the rest of the control flow graph,
8019 taking the @samp{__builtin_expect} info into account.  The interactions
8020 between the heuristics and @samp{__builtin_expect} can be complex, and in
8021 some cases, it may be useful to disable the heuristics so that the effects
8022 of @samp{__builtin_expect} are easier to understand.
8024 The default is @option{-fguess-branch-probability} at levels
8025 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
8027 @item -freorder-blocks
8028 @opindex freorder-blocks
8029 Reorder basic blocks in the compiled function in order to reduce number of
8030 taken branches and improve code locality.
8032 Enabled at levels @option{-O2}, @option{-O3}.
8034 @item -freorder-blocks-and-partition
8035 @opindex freorder-blocks-and-partition
8036 In addition to reordering basic blocks in the compiled function, in order
8037 to reduce number of taken branches, partitions hot and cold basic blocks
8038 into separate sections of the assembly and .o files, to improve
8039 paging and cache locality performance.
8041 This optimization is automatically turned off in the presence of
8042 exception handling, for linkonce sections, for functions with a user-defined
8043 section attribute and on any architecture that does not support named
8044 sections.
8046 @item -freorder-functions
8047 @opindex freorder-functions
8048 Reorder functions in the object file in order to
8049 improve code locality.  This is implemented by using special
8050 subsections @code{.text.hot} for most frequently executed functions and
8051 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
8052 the linker so object file format must support named sections and linker must
8053 place them in a reasonable way.
8055 Also profile feedback must be available to make this option effective.  See
8056 @option{-fprofile-arcs} for details.
8058 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8060 @item -fstrict-aliasing
8061 @opindex fstrict-aliasing
8062 Allow the compiler to assume the strictest aliasing rules applicable to
8063 the language being compiled.  For C (and C++), this activates
8064 optimizations based on the type of expressions.  In particular, an
8065 object of one type is assumed never to reside at the same address as an
8066 object of a different type, unless the types are almost the same.  For
8067 example, an @code{unsigned int} can alias an @code{int}, but not a
8068 @code{void*} or a @code{double}.  A character type may alias any other
8069 type.
8071 @anchor{Type-punning}Pay special attention to code like this:
8072 @smallexample
8073 union a_union @{
8074   int i;
8075   double d;
8078 int f() @{
8079   union a_union t;
8080   t.d = 3.0;
8081   return t.i;
8083 @end smallexample
8084 The practice of reading from a different union member than the one most
8085 recently written to (called ``type-punning'') is common.  Even with
8086 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
8087 is accessed through the union type.  So, the code above works as
8088 expected.  @xref{Structures unions enumerations and bit-fields
8089 implementation}.  However, this code might not:
8090 @smallexample
8091 int f() @{
8092   union a_union t;
8093   int* ip;
8094   t.d = 3.0;
8095   ip = &t.i;
8096   return *ip;
8098 @end smallexample
8100 Similarly, access by taking the address, casting the resulting pointer
8101 and dereferencing the result has undefined behavior, even if the cast
8102 uses a union type, e.g.:
8103 @smallexample
8104 int f() @{
8105   double d = 3.0;
8106   return ((union a_union *) &d)->i;
8108 @end smallexample
8110 The @option{-fstrict-aliasing} option is enabled at levels
8111 @option{-O2}, @option{-O3}, @option{-Os}.
8113 @item -fstrict-overflow
8114 @opindex fstrict-overflow
8115 Allow the compiler to assume strict signed overflow rules, depending
8116 on the language being compiled.  For C (and C++) this means that
8117 overflow when doing arithmetic with signed numbers is undefined, which
8118 means that the compiler may assume that it does not happen.  This
8119 permits various optimizations.  For example, the compiler assumes
8120 that an expression like @code{i + 10 > i} is always true for
8121 signed @code{i}.  This assumption is only valid if signed overflow is
8122 undefined, as the expression is false if @code{i + 10} overflows when
8123 using twos complement arithmetic.  When this option is in effect any
8124 attempt to determine whether an operation on signed numbers 
8125 overflows must be written carefully to not actually involve overflow.
8127 This option also allows the compiler to assume strict pointer
8128 semantics: given a pointer to an object, if adding an offset to that
8129 pointer does not produce a pointer to the same object, the addition is
8130 undefined.  This permits the compiler to conclude that @code{p + u >
8131 p} is always true for a pointer @code{p} and unsigned integer
8132 @code{u}.  This assumption is only valid because pointer wraparound is
8133 undefined, as the expression is false if @code{p + u} overflows using
8134 twos complement arithmetic.
8136 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
8137 that integer signed overflow is fully defined: it wraps.  When
8138 @option{-fwrapv} is used, there is no difference between
8139 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
8140 integers.  With @option{-fwrapv} certain types of overflow are
8141 permitted.  For example, if the compiler gets an overflow when doing
8142 arithmetic on constants, the overflowed value can still be used with
8143 @option{-fwrapv}, but not otherwise.
8145 The @option{-fstrict-overflow} option is enabled at levels
8146 @option{-O2}, @option{-O3}, @option{-Os}.
8148 @item -falign-functions
8149 @itemx -falign-functions=@var{n}
8150 @opindex falign-functions
8151 Align the start of functions to the next power-of-two greater than
8152 @var{n}, skipping up to @var{n} bytes.  For instance,
8153 @option{-falign-functions=32} aligns functions to the next 32-byte
8154 boundary, but @option{-falign-functions=24} aligns to the next
8155 32-byte boundary only if this can be done by skipping 23 bytes or less.
8157 @option{-fno-align-functions} and @option{-falign-functions=1} are
8158 equivalent and mean that functions are not aligned.
8160 Some assemblers only support this flag when @var{n} is a power of two;
8161 in that case, it is rounded up.
8163 If @var{n} is not specified or is zero, use a machine-dependent default.
8165 Enabled at levels @option{-O2}, @option{-O3}.
8167 @item -falign-labels
8168 @itemx -falign-labels=@var{n}
8169 @opindex falign-labels
8170 Align all branch targets to a power-of-two boundary, skipping up to
8171 @var{n} bytes like @option{-falign-functions}.  This option can easily
8172 make code slower, because it must insert dummy operations for when the
8173 branch target is reached in the usual flow of the code.
8175 @option{-fno-align-labels} and @option{-falign-labels=1} are
8176 equivalent and mean that labels are not aligned.
8178 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
8179 are greater than this value, then their values are used instead.
8181 If @var{n} is not specified or is zero, use a machine-dependent default
8182 which is very likely to be @samp{1}, meaning no alignment.
8184 Enabled at levels @option{-O2}, @option{-O3}.
8186 @item -falign-loops
8187 @itemx -falign-loops=@var{n}
8188 @opindex falign-loops
8189 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
8190 like @option{-falign-functions}.  If the loops are
8191 executed many times, this makes up for any execution of the dummy
8192 operations.
8194 @option{-fno-align-loops} and @option{-falign-loops=1} are
8195 equivalent and mean that loops are not aligned.
8197 If @var{n} is not specified or is zero, use a machine-dependent default.
8199 Enabled at levels @option{-O2}, @option{-O3}.
8201 @item -falign-jumps
8202 @itemx -falign-jumps=@var{n}
8203 @opindex falign-jumps
8204 Align branch targets to a power-of-two boundary, for branch targets
8205 where the targets can only be reached by jumping, skipping up to @var{n}
8206 bytes like @option{-falign-functions}.  In this case, no dummy operations
8207 need be executed.
8209 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
8210 equivalent and mean that loops are not aligned.
8212 If @var{n} is not specified or is zero, use a machine-dependent default.
8214 Enabled at levels @option{-O2}, @option{-O3}.
8216 @item -funit-at-a-time
8217 @opindex funit-at-a-time
8218 This option is left for compatibility reasons. @option{-funit-at-a-time}
8219 has no effect, while @option{-fno-unit-at-a-time} implies
8220 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
8222 Enabled by default.
8224 @item -fno-toplevel-reorder
8225 @opindex fno-toplevel-reorder
8226 Do not reorder top-level functions, variables, and @code{asm}
8227 statements.  Output them in the same order that they appear in the
8228 input file.  When this option is used, unreferenced static variables
8229 are not removed.  This option is intended to support existing code
8230 that relies on a particular ordering.  For new code, it is better to
8231 use attributes.
8233 Enabled at level @option{-O0}.  When disabled explicitly, it also implies
8234 @option{-fno-section-anchors}, which is otherwise enabled at @option{-O0} on some
8235 targets.
8237 @item -fweb
8238 @opindex fweb
8239 Constructs webs as commonly used for register allocation purposes and assign
8240 each web individual pseudo register.  This allows the register allocation pass
8241 to operate on pseudos directly, but also strengthens several other optimization
8242 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
8243 however, make debugging impossible, since variables no longer stay in a
8244 ``home register''.
8246 Enabled by default with @option{-funroll-loops}.
8248 @item -fwhole-program
8249 @opindex fwhole-program
8250 Assume that the current compilation unit represents the whole program being
8251 compiled.  All public functions and variables with the exception of @code{main}
8252 and those merged by attribute @code{externally_visible} become static functions
8253 and in effect are optimized more aggressively by interprocedural optimizers.
8255 This option should not be used in combination with @code{-flto}.
8256 Instead relying on a linker plugin should provide safer and more precise
8257 information.
8259 @item -flto[=@var{n}]
8260 @opindex flto
8261 This option runs the standard link-time optimizer.  When invoked
8262 with source code, it generates GIMPLE (one of GCC's internal
8263 representations) and writes it to special ELF sections in the object
8264 file.  When the object files are linked together, all the function
8265 bodies are read from these ELF sections and instantiated as if they
8266 had been part of the same translation unit.
8268 To use the link-time optimizer, @option{-flto} needs to be specified at
8269 compile time and during the final link.  For example:
8271 @smallexample
8272 gcc -c -O2 -flto foo.c
8273 gcc -c -O2 -flto bar.c
8274 gcc -o myprog -flto -O2 foo.o bar.o
8275 @end smallexample
8277 The first two invocations to GCC save a bytecode representation
8278 of GIMPLE into special ELF sections inside @file{foo.o} and
8279 @file{bar.o}.  The final invocation reads the GIMPLE bytecode from
8280 @file{foo.o} and @file{bar.o}, merges the two files into a single
8281 internal image, and compiles the result as usual.  Since both
8282 @file{foo.o} and @file{bar.o} are merged into a single image, this
8283 causes all the interprocedural analyses and optimizations in GCC to
8284 work across the two files as if they were a single one.  This means,
8285 for example, that the inliner is able to inline functions in
8286 @file{bar.o} into functions in @file{foo.o} and vice-versa.
8288 Another (simpler) way to enable link-time optimization is:
8290 @smallexample
8291 gcc -o myprog -flto -O2 foo.c bar.c
8292 @end smallexample
8294 The above generates bytecode for @file{foo.c} and @file{bar.c},
8295 merges them together into a single GIMPLE representation and optimizes
8296 them as usual to produce @file{myprog}.
8298 The only important thing to keep in mind is that to enable link-time
8299 optimizations the @option{-flto} flag needs to be passed to both the
8300 compile and the link commands.
8302 To make whole program optimization effective, it is necessary to make
8303 certain whole program assumptions.  The compiler needs to know
8304 what functions and variables can be accessed by libraries and runtime
8305 outside of the link-time optimized unit.  When supported by the linker,
8306 the linker plugin (see @option{-fuse-linker-plugin}) passes information
8307 to the compiler about used and externally visible symbols.  When
8308 the linker plugin is not available, @option{-fwhole-program} should be
8309 used to allow the compiler to make these assumptions, which leads
8310 to more aggressive optimization decisions.
8312 Note that when a file is compiled with @option{-flto}, the generated
8313 object file is larger than a regular object file because it 
8314 contains GIMPLE bytecodes and the usual final code.  This means that
8315 object files with LTO information can be linked as normal object
8316 files; if @option{-flto} is not passed to the linker, no
8317 interprocedural optimizations are applied.
8319 Additionally, the optimization flags used to compile individual files
8320 are not necessarily related to those used at link time.  For instance,
8322 @smallexample
8323 gcc -c -O0 -flto foo.c
8324 gcc -c -O0 -flto bar.c
8325 gcc -o myprog -flto -O3 foo.o bar.o
8326 @end smallexample
8328 This produces individual object files with unoptimized assembler
8329 code, but the resulting binary @file{myprog} is optimized at
8330 @option{-O3}.  If, instead, the final binary is generated without
8331 @option{-flto}, then @file{myprog} is not optimized.
8333 When producing the final binary with @option{-flto}, GCC only
8334 applies link-time optimizations to those files that contain bytecode.
8335 Therefore, you can mix and match object files and libraries with
8336 GIMPLE bytecodes and final object code.  GCC automatically selects
8337 which files to optimize in LTO mode and which files to link without
8338 further processing.
8340 There are some code generation flags preserved by GCC when
8341 generating bytecodes, as they need to be used during the final link
8342 stage.  Currently, the following options are saved into the GIMPLE
8343 bytecode files: @option{-fPIC}, @option{-fcommon} and all the
8344 @option{-m} target flags.
8346 At link time, these options are read in and reapplied.  Note that the
8347 current implementation makes no attempt to recognize conflicting
8348 values for these options.  If different files have conflicting option
8349 values (e.g., one file is compiled with @option{-fPIC} and another
8350 isn't), the compiler simply uses the last value read from the
8351 bytecode files.  It is recommended, then, that you compile all the files
8352 participating in the same link with the same options.
8354 If LTO encounters objects with C linkage declared with incompatible
8355 types in separate translation units to be linked together (undefined
8356 behavior according to ISO C99 6.2.7), a non-fatal diagnostic may be
8357 issued.  The behavior is still undefined at run time.
8359 Another feature of LTO is that it is possible to apply interprocedural
8360 optimizations on files written in different languages.  This requires
8361 support in the language front end.  Currently, the C, C++ and
8362 Fortran front ends are capable of emitting GIMPLE bytecodes, so
8363 something like this should work:
8365 @smallexample
8366 gcc -c -flto foo.c
8367 g++ -c -flto bar.cc
8368 gfortran -c -flto baz.f90
8369 g++ -o myprog -flto -O3 foo.o bar.o baz.o -lgfortran
8370 @end smallexample
8372 Notice that the final link is done with @command{g++} to get the C++
8373 runtime libraries and @option{-lgfortran} is added to get the Fortran
8374 runtime libraries.  In general, when mixing languages in LTO mode, you
8375 should use the same link command options as when mixing languages in a
8376 regular (non-LTO) compilation; all you need to add is @option{-flto} to
8377 all the compile and link commands.
8379 If object files containing GIMPLE bytecode are stored in a library archive, say
8380 @file{libfoo.a}, it is possible to extract and use them in an LTO link if you
8381 are using a linker with plugin support.  To enable this feature, use
8382 the flag @option{-fuse-linker-plugin} at link time:
8384 @smallexample
8385 gcc -o myprog -O2 -flto -fuse-linker-plugin a.o b.o -lfoo
8386 @end smallexample
8388 With the linker plugin enabled, the linker extracts the needed
8389 GIMPLE files from @file{libfoo.a} and passes them on to the running GCC
8390 to make them part of the aggregated GIMPLE image to be optimized.
8392 If you are not using a linker with plugin support and/or do not
8393 enable the linker plugin, then the objects inside @file{libfoo.a}
8394 are extracted and linked as usual, but they do not participate
8395 in the LTO optimization process.
8397 Link-time optimizations do not require the presence of the whole program to
8398 operate.  If the program does not require any symbols to be exported, it is
8399 possible to combine @option{-flto} and @option{-fwhole-program} to allow
8400 the interprocedural optimizers to use more aggressive assumptions which may
8401 lead to improved optimization opportunities.
8402 Use of @option{-fwhole-program} is not needed when linker plugin is
8403 active (see @option{-fuse-linker-plugin}).
8405 The current implementation of LTO makes no
8406 attempt to generate bytecode that is portable between different
8407 types of hosts.  The bytecode files are versioned and there is a
8408 strict version check, so bytecode files generated in one version of
8409 GCC will not work with an older/newer version of GCC@.
8411 Link-time optimization does not work well with generation of debugging
8412 information.  Combining @option{-flto} with
8413 @option{-g} is currently experimental and expected to produce wrong
8414 results.
8416 If you specify the optional @var{n}, the optimization and code
8417 generation done at link time is executed in parallel using @var{n}
8418 parallel jobs by utilizing an installed @command{make} program.  The
8419 environment variable @env{MAKE} may be used to override the program
8420 used.  The default value for @var{n} is 1.
8422 You can also specify @option{-flto=jobserver} to use GNU make's
8423 job server mode to determine the number of parallel jobs. This
8424 is useful when the Makefile calling GCC is already executing in parallel.
8425 You must prepend a @samp{+} to the command recipe in the parent Makefile
8426 for this to work.  This option likely only works if @env{MAKE} is
8427 GNU make.
8429 This option is disabled by default.
8431 @item -flto-partition=@var{alg}
8432 @opindex flto-partition
8433 Specify the partitioning algorithm used by the link-time optimizer.
8434 The value is either @code{1to1} to specify a partitioning mirroring
8435 the original source files or @code{balanced} to specify partitioning
8436 into equally sized chunks (whenever possible) or @code{max} to create
8437 new partition for every symbol where possible.  Specifying @code{none}
8438 as an algorithm disables partitioning and streaming completely. 
8439 The default value is @code{balanced}. While @code{1to1} can be used
8440 as an workaround for various code ordering issues, the @code{max}
8441 partitioning is intended for internal testing only.
8443 @item -flto-compression-level=@var{n}
8444 This option specifies the level of compression used for intermediate
8445 language written to LTO object files, and is only meaningful in
8446 conjunction with LTO mode (@option{-flto}).  Valid
8447 values are 0 (no compression) to 9 (maximum compression).  Values
8448 outside this range are clamped to either 0 or 9.  If the option is not
8449 given, a default balanced compression setting is used.
8451 @item -flto-report
8452 Prints a report with internal details on the workings of the link-time
8453 optimizer.  The contents of this report vary from version to version.
8454 It is meant to be useful to GCC developers when processing object
8455 files in LTO mode (via @option{-flto}).
8457 Disabled by default.
8459 @item -flto-report-wpa
8460 Like @option{-flto-report}, but only print for the WPA phase of Link
8461 Time Optimization.
8463 @item -fuse-linker-plugin
8464 Enables the use of a linker plugin during link-time optimization.  This
8465 option relies on plugin support in the linker, which is available in gold
8466 or in GNU ld 2.21 or newer.
8468 This option enables the extraction of object files with GIMPLE bytecode out
8469 of library archives. This improves the quality of optimization by exposing
8470 more code to the link-time optimizer.  This information specifies what
8471 symbols can be accessed externally (by non-LTO object or during dynamic
8472 linking).  Resulting code quality improvements on binaries (and shared
8473 libraries that use hidden visibility) are similar to @code{-fwhole-program}.
8474 See @option{-flto} for a description of the effect of this flag and how to
8475 use it.
8477 This option is enabled by default when LTO support in GCC is enabled
8478 and GCC was configured for use with
8479 a linker supporting plugins (GNU ld 2.21 or newer or gold).
8481 @item -ffat-lto-objects
8482 @opindex ffat-lto-objects
8483 Fat LTO objects are object files that contain both the intermediate language
8484 and the object code. This makes them usable for both LTO linking and normal
8485 linking. This option is effective only when compiling with @option{-flto}
8486 and is ignored at link time.
8488 @option{-fno-fat-lto-objects} improves compilation time over plain LTO, but
8489 requires the complete toolchain to be aware of LTO. It requires a linker with
8490 linker plugin support for basic functionality.  Additionally,
8491 @command{nm}, @command{ar} and @command{ranlib}
8492 need to support linker plugins to allow a full-featured build environment
8493 (capable of building static libraries etc).  GCC provides the @command{gcc-ar},
8494 @command{gcc-nm}, @command{gcc-ranlib} wrappers to pass the right options
8495 to these tools. With non fat LTO makefiles need to be modified to use them.
8497 The default is @option{-ffat-lto-objects} but this default is intended to
8498 change in future releases when linker plugin enabled environments become more
8499 common.
8501 @item -fcompare-elim
8502 @opindex fcompare-elim
8503 After register allocation and post-register allocation instruction splitting,
8504 identify arithmetic instructions that compute processor flags similar to a
8505 comparison operation based on that arithmetic.  If possible, eliminate the
8506 explicit comparison operation.
8508 This pass only applies to certain targets that cannot explicitly represent
8509 the comparison operation before register allocation is complete.
8511 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
8513 @item -fuse-ld=bfd
8514 Use the @command{bfd} linker instead of the default linker.
8516 @item -fuse-ld=gold
8517 Use the @command{gold} linker instead of the default linker.
8519 @item -fcprop-registers
8520 @opindex fcprop-registers
8521 After register allocation and post-register allocation instruction splitting,
8522 perform a copy-propagation pass to try to reduce scheduling dependencies
8523 and occasionally eliminate the copy.
8525 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
8527 @item -fprofile-correction
8528 @opindex fprofile-correction
8529 Profiles collected using an instrumented binary for multi-threaded programs may
8530 be inconsistent due to missed counter updates. When this option is specified,
8531 GCC uses heuristics to correct or smooth out such inconsistencies. By
8532 default, GCC emits an error message when an inconsistent profile is detected.
8534 @item -fprofile-dir=@var{path}
8535 @opindex fprofile-dir
8537 Set the directory to search for the profile data files in to @var{path}.
8538 This option affects only the profile data generated by
8539 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
8540 and used by @option{-fprofile-use} and @option{-fbranch-probabilities}
8541 and its related options.  Both absolute and relative paths can be used.
8542 By default, GCC uses the current directory as @var{path}, thus the
8543 profile data file appears in the same directory as the object file.
8545 @item -fprofile-generate
8546 @itemx -fprofile-generate=@var{path}
8547 @opindex fprofile-generate
8549 Enable options usually used for instrumenting application to produce
8550 profile useful for later recompilation with profile feedback based
8551 optimization.  You must use @option{-fprofile-generate} both when
8552 compiling and when linking your program.
8554 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
8556 If @var{path} is specified, GCC looks at the @var{path} to find
8557 the profile feedback data files. See @option{-fprofile-dir}.
8559 @item -fprofile-use
8560 @itemx -fprofile-use=@var{path}
8561 @opindex fprofile-use
8562 Enable profile feedback directed optimizations, and optimizations
8563 generally profitable only with profile feedback available.
8565 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
8566 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}, @code{-ftree-vectorize},
8567 @code{ftree-loop-distribute-patterns}
8569 By default, GCC emits an error message if the feedback profiles do not
8570 match the source code.  This error can be turned into a warning by using
8571 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
8572 code.
8574 If @var{path} is specified, GCC looks at the @var{path} to find
8575 the profile feedback data files. See @option{-fprofile-dir}.
8576 @end table
8578 The following options control compiler behavior regarding floating-point 
8579 arithmetic.  These options trade off between speed and
8580 correctness.  All must be specifically enabled.
8582 @table @gcctabopt
8583 @item -ffloat-store
8584 @opindex ffloat-store
8585 Do not store floating-point variables in registers, and inhibit other
8586 options that might change whether a floating-point value is taken from a
8587 register or memory.
8589 @cindex floating-point precision
8590 This option prevents undesirable excess precision on machines such as
8591 the 68000 where the floating registers (of the 68881) keep more
8592 precision than a @code{double} is supposed to have.  Similarly for the
8593 x86 architecture.  For most programs, the excess precision does only
8594 good, but a few programs rely on the precise definition of IEEE floating
8595 point.  Use @option{-ffloat-store} for such programs, after modifying
8596 them to store all pertinent intermediate computations into variables.
8598 @item -fexcess-precision=@var{style}
8599 @opindex fexcess-precision
8600 This option allows further control over excess precision on machines
8601 where floating-point registers have more precision than the IEEE
8602 @code{float} and @code{double} types and the processor does not
8603 support operations rounding to those types.  By default,
8604 @option{-fexcess-precision=fast} is in effect; this means that
8605 operations are carried out in the precision of the registers and that
8606 it is unpredictable when rounding to the types specified in the source
8607 code takes place.  When compiling C, if
8608 @option{-fexcess-precision=standard} is specified then excess
8609 precision follows the rules specified in ISO C99; in particular,
8610 both casts and assignments cause values to be rounded to their
8611 semantic types (whereas @option{-ffloat-store} only affects
8612 assignments).  This option is enabled by default for C if a strict
8613 conformance option such as @option{-std=c99} is used.
8615 @opindex mfpmath
8616 @option{-fexcess-precision=standard} is not implemented for languages
8617 other than C, and has no effect if
8618 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
8619 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
8620 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
8621 semantics apply without excess precision, and in the latter, rounding
8622 is unpredictable.
8624 @item -ffast-math
8625 @opindex ffast-math
8626 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
8627 @option{-ffinite-math-only}, @option{-fno-rounding-math},
8628 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
8630 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
8632 This option is not turned on by any @option{-O} option besides
8633 @option{-Ofast} since it can result in incorrect output for programs
8634 that depend on an exact implementation of IEEE or ISO rules/specifications
8635 for math functions. It may, however, yield faster code for programs
8636 that do not require the guarantees of these specifications.
8638 @item -fno-math-errno
8639 @opindex fno-math-errno
8640 Do not set @code{errno} after calling math functions that are executed
8641 with a single instruction, e.g., @code{sqrt}.  A program that relies on
8642 IEEE exceptions for math error handling may want to use this flag
8643 for speed while maintaining IEEE arithmetic compatibility.
8645 This option is not turned on by any @option{-O} option since
8646 it can result in incorrect output for programs that depend on
8647 an exact implementation of IEEE or ISO rules/specifications for
8648 math functions. It may, however, yield faster code for programs
8649 that do not require the guarantees of these specifications.
8651 The default is @option{-fmath-errno}.
8653 On Darwin systems, the math library never sets @code{errno}.  There is
8654 therefore no reason for the compiler to consider the possibility that
8655 it might, and @option{-fno-math-errno} is the default.
8657 @item -funsafe-math-optimizations
8658 @opindex funsafe-math-optimizations
8660 Allow optimizations for floating-point arithmetic that (a) assume
8661 that arguments and results are valid and (b) may violate IEEE or
8662 ANSI standards.  When used at link-time, it may include libraries
8663 or startup files that change the default FPU control word or other
8664 similar optimizations.
8666 This option is not turned on by any @option{-O} option since
8667 it can result in incorrect output for programs that depend on
8668 an exact implementation of IEEE or ISO rules/specifications for
8669 math functions. It may, however, yield faster code for programs
8670 that do not require the guarantees of these specifications.
8671 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
8672 @option{-fassociative-math} and @option{-freciprocal-math}.
8674 The default is @option{-fno-unsafe-math-optimizations}.
8676 @item -fassociative-math
8677 @opindex fassociative-math
8679 Allow re-association of operands in series of floating-point operations.
8680 This violates the ISO C and C++ language standard by possibly changing
8681 computation result.  NOTE: re-ordering may change the sign of zero as
8682 well as ignore NaNs and inhibit or create underflow or overflow (and
8683 thus cannot be used on code that relies on rounding behavior like
8684 @code{(x + 2**52) - 2**52}.  May also reorder floating-point comparisons
8685 and thus may not be used when ordered comparisons are required.
8686 This option requires that both @option{-fno-signed-zeros} and
8687 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
8688 much sense with @option{-frounding-math}. For Fortran the option
8689 is automatically enabled when both @option{-fno-signed-zeros} and
8690 @option{-fno-trapping-math} are in effect.
8692 The default is @option{-fno-associative-math}.
8694 @item -freciprocal-math
8695 @opindex freciprocal-math
8697 Allow the reciprocal of a value to be used instead of dividing by
8698 the value if this enables optimizations.  For example @code{x / y}
8699 can be replaced with @code{x * (1/y)}, which is useful if @code{(1/y)}
8700 is subject to common subexpression elimination.  Note that this loses
8701 precision and increases the number of flops operating on the value.
8703 The default is @option{-fno-reciprocal-math}.
8705 @item -ffinite-math-only
8706 @opindex ffinite-math-only
8707 Allow optimizations for floating-point arithmetic that assume
8708 that arguments and results are not NaNs or +-Infs.
8710 This option is not turned on by any @option{-O} option since
8711 it can result in incorrect output for programs that depend on
8712 an exact implementation of IEEE or ISO rules/specifications for
8713 math functions. It may, however, yield faster code for programs
8714 that do not require the guarantees of these specifications.
8716 The default is @option{-fno-finite-math-only}.
8718 @item -fno-signed-zeros
8719 @opindex fno-signed-zeros
8720 Allow optimizations for floating-point arithmetic that ignore the
8721 signedness of zero.  IEEE arithmetic specifies the behavior of
8722 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
8723 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
8724 This option implies that the sign of a zero result isn't significant.
8726 The default is @option{-fsigned-zeros}.
8728 @item -fno-trapping-math
8729 @opindex fno-trapping-math
8730 Compile code assuming that floating-point operations cannot generate
8731 user-visible traps.  These traps include division by zero, overflow,
8732 underflow, inexact result and invalid operation.  This option requires
8733 that @option{-fno-signaling-nans} be in effect.  Setting this option may
8734 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
8736 This option should never be turned on by any @option{-O} option since
8737 it can result in incorrect output for programs that depend on
8738 an exact implementation of IEEE or ISO rules/specifications for
8739 math functions.
8741 The default is @option{-ftrapping-math}.
8743 @item -frounding-math
8744 @opindex frounding-math
8745 Disable transformations and optimizations that assume default floating-point
8746 rounding behavior.  This is round-to-zero for all floating point
8747 to integer conversions, and round-to-nearest for all other arithmetic
8748 truncations.  This option should be specified for programs that change
8749 the FP rounding mode dynamically, or that may be executed with a
8750 non-default rounding mode.  This option disables constant folding of
8751 floating-point expressions at compile time (which may be affected by
8752 rounding mode) and arithmetic transformations that are unsafe in the
8753 presence of sign-dependent rounding modes.
8755 The default is @option{-fno-rounding-math}.
8757 This option is experimental and does not currently guarantee to
8758 disable all GCC optimizations that are affected by rounding mode.
8759 Future versions of GCC may provide finer control of this setting
8760 using C99's @code{FENV_ACCESS} pragma.  This command-line option
8761 will be used to specify the default state for @code{FENV_ACCESS}.
8763 @item -fsignaling-nans
8764 @opindex fsignaling-nans
8765 Compile code assuming that IEEE signaling NaNs may generate user-visible
8766 traps during floating-point operations.  Setting this option disables
8767 optimizations that may change the number of exceptions visible with
8768 signaling NaNs.  This option implies @option{-ftrapping-math}.
8770 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
8771 be defined.
8773 The default is @option{-fno-signaling-nans}.
8775 This option is experimental and does not currently guarantee to
8776 disable all GCC optimizations that affect signaling NaN behavior.
8778 @item -fsingle-precision-constant
8779 @opindex fsingle-precision-constant
8780 Treat floating-point constants as single precision instead of
8781 implicitly converting them to double-precision constants.
8783 @item -fcx-limited-range
8784 @opindex fcx-limited-range
8785 When enabled, this option states that a range reduction step is not
8786 needed when performing complex division.  Also, there is no checking
8787 whether the result of a complex multiplication or division is @code{NaN
8788 + I*NaN}, with an attempt to rescue the situation in that case.  The
8789 default is @option{-fno-cx-limited-range}, but is enabled by
8790 @option{-ffast-math}.
8792 This option controls the default setting of the ISO C99
8793 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
8794 all languages.
8796 @item -fcx-fortran-rules
8797 @opindex fcx-fortran-rules
8798 Complex multiplication and division follow Fortran rules.  Range
8799 reduction is done as part of complex division, but there is no checking
8800 whether the result of a complex multiplication or division is @code{NaN
8801 + I*NaN}, with an attempt to rescue the situation in that case.
8803 The default is @option{-fno-cx-fortran-rules}.
8805 @end table
8807 The following options control optimizations that may improve
8808 performance, but are not enabled by any @option{-O} options.  This
8809 section includes experimental options that may produce broken code.
8811 @table @gcctabopt
8812 @item -fbranch-probabilities
8813 @opindex fbranch-probabilities
8814 After running a program compiled with @option{-fprofile-arcs}
8815 (@pxref{Debugging Options,, Options for Debugging Your Program or
8816 @command{gcc}}), you can compile it a second time using
8817 @option{-fbranch-probabilities}, to improve optimizations based on
8818 the number of times each branch was taken.  When a program
8819 compiled with @option{-fprofile-arcs} exits, it saves arc execution
8820 counts to a file called @file{@var{sourcename}.gcda} for each source
8821 file.  The information in this data file is very dependent on the
8822 structure of the generated code, so you must use the same source code
8823 and the same optimization options for both compilations.
8825 With @option{-fbranch-probabilities}, GCC puts a
8826 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
8827 These can be used to improve optimization.  Currently, they are only
8828 used in one place: in @file{reorg.c}, instead of guessing which path a
8829 branch is most likely to take, the @samp{REG_BR_PROB} values are used to
8830 exactly determine which path is taken more often.
8832 @item -fprofile-values
8833 @opindex fprofile-values
8834 If combined with @option{-fprofile-arcs}, it adds code so that some
8835 data about values of expressions in the program is gathered.
8837 With @option{-fbranch-probabilities}, it reads back the data gathered
8838 from profiling values of expressions for usage in optimizations.
8840 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
8842 @item -fvpt
8843 @opindex fvpt
8844 If combined with @option{-fprofile-arcs}, this option instructs the compiler
8845 to add code to gather information about values of expressions.
8847 With @option{-fbranch-probabilities}, it reads back the data gathered
8848 and actually performs the optimizations based on them.
8849 Currently the optimizations include specialization of division operations
8850 using the knowledge about the value of the denominator.
8852 @item -frename-registers
8853 @opindex frename-registers
8854 Attempt to avoid false dependencies in scheduled code by making use
8855 of registers left over after register allocation.  This optimization
8856 most benefits processors with lots of registers.  Depending on the
8857 debug information format adopted by the target, however, it can
8858 make debugging impossible, since variables no longer stay in
8859 a ``home register''.
8861 Enabled by default with @option{-funroll-loops} and @option{-fpeel-loops}.
8863 @item -ftracer
8864 @opindex ftracer
8865 Perform tail duplication to enlarge superblock size.  This transformation
8866 simplifies the control flow of the function allowing other optimizations to do
8867 a better job.
8869 Enabled with @option{-fprofile-use}.
8871 @item -funroll-loops
8872 @opindex funroll-loops
8873 Unroll loops whose number of iterations can be determined at compile time or
8874 upon entry to the loop.  @option{-funroll-loops} implies
8875 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
8876 It also turns on complete loop peeling (i.e.@: complete removal of loops with
8877 a small constant number of iterations).  This option makes code larger, and may
8878 or may not make it run faster.
8880 Enabled with @option{-fprofile-use}.
8882 @item -funroll-all-loops
8883 @opindex funroll-all-loops
8884 Unroll all loops, even if their number of iterations is uncertain when
8885 the loop is entered.  This usually makes programs run more slowly.
8886 @option{-funroll-all-loops} implies the same options as
8887 @option{-funroll-loops}.
8889 @item -fpeel-loops
8890 @opindex fpeel-loops
8891 Peels loops for which there is enough information that they do not
8892 roll much (from profile feedback).  It also turns on complete loop peeling
8893 (i.e.@: complete removal of loops with small constant number of iterations).
8895 Enabled with @option{-fprofile-use}.
8897 @item -fmove-loop-invariants
8898 @opindex fmove-loop-invariants
8899 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
8900 at level @option{-O1}
8902 @item -funswitch-loops
8903 @opindex funswitch-loops
8904 Move branches with loop invariant conditions out of the loop, with duplicates
8905 of the loop on both branches (modified according to result of the condition).
8907 @item -ffunction-sections
8908 @itemx -fdata-sections
8909 @opindex ffunction-sections
8910 @opindex fdata-sections
8911 Place each function or data item into its own section in the output
8912 file if the target supports arbitrary sections.  The name of the
8913 function or the name of the data item determines the section's name
8914 in the output file.
8916 Use these options on systems where the linker can perform optimizations
8917 to improve locality of reference in the instruction space.  Most systems
8918 using the ELF object format and SPARC processors running Solaris 2 have
8919 linkers with such optimizations.  AIX may have these optimizations in
8920 the future.
8922 Only use these options when there are significant benefits from doing
8923 so.  When you specify these options, the assembler and linker
8924 create larger object and executable files and are also slower.
8925 You cannot use @code{gprof} on all systems if you
8926 specify this option, and you may have problems with debugging if
8927 you specify both this option and @option{-g}.
8929 @item -fbranch-target-load-optimize
8930 @opindex fbranch-target-load-optimize
8931 Perform branch target register load optimization before prologue / epilogue
8932 threading.
8933 The use of target registers can typically be exposed only during reload,
8934 thus hoisting loads out of loops and doing inter-block scheduling needs
8935 a separate optimization pass.
8937 @item -fbranch-target-load-optimize2
8938 @opindex fbranch-target-load-optimize2
8939 Perform branch target register load optimization after prologue / epilogue
8940 threading.
8942 @item -fbtr-bb-exclusive
8943 @opindex fbtr-bb-exclusive
8944 When performing branch target register load optimization, don't reuse
8945 branch target registers within any basic block.
8947 @item -fstack-protector
8948 @opindex fstack-protector
8949 Emit extra code to check for buffer overflows, such as stack smashing
8950 attacks.  This is done by adding a guard variable to functions with
8951 vulnerable objects.  This includes functions that call @code{alloca}, and
8952 functions with buffers larger than 8 bytes.  The guards are initialized
8953 when a function is entered and then checked when the function exits.
8954 If a guard check fails, an error message is printed and the program exits.
8956 @item -fstack-protector-all
8957 @opindex fstack-protector-all
8958 Like @option{-fstack-protector} except that all functions are protected.
8960 @item -fsection-anchors
8961 @opindex fsection-anchors
8962 Try to reduce the number of symbolic address calculations by using
8963 shared ``anchor'' symbols to address nearby objects.  This transformation
8964 can help to reduce the number of GOT entries and GOT accesses on some
8965 targets.
8967 For example, the implementation of the following function @code{foo}:
8969 @smallexample
8970 static int a, b, c;
8971 int foo (void) @{ return a + b + c; @}
8972 @end smallexample
8974 @noindent
8975 usually calculates the addresses of all three variables, but if you
8976 compile it with @option{-fsection-anchors}, it accesses the variables
8977 from a common anchor point instead.  The effect is similar to the
8978 following pseudocode (which isn't valid C):
8980 @smallexample
8981 int foo (void)
8983   register int *xr = &x;
8984   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
8986 @end smallexample
8988 Not all targets support this option.
8990 @item --param @var{name}=@var{value}
8991 @opindex param
8992 In some places, GCC uses various constants to control the amount of
8993 optimization that is done.  For example, GCC does not inline functions
8994 that contain more than a certain number of instructions.  You can
8995 control some of these constants on the command line using the
8996 @option{--param} option.
8998 The names of specific parameters, and the meaning of the values, are
8999 tied to the internals of the compiler, and are subject to change
9000 without notice in future releases.
9002 In each case, the @var{value} is an integer.  The allowable choices for
9003 @var{name} are:
9005 @table @gcctabopt
9006 @item predictable-branch-outcome
9007 When branch is predicted to be taken with probability lower than this threshold
9008 (in percent), then it is considered well predictable. The default is 10.
9010 @item max-crossjump-edges
9011 The maximum number of incoming edges to consider for cross-jumping.
9012 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
9013 the number of edges incoming to each block.  Increasing values mean
9014 more aggressive optimization, making the compilation time increase with
9015 probably small improvement in executable size.
9017 @item min-crossjump-insns
9018 The minimum number of instructions that must be matched at the end
9019 of two blocks before cross-jumping is performed on them.  This
9020 value is ignored in the case where all instructions in the block being
9021 cross-jumped from are matched.  The default value is 5.
9023 @item max-grow-copy-bb-insns
9024 The maximum code size expansion factor when copying basic blocks
9025 instead of jumping.  The expansion is relative to a jump instruction.
9026 The default value is 8.
9028 @item max-goto-duplication-insns
9029 The maximum number of instructions to duplicate to a block that jumps
9030 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
9031 passes, GCC factors computed gotos early in the compilation process,
9032 and unfactors them as late as possible.  Only computed jumps at the
9033 end of a basic blocks with no more than max-goto-duplication-insns are
9034 unfactored.  The default value is 8.
9036 @item max-delay-slot-insn-search
9037 The maximum number of instructions to consider when looking for an
9038 instruction to fill a delay slot.  If more than this arbitrary number of
9039 instructions are searched, the time savings from filling the delay slot
9040 are minimal, so stop searching.  Increasing values mean more
9041 aggressive optimization, making the compilation time increase with probably
9042 small improvement in execution time.
9044 @item max-delay-slot-live-search
9045 When trying to fill delay slots, the maximum number of instructions to
9046 consider when searching for a block with valid live register
9047 information.  Increasing this arbitrarily chosen value means more
9048 aggressive optimization, increasing the compilation time.  This parameter
9049 should be removed when the delay slot code is rewritten to maintain the
9050 control-flow graph.
9052 @item max-gcse-memory
9053 The approximate maximum amount of memory that can be allocated in
9054 order to perform the global common subexpression elimination
9055 optimization.  If more memory than specified is required, the
9056 optimization is not done.
9058 @item max-gcse-insertion-ratio
9059 If the ratio of expression insertions to deletions is larger than this value
9060 for any expression, then RTL PRE inserts or removes the expression and thus
9061 leaves partially redundant computations in the instruction stream.  The default value is 20.
9063 @item max-pending-list-length
9064 The maximum number of pending dependencies scheduling allows
9065 before flushing the current state and starting over.  Large functions
9066 with few branches or calls can create excessively large lists which
9067 needlessly consume memory and resources.
9069 @item max-modulo-backtrack-attempts
9070 The maximum number of backtrack attempts the scheduler should make
9071 when modulo scheduling a loop.  Larger values can exponentially increase
9072 compilation time.
9074 @item max-inline-insns-single
9075 Several parameters control the tree inliner used in GCC@.
9076 This number sets the maximum number of instructions (counted in GCC's
9077 internal representation) in a single function that the tree inliner
9078 considers for inlining.  This only affects functions declared
9079 inline and methods implemented in a class declaration (C++).
9080 The default value is 400.
9082 @item max-inline-insns-auto
9083 When you use @option{-finline-functions} (included in @option{-O3}),
9084 a lot of functions that would otherwise not be considered for inlining
9085 by the compiler are investigated.  To those functions, a different
9086 (more restrictive) limit compared to functions declared inline can
9087 be applied.
9088 The default value is 40.
9090 @item inline-min-speedup
9091 When estimated performance improvement of caller + callee runtime exceeds this
9092 threshold (in precent), the function can be inlined regardless the limit on
9093 @option{--param max-inline-insns-single} and @option{--param
9094 max-inline-insns-auto}.
9096 @item large-function-insns
9097 The limit specifying really large functions.  For functions larger than this
9098 limit after inlining, inlining is constrained by
9099 @option{--param large-function-growth}.  This parameter is useful primarily
9100 to avoid extreme compilation time caused by non-linear algorithms used by the
9101 back end.
9102 The default value is 2700.
9104 @item large-function-growth
9105 Specifies maximal growth of large function caused by inlining in percents.
9106 The default value is 100 which limits large function growth to 2.0 times
9107 the original size.
9109 @item large-unit-insns
9110 The limit specifying large translation unit.  Growth caused by inlining of
9111 units larger than this limit is limited by @option{--param inline-unit-growth}.
9112 For small units this might be too tight.
9113 For example, consider a unit consisting of function A
9114 that is inline and B that just calls A three times.  If B is small relative to
9115 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
9116 large units consisting of small inlineable functions, however, the overall unit
9117 growth limit is needed to avoid exponential explosion of code size.  Thus for
9118 smaller units, the size is increased to @option{--param large-unit-insns}
9119 before applying @option{--param inline-unit-growth}.  The default is 10000.
9121 @item inline-unit-growth
9122 Specifies maximal overall growth of the compilation unit caused by inlining.
9123 The default value is 30 which limits unit growth to 1.3 times the original
9124 size.
9126 @item ipcp-unit-growth
9127 Specifies maximal overall growth of the compilation unit caused by
9128 interprocedural constant propagation.  The default value is 10 which limits
9129 unit growth to 1.1 times the original size.
9131 @item large-stack-frame
9132 The limit specifying large stack frames.  While inlining the algorithm is trying
9133 to not grow past this limit too much.  The default value is 256 bytes.
9135 @item large-stack-frame-growth
9136 Specifies maximal growth of large stack frames caused by inlining in percents.
9137 The default value is 1000 which limits large stack frame growth to 11 times
9138 the original size.
9140 @item max-inline-insns-recursive
9141 @itemx max-inline-insns-recursive-auto
9142 Specifies the maximum number of instructions an out-of-line copy of a
9143 self-recursive inline
9144 function can grow into by performing recursive inlining.
9146 For functions declared inline, @option{--param max-inline-insns-recursive} is
9147 taken into account.  For functions not declared inline, recursive inlining
9148 happens only when @option{-finline-functions} (included in @option{-O3}) is
9149 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
9150 default value is 450.
9152 @item max-inline-recursive-depth
9153 @itemx max-inline-recursive-depth-auto
9154 Specifies the maximum recursion depth used for recursive inlining.
9156 For functions declared inline, @option{--param max-inline-recursive-depth} is
9157 taken into account.  For functions not declared inline, recursive inlining
9158 happens only when @option{-finline-functions} (included in @option{-O3}) is
9159 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
9160 default value is 8.
9162 @item min-inline-recursive-probability
9163 Recursive inlining is profitable only for function having deep recursion
9164 in average and can hurt for function having little recursion depth by
9165 increasing the prologue size or complexity of function body to other
9166 optimizers.
9168 When profile feedback is available (see @option{-fprofile-generate}) the actual
9169 recursion depth can be guessed from probability that function recurses via a
9170 given call expression.  This parameter limits inlining only to call expressions
9171 whose probability exceeds the given threshold (in percents).
9172 The default value is 10.
9174 @item early-inlining-insns
9175 Specify growth that the early inliner can make.  In effect it increases
9176 the amount of inlining for code having a large abstraction penalty.
9177 The default value is 10.
9179 @item max-early-inliner-iterations
9180 @itemx max-early-inliner-iterations
9181 Limit of iterations of the early inliner.  This basically bounds
9182 the number of nested indirect calls the early inliner can resolve.
9183 Deeper chains are still handled by late inlining.
9185 @item comdat-sharing-probability
9186 @itemx comdat-sharing-probability
9187 Probability (in percent) that C++ inline function with comdat visibility
9188 are shared across multiple compilation units.  The default value is 20.
9190 @item min-vect-loop-bound
9191 The minimum number of iterations under which loops are not vectorized
9192 when @option{-ftree-vectorize} is used.  The number of iterations after
9193 vectorization needs to be greater than the value specified by this option
9194 to allow vectorization.  The default value is 0.
9196 @item gcse-cost-distance-ratio
9197 Scaling factor in calculation of maximum distance an expression
9198 can be moved by GCSE optimizations.  This is currently supported only in the
9199 code hoisting pass.  The bigger the ratio, the more aggressive code hoisting
9200 is with simple expressions, i.e., the expressions that have cost
9201 less than @option{gcse-unrestricted-cost}.  Specifying 0 disables
9202 hoisting of simple expressions.  The default value is 10.
9204 @item gcse-unrestricted-cost
9205 Cost, roughly measured as the cost of a single typical machine
9206 instruction, at which GCSE optimizations do not constrain
9207 the distance an expression can travel.  This is currently
9208 supported only in the code hoisting pass.  The lesser the cost,
9209 the more aggressive code hoisting is.  Specifying 0 
9210 allows all expressions to travel unrestricted distances.
9211 The default value is 3.
9213 @item max-hoist-depth
9214 The depth of search in the dominator tree for expressions to hoist.
9215 This is used to avoid quadratic behavior in hoisting algorithm.
9216 The value of 0 does not limit on the search, but may slow down compilation
9217 of huge functions.  The default value is 30.
9219 @item max-tail-merge-comparisons
9220 The maximum amount of similar bbs to compare a bb with.  This is used to
9221 avoid quadratic behavior in tree tail merging.  The default value is 10.
9223 @item max-tail-merge-iterations
9224 The maximum amount of iterations of the pass over the function.  This is used to
9225 limit compilation time in tree tail merging.  The default value is 2.
9227 @item max-unrolled-insns
9228 The maximum number of instructions that a loop may have to be unrolled.
9229 If a loop is unrolled, this parameter also determines how many times
9230 the loop code is unrolled.
9232 @item max-average-unrolled-insns
9233 The maximum number of instructions biased by probabilities of their execution
9234 that a loop may have to be unrolled.  If a loop is unrolled,
9235 this parameter also determines how many times the loop code is unrolled.
9237 @item max-unroll-times
9238 The maximum number of unrollings of a single loop.
9240 @item max-peeled-insns
9241 The maximum number of instructions that a loop may have to be peeled.
9242 If a loop is peeled, this parameter also determines how many times
9243 the loop code is peeled.
9245 @item max-peel-times
9246 The maximum number of peelings of a single loop.
9248 @item max-peel-branches
9249 The maximum number of branches on the hot path through the peeled sequence.
9251 @item max-completely-peeled-insns
9252 The maximum number of insns of a completely peeled loop.
9254 @item max-completely-peel-times
9255 The maximum number of iterations of a loop to be suitable for complete peeling.
9257 @item max-completely-peel-loop-nest-depth
9258 The maximum depth of a loop nest suitable for complete peeling.
9260 @item max-unswitch-insns
9261 The maximum number of insns of an unswitched loop.
9263 @item max-unswitch-level
9264 The maximum number of branches unswitched in a single loop.
9266 @item lim-expensive
9267 The minimum cost of an expensive expression in the loop invariant motion.
9269 @item iv-consider-all-candidates-bound
9270 Bound on number of candidates for induction variables, below which
9271 all candidates are considered for each use in induction variable
9272 optimizations.  If there are more candidates than this,
9273 only the most relevant ones are considered to avoid quadratic time complexity.
9275 @item iv-max-considered-uses
9276 The induction variable optimizations give up on loops that contain more
9277 induction variable uses.
9279 @item iv-always-prune-cand-set-bound
9280 If the number of candidates in the set is smaller than this value,
9281 always try to remove unnecessary ivs from the set
9282 when adding a new one.
9284 @item scev-max-expr-size
9285 Bound on size of expressions used in the scalar evolutions analyzer.
9286 Large expressions slow the analyzer.
9288 @item scev-max-expr-complexity
9289 Bound on the complexity of the expressions in the scalar evolutions analyzer.
9290 Complex expressions slow the analyzer.
9292 @item omega-max-vars
9293 The maximum number of variables in an Omega constraint system.
9294 The default value is 128.
9296 @item omega-max-geqs
9297 The maximum number of inequalities in an Omega constraint system.
9298 The default value is 256.
9300 @item omega-max-eqs
9301 The maximum number of equalities in an Omega constraint system.
9302 The default value is 128.
9304 @item omega-max-wild-cards
9305 The maximum number of wildcard variables that the Omega solver is
9306 able to insert.  The default value is 18.
9308 @item omega-hash-table-size
9309 The size of the hash table in the Omega solver.  The default value is
9310 550.
9312 @item omega-max-keys
9313 The maximal number of keys used by the Omega solver.  The default
9314 value is 500.
9316 @item omega-eliminate-redundant-constraints
9317 When set to 1, use expensive methods to eliminate all redundant
9318 constraints.  The default value is 0.
9320 @item vect-max-version-for-alignment-checks
9321 The maximum number of run-time checks that can be performed when
9322 doing loop versioning for alignment in the vectorizer.  See option
9323 @option{-ftree-vect-loop-version} for more information.
9325 @item vect-max-version-for-alias-checks
9326 The maximum number of run-time checks that can be performed when
9327 doing loop versioning for alias in the vectorizer.  See option
9328 @option{-ftree-vect-loop-version} for more information.
9330 @item max-iterations-to-track
9331 The maximum number of iterations of a loop the brute-force algorithm
9332 for analysis of the number of iterations of the loop tries to evaluate.
9334 @item hot-bb-count-ws-permille
9335 A basic block profile count is considered hot if it contributes to 
9336 the given permillage (i.e. 0...1000) of the entire profiled execution.
9338 @item hot-bb-frequency-fraction
9339 Select fraction of the entry block frequency of executions of basic block in
9340 function given basic block needs to have to be considered hot.
9342 @item max-predicted-iterations
9343 The maximum number of loop iterations we predict statically.  This is useful
9344 in cases where a function contains a single loop with known bound and
9345 another loop with unknown bound.
9346 The known number of iterations is predicted correctly, while
9347 the unknown number of iterations average to roughly 10.  This means that the
9348 loop without bounds appears artificially cold relative to the other one.
9350 @item align-threshold
9352 Select fraction of the maximal frequency of executions of a basic block in
9353 a function to align the basic block.
9355 @item align-loop-iterations
9357 A loop expected to iterate at least the selected number of iterations is
9358 aligned.
9360 @item tracer-dynamic-coverage
9361 @itemx tracer-dynamic-coverage-feedback
9363 This value is used to limit superblock formation once the given percentage of
9364 executed instructions is covered.  This limits unnecessary code size
9365 expansion.
9367 The @option{tracer-dynamic-coverage-feedback} is used only when profile
9368 feedback is available.  The real profiles (as opposed to statically estimated
9369 ones) are much less balanced allowing the threshold to be larger value.
9371 @item tracer-max-code-growth
9372 Stop tail duplication once code growth has reached given percentage.  This is
9373 a rather artificial limit, as most of the duplicates are eliminated later in
9374 cross jumping, so it may be set to much higher values than is the desired code
9375 growth.
9377 @item tracer-min-branch-ratio
9379 Stop reverse growth when the reverse probability of best edge is less than this
9380 threshold (in percent).
9382 @item tracer-min-branch-ratio
9383 @itemx tracer-min-branch-ratio-feedback
9385 Stop forward growth if the best edge has probability lower than this
9386 threshold.
9388 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
9389 compilation for profile feedback and one for compilation without.  The value
9390 for compilation with profile feedback needs to be more conservative (higher) in
9391 order to make tracer effective.
9393 @item max-cse-path-length
9395 The maximum number of basic blocks on path that CSE considers.
9396 The default is 10.
9398 @item max-cse-insns
9399 The maximum number of instructions CSE processes before flushing.
9400 The default is 1000.
9402 @item ggc-min-expand
9404 GCC uses a garbage collector to manage its own memory allocation.  This
9405 parameter specifies the minimum percentage by which the garbage
9406 collector's heap should be allowed to expand between collections.
9407 Tuning this may improve compilation speed; it has no effect on code
9408 generation.
9410 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
9411 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of ``RAM'' is
9412 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
9413 GCC is not able to calculate RAM on a particular platform, the lower
9414 bound of 30% is used.  Setting this parameter and
9415 @option{ggc-min-heapsize} to zero causes a full collection to occur at
9416 every opportunity.  This is extremely slow, but can be useful for
9417 debugging.
9419 @item ggc-min-heapsize
9421 Minimum size of the garbage collector's heap before it begins bothering
9422 to collect garbage.  The first collection occurs after the heap expands
9423 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
9424 tuning this may improve compilation speed, and has no effect on code
9425 generation.
9427 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit that
9428 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
9429 with a lower bound of 4096 (four megabytes) and an upper bound of
9430 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
9431 particular platform, the lower bound is used.  Setting this parameter
9432 very large effectively disables garbage collection.  Setting this
9433 parameter and @option{ggc-min-expand} to zero causes a full collection
9434 to occur at every opportunity.
9436 @item max-reload-search-insns
9437 The maximum number of instruction reload should look backward for equivalent
9438 register.  Increasing values mean more aggressive optimization, making the
9439 compilation time increase with probably slightly better performance.
9440 The default value is 100.
9442 @item max-cselib-memory-locations
9443 The maximum number of memory locations cselib should take into account.
9444 Increasing values mean more aggressive optimization, making the compilation time
9445 increase with probably slightly better performance.  The default value is 500.
9447 @item reorder-blocks-duplicate
9448 @itemx reorder-blocks-duplicate-feedback
9450 Used by the basic block reordering pass to decide whether to use unconditional
9451 branch or duplicate the code on its destination.  Code is duplicated when its
9452 estimated size is smaller than this value multiplied by the estimated size of
9453 unconditional jump in the hot spots of the program.
9455 The @option{reorder-block-duplicate-feedback} is used only when profile
9456 feedback is available.  It may be set to higher values than
9457 @option{reorder-block-duplicate} since information about the hot spots is more
9458 accurate.
9460 @item max-sched-ready-insns
9461 The maximum number of instructions ready to be issued the scheduler should
9462 consider at any given time during the first scheduling pass.  Increasing
9463 values mean more thorough searches, making the compilation time increase
9464 with probably little benefit.  The default value is 100.
9466 @item max-sched-region-blocks
9467 The maximum number of blocks in a region to be considered for
9468 interblock scheduling.  The default value is 10.
9470 @item max-pipeline-region-blocks
9471 The maximum number of blocks in a region to be considered for
9472 pipelining in the selective scheduler.  The default value is 15.
9474 @item max-sched-region-insns
9475 The maximum number of insns in a region to be considered for
9476 interblock scheduling.  The default value is 100.
9478 @item max-pipeline-region-insns
9479 The maximum number of insns in a region to be considered for
9480 pipelining in the selective scheduler.  The default value is 200.
9482 @item min-spec-prob
9483 The minimum probability (in percents) of reaching a source block
9484 for interblock speculative scheduling.  The default value is 40.
9486 @item max-sched-extend-regions-iters
9487 The maximum number of iterations through CFG to extend regions.
9488 A value of 0 (the default) disables region extensions.
9490 @item max-sched-insn-conflict-delay
9491 The maximum conflict delay for an insn to be considered for speculative motion.
9492 The default value is 3.
9494 @item sched-spec-prob-cutoff
9495 The minimal probability of speculation success (in percents), so that
9496 speculative insns are scheduled.
9497 The default value is 40.
9499 @item sched-spec-state-edge-prob-cutoff
9500 The minimum probability an edge must have for the scheduler to save its
9501 state across it.
9502 The default value is 10.
9504 @item sched-mem-true-dep-cost
9505 Minimal distance (in CPU cycles) between store and load targeting same
9506 memory locations.  The default value is 1.
9508 @item selsched-max-lookahead
9509 The maximum size of the lookahead window of selective scheduling.  It is a
9510 depth of search for available instructions.
9511 The default value is 50.
9513 @item selsched-max-sched-times
9514 The maximum number of times that an instruction is scheduled during
9515 selective scheduling.  This is the limit on the number of iterations
9516 through which the instruction may be pipelined.  The default value is 2.
9518 @item selsched-max-insns-to-rename
9519 The maximum number of best instructions in the ready list that are considered
9520 for renaming in the selective scheduler.  The default value is 2.
9522 @item sms-min-sc
9523 The minimum value of stage count that swing modulo scheduler
9524 generates.  The default value is 2.
9526 @item max-last-value-rtl
9527 The maximum size measured as number of RTLs that can be recorded in an expression
9528 in combiner for a pseudo register as last known value of that register.  The default
9529 is 10000.
9531 @item integer-share-limit
9532 Small integer constants can use a shared data structure, reducing the
9533 compiler's memory usage and increasing its speed.  This sets the maximum
9534 value of a shared integer constant.  The default value is 256.
9536 @item ssp-buffer-size
9537 The minimum size of buffers (i.e.@: arrays) that receive stack smashing
9538 protection when @option{-fstack-protection} is used.
9540 @item max-jump-thread-duplication-stmts
9541 Maximum number of statements allowed in a block that needs to be
9542 duplicated when threading jumps.
9544 @item max-fields-for-field-sensitive
9545 Maximum number of fields in a structure treated in
9546 a field sensitive manner during pointer analysis.  The default is zero
9547 for @option{-O0} and @option{-O1},
9548 and 100 for @option{-Os}, @option{-O2}, and @option{-O3}.
9550 @item prefetch-latency
9551 Estimate on average number of instructions that are executed before
9552 prefetch finishes.  The distance prefetched ahead is proportional
9553 to this constant.  Increasing this number may also lead to less
9554 streams being prefetched (see @option{simultaneous-prefetches}).
9556 @item simultaneous-prefetches
9557 Maximum number of prefetches that can run at the same time.
9559 @item l1-cache-line-size
9560 The size of cache line in L1 cache, in bytes.
9562 @item l1-cache-size
9563 The size of L1 cache, in kilobytes.
9565 @item l2-cache-size
9566 The size of L2 cache, in kilobytes.
9568 @item min-insn-to-prefetch-ratio
9569 The minimum ratio between the number of instructions and the
9570 number of prefetches to enable prefetching in a loop.
9572 @item prefetch-min-insn-to-mem-ratio
9573 The minimum ratio between the number of instructions and the
9574 number of memory references to enable prefetching in a loop.
9576 @item use-canonical-types
9577 Whether the compiler should use the ``canonical'' type system.  By
9578 default, this should always be 1, which uses a more efficient internal
9579 mechanism for comparing types in C++ and Objective-C++.  However, if
9580 bugs in the canonical type system are causing compilation failures,
9581 set this value to 0 to disable canonical types.
9583 @item switch-conversion-max-branch-ratio
9584 Switch initialization conversion refuses to create arrays that are
9585 bigger than @option{switch-conversion-max-branch-ratio} times the number of
9586 branches in the switch.
9588 @item max-partial-antic-length
9589 Maximum length of the partial antic set computed during the tree
9590 partial redundancy elimination optimization (@option{-ftree-pre}) when
9591 optimizing at @option{-O3} and above.  For some sorts of source code
9592 the enhanced partial redundancy elimination optimization can run away,
9593 consuming all of the memory available on the host machine.  This
9594 parameter sets a limit on the length of the sets that are computed,
9595 which prevents the runaway behavior.  Setting a value of 0 for
9596 this parameter allows an unlimited set length.
9598 @item sccvn-max-scc-size
9599 Maximum size of a strongly connected component (SCC) during SCCVN
9600 processing.  If this limit is hit, SCCVN processing for the whole
9601 function is not done and optimizations depending on it are
9602 disabled.  The default maximum SCC size is 10000.
9604 @item sccvn-max-alias-queries-per-access
9605 Maximum number of alias-oracle queries we perform when looking for
9606 redundancies for loads and stores.  If this limit is hit the search
9607 is aborted and the load or store is not considered redundant.  The
9608 number of queries is algorithmically limited to the number of
9609 stores on all paths from the load to the function entry.
9610 The default maxmimum number of queries is 1000.
9612 @item ira-max-loops-num
9613 IRA uses regional register allocation by default.  If a function
9614 contains more loops than the number given by this parameter, only at most
9615 the given number of the most frequently-executed loops form regions
9616 for regional register allocation.  The default value of the
9617 parameter is 100.
9619 @item ira-max-conflict-table-size 
9620 Although IRA uses a sophisticated algorithm to compress the conflict
9621 table, the table can still require excessive amounts of memory for
9622 huge functions.  If the conflict table for a function could be more
9623 than the size in MB given by this parameter, the register allocator
9624 instead uses a faster, simpler, and lower-quality
9625 algorithm that does not require building a pseudo-register conflict table.  
9626 The default value of the parameter is 2000.
9628 @item ira-loop-reserved-regs
9629 IRA can be used to evaluate more accurate register pressure in loops
9630 for decisions to move loop invariants (see @option{-O3}).  The number
9631 of available registers reserved for some other purposes is given
9632 by this parameter.  The default value of the parameter is 2, which is
9633 the minimal number of registers needed by typical instructions.
9634 This value is the best found from numerous experiments.
9636 @item loop-invariant-max-bbs-in-loop
9637 Loop invariant motion can be very expensive, both in compilation time and
9638 in amount of needed compile-time memory, with very large loops.  Loops
9639 with more basic blocks than this parameter won't have loop invariant
9640 motion optimization performed on them.  The default value of the
9641 parameter is 1000 for @option{-O1} and 10000 for @option{-O2} and above.
9643 @item loop-max-datarefs-for-datadeps
9644 Building data dapendencies is expensive for very large loops.  This
9645 parameter limits the number of data references in loops that are
9646 considered for data dependence analysis.  These large loops are no
9647 handled by the optimizations using loop data dependencies.
9648 The default value is 1000.
9650 @item max-vartrack-size
9651 Sets a maximum number of hash table slots to use during variable
9652 tracking dataflow analysis of any function.  If this limit is exceeded
9653 with variable tracking at assignments enabled, analysis for that
9654 function is retried without it, after removing all debug insns from
9655 the function.  If the limit is exceeded even without debug insns, var
9656 tracking analysis is completely disabled for the function.  Setting
9657 the parameter to zero makes it unlimited.
9659 @item max-vartrack-expr-depth
9660 Sets a maximum number of recursion levels when attempting to map
9661 variable names or debug temporaries to value expressions.  This trades
9662 compilation time for more complete debug information.  If this is set too
9663 low, value expressions that are available and could be represented in
9664 debug information may end up not being used; setting this higher may
9665 enable the compiler to find more complex debug expressions, but compile
9666 time and memory use may grow.  The default is 12.
9668 @item min-nondebug-insn-uid
9669 Use uids starting at this parameter for nondebug insns.  The range below
9670 the parameter is reserved exclusively for debug insns created by
9671 @option{-fvar-tracking-assignments}, but debug insns may get
9672 (non-overlapping) uids above it if the reserved range is exhausted.
9674 @item ipa-sra-ptr-growth-factor
9675 IPA-SRA replaces a pointer to an aggregate with one or more new
9676 parameters only when their cumulative size is less or equal to
9677 @option{ipa-sra-ptr-growth-factor} times the size of the original
9678 pointer parameter.
9680 @item tm-max-aggregate-size
9681 When making copies of thread-local variables in a transaction, this
9682 parameter specifies the size in bytes after which variables are
9683 saved with the logging functions as opposed to save/restore code
9684 sequence pairs.  This option only applies when using
9685 @option{-fgnu-tm}.
9687 @item graphite-max-nb-scop-params
9688 To avoid exponential effects in the Graphite loop transforms, the
9689 number of parameters in a Static Control Part (SCoP) is bounded.  The
9690 default value is 10 parameters.  A variable whose value is unknown at
9691 compilation time and defined outside a SCoP is a parameter of the SCoP.
9693 @item graphite-max-bbs-per-function
9694 To avoid exponential effects in the detection of SCoPs, the size of
9695 the functions analyzed by Graphite is bounded.  The default value is
9696 100 basic blocks.
9698 @item loop-block-tile-size
9699 Loop blocking or strip mining transforms, enabled with
9700 @option{-floop-block} or @option{-floop-strip-mine}, strip mine each
9701 loop in the loop nest by a given number of iterations.  The strip
9702 length can be changed using the @option{loop-block-tile-size}
9703 parameter.  The default value is 51 iterations.
9705 @item ipa-cp-value-list-size
9706 IPA-CP attempts to track all possible values and types passed to a function's
9707 parameter in order to propagate them and perform devirtualization.
9708 @option{ipa-cp-value-list-size} is the maximum number of values and types it
9709 stores per one formal parameter of a function.
9711 @item lto-partitions
9712 Specify desired number of partitions produced during WHOPR compilation.
9713 The number of partitions should exceed the number of CPUs used for compilation.
9714 The default value is 32.
9716 @item lto-minpartition
9717 Size of minimal partition for WHOPR (in estimated instructions).
9718 This prevents expenses of splitting very small programs into too many
9719 partitions.
9721 @item cxx-max-namespaces-for-diagnostic-help
9722 The maximum number of namespaces to consult for suggestions when C++
9723 name lookup fails for an identifier.  The default is 1000.
9725 @item sink-frequency-threshold
9726 The maximum relative execution frequency (in percents) of the target block
9727 relative to a statement's original block to allow statement sinking of a
9728 statement.  Larger numbers result in more aggressive statement sinking.
9729 The default value is 75.  A small positive adjustment is applied for
9730 statements with memory operands as those are even more profitable so sink.
9732 @item max-stores-to-sink
9733 The maximum number of conditional stores paires that can be sunk.  Set to 0
9734 if either vectorization (@option{-ftree-vectorize}) or if-conversion
9735 (@option{-ftree-loop-if-convert}) is disabled.  The default is 2.
9737 @item allow-load-data-races
9738 Allow optimizers to introduce new data races on loads.
9739 Set to 1 to allow, otherwise to 0.  This option is enabled by default
9740 unless implicitly set by the @option{-fmemory-model=} option.
9742 @item allow-store-data-races
9743 Allow optimizers to introduce new data races on stores.
9744 Set to 1 to allow, otherwise to 0.  This option is enabled by default
9745 unless implicitly set by the @option{-fmemory-model=} option.
9747 @item allow-packed-load-data-races
9748 Allow optimizers to introduce new data races on packed data loads.
9749 Set to 1 to allow, otherwise to 0.  This option is enabled by default
9750 unless implicitly set by the @option{-fmemory-model=} option.
9752 @item allow-packed-store-data-races
9753 Allow optimizers to introduce new data races on packed data stores.
9754 Set to 1 to allow, otherwise to 0.  This option is enabled by default
9755 unless implicitly set by the @option{-fmemory-model=} option.
9757 @item case-values-threshold
9758 The smallest number of different values for which it is best to use a
9759 jump-table instead of a tree of conditional branches.  If the value is
9760 0, use the default for the machine.  The default is 0.
9762 @item tree-reassoc-width
9763 Set the maximum number of instructions executed in parallel in
9764 reassociated tree. This parameter overrides target dependent
9765 heuristics used by default if has non zero value.
9767 @item sched-pressure-algorithm
9768 Choose between the two available implementations of
9769 @option{-fsched-pressure}.  Algorithm 1 is the original implementation
9770 and is the more likely to prevent instructions from being reordered.
9771 Algorithm 2 was designed to be a compromise between the relatively
9772 conservative approach taken by algorithm 1 and the rather aggressive
9773 approach taken by the default scheduler.  It relies more heavily on
9774 having a regular register file and accurate register pressure classes.
9775 See @file{haifa-sched.c} in the GCC sources for more details.
9777 The default choice depends on the target.
9779 @item max-slsr-cand-scan
9780 Set the maximum number of existing candidates that will be considered when
9781 seeking a basis for a new straight-line strength reduction candidate.
9783 @end table
9784 @end table
9786 @node Preprocessor Options
9787 @section Options Controlling the Preprocessor
9788 @cindex preprocessor options
9789 @cindex options, preprocessor
9791 These options control the C preprocessor, which is run on each C source
9792 file before actual compilation.
9794 If you use the @option{-E} option, nothing is done except preprocessing.
9795 Some of these options make sense only together with @option{-E} because
9796 they cause the preprocessor output to be unsuitable for actual
9797 compilation.
9799 @table @gcctabopt
9800 @item -Wp,@var{option}
9801 @opindex Wp
9802 You can use @option{-Wp,@var{option}} to bypass the compiler driver
9803 and pass @var{option} directly through to the preprocessor.  If
9804 @var{option} contains commas, it is split into multiple options at the
9805 commas.  However, many options are modified, translated or interpreted
9806 by the compiler driver before being passed to the preprocessor, and
9807 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
9808 interface is undocumented and subject to change, so whenever possible
9809 you should avoid using @option{-Wp} and let the driver handle the
9810 options instead.
9812 @item -Xpreprocessor @var{option}
9813 @opindex Xpreprocessor
9814 Pass @var{option} as an option to the preprocessor.  You can use this to
9815 supply system-specific preprocessor options that GCC does not 
9816 recognize.
9818 If you want to pass an option that takes an argument, you must use
9819 @option{-Xpreprocessor} twice, once for the option and once for the argument.
9821 @item -no-integrated-cpp
9822 @opindex no-integrated-cpp
9823 Perform preprocessing as a separate pass before compilation.
9824 By default, GCC performs preprocessing as an integrated part of
9825 input tokenization and parsing.
9826 If this option is provided, the appropriate language front end
9827 (@command{cc1}, @command{cc1plus}, or @command{cc1obj} for C, C++,
9828 and Objective-C, respectively) is instead invoked twice,
9829 once for preprocessing only and once for actual compilation
9830 of the preprocessed input.
9831 This option may be useful in conjunction with the @option{-B} or
9832 @option{-wrapper} options to specify an alternate preprocessor or
9833 perform additional processing of the program source between
9834 normal preprocessing and compilation.
9835 @end table
9837 @include cppopts.texi
9839 @node Assembler Options
9840 @section Passing Options to the Assembler
9842 @c prevent bad page break with this line
9843 You can pass options to the assembler.
9845 @table @gcctabopt
9846 @item -Wa,@var{option}
9847 @opindex Wa
9848 Pass @var{option} as an option to the assembler.  If @var{option}
9849 contains commas, it is split into multiple options at the commas.
9851 @item -Xassembler @var{option}
9852 @opindex Xassembler
9853 Pass @var{option} as an option to the assembler.  You can use this to
9854 supply system-specific assembler options that GCC does not
9855 recognize.
9857 If you want to pass an option that takes an argument, you must use
9858 @option{-Xassembler} twice, once for the option and once for the argument.
9860 @end table
9862 @node Link Options
9863 @section Options for Linking
9864 @cindex link options
9865 @cindex options, linking
9867 These options come into play when the compiler links object files into
9868 an executable output file.  They are meaningless if the compiler is
9869 not doing a link step.
9871 @table @gcctabopt
9872 @cindex file names
9873 @item @var{object-file-name}
9874 A file name that does not end in a special recognized suffix is
9875 considered to name an object file or library.  (Object files are
9876 distinguished from libraries by the linker according to the file
9877 contents.)  If linking is done, these object files are used as input
9878 to the linker.
9880 @item -c
9881 @itemx -S
9882 @itemx -E
9883 @opindex c
9884 @opindex S
9885 @opindex E
9886 If any of these options is used, then the linker is not run, and
9887 object file names should not be used as arguments.  @xref{Overall
9888 Options}.
9890 @cindex Libraries
9891 @item -l@var{library}
9892 @itemx -l @var{library}
9893 @opindex l
9894 Search the library named @var{library} when linking.  (The second
9895 alternative with the library as a separate argument is only for
9896 POSIX compliance and is not recommended.)
9898 It makes a difference where in the command you write this option; the
9899 linker searches and processes libraries and object files in the order they
9900 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
9901 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
9902 to functions in @samp{z}, those functions may not be loaded.
9904 The linker searches a standard list of directories for the library,
9905 which is actually a file named @file{lib@var{library}.a}.  The linker
9906 then uses this file as if it had been specified precisely by name.
9908 The directories searched include several standard system directories
9909 plus any that you specify with @option{-L}.
9911 Normally the files found this way are library files---archive files
9912 whose members are object files.  The linker handles an archive file by
9913 scanning through it for members which define symbols that have so far
9914 been referenced but not defined.  But if the file that is found is an
9915 ordinary object file, it is linked in the usual fashion.  The only
9916 difference between using an @option{-l} option and specifying a file name
9917 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
9918 and searches several directories.
9920 @item -lobjc
9921 @opindex lobjc
9922 You need this special case of the @option{-l} option in order to
9923 link an Objective-C or Objective-C++ program.
9925 @item -nostartfiles
9926 @opindex nostartfiles
9927 Do not use the standard system startup files when linking.
9928 The standard system libraries are used normally, unless @option{-nostdlib}
9929 or @option{-nodefaultlibs} is used.
9931 @item -nodefaultlibs
9932 @opindex nodefaultlibs
9933 Do not use the standard system libraries when linking.
9934 Only the libraries you specify are passed to the linker, and options
9935 specifying linkage of the system libraries, such as @code{-static-libgcc}
9936 or @code{-shared-libgcc}, are ignored.  
9937 The standard startup files are used normally, unless @option{-nostartfiles}
9938 is used.  
9940 The compiler may generate calls to @code{memcmp},
9941 @code{memset}, @code{memcpy} and @code{memmove}.
9942 These entries are usually resolved by entries in
9943 libc.  These entry points should be supplied through some other
9944 mechanism when this option is specified.
9946 @item -nostdlib
9947 @opindex nostdlib
9948 Do not use the standard system startup files or libraries when linking.
9949 No startup files and only the libraries you specify are passed to
9950 the linker, and options specifying linkage of the system libraries, such as
9951 @code{-static-libgcc} or @code{-shared-libgcc}, are ignored.
9953 The compiler may generate calls to @code{memcmp}, @code{memset},
9954 @code{memcpy} and @code{memmove}.
9955 These entries are usually resolved by entries in
9956 libc.  These entry points should be supplied through some other
9957 mechanism when this option is specified.
9959 @cindex @option{-lgcc}, use with @option{-nostdlib}
9960 @cindex @option{-nostdlib} and unresolved references
9961 @cindex unresolved references and @option{-nostdlib}
9962 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
9963 @cindex @option{-nodefaultlibs} and unresolved references
9964 @cindex unresolved references and @option{-nodefaultlibs}
9965 One of the standard libraries bypassed by @option{-nostdlib} and
9966 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
9967 which GCC uses to overcome shortcomings of particular machines, or special
9968 needs for some languages.
9969 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
9970 Collection (GCC) Internals},
9971 for more discussion of @file{libgcc.a}.)
9972 In most cases, you need @file{libgcc.a} even when you want to avoid
9973 other standard libraries.  In other words, when you specify @option{-nostdlib}
9974 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
9975 This ensures that you have no unresolved references to internal GCC
9976 library subroutines.
9977 (An example of such an internal subroutine is @samp{__main}, used to ensure C++
9978 constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
9979 GNU Compiler Collection (GCC) Internals}.)
9981 @item -pie
9982 @opindex pie
9983 Produce a position independent executable on targets that support it.
9984 For predictable results, you must also specify the same set of options
9985 used for compilation (@option{-fpie}, @option{-fPIE},
9986 or model suboptions) when you specify this linker option.
9988 @item -rdynamic
9989 @opindex rdynamic
9990 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
9991 that support it. This instructs the linker to add all symbols, not
9992 only used ones, to the dynamic symbol table. This option is needed
9993 for some uses of @code{dlopen} or to allow obtaining backtraces
9994 from within a program.
9996 @item -s
9997 @opindex s
9998 Remove all symbol table and relocation information from the executable.
10000 @item -static
10001 @opindex static
10002 On systems that support dynamic linking, this prevents linking with the shared
10003 libraries.  On other systems, this option has no effect.
10005 @item -shared
10006 @opindex shared
10007 Produce a shared object which can then be linked with other objects to
10008 form an executable.  Not all systems support this option.  For predictable
10009 results, you must also specify the same set of options used for compilation
10010 (@option{-fpic}, @option{-fPIC}, or model suboptions) when
10011 you specify this linker option.@footnote{On some systems, @samp{gcc -shared}
10012 needs to build supplementary stub code for constructors to work.  On
10013 multi-libbed systems, @samp{gcc -shared} must select the correct support
10014 libraries to link against.  Failing to supply the correct flags may lead
10015 to subtle defects.  Supplying them in cases where they are not necessary
10016 is innocuous.}
10018 @item -shared-libgcc
10019 @itemx -static-libgcc
10020 @opindex shared-libgcc
10021 @opindex static-libgcc
10022 On systems that provide @file{libgcc} as a shared library, these options
10023 force the use of either the shared or static version, respectively.
10024 If no shared version of @file{libgcc} was built when the compiler was
10025 configured, these options have no effect.
10027 There are several situations in which an application should use the
10028 shared @file{libgcc} instead of the static version.  The most common
10029 of these is when the application wishes to throw and catch exceptions
10030 across different shared libraries.  In that case, each of the libraries
10031 as well as the application itself should use the shared @file{libgcc}.
10033 Therefore, the G++ and GCJ drivers automatically add
10034 @option{-shared-libgcc} whenever you build a shared library or a main
10035 executable, because C++ and Java programs typically use exceptions, so
10036 this is the right thing to do.
10038 If, instead, you use the GCC driver to create shared libraries, you may
10039 find that they are not always linked with the shared @file{libgcc}.
10040 If GCC finds, at its configuration time, that you have a non-GNU linker
10041 or a GNU linker that does not support option @option{--eh-frame-hdr},
10042 it links the shared version of @file{libgcc} into shared libraries
10043 by default.  Otherwise, it takes advantage of the linker and optimizes
10044 away the linking with the shared version of @file{libgcc}, linking with
10045 the static version of libgcc by default.  This allows exceptions to
10046 propagate through such shared libraries, without incurring relocation
10047 costs at library load time.
10049 However, if a library or main executable is supposed to throw or catch
10050 exceptions, you must link it using the G++ or GCJ driver, as appropriate
10051 for the languages used in the program, or using the option
10052 @option{-shared-libgcc}, such that it is linked with the shared
10053 @file{libgcc}.
10055 @item -static-libasan
10056 When the @option{-fsanitize=address} option is used to link a program,
10057 the GCC driver automatically links against @option{libasan}.  If
10058 @file{libasan} is available as a shared library, and the @option{-static}
10059 option is not used, then this links against the shared version of
10060 @file{libasan}.  The @option{-static-libasan} option directs the GCC
10061 driver to link @file{libasan} statically, without necessarily linking
10062 other libraries statically.
10064 @item -static-libtsan
10065 When the @option{-fsanitize=thread} option is used to link a program,
10066 the GCC driver automatically links against @option{libtsan}.  If
10067 @file{libtsan} is available as a shared library, and the @option{-static}
10068 option is not used, then this links against the shared version of
10069 @file{libtsan}.  The @option{-static-libtsan} option directs the GCC
10070 driver to link @file{libtsan} statically, without necessarily linking
10071 other libraries statically.
10073 @item -static-libstdc++
10074 When the @command{g++} program is used to link a C++ program, it
10075 normally automatically links against @option{libstdc++}.  If
10076 @file{libstdc++} is available as a shared library, and the
10077 @option{-static} option is not used, then this links against the
10078 shared version of @file{libstdc++}.  That is normally fine.  However, it
10079 is sometimes useful to freeze the version of @file{libstdc++} used by
10080 the program without going all the way to a fully static link.  The
10081 @option{-static-libstdc++} option directs the @command{g++} driver to
10082 link @file{libstdc++} statically, without necessarily linking other
10083 libraries statically.
10085 @item -symbolic
10086 @opindex symbolic
10087 Bind references to global symbols when building a shared object.  Warn
10088 about any unresolved references (unless overridden by the link editor
10089 option @option{-Xlinker -z -Xlinker defs}).  Only a few systems support
10090 this option.
10092 @item -T @var{script}
10093 @opindex T
10094 @cindex linker script
10095 Use @var{script} as the linker script.  This option is supported by most
10096 systems using the GNU linker.  On some targets, such as bare-board
10097 targets without an operating system, the @option{-T} option may be required
10098 when linking to avoid references to undefined symbols.
10100 @item -Xlinker @var{option}
10101 @opindex Xlinker
10102 Pass @var{option} as an option to the linker.  You can use this to
10103 supply system-specific linker options that GCC does not recognize.
10105 If you want to pass an option that takes a separate argument, you must use
10106 @option{-Xlinker} twice, once for the option and once for the argument.
10107 For example, to pass @option{-assert definitions}, you must write
10108 @option{-Xlinker -assert -Xlinker definitions}.  It does not work to write
10109 @option{-Xlinker "-assert definitions"}, because this passes the entire
10110 string as a single argument, which is not what the linker expects.
10112 When using the GNU linker, it is usually more convenient to pass
10113 arguments to linker options using the @option{@var{option}=@var{value}}
10114 syntax than as separate arguments.  For example, you can specify
10115 @option{-Xlinker -Map=output.map} rather than
10116 @option{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
10117 this syntax for command-line options.
10119 @item -Wl,@var{option}
10120 @opindex Wl
10121 Pass @var{option} as an option to the linker.  If @var{option} contains
10122 commas, it is split into multiple options at the commas.  You can use this
10123 syntax to pass an argument to the option.
10124 For example, @option{-Wl,-Map,output.map} passes @option{-Map output.map} to the
10125 linker.  When using the GNU linker, you can also get the same effect with
10126 @option{-Wl,-Map=output.map}.
10128 @item -u @var{symbol}
10129 @opindex u
10130 Pretend the symbol @var{symbol} is undefined, to force linking of
10131 library modules to define it.  You can use @option{-u} multiple times with
10132 different symbols to force loading of additional library modules.
10133 @end table
10135 @node Directory Options
10136 @section Options for Directory Search
10137 @cindex directory options
10138 @cindex options, directory search
10139 @cindex search path
10141 These options specify directories to search for header files, for
10142 libraries and for parts of the compiler:
10144 @table @gcctabopt
10145 @item -I@var{dir}
10146 @opindex I
10147 Add the directory @var{dir} to the head of the list of directories to be
10148 searched for header files.  This can be used to override a system header
10149 file, substituting your own version, since these directories are
10150 searched before the system header file directories.  However, you should
10151 not use this option to add directories that contain vendor-supplied
10152 system header files (use @option{-isystem} for that).  If you use more than
10153 one @option{-I} option, the directories are scanned in left-to-right
10154 order; the standard system directories come after.
10156 If a standard system include directory, or a directory specified with
10157 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
10158 option is ignored.  The directory is still searched but as a
10159 system directory at its normal position in the system include chain.
10160 This is to ensure that GCC's procedure to fix buggy system headers and
10161 the ordering for the @code{include_next} directive are not inadvertently changed.
10162 If you really need to change the search order for system directories,
10163 use the @option{-nostdinc} and/or @option{-isystem} options.
10165 @item -iplugindir=@var{dir}
10166 Set the directory to search for plugins that are passed
10167 by @option{-fplugin=@var{name}} instead of
10168 @option{-fplugin=@var{path}/@var{name}.so}.  This option is not meant
10169 to be used by the user, but only passed by the driver.
10171 @item -iquote@var{dir}
10172 @opindex iquote
10173 Add the directory @var{dir} to the head of the list of directories to
10174 be searched for header files only for the case of @samp{#include
10175 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
10176 otherwise just like @option{-I}.
10178 @item -L@var{dir}
10179 @opindex L
10180 Add directory @var{dir} to the list of directories to be searched
10181 for @option{-l}.
10183 @item -B@var{prefix}
10184 @opindex B
10185 This option specifies where to find the executables, libraries,
10186 include files, and data files of the compiler itself.
10188 The compiler driver program runs one or more of the subprograms
10189 @command{cpp}, @command{cc1}, @command{as} and @command{ld}.  It tries
10190 @var{prefix} as a prefix for each program it tries to run, both with and
10191 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
10193 For each subprogram to be run, the compiler driver first tries the
10194 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
10195 is not specified, the driver tries two standard prefixes, 
10196 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
10197 those results in a file name that is found, the unmodified program
10198 name is searched for using the directories specified in your
10199 @env{PATH} environment variable.
10201 The compiler checks to see if the path provided by the @option{-B}
10202 refers to a directory, and if necessary it adds a directory
10203 separator character at the end of the path.
10205 @option{-B} prefixes that effectively specify directory names also apply
10206 to libraries in the linker, because the compiler translates these
10207 options into @option{-L} options for the linker.  They also apply to
10208 includes files in the preprocessor, because the compiler translates these
10209 options into @option{-isystem} options for the preprocessor.  In this case,
10210 the compiler appends @samp{include} to the prefix.
10212 The runtime support file @file{libgcc.a} can also be searched for using
10213 the @option{-B} prefix, if needed.  If it is not found there, the two
10214 standard prefixes above are tried, and that is all.  The file is left
10215 out of the link if it is not found by those means.
10217 Another way to specify a prefix much like the @option{-B} prefix is to use
10218 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
10219 Variables}.
10221 As a special kludge, if the path provided by @option{-B} is
10222 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
10223 9, then it is replaced by @file{[dir/]include}.  This is to help
10224 with boot-strapping the compiler.
10226 @item -specs=@var{file}
10227 @opindex specs
10228 Process @var{file} after the compiler reads in the standard @file{specs}
10229 file, in order to override the defaults which the @command{gcc} driver
10230 program uses when determining what switches to pass to @command{cc1},
10231 @command{cc1plus}, @command{as}, @command{ld}, etc.  More than one
10232 @option{-specs=@var{file}} can be specified on the command line, and they
10233 are processed in order, from left to right.
10235 @item --sysroot=@var{dir}
10236 @opindex sysroot
10237 Use @var{dir} as the logical root directory for headers and libraries.
10238 For example, if the compiler normally searches for headers in
10239 @file{/usr/include} and libraries in @file{/usr/lib}, it instead
10240 searches @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
10242 If you use both this option and the @option{-isysroot} option, then
10243 the @option{--sysroot} option applies to libraries, but the
10244 @option{-isysroot} option applies to header files.
10246 The GNU linker (beginning with version 2.16) has the necessary support
10247 for this option.  If your linker does not support this option, the
10248 header file aspect of @option{--sysroot} still works, but the
10249 library aspect does not.
10251 @item --no-sysroot-suffix
10252 @opindex no-sysroot-suffix
10253 For some targets, a suffix is added to the root directory specified
10254 with @option{--sysroot}, depending on the other options used, so that
10255 headers may for example be found in
10256 @file{@var{dir}/@var{suffix}/usr/include} instead of
10257 @file{@var{dir}/usr/include}.  This option disables the addition of
10258 such a suffix.
10260 @item -I-
10261 @opindex I-
10262 This option has been deprecated.  Please use @option{-iquote} instead for
10263 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
10264 Any directories you specify with @option{-I} options before the @option{-I-}
10265 option are searched only for the case of @samp{#include "@var{file}"};
10266 they are not searched for @samp{#include <@var{file}>}.
10268 If additional directories are specified with @option{-I} options after
10269 the @option{-I-}, these directories are searched for all @samp{#include}
10270 directives.  (Ordinarily @emph{all} @option{-I} directories are used
10271 this way.)
10273 In addition, the @option{-I-} option inhibits the use of the current
10274 directory (where the current input file came from) as the first search
10275 directory for @samp{#include "@var{file}"}.  There is no way to
10276 override this effect of @option{-I-}.  With @option{-I.} you can specify
10277 searching the directory that is current when the compiler is
10278 invoked.  That is not exactly the same as what the preprocessor does
10279 by default, but it is often satisfactory.
10281 @option{-I-} does not inhibit the use of the standard system directories
10282 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
10283 independent.
10284 @end table
10286 @c man end
10288 @node Spec Files
10289 @section Specifying subprocesses and the switches to pass to them
10290 @cindex Spec Files
10292 @command{gcc} is a driver program.  It performs its job by invoking a
10293 sequence of other programs to do the work of compiling, assembling and
10294 linking.  GCC interprets its command-line parameters and uses these to
10295 deduce which programs it should invoke, and which command-line options
10296 it ought to place on their command lines.  This behavior is controlled
10297 by @dfn{spec strings}.  In most cases there is one spec string for each
10298 program that GCC can invoke, but a few programs have multiple spec
10299 strings to control their behavior.  The spec strings built into GCC can
10300 be overridden by using the @option{-specs=} command-line switch to specify
10301 a spec file.
10303 @dfn{Spec files} are plaintext files that are used to construct spec
10304 strings.  They consist of a sequence of directives separated by blank
10305 lines.  The type of directive is determined by the first non-whitespace
10306 character on the line, which can be one of the following:
10308 @table @code
10309 @item %@var{command}
10310 Issues a @var{command} to the spec file processor.  The commands that can
10311 appear here are:
10313 @table @code
10314 @item %include <@var{file}>
10315 @cindex @code{%include}
10316 Search for @var{file} and insert its text at the current point in the
10317 specs file.
10319 @item %include_noerr <@var{file}>
10320 @cindex @code{%include_noerr}
10321 Just like @samp{%include}, but do not generate an error message if the include
10322 file cannot be found.
10324 @item %rename @var{old_name} @var{new_name}
10325 @cindex @code{%rename}
10326 Rename the spec string @var{old_name} to @var{new_name}.
10328 @end table
10330 @item *[@var{spec_name}]:
10331 This tells the compiler to create, override or delete the named spec
10332 string.  All lines after this directive up to the next directive or
10333 blank line are considered to be the text for the spec string.  If this
10334 results in an empty string then the spec is deleted.  (Or, if the
10335 spec did not exist, then nothing happens.)  Otherwise, if the spec
10336 does not currently exist a new spec is created.  If the spec does
10337 exist then its contents are overridden by the text of this
10338 directive, unless the first character of that text is the @samp{+}
10339 character, in which case the text is appended to the spec.
10341 @item [@var{suffix}]:
10342 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
10343 and up to the next directive or blank line are considered to make up the
10344 spec string for the indicated suffix.  When the compiler encounters an
10345 input file with the named suffix, it processes the spec string in
10346 order to work out how to compile that file.  For example:
10348 @smallexample
10349 .ZZ:
10350 z-compile -input %i
10351 @end smallexample
10353 This says that any input file whose name ends in @samp{.ZZ} should be
10354 passed to the program @samp{z-compile}, which should be invoked with the
10355 command-line switch @option{-input} and with the result of performing the
10356 @samp{%i} substitution.  (See below.)
10358 As an alternative to providing a spec string, the text following a
10359 suffix directive can be one of the following:
10361 @table @code
10362 @item @@@var{language}
10363 This says that the suffix is an alias for a known @var{language}.  This is
10364 similar to using the @option{-x} command-line switch to GCC to specify a
10365 language explicitly.  For example:
10367 @smallexample
10368 .ZZ:
10369 @@c++
10370 @end smallexample
10372 Says that .ZZ files are, in fact, C++ source files.
10374 @item #@var{name}
10375 This causes an error messages saying:
10377 @smallexample
10378 @var{name} compiler not installed on this system.
10379 @end smallexample
10380 @end table
10382 GCC already has an extensive list of suffixes built into it.
10383 This directive adds an entry to the end of the list of suffixes, but
10384 since the list is searched from the end backwards, it is effectively
10385 possible to override earlier entries using this technique.
10387 @end table
10389 GCC has the following spec strings built into it.  Spec files can
10390 override these strings or create their own.  Note that individual
10391 targets can also add their own spec strings to this list.
10393 @smallexample
10394 asm          Options to pass to the assembler
10395 asm_final    Options to pass to the assembler post-processor
10396 cpp          Options to pass to the C preprocessor
10397 cc1          Options to pass to the C compiler
10398 cc1plus      Options to pass to the C++ compiler
10399 endfile      Object files to include at the end of the link
10400 link         Options to pass to the linker
10401 lib          Libraries to include on the command line to the linker
10402 libgcc       Decides which GCC support library to pass to the linker
10403 linker       Sets the name of the linker
10404 predefines   Defines to be passed to the C preprocessor
10405 signed_char  Defines to pass to CPP to say whether @code{char} is signed
10406              by default
10407 startfile    Object files to include at the start of the link
10408 @end smallexample
10410 Here is a small example of a spec file:
10412 @smallexample
10413 %rename lib                 old_lib
10415 *lib:
10416 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
10417 @end smallexample
10419 This example renames the spec called @samp{lib} to @samp{old_lib} and
10420 then overrides the previous definition of @samp{lib} with a new one.
10421 The new definition adds in some extra command-line options before
10422 including the text of the old definition.
10424 @dfn{Spec strings} are a list of command-line options to be passed to their
10425 corresponding program.  In addition, the spec strings can contain
10426 @samp{%}-prefixed sequences to substitute variable text or to
10427 conditionally insert text into the command line.  Using these constructs
10428 it is possible to generate quite complex command lines.
10430 Here is a table of all defined @samp{%}-sequences for spec
10431 strings.  Note that spaces are not generated automatically around the
10432 results of expanding these sequences.  Therefore you can concatenate them
10433 together or combine them with constant text in a single argument.
10435 @table @code
10436 @item %%
10437 Substitute one @samp{%} into the program name or argument.
10439 @item %i
10440 Substitute the name of the input file being processed.
10442 @item %b
10443 Substitute the basename of the input file being processed.
10444 This is the substring up to (and not including) the last period
10445 and not including the directory.
10447 @item %B
10448 This is the same as @samp{%b}, but include the file suffix (text after
10449 the last period).
10451 @item %d
10452 Marks the argument containing or following the @samp{%d} as a
10453 temporary file name, so that that file is deleted if GCC exits
10454 successfully.  Unlike @samp{%g}, this contributes no text to the
10455 argument.
10457 @item %g@var{suffix}
10458 Substitute a file name that has suffix @var{suffix} and is chosen
10459 once per compilation, and mark the argument in the same way as
10460 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
10461 name is now chosen in a way that is hard to predict even when previously
10462 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
10463 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
10464 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
10465 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
10466 was simply substituted with a file name chosen once per compilation,
10467 without regard to any appended suffix (which was therefore treated
10468 just like ordinary text), making such attacks more likely to succeed.
10470 @item %u@var{suffix}
10471 Like @samp{%g}, but generates a new temporary file name
10472 each time it appears instead of once per compilation.
10474 @item %U@var{suffix}
10475 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
10476 new one if there is no such last file name.  In the absence of any
10477 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
10478 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
10479 involves the generation of two distinct file names, one
10480 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
10481 simply substituted with a file name chosen for the previous @samp{%u},
10482 without regard to any appended suffix.
10484 @item %j@var{suffix}
10485 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
10486 writable, and if @option{-save-temps} is not used; 
10487 otherwise, substitute the name
10488 of a temporary file, just like @samp{%u}.  This temporary file is not
10489 meant for communication between processes, but rather as a junk
10490 disposal mechanism.
10492 @item %|@var{suffix}
10493 @itemx %m@var{suffix}
10494 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
10495 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
10496 all.  These are the two most common ways to instruct a program that it
10497 should read from standard input or write to standard output.  If you
10498 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
10499 construct: see for example @file{f/lang-specs.h}.
10501 @item %.@var{SUFFIX}
10502 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
10503 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
10504 terminated by the next space or %.
10506 @item %w
10507 Marks the argument containing or following the @samp{%w} as the
10508 designated output file of this compilation.  This puts the argument
10509 into the sequence of arguments that @samp{%o} substitutes.
10511 @item %o
10512 Substitutes the names of all the output files, with spaces
10513 automatically placed around them.  You should write spaces
10514 around the @samp{%o} as well or the results are undefined.
10515 @samp{%o} is for use in the specs for running the linker.
10516 Input files whose names have no recognized suffix are not compiled
10517 at all, but they are included among the output files, so they are
10518 linked.
10520 @item %O
10521 Substitutes the suffix for object files.  Note that this is
10522 handled specially when it immediately follows @samp{%g, %u, or %U},
10523 because of the need for those to form complete file names.  The
10524 handling is such that @samp{%O} is treated exactly as if it had already
10525 been substituted, except that @samp{%g, %u, and %U} do not currently
10526 support additional @var{suffix} characters following @samp{%O} as they do
10527 following, for example, @samp{.o}.
10529 @item %p
10530 Substitutes the standard macro predefinitions for the
10531 current target machine.  Use this when running @code{cpp}.
10533 @item %P
10534 Like @samp{%p}, but puts @samp{__} before and after the name of each
10535 predefined macro, except for macros that start with @samp{__} or with
10536 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
10539 @item %I
10540 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
10541 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
10542 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
10543 and @option{-imultilib} as necessary.
10545 @item %s
10546 Current argument is the name of a library or startup file of some sort.
10547 Search for that file in a standard list of directories and substitute
10548 the full name found.  The current working directory is included in the
10549 list of directories scanned.
10551 @item %T
10552 Current argument is the name of a linker script.  Search for that file
10553 in the current list of directories to scan for libraries. If the file
10554 is located insert a @option{--script} option into the command line
10555 followed by the full path name found.  If the file is not found then
10556 generate an error message.  Note: the current working directory is not
10557 searched.
10559 @item %e@var{str}
10560 Print @var{str} as an error message.  @var{str} is terminated by a newline.
10561 Use this when inconsistent options are detected.
10563 @item %(@var{name})
10564 Substitute the contents of spec string @var{name} at this point.
10566 @item %x@{@var{option}@}
10567 Accumulate an option for @samp{%X}.
10569 @item %X
10570 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
10571 spec string.
10573 @item %Y
10574 Output the accumulated assembler options specified by @option{-Wa}.
10576 @item %Z
10577 Output the accumulated preprocessor options specified by @option{-Wp}.
10579 @item %a
10580 Process the @code{asm} spec.  This is used to compute the
10581 switches to be passed to the assembler.
10583 @item %A
10584 Process the @code{asm_final} spec.  This is a spec string for
10585 passing switches to an assembler post-processor, if such a program is
10586 needed.
10588 @item %l
10589 Process the @code{link} spec.  This is the spec for computing the
10590 command line passed to the linker.  Typically it makes use of the
10591 @samp{%L %G %S %D and %E} sequences.
10593 @item %D
10594 Dump out a @option{-L} option for each directory that GCC believes might
10595 contain startup files.  If the target supports multilibs then the
10596 current multilib directory is prepended to each of these paths.
10598 @item %L
10599 Process the @code{lib} spec.  This is a spec string for deciding which
10600 libraries are included on the command line to the linker.
10602 @item %G
10603 Process the @code{libgcc} spec.  This is a spec string for deciding
10604 which GCC support library is included on the command line to the linker.
10606 @item %S
10607 Process the @code{startfile} spec.  This is a spec for deciding which
10608 object files are the first ones passed to the linker.  Typically
10609 this might be a file named @file{crt0.o}.
10611 @item %E
10612 Process the @code{endfile} spec.  This is a spec string that specifies
10613 the last object files that are passed to the linker.
10615 @item %C
10616 Process the @code{cpp} spec.  This is used to construct the arguments
10617 to be passed to the C preprocessor.
10619 @item %1
10620 Process the @code{cc1} spec.  This is used to construct the options to be
10621 passed to the actual C compiler (@samp{cc1}).
10623 @item %2
10624 Process the @code{cc1plus} spec.  This is used to construct the options to be
10625 passed to the actual C++ compiler (@samp{cc1plus}).
10627 @item %*
10628 Substitute the variable part of a matched option.  See below.
10629 Note that each comma in the substituted string is replaced by
10630 a single space.
10632 @item %<@code{S}
10633 Remove all occurrences of @code{-S} from the command line.  Note---this
10634 command is position dependent.  @samp{%} commands in the spec string
10635 before this one see @code{-S}, @samp{%} commands in the spec string
10636 after this one do not.
10638 @item %:@var{function}(@var{args})
10639 Call the named function @var{function}, passing it @var{args}.
10640 @var{args} is first processed as a nested spec string, then split
10641 into an argument vector in the usual fashion.  The function returns
10642 a string which is processed as if it had appeared literally as part
10643 of the current spec.
10645 The following built-in spec functions are provided:
10647 @table @code
10648 @item @code{getenv}
10649 The @code{getenv} spec function takes two arguments: an environment
10650 variable name and a string.  If the environment variable is not
10651 defined, a fatal error is issued.  Otherwise, the return value is the
10652 value of the environment variable concatenated with the string.  For
10653 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
10655 @smallexample
10656 %:getenv(TOPDIR /include)
10657 @end smallexample
10659 expands to @file{/path/to/top/include}.
10661 @item @code{if-exists}
10662 The @code{if-exists} spec function takes one argument, an absolute
10663 pathname to a file.  If the file exists, @code{if-exists} returns the
10664 pathname.  Here is a small example of its usage:
10666 @smallexample
10667 *startfile:
10668 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
10669 @end smallexample
10671 @item @code{if-exists-else}
10672 The @code{if-exists-else} spec function is similar to the @code{if-exists}
10673 spec function, except that it takes two arguments.  The first argument is
10674 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
10675 returns the pathname.  If it does not exist, it returns the second argument.
10676 This way, @code{if-exists-else} can be used to select one file or another,
10677 based on the existence of the first.  Here is a small example of its usage:
10679 @smallexample
10680 *startfile:
10681 crt0%O%s %:if-exists(crti%O%s) \
10682 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
10683 @end smallexample
10685 @item @code{replace-outfile}
10686 The @code{replace-outfile} spec function takes two arguments.  It looks for the
10687 first argument in the outfiles array and replaces it with the second argument.  Here
10688 is a small example of its usage:
10690 @smallexample
10691 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
10692 @end smallexample
10694 @item @code{remove-outfile}
10695 The @code{remove-outfile} spec function takes one argument.  It looks for the
10696 first argument in the outfiles array and removes it.  Here is a small example
10697 its usage:
10699 @smallexample
10700 %:remove-outfile(-lm)
10701 @end smallexample
10703 @item @code{pass-through-libs}
10704 The @code{pass-through-libs} spec function takes any number of arguments.  It
10705 finds any @option{-l} options and any non-options ending in @file{.a} (which it
10706 assumes are the names of linker input library archive files) and returns a
10707 result containing all the found arguments each prepended by
10708 @option{-plugin-opt=-pass-through=} and joined by spaces.  This list is
10709 intended to be passed to the LTO linker plugin.
10711 @smallexample
10712 %:pass-through-libs(%G %L %G)
10713 @end smallexample
10715 @item @code{print-asm-header}
10716 The @code{print-asm-header} function takes no arguments and simply
10717 prints a banner like:
10719 @smallexample
10720 Assembler options
10721 =================
10723 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
10724 @end smallexample
10726 It is used to separate compiler options from assembler options
10727 in the @option{--target-help} output.
10728 @end table
10730 @item %@{@code{S}@}
10731 Substitutes the @code{-S} switch, if that switch is given to GCC@.
10732 If that switch is not specified, this substitutes nothing.  Note that
10733 the leading dash is omitted when specifying this option, and it is
10734 automatically inserted if the substitution is performed.  Thus the spec
10735 string @samp{%@{foo@}} matches the command-line option @option{-foo}
10736 and outputs the command-line option @option{-foo}.
10738 @item %W@{@code{S}@}
10739 Like %@{@code{S}@} but mark last argument supplied within as a file to be
10740 deleted on failure.
10742 @item %@{@code{S}*@}
10743 Substitutes all the switches specified to GCC whose names start
10744 with @code{-S}, but which also take an argument.  This is used for
10745 switches like @option{-o}, @option{-D}, @option{-I}, etc.
10746 GCC considers @option{-o foo} as being
10747 one switch whose name starts with @samp{o}.  %@{o*@} substitutes this
10748 text, including the space.  Thus two arguments are generated.
10750 @item %@{@code{S}*&@code{T}*@}
10751 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
10752 (the order of @code{S} and @code{T} in the spec is not significant).
10753 There can be any number of ampersand-separated variables; for each the
10754 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
10756 @item %@{@code{S}:@code{X}@}
10757 Substitutes @code{X}, if the @option{-S} switch is given to GCC@.
10759 @item %@{!@code{S}:@code{X}@}
10760 Substitutes @code{X}, if the @option{-S} switch is @emph{not} given to GCC@.
10762 @item %@{@code{S}*:@code{X}@}
10763 Substitutes @code{X} if one or more switches whose names start with
10764 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
10765 once, no matter how many such switches appeared.  However, if @code{%*}
10766 appears somewhere in @code{X}, then @code{X} is substituted once
10767 for each matching switch, with the @code{%*} replaced by the part of
10768 that switch matching the @code{*}.
10770 @item %@{.@code{S}:@code{X}@}
10771 Substitutes @code{X}, if processing a file with suffix @code{S}.
10773 @item %@{!.@code{S}:@code{X}@}
10774 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
10776 @item %@{,@code{S}:@code{X}@}
10777 Substitutes @code{X}, if processing a file for language @code{S}.
10779 @item %@{!,@code{S}:@code{X}@}
10780 Substitutes @code{X}, if not processing a file for language @code{S}.
10782 @item %@{@code{S}|@code{P}:@code{X}@}
10783 Substitutes @code{X} if either @code{-S} or @code{-P} is given to
10784 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
10785 @code{*} sequences as well, although they have a stronger binding than
10786 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
10787 alternatives must be starred, and only the first matching alternative
10788 is substituted.
10790 For example, a spec string like this:
10792 @smallexample
10793 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
10794 @end smallexample
10796 @noindent
10797 outputs the following command-line options from the following input
10798 command-line options:
10800 @smallexample
10801 fred.c        -foo -baz
10802 jim.d         -bar -boggle
10803 -d fred.c     -foo -baz -boggle
10804 -d jim.d      -bar -baz -boggle
10805 @end smallexample
10807 @item %@{S:X; T:Y; :D@}
10809 If @code{S} is given to GCC, substitutes @code{X}; else if @code{T} is
10810 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
10811 be as many clauses as you need.  This may be combined with @code{.},
10812 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
10815 @end table
10817 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
10818 construct may contain other nested @samp{%} constructs or spaces, or
10819 even newlines.  They are processed as usual, as described above.
10820 Trailing white space in @code{X} is ignored.  White space may also
10821 appear anywhere on the left side of the colon in these constructs,
10822 except between @code{.} or @code{*} and the corresponding word.
10824 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
10825 handled specifically in these constructs.  If another value of
10826 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
10827 @option{-W} switch is found later in the command line, the earlier
10828 switch value is ignored, except with @{@code{S}*@} where @code{S} is
10829 just one letter, which passes all matching options.
10831 The character @samp{|} at the beginning of the predicate text is used to
10832 indicate that a command should be piped to the following command, but
10833 only if @option{-pipe} is specified.
10835 It is built into GCC which switches take arguments and which do not.
10836 (You might think it would be useful to generalize this to allow each
10837 compiler's spec to say which switches take arguments.  But this cannot
10838 be done in a consistent fashion.  GCC cannot even decide which input
10839 files have been specified without knowing which switches take arguments,
10840 and it must know which input files to compile in order to tell which
10841 compilers to run).
10843 GCC also knows implicitly that arguments starting in @option{-l} are to be
10844 treated as compiler output files, and passed to the linker in their
10845 proper position among the other output files.
10847 @c man begin OPTIONS
10849 @node Target Options
10850 @section Specifying Target Machine and Compiler Version
10851 @cindex target options
10852 @cindex cross compiling
10853 @cindex specifying machine version
10854 @cindex specifying compiler version and target machine
10855 @cindex compiler version, specifying
10856 @cindex target machine, specifying
10858 The usual way to run GCC is to run the executable called @command{gcc}, or
10859 @command{@var{machine}-gcc} when cross-compiling, or
10860 @command{@var{machine}-gcc-@var{version}} to run a version other than the
10861 one that was installed last.
10863 @node Submodel Options
10864 @section Hardware Models and Configurations
10865 @cindex submodel options
10866 @cindex specifying hardware config
10867 @cindex hardware models and configurations, specifying
10868 @cindex machine dependent options
10870 Each target machine types can have its own
10871 special options, starting with @samp{-m}, to choose among various
10872 hardware models or configurations---for example, 68010 vs 68020,
10873 floating coprocessor or none.  A single installed version of the
10874 compiler can compile for any model or configuration, according to the
10875 options specified.
10877 Some configurations of the compiler also support additional special
10878 options, usually for compatibility with other compilers on the same
10879 platform.
10881 @c This list is ordered alphanumerically by subsection name.
10882 @c It should be the same order and spelling as these options are listed
10883 @c in Machine Dependent Options
10885 @menu
10886 * AArch64 Options::
10887 * Adapteva Epiphany Options::
10888 * ARM Options::
10889 * AVR Options::
10890 * Blackfin Options::
10891 * C6X Options::
10892 * CRIS Options::
10893 * CR16 Options::
10894 * Darwin Options::
10895 * DEC Alpha Options::
10896 * FR30 Options::
10897 * FRV Options::
10898 * GNU/Linux Options::
10899 * H8/300 Options::
10900 * HPPA Options::
10901 * i386 and x86-64 Options::
10902 * i386 and x86-64 Windows Options::
10903 * IA-64 Options::
10904 * LM32 Options::
10905 * M32C Options::
10906 * M32R/D Options::
10907 * M680x0 Options::
10908 * MCore Options::
10909 * MeP Options::
10910 * MicroBlaze Options::
10911 * MIPS Options::
10912 * MMIX Options::
10913 * MN10300 Options::
10914 * Moxie Options::
10915 * PDP-11 Options::
10916 * picoChip Options::
10917 * PowerPC Options::
10918 * RL78 Options::
10919 * RS/6000 and PowerPC Options::
10920 * RX Options::
10921 * S/390 and zSeries Options::
10922 * Score Options::
10923 * SH Options::
10924 * Solaris 2 Options::
10925 * SPARC Options::
10926 * SPU Options::
10927 * System V Options::
10928 * TILE-Gx Options::
10929 * TILEPro Options::
10930 * V850 Options::
10931 * VAX Options::
10932 * VMS Options::
10933 * VxWorks Options::
10934 * x86-64 Options::
10935 * Xstormy16 Options::
10936 * Xtensa Options::
10937 * zSeries Options::
10938 @end menu
10940 @node AArch64 Options
10941 @subsection AArch64 Options
10942 @cindex AArch64 Options
10944 These options are defined for AArch64 implementations:
10946 @table @gcctabopt
10948 @item -mbig-endian
10949 @opindex mbig-endian
10950 Generate big-endian code.  This is the default when GCC is configured for an
10951 @samp{aarch64_be-*-*} target.
10953 @item -mgeneral-regs-only
10954 @opindex mgeneral-regs-only
10955 Generate code which uses only the general registers.
10957 @item -mlittle-endian
10958 @opindex mlittle-endian
10959 Generate little-endian code.  This is the default when GCC is configured for an
10960 @samp{aarch64-*-*} but not an @samp{aarch64_be-*-*} target.
10962 @item -mcmodel=tiny
10963 @opindex mcmodel=tiny
10964 Generate code for the tiny code model.  The program and its statically defined
10965 symbols must be within 1GB of each other.  Pointers are 64 bits.  Programs can
10966 be statically or dynamically linked.  This model is not fully implemented and
10967 mostly treated as @samp{small}.
10969 @item -mcmodel=small
10970 @opindex mcmodel=small
10971 Generate code for the small code model.  The program and its statically defined
10972 symbols must be within 4GB of each other.  Pointers are 64 bits.  Programs can
10973 be statically or dynamically linked.  This is the default code model.
10975 @item -mcmodel=large
10976 @opindex mcmodel=large
10977 Generate code for the large code model.  This makes no assumptions about
10978 addresses and sizes of sections.  Pointers are 64 bits.  Programs can be
10979 statically linked only.
10981 @item -mstrict-align
10982 @opindex mstrict-align
10983 Do not assume that unaligned memory references will be handled by the system.
10985 @item -momit-leaf-frame-pointer
10986 @itemx -mno-omit-leaf-frame-pointer
10987 @opindex momit-leaf-frame-pointer
10988 @opindex mno-omit-leaf-frame-pointer
10989 Omit or keep the frame pointer in leaf functions.  The former behaviour is the
10990 default.
10992 @item -mtls-dialect=desc
10993 @opindex mtls-dialect=desc
10994 Use TLS descriptors as the thread-local storage mechanism for dynamic accesses
10995 of TLS variables.  This is the default.
10997 @item -mtls-dialect=traditional
10998 @opindex mtls-dialect=traditional
10999 Use traditional TLS as the thread-local storage mechanism for dynamic accesses
11000 of TLS variables.
11002 @item -march=@var{name}
11003 @opindex march
11004 Specify the name of the target architecture, optionally suffixed by one or
11005 more feature modifiers.  This option has the form
11006 @option{-march=@var{arch}@r{@{}+@r{[}no@r{]}@var{feature}@r{@}*}}, where the
11007 only value for @var{arch} is @samp{armv8-a}.  The possible values for
11008 @var{feature} are documented in the sub-section below.
11010 Where conflicting feature modifiers are specified, the right-most feature is
11011 used.
11013 GCC uses this name to determine what kind of instructions it can emit when
11014 generating assembly code.  This option can be used in conjunction with or
11015 instead of the @option{-mcpu=} option.
11017 @item -mcpu=@var{name}
11018 @opindex mcpu
11019 Specify the name of the target processor, optionally suffixed by one or more
11020 feature modifiers.  This option has the form
11021 @option{-mcpu=@var{cpu}@r{@{}+@r{[}no@r{]}@var{feature}@r{@}*}}, where the
11022 possible values for @var{cpu} are @samp{generic}, @samp{large}.  The
11023 possible values for @var{feature} are documented in the sub-section
11024 below.
11026 Where conflicting feature modifiers are specified, the right-most feature is
11027 used.
11029 GCC uses this name to determine what kind of instructions it can emit when
11030 generating assembly code.
11032 @item -mtune=@var{name}
11033 @opindex mtune
11034 Specify the name of the processor to tune the performance for.  The code will
11035 be tuned as if the target processor were of the type specified in this option,
11036 but still using instructions compatible with the target processor specified
11037 by a @option{-mcpu=} option.  This option cannot be suffixed by feature
11038 modifiers.
11040 @end table
11042 @subsubsection @option{-march} and @option{-mcpu} feature modifiers
11043 @cindex @option{-march} feature modifiers
11044 @cindex @option{-mcpu} feature modifiers
11045 Feature modifiers used with @option{-march} and @option{-mcpu} can be one
11046 the following:
11048 @table @samp
11049 @item crypto
11050 Enable Crypto extension.  This implies Advanced SIMD is enabled.
11051 @item fp
11052 Enable floating-point instructions.
11053 @item simd
11054 Enable Advanced SIMD instructions.  This implies floating-point instructions
11055 are enabled.  This is the default for all current possible values for options
11056 @option{-march} and @option{-mcpu=}.
11057 @end table
11059 @node Adapteva Epiphany Options
11060 @subsection Adapteva Epiphany Options
11062 These @samp{-m} options are defined for Adapteva Epiphany:
11064 @table @gcctabopt
11065 @item -mhalf-reg-file
11066 @opindex mhalf-reg-file
11067 Don't allocate any register in the range @code{r32}@dots{}@code{r63}.
11068 That allows code to run on hardware variants that lack these registers.
11070 @item -mprefer-short-insn-regs
11071 @opindex mprefer-short-insn-regs
11072 Preferrentially allocate registers that allow short instruction generation.
11073 This can result in increased instruction count, so this may either reduce or
11074 increase overall code size.
11076 @item -mbranch-cost=@var{num}
11077 @opindex mbranch-cost
11078 Set the cost of branches to roughly @var{num} ``simple'' instructions.
11079 This cost is only a heuristic and is not guaranteed to produce
11080 consistent results across releases.
11082 @item -mcmove
11083 @opindex mcmove
11084 Enable the generation of conditional moves.
11086 @item -mnops=@var{num}
11087 @opindex mnops
11088 Emit @var{num} NOPs before every other generated instruction.
11090 @item -mno-soft-cmpsf
11091 @opindex mno-soft-cmpsf
11092 For single-precision floating-point comparisons, emit an @code{fsub} instruction
11093 and test the flags.  This is faster than a software comparison, but can
11094 get incorrect results in the presence of NaNs, or when two different small
11095 numbers are compared such that their difference is calculated as zero.
11096 The default is @option{-msoft-cmpsf}, which uses slower, but IEEE-compliant,
11097 software comparisons.
11099 @item -mstack-offset=@var{num}
11100 @opindex mstack-offset
11101 Set the offset between the top of the stack and the stack pointer.
11102 E.g., a value of 8 means that the eight bytes in the range @code{sp+0@dots{}sp+7}
11103 can be used by leaf functions without stack allocation.
11104 Values other than @samp{8} or @samp{16} are untested and unlikely to work.
11105 Note also that this option changes the ABI; compiling a program with a
11106 different stack offset than the libraries have been compiled with
11107 generally does not work.
11108 This option can be useful if you want to evaluate if a different stack
11109 offset would give you better code, but to actually use a different stack
11110 offset to build working programs, it is recommended to configure the
11111 toolchain with the appropriate @option{--with-stack-offset=@var{num}} option.
11113 @item -mno-round-nearest
11114 @opindex mno-round-nearest
11115 Make the scheduler assume that the rounding mode has been set to
11116 truncating.  The default is @option{-mround-nearest}.
11118 @item -mlong-calls
11119 @opindex mlong-calls
11120 If not otherwise specified by an attribute, assume all calls might be beyond
11121 the offset range of the @code{b} / @code{bl} instructions, and therefore load the
11122 function address into a register before performing a (otherwise direct) call.
11123 This is the default.
11125 @item -mshort-calls
11126 @opindex short-calls
11127 If not otherwise specified by an attribute, assume all direct calls are
11128 in the range of the @code{b} / @code{bl} instructions, so use these instructions
11129 for direct calls.  The default is @option{-mlong-calls}.
11131 @item -msmall16
11132 @opindex msmall16
11133 Assume addresses can be loaded as 16-bit unsigned values.  This does not
11134 apply to function addresses for which @option{-mlong-calls} semantics
11135 are in effect.
11137 @item -mfp-mode=@var{mode}
11138 @opindex mfp-mode
11139 Set the prevailing mode of the floating-point unit.
11140 This determines the floating-point mode that is provided and expected
11141 at function call and return time.  Making this mode match the mode you
11142 predominantly need at function start can make your programs smaller and
11143 faster by avoiding unnecessary mode switches.
11145 @var{mode} can be set to one the following values:
11147 @table @samp
11148 @item caller
11149 Any mode at function entry is valid, and retained or restored when
11150 the function returns, and when it calls other functions.
11151 This mode is useful for compiling libraries or other compilation units
11152 you might want to incorporate into different programs with different
11153 prevailing FPU modes, and the convenience of being able to use a single
11154 object file outweighs the size and speed overhead for any extra
11155 mode switching that might be needed, compared with what would be needed
11156 with a more specific choice of prevailing FPU mode.
11158 @item truncate
11159 This is the mode used for floating-point calculations with
11160 truncating (i.e.@: round towards zero) rounding mode.  That includes
11161 conversion from floating point to integer.
11163 @item round-nearest
11164 This is the mode used for floating-point calculations with
11165 round-to-nearest-or-even rounding mode.
11167 @item int
11168 This is the mode used to perform integer calculations in the FPU, e.g.@:
11169 integer multiply, or integer multiply-and-accumulate.
11170 @end table
11172 The default is @option{-mfp-mode=caller}
11174 @item -mnosplit-lohi
11175 @itemx -mno-postinc
11176 @itemx -mno-postmodify
11177 @opindex mnosplit-lohi
11178 @opindex mno-postinc
11179 @opindex mno-postmodify
11180 Code generation tweaks that disable, respectively, splitting of 32-bit
11181 loads, generation of post-increment addresses, and generation of
11182 post-modify addresses.  The defaults are @option{msplit-lohi},
11183 @option{-mpost-inc}, and @option{-mpost-modify}.
11185 @item -mnovect-double
11186 @opindex mno-vect-double
11187 Change the preferred SIMD mode to SImode.  The default is
11188 @option{-mvect-double}, which uses DImode as preferred SIMD mode.
11190 @item -max-vect-align=@var{num}
11191 @opindex max-vect-align
11192 The maximum alignment for SIMD vector mode types.
11193 @var{num} may be 4 or 8.  The default is 8.
11194 Note that this is an ABI change, even though many library function
11195 interfaces are unaffected if they don't use SIMD vector modes
11196 in places that affect size and/or alignment of relevant types.
11198 @item -msplit-vecmove-early
11199 @opindex msplit-vecmove-early
11200 Split vector moves into single word moves before reload.  In theory this
11201 can give better register allocation, but so far the reverse seems to be
11202 generally the case.
11204 @item -m1reg-@var{reg}
11205 @opindex m1reg-
11206 Specify a register to hold the constant @minus{}1, which makes loading small negative
11207 constants and certain bitmasks faster.
11208 Allowable values for @var{reg} are @samp{r43} and @samp{r63},
11209 which specify use of that register as a fixed register,
11210 and @samp{none}, which means that no register is used for this
11211 purpose.  The default is @option{-m1reg-none}.
11213 @end table
11215 @node ARM Options
11216 @subsection ARM Options
11217 @cindex ARM options
11219 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
11220 architectures:
11222 @table @gcctabopt
11223 @item -mabi=@var{name}
11224 @opindex mabi
11225 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
11226 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
11228 @item -mapcs-frame
11229 @opindex mapcs-frame
11230 Generate a stack frame that is compliant with the ARM Procedure Call
11231 Standard for all functions, even if this is not strictly necessary for
11232 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
11233 with this option causes the stack frames not to be generated for
11234 leaf functions.  The default is @option{-mno-apcs-frame}.
11236 @item -mapcs
11237 @opindex mapcs
11238 This is a synonym for @option{-mapcs-frame}.
11240 @ignore
11241 @c not currently implemented
11242 @item -mapcs-stack-check
11243 @opindex mapcs-stack-check
11244 Generate code to check the amount of stack space available upon entry to
11245 every function (that actually uses some stack space).  If there is
11246 insufficient space available then either the function
11247 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} is
11248 called, depending upon the amount of stack space required.  The runtime
11249 system is required to provide these functions.  The default is
11250 @option{-mno-apcs-stack-check}, since this produces smaller code.
11252 @c not currently implemented
11253 @item -mapcs-float
11254 @opindex mapcs-float
11255 Pass floating-point arguments using the floating-point registers.  This is
11256 one of the variants of the APCS@.  This option is recommended if the
11257 target hardware has a floating-point unit or if a lot of floating-point
11258 arithmetic is going to be performed by the code.  The default is
11259 @option{-mno-apcs-float}, since the size of integer-only code is 
11260 slightly increased if @option{-mapcs-float} is used.
11262 @c not currently implemented
11263 @item -mapcs-reentrant
11264 @opindex mapcs-reentrant
11265 Generate reentrant, position-independent code.  The default is
11266 @option{-mno-apcs-reentrant}.
11267 @end ignore
11269 @item -mthumb-interwork
11270 @opindex mthumb-interwork
11271 Generate code that supports calling between the ARM and Thumb
11272 instruction sets.  Without this option, on pre-v5 architectures, the
11273 two instruction sets cannot be reliably used inside one program.  The
11274 default is @option{-mno-thumb-interwork}, since slightly larger code
11275 is generated when @option{-mthumb-interwork} is specified.  In AAPCS
11276 configurations this option is meaningless.
11278 @item -mno-sched-prolog
11279 @opindex mno-sched-prolog
11280 Prevent the reordering of instructions in the function prologue, or the
11281 merging of those instruction with the instructions in the function's
11282 body.  This means that all functions start with a recognizable set
11283 of instructions (or in fact one of a choice from a small set of
11284 different function prologues), and this information can be used to
11285 locate the start of functions inside an executable piece of code.  The
11286 default is @option{-msched-prolog}.
11288 @item -mfloat-abi=@var{name}
11289 @opindex mfloat-abi
11290 Specifies which floating-point ABI to use.  Permissible values
11291 are: @samp{soft}, @samp{softfp} and @samp{hard}.
11293 Specifying @samp{soft} causes GCC to generate output containing
11294 library calls for floating-point operations.
11295 @samp{softfp} allows the generation of code using hardware floating-point
11296 instructions, but still uses the soft-float calling conventions.
11297 @samp{hard} allows generation of floating-point instructions
11298 and uses FPU-specific calling conventions.
11300 The default depends on the specific target configuration.  Note that
11301 the hard-float and soft-float ABIs are not link-compatible; you must
11302 compile your entire program with the same ABI, and link with a
11303 compatible set of libraries.
11305 @item -mlittle-endian
11306 @opindex mlittle-endian
11307 Generate code for a processor running in little-endian mode.  This is
11308 the default for all standard configurations.
11310 @item -mbig-endian
11311 @opindex mbig-endian
11312 Generate code for a processor running in big-endian mode; the default is
11313 to compile code for a little-endian processor.
11315 @item -mwords-little-endian
11316 @opindex mwords-little-endian
11317 This option only applies when generating code for big-endian processors.
11318 Generate code for a little-endian word order but a big-endian byte
11319 order.  That is, a byte order of the form @samp{32107654}.  Note: this
11320 option should only be used if you require compatibility with code for
11321 big-endian ARM processors generated by versions of the compiler prior to
11322 2.8.  This option is now deprecated.
11324 @item -mcpu=@var{name}
11325 @opindex mcpu
11326 This specifies the name of the target ARM processor.  GCC uses this name
11327 to determine what kind of instructions it can emit when generating
11328 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
11329 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
11330 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
11331 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
11332 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
11333 @samp{arm720},
11334 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
11335 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
11336 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
11337 @samp{strongarm1110},
11338 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
11339 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
11340 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
11341 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
11342 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
11343 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
11344 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
11345 @samp{cortex-a5}, @samp{cortex-a7}, @samp{cortex-a8}, @samp{cortex-a9}, 
11346 @samp{cortex-a15}, @samp{cortex-a53}, @samp{cortex-r4}, @samp{cortex-r4f},
11347 @samp{cortex-r5}, @samp{cortex-r7}, @samp{cortex-m4}, @samp{cortex-m3},
11348 @samp{cortex-m1},
11349 @samp{cortex-m0},
11350 @samp{cortex-m0plus},
11351 @samp{marvell-pj4},
11352 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312},
11353 @samp{fa526}, @samp{fa626},
11354 @samp{fa606te}, @samp{fa626te}, @samp{fmp626}, @samp{fa726te}.
11357 @option{-mcpu=generic-@var{arch}} is also permissible, and is
11358 equivalent to @option{-march=@var{arch} -mtune=generic-@var{arch}}.
11359 See @option{-mtune} for more information.
11361 @option{-mcpu=native} causes the compiler to auto-detect the CPU
11362 of the build computer.  At present, this feature is only supported on
11363 Linux, and not all architectures are recognized.  If the auto-detect is
11364 unsuccessful the option has no effect.
11366 @item -mtune=@var{name}
11367 @opindex mtune
11368 This option is very similar to the @option{-mcpu=} option, except that
11369 instead of specifying the actual target processor type, and hence
11370 restricting which instructions can be used, it specifies that GCC should
11371 tune the performance of the code as if the target were of the type
11372 specified in this option, but still choosing the instructions it
11373 generates based on the CPU specified by a @option{-mcpu=} option.
11374 For some ARM implementations better performance can be obtained by using
11375 this option.
11377 @option{-mtune=generic-@var{arch}} specifies that GCC should tune the
11378 performance for a blend of processors within architecture @var{arch}.
11379 The aim is to generate code that run well on the current most popular
11380 processors, balancing between optimizations that benefit some CPUs in the
11381 range, and avoiding performance pitfalls of other CPUs.  The effects of
11382 this option may change in future GCC versions as CPU models come and go.
11384 @option{-mtune=native} causes the compiler to auto-detect the CPU
11385 of the build computer.  At present, this feature is only supported on
11386 Linux, and not all architectures are recognized.  If the auto-detect is
11387 unsuccessful the option has no effect.
11389 @item -march=@var{name}
11390 @opindex march
11391 This specifies the name of the target ARM architecture.  GCC uses this
11392 name to determine what kind of instructions it can emit when generating
11393 assembly code.  This option can be used in conjunction with or instead
11394 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
11395 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
11396 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
11397 @samp{armv6}, @samp{armv6j},
11398 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
11399 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
11400 @samp{armv8-a},
11401 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
11403 @option{-march=native} causes the compiler to auto-detect the architecture
11404 of the build computer.  At present, this feature is only supported on
11405 Linux, and not all architectures are recognized.  If the auto-detect is
11406 unsuccessful the option has no effect.
11408 @item -mfpu=@var{name}
11409 @opindex mfpu
11410 This specifies what floating-point hardware (or hardware emulation) is
11411 available on the target.  Permissible names are: @samp{vfp}, @samp{vfpv3},
11412 @samp{vfpv3-fp16}, @samp{vfpv3-d16}, @samp{vfpv3-d16-fp16}, @samp{vfpv3xd},
11413 @samp{vfpv3xd-fp16}, @samp{neon}, @samp{neon-fp16}, @samp{vfpv4},
11414 @samp{vfpv4-d16}, @samp{fpv4-sp-d16}, @samp{neon-vfpv4},
11415 @samp{fp-armv8}, @samp{neon-fp-armv8}, and @samp{crypto-neon-fp-armv8}.
11417 If @option{-msoft-float} is specified this specifies the format of
11418 floating-point values.
11420 If the selected floating-point hardware includes the NEON extension
11421 (e.g. @option{-mfpu}=@samp{neon}), note that floating-point
11422 operations are not generated by GCC's auto-vectorization pass unless
11423 @option{-funsafe-math-optimizations} is also specified.  This is
11424 because NEON hardware does not fully implement the IEEE 754 standard for
11425 floating-point arithmetic (in particular denormal values are treated as
11426 zero), so the use of NEON instructions may lead to a loss of precision.
11428 @item -mfp16-format=@var{name}
11429 @opindex mfp16-format
11430 Specify the format of the @code{__fp16} half-precision floating-point type.
11431 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative};
11432 the default is @samp{none}, in which case the @code{__fp16} type is not
11433 defined.  @xref{Half-Precision}, for more information.
11435 @item -mstructure-size-boundary=@var{n}
11436 @opindex mstructure-size-boundary
11437 The sizes of all structures and unions are rounded up to a multiple
11438 of the number of bits set by this option.  Permissible values are 8, 32
11439 and 64.  The default value varies for different toolchains.  For the COFF
11440 targeted toolchain the default value is 8.  A value of 64 is only allowed
11441 if the underlying ABI supports it.
11443 Specifying a larger number can produce faster, more efficient code, but
11444 can also increase the size of the program.  Different values are potentially
11445 incompatible.  Code compiled with one value cannot necessarily expect to
11446 work with code or libraries compiled with another value, if they exchange
11447 information using structures or unions.
11449 @item -mabort-on-noreturn
11450 @opindex mabort-on-noreturn
11451 Generate a call to the function @code{abort} at the end of a
11452 @code{noreturn} function.  It is executed if the function tries to
11453 return.
11455 @item -mlong-calls
11456 @itemx -mno-long-calls
11457 @opindex mlong-calls
11458 @opindex mno-long-calls
11459 Tells the compiler to perform function calls by first loading the
11460 address of the function into a register and then performing a subroutine
11461 call on this register.  This switch is needed if the target function
11462 lies outside of the 64-megabyte addressing range of the offset-based
11463 version of subroutine call instruction.
11465 Even if this switch is enabled, not all function calls are turned
11466 into long calls.  The heuristic is that static functions, functions
11467 that have the @samp{short-call} attribute, functions that are inside
11468 the scope of a @samp{#pragma no_long_calls} directive, and functions whose
11469 definitions have already been compiled within the current compilation
11470 unit are not turned into long calls.  The exceptions to this rule are
11471 that weak function definitions, functions with the @samp{long-call}
11472 attribute or the @samp{section} attribute, and functions that are within
11473 the scope of a @samp{#pragma long_calls} directive are always
11474 turned into long calls.
11476 This feature is not enabled by default.  Specifying
11477 @option{-mno-long-calls} restores the default behavior, as does
11478 placing the function calls within the scope of a @samp{#pragma
11479 long_calls_off} directive.  Note these switches have no effect on how
11480 the compiler generates code to handle function calls via function
11481 pointers.
11483 @item -msingle-pic-base
11484 @opindex msingle-pic-base
11485 Treat the register used for PIC addressing as read-only, rather than
11486 loading it in the prologue for each function.  The runtime system is
11487 responsible for initializing this register with an appropriate value
11488 before execution begins.
11490 @item -mpic-register=@var{reg}
11491 @opindex mpic-register
11492 Specify the register to be used for PIC addressing.  The default is R10
11493 unless stack-checking is enabled, when R9 is used.
11495 @item -mpoke-function-name
11496 @opindex mpoke-function-name
11497 Write the name of each function into the text section, directly
11498 preceding the function prologue.  The generated code is similar to this:
11500 @smallexample
11501      t0
11502          .ascii "arm_poke_function_name", 0
11503          .align
11504      t1
11505          .word 0xff000000 + (t1 - t0)
11506      arm_poke_function_name
11507          mov     ip, sp
11508          stmfd   sp!, @{fp, ip, lr, pc@}
11509          sub     fp, ip, #4
11510 @end smallexample
11512 When performing a stack backtrace, code can inspect the value of
11513 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
11514 location @code{pc - 12} and the top 8 bits are set, then we know that
11515 there is a function name embedded immediately preceding this location
11516 and has length @code{((pc[-3]) & 0xff000000)}.
11518 @item -mthumb
11519 @itemx -marm
11520 @opindex marm
11521 @opindex mthumb
11523 Select between generating code that executes in ARM and Thumb
11524 states.  The default for most configurations is to generate code
11525 that executes in ARM state, but the default can be changed by
11526 configuring GCC with the @option{--with-mode=}@var{state}
11527 configure option.
11529 @item -mtpcs-frame
11530 @opindex mtpcs-frame
11531 Generate a stack frame that is compliant with the Thumb Procedure Call
11532 Standard for all non-leaf functions.  (A leaf function is one that does
11533 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
11535 @item -mtpcs-leaf-frame
11536 @opindex mtpcs-leaf-frame
11537 Generate a stack frame that is compliant with the Thumb Procedure Call
11538 Standard for all leaf functions.  (A leaf function is one that does
11539 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
11541 @item -mcallee-super-interworking
11542 @opindex mcallee-super-interworking
11543 Gives all externally visible functions in the file being compiled an ARM
11544 instruction set header which switches to Thumb mode before executing the
11545 rest of the function.  This allows these functions to be called from
11546 non-interworking code.  This option is not valid in AAPCS configurations
11547 because interworking is enabled by default.
11549 @item -mcaller-super-interworking
11550 @opindex mcaller-super-interworking
11551 Allows calls via function pointers (including virtual functions) to
11552 execute correctly regardless of whether the target code has been
11553 compiled for interworking or not.  There is a small overhead in the cost
11554 of executing a function pointer if this option is enabled.  This option
11555 is not valid in AAPCS configurations because interworking is enabled
11556 by default.
11558 @item -mtp=@var{name}
11559 @opindex mtp
11560 Specify the access model for the thread local storage pointer.  The valid
11561 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
11562 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
11563 (supported in the arm6k architecture), and @option{auto}, which uses the
11564 best available method for the selected processor.  The default setting is
11565 @option{auto}.
11567 @item -mtls-dialect=@var{dialect}
11568 @opindex mtls-dialect
11569 Specify the dialect to use for accessing thread local storage.  Two
11570 @var{dialect}s are supported---@samp{gnu} and @samp{gnu2}.  The
11571 @samp{gnu} dialect selects the original GNU scheme for supporting
11572 local and global dynamic TLS models.  The @samp{gnu2} dialect
11573 selects the GNU descriptor scheme, which provides better performance
11574 for shared libraries.  The GNU descriptor scheme is compatible with
11575 the original scheme, but does require new assembler, linker and
11576 library support.  Initial and local exec TLS models are unaffected by
11577 this option and always use the original scheme.
11579 @item -mword-relocations
11580 @opindex mword-relocations
11581 Only generate absolute relocations on word-sized values (i.e. R_ARM_ABS32).
11582 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
11583 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
11584 is specified.
11586 @item -mfix-cortex-m3-ldrd
11587 @opindex mfix-cortex-m3-ldrd
11588 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
11589 with overlapping destination and base registers are used.  This option avoids
11590 generating these instructions.  This option is enabled by default when
11591 @option{-mcpu=cortex-m3} is specified.
11593 @item -munaligned-access
11594 @itemx -mno-unaligned-access
11595 @opindex munaligned-access
11596 @opindex mno-unaligned-access
11597 Enables (or disables) reading and writing of 16- and 32- bit values
11598 from addresses that are not 16- or 32- bit aligned.  By default
11599 unaligned access is disabled for all pre-ARMv6 and all ARMv6-M
11600 architectures, and enabled for all other architectures.  If unaligned
11601 access is not enabled then words in packed data structures will be
11602 accessed a byte at a time.
11604 The ARM attribute @code{Tag_CPU_unaligned_access} will be set in the
11605 generated object file to either true or false, depending upon the
11606 setting of this option.  If unaligned access is enabled then the
11607 preprocessor symbol @code{__ARM_FEATURE_UNALIGNED} will also be
11608 defined.
11610 @item -mneon-for-64bits
11611 @opindex mneon-for-64bits
11612 Enables using Neon to handle scalar 64-bits operations. This is
11613 disabled by default since the cost of moving data from core registers
11614 to Neon is high.
11615 @end table
11617 @node AVR Options
11618 @subsection AVR Options
11619 @cindex AVR Options
11621 These options are defined for AVR implementations:
11623 @table @gcctabopt
11624 @item -mmcu=@var{mcu}
11625 @opindex mmcu
11626 Specify Atmel AVR instruction set architectures (ISA) or MCU type.
11628 The default for this option is@tie{}@code{avr2}.
11630 GCC supports the following AVR devices and ISAs:
11632 @include avr-mmcu.texi
11634 @item -maccumulate-args
11635 @opindex maccumulate-args
11636 Accumulate outgoing function arguments and acquire/release the needed
11637 stack space for outgoing function arguments once in function
11638 prologue/epilogue.  Without this option, outgoing arguments are pushed
11639 before calling a function and popped afterwards.
11641 Popping the arguments after the function call can be expensive on
11642 AVR so that accumulating the stack space might lead to smaller
11643 executables because arguments need not to be removed from the
11644 stack after such a function call.
11646 This option can lead to reduced code size for functions that perform
11647 several calls to functions that get their arguments on the stack like
11648 calls to printf-like functions.
11650 @item -mbranch-cost=@var{cost}
11651 @opindex mbranch-cost
11652 Set the branch costs for conditional branch instructions to
11653 @var{cost}.  Reasonable values for @var{cost} are small, non-negative
11654 integers. The default branch cost is 0.
11656 @item -mcall-prologues
11657 @opindex mcall-prologues
11658 Functions prologues/epilogues are expanded as calls to appropriate
11659 subroutines.  Code size is smaller.
11661 @item -mint8
11662 @opindex mint8
11663 Assume @code{int} to be 8-bit integer.  This affects the sizes of all types: a
11664 @code{char} is 1 byte, an @code{int} is 1 byte, a @code{long} is 2 bytes,
11665 and @code{long long} is 4 bytes.  Please note that this option does not
11666 conform to the C standards, but it results in smaller code
11667 size.
11669 @item -mno-interrupts
11670 @opindex mno-interrupts
11671 Generated code is not compatible with hardware interrupts.
11672 Code size is smaller.
11674 @item -mrelax
11675 @opindex mrelax
11676 Try to replace @code{CALL} resp.@: @code{JMP} instruction by the shorter
11677 @code{RCALL} resp.@: @code{RJMP} instruction if applicable.
11678 Setting @code{-mrelax} just adds the @code{--relax} option to the
11679 linker command line when the linker is called.
11681 Jump relaxing is performed by the linker because jump offsets are not
11682 known before code is located. Therefore, the assembler code generated by the
11683 compiler is the same, but the instructions in the executable may
11684 differ from instructions in the assembler code.
11686 Relaxing must be turned on if linker stubs are needed, see the
11687 section on @code{EIND} and linker stubs below.
11689 @item -msp8
11690 @opindex msp8
11691 Treat the stack pointer register as an 8-bit register,
11692 i.e.@: assume the high byte of the stack pointer is zero.
11693 In general, you don't need to set this option by hand.
11695 This option is used internally by the compiler to select and
11696 build multilibs for architectures @code{avr2} and @code{avr25}.
11697 These architectures mix devices with and without @code{SPH}.
11698 For any setting other than @code{-mmcu=avr2} or @code{-mmcu=avr25}
11699 the compiler driver will add or remove this option from the compiler
11700 proper's command line, because the compiler then knows if the device
11701 or architecture has an 8-bit stack pointer and thus no @code{SPH}
11702 register or not.
11704 @item -mstrict-X
11705 @opindex mstrict-X
11706 Use address register @code{X} in a way proposed by the hardware.  This means
11707 that @code{X} is only used in indirect, post-increment or
11708 pre-decrement addressing.
11710 Without this option, the @code{X} register may be used in the same way
11711 as @code{Y} or @code{Z} which then is emulated by additional
11712 instructions.  
11713 For example, loading a value with @code{X+const} addressing with a
11714 small non-negative @code{const < 64} to a register @var{Rn} is
11715 performed as
11717 @example
11718 adiw r26, const   ; X += const
11719 ld   @var{Rn}, X        ; @var{Rn} = *X
11720 sbiw r26, const   ; X -= const
11721 @end example
11723 @item -mtiny-stack
11724 @opindex mtiny-stack
11725 Only change the lower 8@tie{}bits of the stack pointer.
11727 @item -Waddr-space-convert
11728 @opindex Waddr-space-convert
11729 Warn about conversions between address spaces in the case where the
11730 resulting address space is not contained in the incoming address space.
11731 @end table
11733 @subsubsection @code{EIND} and Devices with more than 128 Ki Bytes of Flash
11734 @cindex @code{EIND}
11735 Pointers in the implementation are 16@tie{}bits wide.
11736 The address of a function or label is represented as word address so
11737 that indirect jumps and calls can target any code address in the
11738 range of 64@tie{}Ki words.
11740 In order to facilitate indirect jump on devices with more than 128@tie{}Ki
11741 bytes of program memory space, there is a special function register called
11742 @code{EIND} that serves as most significant part of the target address
11743 when @code{EICALL} or @code{EIJMP} instructions are used.
11745 Indirect jumps and calls on these devices are handled as follows by
11746 the compiler and are subject to some limitations:
11748 @itemize @bullet
11750 @item
11751 The compiler never sets @code{EIND}.
11753 @item
11754 The compiler uses @code{EIND} implicitely in @code{EICALL}/@code{EIJMP}
11755 instructions or might read @code{EIND} directly in order to emulate an
11756 indirect call/jump by means of a @code{RET} instruction.
11758 @item
11759 The compiler assumes that @code{EIND} never changes during the startup
11760 code or during the application. In particular, @code{EIND} is not
11761 saved/restored in function or interrupt service routine
11762 prologue/epilogue.
11764 @item
11765 For indirect calls to functions and computed goto, the linker
11766 generates @emph{stubs}. Stubs are jump pads sometimes also called
11767 @emph{trampolines}. Thus, the indirect call/jump jumps to such a stub.
11768 The stub contains a direct jump to the desired address.
11770 @item
11771 Linker relaxation must be turned on so that the linker will generate
11772 the stubs correctly an all situaltion. See the compiler option
11773 @code{-mrelax} and the linler option @code{--relax}.
11774 There are corner cases where the linker is supposed to generate stubs
11775 but aborts without relaxation and without a helpful error message.
11777 @item
11778 The default linker script is arranged for code with @code{EIND = 0}.
11779 If code is supposed to work for a setup with @code{EIND != 0}, a custom
11780 linker script has to be used in order to place the sections whose
11781 name start with @code{.trampolines} into the segment where @code{EIND}
11782 points to.
11784 @item
11785 The startup code from libgcc never sets @code{EIND}.
11786 Notice that startup code is a blend of code from libgcc and AVR-LibC.
11787 For the impact of AVR-LibC on @code{EIND}, see the
11788 @w{@uref{http://nongnu.org/avr-libc/user-manual/,AVR-LibC user manual}}.
11790 @item
11791 It is legitimate for user-specific startup code to set up @code{EIND}
11792 early, for example by means of initialization code located in
11793 section @code{.init3}. Such code runs prior to general startup code
11794 that initializes RAM and calls constructors, but after the bit
11795 of startup code from AVR-LibC that sets @code{EIND} to the segment
11796 where the vector table is located.
11797 @example
11798 #include <avr/io.h>
11800 static void
11801 __attribute__((section(".init3"),naked,used,no_instrument_function))
11802 init3_set_eind (void)
11804   __asm volatile ("ldi r24,pm_hh8(__trampolines_start)\n\t"
11805                   "out %i0,r24" :: "n" (&EIND) : "r24","memory");
11807 @end example
11809 @noindent
11810 The @code{__trampolines_start} symbol is defined in the linker script.
11812 @item
11813 Stubs are generated automatically by the linker if
11814 the following two conditions are met:
11815 @itemize @minus
11817 @item The address of a label is taken by means of the @code{gs} modifier
11818 (short for @emph{generate stubs}) like so:
11819 @example
11820 LDI r24, lo8(gs(@var{func}))
11821 LDI r25, hi8(gs(@var{func}))
11822 @end example
11823 @item The final location of that label is in a code segment
11824 @emph{outside} the segment where the stubs are located.
11825 @end itemize
11827 @item
11828 The compiler emits such @code{gs} modifiers for code labels in the
11829 following situations:
11830 @itemize @minus
11831 @item Taking address of a function or code label.
11832 @item Computed goto.
11833 @item If prologue-save function is used, see @option{-mcall-prologues}
11834 command-line option.
11835 @item Switch/case dispatch tables. If you do not want such dispatch
11836 tables you can specify the @option{-fno-jump-tables} command-line option.
11837 @item C and C++ constructors/destructors called during startup/shutdown.
11838 @item If the tools hit a @code{gs()} modifier explained above.
11839 @end itemize
11841 @item
11842 Jumping to non-symbolic addresses like so is @emph{not} supported:
11844 @example
11845 int main (void)
11847     /* Call function at word address 0x2 */
11848     return ((int(*)(void)) 0x2)();
11850 @end example
11852 Instead, a stub has to be set up, i.e.@: the function has to be called
11853 through a symbol (@code{func_4} in the example):
11855 @example
11856 int main (void)
11858     extern int func_4 (void);
11860     /* Call function at byte address 0x4 */
11861     return func_4();
11863 @end example
11865 and the application be linked with @code{-Wl,--defsym,func_4=0x4}.
11866 Alternatively, @code{func_4} can be defined in the linker script.
11867 @end itemize
11869 @subsubsection Handling of the @code{RAMPD}, @code{RAMPX}, @code{RAMPY} and @code{RAMPZ} Special Function Registers
11870 @cindex @code{RAMPD}
11871 @cindex @code{RAMPX}
11872 @cindex @code{RAMPY}
11873 @cindex @code{RAMPZ}
11874 Some AVR devices support memories larger than the 64@tie{}KiB range
11875 that can be accessed with 16-bit pointers.  To access memory locations
11876 outside this 64@tie{}KiB range, the contentent of a @code{RAMP}
11877 register is used as high part of the address:
11878 The @code{X}, @code{Y}, @code{Z} address register is concatenated
11879 with the @code{RAMPX}, @code{RAMPY}, @code{RAMPZ} special function
11880 register, respectively, to get a wide address. Similarly,
11881 @code{RAMPD} is used together with direct addressing.
11883 @itemize
11884 @item
11885 The startup code initializes the @code{RAMP} special function
11886 registers with zero.
11888 @item
11889 If a @ref{AVR Named Address Spaces,named address space} other than
11890 generic or @code{__flash} is used, then @code{RAMPZ} is set
11891 as needed before the operation.
11893 @item
11894 If the device supports RAM larger than 64@tie{KiB} and the compiler
11895 needs to change @code{RAMPZ} to accomplish an operation, @code{RAMPZ}
11896 is reset to zero after the operation.
11898 @item
11899 If the device comes with a specific @code{RAMP} register, the ISR
11900 prologue/epilogue saves/restores that SFR and initializes it with
11901 zero in case the ISR code might (implicitly) use it.
11903 @item
11904 RAM larger than 64@tie{KiB} is not supported by GCC for AVR targets.
11905 If you use inline assembler to read from locations outside the
11906 16-bit address range and change one of the @code{RAMP} registers,
11907 you must reset it to zero after the access.
11909 @end itemize
11911 @subsubsection AVR Built-in Macros
11913 GCC defines several built-in macros so that the user code can test
11914 for the presence or absence of features.  Almost any of the following
11915 built-in macros are deduced from device capabilities and thus
11916 triggered by the @code{-mmcu=} command-line option.
11918 For even more AVR-specific built-in macros see
11919 @ref{AVR Named Address Spaces} and @ref{AVR Built-in Functions}.
11921 @table @code
11923 @item __AVR_ARCH__
11924 Build-in macro that resolves to a decimal number that identifies the
11925 architecture and depends on the @code{-mmcu=@var{mcu}} option.
11926 Possible values are:
11928 @code{2}, @code{25}, @code{3}, @code{31}, @code{35},
11929 @code{4}, @code{5}, @code{51}, @code{6}, @code{102}, @code{104},
11930 @code{105}, @code{106}, @code{107}
11932 for @var{mcu}=@code{avr2}, @code{avr25}, @code{avr3},
11933 @code{avr31}, @code{avr35}, @code{avr4}, @code{avr5}, @code{avr51},
11934 @code{avr6}, @code{avrxmega2}, @code{avrxmega4}, @code{avrxmega5},
11935 @code{avrxmega6}, @code{avrxmega7}, respectively.
11936 If @var{mcu} specifies a device, this built-in macro is set
11937 accordingly. For example, with @code{-mmcu=atmega8} the macro will be
11938 defined to @code{4}.
11940 @item __AVR_@var{Device}__
11941 Setting @code{-mmcu=@var{device}} defines this built-in macro which reflects
11942 the device's name. For example, @code{-mmcu=atmega8} defines the
11943 built-in macro @code{__AVR_ATmega8__}, @code{-mmcu=attiny261a} defines
11944 @code{__AVR_ATtiny261A__}, etc.
11946 The built-in macros' names follow
11947 the scheme @code{__AVR_@var{Device}__} where @var{Device} is
11948 the device name as from the AVR user manual. The difference between
11949 @var{Device} in the built-in macro and @var{device} in
11950 @code{-mmcu=@var{device}} is that the latter is always lowercase.
11952 If @var{device} is not a device but only a core architecture like
11953 @code{avr51}, this macro will not be defined.
11955 @item __AVR_XMEGA__
11956 The device / architecture belongs to the XMEGA family of devices.
11958 @item __AVR_HAVE_ELPM__
11959 The device has the the @code{ELPM} instruction.
11961 @item __AVR_HAVE_ELPMX__
11962 The device has the @code{ELPM R@var{n},Z} and @code{ELPM
11963 R@var{n},Z+} instructions.
11965 @item __AVR_HAVE_MOVW__
11966 The device has the @code{MOVW} instruction to perform 16-bit
11967 register-register moves.
11969 @item __AVR_HAVE_LPMX__
11970 The device has the @code{LPM R@var{n},Z} and
11971 @code{LPM R@var{n},Z+} instructions.
11973 @item __AVR_HAVE_MUL__
11974 The device has a hardware multiplier. 
11976 @item __AVR_HAVE_JMP_CALL__
11977 The device has the @code{JMP} and @code{CALL} instructions.
11978 This is the case for devices with at least 16@tie{}KiB of program
11979 memory.
11981 @item __AVR_HAVE_EIJMP_EICALL__
11982 @itemx __AVR_3_BYTE_PC__
11983 The device has the @code{EIJMP} and @code{EICALL} instructions.
11984 This is the case for devices with more than 128@tie{}KiB of program memory.
11985 This also means that the program counter
11986 (PC) is 3@tie{}bytes wide.
11988 @item __AVR_2_BYTE_PC__
11989 The program counter (PC) is 2@tie{}bytes wide. This is the case for devices
11990 with up to 128@tie{}KiB of program memory.
11992 @item __AVR_HAVE_8BIT_SP__
11993 @itemx __AVR_HAVE_16BIT_SP__
11994 The stack pointer (SP) register is treated as 8-bit respectively
11995 16-bit register by the compiler.
11996 The definition of these macros is affected by @code{-mtiny-stack}.
11998 @item __AVR_HAVE_SPH__
11999 @itemx __AVR_SP8__
12000 The device has the SPH (high part of stack pointer) special function
12001 register or has an 8-bit stack pointer, respectively.
12002 The definition of these macros is affected by @code{-mmcu=} and
12003 in the cases of @code{-mmcu=avr2} and @code{-mmcu=avr25} also
12004 by @code{-msp8}.
12006 @item __AVR_HAVE_RAMPD__
12007 @itemx __AVR_HAVE_RAMPX__
12008 @itemx __AVR_HAVE_RAMPY__
12009 @itemx __AVR_HAVE_RAMPZ__
12010 The device has the @code{RAMPD}, @code{RAMPX}, @code{RAMPY},
12011 @code{RAMPZ} special function register, respectively.
12013 @item __NO_INTERRUPTS__
12014 This macro reflects the @code{-mno-interrupts} command line option.
12016 @item __AVR_ERRATA_SKIP__
12017 @itemx __AVR_ERRATA_SKIP_JMP_CALL__
12018 Some AVR devices (AT90S8515, ATmega103) must not skip 32-bit
12019 instructions because of a hardware erratum.  Skip instructions are
12020 @code{SBRS}, @code{SBRC}, @code{SBIS}, @code{SBIC} and @code{CPSE}.
12021 The second macro is only defined if @code{__AVR_HAVE_JMP_CALL__} is also
12022 set.
12024 @item __AVR_SFR_OFFSET__=@var{offset}
12025 Instructions that can address I/O special function registers directly
12026 like @code{IN}, @code{OUT}, @code{SBI}, etc.@: may use a different
12027 address as if addressed by an instruction to access RAM like @code{LD}
12028 or @code{STS}. This offset depends on the device architecture and has
12029 to be subtracted from the RAM address in order to get the
12030 respective I/O@tie{}address.
12032 @item __WITH_AVRLIBC__
12033 The compiler is configured to be used together with AVR-Libc.
12034 See the @code{--with-avrlibc} configure option.
12036 @end table
12038 @node Blackfin Options
12039 @subsection Blackfin Options
12040 @cindex Blackfin Options
12042 @table @gcctabopt
12043 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
12044 @opindex mcpu=
12045 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
12046 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
12047 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
12048 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
12049 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
12050 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
12051 @samp{bf542m}, @samp{bf544m}, @samp{bf547m}, @samp{bf548m}, @samp{bf549m},
12052 @samp{bf561}, @samp{bf592}.
12054 The optional @var{sirevision} specifies the silicon revision of the target
12055 Blackfin processor.  Any workarounds available for the targeted silicon revision
12056 are enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
12057 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
12058 are enabled.  The @code{__SILICON_REVISION__} macro is defined to two
12059 hexadecimal digits representing the major and minor numbers in the silicon
12060 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
12061 is not defined.  If @var{sirevision} is @samp{any}, the
12062 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
12063 If this optional @var{sirevision} is not used, GCC assumes the latest known
12064 silicon revision of the targeted Blackfin processor.
12066 GCC defines a preprocessor macro for the specified @var{cpu}.
12067 For the @samp{bfin-elf} toolchain, this option causes the hardware BSP
12068 provided by libgloss to be linked in if @option{-msim} is not given.
12070 Without this option, @samp{bf532} is used as the processor by default.
12072 Note that support for @samp{bf561} is incomplete.  For @samp{bf561},
12073 only the preprocessor macro is defined.
12075 @item -msim
12076 @opindex msim
12077 Specifies that the program will be run on the simulator.  This causes
12078 the simulator BSP provided by libgloss to be linked in.  This option
12079 has effect only for @samp{bfin-elf} toolchain.
12080 Certain other options, such as @option{-mid-shared-library} and
12081 @option{-mfdpic}, imply @option{-msim}.
12083 @item -momit-leaf-frame-pointer
12084 @opindex momit-leaf-frame-pointer
12085 Don't keep the frame pointer in a register for leaf functions.  This
12086 avoids the instructions to save, set up and restore frame pointers and
12087 makes an extra register available in leaf functions.  The option
12088 @option{-fomit-frame-pointer} removes the frame pointer for all functions,
12089 which might make debugging harder.
12091 @item -mspecld-anomaly
12092 @opindex mspecld-anomaly
12093 When enabled, the compiler ensures that the generated code does not
12094 contain speculative loads after jump instructions. If this option is used,
12095 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
12097 @item -mno-specld-anomaly
12098 @opindex mno-specld-anomaly
12099 Don't generate extra code to prevent speculative loads from occurring.
12101 @item -mcsync-anomaly
12102 @opindex mcsync-anomaly
12103 When enabled, the compiler ensures that the generated code does not
12104 contain CSYNC or SSYNC instructions too soon after conditional branches.
12105 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
12107 @item -mno-csync-anomaly
12108 @opindex mno-csync-anomaly
12109 Don't generate extra code to prevent CSYNC or SSYNC instructions from
12110 occurring too soon after a conditional branch.
12112 @item -mlow-64k
12113 @opindex mlow-64k
12114 When enabled, the compiler is free to take advantage of the knowledge that
12115 the entire program fits into the low 64k of memory.
12117 @item -mno-low-64k
12118 @opindex mno-low-64k
12119 Assume that the program is arbitrarily large.  This is the default.
12121 @item -mstack-check-l1
12122 @opindex mstack-check-l1
12123 Do stack checking using information placed into L1 scratchpad memory by the
12124 uClinux kernel.
12126 @item -mid-shared-library
12127 @opindex mid-shared-library
12128 Generate code that supports shared libraries via the library ID method.
12129 This allows for execute in place and shared libraries in an environment
12130 without virtual memory management.  This option implies @option{-fPIC}.
12131 With a @samp{bfin-elf} target, this option implies @option{-msim}.
12133 @item -mno-id-shared-library
12134 @opindex mno-id-shared-library
12135 Generate code that doesn't assume ID-based shared libraries are being used.
12136 This is the default.
12138 @item -mleaf-id-shared-library
12139 @opindex mleaf-id-shared-library
12140 Generate code that supports shared libraries via the library ID method,
12141 but assumes that this library or executable won't link against any other
12142 ID shared libraries.  That allows the compiler to use faster code for jumps
12143 and calls.
12145 @item -mno-leaf-id-shared-library
12146 @opindex mno-leaf-id-shared-library
12147 Do not assume that the code being compiled won't link against any ID shared
12148 libraries.  Slower code is generated for jump and call insns.
12150 @item -mshared-library-id=n
12151 @opindex mshared-library-id
12152 Specifies the identification number of the ID-based shared library being
12153 compiled.  Specifying a value of 0 generates more compact code; specifying
12154 other values forces the allocation of that number to the current
12155 library but is no more space- or time-efficient than omitting this option.
12157 @item -msep-data
12158 @opindex msep-data
12159 Generate code that allows the data segment to be located in a different
12160 area of memory from the text segment.  This allows for execute in place in
12161 an environment without virtual memory management by eliminating relocations
12162 against the text section.
12164 @item -mno-sep-data
12165 @opindex mno-sep-data
12166 Generate code that assumes that the data segment follows the text segment.
12167 This is the default.
12169 @item -mlong-calls
12170 @itemx -mno-long-calls
12171 @opindex mlong-calls
12172 @opindex mno-long-calls
12173 Tells the compiler to perform function calls by first loading the
12174 address of the function into a register and then performing a subroutine
12175 call on this register.  This switch is needed if the target function
12176 lies outside of the 24-bit addressing range of the offset-based
12177 version of subroutine call instruction.
12179 This feature is not enabled by default.  Specifying
12180 @option{-mno-long-calls} restores the default behavior.  Note these
12181 switches have no effect on how the compiler generates code to handle
12182 function calls via function pointers.
12184 @item -mfast-fp
12185 @opindex mfast-fp
12186 Link with the fast floating-point library. This library relaxes some of
12187 the IEEE floating-point standard's rules for checking inputs against
12188 Not-a-Number (NAN), in the interest of performance.
12190 @item -minline-plt
12191 @opindex minline-plt
12192 Enable inlining of PLT entries in function calls to functions that are
12193 not known to bind locally.  It has no effect without @option{-mfdpic}.
12195 @item -mmulticore
12196 @opindex mmulticore
12197 Build a standalone application for multicore Blackfin processors. 
12198 This option causes proper start files and link scripts supporting 
12199 multicore to be used, and defines the macro @code{__BFIN_MULTICORE}. 
12200 It can only be used with @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. 
12202 This option can be used with @option{-mcorea} or @option{-mcoreb}, which
12203 selects the one-application-per-core programming model.  Without
12204 @option{-mcorea} or @option{-mcoreb}, the single-application/dual-core
12205 programming model is used. In this model, the main function of Core B
12206 should be named as @code{coreb_main}.
12208 If this option is not used, the single-core application programming
12209 model is used.
12211 @item -mcorea
12212 @opindex mcorea
12213 Build a standalone application for Core A of BF561 when using
12214 the one-application-per-core programming model. Proper start files
12215 and link scripts are used to support Core A, and the macro
12216 @code{__BFIN_COREA} is defined.
12217 This option can only be used in conjunction with @option{-mmulticore}.
12219 @item -mcoreb
12220 @opindex mcoreb
12221 Build a standalone application for Core B of BF561 when using
12222 the one-application-per-core programming model. Proper start files
12223 and link scripts are used to support Core B, and the macro
12224 @code{__BFIN_COREB} is defined. When this option is used, @code{coreb_main}
12225 should be used instead of @code{main}. 
12226 This option can only be used in conjunction with @option{-mmulticore}.
12228 @item -msdram
12229 @opindex msdram
12230 Build a standalone application for SDRAM. Proper start files and
12231 link scripts are used to put the application into SDRAM, and the macro
12232 @code{__BFIN_SDRAM} is defined.
12233 The loader should initialize SDRAM before loading the application.
12235 @item -micplb
12236 @opindex micplb
12237 Assume that ICPLBs are enabled at run time.  This has an effect on certain
12238 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
12239 are enabled; for standalone applications the default is off.
12240 @end table
12242 @node C6X Options
12243 @subsection C6X Options
12244 @cindex C6X Options
12246 @table @gcctabopt
12247 @item -march=@var{name}
12248 @opindex march
12249 This specifies the name of the target architecture.  GCC uses this
12250 name to determine what kind of instructions it can emit when generating
12251 assembly code.  Permissible names are: @samp{c62x},
12252 @samp{c64x}, @samp{c64x+}, @samp{c67x}, @samp{c67x+}, @samp{c674x}.
12254 @item -mbig-endian
12255 @opindex mbig-endian
12256 Generate code for a big-endian target.
12258 @item -mlittle-endian
12259 @opindex mlittle-endian
12260 Generate code for a little-endian target.  This is the default.
12262 @item -msim
12263 @opindex msim
12264 Choose startup files and linker script suitable for the simulator.
12266 @item -msdata=default
12267 @opindex msdata=default
12268 Put small global and static data in the @samp{.neardata} section,
12269 which is pointed to by register @code{B14}.  Put small uninitialized
12270 global and static data in the @samp{.bss} section, which is adjacent
12271 to the @samp{.neardata} section.  Put small read-only data into the
12272 @samp{.rodata} section.  The corresponding sections used for large
12273 pieces of data are @samp{.fardata}, @samp{.far} and @samp{.const}.
12275 @item -msdata=all
12276 @opindex msdata=all
12277 Put all data, not just small objects, into the sections reserved for
12278 small data, and use addressing relative to the @code{B14} register to
12279 access them.
12281 @item -msdata=none
12282 @opindex msdata=none
12283 Make no use of the sections reserved for small data, and use absolute
12284 addresses to access all data.  Put all initialized global and static
12285 data in the @samp{.fardata} section, and all uninitialized data in the
12286 @samp{.far} section.  Put all constant data into the @samp{.const}
12287 section.
12288 @end table
12290 @node CRIS Options
12291 @subsection CRIS Options
12292 @cindex CRIS Options
12294 These options are defined specifically for the CRIS ports.
12296 @table @gcctabopt
12297 @item -march=@var{architecture-type}
12298 @itemx -mcpu=@var{architecture-type}
12299 @opindex march
12300 @opindex mcpu
12301 Generate code for the specified architecture.  The choices for
12302 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
12303 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
12304 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
12305 @samp{v10}.
12307 @item -mtune=@var{architecture-type}
12308 @opindex mtune
12309 Tune to @var{architecture-type} everything applicable about the generated
12310 code, except for the ABI and the set of available instructions.  The
12311 choices for @var{architecture-type} are the same as for
12312 @option{-march=@var{architecture-type}}.
12314 @item -mmax-stack-frame=@var{n}
12315 @opindex mmax-stack-frame
12316 Warn when the stack frame of a function exceeds @var{n} bytes.
12318 @item -metrax4
12319 @itemx -metrax100
12320 @opindex metrax4
12321 @opindex metrax100
12322 The options @option{-metrax4} and @option{-metrax100} are synonyms for
12323 @option{-march=v3} and @option{-march=v8} respectively.
12325 @item -mmul-bug-workaround
12326 @itemx -mno-mul-bug-workaround
12327 @opindex mmul-bug-workaround
12328 @opindex mno-mul-bug-workaround
12329 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
12330 models where it applies.  This option is active by default.
12332 @item -mpdebug
12333 @opindex mpdebug
12334 Enable CRIS-specific verbose debug-related information in the assembly
12335 code.  This option also has the effect of turning off the @samp{#NO_APP}
12336 formatted-code indicator to the assembler at the beginning of the
12337 assembly file.
12339 @item -mcc-init
12340 @opindex mcc-init
12341 Do not use condition-code results from previous instruction; always emit
12342 compare and test instructions before use of condition codes.
12344 @item -mno-side-effects
12345 @opindex mno-side-effects
12346 Do not emit instructions with side effects in addressing modes other than
12347 post-increment.
12349 @item -mstack-align
12350 @itemx -mno-stack-align
12351 @itemx -mdata-align
12352 @itemx -mno-data-align
12353 @itemx -mconst-align
12354 @itemx -mno-const-align
12355 @opindex mstack-align
12356 @opindex mno-stack-align
12357 @opindex mdata-align
12358 @opindex mno-data-align
12359 @opindex mconst-align
12360 @opindex mno-const-align
12361 These options (@samp{no-} options) arrange (eliminate arrangements) for the
12362 stack frame, individual data and constants to be aligned for the maximum
12363 single data access size for the chosen CPU model.  The default is to
12364 arrange for 32-bit alignment.  ABI details such as structure layout are
12365 not affected by these options.
12367 @item -m32-bit
12368 @itemx -m16-bit
12369 @itemx -m8-bit
12370 @opindex m32-bit
12371 @opindex m16-bit
12372 @opindex m8-bit
12373 Similar to the stack- data- and const-align options above, these options
12374 arrange for stack frame, writable data and constants to all be 32-bit,
12375 16-bit or 8-bit aligned.  The default is 32-bit alignment.
12377 @item -mno-prologue-epilogue
12378 @itemx -mprologue-epilogue
12379 @opindex mno-prologue-epilogue
12380 @opindex mprologue-epilogue
12381 With @option{-mno-prologue-epilogue}, the normal function prologue and
12382 epilogue which set up the stack frame are omitted and no return
12383 instructions or return sequences are generated in the code.  Use this
12384 option only together with visual inspection of the compiled code: no
12385 warnings or errors are generated when call-saved registers must be saved,
12386 or storage for local variables needs to be allocated.
12388 @item -mno-gotplt
12389 @itemx -mgotplt
12390 @opindex mno-gotplt
12391 @opindex mgotplt
12392 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
12393 instruction sequences that load addresses for functions from the PLT part
12394 of the GOT rather than (traditional on other architectures) calls to the
12395 PLT@.  The default is @option{-mgotplt}.
12397 @item -melf
12398 @opindex melf
12399 Legacy no-op option only recognized with the cris-axis-elf and
12400 cris-axis-linux-gnu targets.
12402 @item -mlinux
12403 @opindex mlinux
12404 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
12406 @item -sim
12407 @opindex sim
12408 This option, recognized for the cris-axis-elf, arranges
12409 to link with input-output functions from a simulator library.  Code,
12410 initialized data and zero-initialized data are allocated consecutively.
12412 @item -sim2
12413 @opindex sim2
12414 Like @option{-sim}, but pass linker options to locate initialized data at
12415 0x40000000 and zero-initialized data at 0x80000000.
12416 @end table
12418 @node CR16 Options
12419 @subsection CR16 Options
12420 @cindex CR16 Options
12422 These options are defined specifically for the CR16 ports.
12424 @table @gcctabopt
12426 @item -mmac
12427 @opindex mmac
12428 Enable the use of multiply-accumulate instructions. Disabled by default.
12430 @item -mcr16cplus
12431 @itemx -mcr16c
12432 @opindex mcr16cplus
12433 @opindex mcr16c
12434 Generate code for CR16C or CR16C+ architecture. CR16C+ architecture 
12435 is default.
12437 @item -msim
12438 @opindex msim
12439 Links the library libsim.a which is in compatible with simulator. Applicable
12440 to ELF compiler only.
12442 @item -mint32
12443 @opindex mint32
12444 Choose integer type as 32-bit wide.
12446 @item -mbit-ops
12447 @opindex mbit-ops
12448 Generates @code{sbit}/@code{cbit} instructions for bit manipulations.
12450 @item -mdata-model=@var{model}
12451 @opindex mdata-model
12452 Choose a data model. The choices for @var{model} are @samp{near},
12453 @samp{far} or @samp{medium}. @samp{medium} is default.
12454 However, @samp{far} is not valid with @option{-mcr16c}, as the
12455 CR16C architecture does not support the far data model.
12456 @end table
12458 @node Darwin Options
12459 @subsection Darwin Options
12460 @cindex Darwin options
12462 These options are defined for all architectures running the Darwin operating
12463 system.
12465 FSF GCC on Darwin does not create ``fat'' object files; it creates
12466 an object file for the single architecture that GCC was built to
12467 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
12468 @option{-arch} options are used; it does so by running the compiler or
12469 linker multiple times and joining the results together with
12470 @file{lipo}.
12472 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
12473 @samp{i686}) is determined by the flags that specify the ISA
12474 that GCC is targeting, like @option{-mcpu} or @option{-march}.  The
12475 @option{-force_cpusubtype_ALL} option can be used to override this.
12477 The Darwin tools vary in their behavior when presented with an ISA
12478 mismatch.  The assembler, @file{as}, only permits instructions to
12479 be used that are valid for the subtype of the file it is generating,
12480 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
12481 The linker for shared libraries, @file{/usr/bin/libtool}, fails
12482 and prints an error if asked to create a shared library with a less
12483 restrictive subtype than its input files (for instance, trying to put
12484 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
12485 for executables, @command{ld}, quietly gives the executable the most
12486 restrictive subtype of any of its input files.
12488 @table @gcctabopt
12489 @item -F@var{dir}
12490 @opindex F
12491 Add the framework directory @var{dir} to the head of the list of
12492 directories to be searched for header files.  These directories are
12493 interleaved with those specified by @option{-I} options and are
12494 scanned in a left-to-right order.
12496 A framework directory is a directory with frameworks in it.  A
12497 framework is a directory with a @file{Headers} and/or
12498 @file{PrivateHeaders} directory contained directly in it that ends
12499 in @file{.framework}.  The name of a framework is the name of this
12500 directory excluding the @file{.framework}.  Headers associated with
12501 the framework are found in one of those two directories, with
12502 @file{Headers} being searched first.  A subframework is a framework
12503 directory that is in a framework's @file{Frameworks} directory.
12504 Includes of subframework headers can only appear in a header of a
12505 framework that contains the subframework, or in a sibling subframework
12506 header.  Two subframeworks are siblings if they occur in the same
12507 framework.  A subframework should not have the same name as a
12508 framework; a warning is issued if this is violated.  Currently a
12509 subframework cannot have subframeworks; in the future, the mechanism
12510 may be extended to support this.  The standard frameworks can be found
12511 in @file{/System/Library/Frameworks} and
12512 @file{/Library/Frameworks}.  An example include looks like
12513 @code{#include <Framework/header.h>}, where @file{Framework} denotes
12514 the name of the framework and @file{header.h} is found in the
12515 @file{PrivateHeaders} or @file{Headers} directory.
12517 @item -iframework@var{dir}
12518 @opindex iframework
12519 Like @option{-F} except the directory is a treated as a system
12520 directory.  The main difference between this @option{-iframework} and
12521 @option{-F} is that with @option{-iframework} the compiler does not
12522 warn about constructs contained within header files found via
12523 @var{dir}.  This option is valid only for the C family of languages.
12525 @item -gused
12526 @opindex gused
12527 Emit debugging information for symbols that are used.  For stabs
12528 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
12529 This is by default ON@.
12531 @item -gfull
12532 @opindex gfull
12533 Emit debugging information for all symbols and types.
12535 @item -mmacosx-version-min=@var{version}
12536 The earliest version of MacOS X that this executable will run on
12537 is @var{version}.  Typical values of @var{version} include @code{10.1},
12538 @code{10.2}, and @code{10.3.9}.
12540 If the compiler was built to use the system's headers by default,
12541 then the default for this option is the system version on which the
12542 compiler is running, otherwise the default is to make choices that
12543 are compatible with as many systems and code bases as possible.
12545 @item -mkernel
12546 @opindex mkernel
12547 Enable kernel development mode.  The @option{-mkernel} option sets
12548 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
12549 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
12550 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
12551 applicable.  This mode also sets @option{-mno-altivec},
12552 @option{-msoft-float}, @option{-fno-builtin} and
12553 @option{-mlong-branch} for PowerPC targets.
12555 @item -mone-byte-bool
12556 @opindex mone-byte-bool
12557 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
12558 By default @samp{sizeof(bool)} is @samp{4} when compiling for
12559 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
12560 option has no effect on x86.
12562 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
12563 to generate code that is not binary compatible with code generated
12564 without that switch.  Using this switch may require recompiling all
12565 other modules in a program, including system libraries.  Use this
12566 switch to conform to a non-default data model.
12568 @item -mfix-and-continue
12569 @itemx -ffix-and-continue
12570 @itemx -findirect-data
12571 @opindex mfix-and-continue
12572 @opindex ffix-and-continue
12573 @opindex findirect-data
12574 Generate code suitable for fast turnaround development, such as to
12575 allow GDB to dynamically load @code{.o} files into already-running
12576 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
12577 are provided for backwards compatibility.
12579 @item -all_load
12580 @opindex all_load
12581 Loads all members of static archive libraries.
12582 See man ld(1) for more information.
12584 @item -arch_errors_fatal
12585 @opindex arch_errors_fatal
12586 Cause the errors having to do with files that have the wrong architecture
12587 to be fatal.
12589 @item -bind_at_load
12590 @opindex bind_at_load
12591 Causes the output file to be marked such that the dynamic linker will
12592 bind all undefined references when the file is loaded or launched.
12594 @item -bundle
12595 @opindex bundle
12596 Produce a Mach-o bundle format file.
12597 See man ld(1) for more information.
12599 @item -bundle_loader @var{executable}
12600 @opindex bundle_loader
12601 This option specifies the @var{executable} that will load the build
12602 output file being linked.  See man ld(1) for more information.
12604 @item -dynamiclib
12605 @opindex dynamiclib
12606 When passed this option, GCC produces a dynamic library instead of
12607 an executable when linking, using the Darwin @file{libtool} command.
12609 @item -force_cpusubtype_ALL
12610 @opindex force_cpusubtype_ALL
12611 This causes GCC's output file to have the @var{ALL} subtype, instead of
12612 one controlled by the @option{-mcpu} or @option{-march} option.
12614 @item -allowable_client  @var{client_name}
12615 @itemx -client_name
12616 @itemx -compatibility_version
12617 @itemx -current_version
12618 @itemx -dead_strip
12619 @itemx -dependency-file
12620 @itemx -dylib_file
12621 @itemx -dylinker_install_name
12622 @itemx -dynamic
12623 @itemx -exported_symbols_list
12624 @itemx -filelist
12625 @need 800
12626 @itemx -flat_namespace
12627 @itemx -force_flat_namespace
12628 @itemx -headerpad_max_install_names
12629 @itemx -image_base
12630 @itemx -init
12631 @itemx -install_name
12632 @itemx -keep_private_externs
12633 @itemx -multi_module
12634 @itemx -multiply_defined
12635 @itemx -multiply_defined_unused
12636 @need 800
12637 @itemx -noall_load
12638 @itemx -no_dead_strip_inits_and_terms
12639 @itemx -nofixprebinding
12640 @itemx -nomultidefs
12641 @itemx -noprebind
12642 @itemx -noseglinkedit
12643 @itemx -pagezero_size
12644 @itemx -prebind
12645 @itemx -prebind_all_twolevel_modules
12646 @itemx -private_bundle
12647 @need 800
12648 @itemx -read_only_relocs
12649 @itemx -sectalign
12650 @itemx -sectobjectsymbols
12651 @itemx -whyload
12652 @itemx -seg1addr
12653 @itemx -sectcreate
12654 @itemx -sectobjectsymbols
12655 @itemx -sectorder
12656 @itemx -segaddr
12657 @itemx -segs_read_only_addr
12658 @need 800
12659 @itemx -segs_read_write_addr
12660 @itemx -seg_addr_table
12661 @itemx -seg_addr_table_filename
12662 @itemx -seglinkedit
12663 @itemx -segprot
12664 @itemx -segs_read_only_addr
12665 @itemx -segs_read_write_addr
12666 @itemx -single_module
12667 @itemx -static
12668 @itemx -sub_library
12669 @need 800
12670 @itemx -sub_umbrella
12671 @itemx -twolevel_namespace
12672 @itemx -umbrella
12673 @itemx -undefined
12674 @itemx -unexported_symbols_list
12675 @itemx -weak_reference_mismatches
12676 @itemx -whatsloaded
12677 @opindex allowable_client
12678 @opindex client_name
12679 @opindex compatibility_version
12680 @opindex current_version
12681 @opindex dead_strip
12682 @opindex dependency-file
12683 @opindex dylib_file
12684 @opindex dylinker_install_name
12685 @opindex dynamic
12686 @opindex exported_symbols_list
12687 @opindex filelist
12688 @opindex flat_namespace
12689 @opindex force_flat_namespace
12690 @opindex headerpad_max_install_names
12691 @opindex image_base
12692 @opindex init
12693 @opindex install_name
12694 @opindex keep_private_externs
12695 @opindex multi_module
12696 @opindex multiply_defined
12697 @opindex multiply_defined_unused
12698 @opindex noall_load
12699 @opindex no_dead_strip_inits_and_terms
12700 @opindex nofixprebinding
12701 @opindex nomultidefs
12702 @opindex noprebind
12703 @opindex noseglinkedit
12704 @opindex pagezero_size
12705 @opindex prebind
12706 @opindex prebind_all_twolevel_modules
12707 @opindex private_bundle
12708 @opindex read_only_relocs
12709 @opindex sectalign
12710 @opindex sectobjectsymbols
12711 @opindex whyload
12712 @opindex seg1addr
12713 @opindex sectcreate
12714 @opindex sectobjectsymbols
12715 @opindex sectorder
12716 @opindex segaddr
12717 @opindex segs_read_only_addr
12718 @opindex segs_read_write_addr
12719 @opindex seg_addr_table
12720 @opindex seg_addr_table_filename
12721 @opindex seglinkedit
12722 @opindex segprot
12723 @opindex segs_read_only_addr
12724 @opindex segs_read_write_addr
12725 @opindex single_module
12726 @opindex static
12727 @opindex sub_library
12728 @opindex sub_umbrella
12729 @opindex twolevel_namespace
12730 @opindex umbrella
12731 @opindex undefined
12732 @opindex unexported_symbols_list
12733 @opindex weak_reference_mismatches
12734 @opindex whatsloaded
12735 These options are passed to the Darwin linker.  The Darwin linker man page
12736 describes them in detail.
12737 @end table
12739 @node DEC Alpha Options
12740 @subsection DEC Alpha Options
12742 These @samp{-m} options are defined for the DEC Alpha implementations:
12744 @table @gcctabopt
12745 @item -mno-soft-float
12746 @itemx -msoft-float
12747 @opindex mno-soft-float
12748 @opindex msoft-float
12749 Use (do not use) the hardware floating-point instructions for
12750 floating-point operations.  When @option{-msoft-float} is specified,
12751 functions in @file{libgcc.a} are used to perform floating-point
12752 operations.  Unless they are replaced by routines that emulate the
12753 floating-point operations, or compiled in such a way as to call such
12754 emulations routines, these routines issue floating-point
12755 operations.   If you are compiling for an Alpha without floating-point
12756 operations, you must ensure that the library is built so as not to call
12757 them.
12759 Note that Alpha implementations without floating-point operations are
12760 required to have floating-point registers.
12762 @item -mfp-reg
12763 @itemx -mno-fp-regs
12764 @opindex mfp-reg
12765 @opindex mno-fp-regs
12766 Generate code that uses (does not use) the floating-point register set.
12767 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
12768 register set is not used, floating-point operands are passed in integer
12769 registers as if they were integers and floating-point results are passed
12770 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
12771 so any function with a floating-point argument or return value called by code
12772 compiled with @option{-mno-fp-regs} must also be compiled with that
12773 option.
12775 A typical use of this option is building a kernel that does not use,
12776 and hence need not save and restore, any floating-point registers.
12778 @item -mieee
12779 @opindex mieee
12780 The Alpha architecture implements floating-point hardware optimized for
12781 maximum performance.  It is mostly compliant with the IEEE floating-point
12782 standard.  However, for full compliance, software assistance is
12783 required.  This option generates code fully IEEE-compliant code
12784 @emph{except} that the @var{inexact-flag} is not maintained (see below).
12785 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
12786 defined during compilation.  The resulting code is less efficient but is
12787 able to correctly support denormalized numbers and exceptional IEEE
12788 values such as not-a-number and plus/minus infinity.  Other Alpha
12789 compilers call this option @option{-ieee_with_no_inexact}.
12791 @item -mieee-with-inexact
12792 @opindex mieee-with-inexact
12793 This is like @option{-mieee} except the generated code also maintains
12794 the IEEE @var{inexact-flag}.  Turning on this option causes the
12795 generated code to implement fully-compliant IEEE math.  In addition to
12796 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
12797 macro.  On some Alpha implementations the resulting code may execute
12798 significantly slower than the code generated by default.  Since there is
12799 very little code that depends on the @var{inexact-flag}, you should
12800 normally not specify this option.  Other Alpha compilers call this
12801 option @option{-ieee_with_inexact}.
12803 @item -mfp-trap-mode=@var{trap-mode}
12804 @opindex mfp-trap-mode
12805 This option controls what floating-point related traps are enabled.
12806 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
12807 The trap mode can be set to one of four values:
12809 @table @samp
12810 @item n
12811 This is the default (normal) setting.  The only traps that are enabled
12812 are the ones that cannot be disabled in software (e.g., division by zero
12813 trap).
12815 @item u
12816 In addition to the traps enabled by @samp{n}, underflow traps are enabled
12817 as well.
12819 @item su
12820 Like @samp{u}, but the instructions are marked to be safe for software
12821 completion (see Alpha architecture manual for details).
12823 @item sui
12824 Like @samp{su}, but inexact traps are enabled as well.
12825 @end table
12827 @item -mfp-rounding-mode=@var{rounding-mode}
12828 @opindex mfp-rounding-mode
12829 Selects the IEEE rounding mode.  Other Alpha compilers call this option
12830 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
12833 @table @samp
12834 @item n
12835 Normal IEEE rounding mode.  Floating-point numbers are rounded towards
12836 the nearest machine number or towards the even machine number in case
12837 of a tie.
12839 @item m
12840 Round towards minus infinity.
12842 @item c
12843 Chopped rounding mode.  Floating-point numbers are rounded towards zero.
12845 @item d
12846 Dynamic rounding mode.  A field in the floating-point control register
12847 (@var{fpcr}, see Alpha architecture reference manual) controls the
12848 rounding mode in effect.  The C library initializes this register for
12849 rounding towards plus infinity.  Thus, unless your program modifies the
12850 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
12851 @end table
12853 @item -mtrap-precision=@var{trap-precision}
12854 @opindex mtrap-precision
12855 In the Alpha architecture, floating-point traps are imprecise.  This
12856 means without software assistance it is impossible to recover from a
12857 floating trap and program execution normally needs to be terminated.
12858 GCC can generate code that can assist operating system trap handlers
12859 in determining the exact location that caused a floating-point trap.
12860 Depending on the requirements of an application, different levels of
12861 precisions can be selected:
12863 @table @samp
12864 @item p
12865 Program precision.  This option is the default and means a trap handler
12866 can only identify which program caused a floating-point exception.
12868 @item f
12869 Function precision.  The trap handler can determine the function that
12870 caused a floating-point exception.
12872 @item i
12873 Instruction precision.  The trap handler can determine the exact
12874 instruction that caused a floating-point exception.
12875 @end table
12877 Other Alpha compilers provide the equivalent options called
12878 @option{-scope_safe} and @option{-resumption_safe}.
12880 @item -mieee-conformant
12881 @opindex mieee-conformant
12882 This option marks the generated code as IEEE conformant.  You must not
12883 use this option unless you also specify @option{-mtrap-precision=i} and either
12884 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
12885 is to emit the line @samp{.eflag 48} in the function prologue of the
12886 generated assembly file.
12888 @item -mbuild-constants
12889 @opindex mbuild-constants
12890 Normally GCC examines a 32- or 64-bit integer constant to
12891 see if it can construct it from smaller constants in two or three
12892 instructions.  If it cannot, it outputs the constant as a literal and
12893 generates code to load it from the data segment at run time.
12895 Use this option to require GCC to construct @emph{all} integer constants
12896 using code, even if it takes more instructions (the maximum is six).
12898 You typically use this option to build a shared library dynamic
12899 loader.  Itself a shared library, it must relocate itself in memory
12900 before it can find the variables and constants in its own data segment.
12902 @item -mbwx
12903 @itemx -mno-bwx
12904 @itemx -mcix
12905 @itemx -mno-cix
12906 @itemx -mfix
12907 @itemx -mno-fix
12908 @itemx -mmax
12909 @itemx -mno-max
12910 @opindex mbwx
12911 @opindex mno-bwx
12912 @opindex mcix
12913 @opindex mno-cix
12914 @opindex mfix
12915 @opindex mno-fix
12916 @opindex mmax
12917 @opindex mno-max
12918 Indicate whether GCC should generate code to use the optional BWX,
12919 CIX, FIX and MAX instruction sets.  The default is to use the instruction
12920 sets supported by the CPU type specified via @option{-mcpu=} option or that
12921 of the CPU on which GCC was built if none is specified.
12923 @item -mfloat-vax
12924 @itemx -mfloat-ieee
12925 @opindex mfloat-vax
12926 @opindex mfloat-ieee
12927 Generate code that uses (does not use) VAX F and G floating-point
12928 arithmetic instead of IEEE single and double precision.
12930 @item -mexplicit-relocs
12931 @itemx -mno-explicit-relocs
12932 @opindex mexplicit-relocs
12933 @opindex mno-explicit-relocs
12934 Older Alpha assemblers provided no way to generate symbol relocations
12935 except via assembler macros.  Use of these macros does not allow
12936 optimal instruction scheduling.  GNU binutils as of version 2.12
12937 supports a new syntax that allows the compiler to explicitly mark
12938 which relocations should apply to which instructions.  This option
12939 is mostly useful for debugging, as GCC detects the capabilities of
12940 the assembler when it is built and sets the default accordingly.
12942 @item -msmall-data
12943 @itemx -mlarge-data
12944 @opindex msmall-data
12945 @opindex mlarge-data
12946 When @option{-mexplicit-relocs} is in effect, static data is
12947 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
12948 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
12949 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
12950 16-bit relocations off of the @code{$gp} register.  This limits the
12951 size of the small data area to 64KB, but allows the variables to be
12952 directly accessed via a single instruction.
12954 The default is @option{-mlarge-data}.  With this option the data area
12955 is limited to just below 2GB@.  Programs that require more than 2GB of
12956 data must use @code{malloc} or @code{mmap} to allocate the data in the
12957 heap instead of in the program's data segment.
12959 When generating code for shared libraries, @option{-fpic} implies
12960 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
12962 @item -msmall-text
12963 @itemx -mlarge-text
12964 @opindex msmall-text
12965 @opindex mlarge-text
12966 When @option{-msmall-text} is used, the compiler assumes that the
12967 code of the entire program (or shared library) fits in 4MB, and is
12968 thus reachable with a branch instruction.  When @option{-msmall-data}
12969 is used, the compiler can assume that all local symbols share the
12970 same @code{$gp} value, and thus reduce the number of instructions
12971 required for a function call from 4 to 1.
12973 The default is @option{-mlarge-text}.
12975 @item -mcpu=@var{cpu_type}
12976 @opindex mcpu
12977 Set the instruction set and instruction scheduling parameters for
12978 machine type @var{cpu_type}.  You can specify either the @samp{EV}
12979 style name or the corresponding chip number.  GCC supports scheduling
12980 parameters for the EV4, EV5 and EV6 family of processors and
12981 chooses the default values for the instruction set from the processor
12982 you specify.  If you do not specify a processor type, GCC defaults
12983 to the processor on which the compiler was built.
12985 Supported values for @var{cpu_type} are
12987 @table @samp
12988 @item ev4
12989 @itemx ev45
12990 @itemx 21064
12991 Schedules as an EV4 and has no instruction set extensions.
12993 @item ev5
12994 @itemx 21164
12995 Schedules as an EV5 and has no instruction set extensions.
12997 @item ev56
12998 @itemx 21164a
12999 Schedules as an EV5 and supports the BWX extension.
13001 @item pca56
13002 @itemx 21164pc
13003 @itemx 21164PC
13004 Schedules as an EV5 and supports the BWX and MAX extensions.
13006 @item ev6
13007 @itemx 21264
13008 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
13010 @item ev67
13011 @itemx 21264a
13012 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
13013 @end table
13015 Native toolchains also support the value @samp{native},
13016 which selects the best architecture option for the host processor.
13017 @option{-mcpu=native} has no effect if GCC does not recognize
13018 the processor.
13020 @item -mtune=@var{cpu_type}
13021 @opindex mtune
13022 Set only the instruction scheduling parameters for machine type
13023 @var{cpu_type}.  The instruction set is not changed.
13025 Native toolchains also support the value @samp{native},
13026 which selects the best architecture option for the host processor.
13027 @option{-mtune=native} has no effect if GCC does not recognize
13028 the processor.
13030 @item -mmemory-latency=@var{time}
13031 @opindex mmemory-latency
13032 Sets the latency the scheduler should assume for typical memory
13033 references as seen by the application.  This number is highly
13034 dependent on the memory access patterns used by the application
13035 and the size of the external cache on the machine.
13037 Valid options for @var{time} are
13039 @table @samp
13040 @item @var{number}
13041 A decimal number representing clock cycles.
13043 @item L1
13044 @itemx L2
13045 @itemx L3
13046 @itemx main
13047 The compiler contains estimates of the number of clock cycles for
13048 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
13049 (also called Dcache, Scache, and Bcache), as well as to main memory.
13050 Note that L3 is only valid for EV5.
13052 @end table
13053 @end table
13055 @node FR30 Options
13056 @subsection FR30 Options
13057 @cindex FR30 Options
13059 These options are defined specifically for the FR30 port.
13061 @table @gcctabopt
13063 @item -msmall-model
13064 @opindex msmall-model
13065 Use the small address space model.  This can produce smaller code, but
13066 it does assume that all symbolic values and addresses fit into a
13067 20-bit range.
13069 @item -mno-lsim
13070 @opindex mno-lsim
13071 Assume that runtime support has been provided and so there is no need
13072 to include the simulator library (@file{libsim.a}) on the linker
13073 command line.
13075 @end table
13077 @node FRV Options
13078 @subsection FRV Options
13079 @cindex FRV Options
13081 @table @gcctabopt
13082 @item -mgpr-32
13083 @opindex mgpr-32
13085 Only use the first 32 general-purpose registers.
13087 @item -mgpr-64
13088 @opindex mgpr-64
13090 Use all 64 general-purpose registers.
13092 @item -mfpr-32
13093 @opindex mfpr-32
13095 Use only the first 32 floating-point registers.
13097 @item -mfpr-64
13098 @opindex mfpr-64
13100 Use all 64 floating-point registers.
13102 @item -mhard-float
13103 @opindex mhard-float
13105 Use hardware instructions for floating-point operations.
13107 @item -msoft-float
13108 @opindex msoft-float
13110 Use library routines for floating-point operations.
13112 @item -malloc-cc
13113 @opindex malloc-cc
13115 Dynamically allocate condition code registers.
13117 @item -mfixed-cc
13118 @opindex mfixed-cc
13120 Do not try to dynamically allocate condition code registers, only
13121 use @code{icc0} and @code{fcc0}.
13123 @item -mdword
13124 @opindex mdword
13126 Change ABI to use double word insns.
13128 @item -mno-dword
13129 @opindex mno-dword
13131 Do not use double word instructions.
13133 @item -mdouble
13134 @opindex mdouble
13136 Use floating-point double instructions.
13138 @item -mno-double
13139 @opindex mno-double
13141 Do not use floating-point double instructions.
13143 @item -mmedia
13144 @opindex mmedia
13146 Use media instructions.
13148 @item -mno-media
13149 @opindex mno-media
13151 Do not use media instructions.
13153 @item -mmuladd
13154 @opindex mmuladd
13156 Use multiply and add/subtract instructions.
13158 @item -mno-muladd
13159 @opindex mno-muladd
13161 Do not use multiply and add/subtract instructions.
13163 @item -mfdpic
13164 @opindex mfdpic
13166 Select the FDPIC ABI, which uses function descriptors to represent
13167 pointers to functions.  Without any PIC/PIE-related options, it
13168 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
13169 assumes GOT entries and small data are within a 12-bit range from the
13170 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
13171 are computed with 32 bits.
13172 With a @samp{bfin-elf} target, this option implies @option{-msim}.
13174 @item -minline-plt
13175 @opindex minline-plt
13177 Enable inlining of PLT entries in function calls to functions that are
13178 not known to bind locally.  It has no effect without @option{-mfdpic}.
13179 It's enabled by default if optimizing for speed and compiling for
13180 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
13181 optimization option such as @option{-O3} or above is present in the
13182 command line.
13184 @item -mTLS
13185 @opindex mTLS
13187 Assume a large TLS segment when generating thread-local code.
13189 @item -mtls
13190 @opindex mtls
13192 Do not assume a large TLS segment when generating thread-local code.
13194 @item -mgprel-ro
13195 @opindex mgprel-ro
13197 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
13198 that is known to be in read-only sections.  It's enabled by default,
13199 except for @option{-fpic} or @option{-fpie}: even though it may help
13200 make the global offset table smaller, it trades 1 instruction for 4.
13201 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
13202 one of which may be shared by multiple symbols, and it avoids the need
13203 for a GOT entry for the referenced symbol, so it's more likely to be a
13204 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
13206 @item -multilib-library-pic
13207 @opindex multilib-library-pic
13209 Link with the (library, not FD) pic libraries.  It's implied by
13210 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
13211 @option{-fpic} without @option{-mfdpic}.  You should never have to use
13212 it explicitly.
13214 @item -mlinked-fp
13215 @opindex mlinked-fp
13217 Follow the EABI requirement of always creating a frame pointer whenever
13218 a stack frame is allocated.  This option is enabled by default and can
13219 be disabled with @option{-mno-linked-fp}.
13221 @item -mlong-calls
13222 @opindex mlong-calls
13224 Use indirect addressing to call functions outside the current
13225 compilation unit.  This allows the functions to be placed anywhere
13226 within the 32-bit address space.
13228 @item -malign-labels
13229 @opindex malign-labels
13231 Try to align labels to an 8-byte boundary by inserting NOPs into the
13232 previous packet.  This option only has an effect when VLIW packing
13233 is enabled.  It doesn't create new packets; it merely adds NOPs to
13234 existing ones.
13236 @item -mlibrary-pic
13237 @opindex mlibrary-pic
13239 Generate position-independent EABI code.
13241 @item -macc-4
13242 @opindex macc-4
13244 Use only the first four media accumulator registers.
13246 @item -macc-8
13247 @opindex macc-8
13249 Use all eight media accumulator registers.
13251 @item -mpack
13252 @opindex mpack
13254 Pack VLIW instructions.
13256 @item -mno-pack
13257 @opindex mno-pack
13259 Do not pack VLIW instructions.
13261 @item -mno-eflags
13262 @opindex mno-eflags
13264 Do not mark ABI switches in e_flags.
13266 @item -mcond-move
13267 @opindex mcond-move
13269 Enable the use of conditional-move instructions (default).
13271 This switch is mainly for debugging the compiler and will likely be removed
13272 in a future version.
13274 @item -mno-cond-move
13275 @opindex mno-cond-move
13277 Disable the use of conditional-move instructions.
13279 This switch is mainly for debugging the compiler and will likely be removed
13280 in a future version.
13282 @item -mscc
13283 @opindex mscc
13285 Enable the use of conditional set instructions (default).
13287 This switch is mainly for debugging the compiler and will likely be removed
13288 in a future version.
13290 @item -mno-scc
13291 @opindex mno-scc
13293 Disable the use of conditional set instructions.
13295 This switch is mainly for debugging the compiler and will likely be removed
13296 in a future version.
13298 @item -mcond-exec
13299 @opindex mcond-exec
13301 Enable the use of conditional execution (default).
13303 This switch is mainly for debugging the compiler and will likely be removed
13304 in a future version.
13306 @item -mno-cond-exec
13307 @opindex mno-cond-exec
13309 Disable the use of conditional execution.
13311 This switch is mainly for debugging the compiler and will likely be removed
13312 in a future version.
13314 @item -mvliw-branch
13315 @opindex mvliw-branch
13317 Run a pass to pack branches into VLIW instructions (default).
13319 This switch is mainly for debugging the compiler and will likely be removed
13320 in a future version.
13322 @item -mno-vliw-branch
13323 @opindex mno-vliw-branch
13325 Do not run a pass to pack branches into VLIW instructions.
13327 This switch is mainly for debugging the compiler and will likely be removed
13328 in a future version.
13330 @item -mmulti-cond-exec
13331 @opindex mmulti-cond-exec
13333 Enable optimization of @code{&&} and @code{||} in conditional execution
13334 (default).
13336 This switch is mainly for debugging the compiler and will likely be removed
13337 in a future version.
13339 @item -mno-multi-cond-exec
13340 @opindex mno-multi-cond-exec
13342 Disable optimization of @code{&&} and @code{||} in conditional execution.
13344 This switch is mainly for debugging the compiler and will likely be removed
13345 in a future version.
13347 @item -mnested-cond-exec
13348 @opindex mnested-cond-exec
13350 Enable nested conditional execution optimizations (default).
13352 This switch is mainly for debugging the compiler and will likely be removed
13353 in a future version.
13355 @item -mno-nested-cond-exec
13356 @opindex mno-nested-cond-exec
13358 Disable nested conditional execution optimizations.
13360 This switch is mainly for debugging the compiler and will likely be removed
13361 in a future version.
13363 @item -moptimize-membar
13364 @opindex moptimize-membar
13366 This switch removes redundant @code{membar} instructions from the
13367 compiler-generated code.  It is enabled by default.
13369 @item -mno-optimize-membar
13370 @opindex mno-optimize-membar
13372 This switch disables the automatic removal of redundant @code{membar}
13373 instructions from the generated code.
13375 @item -mtomcat-stats
13376 @opindex mtomcat-stats
13378 Cause gas to print out tomcat statistics.
13380 @item -mcpu=@var{cpu}
13381 @opindex mcpu
13383 Select the processor type for which to generate code.  Possible values are
13384 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
13385 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
13387 @end table
13389 @node GNU/Linux Options
13390 @subsection GNU/Linux Options
13392 These @samp{-m} options are defined for GNU/Linux targets:
13394 @table @gcctabopt
13395 @item -mglibc
13396 @opindex mglibc
13397 Use the GNU C library.  This is the default except
13398 on @samp{*-*-linux-*uclibc*} and @samp{*-*-linux-*android*} targets.
13400 @item -muclibc
13401 @opindex muclibc
13402 Use uClibc C library.  This is the default on
13403 @samp{*-*-linux-*uclibc*} targets.
13405 @item -mbionic
13406 @opindex mbionic
13407 Use Bionic C library.  This is the default on
13408 @samp{*-*-linux-*android*} targets.
13410 @item -mandroid
13411 @opindex mandroid
13412 Compile code compatible with Android platform.  This is the default on
13413 @samp{*-*-linux-*android*} targets.
13415 When compiling, this option enables @option{-mbionic}, @option{-fPIC},
13416 @option{-fno-exceptions} and @option{-fno-rtti} by default.  When linking,
13417 this option makes the GCC driver pass Android-specific options to the linker.
13418 Finally, this option causes the preprocessor macro @code{__ANDROID__}
13419 to be defined.
13421 @item -tno-android-cc
13422 @opindex tno-android-cc
13423 Disable compilation effects of @option{-mandroid}, i.e., do not enable
13424 @option{-mbionic}, @option{-fPIC}, @option{-fno-exceptions} and
13425 @option{-fno-rtti} by default.
13427 @item -tno-android-ld
13428 @opindex tno-android-ld
13429 Disable linking effects of @option{-mandroid}, i.e., pass standard Linux
13430 linking options to the linker.
13432 @end table
13434 @node H8/300 Options
13435 @subsection H8/300 Options
13437 These @samp{-m} options are defined for the H8/300 implementations:
13439 @table @gcctabopt
13440 @item -mrelax
13441 @opindex mrelax
13442 Shorten some address references at link time, when possible; uses the
13443 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
13444 ld, Using ld}, for a fuller description.
13446 @item -mh
13447 @opindex mh
13448 Generate code for the H8/300H@.
13450 @item -ms
13451 @opindex ms
13452 Generate code for the H8S@.
13454 @item -mn
13455 @opindex mn
13456 Generate code for the H8S and H8/300H in the normal mode.  This switch
13457 must be used either with @option{-mh} or @option{-ms}.
13459 @item -ms2600
13460 @opindex ms2600
13461 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
13463 @item -mexr
13464 @opindex mexr
13465 Extended registers are stored on stack before execution of function
13466 with monitor attribute. Default option is @option{-mexr}.
13467 This option is valid only for H8S targets.
13469 @item -mno-exr
13470 @opindex mno-exr
13471 Extended registers are not stored on stack before execution of function 
13472 with monitor attribute. Default option is @option{-mno-exr}. 
13473 This option is valid only for H8S targets.
13475 @item -mint32
13476 @opindex mint32
13477 Make @code{int} data 32 bits by default.
13479 @item -malign-300
13480 @opindex malign-300
13481 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
13482 The default for the H8/300H and H8S is to align longs and floats on
13483 4-byte boundaries.
13484 @option{-malign-300} causes them to be aligned on 2-byte boundaries.
13485 This option has no effect on the H8/300.
13486 @end table
13488 @node HPPA Options
13489 @subsection HPPA Options
13490 @cindex HPPA Options
13492 These @samp{-m} options are defined for the HPPA family of computers:
13494 @table @gcctabopt
13495 @item -march=@var{architecture-type}
13496 @opindex march
13497 Generate code for the specified architecture.  The choices for
13498 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
13499 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
13500 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
13501 architecture option for your machine.  Code compiled for lower numbered
13502 architectures runs on higher numbered architectures, but not the
13503 other way around.
13505 @item -mpa-risc-1-0
13506 @itemx -mpa-risc-1-1
13507 @itemx -mpa-risc-2-0
13508 @opindex mpa-risc-1-0
13509 @opindex mpa-risc-1-1
13510 @opindex mpa-risc-2-0
13511 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
13513 @item -mbig-switch
13514 @opindex mbig-switch
13515 Generate code suitable for big switch tables.  Use this option only if
13516 the assembler/linker complain about out-of-range branches within a switch
13517 table.
13519 @item -mjump-in-delay
13520 @opindex mjump-in-delay
13521 Fill delay slots of function calls with unconditional jump instructions
13522 by modifying the return pointer for the function call to be the target
13523 of the conditional jump.
13525 @item -mdisable-fpregs
13526 @opindex mdisable-fpregs
13527 Prevent floating-point registers from being used in any manner.  This is
13528 necessary for compiling kernels that perform lazy context switching of
13529 floating-point registers.  If you use this option and attempt to perform
13530 floating-point operations, the compiler aborts.
13532 @item -mdisable-indexing
13533 @opindex mdisable-indexing
13534 Prevent the compiler from using indexing address modes.  This avoids some
13535 rather obscure problems when compiling MIG generated code under MACH@.
13537 @item -mno-space-regs
13538 @opindex mno-space-regs
13539 Generate code that assumes the target has no space registers.  This allows
13540 GCC to generate faster indirect calls and use unscaled index address modes.
13542 Such code is suitable for level 0 PA systems and kernels.
13544 @item -mfast-indirect-calls
13545 @opindex mfast-indirect-calls
13546 Generate code that assumes calls never cross space boundaries.  This
13547 allows GCC to emit code that performs faster indirect calls.
13549 This option does not work in the presence of shared libraries or nested
13550 functions.
13552 @item -mfixed-range=@var{register-range}
13553 @opindex mfixed-range
13554 Generate code treating the given register range as fixed registers.
13555 A fixed register is one that the register allocator cannot use.  This is
13556 useful when compiling kernel code.  A register range is specified as
13557 two registers separated by a dash.  Multiple register ranges can be
13558 specified separated by a comma.
13560 @item -mlong-load-store
13561 @opindex mlong-load-store
13562 Generate 3-instruction load and store sequences as sometimes required by
13563 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
13564 the HP compilers.
13566 @item -mportable-runtime
13567 @opindex mportable-runtime
13568 Use the portable calling conventions proposed by HP for ELF systems.
13570 @item -mgas
13571 @opindex mgas
13572 Enable the use of assembler directives only GAS understands.
13574 @item -mschedule=@var{cpu-type}
13575 @opindex mschedule
13576 Schedule code according to the constraints for the machine type
13577 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
13578 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
13579 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
13580 proper scheduling option for your machine.  The default scheduling is
13581 @samp{8000}.
13583 @item -mlinker-opt
13584 @opindex mlinker-opt
13585 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
13586 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
13587 linkers in which they give bogus error messages when linking some programs.
13589 @item -msoft-float
13590 @opindex msoft-float
13591 Generate output containing library calls for floating point.
13592 @strong{Warning:} the requisite libraries are not available for all HPPA
13593 targets.  Normally the facilities of the machine's usual C compiler are
13594 used, but this cannot be done directly in cross-compilation.  You must make
13595 your own arrangements to provide suitable library functions for
13596 cross-compilation.
13598 @option{-msoft-float} changes the calling convention in the output file;
13599 therefore, it is only useful if you compile @emph{all} of a program with
13600 this option.  In particular, you need to compile @file{libgcc.a}, the
13601 library that comes with GCC, with @option{-msoft-float} in order for
13602 this to work.
13604 @item -msio
13605 @opindex msio
13606 Generate the predefine, @code{_SIO}, for server IO@.  The default is
13607 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
13608 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
13609 options are available under HP-UX and HI-UX@.
13611 @item -mgnu-ld
13612 @opindex mgnu-ld
13613 Use options specific to GNU @command{ld}.
13614 This passes @option{-shared} to @command{ld} when
13615 building a shared library.  It is the default when GCC is configured,
13616 explicitly or implicitly, with the GNU linker.  This option does not
13617 affect which @command{ld} is called; it only changes what parameters
13618 are passed to that @command{ld}.
13619 The @command{ld} that is called is determined by the
13620 @option{--with-ld} configure option, GCC's program search path, and
13621 finally by the user's @env{PATH}.  The linker used by GCC can be printed
13622 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
13623 on the 64-bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
13625 @item -mhp-ld
13626 @opindex mhp-ld
13627 Use options specific to HP @command{ld}.
13628 This passes @option{-b} to @command{ld} when building
13629 a shared library and passes @option{+Accept TypeMismatch} to @command{ld} on all
13630 links.  It is the default when GCC is configured, explicitly or
13631 implicitly, with the HP linker.  This option does not affect
13632 which @command{ld} is called; it only changes what parameters are passed to that
13633 @command{ld}.
13634 The @command{ld} that is called is determined by the @option{--with-ld}
13635 configure option, GCC's program search path, and finally by the user's
13636 @env{PATH}.  The linker used by GCC can be printed using @samp{which
13637 `gcc -print-prog-name=ld`}.  This option is only available on the 64-bit
13638 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
13640 @item -mlong-calls
13641 @opindex mno-long-calls
13642 Generate code that uses long call sequences.  This ensures that a call
13643 is always able to reach linker generated stubs.  The default is to generate
13644 long calls only when the distance from the call site to the beginning
13645 of the function or translation unit, as the case may be, exceeds a
13646 predefined limit set by the branch type being used.  The limits for
13647 normal calls are 7,600,000 and 240,000 bytes, respectively for the
13648 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
13649 240,000 bytes.
13651 Distances are measured from the beginning of functions when using the
13652 @option{-ffunction-sections} option, or when using the @option{-mgas}
13653 and @option{-mno-portable-runtime} options together under HP-UX with
13654 the SOM linker.
13656 It is normally not desirable to use this option as it degrades
13657 performance.  However, it may be useful in large applications,
13658 particularly when partial linking is used to build the application.
13660 The types of long calls used depends on the capabilities of the
13661 assembler and linker, and the type of code being generated.  The
13662 impact on systems that support long absolute calls, and long pic
13663 symbol-difference or pc-relative calls should be relatively small.
13664 However, an indirect call is used on 32-bit ELF systems in pic code
13665 and it is quite long.
13667 @item -munix=@var{unix-std}
13668 @opindex march
13669 Generate compiler predefines and select a startfile for the specified
13670 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
13671 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
13672 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
13673 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
13674 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
13675 and later.
13677 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
13678 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
13679 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
13680 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
13681 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
13682 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
13684 It is @emph{important} to note that this option changes the interfaces
13685 for various library routines.  It also affects the operational behavior
13686 of the C library.  Thus, @emph{extreme} care is needed in using this
13687 option.
13689 Library code that is intended to operate with more than one UNIX
13690 standard must test, set and restore the variable @var{__xpg4_extended_mask}
13691 as appropriate.  Most GNU software doesn't provide this capability.
13693 @item -nolibdld
13694 @opindex nolibdld
13695 Suppress the generation of link options to search libdld.sl when the
13696 @option{-static} option is specified on HP-UX 10 and later.
13698 @item -static
13699 @opindex static
13700 The HP-UX implementation of setlocale in libc has a dependency on
13701 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
13702 when the @option{-static} option is specified, special link options
13703 are needed to resolve this dependency.
13705 On HP-UX 10 and later, the GCC driver adds the necessary options to
13706 link with libdld.sl when the @option{-static} option is specified.
13707 This causes the resulting binary to be dynamic.  On the 64-bit port,
13708 the linkers generate dynamic binaries by default in any case.  The
13709 @option{-nolibdld} option can be used to prevent the GCC driver from
13710 adding these link options.
13712 @item -threads
13713 @opindex threads
13714 Add support for multithreading with the @dfn{dce thread} library
13715 under HP-UX@.  This option sets flags for both the preprocessor and
13716 linker.
13717 @end table
13719 @node i386 and x86-64 Options
13720 @subsection Intel 386 and AMD x86-64 Options
13721 @cindex i386 Options
13722 @cindex x86-64 Options
13723 @cindex Intel 386 Options
13724 @cindex AMD x86-64 Options
13726 These @samp{-m} options are defined for the i386 and x86-64 family of
13727 computers:
13729 @table @gcctabopt
13731 @item -march=@var{cpu-type}
13732 @opindex march
13733 Generate instructions for the machine type @var{cpu-type}.  In contrast to
13734 @option{-mtune=@var{cpu-type}}, which merely tunes the generated code 
13735 for the specified @var{cpu-type}, @option{-march=@var{cpu-type}} allows GCC
13736 to generate code that may not run at all on processors other than the one
13737 indicated.  Specifying @option{-march=@var{cpu-type}} implies 
13738 @option{-mtune=@var{cpu-type}}.
13740 The choices for @var{cpu-type} are:
13742 @table @samp
13743 @item native
13744 This selects the CPU to generate code for at compilation time by determining
13745 the processor type of the compiling machine.  Using @option{-march=native}
13746 enables all instruction subsets supported by the local machine (hence
13747 the result might not run on different machines).  Using @option{-mtune=native}
13748 produces code optimized for the local machine under the constraints
13749 of the selected instruction set.  
13751 @item i386
13752 Original Intel i386 CPU@.
13754 @item i486
13755 Intel i486 CPU@.  (No scheduling is implemented for this chip.)
13757 @item i586
13758 @itemx pentium
13759 Intel Pentium CPU with no MMX support.
13761 @item pentium-mmx
13762 Intel Pentium MMX CPU, based on Pentium core with MMX instruction set support.
13764 @item pentiumpro
13765 Intel Pentium Pro CPU@.
13767 @item i686
13768 When used with @option{-march}, the Pentium Pro
13769 instruction set is used, so the code runs on all i686 family chips.
13770 When used with @option{-mtune}, it has the same meaning as @samp{generic}.
13772 @item pentium2
13773 Intel Pentium II CPU, based on Pentium Pro core with MMX instruction set
13774 support.
13776 @item pentium3
13777 @itemx pentium3m
13778 Intel Pentium III CPU, based on Pentium Pro core with MMX and SSE instruction
13779 set support.
13781 @item pentium-m
13782 Intel Pentium M; low-power version of Intel Pentium III CPU
13783 with MMX, SSE and SSE2 instruction set support.  Used by Centrino notebooks.
13785 @item pentium4
13786 @itemx pentium4m
13787 Intel Pentium 4 CPU with MMX, SSE and SSE2 instruction set support.
13789 @item prescott
13790 Improved version of Intel Pentium 4 CPU with MMX, SSE, SSE2 and SSE3 instruction
13791 set support.
13793 @item nocona
13794 Improved version of Intel Pentium 4 CPU with 64-bit extensions, MMX, SSE,
13795 SSE2 and SSE3 instruction set support.
13797 @item core2
13798 Intel Core 2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
13799 instruction set support.
13801 @item corei7
13802 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
13803 and SSE4.2 instruction set support.
13805 @item corei7-avx
13806 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
13807 SSE4.1, SSE4.2, AVX, AES and PCLMUL instruction set support.
13809 @item core-avx-i
13810 Intel Core CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
13811 SSE4.1, SSE4.2, AVX, AES, PCLMUL, FSGSBASE, RDRND and F16C instruction
13812 set support.
13814 @item atom
13815 Intel Atom CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
13816 instruction set support.
13818 @item k6
13819 AMD K6 CPU with MMX instruction set support.
13821 @item k6-2
13822 @itemx k6-3
13823 Improved versions of AMD K6 CPU with MMX and 3DNow!@: instruction set support.
13825 @item athlon
13826 @itemx athlon-tbird
13827 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3DNow!@: and SSE prefetch instructions
13828 support.
13830 @item athlon-4
13831 @itemx athlon-xp
13832 @itemx athlon-mp
13833 Improved AMD Athlon CPU with MMX, 3DNow!, enhanced 3DNow!@: and full SSE
13834 instruction set support.
13836 @item k8
13837 @itemx opteron
13838 @itemx athlon64
13839 @itemx athlon-fx
13840 Processors based on the AMD K8 core with x86-64 instruction set support,
13841 including the AMD Opteron, Athlon 64, and Athlon 64 FX processors.
13842 (This supersets MMX, SSE, SSE2, 3DNow!, enhanced 3DNow!@: and 64-bit
13843 instruction set extensions.)
13845 @item k8-sse3
13846 @itemx opteron-sse3
13847 @itemx athlon64-sse3
13848 Improved versions of AMD K8 cores with SSE3 instruction set support.
13850 @item amdfam10
13851 @itemx barcelona
13852 CPUs based on AMD Family 10h cores with x86-64 instruction set support.  (This
13853 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3DNow!, enhanced 3DNow!, ABM and 64-bit
13854 instruction set extensions.)
13856 @item bdver1
13857 CPUs based on AMD Family 15h cores with x86-64 instruction set support.  (This
13858 supersets FMA4, AVX, XOP, LWP, AES, PCL_MUL, CX16, MMX, SSE, SSE2, SSE3, SSE4A,
13859 SSSE3, SSE4.1, SSE4.2, ABM and 64-bit instruction set extensions.)
13860 @item bdver2
13861 AMD Family 15h core based CPUs with x86-64 instruction set support.  (This
13862 supersets BMI, TBM, F16C, FMA, AVX, XOP, LWP, AES, PCL_MUL, CX16, MMX, SSE,
13863 SSE2, SSE3, SSE4A, SSSE3, SSE4.1, SSE4.2, ABM and 64-bit instruction set 
13864 extensions.)
13865 @item bdver3
13866 AMD Family 15h core based CPUs with x86-64 instruction set support.  (This
13867 supersets BMI, TBM, F16C, FMA, AVX, XOP, LWP, AES, PCL_MUL, CX16, MMX, SSE,
13868 SSE2, SSE3, SSE4A, SSSE3, SSE4.1, SSE4.2, ABM and 64-bit instruction set 
13869 extensions.
13871 @item btver1
13872 CPUs based on AMD Family 14h cores with x86-64 instruction set support.  (This
13873 supersets MMX, SSE, SSE2, SSE3, SSSE3, SSE4A, CX16, ABM and 64-bit
13874 instruction set extensions.)
13876 @item btver2
13877 CPUs based on AMD Family 16h cores with x86-64 instruction set support. This
13878 includes MOVBE, F16C, BMI, AVX, PCL_MUL, AES, SSE4.2, SSE4.1, CX16, ABM,
13879 SSE4A, SSSE3, SSE3, SSE2, SSE, MMX and 64-bit instruction set extensions.
13881 @item winchip-c6
13882 IDT WinChip C6 CPU, dealt in same way as i486 with additional MMX instruction
13883 set support.
13885 @item winchip2
13886 IDT WinChip 2 CPU, dealt in same way as i486 with additional MMX and 3DNow!@:
13887 instruction set support.
13889 @item c3
13890 VIA C3 CPU with MMX and 3DNow!@: instruction set support.  (No scheduling is
13891 implemented for this chip.)
13893 @item c3-2
13894 VIA C3-2 (Nehemiah/C5XL) CPU with MMX and SSE instruction set support.
13895 (No scheduling is
13896 implemented for this chip.)
13898 @item geode
13899 AMD Geode embedded processor with MMX and 3DNow!@: instruction set support.
13900 @end table
13902 @item -mtune=@var{cpu-type}
13903 @opindex mtune
13904 Tune to @var{cpu-type} everything applicable about the generated code, except
13905 for the ABI and the set of available instructions.  
13906 While picking a specific @var{cpu-type} schedules things appropriately
13907 for that particular chip, the compiler does not generate any code that
13908 cannot run on the default machine type unless you use a
13909 @option{-march=@var{cpu-type}} option.
13910 For example, if GCC is configured for i686-pc-linux-gnu
13911 then @option{-mtune=pentium4} generates code that is tuned for Pentium 4
13912 but still runs on i686 machines.
13914 The choices for @var{cpu-type} are the same as for @option{-march}.
13915 In addition, @option{-mtune} supports an extra choice for @var{cpu-type}:
13917 @table @samp
13918 @item generic
13919 Produce code optimized for the most common IA32/@/AMD64/@/EM64T processors.
13920 If you know the CPU on which your code will run, then you should use
13921 the corresponding @option{-mtune} or @option{-march} option instead of
13922 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
13923 of your application will have, then you should use this option.
13925 As new processors are deployed in the marketplace, the behavior of this
13926 option will change.  Therefore, if you upgrade to a newer version of
13927 GCC, code generation controlled by this option will change to reflect
13928 the processors
13929 that are most common at the time that version of GCC is released.
13931 There is no @option{-march=generic} option because @option{-march}
13932 indicates the instruction set the compiler can use, and there is no
13933 generic instruction set applicable to all processors.  In contrast,
13934 @option{-mtune} indicates the processor (or, in this case, collection of
13935 processors) for which the code is optimized.
13936 @end table
13938 @item -mcpu=@var{cpu-type}
13939 @opindex mcpu
13940 A deprecated synonym for @option{-mtune}.
13942 @item -mfpmath=@var{unit}
13943 @opindex mfpmath
13944 Generate floating-point arithmetic for selected unit @var{unit}.  The choices
13945 for @var{unit} are:
13947 @table @samp
13948 @item 387
13949 Use the standard 387 floating-point coprocessor present on the majority of chips and
13950 emulated otherwise.  Code compiled with this option runs almost everywhere.
13951 The temporary results are computed in 80-bit precision instead of the precision
13952 specified by the type, resulting in slightly different results compared to most
13953 of other chips.  See @option{-ffloat-store} for more detailed description.
13955 This is the default choice for i386 compiler.
13957 @item sse
13958 Use scalar floating-point instructions present in the SSE instruction set.
13959 This instruction set is supported by Pentium III and newer chips,
13960 and in the AMD line
13961 by Athlon-4, Athlon XP and Athlon MP chips.  The earlier version of the SSE
13962 instruction set supports only single-precision arithmetic, thus the double and
13963 extended-precision arithmetic are still done using 387.  A later version, present
13964 only in Pentium 4 and AMD x86-64 chips, supports double-precision
13965 arithmetic too.
13967 For the i386 compiler, you must use @option{-march=@var{cpu-type}}, @option{-msse}
13968 or @option{-msse2} switches to enable SSE extensions and make this option
13969 effective.  For the x86-64 compiler, these extensions are enabled by default.
13971 The resulting code should be considerably faster in the majority of cases and avoid
13972 the numerical instability problems of 387 code, but may break some existing
13973 code that expects temporaries to be 80 bits.
13975 This is the default choice for the x86-64 compiler.
13977 @item sse,387
13978 @itemx sse+387
13979 @itemx both
13980 Attempt to utilize both instruction sets at once.  This effectively doubles the
13981 amount of available registers, and on chips with separate execution units for
13982 387 and SSE the execution resources too.  Use this option with care, as it is
13983 still experimental, because the GCC register allocator does not model separate
13984 functional units well, resulting in unstable performance.
13985 @end table
13987 @item -masm=@var{dialect}
13988 @opindex masm=@var{dialect}
13989 Output assembly instructions using selected @var{dialect}.  Supported
13990 choices are @samp{intel} or @samp{att} (the default).  Darwin does
13991 not support @samp{intel}.
13993 @item -mieee-fp
13994 @itemx -mno-ieee-fp
13995 @opindex mieee-fp
13996 @opindex mno-ieee-fp
13997 Control whether or not the compiler uses IEEE floating-point
13998 comparisons.  These correctly handle the case where the result of a
13999 comparison is unordered.
14001 @item -msoft-float
14002 @opindex msoft-float
14003 Generate output containing library calls for floating point.
14005 @strong{Warning:} the requisite libraries are not part of GCC@.
14006 Normally the facilities of the machine's usual C compiler are used, but
14007 this can't be done directly in cross-compilation.  You must make your
14008 own arrangements to provide suitable library functions for
14009 cross-compilation.
14011 On machines where a function returns floating-point results in the 80387
14012 register stack, some floating-point opcodes may be emitted even if
14013 @option{-msoft-float} is used.
14015 @item -mno-fp-ret-in-387
14016 @opindex mno-fp-ret-in-387
14017 Do not use the FPU registers for return values of functions.
14019 The usual calling convention has functions return values of types
14020 @code{float} and @code{double} in an FPU register, even if there
14021 is no FPU@.  The idea is that the operating system should emulate
14022 an FPU@.
14024 The option @option{-mno-fp-ret-in-387} causes such values to be returned
14025 in ordinary CPU registers instead.
14027 @item -mno-fancy-math-387
14028 @opindex mno-fancy-math-387
14029 Some 387 emulators do not support the @code{sin}, @code{cos} and
14030 @code{sqrt} instructions for the 387.  Specify this option to avoid
14031 generating those instructions.  This option is the default on FreeBSD,
14032 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
14033 indicates that the target CPU always has an FPU and so the
14034 instruction does not need emulation.  These
14035 instructions are not generated unless you also use the
14036 @option{-funsafe-math-optimizations} switch.
14038 @item -malign-double
14039 @itemx -mno-align-double
14040 @opindex malign-double
14041 @opindex mno-align-double
14042 Control whether GCC aligns @code{double}, @code{long double}, and
14043 @code{long long} variables on a two-word boundary or a one-word
14044 boundary.  Aligning @code{double} variables on a two-word boundary
14045 produces code that runs somewhat faster on a Pentium at the
14046 expense of more memory.
14048 On x86-64, @option{-malign-double} is enabled by default.
14050 @strong{Warning:} if you use the @option{-malign-double} switch,
14051 structures containing the above types are aligned differently than
14052 the published application binary interface specifications for the 386
14053 and are not binary compatible with structures in code compiled
14054 without that switch.
14056 @item -m96bit-long-double
14057 @itemx -m128bit-long-double
14058 @opindex m96bit-long-double
14059 @opindex m128bit-long-double
14060 These switches control the size of @code{long double} type.  The i386
14061 application binary interface specifies the size to be 96 bits,
14062 so @option{-m96bit-long-double} is the default in 32-bit mode.
14064 Modern architectures (Pentium and newer) prefer @code{long double}
14065 to be aligned to an 8- or 16-byte boundary.  In arrays or structures
14066 conforming to the ABI, this is not possible.  So specifying
14067 @option{-m128bit-long-double} aligns @code{long double}
14068 to a 16-byte boundary by padding the @code{long double} with an additional
14069 32-bit zero.
14071 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
14072 its ABI specifies that @code{long double} is aligned on 16-byte boundary.
14074 Notice that neither of these options enable any extra precision over the x87
14075 standard of 80 bits for a @code{long double}.
14077 @strong{Warning:} if you override the default value for your target ABI, this
14078 changes the size of 
14079 structures and arrays containing @code{long double} variables,
14080 as well as modifying the function calling convention for functions taking
14081 @code{long double}.  Hence they are not binary-compatible
14082 with code compiled without that switch.
14084 @item -mlong-double-64
14085 @itemx -mlong-double-80
14086 @opindex mlong-double-64
14087 @opindex mlong-double-80
14088 These switches control the size of @code{long double} type. A size
14089 of 64 bits makes the @code{long double} type equivalent to the @code{double}
14090 type. This is the default for Bionic C library.
14092 @strong{Warning:} if you override the default value for your target ABI, this
14093 changes the size of
14094 structures and arrays containing @code{long double} variables,
14095 as well as modifying the function calling convention for functions taking
14096 @code{long double}.  Hence they are not binary-compatible
14097 with code compiled without that switch.
14099 @item -mlarge-data-threshold=@var{threshold}
14100 @opindex mlarge-data-threshold
14101 When @option{-mcmodel=medium} is specified, data objects larger than
14102 @var{threshold} are placed in the large data section.  This value must be the
14103 same across all objects linked into the binary, and defaults to 65535.
14105 @item -mrtd
14106 @opindex mrtd
14107 Use a different function-calling convention, in which functions that
14108 take a fixed number of arguments return with the @code{ret @var{num}}
14109 instruction, which pops their arguments while returning.  This saves one
14110 instruction in the caller since there is no need to pop the arguments
14111 there.
14113 You can specify that an individual function is called with this calling
14114 sequence with the function attribute @samp{stdcall}.  You can also
14115 override the @option{-mrtd} option by using the function attribute
14116 @samp{cdecl}.  @xref{Function Attributes}.
14118 @strong{Warning:} this calling convention is incompatible with the one
14119 normally used on Unix, so you cannot use it if you need to call
14120 libraries compiled with the Unix compiler.
14122 Also, you must provide function prototypes for all functions that
14123 take variable numbers of arguments (including @code{printf});
14124 otherwise incorrect code is generated for calls to those
14125 functions.
14127 In addition, seriously incorrect code results if you call a
14128 function with too many arguments.  (Normally, extra arguments are
14129 harmlessly ignored.)
14131 @item -mregparm=@var{num}
14132 @opindex mregparm
14133 Control how many registers are used to pass integer arguments.  By
14134 default, no registers are used to pass arguments, and at most 3
14135 registers can be used.  You can control this behavior for a specific
14136 function by using the function attribute @samp{regparm}.
14137 @xref{Function Attributes}.
14139 @strong{Warning:} if you use this switch, and
14140 @var{num} is nonzero, then you must build all modules with the same
14141 value, including any libraries.  This includes the system libraries and
14142 startup modules.
14144 @item -msseregparm
14145 @opindex msseregparm
14146 Use SSE register passing conventions for float and double arguments
14147 and return values.  You can control this behavior for a specific
14148 function by using the function attribute @samp{sseregparm}.
14149 @xref{Function Attributes}.
14151 @strong{Warning:} if you use this switch then you must build all
14152 modules with the same value, including any libraries.  This includes
14153 the system libraries and startup modules.
14155 @item -mvect8-ret-in-mem
14156 @opindex mvect8-ret-in-mem
14157 Return 8-byte vectors in memory instead of MMX registers.  This is the
14158 default on Solaris@tie{}8 and 9 and VxWorks to match the ABI of the Sun
14159 Studio compilers until version 12.  Later compiler versions (starting
14160 with Studio 12 Update@tie{}1) follow the ABI used by other x86 targets, which
14161 is the default on Solaris@tie{}10 and later.  @emph{Only} use this option if
14162 you need to remain compatible with existing code produced by those
14163 previous compiler versions or older versions of GCC@.
14165 @item -mpc32
14166 @itemx -mpc64
14167 @itemx -mpc80
14168 @opindex mpc32
14169 @opindex mpc64
14170 @opindex mpc80
14172 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
14173 is specified, the significands of results of floating-point operations are
14174 rounded to 24 bits (single precision); @option{-mpc64} rounds the
14175 significands of results of floating-point operations to 53 bits (double
14176 precision) and @option{-mpc80} rounds the significands of results of
14177 floating-point operations to 64 bits (extended double precision), which is
14178 the default.  When this option is used, floating-point operations in higher
14179 precisions are not available to the programmer without setting the FPU
14180 control word explicitly.
14182 Setting the rounding of floating-point operations to less than the default
14183 80 bits can speed some programs by 2% or more.  Note that some mathematical
14184 libraries assume that extended-precision (80-bit) floating-point operations
14185 are enabled by default; routines in such libraries could suffer significant
14186 loss of accuracy, typically through so-called ``catastrophic cancellation'',
14187 when this option is used to set the precision to less than extended precision.
14189 @item -mstackrealign
14190 @opindex mstackrealign
14191 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
14192 option generates an alternate prologue and epilogue that realigns the
14193 run-time stack if necessary.  This supports mixing legacy codes that keep
14194 4-byte stack alignment with modern codes that keep 16-byte stack alignment for
14195 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
14196 applicable to individual functions.
14198 @item -mpreferred-stack-boundary=@var{num}
14199 @opindex mpreferred-stack-boundary
14200 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
14201 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
14202 the default is 4 (16 bytes or 128 bits).
14204 @strong{Warning:} When generating code for the x86-64 architecture with
14205 SSE extensions disabled, @option{-mpreferred-stack-boundary=3} can be
14206 used to keep the stack boundary aligned to 8 byte boundary.  Since
14207 x86-64 ABI require 16 byte stack alignment, this is ABI incompatible and
14208 intended to be used in controlled environment where stack space is
14209 important limitation.  This option will lead to wrong code when functions
14210 compiled with 16 byte stack alignment (such as functions from a standard
14211 library) are called with misaligned stack.  In this case, SSE
14212 instructions may lead to misaligned memory access traps.  In addition,
14213 variable arguments will be handled incorrectly for 16 byte aligned
14214 objects (including x87 long double and __int128), leading to wrong
14215 results.  You must build all modules with
14216 @option{-mpreferred-stack-boundary=3}, including any libraries.  This
14217 includes the system libraries and startup modules.
14219 @item -mincoming-stack-boundary=@var{num}
14220 @opindex mincoming-stack-boundary
14221 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
14222 boundary.  If @option{-mincoming-stack-boundary} is not specified,
14223 the one specified by @option{-mpreferred-stack-boundary} is used.
14225 On Pentium and Pentium Pro, @code{double} and @code{long double} values
14226 should be aligned to an 8-byte boundary (see @option{-malign-double}) or
14227 suffer significant run time performance penalties.  On Pentium III, the
14228 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
14229 properly if it is not 16-byte aligned.
14231 To ensure proper alignment of this values on the stack, the stack boundary
14232 must be as aligned as that required by any value stored on the stack.
14233 Further, every function must be generated such that it keeps the stack
14234 aligned.  Thus calling a function compiled with a higher preferred
14235 stack boundary from a function compiled with a lower preferred stack
14236 boundary most likely misaligns the stack.  It is recommended that
14237 libraries that use callbacks always use the default setting.
14239 This extra alignment does consume extra stack space, and generally
14240 increases code size.  Code that is sensitive to stack space usage, such
14241 as embedded systems and operating system kernels, may want to reduce the
14242 preferred alignment to @option{-mpreferred-stack-boundary=2}.
14244 @item -mmmx
14245 @itemx -mno-mmx
14246 @itemx -msse
14247 @itemx -mno-sse
14248 @itemx -msse2
14249 @itemx -mno-sse2
14250 @itemx -msse3
14251 @itemx -mno-sse3
14252 @itemx -mssse3
14253 @itemx -mno-ssse3
14254 @itemx -msse4.1
14255 @need 800
14256 @itemx -mno-sse4.1
14257 @itemx -msse4.2
14258 @itemx -mno-sse4.2
14259 @itemx -msse4
14260 @itemx -mno-sse4
14261 @itemx -mavx
14262 @itemx -mno-avx
14263 @itemx -mavx2
14264 @itemx -mno-avx2
14265 @itemx -maes
14266 @itemx -mno-aes
14267 @itemx -mpclmul
14268 @need 800
14269 @itemx -mno-pclmul
14270 @itemx -mfsgsbase
14271 @itemx -mno-fsgsbase
14272 @itemx -mrdrnd
14273 @itemx -mno-rdrnd
14274 @itemx -mf16c
14275 @itemx -mno-f16c
14276 @itemx -mfma
14277 @itemx -mno-fma
14278 @itemx -msse4a
14279 @itemx -mno-sse4a
14280 @itemx -mfma4
14281 @need 800
14282 @itemx -mno-fma4
14283 @itemx -mxop
14284 @itemx -mno-xop
14285 @itemx -mlwp
14286 @itemx -mno-lwp
14287 @itemx -m3dnow
14288 @itemx -mno-3dnow
14289 @itemx -mpopcnt
14290 @itemx -mno-popcnt
14291 @itemx -mabm
14292 @itemx -mno-abm
14293 @itemx -mbmi
14294 @itemx -mbmi2
14295 @itemx -mno-bmi
14296 @itemx -mno-bmi2
14297 @itemx -mlzcnt
14298 @itemx -mno-lzcnt
14299 @itemx -mrtm
14300 @itemx -mtbm
14301 @itemx -mno-tbm
14302 @opindex mmmx
14303 @opindex mno-mmx
14304 @opindex msse
14305 @opindex mno-sse
14306 @opindex m3dnow
14307 @opindex mno-3dnow
14308 These switches enable or disable the use of instructions in the MMX, SSE,
14309 SSE2, SSE3, SSSE3, SSE4.1, AVX, AVX2, AES, PCLMUL, FSGSBASE, RDRND, F16C,
14310 FMA, SSE4A, FMA4, XOP, LWP, ABM, BMI, BMI2, LZCNT, RTM or 3DNow!@:
14311 extended instruction sets.
14312 These extensions are also available as built-in functions: see
14313 @ref{X86 Built-in Functions}, for details of the functions enabled and
14314 disabled by these switches.
14316 To generate SSE/SSE2 instructions automatically from floating-point
14317 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
14319 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
14320 generates new AVX instructions or AVX equivalence for all SSEx instructions
14321 when needed.
14323 These options enable GCC to use these extended instructions in
14324 generated code, even without @option{-mfpmath=sse}.  Applications that
14325 perform run-time CPU detection must compile separate files for each
14326 supported architecture, using the appropriate flags.  In particular,
14327 the file containing the CPU detection code should be compiled without
14328 these options.
14330 @item -mcld
14331 @opindex mcld
14332 This option instructs GCC to emit a @code{cld} instruction in the prologue
14333 of functions that use string instructions.  String instructions depend on
14334 the DF flag to select between autoincrement or autodecrement mode.  While the
14335 ABI specifies the DF flag to be cleared on function entry, some operating
14336 systems violate this specification by not clearing the DF flag in their
14337 exception dispatchers.  The exception handler can be invoked with the DF flag
14338 set, which leads to wrong direction mode when string instructions are used.
14339 This option can be enabled by default on 32-bit x86 targets by configuring
14340 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
14341 instructions can be suppressed with the @option{-mno-cld} compiler option
14342 in this case.
14344 @item -mvzeroupper
14345 @opindex mvzeroupper
14346 This option instructs GCC to emit a @code{vzeroupper} instruction
14347 before a transfer of control flow out of the function to minimize
14348 the AVX to SSE transition penalty as well as remove unnecessary @code{zeroupper}
14349 intrinsics.
14351 @item -mprefer-avx128
14352 @opindex mprefer-avx128
14353 This option instructs GCC to use 128-bit AVX instructions instead of
14354 256-bit AVX instructions in the auto-vectorizer.
14356 @item -mcx16
14357 @opindex mcx16
14358 This option enables GCC to generate @code{CMPXCHG16B} instructions.
14359 @code{CMPXCHG16B} allows for atomic operations on 128-bit double quadword
14360 (or oword) data types.  
14361 This is useful for high-resolution counters that can be updated
14362 by multiple processors (or cores).  This instruction is generated as part of
14363 atomic built-in functions: see @ref{__sync Builtins} or
14364 @ref{__atomic Builtins} for details.
14366 @item -msahf
14367 @opindex msahf
14368 This option enables generation of @code{SAHF} instructions in 64-bit code.
14369 Early Intel Pentium 4 CPUs with Intel 64 support,
14370 prior to the introduction of Pentium 4 G1 step in December 2005,
14371 lacked the @code{LAHF} and @code{SAHF} instructions
14372 which were supported by AMD64.
14373 These are load and store instructions, respectively, for certain status flags.
14374 In 64-bit mode, the @code{SAHF} instruction is used to optimize @code{fmod},
14375 @code{drem}, and @code{remainder} built-in functions;
14376 see @ref{Other Builtins} for details.
14378 @item -mmovbe
14379 @opindex mmovbe
14380 This option enables use of the @code{movbe} instruction to implement
14381 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
14383 @item -mcrc32
14384 @opindex mcrc32
14385 This option enables built-in functions @code{__builtin_ia32_crc32qi},
14386 @code{__builtin_ia32_crc32hi}, @code{__builtin_ia32_crc32si} and
14387 @code{__builtin_ia32_crc32di} to generate the @code{crc32} machine instruction.
14389 @item -mrecip
14390 @opindex mrecip
14391 This option enables use of @code{RCPSS} and @code{RSQRTSS} instructions
14392 (and their vectorized variants @code{RCPPS} and @code{RSQRTPS})
14393 with an additional Newton-Raphson step
14394 to increase precision instead of @code{DIVSS} and @code{SQRTSS}
14395 (and their vectorized
14396 variants) for single-precision floating-point arguments.  These instructions
14397 are generated only when @option{-funsafe-math-optimizations} is enabled
14398 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
14399 Note that while the throughput of the sequence is higher than the throughput
14400 of the non-reciprocal instruction, the precision of the sequence can be
14401 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
14403 Note that GCC implements @code{1.0f/sqrtf(@var{x})} in terms of @code{RSQRTSS}
14404 (or @code{RSQRTPS}) already with @option{-ffast-math} (or the above option
14405 combination), and doesn't need @option{-mrecip}.
14407 Also note that GCC emits the above sequence with additional Newton-Raphson step
14408 for vectorized single-float division and vectorized @code{sqrtf(@var{x})}
14409 already with @option{-ffast-math} (or the above option combination), and
14410 doesn't need @option{-mrecip}.
14412 @item -mrecip=@var{opt}
14413 @opindex mrecip=opt
14414 This option controls which reciprocal estimate instructions
14415 may be used.  @var{opt} is a comma-separated list of options, which may
14416 be preceded by a @samp{!} to invert the option:
14418 @table @samp
14419 @item all
14420 Enable all estimate instructions.
14422 @item default
14423 Enable the default instructions, equivalent to @option{-mrecip}.
14425 @item none
14426 Disable all estimate instructions, equivalent to @option{-mno-recip}.
14428 @item div
14429 Enable the approximation for scalar division.
14431 @item vec-div
14432 Enable the approximation for vectorized division.
14434 @item sqrt
14435 Enable the approximation for scalar square root.
14437 @item vec-sqrt
14438 Enable the approximation for vectorized square root.
14439 @end table
14441 So, for example, @option{-mrecip=all,!sqrt} enables
14442 all of the reciprocal approximations, except for square root.
14444 @item -mveclibabi=@var{type}
14445 @opindex mveclibabi
14446 Specifies the ABI type to use for vectorizing intrinsics using an
14447 external library.  Supported values for @var{type} are @samp{svml} 
14448 for the Intel short
14449 vector math library and @samp{acml} for the AMD math core library.
14450 To use this option, both @option{-ftree-vectorize} and
14451 @option{-funsafe-math-optimizations} have to be enabled, and an SVML or ACML 
14452 ABI-compatible library must be specified at link time.
14454 GCC currently emits calls to @code{vmldExp2},
14455 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
14456 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
14457 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
14458 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
14459 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
14460 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
14461 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
14462 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
14463 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
14464 function type when @option{-mveclibabi=svml} is used, and @code{__vrd2_sin},
14465 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
14466 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
14467 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
14468 @code{__vrs4_log10f} and @code{__vrs4_powf} for the corresponding function type
14469 when @option{-mveclibabi=acml} is used.  
14471 @item -mabi=@var{name}
14472 @opindex mabi
14473 Generate code for the specified calling convention.  Permissible values
14474 are @samp{sysv} for the ABI used on GNU/Linux and other systems, and
14475 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
14476 ABI when targeting Microsoft Windows and the SysV ABI on all other systems.
14477 You can control this behavior for a specific function by
14478 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
14479 @xref{Function Attributes}.
14481 @item -mtls-dialect=@var{type}
14482 @opindex mtls-dialect
14483 Generate code to access thread-local storage using the @samp{gnu} or
14484 @samp{gnu2} conventions.  @samp{gnu} is the conservative default;
14485 @samp{gnu2} is more efficient, but it may add compile- and run-time
14486 requirements that cannot be satisfied on all systems.
14488 @item -mpush-args
14489 @itemx -mno-push-args
14490 @opindex mpush-args
14491 @opindex mno-push-args
14492 Use PUSH operations to store outgoing parameters.  This method is shorter
14493 and usually equally fast as method using SUB/MOV operations and is enabled
14494 by default.  In some cases disabling it may improve performance because of
14495 improved scheduling and reduced dependencies.
14497 @item -maccumulate-outgoing-args
14498 @opindex maccumulate-outgoing-args
14499 If enabled, the maximum amount of space required for outgoing arguments is
14500 computed in the function prologue.  This is faster on most modern CPUs
14501 because of reduced dependencies, improved scheduling and reduced stack usage
14502 when the preferred stack boundary is not equal to 2.  The drawback is a notable
14503 increase in code size.  This switch implies @option{-mno-push-args}.
14505 @item -mthreads
14506 @opindex mthreads
14507 Support thread-safe exception handling on MinGW.  Programs that rely
14508 on thread-safe exception handling must compile and link all code with the
14509 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
14510 @code{-D_MT}; when linking, it links in a special thread helper library
14511 @option{-lmingwthrd} which cleans up per-thread exception-handling data.
14513 @item -mno-align-stringops
14514 @opindex mno-align-stringops
14515 Do not align the destination of inlined string operations.  This switch reduces
14516 code size and improves performance in case the destination is already aligned,
14517 but GCC doesn't know about it.
14519 @item -minline-all-stringops
14520 @opindex minline-all-stringops
14521 By default GCC inlines string operations only when the destination is 
14522 known to be aligned to least a 4-byte boundary.  
14523 This enables more inlining and increases code
14524 size, but may improve performance of code that depends on fast
14525 @code{memcpy}, @code{strlen},
14526 and @code{memset} for short lengths.
14528 @item -minline-stringops-dynamically
14529 @opindex minline-stringops-dynamically
14530 For string operations of unknown size, use run-time checks with
14531 inline code for small blocks and a library call for large blocks.
14533 @item -mstringop-strategy=@var{alg}
14534 @opindex mstringop-strategy=@var{alg}
14535 Override the internal decision heuristic for the particular algorithm to use
14536 for inlining string operations.  The allowed values for @var{alg} are:
14538 @table @samp
14539 @item rep_byte
14540 @itemx rep_4byte
14541 @itemx rep_8byte
14542 Expand using i386 @code{rep} prefix of the specified size.
14544 @item byte_loop
14545 @itemx loop
14546 @itemx unrolled_loop
14547 Expand into an inline loop.
14549 @item libcall
14550 Always use a library call.
14551 @end table
14553 @item -momit-leaf-frame-pointer
14554 @opindex momit-leaf-frame-pointer
14555 Don't keep the frame pointer in a register for leaf functions.  This
14556 avoids the instructions to save, set up, and restore frame pointers and
14557 makes an extra register available in leaf functions.  The option
14558 @option{-fomit-leaf-frame-pointer} removes the frame pointer for leaf functions,
14559 which might make debugging harder.
14561 @item -mtls-direct-seg-refs
14562 @itemx -mno-tls-direct-seg-refs
14563 @opindex mtls-direct-seg-refs
14564 Controls whether TLS variables may be accessed with offsets from the
14565 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
14566 or whether the thread base pointer must be added.  Whether or not this
14567 is valid depends on the operating system, and whether it maps the
14568 segment to cover the entire TLS area.
14570 For systems that use the GNU C Library, the default is on.
14572 @item -msse2avx
14573 @itemx -mno-sse2avx
14574 @opindex msse2avx
14575 Specify that the assembler should encode SSE instructions with VEX
14576 prefix.  The option @option{-mavx} turns this on by default.
14578 @item -mfentry
14579 @itemx -mno-fentry
14580 @opindex mfentry
14581 If profiling is active (@option{-pg}), put the profiling
14582 counter call before the prologue.
14583 Note: On x86 architectures the attribute @code{ms_hook_prologue}
14584 isn't possible at the moment for @option{-mfentry} and @option{-pg}.
14586 @item -m8bit-idiv
14587 @itemx -mno-8bit-idiv
14588 @opindex 8bit-idiv
14589 On some processors, like Intel Atom, 8-bit unsigned integer divide is
14590 much faster than 32-bit/64-bit integer divide.  This option generates a
14591 run-time check.  If both dividend and divisor are within range of 0
14592 to 255, 8-bit unsigned integer divide is used instead of
14593 32-bit/64-bit integer divide.
14595 @item -mavx256-split-unaligned-load
14596 @itemx -mavx256-split-unaligned-store
14597 @opindex avx256-split-unaligned-load
14598 @opindex avx256-split-unaligned-store
14599 Split 32-byte AVX unaligned load and store.
14601 @item -mstack-protector-guard=@var{guard}
14602 @opindex mstack-protector-guard=@var{guard}
14603 Generate stack protection code using canary at @var{guard}.  Supported
14604 locations are @samp{global} for global canary or @samp{tls} for per-thread
14605 canary in the TLS block (the default).  This option has effect only when
14606 @option{-fstack-protector} or @option{-fstack-protector-all} is specified.
14608 @end table
14610 These @samp{-m} switches are supported in addition to the above
14611 on x86-64 processors in 64-bit environments.
14613 @table @gcctabopt
14614 @item -m32
14615 @itemx -m64
14616 @itemx -mx32
14617 @opindex m32
14618 @opindex m64
14619 @opindex mx32
14620 Generate code for a 32-bit or 64-bit environment.
14621 The @option{-m32} option sets @code{int}, @code{long}, and pointer types
14622 to 32 bits, and
14623 generates code that runs on any i386 system.
14625 The @option{-m64} option sets @code{int} to 32 bits and @code{long} and pointer
14626 types to 64 bits, and generates code for the x86-64 architecture.
14627 For Darwin only the @option{-m64} option also turns off the @option{-fno-pic}
14628 and @option{-mdynamic-no-pic} options.
14630 The @option{-mx32} option sets @code{int}, @code{long}, and pointer types
14631 to 32 bits, and
14632 generates code for the x86-64 architecture.
14634 @item -mno-red-zone
14635 @opindex mno-red-zone
14636 Do not use a so-called ``red zone'' for x86-64 code.  The red zone is mandated
14637 by the x86-64 ABI; it is a 128-byte area beyond the location of the
14638 stack pointer that is not modified by signal or interrupt handlers
14639 and therefore can be used for temporary data without adjusting the stack
14640 pointer.  The flag @option{-mno-red-zone} disables this red zone.
14642 @item -mcmodel=small
14643 @opindex mcmodel=small
14644 Generate code for the small code model: the program and its symbols must
14645 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
14646 Programs can be statically or dynamically linked.  This is the default
14647 code model.
14649 @item -mcmodel=kernel
14650 @opindex mcmodel=kernel
14651 Generate code for the kernel code model.  The kernel runs in the
14652 negative 2 GB of the address space.
14653 This model has to be used for Linux kernel code.
14655 @item -mcmodel=medium
14656 @opindex mcmodel=medium
14657 Generate code for the medium model: the program is linked in the lower 2
14658 GB of the address space.  Small symbols are also placed there.  Symbols
14659 with sizes larger than @option{-mlarge-data-threshold} are put into
14660 large data or BSS sections and can be located above 2GB.  Programs can
14661 be statically or dynamically linked.
14663 @item -mcmodel=large
14664 @opindex mcmodel=large
14665 Generate code for the large model.  This model makes no assumptions
14666 about addresses and sizes of sections.
14668 @item -maddress-mode=long
14669 @opindex maddress-mode=long
14670 Generate code for long address mode.  This is only supported for 64-bit
14671 and x32 environments.  It is the default address mode for 64-bit
14672 environments.
14674 @item -maddress-mode=short
14675 @opindex maddress-mode=short
14676 Generate code for short address mode.  This is only supported for 32-bit
14677 and x32 environments.  It is the default address mode for 32-bit and
14678 x32 environments.
14679 @end table
14681 @node i386 and x86-64 Windows Options
14682 @subsection i386 and x86-64 Windows Options
14683 @cindex i386 and x86-64 Windows Options
14685 These additional options are available for Microsoft Windows targets:
14687 @table @gcctabopt
14688 @item -mconsole
14689 @opindex mconsole
14690 This option
14691 specifies that a console application is to be generated, by
14692 instructing the linker to set the PE header subsystem type
14693 required for console applications.
14694 This option is available for Cygwin and MinGW targets and is
14695 enabled by default on those targets.
14697 @item -mdll
14698 @opindex mdll
14699 This option is available for Cygwin and MinGW targets.  It
14700 specifies that a DLL---a dynamic link library---is to be
14701 generated, enabling the selection of the required runtime
14702 startup object and entry point.
14704 @item -mnop-fun-dllimport
14705 @opindex mnop-fun-dllimport
14706 This option is available for Cygwin and MinGW targets.  It
14707 specifies that the @code{dllimport} attribute should be ignored.
14709 @item -mthread
14710 @opindex mthread
14711 This option is available for MinGW targets. It specifies
14712 that MinGW-specific thread support is to be used.
14714 @item -municode
14715 @opindex municode
14716 This option is available for MinGW-w64 targets.  It causes
14717 the @code{UNICODE} preprocessor macro to be predefined, and
14718 chooses Unicode-capable runtime startup code.
14720 @item -mwin32
14721 @opindex mwin32
14722 This option is available for Cygwin and MinGW targets.  It
14723 specifies that the typical Microsoft Windows predefined macros are to
14724 be set in the pre-processor, but does not influence the choice
14725 of runtime library/startup code.
14727 @item -mwindows
14728 @opindex mwindows
14729 This option is available for Cygwin and MinGW targets.  It
14730 specifies that a GUI application is to be generated by
14731 instructing the linker to set the PE header subsystem type
14732 appropriately.
14734 @item -fno-set-stack-executable
14735 @opindex fno-set-stack-executable
14736 This option is available for MinGW targets. It specifies that
14737 the executable flag for the stack used by nested functions isn't
14738 set. This is necessary for binaries running in kernel mode of
14739 Microsoft Windows, as there the User32 API, which is used to set executable
14740 privileges, isn't available.
14742 @item -fwritable-relocated-rdata
14743 @opindex fno-writable-relocated-rdata
14744 This option is available for MinGW and Cygwin targets.  It specifies
14745 that relocated-data in read-only section is put into .data
14746 section.  This is a necessary for older runtimes not supporting
14747 modification of .rdata sections for pseudo-relocation.
14749 @item -mpe-aligned-commons
14750 @opindex mpe-aligned-commons
14751 This option is available for Cygwin and MinGW targets.  It
14752 specifies that the GNU extension to the PE file format that
14753 permits the correct alignment of COMMON variables should be
14754 used when generating code.  It is enabled by default if
14755 GCC detects that the target assembler found during configuration
14756 supports the feature.
14757 @end table
14759 See also under @ref{i386 and x86-64 Options} for standard options.
14761 @node IA-64 Options
14762 @subsection IA-64 Options
14763 @cindex IA-64 Options
14765 These are the @samp{-m} options defined for the Intel IA-64 architecture.
14767 @table @gcctabopt
14768 @item -mbig-endian
14769 @opindex mbig-endian
14770 Generate code for a big-endian target.  This is the default for HP-UX@.
14772 @item -mlittle-endian
14773 @opindex mlittle-endian
14774 Generate code for a little-endian target.  This is the default for AIX5
14775 and GNU/Linux.
14777 @item -mgnu-as
14778 @itemx -mno-gnu-as
14779 @opindex mgnu-as
14780 @opindex mno-gnu-as
14781 Generate (or don't) code for the GNU assembler.  This is the default.
14782 @c Also, this is the default if the configure option @option{--with-gnu-as}
14783 @c is used.
14785 @item -mgnu-ld
14786 @itemx -mno-gnu-ld
14787 @opindex mgnu-ld
14788 @opindex mno-gnu-ld
14789 Generate (or don't) code for the GNU linker.  This is the default.
14790 @c Also, this is the default if the configure option @option{--with-gnu-ld}
14791 @c is used.
14793 @item -mno-pic
14794 @opindex mno-pic
14795 Generate code that does not use a global pointer register.  The result
14796 is not position independent code, and violates the IA-64 ABI@.
14798 @item -mvolatile-asm-stop
14799 @itemx -mno-volatile-asm-stop
14800 @opindex mvolatile-asm-stop
14801 @opindex mno-volatile-asm-stop
14802 Generate (or don't) a stop bit immediately before and after volatile asm
14803 statements.
14805 @item -mregister-names
14806 @itemx -mno-register-names
14807 @opindex mregister-names
14808 @opindex mno-register-names
14809 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
14810 the stacked registers.  This may make assembler output more readable.
14812 @item -mno-sdata
14813 @itemx -msdata
14814 @opindex mno-sdata
14815 @opindex msdata
14816 Disable (or enable) optimizations that use the small data section.  This may
14817 be useful for working around optimizer bugs.
14819 @item -mconstant-gp
14820 @opindex mconstant-gp
14821 Generate code that uses a single constant global pointer value.  This is
14822 useful when compiling kernel code.
14824 @item -mauto-pic
14825 @opindex mauto-pic
14826 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
14827 This is useful when compiling firmware code.
14829 @item -minline-float-divide-min-latency
14830 @opindex minline-float-divide-min-latency
14831 Generate code for inline divides of floating-point values
14832 using the minimum latency algorithm.
14834 @item -minline-float-divide-max-throughput
14835 @opindex minline-float-divide-max-throughput
14836 Generate code for inline divides of floating-point values
14837 using the maximum throughput algorithm.
14839 @item -mno-inline-float-divide
14840 @opindex mno-inline-float-divide
14841 Do not generate inline code for divides of floating-point values.
14843 @item -minline-int-divide-min-latency
14844 @opindex minline-int-divide-min-latency
14845 Generate code for inline divides of integer values
14846 using the minimum latency algorithm.
14848 @item -minline-int-divide-max-throughput
14849 @opindex minline-int-divide-max-throughput
14850 Generate code for inline divides of integer values
14851 using the maximum throughput algorithm.
14853 @item -mno-inline-int-divide
14854 @opindex mno-inline-int-divide
14855 Do not generate inline code for divides of integer values.
14857 @item -minline-sqrt-min-latency
14858 @opindex minline-sqrt-min-latency
14859 Generate code for inline square roots
14860 using the minimum latency algorithm.
14862 @item -minline-sqrt-max-throughput
14863 @opindex minline-sqrt-max-throughput
14864 Generate code for inline square roots
14865 using the maximum throughput algorithm.
14867 @item -mno-inline-sqrt
14868 @opindex mno-inline-sqrt
14869 Do not generate inline code for @code{sqrt}.
14871 @item -mfused-madd
14872 @itemx -mno-fused-madd
14873 @opindex mfused-madd
14874 @opindex mno-fused-madd
14875 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
14876 instructions.  The default is to use these instructions.
14878 @item -mno-dwarf2-asm
14879 @itemx -mdwarf2-asm
14880 @opindex mno-dwarf2-asm
14881 @opindex mdwarf2-asm
14882 Don't (or do) generate assembler code for the DWARF 2 line number debugging
14883 info.  This may be useful when not using the GNU assembler.
14885 @item -mearly-stop-bits
14886 @itemx -mno-early-stop-bits
14887 @opindex mearly-stop-bits
14888 @opindex mno-early-stop-bits
14889 Allow stop bits to be placed earlier than immediately preceding the
14890 instruction that triggered the stop bit.  This can improve instruction
14891 scheduling, but does not always do so.
14893 @item -mfixed-range=@var{register-range}
14894 @opindex mfixed-range
14895 Generate code treating the given register range as fixed registers.
14896 A fixed register is one that the register allocator cannot use.  This is
14897 useful when compiling kernel code.  A register range is specified as
14898 two registers separated by a dash.  Multiple register ranges can be
14899 specified separated by a comma.
14901 @item -mtls-size=@var{tls-size}
14902 @opindex mtls-size
14903 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
14906 @item -mtune=@var{cpu-type}
14907 @opindex mtune
14908 Tune the instruction scheduling for a particular CPU, Valid values are
14909 @samp{itanium}, @samp{itanium1}, @samp{merced}, @samp{itanium2},
14910 and @samp{mckinley}.
14912 @item -milp32
14913 @itemx -mlp64
14914 @opindex milp32
14915 @opindex mlp64
14916 Generate code for a 32-bit or 64-bit environment.
14917 The 32-bit environment sets int, long and pointer to 32 bits.
14918 The 64-bit environment sets int to 32 bits and long and pointer
14919 to 64 bits.  These are HP-UX specific flags.
14921 @item -mno-sched-br-data-spec
14922 @itemx -msched-br-data-spec
14923 @opindex mno-sched-br-data-spec
14924 @opindex msched-br-data-spec
14925 (Dis/En)able data speculative scheduling before reload.
14926 This results in generation of @code{ld.a} instructions and
14927 the corresponding check instructions (@code{ld.c} / @code{chk.a}).
14928 The default is 'disable'.
14930 @item -msched-ar-data-spec
14931 @itemx -mno-sched-ar-data-spec
14932 @opindex msched-ar-data-spec
14933 @opindex mno-sched-ar-data-spec
14934 (En/Dis)able data speculative scheduling after reload.
14935 This results in generation of @code{ld.a} instructions and
14936 the corresponding check instructions (@code{ld.c} / @code{chk.a}).
14937 The default is 'enable'.
14939 @item -mno-sched-control-spec
14940 @itemx -msched-control-spec
14941 @opindex mno-sched-control-spec
14942 @opindex msched-control-spec
14943 (Dis/En)able control speculative scheduling.  This feature is
14944 available only during region scheduling (i.e.@: before reload).
14945 This results in generation of the @code{ld.s} instructions and
14946 the corresponding check instructions @code{chk.s}.
14947 The default is 'disable'.
14949 @item -msched-br-in-data-spec
14950 @itemx -mno-sched-br-in-data-spec
14951 @opindex msched-br-in-data-spec
14952 @opindex mno-sched-br-in-data-spec
14953 (En/Dis)able speculative scheduling of the instructions that
14954 are dependent on the data speculative loads before reload.
14955 This is effective only with @option{-msched-br-data-spec} enabled.
14956 The default is 'enable'.
14958 @item -msched-ar-in-data-spec
14959 @itemx -mno-sched-ar-in-data-spec
14960 @opindex msched-ar-in-data-spec
14961 @opindex mno-sched-ar-in-data-spec
14962 (En/Dis)able speculative scheduling of the instructions that
14963 are dependent on the data speculative loads after reload.
14964 This is effective only with @option{-msched-ar-data-spec} enabled.
14965 The default is 'enable'.
14967 @item -msched-in-control-spec
14968 @itemx -mno-sched-in-control-spec
14969 @opindex msched-in-control-spec
14970 @opindex mno-sched-in-control-spec
14971 (En/Dis)able speculative scheduling of the instructions that
14972 are dependent on the control speculative loads.
14973 This is effective only with @option{-msched-control-spec} enabled.
14974 The default is 'enable'.
14976 @item -mno-sched-prefer-non-data-spec-insns
14977 @itemx -msched-prefer-non-data-spec-insns
14978 @opindex mno-sched-prefer-non-data-spec-insns
14979 @opindex msched-prefer-non-data-spec-insns
14980 If enabled, data-speculative instructions are chosen for schedule
14981 only if there are no other choices at the moment.  This makes
14982 the use of the data speculation much more conservative.
14983 The default is 'disable'.
14985 @item -mno-sched-prefer-non-control-spec-insns
14986 @itemx -msched-prefer-non-control-spec-insns
14987 @opindex mno-sched-prefer-non-control-spec-insns
14988 @opindex msched-prefer-non-control-spec-insns
14989 If enabled, control-speculative instructions are chosen for schedule
14990 only if there are no other choices at the moment.  This makes
14991 the use of the control speculation much more conservative.
14992 The default is 'disable'.
14994 @item -mno-sched-count-spec-in-critical-path
14995 @itemx -msched-count-spec-in-critical-path
14996 @opindex mno-sched-count-spec-in-critical-path
14997 @opindex msched-count-spec-in-critical-path
14998 If enabled, speculative dependencies are considered during
14999 computation of the instructions priorities.  This makes the use of the
15000 speculation a bit more conservative.
15001 The default is 'disable'.
15003 @item -msched-spec-ldc
15004 @opindex msched-spec-ldc
15005 Use a simple data speculation check.  This option is on by default.
15007 @item -msched-control-spec-ldc
15008 @opindex msched-spec-ldc
15009 Use a simple check for control speculation.  This option is on by default.
15011 @item -msched-stop-bits-after-every-cycle
15012 @opindex msched-stop-bits-after-every-cycle
15013 Place a stop bit after every cycle when scheduling.  This option is on
15014 by default.
15016 @item -msched-fp-mem-deps-zero-cost
15017 @opindex msched-fp-mem-deps-zero-cost
15018 Assume that floating-point stores and loads are not likely to cause a conflict
15019 when placed into the same instruction group.  This option is disabled by
15020 default.
15022 @item -msel-sched-dont-check-control-spec
15023 @opindex msel-sched-dont-check-control-spec
15024 Generate checks for control speculation in selective scheduling.
15025 This flag is disabled by default.
15027 @item -msched-max-memory-insns=@var{max-insns}
15028 @opindex msched-max-memory-insns
15029 Limit on the number of memory insns per instruction group, giving lower
15030 priority to subsequent memory insns attempting to schedule in the same
15031 instruction group. Frequently useful to prevent cache bank conflicts.
15032 The default value is 1.
15034 @item -msched-max-memory-insns-hard-limit
15035 @opindex msched-max-memory-insns-hard-limit
15036 Makes the limit specified by @option{msched-max-memory-insns} a hard limit,
15037 disallowing more than that number in an instruction group.
15038 Otherwise, the limit is ``soft'', meaning that non-memory operations
15039 are preferred when the limit is reached, but memory operations may still
15040 be scheduled.
15042 @end table
15044 @node LM32 Options
15045 @subsection LM32 Options
15046 @cindex LM32 options
15048 These @option{-m} options are defined for the LatticeMico32 architecture:
15050 @table @gcctabopt
15051 @item -mbarrel-shift-enabled
15052 @opindex mbarrel-shift-enabled
15053 Enable barrel-shift instructions.
15055 @item -mdivide-enabled
15056 @opindex mdivide-enabled
15057 Enable divide and modulus instructions.
15059 @item -mmultiply-enabled
15060 @opindex multiply-enabled
15061 Enable multiply instructions.
15063 @item -msign-extend-enabled
15064 @opindex msign-extend-enabled
15065 Enable sign extend instructions.
15067 @item -muser-enabled
15068 @opindex muser-enabled
15069 Enable user-defined instructions.
15071 @end table
15073 @node M32C Options
15074 @subsection M32C Options
15075 @cindex M32C options
15077 @table @gcctabopt
15078 @item -mcpu=@var{name}
15079 @opindex mcpu=
15080 Select the CPU for which code is generated.  @var{name} may be one of
15081 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
15082 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
15083 the M32C/80 series.
15085 @item -msim
15086 @opindex msim
15087 Specifies that the program will be run on the simulator.  This causes
15088 an alternate runtime library to be linked in which supports, for
15089 example, file I/O@.  You must not use this option when generating
15090 programs that will run on real hardware; you must provide your own
15091 runtime library for whatever I/O functions are needed.
15093 @item -memregs=@var{number}
15094 @opindex memregs=
15095 Specifies the number of memory-based pseudo-registers GCC uses
15096 during code generation.  These pseudo-registers are used like real
15097 registers, so there is a tradeoff between GCC's ability to fit the
15098 code into available registers, and the performance penalty of using
15099 memory instead of registers.  Note that all modules in a program must
15100 be compiled with the same value for this option.  Because of that, you
15101 must not use this option with GCC's default runtime libraries.
15103 @end table
15105 @node M32R/D Options
15106 @subsection M32R/D Options
15107 @cindex M32R/D options
15109 These @option{-m} options are defined for Renesas M32R/D architectures:
15111 @table @gcctabopt
15112 @item -m32r2
15113 @opindex m32r2
15114 Generate code for the M32R/2@.
15116 @item -m32rx
15117 @opindex m32rx
15118 Generate code for the M32R/X@.
15120 @item -m32r
15121 @opindex m32r
15122 Generate code for the M32R@.  This is the default.
15124 @item -mmodel=small
15125 @opindex mmodel=small
15126 Assume all objects live in the lower 16MB of memory (so that their addresses
15127 can be loaded with the @code{ld24} instruction), and assume all subroutines
15128 are reachable with the @code{bl} instruction.
15129 This is the default.
15131 The addressability of a particular object can be set with the
15132 @code{model} attribute.
15134 @item -mmodel=medium
15135 @opindex mmodel=medium
15136 Assume objects may be anywhere in the 32-bit address space (the compiler
15137 generates @code{seth/add3} instructions to load their addresses), and
15138 assume all subroutines are reachable with the @code{bl} instruction.
15140 @item -mmodel=large
15141 @opindex mmodel=large
15142 Assume objects may be anywhere in the 32-bit address space (the compiler
15143 generates @code{seth/add3} instructions to load their addresses), and
15144 assume subroutines may not be reachable with the @code{bl} instruction
15145 (the compiler generates the much slower @code{seth/add3/jl}
15146 instruction sequence).
15148 @item -msdata=none
15149 @opindex msdata=none
15150 Disable use of the small data area.  Variables are put into
15151 one of @samp{.data}, @samp{.bss}, or @samp{.rodata} (unless the
15152 @code{section} attribute has been specified).
15153 This is the default.
15155 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
15156 Objects may be explicitly put in the small data area with the
15157 @code{section} attribute using one of these sections.
15159 @item -msdata=sdata
15160 @opindex msdata=sdata
15161 Put small global and static data in the small data area, but do not
15162 generate special code to reference them.
15164 @item -msdata=use
15165 @opindex msdata=use
15166 Put small global and static data in the small data area, and generate
15167 special instructions to reference them.
15169 @item -G @var{num}
15170 @opindex G
15171 @cindex smaller data references
15172 Put global and static objects less than or equal to @var{num} bytes
15173 into the small data or BSS sections instead of the normal data or BSS
15174 sections.  The default value of @var{num} is 8.
15175 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
15176 for this option to have any effect.
15178 All modules should be compiled with the same @option{-G @var{num}} value.
15179 Compiling with different values of @var{num} may or may not work; if it
15180 doesn't the linker gives an error message---incorrect code is not
15181 generated.
15183 @item -mdebug
15184 @opindex mdebug
15185 Makes the M32R-specific code in the compiler display some statistics
15186 that might help in debugging programs.
15188 @item -malign-loops
15189 @opindex malign-loops
15190 Align all loops to a 32-byte boundary.
15192 @item -mno-align-loops
15193 @opindex mno-align-loops
15194 Do not enforce a 32-byte alignment for loops.  This is the default.
15196 @item -missue-rate=@var{number}
15197 @opindex missue-rate=@var{number}
15198 Issue @var{number} instructions per cycle.  @var{number} can only be 1
15199 or 2.
15201 @item -mbranch-cost=@var{number}
15202 @opindex mbranch-cost=@var{number}
15203 @var{number} can only be 1 or 2.  If it is 1 then branches are
15204 preferred over conditional code, if it is 2, then the opposite applies.
15206 @item -mflush-trap=@var{number}
15207 @opindex mflush-trap=@var{number}
15208 Specifies the trap number to use to flush the cache.  The default is
15209 12.  Valid numbers are between 0 and 15 inclusive.
15211 @item -mno-flush-trap
15212 @opindex mno-flush-trap
15213 Specifies that the cache cannot be flushed by using a trap.
15215 @item -mflush-func=@var{name}
15216 @opindex mflush-func=@var{name}
15217 Specifies the name of the operating system function to call to flush
15218 the cache.  The default is @emph{_flush_cache}, but a function call
15219 is only used if a trap is not available.
15221 @item -mno-flush-func
15222 @opindex mno-flush-func
15223 Indicates that there is no OS function for flushing the cache.
15225 @end table
15227 @node M680x0 Options
15228 @subsection M680x0 Options
15229 @cindex M680x0 options
15231 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
15232 The default settings depend on which architecture was selected when
15233 the compiler was configured; the defaults for the most common choices
15234 are given below.
15236 @table @gcctabopt
15237 @item -march=@var{arch}
15238 @opindex march
15239 Generate code for a specific M680x0 or ColdFire instruction set
15240 architecture.  Permissible values of @var{arch} for M680x0
15241 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
15242 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
15243 architectures are selected according to Freescale's ISA classification
15244 and the permissible values are: @samp{isaa}, @samp{isaaplus},
15245 @samp{isab} and @samp{isac}.
15247 GCC defines a macro @samp{__mcf@var{arch}__} whenever it is generating
15248 code for a ColdFire target.  The @var{arch} in this macro is one of the
15249 @option{-march} arguments given above.
15251 When used together, @option{-march} and @option{-mtune} select code
15252 that runs on a family of similar processors but that is optimized
15253 for a particular microarchitecture.
15255 @item -mcpu=@var{cpu}
15256 @opindex mcpu
15257 Generate code for a specific M680x0 or ColdFire processor.
15258 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
15259 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
15260 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
15261 below, which also classifies the CPUs into families:
15263 @multitable @columnfractions 0.20 0.80
15264 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
15265 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51ag} @samp{51cn} @samp{51em} @samp{51je} @samp{51jf} @samp{51jg} @samp{51jm} @samp{51mm} @samp{51qe} @samp{51qm}
15266 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
15267 @item @samp{5206e} @tab @samp{5206e}
15268 @item @samp{5208} @tab @samp{5207} @samp{5208}
15269 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
15270 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
15271 @item @samp{5216} @tab @samp{5214} @samp{5216}
15272 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
15273 @item @samp{5225} @tab @samp{5224} @samp{5225}
15274 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
15275 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
15276 @item @samp{5249} @tab @samp{5249}
15277 @item @samp{5250} @tab @samp{5250}
15278 @item @samp{5271} @tab @samp{5270} @samp{5271}
15279 @item @samp{5272} @tab @samp{5272}
15280 @item @samp{5275} @tab @samp{5274} @samp{5275}
15281 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
15282 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
15283 @item @samp{5307} @tab @samp{5307}
15284 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
15285 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
15286 @item @samp{5407} @tab @samp{5407}
15287 @item @samp{5475} @tab @samp{5470} @samp{5471} @samp{5472} @samp{5473} @samp{5474} @samp{5475} @samp{547x} @samp{5480} @samp{5481} @samp{5482} @samp{5483} @samp{5484} @samp{5485}
15288 @end multitable
15290 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
15291 @var{arch} is compatible with @var{cpu}.  Other combinations of
15292 @option{-mcpu} and @option{-march} are rejected.
15294 GCC defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
15295 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
15296 where the value of @var{family} is given by the table above.
15298 @item -mtune=@var{tune}
15299 @opindex mtune
15300 Tune the code for a particular microarchitecture within the
15301 constraints set by @option{-march} and @option{-mcpu}.
15302 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
15303 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
15304 and @samp{cpu32}.  The ColdFire microarchitectures
15305 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
15307 You can also use @option{-mtune=68020-40} for code that needs
15308 to run relatively well on 68020, 68030 and 68040 targets.
15309 @option{-mtune=68020-60} is similar but includes 68060 targets
15310 as well.  These two options select the same tuning decisions as
15311 @option{-m68020-40} and @option{-m68020-60} respectively.
15313 GCC defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
15314 when tuning for 680x0 architecture @var{arch}.  It also defines
15315 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
15316 option is used.  If GCC is tuning for a range of architectures,
15317 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
15318 it defines the macros for every architecture in the range.
15320 GCC also defines the macro @samp{__m@var{uarch}__} when tuning for
15321 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
15322 of the arguments given above.
15324 @item -m68000
15325 @itemx -mc68000
15326 @opindex m68000
15327 @opindex mc68000
15328 Generate output for a 68000.  This is the default
15329 when the compiler is configured for 68000-based systems.
15330 It is equivalent to @option{-march=68000}.
15332 Use this option for microcontrollers with a 68000 or EC000 core,
15333 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
15335 @item -m68010
15336 @opindex m68010
15337 Generate output for a 68010.  This is the default
15338 when the compiler is configured for 68010-based systems.
15339 It is equivalent to @option{-march=68010}.
15341 @item -m68020
15342 @itemx -mc68020
15343 @opindex m68020
15344 @opindex mc68020
15345 Generate output for a 68020.  This is the default
15346 when the compiler is configured for 68020-based systems.
15347 It is equivalent to @option{-march=68020}.
15349 @item -m68030
15350 @opindex m68030
15351 Generate output for a 68030.  This is the default when the compiler is
15352 configured for 68030-based systems.  It is equivalent to
15353 @option{-march=68030}.
15355 @item -m68040
15356 @opindex m68040
15357 Generate output for a 68040.  This is the default when the compiler is
15358 configured for 68040-based systems.  It is equivalent to
15359 @option{-march=68040}.
15361 This option inhibits the use of 68881/68882 instructions that have to be
15362 emulated by software on the 68040.  Use this option if your 68040 does not
15363 have code to emulate those instructions.
15365 @item -m68060
15366 @opindex m68060
15367 Generate output for a 68060.  This is the default when the compiler is
15368 configured for 68060-based systems.  It is equivalent to
15369 @option{-march=68060}.
15371 This option inhibits the use of 68020 and 68881/68882 instructions that
15372 have to be emulated by software on the 68060.  Use this option if your 68060
15373 does not have code to emulate those instructions.
15375 @item -mcpu32
15376 @opindex mcpu32
15377 Generate output for a CPU32.  This is the default
15378 when the compiler is configured for CPU32-based systems.
15379 It is equivalent to @option{-march=cpu32}.
15381 Use this option for microcontrollers with a
15382 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
15383 68336, 68340, 68341, 68349 and 68360.
15385 @item -m5200
15386 @opindex m5200
15387 Generate output for a 520X ColdFire CPU@.  This is the default
15388 when the compiler is configured for 520X-based systems.
15389 It is equivalent to @option{-mcpu=5206}, and is now deprecated
15390 in favor of that option.
15392 Use this option for microcontroller with a 5200 core, including
15393 the MCF5202, MCF5203, MCF5204 and MCF5206.
15395 @item -m5206e
15396 @opindex m5206e
15397 Generate output for a 5206e ColdFire CPU@.  The option is now
15398 deprecated in favor of the equivalent @option{-mcpu=5206e}.
15400 @item -m528x
15401 @opindex m528x
15402 Generate output for a member of the ColdFire 528X family.
15403 The option is now deprecated in favor of the equivalent
15404 @option{-mcpu=528x}.
15406 @item -m5307
15407 @opindex m5307
15408 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
15409 in favor of the equivalent @option{-mcpu=5307}.
15411 @item -m5407
15412 @opindex m5407
15413 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
15414 in favor of the equivalent @option{-mcpu=5407}.
15416 @item -mcfv4e
15417 @opindex mcfv4e
15418 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
15419 This includes use of hardware floating-point instructions.
15420 The option is equivalent to @option{-mcpu=547x}, and is now
15421 deprecated in favor of that option.
15423 @item -m68020-40
15424 @opindex m68020-40
15425 Generate output for a 68040, without using any of the new instructions.
15426 This results in code that can run relatively efficiently on either a
15427 68020/68881 or a 68030 or a 68040.  The generated code does use the
15428 68881 instructions that are emulated on the 68040.
15430 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
15432 @item -m68020-60
15433 @opindex m68020-60
15434 Generate output for a 68060, without using any of the new instructions.
15435 This results in code that can run relatively efficiently on either a
15436 68020/68881 or a 68030 or a 68040.  The generated code does use the
15437 68881 instructions that are emulated on the 68060.
15439 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
15441 @item -mhard-float
15442 @itemx -m68881
15443 @opindex mhard-float
15444 @opindex m68881
15445 Generate floating-point instructions.  This is the default for 68020
15446 and above, and for ColdFire devices that have an FPU@.  It defines the
15447 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
15448 on ColdFire targets.
15450 @item -msoft-float
15451 @opindex msoft-float
15452 Do not generate floating-point instructions; use library calls instead.
15453 This is the default for 68000, 68010, and 68832 targets.  It is also
15454 the default for ColdFire devices that have no FPU.
15456 @item -mdiv
15457 @itemx -mno-div
15458 @opindex mdiv
15459 @opindex mno-div
15460 Generate (do not generate) ColdFire hardware divide and remainder
15461 instructions.  If @option{-march} is used without @option{-mcpu},
15462 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
15463 architectures.  Otherwise, the default is taken from the target CPU
15464 (either the default CPU, or the one specified by @option{-mcpu}).  For
15465 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
15466 @option{-mcpu=5206e}.
15468 GCC defines the macro @samp{__mcfhwdiv__} when this option is enabled.
15470 @item -mshort
15471 @opindex mshort
15472 Consider type @code{int} to be 16 bits wide, like @code{short int}.
15473 Additionally, parameters passed on the stack are also aligned to a
15474 16-bit boundary even on targets whose API mandates promotion to 32-bit.
15476 @item -mno-short
15477 @opindex mno-short
15478 Do not consider type @code{int} to be 16 bits wide.  This is the default.
15480 @item -mnobitfield
15481 @itemx -mno-bitfield
15482 @opindex mnobitfield
15483 @opindex mno-bitfield
15484 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
15485 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
15487 @item -mbitfield
15488 @opindex mbitfield
15489 Do use the bit-field instructions.  The @option{-m68020} option implies
15490 @option{-mbitfield}.  This is the default if you use a configuration
15491 designed for a 68020.
15493 @item -mrtd
15494 @opindex mrtd
15495 Use a different function-calling convention, in which functions
15496 that take a fixed number of arguments return with the @code{rtd}
15497 instruction, which pops their arguments while returning.  This
15498 saves one instruction in the caller since there is no need to pop
15499 the arguments there.
15501 This calling convention is incompatible with the one normally
15502 used on Unix, so you cannot use it if you need to call libraries
15503 compiled with the Unix compiler.
15505 Also, you must provide function prototypes for all functions that
15506 take variable numbers of arguments (including @code{printf});
15507 otherwise incorrect code is generated for calls to those
15508 functions.
15510 In addition, seriously incorrect code results if you call a
15511 function with too many arguments.  (Normally, extra arguments are
15512 harmlessly ignored.)
15514 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
15515 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
15517 @item -mno-rtd
15518 @opindex mno-rtd
15519 Do not use the calling conventions selected by @option{-mrtd}.
15520 This is the default.
15522 @item -malign-int
15523 @itemx -mno-align-int
15524 @opindex malign-int
15525 @opindex mno-align-int
15526 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
15527 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
15528 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
15529 Aligning variables on 32-bit boundaries produces code that runs somewhat
15530 faster on processors with 32-bit busses at the expense of more memory.
15532 @strong{Warning:} if you use the @option{-malign-int} switch, GCC
15533 aligns structures containing the above types differently than
15534 most published application binary interface specifications for the m68k.
15536 @item -mpcrel
15537 @opindex mpcrel
15538 Use the pc-relative addressing mode of the 68000 directly, instead of
15539 using a global offset table.  At present, this option implies @option{-fpic},
15540 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
15541 not presently supported with @option{-mpcrel}, though this could be supported for
15542 68020 and higher processors.
15544 @item -mno-strict-align
15545 @itemx -mstrict-align
15546 @opindex mno-strict-align
15547 @opindex mstrict-align
15548 Do not (do) assume that unaligned memory references are handled by
15549 the system.
15551 @item -msep-data
15552 Generate code that allows the data segment to be located in a different
15553 area of memory from the text segment.  This allows for execute-in-place in
15554 an environment without virtual memory management.  This option implies
15555 @option{-fPIC}.
15557 @item -mno-sep-data
15558 Generate code that assumes that the data segment follows the text segment.
15559 This is the default.
15561 @item -mid-shared-library
15562 Generate code that supports shared libraries via the library ID method.
15563 This allows for execute-in-place and shared libraries in an environment
15564 without virtual memory management.  This option implies @option{-fPIC}.
15566 @item -mno-id-shared-library
15567 Generate code that doesn't assume ID-based shared libraries are being used.
15568 This is the default.
15570 @item -mshared-library-id=n
15571 Specifies the identification number of the ID-based shared library being
15572 compiled.  Specifying a value of 0 generates more compact code; specifying
15573 other values forces the allocation of that number to the current
15574 library, but is no more space- or time-efficient than omitting this option.
15576 @item -mxgot
15577 @itemx -mno-xgot
15578 @opindex mxgot
15579 @opindex mno-xgot
15580 When generating position-independent code for ColdFire, generate code
15581 that works if the GOT has more than 8192 entries.  This code is
15582 larger and slower than code generated without this option.  On M680x0
15583 processors, this option is not needed; @option{-fPIC} suffices.
15585 GCC normally uses a single instruction to load values from the GOT@.
15586 While this is relatively efficient, it only works if the GOT
15587 is smaller than about 64k.  Anything larger causes the linker
15588 to report an error such as:
15590 @cindex relocation truncated to fit (ColdFire)
15591 @smallexample
15592 relocation truncated to fit: R_68K_GOT16O foobar
15593 @end smallexample
15595 If this happens, you should recompile your code with @option{-mxgot}.
15596 It should then work with very large GOTs.  However, code generated with
15597 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
15598 the value of a global symbol.
15600 Note that some linkers, including newer versions of the GNU linker,
15601 can create multiple GOTs and sort GOT entries.  If you have such a linker,
15602 you should only need to use @option{-mxgot} when compiling a single
15603 object file that accesses more than 8192 GOT entries.  Very few do.
15605 These options have no effect unless GCC is generating
15606 position-independent code.
15608 @end table
15610 @node MCore Options
15611 @subsection MCore Options
15612 @cindex MCore options
15614 These are the @samp{-m} options defined for the Motorola M*Core
15615 processors.
15617 @table @gcctabopt
15619 @item -mhardlit
15620 @itemx -mno-hardlit
15621 @opindex mhardlit
15622 @opindex mno-hardlit
15623 Inline constants into the code stream if it can be done in two
15624 instructions or less.
15626 @item -mdiv
15627 @itemx -mno-div
15628 @opindex mdiv
15629 @opindex mno-div
15630 Use the divide instruction.  (Enabled by default).
15632 @item -mrelax-immediate
15633 @itemx -mno-relax-immediate
15634 @opindex mrelax-immediate
15635 @opindex mno-relax-immediate
15636 Allow arbitrary-sized immediates in bit operations.
15638 @item -mwide-bitfields
15639 @itemx -mno-wide-bitfields
15640 @opindex mwide-bitfields
15641 @opindex mno-wide-bitfields
15642 Always treat bit-fields as @code{int}-sized.
15644 @item -m4byte-functions
15645 @itemx -mno-4byte-functions
15646 @opindex m4byte-functions
15647 @opindex mno-4byte-functions
15648 Force all functions to be aligned to a 4-byte boundary.
15650 @item -mcallgraph-data
15651 @itemx -mno-callgraph-data
15652 @opindex mcallgraph-data
15653 @opindex mno-callgraph-data
15654 Emit callgraph information.
15656 @item -mslow-bytes
15657 @itemx -mno-slow-bytes
15658 @opindex mslow-bytes
15659 @opindex mno-slow-bytes
15660 Prefer word access when reading byte quantities.
15662 @item -mlittle-endian
15663 @itemx -mbig-endian
15664 @opindex mlittle-endian
15665 @opindex mbig-endian
15666 Generate code for a little-endian target.
15668 @item -m210
15669 @itemx -m340
15670 @opindex m210
15671 @opindex m340
15672 Generate code for the 210 processor.
15674 @item -mno-lsim
15675 @opindex mno-lsim
15676 Assume that runtime support has been provided and so omit the
15677 simulator library (@file{libsim.a)} from the linker command line.
15679 @item -mstack-increment=@var{size}
15680 @opindex mstack-increment
15681 Set the maximum amount for a single stack increment operation.  Large
15682 values can increase the speed of programs that contain functions
15683 that need a large amount of stack space, but they can also trigger a
15684 segmentation fault if the stack is extended too much.  The default
15685 value is 0x1000.
15687 @end table
15689 @node MeP Options
15690 @subsection MeP Options
15691 @cindex MeP options
15693 @table @gcctabopt
15695 @item -mabsdiff
15696 @opindex mabsdiff
15697 Enables the @code{abs} instruction, which is the absolute difference
15698 between two registers.
15700 @item -mall-opts
15701 @opindex mall-opts
15702 Enables all the optional instructions---average, multiply, divide, bit
15703 operations, leading zero, absolute difference, min/max, clip, and
15704 saturation.
15707 @item -maverage
15708 @opindex maverage
15709 Enables the @code{ave} instruction, which computes the average of two
15710 registers.
15712 @item -mbased=@var{n}
15713 @opindex mbased=
15714 Variables of size @var{n} bytes or smaller are placed in the
15715 @code{.based} section by default.  Based variables use the @code{$tp}
15716 register as a base register, and there is a 128-byte limit to the
15717 @code{.based} section.
15719 @item -mbitops
15720 @opindex mbitops
15721 Enables the bit operation instructions---bit test (@code{btstm}), set
15722 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
15723 test-and-set (@code{tas}).
15725 @item -mc=@var{name}
15726 @opindex mc=
15727 Selects which section constant data is placed in.  @var{name} may
15728 be @code{tiny}, @code{near}, or @code{far}.
15730 @item -mclip
15731 @opindex mclip
15732 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
15733 useful unless you also provide @code{-mminmax}.
15735 @item -mconfig=@var{name}
15736 @opindex mconfig=
15737 Selects one of the built-in core configurations.  Each MeP chip has
15738 one or more modules in it; each module has a core CPU and a variety of
15739 coprocessors, optional instructions, and peripherals.  The
15740 @code{MeP-Integrator} tool, not part of GCC, provides these
15741 configurations through this option; using this option is the same as
15742 using all the corresponding command-line options.  The default
15743 configuration is @code{default}.
15745 @item -mcop
15746 @opindex mcop
15747 Enables the coprocessor instructions.  By default, this is a 32-bit
15748 coprocessor.  Note that the coprocessor is normally enabled via the
15749 @code{-mconfig=} option.
15751 @item -mcop32
15752 @opindex mcop32
15753 Enables the 32-bit coprocessor's instructions.
15755 @item -mcop64
15756 @opindex mcop64
15757 Enables the 64-bit coprocessor's instructions.
15759 @item -mivc2
15760 @opindex mivc2
15761 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
15763 @item -mdc
15764 @opindex mdc
15765 Causes constant variables to be placed in the @code{.near} section.
15767 @item -mdiv
15768 @opindex mdiv
15769 Enables the @code{div} and @code{divu} instructions.
15771 @item -meb
15772 @opindex meb
15773 Generate big-endian code.
15775 @item -mel
15776 @opindex mel
15777 Generate little-endian code.
15779 @item -mio-volatile
15780 @opindex mio-volatile
15781 Tells the compiler that any variable marked with the @code{io}
15782 attribute is to be considered volatile.
15784 @item -ml
15785 @opindex ml
15786 Causes variables to be assigned to the @code{.far} section by default.
15788 @item -mleadz
15789 @opindex mleadz
15790 Enables the @code{leadz} (leading zero) instruction.
15792 @item -mm
15793 @opindex mm
15794 Causes variables to be assigned to the @code{.near} section by default.
15796 @item -mminmax
15797 @opindex mminmax
15798 Enables the @code{min} and @code{max} instructions.
15800 @item -mmult
15801 @opindex mmult
15802 Enables the multiplication and multiply-accumulate instructions.
15804 @item -mno-opts
15805 @opindex mno-opts
15806 Disables all the optional instructions enabled by @code{-mall-opts}.
15808 @item -mrepeat
15809 @opindex mrepeat
15810 Enables the @code{repeat} and @code{erepeat} instructions, used for
15811 low-overhead looping.
15813 @item -ms
15814 @opindex ms
15815 Causes all variables to default to the @code{.tiny} section.  Note
15816 that there is a 65536-byte limit to this section.  Accesses to these
15817 variables use the @code{%gp} base register.
15819 @item -msatur
15820 @opindex msatur
15821 Enables the saturation instructions.  Note that the compiler does not
15822 currently generate these itself, but this option is included for
15823 compatibility with other tools, like @code{as}.
15825 @item -msdram
15826 @opindex msdram
15827 Link the SDRAM-based runtime instead of the default ROM-based runtime.
15829 @item -msim
15830 @opindex msim
15831 Link the simulator runtime libraries.
15833 @item -msimnovec
15834 @opindex msimnovec
15835 Link the simulator runtime libraries, excluding built-in support
15836 for reset and exception vectors and tables.
15838 @item -mtf
15839 @opindex mtf
15840 Causes all functions to default to the @code{.far} section.  Without
15841 this option, functions default to the @code{.near} section.
15843 @item -mtiny=@var{n}
15844 @opindex mtiny=
15845 Variables that are @var{n} bytes or smaller are allocated to the
15846 @code{.tiny} section.  These variables use the @code{$gp} base
15847 register.  The default for this option is 4, but note that there's a
15848 65536-byte limit to the @code{.tiny} section.
15850 @end table
15852 @node MicroBlaze Options
15853 @subsection MicroBlaze Options
15854 @cindex MicroBlaze Options
15856 @table @gcctabopt
15858 @item -msoft-float
15859 @opindex msoft-float
15860 Use software emulation for floating point (default).
15862 @item -mhard-float
15863 @opindex mhard-float
15864 Use hardware floating-point instructions.
15866 @item -mmemcpy
15867 @opindex mmemcpy
15868 Do not optimize block moves, use @code{memcpy}.
15870 @item -mno-clearbss
15871 @opindex mno-clearbss
15872 This option is deprecated.  Use @option{-fno-zero-initialized-in-bss} instead.
15874 @item -mcpu=@var{cpu-type}
15875 @opindex mcpu=
15876 Use features of, and schedule code for, the given CPU.
15877 Supported values are in the format @samp{v@var{X}.@var{YY}.@var{Z}},
15878 where @var{X} is a major version, @var{YY} is the minor version, and
15879 @var{Z} is compatibility code.  Example values are @samp{v3.00.a},
15880 @samp{v4.00.b}, @samp{v5.00.a}, @samp{v5.00.b}, @samp{v5.00.b}, @samp{v6.00.a}.
15882 @item -mxl-soft-mul
15883 @opindex mxl-soft-mul
15884 Use software multiply emulation (default).
15886 @item -mxl-soft-div
15887 @opindex mxl-soft-div
15888 Use software emulation for divides (default).
15890 @item -mxl-barrel-shift
15891 @opindex mxl-barrel-shift
15892 Use the hardware barrel shifter.
15894 @item -mxl-pattern-compare
15895 @opindex mxl-pattern-compare
15896 Use pattern compare instructions.
15898 @item -msmall-divides
15899 @opindex msmall-divides
15900 Use table lookup optimization for small signed integer divisions.
15902 @item -mxl-stack-check
15903 @opindex mxl-stack-check
15904 This option is deprecated.  Use @option{-fstack-check} instead.
15906 @item -mxl-gp-opt
15907 @opindex mxl-gp-opt
15908 Use GP-relative @code{.sdata}/@code{.sbss} sections.
15910 @item -mxl-multiply-high
15911 @opindex mxl-multiply-high
15912 Use multiply high instructions for high part of 32x32 multiply.
15914 @item -mxl-float-convert
15915 @opindex mxl-float-convert
15916 Use hardware floating-point conversion instructions.
15918 @item -mxl-float-sqrt
15919 @opindex mxl-float-sqrt
15920 Use hardware floating-point square root instruction.
15922 @item -mbig-endian
15923 @opindex mbig-endian
15924 Generate code for a big-endian target.
15926 @item -mlittle-endian
15927 @opindex mlittle-endian
15928 Generate code for a little-endian target.
15930 @item -mxl-reorder
15931 @opindex mxl-reorder
15932 Use reorder instructions (swap and byte reversed load/store).
15934 @item -mxl-mode-@var{app-model}
15935 Select application model @var{app-model}.  Valid models are
15936 @table @samp
15937 @item executable
15938 normal executable (default), uses startup code @file{crt0.o}.
15940 @item xmdstub
15941 for use with Xilinx Microprocessor Debugger (XMD) based
15942 software intrusive debug agent called xmdstub. This uses startup file
15943 @file{crt1.o} and sets the start address of the program to 0x800.
15945 @item bootstrap
15946 for applications that are loaded using a bootloader.
15947 This model uses startup file @file{crt2.o} which does not contain a processor
15948 reset vector handler. This is suitable for transferring control on a
15949 processor reset to the bootloader rather than the application.
15951 @item novectors
15952 for applications that do not require any of the
15953 MicroBlaze vectors. This option may be useful for applications running
15954 within a monitoring application. This model uses @file{crt3.o} as a startup file.
15955 @end table
15957 Option @option{-xl-mode-@var{app-model}} is a deprecated alias for
15958 @option{-mxl-mode-@var{app-model}}.
15960 @end table
15962 @node MIPS Options
15963 @subsection MIPS Options
15964 @cindex MIPS options
15966 @table @gcctabopt
15968 @item -EB
15969 @opindex EB
15970 Generate big-endian code.
15972 @item -EL
15973 @opindex EL
15974 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
15975 configurations.
15977 @item -march=@var{arch}
15978 @opindex march
15979 Generate code that runs on @var{arch}, which can be the name of a
15980 generic MIPS ISA, or the name of a particular processor.
15981 The ISA names are:
15982 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
15983 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
15984 The processor names are:
15985 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
15986 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
15987 @samp{5kc}, @samp{5kf},
15988 @samp{20kc},
15989 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
15990 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
15991 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1}, @samp{34kn},
15992 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
15993 @samp{1004kc}, @samp{1004kf2_1}, @samp{1004kf1_1},
15994 @samp{loongson2e}, @samp{loongson2f}, @samp{loongson3a},
15995 @samp{m4k},
15996 @samp{m14k}, @samp{m14ke}, @samp{m14kec},
15997 @samp{octeon}, @samp{octeon+}, @samp{octeon2},
15998 @samp{orion},
15999 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
16000 @samp{r4600}, @samp{r4650}, @samp{r4700}, @samp{r6000}, @samp{r8000},
16001 @samp{rm7000}, @samp{rm9000},
16002 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
16003 @samp{sb1},
16004 @samp{sr71000},
16005 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
16006 @samp{vr5000}, @samp{vr5400}, @samp{vr5500},
16007 @samp{xlr} and @samp{xlp}.
16008 The special value @samp{from-abi} selects the
16009 most compatible architecture for the selected ABI (that is,
16010 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
16012 The native Linux/GNU toolchain also supports the value @samp{native},
16013 which selects the best architecture option for the host processor.
16014 @option{-march=native} has no effect if GCC does not recognize
16015 the processor.
16017 In processor names, a final @samp{000} can be abbreviated as @samp{k}
16018 (for example, @option{-march=r2k}).  Prefixes are optional, and
16019 @samp{vr} may be written @samp{r}.
16021 Names of the form @samp{@var{n}f2_1} refer to processors with
16022 FPUs clocked at half the rate of the core, names of the form
16023 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
16024 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
16025 processors with FPUs clocked a ratio of 3:2 with respect to the core.
16026 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
16027 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
16028 accepted as synonyms for @samp{@var{n}f1_1}.
16030 GCC defines two macros based on the value of this option.  The first
16031 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
16032 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
16033 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
16034 For example, @option{-march=r2000} sets @samp{_MIPS_ARCH}
16035 to @samp{"r2000"} and defines the macro @samp{_MIPS_ARCH_R2000}.
16037 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
16038 above.  In other words, it has the full prefix and does not
16039 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
16040 the macro names the resolved architecture (either @samp{"mips1"} or
16041 @samp{"mips3"}).  It names the default architecture when no
16042 @option{-march} option is given.
16044 @item -mtune=@var{arch}
16045 @opindex mtune
16046 Optimize for @var{arch}.  Among other things, this option controls
16047 the way instructions are scheduled, and the perceived cost of arithmetic
16048 operations.  The list of @var{arch} values is the same as for
16049 @option{-march}.
16051 When this option is not used, GCC optimizes for the processor
16052 specified by @option{-march}.  By using @option{-march} and
16053 @option{-mtune} together, it is possible to generate code that
16054 runs on a family of processors, but optimize the code for one
16055 particular member of that family.
16057 @option{-mtune} defines the macros @samp{_MIPS_TUNE} and
16058 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
16059 @option{-march} ones described above.
16061 @item -mips1
16062 @opindex mips1
16063 Equivalent to @option{-march=mips1}.
16065 @item -mips2
16066 @opindex mips2
16067 Equivalent to @option{-march=mips2}.
16069 @item -mips3
16070 @opindex mips3
16071 Equivalent to @option{-march=mips3}.
16073 @item -mips4
16074 @opindex mips4
16075 Equivalent to @option{-march=mips4}.
16077 @item -mips32
16078 @opindex mips32
16079 Equivalent to @option{-march=mips32}.
16081 @item -mips32r2
16082 @opindex mips32r2
16083 Equivalent to @option{-march=mips32r2}.
16085 @item -mips64
16086 @opindex mips64
16087 Equivalent to @option{-march=mips64}.
16089 @item -mips64r2
16090 @opindex mips64r2
16091 Equivalent to @option{-march=mips64r2}.
16093 @item -mips16
16094 @itemx -mno-mips16
16095 @opindex mips16
16096 @opindex mno-mips16
16097 Generate (do not generate) MIPS16 code.  If GCC is targeting a
16098 MIPS32 or MIPS64 architecture, it makes use of the MIPS16e ASE@.
16100 MIPS16 code generation can also be controlled on a per-function basis
16101 by means of @code{mips16} and @code{nomips16} attributes.
16102 @xref{Function Attributes}, for more information.
16104 @item -mflip-mips16
16105 @opindex mflip-mips16
16106 Generate MIPS16 code on alternating functions.  This option is provided
16107 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
16108 not intended for ordinary use in compiling user code.
16110 @item -minterlink-compressed
16111 @item -mno-interlink-compressed
16112 @opindex minterlink-compressed
16113 @opindex mno-interlink-compressed
16114 Require (do not require) that code using the standard (uncompressed) MIPS ISA
16115 be link-compatible with MIPS16 and microMIPS code, and vice versa.
16117 For example, code using the standard ISA encoding cannot jump directly
16118 to MIPS16 or microMIPS code; it must either use a call or an indirect jump.
16119 @option{-minterlink-compressed} therefore disables direct jumps unless GCC
16120 knows that the target of the jump is not compressed.
16122 @item -minterlink-mips16
16123 @itemx -mno-interlink-mips16
16124 @opindex minterlink-mips16
16125 @opindex mno-interlink-mips16
16126 Aliases of @option{-minterlink-compressed} and
16127 @option{-mno-interlink-compressed}.  These options predate the microMIPS ASE
16128 and are retained for backwards compatiblity.
16130 @item -mabi=32
16131 @itemx -mabi=o64
16132 @itemx -mabi=n32
16133 @itemx -mabi=64
16134 @itemx -mabi=eabi
16135 @opindex mabi=32
16136 @opindex mabi=o64
16137 @opindex mabi=n32
16138 @opindex mabi=64
16139 @opindex mabi=eabi
16140 Generate code for the given ABI@.
16142 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
16143 generates 64-bit code when you select a 64-bit architecture, but you
16144 can use @option{-mgp32} to get 32-bit code instead.
16146 For information about the O64 ABI, see
16147 @uref{http://gcc.gnu.org/@/projects/@/mipso64-abi.html}.
16149 GCC supports a variant of the o32 ABI in which floating-point registers
16150 are 64 rather than 32 bits wide.  You can select this combination with
16151 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @code{mthc1}
16152 and @code{mfhc1} instructions and is therefore only supported for
16153 MIPS32R2 processors.
16155 The register assignments for arguments and return values remain the
16156 same, but each scalar value is passed in a single 64-bit register
16157 rather than a pair of 32-bit registers.  For example, scalar
16158 floating-point values are returned in @samp{$f0} only, not a
16159 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
16160 remains the same, but all 64 bits are saved.
16162 @item -mabicalls
16163 @itemx -mno-abicalls
16164 @opindex mabicalls
16165 @opindex mno-abicalls
16166 Generate (do not generate) code that is suitable for SVR4-style
16167 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
16168 systems.
16170 @item -mshared
16171 @itemx -mno-shared
16172 Generate (do not generate) code that is fully position-independent,
16173 and that can therefore be linked into shared libraries.  This option
16174 only affects @option{-mabicalls}.
16176 All @option{-mabicalls} code has traditionally been position-independent,
16177 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
16178 as an extension, the GNU toolchain allows executables to use absolute
16179 accesses for locally-binding symbols.  It can also use shorter GP
16180 initialization sequences and generate direct calls to locally-defined
16181 functions.  This mode is selected by @option{-mno-shared}.
16183 @option{-mno-shared} depends on binutils 2.16 or higher and generates
16184 objects that can only be linked by the GNU linker.  However, the option
16185 does not affect the ABI of the final executable; it only affects the ABI
16186 of relocatable objects.  Using @option{-mno-shared} generally makes
16187 executables both smaller and quicker.
16189 @option{-mshared} is the default.
16191 @item -mplt
16192 @itemx -mno-plt
16193 @opindex mplt
16194 @opindex mno-plt
16195 Assume (do not assume) that the static and dynamic linkers
16196 support PLTs and copy relocations.  This option only affects
16197 @option{-mno-shared -mabicalls}.  For the n64 ABI, this option
16198 has no effect without @option{-msym32}.
16200 You can make @option{-mplt} the default by configuring
16201 GCC with @option{--with-mips-plt}.  The default is
16202 @option{-mno-plt} otherwise.
16204 @item -mxgot
16205 @itemx -mno-xgot
16206 @opindex mxgot
16207 @opindex mno-xgot
16208 Lift (do not lift) the usual restrictions on the size of the global
16209 offset table.
16211 GCC normally uses a single instruction to load values from the GOT@.
16212 While this is relatively efficient, it only works if the GOT
16213 is smaller than about 64k.  Anything larger causes the linker
16214 to report an error such as:
16216 @cindex relocation truncated to fit (MIPS)
16217 @smallexample
16218 relocation truncated to fit: R_MIPS_GOT16 foobar
16219 @end smallexample
16221 If this happens, you should recompile your code with @option{-mxgot}.
16222 This works with very large GOTs, although the code is also
16223 less efficient, since it takes three instructions to fetch the
16224 value of a global symbol.
16226 Note that some linkers can create multiple GOTs.  If you have such a
16227 linker, you should only need to use @option{-mxgot} when a single object
16228 file accesses more than 64k's worth of GOT entries.  Very few do.
16230 These options have no effect unless GCC is generating position
16231 independent code.
16233 @item -mgp32
16234 @opindex mgp32
16235 Assume that general-purpose registers are 32 bits wide.
16237 @item -mgp64
16238 @opindex mgp64
16239 Assume that general-purpose registers are 64 bits wide.
16241 @item -mfp32
16242 @opindex mfp32
16243 Assume that floating-point registers are 32 bits wide.
16245 @item -mfp64
16246 @opindex mfp64
16247 Assume that floating-point registers are 64 bits wide.
16249 @item -mhard-float
16250 @opindex mhard-float
16251 Use floating-point coprocessor instructions.
16253 @item -msoft-float
16254 @opindex msoft-float
16255 Do not use floating-point coprocessor instructions.  Implement
16256 floating-point calculations using library calls instead.
16258 @item -mno-float
16259 @opindex mno-float
16260 Equivalent to @option{-msoft-float}, but additionally asserts that the
16261 program being compiled does not perform any floating-point operations.
16262 This option is presently supported only by some bare-metal MIPS
16263 configurations, where it may select a special set of libraries
16264 that lack all floating-point support (including, for example, the
16265 floating-point @code{printf} formats).  
16266 If code compiled with @code{-mno-float} accidentally contains
16267 floating-point operations, it is likely to suffer a link-time
16268 or run-time failure.
16270 @item -msingle-float
16271 @opindex msingle-float
16272 Assume that the floating-point coprocessor only supports single-precision
16273 operations.
16275 @item -mdouble-float
16276 @opindex mdouble-float
16277 Assume that the floating-point coprocessor supports double-precision
16278 operations.  This is the default.
16280 @item -mllsc
16281 @itemx -mno-llsc
16282 @opindex mllsc
16283 @opindex mno-llsc
16284 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
16285 implement atomic memory built-in functions.  When neither option is
16286 specified, GCC uses the instructions if the target architecture
16287 supports them.
16289 @option{-mllsc} is useful if the runtime environment can emulate the
16290 instructions and @option{-mno-llsc} can be useful when compiling for
16291 nonstandard ISAs.  You can make either option the default by
16292 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
16293 respectively.  @option{--with-llsc} is the default for some
16294 configurations; see the installation documentation for details.
16296 @item -mdsp
16297 @itemx -mno-dsp
16298 @opindex mdsp
16299 @opindex mno-dsp
16300 Use (do not use) revision 1 of the MIPS DSP ASE@.
16301 @xref{MIPS DSP Built-in Functions}.  This option defines the
16302 preprocessor macro @samp{__mips_dsp}.  It also defines
16303 @samp{__mips_dsp_rev} to 1.
16305 @item -mdspr2
16306 @itemx -mno-dspr2
16307 @opindex mdspr2
16308 @opindex mno-dspr2
16309 Use (do not use) revision 2 of the MIPS DSP ASE@.
16310 @xref{MIPS DSP Built-in Functions}.  This option defines the
16311 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
16312 It also defines @samp{__mips_dsp_rev} to 2.
16314 @item -msmartmips
16315 @itemx -mno-smartmips
16316 @opindex msmartmips
16317 @opindex mno-smartmips
16318 Use (do not use) the MIPS SmartMIPS ASE.
16320 @item -mpaired-single
16321 @itemx -mno-paired-single
16322 @opindex mpaired-single
16323 @opindex mno-paired-single
16324 Use (do not use) paired-single floating-point instructions.
16325 @xref{MIPS Paired-Single Support}.  This option requires
16326 hardware floating-point support to be enabled.
16328 @item -mdmx
16329 @itemx -mno-mdmx
16330 @opindex mdmx
16331 @opindex mno-mdmx
16332 Use (do not use) MIPS Digital Media Extension instructions.
16333 This option can only be used when generating 64-bit code and requires
16334 hardware floating-point support to be enabled.
16336 @item -mips3d
16337 @itemx -mno-mips3d
16338 @opindex mips3d
16339 @opindex mno-mips3d
16340 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
16341 The option @option{-mips3d} implies @option{-mpaired-single}.
16343 @item -mmicromips
16344 @itemx -mno-micromips
16345 @opindex mmicromips
16346 @opindex mno-mmicromips
16347 Generate (do not generate) microMIPS code.
16349 MicroMIPS code generation can also be controlled on a per-function basis
16350 by means of @code{micromips} and @code{nomicromips} attributes.
16351 @xref{Function Attributes}, for more information.
16353 @item -mmt
16354 @itemx -mno-mt
16355 @opindex mmt
16356 @opindex mno-mt
16357 Use (do not use) MT Multithreading instructions.
16359 @item -mmcu
16360 @itemx -mno-mcu
16361 @opindex mmcu
16362 @opindex mno-mcu
16363 Use (do not use) the MIPS MCU ASE instructions.
16365 @item -mlong64
16366 @opindex mlong64
16367 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
16368 an explanation of the default and the way that the pointer size is
16369 determined.
16371 @item -mlong32
16372 @opindex mlong32
16373 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
16375 The default size of @code{int}s, @code{long}s and pointers depends on
16376 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
16377 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
16378 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
16379 or the same size as integer registers, whichever is smaller.
16381 @item -msym32
16382 @itemx -mno-sym32
16383 @opindex msym32
16384 @opindex mno-sym32
16385 Assume (do not assume) that all symbols have 32-bit values, regardless
16386 of the selected ABI@.  This option is useful in combination with
16387 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
16388 to generate shorter and faster references to symbolic addresses.
16390 @item -G @var{num}
16391 @opindex G
16392 Put definitions of externally-visible data in a small data section
16393 if that data is no bigger than @var{num} bytes.  GCC can then generate
16394 more efficient accesses to the data; see @option{-mgpopt} for details.
16396 The default @option{-G} option depends on the configuration.
16398 @item -mlocal-sdata
16399 @itemx -mno-local-sdata
16400 @opindex mlocal-sdata
16401 @opindex mno-local-sdata
16402 Extend (do not extend) the @option{-G} behavior to local data too,
16403 such as to static variables in C@.  @option{-mlocal-sdata} is the
16404 default for all configurations.
16406 If the linker complains that an application is using too much small data,
16407 you might want to try rebuilding the less performance-critical parts with
16408 @option{-mno-local-sdata}.  You might also want to build large
16409 libraries with @option{-mno-local-sdata}, so that the libraries leave
16410 more room for the main program.
16412 @item -mextern-sdata
16413 @itemx -mno-extern-sdata
16414 @opindex mextern-sdata
16415 @opindex mno-extern-sdata
16416 Assume (do not assume) that externally-defined data is in
16417 a small data section if the size of that data is within the @option{-G} limit.
16418 @option{-mextern-sdata} is the default for all configurations.
16420 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
16421 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
16422 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
16423 is placed in a small data section.  If @var{Var} is defined by another
16424 module, you must either compile that module with a high-enough
16425 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
16426 definition.  If @var{Var} is common, you must link the application
16427 with a high-enough @option{-G} setting.
16429 The easiest way of satisfying these restrictions is to compile
16430 and link every module with the same @option{-G} option.  However,
16431 you may wish to build a library that supports several different
16432 small data limits.  You can do this by compiling the library with
16433 the highest supported @option{-G} setting and additionally using
16434 @option{-mno-extern-sdata} to stop the library from making assumptions
16435 about externally-defined data.
16437 @item -mgpopt
16438 @itemx -mno-gpopt
16439 @opindex mgpopt
16440 @opindex mno-gpopt
16441 Use (do not use) GP-relative accesses for symbols that are known to be
16442 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
16443 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
16444 configurations.
16446 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
16447 might not hold the value of @code{_gp}.  For example, if the code is
16448 part of a library that might be used in a boot monitor, programs that
16449 call boot monitor routines pass an unknown value in @code{$gp}.
16450 (In such situations, the boot monitor itself is usually compiled
16451 with @option{-G0}.)
16453 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
16454 @option{-mno-extern-sdata}.
16456 @item -membedded-data
16457 @itemx -mno-embedded-data
16458 @opindex membedded-data
16459 @opindex mno-embedded-data
16460 Allocate variables to the read-only data section first if possible, then
16461 next in the small data section if possible, otherwise in data.  This gives
16462 slightly slower code than the default, but reduces the amount of RAM required
16463 when executing, and thus may be preferred for some embedded systems.
16465 @item -muninit-const-in-rodata
16466 @itemx -mno-uninit-const-in-rodata
16467 @opindex muninit-const-in-rodata
16468 @opindex mno-uninit-const-in-rodata
16469 Put uninitialized @code{const} variables in the read-only data section.
16470 This option is only meaningful in conjunction with @option{-membedded-data}.
16472 @item -mcode-readable=@var{setting}
16473 @opindex mcode-readable
16474 Specify whether GCC may generate code that reads from executable sections.
16475 There are three possible settings:
16477 @table @gcctabopt
16478 @item -mcode-readable=yes
16479 Instructions may freely access executable sections.  This is the
16480 default setting.
16482 @item -mcode-readable=pcrel
16483 MIPS16 PC-relative load instructions can access executable sections,
16484 but other instructions must not do so.  This option is useful on 4KSc
16485 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
16486 It is also useful on processors that can be configured to have a dual
16487 instruction/data SRAM interface and that, like the M4K, automatically
16488 redirect PC-relative loads to the instruction RAM.
16490 @item -mcode-readable=no
16491 Instructions must not access executable sections.  This option can be
16492 useful on targets that are configured to have a dual instruction/data
16493 SRAM interface but that (unlike the M4K) do not automatically redirect
16494 PC-relative loads to the instruction RAM.
16495 @end table
16497 @item -msplit-addresses
16498 @itemx -mno-split-addresses
16499 @opindex msplit-addresses
16500 @opindex mno-split-addresses
16501 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
16502 relocation operators.  This option has been superseded by
16503 @option{-mexplicit-relocs} but is retained for backwards compatibility.
16505 @item -mexplicit-relocs
16506 @itemx -mno-explicit-relocs
16507 @opindex mexplicit-relocs
16508 @opindex mno-explicit-relocs
16509 Use (do not use) assembler relocation operators when dealing with symbolic
16510 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
16511 is to use assembler macros instead.
16513 @option{-mexplicit-relocs} is the default if GCC was configured
16514 to use an assembler that supports relocation operators.
16516 @item -mcheck-zero-division
16517 @itemx -mno-check-zero-division
16518 @opindex mcheck-zero-division
16519 @opindex mno-check-zero-division
16520 Trap (do not trap) on integer division by zero.
16522 The default is @option{-mcheck-zero-division}.
16524 @item -mdivide-traps
16525 @itemx -mdivide-breaks
16526 @opindex mdivide-traps
16527 @opindex mdivide-breaks
16528 MIPS systems check for division by zero by generating either a
16529 conditional trap or a break instruction.  Using traps results in
16530 smaller code, but is only supported on MIPS II and later.  Also, some
16531 versions of the Linux kernel have a bug that prevents trap from
16532 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
16533 allow conditional traps on architectures that support them and
16534 @option{-mdivide-breaks} to force the use of breaks.
16536 The default is usually @option{-mdivide-traps}, but this can be
16537 overridden at configure time using @option{--with-divide=breaks}.
16538 Divide-by-zero checks can be completely disabled using
16539 @option{-mno-check-zero-division}.
16541 @item -mmemcpy
16542 @itemx -mno-memcpy
16543 @opindex mmemcpy
16544 @opindex mno-memcpy
16545 Force (do not force) the use of @code{memcpy()} for non-trivial block
16546 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
16547 most constant-sized copies.
16549 @item -mlong-calls
16550 @itemx -mno-long-calls
16551 @opindex mlong-calls
16552 @opindex mno-long-calls
16553 Disable (do not disable) use of the @code{jal} instruction.  Calling
16554 functions using @code{jal} is more efficient but requires the caller
16555 and callee to be in the same 256 megabyte segment.
16557 This option has no effect on abicalls code.  The default is
16558 @option{-mno-long-calls}.
16560 @item -mmad
16561 @itemx -mno-mad
16562 @opindex mmad
16563 @opindex mno-mad
16564 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
16565 instructions, as provided by the R4650 ISA@.
16567 @item -mimadd
16568 @itemx -mno-imadd
16569 @opindex mimadd
16570 @opindex mno-imadd
16571 Enable (disable) use of the @code{madd} and @code{msub} integer
16572 instructions.  The default is @option{-mimadd} on architectures
16573 that support @code{madd} and @code{msub} except for the 74k 
16574 architecture where it was found to generate slower code.
16576 @item -mfused-madd
16577 @itemx -mno-fused-madd
16578 @opindex mfused-madd
16579 @opindex mno-fused-madd
16580 Enable (disable) use of the floating-point multiply-accumulate
16581 instructions, when they are available.  The default is
16582 @option{-mfused-madd}.
16584 On the R8000 CPU when multiply-accumulate instructions are used,
16585 the intermediate product is calculated to infinite precision
16586 and is not subject to the FCSR Flush to Zero bit.  This may be
16587 undesirable in some circumstances.  On other processors the result
16588 is numerically identical to the equivalent computation using
16589 separate multiply, add, subtract and negate instructions.
16591 @item -nocpp
16592 @opindex nocpp
16593 Tell the MIPS assembler to not run its preprocessor over user
16594 assembler files (with a @samp{.s} suffix) when assembling them.
16596 @item -mfix-24k
16597 @item -mno-fix-24k
16598 @opindex mfix-24k
16599 @opindex mno-fix-24k
16600 Work around the 24K E48 (lost data on stores during refill) errata.
16601 The workarounds are implemented by the assembler rather than by GCC@.
16603 @item -mfix-r4000
16604 @itemx -mno-fix-r4000
16605 @opindex mfix-r4000
16606 @opindex mno-fix-r4000
16607 Work around certain R4000 CPU errata:
16608 @itemize @minus
16609 @item
16610 A double-word or a variable shift may give an incorrect result if executed
16611 immediately after starting an integer division.
16612 @item
16613 A double-word or a variable shift may give an incorrect result if executed
16614 while an integer multiplication is in progress.
16615 @item
16616 An integer division may give an incorrect result if started in a delay slot
16617 of a taken branch or a jump.
16618 @end itemize
16620 @item -mfix-r4400
16621 @itemx -mno-fix-r4400
16622 @opindex mfix-r4400
16623 @opindex mno-fix-r4400
16624 Work around certain R4400 CPU errata:
16625 @itemize @minus
16626 @item
16627 A double-word or a variable shift may give an incorrect result if executed
16628 immediately after starting an integer division.
16629 @end itemize
16631 @item -mfix-r10000
16632 @itemx -mno-fix-r10000
16633 @opindex mfix-r10000
16634 @opindex mno-fix-r10000
16635 Work around certain R10000 errata:
16636 @itemize @minus
16637 @item
16638 @code{ll}/@code{sc} sequences may not behave atomically on revisions
16639 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
16640 @end itemize
16642 This option can only be used if the target architecture supports
16643 branch-likely instructions.  @option{-mfix-r10000} is the default when
16644 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
16645 otherwise.
16647 @item -mfix-vr4120
16648 @itemx -mno-fix-vr4120
16649 @opindex mfix-vr4120
16650 Work around certain VR4120 errata:
16651 @itemize @minus
16652 @item
16653 @code{dmultu} does not always produce the correct result.
16654 @item
16655 @code{div} and @code{ddiv} do not always produce the correct result if one
16656 of the operands is negative.
16657 @end itemize
16658 The workarounds for the division errata rely on special functions in
16659 @file{libgcc.a}.  At present, these functions are only provided by
16660 the @code{mips64vr*-elf} configurations.
16662 Other VR4120 errata require a NOP to be inserted between certain pairs of
16663 instructions.  These errata are handled by the assembler, not by GCC itself.
16665 @item -mfix-vr4130
16666 @opindex mfix-vr4130
16667 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
16668 workarounds are implemented by the assembler rather than by GCC,
16669 although GCC avoids using @code{mflo} and @code{mfhi} if the
16670 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
16671 instructions are available instead.
16673 @item -mfix-sb1
16674 @itemx -mno-fix-sb1
16675 @opindex mfix-sb1
16676 Work around certain SB-1 CPU core errata.
16677 (This flag currently works around the SB-1 revision 2
16678 ``F1'' and ``F2'' floating-point errata.)
16680 @item -mr10k-cache-barrier=@var{setting}
16681 @opindex mr10k-cache-barrier
16682 Specify whether GCC should insert cache barriers to avoid the
16683 side-effects of speculation on R10K processors.
16685 In common with many processors, the R10K tries to predict the outcome
16686 of a conditional branch and speculatively executes instructions from
16687 the ``taken'' branch.  It later aborts these instructions if the
16688 predicted outcome is wrong.  However, on the R10K, even aborted
16689 instructions can have side effects.
16691 This problem only affects kernel stores and, depending on the system,
16692 kernel loads.  As an example, a speculatively-executed store may load
16693 the target memory into cache and mark the cache line as dirty, even if
16694 the store itself is later aborted.  If a DMA operation writes to the
16695 same area of memory before the ``dirty'' line is flushed, the cached
16696 data overwrites the DMA-ed data.  See the R10K processor manual
16697 for a full description, including other potential problems.
16699 One workaround is to insert cache barrier instructions before every memory
16700 access that might be speculatively executed and that might have side
16701 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
16702 controls GCC's implementation of this workaround.  It assumes that
16703 aborted accesses to any byte in the following regions does not have
16704 side effects:
16706 @enumerate
16707 @item
16708 the memory occupied by the current function's stack frame;
16710 @item
16711 the memory occupied by an incoming stack argument;
16713 @item
16714 the memory occupied by an object with a link-time-constant address.
16715 @end enumerate
16717 It is the kernel's responsibility to ensure that speculative
16718 accesses to these regions are indeed safe.
16720 If the input program contains a function declaration such as:
16722 @smallexample
16723 void foo (void);
16724 @end smallexample
16726 then the implementation of @code{foo} must allow @code{j foo} and
16727 @code{jal foo} to be executed speculatively.  GCC honors this
16728 restriction for functions it compiles itself.  It expects non-GCC
16729 functions (such as hand-written assembly code) to do the same.
16731 The option has three forms:
16733 @table @gcctabopt
16734 @item -mr10k-cache-barrier=load-store
16735 Insert a cache barrier before a load or store that might be
16736 speculatively executed and that might have side effects even
16737 if aborted.
16739 @item -mr10k-cache-barrier=store
16740 Insert a cache barrier before a store that might be speculatively
16741 executed and that might have side effects even if aborted.
16743 @item -mr10k-cache-barrier=none
16744 Disable the insertion of cache barriers.  This is the default setting.
16745 @end table
16747 @item -mflush-func=@var{func}
16748 @itemx -mno-flush-func
16749 @opindex mflush-func
16750 Specifies the function to call to flush the I and D caches, or to not
16751 call any such function.  If called, the function must take the same
16752 arguments as the common @code{_flush_func()}, that is, the address of the
16753 memory range for which the cache is being flushed, the size of the
16754 memory range, and the number 3 (to flush both caches).  The default
16755 depends on the target GCC was configured for, but commonly is either
16756 @samp{_flush_func} or @samp{__cpu_flush}.
16758 @item mbranch-cost=@var{num}
16759 @opindex mbranch-cost
16760 Set the cost of branches to roughly @var{num} ``simple'' instructions.
16761 This cost is only a heuristic and is not guaranteed to produce
16762 consistent results across releases.  A zero cost redundantly selects
16763 the default, which is based on the @option{-mtune} setting.
16765 @item -mbranch-likely
16766 @itemx -mno-branch-likely
16767 @opindex mbranch-likely
16768 @opindex mno-branch-likely
16769 Enable or disable use of Branch Likely instructions, regardless of the
16770 default for the selected architecture.  By default, Branch Likely
16771 instructions may be generated if they are supported by the selected
16772 architecture.  An exception is for the MIPS32 and MIPS64 architectures
16773 and processors that implement those architectures; for those, Branch
16774 Likely instructions are not be generated by default because the MIPS32
16775 and MIPS64 architectures specifically deprecate their use.
16777 @item -mfp-exceptions
16778 @itemx -mno-fp-exceptions
16779 @opindex mfp-exceptions
16780 Specifies whether FP exceptions are enabled.  This affects how
16781 FP instructions are scheduled for some processors.
16782 The default is that FP exceptions are
16783 enabled.
16785 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
16786 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
16787 FP pipe.
16789 @item -mvr4130-align
16790 @itemx -mno-vr4130-align
16791 @opindex mvr4130-align
16792 The VR4130 pipeline is two-way superscalar, but can only issue two
16793 instructions together if the first one is 8-byte aligned.  When this
16794 option is enabled, GCC aligns pairs of instructions that it
16795 thinks should execute in parallel.
16797 This option only has an effect when optimizing for the VR4130.
16798 It normally makes code faster, but at the expense of making it bigger.
16799 It is enabled by default at optimization level @option{-O3}.
16801 @item -msynci
16802 @itemx -mno-synci
16803 @opindex msynci
16804 Enable (disable) generation of @code{synci} instructions on
16805 architectures that support it.  The @code{synci} instructions (if
16806 enabled) are generated when @code{__builtin___clear_cache()} is
16807 compiled.
16809 This option defaults to @code{-mno-synci}, but the default can be
16810 overridden by configuring with @code{--with-synci}.
16812 When compiling code for single processor systems, it is generally safe
16813 to use @code{synci}.  However, on many multi-core (SMP) systems, it
16814 does not invalidate the instruction caches on all cores and may lead
16815 to undefined behavior.
16817 @item -mrelax-pic-calls
16818 @itemx -mno-relax-pic-calls
16819 @opindex mrelax-pic-calls
16820 Try to turn PIC calls that are normally dispatched via register
16821 @code{$25} into direct calls.  This is only possible if the linker can
16822 resolve the destination at link-time and if the destination is within
16823 range for a direct call.
16825 @option{-mrelax-pic-calls} is the default if GCC was configured to use
16826 an assembler and a linker that support the @code{.reloc} assembly
16827 directive and @code{-mexplicit-relocs} is in effect.  With
16828 @code{-mno-explicit-relocs}, this optimization can be performed by the
16829 assembler and the linker alone without help from the compiler.
16831 @item -mmcount-ra-address
16832 @itemx -mno-mcount-ra-address
16833 @opindex mmcount-ra-address
16834 @opindex mno-mcount-ra-address
16835 Emit (do not emit) code that allows @code{_mcount} to modify the
16836 calling function's return address.  When enabled, this option extends
16837 the usual @code{_mcount} interface with a new @var{ra-address}
16838 parameter, which has type @code{intptr_t *} and is passed in register
16839 @code{$12}.  @code{_mcount} can then modify the return address by
16840 doing both of the following:
16841 @itemize
16842 @item
16843 Returning the new address in register @code{$31}.
16844 @item
16845 Storing the new address in @code{*@var{ra-address}},
16846 if @var{ra-address} is nonnull.
16847 @end itemize
16849 The default is @option{-mno-mcount-ra-address}.
16851 @end table
16853 @node MMIX Options
16854 @subsection MMIX Options
16855 @cindex MMIX Options
16857 These options are defined for the MMIX:
16859 @table @gcctabopt
16860 @item -mlibfuncs
16861 @itemx -mno-libfuncs
16862 @opindex mlibfuncs
16863 @opindex mno-libfuncs
16864 Specify that intrinsic library functions are being compiled, passing all
16865 values in registers, no matter the size.
16867 @item -mepsilon
16868 @itemx -mno-epsilon
16869 @opindex mepsilon
16870 @opindex mno-epsilon
16871 Generate floating-point comparison instructions that compare with respect
16872 to the @code{rE} epsilon register.
16874 @item -mabi=mmixware
16875 @itemx -mabi=gnu
16876 @opindex mabi=mmixware
16877 @opindex mabi=gnu
16878 Generate code that passes function parameters and return values that (in
16879 the called function) are seen as registers @code{$0} and up, as opposed to
16880 the GNU ABI which uses global registers @code{$231} and up.
16882 @item -mzero-extend
16883 @itemx -mno-zero-extend
16884 @opindex mzero-extend
16885 @opindex mno-zero-extend
16886 When reading data from memory in sizes shorter than 64 bits, use (do not
16887 use) zero-extending load instructions by default, rather than
16888 sign-extending ones.
16890 @item -mknuthdiv
16891 @itemx -mno-knuthdiv
16892 @opindex mknuthdiv
16893 @opindex mno-knuthdiv
16894 Make the result of a division yielding a remainder have the same sign as
16895 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
16896 remainder follows the sign of the dividend.  Both methods are
16897 arithmetically valid, the latter being almost exclusively used.
16899 @item -mtoplevel-symbols
16900 @itemx -mno-toplevel-symbols
16901 @opindex mtoplevel-symbols
16902 @opindex mno-toplevel-symbols
16903 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
16904 code can be used with the @code{PREFIX} assembly directive.
16906 @item -melf
16907 @opindex melf
16908 Generate an executable in the ELF format, rather than the default
16909 @samp{mmo} format used by the @command{mmix} simulator.
16911 @item -mbranch-predict
16912 @itemx -mno-branch-predict
16913 @opindex mbranch-predict
16914 @opindex mno-branch-predict
16915 Use (do not use) the probable-branch instructions, when static branch
16916 prediction indicates a probable branch.
16918 @item -mbase-addresses
16919 @itemx -mno-base-addresses
16920 @opindex mbase-addresses
16921 @opindex mno-base-addresses
16922 Generate (do not generate) code that uses @emph{base addresses}.  Using a
16923 base address automatically generates a request (handled by the assembler
16924 and the linker) for a constant to be set up in a global register.  The
16925 register is used for one or more base address requests within the range 0
16926 to 255 from the value held in the register.  The generally leads to short
16927 and fast code, but the number of different data items that can be
16928 addressed is limited.  This means that a program that uses lots of static
16929 data may require @option{-mno-base-addresses}.
16931 @item -msingle-exit
16932 @itemx -mno-single-exit
16933 @opindex msingle-exit
16934 @opindex mno-single-exit
16935 Force (do not force) generated code to have a single exit point in each
16936 function.
16937 @end table
16939 @node MN10300 Options
16940 @subsection MN10300 Options
16941 @cindex MN10300 options
16943 These @option{-m} options are defined for Matsushita MN10300 architectures:
16945 @table @gcctabopt
16946 @item -mmult-bug
16947 @opindex mmult-bug
16948 Generate code to avoid bugs in the multiply instructions for the MN10300
16949 processors.  This is the default.
16951 @item -mno-mult-bug
16952 @opindex mno-mult-bug
16953 Do not generate code to avoid bugs in the multiply instructions for the
16954 MN10300 processors.
16956 @item -mam33
16957 @opindex mam33
16958 Generate code using features specific to the AM33 processor.
16960 @item -mno-am33
16961 @opindex mno-am33
16962 Do not generate code using features specific to the AM33 processor.  This
16963 is the default.
16965 @item -mam33-2
16966 @opindex mam33-2
16967 Generate code using features specific to the AM33/2.0 processor.
16969 @item -mam34
16970 @opindex mam34
16971 Generate code using features specific to the AM34 processor.
16973 @item -mtune=@var{cpu-type}
16974 @opindex mtune
16975 Use the timing characteristics of the indicated CPU type when
16976 scheduling instructions.  This does not change the targeted processor
16977 type.  The CPU type must be one of @samp{mn10300}, @samp{am33},
16978 @samp{am33-2} or @samp{am34}.
16980 @item -mreturn-pointer-on-d0
16981 @opindex mreturn-pointer-on-d0
16982 When generating a function that returns a pointer, return the pointer
16983 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
16984 only in @code{a0}, and attempts to call such functions without a prototype
16985 result in errors.  Note that this option is on by default; use
16986 @option{-mno-return-pointer-on-d0} to disable it.
16988 @item -mno-crt0
16989 @opindex mno-crt0
16990 Do not link in the C run-time initialization object file.
16992 @item -mrelax
16993 @opindex mrelax
16994 Indicate to the linker that it should perform a relaxation optimization pass
16995 to shorten branches, calls and absolute memory addresses.  This option only
16996 has an effect when used on the command line for the final link step.
16998 This option makes symbolic debugging impossible.
17000 @item -mliw
17001 @opindex mliw
17002 Allow the compiler to generate @emph{Long Instruction Word}
17003 instructions if the target is the @samp{AM33} or later.  This is the
17004 default.  This option defines the preprocessor macro @samp{__LIW__}.
17006 @item -mnoliw
17007 @opindex mnoliw
17008 Do not allow the compiler to generate @emph{Long Instruction Word}
17009 instructions.  This option defines the preprocessor macro
17010 @samp{__NO_LIW__}.
17012 @item -msetlb
17013 @opindex msetlb
17014 Allow the compiler to generate the @emph{SETLB} and @emph{Lcc}
17015 instructions if the target is the @samp{AM33} or later.  This is the
17016 default.  This option defines the preprocessor macro @samp{__SETLB__}.
17018 @item -mnosetlb
17019 @opindex mnosetlb
17020 Do not allow the compiler to generate @emph{SETLB} or @emph{Lcc}
17021 instructions.  This option defines the preprocessor macro
17022 @samp{__NO_SETLB__}.
17024 @end table
17026 @node Moxie Options
17027 @subsection Moxie Options
17028 @cindex Moxie Options
17030 @table @gcctabopt
17032 @item -meb
17033 @opindex meb
17034 Generate big-endian code.  This is the default for @samp{moxie-*-*}
17035 configurations.
17037 @item -mel
17038 @opindex mel
17039 Generate little-endian code.
17041 @item -mno-crt0
17042 @opindex mno-crt0
17043 Do not link in the C run-time initialization object file.
17045 @end table
17047 @node PDP-11 Options
17048 @subsection PDP-11 Options
17049 @cindex PDP-11 Options
17051 These options are defined for the PDP-11:
17053 @table @gcctabopt
17054 @item -mfpu
17055 @opindex mfpu
17056 Use hardware FPP floating point.  This is the default.  (FIS floating
17057 point on the PDP-11/40 is not supported.)
17059 @item -msoft-float
17060 @opindex msoft-float
17061 Do not use hardware floating point.
17063 @item -mac0
17064 @opindex mac0
17065 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
17067 @item -mno-ac0
17068 @opindex mno-ac0
17069 Return floating-point results in memory.  This is the default.
17071 @item -m40
17072 @opindex m40
17073 Generate code for a PDP-11/40.
17075 @item -m45
17076 @opindex m45
17077 Generate code for a PDP-11/45.  This is the default.
17079 @item -m10
17080 @opindex m10
17081 Generate code for a PDP-11/10.
17083 @item -mbcopy-builtin
17084 @opindex mbcopy-builtin
17085 Use inline @code{movmemhi} patterns for copying memory.  This is the
17086 default.
17088 @item -mbcopy
17089 @opindex mbcopy
17090 Do not use inline @code{movmemhi} patterns for copying memory.
17092 @item -mint16
17093 @itemx -mno-int32
17094 @opindex mint16
17095 @opindex mno-int32
17096 Use 16-bit @code{int}.  This is the default.
17098 @item -mint32
17099 @itemx -mno-int16
17100 @opindex mint32
17101 @opindex mno-int16
17102 Use 32-bit @code{int}.
17104 @item -mfloat64
17105 @itemx -mno-float32
17106 @opindex mfloat64
17107 @opindex mno-float32
17108 Use 64-bit @code{float}.  This is the default.
17110 @item -mfloat32
17111 @itemx -mno-float64
17112 @opindex mfloat32
17113 @opindex mno-float64
17114 Use 32-bit @code{float}.
17116 @item -mabshi
17117 @opindex mabshi
17118 Use @code{abshi2} pattern.  This is the default.
17120 @item -mno-abshi
17121 @opindex mno-abshi
17122 Do not use @code{abshi2} pattern.
17124 @item -mbranch-expensive
17125 @opindex mbranch-expensive
17126 Pretend that branches are expensive.  This is for experimenting with
17127 code generation only.
17129 @item -mbranch-cheap
17130 @opindex mbranch-cheap
17131 Do not pretend that branches are expensive.  This is the default.
17133 @item -munix-asm
17134 @opindex munix-asm
17135 Use Unix assembler syntax.  This is the default when configured for
17136 @samp{pdp11-*-bsd}.
17138 @item -mdec-asm
17139 @opindex mdec-asm
17140 Use DEC assembler syntax.  This is the default when configured for any
17141 PDP-11 target other than @samp{pdp11-*-bsd}.
17142 @end table
17144 @node picoChip Options
17145 @subsection picoChip Options
17146 @cindex picoChip options
17148 These @samp{-m} options are defined for picoChip implementations:
17150 @table @gcctabopt
17152 @item -mae=@var{ae_type}
17153 @opindex mcpu
17154 Set the instruction set, register set, and instruction scheduling
17155 parameters for array element type @var{ae_type}.  Supported values
17156 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
17158 @option{-mae=ANY} selects a completely generic AE type.  Code
17159 generated with this option runs on any of the other AE types.  The
17160 code is not as efficient as it would be if compiled for a specific
17161 AE type, and some types of operation (e.g., multiplication) do not
17162 work properly on all types of AE.
17164 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
17165 for compiled code, and is the default.
17167 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
17168 option may suffer from poor performance of byte (char) manipulation,
17169 since the DSP AE does not provide hardware support for byte load/stores.
17171 @item -msymbol-as-address
17172 Enable the compiler to directly use a symbol name as an address in a
17173 load/store instruction, without first loading it into a
17174 register.  Typically, the use of this option generates larger
17175 programs, which run faster than when the option isn't used.  However, the
17176 results vary from program to program, so it is left as a user option,
17177 rather than being permanently enabled.
17179 @item -mno-inefficient-warnings
17180 Disables warnings about the generation of inefficient code.  These
17181 warnings can be generated, for example, when compiling code that
17182 performs byte-level memory operations on the MAC AE type.  The MAC AE has
17183 no hardware support for byte-level memory operations, so all byte
17184 load/stores must be synthesized from word load/store operations.  This is
17185 inefficient and a warning is generated to indicate
17186 that you should rewrite the code to avoid byte operations, or to target
17187 an AE type that has the necessary hardware support.  This option disables
17188 these warnings.
17190 @end table
17192 @node PowerPC Options
17193 @subsection PowerPC Options
17194 @cindex PowerPC options
17196 These are listed under @xref{RS/6000 and PowerPC Options}.
17198 @node RL78 Options
17199 @subsection RL78 Options
17200 @cindex RL78 Options
17202 @table @gcctabopt
17204 @item -msim
17205 @opindex msim
17206 Links in additional target libraries to support operation within a
17207 simulator.
17209 @item -mmul=none
17210 @itemx -mmul=g13
17211 @itemx -mmul=rl78
17212 @opindex mmul
17213 Specifies the type of hardware multiplication support to be used.  The
17214 default is @code{none}, which uses software multiplication functions.
17215 The @code{g13} option is for the hardware multiply/divide peripheral
17216 only on the RL78/G13 targets.  The @code{rl78} option is for the
17217 standard hardware multiplication defined in the RL78 software manual.
17219 @end table
17221 @node RS/6000 and PowerPC Options
17222 @subsection IBM RS/6000 and PowerPC Options
17223 @cindex RS/6000 and PowerPC Options
17224 @cindex IBM RS/6000 and PowerPC Options
17226 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
17227 @table @gcctabopt
17228 @item -mpowerpc-gpopt
17229 @itemx -mno-powerpc-gpopt
17230 @itemx -mpowerpc-gfxopt
17231 @itemx -mno-powerpc-gfxopt
17232 @need 800
17233 @itemx -mpowerpc64
17234 @itemx -mno-powerpc64
17235 @itemx -mmfcrf
17236 @itemx -mno-mfcrf
17237 @itemx -mpopcntb
17238 @itemx -mno-popcntb
17239 @itemx -mpopcntd
17240 @itemx -mno-popcntd
17241 @itemx -mfprnd
17242 @itemx -mno-fprnd
17243 @need 800
17244 @itemx -mcmpb
17245 @itemx -mno-cmpb
17246 @itemx -mmfpgpr
17247 @itemx -mno-mfpgpr
17248 @itemx -mhard-dfp
17249 @itemx -mno-hard-dfp
17250 @opindex mpowerpc-gpopt
17251 @opindex mno-powerpc-gpopt
17252 @opindex mpowerpc-gfxopt
17253 @opindex mno-powerpc-gfxopt
17254 @opindex mpowerpc64
17255 @opindex mno-powerpc64
17256 @opindex mmfcrf
17257 @opindex mno-mfcrf
17258 @opindex mpopcntb
17259 @opindex mno-popcntb
17260 @opindex mpopcntd
17261 @opindex mno-popcntd
17262 @opindex mfprnd
17263 @opindex mno-fprnd
17264 @opindex mcmpb
17265 @opindex mno-cmpb
17266 @opindex mmfpgpr
17267 @opindex mno-mfpgpr
17268 @opindex mhard-dfp
17269 @opindex mno-hard-dfp
17270 You use these options to specify which instructions are available on the
17271 processor you are using.  The default value of these options is
17272 determined when configuring GCC@.  Specifying the
17273 @option{-mcpu=@var{cpu_type}} overrides the specification of these
17274 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
17275 rather than the options listed above.
17277 Specifying @option{-mpowerpc-gpopt} allows
17278 GCC to use the optional PowerPC architecture instructions in the
17279 General Purpose group, including floating-point square root.  Specifying
17280 @option{-mpowerpc-gfxopt} allows GCC to
17281 use the optional PowerPC architecture instructions in the Graphics
17282 group, including floating-point select.
17284 The @option{-mmfcrf} option allows GCC to generate the move from
17285 condition register field instruction implemented on the POWER4
17286 processor and other processors that support the PowerPC V2.01
17287 architecture.
17288 The @option{-mpopcntb} option allows GCC to generate the popcount and
17289 double-precision FP reciprocal estimate instruction implemented on the
17290 POWER5 processor and other processors that support the PowerPC V2.02
17291 architecture.
17292 The @option{-mpopcntd} option allows GCC to generate the popcount
17293 instruction implemented on the POWER7 processor and other processors
17294 that support the PowerPC V2.06 architecture.
17295 The @option{-mfprnd} option allows GCC to generate the FP round to
17296 integer instructions implemented on the POWER5+ processor and other
17297 processors that support the PowerPC V2.03 architecture.
17298 The @option{-mcmpb} option allows GCC to generate the compare bytes
17299 instruction implemented on the POWER6 processor and other processors
17300 that support the PowerPC V2.05 architecture.
17301 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
17302 general-purpose register instructions implemented on the POWER6X
17303 processor and other processors that support the extended PowerPC V2.05
17304 architecture.
17305 The @option{-mhard-dfp} option allows GCC to generate the decimal
17306 floating-point instructions implemented on some POWER processors.
17308 The @option{-mpowerpc64} option allows GCC to generate the additional
17309 64-bit instructions that are found in the full PowerPC64 architecture
17310 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
17311 @option{-mno-powerpc64}.
17313 @item -mcpu=@var{cpu_type}
17314 @opindex mcpu
17315 Set architecture type, register usage, and
17316 instruction scheduling parameters for machine type @var{cpu_type}.
17317 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
17318 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
17319 @samp{476}, @samp{476fp}, @samp{505}, @samp{601}, @samp{602}, @samp{603},
17320 @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740},
17321 @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
17322 @samp{860}, @samp{970}, @samp{8540}, @samp{a2}, @samp{e300c2},
17323 @samp{e300c3}, @samp{e500mc}, @samp{e500mc64}, @samp{e5500},
17324 @samp{e6500}, @samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5},
17325 @samp{titan}, @samp{power3}, @samp{power4}, @samp{power5}, @samp{power5+},
17326 @samp{power6}, @samp{power6x}, @samp{power7}, @samp{power8}, @samp{powerpc},
17327 @samp{powerpc64}, and @samp{rs64}.
17329 @option{-mcpu=powerpc}, and @option{-mcpu=powerpc64} specify pure 32-bit
17330 PowerPC and 64-bit PowerPC architecture machine
17331 types, with an appropriate, generic processor model assumed for
17332 scheduling purposes.
17334 The other options specify a specific processor.  Code generated under
17335 those options runs best on that processor, and may not run at all on
17336 others.
17338 The @option{-mcpu} options automatically enable or disable the
17339 following options:
17341 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
17342 -mpopcntb -mpopcntd  -mpowerpc64 @gol
17343 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
17344 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr -mvsx}
17346 The particular options set for any particular CPU varies between
17347 compiler versions, depending on what setting seems to produce optimal
17348 code for that CPU; it doesn't necessarily reflect the actual hardware's
17349 capabilities.  If you wish to set an individual option to a particular
17350 value, you may specify it after the @option{-mcpu} option, like
17351 @option{-mcpu=970 -mno-altivec}.
17353 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
17354 not enabled or disabled by the @option{-mcpu} option at present because
17355 AIX does not have full support for these options.  You may still
17356 enable or disable them individually if you're sure it'll work in your
17357 environment.
17359 @item -mtune=@var{cpu_type}
17360 @opindex mtune
17361 Set the instruction scheduling parameters for machine type
17362 @var{cpu_type}, but do not set the architecture type or register usage,
17363 as @option{-mcpu=@var{cpu_type}} does.  The same
17364 values for @var{cpu_type} are used for @option{-mtune} as for
17365 @option{-mcpu}.  If both are specified, the code generated uses the
17366 architecture and registers set by @option{-mcpu}, but the
17367 scheduling parameters set by @option{-mtune}.
17369 @item -mcmodel=small
17370 @opindex mcmodel=small
17371 Generate PowerPC64 code for the small model: The TOC is limited to
17372 64k.
17374 @item -mcmodel=medium
17375 @opindex mcmodel=medium
17376 Generate PowerPC64 code for the medium model: The TOC and other static
17377 data may be up to a total of 4G in size.
17379 @item -mcmodel=large
17380 @opindex mcmodel=large
17381 Generate PowerPC64 code for the large model: The TOC may be up to 4G
17382 in size.  Other data and code is only limited by the 64-bit address
17383 space.
17385 @item -maltivec
17386 @itemx -mno-altivec
17387 @opindex maltivec
17388 @opindex mno-altivec
17389 Generate code that uses (does not use) AltiVec instructions, and also
17390 enable the use of built-in functions that allow more direct access to
17391 the AltiVec instruction set.  You may also need to set
17392 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
17393 enhancements.
17395 @item -mvrsave
17396 @itemx -mno-vrsave
17397 @opindex mvrsave
17398 @opindex mno-vrsave
17399 Generate VRSAVE instructions when generating AltiVec code.
17401 @item -mgen-cell-microcode
17402 @opindex mgen-cell-microcode
17403 Generate Cell microcode instructions.
17405 @item -mwarn-cell-microcode
17406 @opindex mwarn-cell-microcode
17407 Warn when a Cell microcode instruction is emitted.  An example
17408 of a Cell microcode instruction is a variable shift.
17410 @item -msecure-plt
17411 @opindex msecure-plt
17412 Generate code that allows @command{ld} and @command{ld.so}
17413 to build executables and shared
17414 libraries with non-executable @code{.plt} and @code{.got} sections.
17415 This is a PowerPC
17416 32-bit SYSV ABI option.
17418 @item -mbss-plt
17419 @opindex mbss-plt
17420 Generate code that uses a BSS @code{.plt} section that @command{ld.so}
17421 fills in, and
17422 requires @code{.plt} and @code{.got}
17423 sections that are both writable and executable.
17424 This is a PowerPC 32-bit SYSV ABI option.
17426 @item -misel
17427 @itemx -mno-isel
17428 @opindex misel
17429 @opindex mno-isel
17430 This switch enables or disables the generation of ISEL instructions.
17432 @item -misel=@var{yes/no}
17433 This switch has been deprecated.  Use @option{-misel} and
17434 @option{-mno-isel} instead.
17436 @item -mspe
17437 @itemx -mno-spe
17438 @opindex mspe
17439 @opindex mno-spe
17440 This switch enables or disables the generation of SPE simd
17441 instructions.
17443 @item -mpaired
17444 @itemx -mno-paired
17445 @opindex mpaired
17446 @opindex mno-paired
17447 This switch enables or disables the generation of PAIRED simd
17448 instructions.
17450 @item -mspe=@var{yes/no}
17451 This option has been deprecated.  Use @option{-mspe} and
17452 @option{-mno-spe} instead.
17454 @item -mvsx
17455 @itemx -mno-vsx
17456 @opindex mvsx
17457 @opindex mno-vsx
17458 Generate code that uses (does not use) vector/scalar (VSX)
17459 instructions, and also enable the use of built-in functions that allow
17460 more direct access to the VSX instruction set.
17462 @item -mfloat-gprs=@var{yes/single/double/no}
17463 @itemx -mfloat-gprs
17464 @opindex mfloat-gprs
17465 This switch enables or disables the generation of floating-point
17466 operations on the general-purpose registers for architectures that
17467 support it.
17469 The argument @var{yes} or @var{single} enables the use of
17470 single-precision floating-point operations.
17472 The argument @var{double} enables the use of single and
17473 double-precision floating-point operations.
17475 The argument @var{no} disables floating-point operations on the
17476 general-purpose registers.
17478 This option is currently only available on the MPC854x.
17480 @item -m32
17481 @itemx -m64
17482 @opindex m32
17483 @opindex m64
17484 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
17485 targets (including GNU/Linux).  The 32-bit environment sets int, long
17486 and pointer to 32 bits and generates code that runs on any PowerPC
17487 variant.  The 64-bit environment sets int to 32 bits and long and
17488 pointer to 64 bits, and generates code for PowerPC64, as for
17489 @option{-mpowerpc64}.
17491 @item -mfull-toc
17492 @itemx -mno-fp-in-toc
17493 @itemx -mno-sum-in-toc
17494 @itemx -mminimal-toc
17495 @opindex mfull-toc
17496 @opindex mno-fp-in-toc
17497 @opindex mno-sum-in-toc
17498 @opindex mminimal-toc
17499 Modify generation of the TOC (Table Of Contents), which is created for
17500 every executable file.  The @option{-mfull-toc} option is selected by
17501 default.  In that case, GCC allocates at least one TOC entry for
17502 each unique non-automatic variable reference in your program.  GCC
17503 also places floating-point constants in the TOC@.  However, only
17504 16,384 entries are available in the TOC@.
17506 If you receive a linker error message that saying you have overflowed
17507 the available TOC space, you can reduce the amount of TOC space used
17508 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
17509 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
17510 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
17511 generate code to calculate the sum of an address and a constant at
17512 run time instead of putting that sum into the TOC@.  You may specify one
17513 or both of these options.  Each causes GCC to produce very slightly
17514 slower and larger code at the expense of conserving TOC space.
17516 If you still run out of space in the TOC even when you specify both of
17517 these options, specify @option{-mminimal-toc} instead.  This option causes
17518 GCC to make only one TOC entry for every file.  When you specify this
17519 option, GCC produces code that is slower and larger but which
17520 uses extremely little TOC space.  You may wish to use this option
17521 only on files that contain less frequently-executed code.
17523 @item -maix64
17524 @itemx -maix32
17525 @opindex maix64
17526 @opindex maix32
17527 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
17528 @code{long} type, and the infrastructure needed to support them.
17529 Specifying @option{-maix64} implies @option{-mpowerpc64},
17530 while @option{-maix32} disables the 64-bit ABI and
17531 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
17533 @item -mxl-compat
17534 @itemx -mno-xl-compat
17535 @opindex mxl-compat
17536 @opindex mno-xl-compat
17537 Produce code that conforms more closely to IBM XL compiler semantics
17538 when using AIX-compatible ABI@.  Pass floating-point arguments to
17539 prototyped functions beyond the register save area (RSA) on the stack
17540 in addition to argument FPRs.  Do not assume that most significant
17541 double in 128-bit long double value is properly rounded when comparing
17542 values and converting to double.  Use XL symbol names for long double
17543 support routines.
17545 The AIX calling convention was extended but not initially documented to
17546 handle an obscure K&R C case of calling a function that takes the
17547 address of its arguments with fewer arguments than declared.  IBM XL
17548 compilers access floating-point arguments that do not fit in the
17549 RSA from the stack when a subroutine is compiled without
17550 optimization.  Because always storing floating-point arguments on the
17551 stack is inefficient and rarely needed, this option is not enabled by
17552 default and only is necessary when calling subroutines compiled by IBM
17553 XL compilers without optimization.
17555 @item -mpe
17556 @opindex mpe
17557 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
17558 application written to use message passing with special startup code to
17559 enable the application to run.  The system must have PE installed in the
17560 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
17561 must be overridden with the @option{-specs=} option to specify the
17562 appropriate directory location.  The Parallel Environment does not
17563 support threads, so the @option{-mpe} option and the @option{-pthread}
17564 option are incompatible.
17566 @item -malign-natural
17567 @itemx -malign-power
17568 @opindex malign-natural
17569 @opindex malign-power
17570 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
17571 @option{-malign-natural} overrides the ABI-defined alignment of larger
17572 types, such as floating-point doubles, on their natural size-based boundary.
17573 The option @option{-malign-power} instructs GCC to follow the ABI-specified
17574 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
17576 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
17577 is not supported.
17579 @item -msoft-float
17580 @itemx -mhard-float
17581 @opindex msoft-float
17582 @opindex mhard-float
17583 Generate code that does not use (uses) the floating-point register set.
17584 Software floating-point emulation is provided if you use the
17585 @option{-msoft-float} option, and pass the option to GCC when linking.
17587 @item -msingle-float
17588 @itemx -mdouble-float
17589 @opindex msingle-float
17590 @opindex mdouble-float
17591 Generate code for single- or double-precision floating-point operations.
17592 @option{-mdouble-float} implies @option{-msingle-float}.
17594 @item -msimple-fpu
17595 @opindex msimple-fpu
17596 Do not generate @code{sqrt} and @code{div} instructions for hardware
17597 floating-point unit.
17599 @item -mfpu=@var{name}
17600 @opindex mfpu
17601 Specify type of floating-point unit.  Valid values for @var{name} are
17602 @samp{sp_lite} (equivalent to @option{-msingle-float -msimple-fpu}),
17603 @samp{dp_lite} (equivalent to @option{-mdouble-float -msimple-fpu}),
17604 @samp{sp_full} (equivalent to @option{-msingle-float}),
17605 and @samp{dp_full} (equivalent to @option{-mdouble-float}).
17607 @item -mxilinx-fpu
17608 @opindex mxilinx-fpu
17609 Perform optimizations for the floating-point unit on Xilinx PPC 405/440.
17611 @item -mmultiple
17612 @itemx -mno-multiple
17613 @opindex mmultiple
17614 @opindex mno-multiple
17615 Generate code that uses (does not use) the load multiple word
17616 instructions and the store multiple word instructions.  These
17617 instructions are generated by default on POWER systems, and not
17618 generated on PowerPC systems.  Do not use @option{-mmultiple} on little-endian
17619 PowerPC systems, since those instructions do not work when the
17620 processor is in little-endian mode.  The exceptions are PPC740 and
17621 PPC750 which permit these instructions in little-endian mode.
17623 @item -mstring
17624 @itemx -mno-string
17625 @opindex mstring
17626 @opindex mno-string
17627 Generate code that uses (does not use) the load string instructions
17628 and the store string word instructions to save multiple registers and
17629 do small block moves.  These instructions are generated by default on
17630 POWER systems, and not generated on PowerPC systems.  Do not use
17631 @option{-mstring} on little-endian PowerPC systems, since those
17632 instructions do not work when the processor is in little-endian mode.
17633 The exceptions are PPC740 and PPC750 which permit these instructions
17634 in little-endian mode.
17636 @item -mupdate
17637 @itemx -mno-update
17638 @opindex mupdate
17639 @opindex mno-update
17640 Generate code that uses (does not use) the load or store instructions
17641 that update the base register to the address of the calculated memory
17642 location.  These instructions are generated by default.  If you use
17643 @option{-mno-update}, there is a small window between the time that the
17644 stack pointer is updated and the address of the previous frame is
17645 stored, which means code that walks the stack frame across interrupts or
17646 signals may get corrupted data.
17648 @item -mavoid-indexed-addresses
17649 @itemx -mno-avoid-indexed-addresses
17650 @opindex mavoid-indexed-addresses
17651 @opindex mno-avoid-indexed-addresses
17652 Generate code that tries to avoid (not avoid) the use of indexed load
17653 or store instructions. These instructions can incur a performance
17654 penalty on Power6 processors in certain situations, such as when
17655 stepping through large arrays that cross a 16M boundary.  This option
17656 is enabled by default when targeting Power6 and disabled otherwise.
17658 @item -mfused-madd
17659 @itemx -mno-fused-madd
17660 @opindex mfused-madd
17661 @opindex mno-fused-madd
17662 Generate code that uses (does not use) the floating-point multiply and
17663 accumulate instructions.  These instructions are generated by default
17664 if hardware floating point is used.  The machine-dependent
17665 @option{-mfused-madd} option is now mapped to the machine-independent
17666 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
17667 mapped to @option{-ffp-contract=off}.
17669 @item -mmulhw
17670 @itemx -mno-mulhw
17671 @opindex mmulhw
17672 @opindex mno-mulhw
17673 Generate code that uses (does not use) the half-word multiply and
17674 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
17675 These instructions are generated by default when targeting those
17676 processors.
17678 @item -mdlmzb
17679 @itemx -mno-dlmzb
17680 @opindex mdlmzb
17681 @opindex mno-dlmzb
17682 Generate code that uses (does not use) the string-search @samp{dlmzb}
17683 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
17684 generated by default when targeting those processors.
17686 @item -mno-bit-align
17687 @itemx -mbit-align
17688 @opindex mno-bit-align
17689 @opindex mbit-align
17690 On System V.4 and embedded PowerPC systems do not (do) force structures
17691 and unions that contain bit-fields to be aligned to the base type of the
17692 bit-field.
17694 For example, by default a structure containing nothing but 8
17695 @code{unsigned} bit-fields of length 1 is aligned to a 4-byte
17696 boundary and has a size of 4 bytes.  By using @option{-mno-bit-align},
17697 the structure is aligned to a 1-byte boundary and is 1 byte in
17698 size.
17700 @item -mno-strict-align
17701 @itemx -mstrict-align
17702 @opindex mno-strict-align
17703 @opindex mstrict-align
17704 On System V.4 and embedded PowerPC systems do not (do) assume that
17705 unaligned memory references are handled by the system.
17707 @item -mrelocatable
17708 @itemx -mno-relocatable
17709 @opindex mrelocatable
17710 @opindex mno-relocatable
17711 Generate code that allows (does not allow) a static executable to be
17712 relocated to a different address at run time.  A simple embedded
17713 PowerPC system loader should relocate the entire contents of
17714 @code{.got2} and 4-byte locations listed in the @code{.fixup} section,
17715 a table of 32-bit addresses generated by this option.  For this to
17716 work, all objects linked together must be compiled with
17717 @option{-mrelocatable} or @option{-mrelocatable-lib}.
17718 @option{-mrelocatable} code aligns the stack to an 8-byte boundary.
17720 @item -mrelocatable-lib
17721 @itemx -mno-relocatable-lib
17722 @opindex mrelocatable-lib
17723 @opindex mno-relocatable-lib
17724 Like @option{-mrelocatable}, @option{-mrelocatable-lib} generates a
17725 @code{.fixup} section to allow static executables to be relocated at
17726 run time, but @option{-mrelocatable-lib} does not use the smaller stack
17727 alignment of @option{-mrelocatable}.  Objects compiled with
17728 @option{-mrelocatable-lib} may be linked with objects compiled with
17729 any combination of the @option{-mrelocatable} options.
17731 @item -mno-toc
17732 @itemx -mtoc
17733 @opindex mno-toc
17734 @opindex mtoc
17735 On System V.4 and embedded PowerPC systems do not (do) assume that
17736 register 2 contains a pointer to a global area pointing to the addresses
17737 used in the program.
17739 @item -mlittle
17740 @itemx -mlittle-endian
17741 @opindex mlittle
17742 @opindex mlittle-endian
17743 On System V.4 and embedded PowerPC systems compile code for the
17744 processor in little-endian mode.  The @option{-mlittle-endian} option is
17745 the same as @option{-mlittle}.
17747 @item -mbig
17748 @itemx -mbig-endian
17749 @opindex mbig
17750 @opindex mbig-endian
17751 On System V.4 and embedded PowerPC systems compile code for the
17752 processor in big-endian mode.  The @option{-mbig-endian} option is
17753 the same as @option{-mbig}.
17755 @item -mdynamic-no-pic
17756 @opindex mdynamic-no-pic
17757 On Darwin and Mac OS X systems, compile code so that it is not
17758 relocatable, but that its external references are relocatable.  The
17759 resulting code is suitable for applications, but not shared
17760 libraries.
17762 @item -msingle-pic-base
17763 @opindex msingle-pic-base
17764 Treat the register used for PIC addressing as read-only, rather than
17765 loading it in the prologue for each function.  The runtime system is
17766 responsible for initializing this register with an appropriate value
17767 before execution begins.
17769 @item -mprioritize-restricted-insns=@var{priority}
17770 @opindex mprioritize-restricted-insns
17771 This option controls the priority that is assigned to
17772 dispatch-slot restricted instructions during the second scheduling
17773 pass.  The argument @var{priority} takes the value @samp{0}, @samp{1},
17774 or @samp{2} to assign no, highest, or second-highest (respectively) 
17775 priority to dispatch-slot restricted
17776 instructions.
17778 @item -msched-costly-dep=@var{dependence_type}
17779 @opindex msched-costly-dep
17780 This option controls which dependences are considered costly
17781 by the target during instruction scheduling.  The argument
17782 @var{dependence_type} takes one of the following values:
17784 @table @asis
17785 @item @samp{no}
17786 No dependence is costly.
17788 @item @samp{all}
17789 All dependences are costly.
17791 @item @samp{true_store_to_load}
17792 A true dependence from store to load is costly.
17794 @item @samp{store_to_load}
17795 Any dependence from store to load is costly.
17797 @item @var{number}
17798 Any dependence for which the latency is greater than or equal to 
17799 @var{number} is costly.
17800 @end table
17802 @item -minsert-sched-nops=@var{scheme}
17803 @opindex minsert-sched-nops
17804 This option controls which NOP insertion scheme is used during
17805 the second scheduling pass.  The argument @var{scheme} takes one of the
17806 following values:
17808 @table @asis
17809 @item @samp{no}
17810 Don't insert NOPs.
17812 @item @samp{pad}
17813 Pad with NOPs any dispatch group that has vacant issue slots,
17814 according to the scheduler's grouping.
17816 @item @samp{regroup_exact}
17817 Insert NOPs to force costly dependent insns into
17818 separate groups.  Insert exactly as many NOPs as needed to force an insn
17819 to a new group, according to the estimated processor grouping.
17821 @item @var{number}
17822 Insert NOPs to force costly dependent insns into
17823 separate groups.  Insert @var{number} NOPs to force an insn to a new group.
17824 @end table
17826 @item -mcall-sysv
17827 @opindex mcall-sysv
17828 On System V.4 and embedded PowerPC systems compile code using calling
17829 conventions that adhere to the March 1995 draft of the System V
17830 Application Binary Interface, PowerPC processor supplement.  This is the
17831 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
17833 @item -mcall-sysv-eabi
17834 @itemx -mcall-eabi
17835 @opindex mcall-sysv-eabi
17836 @opindex mcall-eabi
17837 Specify both @option{-mcall-sysv} and @option{-meabi} options.
17839 @item -mcall-sysv-noeabi
17840 @opindex mcall-sysv-noeabi
17841 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
17843 @item -mcall-aixdesc
17844 @opindex m
17845 On System V.4 and embedded PowerPC systems compile code for the AIX
17846 operating system.
17848 @item -mcall-linux
17849 @opindex mcall-linux
17850 On System V.4 and embedded PowerPC systems compile code for the
17851 Linux-based GNU system.
17853 @item -mcall-freebsd
17854 @opindex mcall-freebsd
17855 On System V.4 and embedded PowerPC systems compile code for the
17856 FreeBSD operating system.
17858 @item -mcall-netbsd
17859 @opindex mcall-netbsd
17860 On System V.4 and embedded PowerPC systems compile code for the
17861 NetBSD operating system.
17863 @item -mcall-openbsd
17864 @opindex mcall-netbsd
17865 On System V.4 and embedded PowerPC systems compile code for the
17866 OpenBSD operating system.
17868 @item -maix-struct-return
17869 @opindex maix-struct-return
17870 Return all structures in memory (as specified by the AIX ABI)@.
17872 @item -msvr4-struct-return
17873 @opindex msvr4-struct-return
17874 Return structures smaller than 8 bytes in registers (as specified by the
17875 SVR4 ABI)@.
17877 @item -mabi=@var{abi-type}
17878 @opindex mabi
17879 Extend the current ABI with a particular extension, or remove such extension.
17880 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
17881 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
17883 @item -mabi=spe
17884 @opindex mabi=spe
17885 Extend the current ABI with SPE ABI extensions.  This does not change
17886 the default ABI, instead it adds the SPE ABI extensions to the current
17887 ABI@.
17889 @item -mabi=no-spe
17890 @opindex mabi=no-spe
17891 Disable Book-E SPE ABI extensions for the current ABI@.
17893 @item -mabi=ibmlongdouble
17894 @opindex mabi=ibmlongdouble
17895 Change the current ABI to use IBM extended-precision long double.
17896 This is a PowerPC 32-bit SYSV ABI option.
17898 @item -mabi=ieeelongdouble
17899 @opindex mabi=ieeelongdouble
17900 Change the current ABI to use IEEE extended-precision long double.
17901 This is a PowerPC 32-bit Linux ABI option.
17903 @item -mprototype
17904 @itemx -mno-prototype
17905 @opindex mprototype
17906 @opindex mno-prototype
17907 On System V.4 and embedded PowerPC systems assume that all calls to
17908 variable argument functions are properly prototyped.  Otherwise, the
17909 compiler must insert an instruction before every non-prototyped call to
17910 set or clear bit 6 of the condition code register (@var{CR}) to
17911 indicate whether floating-point values are passed in the floating-point
17912 registers in case the function takes variable arguments.  With
17913 @option{-mprototype}, only calls to prototyped variable argument functions
17914 set or clear the bit.
17916 @item -msim
17917 @opindex msim
17918 On embedded PowerPC systems, assume that the startup module is called
17919 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
17920 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
17921 configurations.
17923 @item -mmvme
17924 @opindex mmvme
17925 On embedded PowerPC systems, assume that the startup module is called
17926 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
17927 @file{libc.a}.
17929 @item -mads
17930 @opindex mads
17931 On embedded PowerPC systems, assume that the startup module is called
17932 @file{crt0.o} and the standard C libraries are @file{libads.a} and
17933 @file{libc.a}.
17935 @item -myellowknife
17936 @opindex myellowknife
17937 On embedded PowerPC systems, assume that the startup module is called
17938 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
17939 @file{libc.a}.
17941 @item -mvxworks
17942 @opindex mvxworks
17943 On System V.4 and embedded PowerPC systems, specify that you are
17944 compiling for a VxWorks system.
17946 @item -memb
17947 @opindex memb
17948 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
17949 header to indicate that @samp{eabi} extended relocations are used.
17951 @item -meabi
17952 @itemx -mno-eabi
17953 @opindex meabi
17954 @opindex mno-eabi
17955 On System V.4 and embedded PowerPC systems do (do not) adhere to the
17956 Embedded Applications Binary Interface (EABI), which is a set of
17957 modifications to the System V.4 specifications.  Selecting @option{-meabi}
17958 means that the stack is aligned to an 8-byte boundary, a function
17959 @code{__eabi} is called from @code{main} to set up the EABI
17960 environment, and the @option{-msdata} option can use both @code{r2} and
17961 @code{r13} to point to two separate small data areas.  Selecting
17962 @option{-mno-eabi} means that the stack is aligned to a 16-byte boundary,
17963 no EABI initialization function is called from @code{main}, and the
17964 @option{-msdata} option only uses @code{r13} to point to a single
17965 small data area.  The @option{-meabi} option is on by default if you
17966 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
17968 @item -msdata=eabi
17969 @opindex msdata=eabi
17970 On System V.4 and embedded PowerPC systems, put small initialized
17971 @code{const} global and static data in the @samp{.sdata2} section, which
17972 is pointed to by register @code{r2}.  Put small initialized
17973 non-@code{const} global and static data in the @samp{.sdata} section,
17974 which is pointed to by register @code{r13}.  Put small uninitialized
17975 global and static data in the @samp{.sbss} section, which is adjacent to
17976 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
17977 incompatible with the @option{-mrelocatable} option.  The
17978 @option{-msdata=eabi} option also sets the @option{-memb} option.
17980 @item -msdata=sysv
17981 @opindex msdata=sysv
17982 On System V.4 and embedded PowerPC systems, put small global and static
17983 data in the @samp{.sdata} section, which is pointed to by register
17984 @code{r13}.  Put small uninitialized global and static data in the
17985 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
17986 The @option{-msdata=sysv} option is incompatible with the
17987 @option{-mrelocatable} option.
17989 @item -msdata=default
17990 @itemx -msdata
17991 @opindex msdata=default
17992 @opindex msdata
17993 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
17994 compile code the same as @option{-msdata=eabi}, otherwise compile code the
17995 same as @option{-msdata=sysv}.
17997 @item -msdata=data
17998 @opindex msdata=data
17999 On System V.4 and embedded PowerPC systems, put small global
18000 data in the @samp{.sdata} section.  Put small uninitialized global
18001 data in the @samp{.sbss} section.  Do not use register @code{r13}
18002 to address small data however.  This is the default behavior unless
18003 other @option{-msdata} options are used.
18005 @item -msdata=none
18006 @itemx -mno-sdata
18007 @opindex msdata=none
18008 @opindex mno-sdata
18009 On embedded PowerPC systems, put all initialized global and static data
18010 in the @samp{.data} section, and all uninitialized data in the
18011 @samp{.bss} section.
18013 @item -mblock-move-inline-limit=@var{num}
18014 @opindex mblock-move-inline-limit
18015 Inline all block moves (such as calls to @code{memcpy} or structure
18016 copies) less than or equal to @var{num} bytes.  The minimum value for
18017 @var{num} is 32 bytes on 32-bit targets and 64 bytes on 64-bit
18018 targets.  The default value is target-specific.
18020 @item -G @var{num}
18021 @opindex G
18022 @cindex smaller data references (PowerPC)
18023 @cindex .sdata/.sdata2 references (PowerPC)
18024 On embedded PowerPC systems, put global and static items less than or
18025 equal to @var{num} bytes into the small data or BSS sections instead of
18026 the normal data or BSS section.  By default, @var{num} is 8.  The
18027 @option{-G @var{num}} switch is also passed to the linker.
18028 All modules should be compiled with the same @option{-G @var{num}} value.
18030 @item -mregnames
18031 @itemx -mno-regnames
18032 @opindex mregnames
18033 @opindex mno-regnames
18034 On System V.4 and embedded PowerPC systems do (do not) emit register
18035 names in the assembly language output using symbolic forms.
18037 @item -mlongcall
18038 @itemx -mno-longcall
18039 @opindex mlongcall
18040 @opindex mno-longcall
18041 By default assume that all calls are far away so that a longer and more
18042 expensive calling sequence is required.  This is required for calls
18043 farther than 32 megabytes (33,554,432 bytes) from the current location.
18044 A short call is generated if the compiler knows
18045 the call cannot be that far away.  This setting can be overridden by
18046 the @code{shortcall} function attribute, or by @code{#pragma
18047 longcall(0)}.
18049 Some linkers are capable of detecting out-of-range calls and generating
18050 glue code on the fly.  On these systems, long calls are unnecessary and
18051 generate slower code.  As of this writing, the AIX linker can do this,
18052 as can the GNU linker for PowerPC/64.  It is planned to add this feature
18053 to the GNU linker for 32-bit PowerPC systems as well.
18055 On Darwin/PPC systems, @code{#pragma longcall} generates @code{jbsr
18056 callee, L42}, plus a @dfn{branch island} (glue code).  The two target
18057 addresses represent the callee and the branch island.  The
18058 Darwin/PPC linker prefers the first address and generates a @code{bl
18059 callee} if the PPC @code{bl} instruction reaches the callee directly;
18060 otherwise, the linker generates @code{bl L42} to call the branch
18061 island.  The branch island is appended to the body of the
18062 calling function; it computes the full 32-bit address of the callee
18063 and jumps to it.
18065 On Mach-O (Darwin) systems, this option directs the compiler emit to
18066 the glue for every direct call, and the Darwin linker decides whether
18067 to use or discard it.
18069 In the future, GCC may ignore all longcall specifications
18070 when the linker is known to generate glue.
18072 @item -mtls-markers
18073 @itemx -mno-tls-markers
18074 @opindex mtls-markers
18075 @opindex mno-tls-markers
18076 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
18077 specifying the function argument.  The relocation allows the linker to
18078 reliably associate function call with argument setup instructions for
18079 TLS optimization, which in turn allows GCC to better schedule the
18080 sequence.
18082 @item -pthread
18083 @opindex pthread
18084 Adds support for multithreading with the @dfn{pthreads} library.
18085 This option sets flags for both the preprocessor and linker.
18087 @item -mrecip
18088 @itemx -mno-recip
18089 @opindex mrecip
18090 This option enables use of the reciprocal estimate and
18091 reciprocal square root estimate instructions with additional
18092 Newton-Raphson steps to increase precision instead of doing a divide or
18093 square root and divide for floating-point arguments.  You should use
18094 the @option{-ffast-math} option when using @option{-mrecip} (or at
18095 least @option{-funsafe-math-optimizations},
18096 @option{-finite-math-only}, @option{-freciprocal-math} and
18097 @option{-fno-trapping-math}).  Note that while the throughput of the
18098 sequence is generally higher than the throughput of the non-reciprocal
18099 instruction, the precision of the sequence can be decreased by up to 2
18100 ulp (i.e.@: the inverse of 1.0 equals 0.99999994) for reciprocal square
18101 roots.
18103 @item -mrecip=@var{opt}
18104 @opindex mrecip=opt
18105 This option controls which reciprocal estimate instructions
18106 may be used.  @var{opt} is a comma-separated list of options, which may
18107 be preceded by a @code{!} to invert the option:
18108 @code{all}: enable all estimate instructions,
18109 @code{default}: enable the default instructions, equivalent to @option{-mrecip},
18110 @code{none}: disable all estimate instructions, equivalent to @option{-mno-recip};
18111 @code{div}: enable the reciprocal approximation instructions for both single and double precision;
18112 @code{divf}: enable the single-precision reciprocal approximation instructions;
18113 @code{divd}: enable the double-precision reciprocal approximation instructions;
18114 @code{rsqrt}: enable the reciprocal square root approximation instructions for both single and double precision;
18115 @code{rsqrtf}: enable the single-precision reciprocal square root approximation instructions;
18116 @code{rsqrtd}: enable the double-precision reciprocal square root approximation instructions;
18118 So, for example, @option{-mrecip=all,!rsqrtd} enables
18119 all of the reciprocal estimate instructions, except for the
18120 @code{FRSQRTE}, @code{XSRSQRTEDP}, and @code{XVRSQRTEDP} instructions
18121 which handle the double-precision reciprocal square root calculations.
18123 @item -mrecip-precision
18124 @itemx -mno-recip-precision
18125 @opindex mrecip-precision
18126 Assume (do not assume) that the reciprocal estimate instructions
18127 provide higher-precision estimates than is mandated by the PowerPC
18128 ABI.  Selecting @option{-mcpu=power6}, @option{-mcpu=power7} or
18129 @option{-mcpu=power8} automatically selects @option{-mrecip-precision}.
18130 The double-precision square root estimate instructions are not generated by
18131 default on low-precision machines, since they do not provide an
18132 estimate that converges after three steps.
18134 @item -mveclibabi=@var{type}
18135 @opindex mveclibabi
18136 Specifies the ABI type to use for vectorizing intrinsics using an
18137 external library.  The only type supported at present is @code{mass},
18138 which specifies to use IBM's Mathematical Acceleration Subsystem
18139 (MASS) libraries for vectorizing intrinsics using external libraries.
18140 GCC currently emits calls to @code{acosd2}, @code{acosf4},
18141 @code{acoshd2}, @code{acoshf4}, @code{asind2}, @code{asinf4},
18142 @code{asinhd2}, @code{asinhf4}, @code{atan2d2}, @code{atan2f4},
18143 @code{atand2}, @code{atanf4}, @code{atanhd2}, @code{atanhf4},
18144 @code{cbrtd2}, @code{cbrtf4}, @code{cosd2}, @code{cosf4},
18145 @code{coshd2}, @code{coshf4}, @code{erfcd2}, @code{erfcf4},
18146 @code{erfd2}, @code{erff4}, @code{exp2d2}, @code{exp2f4},
18147 @code{expd2}, @code{expf4}, @code{expm1d2}, @code{expm1f4},
18148 @code{hypotd2}, @code{hypotf4}, @code{lgammad2}, @code{lgammaf4},
18149 @code{log10d2}, @code{log10f4}, @code{log1pd2}, @code{log1pf4},
18150 @code{log2d2}, @code{log2f4}, @code{logd2}, @code{logf4},
18151 @code{powd2}, @code{powf4}, @code{sind2}, @code{sinf4}, @code{sinhd2},
18152 @code{sinhf4}, @code{sqrtd2}, @code{sqrtf4}, @code{tand2},
18153 @code{tanf4}, @code{tanhd2}, and @code{tanhf4} when generating code
18154 for power7.  Both @option{-ftree-vectorize} and
18155 @option{-funsafe-math-optimizations} must also be enabled.  The MASS
18156 libraries must be specified at link time.
18158 @item -mfriz
18159 @itemx -mno-friz
18160 @opindex mfriz
18161 Generate (do not generate) the @code{friz} instruction when the
18162 @option{-funsafe-math-optimizations} option is used to optimize
18163 rounding of floating-point values to 64-bit integer and back to floating
18164 point.  The @code{friz} instruction does not return the same value if
18165 the floating-point number is too large to fit in an integer.
18167 @item -mpointers-to-nested-functions
18168 @itemx -mno-pointers-to-nested-functions
18169 @opindex mpointers-to-nested-functions
18170 Generate (do not generate) code to load up the static chain register
18171 (@var{r11}) when calling through a pointer on AIX and 64-bit Linux
18172 systems where a function pointer points to a 3-word descriptor giving
18173 the function address, TOC value to be loaded in register @var{r2}, and
18174 static chain value to be loaded in register @var{r11}.  The
18175 @option{-mpointers-to-nested-functions} is on by default.  You cannot
18176 call through pointers to nested functions or pointers
18177 to functions compiled in other languages that use the static chain if
18178 you use the @option{-mno-pointers-to-nested-functions}.
18180 @item -msave-toc-indirect
18181 @itemx -mno-save-toc-indirect
18182 @opindex msave-toc-indirect
18183 Generate (do not generate) code to save the TOC value in the reserved
18184 stack location in the function prologue if the function calls through
18185 a pointer on AIX and 64-bit Linux systems.  If the TOC value is not
18186 saved in the prologue, it is saved just before the call through the
18187 pointer.  The @option{-mno-save-toc-indirect} option is the default.
18188 @end table
18190 @node RX Options
18191 @subsection RX Options
18192 @cindex RX Options
18194 These command-line options are defined for RX targets:
18196 @table @gcctabopt
18197 @item -m64bit-doubles
18198 @itemx -m32bit-doubles
18199 @opindex m64bit-doubles
18200 @opindex m32bit-doubles
18201 Make the @code{double} data type be 64 bits (@option{-m64bit-doubles})
18202 or 32 bits (@option{-m32bit-doubles}) in size.  The default is
18203 @option{-m32bit-doubles}.  @emph{Note} RX floating-point hardware only
18204 works on 32-bit values, which is why the default is
18205 @option{-m32bit-doubles}.
18207 @item -fpu
18208 @itemx -nofpu
18209 @opindex fpu
18210 @opindex nofpu
18211 Enables (@option{-fpu}) or disables (@option{-nofpu}) the use of RX
18212 floating-point hardware.  The default is enabled for the @var{RX600}
18213 series and disabled for the @var{RX200} series.
18215 Floating-point instructions are only generated for 32-bit floating-point 
18216 values, however, so the FPU hardware is not used for doubles if the
18217 @option{-m64bit-doubles} option is used.
18219 @emph{Note} If the @option{-fpu} option is enabled then
18220 @option{-funsafe-math-optimizations} is also enabled automatically.
18221 This is because the RX FPU instructions are themselves unsafe.
18223 @item -mcpu=@var{name}
18224 @opindex -mcpu
18225 Selects the type of RX CPU to be targeted.  Currently three types are
18226 supported, the generic @var{RX600} and @var{RX200} series hardware and
18227 the specific @var{RX610} CPU.  The default is @var{RX600}.
18229 The only difference between @var{RX600} and @var{RX610} is that the
18230 @var{RX610} does not support the @code{MVTIPL} instruction.
18232 The @var{RX200} series does not have a hardware floating-point unit
18233 and so @option{-nofpu} is enabled by default when this type is
18234 selected.
18236 @item -mbig-endian-data
18237 @itemx -mlittle-endian-data
18238 @opindex mbig-endian-data
18239 @opindex mlittle-endian-data
18240 Store data (but not code) in the big-endian format.  The default is
18241 @option{-mlittle-endian-data}, i.e.@: to store data in the little-endian
18242 format.
18244 @item -msmall-data-limit=@var{N}
18245 @opindex msmall-data-limit
18246 Specifies the maximum size in bytes of global and static variables
18247 which can be placed into the small data area.  Using the small data
18248 area can lead to smaller and faster code, but the size of area is
18249 limited and it is up to the programmer to ensure that the area does
18250 not overflow.  Also when the small data area is used one of the RX's
18251 registers (usually @code{r13}) is reserved for use pointing to this
18252 area, so it is no longer available for use by the compiler.  This
18253 could result in slower and/or larger code if variables are pushed onto
18254 the stack instead of being held in this register.
18256 Note, common variables (variables that have not been initialized) and
18257 constants are not placed into the small data area as they are assigned
18258 to other sections in the output executable.
18260 The default value is zero, which disables this feature.  Note, this
18261 feature is not enabled by default with higher optimization levels
18262 (@option{-O2} etc) because of the potentially detrimental effects of
18263 reserving a register.  It is up to the programmer to experiment and
18264 discover whether this feature is of benefit to their program.  See the
18265 description of the @option{-mpid} option for a description of how the
18266 actual register to hold the small data area pointer is chosen.
18268 @item -msim
18269 @itemx -mno-sim
18270 @opindex msim
18271 @opindex mno-sim
18272 Use the simulator runtime.  The default is to use the libgloss
18273 board-specific runtime.
18275 @item -mas100-syntax
18276 @itemx -mno-as100-syntax
18277 @opindex mas100-syntax
18278 @opindex mno-as100-syntax
18279 When generating assembler output use a syntax that is compatible with
18280 Renesas's AS100 assembler.  This syntax can also be handled by the GAS
18281 assembler, but it has some restrictions so it is not generated by default.
18283 @item -mmax-constant-size=@var{N}
18284 @opindex mmax-constant-size
18285 Specifies the maximum size, in bytes, of a constant that can be used as
18286 an operand in a RX instruction.  Although the RX instruction set does
18287 allow constants of up to 4 bytes in length to be used in instructions,
18288 a longer value equates to a longer instruction.  Thus in some
18289 circumstances it can be beneficial to restrict the size of constants
18290 that are used in instructions.  Constants that are too big are instead
18291 placed into a constant pool and referenced via register indirection.
18293 The value @var{N} can be between 0 and 4.  A value of 0 (the default)
18294 or 4 means that constants of any size are allowed.
18296 @item -mrelax
18297 @opindex mrelax
18298 Enable linker relaxation.  Linker relaxation is a process whereby the
18299 linker attempts to reduce the size of a program by finding shorter
18300 versions of various instructions.  Disabled by default.
18302 @item -mint-register=@var{N}
18303 @opindex mint-register
18304 Specify the number of registers to reserve for fast interrupt handler
18305 functions.  The value @var{N} can be between 0 and 4.  A value of 1
18306 means that register @code{r13} is reserved for the exclusive use
18307 of fast interrupt handlers.  A value of 2 reserves @code{r13} and
18308 @code{r12}.  A value of 3 reserves @code{r13}, @code{r12} and
18309 @code{r11}, and a value of 4 reserves @code{r13} through @code{r10}.
18310 A value of 0, the default, does not reserve any registers.
18312 @item -msave-acc-in-interrupts
18313 @opindex msave-acc-in-interrupts
18314 Specifies that interrupt handler functions should preserve the
18315 accumulator register.  This is only necessary if normal code might use
18316 the accumulator register, for example because it performs 64-bit
18317 multiplications.  The default is to ignore the accumulator as this
18318 makes the interrupt handlers faster.
18320 @item -mpid
18321 @itemx -mno-pid
18322 @opindex mpid
18323 @opindex mno-pid
18324 Enables the generation of position independent data.  When enabled any
18325 access to constant data is done via an offset from a base address
18326 held in a register.  This allows the location of constant data to be
18327 determined at run time without requiring the executable to be
18328 relocated, which is a benefit to embedded applications with tight
18329 memory constraints.  Data that can be modified is not affected by this
18330 option.
18332 Note, using this feature reserves a register, usually @code{r13}, for
18333 the constant data base address.  This can result in slower and/or
18334 larger code, especially in complicated functions.
18336 The actual register chosen to hold the constant data base address
18337 depends upon whether the @option{-msmall-data-limit} and/or the
18338 @option{-mint-register} command-line options are enabled.  Starting
18339 with register @code{r13} and proceeding downwards, registers are
18340 allocated first to satisfy the requirements of @option{-mint-register},
18341 then @option{-mpid} and finally @option{-msmall-data-limit}.  Thus it
18342 is possible for the small data area register to be @code{r8} if both
18343 @option{-mint-register=4} and @option{-mpid} are specified on the
18344 command line.
18346 By default this feature is not enabled.  The default can be restored
18347 via the @option{-mno-pid} command-line option.
18349 @item -mno-warn-multiple-fast-interrupts
18350 @itemx -mwarn-multiple-fast-interrupts
18351 @opindex mno-warn-multiple-fast-interrupts
18352 @opindex mwarn-multiple-fast-interrupts
18353 Prevents GCC from issuing a warning message if it finds more than one
18354 fast interrupt handler when it is compiling a file.  The default is to
18355 issue a warning for each extra fast interrupt handler found, as the RX
18356 only supports one such interrupt.
18358 @end table
18360 @emph{Note:} The generic GCC command-line option @option{-ffixed-@var{reg}}
18361 has special significance to the RX port when used with the
18362 @code{interrupt} function attribute.  This attribute indicates a
18363 function intended to process fast interrupts.  GCC ensures
18364 that it only uses the registers @code{r10}, @code{r11}, @code{r12}
18365 and/or @code{r13} and only provided that the normal use of the
18366 corresponding registers have been restricted via the
18367 @option{-ffixed-@var{reg}} or @option{-mint-register} command-line
18368 options.
18370 @node S/390 and zSeries Options
18371 @subsection S/390 and zSeries Options
18372 @cindex S/390 and zSeries Options
18374 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
18376 @table @gcctabopt
18377 @item -mhard-float
18378 @itemx -msoft-float
18379 @opindex mhard-float
18380 @opindex msoft-float
18381 Use (do not use) the hardware floating-point instructions and registers
18382 for floating-point operations.  When @option{-msoft-float} is specified,
18383 functions in @file{libgcc.a} are used to perform floating-point
18384 operations.  When @option{-mhard-float} is specified, the compiler
18385 generates IEEE floating-point instructions.  This is the default.
18387 @item -mhard-dfp
18388 @itemx -mno-hard-dfp
18389 @opindex mhard-dfp
18390 @opindex mno-hard-dfp
18391 Use (do not use) the hardware decimal-floating-point instructions for
18392 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
18393 specified, functions in @file{libgcc.a} are used to perform
18394 decimal-floating-point operations.  When @option{-mhard-dfp} is
18395 specified, the compiler generates decimal-floating-point hardware
18396 instructions.  This is the default for @option{-march=z9-ec} or higher.
18398 @item -mlong-double-64
18399 @itemx -mlong-double-128
18400 @opindex mlong-double-64
18401 @opindex mlong-double-128
18402 These switches control the size of @code{long double} type. A size
18403 of 64 bits makes the @code{long double} type equivalent to the @code{double}
18404 type. This is the default.
18406 @item -mbackchain
18407 @itemx -mno-backchain
18408 @opindex mbackchain
18409 @opindex mno-backchain
18410 Store (do not store) the address of the caller's frame as backchain pointer
18411 into the callee's stack frame.
18412 A backchain may be needed to allow debugging using tools that do not understand
18413 DWARF 2 call frame information.
18414 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
18415 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
18416 the backchain is placed into the topmost word of the 96/160 byte register
18417 save area.
18419 In general, code compiled with @option{-mbackchain} is call-compatible with
18420 code compiled with @option{-mmo-backchain}; however, use of the backchain
18421 for debugging purposes usually requires that the whole binary is built with
18422 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
18423 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
18424 to build a linux kernel use @option{-msoft-float}.
18426 The default is to not maintain the backchain.
18428 @item -mpacked-stack
18429 @itemx -mno-packed-stack
18430 @opindex mpacked-stack
18431 @opindex mno-packed-stack
18432 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
18433 specified, the compiler uses the all fields of the 96/160 byte register save
18434 area only for their default purpose; unused fields still take up stack space.
18435 When @option{-mpacked-stack} is specified, register save slots are densely
18436 packed at the top of the register save area; unused space is reused for other
18437 purposes, allowing for more efficient use of the available stack space.
18438 However, when @option{-mbackchain} is also in effect, the topmost word of
18439 the save area is always used to store the backchain, and the return address
18440 register is always saved two words below the backchain.
18442 As long as the stack frame backchain is not used, code generated with
18443 @option{-mpacked-stack} is call-compatible with code generated with
18444 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
18445 S/390 or zSeries generated code that uses the stack frame backchain at run
18446 time, not just for debugging purposes.  Such code is not call-compatible
18447 with code compiled with @option{-mpacked-stack}.  Also, note that the
18448 combination of @option{-mbackchain},
18449 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
18450 to build a linux kernel use @option{-msoft-float}.
18452 The default is to not use the packed stack layout.
18454 @item -msmall-exec
18455 @itemx -mno-small-exec
18456 @opindex msmall-exec
18457 @opindex mno-small-exec
18458 Generate (or do not generate) code using the @code{bras} instruction
18459 to do subroutine calls.
18460 This only works reliably if the total executable size does not
18461 exceed 64k.  The default is to use the @code{basr} instruction instead,
18462 which does not have this limitation.
18464 @item -m64
18465 @itemx -m31
18466 @opindex m64
18467 @opindex m31
18468 When @option{-m31} is specified, generate code compliant to the
18469 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
18470 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
18471 particular to generate 64-bit instructions.  For the @samp{s390}
18472 targets, the default is @option{-m31}, while the @samp{s390x}
18473 targets default to @option{-m64}.
18475 @item -mzarch
18476 @itemx -mesa
18477 @opindex mzarch
18478 @opindex mesa
18479 When @option{-mzarch} is specified, generate code using the
18480 instructions available on z/Architecture.
18481 When @option{-mesa} is specified, generate code using the
18482 instructions available on ESA/390.  Note that @option{-mesa} is
18483 not possible with @option{-m64}.
18484 When generating code compliant to the GNU/Linux for S/390 ABI,
18485 the default is @option{-mesa}.  When generating code compliant
18486 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
18488 @item -mmvcle
18489 @itemx -mno-mvcle
18490 @opindex mmvcle
18491 @opindex mno-mvcle
18492 Generate (or do not generate) code using the @code{mvcle} instruction
18493 to perform block moves.  When @option{-mno-mvcle} is specified,
18494 use a @code{mvc} loop instead.  This is the default unless optimizing for
18495 size.
18497 @item -mdebug
18498 @itemx -mno-debug
18499 @opindex mdebug
18500 @opindex mno-debug
18501 Print (or do not print) additional debug information when compiling.
18502 The default is to not print debug information.
18504 @item -march=@var{cpu-type}
18505 @opindex march
18506 Generate code that runs on @var{cpu-type}, which is the name of a system
18507 representing a certain processor type.  Possible values for
18508 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
18509 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
18510 When generating code using the instructions available on z/Architecture,
18511 the default is @option{-march=z900}.  Otherwise, the default is
18512 @option{-march=g5}.
18514 @item -mtune=@var{cpu-type}
18515 @opindex mtune
18516 Tune to @var{cpu-type} everything applicable about the generated code,
18517 except for the ABI and the set of available instructions.
18518 The list of @var{cpu-type} values is the same as for @option{-march}.
18519 The default is the value used for @option{-march}.
18521 @item -mtpf-trace
18522 @itemx -mno-tpf-trace
18523 @opindex mtpf-trace
18524 @opindex mno-tpf-trace
18525 Generate code that adds (does not add) in TPF OS specific branches to trace
18526 routines in the operating system.  This option is off by default, even
18527 when compiling for the TPF OS@.
18529 @item -mfused-madd
18530 @itemx -mno-fused-madd
18531 @opindex mfused-madd
18532 @opindex mno-fused-madd
18533 Generate code that uses (does not use) the floating-point multiply and
18534 accumulate instructions.  These instructions are generated by default if
18535 hardware floating point is used.
18537 @item -mwarn-framesize=@var{framesize}
18538 @opindex mwarn-framesize
18539 Emit a warning if the current function exceeds the given frame size.  Because
18540 this is a compile-time check it doesn't need to be a real problem when the program
18541 runs.  It is intended to identify functions that most probably cause
18542 a stack overflow.  It is useful to be used in an environment with limited stack
18543 size e.g.@: the linux kernel.
18545 @item -mwarn-dynamicstack
18546 @opindex mwarn-dynamicstack
18547 Emit a warning if the function calls @code{alloca} or uses dynamically-sized
18548 arrays.  This is generally a bad idea with a limited stack size.
18550 @item -mstack-guard=@var{stack-guard}
18551 @itemx -mstack-size=@var{stack-size}
18552 @opindex mstack-guard
18553 @opindex mstack-size
18554 If these options are provided the S/390 back end emits additional instructions in
18555 the function prologue that trigger a trap if the stack size is @var{stack-guard}
18556 bytes above the @var{stack-size} (remember that the stack on S/390 grows downward).
18557 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
18558 the frame size of the compiled function is chosen.
18559 These options are intended to be used to help debugging stack overflow problems.
18560 The additionally emitted code causes only little overhead and hence can also be
18561 used in production-like systems without greater performance degradation.  The given
18562 values have to be exact powers of 2 and @var{stack-size} has to be greater than
18563 @var{stack-guard} without exceeding 64k.
18564 In order to be efficient the extra code makes the assumption that the stack starts
18565 at an address aligned to the value given by @var{stack-size}.
18566 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
18567 @end table
18569 @node Score Options
18570 @subsection Score Options
18571 @cindex Score Options
18573 These options are defined for Score implementations:
18575 @table @gcctabopt
18576 @item -meb
18577 @opindex meb
18578 Compile code for big-endian mode.  This is the default.
18580 @item -mel
18581 @opindex mel
18582 Compile code for little-endian mode.
18584 @item -mnhwloop
18585 @opindex mnhwloop
18586 Disable generation of @code{bcnz} instructions.
18588 @item -muls
18589 @opindex muls
18590 Enable generation of unaligned load and store instructions.
18592 @item -mmac
18593 @opindex mmac
18594 Enable the use of multiply-accumulate instructions. Disabled by default.
18596 @item -mscore5
18597 @opindex mscore5
18598 Specify the SCORE5 as the target architecture.
18600 @item -mscore5u
18601 @opindex mscore5u
18602 Specify the SCORE5U of the target architecture.
18604 @item -mscore7
18605 @opindex mscore7
18606 Specify the SCORE7 as the target architecture. This is the default.
18608 @item -mscore7d
18609 @opindex mscore7d
18610 Specify the SCORE7D as the target architecture.
18611 @end table
18613 @node SH Options
18614 @subsection SH Options
18616 These @samp{-m} options are defined for the SH implementations:
18618 @table @gcctabopt
18619 @item -m1
18620 @opindex m1
18621 Generate code for the SH1.
18623 @item -m2
18624 @opindex m2
18625 Generate code for the SH2.
18627 @item -m2e
18628 Generate code for the SH2e.
18630 @item -m2a-nofpu
18631 @opindex m2a-nofpu
18632 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
18633 that the floating-point unit is not used.
18635 @item -m2a-single-only
18636 @opindex m2a-single-only
18637 Generate code for the SH2a-FPU, in such a way that no double-precision
18638 floating-point operations are used.
18640 @item -m2a-single
18641 @opindex m2a-single
18642 Generate code for the SH2a-FPU assuming the floating-point unit is in
18643 single-precision mode by default.
18645 @item -m2a
18646 @opindex m2a
18647 Generate code for the SH2a-FPU assuming the floating-point unit is in
18648 double-precision mode by default.
18650 @item -m3
18651 @opindex m3
18652 Generate code for the SH3.
18654 @item -m3e
18655 @opindex m3e
18656 Generate code for the SH3e.
18658 @item -m4-nofpu
18659 @opindex m4-nofpu
18660 Generate code for the SH4 without a floating-point unit.
18662 @item -m4-single-only
18663 @opindex m4-single-only
18664 Generate code for the SH4 with a floating-point unit that only
18665 supports single-precision arithmetic.
18667 @item -m4-single
18668 @opindex m4-single
18669 Generate code for the SH4 assuming the floating-point unit is in
18670 single-precision mode by default.
18672 @item -m4
18673 @opindex m4
18674 Generate code for the SH4.
18676 @item -m4a-nofpu
18677 @opindex m4a-nofpu
18678 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
18679 floating-point unit is not used.
18681 @item -m4a-single-only
18682 @opindex m4a-single-only
18683 Generate code for the SH4a, in such a way that no double-precision
18684 floating-point operations are used.
18686 @item -m4a-single
18687 @opindex m4a-single
18688 Generate code for the SH4a assuming the floating-point unit is in
18689 single-precision mode by default.
18691 @item -m4a
18692 @opindex m4a
18693 Generate code for the SH4a.
18695 @item -m4al
18696 @opindex m4al
18697 Same as @option{-m4a-nofpu}, except that it implicitly passes
18698 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
18699 instructions at the moment.
18701 @item -mb
18702 @opindex mb
18703 Compile code for the processor in big-endian mode.
18705 @item -ml
18706 @opindex ml
18707 Compile code for the processor in little-endian mode.
18709 @item -mdalign
18710 @opindex mdalign
18711 Align doubles at 64-bit boundaries.  Note that this changes the calling
18712 conventions, and thus some functions from the standard C library do
18713 not work unless you recompile it first with @option{-mdalign}.
18715 @item -mrelax
18716 @opindex mrelax
18717 Shorten some address references at link time, when possible; uses the
18718 linker option @option{-relax}.
18720 @item -mbigtable
18721 @opindex mbigtable
18722 Use 32-bit offsets in @code{switch} tables.  The default is to use
18723 16-bit offsets.
18725 @item -mbitops
18726 @opindex mbitops
18727 Enable the use of bit manipulation instructions on SH2A.
18729 @item -mfmovd
18730 @opindex mfmovd
18731 Enable the use of the instruction @code{fmovd}.  Check @option{-mdalign} for
18732 alignment constraints.
18734 @item -mhitachi
18735 @opindex mhitachi
18736 Comply with the calling conventions defined by Renesas.
18738 @item -mrenesas
18739 @opindex mhitachi
18740 Comply with the calling conventions defined by Renesas.
18742 @item -mno-renesas
18743 @opindex mhitachi
18744 Comply with the calling conventions defined for GCC before the Renesas
18745 conventions were available.  This option is the default for all
18746 targets of the SH toolchain.
18748 @item -mnomacsave
18749 @opindex mnomacsave
18750 Mark the @code{MAC} register as call-clobbered, even if
18751 @option{-mhitachi} is given.
18753 @item -mieee
18754 @itemx -mno-ieee
18755 @opindex mieee
18756 @opindex mnoieee
18757 Control the IEEE compliance of floating-point comparisons, which affects the
18758 handling of cases where the result of a comparison is unordered.  By default
18759 @option{-mieee} is implicitly enabled.  If @option{-ffinite-math-only} is
18760 enabled @option{-mno-ieee} is implicitly set, which results in faster
18761 floating-point greater-equal and less-equal comparisons.  The implcit settings
18762 can be overridden by specifying either @option{-mieee} or @option{-mno-ieee}.
18764 @item -minline-ic_invalidate
18765 @opindex minline-ic_invalidate
18766 Inline code to invalidate instruction cache entries after setting up
18767 nested function trampolines.
18768 This option has no effect if @option{-musermode} is in effect and the selected
18769 code generation option (e.g. @option{-m4}) does not allow the use of the @code{icbi}
18770 instruction.
18771 If the selected code generation option does not allow the use of the @code{icbi}
18772 instruction, and @option{-musermode} is not in effect, the inlined code
18773 manipulates the instruction cache address array directly with an associative
18774 write.  This not only requires privileged mode at run time, but it also
18775 fails if the cache line had been mapped via the TLB and has become unmapped.
18777 @item -misize
18778 @opindex misize
18779 Dump instruction size and location in the assembly code.
18781 @item -mpadstruct
18782 @opindex mpadstruct
18783 This option is deprecated.  It pads structures to multiple of 4 bytes,
18784 which is incompatible with the SH ABI@.
18786 @item -matomic-model=@var{model}
18787 @opindex matomic-model=@var{model}
18788 Sets the model of atomic operations and additional parameters as a comma
18789 separated list.  For details on the atomic built-in functions see
18790 @ref{__atomic Builtins}.  The following models and parameters are supported:
18792 @table @samp
18794 @item none
18795 Disable compiler generated atomic sequences and emit library calls for atomic
18796 operations.  This is the default if the target is not @code{sh-*-linux*}.
18798 @item soft-gusa
18799 Generate GNU/Linux compatible gUSA software atomic sequences for the atomic
18800 built-in functions.  The generated atomic sequences require additional support
18801 from the interrupt/exception handling code of the system and are only suitable
18802 for SH3* and SH4* single-core systems.  This option is enabled by default when
18803 the target is @code{sh-*-linux*} and SH3* or SH4*.  When the target is SH4A,
18804 this option will also partially utilize the hardware atomic instructions
18805 @code{movli.l} and @code{movco.l} to create more efficient code, unless
18806 @samp{strict} is specified.  
18808 @item soft-tcb
18809 Generate software atomic sequences that use a variable in the thread control
18810 block.  This is a variation of the gUSA sequences which can also be used on
18811 SH1* and SH2* targets.  The generated atomic sequences require additional
18812 support from the interrupt/exception handling code of the system and are only
18813 suitable for single-core systems.  When using this model, the @samp{gbr-offset=}
18814 parameter has to be specified as well.
18816 @item soft-imask
18817 Generate software atomic sequences that temporarily disable interrupts by
18818 setting @code{SR.IMASK = 1111}.  This model works only when the program runs
18819 in privileged mode and is only suitable for single-core systems.  Additional
18820 support from the interrupt/exception handling code of the system is not
18821 required.  This model is enabled by default when the target is
18822 @code{sh-*-linux*} and SH1* or SH2*.
18824 @item hard-llcs
18825 Generate hardware atomic sequences using the @code{movli.l} and @code{movco.l}
18826 instructions only.  This is only available on SH4A and is suitable for
18827 multi-core systems.  Since the hardware instructions support only 32 bit atomic
18828 variables access to 8 or 16 bit variables is emulated with 32 bit accesses.
18829 Code compiled with this option will also be compatible with other software
18830 atomic model interrupt/exception handling systems if executed on an SH4A
18831 system.  Additional support from the interrupt/exception handling code of the
18832 system is not required for this model.
18834 @item gbr-offset=
18835 This parameter specifies the offset in bytes of the variable in the thread
18836 control block structure that should be used by the generated atomic sequences
18837 when the @samp{soft-tcb} model has been selected.  For other models this
18838 parameter is ignored.  The specified value must be an integer multiple of four
18839 and in the range 0-1020.
18841 @item strict
18842 This parameter prevents mixed usage of multiple atomic models, even though they
18843 would be compatible, and will make the compiler generate atomic sequences of the
18844 specified model only.
18846 @end table
18848 @item -mtas
18849 @opindex mtas
18850 Generate the @code{tas.b} opcode for @code{__atomic_test_and_set}.
18851 Notice that depending on the particular hardware and software configuration
18852 this can degrade overall performance due to the operand cache line flushes
18853 that are implied by the @code{tas.b} instruction.  On multi-core SH4A
18854 processors the @code{tas.b} instruction must be used with caution since it
18855 can result in data corruption for certain cache configurations.
18857 @item -mspace
18858 @opindex mspace
18859 Optimize for space instead of speed.  Implied by @option{-Os}.
18861 @item -mprefergot
18862 @opindex mprefergot
18863 When generating position-independent code, emit function calls using
18864 the Global Offset Table instead of the Procedure Linkage Table.
18866 @item -musermode
18867 @opindex musermode
18868 Don't generate privileged mode only code.  This option
18869 implies @option{-mno-inline-ic_invalidate}
18870 if the inlined code would not work in user mode.
18871 This is the default when the target is @code{sh-*-linux*}.
18873 @item -multcost=@var{number}
18874 @opindex multcost=@var{number}
18875 Set the cost to assume for a multiply insn.
18877 @item -mdiv=@var{strategy}
18878 @opindex mdiv=@var{strategy}
18879 Set the division strategy to be used for integer division operations.
18880 For SHmedia @var{strategy} can be one of: 
18882 @table @samp
18884 @item fp 
18885 Performs the operation in floating point.  This has a very high latency,
18886 but needs only a few instructions, so it might be a good choice if
18887 your code has enough easily-exploitable ILP to allow the compiler to
18888 schedule the floating-point instructions together with other instructions.
18889 Division by zero causes a floating-point exception.
18891 @item inv
18892 Uses integer operations to calculate the inverse of the divisor,
18893 and then multiplies the dividend with the inverse.  This strategy allows
18894 CSE and hoisting of the inverse calculation.  Division by zero calculates
18895 an unspecified result, but does not trap.
18897 @item inv:minlat
18898 A variant of @samp{inv} where, if no CSE or hoisting opportunities
18899 have been found, or if the entire operation has been hoisted to the same
18900 place, the last stages of the inverse calculation are intertwined with the
18901 final multiply to reduce the overall latency, at the expense of using a few
18902 more instructions, and thus offering fewer scheduling opportunities with
18903 other code.
18905 @item call
18906 Calls a library function that usually implements the @samp{inv:minlat}
18907 strategy.
18908 This gives high code density for @code{m5-*media-nofpu} compilations.
18910 @item call2
18911 Uses a different entry point of the same library function, where it
18912 assumes that a pointer to a lookup table has already been set up, which
18913 exposes the pointer load to CSE and code hoisting optimizations.
18915 @item inv:call
18916 @itemx inv:call2
18917 @itemx inv:fp
18918 Use the @samp{inv} algorithm for initial
18919 code generation, but if the code stays unoptimized, revert to the @samp{call},
18920 @samp{call2}, or @samp{fp} strategies, respectively.  Note that the
18921 potentially-trapping side effect of division by zero is carried by a
18922 separate instruction, so it is possible that all the integer instructions
18923 are hoisted out, but the marker for the side effect stays where it is.
18924 A recombination to floating-point operations or a call is not possible
18925 in that case.
18927 @item inv20u
18928 @itemx inv20l
18929 Variants of the @samp{inv:minlat} strategy.  In the case
18930 that the inverse calculation is not separated from the multiply, they speed
18931 up division where the dividend fits into 20 bits (plus sign where applicable)
18932 by inserting a test to skip a number of operations in this case; this test
18933 slows down the case of larger dividends.  @samp{inv20u} assumes the case of a such
18934 a small dividend to be unlikely, and @samp{inv20l} assumes it to be likely.
18936 @end table
18938 For targets other than SHmedia @var{strategy} can be one of:
18940 @table @samp
18942 @item call-div1
18943 Calls a library function that uses the single-step division instruction
18944 @code{div1} to perform the operation.  Division by zero calculates an
18945 unspecified result and does not trap.  This is the default except for SH4,
18946 SH2A and SHcompact.
18948 @item call-fp
18949 Calls a library function that performs the operation in double precision
18950 floating point.  Division by zero causes a floating-point exception.  This is
18951 the default for SHcompact with FPU.  Specifying this for targets that do not
18952 have a double precision FPU will default to @code{call-div1}.
18954 @item call-table
18955 Calls a library function that uses a lookup table for small divisors and
18956 the @code{div1} instruction with case distinction for larger divisors.  Division
18957 by zero calculates an unspecified result and does not trap.  This is the default
18958 for SH4.  Specifying this for targets that do not have dynamic shift
18959 instructions will default to @code{call-div1}.
18961 @end table
18963 When a division strategy has not been specified the default strategy will be
18964 selected based on the current target.  For SH2A the default strategy is to
18965 use the @code{divs} and @code{divu} instructions instead of library function
18966 calls.
18968 @item -maccumulate-outgoing-args
18969 @opindex maccumulate-outgoing-args
18970 Reserve space once for outgoing arguments in the function prologue rather
18971 than around each call.  Generally beneficial for performance and size.  Also
18972 needed for unwinding to avoid changing the stack frame around conditional code.
18974 @item -mdivsi3_libfunc=@var{name}
18975 @opindex mdivsi3_libfunc=@var{name}
18976 Set the name of the library function used for 32-bit signed division to
18977 @var{name}.
18978 This only affects the name used in the @samp{call} and @samp{inv:call}
18979 division strategies, and the compiler still expects the same
18980 sets of input/output/clobbered registers as if this option were not present.
18982 @item -mfixed-range=@var{register-range}
18983 @opindex mfixed-range
18984 Generate code treating the given register range as fixed registers.
18985 A fixed register is one that the register allocator can not use.  This is
18986 useful when compiling kernel code.  A register range is specified as
18987 two registers separated by a dash.  Multiple register ranges can be
18988 specified separated by a comma.
18990 @item -mindexed-addressing
18991 @opindex mindexed-addressing
18992 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
18993 This is only safe if the hardware and/or OS implement 32-bit wrap-around
18994 semantics for the indexed addressing mode.  The architecture allows the
18995 implementation of processors with 64-bit MMU, which the OS could use to
18996 get 32-bit addressing, but since no current hardware implementation supports
18997 this or any other way to make the indexed addressing mode safe to use in
18998 the 32-bit ABI, the default is @option{-mno-indexed-addressing}.
19000 @item -mgettrcost=@var{number}
19001 @opindex mgettrcost=@var{number}
19002 Set the cost assumed for the @code{gettr} instruction to @var{number}.
19003 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
19005 @item -mpt-fixed
19006 @opindex mpt-fixed
19007 Assume @code{pt*} instructions won't trap.  This generally generates
19008 better-scheduled code, but is unsafe on current hardware.
19009 The current architecture
19010 definition says that @code{ptabs} and @code{ptrel} trap when the target 
19011 anded with 3 is 3.
19012 This has the unintentional effect of making it unsafe to schedule these
19013 instructions before a branch, or hoist them out of a loop.  For example,
19014 @code{__do_global_ctors}, a part of @file{libgcc}
19015 that runs constructors at program
19016 startup, calls functions in a list which is delimited by @minus{}1.  With the
19017 @option{-mpt-fixed} option, the @code{ptabs} is done before testing against @minus{}1.
19018 That means that all the constructors run a bit more quickly, but when
19019 the loop comes to the end of the list, the program crashes because @code{ptabs}
19020 loads @minus{}1 into a target register.  
19022 Since this option is unsafe for any
19023 hardware implementing the current architecture specification, the default
19024 is @option{-mno-pt-fixed}.  Unless specified explicitly with 
19025 @option{-mgettrcost}, @option{-mno-pt-fixed} also implies @option{-mgettrcost=100};
19026 this deters register allocation from using target registers for storing
19027 ordinary integers.
19029 @item -minvalid-symbols
19030 @opindex minvalid-symbols
19031 Assume symbols might be invalid.  Ordinary function symbols generated by
19032 the compiler are always valid to load with
19033 @code{movi}/@code{shori}/@code{ptabs} or
19034 @code{movi}/@code{shori}/@code{ptrel},
19035 but with assembler and/or linker tricks it is possible
19036 to generate symbols that cause @code{ptabs} or @code{ptrel} to trap.
19037 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
19038 It prevents cross-basic-block CSE, hoisting and most scheduling
19039 of symbol loads.  The default is @option{-mno-invalid-symbols}.
19041 @item -mbranch-cost=@var{num}
19042 @opindex mbranch-cost=@var{num}
19043 Assume @var{num} to be the cost for a branch instruction.  Higher numbers
19044 make the compiler try to generate more branch-free code if possible.  
19045 If not specified the value is selected depending on the processor type that
19046 is being compiled for.
19048 @item -mzdcbranch
19049 @itemx -mno-zdcbranch
19050 @opindex mzdcbranch
19051 @opindex mno-zdcbranch
19052 Assume (do not assume) that zero displacement conditional branch instructions
19053 @code{bt} and @code{bf} are fast.  If @option{-mzdcbranch} is specified, the
19054 compiler will try to prefer zero displacement branch code sequences.  This is
19055 enabled by default when generating code for SH4 and SH4A.  It can be explicitly
19056 disabled by specifying @option{-mno-zdcbranch}.
19058 @item -mcbranchdi
19059 @opindex mcbranchdi
19060 Enable the @code{cbranchdi4} instruction pattern.
19062 @item -mcmpeqdi
19063 @opindex mcmpeqdi
19064 Emit the @code{cmpeqdi_t} instruction pattern even when @option{-mcbranchdi}
19065 is in effect.
19067 @item -mfused-madd
19068 @itemx -mno-fused-madd
19069 @opindex mfused-madd
19070 @opindex mno-fused-madd
19071 Generate code that uses (does not use) the floating-point multiply and
19072 accumulate instructions.  These instructions are generated by default
19073 if hardware floating point is used.  The machine-dependent
19074 @option{-mfused-madd} option is now mapped to the machine-independent
19075 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
19076 mapped to @option{-ffp-contract=off}.
19078 @item -mfsca
19079 @itemx -mno-fsca
19080 @opindex mfsca
19081 @opindex mno-fsca
19082 Allow or disallow the compiler to emit the @code{fsca} instruction for sine
19083 and cosine approximations.  The option @code{-mfsca} must be used in
19084 combination with @code{-funsafe-math-optimizations}.  It is enabled by default
19085 when generating code for SH4A.  Using @code{-mno-fsca} disables sine and cosine
19086 approximations even if @code{-funsafe-math-optimizations} is in effect.
19088 @item -mfsrra
19089 @itemx -mno-fsrra
19090 @opindex mfsrra
19091 @opindex mno-fsrra
19092 Allow or disallow the compiler to emit the @code{fsrra} instruction for
19093 reciprocal square root approximations.  The option @code{-mfsrra} must be used
19094 in combination with @code{-funsafe-math-optimizations} and
19095 @code{-ffinite-math-only}.  It is enabled by default when generating code for
19096 SH4A.  Using @code{-mno-fsrra} disables reciprocal square root approximations
19097 even if @code{-funsafe-math-optimizations} and @code{-ffinite-math-only} are
19098 in effect.
19100 @item -mpretend-cmove
19101 @opindex mpretend-cmove
19102 Prefer zero-displacement conditional branches for conditional move instruction
19103 patterns.  This can result in faster code on the SH4 processor.
19105 @end table
19107 @node Solaris 2 Options
19108 @subsection Solaris 2 Options
19109 @cindex Solaris 2 options
19111 These @samp{-m} options are supported on Solaris 2:
19113 @table @gcctabopt
19114 @item -mimpure-text
19115 @opindex mimpure-text
19116 @option{-mimpure-text}, used in addition to @option{-shared}, tells
19117 the compiler to not pass @option{-z text} to the linker when linking a
19118 shared object.  Using this option, you can link position-dependent
19119 code into a shared object.
19121 @option{-mimpure-text} suppresses the ``relocations remain against
19122 allocatable but non-writable sections'' linker error message.
19123 However, the necessary relocations trigger copy-on-write, and the
19124 shared object is not actually shared across processes.  Instead of
19125 using @option{-mimpure-text}, you should compile all source code with
19126 @option{-fpic} or @option{-fPIC}.
19128 @end table
19130 These switches are supported in addition to the above on Solaris 2:
19132 @table @gcctabopt
19133 @item -pthreads
19134 @opindex pthreads
19135 Add support for multithreading using the POSIX threads library.  This
19136 option sets flags for both the preprocessor and linker.  This option does
19137 not affect the thread safety of object code produced  by the compiler or
19138 that of libraries supplied with it.
19140 @item -pthread
19141 @opindex pthread
19142 This is a synonym for @option{-pthreads}.
19143 @end table
19145 @node SPARC Options
19146 @subsection SPARC Options
19147 @cindex SPARC options
19149 These @samp{-m} options are supported on the SPARC:
19151 @table @gcctabopt
19152 @item -mno-app-regs
19153 @itemx -mapp-regs
19154 @opindex mno-app-regs
19155 @opindex mapp-regs
19156 Specify @option{-mapp-regs} to generate output using the global registers
19157 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
19158 is the default.
19160 To be fully SVR4 ABI-compliant at the cost of some performance loss,
19161 specify @option{-mno-app-regs}.  You should compile libraries and system
19162 software with this option.
19164 @item -mflat
19165 @itemx -mno-flat
19166 @opindex mflat
19167 @opindex mno-flat
19168 With @option{-mflat}, the compiler does not generate save/restore instructions
19169 and uses a ``flat'' or single register window model.  This model is compatible
19170 with the regular register window model.  The local registers and the input
19171 registers (0--5) are still treated as ``call-saved'' registers and are
19172 saved on the stack as needed.
19174 With @option{-mno-flat} (the default), the compiler generates save/restore
19175 instructions (except for leaf functions).  This is the normal operating mode.
19177 @item -mfpu
19178 @itemx -mhard-float
19179 @opindex mfpu
19180 @opindex mhard-float
19181 Generate output containing floating-point instructions.  This is the
19182 default.
19184 @item -mno-fpu
19185 @itemx -msoft-float
19186 @opindex mno-fpu
19187 @opindex msoft-float
19188 Generate output containing library calls for floating point.
19189 @strong{Warning:} the requisite libraries are not available for all SPARC
19190 targets.  Normally the facilities of the machine's usual C compiler are
19191 used, but this cannot be done directly in cross-compilation.  You must make
19192 your own arrangements to provide suitable library functions for
19193 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
19194 @samp{sparclite-*-*} do provide software floating-point support.
19196 @option{-msoft-float} changes the calling convention in the output file;
19197 therefore, it is only useful if you compile @emph{all} of a program with
19198 this option.  In particular, you need to compile @file{libgcc.a}, the
19199 library that comes with GCC, with @option{-msoft-float} in order for
19200 this to work.
19202 @item -mhard-quad-float
19203 @opindex mhard-quad-float
19204 Generate output containing quad-word (long double) floating-point
19205 instructions.
19207 @item -msoft-quad-float
19208 @opindex msoft-quad-float
19209 Generate output containing library calls for quad-word (long double)
19210 floating-point instructions.  The functions called are those specified
19211 in the SPARC ABI@.  This is the default.
19213 As of this writing, there are no SPARC implementations that have hardware
19214 support for the quad-word floating-point instructions.  They all invoke
19215 a trap handler for one of these instructions, and then the trap handler
19216 emulates the effect of the instruction.  Because of the trap handler overhead,
19217 this is much slower than calling the ABI library routines.  Thus the
19218 @option{-msoft-quad-float} option is the default.
19220 @item -mno-unaligned-doubles
19221 @itemx -munaligned-doubles
19222 @opindex mno-unaligned-doubles
19223 @opindex munaligned-doubles
19224 Assume that doubles have 8-byte alignment.  This is the default.
19226 With @option{-munaligned-doubles}, GCC assumes that doubles have 8-byte
19227 alignment only if they are contained in another type, or if they have an
19228 absolute address.  Otherwise, it assumes they have 4-byte alignment.
19229 Specifying this option avoids some rare compatibility problems with code
19230 generated by other compilers.  It is not the default because it results
19231 in a performance loss, especially for floating-point code.
19233 @item -mno-faster-structs
19234 @itemx -mfaster-structs
19235 @opindex mno-faster-structs
19236 @opindex mfaster-structs
19237 With @option{-mfaster-structs}, the compiler assumes that structures
19238 should have 8-byte alignment.  This enables the use of pairs of
19239 @code{ldd} and @code{std} instructions for copies in structure
19240 assignment, in place of twice as many @code{ld} and @code{st} pairs.
19241 However, the use of this changed alignment directly violates the SPARC
19242 ABI@.  Thus, it's intended only for use on targets where the developer
19243 acknowledges that their resulting code is not directly in line with
19244 the rules of the ABI@.
19246 @item -mcpu=@var{cpu_type}
19247 @opindex mcpu
19248 Set the instruction set, register set, and instruction scheduling parameters
19249 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
19250 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{hypersparc},
19251 @samp{leon}, @samp{sparclite}, @samp{f930}, @samp{f934}, @samp{sparclite86x},
19252 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
19253 @samp{ultrasparc3}, @samp{niagara}, @samp{niagara2}, @samp{niagara3},
19254 and @samp{niagara4}.
19256 Native Solaris and GNU/Linux toolchains also support the value @samp{native},
19257 which selects the best architecture option for the host processor.
19258 @option{-mcpu=native} has no effect if GCC does not recognize
19259 the processor.
19261 Default instruction scheduling parameters are used for values that select
19262 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
19263 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
19265 Here is a list of each supported architecture and their supported
19266 implementations.
19268 @table @asis
19269 @item v7
19270 cypress
19272 @item v8
19273 supersparc, hypersparc, leon
19275 @item sparclite
19276 f930, f934, sparclite86x
19278 @item sparclet
19279 tsc701
19281 @item v9
19282 ultrasparc, ultrasparc3, niagara, niagara2, niagara3, niagara4
19283 @end table
19285 By default (unless configured otherwise), GCC generates code for the V7
19286 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
19287 additionally optimizes it for the Cypress CY7C602 chip, as used in the
19288 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
19289 SPARCStation 1, 2, IPX etc.
19291 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
19292 architecture.  The only difference from V7 code is that the compiler emits
19293 the integer multiply and integer divide instructions which exist in SPARC-V8
19294 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
19295 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
19296 2000 series.
19298 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
19299 the SPARC architecture.  This adds the integer multiply, integer divide step
19300 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
19301 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
19302 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
19303 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
19304 MB86934 chip, which is the more recent SPARClite with FPU@.
19306 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
19307 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
19308 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
19309 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
19310 optimizes it for the TEMIC SPARClet chip.
19312 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
19313 architecture.  This adds 64-bit integer and floating-point move instructions,
19314 3 additional floating-point condition code registers and conditional move
19315 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
19316 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
19317 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
19318 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
19319 @option{-mcpu=niagara}, the compiler additionally optimizes it for
19320 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
19321 additionally optimizes it for Sun UltraSPARC T2 chips. With
19322 @option{-mcpu=niagara3}, the compiler additionally optimizes it for Sun
19323 UltraSPARC T3 chips.  With @option{-mcpu=niagara4}, the compiler
19324 additionally optimizes it for Sun UltraSPARC T4 chips.
19326 @item -mtune=@var{cpu_type}
19327 @opindex mtune
19328 Set the instruction scheduling parameters for machine type
19329 @var{cpu_type}, but do not set the instruction set or register set that the
19330 option @option{-mcpu=@var{cpu_type}} does.
19332 The same values for @option{-mcpu=@var{cpu_type}} can be used for
19333 @option{-mtune=@var{cpu_type}}, but the only useful values are those
19334 that select a particular CPU implementation.  Those are @samp{cypress},
19335 @samp{supersparc}, @samp{hypersparc}, @samp{leon}, @samp{f930}, @samp{f934},
19336 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc}, @samp{ultrasparc3},
19337 @samp{niagara}, @samp{niagara2}, @samp{niagara3} and @samp{niagara4}.  With
19338 native Solaris and GNU/Linux toolchains, @samp{native} can also be used.
19340 @item -mv8plus
19341 @itemx -mno-v8plus
19342 @opindex mv8plus
19343 @opindex mno-v8plus
19344 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
19345 difference from the V8 ABI is that the global and out registers are
19346 considered 64 bits wide.  This is enabled by default on Solaris in 32-bit
19347 mode for all SPARC-V9 processors.
19349 @item -mvis
19350 @itemx -mno-vis
19351 @opindex mvis
19352 @opindex mno-vis
19353 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
19354 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
19356 @item -mvis2
19357 @itemx -mno-vis2
19358 @opindex mvis2
19359 @opindex mno-vis2
19360 With @option{-mvis2}, GCC generates code that takes advantage of
19361 version 2.0 of the UltraSPARC Visual Instruction Set extensions.  The
19362 default is @option{-mvis2} when targeting a cpu that supports such
19363 instructions, such as UltraSPARC-III and later.  Setting @option{-mvis2}
19364 also sets @option{-mvis}.
19366 @item -mvis3
19367 @itemx -mno-vis3
19368 @opindex mvis3
19369 @opindex mno-vis3
19370 With @option{-mvis3}, GCC generates code that takes advantage of
19371 version 3.0 of the UltraSPARC Visual Instruction Set extensions.  The
19372 default is @option{-mvis3} when targeting a cpu that supports such
19373 instructions, such as niagara-3 and later.  Setting @option{-mvis3}
19374 also sets @option{-mvis2} and @option{-mvis}.
19376 @item -mcbcond
19377 @itemx -mno-cbcond
19378 @opindex mcbcond
19379 @opindex mno-cbcond
19380 With @option{-mcbcond}, GCC generates code that takes advantage of
19381 compare-and-branch instructions, as defined in the Sparc Architecture 2011.
19382 The default is @option{-mcbcond} when targeting a cpu that supports such
19383 instructions, such as niagara-4 and later.
19385 @item -mpopc
19386 @itemx -mno-popc
19387 @opindex mpopc
19388 @opindex mno-popc
19389 With @option{-mpopc}, GCC generates code that takes advantage of the UltraSPARC
19390 population count instruction.  The default is @option{-mpopc}
19391 when targeting a cpu that supports such instructions, such as Niagara-2 and
19392 later.
19394 @item -mfmaf
19395 @itemx -mno-fmaf
19396 @opindex mfmaf
19397 @opindex mno-fmaf
19398 With @option{-mfmaf}, GCC generates code that takes advantage of the UltraSPARC
19399 Fused Multiply-Add Floating-point extensions.  The default is @option{-mfmaf}
19400 when targeting a cpu that supports such instructions, such as Niagara-3 and
19401 later.
19403 @item -mfix-at697f
19404 @opindex mfix-at697f
19405 Enable the documented workaround for the single erratum of the Atmel AT697F
19406 processor (which corresponds to erratum #13 of the AT697E processor).
19407 @end table
19409 These @samp{-m} options are supported in addition to the above
19410 on SPARC-V9 processors in 64-bit environments:
19412 @table @gcctabopt
19413 @item -m32
19414 @itemx -m64
19415 @opindex m32
19416 @opindex m64
19417 Generate code for a 32-bit or 64-bit environment.
19418 The 32-bit environment sets int, long and pointer to 32 bits.
19419 The 64-bit environment sets int to 32 bits and long and pointer
19420 to 64 bits.
19422 @item -mcmodel=@var{which}
19423 @opindex mcmodel
19424 Set the code model to one of
19426 @table @samp
19427 @item medlow
19428 The Medium/Low code model: 64-bit addresses, programs
19429 must be linked in the low 32 bits of memory.  Programs can be statically
19430 or dynamically linked.
19432 @item medmid
19433 The Medium/Middle code model: 64-bit addresses, programs
19434 must be linked in the low 44 bits of memory, the text and data segments must
19435 be less than 2GB in size and the data segment must be located within 2GB of
19436 the text segment.
19438 @item medany
19439 The Medium/Anywhere code model: 64-bit addresses, programs
19440 may be linked anywhere in memory, the text and data segments must be less
19441 than 2GB in size and the data segment must be located within 2GB of the
19442 text segment.
19444 @item embmedany
19445 The Medium/Anywhere code model for embedded systems:
19446 64-bit addresses, the text and data segments must be less than 2GB in
19447 size, both starting anywhere in memory (determined at link time).  The
19448 global register %g4 points to the base of the data segment.  Programs
19449 are statically linked and PIC is not supported.
19450 @end table
19452 @item -mmemory-model=@var{mem-model}
19453 @opindex mmemory-model
19454 Set the memory model in force on the processor to one of
19456 @table @samp
19457 @item default
19458 The default memory model for the processor and operating system.
19460 @item rmo
19461 Relaxed Memory Order
19463 @item pso
19464 Partial Store Order
19466 @item tso
19467 Total Store Order
19469 @item sc
19470 Sequential Consistency
19471 @end table
19473 These memory models are formally defined in Appendix D of the Sparc V9
19474 architecture manual, as set in the processor's @code{PSTATE.MM} field.
19476 @item -mstack-bias
19477 @itemx -mno-stack-bias
19478 @opindex mstack-bias
19479 @opindex mno-stack-bias
19480 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
19481 frame pointer if present, are offset by @minus{}2047 which must be added back
19482 when making stack frame references.  This is the default in 64-bit mode.
19483 Otherwise, assume no such offset is present.
19484 @end table
19486 @node SPU Options
19487 @subsection SPU Options
19488 @cindex SPU options
19490 These @samp{-m} options are supported on the SPU:
19492 @table @gcctabopt
19493 @item -mwarn-reloc
19494 @itemx -merror-reloc
19495 @opindex mwarn-reloc
19496 @opindex merror-reloc
19498 The loader for SPU does not handle dynamic relocations.  By default, GCC
19499 gives an error when it generates code that requires a dynamic
19500 relocation.  @option{-mno-error-reloc} disables the error,
19501 @option{-mwarn-reloc} generates a warning instead.
19503 @item -msafe-dma
19504 @itemx -munsafe-dma
19505 @opindex msafe-dma
19506 @opindex munsafe-dma
19508 Instructions that initiate or test completion of DMA must not be
19509 reordered with respect to loads and stores of the memory that is being
19510 accessed.
19511 With @option{-munsafe-dma} you must use the @code{volatile} keyword to protect
19512 memory accesses, but that can lead to inefficient code in places where the
19513 memory is known to not change.  Rather than mark the memory as volatile,
19514 you can use @option{-msafe-dma} to tell the compiler to treat
19515 the DMA instructions as potentially affecting all memory.  
19517 @item -mbranch-hints
19518 @opindex mbranch-hints
19520 By default, GCC generates a branch hint instruction to avoid
19521 pipeline stalls for always-taken or probably-taken branches.  A hint
19522 is not generated closer than 8 instructions away from its branch.
19523 There is little reason to disable them, except for debugging purposes,
19524 or to make an object a little bit smaller.
19526 @item -msmall-mem
19527 @itemx -mlarge-mem
19528 @opindex msmall-mem
19529 @opindex mlarge-mem
19531 By default, GCC generates code assuming that addresses are never larger
19532 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
19533 a full 32-bit address.
19535 @item -mstdmain
19536 @opindex mstdmain
19538 By default, GCC links against startup code that assumes the SPU-style
19539 main function interface (which has an unconventional parameter list).
19540 With @option{-mstdmain}, GCC links your program against startup
19541 code that assumes a C99-style interface to @code{main}, including a
19542 local copy of @code{argv} strings.
19544 @item -mfixed-range=@var{register-range}
19545 @opindex mfixed-range
19546 Generate code treating the given register range as fixed registers.
19547 A fixed register is one that the register allocator cannot use.  This is
19548 useful when compiling kernel code.  A register range is specified as
19549 two registers separated by a dash.  Multiple register ranges can be
19550 specified separated by a comma.
19552 @item -mea32
19553 @itemx -mea64
19554 @opindex mea32
19555 @opindex mea64
19556 Compile code assuming that pointers to the PPU address space accessed
19557 via the @code{__ea} named address space qualifier are either 32 or 64
19558 bits wide.  The default is 32 bits.  As this is an ABI-changing option,
19559 all object code in an executable must be compiled with the same setting.
19561 @item -maddress-space-conversion
19562 @itemx -mno-address-space-conversion
19563 @opindex maddress-space-conversion
19564 @opindex mno-address-space-conversion
19565 Allow/disallow treating the @code{__ea} address space as superset
19566 of the generic address space.  This enables explicit type casts
19567 between @code{__ea} and generic pointer as well as implicit
19568 conversions of generic pointers to @code{__ea} pointers.  The
19569 default is to allow address space pointer conversions.
19571 @item -mcache-size=@var{cache-size}
19572 @opindex mcache-size
19573 This option controls the version of libgcc that the compiler links to an
19574 executable and selects a software-managed cache for accessing variables
19575 in the @code{__ea} address space with a particular cache size.  Possible
19576 options for @var{cache-size} are @samp{8}, @samp{16}, @samp{32}, @samp{64}
19577 and @samp{128}.  The default cache size is 64KB.
19579 @item -matomic-updates
19580 @itemx -mno-atomic-updates
19581 @opindex matomic-updates
19582 @opindex mno-atomic-updates
19583 This option controls the version of libgcc that the compiler links to an
19584 executable and selects whether atomic updates to the software-managed
19585 cache of PPU-side variables are used.  If you use atomic updates, changes
19586 to a PPU variable from SPU code using the @code{__ea} named address space
19587 qualifier do not interfere with changes to other PPU variables residing
19588 in the same cache line from PPU code.  If you do not use atomic updates,
19589 such interference may occur; however, writing back cache lines is
19590 more efficient.  The default behavior is to use atomic updates.
19592 @item -mdual-nops
19593 @itemx -mdual-nops=@var{n}
19594 @opindex mdual-nops
19595 By default, GCC inserts nops to increase dual issue when it expects
19596 it to increase performance.  @var{n} can be a value from 0 to 10.  A
19597 smaller @var{n} inserts fewer nops.  10 is the default, 0 is the
19598 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
19600 @item -mhint-max-nops=@var{n}
19601 @opindex mhint-max-nops
19602 Maximum number of nops to insert for a branch hint.  A branch hint must
19603 be at least 8 instructions away from the branch it is affecting.  GCC
19604 inserts up to @var{n} nops to enforce this, otherwise it does not
19605 generate the branch hint.
19607 @item -mhint-max-distance=@var{n}
19608 @opindex mhint-max-distance
19609 The encoding of the branch hint instruction limits the hint to be within
19610 256 instructions of the branch it is affecting.  By default, GCC makes
19611 sure it is within 125.
19613 @item -msafe-hints
19614 @opindex msafe-hints
19615 Work around a hardware bug that causes the SPU to stall indefinitely.
19616 By default, GCC inserts the @code{hbrp} instruction to make sure
19617 this stall won't happen.
19619 @end table
19621 @node System V Options
19622 @subsection Options for System V
19624 These additional options are available on System V Release 4 for
19625 compatibility with other compilers on those systems:
19627 @table @gcctabopt
19628 @item -G
19629 @opindex G
19630 Create a shared object.
19631 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
19633 @item -Qy
19634 @opindex Qy
19635 Identify the versions of each tool used by the compiler, in a
19636 @code{.ident} assembler directive in the output.
19638 @item -Qn
19639 @opindex Qn
19640 Refrain from adding @code{.ident} directives to the output file (this is
19641 the default).
19643 @item -YP,@var{dirs}
19644 @opindex YP
19645 Search the directories @var{dirs}, and no others, for libraries
19646 specified with @option{-l}.
19648 @item -Ym,@var{dir}
19649 @opindex Ym
19650 Look in the directory @var{dir} to find the M4 preprocessor.
19651 The assembler uses this option.
19652 @c This is supposed to go with a -Yd for predefined M4 macro files, but
19653 @c the generic assembler that comes with Solaris takes just -Ym.
19654 @end table
19656 @node TILE-Gx Options
19657 @subsection TILE-Gx Options
19658 @cindex TILE-Gx options
19660 These @samp{-m} options are supported on the TILE-Gx:
19662 @table @gcctabopt
19663 @item -mcmodel=small
19664 @opindex mcmodel=small
19665 Generate code for the small model.  The distance for direct calls is
19666 limited to 500M in either direction.  PC-relative addresses are 32
19667 bits.  Absolute addresses support the full address range.
19669 @item -mcmodel=large
19670 @opindex mcmodel=large
19671 Generate code for the large model.  There is no limitation on call
19672 distance, pc-relative addresses, or absolute addresses.
19674 @item -mcpu=@var{name}
19675 @opindex mcpu
19676 Selects the type of CPU to be targeted.  Currently the only supported
19677 type is @samp{tilegx}.
19679 @item -m32
19680 @itemx -m64
19681 @opindex m32
19682 @opindex m64
19683 Generate code for a 32-bit or 64-bit environment.  The 32-bit
19684 environment sets int, long, and pointer to 32 bits.  The 64-bit
19685 environment sets int to 32 bits and long and pointer to 64 bits.
19686 @end table
19688 @node TILEPro Options
19689 @subsection TILEPro Options
19690 @cindex TILEPro options
19692 These @samp{-m} options are supported on the TILEPro:
19694 @table @gcctabopt
19695 @item -mcpu=@var{name}
19696 @opindex mcpu
19697 Selects the type of CPU to be targeted.  Currently the only supported
19698 type is @samp{tilepro}.
19700 @item -m32
19701 @opindex m32
19702 Generate code for a 32-bit environment, which sets int, long, and
19703 pointer to 32 bits.  This is the only supported behavior so the flag
19704 is essentially ignored.
19705 @end table
19707 @node V850 Options
19708 @subsection V850 Options
19709 @cindex V850 Options
19711 These @samp{-m} options are defined for V850 implementations:
19713 @table @gcctabopt
19714 @item -mlong-calls
19715 @itemx -mno-long-calls
19716 @opindex mlong-calls
19717 @opindex mno-long-calls
19718 Treat all calls as being far away (near).  If calls are assumed to be
19719 far away, the compiler always loads the function's address into a
19720 register, and calls indirect through the pointer.
19722 @item -mno-ep
19723 @itemx -mep
19724 @opindex mno-ep
19725 @opindex mep
19726 Do not optimize (do optimize) basic blocks that use the same index
19727 pointer 4 or more times to copy pointer into the @code{ep} register, and
19728 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
19729 option is on by default if you optimize.
19731 @item -mno-prolog-function
19732 @itemx -mprolog-function
19733 @opindex mno-prolog-function
19734 @opindex mprolog-function
19735 Do not use (do use) external functions to save and restore registers
19736 at the prologue and epilogue of a function.  The external functions
19737 are slower, but use less code space if more than one function saves
19738 the same number of registers.  The @option{-mprolog-function} option
19739 is on by default if you optimize.
19741 @item -mspace
19742 @opindex mspace
19743 Try to make the code as small as possible.  At present, this just turns
19744 on the @option{-mep} and @option{-mprolog-function} options.
19746 @item -mtda=@var{n}
19747 @opindex mtda
19748 Put static or global variables whose size is @var{n} bytes or less into
19749 the tiny data area that register @code{ep} points to.  The tiny data
19750 area can hold up to 256 bytes in total (128 bytes for byte references).
19752 @item -msda=@var{n}
19753 @opindex msda
19754 Put static or global variables whose size is @var{n} bytes or less into
19755 the small data area that register @code{gp} points to.  The small data
19756 area can hold up to 64 kilobytes.
19758 @item -mzda=@var{n}
19759 @opindex mzda
19760 Put static or global variables whose size is @var{n} bytes or less into
19761 the first 32 kilobytes of memory.
19763 @item -mv850
19764 @opindex mv850
19765 Specify that the target processor is the V850.
19767 @item -mv850e3v5
19768 @opindex mv850e3v5
19769 Specify that the target processor is the V850E3V5.  The preprocessor
19770 constant @samp{__v850e3v5__} is defined if this option is used.
19772 @item -mv850e2v4
19773 @opindex mv850e2v4
19774 Specify that the target processor is the V850E3V5.  This is an alias for
19775 the @option{-mv850e3v5} option.
19777 @item -mv850e2v3
19778 @opindex mv850e2v3
19779 Specify that the target processor is the V850E2V3.  The preprocessor
19780 constant @samp{__v850e2v3__} is defined if this option is used.
19782 @item -mv850e2
19783 @opindex mv850e2
19784 Specify that the target processor is the V850E2.  The preprocessor
19785 constant @samp{__v850e2__} is defined if this option is used.
19787 @item -mv850e1
19788 @opindex mv850e1
19789 Specify that the target processor is the V850E1.  The preprocessor
19790 constants @samp{__v850e1__} and @samp{__v850e__} are defined if
19791 this option is used.
19793 @item -mv850es
19794 @opindex mv850es
19795 Specify that the target processor is the V850ES.  This is an alias for
19796 the @option{-mv850e1} option.
19798 @item -mv850e
19799 @opindex mv850e
19800 Specify that the target processor is the V850E@.  The preprocessor
19801 constant @samp{__v850e__} is defined if this option is used.
19803 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
19804 nor @option{-mv850e2} nor @option{-mv850e2v3} nor @option{-mv850e3v5}
19805 are defined then a default target processor is chosen and the
19806 relevant @samp{__v850*__} preprocessor constant is defined.
19808 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
19809 defined, regardless of which processor variant is the target.
19811 @item -mdisable-callt
19812 @itemx -mno-disable-callt
19813 @opindex mdisable-callt
19814 @opindex mno-disable-callt
19815 This option suppresses generation of the @code{CALLT} instruction for the
19816 v850e, v850e1, v850e2, v850e2v3 and v850e3v5 flavors of the v850
19817 architecture.
19819 This option is enabled by default when the RH850 ABI is
19820 in use (see @option{-mrh850-abi}), and disabled by default when the
19821 GCC ABI is in use.  If @code{CALLT} instructions are being generated
19822 then the C preprocessor symbol @code{__V850_CALLT__} will be defined.
19824 @item -mrelax
19825 @itemx -mno-relax
19826 @opindex mrelax
19827 @opindex mno-relax
19828 Pass on (or do not pass on) the @option{-mrelax} command line option
19829 to the assembler.
19831 @item -mlong-jumps
19832 @itemx -mno-long-jumps
19833 @opindex mlong-jumps
19834 @opindex mno-long-jumps
19835 Disable (or re-enable) the generation of PC-relative jump instructions.
19837 @item -msoft-float
19838 @itemx -mhard-float
19839 @opindex msoft-float
19840 @opindex mhard-float
19841 Disable (or re-enable) the generation of hardware floating point
19842 instructions.  This option is only significant when the target
19843 architecture is @samp{V850E2V3} or higher.  If hardware floating point
19844 instructions are being generated then the C preprocessor symbol
19845 @code{__FPU_OK__} will be defined, otherwise the symbol
19846 @code{__NO_FPU__} will be defined.
19848 @item -mloop
19849 @opindex mloop
19850 Enables the use of the e3v5 LOOP instruction.  The use of this
19851 instruction is not enabled by default when the e3v5 architecture is
19852 selected because its use is still experimental.
19854 @item -mrh850-abi
19855 @itemx -mghs
19856 @opindex mrh850-abi
19857 @opindex mghs
19858 Enables support for the RH850 version of the V850 ABI.  This is the
19859 default.  With this version of the ABI the following rules apply:
19861 @itemize
19862 @item
19863 Integer sized structures and unions are returned via a memory pointer
19864 rather than a register.
19866 @item
19867 Large structures and unions (more than 8 bytes in size) are passed by
19868 value.
19870 @item
19871 Functions are aligned to 16-bit boundaries.
19873 @item
19874 The @option{-m8byte-align} command line option is supported.
19876 @item
19877 The @option{-mdisable-callt} command line option is enabled by
19878 default.  The @option{-mno-disable-callt} command line option is not
19879 supported.
19880 @end itemize
19882 When this version of the ABI is enabled the C preprocessor symbol
19883 @code{__V850_RH850_ABI__} is defined.
19885 @item -mgcc-abi
19886 @opindex mgcc-abi
19887 Enables support for the old GCC version of the V850 ABI.  With this
19888 version of the ABI the following rules apply:
19890 @itemize
19891 @item
19892 Integer sized structures and unions are returned in register @code{r10}.
19894 @item
19895 Large structures and unions (more than 8 bytes in size) are passed by
19896 reference.
19898 @item
19899 Functions are aligned to 32-bit boundaries, unless optimizing for
19900 size.
19902 @item
19903 The @option{-m8byte-align} command line option is not supported.
19905 @item
19906 The @option{-mdisable-callt} command line option is supported but not
19907 enabled by default.
19908 @end itemize
19910 When this version of the ABI is enabled the C preprocessor symbol
19911 @code{__V850_GCC_ABI__} is defined.
19913 @item -m8byte-align
19914 @itemx -mno-8byte-align
19915 @opindex m8byte-align
19916 @opindex mno-8byte-align
19917 Enables support for @code{doubles} and @code{long long} types to be
19918 aligned on 8-byte boundaries.  The default is to restrict the
19919 alignment of all objects to at most 4-bytes.  When
19920 @option{-m8byte-align} is in effect the C preprocessor symbol
19921 @code{__V850_8BYTE_ALIGN__} will be defined.
19923 @item -mbig-switch
19924 @opindex mbig-switch
19925 Generate code suitable for big switch tables.  Use this option only if
19926 the assembler/linker complain about out of range branches within a switch
19927 table.
19929 @item -mapp-regs
19930 @opindex mapp-regs
19931 This option causes r2 and r5 to be used in the code generated by
19932 the compiler.  This setting is the default.
19934 @item -mno-app-regs
19935 @opindex mno-app-regs
19936 This option causes r2 and r5 to be treated as fixed registers.
19938 @end table
19940 @node VAX Options
19941 @subsection VAX Options
19942 @cindex VAX options
19944 These @samp{-m} options are defined for the VAX:
19946 @table @gcctabopt
19947 @item -munix
19948 @opindex munix
19949 Do not output certain jump instructions (@code{aobleq} and so on)
19950 that the Unix assembler for the VAX cannot handle across long
19951 ranges.
19953 @item -mgnu
19954 @opindex mgnu
19955 Do output those jump instructions, on the assumption that the
19956 GNU assembler is being used.
19958 @item -mg
19959 @opindex mg
19960 Output code for G-format floating-point numbers instead of D-format.
19961 @end table
19963 @node VMS Options
19964 @subsection VMS Options
19966 These @samp{-m} options are defined for the VMS implementations:
19968 @table @gcctabopt
19969 @item -mvms-return-codes
19970 @opindex mvms-return-codes
19971 Return VMS condition codes from @code{main}. The default is to return POSIX-style
19972 condition (e.g.@ error) codes.
19974 @item -mdebug-main=@var{prefix}
19975 @opindex mdebug-main=@var{prefix}
19976 Flag the first routine whose name starts with @var{prefix} as the main
19977 routine for the debugger.
19979 @item -mmalloc64
19980 @opindex mmalloc64
19981 Default to 64-bit memory allocation routines.
19983 @item -mpointer-size=@var{size}
19984 @opindex -mpointer-size=@var{size}
19985 Set the default size of pointers. Possible options for @var{size} are
19986 @samp{32} or @samp{short} for 32 bit pointers, @samp{64} or @samp{long}
19987 for 64 bit pointers, and @samp{no} for supporting only 32 bit pointers.
19988 The later option disables @code{pragma pointer_size}.
19989 @end table
19991 @node VxWorks Options
19992 @subsection VxWorks Options
19993 @cindex VxWorks Options
19995 The options in this section are defined for all VxWorks targets.
19996 Options specific to the target hardware are listed with the other
19997 options for that target.
19999 @table @gcctabopt
20000 @item -mrtp
20001 @opindex mrtp
20002 GCC can generate code for both VxWorks kernels and real time processes
20003 (RTPs).  This option switches from the former to the latter.  It also
20004 defines the preprocessor macro @code{__RTP__}.
20006 @item -non-static
20007 @opindex non-static
20008 Link an RTP executable against shared libraries rather than static
20009 libraries.  The options @option{-static} and @option{-shared} can
20010 also be used for RTPs (@pxref{Link Options}); @option{-static}
20011 is the default.
20013 @item -Bstatic
20014 @itemx -Bdynamic
20015 @opindex Bstatic
20016 @opindex Bdynamic
20017 These options are passed down to the linker.  They are defined for
20018 compatibility with Diab.
20020 @item -Xbind-lazy
20021 @opindex Xbind-lazy
20022 Enable lazy binding of function calls.  This option is equivalent to
20023 @option{-Wl,-z,now} and is defined for compatibility with Diab.
20025 @item -Xbind-now
20026 @opindex Xbind-now
20027 Disable lazy binding of function calls.  This option is the default and
20028 is defined for compatibility with Diab.
20029 @end table
20031 @node x86-64 Options
20032 @subsection x86-64 Options
20033 @cindex x86-64 options
20035 These are listed under @xref{i386 and x86-64 Options}.
20037 @node Xstormy16 Options
20038 @subsection Xstormy16 Options
20039 @cindex Xstormy16 Options
20041 These options are defined for Xstormy16:
20043 @table @gcctabopt
20044 @item -msim
20045 @opindex msim
20046 Choose startup files and linker script suitable for the simulator.
20047 @end table
20049 @node Xtensa Options
20050 @subsection Xtensa Options
20051 @cindex Xtensa Options
20053 These options are supported for Xtensa targets:
20055 @table @gcctabopt
20056 @item -mconst16
20057 @itemx -mno-const16
20058 @opindex mconst16
20059 @opindex mno-const16
20060 Enable or disable use of @code{CONST16} instructions for loading
20061 constant values.  The @code{CONST16} instruction is currently not a
20062 standard option from Tensilica.  When enabled, @code{CONST16}
20063 instructions are always used in place of the standard @code{L32R}
20064 instructions.  The use of @code{CONST16} is enabled by default only if
20065 the @code{L32R} instruction is not available.
20067 @item -mfused-madd
20068 @itemx -mno-fused-madd
20069 @opindex mfused-madd
20070 @opindex mno-fused-madd
20071 Enable or disable use of fused multiply/add and multiply/subtract
20072 instructions in the floating-point option.  This has no effect if the
20073 floating-point option is not also enabled.  Disabling fused multiply/add
20074 and multiply/subtract instructions forces the compiler to use separate
20075 instructions for the multiply and add/subtract operations.  This may be
20076 desirable in some cases where strict IEEE 754-compliant results are
20077 required: the fused multiply add/subtract instructions do not round the
20078 intermediate result, thereby producing results with @emph{more} bits of
20079 precision than specified by the IEEE standard.  Disabling fused multiply
20080 add/subtract instructions also ensures that the program output is not
20081 sensitive to the compiler's ability to combine multiply and add/subtract
20082 operations.
20084 @item -mserialize-volatile
20085 @itemx -mno-serialize-volatile
20086 @opindex mserialize-volatile
20087 @opindex mno-serialize-volatile
20088 When this option is enabled, GCC inserts @code{MEMW} instructions before
20089 @code{volatile} memory references to guarantee sequential consistency.
20090 The default is @option{-mserialize-volatile}.  Use
20091 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
20093 @item -mforce-no-pic
20094 @opindex mforce-no-pic
20095 For targets, like GNU/Linux, where all user-mode Xtensa code must be
20096 position-independent code (PIC), this option disables PIC for compiling
20097 kernel code.
20099 @item -mtext-section-literals
20100 @itemx -mno-text-section-literals
20101 @opindex mtext-section-literals
20102 @opindex mno-text-section-literals
20103 Control the treatment of literal pools.  The default is
20104 @option{-mno-text-section-literals}, which places literals in a separate
20105 section in the output file.  This allows the literal pool to be placed
20106 in a data RAM/ROM, and it also allows the linker to combine literal
20107 pools from separate object files to remove redundant literals and
20108 improve code size.  With @option{-mtext-section-literals}, the literals
20109 are interspersed in the text section in order to keep them as close as
20110 possible to their references.  This may be necessary for large assembly
20111 files.
20113 @item -mtarget-align
20114 @itemx -mno-target-align
20115 @opindex mtarget-align
20116 @opindex mno-target-align
20117 When this option is enabled, GCC instructs the assembler to
20118 automatically align instructions to reduce branch penalties at the
20119 expense of some code density.  The assembler attempts to widen density
20120 instructions to align branch targets and the instructions following call
20121 instructions.  If there are not enough preceding safe density
20122 instructions to align a target, no widening is performed.  The
20123 default is @option{-mtarget-align}.  These options do not affect the
20124 treatment of auto-aligned instructions like @code{LOOP}, which the
20125 assembler always aligns, either by widening density instructions or
20126 by inserting NOP instructions.
20128 @item -mlongcalls
20129 @itemx -mno-longcalls
20130 @opindex mlongcalls
20131 @opindex mno-longcalls
20132 When this option is enabled, GCC instructs the assembler to translate
20133 direct calls to indirect calls unless it can determine that the target
20134 of a direct call is in the range allowed by the call instruction.  This
20135 translation typically occurs for calls to functions in other source
20136 files.  Specifically, the assembler translates a direct @code{CALL}
20137 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
20138 The default is @option{-mno-longcalls}.  This option should be used in
20139 programs where the call target can potentially be out of range.  This
20140 option is implemented in the assembler, not the compiler, so the
20141 assembly code generated by GCC still shows direct call
20142 instructions---look at the disassembled object code to see the actual
20143 instructions.  Note that the assembler uses an indirect call for
20144 every cross-file call, not just those that really are out of range.
20145 @end table
20147 @node zSeries Options
20148 @subsection zSeries Options
20149 @cindex zSeries options
20151 These are listed under @xref{S/390 and zSeries Options}.
20153 @node Code Gen Options
20154 @section Options for Code Generation Conventions
20155 @cindex code generation conventions
20156 @cindex options, code generation
20157 @cindex run-time options
20159 These machine-independent options control the interface conventions
20160 used in code generation.
20162 Most of them have both positive and negative forms; the negative form
20163 of @option{-ffoo} is @option{-fno-foo}.  In the table below, only
20164 one of the forms is listed---the one that is not the default.  You
20165 can figure out the other form by either removing @samp{no-} or adding
20168 @table @gcctabopt
20169 @item -fbounds-check
20170 @opindex fbounds-check
20171 For front ends that support it, generate additional code to check that
20172 indices used to access arrays are within the declared range.  This is
20173 currently only supported by the Java and Fortran front ends, where
20174 this option defaults to true and false respectively.
20176 @item -fstack-reuse=@var{reuse-level}
20177 @opindex fstack_reuse
20178 This option controls stack space reuse for user declared local/auto variables
20179 and compiler generated temporaries.  @var{reuse_level} can be @samp{all},
20180 @samp{named_vars}, or @samp{none}. @samp{all} enables stack reuse for all
20181 local variables and temporaries, @samp{named_vars} enables the reuse only for
20182 user defined local variables with names, and @samp{none} disables stack reuse
20183 completely. The default value is @samp{all}. The option is needed when the
20184 program extends the lifetime of a scoped local variable or a compiler generated
20185 temporary beyond the end point defined by the language.  When a lifetime of
20186 a variable ends, and if the variable lives in memory, the optimizing compiler
20187 has the freedom to reuse its stack space with other temporaries or scoped
20188 local variables whose live range does not overlap with it. Legacy code extending
20189 local lifetime will likely to break with the stack reuse optimization.
20191 For example,
20193 @smallexample
20194    int *p;
20195    @{
20196      int local1;
20198      p = &local1;
20199      local1 = 10;
20200      ....
20201    @}
20202    @{
20203       int local2;
20204       local2 = 20;
20205       ...
20206    @}
20208    if (*p == 10)  // out of scope use of local1
20209      @{
20211      @}
20212 @end smallexample
20214 Another example:
20215 @smallexample
20217    struct A
20218    @{
20219        A(int k) : i(k), j(k) @{ @}
20220        int i;
20221        int j;
20222    @};
20224    A *ap;
20226    void foo(const A& ar)
20227    @{
20228       ap = &ar;
20229    @}
20231    void bar()
20232    @{
20233       foo(A(10)); // temp object's lifetime ends when foo returns
20235       @{
20236         A a(20);
20237         ....
20238       @}
20239       ap->i+= 10;  // ap references out of scope temp whose space
20240                    // is reused with a. What is the value of ap->i?
20241    @}
20243 @end smallexample
20245 The lifetime of a compiler generated temporary is well defined by the C++
20246 standard. When a lifetime of a temporary ends, and if the temporary lives
20247 in memory, the optimizing compiler has the freedom to reuse its stack
20248 space with other temporaries or scoped local variables whose live range
20249 does not overlap with it. However some of the legacy code relies on
20250 the behavior of older compilers in which temporaries' stack space is
20251 not reused, the aggressive stack reuse can lead to runtime errors. This
20252 option is used to control the temporary stack reuse optimization.
20254 @item -ftrapv
20255 @opindex ftrapv
20256 This option generates traps for signed overflow on addition, subtraction,
20257 multiplication operations.
20259 @item -fwrapv
20260 @opindex fwrapv
20261 This option instructs the compiler to assume that signed arithmetic
20262 overflow of addition, subtraction and multiplication wraps around
20263 using twos-complement representation.  This flag enables some optimizations
20264 and disables others.  This option is enabled by default for the Java
20265 front end, as required by the Java language specification.
20267 @item -fexceptions
20268 @opindex fexceptions
20269 Enable exception handling.  Generates extra code needed to propagate
20270 exceptions.  For some targets, this implies GCC generates frame
20271 unwind information for all functions, which can produce significant data
20272 size overhead, although it does not affect execution.  If you do not
20273 specify this option, GCC enables it by default for languages like
20274 C++ that normally require exception handling, and disables it for
20275 languages like C that do not normally require it.  However, you may need
20276 to enable this option when compiling C code that needs to interoperate
20277 properly with exception handlers written in C++.  You may also wish to
20278 disable this option if you are compiling older C++ programs that don't
20279 use exception handling.
20281 @item -fnon-call-exceptions
20282 @opindex fnon-call-exceptions
20283 Generate code that allows trapping instructions to throw exceptions.
20284 Note that this requires platform-specific runtime support that does
20285 not exist everywhere.  Moreover, it only allows @emph{trapping}
20286 instructions to throw exceptions, i.e.@: memory references or floating-point
20287 instructions.  It does not allow exceptions to be thrown from
20288 arbitrary signal handlers such as @code{SIGALRM}.
20290 @item -fdelete-dead-exceptions
20291 @opindex fdelete-dead-exceptions
20292 Consider that instructions that may throw exceptions but don't otherwise
20293 contribute to the execution of the program can be optimized away.
20294 This option is enabled by default for the Ada front end, as permitted by
20295 the Ada language specification.
20296 Optimization passes that cause dead exceptions to be removed are enabled independently at different optimization levels.
20298 @item -funwind-tables
20299 @opindex funwind-tables
20300 Similar to @option{-fexceptions}, except that it just generates any needed
20301 static data, but does not affect the generated code in any other way.
20302 You normally do not need to enable this option; instead, a language processor
20303 that needs this handling enables it on your behalf.
20305 @item -fasynchronous-unwind-tables
20306 @opindex fasynchronous-unwind-tables
20307 Generate unwind table in DWARF 2 format, if supported by target machine.  The
20308 table is exact at each instruction boundary, so it can be used for stack
20309 unwinding from asynchronous events (such as debugger or garbage collector).
20311 @item -fpcc-struct-return
20312 @opindex fpcc-struct-return
20313 Return ``short'' @code{struct} and @code{union} values in memory like
20314 longer ones, rather than in registers.  This convention is less
20315 efficient, but it has the advantage of allowing intercallability between
20316 GCC-compiled files and files compiled with other compilers, particularly
20317 the Portable C Compiler (pcc).
20319 The precise convention for returning structures in memory depends
20320 on the target configuration macros.
20322 Short structures and unions are those whose size and alignment match
20323 that of some integer type.
20325 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
20326 switch is not binary compatible with code compiled with the
20327 @option{-freg-struct-return} switch.
20328 Use it to conform to a non-default application binary interface.
20330 @item -freg-struct-return
20331 @opindex freg-struct-return
20332 Return @code{struct} and @code{union} values in registers when possible.
20333 This is more efficient for small structures than
20334 @option{-fpcc-struct-return}.
20336 If you specify neither @option{-fpcc-struct-return} nor
20337 @option{-freg-struct-return}, GCC defaults to whichever convention is
20338 standard for the target.  If there is no standard convention, GCC
20339 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
20340 the principal compiler.  In those cases, we can choose the standard, and
20341 we chose the more efficient register return alternative.
20343 @strong{Warning:} code compiled with the @option{-freg-struct-return}
20344 switch is not binary compatible with code compiled with the
20345 @option{-fpcc-struct-return} switch.
20346 Use it to conform to a non-default application binary interface.
20348 @item -fshort-enums
20349 @opindex fshort-enums
20350 Allocate to an @code{enum} type only as many bytes as it needs for the
20351 declared range of possible values.  Specifically, the @code{enum} type
20352 is equivalent to the smallest integer type that has enough room.
20354 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
20355 code that is not binary compatible with code generated without that switch.
20356 Use it to conform to a non-default application binary interface.
20358 @item -fshort-double
20359 @opindex fshort-double
20360 Use the same size for @code{double} as for @code{float}.
20362 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
20363 code that is not binary compatible with code generated without that switch.
20364 Use it to conform to a non-default application binary interface.
20366 @item -fshort-wchar
20367 @opindex fshort-wchar
20368 Override the underlying type for @samp{wchar_t} to be @samp{short
20369 unsigned int} instead of the default for the target.  This option is
20370 useful for building programs to run under WINE@.
20372 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
20373 code that is not binary compatible with code generated without that switch.
20374 Use it to conform to a non-default application binary interface.
20376 @item -fno-common
20377 @opindex fno-common
20378 In C code, controls the placement of uninitialized global variables.
20379 Unix C compilers have traditionally permitted multiple definitions of
20380 such variables in different compilation units by placing the variables
20381 in a common block.
20382 This is the behavior specified by @option{-fcommon}, and is the default
20383 for GCC on most targets.
20384 On the other hand, this behavior is not required by ISO C, and on some
20385 targets may carry a speed or code size penalty on variable references.
20386 The @option{-fno-common} option specifies that the compiler should place
20387 uninitialized global variables in the data section of the object file,
20388 rather than generating them as common blocks.
20389 This has the effect that if the same variable is declared
20390 (without @code{extern}) in two different compilations,
20391 you get a multiple-definition error when you link them.
20392 In this case, you must compile with @option{-fcommon} instead.
20393 Compiling with @option{-fno-common} is useful on targets for which
20394 it provides better performance, or if you wish to verify that the
20395 program will work on other systems that always treat uninitialized
20396 variable declarations this way.
20398 @item -fno-ident
20399 @opindex fno-ident
20400 Ignore the @samp{#ident} directive.
20402 @item -finhibit-size-directive
20403 @opindex finhibit-size-directive
20404 Don't output a @code{.size} assembler directive, or anything else that
20405 would cause trouble if the function is split in the middle, and the
20406 two halves are placed at locations far apart in memory.  This option is
20407 used when compiling @file{crtstuff.c}; you should not need to use it
20408 for anything else.
20410 @item -fverbose-asm
20411 @opindex fverbose-asm
20412 Put extra commentary information in the generated assembly code to
20413 make it more readable.  This option is generally only of use to those
20414 who actually need to read the generated assembly code (perhaps while
20415 debugging the compiler itself).
20417 @option{-fno-verbose-asm}, the default, causes the
20418 extra information to be omitted and is useful when comparing two assembler
20419 files.
20421 @item -frecord-gcc-switches
20422 @opindex frecord-gcc-switches
20423 This switch causes the command line used to invoke the
20424 compiler to be recorded into the object file that is being created.
20425 This switch is only implemented on some targets and the exact format
20426 of the recording is target and binary file format dependent, but it
20427 usually takes the form of a section containing ASCII text.  This
20428 switch is related to the @option{-fverbose-asm} switch, but that
20429 switch only records information in the assembler output file as
20430 comments, so it never reaches the object file.
20431 See also @option{-grecord-gcc-switches} for another
20432 way of storing compiler options into the object file.
20434 @item -fpic
20435 @opindex fpic
20436 @cindex global offset table
20437 @cindex PIC
20438 Generate position-independent code (PIC) suitable for use in a shared
20439 library, if supported for the target machine.  Such code accesses all
20440 constant addresses through a global offset table (GOT)@.  The dynamic
20441 loader resolves the GOT entries when the program starts (the dynamic
20442 loader is not part of GCC; it is part of the operating system).  If
20443 the GOT size for the linked executable exceeds a machine-specific
20444 maximum size, you get an error message from the linker indicating that
20445 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
20446 instead.  (These maximums are 8k on the SPARC and 32k
20447 on the m68k and RS/6000.  The 386 has no such limit.)
20449 Position-independent code requires special support, and therefore works
20450 only on certain machines.  For the 386, GCC supports PIC for System V
20451 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
20452 position-independent.
20454 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
20455 are defined to 1.
20457 @item -fPIC
20458 @opindex fPIC
20459 If supported for the target machine, emit position-independent code,
20460 suitable for dynamic linking and avoiding any limit on the size of the
20461 global offset table.  This option makes a difference on the m68k,
20462 PowerPC and SPARC@.
20464 Position-independent code requires special support, and therefore works
20465 only on certain machines.
20467 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
20468 are defined to 2.
20470 @item -fpie
20471 @itemx -fPIE
20472 @opindex fpie
20473 @opindex fPIE
20474 These options are similar to @option{-fpic} and @option{-fPIC}, but
20475 generated position independent code can be only linked into executables.
20476 Usually these options are used when @option{-pie} GCC option is
20477 used during linking.
20479 @option{-fpie} and @option{-fPIE} both define the macros
20480 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
20481 for @option{-fpie} and 2 for @option{-fPIE}.
20483 @item -fno-jump-tables
20484 @opindex fno-jump-tables
20485 Do not use jump tables for switch statements even where it would be
20486 more efficient than other code generation strategies.  This option is
20487 of use in conjunction with @option{-fpic} or @option{-fPIC} for
20488 building code that forms part of a dynamic linker and cannot
20489 reference the address of a jump table.  On some targets, jump tables
20490 do not require a GOT and this option is not needed.
20492 @item -ffixed-@var{reg}
20493 @opindex ffixed
20494 Treat the register named @var{reg} as a fixed register; generated code
20495 should never refer to it (except perhaps as a stack pointer, frame
20496 pointer or in some other fixed role).
20498 @var{reg} must be the name of a register.  The register names accepted
20499 are machine-specific and are defined in the @code{REGISTER_NAMES}
20500 macro in the machine description macro file.
20502 This flag does not have a negative form, because it specifies a
20503 three-way choice.
20505 @item -fcall-used-@var{reg}
20506 @opindex fcall-used
20507 Treat the register named @var{reg} as an allocable register that is
20508 clobbered by function calls.  It may be allocated for temporaries or
20509 variables that do not live across a call.  Functions compiled this way
20510 do not save and restore the register @var{reg}.
20512 It is an error to use this flag with the frame pointer or stack pointer.
20513 Use of this flag for other registers that have fixed pervasive roles in
20514 the machine's execution model produces disastrous results.
20516 This flag does not have a negative form, because it specifies a
20517 three-way choice.
20519 @item -fcall-saved-@var{reg}
20520 @opindex fcall-saved
20521 Treat the register named @var{reg} as an allocable register saved by
20522 functions.  It may be allocated even for temporaries or variables that
20523 live across a call.  Functions compiled this way save and restore
20524 the register @var{reg} if they use it.
20526 It is an error to use this flag with the frame pointer or stack pointer.
20527 Use of this flag for other registers that have fixed pervasive roles in
20528 the machine's execution model produces disastrous results.
20530 A different sort of disaster results from the use of this flag for
20531 a register in which function values may be returned.
20533 This flag does not have a negative form, because it specifies a
20534 three-way choice.
20536 @item -fpack-struct[=@var{n}]
20537 @opindex fpack-struct
20538 Without a value specified, pack all structure members together without
20539 holes.  When a value is specified (which must be a small power of two), pack
20540 structure members according to this value, representing the maximum
20541 alignment (that is, objects with default alignment requirements larger than
20542 this are output potentially unaligned at the next fitting location.
20544 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
20545 code that is not binary compatible with code generated without that switch.
20546 Additionally, it makes the code suboptimal.
20547 Use it to conform to a non-default application binary interface.
20549 @item -finstrument-functions
20550 @opindex finstrument-functions
20551 Generate instrumentation calls for entry and exit to functions.  Just
20552 after function entry and just before function exit, the following
20553 profiling functions are called with the address of the current
20554 function and its call site.  (On some platforms,
20555 @code{__builtin_return_address} does not work beyond the current
20556 function, so the call site information may not be available to the
20557 profiling functions otherwise.)
20559 @smallexample
20560 void __cyg_profile_func_enter (void *this_fn,
20561                                void *call_site);
20562 void __cyg_profile_func_exit  (void *this_fn,
20563                                void *call_site);
20564 @end smallexample
20566 The first argument is the address of the start of the current function,
20567 which may be looked up exactly in the symbol table.
20569 This instrumentation is also done for functions expanded inline in other
20570 functions.  The profiling calls indicate where, conceptually, the
20571 inline function is entered and exited.  This means that addressable
20572 versions of such functions must be available.  If all your uses of a
20573 function are expanded inline, this may mean an additional expansion of
20574 code size.  If you use @samp{extern inline} in your C code, an
20575 addressable version of such functions must be provided.  (This is
20576 normally the case anyway, but if you get lucky and the optimizer always
20577 expands the functions inline, you might have gotten away without
20578 providing static copies.)
20580 A function may be given the attribute @code{no_instrument_function}, in
20581 which case this instrumentation is not done.  This can be used, for
20582 example, for the profiling functions listed above, high-priority
20583 interrupt routines, and any functions from which the profiling functions
20584 cannot safely be called (perhaps signal handlers, if the profiling
20585 routines generate output or allocate memory).
20587 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
20588 @opindex finstrument-functions-exclude-file-list
20590 Set the list of functions that are excluded from instrumentation (see
20591 the description of @code{-finstrument-functions}).  If the file that
20592 contains a function definition matches with one of @var{file}, then
20593 that function is not instrumented.  The match is done on substrings:
20594 if the @var{file} parameter is a substring of the file name, it is
20595 considered to be a match.
20597 For example:
20599 @smallexample
20600 -finstrument-functions-exclude-file-list=/bits/stl,include/sys
20601 @end smallexample
20603 @noindent
20604 excludes any inline function defined in files whose pathnames
20605 contain @code{/bits/stl} or @code{include/sys}.
20607 If, for some reason, you want to include letter @code{','} in one of
20608 @var{sym}, write @code{'\,'}. For example,
20609 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
20610 (note the single quote surrounding the option).
20612 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
20613 @opindex finstrument-functions-exclude-function-list
20615 This is similar to @code{-finstrument-functions-exclude-file-list},
20616 but this option sets the list of function names to be excluded from
20617 instrumentation.  The function name to be matched is its user-visible
20618 name, such as @code{vector<int> blah(const vector<int> &)}, not the
20619 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
20620 match is done on substrings: if the @var{sym} parameter is a substring
20621 of the function name, it is considered to be a match.  For C99 and C++
20622 extended identifiers, the function name must be given in UTF-8, not
20623 using universal character names.
20625 @item -fstack-check
20626 @opindex fstack-check
20627 Generate code to verify that you do not go beyond the boundary of the
20628 stack.  You should specify this flag if you are running in an
20629 environment with multiple threads, but you only rarely need to specify it in
20630 a single-threaded environment since stack overflow is automatically
20631 detected on nearly all systems if there is only one stack.
20633 Note that this switch does not actually cause checking to be done; the
20634 operating system or the language runtime must do that.  The switch causes
20635 generation of code to ensure that they see the stack being extended.
20637 You can additionally specify a string parameter: @code{no} means no
20638 checking, @code{generic} means force the use of old-style checking,
20639 @code{specific} means use the best checking method and is equivalent
20640 to bare @option{-fstack-check}.
20642 Old-style checking is a generic mechanism that requires no specific
20643 target support in the compiler but comes with the following drawbacks:
20645 @enumerate
20646 @item
20647 Modified allocation strategy for large objects: they are always
20648 allocated dynamically if their size exceeds a fixed threshold.
20650 @item
20651 Fixed limit on the size of the static frame of functions: when it is
20652 topped by a particular function, stack checking is not reliable and
20653 a warning is issued by the compiler.
20655 @item
20656 Inefficiency: because of both the modified allocation strategy and the
20657 generic implementation, code performance is hampered.
20658 @end enumerate
20660 Note that old-style stack checking is also the fallback method for
20661 @code{specific} if no target support has been added in the compiler.
20663 @item -fstack-limit-register=@var{reg}
20664 @itemx -fstack-limit-symbol=@var{sym}
20665 @itemx -fno-stack-limit
20666 @opindex fstack-limit-register
20667 @opindex fstack-limit-symbol
20668 @opindex fno-stack-limit
20669 Generate code to ensure that the stack does not grow beyond a certain value,
20670 either the value of a register or the address of a symbol.  If a larger
20671 stack is required, a signal is raised at run time.  For most targets,
20672 the signal is raised before the stack overruns the boundary, so
20673 it is possible to catch the signal without taking special precautions.
20675 For instance, if the stack starts at absolute address @samp{0x80000000}
20676 and grows downwards, you can use the flags
20677 @option{-fstack-limit-symbol=__stack_limit} and
20678 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
20679 of 128KB@.  Note that this may only work with the GNU linker.
20681 @item -fsplit-stack
20682 @opindex fsplit-stack
20683 Generate code to automatically split the stack before it overflows.
20684 The resulting program has a discontiguous stack which can only
20685 overflow if the program is unable to allocate any more memory.  This
20686 is most useful when running threaded programs, as it is no longer
20687 necessary to calculate a good stack size to use for each thread.  This
20688 is currently only implemented for the i386 and x86_64 back ends running
20689 GNU/Linux.
20691 When code compiled with @option{-fsplit-stack} calls code compiled
20692 without @option{-fsplit-stack}, there may not be much stack space
20693 available for the latter code to run.  If compiling all code,
20694 including library code, with @option{-fsplit-stack} is not an option,
20695 then the linker can fix up these calls so that the code compiled
20696 without @option{-fsplit-stack} always has a large stack.  Support for
20697 this is implemented in the gold linker in GNU binutils release 2.21
20698 and later.
20700 @item -fleading-underscore
20701 @opindex fleading-underscore
20702 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
20703 change the way C symbols are represented in the object file.  One use
20704 is to help link with legacy assembly code.
20706 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
20707 generate code that is not binary compatible with code generated without that
20708 switch.  Use it to conform to a non-default application binary interface.
20709 Not all targets provide complete support for this switch.
20711 @item -ftls-model=@var{model}
20712 @opindex ftls-model
20713 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
20714 The @var{model} argument should be one of @code{global-dynamic},
20715 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
20717 The default without @option{-fpic} is @code{initial-exec}; with
20718 @option{-fpic} the default is @code{global-dynamic}.
20720 @item -fvisibility=@var{default|internal|hidden|protected}
20721 @opindex fvisibility
20722 Set the default ELF image symbol visibility to the specified option---all
20723 symbols are marked with this unless overridden within the code.
20724 Using this feature can very substantially improve linking and
20725 load times of shared object libraries, produce more optimized
20726 code, provide near-perfect API export and prevent symbol clashes.
20727 It is @strong{strongly} recommended that you use this in any shared objects
20728 you distribute.
20730 Despite the nomenclature, @code{default} always means public; i.e.,
20731 available to be linked against from outside the shared object.
20732 @code{protected} and @code{internal} are pretty useless in real-world
20733 usage so the only other commonly used option is @code{hidden}.
20734 The default if @option{-fvisibility} isn't specified is
20735 @code{default}, i.e., make every
20736 symbol public---this causes the same behavior as previous versions of
20737 GCC@.
20739 A good explanation of the benefits offered by ensuring ELF
20740 symbols have the correct visibility is given by ``How To Write
20741 Shared Libraries'' by Ulrich Drepper (which can be found at
20742 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
20743 solution made possible by this option to marking things hidden when
20744 the default is public is to make the default hidden and mark things
20745 public.  This is the norm with DLLs on Windows and with @option{-fvisibility=hidden}
20746 and @code{__attribute__ ((visibility("default")))} instead of
20747 @code{__declspec(dllexport)} you get almost identical semantics with
20748 identical syntax.  This is a great boon to those working with
20749 cross-platform projects.
20751 For those adding visibility support to existing code, you may find
20752 @samp{#pragma GCC visibility} of use.  This works by you enclosing
20753 the declarations you wish to set visibility for with (for example)
20754 @samp{#pragma GCC visibility push(hidden)} and
20755 @samp{#pragma GCC visibility pop}.
20756 Bear in mind that symbol visibility should be viewed @strong{as
20757 part of the API interface contract} and thus all new code should
20758 always specify visibility when it is not the default; i.e., declarations
20759 only for use within the local DSO should @strong{always} be marked explicitly
20760 as hidden as so to avoid PLT indirection overheads---making this
20761 abundantly clear also aids readability and self-documentation of the code.
20762 Note that due to ISO C++ specification requirements, @code{operator new} and
20763 @code{operator delete} must always be of default visibility.
20765 Be aware that headers from outside your project, in particular system
20766 headers and headers from any other library you use, may not be
20767 expecting to be compiled with visibility other than the default.  You
20768 may need to explicitly say @samp{#pragma GCC visibility push(default)}
20769 before including any such headers.
20771 @samp{extern} declarations are not affected by @option{-fvisibility}, so
20772 a lot of code can be recompiled with @option{-fvisibility=hidden} with
20773 no modifications.  However, this means that calls to @code{extern}
20774 functions with no explicit visibility use the PLT, so it is more
20775 effective to use @code{__attribute ((visibility))} and/or
20776 @code{#pragma GCC visibility} to tell the compiler which @code{extern}
20777 declarations should be treated as hidden.
20779 Note that @option{-fvisibility} does affect C++ vague linkage
20780 entities. This means that, for instance, an exception class that is
20781 be thrown between DSOs must be explicitly marked with default
20782 visibility so that the @samp{type_info} nodes are unified between
20783 the DSOs.
20785 An overview of these techniques, their benefits and how to use them
20786 is at @uref{http://gcc.gnu.org/@/wiki/@/Visibility}.
20788 @item -fstrict-volatile-bitfields
20789 @opindex fstrict-volatile-bitfields
20790 This option should be used if accesses to volatile bit-fields (or other
20791 structure fields, although the compiler usually honors those types
20792 anyway) should use a single access of the width of the
20793 field's type, aligned to a natural alignment if possible.  For
20794 example, targets with memory-mapped peripheral registers might require
20795 all such accesses to be 16 bits wide; with this flag you can
20796 declare all peripheral bit-fields as @code{unsigned short} (assuming short
20797 is 16 bits on these targets) to force GCC to use 16-bit accesses
20798 instead of, perhaps, a more efficient 32-bit access.
20800 If this option is disabled, the compiler uses the most efficient
20801 instruction.  In the previous example, that might be a 32-bit load
20802 instruction, even though that accesses bytes that do not contain
20803 any portion of the bit-field, or memory-mapped registers unrelated to
20804 the one being updated.
20806 If the target requires strict alignment, and honoring the field
20807 type would require violating this alignment, a warning is issued.
20808 If the field has @code{packed} attribute, the access is done without
20809 honoring the field type.  If the field doesn't have @code{packed}
20810 attribute, the access is done honoring the field type.  In both cases,
20811 GCC assumes that the user knows something about the target hardware
20812 that it is unaware of.
20814 The default value of this option is determined by the application binary
20815 interface for the target processor.
20817 @item -fsync-libcalls
20818 @opindex fsync-libcalls
20819 This option controls whether any out-of-line instance of the @code{__sync}
20820 family of functions may be used to implement the C++11 @code{__atomic}
20821 family of functions.
20823 The default value of this option is enabled, thus the only useful form
20824 of the option is @option{-fno-sync-libcalls}.  This option is used in
20825 the implementation of the @file{libatomic} runtime library.
20827 @end table
20829 @c man end
20831 @node Environment Variables
20832 @section Environment Variables Affecting GCC
20833 @cindex environment variables
20835 @c man begin ENVIRONMENT
20836 This section describes several environment variables that affect how GCC
20837 operates.  Some of them work by specifying directories or prefixes to use
20838 when searching for various kinds of files.  Some are used to specify other
20839 aspects of the compilation environment.
20841 Note that you can also specify places to search using options such as
20842 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
20843 take precedence over places specified using environment variables, which
20844 in turn take precedence over those specified by the configuration of GCC@.
20845 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
20846 GNU Compiler Collection (GCC) Internals}.
20848 @table @env
20849 @item LANG
20850 @itemx LC_CTYPE
20851 @c @itemx LC_COLLATE
20852 @itemx LC_MESSAGES
20853 @c @itemx LC_MONETARY
20854 @c @itemx LC_NUMERIC
20855 @c @itemx LC_TIME
20856 @itemx LC_ALL
20857 @findex LANG
20858 @findex LC_CTYPE
20859 @c @findex LC_COLLATE
20860 @findex LC_MESSAGES
20861 @c @findex LC_MONETARY
20862 @c @findex LC_NUMERIC
20863 @c @findex LC_TIME
20864 @findex LC_ALL
20865 @cindex locale
20866 These environment variables control the way that GCC uses
20867 localization information which allows GCC to work with different
20868 national conventions.  GCC inspects the locale categories
20869 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
20870 so.  These locale categories can be set to any value supported by your
20871 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
20872 Kingdom encoded in UTF-8.
20874 The @env{LC_CTYPE} environment variable specifies character
20875 classification.  GCC uses it to determine the character boundaries in
20876 a string; this is needed for some multibyte encodings that contain quote
20877 and escape characters that are otherwise interpreted as a string
20878 end or escape.
20880 The @env{LC_MESSAGES} environment variable specifies the language to
20881 use in diagnostic messages.
20883 If the @env{LC_ALL} environment variable is set, it overrides the value
20884 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
20885 and @env{LC_MESSAGES} default to the value of the @env{LANG}
20886 environment variable.  If none of these variables are set, GCC
20887 defaults to traditional C English behavior.
20889 @item TMPDIR
20890 @findex TMPDIR
20891 If @env{TMPDIR} is set, it specifies the directory to use for temporary
20892 files.  GCC uses temporary files to hold the output of one stage of
20893 compilation which is to be used as input to the next stage: for example,
20894 the output of the preprocessor, which is the input to the compiler
20895 proper.
20897 @item GCC_COMPARE_DEBUG
20898 @findex GCC_COMPARE_DEBUG
20899 Setting @env{GCC_COMPARE_DEBUG} is nearly equivalent to passing
20900 @option{-fcompare-debug} to the compiler driver.  See the documentation
20901 of this option for more details.
20903 @item GCC_EXEC_PREFIX
20904 @findex GCC_EXEC_PREFIX
20905 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
20906 names of the subprograms executed by the compiler.  No slash is added
20907 when this prefix is combined with the name of a subprogram, but you can
20908 specify a prefix that ends with a slash if you wish.
20910 If @env{GCC_EXEC_PREFIX} is not set, GCC attempts to figure out
20911 an appropriate prefix to use based on the pathname it is invoked with.
20913 If GCC cannot find the subprogram using the specified prefix, it
20914 tries looking in the usual places for the subprogram.
20916 The default value of @env{GCC_EXEC_PREFIX} is
20917 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
20918 the installed compiler. In many cases @var{prefix} is the value
20919 of @code{prefix} when you ran the @file{configure} script.
20921 Other prefixes specified with @option{-B} take precedence over this prefix.
20923 This prefix is also used for finding files such as @file{crt0.o} that are
20924 used for linking.
20926 In addition, the prefix is used in an unusual way in finding the
20927 directories to search for header files.  For each of the standard
20928 directories whose name normally begins with @samp{/usr/local/lib/gcc}
20929 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
20930 replacing that beginning with the specified prefix to produce an
20931 alternate directory name.  Thus, with @option{-Bfoo/}, GCC searches
20932 @file{foo/bar} just before it searches the standard directory 
20933 @file{/usr/local/lib/bar}.
20934 If a standard directory begins with the configured
20935 @var{prefix} then the value of @var{prefix} is replaced by
20936 @env{GCC_EXEC_PREFIX} when looking for header files.
20938 @item COMPILER_PATH
20939 @findex COMPILER_PATH
20940 The value of @env{COMPILER_PATH} is a colon-separated list of
20941 directories, much like @env{PATH}.  GCC tries the directories thus
20942 specified when searching for subprograms, if it can't find the
20943 subprograms using @env{GCC_EXEC_PREFIX}.
20945 @item LIBRARY_PATH
20946 @findex LIBRARY_PATH
20947 The value of @env{LIBRARY_PATH} is a colon-separated list of
20948 directories, much like @env{PATH}.  When configured as a native compiler,
20949 GCC tries the directories thus specified when searching for special
20950 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
20951 using GCC also uses these directories when searching for ordinary
20952 libraries for the @option{-l} option (but directories specified with
20953 @option{-L} come first).
20955 @item LANG
20956 @findex LANG
20957 @cindex locale definition
20958 This variable is used to pass locale information to the compiler.  One way in
20959 which this information is used is to determine the character set to be used
20960 when character literals, string literals and comments are parsed in C and C++.
20961 When the compiler is configured to allow multibyte characters,
20962 the following values for @env{LANG} are recognized:
20964 @table @samp
20965 @item C-JIS
20966 Recognize JIS characters.
20967 @item C-SJIS
20968 Recognize SJIS characters.
20969 @item C-EUCJP
20970 Recognize EUCJP characters.
20971 @end table
20973 If @env{LANG} is not defined, or if it has some other value, then the
20974 compiler uses @code{mblen} and @code{mbtowc} as defined by the default locale to
20975 recognize and translate multibyte characters.
20976 @end table
20978 @noindent
20979 Some additional environment variables affect the behavior of the
20980 preprocessor.
20982 @include cppenv.texi
20984 @c man end
20986 @node Precompiled Headers
20987 @section Using Precompiled Headers
20988 @cindex precompiled headers
20989 @cindex speed of compilation
20991 Often large projects have many header files that are included in every
20992 source file.  The time the compiler takes to process these header files
20993 over and over again can account for nearly all of the time required to
20994 build the project.  To make builds faster, GCC allows you to
20995 @dfn{precompile} a header file.
20997 To create a precompiled header file, simply compile it as you would any
20998 other file, if necessary using the @option{-x} option to make the driver
20999 treat it as a C or C++ header file.  You may want to use a
21000 tool like @command{make} to keep the precompiled header up-to-date when
21001 the headers it contains change.
21003 A precompiled header file is searched for when @code{#include} is
21004 seen in the compilation.  As it searches for the included file
21005 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
21006 compiler looks for a precompiled header in each directory just before it
21007 looks for the include file in that directory.  The name searched for is
21008 the name specified in the @code{#include} with @samp{.gch} appended.  If
21009 the precompiled header file can't be used, it is ignored.
21011 For instance, if you have @code{#include "all.h"}, and you have
21012 @file{all.h.gch} in the same directory as @file{all.h}, then the
21013 precompiled header file is used if possible, and the original
21014 header is used otherwise.
21016 Alternatively, you might decide to put the precompiled header file in a
21017 directory and use @option{-I} to ensure that directory is searched
21018 before (or instead of) the directory containing the original header.
21019 Then, if you want to check that the precompiled header file is always
21020 used, you can put a file of the same name as the original header in this
21021 directory containing an @code{#error} command.
21023 This also works with @option{-include}.  So yet another way to use
21024 precompiled headers, good for projects not designed with precompiled
21025 header files in mind, is to simply take most of the header files used by
21026 a project, include them from another header file, precompile that header
21027 file, and @option{-include} the precompiled header.  If the header files
21028 have guards against multiple inclusion, they are skipped because
21029 they've already been included (in the precompiled header).
21031 If you need to precompile the same header file for different
21032 languages, targets, or compiler options, you can instead make a
21033 @emph{directory} named like @file{all.h.gch}, and put each precompiled
21034 header in the directory, perhaps using @option{-o}.  It doesn't matter
21035 what you call the files in the directory; every precompiled header in
21036 the directory is considered.  The first precompiled header
21037 encountered in the directory that is valid for this compilation is
21038 used; they're searched in no particular order.
21040 There are many other possibilities, limited only by your imagination,
21041 good sense, and the constraints of your build system.
21043 A precompiled header file can be used only when these conditions apply:
21045 @itemize
21046 @item
21047 Only one precompiled header can be used in a particular compilation.
21049 @item
21050 A precompiled header can't be used once the first C token is seen.  You
21051 can have preprocessor directives before a precompiled header; you cannot
21052 include a precompiled header from inside another header.
21054 @item
21055 The precompiled header file must be produced for the same language as
21056 the current compilation.  You can't use a C precompiled header for a C++
21057 compilation.
21059 @item
21060 The precompiled header file must have been produced by the same compiler
21061 binary as the current compilation is using.
21063 @item
21064 Any macros defined before the precompiled header is included must
21065 either be defined in the same way as when the precompiled header was
21066 generated, or must not affect the precompiled header, which usually
21067 means that they don't appear in the precompiled header at all.
21069 The @option{-D} option is one way to define a macro before a
21070 precompiled header is included; using a @code{#define} can also do it.
21071 There are also some options that define macros implicitly, like
21072 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
21073 defined this way.
21075 @item If debugging information is output when using the precompiled
21076 header, using @option{-g} or similar, the same kind of debugging information
21077 must have been output when building the precompiled header.  However,
21078 a precompiled header built using @option{-g} can be used in a compilation
21079 when no debugging information is being output.
21081 @item The same @option{-m} options must generally be used when building
21082 and using the precompiled header.  @xref{Submodel Options},
21083 for any cases where this rule is relaxed.
21085 @item Each of the following options must be the same when building and using
21086 the precompiled header:
21088 @gccoptlist{-fexceptions}
21090 @item
21091 Some other command-line options starting with @option{-f},
21092 @option{-p}, or @option{-O} must be defined in the same way as when
21093 the precompiled header was generated.  At present, it's not clear
21094 which options are safe to change and which are not; the safest choice
21095 is to use exactly the same options when generating and using the
21096 precompiled header.  The following are known to be safe:
21098 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
21099 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
21100 -fsched-verbose=@var{number}  -fschedule-insns  -fvisibility= @gol
21101 -pedantic-errors}
21103 @end itemize
21105 For all of these except the last, the compiler automatically
21106 ignores the precompiled header if the conditions aren't met.  If you
21107 find an option combination that doesn't work and doesn't cause the
21108 precompiled header to be ignored, please consider filing a bug report,
21109 see @ref{Bugs}.
21111 If you do use differing options when generating and using the
21112 precompiled header, the actual behavior is a mixture of the
21113 behavior for the options.  For instance, if you use @option{-g} to
21114 generate the precompiled header but not when using it, you may or may
21115 not get debugging information for routines in the precompiled header.