OSDN Git Service

2011-05-08 Jonathan Wakely <jwakely.gcc@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / doc / invoke.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2 @c 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
6
7 @ignore
8 @c man begin INCLUDE
9 @include gcc-vers.texi
10 @c man end
11
12 @c man begin COPYRIGHT
13 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
14 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
15 Free Software Foundation, Inc.
16
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.3 or
19 any later version published by the Free Software Foundation; with the
20 Invariant Sections being ``GNU General Public License'' and ``Funding
21 Free Software'', the Front-Cover texts being (a) (see below), and with
22 the Back-Cover Texts being (b) (see below).  A copy of the license is
23 included in the gfdl(7) man page.
24
25 (a) The FSF's Front-Cover Text is:
26
27      A GNU Manual
28
29 (b) The FSF's Back-Cover Text is:
30
31      You have freedom to copy and modify this GNU Manual, like GNU
32      software.  Copies published by the Free Software Foundation raise
33      funds for GNU development.
34 @c man end
35 @c Set file name and title for the man page.
36 @setfilename gcc
37 @settitle GNU project C and C++ compiler
38 @c man begin SYNOPSIS
39 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
40     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
41     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
42     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
43     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
44     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
45     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
46
47 Only the most useful options are listed here; see below for the
48 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
49 @c man end
50 @c man begin SEEALSO
51 gpl(7), gfdl(7), fsf-funding(7),
52 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
53 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
54 @file{ld}, @file{binutils} and @file{gdb}.
55 @c man end
56 @c man begin BUGS
57 For instructions on reporting bugs, see
58 @w{@value{BUGURL}}.
59 @c man end
60 @c man begin AUTHOR
61 See the Info entry for @command{gcc}, or
62 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
63 for contributors to GCC@.
64 @c man end
65 @end ignore
66
67 @node Invoking GCC
68 @chapter GCC Command Options
69 @cindex GCC command options
70 @cindex command options
71 @cindex options, GCC command
72
73 @c man begin DESCRIPTION
74 When you invoke GCC, it normally does preprocessing, compilation,
75 assembly and linking.  The ``overall options'' allow you to stop this
76 process at an intermediate stage.  For example, the @option{-c} option
77 says not to run the linker.  Then the output consists of object files
78 output by the assembler.
79
80 Other options are passed on to one stage of processing.  Some options
81 control the preprocessor and others the compiler itself.  Yet other
82 options control the assembler and linker; most of these are not
83 documented here, since you rarely need to use any of them.
84
85 @cindex C compilation options
86 Most of the command line options that you can use with GCC are useful
87 for C programs; when an option is only useful with another language
88 (usually C++), the explanation says so explicitly.  If the description
89 for a particular option does not mention a source language, you can use
90 that option with all supported languages.
91
92 @cindex C++ compilation options
93 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
94 options for compiling C++ programs.
95
96 @cindex grouping options
97 @cindex options, grouping
98 The @command{gcc} program accepts options and file names as operands.  Many
99 options have multi-letter names; therefore multiple single-letter options
100 may @emph{not} be grouped: @option{-dv} is very different from @w{@samp{-d
101 -v}}.
102
103 @cindex order of options
104 @cindex options, order
105 You can mix options and other arguments.  For the most part, the order
106 you use doesn't matter.  Order does matter when you use several
107 options of the same kind; for example, if you specify @option{-L} more
108 than once, the directories are searched in the order specified.  Also,
109 the placement of the @option{-l} option is significant.
110
111 Many options have long names starting with @samp{-f} or with
112 @samp{-W}---for example,
113 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
114 these have both positive and negative forms; the negative form of
115 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
116 only one of these two forms, whichever one is not the default.
117
118 @c man end
119
120 @xref{Option Index}, for an index to GCC's options.
121
122 @menu
123 * Option Summary::      Brief list of all options, without explanations.
124 * Overall Options::     Controlling the kind of output:
125                         an executable, object files, assembler files,
126                         or preprocessed source.
127 * Invoking G++::        Compiling C++ programs.
128 * C Dialect Options::   Controlling the variant of C language compiled.
129 * C++ Dialect Options:: Variations on C++.
130 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
131                         and Objective-C++.
132 * Language Independent Options:: Controlling how diagnostics should be
133                         formatted.
134 * Warning Options::     How picky should the compiler be?
135 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
136 * Optimize Options::    How much optimization?
137 * Preprocessor Options:: Controlling header files and macro definitions.
138                          Also, getting dependency information for Make.
139 * Assembler Options::   Passing options to the assembler.
140 * Link Options::        Specifying libraries and so on.
141 * Directory Options::   Where to find header files and libraries.
142                         Where to find the compiler executable files.
143 * Spec Files::          How to pass switches to sub-processes.
144 * Target Options::      Running a cross-compiler, or an old version of GCC.
145 * Submodel Options::    Specifying minor hardware or convention variations,
146                         such as 68010 vs 68020.
147 * Code Gen Options::    Specifying conventions for function calls, data layout
148                         and register usage.
149 * Environment Variables:: Env vars that affect GCC.
150 * Precompiled Headers:: Compiling a header once, and using it many times.
151 @end menu
152
153 @c man begin OPTIONS
154
155 @node Option Summary
156 @section Option Summary
157
158 Here is a summary of all the options, grouped by type.  Explanations are
159 in the following sections.
160
161 @table @emph
162 @item Overall Options
163 @xref{Overall Options,,Options Controlling the Kind of Output}.
164 @gccoptlist{-c  -S  -E  -o @var{file}  -no-canonical-prefixes  @gol
165 -pipe  -pass-exit-codes  @gol
166 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{[},@dots{}@r{]]}  --target-help  @gol
167 --version -wrapper @@@var{file} -fplugin=@var{file} -fplugin-arg-@var{name}=@var{arg}  @gol
168 -fdump-ada-spec@r{[}-slim@r{]} -fdump-go-spec=@var{file}}
169
170 @item C Language Options
171 @xref{C Dialect Options,,Options Controlling C Dialect}.
172 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
173 -aux-info @var{filename} @gol
174 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
175 -fhosted  -ffreestanding -fopenmp -fms-extensions -fplan9-extensions @gol
176 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
177 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
178 -fsigned-bitfields  -fsigned-char @gol
179 -funsigned-bitfields  -funsigned-char}
180
181 @item C++ Language Options
182 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
183 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
184 -fconserve-space  -fconstexpr-depth=@var{n}  -ffriend-injection @gol
185 -fno-elide-constructors @gol
186 -fno-enforce-eh-specs @gol
187 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
188 -fno-implicit-templates @gol
189 -fno-implicit-inline-templates @gol
190 -fno-implement-inlines  -fms-extensions @gol
191 -fno-nonansi-builtins  -fnothrow-opt  -fno-operator-names @gol
192 -fno-optional-diags  -fpermissive @gol
193 -fno-pretty-templates @gol
194 -frepo  -fno-rtti  -fstats  -ftemplate-depth=@var{n} @gol
195 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
196 -fno-default-inline  -fvisibility-inlines-hidden @gol
197 -fvisibility-ms-compat @gol
198 -Wabi  -Wconversion-null  -Wctor-dtor-privacy @gol
199 -Wnoexcept -Wnon-virtual-dtor  -Wreorder @gol
200 -Weffc++  -Wstrict-null-sentinel @gol
201 -Wno-non-template-friend  -Wold-style-cast @gol
202 -Woverloaded-virtual  -Wno-pmf-conversions @gol
203 -Wsign-promo}
204
205 @item Objective-C and Objective-C++ Language Options
206 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
207 Objective-C and Objective-C++ Dialects}.
208 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
209 -fgnu-runtime  -fnext-runtime @gol
210 -fno-nil-receivers @gol
211 -fobjc-abi-version=@var{n} @gol
212 -fobjc-call-cxx-cdtors @gol
213 -fobjc-direct-dispatch @gol
214 -fobjc-exceptions @gol
215 -fobjc-gc @gol
216 -fobjc-nilcheck @gol
217 -fobjc-std=objc1 @gol
218 -freplace-objc-classes @gol
219 -fzero-link @gol
220 -gen-decls @gol
221 -Wassign-intercept @gol
222 -Wno-protocol  -Wselector @gol
223 -Wstrict-selector-match @gol
224 -Wundeclared-selector}
225
226 @item Language Independent Options
227 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
228 @gccoptlist{-fmessage-length=@var{n}  @gol
229 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
230 -fno-diagnostics-show-option}
231
232 @item Warning Options
233 @xref{Warning Options,,Options to Request or Suppress Warnings}.
234 @gccoptlist{-fsyntax-only  -fmax-errors=@var{n}  -pedantic @gol
235 -pedantic-errors @gol
236 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  -Warray-bounds @gol
237 -Wno-attributes -Wno-builtin-macro-redefined @gol
238 -Wc++-compat -Wc++0x-compat -Wcast-align  -Wcast-qual  @gol
239 -Wchar-subscripts -Wclobbered  -Wcomment @gol
240 -Wconversion  -Wcoverage-mismatch  -Wno-cpp  -Wno-deprecated  @gol
241 -Wno-deprecated-declarations -Wdisabled-optimization  @gol
242 -Wno-div-by-zero -Wdouble-promotion -Wempty-body  -Wenum-compare @gol
243 -Wno-endif-labels -Werror  -Werror=* @gol
244 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
245 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
246 -Wformat-security  -Wformat-y2k @gol
247 -Wframe-larger-than=@var{len} -Wjump-misses-init -Wignored-qualifiers @gol
248 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
249 -Winit-self  -Winline -Wmaybe-uninitialized @gol
250 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
251 -Winvalid-pch -Wlarger-than=@var{len}  -Wunsafe-loop-optimizations @gol
252 -Wlogical-op -Wlong-long @gol
253 -Wmain -Wmaybe-uninitialized -Wmissing-braces  -Wmissing-field-initializers @gol
254 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
255 -Wno-mudflap @gol
256 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
257 -Woverlength-strings  -Wpacked  -Wpacked-bitfield-compat  -Wpadded @gol
258 -Wparentheses  -Wpedantic-ms-format -Wno-pedantic-ms-format @gol
259 -Wpointer-arith  -Wno-pointer-to-int-cast @gol
260 -Wredundant-decls @gol
261 -Wreturn-type  -Wsequence-point  -Wshadow @gol
262 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
263 -Wstrict-aliasing -Wstrict-aliasing=n @gol
264 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
265 -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{]} @gol
266 -Wswitch  -Wswitch-default  -Wswitch-enum -Wsync-nand @gol
267 -Wsystem-headers  -Wtrampolines  -Wtrigraphs  -Wtype-limits  -Wundef @gol
268 -Wuninitialized  -Wunknown-pragmas  -Wno-pragmas @gol
269 -Wunsuffixed-float-constants  -Wunused  -Wunused-function @gol
270 -Wunused-label  -Wunused-parameter -Wno-unused-result -Wunused-value @gol
271 -Wunused-variable -Wunused-but-set-parameter -Wunused-but-set-variable @gol
272 -Wvariadic-macros -Wvla -Wvolatile-register-var  -Wwrite-strings}
273
274 @item C and Objective-C-only Warning Options
275 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
276 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
277 -Wold-style-declaration  -Wold-style-definition @gol
278 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
279 -Wdeclaration-after-statement -Wpointer-sign}
280
281 @item Debugging Options
282 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
283 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
284 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
285 -fdump-noaddr -fdump-unnumbered -fdump-unnumbered-links @gol
286 -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
287 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
288 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
289 -fdump-statistics @gol
290 -fdump-tree-all @gol
291 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
292 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
293 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
294 -fdump-tree-ch @gol
295 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
296 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
298 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
299 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
300 -fdump-tree-phiprop@r{[}-@var{n}@r{]} @gol
301 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
302 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
303 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
304 -fdump-tree-nrv -fdump-tree-vect @gol
305 -fdump-tree-sink @gol
306 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
307 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
308 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
309 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
310 -ftree-vectorizer-verbose=@var{n} @gol
311 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
312 -fdump-final-insns=@var{file} @gol
313 -fcompare-debug@r{[}=@var{opts}@r{]}  -fcompare-debug-second @gol
314 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
315 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
316 -fdebug-types-section @gol
317 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
318 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
319 -fsel-sched-verbose -fsel-sched-dump-cfg -fsel-sched-pipelining-verbose @gol
320 -fstack-usage  -ftest-coverage  -ftime-report -fvar-tracking @gol
321 -fvar-tracking-assignments  -fvar-tracking-assignments-toggle @gol
322 -g  -g@var{level}  -gtoggle  -gcoff  -gdwarf-@var{version} @gol
323 -ggdb  -gstabs  -gstabs+  -gstrict-dwarf  -gno-strict-dwarf @gol
324 -gvms  -gxcoff  -gxcoff+ @gol
325 -fno-merge-debug-strings -fno-dwarf2-cfi-asm @gol
326 -fdebug-prefix-map=@var{old}=@var{new} @gol
327 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
328 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
329 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
330 -print-multi-directory  -print-multi-lib  -print-multi-os-directory @gol
331 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
332 -print-sysroot -print-sysroot-headers-suffix @gol
333 -save-temps -save-temps=cwd -save-temps=obj -time@r{[}=@var{file}@r{]}}
334
335 @item Optimization Options
336 @xref{Optimize Options,,Options that Control Optimization}.
337 @gccoptlist{-falign-functions[=@var{n}] -falign-jumps[=@var{n}] @gol
338 -falign-labels[=@var{n}] -falign-loops[=@var{n}] -fassociative-math @gol
339 -fauto-inc-dec -fbranch-probabilities -fbranch-target-load-optimize @gol
340 -fbranch-target-load-optimize2 -fbtr-bb-exclusive -fcaller-saves @gol
341 -fcheck-data-deps -fcombine-stack-adjustments -fconserve-stack @gol
342 -fcompare-elim -fcprop-registers -fcrossjumping @gol
343 -fcse-follow-jumps -fcse-skip-blocks -fcx-fortran-rules @gol
344 -fcx-limited-range @gol
345 -fdata-sections -fdce -fdce -fdelayed-branch @gol
346 -fdelete-null-pointer-checks -fdse -fdevirtualize -fdse @gol
347 -fearly-inlining -fipa-sra -fexpensive-optimizations -ffast-math @gol
348 -ffinite-math-only -ffloat-store -fexcess-precision=@var{style} @gol
349 -fforward-propagate -ffp-contract=@var{style} -ffunction-sections @gol
350 -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm -fgraphite-identity @gol
351 -fgcse-sm -fif-conversion -fif-conversion2 -findirect-inlining @gol
352 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
353 -finline-small-functions -fipa-cp -fipa-cp-clone -fipa-matrix-reorg @gol
354 -fipa-pta -fipa-profile -fipa-pure-const -fipa-reference @gol
355 -fira-algorithm=@var{algorithm} @gol
356 -fira-region=@var{region} @gol
357 -fira-loop-pressure -fno-ira-share-save-slots @gol
358 -fno-ira-share-spill-slots -fira-verbose=@var{n} @gol
359 -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
360 -floop-block -floop-flatten -floop-interchange -floop-strip-mine @gol
361 -floop-parallelize-all -flto -flto-compression-level @gol
362 -flto-partition=@var{alg} -flto-report -fmerge-all-constants @gol
363 -fmerge-constants -fmodulo-sched -fmodulo-sched-allow-regmoves @gol
364 -fmove-loop-invariants fmudflap -fmudflapir -fmudflapth -fno-branch-count-reg @gol
365 -fno-default-inline @gol
366 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
367 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
368 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
369 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
370 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
371 -fpartial-inlining -fpeel-loops -fpredictive-commoning @gol
372 -fprefetch-loop-arrays @gol
373 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
374 -fprofile-generate=@var{path} @gol
375 -fprofile-use -fprofile-use=@var{path} -fprofile-values @gol
376 -freciprocal-math -fregmove -frename-registers -freorder-blocks @gol
377 -freorder-blocks-and-partition -freorder-functions @gol
378 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
379 -frounding-math -fsched2-use-superblocks -fsched-pressure @gol
380 -fsched-spec-load -fsched-spec-load-dangerous @gol
381 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
382 -fsched-group-heuristic -fsched-critical-path-heuristic @gol
383 -fsched-spec-insn-heuristic -fsched-rank-heuristic @gol
384 -fsched-last-insn-heuristic -fsched-dep-count-heuristic @gol
385 -fschedule-insns -fschedule-insns2 -fsection-anchors @gol
386 -fselective-scheduling -fselective-scheduling2 @gol
387 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops @gol
388 -fsignaling-nans -fsingle-precision-constant -fsplit-ivs-in-unroller @gol
389 -fsplit-wide-types -fstack-protector -fstack-protector-all @gol
390 -fstrict-aliasing -fstrict-overflow -fthread-jumps -ftracer @gol
391 -ftree-bit-ccp @gol
392 -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copy-prop @gol
393 -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse @gol
394 -ftree-forwprop -ftree-fre -ftree-loop-if-convert @gol
395 -ftree-loop-if-convert-stores -ftree-loop-im @gol
396 -ftree-phiprop -ftree-loop-distribution -ftree-loop-distribute-patterns @gol
397 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
398 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-pta -ftree-reassoc @gol
399 -ftree-sink -ftree-sra -ftree-switch-conversion @gol
400 -ftree-ter -ftree-vect-loop-version -ftree-vectorize -ftree-vrp @gol
401 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
402 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
403 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
404 -fwhole-program -fwpa -fuse-linker-plugin @gol
405 --param @var{name}=@var{value}
406 -O  -O0  -O1  -O2  -O3  -Os -Ofast}
407
408 @item Preprocessor Options
409 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
410 @gccoptlist{-A@var{question}=@var{answer} @gol
411 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
412 -C  -dD  -dI  -dM  -dN @gol
413 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
414 -idirafter @var{dir} @gol
415 -include @var{file}  -imacros @var{file} @gol
416 -iprefix @var{file}  -iwithprefix @var{dir} @gol
417 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
418 -imultilib @var{dir} -isysroot @var{dir} @gol
419 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
420 -P  -fworking-directory  -remap @gol
421 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
422 -Xpreprocessor @var{option}}
423
424 @item Assembler Option
425 @xref{Assembler Options,,Passing Options to the Assembler}.
426 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
427
428 @item Linker Options
429 @xref{Link Options,,Options for Linking}.
430 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
431 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
432 -s  -static  -static-libgcc  -static-libstdc++ -shared  @gol
433 -shared-libgcc  -symbolic @gol
434 -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
435 -u @var{symbol}}
436
437 @item Directory Options
438 @xref{Directory Options,,Options for Directory Search}.
439 @gccoptlist{-B@var{prefix} -I@var{dir} -iplugindir=@var{dir} @gol
440 -iquote@var{dir} -L@var{dir} -specs=@var{file} -I- @gol
441 --sysroot=@var{dir}}
442
443 @item Machine Dependent Options
444 @xref{Submodel Options,,Hardware Models and Configurations}.
445 @c This list is ordered alphanumerically by subsection name.
446 @c Try and put the significant identifier (CPU or system) first,
447 @c so users have a clue at guessing where the ones they want will be.
448
449 @emph{ARM Options}
450 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
451 -mabi=@var{name} @gol
452 -mapcs-stack-check  -mno-apcs-stack-check @gol
453 -mapcs-float  -mno-apcs-float @gol
454 -mapcs-reentrant  -mno-apcs-reentrant @gol
455 -msched-prolog  -mno-sched-prolog @gol
456 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
457 -mfloat-abi=@var{name}  -mfpe @gol
458 -mfp16-format=@var{name}
459 -mthumb-interwork  -mno-thumb-interwork @gol
460 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
461 -mstructure-size-boundary=@var{n} @gol
462 -mabort-on-noreturn @gol
463 -mlong-calls  -mno-long-calls @gol
464 -msingle-pic-base  -mno-single-pic-base @gol
465 -mpic-register=@var{reg} @gol
466 -mnop-fun-dllimport @gol
467 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
468 -mpoke-function-name @gol
469 -mthumb  -marm @gol
470 -mtpcs-frame  -mtpcs-leaf-frame @gol
471 -mcaller-super-interworking  -mcallee-super-interworking @gol
472 -mtp=@var{name} @gol
473 -mword-relocations @gol
474 -mfix-cortex-m3-ldrd}
475
476 @emph{AVR Options}
477 @gccoptlist{-mmcu=@var{mcu}  -mno-interrupts @gol
478 -mcall-prologues  -mtiny-stack  -mint8}
479
480 @emph{Blackfin Options}
481 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
482 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
483 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
484 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
485 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
486 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
487 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
488 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram @gol
489 -micplb}
490
491 @emph{CRIS Options}
492 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
493 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
494 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
495 -mstack-align  -mdata-align  -mconst-align @gol
496 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
497 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
498 -mmul-bug-workaround  -mno-mul-bug-workaround}
499
500 @emph{Darwin Options}
501 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
502 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
503 -client_name  -compatibility_version  -current_version @gol
504 -dead_strip @gol
505 -dependency-file  -dylib_file  -dylinker_install_name @gol
506 -dynamic  -dynamiclib  -exported_symbols_list @gol
507 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
508 -force_flat_namespace  -headerpad_max_install_names @gol
509 -iframework @gol
510 -image_base  -init  -install_name  -keep_private_externs @gol
511 -multi_module  -multiply_defined  -multiply_defined_unused @gol
512 -noall_load   -no_dead_strip_inits_and_terms @gol
513 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
514 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
515 -private_bundle  -read_only_relocs  -sectalign @gol
516 -sectobjectsymbols  -whyload  -seg1addr @gol
517 -sectcreate  -sectobjectsymbols  -sectorder @gol
518 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
519 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
520 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
521 -single_module  -static  -sub_library  -sub_umbrella @gol
522 -twolevel_namespace  -umbrella  -undefined @gol
523 -unexported_symbols_list  -weak_reference_mismatches @gol
524 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
525 -mkernel -mone-byte-bool}
526
527 @emph{DEC Alpha Options}
528 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
529 -mieee  -mieee-with-inexact  -mieee-conformant @gol
530 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
531 -mtrap-precision=@var{mode}  -mbuild-constants @gol
532 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
533 -mbwx  -mmax  -mfix  -mcix @gol
534 -mfloat-vax  -mfloat-ieee @gol
535 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
536 -msmall-text  -mlarge-text @gol
537 -mmemory-latency=@var{time}}
538
539 @emph{DEC Alpha/VMS Options}
540 @gccoptlist{-mvms-return-codes -mdebug-main=@var{prefix} -mmalloc64}
541
542 @emph{FR30 Options}
543 @gccoptlist{-msmall-model -mno-lsim}
544
545 @emph{FRV Options}
546 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
547 -mhard-float  -msoft-float @gol
548 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
549 -mdouble  -mno-double @gol
550 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
551 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
552 -mlinked-fp  -mlong-calls  -malign-labels @gol
553 -mlibrary-pic  -macc-4  -macc-8 @gol
554 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
555 -moptimize-membar -mno-optimize-membar @gol
556 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
557 -mvliw-branch  -mno-vliw-branch @gol
558 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
559 -mno-nested-cond-exec  -mtomcat-stats @gol
560 -mTLS -mtls @gol
561 -mcpu=@var{cpu}}
562
563 @emph{GNU/Linux Options}
564 @gccoptlist{-mglibc -muclibc -mbionic -mandroid @gol
565 -tno-android-cc -tno-android-ld}
566
567 @emph{H8/300 Options}
568 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
569
570 @emph{HPPA Options}
571 @gccoptlist{-march=@var{architecture-type} @gol
572 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
573 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
574 -mfixed-range=@var{register-range} @gol
575 -mjump-in-delay -mlinker-opt -mlong-calls @gol
576 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
577 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
578 -mno-jump-in-delay  -mno-long-load-store @gol
579 -mno-portable-runtime  -mno-soft-float @gol
580 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
581 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
582 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
583 -munix=@var{unix-std}  -nolibdld  -static  -threads}
584
585 @emph{i386 and x86-64 Options}
586 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
587 -mfpmath=@var{unit} @gol
588 -masm=@var{dialect}  -mno-fancy-math-387 @gol
589 -mno-fp-ret-in-387  -msoft-float @gol
590 -mno-wide-multiply  -mrtd  -malign-double @gol
591 -mpreferred-stack-boundary=@var{num} @gol
592 -mincoming-stack-boundary=@var{num} @gol
593 -mcld -mcx16 -msahf -mmovbe -mcrc32 -mrecip -mvzeroupper @gol
594 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 -mavx @gol
595 -maes -mpclmul -mfsgsbase -mrdrnd -mf16c -mfused-madd @gol
596 -msse4a -m3dnow -mpopcnt -mabm -mbmi -mtbm -mfma4 -mxop -mlwp @gol
597 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
598 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
599 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
600 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
601 -mveclibabi=@var{type} -mvect8-ret-in-mem @gol
602 -mpc32 -mpc64 -mpc80 -mstackrealign @gol
603 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
604 -mcmodel=@var{code-model} -mabi=@var{name} @gol
605 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
606 -msse2avx -mfentry -m8bit-idiv @gol
607 -mavx256-split-unaligned-load -mavx256-split-unaligned-store}
608
609 @emph{i386 and x86-64 Windows Options}
610 @gccoptlist{-mconsole -mcygwin -mno-cygwin -mdll @gol
611 -mnop-fun-dllimport -mthread @gol
612 -municode -mwin32 -mwindows -fno-set-stack-executable}
613
614 @emph{IA-64 Options}
615 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
616 -mvolatile-asm-stop  -mregister-names  -msdata -mno-sdata @gol
617 -mconstant-gp  -mauto-pic  -mfused-madd @gol
618 -minline-float-divide-min-latency @gol
619 -minline-float-divide-max-throughput @gol
620 -mno-inline-float-divide @gol
621 -minline-int-divide-min-latency @gol
622 -minline-int-divide-max-throughput  @gol
623 -mno-inline-int-divide @gol
624 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
625 -mno-inline-sqrt @gol
626 -mdwarf2-asm -mearly-stop-bits @gol
627 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
628 -mtune=@var{cpu-type} -milp32 -mlp64 @gol
629 -msched-br-data-spec -msched-ar-data-spec -msched-control-spec @gol
630 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
631 -msched-spec-ldc -msched-spec-control-ldc @gol
632 -msched-prefer-non-data-spec-insns -msched-prefer-non-control-spec-insns @gol
633 -msched-stop-bits-after-every-cycle -msched-count-spec-in-critical-path @gol
634 -msel-sched-dont-check-control-spec -msched-fp-mem-deps-zero-cost @gol
635 -msched-max-memory-insns-hard-limit -msched-max-memory-insns=@var{max-insns}}
636
637 @emph{IA-64/VMS Options}
638 @gccoptlist{-mvms-return-codes -mdebug-main=@var{prefix} -mmalloc64}
639
640 @emph{LM32 Options}
641 @gccoptlist{-mbarrel-shift-enabled -mdivide-enabled -mmultiply-enabled @gol
642 -msign-extend-enabled -muser-enabled}
643
644 @emph{M32R/D Options}
645 @gccoptlist{-m32r2 -m32rx -m32r @gol
646 -mdebug @gol
647 -malign-loops -mno-align-loops @gol
648 -missue-rate=@var{number} @gol
649 -mbranch-cost=@var{number} @gol
650 -mmodel=@var{code-size-model-type} @gol
651 -msdata=@var{sdata-type} @gol
652 -mno-flush-func -mflush-func=@var{name} @gol
653 -mno-flush-trap -mflush-trap=@var{number} @gol
654 -G @var{num}}
655
656 @emph{M32C Options}
657 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
658
659 @emph{M680x0 Options}
660 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
661 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
662 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
663 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
664 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
665 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
666 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
667 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
668 -mxgot -mno-xgot}
669
670 @emph{MCore Options}
671 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
672 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
673 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
674 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
675 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
676
677 @emph{MeP Options}
678 @gccoptlist{-mabsdiff -mall-opts -maverage -mbased=@var{n} -mbitops @gol
679 -mc=@var{n} -mclip -mconfig=@var{name} -mcop -mcop32 -mcop64 -mivc2 @gol
680 -mdc -mdiv -meb -mel -mio-volatile -ml -mleadz -mm -mminmax @gol
681 -mmult -mno-opts -mrepeat -ms -msatur -msdram -msim -msimnovec -mtf @gol
682 -mtiny=@var{n}}
683
684 @emph{MicroBlaze Options}
685 @gccoptlist{-msoft-float -mhard-float -msmall-divides -mcpu=@var{cpu} @gol
686 -mmemcpy -mxl-soft-mul -mxl-soft-div -mxl-barrel-shift @gol
687 -mxl-pattern-compare -mxl-stack-check -mxl-gp-opt -mno-clearbss @gol
688 -mxl-multiply-high -mxl-float-convert -mxl-float-sqrt @gol
689 -mxl-mode-@var{app-model}}
690
691 @emph{MIPS Options}
692 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
693 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2 @gol
694 -mips64  -mips64r2 @gol
695 -mips16  -mno-mips16  -mflip-mips16 @gol
696 -minterlink-mips16  -mno-interlink-mips16 @gol
697 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
698 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
699 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
700 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
701 -mfpu=@var{fpu-type} @gol
702 -msmartmips  -mno-smartmips @gol
703 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
704 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
705 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
706 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
707 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
708 -membedded-data  -mno-embedded-data @gol
709 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
710 -mcode-readable=@var{setting} @gol
711 -msplit-addresses  -mno-split-addresses @gol
712 -mexplicit-relocs  -mno-explicit-relocs @gol
713 -mcheck-zero-division  -mno-check-zero-division @gol
714 -mdivide-traps  -mdivide-breaks @gol
715 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
716 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
717 -mfix-24k -mno-fix-24k @gol
718 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
719 -mfix-r10000 -mno-fix-r10000  -mfix-vr4120  -mno-fix-vr4120 @gol
720 -mfix-vr4130  -mno-fix-vr4130  -mfix-sb1  -mno-fix-sb1 @gol
721 -mflush-func=@var{func}  -mno-flush-func @gol
722 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
723 -mfp-exceptions -mno-fp-exceptions @gol
724 -mvr4130-align -mno-vr4130-align -msynci -mno-synci @gol
725 -mrelax-pic-calls -mno-relax-pic-calls -mmcount-ra-address}
726
727 @emph{MMIX Options}
728 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
729 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
730 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
731 -mno-base-addresses  -msingle-exit  -mno-single-exit}
732
733 @emph{MN10300 Options}
734 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
735 -mno-am33 -mam33 -mam33-2 -mam34 @gol
736 -mtune=@var{cpu-type} @gol
737 -mreturn-pointer-on-d0 @gol
738 -mno-crt0  -mrelax -mliw -msetlb}
739
740 @emph{PDP-11 Options}
741 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
742 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
743 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
744 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
745 -mbranch-expensive  -mbranch-cheap @gol
746 -munix-asm  -mdec-asm}
747
748 @emph{picoChip Options}
749 @gccoptlist{-mae=@var{ae_type} -mvliw-lookahead=@var{N} @gol
750 -msymbol-as-address -mno-inefficient-warnings}
751
752 @emph{PowerPC Options}
753 See RS/6000 and PowerPC Options.
754
755 @emph{RS/6000 and PowerPC Options}
756 @gccoptlist{-mcpu=@var{cpu-type} @gol
757 -mtune=@var{cpu-type} @gol
758 -mcmodel=@var{code-model} @gol
759 -mpower  -mno-power  -mpower2  -mno-power2 @gol
760 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
761 -maltivec  -mno-altivec @gol
762 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
763 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
764 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb -mpopcntd -mno-popcntd @gol
765 -mfprnd  -mno-fprnd @gol
766 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
767 -mnew-mnemonics  -mold-mnemonics @gol
768 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
769 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
770 -malign-power  -malign-natural @gol
771 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
772 -msingle-float -mdouble-float -msimple-fpu @gol
773 -mstring  -mno-string  -mupdate  -mno-update @gol
774 -mavoid-indexed-addresses  -mno-avoid-indexed-addresses @gol
775 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
776 -mstrict-align  -mno-strict-align  -mrelocatable @gol
777 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
778 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
779 -mdynamic-no-pic  -maltivec -mswdiv  -msingle-pic-base @gol
780 -mprioritize-restricted-insns=@var{priority} @gol
781 -msched-costly-dep=@var{dependence_type} @gol
782 -minsert-sched-nops=@var{scheme} @gol
783 -mcall-sysv  -mcall-netbsd @gol
784 -maix-struct-return  -msvr4-struct-return @gol
785 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
786 -mblock-move-inline-limit=@var{num} @gol
787 -misel -mno-isel @gol
788 -misel=yes  -misel=no @gol
789 -mspe -mno-spe @gol
790 -mspe=yes  -mspe=no @gol
791 -mpaired @gol
792 -mgen-cell-microcode -mwarn-cell-microcode @gol
793 -mvrsave -mno-vrsave @gol
794 -mmulhw -mno-mulhw @gol
795 -mdlmzb -mno-dlmzb @gol
796 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
797 -mprototype  -mno-prototype @gol
798 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
799 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread @gol
800 -mrecip -mrecip=@var{opt} -mno-recip -mrecip-precision @gol
801 -mno-recip-precision @gol
802 -mveclibabi=@var{type} -mfriz -mno-friz}
803
804 @emph{RX Options}
805 @gccoptlist{-m64bit-doubles  -m32bit-doubles  -fpu  -nofpu@gol
806 -mcpu=@gol
807 -mbig-endian-data -mlittle-endian-data @gol
808 -msmall-data @gol
809 -msim  -mno-sim@gol
810 -mas100-syntax -mno-as100-syntax@gol
811 -mrelax@gol
812 -mmax-constant-size=@gol
813 -mint-register=@gol
814 -msave-acc-in-interrupts}
815
816 @emph{S/390 and zSeries Options}
817 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
818 -mhard-float  -msoft-float  -mhard-dfp -mno-hard-dfp @gol
819 -mlong-double-64 -mlong-double-128 @gol
820 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
821 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
822 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
823 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
824 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
825
826 @emph{Score Options}
827 @gccoptlist{-meb -mel @gol
828 -mnhwloop @gol
829 -muls @gol
830 -mmac @gol
831 -mscore5 -mscore5u -mscore7 -mscore7d}
832
833 @emph{SH Options}
834 @gccoptlist{-m1  -m2  -m2e @gol
835 -m2a-nofpu -m2a-single-only -m2a-single -m2a @gol
836 -m3  -m3e @gol
837 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
838 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
839 -m5-64media  -m5-64media-nofpu @gol
840 -m5-32media  -m5-32media-nofpu @gol
841 -m5-compact  -m5-compact-nofpu @gol
842 -mb  -ml  -mdalign  -mrelax @gol
843 -mbigtable -mfmovd -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
844 -mieee  -mbitops  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
845 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
846 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
847 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
848 -maccumulate-outgoing-args -minvalid-symbols}
849
850 @emph{Solaris 2 Options}
851 @gccoptlist{-mimpure-text  -mno-impure-text @gol
852 -pthreads -pthread}
853
854 @emph{SPARC Options}
855 @gccoptlist{-mcpu=@var{cpu-type} @gol
856 -mtune=@var{cpu-type} @gol
857 -mcmodel=@var{code-model} @gol
858 -m32  -m64  -mapp-regs  -mno-app-regs @gol
859 -mfaster-structs  -mno-faster-structs @gol
860 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
861 -mhard-quad-float  -msoft-quad-float @gol
862 -mlittle-endian @gol
863 -mstack-bias  -mno-stack-bias @gol
864 -munaligned-doubles  -mno-unaligned-doubles @gol
865 -mv8plus  -mno-v8plus  -mvis  -mno-vis}
866
867 @emph{SPU Options}
868 @gccoptlist{-mwarn-reloc -merror-reloc @gol
869 -msafe-dma -munsafe-dma @gol
870 -mbranch-hints @gol
871 -msmall-mem -mlarge-mem -mstdmain @gol
872 -mfixed-range=@var{register-range} @gol
873 -mea32 -mea64 @gol
874 -maddress-space-conversion -mno-address-space-conversion @gol
875 -mcache-size=@var{cache-size} @gol
876 -matomic-updates -mno-atomic-updates}
877
878 @emph{System V Options}
879 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
880
881 @emph{V850 Options}
882 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
883 -mprolog-function  -mno-prolog-function  -mspace @gol
884 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
885 -mapp-regs  -mno-app-regs @gol
886 -mdisable-callt  -mno-disable-callt @gol
887 -mv850e2v3 @gol
888 -mv850e2 @gol
889 -mv850e1 -mv850es @gol
890 -mv850e @gol
891 -mv850  -mbig-switch}
892
893 @emph{VAX Options}
894 @gccoptlist{-mg  -mgnu  -munix}
895
896 @emph{VxWorks Options}
897 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
898 -Xbind-lazy  -Xbind-now}
899
900 @emph{x86-64 Options}
901 See i386 and x86-64 Options.
902
903 @emph{Xstormy16 Options}
904 @gccoptlist{-msim}
905
906 @emph{Xtensa Options}
907 @gccoptlist{-mconst16 -mno-const16 @gol
908 -mfused-madd  -mno-fused-madd @gol
909 -mforce-no-pic @gol
910 -mserialize-volatile  -mno-serialize-volatile @gol
911 -mtext-section-literals  -mno-text-section-literals @gol
912 -mtarget-align  -mno-target-align @gol
913 -mlongcalls  -mno-longcalls}
914
915 @emph{zSeries Options}
916 See S/390 and zSeries Options.
917
918 @item Code Generation Options
919 @xref{Code Gen Options,,Options for Code Generation Conventions}.
920 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
921 -ffixed-@var{reg}  -fexceptions @gol
922 -fnon-call-exceptions  -funwind-tables @gol
923 -fasynchronous-unwind-tables @gol
924 -finhibit-size-directive  -finstrument-functions @gol
925 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
926 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
927 -fno-common  -fno-ident @gol
928 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
929 -fno-jump-tables @gol
930 -frecord-gcc-switches @gol
931 -freg-struct-return  -fshort-enums @gol
932 -fshort-double  -fshort-wchar @gol
933 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
934 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
935 -fno-stack-limit -fsplit-stack @gol
936 -fleading-underscore  -ftls-model=@var{model} @gol
937 -ftrapv  -fwrapv  -fbounds-check @gol
938 -fvisibility -fstrict-volatile-bitfields}
939 @end table
940
941 @menu
942 * Overall Options::     Controlling the kind of output:
943                         an executable, object files, assembler files,
944                         or preprocessed source.
945 * C Dialect Options::   Controlling the variant of C language compiled.
946 * C++ Dialect Options:: Variations on C++.
947 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
948                         and Objective-C++.
949 * Language Independent Options:: Controlling how diagnostics should be
950                         formatted.
951 * Warning Options::     How picky should the compiler be?
952 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
953 * Optimize Options::    How much optimization?
954 * Preprocessor Options:: Controlling header files and macro definitions.
955                          Also, getting dependency information for Make.
956 * Assembler Options::   Passing options to the assembler.
957 * Link Options::        Specifying libraries and so on.
958 * Directory Options::   Where to find header files and libraries.
959                         Where to find the compiler executable files.
960 * Spec Files::          How to pass switches to sub-processes.
961 * Target Options::      Running a cross-compiler, or an old version of GCC.
962 @end menu
963
964 @node Overall Options
965 @section Options Controlling the Kind of Output
966
967 Compilation can involve up to four stages: preprocessing, compilation
968 proper, assembly and linking, always in that order.  GCC is capable of
969 preprocessing and compiling several files either into several
970 assembler input files, or into one assembler input file; then each
971 assembler input file produces an object file, and linking combines all
972 the object files (those newly compiled, and those specified as input)
973 into an executable file.
974
975 @cindex file name suffix
976 For any given input file, the file name suffix determines what kind of
977 compilation is done:
978
979 @table @gcctabopt
980 @item @var{file}.c
981 C source code which must be preprocessed.
982
983 @item @var{file}.i
984 C source code which should not be preprocessed.
985
986 @item @var{file}.ii
987 C++ source code which should not be preprocessed.
988
989 @item @var{file}.m
990 Objective-C source code.  Note that you must link with the @file{libobjc}
991 library to make an Objective-C program work.
992
993 @item @var{file}.mi
994 Objective-C source code which should not be preprocessed.
995
996 @item @var{file}.mm
997 @itemx @var{file}.M
998 Objective-C++ source code.  Note that you must link with the @file{libobjc}
999 library to make an Objective-C++ program work.  Note that @samp{.M} refers
1000 to a literal capital M@.
1001
1002 @item @var{file}.mii
1003 Objective-C++ source code which should not be preprocessed.
1004
1005 @item @var{file}.h
1006 C, C++, Objective-C or Objective-C++ header file to be turned into a
1007 precompiled header (default), or C, C++ header file to be turned into an
1008 Ada spec (via the @option{-fdump-ada-spec} switch).
1009
1010 @item @var{file}.cc
1011 @itemx @var{file}.cp
1012 @itemx @var{file}.cxx
1013 @itemx @var{file}.cpp
1014 @itemx @var{file}.CPP
1015 @itemx @var{file}.c++
1016 @itemx @var{file}.C
1017 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
1018 the last two letters must both be literally @samp{x}.  Likewise,
1019 @samp{.C} refers to a literal capital C@.
1020
1021 @item @var{file}.mm
1022 @itemx @var{file}.M
1023 Objective-C++ source code which must be preprocessed.
1024
1025 @item @var{file}.mii
1026 Objective-C++ source code which should not be preprocessed.
1027
1028 @item @var{file}.hh
1029 @itemx @var{file}.H
1030 @itemx @var{file}.hp
1031 @itemx @var{file}.hxx
1032 @itemx @var{file}.hpp
1033 @itemx @var{file}.HPP
1034 @itemx @var{file}.h++
1035 @itemx @var{file}.tcc
1036 C++ header file to be turned into a precompiled header or Ada spec.
1037
1038 @item @var{file}.f
1039 @itemx @var{file}.for
1040 @itemx @var{file}.ftn
1041 Fixed form Fortran source code which should not be preprocessed.
1042
1043 @item @var{file}.F
1044 @itemx @var{file}.FOR
1045 @itemx @var{file}.fpp
1046 @itemx @var{file}.FPP
1047 @itemx @var{file}.FTN
1048 Fixed form Fortran source code which must be preprocessed (with the traditional
1049 preprocessor).
1050
1051 @item @var{file}.f90
1052 @itemx @var{file}.f95
1053 @itemx @var{file}.f03
1054 @itemx @var{file}.f08
1055 Free form Fortran source code which should not be preprocessed.
1056
1057 @item @var{file}.F90
1058 @itemx @var{file}.F95
1059 @itemx @var{file}.F03
1060 @itemx @var{file}.F08
1061 Free form Fortran source code which must be preprocessed (with the
1062 traditional preprocessor).
1063
1064 @item @var{file}.go
1065 Go source code.
1066
1067 @c FIXME: Descriptions of Java file types.
1068 @c @var{file}.java
1069 @c @var{file}.class
1070 @c @var{file}.zip
1071 @c @var{file}.jar
1072
1073 @item @var{file}.ads
1074 Ada source code file which contains a library unit declaration (a
1075 declaration of a package, subprogram, or generic, or a generic
1076 instantiation), or a library unit renaming declaration (a package,
1077 generic, or subprogram renaming declaration).  Such files are also
1078 called @dfn{specs}.
1079
1080 @item @var{file}.adb
1081 Ada source code file containing a library unit body (a subprogram or
1082 package body).  Such files are also called @dfn{bodies}.
1083
1084 @c GCC also knows about some suffixes for languages not yet included:
1085 @c Pascal:
1086 @c @var{file}.p
1087 @c @var{file}.pas
1088 @c Ratfor:
1089 @c @var{file}.r
1090
1091 @item @var{file}.s
1092 Assembler code.
1093
1094 @item @var{file}.S
1095 @itemx @var{file}.sx
1096 Assembler code which must be preprocessed.
1097
1098 @item @var{other}
1099 An object file to be fed straight into linking.
1100 Any file name with no recognized suffix is treated this way.
1101 @end table
1102
1103 @opindex x
1104 You can specify the input language explicitly with the @option{-x} option:
1105
1106 @table @gcctabopt
1107 @item -x @var{language}
1108 Specify explicitly the @var{language} for the following input files
1109 (rather than letting the compiler choose a default based on the file
1110 name suffix).  This option applies to all following input files until
1111 the next @option{-x} option.  Possible values for @var{language} are:
1112 @smallexample
1113 c  c-header  cpp-output
1114 c++  c++-header  c++-cpp-output
1115 objective-c  objective-c-header  objective-c-cpp-output
1116 objective-c++ objective-c++-header objective-c++-cpp-output
1117 assembler  assembler-with-cpp
1118 ada
1119 f77  f77-cpp-input f95  f95-cpp-input
1120 go
1121 java
1122 @end smallexample
1123
1124 @item -x none
1125 Turn off any specification of a language, so that subsequent files are
1126 handled according to their file name suffixes (as they are if @option{-x}
1127 has not been used at all).
1128
1129 @item -pass-exit-codes
1130 @opindex pass-exit-codes
1131 Normally the @command{gcc} program will exit with the code of 1 if any
1132 phase of the compiler returns a non-success return code.  If you specify
1133 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1134 numerically highest error produced by any phase that returned an error
1135 indication.  The C, C++, and Fortran frontends return 4, if an internal
1136 compiler error is encountered.
1137 @end table
1138
1139 If you only want some of the stages of compilation, you can use
1140 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1141 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1142 @command{gcc} is to stop.  Note that some combinations (for example,
1143 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1144
1145 @table @gcctabopt
1146 @item -c
1147 @opindex c
1148 Compile or assemble the source files, but do not link.  The linking
1149 stage simply is not done.  The ultimate output is in the form of an
1150 object file for each source file.
1151
1152 By default, the object file name for a source file is made by replacing
1153 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1154
1155 Unrecognized input files, not requiring compilation or assembly, are
1156 ignored.
1157
1158 @item -S
1159 @opindex S
1160 Stop after the stage of compilation proper; do not assemble.  The output
1161 is in the form of an assembler code file for each non-assembler input
1162 file specified.
1163
1164 By default, the assembler file name for a source file is made by
1165 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1166
1167 Input files that don't require compilation are ignored.
1168
1169 @item -E
1170 @opindex E
1171 Stop after the preprocessing stage; do not run the compiler proper.  The
1172 output is in the form of preprocessed source code, which is sent to the
1173 standard output.
1174
1175 Input files which don't require preprocessing are ignored.
1176
1177 @cindex output file option
1178 @item -o @var{file}
1179 @opindex o
1180 Place output in file @var{file}.  This applies regardless to whatever
1181 sort of output is being produced, whether it be an executable file,
1182 an object file, an assembler file or preprocessed C code.
1183
1184 If @option{-o} is not specified, the default is to put an executable
1185 file in @file{a.out}, the object file for
1186 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1187 assembler file in @file{@var{source}.s}, a precompiled header file in
1188 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1189 standard output.
1190
1191 @item -v
1192 @opindex v
1193 Print (on standard error output) the commands executed to run the stages
1194 of compilation.  Also print the version number of the compiler driver
1195 program and of the preprocessor and the compiler proper.
1196
1197 @item -###
1198 @opindex ###
1199 Like @option{-v} except the commands are not executed and arguments
1200 are quoted unless they contain only alphanumeric characters or @code{./-_}.
1201 This is useful for shell scripts to capture the driver-generated command lines.
1202
1203 @item -pipe
1204 @opindex pipe
1205 Use pipes rather than temporary files for communication between the
1206 various stages of compilation.  This fails to work on some systems where
1207 the assembler is unable to read from a pipe; but the GNU assembler has
1208 no trouble.
1209
1210 @item --help
1211 @opindex help
1212 Print (on the standard output) a description of the command line options
1213 understood by @command{gcc}.  If the @option{-v} option is also specified
1214 then @option{--help} will also be passed on to the various processes
1215 invoked by @command{gcc}, so that they can display the command line options
1216 they accept.  If the @option{-Wextra} option has also been specified
1217 (prior to the @option{--help} option), then command line options which
1218 have no documentation associated with them will also be displayed.
1219
1220 @item --target-help
1221 @opindex target-help
1222 Print (on the standard output) a description of target-specific command
1223 line options for each tool.  For some targets extra target-specific
1224 information may also be printed.
1225
1226 @item --help=@{@var{class}@r{|[}^@r{]}@var{qualifier}@}@r{[},@dots{}@r{]}
1227 Print (on the standard output) a description of the command line
1228 options understood by the compiler that fit into all specified classes
1229 and qualifiers.  These are the supported classes:
1230
1231 @table @asis
1232 @item @samp{optimizers}
1233 This will display all of the optimization options supported by the
1234 compiler.
1235
1236 @item @samp{warnings}
1237 This will display all of the options controlling warning messages
1238 produced by the compiler.
1239
1240 @item @samp{target}
1241 This will display target-specific options.  Unlike the
1242 @option{--target-help} option however, target-specific options of the
1243 linker and assembler will not be displayed.  This is because those
1244 tools do not currently support the extended @option{--help=} syntax.
1245
1246 @item @samp{params}
1247 This will display the values recognized by the @option{--param}
1248 option.
1249
1250 @item @var{language}
1251 This will display the options supported for @var{language}, where
1252 @var{language} is the name of one of the languages supported in this
1253 version of GCC.
1254
1255 @item @samp{common}
1256 This will display the options that are common to all languages.
1257 @end table
1258
1259 These are the supported qualifiers:
1260
1261 @table @asis
1262 @item @samp{undocumented}
1263 Display only those options which are undocumented.
1264
1265 @item @samp{joined}
1266 Display options which take an argument that appears after an equal
1267 sign in the same continuous piece of text, such as:
1268 @samp{--help=target}.
1269
1270 @item @samp{separate}
1271 Display options which take an argument that appears as a separate word
1272 following the original option, such as: @samp{-o output-file}.
1273 @end table
1274
1275 Thus for example to display all the undocumented target-specific
1276 switches supported by the compiler the following can be used:
1277
1278 @smallexample
1279 --help=target,undocumented
1280 @end smallexample
1281
1282 The sense of a qualifier can be inverted by prefixing it with the
1283 @samp{^} character, so for example to display all binary warning
1284 options (i.e., ones that are either on or off and that do not take an
1285 argument), which have a description the following can be used:
1286
1287 @smallexample
1288 --help=warnings,^joined,^undocumented
1289 @end smallexample
1290
1291 The argument to @option{--help=} should not consist solely of inverted
1292 qualifiers.
1293
1294 Combining several classes is possible, although this usually
1295 restricts the output by so much that there is nothing to display.  One
1296 case where it does work however is when one of the classes is
1297 @var{target}.  So for example to display all the target-specific
1298 optimization options the following can be used:
1299
1300 @smallexample
1301 --help=target,optimizers
1302 @end smallexample
1303
1304 The @option{--help=} option can be repeated on the command line.  Each
1305 successive use will display its requested class of options, skipping
1306 those that have already been displayed.
1307
1308 If the @option{-Q} option appears on the command line before the
1309 @option{--help=} option, then the descriptive text displayed by
1310 @option{--help=} is changed.  Instead of describing the displayed
1311 options, an indication is given as to whether the option is enabled,
1312 disabled or set to a specific value (assuming that the compiler
1313 knows this at the point where the @option{--help=} option is used).
1314
1315 Here is a truncated example from the ARM port of @command{gcc}:
1316
1317 @smallexample
1318   % gcc -Q -mabi=2 --help=target -c
1319   The following options are target specific:
1320   -mabi=                                2
1321   -mabort-on-noreturn                   [disabled]
1322   -mapcs                                [disabled]
1323 @end smallexample
1324
1325 The output is sensitive to the effects of previous command line
1326 options, so for example it is possible to find out which optimizations
1327 are enabled at @option{-O2} by using:
1328
1329 @smallexample
1330 -Q -O2 --help=optimizers
1331 @end smallexample
1332
1333 Alternatively you can discover which binary optimizations are enabled
1334 by @option{-O3} by using:
1335
1336 @smallexample
1337 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1338 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1339 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1340 @end smallexample
1341
1342 @item -no-canonical-prefixes
1343 @opindex no-canonical-prefixes
1344 Do not expand any symbolic links, resolve references to @samp{/../}
1345 or @samp{/./}, or make the path absolute when generating a relative
1346 prefix.
1347
1348 @item --version
1349 @opindex version
1350 Display the version number and copyrights of the invoked GCC@.
1351
1352 @item -wrapper
1353 @opindex wrapper
1354 Invoke all subcommands under a wrapper program.  The name of the
1355 wrapper program and its parameters are passed as a comma separated
1356 list.
1357
1358 @smallexample
1359 gcc -c t.c -wrapper gdb,--args
1360 @end smallexample
1361
1362 This will invoke all subprograms of @command{gcc} under
1363 @samp{gdb --args}, thus the invocation of @command{cc1} will be
1364 @samp{gdb --args cc1 @dots{}}.
1365
1366 @item -fplugin=@var{name}.so
1367 Load the plugin code in file @var{name}.so, assumed to be a
1368 shared object to be dlopen'd by the compiler.  The base name of
1369 the shared object file is used to identify the plugin for the
1370 purposes of argument parsing (See
1371 @option{-fplugin-arg-@var{name}-@var{key}=@var{value}} below).
1372 Each plugin should define the callback functions specified in the
1373 Plugins API.
1374
1375 @item -fplugin-arg-@var{name}-@var{key}=@var{value}
1376 Define an argument called @var{key} with a value of @var{value}
1377 for the plugin called @var{name}.
1378
1379 @item -fdump-ada-spec@r{[}-slim@r{]}
1380 For C and C++ source and include files, generate corresponding Ada
1381 specs. @xref{Generating Ada Bindings for C and C++ headers,,, gnat_ugn,
1382 GNAT User's Guide}, which provides detailed documentation on this feature.
1383
1384 @item -fdump-go-spec=@var{file}
1385 For input files in any language, generate corresponding Go
1386 declarations in @var{file}.  This generates Go @code{const},
1387 @code{type}, @code{var}, and @code{func} declarations which may be a
1388 useful way to start writing a Go interface to code written in some
1389 other language.
1390
1391 @include @value{srcdir}/../libiberty/at-file.texi
1392 @end table
1393
1394 @node Invoking G++
1395 @section Compiling C++ Programs
1396
1397 @cindex suffixes for C++ source
1398 @cindex C++ source file suffixes
1399 C++ source files conventionally use one of the suffixes @samp{.C},
1400 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1401 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1402 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1403 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1404 files with these names and compiles them as C++ programs even if you
1405 call the compiler the same way as for compiling C programs (usually
1406 with the name @command{gcc}).
1407
1408 @findex g++
1409 @findex c++
1410 However, the use of @command{gcc} does not add the C++ library.
1411 @command{g++} is a program that calls GCC and treats @samp{.c},
1412 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1413 files unless @option{-x} is used, and automatically specifies linking
1414 against the C++ library.  This program is also useful when
1415 precompiling a C header file with a @samp{.h} extension for use in C++
1416 compilations.  On many systems, @command{g++} is also installed with
1417 the name @command{c++}.
1418
1419 @cindex invoking @command{g++}
1420 When you compile C++ programs, you may specify many of the same
1421 command-line options that you use for compiling programs in any
1422 language; or command-line options meaningful for C and related
1423 languages; or options that are meaningful only for C++ programs.
1424 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1425 explanations of options for languages related to C@.
1426 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1427 explanations of options that are meaningful only for C++ programs.
1428
1429 @node C Dialect Options
1430 @section Options Controlling C Dialect
1431 @cindex dialect options
1432 @cindex language dialect options
1433 @cindex options, dialect
1434
1435 The following options control the dialect of C (or languages derived
1436 from C, such as C++, Objective-C and Objective-C++) that the compiler
1437 accepts:
1438
1439 @table @gcctabopt
1440 @cindex ANSI support
1441 @cindex ISO support
1442 @item -ansi
1443 @opindex ansi
1444 In C mode, this is equivalent to @samp{-std=c90}. In C++ mode, it is
1445 equivalent to @samp{-std=c++98}.
1446
1447 This turns off certain features of GCC that are incompatible with ISO
1448 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1449 such as the @code{asm} and @code{typeof} keywords, and
1450 predefined macros such as @code{unix} and @code{vax} that identify the
1451 type of system you are using.  It also enables the undesirable and
1452 rarely used ISO trigraph feature.  For the C compiler,
1453 it disables recognition of C++ style @samp{//} comments as well as
1454 the @code{inline} keyword.
1455
1456 The alternate keywords @code{__asm__}, @code{__extension__},
1457 @code{__inline__} and @code{__typeof__} continue to work despite
1458 @option{-ansi}.  You would not want to use them in an ISO C program, of
1459 course, but it is useful to put them in header files that might be included
1460 in compilations done with @option{-ansi}.  Alternate predefined macros
1461 such as @code{__unix__} and @code{__vax__} are also available, with or
1462 without @option{-ansi}.
1463
1464 The @option{-ansi} option does not cause non-ISO programs to be
1465 rejected gratuitously.  For that, @option{-pedantic} is required in
1466 addition to @option{-ansi}.  @xref{Warning Options}.
1467
1468 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1469 option is used.  Some header files may notice this macro and refrain
1470 from declaring certain functions or defining certain macros that the
1471 ISO standard doesn't call for; this is to avoid interfering with any
1472 programs that might use these names for other things.
1473
1474 Functions that would normally be built in but do not have semantics
1475 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1476 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1477 built-in functions provided by GCC}, for details of the functions
1478 affected.
1479
1480 @item -std=
1481 @opindex std
1482 Determine the language standard. @xref{Standards,,Language Standards
1483 Supported by GCC}, for details of these standard versions.  This option
1484 is currently only supported when compiling C or C++.
1485
1486 The compiler can accept several base standards, such as @samp{c90} or
1487 @samp{c++98}, and GNU dialects of those standards, such as
1488 @samp{gnu90} or @samp{gnu++98}.  By specifying a base standard, the
1489 compiler will accept all programs following that standard and those
1490 using GNU extensions that do not contradict it.  For example,
1491 @samp{-std=c90} turns off certain features of GCC that are
1492 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1493 keywords, but not other GNU extensions that do not have a meaning in
1494 ISO C90, such as omitting the middle term of a @code{?:}
1495 expression. On the other hand, by specifying a GNU dialect of a
1496 standard, all features the compiler support are enabled, even when
1497 those features change the meaning of the base standard and some
1498 strict-conforming programs may be rejected.  The particular standard
1499 is used by @option{-pedantic} to identify which features are GNU
1500 extensions given that version of the standard. For example
1501 @samp{-std=gnu90 -pedantic} would warn about C++ style @samp{//}
1502 comments, while @samp{-std=gnu99 -pedantic} would not.
1503
1504 A value for this option must be provided; possible values are
1505
1506 @table @samp
1507 @item c90
1508 @itemx c89
1509 @itemx iso9899:1990
1510 Support all ISO C90 programs (certain GNU extensions that conflict
1511 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1512
1513 @item iso9899:199409
1514 ISO C90 as modified in amendment 1.
1515
1516 @item c99
1517 @itemx c9x
1518 @itemx iso9899:1999
1519 @itemx iso9899:199x
1520 ISO C99.  Note that this standard is not yet fully supported; see
1521 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1522 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1523
1524 @item c1x
1525 ISO C1X, the draft of the next revision of the ISO C standard.
1526 Support is limited and experimental and features enabled by this
1527 option may be changed or removed if changed in or removed from the
1528 standard draft.
1529
1530 @item gnu90
1531 @itemx gnu89
1532 GNU dialect of ISO C90 (including some C99 features). This
1533 is the default for C code.
1534
1535 @item gnu99
1536 @itemx gnu9x
1537 GNU dialect of ISO C99.  When ISO C99 is fully implemented in GCC,
1538 this will become the default.  The name @samp{gnu9x} is deprecated.
1539
1540 @item gnu1x
1541 GNU dialect of ISO C1X.  Support is limited and experimental and
1542 features enabled by this option may be changed or removed if changed
1543 in or removed from the standard draft.
1544
1545 @item c++98
1546 The 1998 ISO C++ standard plus amendments. Same as @option{-ansi} for
1547 C++ code.
1548
1549 @item gnu++98
1550 GNU dialect of @option{-std=c++98}.  This is the default for
1551 C++ code.
1552
1553 @item c++0x
1554 The working draft of the upcoming ISO C++0x standard. This option
1555 enables experimental features that are likely to be included in
1556 C++0x. The working draft is constantly changing, and any feature that is
1557 enabled by this flag may be removed from future versions of GCC if it is
1558 not part of the C++0x standard.
1559
1560 @item gnu++0x
1561 GNU dialect of @option{-std=c++0x}. This option enables
1562 experimental features that may be removed in future versions of GCC.
1563 @end table
1564
1565 @item -fgnu89-inline
1566 @opindex fgnu89-inline
1567 The option @option{-fgnu89-inline} tells GCC to use the traditional
1568 GNU semantics for @code{inline} functions when in C99 mode.
1569 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1570 is accepted and ignored by GCC versions 4.1.3 up to but not including
1571 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1572 C99 mode.  Using this option is roughly equivalent to adding the
1573 @code{gnu_inline} function attribute to all inline functions
1574 (@pxref{Function Attributes}).
1575
1576 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1577 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1578 specifies the default behavior).  This option was first supported in
1579 GCC 4.3.  This option is not supported in @option{-std=c90} or
1580 @option{-std=gnu90} mode.
1581
1582 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1583 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1584 in effect for @code{inline} functions.  @xref{Common Predefined
1585 Macros,,,cpp,The C Preprocessor}.
1586
1587 @item -aux-info @var{filename}
1588 @opindex aux-info
1589 Output to the given filename prototyped declarations for all functions
1590 declared and/or defined in a translation unit, including those in header
1591 files.  This option is silently ignored in any language other than C@.
1592
1593 Besides declarations, the file indicates, in comments, the origin of
1594 each declaration (source file and line), whether the declaration was
1595 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1596 @samp{O} for old, respectively, in the first character after the line
1597 number and the colon), and whether it came from a declaration or a
1598 definition (@samp{C} or @samp{F}, respectively, in the following
1599 character).  In the case of function definitions, a K&R-style list of
1600 arguments followed by their declarations is also provided, inside
1601 comments, after the declaration.
1602
1603 @item -fno-asm
1604 @opindex fno-asm
1605 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1606 keyword, so that code can use these words as identifiers.  You can use
1607 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1608 instead.  @option{-ansi} implies @option{-fno-asm}.
1609
1610 In C++, this switch only affects the @code{typeof} keyword, since
1611 @code{asm} and @code{inline} are standard keywords.  You may want to
1612 use the @option{-fno-gnu-keywords} flag instead, which has the same
1613 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1614 switch only affects the @code{asm} and @code{typeof} keywords, since
1615 @code{inline} is a standard keyword in ISO C99.
1616
1617 @item -fno-builtin
1618 @itemx -fno-builtin-@var{function}
1619 @opindex fno-builtin
1620 @cindex built-in functions
1621 Don't recognize built-in functions that do not begin with
1622 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1623 functions provided by GCC}, for details of the functions affected,
1624 including those which are not built-in functions when @option{-ansi} or
1625 @option{-std} options for strict ISO C conformance are used because they
1626 do not have an ISO standard meaning.
1627
1628 GCC normally generates special code to handle certain built-in functions
1629 more efficiently; for instance, calls to @code{alloca} may become single
1630 instructions that adjust the stack directly, and calls to @code{memcpy}
1631 may become inline copy loops.  The resulting code is often both smaller
1632 and faster, but since the function calls no longer appear as such, you
1633 cannot set a breakpoint on those calls, nor can you change the behavior
1634 of the functions by linking with a different library.  In addition,
1635 when a function is recognized as a built-in function, GCC may use
1636 information about that function to warn about problems with calls to
1637 that function, or to generate more efficient code, even if the
1638 resulting code still contains calls to that function.  For example,
1639 warnings are given with @option{-Wformat} for bad calls to
1640 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1641 known not to modify global memory.
1642
1643 With the @option{-fno-builtin-@var{function}} option
1644 only the built-in function @var{function} is
1645 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1646 function is named that is not built-in in this version of GCC, this
1647 option is ignored.  There is no corresponding
1648 @option{-fbuiltin-@var{function}} option; if you wish to enable
1649 built-in functions selectively when using @option{-fno-builtin} or
1650 @option{-ffreestanding}, you may define macros such as:
1651
1652 @smallexample
1653 #define abs(n)          __builtin_abs ((n))
1654 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1655 @end smallexample
1656
1657 @item -fhosted
1658 @opindex fhosted
1659 @cindex hosted environment
1660
1661 Assert that compilation takes place in a hosted environment.  This implies
1662 @option{-fbuiltin}.  A hosted environment is one in which the
1663 entire standard library is available, and in which @code{main} has a return
1664 type of @code{int}.  Examples are nearly everything except a kernel.
1665 This is equivalent to @option{-fno-freestanding}.
1666
1667 @item -ffreestanding
1668 @opindex ffreestanding
1669 @cindex hosted environment
1670
1671 Assert that compilation takes place in a freestanding environment.  This
1672 implies @option{-fno-builtin}.  A freestanding environment
1673 is one in which the standard library may not exist, and program startup may
1674 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1675 This is equivalent to @option{-fno-hosted}.
1676
1677 @xref{Standards,,Language Standards Supported by GCC}, for details of
1678 freestanding and hosted environments.
1679
1680 @item -fopenmp
1681 @opindex fopenmp
1682 @cindex OpenMP parallel
1683 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1684 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1685 compiler generates parallel code according to the OpenMP Application
1686 Program Interface v3.0 @w{@uref{http://www.openmp.org/}}.  This option
1687 implies @option{-pthread}, and thus is only supported on targets that
1688 have support for @option{-pthread}.
1689
1690 @item -fms-extensions
1691 @opindex fms-extensions
1692 Accept some non-standard constructs used in Microsoft header files.
1693
1694 In C++ code, this allows member names in structures to be similar
1695 to previous types declarations.
1696
1697 @smallexample
1698 typedef int UOW;
1699 struct ABC @{
1700   UOW UOW;
1701 @};
1702 @end smallexample
1703
1704 Some cases of unnamed fields in structures and unions are only
1705 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1706 fields within structs/unions}, for details.
1707
1708 @item -fplan9-extensions
1709 Accept some non-standard constructs used in Plan 9 code.
1710
1711 This enables @option{-fms-extensions}, permits passing pointers to
1712 structures with anonymous fields to functions which expect pointers to
1713 elements of the type of the field, and permits referring to anonymous
1714 fields declared using a typedef.  @xref{Unnamed Fields,,Unnamed
1715 struct/union fields within structs/unions}, for details.  This is only
1716 supported for C, not C++.
1717
1718 @item -trigraphs
1719 @opindex trigraphs
1720 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1721 options for strict ISO C conformance) implies @option{-trigraphs}.
1722
1723 @item -no-integrated-cpp
1724 @opindex no-integrated-cpp
1725 Performs a compilation in two passes: preprocessing and compiling.  This
1726 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1727 @option{-B} option.  The user supplied compilation step can then add in
1728 an additional preprocessing step after normal preprocessing but before
1729 compiling.  The default is to use the integrated cpp (internal cpp)
1730
1731 The semantics of this option will change if "cc1", "cc1plus", and
1732 "cc1obj" are merged.
1733
1734 @cindex traditional C language
1735 @cindex C language, traditional
1736 @item -traditional
1737 @itemx -traditional-cpp
1738 @opindex traditional-cpp
1739 @opindex traditional
1740 Formerly, these options caused GCC to attempt to emulate a pre-standard
1741 C compiler.  They are now only supported with the @option{-E} switch.
1742 The preprocessor continues to support a pre-standard mode.  See the GNU
1743 CPP manual for details.
1744
1745 @item -fcond-mismatch
1746 @opindex fcond-mismatch
1747 Allow conditional expressions with mismatched types in the second and
1748 third arguments.  The value of such an expression is void.  This option
1749 is not supported for C++.
1750
1751 @item -flax-vector-conversions
1752 @opindex flax-vector-conversions
1753 Allow implicit conversions between vectors with differing numbers of
1754 elements and/or incompatible element types.  This option should not be
1755 used for new code.
1756
1757 @item -funsigned-char
1758 @opindex funsigned-char
1759 Let the type @code{char} be unsigned, like @code{unsigned char}.
1760
1761 Each kind of machine has a default for what @code{char} should
1762 be.  It is either like @code{unsigned char} by default or like
1763 @code{signed char} by default.
1764
1765 Ideally, a portable program should always use @code{signed char} or
1766 @code{unsigned char} when it depends on the signedness of an object.
1767 But many programs have been written to use plain @code{char} and
1768 expect it to be signed, or expect it to be unsigned, depending on the
1769 machines they were written for.  This option, and its inverse, let you
1770 make such a program work with the opposite default.
1771
1772 The type @code{char} is always a distinct type from each of
1773 @code{signed char} or @code{unsigned char}, even though its behavior
1774 is always just like one of those two.
1775
1776 @item -fsigned-char
1777 @opindex fsigned-char
1778 Let the type @code{char} be signed, like @code{signed char}.
1779
1780 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1781 the negative form of @option{-funsigned-char}.  Likewise, the option
1782 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1783
1784 @item -fsigned-bitfields
1785 @itemx -funsigned-bitfields
1786 @itemx -fno-signed-bitfields
1787 @itemx -fno-unsigned-bitfields
1788 @opindex fsigned-bitfields
1789 @opindex funsigned-bitfields
1790 @opindex fno-signed-bitfields
1791 @opindex fno-unsigned-bitfields
1792 These options control whether a bit-field is signed or unsigned, when the
1793 declaration does not use either @code{signed} or @code{unsigned}.  By
1794 default, such a bit-field is signed, because this is consistent: the
1795 basic integer types such as @code{int} are signed types.
1796 @end table
1797
1798 @node C++ Dialect Options
1799 @section Options Controlling C++ Dialect
1800
1801 @cindex compiler options, C++
1802 @cindex C++ options, command line
1803 @cindex options, C++
1804 This section describes the command-line options that are only meaningful
1805 for C++ programs; but you can also use most of the GNU compiler options
1806 regardless of what language your program is in.  For example, you
1807 might compile a file @code{firstClass.C} like this:
1808
1809 @smallexample
1810 g++ -g -frepo -O -c firstClass.C
1811 @end smallexample
1812
1813 @noindent
1814 In this example, only @option{-frepo} is an option meant
1815 only for C++ programs; you can use the other options with any
1816 language supported by GCC@.
1817
1818 Here is a list of options that are @emph{only} for compiling C++ programs:
1819
1820 @table @gcctabopt
1821
1822 @item -fabi-version=@var{n}
1823 @opindex fabi-version
1824 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1825 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1826 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1827 the version that conforms most closely to the C++ ABI specification.
1828 Therefore, the ABI obtained using version 0 will change as ABI bugs
1829 are fixed.
1830
1831 The default is version 2.
1832
1833 Version 3 corrects an error in mangling a constant address as a
1834 template argument.
1835
1836 Version 4 implements a standard mangling for vector types.
1837
1838 Version 5 corrects the mangling of attribute const/volatile on
1839 function pointer types, decltype of a plain decl, and use of a
1840 function parameter in the declaration of another parameter.
1841
1842 See also @option{-Wabi}.
1843
1844 @item -fno-access-control
1845 @opindex fno-access-control
1846 Turn off all access checking.  This switch is mainly useful for working
1847 around bugs in the access control code.
1848
1849 @item -fcheck-new
1850 @opindex fcheck-new
1851 Check that the pointer returned by @code{operator new} is non-null
1852 before attempting to modify the storage allocated.  This check is
1853 normally unnecessary because the C++ standard specifies that
1854 @code{operator new} will only return @code{0} if it is declared
1855 @samp{throw()}, in which case the compiler will always check the
1856 return value even without this option.  In all other cases, when
1857 @code{operator new} has a non-empty exception specification, memory
1858 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1859 @samp{new (nothrow)}.
1860
1861 @item -fconserve-space
1862 @opindex fconserve-space
1863 Put uninitialized or runtime-initialized global variables into the
1864 common segment, as C does.  This saves space in the executable at the
1865 cost of not diagnosing duplicate definitions.  If you compile with this
1866 flag and your program mysteriously crashes after @code{main()} has
1867 completed, you may have an object that is being destroyed twice because
1868 two definitions were merged.
1869
1870 This option is no longer useful on most targets, now that support has
1871 been added for putting variables into BSS without making them common.
1872
1873 @item -fconstexpr-depth=@var{n}
1874 @opindex fconstexpr-depth
1875 Set the maximum nested evaluation depth for C++0x constexpr functions
1876 to @var{n}.  A limit is needed to detect endless recursion during
1877 constant expression evaluation.  The minimum specified by the standard
1878 is 512.
1879
1880 @item -fno-deduce-init-list
1881 @opindex fno-deduce-init-list
1882 Disable deduction of a template type parameter as
1883 std::initializer_list from a brace-enclosed initializer list, i.e.
1884
1885 @smallexample
1886 template <class T> auto forward(T t) -> decltype (realfn (t))
1887 @{
1888   return realfn (t);
1889 @}
1890
1891 void f()
1892 @{
1893   forward(@{1,2@}); // call forward<std::initializer_list<int>>
1894 @}
1895 @end smallexample
1896
1897 This option is present because this deduction is an extension to the
1898 current specification in the C++0x working draft, and there was
1899 some concern about potential overload resolution problems.
1900
1901 @item -ffriend-injection
1902 @opindex ffriend-injection
1903 Inject friend functions into the enclosing namespace, so that they are
1904 visible outside the scope of the class in which they are declared.
1905 Friend functions were documented to work this way in the old Annotated
1906 C++ Reference Manual, and versions of G++ before 4.1 always worked
1907 that way.  However, in ISO C++ a friend function which is not declared
1908 in an enclosing scope can only be found using argument dependent
1909 lookup.  This option causes friends to be injected as they were in
1910 earlier releases.
1911
1912 This option is for compatibility, and may be removed in a future
1913 release of G++.
1914
1915 @item -fno-elide-constructors
1916 @opindex fno-elide-constructors
1917 The C++ standard allows an implementation to omit creating a temporary
1918 which is only used to initialize another object of the same type.
1919 Specifying this option disables that optimization, and forces G++ to
1920 call the copy constructor in all cases.
1921
1922 @item -fno-enforce-eh-specs
1923 @opindex fno-enforce-eh-specs
1924 Don't generate code to check for violation of exception specifications
1925 at runtime.  This option violates the C++ standard, but may be useful
1926 for reducing code size in production builds, much like defining
1927 @samp{NDEBUG}.  This does not give user code permission to throw
1928 exceptions in violation of the exception specifications; the compiler
1929 will still optimize based on the specifications, so throwing an
1930 unexpected exception will result in undefined behavior.
1931
1932 @item -ffor-scope
1933 @itemx -fno-for-scope
1934 @opindex ffor-scope
1935 @opindex fno-for-scope
1936 If @option{-ffor-scope} is specified, the scope of variables declared in
1937 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1938 as specified by the C++ standard.
1939 If @option{-fno-for-scope} is specified, the scope of variables declared in
1940 a @i{for-init-statement} extends to the end of the enclosing scope,
1941 as was the case in old versions of G++, and other (traditional)
1942 implementations of C++.
1943
1944 The default if neither flag is given to follow the standard,
1945 but to allow and give a warning for old-style code that would
1946 otherwise be invalid, or have different behavior.
1947
1948 @item -fno-gnu-keywords
1949 @opindex fno-gnu-keywords
1950 Do not recognize @code{typeof} as a keyword, so that code can use this
1951 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1952 @option{-ansi} implies @option{-fno-gnu-keywords}.
1953
1954 @item -fno-implicit-templates
1955 @opindex fno-implicit-templates
1956 Never emit code for non-inline templates which are instantiated
1957 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1958 @xref{Template Instantiation}, for more information.
1959
1960 @item -fno-implicit-inline-templates
1961 @opindex fno-implicit-inline-templates
1962 Don't emit code for implicit instantiations of inline templates, either.
1963 The default is to handle inlines differently so that compiles with and
1964 without optimization will need the same set of explicit instantiations.
1965
1966 @item -fno-implement-inlines
1967 @opindex fno-implement-inlines
1968 To save space, do not emit out-of-line copies of inline functions
1969 controlled by @samp{#pragma implementation}.  This will cause linker
1970 errors if these functions are not inlined everywhere they are called.
1971
1972 @item -fms-extensions
1973 @opindex fms-extensions
1974 Disable pedantic warnings about constructs used in MFC, such as implicit
1975 int and getting a pointer to member function via non-standard syntax.
1976
1977 @item -fno-nonansi-builtins
1978 @opindex fno-nonansi-builtins
1979 Disable built-in declarations of functions that are not mandated by
1980 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1981 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1982
1983 @item -fnothrow-opt
1984 @opindex fnothrow-opt
1985 Treat a @code{throw()} exception specification as though it were a
1986 @code{noexcept} specification to reduce or eliminate the text size
1987 overhead relative to a function with no exception specification.  If
1988 the function has local variables of types with non-trivial
1989 destructors, the exception specification will actually make the
1990 function smaller because the EH cleanups for those variables can be
1991 optimized away.  The semantic effect is that an exception thrown out of
1992 a function with such an exception specification will result in a call
1993 to @code{terminate} rather than @code{unexpected}.
1994
1995 @item -fno-operator-names
1996 @opindex fno-operator-names
1997 Do not treat the operator name keywords @code{and}, @code{bitand},
1998 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1999 synonyms as keywords.
2000
2001 @item -fno-optional-diags
2002 @opindex fno-optional-diags
2003 Disable diagnostics that the standard says a compiler does not need to
2004 issue.  Currently, the only such diagnostic issued by G++ is the one for
2005 a name having multiple meanings within a class.
2006
2007 @item -fpermissive
2008 @opindex fpermissive
2009 Downgrade some diagnostics about nonconformant code from errors to
2010 warnings.  Thus, using @option{-fpermissive} will allow some
2011 nonconforming code to compile.
2012
2013 @item -fno-pretty-templates
2014 @opindex fno-pretty-templates
2015 When an error message refers to a specialization of a function
2016 template, the compiler will normally print the signature of the
2017 template followed by the template arguments and any typedefs or
2018 typenames in the signature (e.g. @code{void f(T) [with T = int]}
2019 rather than @code{void f(int)}) so that it's clear which template is
2020 involved.  When an error message refers to a specialization of a class
2021 template, the compiler will omit any template arguments which match
2022 the default template arguments for that template.  If either of these
2023 behaviors make it harder to understand the error message rather than
2024 easier, using @option{-fno-pretty-templates} will disable them.
2025
2026 @item -frepo
2027 @opindex frepo
2028 Enable automatic template instantiation at link time.  This option also
2029 implies @option{-fno-implicit-templates}.  @xref{Template
2030 Instantiation}, for more information.
2031
2032 @item -fno-rtti
2033 @opindex fno-rtti
2034 Disable generation of information about every class with virtual
2035 functions for use by the C++ runtime type identification features
2036 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
2037 of the language, you can save some space by using this flag.  Note that
2038 exception handling uses the same information, but it will generate it as
2039 needed. The @samp{dynamic_cast} operator can still be used for casts that
2040 do not require runtime type information, i.e.@: casts to @code{void *} or to
2041 unambiguous base classes.
2042
2043 @item -fstats
2044 @opindex fstats
2045 Emit statistics about front-end processing at the end of the compilation.
2046 This information is generally only useful to the G++ development team.
2047
2048 @item -fstrict-enums
2049 @opindex fstrict-enums
2050 Allow the compiler to optimize using the assumption that a value of
2051 enumeration type can only be one of the values of the enumeration (as
2052 defined in the C++ standard; basically, a value which can be
2053 represented in the minimum number of bits needed to represent all the
2054 enumerators).  This assumption may not be valid if the program uses a
2055 cast to convert an arbitrary integer value to the enumeration type.
2056
2057 @item -ftemplate-depth=@var{n}
2058 @opindex ftemplate-depth
2059 Set the maximum instantiation depth for template classes to @var{n}.
2060 A limit on the template instantiation depth is needed to detect
2061 endless recursions during template class instantiation.  ANSI/ISO C++
2062 conforming programs must not rely on a maximum depth greater than 17
2063 (changed to 1024 in C++0x).
2064
2065 @item -fno-threadsafe-statics
2066 @opindex fno-threadsafe-statics
2067 Do not emit the extra code to use the routines specified in the C++
2068 ABI for thread-safe initialization of local statics.  You can use this
2069 option to reduce code size slightly in code that doesn't need to be
2070 thread-safe.
2071
2072 @item -fuse-cxa-atexit
2073 @opindex fuse-cxa-atexit
2074 Register destructors for objects with static storage duration with the
2075 @code{__cxa_atexit} function rather than the @code{atexit} function.
2076 This option is required for fully standards-compliant handling of static
2077 destructors, but will only work if your C library supports
2078 @code{__cxa_atexit}.
2079
2080 @item -fno-use-cxa-get-exception-ptr
2081 @opindex fno-use-cxa-get-exception-ptr
2082 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
2083 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
2084 if the runtime routine is not available.
2085
2086 @item -fvisibility-inlines-hidden
2087 @opindex fvisibility-inlines-hidden
2088 This switch declares that the user does not attempt to compare
2089 pointers to inline methods where the addresses of the two functions
2090 were taken in different shared objects.
2091
2092 The effect of this is that GCC may, effectively, mark inline methods with
2093 @code{__attribute__ ((visibility ("hidden")))} so that they do not
2094 appear in the export table of a DSO and do not require a PLT indirection
2095 when used within the DSO@.  Enabling this option can have a dramatic effect
2096 on load and link times of a DSO as it massively reduces the size of the
2097 dynamic export table when the library makes heavy use of templates.
2098
2099 The behavior of this switch is not quite the same as marking the
2100 methods as hidden directly, because it does not affect static variables
2101 local to the function or cause the compiler to deduce that
2102 the function is defined in only one shared object.
2103
2104 You may mark a method as having a visibility explicitly to negate the
2105 effect of the switch for that method.  For example, if you do want to
2106 compare pointers to a particular inline method, you might mark it as
2107 having default visibility.  Marking the enclosing class with explicit
2108 visibility will have no effect.
2109
2110 Explicitly instantiated inline methods are unaffected by this option
2111 as their linkage might otherwise cross a shared library boundary.
2112 @xref{Template Instantiation}.
2113
2114 @item -fvisibility-ms-compat
2115 @opindex fvisibility-ms-compat
2116 This flag attempts to use visibility settings to make GCC's C++
2117 linkage model compatible with that of Microsoft Visual Studio.
2118
2119 The flag makes these changes to GCC's linkage model:
2120
2121 @enumerate
2122 @item
2123 It sets the default visibility to @code{hidden}, like
2124 @option{-fvisibility=hidden}.
2125
2126 @item
2127 Types, but not their members, are not hidden by default.
2128
2129 @item
2130 The One Definition Rule is relaxed for types without explicit
2131 visibility specifications which are defined in more than one different
2132 shared object: those declarations are permitted if they would have
2133 been permitted when this option was not used.
2134 @end enumerate
2135
2136 In new code it is better to use @option{-fvisibility=hidden} and
2137 export those classes which are intended to be externally visible.
2138 Unfortunately it is possible for code to rely, perhaps accidentally,
2139 on the Visual Studio behavior.
2140
2141 Among the consequences of these changes are that static data members
2142 of the same type with the same name but defined in different shared
2143 objects will be different, so changing one will not change the other;
2144 and that pointers to function members defined in different shared
2145 objects may not compare equal.  When this flag is given, it is a
2146 violation of the ODR to define types with the same name differently.
2147
2148 @item -fno-weak
2149 @opindex fno-weak
2150 Do not use weak symbol support, even if it is provided by the linker.
2151 By default, G++ will use weak symbols if they are available.  This
2152 option exists only for testing, and should not be used by end-users;
2153 it will result in inferior code and has no benefits.  This option may
2154 be removed in a future release of G++.
2155
2156 @item -nostdinc++
2157 @opindex nostdinc++
2158 Do not search for header files in the standard directories specific to
2159 C++, but do still search the other standard directories.  (This option
2160 is used when building the C++ library.)
2161 @end table
2162
2163 In addition, these optimization, warning, and code generation options
2164 have meanings only for C++ programs:
2165
2166 @table @gcctabopt
2167 @item -fno-default-inline
2168 @opindex fno-default-inline
2169 Do not assume @samp{inline} for functions defined inside a class scope.
2170 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
2171 functions will have linkage like inline functions; they just won't be
2172 inlined by default.
2173
2174 @item -Wabi @r{(C, Objective-C, C++ and Objective-C++ only)}
2175 @opindex Wabi
2176 @opindex Wno-abi
2177 Warn when G++ generates code that is probably not compatible with the
2178 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
2179 all such cases, there are probably some cases that are not warned about,
2180 even though G++ is generating incompatible code.  There may also be
2181 cases where warnings are emitted even though the code that is generated
2182 will be compatible.
2183
2184 You should rewrite your code to avoid these warnings if you are
2185 concerned about the fact that code generated by G++ may not be binary
2186 compatible with code generated by other compilers.
2187
2188 The known incompatibilities in @option{-fabi-version=2} (the default) include:
2189
2190 @itemize @bullet
2191
2192 @item
2193 A template with a non-type template parameter of reference type is
2194 mangled incorrectly:
2195 @smallexample
2196 extern int N;
2197 template <int &> struct S @{@};
2198 void n (S<N>) @{2@}
2199 @end smallexample
2200
2201 This is fixed in @option{-fabi-version=3}.
2202
2203 @item
2204 SIMD vector types declared using @code{__attribute ((vector_size))} are
2205 mangled in a non-standard way that does not allow for overloading of
2206 functions taking vectors of different sizes.
2207
2208 The mangling is changed in @option{-fabi-version=4}.
2209 @end itemize
2210
2211 The known incompatibilities in @option{-fabi-version=1} include:
2212
2213 @itemize @bullet
2214
2215 @item
2216 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
2217 pack data into the same byte as a base class.  For example:
2218
2219 @smallexample
2220 struct A @{ virtual void f(); int f1 : 1; @};
2221 struct B : public A @{ int f2 : 1; @};
2222 @end smallexample
2223
2224 @noindent
2225 In this case, G++ will place @code{B::f2} into the same byte
2226 as@code{A::f1}; other compilers will not.  You can avoid this problem
2227 by explicitly padding @code{A} so that its size is a multiple of the
2228 byte size on your platform; that will cause G++ and other compilers to
2229 layout @code{B} identically.
2230
2231 @item
2232 Incorrect handling of tail-padding for virtual bases.  G++ does not use
2233 tail padding when laying out virtual bases.  For example:
2234
2235 @smallexample
2236 struct A @{ virtual void f(); char c1; @};
2237 struct B @{ B(); char c2; @};
2238 struct C : public A, public virtual B @{@};
2239 @end smallexample
2240
2241 @noindent
2242 In this case, G++ will not place @code{B} into the tail-padding for
2243 @code{A}; other compilers will.  You can avoid this problem by
2244 explicitly padding @code{A} so that its size is a multiple of its
2245 alignment (ignoring virtual base classes); that will cause G++ and other
2246 compilers to layout @code{C} identically.
2247
2248 @item
2249 Incorrect handling of bit-fields with declared widths greater than that
2250 of their underlying types, when the bit-fields appear in a union.  For
2251 example:
2252
2253 @smallexample
2254 union U @{ int i : 4096; @};
2255 @end smallexample
2256
2257 @noindent
2258 Assuming that an @code{int} does not have 4096 bits, G++ will make the
2259 union too small by the number of bits in an @code{int}.
2260
2261 @item
2262 Empty classes can be placed at incorrect offsets.  For example:
2263
2264 @smallexample
2265 struct A @{@};
2266
2267 struct B @{
2268   A a;
2269   virtual void f ();
2270 @};
2271
2272 struct C : public B, public A @{@};
2273 @end smallexample
2274
2275 @noindent
2276 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
2277 it should be placed at offset zero.  G++ mistakenly believes that the
2278 @code{A} data member of @code{B} is already at offset zero.
2279
2280 @item
2281 Names of template functions whose types involve @code{typename} or
2282 template template parameters can be mangled incorrectly.
2283
2284 @smallexample
2285 template <typename Q>
2286 void f(typename Q::X) @{@}
2287
2288 template <template <typename> class Q>
2289 void f(typename Q<int>::X) @{@}
2290 @end smallexample
2291
2292 @noindent
2293 Instantiations of these templates may be mangled incorrectly.
2294
2295 @end itemize
2296
2297 It also warns psABI related changes.  The known psABI changes at this
2298 point include:
2299
2300 @itemize @bullet
2301
2302 @item
2303 For SYSV/x86-64, when passing union with long double, it is changed to
2304 pass in memory as specified in psABI.  For example:
2305
2306 @smallexample
2307 union U @{
2308   long double ld;
2309   int i;
2310 @};
2311 @end smallexample
2312
2313 @noindent
2314 @code{union U} will always be passed in memory.
2315
2316 @end itemize
2317
2318 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2319 @opindex Wctor-dtor-privacy
2320 @opindex Wno-ctor-dtor-privacy
2321 Warn when a class seems unusable because all the constructors or
2322 destructors in that class are private, and it has neither friends nor
2323 public static member functions.
2324
2325 @item -Wnoexcept @r{(C++ and Objective-C++ only)}
2326 @opindex Wnoexcept
2327 @opindex Wno-noexcept
2328 Warn when a noexcept-expression evaluates to false because of a call
2329 to a function that does not have a non-throwing exception
2330 specification (i.e. @samp{throw()} or @samp{noexcept}) but is known by
2331 the compiler to never throw an exception.
2332
2333 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2334 @opindex Wnon-virtual-dtor
2335 @opindex Wno-non-virtual-dtor
2336 Warn when a class has virtual functions and accessible non-virtual
2337 destructor, in which case it would be possible but unsafe to delete
2338 an instance of a derived class through a pointer to the base class.
2339 This warning is also enabled if -Weffc++ is specified.
2340
2341 @item -Wreorder @r{(C++ and Objective-C++ only)}
2342 @opindex Wreorder
2343 @opindex Wno-reorder
2344 @cindex reordering, warning
2345 @cindex warning for reordering of member initializers
2346 Warn when the order of member initializers given in the code does not
2347 match the order in which they must be executed.  For instance:
2348
2349 @smallexample
2350 struct A @{
2351   int i;
2352   int j;
2353   A(): j (0), i (1) @{ @}
2354 @};
2355 @end smallexample
2356
2357 The compiler will rearrange the member initializers for @samp{i}
2358 and @samp{j} to match the declaration order of the members, emitting
2359 a warning to that effect.  This warning is enabled by @option{-Wall}.
2360 @end table
2361
2362 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2363
2364 @table @gcctabopt
2365 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2366 @opindex Weffc++
2367 @opindex Wno-effc++
2368 Warn about violations of the following style guidelines from Scott Meyers'
2369 @cite{Effective C++} book:
2370
2371 @itemize @bullet
2372 @item
2373 Item 11:  Define a copy constructor and an assignment operator for classes
2374 with dynamically allocated memory.
2375
2376 @item
2377 Item 12:  Prefer initialization to assignment in constructors.
2378
2379 @item
2380 Item 14:  Make destructors virtual in base classes.
2381
2382 @item
2383 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2384
2385 @item
2386 Item 23:  Don't try to return a reference when you must return an object.
2387
2388 @end itemize
2389
2390 Also warn about violations of the following style guidelines from
2391 Scott Meyers' @cite{More Effective C++} book:
2392
2393 @itemize @bullet
2394 @item
2395 Item 6:  Distinguish between prefix and postfix forms of increment and
2396 decrement operators.
2397
2398 @item
2399 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2400
2401 @end itemize
2402
2403 When selecting this option, be aware that the standard library
2404 headers do not obey all of these guidelines; use @samp{grep -v}
2405 to filter out those warnings.
2406
2407 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2408 @opindex Wstrict-null-sentinel
2409 @opindex Wno-strict-null-sentinel
2410 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2411 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2412 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2413 it is guaranteed to be of the same size as a pointer.  But this use is
2414 not portable across different compilers.
2415
2416 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2417 @opindex Wno-non-template-friend
2418 @opindex Wnon-template-friend
2419 Disable warnings when non-templatized friend functions are declared
2420 within a template.  Since the advent of explicit template specification
2421 support in G++, if the name of the friend is an unqualified-id (i.e.,
2422 @samp{friend foo(int)}), the C++ language specification demands that the
2423 friend declare or define an ordinary, nontemplate function.  (Section
2424 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2425 could be interpreted as a particular specialization of a templatized
2426 function.  Because this non-conforming behavior is no longer the default
2427 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2428 check existing code for potential trouble spots and is on by default.
2429 This new compiler behavior can be turned off with
2430 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2431 but disables the helpful warning.
2432
2433 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2434 @opindex Wold-style-cast
2435 @opindex Wno-old-style-cast
2436 Warn if an old-style (C-style) cast to a non-void type is used within
2437 a C++ program.  The new-style casts (@samp{dynamic_cast},
2438 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2439 less vulnerable to unintended effects and much easier to search for.
2440
2441 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2442 @opindex Woverloaded-virtual
2443 @opindex Wno-overloaded-virtual
2444 @cindex overloaded virtual function, warning
2445 @cindex warning for overloaded virtual function
2446 Warn when a function declaration hides virtual functions from a
2447 base class.  For example, in:
2448
2449 @smallexample
2450 struct A @{
2451   virtual void f();
2452 @};
2453
2454 struct B: public A @{
2455   void f(int);
2456 @};
2457 @end smallexample
2458
2459 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2460 like:
2461
2462 @smallexample
2463 B* b;
2464 b->f();
2465 @end smallexample
2466
2467 will fail to compile.
2468
2469 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2470 @opindex Wno-pmf-conversions
2471 @opindex Wpmf-conversions
2472 Disable the diagnostic for converting a bound pointer to member function
2473 to a plain pointer.
2474
2475 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2476 @opindex Wsign-promo
2477 @opindex Wno-sign-promo
2478 Warn when overload resolution chooses a promotion from unsigned or
2479 enumerated type to a signed type, over a conversion to an unsigned type of
2480 the same size.  Previous versions of G++ would try to preserve
2481 unsignedness, but the standard mandates the current behavior.
2482
2483 @smallexample
2484 struct A @{
2485   operator int ();
2486   A& operator = (int);
2487 @};
2488
2489 main ()
2490 @{
2491   A a,b;
2492   a = b;
2493 @}
2494 @end smallexample
2495
2496 In this example, G++ will synthesize a default @samp{A& operator =
2497 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2498 @end table
2499
2500 @node Objective-C and Objective-C++ Dialect Options
2501 @section Options Controlling Objective-C and Objective-C++ Dialects
2502
2503 @cindex compiler options, Objective-C and Objective-C++
2504 @cindex Objective-C and Objective-C++ options, command line
2505 @cindex options, Objective-C and Objective-C++
2506 (NOTE: This manual does not describe the Objective-C and Objective-C++
2507 languages themselves.  @xref{Standards,,Language Standards
2508 Supported by GCC}, for references.)
2509
2510 This section describes the command-line options that are only meaningful
2511 for Objective-C and Objective-C++ programs, but you can also use most of
2512 the language-independent GNU compiler options.
2513 For example, you might compile a file @code{some_class.m} like this:
2514
2515 @smallexample
2516 gcc -g -fgnu-runtime -O -c some_class.m
2517 @end smallexample
2518
2519 @noindent
2520 In this example, @option{-fgnu-runtime} is an option meant only for
2521 Objective-C and Objective-C++ programs; you can use the other options with
2522 any language supported by GCC@.
2523
2524 Note that since Objective-C is an extension of the C language, Objective-C
2525 compilations may also use options specific to the C front-end (e.g.,
2526 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2527 C++-specific options (e.g., @option{-Wabi}).
2528
2529 Here is a list of options that are @emph{only} for compiling Objective-C
2530 and Objective-C++ programs:
2531
2532 @table @gcctabopt
2533 @item -fconstant-string-class=@var{class-name}
2534 @opindex fconstant-string-class
2535 Use @var{class-name} as the name of the class to instantiate for each
2536 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2537 class name is @code{NXConstantString} if the GNU runtime is being used, and
2538 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2539 @option{-fconstant-cfstrings} option, if also present, will override the
2540 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2541 to be laid out as constant CoreFoundation strings.
2542
2543 @item -fgnu-runtime
2544 @opindex fgnu-runtime
2545 Generate object code compatible with the standard GNU Objective-C
2546 runtime.  This is the default for most types of systems.
2547
2548 @item -fnext-runtime
2549 @opindex fnext-runtime
2550 Generate output compatible with the NeXT runtime.  This is the default
2551 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2552 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2553 used.
2554
2555 @item -fno-nil-receivers
2556 @opindex fno-nil-receivers
2557 Assume that all Objective-C message dispatches (@code{[receiver
2558 message:arg]}) in this translation unit ensure that the receiver is
2559 not @code{nil}.  This allows for more efficient entry points in the
2560 runtime to be used.  This option is only available in conjunction with
2561 the NeXT runtime and ABI version 0 or 1.
2562
2563 @item -fobjc-abi-version=@var{n}
2564 @opindex fobjc-abi-version
2565 Use version @var{n} of the Objective-C ABI for the selected runtime.
2566 This option is currently supported only for the NeXT runtime.  In that
2567 case, Version 0 is the traditional (32-bit) ABI without support for
2568 properties and other Objective-C 2.0 additions.  Version 1 is the
2569 traditional (32-bit) ABI with support for properties and other
2570 Objective-C 2.0 additions.  Version 2 is the modern (64-bit) ABI.  If
2571 nothing is specified, the default is Version 0 on 32-bit target
2572 machines, and Version 2 on 64-bit target machines.
2573
2574 @item -fobjc-call-cxx-cdtors
2575 @opindex fobjc-call-cxx-cdtors
2576 For each Objective-C class, check if any of its instance variables is a
2577 C++ object with a non-trivial default constructor.  If so, synthesize a
2578 special @code{- (id) .cxx_construct} instance method that will run
2579 non-trivial default constructors on any such instance variables, in order,
2580 and then return @code{self}.  Similarly, check if any instance variable
2581 is a C++ object with a non-trivial destructor, and if so, synthesize a
2582 special @code{- (void) .cxx_destruct} method that will run
2583 all such default destructors, in reverse order.
2584
2585 The @code{- (id) .cxx_construct} and @code{- (void) .cxx_destruct}
2586 methods thusly generated will only operate on instance variables
2587 declared in the current Objective-C class, and not those inherited
2588 from superclasses.  It is the responsibility of the Objective-C
2589 runtime to invoke all such methods in an object's inheritance
2590 hierarchy.  The @code{- (id) .cxx_construct} methods will be invoked
2591 by the runtime immediately after a new object instance is allocated;
2592 the @code{- (void) .cxx_destruct} methods will be invoked immediately
2593 before the runtime deallocates an object instance.
2594
2595 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2596 support for invoking the @code{- (id) .cxx_construct} and
2597 @code{- (void) .cxx_destruct} methods.
2598
2599 @item -fobjc-direct-dispatch
2600 @opindex fobjc-direct-dispatch
2601 Allow fast jumps to the message dispatcher.  On Darwin this is
2602 accomplished via the comm page.
2603
2604 @item -fobjc-exceptions
2605 @opindex fobjc-exceptions
2606 Enable syntactic support for structured exception handling in
2607 Objective-C, similar to what is offered by C++ and Java.  This option
2608 is required to use the Objective-C keywords @code{@@try},
2609 @code{@@throw}, @code{@@catch}, @code{@@finally} and
2610 @code{@@synchronized}.  This option is available with both the GNU
2611 runtime and the NeXT runtime (but not available in conjunction with
2612 the NeXT runtime on Mac OS X 10.2 and earlier).
2613
2614 @item -fobjc-gc
2615 @opindex fobjc-gc
2616 Enable garbage collection (GC) in Objective-C and Objective-C++
2617 programs.  This option is only available with the NeXT runtime; the
2618 GNU runtime has a different garbage collection implementation that
2619 does not require special compiler flags.
2620
2621 @item -fobjc-nilcheck
2622 @opindex fobjc-nilcheck
2623 For the NeXT runtime with version 2 of the ABI, check for a nil
2624 receiver in method invocations before doing the actual method call.
2625 This is the default and can be disabled using
2626 @option{-fno-objc-nilcheck}.  Class methods and super calls are never
2627 checked for nil in this way no matter what this flag is set to.
2628 Currently this flag does nothing when the GNU runtime, or an older
2629 version of the NeXT runtime ABI, is used.
2630
2631 @item -fobjc-std=objc1
2632 @opindex fobjc-std
2633 Conform to the language syntax of Objective-C 1.0, the language
2634 recognized by GCC 4.0.  This only affects the Objective-C additions to
2635 the C/C++ language; it does not affect conformance to C/C++ standards,
2636 which is controlled by the separate C/C++ dialect option flags.  When
2637 this option is used with the Objective-C or Objective-C++ compiler,
2638 any Objective-C syntax that is not recognized by GCC 4.0 is rejected.
2639 This is useful if you need to make sure that your Objective-C code can
2640 be compiled with older versions of GCC.
2641
2642 @item -freplace-objc-classes
2643 @opindex freplace-objc-classes
2644 Emit a special marker instructing @command{ld(1)} not to statically link in
2645 the resulting object file, and allow @command{dyld(1)} to load it in at
2646 run time instead.  This is used in conjunction with the Fix-and-Continue
2647 debugging mode, where the object file in question may be recompiled and
2648 dynamically reloaded in the course of program execution, without the need
2649 to restart the program itself.  Currently, Fix-and-Continue functionality
2650 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2651 and later.
2652
2653 @item -fzero-link
2654 @opindex fzero-link
2655 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2656 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2657 compile time) with static class references that get initialized at load time,
2658 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2659 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2660 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2661 for individual class implementations to be modified during program execution.
2662 The GNU runtime currently always retains calls to @code{objc_get_class("@dots{}")}
2663 regardless of command line options.
2664
2665 @item -gen-decls
2666 @opindex gen-decls
2667 Dump interface declarations for all classes seen in the source file to a
2668 file named @file{@var{sourcename}.decl}.
2669
2670 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
2671 @opindex Wassign-intercept
2672 @opindex Wno-assign-intercept
2673 Warn whenever an Objective-C assignment is being intercepted by the
2674 garbage collector.
2675
2676 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
2677 @opindex Wno-protocol
2678 @opindex Wprotocol
2679 If a class is declared to implement a protocol, a warning is issued for
2680 every method in the protocol that is not implemented by the class.  The
2681 default behavior is to issue a warning for every method not explicitly
2682 implemented in the class, even if a method implementation is inherited
2683 from the superclass.  If you use the @option{-Wno-protocol} option, then
2684 methods inherited from the superclass are considered to be implemented,
2685 and no warning is issued for them.
2686
2687 @item -Wselector @r{(Objective-C and Objective-C++ only)}
2688 @opindex Wselector
2689 @opindex Wno-selector
2690 Warn if multiple methods of different types for the same selector are
2691 found during compilation.  The check is performed on the list of methods
2692 in the final stage of compilation.  Additionally, a check is performed
2693 for each selector appearing in a @code{@@selector(@dots{})}
2694 expression, and a corresponding method for that selector has been found
2695 during compilation.  Because these checks scan the method table only at
2696 the end of compilation, these warnings are not produced if the final
2697 stage of compilation is not reached, for example because an error is
2698 found during compilation, or because the @option{-fsyntax-only} option is
2699 being used.
2700
2701 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
2702 @opindex Wstrict-selector-match
2703 @opindex Wno-strict-selector-match
2704 Warn if multiple methods with differing argument and/or return types are
2705 found for a given selector when attempting to send a message using this
2706 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2707 is off (which is the default behavior), the compiler will omit such warnings
2708 if any differences found are confined to types which share the same size
2709 and alignment.
2710
2711 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
2712 @opindex Wundeclared-selector
2713 @opindex Wno-undeclared-selector
2714 Warn if a @code{@@selector(@dots{})} expression referring to an
2715 undeclared selector is found.  A selector is considered undeclared if no
2716 method with that name has been declared before the
2717 @code{@@selector(@dots{})} expression, either explicitly in an
2718 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2719 an @code{@@implementation} section.  This option always performs its
2720 checks as soon as a @code{@@selector(@dots{})} expression is found,
2721 while @option{-Wselector} only performs its checks in the final stage of
2722 compilation.  This also enforces the coding style convention
2723 that methods and selectors must be declared before being used.
2724
2725 @item -print-objc-runtime-info
2726 @opindex print-objc-runtime-info
2727 Generate C header describing the largest structure that is passed by
2728 value, if any.
2729
2730 @end table
2731
2732 @node Language Independent Options
2733 @section Options to Control Diagnostic Messages Formatting
2734 @cindex options to control diagnostics formatting
2735 @cindex diagnostic messages
2736 @cindex message formatting
2737
2738 Traditionally, diagnostic messages have been formatted irrespective of
2739 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2740 below can be used to control the diagnostic messages formatting
2741 algorithm, e.g.@: how many characters per line, how often source location
2742 information should be reported.  Right now, only the C++ front end can
2743 honor these options.  However it is expected, in the near future, that
2744 the remaining front ends would be able to digest them correctly.
2745
2746 @table @gcctabopt
2747 @item -fmessage-length=@var{n}
2748 @opindex fmessage-length
2749 Try to format error messages so that they fit on lines of about @var{n}
2750 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2751 the front ends supported by GCC@.  If @var{n} is zero, then no
2752 line-wrapping will be done; each error message will appear on a single
2753 line.
2754
2755 @opindex fdiagnostics-show-location
2756 @item -fdiagnostics-show-location=once
2757 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2758 reporter to emit @emph{once} source location information; that is, in
2759 case the message is too long to fit on a single physical line and has to
2760 be wrapped, the source location won't be emitted (as prefix) again,
2761 over and over, in subsequent continuation lines.  This is the default
2762 behavior.
2763
2764 @item -fdiagnostics-show-location=every-line
2765 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2766 messages reporter to emit the same source location information (as
2767 prefix) for physical lines that result from the process of breaking
2768 a message which is too long to fit on a single line.
2769
2770 @item -fno-diagnostics-show-option
2771 @opindex fno-diagnostics-show-option
2772 @opindex fdiagnostics-show-option
2773 By default, each diagnostic emitted includes text which indicates the
2774 command line option that directly controls the diagnostic (if such an
2775 option is known to the diagnostic machinery).  Specifying the
2776 @option{-fno-diagnostics-show-option} flag suppresses that behavior.
2777
2778 @item -Wcoverage-mismatch
2779 @opindex Wcoverage-mismatch
2780 Warn if feedback profiles do not match when using the
2781 @option{-fprofile-use} option.
2782 If a source file was changed between @option{-fprofile-gen} and
2783 @option{-fprofile-use}, the files with the profile feedback can fail
2784 to match the source file and GCC can not use the profile feedback
2785 information.  By default, this warning is enabled and is treated as an
2786 error.  @option{-Wno-coverage-mismatch} can be used to disable the
2787 warning or @option{-Wno-error=coverage-mismatch} can be used to
2788 disable the error.  Disable the error for this warning can result in
2789 poorly optimized code, so disabling the error is useful only in the
2790 case of very minor changes such as bug fixes to an existing code-base.
2791 Completely disabling the warning is not recommended.
2792
2793 @end table
2794
2795 @node Warning Options
2796 @section Options to Request or Suppress Warnings
2797 @cindex options to control warnings
2798 @cindex warning messages
2799 @cindex messages, warning
2800 @cindex suppressing warnings
2801
2802 Warnings are diagnostic messages that report constructions which
2803 are not inherently erroneous but which are risky or suggest there
2804 may have been an error.
2805
2806 The following language-independent options do not enable specific
2807 warnings but control the kinds of diagnostics produced by GCC.
2808
2809 @table @gcctabopt
2810 @cindex syntax checking
2811 @item -fsyntax-only
2812 @opindex fsyntax-only
2813 Check the code for syntax errors, but don't do anything beyond that.
2814
2815 @item -fmax-errors=@var{n}
2816 @opindex fmax-errors
2817 Limits the maximum number of error messages to @var{n}, at which point
2818 GCC bails out rather than attempting to continue processing the source
2819 code.  If @var{n} is 0 (the default), there is no limit on the number
2820 of error messages produced.  If @option{-Wfatal-errors} is also
2821 specified, then @option{-Wfatal-errors} takes precedence over this
2822 option.
2823
2824 @item -w
2825 @opindex w
2826 Inhibit all warning messages.
2827
2828 @item -Werror
2829 @opindex Werror
2830 @opindex Wno-error
2831 Make all warnings into errors.
2832
2833 @item -Werror=
2834 @opindex Werror=
2835 @opindex Wno-error=
2836 Make the specified warning into an error.  The specifier for a warning
2837 is appended, for example @option{-Werror=switch} turns the warnings
2838 controlled by @option{-Wswitch} into errors.  This switch takes a
2839 negative form, to be used to negate @option{-Werror} for specific
2840 warnings, for example @option{-Wno-error=switch} makes
2841 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2842 is in effect.
2843
2844 The warning message for each controllable warning includes the
2845 option which controls the warning.  That option can then be used with
2846 @option{-Werror=} and @option{-Wno-error=} as described above.
2847 (Printing of the option in the warning message can be disabled using the
2848 @option{-fno-diagnostics-show-option} flag.)
2849
2850 Note that specifying @option{-Werror=}@var{foo} automatically implies
2851 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2852 imply anything.
2853
2854 @item -Wfatal-errors
2855 @opindex Wfatal-errors
2856 @opindex Wno-fatal-errors
2857 This option causes the compiler to abort compilation on the first error
2858 occurred rather than trying to keep going and printing further error
2859 messages.
2860
2861 @end table
2862
2863 You can request many specific warnings with options beginning
2864 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2865 implicit declarations.  Each of these specific warning options also
2866 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2867 example, @option{-Wno-implicit}.  This manual lists only one of the
2868 two forms, whichever is not the default.  For further,
2869 language-specific options also refer to @ref{C++ Dialect Options} and
2870 @ref{Objective-C and Objective-C++ Dialect Options}.
2871
2872 When an unrecognized warning option is requested (e.g.,
2873 @option{-Wunknown-warning}), GCC will emit a diagnostic stating
2874 that the option is not recognized.  However, if the @option{-Wno-} form
2875 is used, the behavior is slightly different: No diagnostic will be
2876 produced for @option{-Wno-unknown-warning} unless other diagnostics
2877 are being produced.  This allows the use of new @option{-Wno-} options
2878 with old compilers, but if something goes wrong, the compiler will
2879 warn that an unrecognized option was used.
2880
2881 @table @gcctabopt
2882 @item -pedantic
2883 @opindex pedantic
2884 Issue all the warnings demanded by strict ISO C and ISO C++;
2885 reject all programs that use forbidden extensions, and some other
2886 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2887 version of the ISO C standard specified by any @option{-std} option used.
2888
2889 Valid ISO C and ISO C++ programs should compile properly with or without
2890 this option (though a rare few will require @option{-ansi} or a
2891 @option{-std} option specifying the required version of ISO C)@.  However,
2892 without this option, certain GNU extensions and traditional C and C++
2893 features are supported as well.  With this option, they are rejected.
2894
2895 @option{-pedantic} does not cause warning messages for use of the
2896 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2897 warnings are also disabled in the expression that follows
2898 @code{__extension__}.  However, only system header files should use
2899 these escape routes; application programs should avoid them.
2900 @xref{Alternate Keywords}.
2901
2902 Some users try to use @option{-pedantic} to check programs for strict ISO
2903 C conformance.  They soon find that it does not do quite what they want:
2904 it finds some non-ISO practices, but not all---only those for which
2905 ISO C @emph{requires} a diagnostic, and some others for which
2906 diagnostics have been added.
2907
2908 A feature to report any failure to conform to ISO C might be useful in
2909 some instances, but would require considerable additional work and would
2910 be quite different from @option{-pedantic}.  We don't have plans to
2911 support such a feature in the near future.
2912
2913 Where the standard specified with @option{-std} represents a GNU
2914 extended dialect of C, such as @samp{gnu90} or @samp{gnu99}, there is a
2915 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2916 extended dialect is based.  Warnings from @option{-pedantic} are given
2917 where they are required by the base standard.  (It would not make sense
2918 for such warnings to be given only for features not in the specified GNU
2919 C dialect, since by definition the GNU dialects of C include all
2920 features the compiler supports with the given option, and there would be
2921 nothing to warn about.)
2922
2923 @item -pedantic-errors
2924 @opindex pedantic-errors
2925 Like @option{-pedantic}, except that errors are produced rather than
2926 warnings.
2927
2928 @item -Wall
2929 @opindex Wall
2930 @opindex Wno-all
2931 This enables all the warnings about constructions that some users
2932 consider questionable, and that are easy to avoid (or modify to
2933 prevent the warning), even in conjunction with macros.  This also
2934 enables some language-specific warnings described in @ref{C++ Dialect
2935 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2936
2937 @option{-Wall} turns on the following warning flags:
2938
2939 @gccoptlist{-Waddress   @gol
2940 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2941 -Wc++0x-compat  @gol
2942 -Wchar-subscripts  @gol
2943 -Wenum-compare @r{(in C/Objc; this is on by default in C++)} @gol
2944 -Wimplicit-int @r{(C and Objective-C only)} @gol
2945 -Wimplicit-function-declaration @r{(C and Objective-C only)} @gol
2946 -Wcomment  @gol
2947 -Wformat   @gol
2948 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2949 -Wmaybe-uninitialized @gol
2950 -Wmissing-braces  @gol
2951 -Wnonnull  @gol
2952 -Wparentheses  @gol
2953 -Wpointer-sign  @gol
2954 -Wreorder   @gol
2955 -Wreturn-type  @gol
2956 -Wsequence-point  @gol
2957 -Wsign-compare @r{(only in C++)}  @gol
2958 -Wstrict-aliasing  @gol
2959 -Wstrict-overflow=1  @gol
2960 -Wswitch  @gol
2961 -Wtrigraphs  @gol
2962 -Wuninitialized  @gol
2963 -Wunknown-pragmas  @gol
2964 -Wunused-function  @gol
2965 -Wunused-label     @gol
2966 -Wunused-value     @gol
2967 -Wunused-variable  @gol
2968 -Wvolatile-register-var @gol
2969 }
2970
2971 Note that some warning flags are not implied by @option{-Wall}.  Some of
2972 them warn about constructions that users generally do not consider
2973 questionable, but which occasionally you might wish to check for;
2974 others warn about constructions that are necessary or hard to avoid in
2975 some cases, and there is no simple way to modify the code to suppress
2976 the warning. Some of them are enabled by @option{-Wextra} but many of
2977 them must be enabled individually.
2978
2979 @item -Wextra
2980 @opindex W
2981 @opindex Wextra
2982 @opindex Wno-extra
2983 This enables some extra warning flags that are not enabled by
2984 @option{-Wall}. (This option used to be called @option{-W}.  The older
2985 name is still supported, but the newer name is more descriptive.)
2986
2987 @gccoptlist{-Wclobbered  @gol
2988 -Wempty-body  @gol
2989 -Wignored-qualifiers @gol
2990 -Wmissing-field-initializers  @gol
2991 -Wmissing-parameter-type @r{(C only)}  @gol
2992 -Wold-style-declaration @r{(C only)}  @gol
2993 -Woverride-init  @gol
2994 -Wsign-compare  @gol
2995 -Wtype-limits  @gol
2996 -Wuninitialized  @gol
2997 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)} @gol
2998 -Wunused-but-set-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2999 }
3000
3001 The option @option{-Wextra} also prints warning messages for the
3002 following cases:
3003
3004 @itemize @bullet
3005
3006 @item
3007 A pointer is compared against integer zero with @samp{<}, @samp{<=},
3008 @samp{>}, or @samp{>=}.
3009
3010 @item
3011 (C++ only) An enumerator and a non-enumerator both appear in a
3012 conditional expression.
3013
3014 @item
3015 (C++ only) Ambiguous virtual bases.
3016
3017 @item
3018 (C++ only) Subscripting an array which has been declared @samp{register}.
3019
3020 @item
3021 (C++ only) Taking the address of a variable which has been declared
3022 @samp{register}.
3023
3024 @item
3025 (C++ only) A base class is not initialized in a derived class' copy
3026 constructor.
3027
3028 @end itemize
3029
3030 @item -Wchar-subscripts
3031 @opindex Wchar-subscripts
3032 @opindex Wno-char-subscripts
3033 Warn if an array subscript has type @code{char}.  This is a common cause
3034 of error, as programmers often forget that this type is signed on some
3035 machines.
3036 This warning is enabled by @option{-Wall}.
3037
3038 @item -Wcomment
3039 @opindex Wcomment
3040 @opindex Wno-comment
3041 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
3042 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
3043 This warning is enabled by @option{-Wall}.
3044
3045 @item -Wno-cpp
3046 @r{(C, Objective-C, C++, Objective-C++ and Fortran only)}
3047
3048 Suppress warning messages emitted by @code{#warning} directives.
3049
3050 @item -Wdouble-promotion @r{(C, C++, Objective-C and Objective-C++ only)}
3051 @opindex Wdouble-promotion
3052 @opindex Wno-double-promotion
3053 Give a warning when a value of type @code{float} is implicitly
3054 promoted to @code{double}.  CPUs with a 32-bit ``single-precision''
3055 floating-point unit implement @code{float} in hardware, but emulate
3056 @code{double} in software.  On such a machine, doing computations
3057 using @code{double} values is much more expensive because of the
3058 overhead required for software emulation.
3059
3060 It is easy to accidentally do computations with @code{double} because
3061 floating-point literals are implicitly of type @code{double}.  For
3062 example, in:
3063 @smallexample
3064 @group
3065 float area(float radius)
3066 @{
3067    return 3.14159 * radius * radius;
3068 @}
3069 @end group
3070 @end smallexample
3071 the compiler will perform the entire computation with @code{double}
3072 because the floating-point literal is a @code{double}.
3073
3074 @item -Wformat
3075 @opindex Wformat
3076 @opindex Wno-format
3077 @opindex ffreestanding
3078 @opindex fno-builtin
3079 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
3080 the arguments supplied have types appropriate to the format string
3081 specified, and that the conversions specified in the format string make
3082 sense.  This includes standard functions, and others specified by format
3083 attributes (@pxref{Function Attributes}), in the @code{printf},
3084 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
3085 not in the C standard) families (or other target-specific families).
3086 Which functions are checked without format attributes having been
3087 specified depends on the standard version selected, and such checks of
3088 functions without the attribute specified are disabled by
3089 @option{-ffreestanding} or @option{-fno-builtin}.
3090
3091 The formats are checked against the format features supported by GNU
3092 libc version 2.2.  These include all ISO C90 and C99 features, as well
3093 as features from the Single Unix Specification and some BSD and GNU
3094 extensions.  Other library implementations may not support all these
3095 features; GCC does not support warning about features that go beyond a
3096 particular library's limitations.  However, if @option{-pedantic} is used
3097 with @option{-Wformat}, warnings will be given about format features not
3098 in the selected standard version (but not for @code{strfmon} formats,
3099 since those are not in any version of the C standard).  @xref{C Dialect
3100 Options,,Options Controlling C Dialect}.
3101
3102 Since @option{-Wformat} also checks for null format arguments for
3103 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
3104
3105 @option{-Wformat} is included in @option{-Wall}.  For more control over some
3106 aspects of format checking, the options @option{-Wformat-y2k},
3107 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
3108 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
3109 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
3110
3111 @item -Wformat-y2k
3112 @opindex Wformat-y2k
3113 @opindex Wno-format-y2k
3114 If @option{-Wformat} is specified, also warn about @code{strftime}
3115 formats which may yield only a two-digit year.
3116
3117 @item -Wno-format-contains-nul
3118 @opindex Wno-format-contains-nul
3119 @opindex Wformat-contains-nul
3120 If @option{-Wformat} is specified, do not warn about format strings that
3121 contain NUL bytes.
3122
3123 @item -Wno-format-extra-args
3124 @opindex Wno-format-extra-args
3125 @opindex Wformat-extra-args
3126 If @option{-Wformat} is specified, do not warn about excess arguments to a
3127 @code{printf} or @code{scanf} format function.  The C standard specifies
3128 that such arguments are ignored.
3129
3130 Where the unused arguments lie between used arguments that are
3131 specified with @samp{$} operand number specifications, normally
3132 warnings are still given, since the implementation could not know what
3133 type to pass to @code{va_arg} to skip the unused arguments.  However,
3134 in the case of @code{scanf} formats, this option will suppress the
3135 warning if the unused arguments are all pointers, since the Single
3136 Unix Specification says that such unused arguments are allowed.
3137
3138 @item -Wno-format-zero-length @r{(C and Objective-C only)}
3139 @opindex Wno-format-zero-length
3140 @opindex Wformat-zero-length
3141 If @option{-Wformat} is specified, do not warn about zero-length formats.
3142 The C standard specifies that zero-length formats are allowed.
3143
3144 @item -Wformat-nonliteral
3145 @opindex Wformat-nonliteral
3146 @opindex Wno-format-nonliteral
3147 If @option{-Wformat} is specified, also warn if the format string is not a
3148 string literal and so cannot be checked, unless the format function
3149 takes its format arguments as a @code{va_list}.
3150
3151 @item -Wformat-security
3152 @opindex Wformat-security
3153 @opindex Wno-format-security
3154 If @option{-Wformat} is specified, also warn about uses of format
3155 functions that represent possible security problems.  At present, this
3156 warns about calls to @code{printf} and @code{scanf} functions where the
3157 format string is not a string literal and there are no format arguments,
3158 as in @code{printf (foo);}.  This may be a security hole if the format
3159 string came from untrusted input and contains @samp{%n}.  (This is
3160 currently a subset of what @option{-Wformat-nonliteral} warns about, but
3161 in future warnings may be added to @option{-Wformat-security} that are not
3162 included in @option{-Wformat-nonliteral}.)
3163
3164 @item -Wformat=2
3165 @opindex Wformat=2
3166 @opindex Wno-format=2
3167 Enable @option{-Wformat} plus format checks not included in
3168 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
3169 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
3170
3171 @item -Wnonnull @r{(C and Objective-C only)}
3172 @opindex Wnonnull
3173 @opindex Wno-nonnull
3174 Warn about passing a null pointer for arguments marked as
3175 requiring a non-null value by the @code{nonnull} function attribute.
3176
3177 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
3178 can be disabled with the @option{-Wno-nonnull} option.
3179
3180 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
3181 @opindex Winit-self
3182 @opindex Wno-init-self
3183 Warn about uninitialized variables which are initialized with themselves.
3184 Note this option can only be used with the @option{-Wuninitialized} option.
3185
3186 For example, GCC will warn about @code{i} being uninitialized in the
3187 following snippet only when @option{-Winit-self} has been specified:
3188 @smallexample
3189 @group
3190 int f()
3191 @{
3192   int i = i;
3193   return i;
3194 @}
3195 @end group
3196 @end smallexample
3197
3198 @item -Wimplicit-int @r{(C and Objective-C only)}
3199 @opindex Wimplicit-int
3200 @opindex Wno-implicit-int
3201 Warn when a declaration does not specify a type.
3202 This warning is enabled by @option{-Wall}.
3203
3204 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
3205 @opindex Wimplicit-function-declaration
3206 @opindex Wno-implicit-function-declaration
3207 Give a warning whenever a function is used before being declared. In
3208 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
3209 enabled by default and it is made into an error by
3210 @option{-pedantic-errors}. This warning is also enabled by
3211 @option{-Wall}.
3212
3213 @item -Wimplicit @r{(C and Objective-C only)}
3214 @opindex Wimplicit
3215 @opindex Wno-implicit
3216 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
3217 This warning is enabled by @option{-Wall}.
3218
3219 @item -Wignored-qualifiers @r{(C and C++ only)}
3220 @opindex Wignored-qualifiers
3221 @opindex Wno-ignored-qualifiers
3222 Warn if the return type of a function has a type qualifier
3223 such as @code{const}.  For ISO C such a type qualifier has no effect,
3224 since the value returned by a function is not an lvalue.
3225 For C++, the warning is only emitted for scalar types or @code{void}.
3226 ISO C prohibits qualified @code{void} return types on function
3227 definitions, so such return types always receive a warning
3228 even without this option.
3229
3230 This warning is also enabled by @option{-Wextra}.
3231
3232 @item -Wmain
3233 @opindex Wmain
3234 @opindex Wno-main
3235 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
3236 a function with external linkage, returning int, taking either zero
3237 arguments, two, or three arguments of appropriate types.  This warning
3238 is enabled by default in C++ and is enabled by either @option{-Wall}
3239 or @option{-pedantic}.
3240
3241 @item -Wmissing-braces
3242 @opindex Wmissing-braces
3243 @opindex Wno-missing-braces
3244 Warn if an aggregate or union initializer is not fully bracketed.  In
3245 the following example, the initializer for @samp{a} is not fully
3246 bracketed, but that for @samp{b} is fully bracketed.
3247
3248 @smallexample
3249 int a[2][2] = @{ 0, 1, 2, 3 @};
3250 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
3251 @end smallexample
3252
3253 This warning is enabled by @option{-Wall}.
3254
3255 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
3256 @opindex Wmissing-include-dirs
3257 @opindex Wno-missing-include-dirs
3258 Warn if a user-supplied include directory does not exist.
3259
3260 @item -Wparentheses
3261 @opindex Wparentheses
3262 @opindex Wno-parentheses
3263 Warn if parentheses are omitted in certain contexts, such
3264 as when there is an assignment in a context where a truth value
3265 is expected, or when operators are nested whose precedence people
3266 often get confused about.
3267
3268 Also warn if a comparison like @samp{x<=y<=z} appears; this is
3269 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
3270 interpretation from that of ordinary mathematical notation.
3271
3272 Also warn about constructions where there may be confusion to which
3273 @code{if} statement an @code{else} branch belongs.  Here is an example of
3274 such a case:
3275
3276 @smallexample
3277 @group
3278 @{
3279   if (a)
3280     if (b)
3281       foo ();
3282   else
3283     bar ();
3284 @}
3285 @end group
3286 @end smallexample
3287
3288 In C/C++, every @code{else} branch belongs to the innermost possible
3289 @code{if} statement, which in this example is @code{if (b)}.  This is
3290 often not what the programmer expected, as illustrated in the above
3291 example by indentation the programmer chose.  When there is the
3292 potential for this confusion, GCC will issue a warning when this flag
3293 is specified.  To eliminate the warning, add explicit braces around
3294 the innermost @code{if} statement so there is no way the @code{else}
3295 could belong to the enclosing @code{if}.  The resulting code would
3296 look like this:
3297
3298 @smallexample
3299 @group
3300 @{
3301   if (a)
3302     @{
3303       if (b)
3304         foo ();
3305       else
3306         bar ();
3307     @}
3308 @}
3309 @end group
3310 @end smallexample
3311
3312 Also warn for dangerous uses of the
3313 ?: with omitted middle operand GNU extension. When the condition
3314 in the ?: operator is a boolean expression the omitted value will
3315 be always 1. Often the user expects it to be a value computed
3316 inside the conditional expression instead.
3317
3318 This warning is enabled by @option{-Wall}.
3319
3320 @item -Wsequence-point
3321 @opindex Wsequence-point
3322 @opindex Wno-sequence-point
3323 Warn about code that may have undefined semantics because of violations
3324 of sequence point rules in the C and C++ standards.
3325
3326 The C and C++ standards defines the order in which expressions in a C/C++
3327 program are evaluated in terms of @dfn{sequence points}, which represent
3328 a partial ordering between the execution of parts of the program: those
3329 executed before the sequence point, and those executed after it.  These
3330 occur after the evaluation of a full expression (one which is not part
3331 of a larger expression), after the evaluation of the first operand of a
3332 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3333 function is called (but after the evaluation of its arguments and the
3334 expression denoting the called function), and in certain other places.
3335 Other than as expressed by the sequence point rules, the order of
3336 evaluation of subexpressions of an expression is not specified.  All
3337 these rules describe only a partial order rather than a total order,
3338 since, for example, if two functions are called within one expression
3339 with no sequence point between them, the order in which the functions
3340 are called is not specified.  However, the standards committee have
3341 ruled that function calls do not overlap.
3342
3343 It is not specified when between sequence points modifications to the
3344 values of objects take effect.  Programs whose behavior depends on this
3345 have undefined behavior; the C and C++ standards specify that ``Between
3346 the previous and next sequence point an object shall have its stored
3347 value modified at most once by the evaluation of an expression.
3348 Furthermore, the prior value shall be read only to determine the value
3349 to be stored.''.  If a program breaks these rules, the results on any
3350 particular implementation are entirely unpredictable.
3351
3352 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3353 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3354 diagnosed by this option, and it may give an occasional false positive
3355 result, but in general it has been found fairly effective at detecting
3356 this sort of problem in programs.
3357
3358 The standard is worded confusingly, therefore there is some debate
3359 over the precise meaning of the sequence point rules in subtle cases.
3360 Links to discussions of the problem, including proposed formal
3361 definitions, may be found on the GCC readings page, at
3362 @uref{http://gcc.gnu.org/@/readings.html}.
3363
3364 This warning is enabled by @option{-Wall} for C and C++.
3365
3366 @item -Wreturn-type
3367 @opindex Wreturn-type
3368 @opindex Wno-return-type
3369 Warn whenever a function is defined with a return-type that defaults
3370 to @code{int}.  Also warn about any @code{return} statement with no
3371 return-value in a function whose return-type is not @code{void}
3372 (falling off the end of the function body is considered returning
3373 without a value), and about a @code{return} statement with an
3374 expression in a function whose return-type is @code{void}.
3375
3376 For C++, a function without return type always produces a diagnostic
3377 message, even when @option{-Wno-return-type} is specified.  The only
3378 exceptions are @samp{main} and functions defined in system headers.
3379
3380 This warning is enabled by @option{-Wall}.
3381
3382 @item -Wswitch
3383 @opindex Wswitch
3384 @opindex Wno-switch
3385 Warn whenever a @code{switch} statement has an index of enumerated type
3386 and lacks a @code{case} for one or more of the named codes of that
3387 enumeration.  (The presence of a @code{default} label prevents this
3388 warning.)  @code{case} labels outside the enumeration range also
3389 provoke warnings when this option is used (even if there is a
3390 @code{default} label).
3391 This warning is enabled by @option{-Wall}.
3392
3393 @item -Wswitch-default
3394 @opindex Wswitch-default
3395 @opindex Wno-switch-default
3396 Warn whenever a @code{switch} statement does not have a @code{default}
3397 case.
3398
3399 @item -Wswitch-enum
3400 @opindex Wswitch-enum
3401 @opindex Wno-switch-enum
3402 Warn whenever a @code{switch} statement has an index of enumerated type
3403 and lacks a @code{case} for one or more of the named codes of that
3404 enumeration.  @code{case} labels outside the enumeration range also
3405 provoke warnings when this option is used.  The only difference
3406 between @option{-Wswitch} and this option is that this option gives a
3407 warning about an omitted enumeration code even if there is a
3408 @code{default} label.
3409
3410 @item -Wsync-nand @r{(C and C++ only)}
3411 @opindex Wsync-nand
3412 @opindex Wno-sync-nand
3413 Warn when @code{__sync_fetch_and_nand} and @code{__sync_nand_and_fetch}
3414 built-in functions are used.  These functions changed semantics in GCC 4.4.
3415
3416 @item -Wtrigraphs
3417 @opindex Wtrigraphs
3418 @opindex Wno-trigraphs
3419 Warn if any trigraphs are encountered that might change the meaning of
3420 the program (trigraphs within comments are not warned about).
3421 This warning is enabled by @option{-Wall}.
3422
3423 @item -Wunused-but-set-parameter
3424 @opindex Wunused-but-set-parameter
3425 @opindex Wno-unused-but-set-parameter
3426 Warn whenever a function parameter is assigned to, but otherwise unused
3427 (aside from its declaration).
3428
3429 To suppress this warning use the @samp{unused} attribute
3430 (@pxref{Variable Attributes}).
3431
3432 This warning is also enabled by @option{-Wunused} together with
3433 @option{-Wextra}.
3434
3435 @item -Wunused-but-set-variable
3436 @opindex Wunused-but-set-variable
3437 @opindex Wno-unused-but-set-variable
3438 Warn whenever a local variable is assigned to, but otherwise unused
3439 (aside from its declaration).
3440 This warning is enabled by @option{-Wall}.
3441
3442 To suppress this warning use the @samp{unused} attribute
3443 (@pxref{Variable Attributes}).
3444
3445 This warning is also enabled by @option{-Wunused}, which is enabled
3446 by @option{-Wall}.
3447
3448 @item -Wunused-function
3449 @opindex Wunused-function
3450 @opindex Wno-unused-function
3451 Warn whenever a static function is declared but not defined or a
3452 non-inline static function is unused.
3453 This warning is enabled by @option{-Wall}.
3454
3455 @item -Wunused-label
3456 @opindex Wunused-label
3457 @opindex Wno-unused-label
3458 Warn whenever a label is declared but not used.
3459 This warning is enabled by @option{-Wall}.
3460
3461 To suppress this warning use the @samp{unused} attribute
3462 (@pxref{Variable Attributes}).
3463
3464 @item -Wunused-parameter
3465 @opindex Wunused-parameter
3466 @opindex Wno-unused-parameter
3467 Warn whenever a function parameter is unused aside from its declaration.
3468
3469 To suppress this warning use the @samp{unused} attribute
3470 (@pxref{Variable Attributes}).
3471
3472 @item -Wno-unused-result
3473 @opindex Wunused-result
3474 @opindex Wno-unused-result
3475 Do not warn if a caller of a function marked with attribute
3476 @code{warn_unused_result} (@pxref{Variable Attributes}) does not use
3477 its return value. The default is @option{-Wunused-result}.
3478
3479 @item -Wunused-variable
3480 @opindex Wunused-variable
3481 @opindex Wno-unused-variable
3482 Warn whenever a local variable or non-constant static variable is unused
3483 aside from its declaration.
3484 This warning is enabled by @option{-Wall}.
3485
3486 To suppress this warning use the @samp{unused} attribute
3487 (@pxref{Variable Attributes}).
3488
3489 @item -Wunused-value
3490 @opindex Wunused-value
3491 @opindex Wno-unused-value
3492 Warn whenever a statement computes a result that is explicitly not
3493 used. To suppress this warning cast the unused expression to
3494 @samp{void}. This includes an expression-statement or the left-hand
3495 side of a comma expression that contains no side effects. For example,
3496 an expression such as @samp{x[i,j]} will cause a warning, while
3497 @samp{x[(void)i,j]} will not.
3498
3499 This warning is enabled by @option{-Wall}.
3500
3501 @item -Wunused
3502 @opindex Wunused
3503 @opindex Wno-unused
3504 All the above @option{-Wunused} options combined.
3505
3506 In order to get a warning about an unused function parameter, you must
3507 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3508 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3509
3510 @item -Wuninitialized
3511 @opindex Wuninitialized
3512 @opindex Wno-uninitialized
3513 Warn if an automatic variable is used without first being initialized
3514 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3515 warn if a non-static reference or non-static @samp{const} member
3516 appears in a class without constructors.
3517
3518 If you want to warn about code which uses the uninitialized value of the
3519 variable in its own initializer, use the @option{-Winit-self} option.
3520
3521 These warnings occur for individual uninitialized or clobbered
3522 elements of structure, union or array variables as well as for
3523 variables which are uninitialized or clobbered as a whole.  They do
3524 not occur for variables or elements declared @code{volatile}.  Because
3525 these warnings depend on optimization, the exact variables or elements
3526 for which there are warnings will depend on the precise optimization
3527 options and version of GCC used.
3528
3529 Note that there may be no warning about a variable that is used only
3530 to compute a value that itself is never used, because such
3531 computations may be deleted by data flow analysis before the warnings
3532 are printed.
3533
3534 @item -Wmaybe-uninitialized
3535 @opindex Wmaybe-uninitialized
3536 @opindex Wno-maybe-uninitialized
3537 For an automatic variable, if there exists a path from the function
3538 entry to a use of the variable that is initialized, but there exist
3539 some other paths the variable is not initialized, the compiler will
3540 emit a warning if it can not prove the uninitialized paths do not
3541 happen at runtime. These warnings are made optional because GCC is
3542 not smart enough to see all the reasons why the code might be correct
3543 despite appearing to have an error.  Here is one example of how
3544 this can happen:
3545
3546 @smallexample
3547 @group
3548 @{
3549   int x;
3550   switch (y)
3551     @{
3552     case 1: x = 1;
3553       break;
3554     case 2: x = 4;
3555       break;
3556     case 3: x = 5;
3557     @}
3558   foo (x);
3559 @}
3560 @end group
3561 @end smallexample
3562
3563 @noindent
3564 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3565 always initialized, but GCC doesn't know this. To suppress the
3566 warning, the user needs to provide a default case with assert(0) or
3567 similar code.
3568
3569 @cindex @code{longjmp} warnings
3570 This option also warns when a non-volatile automatic variable might be
3571 changed by a call to @code{longjmp}.  These warnings as well are possible
3572 only in optimizing compilation.
3573
3574 The compiler sees only the calls to @code{setjmp}.  It cannot know
3575 where @code{longjmp} will be called; in fact, a signal handler could
3576 call it at any point in the code.  As a result, you may get a warning
3577 even when there is in fact no problem because @code{longjmp} cannot
3578 in fact be called at the place which would cause a problem.
3579
3580 Some spurious warnings can be avoided if you declare all the functions
3581 you use that never return as @code{noreturn}.  @xref{Function
3582 Attributes}.
3583
3584 This warning is enabled by @option{-Wall} or @option{-Wextra}.
3585
3586 @item -Wunknown-pragmas
3587 @opindex Wunknown-pragmas
3588 @opindex Wno-unknown-pragmas
3589 @cindex warning for unknown pragmas
3590 @cindex unknown pragmas, warning
3591 @cindex pragmas, warning of unknown
3592 Warn when a #pragma directive is encountered which is not understood by
3593 GCC@.  If this command line option is used, warnings will even be issued
3594 for unknown pragmas in system header files.  This is not the case if
3595 the warnings were only enabled by the @option{-Wall} command line option.
3596
3597 @item -Wno-pragmas
3598 @opindex Wno-pragmas
3599 @opindex Wpragmas
3600 Do not warn about misuses of pragmas, such as incorrect parameters,
3601 invalid syntax, or conflicts between pragmas.  See also
3602 @samp{-Wunknown-pragmas}.
3603
3604 @item -Wstrict-aliasing
3605 @opindex Wstrict-aliasing
3606 @opindex Wno-strict-aliasing
3607 This option is only active when @option{-fstrict-aliasing} is active.
3608 It warns about code which might break the strict aliasing rules that the
3609 compiler is using for optimization.  The warning does not catch all
3610 cases, but does attempt to catch the more common pitfalls.  It is
3611 included in @option{-Wall}.
3612 It is equivalent to @option{-Wstrict-aliasing=3}
3613
3614 @item -Wstrict-aliasing=n
3615 @opindex Wstrict-aliasing=n
3616 @opindex Wno-strict-aliasing=n
3617 This option is only active when @option{-fstrict-aliasing} is active.
3618 It warns about code which might break the strict aliasing rules that the
3619 compiler is using for optimization.
3620 Higher levels correspond to higher accuracy (fewer false positives).
3621 Higher levels also correspond to more effort, similar to the way -O works.
3622 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3623 with n=3.
3624
3625 Level 1: Most aggressive, quick, least accurate.
3626 Possibly useful when higher levels
3627 do not warn but -fstrict-aliasing still breaks the code, as it has very few
3628 false negatives.  However, it has many false positives.
3629 Warns for all pointer conversions between possibly incompatible types,
3630 even if never dereferenced.  Runs in the frontend only.
3631
3632 Level 2: Aggressive, quick, not too precise.
3633 May still have many false positives (not as many as level 1 though),
3634 and few false negatives (but possibly more than level 1).
3635 Unlike level 1, it only warns when an address is taken.  Warns about
3636 incomplete types.  Runs in the frontend only.
3637
3638 Level 3 (default for @option{-Wstrict-aliasing}):
3639 Should have very few false positives and few false
3640 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3641 Takes care of the common pun+dereference pattern in the frontend:
3642 @code{*(int*)&some_float}.
3643 If optimization is enabled, it also runs in the backend, where it deals
3644 with multiple statement cases using flow-sensitive points-to information.
3645 Only warns when the converted pointer is dereferenced.
3646 Does not warn about incomplete types.
3647
3648 @item -Wstrict-overflow
3649 @itemx -Wstrict-overflow=@var{n}
3650 @opindex Wstrict-overflow
3651 @opindex Wno-strict-overflow
3652 This option is only active when @option{-fstrict-overflow} is active.
3653 It warns about cases where the compiler optimizes based on the
3654 assumption that signed overflow does not occur.  Note that it does not
3655 warn about all cases where the code might overflow: it only warns
3656 about cases where the compiler implements some optimization.  Thus
3657 this warning depends on the optimization level.
3658
3659 An optimization which assumes that signed overflow does not occur is
3660 perfectly safe if the values of the variables involved are such that
3661 overflow never does, in fact, occur.  Therefore this warning can
3662 easily give a false positive: a warning about code which is not
3663 actually a problem.  To help focus on important issues, several
3664 warning levels are defined.  No warnings are issued for the use of
3665 undefined signed overflow when estimating how many iterations a loop
3666 will require, in particular when determining whether a loop will be
3667 executed at all.
3668
3669 @table @gcctabopt
3670 @item -Wstrict-overflow=1
3671 Warn about cases which are both questionable and easy to avoid.  For
3672 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3673 compiler will simplify this to @code{1}.  This level of
3674 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3675 are not, and must be explicitly requested.
3676
3677 @item -Wstrict-overflow=2
3678 Also warn about other cases where a comparison is simplified to a
3679 constant.  For example: @code{abs (x) >= 0}.  This can only be
3680 simplified when @option{-fstrict-overflow} is in effect, because
3681 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3682 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3683 @option{-Wstrict-overflow=2}.
3684
3685 @item -Wstrict-overflow=3
3686 Also warn about other cases where a comparison is simplified.  For
3687 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3688
3689 @item -Wstrict-overflow=4
3690 Also warn about other simplifications not covered by the above cases.
3691 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3692
3693 @item -Wstrict-overflow=5
3694 Also warn about cases where the compiler reduces the magnitude of a
3695 constant involved in a comparison.  For example: @code{x + 2 > y} will
3696 be simplified to @code{x + 1 >= y}.  This is reported only at the
3697 highest warning level because this simplification applies to many
3698 comparisons, so this warning level will give a very large number of
3699 false positives.
3700 @end table
3701
3702 @item -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{]}
3703 @opindex Wsuggest-attribute=
3704 @opindex Wno-suggest-attribute=
3705 Warn for cases where adding an attribute may be beneficial. The
3706 attributes currently supported are listed below.
3707
3708 @table @gcctabopt
3709 @item -Wsuggest-attribute=pure
3710 @itemx -Wsuggest-attribute=const
3711 @itemx -Wsuggest-attribute=noreturn
3712 @opindex Wsuggest-attribute=pure
3713 @opindex Wno-suggest-attribute=pure
3714 @opindex Wsuggest-attribute=const
3715 @opindex Wno-suggest-attribute=const
3716 @opindex Wsuggest-attribute=noreturn
3717 @opindex Wno-suggest-attribute=noreturn
3718
3719 Warn about functions which might be candidates for attributes
3720 @code{pure}, @code{const} or @code{noreturn}.  The compiler only warns for
3721 functions visible in other compilation units or (in the case of @code{pure} and
3722 @code{const}) if it cannot prove that the function returns normally. A function
3723 returns normally if it doesn't contain an infinite loop nor returns abnormally
3724 by throwing, calling @code{abort()} or trapping.  This analysis requires option
3725 @option{-fipa-pure-const}, which is enabled by default at @option{-O} and
3726 higher.  Higher optimization levels improve the accuracy of the analysis.
3727 @end table
3728
3729 @item -Warray-bounds
3730 @opindex Wno-array-bounds
3731 @opindex Warray-bounds
3732 This option is only active when @option{-ftree-vrp} is active
3733 (default for @option{-O2} and above). It warns about subscripts to arrays
3734 that are always out of bounds. This warning is enabled by @option{-Wall}.
3735
3736 @item -Wno-div-by-zero
3737 @opindex Wno-div-by-zero
3738 @opindex Wdiv-by-zero
3739 Do not warn about compile-time integer division by zero.  Floating point
3740 division by zero is not warned about, as it can be a legitimate way of
3741 obtaining infinities and NaNs.
3742
3743 @item -Wsystem-headers
3744 @opindex Wsystem-headers
3745 @opindex Wno-system-headers
3746 @cindex warnings from system headers
3747 @cindex system headers, warnings from
3748 Print warning messages for constructs found in system header files.
3749 Warnings from system headers are normally suppressed, on the assumption
3750 that they usually do not indicate real problems and would only make the
3751 compiler output harder to read.  Using this command line option tells
3752 GCC to emit warnings from system headers as if they occurred in user
3753 code.  However, note that using @option{-Wall} in conjunction with this
3754 option will @emph{not} warn about unknown pragmas in system
3755 headers---for that, @option{-Wunknown-pragmas} must also be used.
3756
3757 @item -Wtrampolines
3758 @opindex Wtrampolines
3759 @opindex Wno-trampolines
3760  Warn about trampolines generated for pointers to nested functions.
3761
3762  A trampoline is a small piece of data or code that is created at run
3763  time on the stack when the address of a nested function is taken, and
3764  is used to call the nested function indirectly.  For some targets, it
3765  is made up of data only and thus requires no special treatment.  But,
3766  for most targets, it is made up of code and thus requires the stack
3767  to be made executable in order for the program to work properly.
3768
3769 @item -Wfloat-equal
3770 @opindex Wfloat-equal
3771 @opindex Wno-float-equal
3772 Warn if floating point values are used in equality comparisons.
3773
3774 The idea behind this is that sometimes it is convenient (for the
3775 programmer) to consider floating-point values as approximations to
3776 infinitely precise real numbers.  If you are doing this, then you need
3777 to compute (by analyzing the code, or in some other way) the maximum or
3778 likely maximum error that the computation introduces, and allow for it
3779 when performing comparisons (and when producing output, but that's a
3780 different problem).  In particular, instead of testing for equality, you
3781 would check to see whether the two values have ranges that overlap; and
3782 this is done with the relational operators, so equality comparisons are
3783 probably mistaken.
3784
3785 @item -Wtraditional @r{(C and Objective-C only)}
3786 @opindex Wtraditional
3787 @opindex Wno-traditional
3788 Warn about certain constructs that behave differently in traditional and
3789 ISO C@.  Also warn about ISO C constructs that have no traditional C
3790 equivalent, and/or problematic constructs which should be avoided.
3791
3792 @itemize @bullet
3793 @item
3794 Macro parameters that appear within string literals in the macro body.
3795 In traditional C macro replacement takes place within string literals,
3796 but does not in ISO C@.
3797
3798 @item
3799 In traditional C, some preprocessor directives did not exist.
3800 Traditional preprocessors would only consider a line to be a directive
3801 if the @samp{#} appeared in column 1 on the line.  Therefore
3802 @option{-Wtraditional} warns about directives that traditional C
3803 understands but would ignore because the @samp{#} does not appear as the
3804 first character on the line.  It also suggests you hide directives like
3805 @samp{#pragma} not understood by traditional C by indenting them.  Some
3806 traditional implementations would not recognize @samp{#elif}, so it
3807 suggests avoiding it altogether.
3808
3809 @item
3810 A function-like macro that appears without arguments.
3811
3812 @item
3813 The unary plus operator.
3814
3815 @item
3816 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3817 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3818 constants.)  Note, these suffixes appear in macros defined in the system
3819 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3820 Use of these macros in user code might normally lead to spurious
3821 warnings, however GCC's integrated preprocessor has enough context to
3822 avoid warning in these cases.
3823
3824 @item
3825 A function declared external in one block and then used after the end of
3826 the block.
3827
3828 @item
3829 A @code{switch} statement has an operand of type @code{long}.
3830
3831 @item
3832 A non-@code{static} function declaration follows a @code{static} one.
3833 This construct is not accepted by some traditional C compilers.
3834
3835 @item
3836 The ISO type of an integer constant has a different width or
3837 signedness from its traditional type.  This warning is only issued if
3838 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3839 typically represent bit patterns, are not warned about.
3840
3841 @item
3842 Usage of ISO string concatenation is detected.
3843
3844 @item
3845 Initialization of automatic aggregates.
3846
3847 @item
3848 Identifier conflicts with labels.  Traditional C lacks a separate
3849 namespace for labels.
3850
3851 @item
3852 Initialization of unions.  If the initializer is zero, the warning is
3853 omitted.  This is done under the assumption that the zero initializer in
3854 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3855 initializer warnings and relies on default initialization to zero in the
3856 traditional C case.
3857
3858 @item
3859 Conversions by prototypes between fixed/floating point values and vice
3860 versa.  The absence of these prototypes when compiling with traditional
3861 C would cause serious problems.  This is a subset of the possible
3862 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3863
3864 @item
3865 Use of ISO C style function definitions.  This warning intentionally is
3866 @emph{not} issued for prototype declarations or variadic functions
3867 because these ISO C features will appear in your code when using
3868 libiberty's traditional C compatibility macros, @code{PARAMS} and
3869 @code{VPARAMS}.  This warning is also bypassed for nested functions
3870 because that feature is already a GCC extension and thus not relevant to
3871 traditional C compatibility.
3872 @end itemize
3873
3874 @item -Wtraditional-conversion @r{(C and Objective-C only)}
3875 @opindex Wtraditional-conversion
3876 @opindex Wno-traditional-conversion
3877 Warn if a prototype causes a type conversion that is different from what
3878 would happen to the same argument in the absence of a prototype.  This
3879 includes conversions of fixed point to floating and vice versa, and
3880 conversions changing the width or signedness of a fixed point argument
3881 except when the same as the default promotion.
3882
3883 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
3884 @opindex Wdeclaration-after-statement
3885 @opindex Wno-declaration-after-statement
3886 Warn when a declaration is found after a statement in a block.  This
3887 construct, known from C++, was introduced with ISO C99 and is by default
3888 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3889 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3890
3891 @item -Wundef
3892 @opindex Wundef
3893 @opindex Wno-undef
3894 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3895
3896 @item -Wno-endif-labels
3897 @opindex Wno-endif-labels
3898 @opindex Wendif-labels
3899 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3900
3901 @item -Wshadow
3902 @opindex Wshadow
3903 @opindex Wno-shadow
3904 Warn whenever a local variable or type declaration shadows another variable,
3905 parameter, type, or class member (in C++), or whenever a built-in function
3906 is shadowed. Note that in C++, the compiler will not warn if a local variable
3907 shadows a struct/class/enum, but will warn if it shadows an explicit typedef.
3908
3909 @item -Wlarger-than=@var{len}
3910 @opindex Wlarger-than=@var{len}
3911 @opindex Wlarger-than-@var{len}
3912 Warn whenever an object of larger than @var{len} bytes is defined.
3913
3914 @item -Wframe-larger-than=@var{len}
3915 @opindex Wframe-larger-than
3916 Warn if the size of a function frame is larger than @var{len} bytes.
3917 The computation done to determine the stack frame size is approximate
3918 and not conservative.
3919 The actual requirements may be somewhat greater than @var{len}
3920 even if you do not get a warning.  In addition, any space allocated
3921 via @code{alloca}, variable-length arrays, or related constructs
3922 is not included by the compiler when determining
3923 whether or not to issue a warning.
3924
3925 @item -Wunsafe-loop-optimizations
3926 @opindex Wunsafe-loop-optimizations
3927 @opindex Wno-unsafe-loop-optimizations
3928 Warn if the loop cannot be optimized because the compiler could not
3929 assume anything on the bounds of the loop indices.  With
3930 @option{-funsafe-loop-optimizations} warn if the compiler made
3931 such assumptions.
3932
3933 @item -Wno-pedantic-ms-format @r{(MinGW targets only)}
3934 @opindex Wno-pedantic-ms-format
3935 @opindex Wpedantic-ms-format
3936 Disables the warnings about non-ISO @code{printf} / @code{scanf} format
3937 width specifiers @code{I32}, @code{I64}, and @code{I} used on Windows targets
3938 depending on the MS runtime, when you are using the options @option{-Wformat}
3939 and @option{-pedantic} without gnu-extensions.
3940
3941 @item -Wpointer-arith
3942 @opindex Wpointer-arith
3943 @opindex Wno-pointer-arith
3944 Warn about anything that depends on the ``size of'' a function type or
3945 of @code{void}.  GNU C assigns these types a size of 1, for
3946 convenience in calculations with @code{void *} pointers and pointers
3947 to functions.  In C++, warn also when an arithmetic operation involves
3948 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3949
3950 @item -Wtype-limits
3951 @opindex Wtype-limits
3952 @opindex Wno-type-limits
3953 Warn if a comparison is always true or always false due to the limited
3954 range of the data type, but do not warn for constant expressions.  For
3955 example, warn if an unsigned variable is compared against zero with
3956 @samp{<} or @samp{>=}.  This warning is also enabled by
3957 @option{-Wextra}.
3958
3959 @item -Wbad-function-cast @r{(C and Objective-C only)}
3960 @opindex Wbad-function-cast
3961 @opindex Wno-bad-function-cast
3962 Warn whenever a function call is cast to a non-matching type.
3963 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3964
3965 @item -Wc++-compat @r{(C and Objective-C only)}
3966 Warn about ISO C constructs that are outside of the common subset of
3967 ISO C and ISO C++, e.g.@: request for implicit conversion from
3968 @code{void *} to a pointer to non-@code{void} type.
3969
3970 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3971 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3972 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3973 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3974
3975 @item -Wcast-qual
3976 @opindex Wcast-qual
3977 @opindex Wno-cast-qual
3978 Warn whenever a pointer is cast so as to remove a type qualifier from
3979 the target type.  For example, warn if a @code{const char *} is cast
3980 to an ordinary @code{char *}.
3981
3982 Also warn when making a cast which introduces a type qualifier in an
3983 unsafe way.  For example, casting @code{char **} to @code{const char **}
3984 is unsafe, as in this example:
3985
3986 @smallexample
3987   /* p is char ** value.  */
3988   const char **q = (const char **) p;
3989   /* Assignment of readonly string to const char * is OK.  */
3990   *q = "string";
3991   /* Now char** pointer points to read-only memory.  */
3992   **p = 'b';
3993 @end smallexample
3994
3995 @item -Wcast-align
3996 @opindex Wcast-align
3997 @opindex Wno-cast-align
3998 Warn whenever a pointer is cast such that the required alignment of the
3999 target is increased.  For example, warn if a @code{char *} is cast to
4000 an @code{int *} on machines where integers can only be accessed at
4001 two- or four-byte boundaries.
4002
4003 @item -Wwrite-strings
4004 @opindex Wwrite-strings
4005 @opindex Wno-write-strings
4006 When compiling C, give string constants the type @code{const
4007 char[@var{length}]} so that copying the address of one into a
4008 non-@code{const} @code{char *} pointer will get a warning.  These
4009 warnings will help you find at compile time code that can try to write
4010 into a string constant, but only if you have been very careful about
4011 using @code{const} in declarations and prototypes.  Otherwise, it will
4012 just be a nuisance. This is why we did not make @option{-Wall} request
4013 these warnings.
4014
4015 When compiling C++, warn about the deprecated conversion from string
4016 literals to @code{char *}.  This warning is enabled by default for C++
4017 programs.
4018
4019 @item -Wclobbered
4020 @opindex Wclobbered
4021 @opindex Wno-clobbered
4022 Warn for variables that might be changed by @samp{longjmp} or
4023 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
4024
4025 @item -Wconversion
4026 @opindex Wconversion
4027 @opindex Wno-conversion
4028 Warn for implicit conversions that may alter a value. This includes
4029 conversions between real and integer, like @code{abs (x)} when
4030 @code{x} is @code{double}; conversions between signed and unsigned,
4031 like @code{unsigned ui = -1}; and conversions to smaller types, like
4032 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
4033 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
4034 changed by the conversion like in @code{abs (2.0)}.  Warnings about
4035 conversions between signed and unsigned integers can be disabled by
4036 using @option{-Wno-sign-conversion}.
4037
4038 For C++, also warn for confusing overload resolution for user-defined
4039 conversions; and conversions that will never use a type conversion
4040 operator: conversions to @code{void}, the same type, a base class or a
4041 reference to them. Warnings about conversions between signed and
4042 unsigned integers are disabled by default in C++ unless
4043 @option{-Wsign-conversion} is explicitly enabled.
4044
4045 @item -Wno-conversion-null @r{(C++ and Objective-C++ only)}
4046 @opindex Wconversion-null
4047 @opindex Wno-conversion-null
4048 Do not warn for conversions between @code{NULL} and non-pointer
4049 types. @option{-Wconversion-null} is enabled by default.
4050
4051 @item -Wempty-body
4052 @opindex Wempty-body
4053 @opindex Wno-empty-body
4054 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
4055 while} statement.  This warning is also enabled by @option{-Wextra}.
4056
4057 @item -Wenum-compare
4058 @opindex Wenum-compare
4059 @opindex Wno-enum-compare
4060 Warn about a comparison between values of different enum types. In C++
4061 this warning is enabled by default.  In C this warning is enabled by
4062 @option{-Wall}.
4063
4064 @item -Wjump-misses-init @r{(C, Objective-C only)}
4065 @opindex Wjump-misses-init
4066 @opindex Wno-jump-misses-init
4067 Warn if a @code{goto} statement or a @code{switch} statement jumps
4068 forward across the initialization of a variable, or jumps backward to a
4069 label after the variable has been initialized.  This only warns about
4070 variables which are initialized when they are declared.  This warning is
4071 only supported for C and Objective C; in C++ this sort of branch is an
4072 error in any case.
4073
4074 @option{-Wjump-misses-init} is included in @option{-Wc++-compat}.  It
4075 can be disabled with the @option{-Wno-jump-misses-init} option.
4076
4077 @item -Wsign-compare
4078 @opindex Wsign-compare
4079 @opindex Wno-sign-compare
4080 @cindex warning for comparison of signed and unsigned values
4081 @cindex comparison of signed and unsigned values, warning
4082 @cindex signed and unsigned values, comparison warning
4083 Warn when a comparison between signed and unsigned values could produce
4084 an incorrect result when the signed value is converted to unsigned.
4085 This warning is also enabled by @option{-Wextra}; to get the other warnings
4086 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
4087
4088 @item -Wsign-conversion
4089 @opindex Wsign-conversion
4090 @opindex Wno-sign-conversion
4091 Warn for implicit conversions that may change the sign of an integer
4092 value, like assigning a signed integer expression to an unsigned
4093 integer variable. An explicit cast silences the warning. In C, this
4094 option is enabled also by @option{-Wconversion}.
4095
4096 @item -Waddress
4097 @opindex Waddress
4098 @opindex Wno-address
4099 Warn about suspicious uses of memory addresses. These include using
4100 the address of a function in a conditional expression, such as
4101 @code{void func(void); if (func)}, and comparisons against the memory
4102 address of a string literal, such as @code{if (x == "abc")}.  Such
4103 uses typically indicate a programmer error: the address of a function
4104 always evaluates to true, so their use in a conditional usually
4105 indicate that the programmer forgot the parentheses in a function
4106 call; and comparisons against string literals result in unspecified
4107 behavior and are not portable in C, so they usually indicate that the
4108 programmer intended to use @code{strcmp}.  This warning is enabled by
4109 @option{-Wall}.
4110
4111 @item -Wlogical-op
4112 @opindex Wlogical-op
4113 @opindex Wno-logical-op
4114 Warn about suspicious uses of logical operators in expressions.
4115 This includes using logical operators in contexts where a
4116 bit-wise operator is likely to be expected.
4117
4118 @item -Waggregate-return
4119 @opindex Waggregate-return
4120 @opindex Wno-aggregate-return
4121 Warn if any functions that return structures or unions are defined or
4122 called.  (In languages where you can return an array, this also elicits
4123 a warning.)
4124
4125 @item -Wno-attributes
4126 @opindex Wno-attributes
4127 @opindex Wattributes
4128 Do not warn if an unexpected @code{__attribute__} is used, such as
4129 unrecognized attributes, function attributes applied to variables,
4130 etc.  This will not stop errors for incorrect use of supported
4131 attributes.
4132
4133 @item -Wno-builtin-macro-redefined
4134 @opindex Wno-builtin-macro-redefined
4135 @opindex Wbuiltin-macro-redefined
4136 Do not warn if certain built-in macros are redefined.  This suppresses
4137 warnings for redefinition of @code{__TIMESTAMP__}, @code{__TIME__},
4138 @code{__DATE__}, @code{__FILE__}, and @code{__BASE_FILE__}.
4139
4140 @item -Wstrict-prototypes @r{(C and Objective-C only)}
4141 @opindex Wstrict-prototypes
4142 @opindex Wno-strict-prototypes
4143 Warn if a function is declared or defined without specifying the
4144 argument types.  (An old-style function definition is permitted without
4145 a warning if preceded by a declaration which specifies the argument
4146 types.)
4147
4148 @item -Wold-style-declaration @r{(C and Objective-C only)}
4149 @opindex Wold-style-declaration
4150 @opindex Wno-old-style-declaration
4151 Warn for obsolescent usages, according to the C Standard, in a
4152 declaration. For example, warn if storage-class specifiers like
4153 @code{static} are not the first things in a declaration.  This warning
4154 is also enabled by @option{-Wextra}.
4155
4156 @item -Wold-style-definition @r{(C and Objective-C only)}
4157 @opindex Wold-style-definition
4158 @opindex Wno-old-style-definition
4159 Warn if an old-style function definition is used.  A warning is given
4160 even if there is a previous prototype.
4161
4162 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
4163 @opindex Wmissing-parameter-type
4164 @opindex Wno-missing-parameter-type
4165 A function parameter is declared without a type specifier in K&R-style
4166 functions:
4167
4168 @smallexample
4169 void foo(bar) @{ @}
4170 @end smallexample
4171
4172 This warning is also enabled by @option{-Wextra}.
4173
4174 @item -Wmissing-prototypes @r{(C and Objective-C only)}
4175 @opindex Wmissing-prototypes
4176 @opindex Wno-missing-prototypes
4177 Warn if a global function is defined without a previous prototype
4178 declaration.  This warning is issued even if the definition itself
4179 provides a prototype.  The aim is to detect global functions that fail
4180 to be declared in header files.
4181
4182 @item -Wmissing-declarations
4183 @opindex Wmissing-declarations
4184 @opindex Wno-missing-declarations
4185 Warn if a global function is defined without a previous declaration.
4186 Do so even if the definition itself provides a prototype.
4187 Use this option to detect global functions that are not declared in
4188 header files.  In C++, no warnings are issued for function templates,
4189 or for inline functions, or for functions in anonymous namespaces.
4190
4191 @item -Wmissing-field-initializers
4192 @opindex Wmissing-field-initializers
4193 @opindex Wno-missing-field-initializers
4194 @opindex W
4195 @opindex Wextra
4196 @opindex Wno-extra
4197 Warn if a structure's initializer has some fields missing.  For
4198 example, the following code would cause such a warning, because
4199 @code{x.h} is implicitly zero:
4200
4201 @smallexample
4202 struct s @{ int f, g, h; @};
4203 struct s x = @{ 3, 4 @};
4204 @end smallexample
4205
4206 This option does not warn about designated initializers, so the following
4207 modification would not trigger a warning:
4208
4209 @smallexample
4210 struct s @{ int f, g, h; @};
4211 struct s x = @{ .f = 3, .g = 4 @};
4212 @end smallexample
4213
4214 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
4215 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
4216
4217 @item -Wmissing-format-attribute
4218 @opindex Wmissing-format-attribute
4219 @opindex Wno-missing-format-attribute
4220 @opindex Wformat
4221 @opindex Wno-format
4222 Warn about function pointers which might be candidates for @code{format}
4223 attributes.  Note these are only possible candidates, not absolute ones.
4224 GCC will guess that function pointers with @code{format} attributes that
4225 are used in assignment, initialization, parameter passing or return
4226 statements should have a corresponding @code{format} attribute in the
4227 resulting type.  I.e.@: the left-hand side of the assignment or
4228 initialization, the type of the parameter variable, or the return type
4229 of the containing function respectively should also have a @code{format}
4230 attribute to avoid the warning.
4231
4232 GCC will also warn about function definitions which might be
4233 candidates for @code{format} attributes.  Again, these are only
4234 possible candidates.  GCC will guess that @code{format} attributes
4235 might be appropriate for any function that calls a function like
4236 @code{vprintf} or @code{vscanf}, but this might not always be the
4237 case, and some functions for which @code{format} attributes are
4238 appropriate may not be detected.
4239
4240 @item -Wno-multichar
4241 @opindex Wno-multichar
4242 @opindex Wmultichar
4243 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
4244 Usually they indicate a typo in the user's code, as they have
4245 implementation-defined values, and should not be used in portable code.
4246
4247 @item -Wnormalized=<none|id|nfc|nfkc>
4248 @opindex Wnormalized=
4249 @cindex NFC
4250 @cindex NFKC
4251 @cindex character set, input normalization
4252 In ISO C and ISO C++, two identifiers are different if they are
4253 different sequences of characters.  However, sometimes when characters
4254 outside the basic ASCII character set are used, you can have two
4255 different character sequences that look the same.  To avoid confusion,
4256 the ISO 10646 standard sets out some @dfn{normalization rules} which
4257 when applied ensure that two sequences that look the same are turned into
4258 the same sequence.  GCC can warn you if you are using identifiers which
4259 have not been normalized; this option controls that warning.
4260
4261 There are four levels of warning that GCC supports.  The default is
4262 @option{-Wnormalized=nfc}, which warns about any identifier which is
4263 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
4264 recommended form for most uses.
4265
4266 Unfortunately, there are some characters which ISO C and ISO C++ allow
4267 in identifiers that when turned into NFC aren't allowable as
4268 identifiers.  That is, there's no way to use these symbols in portable
4269 ISO C or C++ and have all your identifiers in NFC@.
4270 @option{-Wnormalized=id} suppresses the warning for these characters.
4271 It is hoped that future versions of the standards involved will correct
4272 this, which is why this option is not the default.
4273
4274 You can switch the warning off for all characters by writing
4275 @option{-Wnormalized=none}.  You would only want to do this if you
4276 were using some other normalization scheme (like ``D''), because
4277 otherwise you can easily create bugs that are literally impossible to see.
4278
4279 Some characters in ISO 10646 have distinct meanings but look identical
4280 in some fonts or display methodologies, especially once formatting has
4281 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
4282 LETTER N'', will display just like a regular @code{n} which has been
4283 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
4284 normalization scheme to convert all these into a standard form as
4285 well, and GCC will warn if your code is not in NFKC if you use
4286 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
4287 about every identifier that contains the letter O because it might be
4288 confused with the digit 0, and so is not the default, but may be
4289 useful as a local coding convention if the programming environment is
4290 unable to be fixed to display these characters distinctly.
4291
4292 @item -Wno-deprecated
4293 @opindex Wno-deprecated
4294 @opindex Wdeprecated
4295 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
4296
4297 @item -Wno-deprecated-declarations
4298 @opindex Wno-deprecated-declarations
4299 @opindex Wdeprecated-declarations
4300 Do not warn about uses of functions (@pxref{Function Attributes}),
4301 variables (@pxref{Variable Attributes}), and types (@pxref{Type
4302 Attributes}) marked as deprecated by using the @code{deprecated}
4303 attribute.
4304
4305 @item -Wno-overflow
4306 @opindex Wno-overflow
4307 @opindex Woverflow
4308 Do not warn about compile-time overflow in constant expressions.
4309
4310 @item -Woverride-init @r{(C and Objective-C only)}
4311 @opindex Woverride-init
4312 @opindex Wno-override-init
4313 @opindex W
4314 @opindex Wextra
4315 @opindex Wno-extra
4316 Warn if an initialized field without side effects is overridden when
4317 using designated initializers (@pxref{Designated Inits, , Designated
4318 Initializers}).
4319
4320 This warning is included in @option{-Wextra}.  To get other
4321 @option{-Wextra} warnings without this one, use @samp{-Wextra
4322 -Wno-override-init}.
4323
4324 @item -Wpacked
4325 @opindex Wpacked
4326 @opindex Wno-packed
4327 Warn if a structure is given the packed attribute, but the packed
4328 attribute has no effect on the layout or size of the structure.
4329 Such structures may be mis-aligned for little benefit.  For
4330 instance, in this code, the variable @code{f.x} in @code{struct bar}
4331 will be misaligned even though @code{struct bar} does not itself
4332 have the packed attribute:
4333
4334 @smallexample
4335 @group
4336 struct foo @{
4337   int x;
4338   char a, b, c, d;
4339 @} __attribute__((packed));
4340 struct bar @{
4341   char z;
4342   struct foo f;
4343 @};
4344 @end group
4345 @end smallexample
4346
4347 @item -Wpacked-bitfield-compat
4348 @opindex Wpacked-bitfield-compat
4349 @opindex Wno-packed-bitfield-compat
4350 The 4.1, 4.2 and 4.3 series of GCC ignore the @code{packed} attribute
4351 on bit-fields of type @code{char}.  This has been fixed in GCC 4.4 but
4352 the change can lead to differences in the structure layout.  GCC
4353 informs you when the offset of such a field has changed in GCC 4.4.
4354 For example there is no longer a 4-bit padding between field @code{a}
4355 and @code{b} in this structure:
4356
4357 @smallexample
4358 struct foo
4359 @{
4360   char a:4;
4361   char b:8;
4362 @} __attribute__ ((packed));
4363 @end smallexample
4364
4365 This warning is enabled by default.  Use
4366 @option{-Wno-packed-bitfield-compat} to disable this warning.
4367
4368 @item -Wpadded
4369 @opindex Wpadded
4370 @opindex Wno-padded
4371 Warn if padding is included in a structure, either to align an element
4372 of the structure or to align the whole structure.  Sometimes when this
4373 happens it is possible to rearrange the fields of the structure to
4374 reduce the padding and so make the structure smaller.
4375
4376 @item -Wredundant-decls
4377 @opindex Wredundant-decls
4378 @opindex Wno-redundant-decls
4379 Warn if anything is declared more than once in the same scope, even in
4380 cases where multiple declaration is valid and changes nothing.
4381
4382 @item -Wnested-externs @r{(C and Objective-C only)}
4383 @opindex Wnested-externs
4384 @opindex Wno-nested-externs
4385 Warn if an @code{extern} declaration is encountered within a function.
4386
4387 @item -Winline
4388 @opindex Winline
4389 @opindex Wno-inline
4390 Warn if a function can not be inlined and it was declared as inline.
4391 Even with this option, the compiler will not warn about failures to
4392 inline functions declared in system headers.
4393
4394 The compiler uses a variety of heuristics to determine whether or not
4395 to inline a function.  For example, the compiler takes into account
4396 the size of the function being inlined and the amount of inlining
4397 that has already been done in the current function.  Therefore,
4398 seemingly insignificant changes in the source program can cause the
4399 warnings produced by @option{-Winline} to appear or disappear.
4400
4401 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
4402 @opindex Wno-invalid-offsetof
4403 @opindex Winvalid-offsetof
4404 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
4405 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
4406 to a non-POD type is undefined.  In existing C++ implementations,
4407 however, @samp{offsetof} typically gives meaningful results even when
4408 applied to certain kinds of non-POD types. (Such as a simple
4409 @samp{struct} that fails to be a POD type only by virtue of having a
4410 constructor.)  This flag is for users who are aware that they are
4411 writing nonportable code and who have deliberately chosen to ignore the
4412 warning about it.
4413
4414 The restrictions on @samp{offsetof} may be relaxed in a future version
4415 of the C++ standard.
4416
4417 @item -Wno-int-to-pointer-cast
4418 @opindex Wno-int-to-pointer-cast
4419 @opindex Wint-to-pointer-cast
4420 Suppress warnings from casts to pointer type of an integer of a
4421 different size. In C++, casting to a pointer type of smaller size is
4422 an error. @option{Wint-to-pointer-cast} is enabled by default.
4423
4424
4425 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
4426 @opindex Wno-pointer-to-int-cast
4427 @opindex Wpointer-to-int-cast
4428 Suppress warnings from casts from a pointer to an integer type of a
4429 different size.
4430
4431 @item -Winvalid-pch
4432 @opindex Winvalid-pch
4433 @opindex Wno-invalid-pch
4434 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
4435 the search path but can't be used.
4436
4437 @item -Wlong-long
4438 @opindex Wlong-long
4439 @opindex Wno-long-long
4440 Warn if @samp{long long} type is used.  This is enabled by either
4441 @option{-pedantic} or @option{-Wtraditional} in ISO C90 and C++98
4442 modes.  To inhibit the warning messages, use @option{-Wno-long-long}.
4443
4444 @item -Wvariadic-macros
4445 @opindex Wvariadic-macros
4446 @opindex Wno-variadic-macros
4447 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
4448 alternate syntax when in pedantic ISO C99 mode.  This is default.
4449 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
4450
4451 @item -Wvla
4452 @opindex Wvla
4453 @opindex Wno-vla
4454 Warn if variable length array is used in the code.
4455 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
4456 the variable length array.
4457
4458 @item -Wvolatile-register-var
4459 @opindex Wvolatile-register-var
4460 @opindex Wno-volatile-register-var
4461 Warn if a register variable is declared volatile.  The volatile
4462 modifier does not inhibit all optimizations that may eliminate reads
4463 and/or writes to register variables.  This warning is enabled by
4464 @option{-Wall}.
4465
4466 @item -Wdisabled-optimization
4467 @opindex Wdisabled-optimization
4468 @opindex Wno-disabled-optimization
4469 Warn if a requested optimization pass is disabled.  This warning does
4470 not generally indicate that there is anything wrong with your code; it
4471 merely indicates that GCC's optimizers were unable to handle the code
4472 effectively.  Often, the problem is that your code is too big or too
4473 complex; GCC will refuse to optimize programs when the optimization
4474 itself is likely to take inordinate amounts of time.
4475
4476 @item -Wpointer-sign @r{(C and Objective-C only)}
4477 @opindex Wpointer-sign
4478 @opindex Wno-pointer-sign
4479 Warn for pointer argument passing or assignment with different signedness.
4480 This option is only supported for C and Objective-C@.  It is implied by
4481 @option{-Wall} and by @option{-pedantic}, which can be disabled with
4482 @option{-Wno-pointer-sign}.
4483
4484 @item -Wstack-protector
4485 @opindex Wstack-protector
4486 @opindex Wno-stack-protector
4487 This option is only active when @option{-fstack-protector} is active.  It
4488 warns about functions that will not be protected against stack smashing.
4489
4490 @item -Wno-mudflap
4491 @opindex Wno-mudflap
4492 Suppress warnings about constructs that cannot be instrumented by
4493 @option{-fmudflap}.
4494
4495 @item -Woverlength-strings
4496 @opindex Woverlength-strings
4497 @opindex Wno-overlength-strings
4498 Warn about string constants which are longer than the ``minimum
4499 maximum'' length specified in the C standard.  Modern compilers
4500 generally allow string constants which are much longer than the
4501 standard's minimum limit, but very portable programs should avoid
4502 using longer strings.
4503
4504 The limit applies @emph{after} string constant concatenation, and does
4505 not count the trailing NUL@.  In C90, the limit was 509 characters; in
4506 C99, it was raised to 4095.  C++98 does not specify a normative
4507 minimum maximum, so we do not diagnose overlength strings in C++@.
4508
4509 This option is implied by @option{-pedantic}, and can be disabled with
4510 @option{-Wno-overlength-strings}.
4511
4512 @item -Wunsuffixed-float-constants @r{(C and Objective-C only)}
4513 @opindex Wunsuffixed-float-constants
4514
4515 GCC will issue a warning for any floating constant that does not have
4516 a suffix.  When used together with @option{-Wsystem-headers} it will
4517 warn about such constants in system header files.  This can be useful
4518 when preparing code to use with the @code{FLOAT_CONST_DECIMAL64} pragma
4519 from the decimal floating-point extension to C99.
4520 @end table
4521
4522 @node Debugging Options
4523 @section Options for Debugging Your Program or GCC
4524 @cindex options, debugging
4525 @cindex debugging information options
4526
4527 GCC has various special options that are used for debugging
4528 either your program or GCC:
4529
4530 @table @gcctabopt
4531 @item -g
4532 @opindex g
4533 Produce debugging information in the operating system's native format
4534 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
4535 information.
4536
4537 On most systems that use stabs format, @option{-g} enables use of extra
4538 debugging information that only GDB can use; this extra information
4539 makes debugging work better in GDB but will probably make other debuggers
4540 crash or
4541 refuse to read the program.  If you want to control for certain whether
4542 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
4543 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4544
4545 GCC allows you to use @option{-g} with
4546 @option{-O}.  The shortcuts taken by optimized code may occasionally
4547 produce surprising results: some variables you declared may not exist
4548 at all; flow of control may briefly move where you did not expect it;
4549 some statements may not be executed because they compute constant
4550 results or their values were already at hand; some statements may
4551 execute in different places because they were moved out of loops.
4552
4553 Nevertheless it proves possible to debug optimized output.  This makes
4554 it reasonable to use the optimizer for programs that might have bugs.
4555
4556 The following options are useful when GCC is generated with the
4557 capability for more than one debugging format.
4558
4559 @item -ggdb
4560 @opindex ggdb
4561 Produce debugging information for use by GDB@.  This means to use the
4562 most expressive format available (DWARF 2, stabs, or the native format
4563 if neither of those are supported), including GDB extensions if at all
4564 possible.
4565
4566 @item -gstabs
4567 @opindex gstabs
4568 Produce debugging information in stabs format (if that is supported),
4569 without GDB extensions.  This is the format used by DBX on most BSD
4570 systems.  On MIPS, Alpha and System V Release 4 systems this option
4571 produces stabs debugging output which is not understood by DBX or SDB@.
4572 On System V Release 4 systems this option requires the GNU assembler.
4573
4574 @item -feliminate-unused-debug-symbols
4575 @opindex feliminate-unused-debug-symbols
4576 Produce debugging information in stabs format (if that is supported),
4577 for only symbols that are actually used.
4578
4579 @item -femit-class-debug-always
4580 Instead of emitting debugging information for a C++ class in only one
4581 object file, emit it in all object files using the class.  This option
4582 should be used only with debuggers that are unable to handle the way GCC
4583 normally emits debugging information for classes because using this
4584 option will increase the size of debugging information by as much as a
4585 factor of two.
4586
4587 @item -fno-debug-types-section
4588 @opindex fno-debug-types-section
4589 @opindex fdebug-types-section
4590 By default when using DWARF v4 or higher type DIEs will be put into
4591 their own .debug_types section instead of making them part of the
4592 .debug_info section.  It is more efficient to put them in a separate
4593 comdat sections since the linker will then be able to remove duplicates.
4594 But not all DWARF consumers support .debug_types sections yet.
4595
4596 @item -gstabs+
4597 @opindex gstabs+
4598 Produce debugging information in stabs format (if that is supported),
4599 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4600 use of these extensions is likely to make other debuggers crash or
4601 refuse to read the program.
4602
4603 @item -gcoff
4604 @opindex gcoff
4605 Produce debugging information in COFF format (if that is supported).
4606 This is the format used by SDB on most System V systems prior to
4607 System V Release 4.
4608
4609 @item -gxcoff
4610 @opindex gxcoff
4611 Produce debugging information in XCOFF format (if that is supported).
4612 This is the format used by the DBX debugger on IBM RS/6000 systems.
4613
4614 @item -gxcoff+
4615 @opindex gxcoff+
4616 Produce debugging information in XCOFF format (if that is supported),
4617 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4618 use of these extensions is likely to make other debuggers crash or
4619 refuse to read the program, and may cause assemblers other than the GNU
4620 assembler (GAS) to fail with an error.
4621
4622 @item -gdwarf-@var{version}
4623 @opindex gdwarf-@var{version}
4624 Produce debugging information in DWARF format (if that is
4625 supported).  This is the format used by DBX on IRIX 6.  The value
4626 of @var{version} may be either 2, 3 or 4; the default version is 2.
4627
4628 Note that with DWARF version 2 some ports require, and will always
4629 use, some non-conflicting DWARF 3 extensions in the unwind tables.
4630
4631 Version 4 may require GDB 7.0 and @option{-fvar-tracking-assignments}
4632 for maximum benefit.
4633
4634 @item -gstrict-dwarf
4635 @opindex gstrict-dwarf
4636 Disallow using extensions of later DWARF standard version than selected
4637 with @option{-gdwarf-@var{version}}.  On most targets using non-conflicting
4638 DWARF extensions from later standard versions is allowed.
4639
4640 @item -gno-strict-dwarf
4641 @opindex gno-strict-dwarf
4642 Allow using extensions of later DWARF standard version than selected with
4643 @option{-gdwarf-@var{version}}.
4644
4645 @item -gvms
4646 @opindex gvms
4647 Produce debugging information in VMS debug format (if that is
4648 supported).  This is the format used by DEBUG on VMS systems.
4649
4650 @item -g@var{level}
4651 @itemx -ggdb@var{level}
4652 @itemx -gstabs@var{level}
4653 @itemx -gcoff@var{level}
4654 @itemx -gxcoff@var{level}
4655 @itemx -gvms@var{level}
4656 Request debugging information and also use @var{level} to specify how
4657 much information.  The default level is 2.
4658
4659 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4660 @option{-g}.
4661
4662 Level 1 produces minimal information, enough for making backtraces in
4663 parts of the program that you don't plan to debug.  This includes
4664 descriptions of functions and external variables, but no information
4665 about local variables and no line numbers.
4666
4667 Level 3 includes extra information, such as all the macro definitions
4668 present in the program.  Some debuggers support macro expansion when
4669 you use @option{-g3}.
4670
4671 @option{-gdwarf-2} does not accept a concatenated debug level, because
4672 GCC used to support an option @option{-gdwarf} that meant to generate
4673 debug information in version 1 of the DWARF format (which is very
4674 different from version 2), and it would have been too confusing.  That
4675 debug format is long obsolete, but the option cannot be changed now.
4676 Instead use an additional @option{-g@var{level}} option to change the
4677 debug level for DWARF.
4678
4679 @item -gtoggle
4680 @opindex gtoggle
4681 Turn off generation of debug info, if leaving out this option would have
4682 generated it, or turn it on at level 2 otherwise.  The position of this
4683 argument in the command line does not matter, it takes effect after all
4684 other options are processed, and it does so only once, no matter how
4685 many times it is given.  This is mainly intended to be used with
4686 @option{-fcompare-debug}.
4687
4688 @item -fdump-final-insns@r{[}=@var{file}@r{]}
4689 @opindex fdump-final-insns
4690 Dump the final internal representation (RTL) to @var{file}.  If the
4691 optional argument is omitted (or if @var{file} is @code{.}), the name
4692 of the dump file will be determined by appending @code{.gkd} to the
4693 compilation output file name.
4694
4695 @item -fcompare-debug@r{[}=@var{opts}@r{]}
4696 @opindex fcompare-debug
4697 @opindex fno-compare-debug
4698 If no error occurs during compilation, run the compiler a second time,
4699 adding @var{opts} and @option{-fcompare-debug-second} to the arguments
4700 passed to the second compilation.  Dump the final internal
4701 representation in both compilations, and print an error if they differ.
4702
4703 If the equal sign is omitted, the default @option{-gtoggle} is used.
4704
4705 The environment variable @env{GCC_COMPARE_DEBUG}, if defined, non-empty
4706 and nonzero, implicitly enables @option{-fcompare-debug}.  If
4707 @env{GCC_COMPARE_DEBUG} is defined to a string starting with a dash,
4708 then it is used for @var{opts}, otherwise the default @option{-gtoggle}
4709 is used.
4710
4711 @option{-fcompare-debug=}, with the equal sign but without @var{opts},
4712 is equivalent to @option{-fno-compare-debug}, which disables the dumping
4713 of the final representation and the second compilation, preventing even
4714 @env{GCC_COMPARE_DEBUG} from taking effect.
4715
4716 To verify full coverage during @option{-fcompare-debug} testing, set
4717 @env{GCC_COMPARE_DEBUG} to say @samp{-fcompare-debug-not-overridden},
4718 which GCC will reject as an invalid option in any actual compilation
4719 (rather than preprocessing, assembly or linking).  To get just a
4720 warning, setting @env{GCC_COMPARE_DEBUG} to @samp{-w%n-fcompare-debug
4721 not overridden} will do.
4722
4723 @item -fcompare-debug-second
4724 @opindex fcompare-debug-second
4725 This option is implicitly passed to the compiler for the second
4726 compilation requested by @option{-fcompare-debug}, along with options to
4727 silence warnings, and omitting other options that would cause
4728 side-effect compiler outputs to files or to the standard output.  Dump
4729 files and preserved temporary files are renamed so as to contain the
4730 @code{.gk} additional extension during the second compilation, to avoid
4731 overwriting those generated by the first.
4732
4733 When this option is passed to the compiler driver, it causes the
4734 @emph{first} compilation to be skipped, which makes it useful for little
4735 other than debugging the compiler proper.
4736
4737 @item -feliminate-dwarf2-dups
4738 @opindex feliminate-dwarf2-dups
4739 Compress DWARF2 debugging information by eliminating duplicated
4740 information about each symbol.  This option only makes sense when
4741 generating DWARF2 debugging information with @option{-gdwarf-2}.
4742
4743 @item -femit-struct-debug-baseonly
4744 Emit debug information for struct-like types
4745 only when the base name of the compilation source file
4746 matches the base name of file in which the struct was defined.
4747
4748 This option substantially reduces the size of debugging information,
4749 but at significant potential loss in type information to the debugger.
4750 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4751 See @option{-femit-struct-debug-detailed} for more detailed control.
4752
4753 This option works only with DWARF 2.
4754
4755 @item -femit-struct-debug-reduced
4756 Emit debug information for struct-like types
4757 only when the base name of the compilation source file
4758 matches the base name of file in which the type was defined,
4759 unless the struct is a template or defined in a system header.
4760
4761 This option significantly reduces the size of debugging information,
4762 with some potential loss in type information to the debugger.
4763 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4764 See @option{-femit-struct-debug-detailed} for more detailed control.
4765
4766 This option works only with DWARF 2.
4767
4768 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4769 Specify the struct-like types
4770 for which the compiler will generate debug information.
4771 The intent is to reduce duplicate struct debug information
4772 between different object files within the same program.
4773
4774 This option is a detailed version of
4775 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4776 which will serve for most needs.
4777
4778 A specification has the syntax@*
4779 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4780
4781 The optional first word limits the specification to
4782 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4783 A struct type is used directly when it is the type of a variable, member.
4784 Indirect uses arise through pointers to structs.
4785 That is, when use of an incomplete struct would be legal, the use is indirect.
4786 An example is
4787 @samp{struct one direct; struct two * indirect;}.
4788
4789 The optional second word limits the specification to
4790 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4791 Generic structs are a bit complicated to explain.
4792 For C++, these are non-explicit specializations of template classes,
4793 or non-template classes within the above.
4794 Other programming languages have generics,
4795 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4796
4797 The third word specifies the source files for those
4798 structs for which the compiler will emit debug information.
4799 The values @samp{none} and @samp{any} have the normal meaning.
4800 The value @samp{base} means that
4801 the base of name of the file in which the type declaration appears
4802 must match the base of the name of the main compilation file.
4803 In practice, this means that
4804 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4805 but types declared in other header will not.
4806 The value @samp{sys} means those types satisfying @samp{base}
4807 or declared in system or compiler headers.
4808
4809 You may need to experiment to determine the best settings for your application.
4810
4811 The default is @samp{-femit-struct-debug-detailed=all}.
4812
4813 This option works only with DWARF 2.
4814
4815 @item -fno-merge-debug-strings
4816 @opindex fmerge-debug-strings
4817 @opindex fno-merge-debug-strings
4818 Direct the linker to not merge together strings in the debugging
4819 information which are identical in different object files.  Merging is
4820 not supported by all assemblers or linkers.  Merging decreases the size
4821 of the debug information in the output file at the cost of increasing
4822 link processing time.  Merging is enabled by default.
4823
4824 @item -fdebug-prefix-map=@var{old}=@var{new}
4825 @opindex fdebug-prefix-map
4826 When compiling files in directory @file{@var{old}}, record debugging
4827 information describing them as in @file{@var{new}} instead.
4828
4829 @item -fno-dwarf2-cfi-asm
4830 @opindex fdwarf2-cfi-asm
4831 @opindex fno-dwarf2-cfi-asm
4832 Emit DWARF 2 unwind info as compiler generated @code{.eh_frame} section
4833 instead of using GAS @code{.cfi_*} directives.
4834
4835 @cindex @command{prof}
4836 @item -p
4837 @opindex p
4838 Generate extra code to write profile information suitable for the
4839 analysis program @command{prof}.  You must use this option when compiling
4840 the source files you want data about, and you must also use it when
4841 linking.
4842
4843 @cindex @command{gprof}
4844 @item -pg
4845 @opindex pg
4846 Generate extra code to write profile information suitable for the
4847 analysis program @command{gprof}.  You must use this option when compiling
4848 the source files you want data about, and you must also use it when
4849 linking.
4850
4851 @item -Q
4852 @opindex Q
4853 Makes the compiler print out each function name as it is compiled, and
4854 print some statistics about each pass when it finishes.
4855
4856 @item -ftime-report
4857 @opindex ftime-report
4858 Makes the compiler print some statistics about the time consumed by each
4859 pass when it finishes.
4860
4861 @item -fmem-report
4862 @opindex fmem-report
4863 Makes the compiler print some statistics about permanent memory
4864 allocation when it finishes.
4865
4866 @item -fpre-ipa-mem-report
4867 @opindex fpre-ipa-mem-report
4868 @item -fpost-ipa-mem-report
4869 @opindex fpost-ipa-mem-report
4870 Makes the compiler print some statistics about permanent memory
4871 allocation before or after interprocedural optimization.
4872
4873 @item -fstack-usage
4874 @opindex fstack-usage
4875 Makes the compiler output stack usage information for the program, on a
4876 per-function basis.  The filename for the dump is made by appending
4877 @file{.su} to the @var{auxname}.  @var{auxname} is generated from the name of
4878 the output file, if explicitly specified and it is not an executable,
4879 otherwise it is the basename of the source file.  An entry is made up
4880 of three fields:
4881
4882 @itemize
4883 @item
4884 The name of the function.
4885 @item
4886 A number of bytes.
4887 @item
4888 One or more qualifiers: @code{static}, @code{dynamic}, @code{bounded}.
4889 @end itemize
4890
4891 The qualifier @code{static} means that the function manipulates the stack
4892 statically: a fixed number of bytes are allocated for the frame on function
4893 entry and released on function exit; no stack adjustments are otherwise made
4894 in the function.  The second field is this fixed number of bytes.
4895
4896 The qualifier @code{dynamic} means that the function manipulates the stack
4897 dynamically: in addition to the static allocation described above, stack
4898 adjustments are made in the body of the function, for example to push/pop
4899 arguments around function calls.  If the qualifier @code{bounded} is also
4900 present, the amount of these adjustments is bounded at compile-time and
4901 the second field is an upper bound of the total amount of stack used by
4902 the function.  If it is not present, the amount of these adjustments is
4903 not bounded at compile-time and the second field only represents the
4904 bounded part.
4905
4906 @item -fprofile-arcs
4907 @opindex fprofile-arcs
4908 Add code so that program flow @dfn{arcs} are instrumented.  During
4909 execution the program records how many times each branch and call is
4910 executed and how many times it is taken or returns.  When the compiled
4911 program exits it saves this data to a file called
4912 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4913 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4914 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4915 @var{auxname} is generated from the name of the output file, if
4916 explicitly specified and it is not the final executable, otherwise it is
4917 the basename of the source file.  In both cases any suffix is removed
4918 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4919 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4920 @xref{Cross-profiling}.
4921
4922 @cindex @command{gcov}
4923 @item --coverage
4924 @opindex coverage
4925
4926 This option is used to compile and link code instrumented for coverage
4927 analysis.  The option is a synonym for @option{-fprofile-arcs}
4928 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4929 linking).  See the documentation for those options for more details.
4930
4931 @itemize
4932
4933 @item
4934 Compile the source files with @option{-fprofile-arcs} plus optimization
4935 and code generation options.  For test coverage analysis, use the
4936 additional @option{-ftest-coverage} option.  You do not need to profile
4937 every source file in a program.
4938
4939 @item
4940 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4941 (the latter implies the former).
4942
4943 @item
4944 Run the program on a representative workload to generate the arc profile
4945 information.  This may be repeated any number of times.  You can run
4946 concurrent instances of your program, and provided that the file system
4947 supports locking, the data files will be correctly updated.  Also
4948 @code{fork} calls are detected and correctly handled (double counting
4949 will not happen).
4950
4951 @item
4952 For profile-directed optimizations, compile the source files again with
4953 the same optimization and code generation options plus
4954 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4955 Control Optimization}).
4956
4957 @item
4958 For test coverage analysis, use @command{gcov} to produce human readable
4959 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4960 @command{gcov} documentation for further information.
4961
4962 @end itemize
4963
4964 With @option{-fprofile-arcs}, for each function of your program GCC
4965 creates a program flow graph, then finds a spanning tree for the graph.
4966 Only arcs that are not on the spanning tree have to be instrumented: the
4967 compiler adds code to count the number of times that these arcs are
4968 executed.  When an arc is the only exit or only entrance to a block, the
4969 instrumentation code can be added to the block; otherwise, a new basic
4970 block must be created to hold the instrumentation code.
4971
4972 @need 2000
4973 @item -ftest-coverage
4974 @opindex ftest-coverage
4975 Produce a notes file that the @command{gcov} code-coverage utility
4976 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4977 show program coverage.  Each source file's note file is called
4978 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4979 above for a description of @var{auxname} and instructions on how to
4980 generate test coverage data.  Coverage data will match the source files
4981 more closely, if you do not optimize.
4982
4983 @item -fdbg-cnt-list
4984 @opindex fdbg-cnt-list
4985 Print the name and the counter upper bound for all debug counters.
4986
4987 @item -fdbg-cnt=@var{counter-value-list}
4988 @opindex fdbg-cnt
4989 Set the internal debug counter upper bound.  @var{counter-value-list}
4990 is a comma-separated list of @var{name}:@var{value} pairs
4991 which sets the upper bound of each debug counter @var{name} to @var{value}.
4992 All debug counters have the initial upper bound of @var{UINT_MAX},
4993 thus dbg_cnt() returns true always unless the upper bound is set by this option.
4994 e.g. With -fdbg-cnt=dce:10,tail_call:0
4995 dbg_cnt(dce) will return true only for first 10 invocations
4996 and dbg_cnt(tail_call) will return false always.
4997
4998 @item -d@var{letters}
4999 @itemx -fdump-rtl-@var{pass}
5000 @opindex d
5001 Says to make debugging dumps during compilation at times specified by
5002 @var{letters}.  This is used for debugging the RTL-based passes of the
5003 compiler.  The file names for most of the dumps are made by appending
5004 a pass number and a word to the @var{dumpname}, and the files are
5005 created in the directory of the output file.  Note that the pass
5006 number is computed statically as passes get registered into the pass
5007 manager.  Thus the numbering is not related to the dynamic order of
5008 execution of passes.  In particular, a pass installed by a plugin
5009 could have a number over 200 even if it executed quite early.
5010 @var{dumpname} is generated from the name of the output file, if
5011 explicitly specified and it is not an executable, otherwise it is the
5012 basename of the source file. These switches may have different effects
5013 when @option{-E} is used for preprocessing.
5014
5015 Debug dumps can be enabled with a @option{-fdump-rtl} switch or some
5016 @option{-d} option @var{letters}.  Here are the possible
5017 letters for use in @var{pass} and @var{letters}, and their meanings:
5018
5019 @table @gcctabopt
5020
5021 @item -fdump-rtl-alignments
5022 @opindex fdump-rtl-alignments
5023 Dump after branch alignments have been computed.
5024
5025 @item -fdump-rtl-asmcons
5026 @opindex fdump-rtl-asmcons
5027 Dump after fixing rtl statements that have unsatisfied in/out constraints.
5028
5029 @item -fdump-rtl-auto_inc_dec
5030 @opindex fdump-rtl-auto_inc_dec
5031 Dump after auto-inc-dec discovery.  This pass is only run on
5032 architectures that have auto inc or auto dec instructions.
5033
5034 @item -fdump-rtl-barriers
5035 @opindex fdump-rtl-barriers
5036 Dump after cleaning up the barrier instructions.
5037
5038 @item -fdump-rtl-bbpart
5039 @opindex fdump-rtl-bbpart
5040 Dump after partitioning hot and cold basic blocks.
5041
5042 @item -fdump-rtl-bbro
5043 @opindex fdump-rtl-bbro
5044 Dump after block reordering.
5045
5046 @item -fdump-rtl-btl1
5047 @itemx -fdump-rtl-btl2
5048 @opindex fdump-rtl-btl2
5049 @opindex fdump-rtl-btl2
5050 @option{-fdump-rtl-btl1} and @option{-fdump-rtl-btl2} enable dumping
5051 after the two branch
5052 target load optimization passes.
5053
5054 @item -fdump-rtl-bypass
5055 @opindex fdump-rtl-bypass
5056 Dump after jump bypassing and control flow optimizations.
5057
5058 @item -fdump-rtl-combine
5059 @opindex fdump-rtl-combine
5060 Dump after the RTL instruction combination pass.
5061
5062 @item -fdump-rtl-compgotos
5063 @opindex fdump-rtl-compgotos
5064 Dump after duplicating the computed gotos.
5065
5066 @item -fdump-rtl-ce1
5067 @itemx -fdump-rtl-ce2
5068 @itemx -fdump-rtl-ce3
5069 @opindex fdump-rtl-ce1
5070 @opindex fdump-rtl-ce2
5071 @opindex fdump-rtl-ce3
5072 @option{-fdump-rtl-ce1}, @option{-fdump-rtl-ce2}, and
5073 @option{-fdump-rtl-ce3} enable dumping after the three
5074 if conversion passes.
5075
5076 @itemx -fdump-rtl-cprop_hardreg
5077 @opindex fdump-rtl-cprop_hardreg
5078 Dump after hard register copy propagation.
5079
5080 @itemx -fdump-rtl-csa
5081 @opindex fdump-rtl-csa
5082 Dump after combining stack adjustments.
5083
5084 @item -fdump-rtl-cse1
5085 @itemx -fdump-rtl-cse2
5086 @opindex fdump-rtl-cse1
5087 @opindex fdump-rtl-cse2
5088 @option{-fdump-rtl-cse1} and @option{-fdump-rtl-cse2} enable dumping after
5089 the two common sub-expression elimination passes.
5090
5091 @itemx -fdump-rtl-dce
5092 @opindex fdump-rtl-dce
5093 Dump after the standalone dead code elimination passes.
5094
5095 @itemx -fdump-rtl-dbr
5096 @opindex fdump-rtl-dbr
5097 Dump after delayed branch scheduling.
5098
5099 @item -fdump-rtl-dce1
5100 @itemx -fdump-rtl-dce2
5101 @opindex fdump-rtl-dce1
5102 @opindex fdump-rtl-dce2
5103 @option{-fdump-rtl-dce1} and @option{-fdump-rtl-dce2} enable dumping after
5104 the two dead store elimination passes.
5105
5106 @item -fdump-rtl-eh
5107 @opindex fdump-rtl-eh
5108 Dump after finalization of EH handling code.
5109
5110 @item -fdump-rtl-eh_ranges
5111 @opindex fdump-rtl-eh_ranges
5112 Dump after conversion of EH handling range regions.
5113
5114 @item -fdump-rtl-expand
5115 @opindex fdump-rtl-expand
5116 Dump after RTL generation.
5117
5118 @item -fdump-rtl-fwprop1
5119 @itemx -fdump-rtl-fwprop2
5120 @opindex fdump-rtl-fwprop1
5121 @opindex fdump-rtl-fwprop2
5122 @option{-fdump-rtl-fwprop1} and @option{-fdump-rtl-fwprop2} enable
5123 dumping after the two forward propagation passes.
5124
5125 @item -fdump-rtl-gcse1
5126 @itemx -fdump-rtl-gcse2
5127 @opindex fdump-rtl-gcse1
5128 @opindex fdump-rtl-gcse2
5129 @option{-fdump-rtl-gcse1} and @option{-fdump-rtl-gcse2} enable dumping
5130 after global common subexpression elimination.
5131
5132 @item -fdump-rtl-init-regs
5133 @opindex fdump-rtl-init-regs
5134 Dump after the initialization of the registers.
5135
5136 @item -fdump-rtl-initvals
5137 @opindex fdump-rtl-initvals
5138 Dump after the computation of the initial value sets.
5139
5140 @itemx -fdump-rtl-into_cfglayout
5141 @opindex fdump-rtl-into_cfglayout
5142 Dump after converting to cfglayout mode.
5143
5144 @item -fdump-rtl-ira
5145 @opindex fdump-rtl-ira
5146 Dump after iterated register allocation.
5147
5148 @item -fdump-rtl-jump
5149 @opindex fdump-rtl-jump
5150 Dump after the second jump optimization.
5151
5152 @item -fdump-rtl-loop2
5153 @opindex fdump-rtl-loop2
5154 @option{-fdump-rtl-loop2} enables dumping after the rtl
5155 loop optimization passes.
5156
5157 @item -fdump-rtl-mach
5158 @opindex fdump-rtl-mach
5159 Dump after performing the machine dependent reorganization pass, if that
5160 pass exists.
5161
5162 @item -fdump-rtl-mode_sw
5163 @opindex fdump-rtl-mode_sw
5164 Dump after removing redundant mode switches.
5165
5166 @item -fdump-rtl-rnreg
5167 @opindex fdump-rtl-rnreg
5168 Dump after register renumbering.
5169
5170 @itemx -fdump-rtl-outof_cfglayout
5171 @opindex fdump-rtl-outof_cfglayout
5172 Dump after converting from cfglayout mode.
5173
5174 @item -fdump-rtl-peephole2
5175 @opindex fdump-rtl-peephole2
5176 Dump after the peephole pass.
5177
5178 @item -fdump-rtl-postreload
5179 @opindex fdump-rtl-postreload
5180 Dump after post-reload optimizations.
5181
5182 @itemx -fdump-rtl-pro_and_epilogue
5183 @opindex fdump-rtl-pro_and_epilogue
5184 Dump after generating the function pro and epilogues.
5185
5186 @item -fdump-rtl-regmove
5187 @opindex fdump-rtl-regmove
5188 Dump after the register move pass.
5189
5190 @item -fdump-rtl-sched1
5191 @itemx -fdump-rtl-sched2
5192 @opindex fdump-rtl-sched1
5193 @opindex fdump-rtl-sched2
5194 @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2} enable dumping
5195 after the basic block scheduling passes.
5196
5197 @item -fdump-rtl-see
5198 @opindex fdump-rtl-see
5199 Dump after sign extension elimination.
5200
5201 @item -fdump-rtl-seqabstr
5202 @opindex fdump-rtl-seqabstr
5203 Dump after common sequence discovery.
5204
5205 @item -fdump-rtl-shorten
5206 @opindex fdump-rtl-shorten
5207 Dump after shortening branches.
5208
5209 @item -fdump-rtl-sibling
5210 @opindex fdump-rtl-sibling
5211 Dump after sibling call optimizations.
5212
5213 @item -fdump-rtl-split1
5214 @itemx -fdump-rtl-split2
5215 @itemx -fdump-rtl-split3
5216 @itemx -fdump-rtl-split4
5217 @itemx -fdump-rtl-split5
5218 @opindex fdump-rtl-split1
5219 @opindex fdump-rtl-split2
5220 @opindex fdump-rtl-split3
5221 @opindex fdump-rtl-split4
5222 @opindex fdump-rtl-split5
5223 @option{-fdump-rtl-split1}, @option{-fdump-rtl-split2},
5224 @option{-fdump-rtl-split3}, @option{-fdump-rtl-split4} and
5225 @option{-fdump-rtl-split5} enable dumping after five rounds of
5226 instruction splitting.
5227
5228 @item -fdump-rtl-sms
5229 @opindex fdump-rtl-sms
5230 Dump after modulo scheduling.  This pass is only run on some
5231 architectures.
5232
5233 @item -fdump-rtl-stack
5234 @opindex fdump-rtl-stack
5235 Dump after conversion from GCC's "flat register file" registers to the
5236 x87's stack-like registers.  This pass is only run on x86 variants.
5237
5238 @item -fdump-rtl-subreg1
5239 @itemx -fdump-rtl-subreg2
5240 @opindex fdump-rtl-subreg1
5241 @opindex fdump-rtl-subreg2
5242 @option{-fdump-rtl-subreg1} and @option{-fdump-rtl-subreg2} enable dumping after
5243 the two subreg expansion passes.
5244
5245 @item -fdump-rtl-unshare
5246 @opindex fdump-rtl-unshare
5247 Dump after all rtl has been unshared.
5248
5249 @item -fdump-rtl-vartrack
5250 @opindex fdump-rtl-vartrack
5251 Dump after variable tracking.
5252
5253 @item -fdump-rtl-vregs
5254 @opindex fdump-rtl-vregs
5255 Dump after converting virtual registers to hard registers.
5256
5257 @item -fdump-rtl-web
5258 @opindex fdump-rtl-web
5259 Dump after live range splitting.
5260
5261 @item -fdump-rtl-regclass
5262 @itemx -fdump-rtl-subregs_of_mode_init
5263 @itemx -fdump-rtl-subregs_of_mode_finish
5264 @itemx -fdump-rtl-dfinit
5265 @itemx -fdump-rtl-dfinish
5266 @opindex fdump-rtl-regclass
5267 @opindex fdump-rtl-subregs_of_mode_init
5268 @opindex fdump-rtl-subregs_of_mode_finish
5269 @opindex fdump-rtl-dfinit
5270 @opindex fdump-rtl-dfinish
5271 These dumps are defined but always produce empty files.
5272
5273 @item -fdump-rtl-all
5274 @opindex fdump-rtl-all
5275 Produce all the dumps listed above.
5276
5277 @item -dA
5278 @opindex dA
5279 Annotate the assembler output with miscellaneous debugging information.
5280
5281 @item -dD
5282 @opindex dD
5283 Dump all macro definitions, at the end of preprocessing, in addition to
5284 normal output.
5285
5286 @item -dH
5287 @opindex dH
5288 Produce a core dump whenever an error occurs.
5289
5290 @item -dm
5291 @opindex dm
5292 Print statistics on memory usage, at the end of the run, to
5293 standard error.
5294
5295 @item -dp
5296 @opindex dp
5297 Annotate the assembler output with a comment indicating which
5298 pattern and alternative was used.  The length of each instruction is
5299 also printed.
5300
5301 @item -dP
5302 @opindex dP
5303 Dump the RTL in the assembler output as a comment before each instruction.
5304 Also turns on @option{-dp} annotation.
5305
5306 @item -dv
5307 @opindex dv
5308 For each of the other indicated dump files (@option{-fdump-rtl-@var{pass}}),
5309 dump a representation of the control flow graph suitable for viewing with VCG
5310 to @file{@var{file}.@var{pass}.vcg}.
5311
5312 @item -dx
5313 @opindex dx
5314 Just generate RTL for a function instead of compiling it.  Usually used
5315 with @option{-fdump-rtl-expand}.
5316 @end table
5317
5318 @item -fdump-noaddr
5319 @opindex fdump-noaddr
5320 When doing debugging dumps, suppress address output.  This makes it more
5321 feasible to use diff on debugging dumps for compiler invocations with
5322 different compiler binaries and/or different
5323 text / bss / data / heap / stack / dso start locations.
5324
5325 @item -fdump-unnumbered
5326 @opindex fdump-unnumbered
5327 When doing debugging dumps, suppress instruction numbers and address output.
5328 This makes it more feasible to use diff on debugging dumps for compiler
5329 invocations with different options, in particular with and without
5330 @option{-g}.
5331
5332 @item -fdump-unnumbered-links
5333 @opindex fdump-unnumbered-links
5334 When doing debugging dumps (see @option{-d} option above), suppress
5335 instruction numbers for the links to the previous and next instructions
5336 in a sequence.
5337
5338 @item -fdump-translation-unit @r{(C++ only)}
5339 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
5340 @opindex fdump-translation-unit
5341 Dump a representation of the tree structure for the entire translation
5342 unit to a file.  The file name is made by appending @file{.tu} to the
5343 source file name, and the file is created in the same directory as the
5344 output file.  If the @samp{-@var{options}} form is used, @var{options}
5345 controls the details of the dump as described for the
5346 @option{-fdump-tree} options.
5347
5348 @item -fdump-class-hierarchy @r{(C++ only)}
5349 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
5350 @opindex fdump-class-hierarchy
5351 Dump a representation of each class's hierarchy and virtual function
5352 table layout to a file.  The file name is made by appending
5353 @file{.class} to the source file name, and the file is created in the
5354 same directory as the output file.  If the @samp{-@var{options}} form
5355 is used, @var{options} controls the details of the dump as described
5356 for the @option{-fdump-tree} options.
5357
5358 @item -fdump-ipa-@var{switch}
5359 @opindex fdump-ipa
5360 Control the dumping at various stages of inter-procedural analysis
5361 language tree to a file.  The file name is generated by appending a
5362 switch specific suffix to the source file name, and the file is created
5363 in the same directory as the output file.  The following dumps are
5364 possible:
5365
5366 @table @samp
5367 @item all
5368 Enables all inter-procedural analysis dumps.
5369
5370 @item cgraph
5371 Dumps information about call-graph optimization, unused function removal,
5372 and inlining decisions.
5373
5374 @item inline
5375 Dump after function inlining.
5376
5377 @end table
5378
5379 @item -fdump-statistics-@var{option}
5380 @opindex fdump-statistics
5381 Enable and control dumping of pass statistics in a separate file.  The
5382 file name is generated by appending a suffix ending in
5383 @samp{.statistics} to the source file name, and the file is created in
5384 the same directory as the output file.  If the @samp{-@var{option}}
5385 form is used, @samp{-stats} will cause counters to be summed over the
5386 whole compilation unit while @samp{-details} will dump every event as
5387 the passes generate them.  The default with no option is to sum
5388 counters for each function compiled.
5389
5390 @item -fdump-tree-@var{switch}
5391 @itemx -fdump-tree-@var{switch}-@var{options}
5392 @opindex fdump-tree
5393 Control the dumping at various stages of processing the intermediate
5394 language tree to a file.  The file name is generated by appending a
5395 switch specific suffix to the source file name, and the file is
5396 created in the same directory as the output file.  If the
5397 @samp{-@var{options}} form is used, @var{options} is a list of
5398 @samp{-} separated options that control the details of the dump.  Not
5399 all options are applicable to all dumps, those which are not
5400 meaningful will be ignored.  The following options are available
5401
5402 @table @samp
5403 @item address
5404 Print the address of each node.  Usually this is not meaningful as it
5405 changes according to the environment and source file.  Its primary use
5406 is for tying up a dump file with a debug environment.
5407 @item asmname
5408 If @code{DECL_ASSEMBLER_NAME} has been set for a given decl, use that
5409 in the dump instead of @code{DECL_NAME}.  Its primary use is ease of
5410 use working backward from mangled names in the assembly file.
5411 @item slim
5412 Inhibit dumping of members of a scope or body of a function merely
5413 because that scope has been reached.  Only dump such items when they
5414 are directly reachable by some other path.  When dumping pretty-printed
5415 trees, this option inhibits dumping the bodies of control structures.
5416 @item raw
5417 Print a raw representation of the tree.  By default, trees are
5418 pretty-printed into a C-like representation.
5419 @item details
5420 Enable more detailed dumps (not honored by every dump option).
5421 @item stats
5422 Enable dumping various statistics about the pass (not honored by every dump
5423 option).
5424 @item blocks
5425 Enable showing basic block boundaries (disabled in raw dumps).
5426 @item vops
5427 Enable showing virtual operands for every statement.
5428 @item lineno
5429 Enable showing line numbers for statements.
5430 @item uid
5431 Enable showing the unique ID (@code{DECL_UID}) for each variable.
5432 @item verbose
5433 Enable showing the tree dump for each statement.
5434 @item eh
5435 Enable showing the EH region number holding each statement.
5436 @item all
5437 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
5438 and @option{lineno}.
5439 @end table
5440
5441 The following tree dumps are possible:
5442 @table @samp
5443
5444 @item original
5445 @opindex fdump-tree-original
5446 Dump before any tree based optimization, to @file{@var{file}.original}.
5447
5448 @item optimized
5449 @opindex fdump-tree-optimized
5450 Dump after all tree based optimization, to @file{@var{file}.optimized}.
5451
5452 @item gimple
5453 @opindex fdump-tree-gimple
5454 Dump each function before and after the gimplification pass to a file.  The
5455 file name is made by appending @file{.gimple} to the source file name.
5456
5457 @item cfg
5458 @opindex fdump-tree-cfg
5459 Dump the control flow graph of each function to a file.  The file name is
5460 made by appending @file{.cfg} to the source file name.
5461
5462 @item vcg
5463 @opindex fdump-tree-vcg
5464 Dump the control flow graph of each function to a file in VCG format.  The
5465 file name is made by appending @file{.vcg} to the source file name.  Note
5466 that if the file contains more than one function, the generated file cannot
5467 be used directly by VCG@.  You will need to cut and paste each function's
5468 graph into its own separate file first.
5469
5470 @item ch
5471 @opindex fdump-tree-ch
5472 Dump each function after copying loop headers.  The file name is made by
5473 appending @file{.ch} to the source file name.
5474
5475 @item ssa
5476 @opindex fdump-tree-ssa
5477 Dump SSA related information to a file.  The file name is made by appending
5478 @file{.ssa} to the source file name.
5479
5480 @item alias
5481 @opindex fdump-tree-alias
5482 Dump aliasing information for each function.  The file name is made by
5483 appending @file{.alias} to the source file name.
5484
5485 @item ccp
5486 @opindex fdump-tree-ccp
5487 Dump each function after CCP@.  The file name is made by appending
5488 @file{.ccp} to the source file name.
5489
5490 @item storeccp
5491 @opindex fdump-tree-storeccp
5492 Dump each function after STORE-CCP@.  The file name is made by appending
5493 @file{.storeccp} to the source file name.
5494
5495 @item pre
5496 @opindex fdump-tree-pre
5497 Dump trees after partial redundancy elimination.  The file name is made
5498 by appending @file{.pre} to the source file name.
5499
5500 @item fre
5501 @opindex fdump-tree-fre
5502 Dump trees after full redundancy elimination.  The file name is made
5503 by appending @file{.fre} to the source file name.
5504
5505 @item copyprop
5506 @opindex fdump-tree-copyprop
5507 Dump trees after copy propagation.  The file name is made
5508 by appending @file{.copyprop} to the source file name.
5509
5510 @item store_copyprop
5511 @opindex fdump-tree-store_copyprop
5512 Dump trees after store copy-propagation.  The file name is made
5513 by appending @file{.store_copyprop} to the source file name.
5514
5515 @item dce
5516 @opindex fdump-tree-dce
5517 Dump each function after dead code elimination.  The file name is made by
5518 appending @file{.dce} to the source file name.
5519
5520 @item mudflap
5521 @opindex fdump-tree-mudflap
5522 Dump each function after adding mudflap instrumentation.  The file name is
5523 made by appending @file{.mudflap} to the source file name.
5524
5525 @item sra
5526 @opindex fdump-tree-sra
5527 Dump each function after performing scalar replacement of aggregates.  The
5528 file name is made by appending @file{.sra} to the source file name.
5529
5530 @item sink
5531 @opindex fdump-tree-sink
5532 Dump each function after performing code sinking.  The file name is made
5533 by appending @file{.sink} to the source file name.
5534
5535 @item dom
5536 @opindex fdump-tree-dom
5537 Dump each function after applying dominator tree optimizations.  The file
5538 name is made by appending @file{.dom} to the source file name.
5539
5540 @item dse
5541 @opindex fdump-tree-dse
5542 Dump each function after applying dead store elimination.  The file
5543 name is made by appending @file{.dse} to the source file name.
5544
5545 @item phiopt
5546 @opindex fdump-tree-phiopt
5547 Dump each function after optimizing PHI nodes into straightline code.  The file
5548 name is made by appending @file{.phiopt} to the source file name.
5549
5550 @item forwprop
5551 @opindex fdump-tree-forwprop
5552 Dump each function after forward propagating single use variables.  The file
5553 name is made by appending @file{.forwprop} to the source file name.
5554
5555 @item copyrename
5556 @opindex fdump-tree-copyrename
5557 Dump each function after applying the copy rename optimization.  The file
5558 name is made by appending @file{.copyrename} to the source file name.
5559
5560 @item nrv
5561 @opindex fdump-tree-nrv
5562 Dump each function after applying the named return value optimization on
5563 generic trees.  The file name is made by appending @file{.nrv} to the source
5564 file name.
5565
5566 @item vect
5567 @opindex fdump-tree-vect
5568 Dump each function after applying vectorization of loops.  The file name is
5569 made by appending @file{.vect} to the source file name.
5570
5571 @item slp
5572 @opindex fdump-tree-slp
5573 Dump each function after applying vectorization of basic blocks.  The file name
5574 is made by appending @file{.slp} to the source file name.
5575
5576 @item vrp
5577 @opindex fdump-tree-vrp
5578 Dump each function after Value Range Propagation (VRP).  The file name
5579 is made by appending @file{.vrp} to the source file name.
5580
5581 @item all
5582 @opindex fdump-tree-all
5583 Enable all the available tree dumps with the flags provided in this option.
5584 @end table
5585
5586 @item -ftree-vectorizer-verbose=@var{n}
5587 @opindex ftree-vectorizer-verbose
5588 This option controls the amount of debugging output the vectorizer prints.
5589 This information is written to standard error, unless
5590 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
5591 in which case it is output to the usual dump listing file, @file{.vect}.
5592 For @var{n}=0 no diagnostic information is reported.
5593 If @var{n}=1 the vectorizer reports each loop that got vectorized,
5594 and the total number of loops that got vectorized.
5595 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
5596 the first analysis phase (vect_analyze_loop_form) - i.e.@: countable,
5597 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
5598 level that @option{-fdump-tree-vect-stats} uses.
5599 Higher verbosity levels mean either more information dumped for each
5600 reported loop, or same amount of information reported for more loops:
5601 if @var{n}=3, vectorizer cost model information is reported.
5602 If @var{n}=4, alignment related information is added to the reports.
5603 If @var{n}=5, data-references related information (e.g.@: memory dependences,
5604 memory access-patterns) is added to the reports.
5605 If @var{n}=6, the vectorizer reports also non-vectorized inner-most loops
5606 that did not pass the first analysis phase (i.e., may not be countable, or
5607 may have complicated control-flow).
5608 If @var{n}=7, the vectorizer reports also non-vectorized nested loops.
5609 If @var{n}=8, SLP related information is added to the reports.
5610 For @var{n}=9, all the information the vectorizer generates during its
5611 analysis and transformation is reported.  This is the same verbosity level
5612 that @option{-fdump-tree-vect-details} uses.
5613
5614 @item -frandom-seed=@var{string}
5615 @opindex frandom-seed
5616 This option provides a seed that GCC uses when it would otherwise use
5617 random numbers.  It is used to generate certain symbol names
5618 that have to be different in every compiled file.  It is also used to
5619 place unique stamps in coverage data files and the object files that
5620 produce them.  You can use the @option{-frandom-seed} option to produce
5621 reproducibly identical object files.
5622
5623 The @var{string} should be different for every file you compile.
5624
5625 @item -fsched-verbose=@var{n}
5626 @opindex fsched-verbose
5627 On targets that use instruction scheduling, this option controls the
5628 amount of debugging output the scheduler prints.  This information is
5629 written to standard error, unless @option{-fdump-rtl-sched1} or
5630 @option{-fdump-rtl-sched2} is specified, in which case it is output
5631 to the usual dump listing file, @file{.sched1} or @file{.sched2}
5632 respectively.  However for @var{n} greater than nine, the output is
5633 always printed to standard error.
5634
5635 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
5636 same information as @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2}.
5637 For @var{n} greater than one, it also output basic block probabilities,
5638 detailed ready list information and unit/insn info.  For @var{n} greater
5639 than two, it includes RTL at abort point, control-flow and regions info.
5640 And for @var{n} over four, @option{-fsched-verbose} also includes
5641 dependence info.
5642
5643 @item -save-temps
5644 @itemx -save-temps=cwd
5645 @opindex save-temps
5646 Store the usual ``temporary'' intermediate files permanently; place them
5647 in the current directory and name them based on the source file.  Thus,
5648 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
5649 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
5650 preprocessed @file{foo.i} output file even though the compiler now
5651 normally uses an integrated preprocessor.
5652
5653 When used in combination with the @option{-x} command line option,
5654 @option{-save-temps} is sensible enough to avoid over writing an
5655 input source file with the same extension as an intermediate file.
5656 The corresponding intermediate file may be obtained by renaming the
5657 source file before using @option{-save-temps}.
5658
5659 If you invoke GCC in parallel, compiling several different source
5660 files that share a common base name in different subdirectories or the
5661 same source file compiled for multiple output destinations, it is
5662 likely that the different parallel compilers will interfere with each
5663 other, and overwrite the temporary files.  For instance:
5664
5665 @smallexample
5666 gcc -save-temps -o outdir1/foo.o indir1/foo.c&
5667 gcc -save-temps -o outdir2/foo.o indir2/foo.c&
5668 @end smallexample
5669
5670 may result in @file{foo.i} and @file{foo.o} being written to
5671 simultaneously by both compilers.
5672
5673 @item -save-temps=obj
5674 @opindex save-temps=obj
5675 Store the usual ``temporary'' intermediate files permanently.  If the
5676 @option{-o} option is used, the temporary files are based on the
5677 object file.  If the @option{-o} option is not used, the
5678 @option{-save-temps=obj} switch behaves like @option{-save-temps}.
5679
5680 For example:
5681
5682 @smallexample
5683 gcc -save-temps=obj -c foo.c
5684 gcc -save-temps=obj -c bar.c -o dir/xbar.o
5685 gcc -save-temps=obj foobar.c -o dir2/yfoobar
5686 @end smallexample
5687
5688 would create @file{foo.i}, @file{foo.s}, @file{dir/xbar.i},
5689 @file{dir/xbar.s}, @file{dir2/yfoobar.i}, @file{dir2/yfoobar.s}, and
5690 @file{dir2/yfoobar.o}.
5691
5692 @item -time@r{[}=@var{file}@r{]}
5693 @opindex time
5694 Report the CPU time taken by each subprocess in the compilation
5695 sequence.  For C source files, this is the compiler proper and assembler
5696 (plus the linker if linking is done).
5697
5698 Without the specification of an output file, the output looks like this:
5699
5700 @smallexample
5701 # cc1 0.12 0.01
5702 # as 0.00 0.01
5703 @end smallexample
5704
5705 The first number on each line is the ``user time'', that is time spent
5706 executing the program itself.  The second number is ``system time'',
5707 time spent executing operating system routines on behalf of the program.
5708 Both numbers are in seconds.
5709
5710 With the specification of an output file, the output is appended to the
5711 named file, and it looks like this:
5712
5713 @smallexample
5714 0.12 0.01 cc1 @var{options}
5715 0.00 0.01 as @var{options}
5716 @end smallexample
5717
5718 The ``user time'' and the ``system time'' are moved before the program
5719 name, and the options passed to the program are displayed, so that one
5720 can later tell what file was being compiled, and with which options.
5721
5722 @item -fvar-tracking
5723 @opindex fvar-tracking
5724 Run variable tracking pass.  It computes where variables are stored at each
5725 position in code.  Better debugging information is then generated
5726 (if the debugging information format supports this information).
5727
5728 It is enabled by default when compiling with optimization (@option{-Os},
5729 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
5730 the debug info format supports it.
5731
5732 @item -fvar-tracking-assignments
5733 @opindex fvar-tracking-assignments
5734 @opindex fno-var-tracking-assignments
5735 Annotate assignments to user variables early in the compilation and
5736 attempt to carry the annotations over throughout the compilation all the
5737 way to the end, in an attempt to improve debug information while
5738 optimizing.  Use of @option{-gdwarf-4} is recommended along with it.
5739
5740 It can be enabled even if var-tracking is disabled, in which case
5741 annotations will be created and maintained, but discarded at the end.
5742
5743 @item -fvar-tracking-assignments-toggle
5744 @opindex fvar-tracking-assignments-toggle
5745 @opindex fno-var-tracking-assignments-toggle
5746 Toggle @option{-fvar-tracking-assignments}, in the same way that
5747 @option{-gtoggle} toggles @option{-g}.
5748
5749 @item -print-file-name=@var{library}
5750 @opindex print-file-name
5751 Print the full absolute name of the library file @var{library} that
5752 would be used when linking---and don't do anything else.  With this
5753 option, GCC does not compile or link anything; it just prints the
5754 file name.
5755
5756 @item -print-multi-directory
5757 @opindex print-multi-directory
5758 Print the directory name corresponding to the multilib selected by any
5759 other switches present in the command line.  This directory is supposed
5760 to exist in @env{GCC_EXEC_PREFIX}.
5761
5762 @item -print-multi-lib
5763 @opindex print-multi-lib
5764 Print the mapping from multilib directory names to compiler switches
5765 that enable them.  The directory name is separated from the switches by
5766 @samp{;}, and each switch starts with an @samp{@@} instead of the
5767 @samp{-}, without spaces between multiple switches.  This is supposed to
5768 ease shell-processing.
5769
5770 @item -print-multi-os-directory
5771 @opindex print-multi-os-directory
5772 Print the path to OS libraries for the selected
5773 multilib, relative to some @file{lib} subdirectory.  If OS libraries are
5774 present in the @file{lib} subdirectory and no multilibs are used, this is
5775 usually just @file{.}, if OS libraries are present in @file{lib@var{suffix}}
5776 sibling directories this prints e.g.@: @file{../lib64}, @file{../lib} or
5777 @file{../lib32}, or if OS libraries are present in @file{lib/@var{subdir}}
5778 subdirectories it prints e.g.@: @file{amd64}, @file{sparcv9} or @file{ev6}.
5779
5780 @item -print-prog-name=@var{program}
5781 @opindex print-prog-name
5782 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
5783
5784 @item -print-libgcc-file-name
5785 @opindex print-libgcc-file-name
5786 Same as @option{-print-file-name=libgcc.a}.
5787
5788 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
5789 but you do want to link with @file{libgcc.a}.  You can do
5790
5791 @smallexample
5792 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
5793 @end smallexample
5794
5795 @item -print-search-dirs
5796 @opindex print-search-dirs
5797 Print the name of the configured installation directory and a list of
5798 program and library directories @command{gcc} will search---and don't do anything else.
5799
5800 This is useful when @command{gcc} prints the error message
5801 @samp{installation problem, cannot exec cpp0: No such file or directory}.
5802 To resolve this you either need to put @file{cpp0} and the other compiler
5803 components where @command{gcc} expects to find them, or you can set the environment
5804 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
5805 Don't forget the trailing @samp{/}.
5806 @xref{Environment Variables}.
5807
5808 @item -print-sysroot
5809 @opindex print-sysroot
5810 Print the target sysroot directory that will be used during
5811 compilation.  This is the target sysroot specified either at configure
5812 time or using the @option{--sysroot} option, possibly with an extra
5813 suffix that depends on compilation options.  If no target sysroot is
5814 specified, the option prints nothing.
5815
5816 @item -print-sysroot-headers-suffix
5817 @opindex print-sysroot-headers-suffix
5818 Print the suffix added to the target sysroot when searching for
5819 headers, or give an error if the compiler is not configured with such
5820 a suffix---and don't do anything else.
5821
5822 @item -dumpmachine
5823 @opindex dumpmachine
5824 Print the compiler's target machine (for example,
5825 @samp{i686-pc-linux-gnu})---and don't do anything else.
5826
5827 @item -dumpversion
5828 @opindex dumpversion
5829 Print the compiler version (for example, @samp{3.0})---and don't do
5830 anything else.
5831
5832 @item -dumpspecs
5833 @opindex dumpspecs
5834 Print the compiler's built-in specs---and don't do anything else.  (This
5835 is used when GCC itself is being built.)  @xref{Spec Files}.
5836
5837 @item -feliminate-unused-debug-types
5838 @opindex feliminate-unused-debug-types
5839 Normally, when producing DWARF2 output, GCC will emit debugging
5840 information for all types declared in a compilation
5841 unit, regardless of whether or not they are actually used
5842 in that compilation unit.  Sometimes this is useful, such as
5843 if, in the debugger, you want to cast a value to a type that is
5844 not actually used in your program (but is declared).  More often,
5845 however, this results in a significant amount of wasted space.
5846 With this option, GCC will avoid producing debug symbol output
5847 for types that are nowhere used in the source file being compiled.
5848 @end table
5849
5850 @node Optimize Options
5851 @section Options That Control Optimization
5852 @cindex optimize options
5853 @cindex options, optimization
5854
5855 These options control various sorts of optimizations.
5856
5857 Without any optimization option, the compiler's goal is to reduce the
5858 cost of compilation and to make debugging produce the expected
5859 results.  Statements are independent: if you stop the program with a
5860 breakpoint between statements, you can then assign a new value to any
5861 variable or change the program counter to any other statement in the
5862 function and get exactly the results you would expect from the source
5863 code.
5864
5865 Turning on optimization flags makes the compiler attempt to improve
5866 the performance and/or code size at the expense of compilation time
5867 and possibly the ability to debug the program.
5868
5869 The compiler performs optimization based on the knowledge it has of the
5870 program.  Compiling multiple files at once to a single output file mode allows
5871 the compiler to use information gained from all of the files when compiling
5872 each of them.
5873
5874 Not all optimizations are controlled directly by a flag.  Only
5875 optimizations that have a flag are listed in this section.
5876
5877 Most optimizations are only enabled if an @option{-O} level is set on
5878 the command line.  Otherwise they are disabled, even if individual
5879 optimization flags are specified.
5880
5881 Depending on the target and how GCC was configured, a slightly different
5882 set of optimizations may be enabled at each @option{-O} level than
5883 those listed here.  You can invoke GCC with @samp{-Q --help=optimizers}
5884 to find out the exact set of optimizations that are enabled at each level.
5885 @xref{Overall Options}, for examples.
5886
5887 @table @gcctabopt
5888 @item -O
5889 @itemx -O1
5890 @opindex O
5891 @opindex O1
5892 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5893 more memory for a large function.
5894
5895 With @option{-O}, the compiler tries to reduce code size and execution
5896 time, without performing any optimizations that take a great deal of
5897 compilation time.
5898
5899 @option{-O} turns on the following optimization flags:
5900 @gccoptlist{
5901 -fauto-inc-dec @gol
5902 -fcompare-elim @gol
5903 -fcprop-registers @gol
5904 -fdce @gol
5905 -fdefer-pop @gol
5906 -fdelayed-branch @gol
5907 -fdse @gol
5908 -fguess-branch-probability @gol
5909 -fif-conversion2 @gol
5910 -fif-conversion @gol
5911 -fipa-pure-const @gol
5912 -fipa-profile @gol
5913 -fipa-reference @gol
5914 -fmerge-constants
5915 -fsplit-wide-types @gol
5916 -ftree-bit-ccp @gol
5917 -ftree-builtin-call-dce @gol
5918 -ftree-ccp @gol
5919 -ftree-ch @gol
5920 -ftree-copyrename @gol
5921 -ftree-dce @gol
5922 -ftree-dominator-opts @gol
5923 -ftree-dse @gol
5924 -ftree-forwprop @gol
5925 -ftree-fre @gol
5926 -ftree-phiprop @gol
5927 -ftree-sra @gol
5928 -ftree-pta @gol
5929 -ftree-ter @gol
5930 -funit-at-a-time}
5931
5932 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5933 where doing so does not interfere with debugging.
5934
5935 @item -O2
5936 @opindex O2
5937 Optimize even more.  GCC performs nearly all supported optimizations
5938 that do not involve a space-speed tradeoff.
5939 As compared to @option{-O}, this option increases both compilation time
5940 and the performance of the generated code.
5941
5942 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5943 also turns on the following optimization flags:
5944 @gccoptlist{-fthread-jumps @gol
5945 -falign-functions  -falign-jumps @gol
5946 -falign-loops  -falign-labels @gol
5947 -fcaller-saves @gol
5948 -fcrossjumping @gol
5949 -fcse-follow-jumps  -fcse-skip-blocks @gol
5950 -fdelete-null-pointer-checks @gol
5951 -fdevirtualize @gol
5952 -fexpensive-optimizations @gol
5953 -fgcse  -fgcse-lm  @gol
5954 -finline-small-functions @gol
5955 -findirect-inlining @gol
5956 -fipa-sra @gol
5957 -foptimize-sibling-calls @gol
5958 -fpartial-inlining @gol
5959 -fpeephole2 @gol
5960 -fregmove @gol
5961 -freorder-blocks  -freorder-functions @gol
5962 -frerun-cse-after-loop  @gol
5963 -fsched-interblock  -fsched-spec @gol
5964 -fschedule-insns  -fschedule-insns2 @gol
5965 -fstrict-aliasing -fstrict-overflow @gol
5966 -ftree-switch-conversion @gol
5967 -ftree-pre @gol
5968 -ftree-vrp}
5969
5970 Please note the warning under @option{-fgcse} about
5971 invoking @option{-O2} on programs that use computed gotos.
5972
5973 @item -O3
5974 @opindex O3
5975 Optimize yet more.  @option{-O3} turns on all optimizations specified
5976 by @option{-O2} and also turns on the @option{-finline-functions},
5977 @option{-funswitch-loops}, @option{-fpredictive-commoning},
5978 @option{-fgcse-after-reload}, @option{-ftree-vectorize} and
5979 @option{-fipa-cp-clone} options.
5980
5981 @item -O0
5982 @opindex O0
5983 Reduce compilation time and make debugging produce the expected
5984 results.  This is the default.
5985
5986 @item -Os
5987 @opindex Os
5988 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5989 do not typically increase code size.  It also performs further
5990 optimizations designed to reduce code size.
5991
5992 @option{-Os} disables the following optimization flags:
5993 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5994 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5995 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5996
5997 @item -Ofast
5998 @opindex Ofast
5999 Disregard strict standards compliance.  @option{-Ofast} enables all
6000 @option{-O3} optimizations.  It also enables optimizations that are not
6001 valid for all standard compliant programs.
6002 It turns on @option{-ffast-math} and the Fortran-specific
6003 @option{-fno-protect-parens}.
6004
6005 If you use multiple @option{-O} options, with or without level numbers,
6006 the last such option is the one that is effective.
6007 @end table
6008
6009 Options of the form @option{-f@var{flag}} specify machine-independent
6010 flags.  Most flags have both positive and negative forms; the negative
6011 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
6012 below, only one of the forms is listed---the one you typically will
6013 use.  You can figure out the other form by either removing @samp{no-}
6014 or adding it.
6015
6016 The following options control specific optimizations.  They are either
6017 activated by @option{-O} options or are related to ones that are.  You
6018 can use the following flags in the rare cases when ``fine-tuning'' of
6019 optimizations to be performed is desired.
6020
6021 @table @gcctabopt
6022 @item -fno-default-inline
6023 @opindex fno-default-inline
6024 Do not make member functions inline by default merely because they are
6025 defined inside the class scope (C++ only).  Otherwise, when you specify
6026 @w{@option{-O}}, member functions defined inside class scope are compiled
6027 inline by default; i.e., you don't need to add @samp{inline} in front of
6028 the member function name.
6029
6030 @item -fno-defer-pop
6031 @opindex fno-defer-pop
6032 Always pop the arguments to each function call as soon as that function
6033 returns.  For machines which must pop arguments after a function call,
6034 the compiler normally lets arguments accumulate on the stack for several
6035 function calls and pops them all at once.
6036
6037 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6038
6039 @item -fforward-propagate
6040 @opindex fforward-propagate
6041 Perform a forward propagation pass on RTL@.  The pass tries to combine two
6042 instructions and checks if the result can be simplified.  If loop unrolling
6043 is active, two passes are performed and the second is scheduled after
6044 loop unrolling.
6045
6046 This option is enabled by default at optimization levels @option{-O},
6047 @option{-O2}, @option{-O3}, @option{-Os}.
6048
6049 @item -ffp-contract=@var{style}
6050 @opindex ffp-contract
6051 @option{-ffp-contract=off} disables floating-point expression contraction.
6052 @option{-ffp-contract=fast} enables floating-point expression contraction
6053 such as forming of fused multiply-add operations if the target has
6054 native support for them.
6055 @option{-ffp-contract=on} enables floating-point expression contraction
6056 if allowed by the language standard.  This is currently not implemented
6057 and treated equal to @option{-ffp-contract=off}.
6058
6059 The default is @option{-ffp-contract=fast}.
6060
6061 @item -fomit-frame-pointer
6062 @opindex fomit-frame-pointer
6063 Don't keep the frame pointer in a register for functions that
6064 don't need one.  This avoids the instructions to save, set up and
6065 restore frame pointers; it also makes an extra register available
6066 in many functions.  @strong{It also makes debugging impossible on
6067 some machines.}
6068
6069 On some machines, such as the VAX, this flag has no effect, because
6070 the standard calling sequence automatically handles the frame pointer
6071 and nothing is saved by pretending it doesn't exist.  The
6072 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
6073 whether a target machine supports this flag.  @xref{Registers,,Register
6074 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
6075
6076 Starting with GCC version 4.6, the default setting (when not optimizing for
6077 size) for 32-bit Linux x86 and 32-bit Darwin x86 targets has been changed to
6078 @option{-fomit-frame-pointer}.  The default can be reverted to
6079 @option{-fno-omit-frame-pointer} by configuring GCC with the
6080 @option{--enable-frame-pointer} configure option.
6081
6082 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6083
6084 @item -foptimize-sibling-calls
6085 @opindex foptimize-sibling-calls
6086 Optimize sibling and tail recursive calls.
6087
6088 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6089
6090 @item -fno-inline
6091 @opindex fno-inline
6092 Don't pay attention to the @code{inline} keyword.  Normally this option
6093 is used to keep the compiler from expanding any functions inline.
6094 Note that if you are not optimizing, no functions can be expanded inline.
6095
6096 @item -finline-small-functions
6097 @opindex finline-small-functions
6098 Integrate functions into their callers when their body is smaller than expected
6099 function call code (so overall size of program gets smaller).  The compiler
6100 heuristically decides which functions are simple enough to be worth integrating
6101 in this way.
6102
6103 Enabled at level @option{-O2}.
6104
6105 @item -findirect-inlining
6106 @opindex findirect-inlining
6107 Inline also indirect calls that are discovered to be known at compile
6108 time thanks to previous inlining.  This option has any effect only
6109 when inlining itself is turned on by the @option{-finline-functions}
6110 or @option{-finline-small-functions} options.
6111
6112 Enabled at level @option{-O2}.
6113
6114 @item -finline-functions
6115 @opindex finline-functions
6116 Integrate all simple functions into their callers.  The compiler
6117 heuristically decides which functions are simple enough to be worth
6118 integrating in this way.
6119
6120 If all calls to a given function are integrated, and the function is
6121 declared @code{static}, then the function is normally not output as
6122 assembler code in its own right.
6123
6124 Enabled at level @option{-O3}.
6125
6126 @item -finline-functions-called-once
6127 @opindex finline-functions-called-once
6128 Consider all @code{static} functions called once for inlining into their
6129 caller even if they are not marked @code{inline}.  If a call to a given
6130 function is integrated, then the function is not output as assembler code
6131 in its own right.
6132
6133 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
6134
6135 @item -fearly-inlining
6136 @opindex fearly-inlining
6137 Inline functions marked by @code{always_inline} and functions whose body seems
6138 smaller than the function call overhead early before doing
6139 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
6140 makes profiling significantly cheaper and usually inlining faster on programs
6141 having large chains of nested wrapper functions.
6142
6143 Enabled by default.
6144
6145 @item -fipa-sra
6146 @opindex fipa-sra
6147 Perform interprocedural scalar replacement of aggregates, removal of
6148 unused parameters and replacement of parameters passed by reference
6149 by parameters passed by value.
6150
6151 Enabled at levels @option{-O2}, @option{-O3} and @option{-Os}.
6152
6153 @item -finline-limit=@var{n}
6154 @opindex finline-limit
6155 By default, GCC limits the size of functions that can be inlined.  This flag
6156 allows coarse control of this limit.  @var{n} is the size of functions that
6157 can be inlined in number of pseudo instructions.
6158
6159 Inlining is actually controlled by a number of parameters, which may be
6160 specified individually by using @option{--param @var{name}=@var{value}}.
6161 The @option{-finline-limit=@var{n}} option sets some of these parameters
6162 as follows:
6163
6164 @table @gcctabopt
6165 @item max-inline-insns-single
6166 is set to @var{n}/2.
6167 @item max-inline-insns-auto
6168 is set to @var{n}/2.
6169 @end table
6170
6171 See below for a documentation of the individual
6172 parameters controlling inlining and for the defaults of these parameters.
6173
6174 @emph{Note:} there may be no value to @option{-finline-limit} that results
6175 in default behavior.
6176
6177 @emph{Note:} pseudo instruction represents, in this particular context, an
6178 abstract measurement of function's size.  In no way does it represent a count
6179 of assembly instructions and as such its exact meaning might change from one
6180 release to an another.
6181
6182 @item -fno-keep-inline-dllexport
6183 @opindex -fno-keep-inline-dllexport
6184 This is a more fine-grained version of @option{-fkeep-inline-functions},
6185 which applies only to functions that are declared using the @code{dllexport}
6186 attribute or declspec (@xref{Function Attributes,,Declaring Attributes of
6187 Functions}.)
6188
6189 @item -fkeep-inline-functions
6190 @opindex fkeep-inline-functions
6191 In C, emit @code{static} functions that are declared @code{inline}
6192 into the object file, even if the function has been inlined into all
6193 of its callers.  This switch does not affect functions using the
6194 @code{extern inline} extension in GNU C90@.  In C++, emit any and all
6195 inline functions into the object file.
6196
6197 @item -fkeep-static-consts
6198 @opindex fkeep-static-consts
6199 Emit variables declared @code{static const} when optimization isn't turned
6200 on, even if the variables aren't referenced.
6201
6202 GCC enables this option by default.  If you want to force the compiler to
6203 check if the variable was referenced, regardless of whether or not
6204 optimization is turned on, use the @option{-fno-keep-static-consts} option.
6205
6206 @item -fmerge-constants
6207 @opindex fmerge-constants
6208 Attempt to merge identical constants (string constants and floating point
6209 constants) across compilation units.
6210
6211 This option is the default for optimized compilation if the assembler and
6212 linker support it.  Use @option{-fno-merge-constants} to inhibit this
6213 behavior.
6214
6215 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6216
6217 @item -fmerge-all-constants
6218 @opindex fmerge-all-constants
6219 Attempt to merge identical constants and identical variables.
6220
6221 This option implies @option{-fmerge-constants}.  In addition to
6222 @option{-fmerge-constants} this considers e.g.@: even constant initialized
6223 arrays or initialized constant variables with integral or floating point
6224 types.  Languages like C or C++ require each variable, including multiple
6225 instances of the same variable in recursive calls, to have distinct locations,
6226 so using this option will result in non-conforming
6227 behavior.
6228
6229 @item -fmodulo-sched
6230 @opindex fmodulo-sched
6231 Perform swing modulo scheduling immediately before the first scheduling
6232 pass.  This pass looks at innermost loops and reorders their
6233 instructions by overlapping different iterations.
6234
6235 @item -fmodulo-sched-allow-regmoves
6236 @opindex fmodulo-sched-allow-regmoves
6237 Perform more aggressive SMS based modulo scheduling with register moves
6238 allowed.  By setting this flag certain anti-dependences edges will be
6239 deleted which will trigger the generation of reg-moves based on the
6240 life-range analysis.  This option is effective only with
6241 @option{-fmodulo-sched} enabled.
6242
6243 @item -fno-branch-count-reg
6244 @opindex fno-branch-count-reg
6245 Do not use ``decrement and branch'' instructions on a count register,
6246 but instead generate a sequence of instructions that decrement a
6247 register, compare it against zero, then branch based upon the result.
6248 This option is only meaningful on architectures that support such
6249 instructions, which include x86, PowerPC, IA-64 and S/390.
6250
6251 The default is @option{-fbranch-count-reg}.
6252
6253 @item -fno-function-cse
6254 @opindex fno-function-cse
6255 Do not put function addresses in registers; make each instruction that
6256 calls a constant function contain the function's address explicitly.
6257
6258 This option results in less efficient code, but some strange hacks
6259 that alter the assembler output may be confused by the optimizations
6260 performed when this option is not used.
6261
6262 The default is @option{-ffunction-cse}
6263
6264 @item -fno-zero-initialized-in-bss
6265 @opindex fno-zero-initialized-in-bss
6266 If the target supports a BSS section, GCC by default puts variables that
6267 are initialized to zero into BSS@.  This can save space in the resulting
6268 code.
6269
6270 This option turns off this behavior because some programs explicitly
6271 rely on variables going to the data section.  E.g., so that the
6272 resulting executable can find the beginning of that section and/or make
6273 assumptions based on that.
6274
6275 The default is @option{-fzero-initialized-in-bss}.
6276
6277 @item -fmudflap -fmudflapth -fmudflapir
6278 @opindex fmudflap
6279 @opindex fmudflapth
6280 @opindex fmudflapir
6281 @cindex bounds checking
6282 @cindex mudflap
6283 For front-ends that support it (C and C++), instrument all risky
6284 pointer/array dereferencing operations, some standard library
6285 string/heap functions, and some other associated constructs with
6286 range/validity tests.  Modules so instrumented should be immune to
6287 buffer overflows, invalid heap use, and some other classes of C/C++
6288 programming errors.  The instrumentation relies on a separate runtime
6289 library (@file{libmudflap}), which will be linked into a program if
6290 @option{-fmudflap} is given at link time.  Run-time behavior of the
6291 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
6292 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
6293 for its options.
6294
6295 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
6296 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
6297 addition to @option{-fmudflap} or @option{-fmudflapth}, if
6298 instrumentation should ignore pointer reads.  This produces less
6299 instrumentation (and therefore faster execution) and still provides
6300 some protection against outright memory corrupting writes, but allows
6301 erroneously read data to propagate within a program.
6302
6303 @item -fthread-jumps
6304 @opindex fthread-jumps
6305 Perform optimizations where we check to see if a jump branches to a
6306 location where another comparison subsumed by the first is found.  If
6307 so, the first branch is redirected to either the destination of the
6308 second branch or a point immediately following it, depending on whether
6309 the condition is known to be true or false.
6310
6311 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6312
6313 @item -fsplit-wide-types
6314 @opindex fsplit-wide-types
6315 When using a type that occupies multiple registers, such as @code{long
6316 long} on a 32-bit system, split the registers apart and allocate them
6317 independently.  This normally generates better code for those types,
6318 but may make debugging more difficult.
6319
6320 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
6321 @option{-Os}.
6322
6323 @item -fcse-follow-jumps
6324 @opindex fcse-follow-jumps
6325 In common subexpression elimination (CSE), scan through jump instructions
6326 when the target of the jump is not reached by any other path.  For
6327 example, when CSE encounters an @code{if} statement with an
6328 @code{else} clause, CSE will follow the jump when the condition
6329 tested is false.
6330
6331 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6332
6333 @item -fcse-skip-blocks
6334 @opindex fcse-skip-blocks
6335 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
6336 follow jumps which conditionally skip over blocks.  When CSE
6337 encounters a simple @code{if} statement with no else clause,
6338 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
6339 body of the @code{if}.
6340
6341 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6342
6343 @item -frerun-cse-after-loop
6344 @opindex frerun-cse-after-loop
6345 Re-run common subexpression elimination after loop optimizations has been
6346 performed.
6347
6348 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6349
6350 @item -fgcse
6351 @opindex fgcse
6352 Perform a global common subexpression elimination pass.
6353 This pass also performs global constant and copy propagation.
6354
6355 @emph{Note:} When compiling a program using computed gotos, a GCC
6356 extension, you may get better runtime performance if you disable
6357 the global common subexpression elimination pass by adding
6358 @option{-fno-gcse} to the command line.
6359
6360 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6361
6362 @item -fgcse-lm
6363 @opindex fgcse-lm
6364 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
6365 attempt to move loads which are only killed by stores into themselves.  This
6366 allows a loop containing a load/store sequence to be changed to a load outside
6367 the loop, and a copy/store within the loop.
6368
6369 Enabled by default when gcse is enabled.
6370
6371 @item -fgcse-sm
6372 @opindex fgcse-sm
6373 When @option{-fgcse-sm} is enabled, a store motion pass is run after
6374 global common subexpression elimination.  This pass will attempt to move
6375 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
6376 loops containing a load/store sequence can be changed to a load before
6377 the loop and a store after the loop.
6378
6379 Not enabled at any optimization level.
6380
6381 @item -fgcse-las
6382 @opindex fgcse-las
6383 When @option{-fgcse-las} is enabled, the global common subexpression
6384 elimination pass eliminates redundant loads that come after stores to the
6385 same memory location (both partial and full redundancies).
6386
6387 Not enabled at any optimization level.
6388
6389 @item -fgcse-after-reload
6390 @opindex fgcse-after-reload
6391 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
6392 pass is performed after reload.  The purpose of this pass is to cleanup
6393 redundant spilling.
6394
6395 @item -funsafe-loop-optimizations
6396 @opindex funsafe-loop-optimizations
6397 If given, the loop optimizer will assume that loop indices do not
6398 overflow, and that the loops with nontrivial exit condition are not
6399 infinite.  This enables a wider range of loop optimizations even if
6400 the loop optimizer itself cannot prove that these assumptions are valid.
6401 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
6402 if it finds this kind of loop.
6403
6404 @item -fcrossjumping
6405 @opindex fcrossjumping
6406 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
6407 resulting code may or may not perform better than without cross-jumping.
6408
6409 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6410
6411 @item -fauto-inc-dec
6412 @opindex fauto-inc-dec
6413 Combine increments or decrements of addresses with memory accesses.
6414 This pass is always skipped on architectures that do not have
6415 instructions to support this.  Enabled by default at @option{-O} and
6416 higher on architectures that support this.
6417
6418 @item -fdce
6419 @opindex fdce
6420 Perform dead code elimination (DCE) on RTL@.
6421 Enabled by default at @option{-O} and higher.
6422
6423 @item -fdse
6424 @opindex fdse
6425 Perform dead store elimination (DSE) on RTL@.
6426 Enabled by default at @option{-O} and higher.
6427
6428 @item -fif-conversion
6429 @opindex fif-conversion
6430 Attempt to transform conditional jumps into branch-less equivalents.  This
6431 include use of conditional moves, min, max, set flags and abs instructions, and
6432 some tricks doable by standard arithmetics.  The use of conditional execution
6433 on chips where it is available is controlled by @code{if-conversion2}.
6434
6435 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6436
6437 @item -fif-conversion2
6438 @opindex fif-conversion2
6439 Use conditional execution (where available) to transform conditional jumps into
6440 branch-less equivalents.
6441
6442 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6443
6444 @item -fdelete-null-pointer-checks
6445 @opindex fdelete-null-pointer-checks
6446 Assume that programs cannot safely dereference null pointers, and that
6447 no code or data element resides there.  This enables simple constant
6448 folding optimizations at all optimization levels.  In addition, other
6449 optimization passes in GCC use this flag to control global dataflow
6450 analyses that eliminate useless checks for null pointers; these assume
6451 that if a pointer is checked after it has already been dereferenced,
6452 it cannot be null.
6453
6454 Note however that in some environments this assumption is not true.
6455 Use @option{-fno-delete-null-pointer-checks} to disable this optimization
6456 for programs which depend on that behavior.
6457
6458 Some targets, especially embedded ones, disable this option at all levels.
6459 Otherwise it is enabled at all levels: @option{-O0}, @option{-O1},
6460 @option{-O2}, @option{-O3}, @option{-Os}.  Passes that use the information
6461 are enabled independently at different optimization levels.
6462
6463 @item -fdevirtualize
6464 @opindex fdevirtualize
6465 Attempt to convert calls to virtual functions to direct calls.  This
6466 is done both within a procedure and interprocedurally as part of
6467 indirect inlining (@code{-findirect-inlining}) and interprocedural constant
6468 propagation (@option{-fipa-cp}).
6469 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6470
6471 @item -fexpensive-optimizations
6472 @opindex fexpensive-optimizations
6473 Perform a number of minor optimizations that are relatively expensive.
6474
6475 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6476
6477 @item -foptimize-register-move
6478 @itemx -fregmove
6479 @opindex foptimize-register-move
6480 @opindex fregmove
6481 Attempt to reassign register numbers in move instructions and as
6482 operands of other simple instructions in order to maximize the amount of
6483 register tying.  This is especially helpful on machines with two-operand
6484 instructions.
6485
6486 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
6487 optimization.
6488
6489 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6490
6491 @item -fira-algorithm=@var{algorithm}
6492 Use specified coloring algorithm for the integrated register
6493 allocator.  The @var{algorithm} argument should be @code{priority} or
6494 @code{CB}.  The first algorithm specifies Chow's priority coloring,
6495 the second one specifies Chaitin-Briggs coloring.  The second
6496 algorithm can be unimplemented for some architectures.  If it is
6497 implemented, it is the default because Chaitin-Briggs coloring as a
6498 rule generates a better code.
6499
6500 @item -fira-region=@var{region}
6501 Use specified regions for the integrated register allocator.  The
6502 @var{region} argument should be one of @code{all}, @code{mixed}, or
6503 @code{one}.  The first value means using all loops as register
6504 allocation regions, the second value which is the default means using
6505 all loops except for loops with small register pressure as the
6506 regions, and third one means using all function as a single region.
6507 The first value can give best result for machines with small size and
6508 irregular register set, the third one results in faster and generates
6509 decent code and the smallest size code, and the default value usually
6510 give the best results in most cases and for most architectures.
6511
6512 @item -fira-loop-pressure
6513 @opindex fira-loop-pressure
6514 Use IRA to evaluate register pressure in loops for decision to move
6515 loop invariants.  Usage of this option usually results in generation
6516 of faster and smaller code on machines with big register files (>= 32
6517 registers) but it can slow compiler down.
6518
6519 This option is enabled at level @option{-O3} for some targets.
6520
6521 @item -fno-ira-share-save-slots
6522 @opindex fno-ira-share-save-slots
6523 Switch off sharing stack slots used for saving call used hard
6524 registers living through a call.  Each hard register will get a
6525 separate stack slot and as a result function stack frame will be
6526 bigger.
6527
6528 @item -fno-ira-share-spill-slots
6529 @opindex fno-ira-share-spill-slots
6530 Switch off sharing stack slots allocated for pseudo-registers.  Each
6531 pseudo-register which did not get a hard register will get a separate
6532 stack slot and as a result function stack frame will be bigger.
6533
6534 @item -fira-verbose=@var{n}
6535 @opindex fira-verbose
6536 Set up how verbose dump file for the integrated register allocator
6537 will be.  Default value is 5.  If the value is greater or equal to 10,
6538 the dump file will be stderr as if the value were @var{n} minus 10.
6539
6540 @item -fdelayed-branch
6541 @opindex fdelayed-branch
6542 If supported for the target machine, attempt to reorder instructions
6543 to exploit instruction slots available after delayed branch
6544 instructions.
6545
6546 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6547
6548 @item -fschedule-insns
6549 @opindex fschedule-insns
6550 If supported for the target machine, attempt to reorder instructions to
6551 eliminate execution stalls due to required data being unavailable.  This
6552 helps machines that have slow floating point or memory load instructions
6553 by allowing other instructions to be issued until the result of the load
6554 or floating point instruction is required.
6555
6556 Enabled at levels @option{-O2}, @option{-O3}.
6557
6558 @item -fschedule-insns2
6559 @opindex fschedule-insns2
6560 Similar to @option{-fschedule-insns}, but requests an additional pass of
6561 instruction scheduling after register allocation has been done.  This is
6562 especially useful on machines with a relatively small number of
6563 registers and where memory load instructions take more than one cycle.
6564
6565 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6566
6567 @item -fno-sched-interblock
6568 @opindex fno-sched-interblock
6569 Don't schedule instructions across basic blocks.  This is normally
6570 enabled by default when scheduling before register allocation, i.e.@:
6571 with @option{-fschedule-insns} or at @option{-O2} or higher.
6572
6573 @item -fno-sched-spec
6574 @opindex fno-sched-spec
6575 Don't allow speculative motion of non-load instructions.  This is normally
6576 enabled by default when scheduling before register allocation, i.e.@:
6577 with @option{-fschedule-insns} or at @option{-O2} or higher.
6578
6579 @item -fsched-pressure
6580 @opindex fsched-pressure
6581 Enable register pressure sensitive insn scheduling before the register
6582 allocation.  This only makes sense when scheduling before register
6583 allocation is enabled, i.e.@: with @option{-fschedule-insns} or at
6584 @option{-O2} or higher.  Usage of this option can improve the
6585 generated code and decrease its size by preventing register pressure
6586 increase above the number of available hard registers and as a
6587 consequence register spills in the register allocation.
6588
6589 @item -fsched-spec-load
6590 @opindex fsched-spec-load
6591 Allow speculative motion of some load instructions.  This only makes
6592 sense when scheduling before register allocation, i.e.@: with
6593 @option{-fschedule-insns} or at @option{-O2} or higher.
6594
6595 @item -fsched-spec-load-dangerous
6596 @opindex fsched-spec-load-dangerous
6597 Allow speculative motion of more load instructions.  This only makes
6598 sense when scheduling before register allocation, i.e.@: with
6599 @option{-fschedule-insns} or at @option{-O2} or higher.
6600
6601 @item -fsched-stalled-insns
6602 @itemx -fsched-stalled-insns=@var{n}
6603 @opindex fsched-stalled-insns
6604 Define how many insns (if any) can be moved prematurely from the queue
6605 of stalled insns into the ready list, during the second scheduling pass.
6606 @option{-fno-sched-stalled-insns} means that no insns will be moved
6607 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
6608 on how many queued insns can be moved prematurely.
6609 @option{-fsched-stalled-insns} without a value is equivalent to
6610 @option{-fsched-stalled-insns=1}.
6611
6612 @item -fsched-stalled-insns-dep
6613 @itemx -fsched-stalled-insns-dep=@var{n}
6614 @opindex fsched-stalled-insns-dep
6615 Define how many insn groups (cycles) will be examined for a dependency
6616 on a stalled insn that is candidate for premature removal from the queue
6617 of stalled insns.  This has an effect only during the second scheduling pass,
6618 and only if @option{-fsched-stalled-insns} is used.
6619 @option{-fno-sched-stalled-insns-dep} is equivalent to
6620 @option{-fsched-stalled-insns-dep=0}.
6621 @option{-fsched-stalled-insns-dep} without a value is equivalent to
6622 @option{-fsched-stalled-insns-dep=1}.
6623
6624 @item -fsched2-use-superblocks
6625 @opindex fsched2-use-superblocks
6626 When scheduling after register allocation, do use superblock scheduling
6627 algorithm.  Superblock scheduling allows motion across basic block boundaries
6628 resulting on faster schedules.  This option is experimental, as not all machine
6629 descriptions used by GCC model the CPU closely enough to avoid unreliable
6630 results from the algorithm.
6631
6632 This only makes sense when scheduling after register allocation, i.e.@: with
6633 @option{-fschedule-insns2} or at @option{-O2} or higher.
6634
6635 @item -fsched-group-heuristic
6636 @opindex fsched-group-heuristic
6637 Enable the group heuristic in the scheduler.  This heuristic favors
6638 the instruction that belongs to a schedule group.  This is enabled
6639 by default when scheduling is enabled, i.e.@: with @option{-fschedule-insns}
6640 or @option{-fschedule-insns2} or at @option{-O2} or higher.
6641
6642 @item -fsched-critical-path-heuristic
6643 @opindex fsched-critical-path-heuristic
6644 Enable the critical-path heuristic in the scheduler.  This heuristic favors
6645 instructions on the critical path.  This is enabled by default when
6646 scheduling is enabled, i.e.@: with @option{-fschedule-insns}
6647 or @option{-fschedule-insns2} or at @option{-O2} or higher.
6648
6649 @item -fsched-spec-insn-heuristic
6650 @opindex fsched-spec-insn-heuristic
6651 Enable the speculative instruction heuristic in the scheduler.  This
6652 heuristic favors speculative instructions with greater dependency weakness.
6653 This is enabled by default when scheduling is enabled, i.e.@:
6654 with @option{-fschedule-insns} or @option{-fschedule-insns2}
6655 or at @option{-O2} or higher.
6656
6657 @item -fsched-rank-heuristic
6658 @opindex fsched-rank-heuristic
6659 Enable the rank heuristic in the scheduler.  This heuristic favors
6660 the instruction belonging to a basic block with greater size or frequency.
6661 This is enabled by default when scheduling is enabled, i.e.@:
6662 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
6663 at @option{-O2} or higher.
6664
6665 @item -fsched-last-insn-heuristic
6666 @opindex fsched-last-insn-heuristic
6667 Enable the last-instruction heuristic in the scheduler.  This heuristic
6668 favors the instruction that is less dependent on the last instruction
6669 scheduled.  This is enabled by default when scheduling is enabled,
6670 i.e.@: with @option{-fschedule-insns} or @option{-fschedule-insns2} or
6671 at @option{-O2} or higher.
6672
6673 @item -fsched-dep-count-heuristic
6674 @opindex fsched-dep-count-heuristic
6675 Enable the dependent-count heuristic in the scheduler.  This heuristic
6676 favors the instruction that has more instructions depending on it.
6677 This is enabled by default when scheduling is enabled, i.e.@:
6678 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
6679 at @option{-O2} or higher.
6680
6681 @item -freschedule-modulo-scheduled-loops
6682 @opindex freschedule-modulo-scheduled-loops
6683 The modulo scheduling comes before the traditional scheduling, if a loop
6684 was modulo scheduled we may want to prevent the later scheduling passes
6685 from changing its schedule, we use this option to control that.
6686
6687 @item -fselective-scheduling
6688 @opindex fselective-scheduling
6689 Schedule instructions using selective scheduling algorithm.  Selective
6690 scheduling runs instead of the first scheduler pass.
6691
6692 @item -fselective-scheduling2
6693 @opindex fselective-scheduling2
6694 Schedule instructions using selective scheduling algorithm.  Selective
6695 scheduling runs instead of the second scheduler pass.
6696
6697 @item -fsel-sched-pipelining
6698 @opindex fsel-sched-pipelining
6699 Enable software pipelining of innermost loops during selective scheduling.
6700 This option has no effect until one of @option{-fselective-scheduling} or
6701 @option{-fselective-scheduling2} is turned on.
6702
6703 @item -fsel-sched-pipelining-outer-loops
6704 @opindex fsel-sched-pipelining-outer-loops
6705 When pipelining loops during selective scheduling, also pipeline outer loops.
6706 This option has no effect until @option{-fsel-sched-pipelining} is turned on.
6707
6708 @item -fcaller-saves
6709 @opindex fcaller-saves
6710 Enable values to be allocated in registers that will be clobbered by
6711 function calls, by emitting extra instructions to save and restore the
6712 registers around such calls.  Such allocation is done only when it
6713 seems to result in better code than would otherwise be produced.
6714
6715 This option is always enabled by default on certain machines, usually
6716 those which have no call-preserved registers to use instead.
6717
6718 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6719
6720 @item -fcombine-stack-adjustments
6721 @opindex fcombine-stack-adjustments
6722 Tracks stack adjustments (pushes and pops) and stack memory references
6723 and then tries to find ways to combine them.
6724
6725 Enabled by default at @option{-O1} and higher.
6726
6727 @item -fconserve-stack
6728 @opindex fconserve-stack
6729 Attempt to minimize stack usage.  The compiler will attempt to use less
6730 stack space, even if that makes the program slower.  This option
6731 implies setting the @option{large-stack-frame} parameter to 100
6732 and the @option{large-stack-frame-growth} parameter to 400.
6733
6734 @item -ftree-reassoc
6735 @opindex ftree-reassoc
6736 Perform reassociation on trees.  This flag is enabled by default
6737 at @option{-O} and higher.
6738
6739 @item -ftree-pre
6740 @opindex ftree-pre
6741 Perform partial redundancy elimination (PRE) on trees.  This flag is
6742 enabled by default at @option{-O2} and @option{-O3}.
6743
6744 @item -ftree-forwprop
6745 @opindex ftree-forwprop
6746 Perform forward propagation on trees.  This flag is enabled by default
6747 at @option{-O} and higher.
6748
6749 @item -ftree-fre
6750 @opindex ftree-fre
6751 Perform full redundancy elimination (FRE) on trees.  The difference
6752 between FRE and PRE is that FRE only considers expressions
6753 that are computed on all paths leading to the redundant computation.
6754 This analysis is faster than PRE, though it exposes fewer redundancies.
6755 This flag is enabled by default at @option{-O} and higher.
6756
6757 @item -ftree-phiprop
6758 @opindex ftree-phiprop
6759 Perform hoisting of loads from conditional pointers on trees.  This
6760 pass is enabled by default at @option{-O} and higher.
6761
6762 @item -ftree-copy-prop
6763 @opindex ftree-copy-prop
6764 Perform copy propagation on trees.  This pass eliminates unnecessary
6765 copy operations.  This flag is enabled by default at @option{-O} and
6766 higher.
6767
6768 @item -fipa-pure-const
6769 @opindex fipa-pure-const
6770 Discover which functions are pure or constant.
6771 Enabled by default at @option{-O} and higher.
6772
6773 @item -fipa-reference
6774 @opindex fipa-reference
6775 Discover which static variables do not escape cannot escape the
6776 compilation unit.
6777 Enabled by default at @option{-O} and higher.
6778
6779 @item -fipa-pta
6780 @opindex fipa-pta
6781 Perform interprocedural pointer analysis and interprocedural modification
6782 and reference analysis.  This option can cause excessive memory and
6783 compile-time usage on large compilation units.  It is not enabled by
6784 default at any optimization level.
6785
6786 @item -fipa-profile
6787 @opindex fipa-profile
6788 Perform interprocedural profile propagation.  The functions called only from
6789 cold functions are marked as cold. Also functions executed once (such as
6790 @code{cold}, @code{noreturn}, static constructors or destructors) are identified. Cold
6791 functions and loop less parts of functions executed once are then optimized for
6792 size.
6793 Enabled by default at @option{-O} and higher.
6794
6795 @item -fipa-cp
6796 @opindex fipa-cp
6797 Perform interprocedural constant propagation.
6798 This optimization analyzes the program to determine when values passed
6799 to functions are constants and then optimizes accordingly.
6800 This optimization can substantially increase performance
6801 if the application has constants passed to functions.
6802 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
6803
6804 @item -fipa-cp-clone
6805 @opindex fipa-cp-clone
6806 Perform function cloning to make interprocedural constant propagation stronger.
6807 When enabled, interprocedural constant propagation will perform function cloning
6808 when externally visible function can be called with constant arguments.
6809 Because this optimization can create multiple copies of functions,
6810 it may significantly increase code size
6811 (see @option{--param ipcp-unit-growth=@var{value}}).
6812 This flag is enabled by default at @option{-O3}.
6813
6814 @item -fipa-matrix-reorg
6815 @opindex fipa-matrix-reorg
6816 Perform matrix flattening and transposing.
6817 Matrix flattening tries to replace an @math{m}-dimensional matrix
6818 with its equivalent @math{n}-dimensional matrix, where @math{n < m}.
6819 This reduces the level of indirection needed for accessing the elements
6820 of the matrix. The second optimization is matrix transposing that
6821 attempts to change the order of the matrix's dimensions in order to
6822 improve cache locality.
6823 Both optimizations need the @option{-fwhole-program} flag.
6824 Transposing is enabled only if profiling information is available.
6825
6826 @item -ftree-sink
6827 @opindex ftree-sink
6828 Perform forward store motion  on trees.  This flag is
6829 enabled by default at @option{-O} and higher.
6830
6831 @item -ftree-bit-ccp
6832 @opindex ftree-bit-ccp
6833 Perform sparse conditional bit constant propagation on trees and propagate
6834 pointer alignment information.
6835 This pass only operates on local scalar variables and is enabled by default
6836 at @option{-O} and higher.  It requires that @option{-ftree-ccp} is enabled.
6837
6838 @item -ftree-ccp
6839 @opindex ftree-ccp
6840 Perform sparse conditional constant propagation (CCP) on trees.  This
6841 pass only operates on local scalar variables and is enabled by default
6842 at @option{-O} and higher.
6843
6844 @item -ftree-switch-conversion
6845 Perform conversion of simple initializations in a switch to
6846 initializations from a scalar array.  This flag is enabled by default
6847 at @option{-O2} and higher.
6848
6849 @item -ftree-dce
6850 @opindex ftree-dce
6851 Perform dead code elimination (DCE) on trees.  This flag is enabled by
6852 default at @option{-O} and higher.
6853
6854 @item -ftree-builtin-call-dce
6855 @opindex ftree-builtin-call-dce
6856 Perform conditional dead code elimination (DCE) for calls to builtin functions
6857 that may set @code{errno} but are otherwise side-effect free.  This flag is
6858 enabled by default at @option{-O2} and higher if @option{-Os} is not also
6859 specified.
6860
6861 @item -ftree-dominator-opts
6862 @opindex ftree-dominator-opts
6863 Perform a variety of simple scalar cleanups (constant/copy
6864 propagation, redundancy elimination, range propagation and expression
6865 simplification) based on a dominator tree traversal.  This also
6866 performs jump threading (to reduce jumps to jumps). This flag is
6867 enabled by default at @option{-O} and higher.
6868
6869 @item -ftree-dse
6870 @opindex ftree-dse
6871 Perform dead store elimination (DSE) on trees.  A dead store is a store into
6872 a memory location which will later be overwritten by another store without
6873 any intervening loads.  In this case the earlier store can be deleted.  This
6874 flag is enabled by default at @option{-O} and higher.
6875
6876 @item -ftree-ch
6877 @opindex ftree-ch
6878 Perform loop header copying on trees.  This is beneficial since it increases
6879 effectiveness of code motion optimizations.  It also saves one jump.  This flag
6880 is enabled by default at @option{-O} and higher.  It is not enabled
6881 for @option{-Os}, since it usually increases code size.
6882
6883 @item -ftree-loop-optimize
6884 @opindex ftree-loop-optimize
6885 Perform loop optimizations on trees.  This flag is enabled by default
6886 at @option{-O} and higher.
6887
6888 @item -ftree-loop-linear
6889 @opindex ftree-loop-linear
6890 Perform loop interchange transformations on tree.  Same as
6891 @option{-floop-interchange}.  To use this code transformation, GCC has
6892 to be configured with @option{--with-ppl} and @option{--with-cloog} to
6893 enable the Graphite loop transformation infrastructure.
6894
6895 @item -floop-interchange
6896 @opindex floop-interchange
6897 Perform loop interchange transformations on loops.  Interchanging two
6898 nested loops switches the inner and outer loops.  For example, given a
6899 loop like:
6900 @smallexample
6901 DO J = 1, M
6902   DO I = 1, N
6903     A(J, I) = A(J, I) * C
6904   ENDDO
6905 ENDDO
6906 @end smallexample
6907 loop interchange will transform the loop as if the user had written:
6908 @smallexample
6909 DO I = 1, N
6910   DO J = 1, M
6911     A(J, I) = A(J, I) * C
6912   ENDDO
6913 ENDDO
6914 @end smallexample
6915 which can be beneficial when @code{N} is larger than the caches,
6916 because in Fortran, the elements of an array are stored in memory
6917 contiguously by column, and the original loop iterates over rows,
6918 potentially creating at each access a cache miss.  This optimization
6919 applies to all the languages supported by GCC and is not limited to
6920 Fortran.  To use this code transformation, GCC has to be configured
6921 with @option{--with-ppl} and @option{--with-cloog} to enable the
6922 Graphite loop transformation infrastructure.
6923
6924 @item -floop-strip-mine
6925 @opindex floop-strip-mine
6926 Perform loop strip mining transformations on loops.  Strip mining
6927 splits a loop into two nested loops.  The outer loop has strides
6928 equal to the strip size and the inner loop has strides of the
6929 original loop within a strip.  The strip length can be changed
6930 using the @option{loop-block-tile-size} parameter.  For example,
6931 given a loop like:
6932 @smallexample
6933 DO I = 1, N
6934   A(I) = A(I) + C
6935 ENDDO
6936 @end smallexample
6937 loop strip mining will transform the loop as if the user had written:
6938 @smallexample
6939 DO II = 1, N, 51
6940   DO I = II, min (II + 50, N)
6941     A(I) = A(I) + C
6942   ENDDO
6943 ENDDO
6944 @end smallexample
6945 This optimization applies to all the languages supported by GCC and is
6946 not limited to Fortran.  To use this code transformation, GCC has to
6947 be configured with @option{--with-ppl} and @option{--with-cloog} to
6948 enable the Graphite loop transformation infrastructure.
6949
6950 @item -floop-block
6951 @opindex floop-block
6952 Perform loop blocking transformations on loops.  Blocking strip mines
6953 each loop in the loop nest such that the memory accesses of the
6954 element loops fit inside caches.  The strip length can be changed
6955 using the @option{loop-block-tile-size} parameter.  For example, given
6956 a loop like:
6957 @smallexample
6958 DO I = 1, N
6959   DO J = 1, M
6960     A(J, I) = B(I) + C(J)
6961   ENDDO
6962 ENDDO
6963 @end smallexample
6964 loop blocking will transform the loop as if the user had written:
6965 @smallexample
6966 DO II = 1, N, 51
6967   DO JJ = 1, M, 51
6968     DO I = II, min (II + 50, N)
6969       DO J = JJ, min (JJ + 50, M)
6970         A(J, I) = B(I) + C(J)
6971       ENDDO
6972     ENDDO
6973   ENDDO
6974 ENDDO
6975 @end smallexample
6976 which can be beneficial when @code{M} is larger than the caches,
6977 because the innermost loop will iterate over a smaller amount of data
6978 that can be kept in the caches.  This optimization applies to all the
6979 languages supported by GCC and is not limited to Fortran.  To use this
6980 code transformation, GCC has to be configured with @option{--with-ppl}
6981 and @option{--with-cloog} to enable the Graphite loop transformation
6982 infrastructure.
6983
6984 @item -fgraphite-identity
6985 @opindex fgraphite-identity
6986 Enable the identity transformation for graphite.  For every SCoP we generate
6987 the polyhedral representation and transform it back to gimple.  Using
6988 @option{-fgraphite-identity} we can check the costs or benefits of the
6989 GIMPLE -> GRAPHITE -> GIMPLE transformation.  Some minimal optimizations
6990 are also performed by the code generator CLooG, like index splitting and
6991 dead code elimination in loops.
6992
6993 @item -floop-flatten
6994 @opindex floop-flatten
6995 Removes the loop nesting structure: transforms the loop nest into a
6996 single loop.  This transformation can be useful to vectorize all the
6997 levels of the loop nest.
6998
6999 @item -floop-parallelize-all
7000 @opindex floop-parallelize-all
7001 Use the Graphite data dependence analysis to identify loops that can
7002 be parallelized.  Parallelize all the loops that can be analyzed to
7003 not contain loop carried dependences without checking that it is
7004 profitable to parallelize the loops.
7005
7006 @item -fcheck-data-deps
7007 @opindex fcheck-data-deps
7008 Compare the results of several data dependence analyzers.  This option
7009 is used for debugging the data dependence analyzers.
7010
7011 @item -ftree-loop-if-convert
7012 Attempt to transform conditional jumps in the innermost loops to
7013 branch-less equivalents.  The intent is to remove control-flow from
7014 the innermost loops in order to improve the ability of the
7015 vectorization pass to handle these loops.  This is enabled by default
7016 if vectorization is enabled.
7017
7018 @item -ftree-loop-if-convert-stores
7019 Attempt to also if-convert conditional jumps containing memory writes.
7020 This transformation can be unsafe for multi-threaded programs as it
7021 transforms conditional memory writes into unconditional memory writes.
7022 For example,
7023 @smallexample
7024 for (i = 0; i < N; i++)
7025   if (cond)
7026     A[i] = expr;
7027 @end smallexample
7028 would be transformed to
7029 @smallexample
7030 for (i = 0; i < N; i++)
7031   A[i] = cond ? expr : A[i];
7032 @end smallexample
7033 potentially producing data races.
7034
7035 @item -ftree-loop-distribution
7036 Perform loop distribution.  This flag can improve cache performance on
7037 big loop bodies and allow further loop optimizations, like
7038 parallelization or vectorization, to take place.  For example, the loop
7039 @smallexample
7040 DO I = 1, N
7041   A(I) = B(I) + C
7042   D(I) = E(I) * F
7043 ENDDO
7044 @end smallexample
7045 is transformed to
7046 @smallexample
7047 DO I = 1, N
7048    A(I) = B(I) + C
7049 ENDDO
7050 DO I = 1, N
7051    D(I) = E(I) * F
7052 ENDDO
7053 @end smallexample
7054
7055 @item -ftree-loop-distribute-patterns
7056 Perform loop distribution of patterns that can be code generated with
7057 calls to a library.  This flag is enabled by default at @option{-O3}.
7058
7059 This pass distributes the initialization loops and generates a call to
7060 memset zero.  For example, the loop
7061 @smallexample
7062 DO I = 1, N
7063   A(I) = 0
7064   B(I) = A(I) + I
7065 ENDDO
7066 @end smallexample
7067 is transformed to
7068 @smallexample
7069 DO I = 1, N
7070    A(I) = 0
7071 ENDDO
7072 DO I = 1, N
7073    B(I) = A(I) + I
7074 ENDDO
7075 @end smallexample
7076 and the initialization loop is transformed into a call to memset zero.
7077
7078 @item -ftree-loop-im
7079 @opindex ftree-loop-im
7080 Perform loop invariant motion on trees.  This pass moves only invariants that
7081 would be hard to handle at RTL level (function calls, operations that expand to
7082 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
7083 operands of conditions that are invariant out of the loop, so that we can use
7084 just trivial invariantness analysis in loop unswitching.  The pass also includes
7085 store motion.
7086
7087 @item -ftree-loop-ivcanon
7088 @opindex ftree-loop-ivcanon
7089 Create a canonical counter for number of iterations in the loop for that
7090 determining number of iterations requires complicated analysis.  Later
7091 optimizations then may determine the number easily.  Useful especially
7092 in connection with unrolling.
7093
7094 @item -fivopts
7095 @opindex fivopts
7096 Perform induction variable optimizations (strength reduction, induction
7097 variable merging and induction variable elimination) on trees.
7098
7099 @item -ftree-parallelize-loops=n
7100 @opindex ftree-parallelize-loops
7101 Parallelize loops, i.e., split their iteration space to run in n threads.
7102 This is only possible for loops whose iterations are independent
7103 and can be arbitrarily reordered.  The optimization is only
7104 profitable on multiprocessor machines, for loops that are CPU-intensive,
7105 rather than constrained e.g.@: by memory bandwidth.  This option
7106 implies @option{-pthread}, and thus is only supported on targets
7107 that have support for @option{-pthread}.
7108
7109 @item -ftree-pta
7110 @opindex ftree-pta
7111 Perform function-local points-to analysis on trees.  This flag is
7112 enabled by default at @option{-O} and higher.
7113
7114 @item -ftree-sra
7115 @opindex ftree-sra
7116 Perform scalar replacement of aggregates.  This pass replaces structure
7117 references with scalars to prevent committing structures to memory too
7118 early.  This flag is enabled by default at @option{-O} and higher.
7119
7120 @item -ftree-copyrename
7121 @opindex ftree-copyrename
7122 Perform copy renaming on trees.  This pass attempts to rename compiler
7123 temporaries to other variables at copy locations, usually resulting in
7124 variable names which more closely resemble the original variables.  This flag
7125 is enabled by default at @option{-O} and higher.
7126
7127 @item -ftree-ter
7128 @opindex ftree-ter
7129 Perform temporary expression replacement during the SSA->normal phase.  Single
7130 use/single def temporaries are replaced at their use location with their
7131 defining expression.  This results in non-GIMPLE code, but gives the expanders
7132 much more complex trees to work on resulting in better RTL generation.  This is
7133 enabled by default at @option{-O} and higher.
7134
7135 @item -ftree-vectorize
7136 @opindex ftree-vectorize
7137 Perform loop vectorization on trees. This flag is enabled by default at
7138 @option{-O3}.
7139
7140 @item -ftree-slp-vectorize
7141 @opindex ftree-slp-vectorize
7142 Perform basic block vectorization on trees. This flag is enabled by default at
7143 @option{-O3} and when @option{-ftree-vectorize} is enabled.
7144
7145 @item -ftree-vect-loop-version
7146 @opindex ftree-vect-loop-version
7147 Perform loop versioning when doing loop vectorization on trees.  When a loop
7148 appears to be vectorizable except that data alignment or data dependence cannot
7149 be determined at compile time then vectorized and non-vectorized versions of
7150 the loop are generated along with runtime checks for alignment or dependence
7151 to control which version is executed.  This option is enabled by default
7152 except at level @option{-Os} where it is disabled.
7153
7154 @item -fvect-cost-model
7155 @opindex fvect-cost-model
7156 Enable cost model for vectorization.
7157
7158 @item -ftree-vrp
7159 @opindex ftree-vrp
7160 Perform Value Range Propagation on trees.  This is similar to the
7161 constant propagation pass, but instead of values, ranges of values are
7162 propagated.  This allows the optimizers to remove unnecessary range
7163 checks like array bound checks and null pointer checks.  This is
7164 enabled by default at @option{-O2} and higher.  Null pointer check
7165 elimination is only done if @option{-fdelete-null-pointer-checks} is
7166 enabled.
7167
7168 @item -ftracer
7169 @opindex ftracer
7170 Perform tail duplication to enlarge superblock size.  This transformation
7171 simplifies the control flow of the function allowing other optimizations to do
7172 better job.
7173
7174 @item -funroll-loops
7175 @opindex funroll-loops
7176 Unroll loops whose number of iterations can be determined at compile
7177 time or upon entry to the loop.  @option{-funroll-loops} implies
7178 @option{-frerun-cse-after-loop}.  This option makes code larger,
7179 and may or may not make it run faster.
7180
7181 @item -funroll-all-loops
7182 @opindex funroll-all-loops
7183 Unroll all loops, even if their number of iterations is uncertain when
7184 the loop is entered.  This usually makes programs run more slowly.
7185 @option{-funroll-all-loops} implies the same options as
7186 @option{-funroll-loops},
7187
7188 @item -fsplit-ivs-in-unroller
7189 @opindex fsplit-ivs-in-unroller
7190 Enables expressing of values of induction variables in later iterations
7191 of the unrolled loop using the value in the first iteration.  This breaks
7192 long dependency chains, thus improving efficiency of the scheduling passes.
7193
7194 Combination of @option{-fweb} and CSE is often sufficient to obtain the
7195 same effect.  However in cases the loop body is more complicated than
7196 a single basic block, this is not reliable.  It also does not work at all
7197 on some of the architectures due to restrictions in the CSE pass.
7198
7199 This optimization is enabled by default.
7200
7201 @item -fvariable-expansion-in-unroller
7202 @opindex fvariable-expansion-in-unroller
7203 With this option, the compiler will create multiple copies of some
7204 local variables when unrolling a loop which can result in superior code.
7205
7206 @item -fpartial-inlining
7207 @opindex fpartial-inlining
7208 Inline parts of functions.  This option has any effect only
7209 when inlining itself is turned on by the @option{-finline-functions}
7210 or @option{-finline-small-functions} options.
7211
7212 Enabled at level @option{-O2}.
7213
7214 @item -fpredictive-commoning
7215 @opindex fpredictive-commoning
7216 Perform predictive commoning optimization, i.e., reusing computations
7217 (especially memory loads and stores) performed in previous
7218 iterations of loops.
7219
7220 This option is enabled at level @option{-O3}.
7221
7222 @item -fprefetch-loop-arrays
7223 @opindex fprefetch-loop-arrays
7224 If supported by the target machine, generate instructions to prefetch
7225 memory to improve the performance of loops that access large arrays.
7226
7227 This option may generate better or worse code; results are highly
7228 dependent on the structure of loops within the source code.
7229
7230 Disabled at level @option{-Os}.
7231
7232 @item -fno-peephole
7233 @itemx -fno-peephole2
7234 @opindex fno-peephole
7235 @opindex fno-peephole2
7236 Disable any machine-specific peephole optimizations.  The difference
7237 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
7238 are implemented in the compiler; some targets use one, some use the
7239 other, a few use both.
7240
7241 @option{-fpeephole} is enabled by default.
7242 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7243
7244 @item -fno-guess-branch-probability
7245 @opindex fno-guess-branch-probability
7246 Do not guess branch probabilities using heuristics.
7247
7248 GCC will use heuristics to guess branch probabilities if they are
7249 not provided by profiling feedback (@option{-fprofile-arcs}).  These
7250 heuristics are based on the control flow graph.  If some branch probabilities
7251 are specified by @samp{__builtin_expect}, then the heuristics will be
7252 used to guess branch probabilities for the rest of the control flow graph,
7253 taking the @samp{__builtin_expect} info into account.  The interactions
7254 between the heuristics and @samp{__builtin_expect} can be complex, and in
7255 some cases, it may be useful to disable the heuristics so that the effects
7256 of @samp{__builtin_expect} are easier to understand.
7257
7258 The default is @option{-fguess-branch-probability} at levels
7259 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7260
7261 @item -freorder-blocks
7262 @opindex freorder-blocks
7263 Reorder basic blocks in the compiled function in order to reduce number of
7264 taken branches and improve code locality.
7265
7266 Enabled at levels @option{-O2}, @option{-O3}.
7267
7268 @item -freorder-blocks-and-partition
7269 @opindex freorder-blocks-and-partition
7270 In addition to reordering basic blocks in the compiled function, in order
7271 to reduce number of taken branches, partitions hot and cold basic blocks
7272 into separate sections of the assembly and .o files, to improve
7273 paging and cache locality performance.
7274
7275 This optimization is automatically turned off in the presence of
7276 exception handling, for linkonce sections, for functions with a user-defined
7277 section attribute and on any architecture that does not support named
7278 sections.
7279
7280 @item -freorder-functions
7281 @opindex freorder-functions
7282 Reorder functions in the object file in order to
7283 improve code locality.  This is implemented by using special
7284 subsections @code{.text.hot} for most frequently executed functions and
7285 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
7286 the linker so object file format must support named sections and linker must
7287 place them in a reasonable way.
7288
7289 Also profile feedback must be available in to make this option effective.  See
7290 @option{-fprofile-arcs} for details.
7291
7292 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7293
7294 @item -fstrict-aliasing
7295 @opindex fstrict-aliasing
7296 Allow the compiler to assume the strictest aliasing rules applicable to
7297 the language being compiled.  For C (and C++), this activates
7298 optimizations based on the type of expressions.  In particular, an
7299 object of one type is assumed never to reside at the same address as an
7300 object of a different type, unless the types are almost the same.  For
7301 example, an @code{unsigned int} can alias an @code{int}, but not a
7302 @code{void*} or a @code{double}.  A character type may alias any other
7303 type.
7304
7305 @anchor{Type-punning}Pay special attention to code like this:
7306 @smallexample
7307 union a_union @{
7308   int i;
7309   double d;
7310 @};
7311
7312 int f() @{
7313   union a_union t;
7314   t.d = 3.0;
7315   return t.i;
7316 @}
7317 @end smallexample
7318 The practice of reading from a different union member than the one most
7319 recently written to (called ``type-punning'') is common.  Even with
7320 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
7321 is accessed through the union type.  So, the code above will work as
7322 expected.  @xref{Structures unions enumerations and bit-fields
7323 implementation}.  However, this code might not:
7324 @smallexample
7325 int f() @{
7326   union a_union t;
7327   int* ip;
7328   t.d = 3.0;
7329   ip = &t.i;
7330   return *ip;
7331 @}
7332 @end smallexample
7333
7334 Similarly, access by taking the address, casting the resulting pointer
7335 and dereferencing the result has undefined behavior, even if the cast
7336 uses a union type, e.g.:
7337 @smallexample
7338 int f() @{
7339   double d = 3.0;
7340   return ((union a_union *) &d)->i;
7341 @}
7342 @end smallexample
7343
7344 The @option{-fstrict-aliasing} option is enabled at levels
7345 @option{-O2}, @option{-O3}, @option{-Os}.
7346
7347 @item -fstrict-overflow
7348 @opindex fstrict-overflow
7349 Allow the compiler to assume strict signed overflow rules, depending
7350 on the language being compiled.  For C (and C++) this means that
7351 overflow when doing arithmetic with signed numbers is undefined, which
7352 means that the compiler may assume that it will not happen.  This
7353 permits various optimizations.  For example, the compiler will assume
7354 that an expression like @code{i + 10 > i} will always be true for
7355 signed @code{i}.  This assumption is only valid if signed overflow is
7356 undefined, as the expression is false if @code{i + 10} overflows when
7357 using twos complement arithmetic.  When this option is in effect any
7358 attempt to determine whether an operation on signed numbers will
7359 overflow must be written carefully to not actually involve overflow.
7360
7361 This option also allows the compiler to assume strict pointer
7362 semantics: given a pointer to an object, if adding an offset to that
7363 pointer does not produce a pointer to the same object, the addition is
7364 undefined.  This permits the compiler to conclude that @code{p + u >
7365 p} is always true for a pointer @code{p} and unsigned integer
7366 @code{u}.  This assumption is only valid because pointer wraparound is
7367 undefined, as the expression is false if @code{p + u} overflows using
7368 twos complement arithmetic.
7369
7370 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
7371 that integer signed overflow is fully defined: it wraps.  When
7372 @option{-fwrapv} is used, there is no difference between
7373 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
7374 integers.  With @option{-fwrapv} certain types of overflow are
7375 permitted.  For example, if the compiler gets an overflow when doing
7376 arithmetic on constants, the overflowed value can still be used with
7377 @option{-fwrapv}, but not otherwise.
7378
7379 The @option{-fstrict-overflow} option is enabled at levels
7380 @option{-O2}, @option{-O3}, @option{-Os}.
7381
7382 @item -falign-functions
7383 @itemx -falign-functions=@var{n}
7384 @opindex falign-functions
7385 Align the start of functions to the next power-of-two greater than
7386 @var{n}, skipping up to @var{n} bytes.  For instance,
7387 @option{-falign-functions=32} aligns functions to the next 32-byte
7388 boundary, but @option{-falign-functions=24} would align to the next
7389 32-byte boundary only if this can be done by skipping 23 bytes or less.
7390
7391 @option{-fno-align-functions} and @option{-falign-functions=1} are
7392 equivalent and mean that functions will not be aligned.
7393
7394 Some assemblers only support this flag when @var{n} is a power of two;
7395 in that case, it is rounded up.
7396
7397 If @var{n} is not specified or is zero, use a machine-dependent default.
7398
7399 Enabled at levels @option{-O2}, @option{-O3}.
7400
7401 @item -falign-labels
7402 @itemx -falign-labels=@var{n}
7403 @opindex falign-labels
7404 Align all branch targets to a power-of-two boundary, skipping up to
7405 @var{n} bytes like @option{-falign-functions}.  This option can easily
7406 make code slower, because it must insert dummy operations for when the
7407 branch target is reached in the usual flow of the code.
7408
7409 @option{-fno-align-labels} and @option{-falign-labels=1} are
7410 equivalent and mean that labels will not be aligned.
7411
7412 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
7413 are greater than this value, then their values are used instead.
7414
7415 If @var{n} is not specified or is zero, use a machine-dependent default
7416 which is very likely to be @samp{1}, meaning no alignment.
7417
7418 Enabled at levels @option{-O2}, @option{-O3}.
7419
7420 @item -falign-loops
7421 @itemx -falign-loops=@var{n}
7422 @opindex falign-loops
7423 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
7424 like @option{-falign-functions}.  The hope is that the loop will be
7425 executed many times, which will make up for any execution of the dummy
7426 operations.
7427
7428 @option{-fno-align-loops} and @option{-falign-loops=1} are
7429 equivalent and mean that loops will not be aligned.
7430
7431 If @var{n} is not specified or is zero, use a machine-dependent default.
7432
7433 Enabled at levels @option{-O2}, @option{-O3}.
7434
7435 @item -falign-jumps
7436 @itemx -falign-jumps=@var{n}
7437 @opindex falign-jumps
7438 Align branch targets to a power-of-two boundary, for branch targets
7439 where the targets can only be reached by jumping, skipping up to @var{n}
7440 bytes like @option{-falign-functions}.  In this case, no dummy operations
7441 need be executed.
7442
7443 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
7444 equivalent and mean that loops will not be aligned.
7445
7446 If @var{n} is not specified or is zero, use a machine-dependent default.
7447
7448 Enabled at levels @option{-O2}, @option{-O3}.
7449
7450 @item -funit-at-a-time
7451 @opindex funit-at-a-time
7452 This option is left for compatibility reasons. @option{-funit-at-a-time}
7453 has no effect, while @option{-fno-unit-at-a-time} implies
7454 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
7455
7456 Enabled by default.
7457
7458 @item -fno-toplevel-reorder
7459 @opindex fno-toplevel-reorder
7460 Do not reorder top-level functions, variables, and @code{asm}
7461 statements.  Output them in the same order that they appear in the
7462 input file.  When this option is used, unreferenced static variables
7463 will not be removed.  This option is intended to support existing code
7464 which relies on a particular ordering.  For new code, it is better to
7465 use attributes.
7466
7467 Enabled at level @option{-O0}.  When disabled explicitly, it also imply
7468 @option{-fno-section-anchors} that is otherwise enabled at @option{-O0} on some
7469 targets.
7470
7471 @item -fweb
7472 @opindex fweb
7473 Constructs webs as commonly used for register allocation purposes and assign
7474 each web individual pseudo register.  This allows the register allocation pass
7475 to operate on pseudos directly, but also strengthens several other optimization
7476 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
7477 however, make debugging impossible, since variables will no longer stay in a
7478 ``home register''.
7479
7480 Enabled by default with @option{-funroll-loops}.
7481
7482 @item -fwhole-program
7483 @opindex fwhole-program
7484 Assume that the current compilation unit represents the whole program being
7485 compiled.  All public functions and variables with the exception of @code{main}
7486 and those merged by attribute @code{externally_visible} become static functions
7487 and in effect are optimized more aggressively by interprocedural optimizers. If @command{gold} is used as the linker plugin, @code{externally_visible} attributes are automatically added to functions (not variable yet due to a current @command{gold} issue) that are accessed outside of LTO objects according to resolution file produced by @command{gold}.  For other linkers that cannot generate resolution file, explicit @code{externally_visible} attributes are still necessary.
7488 While this option is equivalent to proper use of the @code{static} keyword for
7489 programs consisting of a single file, in combination with option
7490 @option{-flto} this flag can be used to
7491 compile many smaller scale programs since the functions and variables become
7492 local for the whole combined compilation unit, not for the single source file
7493 itself.
7494
7495 This option implies @option{-fwhole-file} for Fortran programs.
7496
7497 @item -flto[=@var{n}]
7498 @opindex flto
7499 This option runs the standard link-time optimizer.  When invoked
7500 with source code, it generates GIMPLE (one of GCC's internal
7501 representations) and writes it to special ELF sections in the object
7502 file.  When the object files are linked together, all the function
7503 bodies are read from these ELF sections and instantiated as if they
7504 had been part of the same translation unit.
7505
7506 To use the link-timer optimizer, @option{-flto} needs to be specified at
7507 compile time and during the final link.  For example,
7508
7509 @smallexample
7510 gcc -c -O2 -flto foo.c
7511 gcc -c -O2 -flto bar.c
7512 gcc -o myprog -flto -O2 foo.o bar.o
7513 @end smallexample
7514
7515 The first two invocations to GCC will save a bytecode representation
7516 of GIMPLE into special ELF sections inside @file{foo.o} and
7517 @file{bar.o}.  The final invocation will read the GIMPLE bytecode from
7518 @file{foo.o} and @file{bar.o}, merge the two files into a single
7519 internal image, and compile the result as usual.  Since both
7520 @file{foo.o} and @file{bar.o} are merged into a single image, this
7521 causes all the inter-procedural analyses and optimizations in GCC to
7522 work across the two files as if they were a single one.  This means,
7523 for example, that the inliner will be able to inline functions in
7524 @file{bar.o} into functions in @file{foo.o} and vice-versa.
7525
7526 Another (simpler) way to enable link-time optimization is,
7527
7528 @smallexample
7529 gcc -o myprog -flto -O2 foo.c bar.c
7530 @end smallexample
7531
7532 The above will generate bytecode for @file{foo.c} and @file{bar.c},
7533 merge them together into a single GIMPLE representation and optimize
7534 them as usual to produce @file{myprog}.
7535
7536 The only important thing to keep in mind is that to enable link-time
7537 optimizations the @option{-flto} flag needs to be passed to both the
7538 compile and the link commands.
7539
7540 To make whole program optimization effective, it is necessary to make
7541 certain whole program assumptions.  The compiler needs to know
7542 what functions and variables can be accessed by libraries and runtime
7543 outside of the link time optimized unit.  When supported by the linker,
7544 the linker plugin (see @option{-fuse-linker-plugin}) passes to the
7545 compiler information about used and externally visible symbols.  When
7546 the linker plugin is not available, @option{-fwhole-program} should be
7547 used to allow the compiler to make these assumptions, which will lead
7548 to more aggressive optimization decisions.
7549
7550 Note that when a file is compiled with @option{-flto}, the generated
7551 object file will be larger than a regular object file because it will
7552 contain GIMPLE bytecodes and the usual final code.  This means that
7553 object files with LTO information can be linked as a normal object
7554 file.  So, in the previous example, if the final link is done with
7555
7556 @smallexample
7557 gcc -o myprog foo.o bar.o
7558 @end smallexample
7559
7560 The only difference will be that no inter-procedural optimizations
7561 will be applied to produce @file{myprog}.  The two object files
7562 @file{foo.o} and @file{bar.o} will be simply sent to the regular
7563 linker.
7564
7565 Additionally, the optimization flags used to compile individual files
7566 are not necessarily related to those used at link-time.  For instance,
7567
7568 @smallexample
7569 gcc -c -O0 -flto foo.c
7570 gcc -c -O0 -flto bar.c
7571 gcc -o myprog -flto -O3 foo.o bar.o
7572 @end smallexample
7573
7574 This will produce individual object files with unoptimized assembler
7575 code, but the resulting binary @file{myprog} will be optimized at
7576 @option{-O3}.  Now, if the final binary is generated without
7577 @option{-flto}, then @file{myprog} will not be optimized.
7578
7579 When producing the final binary with @option{-flto}, GCC will only
7580 apply link-time optimizations to those files that contain bytecode.
7581 Therefore, you can mix and match object files and libraries with
7582 GIMPLE bytecodes and final object code.  GCC will automatically select
7583 which files to optimize in LTO mode and which files to link without
7584 further processing.
7585
7586 There are some code generation flags that GCC will preserve when
7587 generating bytecodes, as they need to be used during the final link
7588 stage.  Currently, the following options are saved into the GIMPLE
7589 bytecode files: @option{-fPIC}, @option{-fcommon} and all the
7590 @option{-m} target flags.
7591
7592 At link time, these options are read-in and reapplied.  Note that the
7593 current implementation makes no attempt at recognizing conflicting
7594 values for these options.  If two or more files have a conflicting
7595 value (e.g., one file is compiled with @option{-fPIC} and another
7596 isn't), the compiler will simply use the last value read from the
7597 bytecode files.  It is recommended, then, that all the files
7598 participating in the same link be compiled with the same options.
7599
7600 Another feature of LTO is that it is possible to apply interprocedural
7601 optimizations on files written in different languages.  This requires
7602 some support in the language front end.  Currently, the C, C++ and
7603 Fortran front ends are capable of emitting GIMPLE bytecodes, so
7604 something like this should work
7605
7606 @smallexample
7607 gcc -c -flto foo.c
7608 g++ -c -flto bar.cc
7609 gfortran -c -flto baz.f90
7610 g++ -o myprog -flto -O3 foo.o bar.o baz.o -lgfortran
7611 @end smallexample
7612
7613 Notice that the final link is done with @command{g++} to get the C++
7614 runtime libraries and @option{-lgfortran} is added to get the Fortran
7615 runtime libraries.  In general, when mixing languages in LTO mode, you
7616 should use the same link command used when mixing languages in a
7617 regular (non-LTO) compilation.  This means that if your build process
7618 was mixing languages before, all you need to add is @option{-flto} to
7619 all the compile and link commands.
7620
7621 If LTO encounters objects with C linkage declared with incompatible
7622 types in separate translation units to be linked together (undefined
7623 behavior according to ISO C99 6.2.7), a non-fatal diagnostic may be
7624 issued.  The behavior is still undefined at runtime.
7625
7626 If object files containing GIMPLE bytecode are stored in a library archive, say
7627 @file{libfoo.a}, it is possible to extract and use them in an LTO link if you
7628 are using a linker with linker plugin support.  To enable this feature, use
7629 the flag @option{-fuse-linker-plugin} at link-time:
7630
7631 @smallexample
7632 gcc -o myprog -O2 -flto -fuse-linker-plugin a.o b.o -lfoo
7633 @end smallexample
7634
7635 With the linker plugin enabled, the linker will extract the needed
7636 GIMPLE files from @file{libfoo.a} and pass them on to the running GCC
7637 to make them part of the aggregated GIMPLE image to be optimized.
7638
7639 If you are not using a linker with linker plugin support and/or do not
7640 enable linker plugin then the objects inside @file{libfoo.a}
7641 will be extracted and linked as usual, but they will not participate
7642 in the LTO optimization process.
7643
7644 Link time optimizations do not require the presence of the whole program to
7645 operate.  If the program does not require any symbols to be exported, it is
7646 possible to combine @option{-flto} and with @option{-fwhole-program} to allow
7647 the interprocedural optimizers to use more aggressive assumptions which may
7648 lead to improved optimization opportunities.
7649 Use of @option{-fwhole-program} is not needed when linker plugin is
7650 active (see @option{-fuse-linker-plugin}).
7651
7652 Regarding portability: the current implementation of LTO makes no
7653 attempt at generating bytecode that can be ported between different
7654 types of hosts.  The bytecode files are versioned and there is a
7655 strict version check, so bytecode files generated in one version of
7656 GCC will not work with an older/newer version of GCC.
7657
7658 Link time optimization does not play well with generating debugging
7659 information.  Combining @option{-flto} with
7660 @option{-g} is currently experimental and expected to produce wrong
7661 results.
7662
7663 If you specify the optional @var{n}, the optimization and code
7664 generation done at link time is executed in parallel using @var{n}
7665 parallel jobs by utilizing an installed @command{make} program.  The
7666 environment variable @env{MAKE} may be used to override the program
7667 used.  The default value for @var{n} is 1.
7668
7669 You can also specify @option{-flto=jobserver} to use GNU make's
7670 job server mode to determine the number of parallel jobs. This
7671 is useful when the Makefile calling GCC is already executing in parallel.
7672 The parent Makefile will need a @samp{+} prepended to the command recipe
7673 for this to work. This will likely only work if @env{MAKE} is
7674 GNU make.
7675
7676 This option is disabled by default.
7677
7678 @item -flto-partition=@var{alg}
7679 @opindex flto-partition
7680 Specify the partitioning algorithm used by the link time optimizer.
7681 The value is either @code{1to1} to specify a partitioning mirroring
7682 the original source files or @code{balanced} to specify partitioning
7683 into equally sized chunks (whenever possible).  Specifying @code{none}
7684 as an algorithm disables partitioning and streaming completely. The
7685 default value is @code{balanced}.
7686
7687 @item -flto-compression-level=@var{n}
7688 This option specifies the level of compression used for intermediate
7689 language written to LTO object files, and is only meaningful in
7690 conjunction with LTO mode (@option{-flto}).  Valid
7691 values are 0 (no compression) to 9 (maximum compression).  Values
7692 outside this range are clamped to either 0 or 9.  If the option is not
7693 given, a default balanced compression setting is used.
7694
7695 @item -flto-report
7696 Prints a report with internal details on the workings of the link-time
7697 optimizer.  The contents of this report vary from version to version,
7698 it is meant to be useful to GCC developers when processing object
7699 files in LTO mode (via @option{-flto}).
7700
7701 Disabled by default.
7702
7703 @item -fuse-linker-plugin
7704 Enables the use of a linker plugin during link time optimization.  This
7705 option relies on plugin support in the linker, which is available in gold
7706 or in GNU ld 2.21 or newer.
7707
7708 This option enables the extraction of object files with GIMPLE bytecode out
7709 of library archives. This improves the quality of optimization by exposing
7710 more code to the link time optimizer.  This information specifies what
7711 symbols can be accessed externally (by non-LTO object or during dynamic
7712 linking).  Resulting code quality improvements on binaries (and shared
7713 libraries that use hidden visibility) are similar to @code{-fwhole-program}.
7714 See @option{-flto} for a description of the effect of this flag and how to
7715 use it.
7716
7717 Enabled by default when LTO support in GCC is enabled and GCC was compiled
7718 with a linker supporting plugins (GNU ld 2.21 or newer or gold).
7719
7720 @item -fcompare-elim
7721 @opindex fcompare-elim
7722 After register allocation and post-register allocation instruction splitting,
7723 identify arithmetic instructions that compute processor flags similar to a
7724 comparison operation based on that arithmetic.  If possible, eliminate the
7725 explicit comparison operation.
7726
7727 This pass only applies to certain targets that cannot explicitly represent
7728 the comparison operation before register allocation is complete.
7729
7730 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7731
7732 @item -fcprop-registers
7733 @opindex fcprop-registers
7734 After register allocation and post-register allocation instruction splitting,
7735 we perform a copy-propagation pass to try to reduce scheduling dependencies
7736 and occasionally eliminate the copy.
7737
7738 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7739
7740 @item -fprofile-correction
7741 @opindex fprofile-correction
7742 Profiles collected using an instrumented binary for multi-threaded programs may
7743 be inconsistent due to missed counter updates. When this option is specified,
7744 GCC will use heuristics to correct or smooth out such inconsistencies. By
7745 default, GCC will emit an error message when an inconsistent profile is detected.
7746
7747 @item -fprofile-dir=@var{path}
7748 @opindex fprofile-dir
7749
7750 Set the directory to search for the profile data files in to @var{path}.
7751 This option affects only the profile data generated by
7752 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
7753 and used by @option{-fprofile-use} and @option{-fbranch-probabilities}
7754 and its related options.
7755 By default, GCC will use the current directory as @var{path}, thus the
7756 profile data file will appear in the same directory as the object file.
7757
7758 @item -fprofile-generate
7759 @itemx -fprofile-generate=@var{path}
7760 @opindex fprofile-generate
7761
7762 Enable options usually used for instrumenting application to produce
7763 profile useful for later recompilation with profile feedback based
7764 optimization.  You must use @option{-fprofile-generate} both when
7765 compiling and when linking your program.
7766
7767 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
7768
7769 If @var{path} is specified, GCC will look at the @var{path} to find
7770 the profile feedback data files. See @option{-fprofile-dir}.
7771
7772 @item -fprofile-use
7773 @itemx -fprofile-use=@var{path}
7774 @opindex fprofile-use
7775 Enable profile feedback directed optimizations, and optimizations
7776 generally profitable only with profile feedback available.
7777
7778 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
7779 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
7780
7781 By default, GCC emits an error message if the feedback profiles do not
7782 match the source code.  This error can be turned into a warning by using
7783 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
7784 code.
7785
7786 If @var{path} is specified, GCC will look at the @var{path} to find
7787 the profile feedback data files. See @option{-fprofile-dir}.
7788 @end table
7789
7790 The following options control compiler behavior regarding floating
7791 point arithmetic.  These options trade off between speed and
7792 correctness.  All must be specifically enabled.
7793
7794 @table @gcctabopt
7795 @item -ffloat-store
7796 @opindex ffloat-store
7797 Do not store floating point variables in registers, and inhibit other
7798 options that might change whether a floating point value is taken from a
7799 register or memory.
7800
7801 @cindex floating point precision
7802 This option prevents undesirable excess precision on machines such as
7803 the 68000 where the floating registers (of the 68881) keep more
7804 precision than a @code{double} is supposed to have.  Similarly for the
7805 x86 architecture.  For most programs, the excess precision does only
7806 good, but a few programs rely on the precise definition of IEEE floating
7807 point.  Use @option{-ffloat-store} for such programs, after modifying
7808 them to store all pertinent intermediate computations into variables.
7809
7810 @item -fexcess-precision=@var{style}
7811 @opindex fexcess-precision
7812 This option allows further control over excess precision on machines
7813 where floating-point registers have more precision than the IEEE
7814 @code{float} and @code{double} types and the processor does not
7815 support operations rounding to those types.  By default,
7816 @option{-fexcess-precision=fast} is in effect; this means that
7817 operations are carried out in the precision of the registers and that
7818 it is unpredictable when rounding to the types specified in the source
7819 code takes place.  When compiling C, if
7820 @option{-fexcess-precision=standard} is specified then excess
7821 precision will follow the rules specified in ISO C99; in particular,
7822 both casts and assignments cause values to be rounded to their
7823 semantic types (whereas @option{-ffloat-store} only affects
7824 assignments).  This option is enabled by default for C if a strict
7825 conformance option such as @option{-std=c99} is used.
7826
7827 @opindex mfpmath
7828 @option{-fexcess-precision=standard} is not implemented for languages
7829 other than C, and has no effect if
7830 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
7831 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
7832 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
7833 semantics apply without excess precision, and in the latter, rounding
7834 is unpredictable.
7835
7836 @item -ffast-math
7837 @opindex ffast-math
7838 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
7839 @option{-ffinite-math-only}, @option{-fno-rounding-math},
7840 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
7841
7842 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
7843
7844 This option is not turned on by any @option{-O} option besides
7845 @option{-Ofast} since it can result in incorrect output for programs
7846 which depend on an exact implementation of IEEE or ISO rules/specifications
7847 for math functions. It may, however, yield faster code for programs
7848 that do not require the guarantees of these specifications.
7849
7850 @item -fno-math-errno
7851 @opindex fno-math-errno
7852 Do not set ERRNO after calling math functions that are executed
7853 with a single instruction, e.g., sqrt.  A program that relies on
7854 IEEE exceptions for math error handling may want to use this flag
7855 for speed while maintaining IEEE arithmetic compatibility.
7856
7857 This option is not turned on by any @option{-O} option since
7858 it can result in incorrect output for programs which depend on
7859 an exact implementation of IEEE or ISO rules/specifications for
7860 math functions. It may, however, yield faster code for programs
7861 that do not require the guarantees of these specifications.
7862
7863 The default is @option{-fmath-errno}.
7864
7865 On Darwin systems, the math library never sets @code{errno}.  There is
7866 therefore no reason for the compiler to consider the possibility that
7867 it might, and @option{-fno-math-errno} is the default.
7868
7869 @item -funsafe-math-optimizations
7870 @opindex funsafe-math-optimizations
7871
7872 Allow optimizations for floating-point arithmetic that (a) assume
7873 that arguments and results are valid and (b) may violate IEEE or
7874 ANSI standards.  When used at link-time, it may include libraries
7875 or startup files that change the default FPU control word or other
7876 similar optimizations.
7877
7878 This option is not turned on by any @option{-O} option since
7879 it can result in incorrect output for programs which depend on
7880 an exact implementation of IEEE or ISO rules/specifications for
7881 math functions. It may, however, yield faster code for programs
7882 that do not require the guarantees of these specifications.
7883 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
7884 @option{-fassociative-math} and @option{-freciprocal-math}.
7885
7886 The default is @option{-fno-unsafe-math-optimizations}.
7887
7888 @item -fassociative-math
7889 @opindex fassociative-math
7890
7891 Allow re-association of operands in series of floating-point operations.
7892 This violates the ISO C and C++ language standard by possibly changing
7893 computation result.  NOTE: re-ordering may change the sign of zero as
7894 well as ignore NaNs and inhibit or create underflow or overflow (and
7895 thus cannot be used on a code which relies on rounding behavior like
7896 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
7897 and thus may not be used when ordered comparisons are required.
7898 This option requires that both @option{-fno-signed-zeros} and
7899 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
7900 much sense with @option{-frounding-math}. For Fortran the option
7901 is automatically enabled when both @option{-fno-signed-zeros} and
7902 @option{-fno-trapping-math} are in effect.
7903
7904 The default is @option{-fno-associative-math}.
7905
7906 @item -freciprocal-math
7907 @opindex freciprocal-math
7908
7909 Allow the reciprocal of a value to be used instead of dividing by
7910 the value if this enables optimizations.  For example @code{x / y}
7911 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
7912 is subject to common subexpression elimination.  Note that this loses
7913 precision and increases the number of flops operating on the value.
7914
7915 The default is @option{-fno-reciprocal-math}.
7916
7917 @item -ffinite-math-only
7918 @opindex ffinite-math-only
7919 Allow optimizations for floating-point arithmetic that assume
7920 that arguments and results are not NaNs or +-Infs.
7921
7922 This option is not turned on by any @option{-O} option since
7923 it can result in incorrect output for programs which depend on
7924 an exact implementation of IEEE or ISO rules/specifications for
7925 math functions. It may, however, yield faster code for programs
7926 that do not require the guarantees of these specifications.
7927
7928 The default is @option{-fno-finite-math-only}.
7929
7930 @item -fno-signed-zeros
7931 @opindex fno-signed-zeros
7932 Allow optimizations for floating point arithmetic that ignore the
7933 signedness of zero.  IEEE arithmetic specifies the behavior of
7934 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
7935 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
7936 This option implies that the sign of a zero result isn't significant.
7937
7938 The default is @option{-fsigned-zeros}.
7939
7940 @item -fno-trapping-math
7941 @opindex fno-trapping-math
7942 Compile code assuming that floating-point operations cannot generate
7943 user-visible traps.  These traps include division by zero, overflow,
7944 underflow, inexact result and invalid operation.  This option requires
7945 that @option{-fno-signaling-nans} be in effect.  Setting this option may
7946 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
7947
7948 This option should never be turned on by any @option{-O} option since
7949 it can result in incorrect output for programs which depend on
7950 an exact implementation of IEEE or ISO rules/specifications for
7951 math functions.
7952
7953 The default is @option{-ftrapping-math}.
7954
7955 @item -frounding-math
7956 @opindex frounding-math
7957 Disable transformations and optimizations that assume default floating
7958 point rounding behavior.  This is round-to-zero for all floating point
7959 to integer conversions, and round-to-nearest for all other arithmetic
7960 truncations.  This option should be specified for programs that change
7961 the FP rounding mode dynamically, or that may be executed with a
7962 non-default rounding mode.  This option disables constant folding of
7963 floating point expressions at compile-time (which may be affected by
7964 rounding mode) and arithmetic transformations that are unsafe in the
7965 presence of sign-dependent rounding modes.
7966
7967 The default is @option{-fno-rounding-math}.
7968
7969 This option is experimental and does not currently guarantee to
7970 disable all GCC optimizations that are affected by rounding mode.
7971 Future versions of GCC may provide finer control of this setting
7972 using C99's @code{FENV_ACCESS} pragma.  This command line option
7973 will be used to specify the default state for @code{FENV_ACCESS}.
7974
7975 @item -fsignaling-nans
7976 @opindex fsignaling-nans
7977 Compile code assuming that IEEE signaling NaNs may generate user-visible
7978 traps during floating-point operations.  Setting this option disables
7979 optimizations that may change the number of exceptions visible with
7980 signaling NaNs.  This option implies @option{-ftrapping-math}.
7981
7982 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
7983 be defined.
7984
7985 The default is @option{-fno-signaling-nans}.
7986
7987 This option is experimental and does not currently guarantee to
7988 disable all GCC optimizations that affect signaling NaN behavior.
7989
7990 @item -fsingle-precision-constant
7991 @opindex fsingle-precision-constant
7992 Treat floating point constant as single precision constant instead of
7993 implicitly converting it to double precision constant.
7994
7995 @item -fcx-limited-range
7996 @opindex fcx-limited-range
7997 When enabled, this option states that a range reduction step is not
7998 needed when performing complex division.  Also, there is no checking
7999 whether the result of a complex multiplication or division is @code{NaN
8000 + I*NaN}, with an attempt to rescue the situation in that case.  The
8001 default is @option{-fno-cx-limited-range}, but is enabled by
8002 @option{-ffast-math}.
8003
8004 This option controls the default setting of the ISO C99
8005 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
8006 all languages.
8007
8008 @item -fcx-fortran-rules
8009 @opindex fcx-fortran-rules
8010 Complex multiplication and division follow Fortran rules.  Range
8011 reduction is done as part of complex division, but there is no checking
8012 whether the result of a complex multiplication or division is @code{NaN
8013 + I*NaN}, with an attempt to rescue the situation in that case.
8014
8015 The default is @option{-fno-cx-fortran-rules}.
8016
8017 @end table
8018
8019 The following options control optimizations that may improve
8020 performance, but are not enabled by any @option{-O} options.  This
8021 section includes experimental options that may produce broken code.
8022
8023 @table @gcctabopt
8024 @item -fbranch-probabilities
8025 @opindex fbranch-probabilities
8026 After running a program compiled with @option{-fprofile-arcs}
8027 (@pxref{Debugging Options,, Options for Debugging Your Program or
8028 @command{gcc}}), you can compile it a second time using
8029 @option{-fbranch-probabilities}, to improve optimizations based on
8030 the number of times each branch was taken.  When the program
8031 compiled with @option{-fprofile-arcs} exits it saves arc execution
8032 counts to a file called @file{@var{sourcename}.gcda} for each source
8033 file.  The information in this data file is very dependent on the
8034 structure of the generated code, so you must use the same source code
8035 and the same optimization options for both compilations.
8036
8037 With @option{-fbranch-probabilities}, GCC puts a
8038 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
8039 These can be used to improve optimization.  Currently, they are only
8040 used in one place: in @file{reorg.c}, instead of guessing which path a
8041 branch is most likely to take, the @samp{REG_BR_PROB} values are used to
8042 exactly determine which path is taken more often.
8043
8044 @item -fprofile-values
8045 @opindex fprofile-values
8046 If combined with @option{-fprofile-arcs}, it adds code so that some
8047 data about values of expressions in the program is gathered.
8048
8049 With @option{-fbranch-probabilities}, it reads back the data gathered
8050 from profiling values of expressions for usage in optimizations.
8051
8052 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
8053
8054 @item -fvpt
8055 @opindex fvpt
8056 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
8057 a code to gather information about values of expressions.
8058
8059 With @option{-fbranch-probabilities}, it reads back the data gathered
8060 and actually performs the optimizations based on them.
8061 Currently the optimizations include specialization of division operation
8062 using the knowledge about the value of the denominator.
8063
8064 @item -frename-registers
8065 @opindex frename-registers
8066 Attempt to avoid false dependencies in scheduled code by making use
8067 of registers left over after register allocation.  This optimization
8068 will most benefit processors with lots of registers.  Depending on the
8069 debug information format adopted by the target, however, it can
8070 make debugging impossible, since variables will no longer stay in
8071 a ``home register''.
8072
8073 Enabled by default with @option{-funroll-loops} and @option{-fpeel-loops}.
8074
8075 @item -ftracer
8076 @opindex ftracer
8077 Perform tail duplication to enlarge superblock size.  This transformation
8078 simplifies the control flow of the function allowing other optimizations to do
8079 better job.
8080
8081 Enabled with @option{-fprofile-use}.
8082
8083 @item -funroll-loops
8084 @opindex funroll-loops
8085 Unroll loops whose number of iterations can be determined at compile time or
8086 upon entry to the loop.  @option{-funroll-loops} implies
8087 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
8088 It also turns on complete loop peeling (i.e.@: complete removal of loops with
8089 small constant number of iterations).  This option makes code larger, and may
8090 or may not make it run faster.
8091
8092 Enabled with @option{-fprofile-use}.
8093
8094 @item -funroll-all-loops
8095 @opindex funroll-all-loops
8096 Unroll all loops, even if their number of iterations is uncertain when
8097 the loop is entered.  This usually makes programs run more slowly.
8098 @option{-funroll-all-loops} implies the same options as
8099 @option{-funroll-loops}.
8100
8101 @item -fpeel-loops
8102 @opindex fpeel-loops
8103 Peels the loops for that there is enough information that they do not
8104 roll much (from profile feedback).  It also turns on complete loop peeling
8105 (i.e.@: complete removal of loops with small constant number of iterations).
8106
8107 Enabled with @option{-fprofile-use}.
8108
8109 @item -fmove-loop-invariants
8110 @opindex fmove-loop-invariants
8111 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
8112 at level @option{-O1}
8113
8114 @item -funswitch-loops
8115 @opindex funswitch-loops
8116 Move branches with loop invariant conditions out of the loop, with duplicates
8117 of the loop on both branches (modified according to result of the condition).
8118
8119 @item -ffunction-sections
8120 @itemx -fdata-sections
8121 @opindex ffunction-sections
8122 @opindex fdata-sections
8123 Place each function or data item into its own section in the output
8124 file if the target supports arbitrary sections.  The name of the
8125 function or the name of the data item determines the section's name
8126 in the output file.
8127
8128 Use these options on systems where the linker can perform optimizations
8129 to improve locality of reference in the instruction space.  Most systems
8130 using the ELF object format and SPARC processors running Solaris 2 have
8131 linkers with such optimizations.  AIX may have these optimizations in
8132 the future.
8133
8134 Only use these options when there are significant benefits from doing
8135 so.  When you specify these options, the assembler and linker will
8136 create larger object and executable files and will also be slower.
8137 You will not be able to use @code{gprof} on all systems if you
8138 specify this option and you may have problems with debugging if
8139 you specify both this option and @option{-g}.
8140
8141 @item -fbranch-target-load-optimize
8142 @opindex fbranch-target-load-optimize
8143 Perform branch target register load optimization before prologue / epilogue
8144 threading.
8145 The use of target registers can typically be exposed only during reload,
8146 thus hoisting loads out of loops and doing inter-block scheduling needs
8147 a separate optimization pass.
8148
8149 @item -fbranch-target-load-optimize2
8150 @opindex fbranch-target-load-optimize2
8151 Perform branch target register load optimization after prologue / epilogue
8152 threading.
8153
8154 @item -fbtr-bb-exclusive
8155 @opindex fbtr-bb-exclusive
8156 When performing branch target register load optimization, don't reuse
8157 branch target registers in within any basic block.
8158
8159 @item -fstack-protector
8160 @opindex fstack-protector
8161 Emit extra code to check for buffer overflows, such as stack smashing
8162 attacks.  This is done by adding a guard variable to functions with
8163 vulnerable objects.  This includes functions that call alloca, and
8164 functions with buffers larger than 8 bytes.  The guards are initialized
8165 when a function is entered and then checked when the function exits.
8166 If a guard check fails, an error message is printed and the program exits.
8167
8168 @item -fstack-protector-all
8169 @opindex fstack-protector-all
8170 Like @option{-fstack-protector} except that all functions are protected.
8171
8172 @item -fsection-anchors
8173 @opindex fsection-anchors
8174 Try to reduce the number of symbolic address calculations by using
8175 shared ``anchor'' symbols to address nearby objects.  This transformation
8176 can help to reduce the number of GOT entries and GOT accesses on some
8177 targets.
8178
8179 For example, the implementation of the following function @code{foo}:
8180
8181 @smallexample
8182 static int a, b, c;
8183 int foo (void) @{ return a + b + c; @}
8184 @end smallexample
8185
8186 would usually calculate the addresses of all three variables, but if you
8187 compile it with @option{-fsection-anchors}, it will access the variables
8188 from a common anchor point instead.  The effect is similar to the
8189 following pseudocode (which isn't valid C):
8190
8191 @smallexample
8192 int foo (void)
8193 @{
8194   register int *xr = &x;
8195   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
8196 @}
8197 @end smallexample
8198
8199 Not all targets support this option.
8200
8201 @item --param @var{name}=@var{value}
8202 @opindex param
8203 In some places, GCC uses various constants to control the amount of
8204 optimization that is done.  For example, GCC will not inline functions
8205 that contain more that a certain number of instructions.  You can
8206 control some of these constants on the command-line using the
8207 @option{--param} option.
8208
8209 The names of specific parameters, and the meaning of the values, are
8210 tied to the internals of the compiler, and are subject to change
8211 without notice in future releases.
8212
8213 In each case, the @var{value} is an integer.  The allowable choices for
8214 @var{name} are given in the following table:
8215
8216 @table @gcctabopt
8217 @item predictable-branch-outcome
8218 When branch is predicted to be taken with probability lower than this threshold
8219 (in percent), then it is considered well predictable. The default is 10.
8220
8221 @item max-crossjump-edges
8222 The maximum number of incoming edges to consider for crossjumping.
8223 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
8224 the number of edges incoming to each block.  Increasing values mean
8225 more aggressive optimization, making the compile time increase with
8226 probably small improvement in executable size.
8227
8228 @item min-crossjump-insns
8229 The minimum number of instructions which must be matched at the end
8230 of two blocks before crossjumping will be performed on them.  This
8231 value is ignored in the case where all instructions in the block being
8232 crossjumped from are matched.  The default value is 5.
8233
8234 @item max-grow-copy-bb-insns
8235 The maximum code size expansion factor when copying basic blocks
8236 instead of jumping.  The expansion is relative to a jump instruction.
8237 The default value is 8.
8238
8239 @item max-goto-duplication-insns
8240 The maximum number of instructions to duplicate to a block that jumps
8241 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
8242 passes, GCC factors computed gotos early in the compilation process,
8243 and unfactors them as late as possible.  Only computed jumps at the
8244 end of a basic blocks with no more than max-goto-duplication-insns are
8245 unfactored.  The default value is 8.
8246
8247 @item max-delay-slot-insn-search
8248 The maximum number of instructions to consider when looking for an
8249 instruction to fill a delay slot.  If more than this arbitrary number of
8250 instructions is searched, the time savings from filling the delay slot
8251 will be minimal so stop searching.  Increasing values mean more
8252 aggressive optimization, making the compile time increase with probably
8253 small improvement in executable run time.
8254
8255 @item max-delay-slot-live-search
8256 When trying to fill delay slots, the maximum number of instructions to
8257 consider when searching for a block with valid live register
8258 information.  Increasing this arbitrarily chosen value means more
8259 aggressive optimization, increasing the compile time.  This parameter
8260 should be removed when the delay slot code is rewritten to maintain the
8261 control-flow graph.
8262
8263 @item max-gcse-memory
8264 The approximate maximum amount of memory that will be allocated in
8265 order to perform the global common subexpression elimination
8266 optimization.  If more memory than specified is required, the
8267 optimization will not be done.
8268
8269 @item max-gcse-insertion-ratio
8270 If the ratio of expression insertions to deletions is larger than this value
8271 for any expression, then RTL PRE will insert or remove the expression and thus
8272 leave partially redundant computations in the instruction stream.  The default value is 20.
8273
8274 @item max-pending-list-length
8275 The maximum number of pending dependencies scheduling will allow
8276 before flushing the current state and starting over.  Large functions
8277 with few branches or calls can create excessively large lists which
8278 needlessly consume memory and resources.
8279
8280 @item max-inline-insns-single
8281 Several parameters control the tree inliner used in gcc.
8282 This number sets the maximum number of instructions (counted in GCC's
8283 internal representation) in a single function that the tree inliner
8284 will consider for inlining.  This only affects functions declared
8285 inline and methods implemented in a class declaration (C++).
8286 The default value is 400.
8287
8288 @item max-inline-insns-auto
8289 When you use @option{-finline-functions} (included in @option{-O3}),
8290 a lot of functions that would otherwise not be considered for inlining
8291 by the compiler will be investigated.  To those functions, a different
8292 (more restrictive) limit compared to functions declared inline can
8293 be applied.
8294 The default value is 40.
8295
8296 @item large-function-insns
8297 The limit specifying really large functions.  For functions larger than this
8298 limit after inlining, inlining is constrained by
8299 @option{--param large-function-growth}.  This parameter is useful primarily
8300 to avoid extreme compilation time caused by non-linear algorithms used by the
8301 backend.
8302 The default value is 2700.
8303
8304 @item large-function-growth
8305 Specifies maximal growth of large function caused by inlining in percents.
8306 The default value is 100 which limits large function growth to 2.0 times
8307 the original size.
8308
8309 @item large-unit-insns
8310 The limit specifying large translation unit.  Growth caused by inlining of
8311 units larger than this limit is limited by @option{--param inline-unit-growth}.
8312 For small units this might be too tight (consider unit consisting of function A
8313 that is inline and B that just calls A three time.  If B is small relative to
8314 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
8315 large units consisting of small inlineable functions however the overall unit
8316 growth limit is needed to avoid exponential explosion of code size.  Thus for
8317 smaller units, the size is increased to @option{--param large-unit-insns}
8318 before applying @option{--param inline-unit-growth}.  The default is 10000
8319
8320 @item inline-unit-growth
8321 Specifies maximal overall growth of the compilation unit caused by inlining.
8322 The default value is 30 which limits unit growth to 1.3 times the original
8323 size.
8324
8325 @item ipcp-unit-growth
8326 Specifies maximal overall growth of the compilation unit caused by
8327 interprocedural constant propagation.  The default value is 10 which limits
8328 unit growth to 1.1 times the original size.
8329
8330 @item large-stack-frame
8331 The limit specifying large stack frames.  While inlining the algorithm is trying
8332 to not grow past this limit too much.  Default value is 256 bytes.
8333
8334 @item large-stack-frame-growth
8335 Specifies maximal growth of large stack frames caused by inlining in percents.
8336 The default value is 1000 which limits large stack frame growth to 11 times
8337 the original size.
8338
8339 @item max-inline-insns-recursive
8340 @itemx max-inline-insns-recursive-auto
8341 Specifies maximum number of instructions out-of-line copy of self recursive inline
8342 function can grow into by performing recursive inlining.
8343
8344 For functions declared inline @option{--param max-inline-insns-recursive} is
8345 taken into account.  For function not declared inline, recursive inlining
8346 happens only when @option{-finline-functions} (included in @option{-O3}) is
8347 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
8348 default value is 450.
8349
8350 @item max-inline-recursive-depth
8351 @itemx max-inline-recursive-depth-auto
8352 Specifies maximum recursion depth used by the recursive inlining.
8353
8354 For functions declared inline @option{--param max-inline-recursive-depth} is
8355 taken into account.  For function not declared inline, recursive inlining
8356 happens only when @option{-finline-functions} (included in @option{-O3}) is
8357 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
8358 default value is 8.
8359
8360 @item min-inline-recursive-probability
8361 Recursive inlining is profitable only for function having deep recursion
8362 in average and can hurt for function having little recursion depth by
8363 increasing the prologue size or complexity of function body to other
8364 optimizers.
8365
8366 When profile feedback is available (see @option{-fprofile-generate}) the actual
8367 recursion depth can be guessed from probability that function will recurse via
8368 given call expression.  This parameter limits inlining only to call expression
8369 whose probability exceeds given threshold (in percents).  The default value is
8370 10.
8371
8372 @item early-inlining-insns
8373 Specify growth that early inliner can make.  In effect it increases amount of
8374 inlining for code having large abstraction penalty.  The default value is 10.
8375
8376 @item max-early-inliner-iterations
8377 @itemx max-early-inliner-iterations
8378 Limit of iterations of early inliner.  This basically bounds number of nested
8379 indirect calls early inliner can resolve.  Deeper chains are still handled by
8380 late inlining.
8381
8382 @item comdat-sharing-probability
8383 @itemx comdat-sharing-probability
8384 Probability (in percent) that C++ inline function with comdat visibility
8385 will be shared across multiple compilation units.  The default value is 20.
8386
8387 @item min-vect-loop-bound
8388 The minimum number of iterations under which a loop will not get vectorized
8389 when @option{-ftree-vectorize} is used.  The number of iterations after
8390 vectorization needs to be greater than the value specified by this option
8391 to allow vectorization.  The default value is 0.
8392
8393 @item gcse-cost-distance-ratio
8394 Scaling factor in calculation of maximum distance an expression
8395 can be moved by GCSE optimizations.  This is currently supported only in the
8396 code hoisting pass.  The bigger the ratio, the more aggressive code hoisting
8397 will be with simple expressions, i.e., the expressions which have cost
8398 less than @option{gcse-unrestricted-cost}.  Specifying 0 will disable
8399 hoisting of simple expressions.  The default value is 10.
8400
8401 @item gcse-unrestricted-cost
8402 Cost, roughly measured as the cost of a single typical machine
8403 instruction, at which GCSE optimizations will not constrain
8404 the distance an expression can travel.  This is currently
8405 supported only in the code hoisting pass.  The lesser the cost,
8406 the more aggressive code hoisting will be.  Specifying 0 will
8407 allow all expressions to travel unrestricted distances.
8408 The default value is 3.
8409
8410 @item max-hoist-depth
8411 The depth of search in the dominator tree for expressions to hoist.
8412 This is used to avoid quadratic behavior in hoisting algorithm.
8413 The value of 0 will avoid limiting the search, but may slow down compilation
8414 of huge functions.  The default value is 30.
8415
8416 @item max-unrolled-insns
8417 The maximum number of instructions that a loop should have if that loop
8418 is unrolled, and if the loop is unrolled, it determines how many times
8419 the loop code is unrolled.
8420
8421 @item max-average-unrolled-insns
8422 The maximum number of instructions biased by probabilities of their execution
8423 that a loop should have if that loop is unrolled, and if the loop is unrolled,
8424 it determines how many times the loop code is unrolled.
8425
8426 @item max-unroll-times
8427 The maximum number of unrollings of a single loop.
8428
8429 @item max-peeled-insns
8430 The maximum number of instructions that a loop should have if that loop
8431 is peeled, and if the loop is peeled, it determines how many times
8432 the loop code is peeled.
8433
8434 @item max-peel-times
8435 The maximum number of peelings of a single loop.
8436
8437 @item max-completely-peeled-insns
8438 The maximum number of insns of a completely peeled loop.
8439
8440 @item max-completely-peel-times
8441 The maximum number of iterations of a loop to be suitable for complete peeling.
8442
8443 @item max-completely-peel-loop-nest-depth
8444 The maximum depth of a loop nest suitable for complete peeling.
8445
8446 @item max-unswitch-insns
8447 The maximum number of insns of an unswitched loop.
8448
8449 @item max-unswitch-level
8450 The maximum number of branches unswitched in a single loop.
8451
8452 @item lim-expensive
8453 The minimum cost of an expensive expression in the loop invariant motion.
8454
8455 @item iv-consider-all-candidates-bound
8456 Bound on number of candidates for induction variables below that
8457 all candidates are considered for each use in induction variable
8458 optimizations.  Only the most relevant candidates are considered
8459 if there are more candidates, to avoid quadratic time complexity.
8460
8461 @item iv-max-considered-uses
8462 The induction variable optimizations give up on loops that contain more
8463 induction variable uses.
8464
8465 @item iv-always-prune-cand-set-bound
8466 If number of candidates in the set is smaller than this value,
8467 we always try to remove unnecessary ivs from the set during its
8468 optimization when a new iv is added to the set.
8469
8470 @item scev-max-expr-size
8471 Bound on size of expressions used in the scalar evolutions analyzer.
8472 Large expressions slow the analyzer.
8473
8474 @item scev-max-expr-complexity
8475 Bound on the complexity of the expressions in the scalar evolutions analyzer.
8476 Complex expressions slow the analyzer.
8477
8478 @item omega-max-vars
8479 The maximum number of variables in an Omega constraint system.
8480 The default value is 128.
8481
8482 @item omega-max-geqs
8483 The maximum number of inequalities in an Omega constraint system.
8484 The default value is 256.
8485
8486 @item omega-max-eqs
8487 The maximum number of equalities in an Omega constraint system.
8488 The default value is 128.
8489
8490 @item omega-max-wild-cards
8491 The maximum number of wildcard variables that the Omega solver will
8492 be able to insert.  The default value is 18.
8493
8494 @item omega-hash-table-size
8495 The size of the hash table in the Omega solver.  The default value is
8496 550.
8497
8498 @item omega-max-keys
8499 The maximal number of keys used by the Omega solver.  The default
8500 value is 500.
8501
8502 @item omega-eliminate-redundant-constraints
8503 When set to 1, use expensive methods to eliminate all redundant
8504 constraints.  The default value is 0.
8505
8506 @item vect-max-version-for-alignment-checks
8507 The maximum number of runtime checks that can be performed when
8508 doing loop versioning for alignment in the vectorizer.  See option
8509 ftree-vect-loop-version for more information.
8510
8511 @item vect-max-version-for-alias-checks
8512 The maximum number of runtime checks that can be performed when
8513 doing loop versioning for alias in the vectorizer.  See option
8514 ftree-vect-loop-version for more information.
8515
8516 @item max-iterations-to-track
8517
8518 The maximum number of iterations of a loop the brute force algorithm
8519 for analysis of # of iterations of the loop tries to evaluate.
8520
8521 @item hot-bb-count-fraction
8522 Select fraction of the maximal count of repetitions of basic block in program
8523 given basic block needs to have to be considered hot.
8524
8525 @item hot-bb-frequency-fraction
8526 Select fraction of the entry block frequency of executions of basic block in
8527 function given basic block needs to have to be considered hot.
8528
8529 @item max-predicted-iterations
8530 The maximum number of loop iterations we predict statically.  This is useful
8531 in cases where function contain single loop with known bound and other loop
8532 with unknown.  We predict the known number of iterations correctly, while
8533 the unknown number of iterations average to roughly 10.  This means that the
8534 loop without bounds would appear artificially cold relative to the other one.
8535
8536 @item align-threshold
8537
8538 Select fraction of the maximal frequency of executions of basic block in
8539 function given basic block will get aligned.
8540
8541 @item align-loop-iterations
8542
8543 A loop expected to iterate at lest the selected number of iterations will get
8544 aligned.
8545
8546 @item tracer-dynamic-coverage
8547 @itemx tracer-dynamic-coverage-feedback
8548
8549 This value is used to limit superblock formation once the given percentage of
8550 executed instructions is covered.  This limits unnecessary code size
8551 expansion.
8552
8553 The @option{tracer-dynamic-coverage-feedback} is used only when profile
8554 feedback is available.  The real profiles (as opposed to statically estimated
8555 ones) are much less balanced allowing the threshold to be larger value.
8556
8557 @item tracer-max-code-growth
8558 Stop tail duplication once code growth has reached given percentage.  This is
8559 rather hokey argument, as most of the duplicates will be eliminated later in
8560 cross jumping, so it may be set to much higher values than is the desired code
8561 growth.
8562
8563 @item tracer-min-branch-ratio
8564
8565 Stop reverse growth when the reverse probability of best edge is less than this
8566 threshold (in percent).
8567
8568 @item tracer-min-branch-ratio
8569 @itemx tracer-min-branch-ratio-feedback
8570
8571 Stop forward growth if the best edge do have probability lower than this
8572 threshold.
8573
8574 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
8575 compilation for profile feedback and one for compilation without.  The value
8576 for compilation with profile feedback needs to be more conservative (higher) in
8577 order to make tracer effective.
8578
8579 @item max-cse-path-length
8580
8581 Maximum number of basic blocks on path that cse considers.  The default is 10.
8582
8583 @item max-cse-insns
8584 The maximum instructions CSE process before flushing. The default is 1000.
8585
8586 @item ggc-min-expand
8587
8588 GCC uses a garbage collector to manage its own memory allocation.  This
8589 parameter specifies the minimum percentage by which the garbage
8590 collector's heap should be allowed to expand between collections.
8591 Tuning this may improve compilation speed; it has no effect on code
8592 generation.
8593
8594 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
8595 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
8596 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
8597 GCC is not able to calculate RAM on a particular platform, the lower
8598 bound of 30% is used.  Setting this parameter and
8599 @option{ggc-min-heapsize} to zero causes a full collection to occur at
8600 every opportunity.  This is extremely slow, but can be useful for
8601 debugging.
8602
8603 @item ggc-min-heapsize
8604
8605 Minimum size of the garbage collector's heap before it begins bothering
8606 to collect garbage.  The first collection occurs after the heap expands
8607 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
8608 tuning this may improve compilation speed, and has no effect on code
8609 generation.
8610
8611 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
8612 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
8613 with a lower bound of 4096 (four megabytes) and an upper bound of
8614 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
8615 particular platform, the lower bound is used.  Setting this parameter
8616 very large effectively disables garbage collection.  Setting this
8617 parameter and @option{ggc-min-expand} to zero causes a full collection
8618 to occur at every opportunity.
8619
8620 @item max-reload-search-insns
8621 The maximum number of instruction reload should look backward for equivalent
8622 register.  Increasing values mean more aggressive optimization, making the
8623 compile time increase with probably slightly better performance.  The default
8624 value is 100.
8625
8626 @item max-cselib-memory-locations
8627 The maximum number of memory locations cselib should take into account.
8628 Increasing values mean more aggressive optimization, making the compile time
8629 increase with probably slightly better performance.  The default value is 500.
8630
8631 @item reorder-blocks-duplicate
8632 @itemx reorder-blocks-duplicate-feedback
8633
8634 Used by basic block reordering pass to decide whether to use unconditional
8635 branch or duplicate the code on its destination.  Code is duplicated when its
8636 estimated size is smaller than this value multiplied by the estimated size of
8637 unconditional jump in the hot spots of the program.
8638
8639 The @option{reorder-block-duplicate-feedback} is used only when profile
8640 feedback is available and may be set to higher values than
8641 @option{reorder-block-duplicate} since information about the hot spots is more
8642 accurate.
8643
8644 @item max-sched-ready-insns
8645 The maximum number of instructions ready to be issued the scheduler should
8646 consider at any given time during the first scheduling pass.  Increasing
8647 values mean more thorough searches, making the compilation time increase
8648 with probably little benefit.  The default value is 100.
8649
8650 @item max-sched-region-blocks
8651 The maximum number of blocks in a region to be considered for
8652 interblock scheduling.  The default value is 10.
8653
8654 @item max-pipeline-region-blocks
8655 The maximum number of blocks in a region to be considered for
8656 pipelining in the selective scheduler.  The default value is 15.
8657
8658 @item max-sched-region-insns
8659 The maximum number of insns in a region to be considered for
8660 interblock scheduling.  The default value is 100.
8661
8662 @item max-pipeline-region-insns
8663 The maximum number of insns in a region to be considered for
8664 pipelining in the selective scheduler.  The default value is 200.
8665
8666 @item min-spec-prob
8667 The minimum probability (in percents) of reaching a source block
8668 for interblock speculative scheduling.  The default value is 40.
8669
8670 @item max-sched-extend-regions-iters
8671 The maximum number of iterations through CFG to extend regions.
8672 0 - disable region extension,
8673 N - do at most N iterations.
8674 The default value is 0.
8675
8676 @item max-sched-insn-conflict-delay
8677 The maximum conflict delay for an insn to be considered for speculative motion.
8678 The default value is 3.
8679
8680 @item sched-spec-prob-cutoff
8681 The minimal probability of speculation success (in percents), so that
8682 speculative insn will be scheduled.
8683 The default value is 40.
8684
8685 @item sched-mem-true-dep-cost
8686 Minimal distance (in CPU cycles) between store and load targeting same
8687 memory locations.  The default value is 1.
8688
8689 @item selsched-max-lookahead
8690 The maximum size of the lookahead window of selective scheduling.  It is a
8691 depth of search for available instructions.
8692 The default value is 50.
8693
8694 @item selsched-max-sched-times
8695 The maximum number of times that an instruction will be scheduled during
8696 selective scheduling.  This is the limit on the number of iterations
8697 through which the instruction may be pipelined.  The default value is 2.
8698
8699 @item selsched-max-insns-to-rename
8700 The maximum number of best instructions in the ready list that are considered
8701 for renaming in the selective scheduler.  The default value is 2.
8702
8703 @item sms-min-sc
8704 The minimum value of stage count that swing modulo scheduler will
8705 generate.  The default value is 2.
8706
8707 @item max-last-value-rtl
8708 The maximum size measured as number of RTLs that can be recorded in an expression
8709 in combiner for a pseudo register as last known value of that register.  The default
8710 is 10000.
8711
8712 @item integer-share-limit
8713 Small integer constants can use a shared data structure, reducing the
8714 compiler's memory usage and increasing its speed.  This sets the maximum
8715 value of a shared integer constant.  The default value is 256.
8716
8717 @item min-virtual-mappings
8718 Specifies the minimum number of virtual mappings in the incremental
8719 SSA updater that should be registered to trigger the virtual mappings
8720 heuristic defined by virtual-mappings-ratio.  The default value is
8721 100.
8722
8723 @item virtual-mappings-ratio
8724 If the number of virtual mappings is virtual-mappings-ratio bigger
8725 than the number of virtual symbols to be updated, then the incremental
8726 SSA updater switches to a full update for those symbols.  The default
8727 ratio is 3.
8728
8729 @item ssp-buffer-size
8730 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
8731 protection when @option{-fstack-protection} is used.
8732
8733 @item max-jump-thread-duplication-stmts
8734 Maximum number of statements allowed in a block that needs to be
8735 duplicated when threading jumps.
8736
8737 @item max-fields-for-field-sensitive
8738 Maximum number of fields in a structure we will treat in
8739 a field sensitive manner during pointer analysis.  The default is zero
8740 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
8741
8742 @item prefetch-latency
8743 Estimate on average number of instructions that are executed before
8744 prefetch finishes.  The distance we prefetch ahead is proportional
8745 to this constant.  Increasing this number may also lead to less
8746 streams being prefetched (see @option{simultaneous-prefetches}).
8747
8748 @item simultaneous-prefetches
8749 Maximum number of prefetches that can run at the same time.
8750
8751 @item l1-cache-line-size
8752 The size of cache line in L1 cache, in bytes.
8753
8754 @item l1-cache-size
8755 The size of L1 cache, in kilobytes.
8756
8757 @item l2-cache-size
8758 The size of L2 cache, in kilobytes.
8759
8760 @item min-insn-to-prefetch-ratio
8761 The minimum ratio between the number of instructions and the
8762 number of prefetches to enable prefetching in a loop.
8763
8764 @item prefetch-min-insn-to-mem-ratio
8765 The minimum ratio between the number of instructions and the
8766 number of memory references to enable prefetching in a loop.
8767
8768 @item use-canonical-types
8769 Whether the compiler should use the ``canonical'' type system.  By
8770 default, this should always be 1, which uses a more efficient internal
8771 mechanism for comparing types in C++ and Objective-C++.  However, if
8772 bugs in the canonical type system are causing compilation failures,
8773 set this value to 0 to disable canonical types.
8774
8775 @item switch-conversion-max-branch-ratio
8776 Switch initialization conversion will refuse to create arrays that are
8777 bigger than @option{switch-conversion-max-branch-ratio} times the number of
8778 branches in the switch.
8779
8780 @item max-partial-antic-length
8781 Maximum length of the partial antic set computed during the tree
8782 partial redundancy elimination optimization (@option{-ftree-pre}) when
8783 optimizing at @option{-O3} and above.  For some sorts of source code
8784 the enhanced partial redundancy elimination optimization can run away,
8785 consuming all of the memory available on the host machine.  This
8786 parameter sets a limit on the length of the sets that are computed,
8787 which prevents the runaway behavior.  Setting a value of 0 for
8788 this parameter will allow an unlimited set length.
8789
8790 @item sccvn-max-scc-size
8791 Maximum size of a strongly connected component (SCC) during SCCVN
8792 processing.  If this limit is hit, SCCVN processing for the whole
8793 function will not be done and optimizations depending on it will
8794 be disabled.  The default maximum SCC size is 10000.
8795
8796 @item ira-max-loops-num
8797 IRA uses a regional register allocation by default.  If a function
8798 contains loops more than number given by the parameter, only at most
8799 given number of the most frequently executed loops will form regions
8800 for the regional register allocation.  The default value of the
8801 parameter is 100.
8802
8803 @item ira-max-conflict-table-size
8804 Although IRA uses a sophisticated algorithm of compression conflict
8805 table, the table can be still big for huge functions.  If the conflict
8806 table for a function could be more than size in MB given by the
8807 parameter, the conflict table is not built and faster, simpler, and
8808 lower quality register allocation algorithm will be used.  The
8809 algorithm do not use pseudo-register conflicts.  The default value of
8810 the parameter is 2000.
8811
8812 @item ira-loop-reserved-regs
8813 IRA can be used to evaluate more accurate register pressure in loops
8814 for decision to move loop invariants (see @option{-O3}).  The number
8815 of available registers reserved for some other purposes is described
8816 by this parameter.  The default value of the parameter is 2 which is
8817 minimal number of registers needed for execution of typical
8818 instruction.  This value is the best found from numerous experiments.
8819
8820 @item loop-invariant-max-bbs-in-loop
8821 Loop invariant motion can be very expensive, both in compile time and
8822 in amount of needed compile time memory, with very large loops.  Loops
8823 with more basic blocks than this parameter won't have loop invariant
8824 motion optimization performed on them.  The default value of the
8825 parameter is 1000 for -O1 and 10000 for -O2 and above.
8826
8827 @item max-vartrack-size
8828 Sets a maximum number of hash table slots to use during variable
8829 tracking dataflow analysis of any function.  If this limit is exceeded
8830 with variable tracking at assignments enabled, analysis for that
8831 function is retried without it, after removing all debug insns from
8832 the function.  If the limit is exceeded even without debug insns, var
8833 tracking analysis is completely disabled for the function.  Setting
8834 the parameter to zero makes it unlimited.
8835
8836 @item min-nondebug-insn-uid
8837 Use uids starting at this parameter for nondebug insns.  The range below
8838 the parameter is reserved exclusively for debug insns created by
8839 @option{-fvar-tracking-assignments}, but debug insns may get
8840 (non-overlapping) uids above it if the reserved range is exhausted.
8841
8842 @item ipa-sra-ptr-growth-factor
8843 IPA-SRA will replace a pointer to an aggregate with one or more new
8844 parameters only when their cumulative size is less or equal to
8845 @option{ipa-sra-ptr-growth-factor} times the size of the original
8846 pointer parameter.
8847
8848 @item graphite-max-nb-scop-params
8849 To avoid exponential effects in the Graphite loop transforms, the
8850 number of parameters in a Static Control Part (SCoP) is bounded.  The
8851 default value is 10 parameters.  A variable whose value is unknown at
8852 compile time and defined outside a SCoP is a parameter of the SCoP.
8853
8854 @item graphite-max-bbs-per-function
8855 To avoid exponential effects in the detection of SCoPs, the size of
8856 the functions analyzed by Graphite is bounded.  The default value is
8857 100 basic blocks.
8858
8859 @item loop-block-tile-size
8860 Loop blocking or strip mining transforms, enabled with
8861 @option{-floop-block} or @option{-floop-strip-mine}, strip mine each
8862 loop in the loop nest by a given number of iterations.  The strip
8863 length can be changed using the @option{loop-block-tile-size}
8864 parameter.  The default value is 51 iterations.
8865
8866 @item devirt-type-list-size
8867 IPA-CP attempts to track all possible types passed to a function's
8868 parameter in order to perform devirtualization.
8869 @option{devirt-type-list-size} is the maximum number of types it
8870 stores per a single formal parameter of a function.
8871
8872 @item lto-partitions
8873 Specify desired number of partitions produced during WHOPR compilation.
8874 The number of partitions should exceed the number of CPUs used for compilation.
8875 The default value is 32.
8876
8877 @item lto-minpartition
8878 Size of minimal partition for WHOPR (in estimated instructions).
8879 This prevents expenses of splitting very small programs into too many
8880 partitions.
8881
8882 @item cxx-max-namespaces-for-diagnostic-help
8883 The maximum number of namespaces to consult for suggestions when C++
8884 name lookup fails for an identifier.  The default is 1000.
8885
8886 @item max-stores-to-sink
8887 The maximum number of conditional stores paires that can be sunk.  Set to 0
8888 if either vectorization (@option{-ftree-vectorize}) or if-conversion
8889 (@option{-ftree-loop-if-convert}) is disabled.  The default is 2.
8890
8891 @end table
8892 @end table
8893
8894 @node Preprocessor Options
8895 @section Options Controlling the Preprocessor
8896 @cindex preprocessor options
8897 @cindex options, preprocessor
8898
8899 These options control the C preprocessor, which is run on each C source
8900 file before actual compilation.
8901
8902 If you use the @option{-E} option, nothing is done except preprocessing.
8903 Some of these options make sense only together with @option{-E} because
8904 they cause the preprocessor output to be unsuitable for actual
8905 compilation.
8906
8907 @table @gcctabopt
8908 @item -Wp,@var{option}
8909 @opindex Wp
8910 You can use @option{-Wp,@var{option}} to bypass the compiler driver
8911 and pass @var{option} directly through to the preprocessor.  If
8912 @var{option} contains commas, it is split into multiple options at the
8913 commas.  However, many options are modified, translated or interpreted
8914 by the compiler driver before being passed to the preprocessor, and
8915 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
8916 interface is undocumented and subject to change, so whenever possible
8917 you should avoid using @option{-Wp} and let the driver handle the
8918 options instead.
8919
8920 @item -Xpreprocessor @var{option}
8921 @opindex Xpreprocessor
8922 Pass @var{option} as an option to the preprocessor.  You can use this to
8923 supply system-specific preprocessor options which GCC does not know how to
8924 recognize.
8925
8926 If you want to pass an option that takes an argument, you must use
8927 @option{-Xpreprocessor} twice, once for the option and once for the argument.
8928 @end table
8929
8930 @include cppopts.texi
8931
8932 @node Assembler Options
8933 @section Passing Options to the Assembler
8934
8935 @c prevent bad page break with this line
8936 You can pass options to the assembler.
8937
8938 @table @gcctabopt
8939 @item -Wa,@var{option}
8940 @opindex Wa
8941 Pass @var{option} as an option to the assembler.  If @var{option}
8942 contains commas, it is split into multiple options at the commas.
8943
8944 @item -Xassembler @var{option}
8945 @opindex Xassembler
8946 Pass @var{option} as an option to the assembler.  You can use this to
8947 supply system-specific assembler options which GCC does not know how to
8948 recognize.
8949
8950 If you want to pass an option that takes an argument, you must use
8951 @option{-Xassembler} twice, once for the option and once for the argument.
8952
8953 @end table
8954
8955 @node Link Options
8956 @section Options for Linking
8957 @cindex link options
8958 @cindex options, linking
8959
8960 These options come into play when the compiler links object files into
8961 an executable output file.  They are meaningless if the compiler is
8962 not doing a link step.
8963
8964 @table @gcctabopt
8965 @cindex file names
8966 @item @var{object-file-name}
8967 A file name that does not end in a special recognized suffix is
8968 considered to name an object file or library.  (Object files are
8969 distinguished from libraries by the linker according to the file
8970 contents.)  If linking is done, these object files are used as input
8971 to the linker.
8972
8973 @item -c
8974 @itemx -S
8975 @itemx -E
8976 @opindex c
8977 @opindex S
8978 @opindex E
8979 If any of these options is used, then the linker is not run, and
8980 object file names should not be used as arguments.  @xref{Overall
8981 Options}.
8982
8983 @cindex Libraries
8984 @item -l@var{library}
8985 @itemx -l @var{library}
8986 @opindex l
8987 Search the library named @var{library} when linking.  (The second
8988 alternative with the library as a separate argument is only for
8989 POSIX compliance and is not recommended.)
8990
8991 It makes a difference where in the command you write this option; the
8992 linker searches and processes libraries and object files in the order they
8993 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
8994 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
8995 to functions in @samp{z}, those functions may not be loaded.
8996
8997 The linker searches a standard list of directories for the library,
8998 which is actually a file named @file{lib@var{library}.a}.  The linker
8999 then uses this file as if it had been specified precisely by name.
9000
9001 The directories searched include several standard system directories
9002 plus any that you specify with @option{-L}.
9003
9004 Normally the files found this way are library files---archive files
9005 whose members are object files.  The linker handles an archive file by
9006 scanning through it for members which define symbols that have so far
9007 been referenced but not defined.  But if the file that is found is an
9008 ordinary object file, it is linked in the usual fashion.  The only
9009 difference between using an @option{-l} option and specifying a file name
9010 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
9011 and searches several directories.
9012
9013 @item -lobjc
9014 @opindex lobjc
9015 You need this special case of the @option{-l} option in order to
9016 link an Objective-C or Objective-C++ program.
9017
9018 @item -nostartfiles
9019 @opindex nostartfiles
9020 Do not use the standard system startup files when linking.
9021 The standard system libraries are used normally, unless @option{-nostdlib}
9022 or @option{-nodefaultlibs} is used.
9023
9024 @item -nodefaultlibs
9025 @opindex nodefaultlibs
9026 Do not use the standard system libraries when linking.
9027 Only the libraries you specify will be passed to the linker, options
9028 specifying linkage of the system libraries, such as @code{-static-libgcc}
9029 or @code{-shared-libgcc}, will be ignored.
9030 The standard startup files are used normally, unless @option{-nostartfiles}
9031 is used.  The compiler may generate calls to @code{memcmp},
9032 @code{memset}, @code{memcpy} and @code{memmove}.
9033 These entries are usually resolved by entries in
9034 libc.  These entry points should be supplied through some other
9035 mechanism when this option is specified.
9036
9037 @item -nostdlib
9038 @opindex nostdlib
9039 Do not use the standard system startup files or libraries when linking.
9040 No startup files and only the libraries you specify will be passed to
9041 the linker, options specifying linkage of the system libraries, such as
9042 @code{-static-libgcc} or @code{-shared-libgcc}, will be ignored.
9043 The compiler may generate calls to @code{memcmp}, @code{memset},
9044 @code{memcpy} and @code{memmove}.
9045 These entries are usually resolved by entries in
9046 libc.  These entry points should be supplied through some other
9047 mechanism when this option is specified.
9048
9049 @cindex @option{-lgcc}, use with @option{-nostdlib}
9050 @cindex @option{-nostdlib} and unresolved references
9051 @cindex unresolved references and @option{-nostdlib}
9052 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
9053 @cindex @option{-nodefaultlibs} and unresolved references
9054 @cindex unresolved references and @option{-nodefaultlibs}
9055 One of the standard libraries bypassed by @option{-nostdlib} and
9056 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
9057 that GCC uses to overcome shortcomings of particular machines, or special
9058 needs for some languages.
9059 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
9060 Collection (GCC) Internals},
9061 for more discussion of @file{libgcc.a}.)
9062 In most cases, you need @file{libgcc.a} even when you want to avoid
9063 other standard libraries.  In other words, when you specify @option{-nostdlib}
9064 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
9065 This ensures that you have no unresolved references to internal GCC
9066 library subroutines.  (For example, @samp{__main}, used to ensure C++
9067 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
9068 GNU Compiler Collection (GCC) Internals}.)
9069
9070 @item -pie
9071 @opindex pie
9072 Produce a position independent executable on targets which support it.
9073 For predictable results, you must also specify the same set of options
9074 that were used to generate code (@option{-fpie}, @option{-fPIE},
9075 or model suboptions) when you specify this option.
9076
9077 @item -rdynamic
9078 @opindex rdynamic
9079 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
9080 that support it. This instructs the linker to add all symbols, not
9081 only used ones, to the dynamic symbol table. This option is needed
9082 for some uses of @code{dlopen} or to allow obtaining backtraces
9083 from within a program.
9084
9085 @item -s
9086 @opindex s
9087 Remove all symbol table and relocation information from the executable.
9088
9089 @item -static
9090 @opindex static
9091 On systems that support dynamic linking, this prevents linking with the shared
9092 libraries.  On other systems, this option has no effect.
9093
9094 @item -shared
9095 @opindex shared
9096 Produce a shared object which can then be linked with other objects to
9097 form an executable.  Not all systems support this option.  For predictable
9098 results, you must also specify the same set of options that were used to
9099 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
9100 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
9101 needs to build supplementary stub code for constructors to work.  On
9102 multi-libbed systems, @samp{gcc -shared} must select the correct support
9103 libraries to link against.  Failing to supply the correct flags may lead
9104 to subtle defects.  Supplying them in cases where they are not necessary
9105 is innocuous.}
9106
9107 @item -shared-libgcc
9108 @itemx -static-libgcc
9109 @opindex shared-libgcc
9110 @opindex static-libgcc
9111 On systems that provide @file{libgcc} as a shared library, these options
9112 force the use of either the shared or static version respectively.
9113 If no shared version of @file{libgcc} was built when the compiler was
9114 configured, these options have no effect.
9115
9116 There are several situations in which an application should use the
9117 shared @file{libgcc} instead of the static version.  The most common
9118 of these is when the application wishes to throw and catch exceptions
9119 across different shared libraries.  In that case, each of the libraries
9120 as well as the application itself should use the shared @file{libgcc}.
9121
9122 Therefore, the G++ and GCJ drivers automatically add
9123 @option{-shared-libgcc} whenever you build a shared library or a main
9124 executable, because C++ and Java programs typically use exceptions, so
9125 this is the right thing to do.
9126
9127 If, instead, you use the GCC driver to create shared libraries, you may
9128 find that they will not always be linked with the shared @file{libgcc}.
9129 If GCC finds, at its configuration time, that you have a non-GNU linker
9130 or a GNU linker that does not support option @option{--eh-frame-hdr},
9131 it will link the shared version of @file{libgcc} into shared libraries
9132 by default.  Otherwise, it will take advantage of the linker and optimize
9133 away the linking with the shared version of @file{libgcc}, linking with
9134 the static version of libgcc by default.  This allows exceptions to
9135 propagate through such shared libraries, without incurring relocation
9136 costs at library load time.
9137
9138 However, if a library or main executable is supposed to throw or catch
9139 exceptions, you must link it using the G++ or GCJ driver, as appropriate
9140 for the languages used in the program, or using the option
9141 @option{-shared-libgcc}, such that it is linked with the shared
9142 @file{libgcc}.
9143
9144 @item -static-libstdc++
9145 When the @command{g++} program is used to link a C++ program, it will
9146 normally automatically link against @option{libstdc++}.  If
9147 @file{libstdc++} is available as a shared library, and the
9148 @option{-static} option is not used, then this will link against the
9149 shared version of @file{libstdc++}.  That is normally fine.  However, it
9150 is sometimes useful to freeze the version of @file{libstdc++} used by
9151 the program without going all the way to a fully static link.  The
9152 @option{-static-libstdc++} option directs the @command{g++} driver to
9153 link @file{libstdc++} statically, without necessarily linking other
9154 libraries statically.
9155
9156 @item -symbolic
9157 @opindex symbolic
9158 Bind references to global symbols when building a shared object.  Warn
9159 about any unresolved references (unless overridden by the link editor
9160 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
9161 this option.
9162
9163 @item -T @var{script}
9164 @opindex T
9165 @cindex linker script
9166 Use @var{script} as the linker script.  This option is supported by most
9167 systems using the GNU linker.  On some targets, such as bare-board
9168 targets without an operating system, the @option{-T} option may be required
9169 when linking to avoid references to undefined symbols.
9170
9171 @item -Xlinker @var{option}
9172 @opindex Xlinker
9173 Pass @var{option} as an option to the linker.  You can use this to
9174 supply system-specific linker options which GCC does not know how to
9175 recognize.
9176
9177 If you want to pass an option that takes a separate argument, you must use
9178 @option{-Xlinker} twice, once for the option and once for the argument.
9179 For example, to pass @option{-assert definitions}, you must write
9180 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
9181 @option{-Xlinker "-assert definitions"}, because this passes the entire
9182 string as a single argument, which is not what the linker expects.
9183
9184 When using the GNU linker, it is usually more convenient to pass
9185 arguments to linker options using the @option{@var{option}=@var{value}}
9186 syntax than as separate arguments.  For example, you can specify
9187 @samp{-Xlinker -Map=output.map} rather than
9188 @samp{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
9189 this syntax for command-line options.
9190
9191 @item -Wl,@var{option}
9192 @opindex Wl
9193 Pass @var{option} as an option to the linker.  If @var{option} contains
9194 commas, it is split into multiple options at the commas.  You can use this
9195 syntax to pass an argument to the option.
9196 For example, @samp{-Wl,-Map,output.map} passes @samp{-Map output.map} to the
9197 linker.  When using the GNU linker, you can also get the same effect with
9198 @samp{-Wl,-Map=output.map}.
9199
9200 @item -u @var{symbol}
9201 @opindex u
9202 Pretend the symbol @var{symbol} is undefined, to force linking of
9203 library modules to define it.  You can use @option{-u} multiple times with
9204 different symbols to force loading of additional library modules.
9205 @end table
9206
9207 @node Directory Options
9208 @section Options for Directory Search
9209 @cindex directory options
9210 @cindex options, directory search
9211 @cindex search path
9212
9213 These options specify directories to search for header files, for
9214 libraries and for parts of the compiler:
9215
9216 @table @gcctabopt
9217 @item -I@var{dir}
9218 @opindex I
9219 Add the directory @var{dir} to the head of the list of directories to be
9220 searched for header files.  This can be used to override a system header
9221 file, substituting your own version, since these directories are
9222 searched before the system header file directories.  However, you should
9223 not use this option to add directories that contain vendor-supplied
9224 system header files (use @option{-isystem} for that).  If you use more than
9225 one @option{-I} option, the directories are scanned in left-to-right
9226 order; the standard system directories come after.
9227
9228 If a standard system include directory, or a directory specified with
9229 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
9230 option will be ignored.  The directory will still be searched but as a
9231 system directory at its normal position in the system include chain.
9232 This is to ensure that GCC's procedure to fix buggy system headers and
9233 the ordering for the include_next directive are not inadvertently changed.
9234 If you really need to change the search order for system directories,
9235 use the @option{-nostdinc} and/or @option{-isystem} options.
9236
9237 @item -iplugindir=@var{dir}
9238 Set the directory to search for plugins which are passed
9239 by @option{-fplugin=@var{name}} instead of
9240 @option{-fplugin=@var{path}/@var{name}.so}.  This option is not meant
9241 to be used by the user, but only passed by the driver.
9242
9243 @item -iquote@var{dir}
9244 @opindex iquote
9245 Add the directory @var{dir} to the head of the list of directories to
9246 be searched for header files only for the case of @samp{#include
9247 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
9248 otherwise just like @option{-I}.
9249
9250 @item -L@var{dir}
9251 @opindex L
9252 Add directory @var{dir} to the list of directories to be searched
9253 for @option{-l}.
9254
9255 @item -B@var{prefix}
9256 @opindex B
9257 This option specifies where to find the executables, libraries,
9258 include files, and data files of the compiler itself.
9259
9260 The compiler driver program runs one or more of the subprograms
9261 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
9262 @var{prefix} as a prefix for each program it tries to run, both with and
9263 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
9264
9265 For each subprogram to be run, the compiler driver first tries the
9266 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
9267 was not specified, the driver tries two standard prefixes, which are
9268 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
9269 those results in a file name that is found, the unmodified program
9270 name is searched for using the directories specified in your
9271 @env{PATH} environment variable.
9272
9273 The compiler will check to see if the path provided by the @option{-B}
9274 refers to a directory, and if necessary it will add a directory
9275 separator character at the end of the path.
9276
9277 @option{-B} prefixes that effectively specify directory names also apply
9278 to libraries in the linker, because the compiler translates these
9279 options into @option{-L} options for the linker.  They also apply to
9280 includes files in the preprocessor, because the compiler translates these
9281 options into @option{-isystem} options for the preprocessor.  In this case,
9282 the compiler appends @samp{include} to the prefix.
9283
9284 The run-time support file @file{libgcc.a} can also be searched for using
9285 the @option{-B} prefix, if needed.  If it is not found there, the two
9286 standard prefixes above are tried, and that is all.  The file is left
9287 out of the link if it is not found by those means.
9288
9289 Another way to specify a prefix much like the @option{-B} prefix is to use
9290 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
9291 Variables}.
9292
9293 As a special kludge, if the path provided by @option{-B} is
9294 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
9295 9, then it will be replaced by @file{[dir/]include}.  This is to help
9296 with boot-strapping the compiler.
9297
9298 @item -specs=@var{file}
9299 @opindex specs
9300 Process @var{file} after the compiler reads in the standard @file{specs}
9301 file, in order to override the defaults that the @file{gcc} driver
9302 program uses when determining what switches to pass to @file{cc1},
9303 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
9304 @option{-specs=@var{file}} can be specified on the command line, and they
9305 are processed in order, from left to right.
9306
9307 @item --sysroot=@var{dir}
9308 @opindex sysroot
9309 Use @var{dir} as the logical root directory for headers and libraries.
9310 For example, if the compiler would normally search for headers in
9311 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
9312 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
9313
9314 If you use both this option and the @option{-isysroot} option, then
9315 the @option{--sysroot} option will apply to libraries, but the
9316 @option{-isysroot} option will apply to header files.
9317
9318 The GNU linker (beginning with version 2.16) has the necessary support
9319 for this option.  If your linker does not support this option, the
9320 header file aspect of @option{--sysroot} will still work, but the
9321 library aspect will not.
9322
9323 @item -I-
9324 @opindex I-
9325 This option has been deprecated.  Please use @option{-iquote} instead for
9326 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
9327 Any directories you specify with @option{-I} options before the @option{-I-}
9328 option are searched only for the case of @samp{#include "@var{file}"};
9329 they are not searched for @samp{#include <@var{file}>}.
9330
9331 If additional directories are specified with @option{-I} options after
9332 the @option{-I-}, these directories are searched for all @samp{#include}
9333 directives.  (Ordinarily @emph{all} @option{-I} directories are used
9334 this way.)
9335
9336 In addition, the @option{-I-} option inhibits the use of the current
9337 directory (where the current input file came from) as the first search
9338 directory for @samp{#include "@var{file}"}.  There is no way to
9339 override this effect of @option{-I-}.  With @option{-I.} you can specify
9340 searching the directory which was current when the compiler was
9341 invoked.  That is not exactly the same as what the preprocessor does
9342 by default, but it is often satisfactory.
9343
9344 @option{-I-} does not inhibit the use of the standard system directories
9345 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
9346 independent.
9347 @end table
9348
9349 @c man end
9350
9351 @node Spec Files
9352 @section Specifying subprocesses and the switches to pass to them
9353 @cindex Spec Files
9354
9355 @command{gcc} is a driver program.  It performs its job by invoking a
9356 sequence of other programs to do the work of compiling, assembling and
9357 linking.  GCC interprets its command-line parameters and uses these to
9358 deduce which programs it should invoke, and which command-line options
9359 it ought to place on their command lines.  This behavior is controlled
9360 by @dfn{spec strings}.  In most cases there is one spec string for each
9361 program that GCC can invoke, but a few programs have multiple spec
9362 strings to control their behavior.  The spec strings built into GCC can
9363 be overridden by using the @option{-specs=} command-line switch to specify
9364 a spec file.
9365
9366 @dfn{Spec files} are plaintext files that are used to construct spec
9367 strings.  They consist of a sequence of directives separated by blank
9368 lines.  The type of directive is determined by the first non-whitespace
9369 character on the line and it can be one of the following:
9370
9371 @table @code
9372 @item %@var{command}
9373 Issues a @var{command} to the spec file processor.  The commands that can
9374 appear here are:
9375
9376 @table @code
9377 @item %include <@var{file}>
9378 @cindex @code{%include}
9379 Search for @var{file} and insert its text at the current point in the
9380 specs file.
9381
9382 @item %include_noerr <@var{file}>
9383 @cindex @code{%include_noerr}
9384 Just like @samp{%include}, but do not generate an error message if the include
9385 file cannot be found.
9386
9387 @item %rename @var{old_name} @var{new_name}
9388 @cindex @code{%rename}
9389 Rename the spec string @var{old_name} to @var{new_name}.
9390
9391 @end table
9392
9393 @item *[@var{spec_name}]:
9394 This tells the compiler to create, override or delete the named spec
9395 string.  All lines after this directive up to the next directive or
9396 blank line are considered to be the text for the spec string.  If this
9397 results in an empty string then the spec will be deleted.  (Or, if the
9398 spec did not exist, then nothing will happen.)  Otherwise, if the spec
9399 does not currently exist a new spec will be created.  If the spec does
9400 exist then its contents will be overridden by the text of this
9401 directive, unless the first character of that text is the @samp{+}
9402 character, in which case the text will be appended to the spec.
9403
9404 @item [@var{suffix}]:
9405 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
9406 and up to the next directive or blank line are considered to make up the
9407 spec string for the indicated suffix.  When the compiler encounters an
9408 input file with the named suffix, it will processes the spec string in
9409 order to work out how to compile that file.  For example:
9410
9411 @smallexample
9412 .ZZ:
9413 z-compile -input %i
9414 @end smallexample
9415
9416 This says that any input file whose name ends in @samp{.ZZ} should be
9417 passed to the program @samp{z-compile}, which should be invoked with the
9418 command-line switch @option{-input} and with the result of performing the
9419 @samp{%i} substitution.  (See below.)
9420
9421 As an alternative to providing a spec string, the text that follows a
9422 suffix directive can be one of the following:
9423
9424 @table @code
9425 @item @@@var{language}
9426 This says that the suffix is an alias for a known @var{language}.  This is
9427 similar to using the @option{-x} command-line switch to GCC to specify a
9428 language explicitly.  For example:
9429
9430 @smallexample
9431 .ZZ:
9432 @@c++
9433 @end smallexample
9434
9435 Says that .ZZ files are, in fact, C++ source files.
9436
9437 @item #@var{name}
9438 This causes an error messages saying:
9439
9440 @smallexample
9441 @var{name} compiler not installed on this system.
9442 @end smallexample
9443 @end table
9444
9445 GCC already has an extensive list of suffixes built into it.
9446 This directive will add an entry to the end of the list of suffixes, but
9447 since the list is searched from the end backwards, it is effectively
9448 possible to override earlier entries using this technique.
9449
9450 @end table
9451
9452 GCC has the following spec strings built into it.  Spec files can
9453 override these strings or create their own.  Note that individual
9454 targets can also add their own spec strings to this list.
9455
9456 @smallexample
9457 asm          Options to pass to the assembler
9458 asm_final    Options to pass to the assembler post-processor
9459 cpp          Options to pass to the C preprocessor
9460 cc1          Options to pass to the C compiler
9461 cc1plus      Options to pass to the C++ compiler
9462 endfile      Object files to include at the end of the link
9463 link         Options to pass to the linker
9464 lib          Libraries to include on the command line to the linker
9465 libgcc       Decides which GCC support library to pass to the linker
9466 linker       Sets the name of the linker
9467 predefines   Defines to be passed to the C preprocessor
9468 signed_char  Defines to pass to CPP to say whether @code{char} is signed
9469              by default
9470 startfile    Object files to include at the start of the link
9471 @end smallexample
9472
9473 Here is a small example of a spec file:
9474
9475 @smallexample
9476 %rename lib                 old_lib
9477
9478 *lib:
9479 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
9480 @end smallexample
9481
9482 This example renames the spec called @samp{lib} to @samp{old_lib} and
9483 then overrides the previous definition of @samp{lib} with a new one.
9484 The new definition adds in some extra command-line options before
9485 including the text of the old definition.
9486
9487 @dfn{Spec strings} are a list of command-line options to be passed to their
9488 corresponding program.  In addition, the spec strings can contain
9489 @samp{%}-prefixed sequences to substitute variable text or to
9490 conditionally insert text into the command line.  Using these constructs
9491 it is possible to generate quite complex command lines.
9492
9493 Here is a table of all defined @samp{%}-sequences for spec
9494 strings.  Note that spaces are not generated automatically around the
9495 results of expanding these sequences.  Therefore you can concatenate them
9496 together or combine them with constant text in a single argument.
9497
9498 @table @code
9499 @item %%
9500 Substitute one @samp{%} into the program name or argument.
9501
9502 @item %i
9503 Substitute the name of the input file being processed.
9504
9505 @item %b
9506 Substitute the basename of the input file being processed.
9507 This is the substring up to (and not including) the last period
9508 and not including the directory.
9509
9510 @item %B
9511 This is the same as @samp{%b}, but include the file suffix (text after
9512 the last period).
9513
9514 @item %d
9515 Marks the argument containing or following the @samp{%d} as a
9516 temporary file name, so that that file will be deleted if GCC exits
9517 successfully.  Unlike @samp{%g}, this contributes no text to the
9518 argument.
9519
9520 @item %g@var{suffix}
9521 Substitute a file name that has suffix @var{suffix} and is chosen
9522 once per compilation, and mark the argument in the same way as
9523 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
9524 name is now chosen in a way that is hard to predict even when previously
9525 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
9526 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
9527 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
9528 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
9529 was simply substituted with a file name chosen once per compilation,
9530 without regard to any appended suffix (which was therefore treated
9531 just like ordinary text), making such attacks more likely to succeed.
9532
9533 @item %u@var{suffix}
9534 Like @samp{%g}, but generates a new temporary file name even if
9535 @samp{%u@var{suffix}} was already seen.
9536
9537 @item %U@var{suffix}
9538 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
9539 new one if there is no such last file name.  In the absence of any
9540 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
9541 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
9542 would involve the generation of two distinct file names, one
9543 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
9544 simply substituted with a file name chosen for the previous @samp{%u},
9545 without regard to any appended suffix.
9546
9547 @item %j@var{suffix}
9548 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
9549 writable, and if save-temps is off; otherwise, substitute the name
9550 of a temporary file, just like @samp{%u}.  This temporary file is not
9551 meant for communication between processes, but rather as a junk
9552 disposal mechanism.
9553
9554 @item %|@var{suffix}
9555 @itemx %m@var{suffix}
9556 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
9557 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
9558 all.  These are the two most common ways to instruct a program that it
9559 should read from standard input or write to standard output.  If you
9560 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
9561 construct: see for example @file{f/lang-specs.h}.
9562
9563 @item %.@var{SUFFIX}
9564 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
9565 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
9566 terminated by the next space or %.
9567
9568 @item %w
9569 Marks the argument containing or following the @samp{%w} as the
9570 designated output file of this compilation.  This puts the argument
9571 into the sequence of arguments that @samp{%o} will substitute later.
9572
9573 @item %o
9574 Substitutes the names of all the output files, with spaces
9575 automatically placed around them.  You should write spaces
9576 around the @samp{%o} as well or the results are undefined.
9577 @samp{%o} is for use in the specs for running the linker.
9578 Input files whose names have no recognized suffix are not compiled
9579 at all, but they are included among the output files, so they will
9580 be linked.
9581
9582 @item %O
9583 Substitutes the suffix for object files.  Note that this is
9584 handled specially when it immediately follows @samp{%g, %u, or %U},
9585 because of the need for those to form complete file names.  The
9586 handling is such that @samp{%O} is treated exactly as if it had already
9587 been substituted, except that @samp{%g, %u, and %U} do not currently
9588 support additional @var{suffix} characters following @samp{%O} as they would
9589 following, for example, @samp{.o}.
9590
9591 @item %p
9592 Substitutes the standard macro predefinitions for the
9593 current target machine.  Use this when running @code{cpp}.
9594
9595 @item %P
9596 Like @samp{%p}, but puts @samp{__} before and after the name of each
9597 predefined macro, except for macros that start with @samp{__} or with
9598 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
9599 C@.
9600
9601 @item %I
9602 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
9603 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
9604 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
9605 and @option{-imultilib} as necessary.
9606
9607 @item %s
9608 Current argument is the name of a library or startup file of some sort.
9609 Search for that file in a standard list of directories and substitute
9610 the full name found.  The current working directory is included in the
9611 list of directories scanned.
9612
9613 @item %T
9614 Current argument is the name of a linker script.  Search for that file
9615 in the current list of directories to scan for libraries. If the file
9616 is located insert a @option{--script} option into the command line
9617 followed by the full path name found.  If the file is not found then
9618 generate an error message.  Note: the current working directory is not
9619 searched.
9620
9621 @item %e@var{str}
9622 Print @var{str} as an error message.  @var{str} is terminated by a newline.
9623 Use this when inconsistent options are detected.
9624
9625 @item %(@var{name})
9626 Substitute the contents of spec string @var{name} at this point.
9627
9628 @item %[@var{name}]
9629 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
9630
9631 @item %x@{@var{option}@}
9632 Accumulate an option for @samp{%X}.
9633
9634 @item %X
9635 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
9636 spec string.
9637
9638 @item %Y
9639 Output the accumulated assembler options specified by @option{-Wa}.
9640
9641 @item %Z
9642 Output the accumulated preprocessor options specified by @option{-Wp}.
9643
9644 @item %a
9645 Process the @code{asm} spec.  This is used to compute the
9646 switches to be passed to the assembler.
9647
9648 @item %A
9649 Process the @code{asm_final} spec.  This is a spec string for
9650 passing switches to an assembler post-processor, if such a program is
9651 needed.
9652
9653 @item %l
9654 Process the @code{link} spec.  This is the spec for computing the
9655 command line passed to the linker.  Typically it will make use of the
9656 @samp{%L %G %S %D and %E} sequences.
9657
9658 @item %D
9659 Dump out a @option{-L} option for each directory that GCC believes might
9660 contain startup files.  If the target supports multilibs then the
9661 current multilib directory will be prepended to each of these paths.
9662
9663 @item %L
9664 Process the @code{lib} spec.  This is a spec string for deciding which
9665 libraries should be included on the command line to the linker.
9666
9667 @item %G
9668 Process the @code{libgcc} spec.  This is a spec string for deciding
9669 which GCC support library should be included on the command line to the linker.
9670
9671 @item %S
9672 Process the @code{startfile} spec.  This is a spec for deciding which
9673 object files should be the first ones passed to the linker.  Typically
9674 this might be a file named @file{crt0.o}.
9675
9676 @item %E
9677 Process the @code{endfile} spec.  This is a spec string that specifies
9678 the last object files that will be passed to the linker.
9679
9680 @item %C
9681 Process the @code{cpp} spec.  This is used to construct the arguments
9682 to be passed to the C preprocessor.
9683
9684 @item %1
9685 Process the @code{cc1} spec.  This is used to construct the options to be
9686 passed to the actual C compiler (@samp{cc1}).
9687
9688 @item %2
9689 Process the @code{cc1plus} spec.  This is used to construct the options to be
9690 passed to the actual C++ compiler (@samp{cc1plus}).
9691
9692 @item %*
9693 Substitute the variable part of a matched option.  See below.
9694 Note that each comma in the substituted string is replaced by
9695 a single space.
9696
9697 @item %<@code{S}
9698 Remove all occurrences of @code{-S} from the command line.  Note---this
9699 command is position dependent.  @samp{%} commands in the spec string
9700 before this one will see @code{-S}, @samp{%} commands in the spec string
9701 after this one will not.
9702
9703 @item %:@var{function}(@var{args})
9704 Call the named function @var{function}, passing it @var{args}.
9705 @var{args} is first processed as a nested spec string, then split
9706 into an argument vector in the usual fashion.  The function returns
9707 a string which is processed as if it had appeared literally as part
9708 of the current spec.
9709
9710 The following built-in spec functions are provided:
9711
9712 @table @code
9713 @item @code{getenv}
9714 The @code{getenv} spec function takes two arguments: an environment
9715 variable name and a string.  If the environment variable is not
9716 defined, a fatal error is issued.  Otherwise, the return value is the
9717 value of the environment variable concatenated with the string.  For
9718 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
9719
9720 @smallexample
9721 %:getenv(TOPDIR /include)
9722 @end smallexample
9723
9724 expands to @file{/path/to/top/include}.
9725
9726 @item @code{if-exists}
9727 The @code{if-exists} spec function takes one argument, an absolute
9728 pathname to a file.  If the file exists, @code{if-exists} returns the
9729 pathname.  Here is a small example of its usage:
9730
9731 @smallexample
9732 *startfile:
9733 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
9734 @end smallexample
9735
9736 @item @code{if-exists-else}
9737 The @code{if-exists-else} spec function is similar to the @code{if-exists}
9738 spec function, except that it takes two arguments.  The first argument is
9739 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
9740 returns the pathname.  If it does not exist, it returns the second argument.
9741 This way, @code{if-exists-else} can be used to select one file or another,
9742 based on the existence of the first.  Here is a small example of its usage:
9743
9744 @smallexample
9745 *startfile:
9746 crt0%O%s %:if-exists(crti%O%s) \
9747 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
9748 @end smallexample
9749
9750 @item @code{replace-outfile}
9751 The @code{replace-outfile} spec function takes two arguments.  It looks for the
9752 first argument in the outfiles array and replaces it with the second argument.  Here
9753 is a small example of its usage:
9754
9755 @smallexample
9756 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
9757 @end smallexample
9758
9759 @item @code{remove-outfile}
9760 The @code{remove-outfile} spec function takes one argument.  It looks for the
9761 first argument in the outfiles array and removes it.  Here is a small example
9762 its usage:
9763
9764 @smallexample
9765 %:remove-outfile(-lm)
9766 @end smallexample
9767
9768 @item @code{pass-through-libs}
9769 The @code{pass-through-libs} spec function takes any number of arguments.  It
9770 finds any @option{-l} options and any non-options ending in ".a" (which it
9771 assumes are the names of linker input library archive files) and returns a
9772 result containing all the found arguments each prepended by
9773 @option{-plugin-opt=-pass-through=} and joined by spaces.  This list is
9774 intended to be passed to the LTO linker plugin.
9775
9776 @smallexample
9777 %:pass-through-libs(%G %L %G)
9778 @end smallexample
9779
9780 @item @code{print-asm-header}
9781 The @code{print-asm-header} function takes no arguments and simply
9782 prints a banner like:
9783
9784 @smallexample
9785 Assembler options
9786 =================
9787
9788 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
9789 @end smallexample
9790
9791 It is used to separate compiler options from assembler options
9792 in the @option{--target-help} output.
9793 @end table
9794
9795 @item %@{@code{S}@}
9796 Substitutes the @code{-S} switch, if that switch was given to GCC@.
9797 If that switch was not specified, this substitutes nothing.  Note that
9798 the leading dash is omitted when specifying this option, and it is
9799 automatically inserted if the substitution is performed.  Thus the spec
9800 string @samp{%@{foo@}} would match the command-line option @option{-foo}
9801 and would output the command line option @option{-foo}.
9802
9803 @item %W@{@code{S}@}
9804 Like %@{@code{S}@} but mark last argument supplied within as a file to be
9805 deleted on failure.
9806
9807 @item %@{@code{S}*@}
9808 Substitutes all the switches specified to GCC whose names start
9809 with @code{-S}, but which also take an argument.  This is used for
9810 switches like @option{-o}, @option{-D}, @option{-I}, etc.
9811 GCC considers @option{-o foo} as being
9812 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
9813 text, including the space.  Thus two arguments would be generated.
9814
9815 @item %@{@code{S}*&@code{T}*@}
9816 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
9817 (the order of @code{S} and @code{T} in the spec is not significant).
9818 There can be any number of ampersand-separated variables; for each the
9819 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
9820
9821 @item %@{@code{S}:@code{X}@}
9822 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
9823
9824 @item %@{!@code{S}:@code{X}@}
9825 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
9826
9827 @item %@{@code{S}*:@code{X}@}
9828 Substitutes @code{X} if one or more switches whose names start with
9829 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
9830 once, no matter how many such switches appeared.  However, if @code{%*}
9831 appears somewhere in @code{X}, then @code{X} will be substituted once
9832 for each matching switch, with the @code{%*} replaced by the part of
9833 that switch that matched the @code{*}.
9834
9835 @item %@{.@code{S}:@code{X}@}
9836 Substitutes @code{X}, if processing a file with suffix @code{S}.
9837
9838 @item %@{!.@code{S}:@code{X}@}
9839 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
9840
9841 @item %@{,@code{S}:@code{X}@}
9842 Substitutes @code{X}, if processing a file for language @code{S}.
9843
9844 @item %@{!,@code{S}:@code{X}@}
9845 Substitutes @code{X}, if not processing a file for language @code{S}.
9846
9847 @item %@{@code{S}|@code{P}:@code{X}@}
9848 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
9849 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
9850 @code{*} sequences as well, although they have a stronger binding than
9851 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
9852 alternatives must be starred, and only the first matching alternative
9853 is substituted.
9854
9855 For example, a spec string like this:
9856
9857 @smallexample
9858 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
9859 @end smallexample
9860
9861 will output the following command-line options from the following input
9862 command-line options:
9863
9864 @smallexample
9865 fred.c        -foo -baz
9866 jim.d         -bar -boggle
9867 -d fred.c     -foo -baz -boggle
9868 -d jim.d      -bar -baz -boggle
9869 @end smallexample
9870
9871 @item %@{S:X; T:Y; :D@}
9872
9873 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
9874 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
9875 be as many clauses as you need.  This may be combined with @code{.},
9876 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
9877
9878
9879 @end table
9880
9881 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
9882 construct may contain other nested @samp{%} constructs or spaces, or
9883 even newlines.  They are processed as usual, as described above.
9884 Trailing white space in @code{X} is ignored.  White space may also
9885 appear anywhere on the left side of the colon in these constructs,
9886 except between @code{.} or @code{*} and the corresponding word.
9887
9888 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
9889 handled specifically in these constructs.  If another value of
9890 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
9891 @option{-W} switch is found later in the command line, the earlier
9892 switch value is ignored, except with @{@code{S}*@} where @code{S} is
9893 just one letter, which passes all matching options.
9894
9895 The character @samp{|} at the beginning of the predicate text is used to
9896 indicate that a command should be piped to the following command, but
9897 only if @option{-pipe} is specified.
9898
9899 It is built into GCC which switches take arguments and which do not.
9900 (You might think it would be useful to generalize this to allow each
9901 compiler's spec to say which switches take arguments.  But this cannot
9902 be done in a consistent fashion.  GCC cannot even decide which input
9903 files have been specified without knowing which switches take arguments,
9904 and it must know which input files to compile in order to tell which
9905 compilers to run).
9906
9907 GCC also knows implicitly that arguments starting in @option{-l} are to be
9908 treated as compiler output files, and passed to the linker in their
9909 proper position among the other output files.
9910
9911 @c man begin OPTIONS
9912
9913 @node Target Options
9914 @section Specifying Target Machine and Compiler Version
9915 @cindex target options
9916 @cindex cross compiling
9917 @cindex specifying machine version
9918 @cindex specifying compiler version and target machine
9919 @cindex compiler version, specifying
9920 @cindex target machine, specifying
9921
9922 The usual way to run GCC is to run the executable called @command{gcc}, or
9923 @command{@var{machine}-gcc} when cross-compiling, or
9924 @command{@var{machine}-gcc-@var{version}} to run a version other than the
9925 one that was installed last.
9926
9927 @node Submodel Options
9928 @section Hardware Models and Configurations
9929 @cindex submodel options
9930 @cindex specifying hardware config
9931 @cindex hardware models and configurations, specifying
9932 @cindex machine dependent options
9933
9934 Each target machine types can have its own
9935 special options, starting with @samp{-m}, to choose among various
9936 hardware models or configurations---for example, 68010 vs 68020,
9937 floating coprocessor or none.  A single installed version of the
9938 compiler can compile for any model or configuration, according to the
9939 options specified.
9940
9941 Some configurations of the compiler also support additional special
9942 options, usually for compatibility with other compilers on the same
9943 platform.
9944
9945 @c This list is ordered alphanumerically by subsection name.
9946 @c It should be the same order and spelling as these options are listed
9947 @c in Machine Dependent Options
9948
9949 @menu
9950 * ARM Options::
9951 * AVR Options::
9952 * Blackfin Options::
9953 * CRIS Options::
9954 * Darwin Options::
9955 * DEC Alpha Options::
9956 * DEC Alpha/VMS Options::
9957 * FR30 Options::
9958 * FRV Options::
9959 * GNU/Linux Options::
9960 * H8/300 Options::
9961 * HPPA Options::
9962 * i386 and x86-64 Options::
9963 * i386 and x86-64 Windows Options::
9964 * IA-64 Options::
9965 * IA-64/VMS Options::
9966 * LM32 Options::
9967 * M32C Options::
9968 * M32R/D Options::
9969 * M680x0 Options::
9970 * MCore Options::
9971 * MeP Options::
9972 * MicroBlaze Options::
9973 * MIPS Options::
9974 * MMIX Options::
9975 * MN10300 Options::
9976 * PDP-11 Options::
9977 * picoChip Options::
9978 * PowerPC Options::
9979 * RS/6000 and PowerPC Options::
9980 * RX Options::
9981 * S/390 and zSeries Options::
9982 * Score Options::
9983 * SH Options::
9984 * Solaris 2 Options::
9985 * SPARC Options::
9986 * SPU Options::
9987 * System V Options::
9988 * V850 Options::
9989 * VAX Options::
9990 * VxWorks Options::
9991 * x86-64 Options::
9992 * Xstormy16 Options::
9993 * Xtensa Options::
9994 * zSeries Options::
9995 @end menu
9996
9997 @node ARM Options
9998 @subsection ARM Options
9999 @cindex ARM options
10000
10001 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
10002 architectures:
10003
10004 @table @gcctabopt
10005 @item -mabi=@var{name}
10006 @opindex mabi
10007 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
10008 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
10009
10010 @item -mapcs-frame
10011 @opindex mapcs-frame
10012 Generate a stack frame that is compliant with the ARM Procedure Call
10013 Standard for all functions, even if this is not strictly necessary for
10014 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
10015 with this option will cause the stack frames not to be generated for
10016 leaf functions.  The default is @option{-mno-apcs-frame}.
10017
10018 @item -mapcs
10019 @opindex mapcs
10020 This is a synonym for @option{-mapcs-frame}.
10021
10022 @ignore
10023 @c not currently implemented
10024 @item -mapcs-stack-check
10025 @opindex mapcs-stack-check
10026 Generate code to check the amount of stack space available upon entry to
10027 every function (that actually uses some stack space).  If there is
10028 insufficient space available then either the function
10029 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
10030 called, depending upon the amount of stack space required.  The run time
10031 system is required to provide these functions.  The default is
10032 @option{-mno-apcs-stack-check}, since this produces smaller code.
10033
10034 @c not currently implemented
10035 @item -mapcs-float
10036 @opindex mapcs-float
10037 Pass floating point arguments using the float point registers.  This is
10038 one of the variants of the APCS@.  This option is recommended if the
10039 target hardware has a floating point unit or if a lot of floating point
10040 arithmetic is going to be performed by the code.  The default is
10041 @option{-mno-apcs-float}, since integer only code is slightly increased in
10042 size if @option{-mapcs-float} is used.
10043
10044 @c not currently implemented
10045 @item -mapcs-reentrant
10046 @opindex mapcs-reentrant
10047 Generate reentrant, position independent code.  The default is
10048 @option{-mno-apcs-reentrant}.
10049 @end ignore
10050
10051 @item -mthumb-interwork
10052 @opindex mthumb-interwork
10053 Generate code which supports calling between the ARM and Thumb
10054 instruction sets.  Without this option the two instruction sets cannot
10055 be reliably used inside one program.  The default is
10056 @option{-mno-thumb-interwork}, since slightly larger code is generated
10057 when @option{-mthumb-interwork} is specified.
10058
10059 @item -mno-sched-prolog
10060 @opindex mno-sched-prolog
10061 Prevent the reordering of instructions in the function prolog, or the
10062 merging of those instruction with the instructions in the function's
10063 body.  This means that all functions will start with a recognizable set
10064 of instructions (or in fact one of a choice from a small set of
10065 different function prologues), and this information can be used to
10066 locate the start if functions inside an executable piece of code.  The
10067 default is @option{-msched-prolog}.
10068
10069 @item -mfloat-abi=@var{name}
10070 @opindex mfloat-abi
10071 Specifies which floating-point ABI to use.  Permissible values
10072 are: @samp{soft}, @samp{softfp} and @samp{hard}.
10073
10074 Specifying @samp{soft} causes GCC to generate output containing
10075 library calls for floating-point operations.
10076 @samp{softfp} allows the generation of code using hardware floating-point
10077 instructions, but still uses the soft-float calling conventions.
10078 @samp{hard} allows generation of floating-point instructions
10079 and uses FPU-specific calling conventions.
10080
10081 The default depends on the specific target configuration.  Note that
10082 the hard-float and soft-float ABIs are not link-compatible; you must
10083 compile your entire program with the same ABI, and link with a
10084 compatible set of libraries.
10085
10086 @item -mlittle-endian
10087 @opindex mlittle-endian
10088 Generate code for a processor running in little-endian mode.  This is
10089 the default for all standard configurations.
10090
10091 @item -mbig-endian
10092 @opindex mbig-endian
10093 Generate code for a processor running in big-endian mode; the default is
10094 to compile code for a little-endian processor.
10095
10096 @item -mwords-little-endian
10097 @opindex mwords-little-endian
10098 This option only applies when generating code for big-endian processors.
10099 Generate code for a little-endian word order but a big-endian byte
10100 order.  That is, a byte order of the form @samp{32107654}.  Note: this
10101 option should only be used if you require compatibility with code for
10102 big-endian ARM processors generated by versions of the compiler prior to
10103 2.8.
10104
10105 @item -mcpu=@var{name}
10106 @opindex mcpu
10107 This specifies the name of the target ARM processor.  GCC uses this name
10108 to determine what kind of instructions it can emit when generating
10109 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
10110 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
10111 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
10112 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
10113 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
10114 @samp{arm720},
10115 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
10116 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
10117 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
10118 @samp{strongarm1110},
10119 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
10120 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
10121 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
10122 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
10123 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
10124 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
10125 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
10126 @samp{cortex-a5}, @samp{cortex-a8}, @samp{cortex-a9}, @samp{cortex-a15},
10127 @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m4}, @samp{cortex-m3},
10128 @samp{cortex-m1},
10129 @samp{cortex-m0},
10130 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10131
10132 @item -mtune=@var{name}
10133 @opindex mtune
10134 This option is very similar to the @option{-mcpu=} option, except that
10135 instead of specifying the actual target processor type, and hence
10136 restricting which instructions can be used, it specifies that GCC should
10137 tune the performance of the code as if the target were of the type
10138 specified in this option, but still choosing the instructions that it
10139 will generate based on the CPU specified by a @option{-mcpu=} option.
10140 For some ARM implementations better performance can be obtained by using
10141 this option.
10142
10143 @item -march=@var{name}
10144 @opindex march
10145 This specifies the name of the target ARM architecture.  GCC uses this
10146 name to determine what kind of instructions it can emit when generating
10147 assembly code.  This option can be used in conjunction with or instead
10148 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
10149 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
10150 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
10151 @samp{armv6}, @samp{armv6j},
10152 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
10153 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
10154 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10155
10156 @item -mfpu=@var{name}
10157 @itemx -mfpe=@var{number}
10158 @itemx -mfp=@var{number}
10159 @opindex mfpu
10160 @opindex mfpe
10161 @opindex mfp
10162 This specifies what floating point hardware (or hardware emulation) is
10163 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
10164 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-fp16},
10165 @samp{vfpv3-d16}, @samp{vfpv3-d16-fp16}, @samp{vfpv3xd}, @samp{vfpv3xd-fp16},
10166 @samp{neon}, @samp{neon-fp16}, @samp{vfpv4}, @samp{vfpv4-d16},
10167 @samp{fpv4-sp-d16} and @samp{neon-vfpv4}.
10168 @option{-mfp} and @option{-mfpe} are synonyms for
10169 @option{-mfpu}=@samp{fpe}@var{number}, for compatibility with older versions
10170 of GCC@.
10171
10172 If @option{-msoft-float} is specified this specifies the format of
10173 floating point values.
10174
10175 If the selected floating-point hardware includes the NEON extension
10176 (e.g. @option{-mfpu}=@samp{neon}), note that floating-point
10177 operations will not be used by GCC's auto-vectorization pass unless
10178 @option{-funsafe-math-optimizations} is also specified.  This is
10179 because NEON hardware does not fully implement the IEEE 754 standard for
10180 floating-point arithmetic (in particular denormal values are treated as
10181 zero), so the use of NEON instructions may lead to a loss of precision.
10182
10183 @item -mfp16-format=@var{name}
10184 @opindex mfp16-format
10185 Specify the format of the @code{__fp16} half-precision floating-point type.
10186 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative};
10187 the default is @samp{none}, in which case the @code{__fp16} type is not
10188 defined.  @xref{Half-Precision}, for more information.
10189
10190 @item -mstructure-size-boundary=@var{n}
10191 @opindex mstructure-size-boundary
10192 The size of all structures and unions will be rounded up to a multiple
10193 of the number of bits set by this option.  Permissible values are 8, 32
10194 and 64.  The default value varies for different toolchains.  For the COFF
10195 targeted toolchain the default value is 8.  A value of 64 is only allowed
10196 if the underlying ABI supports it.
10197
10198 Specifying the larger number can produce faster, more efficient code, but
10199 can also increase the size of the program.  Different values are potentially
10200 incompatible.  Code compiled with one value cannot necessarily expect to
10201 work with code or libraries compiled with another value, if they exchange
10202 information using structures or unions.
10203
10204 @item -mabort-on-noreturn
10205 @opindex mabort-on-noreturn
10206 Generate a call to the function @code{abort} at the end of a
10207 @code{noreturn} function.  It will be executed if the function tries to
10208 return.
10209
10210 @item -mlong-calls
10211 @itemx -mno-long-calls
10212 @opindex mlong-calls
10213 @opindex mno-long-calls
10214 Tells the compiler to perform function calls by first loading the
10215 address of the function into a register and then performing a subroutine
10216 call on this register.  This switch is needed if the target function
10217 will lie outside of the 64 megabyte addressing range of the offset based
10218 version of subroutine call instruction.
10219
10220 Even if this switch is enabled, not all function calls will be turned
10221 into long calls.  The heuristic is that static functions, functions
10222 which have the @samp{short-call} attribute, functions that are inside
10223 the scope of a @samp{#pragma no_long_calls} directive and functions whose
10224 definitions have already been compiled within the current compilation
10225 unit, will not be turned into long calls.  The exception to this rule is
10226 that weak function definitions, functions with the @samp{long-call}
10227 attribute or the @samp{section} attribute, and functions that are within
10228 the scope of a @samp{#pragma long_calls} directive, will always be
10229 turned into long calls.
10230
10231 This feature is not enabled by default.  Specifying
10232 @option{-mno-long-calls} will restore the default behavior, as will
10233 placing the function calls within the scope of a @samp{#pragma
10234 long_calls_off} directive.  Note these switches have no effect on how
10235 the compiler generates code to handle function calls via function
10236 pointers.
10237
10238 @item -msingle-pic-base
10239 @opindex msingle-pic-base
10240 Treat the register used for PIC addressing as read-only, rather than
10241 loading it in the prologue for each function.  The run-time system is
10242 responsible for initializing this register with an appropriate value
10243 before execution begins.
10244
10245 @item -mpic-register=@var{reg}
10246 @opindex mpic-register
10247 Specify the register to be used for PIC addressing.  The default is R10
10248 unless stack-checking is enabled, when R9 is used.
10249
10250 @item -mcirrus-fix-invalid-insns
10251 @opindex mcirrus-fix-invalid-insns
10252 @opindex mno-cirrus-fix-invalid-insns
10253 Insert NOPs into the instruction stream to in order to work around
10254 problems with invalid Maverick instruction combinations.  This option
10255 is only valid if the @option{-mcpu=ep9312} option has been used to
10256 enable generation of instructions for the Cirrus Maverick floating
10257 point co-processor.  This option is not enabled by default, since the
10258 problem is only present in older Maverick implementations.  The default
10259 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
10260 switch.
10261
10262 @item -mpoke-function-name
10263 @opindex mpoke-function-name
10264 Write the name of each function into the text section, directly
10265 preceding the function prologue.  The generated code is similar to this:
10266
10267 @smallexample
10268      t0
10269          .ascii "arm_poke_function_name", 0
10270          .align
10271      t1
10272          .word 0xff000000 + (t1 - t0)
10273      arm_poke_function_name
10274          mov     ip, sp
10275          stmfd   sp!, @{fp, ip, lr, pc@}
10276          sub     fp, ip, #4
10277 @end smallexample
10278
10279 When performing a stack backtrace, code can inspect the value of
10280 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
10281 location @code{pc - 12} and the top 8 bits are set, then we know that
10282 there is a function name embedded immediately preceding this location
10283 and has length @code{((pc[-3]) & 0xff000000)}.
10284
10285 @item -mthumb
10286 @itemx -marm
10287 @opindex marm
10288 @opindex mthumb
10289
10290 Select between generating code that executes in ARM and Thumb
10291 states.  The default for most configurations is to generate code
10292 that executes in ARM state, but the default can be changed by
10293 configuring GCC with the @option{--with-mode=}@var{state}
10294 configure option.
10295
10296 @item -mtpcs-frame
10297 @opindex mtpcs-frame
10298 Generate a stack frame that is compliant with the Thumb Procedure Call
10299 Standard for all non-leaf functions.  (A leaf function is one that does
10300 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
10301
10302 @item -mtpcs-leaf-frame
10303 @opindex mtpcs-leaf-frame
10304 Generate a stack frame that is compliant with the Thumb Procedure Call
10305 Standard for all leaf functions.  (A leaf function is one that does
10306 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
10307
10308 @item -mcallee-super-interworking
10309 @opindex mcallee-super-interworking
10310 Gives all externally visible functions in the file being compiled an ARM
10311 instruction set header which switches to Thumb mode before executing the
10312 rest of the function.  This allows these functions to be called from
10313 non-interworking code.  This option is not valid in AAPCS configurations
10314 because interworking is enabled by default.
10315
10316 @item -mcaller-super-interworking
10317 @opindex mcaller-super-interworking
10318 Allows calls via function pointers (including virtual functions) to
10319 execute correctly regardless of whether the target code has been
10320 compiled for interworking or not.  There is a small overhead in the cost
10321 of executing a function pointer if this option is enabled.  This option
10322 is not valid in AAPCS configurations because interworking is enabled
10323 by default.
10324
10325 @item -mtp=@var{name}
10326 @opindex mtp
10327 Specify the access model for the thread local storage pointer.  The valid
10328 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
10329 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
10330 (supported in the arm6k architecture), and @option{auto}, which uses the
10331 best available method for the selected processor.  The default setting is
10332 @option{auto}.
10333
10334 @item -mword-relocations
10335 @opindex mword-relocations
10336 Only generate absolute relocations on word sized values (i.e. R_ARM_ABS32).
10337 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
10338 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
10339 is specified.
10340
10341 @item -mfix-cortex-m3-ldrd
10342 @opindex mfix-cortex-m3-ldrd
10343 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
10344 with overlapping destination and base registers are used.  This option avoids
10345 generating these instructions.  This option is enabled by default when
10346 @option{-mcpu=cortex-m3} is specified.
10347
10348 @end table
10349
10350 @node AVR Options
10351 @subsection AVR Options
10352 @cindex AVR Options
10353
10354 These options are defined for AVR implementations:
10355
10356 @table @gcctabopt
10357 @item -mmcu=@var{mcu}
10358 @opindex mmcu
10359 Specify ATMEL AVR instruction set or MCU type.
10360
10361 Instruction set avr1 is for the minimal AVR core, not supported by the C
10362 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
10363 attiny11, attiny12, attiny15, attiny28).
10364
10365 Instruction set avr2 (default) is for the classic AVR core with up to
10366 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
10367 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
10368 at90c8534, at90s8535).
10369
10370 Instruction set avr3 is for the classic AVR core with up to 128K program
10371 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
10372
10373 Instruction set avr4 is for the enhanced AVR core with up to 8K program
10374 memory space (MCU types: atmega8, atmega83, atmega85).
10375
10376 Instruction set avr5 is for the enhanced AVR core with up to 128K program
10377 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
10378 atmega64, atmega128, at43usb355, at94k).
10379
10380 @item -mno-interrupts
10381 @opindex mno-interrupts
10382 Generated code is not compatible with hardware interrupts.
10383 Code size will be smaller.
10384
10385 @item -mcall-prologues
10386 @opindex mcall-prologues
10387 Functions prologues/epilogues expanded as call to appropriate
10388 subroutines.  Code size will be smaller.
10389
10390 @item -mtiny-stack
10391 @opindex mtiny-stack
10392 Change only the low 8 bits of the stack pointer.
10393
10394 @item -mint8
10395 @opindex mint8
10396 Assume int to be 8 bit integer.  This affects the sizes of all types: A
10397 char will be 1 byte, an int will be 1 byte, a long will be 2 bytes
10398 and long long will be 4 bytes.  Please note that this option does not
10399 comply to the C standards, but it will provide you with smaller code
10400 size.
10401 @end table
10402
10403 @node Blackfin Options
10404 @subsection Blackfin Options
10405 @cindex Blackfin Options
10406
10407 @table @gcctabopt
10408 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
10409 @opindex mcpu=
10410 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
10411 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
10412 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
10413 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
10414 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
10415 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
10416 @samp{bf542m}, @samp{bf544m}, @samp{bf547m}, @samp{bf548m}, @samp{bf549m},
10417 @samp{bf561}.
10418 The optional @var{sirevision} specifies the silicon revision of the target
10419 Blackfin processor.  Any workarounds available for the targeted silicon revision
10420 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
10421 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
10422 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
10423 hexadecimal digits representing the major and minor numbers in the silicon
10424 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
10425 is not defined.  If @var{sirevision} is @samp{any}, the
10426 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
10427 If this optional @var{sirevision} is not used, GCC assumes the latest known
10428 silicon revision of the targeted Blackfin processor.
10429
10430 Support for @samp{bf561} is incomplete.  For @samp{bf561},
10431 Only the processor macro is defined.
10432 Without this option, @samp{bf532} is used as the processor by default.
10433 The corresponding predefined processor macros for @var{cpu} is to
10434 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
10435 provided by libgloss to be linked in if @option{-msim} is not given.
10436
10437 @item -msim
10438 @opindex msim
10439 Specifies that the program will be run on the simulator.  This causes
10440 the simulator BSP provided by libgloss to be linked in.  This option
10441 has effect only for @samp{bfin-elf} toolchain.
10442 Certain other options, such as @option{-mid-shared-library} and
10443 @option{-mfdpic}, imply @option{-msim}.
10444
10445 @item -momit-leaf-frame-pointer
10446 @opindex momit-leaf-frame-pointer
10447 Don't keep the frame pointer in a register for leaf functions.  This
10448 avoids the instructions to save, set up and restore frame pointers and
10449 makes an extra register available in leaf functions.  The option
10450 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10451 which might make debugging harder.
10452
10453 @item -mspecld-anomaly
10454 @opindex mspecld-anomaly
10455 When enabled, the compiler will ensure that the generated code does not
10456 contain speculative loads after jump instructions. If this option is used,
10457 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
10458
10459 @item -mno-specld-anomaly
10460 @opindex mno-specld-anomaly
10461 Don't generate extra code to prevent speculative loads from occurring.
10462
10463 @item -mcsync-anomaly
10464 @opindex mcsync-anomaly
10465 When enabled, the compiler will ensure that the generated code does not
10466 contain CSYNC or SSYNC instructions too soon after conditional branches.
10467 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
10468
10469 @item -mno-csync-anomaly
10470 @opindex mno-csync-anomaly
10471 Don't generate extra code to prevent CSYNC or SSYNC instructions from
10472 occurring too soon after a conditional branch.
10473
10474 @item -mlow-64k
10475 @opindex mlow-64k
10476 When enabled, the compiler is free to take advantage of the knowledge that
10477 the entire program fits into the low 64k of memory.
10478
10479 @item -mno-low-64k
10480 @opindex mno-low-64k
10481 Assume that the program is arbitrarily large.  This is the default.
10482
10483 @item -mstack-check-l1
10484 @opindex mstack-check-l1
10485 Do stack checking using information placed into L1 scratchpad memory by the
10486 uClinux kernel.
10487
10488 @item -mid-shared-library
10489 @opindex mid-shared-library
10490 Generate code that supports shared libraries via the library ID method.
10491 This allows for execute in place and shared libraries in an environment
10492 without virtual memory management.  This option implies @option{-fPIC}.
10493 With a @samp{bfin-elf} target, this option implies @option{-msim}.
10494
10495 @item -mno-id-shared-library
10496 @opindex mno-id-shared-library
10497 Generate code that doesn't assume ID based shared libraries are being used.
10498 This is the default.
10499
10500 @item -mleaf-id-shared-library
10501 @opindex mleaf-id-shared-library
10502 Generate code that supports shared libraries via the library ID method,
10503 but assumes that this library or executable won't link against any other
10504 ID shared libraries.  That allows the compiler to use faster code for jumps
10505 and calls.
10506
10507 @item -mno-leaf-id-shared-library
10508 @opindex mno-leaf-id-shared-library
10509 Do not assume that the code being compiled won't link against any ID shared
10510 libraries.  Slower code will be generated for jump and call insns.
10511
10512 @item -mshared-library-id=n
10513 @opindex mshared-library-id
10514 Specified the identification number of the ID based shared library being
10515 compiled.  Specifying a value of 0 will generate more compact code, specifying
10516 other values will force the allocation of that number to the current
10517 library but is no more space or time efficient than omitting this option.
10518
10519 @item -msep-data
10520 @opindex msep-data
10521 Generate code that allows the data segment to be located in a different
10522 area of memory from the text segment.  This allows for execute in place in
10523 an environment without virtual memory management by eliminating relocations
10524 against the text section.
10525
10526 @item -mno-sep-data
10527 @opindex mno-sep-data
10528 Generate code that assumes that the data segment follows the text segment.
10529 This is the default.
10530
10531 @item -mlong-calls
10532 @itemx -mno-long-calls
10533 @opindex mlong-calls
10534 @opindex mno-long-calls
10535 Tells the compiler to perform function calls by first loading the
10536 address of the function into a register and then performing a subroutine
10537 call on this register.  This switch is needed if the target function
10538 will lie outside of the 24 bit addressing range of the offset based
10539 version of subroutine call instruction.
10540
10541 This feature is not enabled by default.  Specifying
10542 @option{-mno-long-calls} will restore the default behavior.  Note these
10543 switches have no effect on how the compiler generates code to handle
10544 function calls via function pointers.
10545
10546 @item -mfast-fp
10547 @opindex mfast-fp
10548 Link with the fast floating-point library. This library relaxes some of
10549 the IEEE floating-point standard's rules for checking inputs against
10550 Not-a-Number (NAN), in the interest of performance.
10551
10552 @item -minline-plt
10553 @opindex minline-plt
10554 Enable inlining of PLT entries in function calls to functions that are
10555 not known to bind locally.  It has no effect without @option{-mfdpic}.
10556
10557 @item -mmulticore
10558 @opindex mmulticore
10559 Build standalone application for multicore Blackfin processor. Proper
10560 start files and link scripts will be used to support multicore.
10561 This option defines @code{__BFIN_MULTICORE}. It can only be used with
10562 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
10563 @option{-mcorea} or @option{-mcoreb}. If it's used without
10564 @option{-mcorea} or @option{-mcoreb}, single application/dual core
10565 programming model is used. In this model, the main function of Core B
10566 should be named as coreb_main. If it's used with @option{-mcorea} or
10567 @option{-mcoreb}, one application per core programming model is used.
10568 If this option is not used, single core application programming
10569 model is used.
10570
10571 @item -mcorea
10572 @opindex mcorea
10573 Build standalone application for Core A of BF561 when using
10574 one application per core programming model. Proper start files
10575 and link scripts will be used to support Core A. This option
10576 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
10577
10578 @item -mcoreb
10579 @opindex mcoreb
10580 Build standalone application for Core B of BF561 when using
10581 one application per core programming model. Proper start files
10582 and link scripts will be used to support Core B. This option
10583 defines @code{__BFIN_COREB}. When this option is used, coreb_main
10584 should be used instead of main. It must be used with
10585 @option{-mmulticore}.
10586
10587 @item -msdram
10588 @opindex msdram
10589 Build standalone application for SDRAM. Proper start files and
10590 link scripts will be used to put the application into SDRAM.
10591 Loader should initialize SDRAM before loading the application
10592 into SDRAM. This option defines @code{__BFIN_SDRAM}.
10593
10594 @item -micplb
10595 @opindex micplb
10596 Assume that ICPLBs are enabled at runtime.  This has an effect on certain
10597 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
10598 are enabled; for standalone applications the default is off.
10599 @end table
10600
10601 @node CRIS Options
10602 @subsection CRIS Options
10603 @cindex CRIS Options
10604
10605 These options are defined specifically for the CRIS ports.
10606
10607 @table @gcctabopt
10608 @item -march=@var{architecture-type}
10609 @itemx -mcpu=@var{architecture-type}
10610 @opindex march
10611 @opindex mcpu
10612 Generate code for the specified architecture.  The choices for
10613 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
10614 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
10615 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
10616 @samp{v10}.
10617
10618 @item -mtune=@var{architecture-type}
10619 @opindex mtune
10620 Tune to @var{architecture-type} everything applicable about the generated
10621 code, except for the ABI and the set of available instructions.  The
10622 choices for @var{architecture-type} are the same as for
10623 @option{-march=@var{architecture-type}}.
10624
10625 @item -mmax-stack-frame=@var{n}
10626 @opindex mmax-stack-frame
10627 Warn when the stack frame of a function exceeds @var{n} bytes.
10628
10629 @item -metrax4
10630 @itemx -metrax100
10631 @opindex metrax4
10632 @opindex metrax100
10633 The options @option{-metrax4} and @option{-metrax100} are synonyms for
10634 @option{-march=v3} and @option{-march=v8} respectively.
10635
10636 @item -mmul-bug-workaround
10637 @itemx -mno-mul-bug-workaround
10638 @opindex mmul-bug-workaround
10639 @opindex mno-mul-bug-workaround
10640 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
10641 models where it applies.  This option is active by default.
10642
10643 @item -mpdebug
10644 @opindex mpdebug
10645 Enable CRIS-specific verbose debug-related information in the assembly
10646 code.  This option also has the effect to turn off the @samp{#NO_APP}
10647 formatted-code indicator to the assembler at the beginning of the
10648 assembly file.
10649
10650 @item -mcc-init
10651 @opindex mcc-init
10652 Do not use condition-code results from previous instruction; always emit
10653 compare and test instructions before use of condition codes.
10654
10655 @item -mno-side-effects
10656 @opindex mno-side-effects
10657 Do not emit instructions with side-effects in addressing modes other than
10658 post-increment.
10659
10660 @item -mstack-align
10661 @itemx -mno-stack-align
10662 @itemx -mdata-align
10663 @itemx -mno-data-align
10664 @itemx -mconst-align
10665 @itemx -mno-const-align
10666 @opindex mstack-align
10667 @opindex mno-stack-align
10668 @opindex mdata-align
10669 @opindex mno-data-align
10670 @opindex mconst-align
10671 @opindex mno-const-align
10672 These options (no-options) arranges (eliminate arrangements) for the
10673 stack-frame, individual data and constants to be aligned for the maximum
10674 single data access size for the chosen CPU model.  The default is to
10675 arrange for 32-bit alignment.  ABI details such as structure layout are
10676 not affected by these options.
10677
10678 @item -m32-bit
10679 @itemx -m16-bit
10680 @itemx -m8-bit
10681 @opindex m32-bit
10682 @opindex m16-bit
10683 @opindex m8-bit
10684 Similar to the stack- data- and const-align options above, these options
10685 arrange for stack-frame, writable data and constants to all be 32-bit,
10686 16-bit or 8-bit aligned.  The default is 32-bit alignment.
10687
10688 @item -mno-prologue-epilogue
10689 @itemx -mprologue-epilogue
10690 @opindex mno-prologue-epilogue
10691 @opindex mprologue-epilogue
10692 With @option{-mno-prologue-epilogue}, the normal function prologue and
10693 epilogue that sets up the stack-frame are omitted and no return
10694 instructions or return sequences are generated in the code.  Use this
10695 option only together with visual inspection of the compiled code: no
10696 warnings or errors are generated when call-saved registers must be saved,
10697 or storage for local variable needs to be allocated.
10698
10699 @item -mno-gotplt
10700 @itemx -mgotplt
10701 @opindex mno-gotplt
10702 @opindex mgotplt
10703 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
10704 instruction sequences that load addresses for functions from the PLT part
10705 of the GOT rather than (traditional on other architectures) calls to the
10706 PLT@.  The default is @option{-mgotplt}.
10707
10708 @item -melf
10709 @opindex melf
10710 Legacy no-op option only recognized with the cris-axis-elf and
10711 cris-axis-linux-gnu targets.
10712
10713 @item -mlinux
10714 @opindex mlinux
10715 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
10716
10717 @item -sim
10718 @opindex sim
10719 This option, recognized for the cris-axis-elf arranges
10720 to link with input-output functions from a simulator library.  Code,
10721 initialized data and zero-initialized data are allocated consecutively.
10722
10723 @item -sim2
10724 @opindex sim2
10725 Like @option{-sim}, but pass linker options to locate initialized data at
10726 0x40000000 and zero-initialized data at 0x80000000.
10727 @end table
10728
10729 @node Darwin Options
10730 @subsection Darwin Options
10731 @cindex Darwin options
10732
10733 These options are defined for all architectures running the Darwin operating
10734 system.
10735
10736 FSF GCC on Darwin does not create ``fat'' object files; it will create
10737 an object file for the single architecture that it was built to
10738 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
10739 @option{-arch} options are used; it does so by running the compiler or
10740 linker multiple times and joining the results together with
10741 @file{lipo}.
10742
10743 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
10744 @samp{i686}) is determined by the flags that specify the ISA
10745 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
10746 @option{-force_cpusubtype_ALL} option can be used to override this.
10747
10748 The Darwin tools vary in their behavior when presented with an ISA
10749 mismatch.  The assembler, @file{as}, will only permit instructions to
10750 be used that are valid for the subtype of the file it is generating,
10751 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
10752 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
10753 and print an error if asked to create a shared library with a less
10754 restrictive subtype than its input files (for instance, trying to put
10755 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
10756 for executables, @file{ld}, will quietly give the executable the most
10757 restrictive subtype of any of its input files.
10758
10759 @table @gcctabopt
10760 @item -F@var{dir}
10761 @opindex F
10762 Add the framework directory @var{dir} to the head of the list of
10763 directories to be searched for header files.  These directories are
10764 interleaved with those specified by @option{-I} options and are
10765 scanned in a left-to-right order.
10766
10767 A framework directory is a directory with frameworks in it.  A
10768 framework is a directory with a @samp{"Headers"} and/or
10769 @samp{"PrivateHeaders"} directory contained directly in it that ends
10770 in @samp{".framework"}.  The name of a framework is the name of this
10771 directory excluding the @samp{".framework"}.  Headers associated with
10772 the framework are found in one of those two directories, with
10773 @samp{"Headers"} being searched first.  A subframework is a framework
10774 directory that is in a framework's @samp{"Frameworks"} directory.
10775 Includes of subframework headers can only appear in a header of a
10776 framework that contains the subframework, or in a sibling subframework
10777 header.  Two subframeworks are siblings if they occur in the same
10778 framework.  A subframework should not have the same name as a
10779 framework, a warning will be issued if this is violated.  Currently a
10780 subframework cannot have subframeworks, in the future, the mechanism
10781 may be extended to support this.  The standard frameworks can be found
10782 in @samp{"/System/Library/Frameworks"} and
10783 @samp{"/Library/Frameworks"}.  An example include looks like
10784 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
10785 the name of the framework and header.h is found in the
10786 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
10787
10788 @item -iframework@var{dir}
10789 @opindex iframework
10790 Like @option{-F} except the directory is a treated as a system
10791 directory.  The main difference between this @option{-iframework} and
10792 @option{-F} is that with @option{-iframework} the compiler does not
10793 warn about constructs contained within header files found via
10794 @var{dir}.  This option is valid only for the C family of languages.
10795
10796 @item -gused
10797 @opindex gused
10798 Emit debugging information for symbols that are used.  For STABS
10799 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
10800 This is by default ON@.
10801
10802 @item -gfull
10803 @opindex gfull
10804 Emit debugging information for all symbols and types.
10805
10806 @item -mmacosx-version-min=@var{version}
10807 The earliest version of MacOS X that this executable will run on
10808 is @var{version}.  Typical values of @var{version} include @code{10.1},
10809 @code{10.2}, and @code{10.3.9}.
10810
10811 If the compiler was built to use the system's headers by default,
10812 then the default for this option is the system version on which the
10813 compiler is running, otherwise the default is to make choices which
10814 are compatible with as many systems and code bases as possible.
10815
10816 @item -mkernel
10817 @opindex mkernel
10818 Enable kernel development mode.  The @option{-mkernel} option sets
10819 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
10820 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
10821 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
10822 applicable.  This mode also sets @option{-mno-altivec},
10823 @option{-msoft-float}, @option{-fno-builtin} and
10824 @option{-mlong-branch} for PowerPC targets.
10825
10826 @item -mone-byte-bool
10827 @opindex mone-byte-bool
10828 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
10829 By default @samp{sizeof(bool)} is @samp{4} when compiling for
10830 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
10831 option has no effect on x86.
10832
10833 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
10834 to generate code that is not binary compatible with code generated
10835 without that switch.  Using this switch may require recompiling all
10836 other modules in a program, including system libraries.  Use this
10837 switch to conform to a non-default data model.
10838
10839 @item -mfix-and-continue
10840 @itemx -ffix-and-continue
10841 @itemx -findirect-data
10842 @opindex mfix-and-continue
10843 @opindex ffix-and-continue
10844 @opindex findirect-data
10845 Generate code suitable for fast turn around development.  Needed to
10846 enable gdb to dynamically load @code{.o} files into already running
10847 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
10848 are provided for backwards compatibility.
10849
10850 @item -all_load
10851 @opindex all_load
10852 Loads all members of static archive libraries.
10853 See man ld(1) for more information.
10854
10855 @item -arch_errors_fatal
10856 @opindex arch_errors_fatal
10857 Cause the errors having to do with files that have the wrong architecture
10858 to be fatal.
10859
10860 @item -bind_at_load
10861 @opindex bind_at_load
10862 Causes the output file to be marked such that the dynamic linker will
10863 bind all undefined references when the file is loaded or launched.
10864
10865 @item -bundle
10866 @opindex bundle
10867 Produce a Mach-o bundle format file.
10868 See man ld(1) for more information.
10869
10870 @item -bundle_loader @var{executable}
10871 @opindex bundle_loader
10872 This option specifies the @var{executable} that will be loading the build
10873 output file being linked.  See man ld(1) for more information.
10874
10875 @item -dynamiclib
10876 @opindex dynamiclib
10877 When passed this option, GCC will produce a dynamic library instead of
10878 an executable when linking, using the Darwin @file{libtool} command.
10879
10880 @item -force_cpusubtype_ALL
10881 @opindex force_cpusubtype_ALL
10882 This causes GCC's output file to have the @var{ALL} subtype, instead of
10883 one controlled by the @option{-mcpu} or @option{-march} option.
10884
10885 @item -allowable_client  @var{client_name}
10886 @itemx -client_name
10887 @itemx -compatibility_version
10888 @itemx -current_version
10889 @itemx -dead_strip
10890 @itemx -dependency-file
10891 @itemx -dylib_file
10892 @itemx -dylinker_install_name
10893 @itemx -dynamic
10894 @itemx -exported_symbols_list
10895 @itemx -filelist
10896 @need 800
10897 @itemx -flat_namespace
10898 @itemx -force_flat_namespace
10899 @itemx -headerpad_max_install_names
10900 @itemx -image_base
10901 @itemx -init
10902 @itemx -install_name
10903 @itemx -keep_private_externs
10904 @itemx -multi_module
10905 @itemx -multiply_defined
10906 @itemx -multiply_defined_unused
10907 @need 800
10908 @itemx -noall_load
10909 @itemx -no_dead_strip_inits_and_terms
10910 @itemx -nofixprebinding
10911 @itemx -nomultidefs
10912 @itemx -noprebind
10913 @itemx -noseglinkedit
10914 @itemx -pagezero_size
10915 @itemx -prebind
10916 @itemx -prebind_all_twolevel_modules
10917 @itemx -private_bundle
10918 @need 800
10919 @itemx -read_only_relocs
10920 @itemx -sectalign
10921 @itemx -sectobjectsymbols
10922 @itemx -whyload
10923 @itemx -seg1addr
10924 @itemx -sectcreate
10925 @itemx -sectobjectsymbols
10926 @itemx -sectorder
10927 @itemx -segaddr
10928 @itemx -segs_read_only_addr
10929 @need 800
10930 @itemx -segs_read_write_addr
10931 @itemx -seg_addr_table
10932 @itemx -seg_addr_table_filename
10933 @itemx -seglinkedit
10934 @itemx -segprot
10935 @itemx -segs_read_only_addr
10936 @itemx -segs_read_write_addr
10937 @itemx -single_module
10938 @itemx -static
10939 @itemx -sub_library
10940 @need 800
10941 @itemx -sub_umbrella
10942 @itemx -twolevel_namespace
10943 @itemx -umbrella
10944 @itemx -undefined
10945 @itemx -unexported_symbols_list
10946 @itemx -weak_reference_mismatches
10947 @itemx -whatsloaded
10948 @opindex allowable_client
10949 @opindex client_name
10950 @opindex compatibility_version
10951 @opindex current_version
10952 @opindex dead_strip
10953 @opindex dependency-file
10954 @opindex dylib_file
10955 @opindex dylinker_install_name
10956 @opindex dynamic
10957 @opindex exported_symbols_list
10958 @opindex filelist
10959 @opindex flat_namespace
10960 @opindex force_flat_namespace
10961 @opindex headerpad_max_install_names
10962 @opindex image_base
10963 @opindex init
10964 @opindex install_name
10965 @opindex keep_private_externs
10966 @opindex multi_module
10967 @opindex multiply_defined
10968 @opindex multiply_defined_unused
10969 @opindex noall_load
10970 @opindex no_dead_strip_inits_and_terms
10971 @opindex nofixprebinding
10972 @opindex nomultidefs
10973 @opindex noprebind
10974 @opindex noseglinkedit
10975 @opindex pagezero_size
10976 @opindex prebind
10977 @opindex prebind_all_twolevel_modules
10978 @opindex private_bundle
10979 @opindex read_only_relocs
10980 @opindex sectalign
10981 @opindex sectobjectsymbols
10982 @opindex whyload
10983 @opindex seg1addr
10984 @opindex sectcreate
10985 @opindex sectobjectsymbols
10986 @opindex sectorder
10987 @opindex segaddr
10988 @opindex segs_read_only_addr
10989 @opindex segs_read_write_addr
10990 @opindex seg_addr_table
10991 @opindex seg_addr_table_filename
10992 @opindex seglinkedit
10993 @opindex segprot
10994 @opindex segs_read_only_addr
10995 @opindex segs_read_write_addr
10996 @opindex single_module
10997 @opindex static
10998 @opindex sub_library
10999 @opindex sub_umbrella
11000 @opindex twolevel_namespace
11001 @opindex umbrella
11002 @opindex undefined
11003 @opindex unexported_symbols_list
11004 @opindex weak_reference_mismatches
11005 @opindex whatsloaded
11006 These options are passed to the Darwin linker.  The Darwin linker man page
11007 describes them in detail.
11008 @end table
11009
11010 @node DEC Alpha Options
11011 @subsection DEC Alpha Options
11012
11013 These @samp{-m} options are defined for the DEC Alpha implementations:
11014
11015 @table @gcctabopt
11016 @item -mno-soft-float
11017 @itemx -msoft-float
11018 @opindex mno-soft-float
11019 @opindex msoft-float
11020 Use (do not use) the hardware floating-point instructions for
11021 floating-point operations.  When @option{-msoft-float} is specified,
11022 functions in @file{libgcc.a} will be used to perform floating-point
11023 operations.  Unless they are replaced by routines that emulate the
11024 floating-point operations, or compiled in such a way as to call such
11025 emulations routines, these routines will issue floating-point
11026 operations.   If you are compiling for an Alpha without floating-point
11027 operations, you must ensure that the library is built so as not to call
11028 them.
11029
11030 Note that Alpha implementations without floating-point operations are
11031 required to have floating-point registers.
11032
11033 @item -mfp-reg
11034 @itemx -mno-fp-regs
11035 @opindex mfp-reg
11036 @opindex mno-fp-regs
11037 Generate code that uses (does not use) the floating-point register set.
11038 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
11039 register set is not used, floating point operands are passed in integer
11040 registers as if they were integers and floating-point results are passed
11041 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
11042 so any function with a floating-point argument or return value called by code
11043 compiled with @option{-mno-fp-regs} must also be compiled with that
11044 option.
11045
11046 A typical use of this option is building a kernel that does not use,
11047 and hence need not save and restore, any floating-point registers.
11048
11049 @item -mieee
11050 @opindex mieee
11051 The Alpha architecture implements floating-point hardware optimized for
11052 maximum performance.  It is mostly compliant with the IEEE floating
11053 point standard.  However, for full compliance, software assistance is
11054 required.  This option generates code fully IEEE compliant code
11055 @emph{except} that the @var{inexact-flag} is not maintained (see below).
11056 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
11057 defined during compilation.  The resulting code is less efficient but is
11058 able to correctly support denormalized numbers and exceptional IEEE
11059 values such as not-a-number and plus/minus infinity.  Other Alpha
11060 compilers call this option @option{-ieee_with_no_inexact}.
11061
11062 @item -mieee-with-inexact
11063 @opindex mieee-with-inexact
11064 This is like @option{-mieee} except the generated code also maintains
11065 the IEEE @var{inexact-flag}.  Turning on this option causes the
11066 generated code to implement fully-compliant IEEE math.  In addition to
11067 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
11068 macro.  On some Alpha implementations the resulting code may execute
11069 significantly slower than the code generated by default.  Since there is
11070 very little code that depends on the @var{inexact-flag}, you should
11071 normally not specify this option.  Other Alpha compilers call this
11072 option @option{-ieee_with_inexact}.
11073
11074 @item -mfp-trap-mode=@var{trap-mode}
11075 @opindex mfp-trap-mode
11076 This option controls what floating-point related traps are enabled.
11077 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
11078 The trap mode can be set to one of four values:
11079
11080 @table @samp
11081 @item n
11082 This is the default (normal) setting.  The only traps that are enabled
11083 are the ones that cannot be disabled in software (e.g., division by zero
11084 trap).
11085
11086 @item u
11087 In addition to the traps enabled by @samp{n}, underflow traps are enabled
11088 as well.
11089
11090 @item su
11091 Like @samp{u}, but the instructions are marked to be safe for software
11092 completion (see Alpha architecture manual for details).
11093
11094 @item sui
11095 Like @samp{su}, but inexact traps are enabled as well.
11096 @end table
11097
11098 @item -mfp-rounding-mode=@var{rounding-mode}
11099 @opindex mfp-rounding-mode
11100 Selects the IEEE rounding mode.  Other Alpha compilers call this option
11101 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
11102 of:
11103
11104 @table @samp
11105 @item n
11106 Normal IEEE rounding mode.  Floating point numbers are rounded towards
11107 the nearest machine number or towards the even machine number in case
11108 of a tie.
11109
11110 @item m
11111 Round towards minus infinity.
11112
11113 @item c
11114 Chopped rounding mode.  Floating point numbers are rounded towards zero.
11115
11116 @item d
11117 Dynamic rounding mode.  A field in the floating point control register
11118 (@var{fpcr}, see Alpha architecture reference manual) controls the
11119 rounding mode in effect.  The C library initializes this register for
11120 rounding towards plus infinity.  Thus, unless your program modifies the
11121 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
11122 @end table
11123
11124 @item -mtrap-precision=@var{trap-precision}
11125 @opindex mtrap-precision
11126 In the Alpha architecture, floating point traps are imprecise.  This
11127 means without software assistance it is impossible to recover from a
11128 floating trap and program execution normally needs to be terminated.
11129 GCC can generate code that can assist operating system trap handlers
11130 in determining the exact location that caused a floating point trap.
11131 Depending on the requirements of an application, different levels of
11132 precisions can be selected:
11133
11134 @table @samp
11135 @item p
11136 Program precision.  This option is the default and means a trap handler
11137 can only identify which program caused a floating point exception.
11138
11139 @item f
11140 Function precision.  The trap handler can determine the function that
11141 caused a floating point exception.
11142
11143 @item i
11144 Instruction precision.  The trap handler can determine the exact
11145 instruction that caused a floating point exception.
11146 @end table
11147
11148 Other Alpha compilers provide the equivalent options called
11149 @option{-scope_safe} and @option{-resumption_safe}.
11150
11151 @item -mieee-conformant
11152 @opindex mieee-conformant
11153 This option marks the generated code as IEEE conformant.  You must not
11154 use this option unless you also specify @option{-mtrap-precision=i} and either
11155 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
11156 is to emit the line @samp{.eflag 48} in the function prologue of the
11157 generated assembly file.  Under DEC Unix, this has the effect that
11158 IEEE-conformant math library routines will be linked in.
11159
11160 @item -mbuild-constants
11161 @opindex mbuild-constants
11162 Normally GCC examines a 32- or 64-bit integer constant to
11163 see if it can construct it from smaller constants in two or three
11164 instructions.  If it cannot, it will output the constant as a literal and
11165 generate code to load it from the data segment at runtime.
11166
11167 Use this option to require GCC to construct @emph{all} integer constants
11168 using code, even if it takes more instructions (the maximum is six).
11169
11170 You would typically use this option to build a shared library dynamic
11171 loader.  Itself a shared library, it must relocate itself in memory
11172 before it can find the variables and constants in its own data segment.
11173
11174 @item -malpha-as
11175 @itemx -mgas
11176 @opindex malpha-as
11177 @opindex mgas
11178 Select whether to generate code to be assembled by the vendor-supplied
11179 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
11180
11181 @item -mbwx
11182 @itemx -mno-bwx
11183 @itemx -mcix
11184 @itemx -mno-cix
11185 @itemx -mfix
11186 @itemx -mno-fix
11187 @itemx -mmax
11188 @itemx -mno-max
11189 @opindex mbwx
11190 @opindex mno-bwx
11191 @opindex mcix
11192 @opindex mno-cix
11193 @opindex mfix
11194 @opindex mno-fix
11195 @opindex mmax
11196 @opindex mno-max
11197 Indicate whether GCC should generate code to use the optional BWX,
11198 CIX, FIX and MAX instruction sets.  The default is to use the instruction
11199 sets supported by the CPU type specified via @option{-mcpu=} option or that
11200 of the CPU on which GCC was built if none was specified.
11201
11202 @item -mfloat-vax
11203 @itemx -mfloat-ieee
11204 @opindex mfloat-vax
11205 @opindex mfloat-ieee
11206 Generate code that uses (does not use) VAX F and G floating point
11207 arithmetic instead of IEEE single and double precision.
11208
11209 @item -mexplicit-relocs
11210 @itemx -mno-explicit-relocs
11211 @opindex mexplicit-relocs
11212 @opindex mno-explicit-relocs
11213 Older Alpha assemblers provided no way to generate symbol relocations
11214 except via assembler macros.  Use of these macros does not allow
11215 optimal instruction scheduling.  GNU binutils as of version 2.12
11216 supports a new syntax that allows the compiler to explicitly mark
11217 which relocations should apply to which instructions.  This option
11218 is mostly useful for debugging, as GCC detects the capabilities of
11219 the assembler when it is built and sets the default accordingly.
11220
11221 @item -msmall-data
11222 @itemx -mlarge-data
11223 @opindex msmall-data
11224 @opindex mlarge-data
11225 When @option{-mexplicit-relocs} is in effect, static data is
11226 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
11227 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
11228 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
11229 16-bit relocations off of the @code{$gp} register.  This limits the
11230 size of the small data area to 64KB, but allows the variables to be
11231 directly accessed via a single instruction.
11232
11233 The default is @option{-mlarge-data}.  With this option the data area
11234 is limited to just below 2GB@.  Programs that require more than 2GB of
11235 data must use @code{malloc} or @code{mmap} to allocate the data in the
11236 heap instead of in the program's data segment.
11237
11238 When generating code for shared libraries, @option{-fpic} implies
11239 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
11240
11241 @item -msmall-text
11242 @itemx -mlarge-text
11243 @opindex msmall-text
11244 @opindex mlarge-text
11245 When @option{-msmall-text} is used, the compiler assumes that the
11246 code of the entire program (or shared library) fits in 4MB, and is
11247 thus reachable with a branch instruction.  When @option{-msmall-data}
11248 is used, the compiler can assume that all local symbols share the
11249 same @code{$gp} value, and thus reduce the number of instructions
11250 required for a function call from 4 to 1.
11251
11252 The default is @option{-mlarge-text}.
11253
11254 @item -mcpu=@var{cpu_type}
11255 @opindex mcpu
11256 Set the instruction set and instruction scheduling parameters for
11257 machine type @var{cpu_type}.  You can specify either the @samp{EV}
11258 style name or the corresponding chip number.  GCC supports scheduling
11259 parameters for the EV4, EV5 and EV6 family of processors and will
11260 choose the default values for the instruction set from the processor
11261 you specify.  If you do not specify a processor type, GCC will default
11262 to the processor on which the compiler was built.
11263
11264 Supported values for @var{cpu_type} are
11265
11266 @table @samp
11267 @item ev4
11268 @itemx ev45
11269 @itemx 21064
11270 Schedules as an EV4 and has no instruction set extensions.
11271
11272 @item ev5
11273 @itemx 21164
11274 Schedules as an EV5 and has no instruction set extensions.
11275
11276 @item ev56
11277 @itemx 21164a
11278 Schedules as an EV5 and supports the BWX extension.
11279
11280 @item pca56
11281 @itemx 21164pc
11282 @itemx 21164PC
11283 Schedules as an EV5 and supports the BWX and MAX extensions.
11284
11285 @item ev6
11286 @itemx 21264
11287 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
11288
11289 @item ev67
11290 @itemx 21264a
11291 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
11292 @end table
11293
11294 Native Linux/GNU toolchains also support the value @samp{native},
11295 which selects the best architecture option for the host processor.
11296 @option{-mcpu=native} has no effect if GCC does not recognize
11297 the processor.
11298
11299 @item -mtune=@var{cpu_type}
11300 @opindex mtune
11301 Set only the instruction scheduling parameters for machine type
11302 @var{cpu_type}.  The instruction set is not changed.
11303
11304 Native Linux/GNU toolchains also support the value @samp{native},
11305 which selects the best architecture option for the host processor.
11306 @option{-mtune=native} has no effect if GCC does not recognize
11307 the processor.
11308
11309 @item -mmemory-latency=@var{time}
11310 @opindex mmemory-latency
11311 Sets the latency the scheduler should assume for typical memory
11312 references as seen by the application.  This number is highly
11313 dependent on the memory access patterns used by the application
11314 and the size of the external cache on the machine.
11315
11316 Valid options for @var{time} are
11317
11318 @table @samp
11319 @item @var{number}
11320 A decimal number representing clock cycles.
11321
11322 @item L1
11323 @itemx L2
11324 @itemx L3
11325 @itemx main
11326 The compiler contains estimates of the number of clock cycles for
11327 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
11328 (also called Dcache, Scache, and Bcache), as well as to main memory.
11329 Note that L3 is only valid for EV5.
11330
11331 @end table
11332 @end table
11333
11334 @node DEC Alpha/VMS Options
11335 @subsection DEC Alpha/VMS Options
11336
11337 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
11338
11339 @table @gcctabopt
11340 @item -mvms-return-codes
11341 @opindex mvms-return-codes
11342 Return VMS condition codes from main.  The default is to return POSIX
11343 style condition (e.g.@: error) codes.
11344
11345 @item -mdebug-main=@var{prefix}
11346 @opindex mdebug-main=@var{prefix}
11347 Flag the first routine whose name starts with @var{prefix} as the main
11348 routine for the debugger.
11349
11350 @item -mmalloc64
11351 @opindex mmalloc64
11352 Default to 64bit memory allocation routines.
11353 @end table
11354
11355 @node FR30 Options
11356 @subsection FR30 Options
11357 @cindex FR30 Options
11358
11359 These options are defined specifically for the FR30 port.
11360
11361 @table @gcctabopt
11362
11363 @item -msmall-model
11364 @opindex msmall-model
11365 Use the small address space model.  This can produce smaller code, but
11366 it does assume that all symbolic values and addresses will fit into a
11367 20-bit range.
11368
11369 @item -mno-lsim
11370 @opindex mno-lsim
11371 Assume that run-time support has been provided and so there is no need
11372 to include the simulator library (@file{libsim.a}) on the linker
11373 command line.
11374
11375 @end table
11376
11377 @node FRV Options
11378 @subsection FRV Options
11379 @cindex FRV Options
11380
11381 @table @gcctabopt
11382 @item -mgpr-32
11383 @opindex mgpr-32
11384
11385 Only use the first 32 general purpose registers.
11386
11387 @item -mgpr-64
11388 @opindex mgpr-64
11389
11390 Use all 64 general purpose registers.
11391
11392 @item -mfpr-32
11393 @opindex mfpr-32
11394
11395 Use only the first 32 floating point registers.
11396
11397 @item -mfpr-64
11398 @opindex mfpr-64
11399
11400 Use all 64 floating point registers
11401
11402 @item -mhard-float
11403 @opindex mhard-float
11404
11405 Use hardware instructions for floating point operations.
11406
11407 @item -msoft-float
11408 @opindex msoft-float
11409
11410 Use library routines for floating point operations.
11411
11412 @item -malloc-cc
11413 @opindex malloc-cc
11414
11415 Dynamically allocate condition code registers.
11416
11417 @item -mfixed-cc
11418 @opindex mfixed-cc
11419
11420 Do not try to dynamically allocate condition code registers, only
11421 use @code{icc0} and @code{fcc0}.
11422
11423 @item -mdword
11424 @opindex mdword
11425
11426 Change ABI to use double word insns.
11427
11428 @item -mno-dword
11429 @opindex mno-dword
11430
11431 Do not use double word instructions.
11432
11433 @item -mdouble
11434 @opindex mdouble
11435
11436 Use floating point double instructions.
11437
11438 @item -mno-double
11439 @opindex mno-double
11440
11441 Do not use floating point double instructions.
11442
11443 @item -mmedia
11444 @opindex mmedia
11445
11446 Use media instructions.
11447
11448 @item -mno-media
11449 @opindex mno-media
11450
11451 Do not use media instructions.
11452
11453 @item -mmuladd
11454 @opindex mmuladd
11455
11456 Use multiply and add/subtract instructions.
11457
11458 @item -mno-muladd
11459 @opindex mno-muladd
11460
11461 Do not use multiply and add/subtract instructions.
11462
11463 @item -mfdpic
11464 @opindex mfdpic
11465
11466 Select the FDPIC ABI, that uses function descriptors to represent
11467 pointers to functions.  Without any PIC/PIE-related options, it
11468 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
11469 assumes GOT entries and small data are within a 12-bit range from the
11470 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
11471 are computed with 32 bits.
11472 With a @samp{bfin-elf} target, this option implies @option{-msim}.
11473
11474 @item -minline-plt
11475 @opindex minline-plt
11476
11477 Enable inlining of PLT entries in function calls to functions that are
11478 not known to bind locally.  It has no effect without @option{-mfdpic}.
11479 It's enabled by default if optimizing for speed and compiling for
11480 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
11481 optimization option such as @option{-O3} or above is present in the
11482 command line.
11483
11484 @item -mTLS
11485 @opindex mTLS
11486
11487 Assume a large TLS segment when generating thread-local code.
11488
11489 @item -mtls
11490 @opindex mtls
11491
11492 Do not assume a large TLS segment when generating thread-local code.
11493
11494 @item -mgprel-ro
11495 @opindex mgprel-ro
11496
11497 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
11498 that is known to be in read-only sections.  It's enabled by default,
11499 except for @option{-fpic} or @option{-fpie}: even though it may help
11500 make the global offset table smaller, it trades 1 instruction for 4.
11501 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
11502 one of which may be shared by multiple symbols, and it avoids the need
11503 for a GOT entry for the referenced symbol, so it's more likely to be a
11504 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
11505
11506 @item -multilib-library-pic
11507 @opindex multilib-library-pic
11508
11509 Link with the (library, not FD) pic libraries.  It's implied by
11510 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
11511 @option{-fpic} without @option{-mfdpic}.  You should never have to use
11512 it explicitly.
11513
11514 @item -mlinked-fp
11515 @opindex mlinked-fp
11516
11517 Follow the EABI requirement of always creating a frame pointer whenever
11518 a stack frame is allocated.  This option is enabled by default and can
11519 be disabled with @option{-mno-linked-fp}.
11520
11521 @item -mlong-calls
11522 @opindex mlong-calls
11523
11524 Use indirect addressing to call functions outside the current
11525 compilation unit.  This allows the functions to be placed anywhere
11526 within the 32-bit address space.
11527
11528 @item -malign-labels
11529 @opindex malign-labels
11530
11531 Try to align labels to an 8-byte boundary by inserting nops into the
11532 previous packet.  This option only has an effect when VLIW packing
11533 is enabled.  It doesn't create new packets; it merely adds nops to
11534 existing ones.
11535
11536 @item -mlibrary-pic
11537 @opindex mlibrary-pic
11538
11539 Generate position-independent EABI code.
11540
11541 @item -macc-4
11542 @opindex macc-4
11543
11544 Use only the first four media accumulator registers.
11545
11546 @item -macc-8
11547 @opindex macc-8
11548
11549 Use all eight media accumulator registers.
11550
11551 @item -mpack
11552 @opindex mpack
11553
11554 Pack VLIW instructions.
11555
11556 @item -mno-pack
11557 @opindex mno-pack
11558
11559 Do not pack VLIW instructions.
11560
11561 @item -mno-eflags
11562 @opindex mno-eflags
11563
11564 Do not mark ABI switches in e_flags.
11565
11566 @item -mcond-move
11567 @opindex mcond-move
11568
11569 Enable the use of conditional-move instructions (default).
11570
11571 This switch is mainly for debugging the compiler and will likely be removed
11572 in a future version.
11573
11574 @item -mno-cond-move
11575 @opindex mno-cond-move
11576
11577 Disable the use of conditional-move instructions.
11578
11579 This switch is mainly for debugging the compiler and will likely be removed
11580 in a future version.
11581
11582 @item -mscc
11583 @opindex mscc
11584
11585 Enable the use of conditional set instructions (default).
11586
11587 This switch is mainly for debugging the compiler and will likely be removed
11588 in a future version.
11589
11590 @item -mno-scc
11591 @opindex mno-scc
11592
11593 Disable the use of conditional set instructions.
11594
11595 This switch is mainly for debugging the compiler and will likely be removed
11596 in a future version.
11597
11598 @item -mcond-exec
11599 @opindex mcond-exec
11600
11601 Enable the use of conditional execution (default).
11602
11603 This switch is mainly for debugging the compiler and will likely be removed
11604 in a future version.
11605
11606 @item -mno-cond-exec
11607 @opindex mno-cond-exec
11608
11609 Disable the use of conditional execution.
11610
11611 This switch is mainly for debugging the compiler and will likely be removed
11612 in a future version.
11613
11614 @item -mvliw-branch
11615 @opindex mvliw-branch
11616
11617 Run a pass to pack branches into VLIW instructions (default).
11618
11619 This switch is mainly for debugging the compiler and will likely be removed
11620 in a future version.
11621
11622 @item -mno-vliw-branch
11623 @opindex mno-vliw-branch
11624
11625 Do not run a pass to pack branches into VLIW instructions.
11626
11627 This switch is mainly for debugging the compiler and will likely be removed
11628 in a future version.
11629
11630 @item -mmulti-cond-exec
11631 @opindex mmulti-cond-exec
11632
11633 Enable optimization of @code{&&} and @code{||} in conditional execution
11634 (default).
11635
11636 This switch is mainly for debugging the compiler and will likely be removed
11637 in a future version.
11638
11639 @item -mno-multi-cond-exec
11640 @opindex mno-multi-cond-exec
11641
11642 Disable optimization of @code{&&} and @code{||} in conditional execution.
11643
11644 This switch is mainly for debugging the compiler and will likely be removed
11645 in a future version.
11646
11647 @item -mnested-cond-exec
11648 @opindex mnested-cond-exec
11649
11650 Enable nested conditional execution optimizations (default).
11651
11652 This switch is mainly for debugging the compiler and will likely be removed
11653 in a future version.
11654
11655 @item -mno-nested-cond-exec
11656 @opindex mno-nested-cond-exec
11657
11658 Disable nested conditional execution optimizations.
11659
11660 This switch is mainly for debugging the compiler and will likely be removed
11661 in a future version.
11662
11663 @item -moptimize-membar
11664 @opindex moptimize-membar
11665
11666 This switch removes redundant @code{membar} instructions from the
11667 compiler generated code.  It is enabled by default.
11668
11669 @item -mno-optimize-membar
11670 @opindex mno-optimize-membar
11671
11672 This switch disables the automatic removal of redundant @code{membar}
11673 instructions from the generated code.
11674
11675 @item -mtomcat-stats
11676 @opindex mtomcat-stats
11677
11678 Cause gas to print out tomcat statistics.
11679
11680 @item -mcpu=@var{cpu}
11681 @opindex mcpu
11682
11683 Select the processor type for which to generate code.  Possible values are
11684 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
11685 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
11686
11687 @end table
11688
11689 @node GNU/Linux Options
11690 @subsection GNU/Linux Options
11691
11692 These @samp{-m} options are defined for GNU/Linux targets:
11693
11694 @table @gcctabopt
11695 @item -mglibc
11696 @opindex mglibc
11697 Use the GNU C library.  This is the default except
11698 on @samp{*-*-linux-*uclibc*} and @samp{*-*-linux-*android*} targets.
11699
11700 @item -muclibc
11701 @opindex muclibc
11702 Use uClibc C library.  This is the default on
11703 @samp{*-*-linux-*uclibc*} targets.
11704
11705 @item -mbionic
11706 @opindex mbionic
11707 Use Bionic C library.  This is the default on
11708 @samp{*-*-linux-*android*} targets.
11709
11710 @item -mandroid
11711 @opindex mandroid
11712 Compile code compatible with Android platform.  This is the default on
11713 @samp{*-*-linux-*android*} targets.
11714
11715 When compiling, this option enables @option{-mbionic}, @option{-fPIC},
11716 @option{-fno-exceptions} and @option{-fno-rtti} by default.  When linking,
11717 this option makes the GCC driver pass Android-specific options to the linker.
11718 Finally, this option causes the preprocessor macro @code{__ANDROID__}
11719 to be defined.
11720
11721 @item -tno-android-cc
11722 @opindex tno-android-cc
11723 Disable compilation effects of @option{-mandroid}, i.e., do not enable
11724 @option{-mbionic}, @option{-fPIC}, @option{-fno-exceptions} and
11725 @option{-fno-rtti} by default.
11726
11727 @item -tno-android-ld
11728 @opindex tno-android-ld
11729 Disable linking effects of @option{-mandroid}, i.e., pass standard Linux
11730 linking options to the linker.
11731
11732 @end table
11733
11734 @node H8/300 Options
11735 @subsection H8/300 Options
11736
11737 These @samp{-m} options are defined for the H8/300 implementations:
11738
11739 @table @gcctabopt
11740 @item -mrelax
11741 @opindex mrelax
11742 Shorten some address references at link time, when possible; uses the
11743 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
11744 ld, Using ld}, for a fuller description.
11745
11746 @item -mh
11747 @opindex mh
11748 Generate code for the H8/300H@.
11749
11750 @item -ms
11751 @opindex ms
11752 Generate code for the H8S@.
11753
11754 @item -mn
11755 @opindex mn
11756 Generate code for the H8S and H8/300H in the normal mode.  This switch
11757 must be used either with @option{-mh} or @option{-ms}.
11758
11759 @item -ms2600
11760 @opindex ms2600
11761 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
11762
11763 @item -mint32
11764 @opindex mint32
11765 Make @code{int} data 32 bits by default.
11766
11767 @item -malign-300
11768 @opindex malign-300
11769 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
11770 The default for the H8/300H and H8S is to align longs and floats on 4
11771 byte boundaries.
11772 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
11773 This option has no effect on the H8/300.
11774 @end table
11775
11776 @node HPPA Options
11777 @subsection HPPA Options
11778 @cindex HPPA Options
11779
11780 These @samp{-m} options are defined for the HPPA family of computers:
11781
11782 @table @gcctabopt
11783 @item -march=@var{architecture-type}
11784 @opindex march
11785 Generate code for the specified architecture.  The choices for
11786 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
11787 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
11788 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
11789 architecture option for your machine.  Code compiled for lower numbered
11790 architectures will run on higher numbered architectures, but not the
11791 other way around.
11792
11793 @item -mpa-risc-1-0
11794 @itemx -mpa-risc-1-1
11795 @itemx -mpa-risc-2-0
11796 @opindex mpa-risc-1-0
11797 @opindex mpa-risc-1-1
11798 @opindex mpa-risc-2-0
11799 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
11800
11801 @item -mbig-switch
11802 @opindex mbig-switch
11803 Generate code suitable for big switch tables.  Use this option only if
11804 the assembler/linker complain about out of range branches within a switch
11805 table.
11806
11807 @item -mjump-in-delay
11808 @opindex mjump-in-delay
11809 Fill delay slots of function calls with unconditional jump instructions
11810 by modifying the return pointer for the function call to be the target
11811 of the conditional jump.
11812
11813 @item -mdisable-fpregs
11814 @opindex mdisable-fpregs
11815 Prevent floating point registers from being used in any manner.  This is
11816 necessary for compiling kernels which perform lazy context switching of
11817 floating point registers.  If you use this option and attempt to perform
11818 floating point operations, the compiler will abort.
11819
11820 @item -mdisable-indexing
11821 @opindex mdisable-indexing
11822 Prevent the compiler from using indexing address modes.  This avoids some
11823 rather obscure problems when compiling MIG generated code under MACH@.
11824
11825 @item -mno-space-regs
11826 @opindex mno-space-regs
11827 Generate code that assumes the target has no space registers.  This allows
11828 GCC to generate faster indirect calls and use unscaled index address modes.
11829
11830 Such code is suitable for level 0 PA systems and kernels.
11831
11832 @item -mfast-indirect-calls
11833 @opindex mfast-indirect-calls
11834 Generate code that assumes calls never cross space boundaries.  This
11835 allows GCC to emit code which performs faster indirect calls.
11836
11837 This option will not work in the presence of shared libraries or nested
11838 functions.
11839
11840 @item -mfixed-range=@var{register-range}
11841 @opindex mfixed-range
11842 Generate code treating the given register range as fixed registers.
11843 A fixed register is one that the register allocator can not use.  This is
11844 useful when compiling kernel code.  A register range is specified as
11845 two registers separated by a dash.  Multiple register ranges can be
11846 specified separated by a comma.
11847
11848 @item -mlong-load-store
11849 @opindex mlong-load-store
11850 Generate 3-instruction load and store sequences as sometimes required by
11851 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
11852 the HP compilers.
11853
11854 @item -mportable-runtime
11855 @opindex mportable-runtime
11856 Use the portable calling conventions proposed by HP for ELF systems.
11857
11858 @item -mgas
11859 @opindex mgas
11860 Enable the use of assembler directives only GAS understands.
11861
11862 @item -mschedule=@var{cpu-type}
11863 @opindex mschedule
11864 Schedule code according to the constraints for the machine type
11865 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
11866 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
11867 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
11868 proper scheduling option for your machine.  The default scheduling is
11869 @samp{8000}.
11870
11871 @item -mlinker-opt
11872 @opindex mlinker-opt
11873 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
11874 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
11875 linkers in which they give bogus error messages when linking some programs.
11876
11877 @item -msoft-float
11878 @opindex msoft-float
11879 Generate output containing library calls for floating point.
11880 @strong{Warning:} the requisite libraries are not available for all HPPA
11881 targets.  Normally the facilities of the machine's usual C compiler are
11882 used, but this cannot be done directly in cross-compilation.  You must make
11883 your own arrangements to provide suitable library functions for
11884 cross-compilation.
11885
11886 @option{-msoft-float} changes the calling convention in the output file;
11887 therefore, it is only useful if you compile @emph{all} of a program with
11888 this option.  In particular, you need to compile @file{libgcc.a}, the
11889 library that comes with GCC, with @option{-msoft-float} in order for
11890 this to work.
11891
11892 @item -msio
11893 @opindex msio
11894 Generate the predefine, @code{_SIO}, for server IO@.  The default is
11895 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
11896 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
11897 options are available under HP-UX and HI-UX@.
11898
11899 @item -mgnu-ld
11900 @opindex mgnu-ld
11901 Use GNU ld specific options.  This passes @option{-shared} to ld when
11902 building a shared library.  It is the default when GCC is configured,
11903 explicitly or implicitly, with the GNU linker.  This option does not
11904 have any affect on which ld is called, it only changes what parameters
11905 are passed to that ld.  The ld that is called is determined by the
11906 @option{--with-ld} configure option, GCC's program search path, and
11907 finally by the user's @env{PATH}.  The linker used by GCC can be printed
11908 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
11909 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11910
11911 @item -mhp-ld
11912 @opindex mhp-ld
11913 Use HP ld specific options.  This passes @option{-b} to ld when building
11914 a shared library and passes @option{+Accept TypeMismatch} to ld on all
11915 links.  It is the default when GCC is configured, explicitly or
11916 implicitly, with the HP linker.  This option does not have any affect on
11917 which ld is called, it only changes what parameters are passed to that
11918 ld.  The ld that is called is determined by the @option{--with-ld}
11919 configure option, GCC's program search path, and finally by the user's
11920 @env{PATH}.  The linker used by GCC can be printed using @samp{which
11921 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
11922 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11923
11924 @item -mlong-calls
11925 @opindex mno-long-calls
11926 Generate code that uses long call sequences.  This ensures that a call
11927 is always able to reach linker generated stubs.  The default is to generate
11928 long calls only when the distance from the call site to the beginning
11929 of the function or translation unit, as the case may be, exceeds a
11930 predefined limit set by the branch type being used.  The limits for
11931 normal calls are 7,600,000 and 240,000 bytes, respectively for the
11932 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
11933 240,000 bytes.
11934
11935 Distances are measured from the beginning of functions when using the
11936 @option{-ffunction-sections} option, or when using the @option{-mgas}
11937 and @option{-mno-portable-runtime} options together under HP-UX with
11938 the SOM linker.
11939
11940 It is normally not desirable to use this option as it will degrade
11941 performance.  However, it may be useful in large applications,
11942 particularly when partial linking is used to build the application.
11943
11944 The types of long calls used depends on the capabilities of the
11945 assembler and linker, and the type of code being generated.  The
11946 impact on systems that support long absolute calls, and long pic
11947 symbol-difference or pc-relative calls should be relatively small.
11948 However, an indirect call is used on 32-bit ELF systems in pic code
11949 and it is quite long.
11950
11951 @item -munix=@var{unix-std}
11952 @opindex march
11953 Generate compiler predefines and select a startfile for the specified
11954 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
11955 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
11956 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
11957 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
11958 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
11959 and later.
11960
11961 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
11962 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
11963 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
11964 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
11965 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
11966 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
11967
11968 It is @emph{important} to note that this option changes the interfaces
11969 for various library routines.  It also affects the operational behavior
11970 of the C library.  Thus, @emph{extreme} care is needed in using this
11971 option.
11972
11973 Library code that is intended to operate with more than one UNIX
11974 standard must test, set and restore the variable @var{__xpg4_extended_mask}
11975 as appropriate.  Most GNU software doesn't provide this capability.
11976
11977 @item -nolibdld
11978 @opindex nolibdld
11979 Suppress the generation of link options to search libdld.sl when the
11980 @option{-static} option is specified on HP-UX 10 and later.
11981
11982 @item -static
11983 @opindex static
11984 The HP-UX implementation of setlocale in libc has a dependency on
11985 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
11986 when the @option{-static} option is specified, special link options
11987 are needed to resolve this dependency.
11988
11989 On HP-UX 10 and later, the GCC driver adds the necessary options to
11990 link with libdld.sl when the @option{-static} option is specified.
11991 This causes the resulting binary to be dynamic.  On the 64-bit port,
11992 the linkers generate dynamic binaries by default in any case.  The
11993 @option{-nolibdld} option can be used to prevent the GCC driver from
11994 adding these link options.
11995
11996 @item -threads
11997 @opindex threads
11998 Add support for multithreading with the @dfn{dce thread} library
11999 under HP-UX@.  This option sets flags for both the preprocessor and
12000 linker.
12001 @end table
12002
12003 @node i386 and x86-64 Options
12004 @subsection Intel 386 and AMD x86-64 Options
12005 @cindex i386 Options
12006 @cindex x86-64 Options
12007 @cindex Intel 386 Options
12008 @cindex AMD x86-64 Options
12009
12010 These @samp{-m} options are defined for the i386 and x86-64 family of
12011 computers:
12012
12013 @table @gcctabopt
12014 @item -mtune=@var{cpu-type}
12015 @opindex mtune
12016 Tune to @var{cpu-type} everything applicable about the generated code, except
12017 for the ABI and the set of available instructions.  The choices for
12018 @var{cpu-type} are:
12019 @table @emph
12020 @item generic
12021 Produce code optimized for the most common IA32/@/AMD64/@/EM64T processors.
12022 If you know the CPU on which your code will run, then you should use
12023 the corresponding @option{-mtune} option instead of
12024 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
12025 of your application will have, then you should use this option.
12026
12027 As new processors are deployed in the marketplace, the behavior of this
12028 option will change.  Therefore, if you upgrade to a newer version of
12029 GCC, the code generated option will change to reflect the processors
12030 that were most common when that version of GCC was released.
12031
12032 There is no @option{-march=generic} option because @option{-march}
12033 indicates the instruction set the compiler can use, and there is no
12034 generic instruction set applicable to all processors.  In contrast,
12035 @option{-mtune} indicates the processor (or, in this case, collection of
12036 processors) for which the code is optimized.
12037 @item native
12038 This selects the CPU to tune for at compilation time by determining
12039 the processor type of the compiling machine.  Using @option{-mtune=native}
12040 will produce code optimized for the local machine under the constraints
12041 of the selected instruction set.  Using @option{-march=native} will
12042 enable all instruction subsets supported by the local machine (hence
12043 the result might not run on different machines).
12044 @item i386
12045 Original Intel's i386 CPU@.
12046 @item i486
12047 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
12048 @item i586, pentium
12049 Intel Pentium CPU with no MMX support.
12050 @item pentium-mmx
12051 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
12052 @item pentiumpro
12053 Intel PentiumPro CPU@.
12054 @item i686
12055 Same as @code{generic}, but when used as @code{march} option, PentiumPro
12056 instruction set will be used, so the code will run on all i686 family chips.
12057 @item pentium2
12058 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
12059 @item pentium3, pentium3m
12060 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
12061 support.
12062 @item pentium-m
12063 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
12064 support.  Used by Centrino notebooks.
12065 @item pentium4, pentium4m
12066 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
12067 @item prescott
12068 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
12069 set support.
12070 @item nocona
12071 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
12072 SSE2 and SSE3 instruction set support.
12073 @item core2
12074 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12075 instruction set support.
12076 @item corei7
12077 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
12078 and SSE4.2 instruction set support.
12079 @item corei7-avx
12080 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
12081 SSE4.1, SSE4.2, AVX, AES and PCLMUL instruction set support.
12082 @item atom
12083 Intel Atom CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12084 instruction set support.
12085 @item k6
12086 AMD K6 CPU with MMX instruction set support.
12087 @item k6-2, k6-3
12088 Improved versions of AMD K6 CPU with MMX and 3DNow!@: instruction set support.
12089 @item athlon, athlon-tbird
12090 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3DNow!@: and SSE prefetch instructions
12091 support.
12092 @item athlon-4, athlon-xp, athlon-mp
12093 Improved AMD Athlon CPU with MMX, 3DNow!, enhanced 3DNow!@: and full SSE
12094 instruction set support.
12095 @item k8, opteron, athlon64, athlon-fx
12096 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
12097 MMX, SSE, SSE2, 3DNow!, enhanced 3DNow!@: and 64-bit instruction set extensions.)
12098 @item k8-sse3, opteron-sse3, athlon64-sse3
12099 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
12100 @item amdfam10, barcelona
12101 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
12102 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3DNow!, enhanced 3DNow!, ABM and 64-bit
12103 instruction set extensions.)
12104 @item winchip-c6
12105 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
12106 set support.
12107 @item winchip2
12108 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3DNow!@:
12109 instruction set support.
12110 @item c3
12111 Via C3 CPU with MMX and 3DNow!@: instruction set support.  (No scheduling is
12112 implemented for this chip.)
12113 @item c3-2
12114 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
12115 implemented for this chip.)
12116 @item geode
12117 Embedded AMD CPU with MMX and 3DNow!@: instruction set support.
12118 @end table
12119
12120 While picking a specific @var{cpu-type} will schedule things appropriately
12121 for that particular chip, the compiler will not generate any code that
12122 does not run on the i386 without the @option{-march=@var{cpu-type}} option
12123 being used.
12124
12125 @item -march=@var{cpu-type}
12126 @opindex march
12127 Generate instructions for the machine type @var{cpu-type}.  The choices
12128 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
12129 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
12130
12131 @item -mcpu=@var{cpu-type}
12132 @opindex mcpu
12133 A deprecated synonym for @option{-mtune}.
12134
12135 @item -mfpmath=@var{unit}
12136 @opindex mfpmath
12137 Generate floating point arithmetics for selected unit @var{unit}.  The choices
12138 for @var{unit} are:
12139
12140 @table @samp
12141 @item 387
12142 Use the standard 387 floating point coprocessor present majority of chips and
12143 emulated otherwise.  Code compiled with this option will run almost everywhere.
12144 The temporary results are computed in 80bit precision instead of precision
12145 specified by the type resulting in slightly different results compared to most
12146 of other chips.  See @option{-ffloat-store} for more detailed description.
12147
12148 This is the default choice for i386 compiler.
12149
12150 @item sse
12151 Use scalar floating point instructions present in the SSE instruction set.
12152 This instruction set is supported by Pentium3 and newer chips, in the AMD line
12153 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
12154 instruction set supports only single precision arithmetics, thus the double and
12155 extended precision arithmetics is still done using 387.  Later version, present
12156 only in Pentium4 and the future AMD x86-64 chips supports double precision
12157 arithmetics too.
12158
12159 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
12160 or @option{-msse2} switches to enable SSE extensions and make this option
12161 effective.  For the x86-64 compiler, these extensions are enabled by default.
12162
12163 The resulting code should be considerably faster in the majority of cases and avoid
12164 the numerical instability problems of 387 code, but may break some existing
12165 code that expects temporaries to be 80bit.
12166
12167 This is the default choice for the x86-64 compiler.
12168
12169 @item sse,387
12170 @itemx sse+387
12171 @itemx both
12172 Attempt to utilize both instruction sets at once.  This effectively double the
12173 amount of available registers and on chips with separate execution units for
12174 387 and SSE the execution resources too.  Use this option with care, as it is
12175 still experimental, because the GCC register allocator does not model separate
12176 functional units well resulting in instable performance.
12177 @end table
12178
12179 @item -masm=@var{dialect}
12180 @opindex masm=@var{dialect}
12181 Output asm instructions using selected @var{dialect}.  Supported
12182 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
12183 not support @samp{intel}.
12184
12185 @item -mieee-fp
12186 @itemx -mno-ieee-fp
12187 @opindex mieee-fp
12188 @opindex mno-ieee-fp
12189 Control whether or not the compiler uses IEEE floating point
12190 comparisons.  These handle correctly the case where the result of a
12191 comparison is unordered.
12192
12193 @item -msoft-float
12194 @opindex msoft-float
12195 Generate output containing library calls for floating point.
12196 @strong{Warning:} the requisite libraries are not part of GCC@.
12197 Normally the facilities of the machine's usual C compiler are used, but
12198 this can't be done directly in cross-compilation.  You must make your
12199 own arrangements to provide suitable library functions for
12200 cross-compilation.
12201
12202 On machines where a function returns floating point results in the 80387
12203 register stack, some floating point opcodes may be emitted even if
12204 @option{-msoft-float} is used.
12205
12206 @item -mno-fp-ret-in-387
12207 @opindex mno-fp-ret-in-387
12208 Do not use the FPU registers for return values of functions.
12209
12210 The usual calling convention has functions return values of types
12211 @code{float} and @code{double} in an FPU register, even if there
12212 is no FPU@.  The idea is that the operating system should emulate
12213 an FPU@.
12214
12215 The option @option{-mno-fp-ret-in-387} causes such values to be returned
12216 in ordinary CPU registers instead.
12217
12218 @item -mno-fancy-math-387
12219 @opindex mno-fancy-math-387
12220 Some 387 emulators do not support the @code{sin}, @code{cos} and
12221 @code{sqrt} instructions for the 387.  Specify this option to avoid
12222 generating those instructions.  This option is the default on FreeBSD,
12223 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
12224 indicates that the target CPU will always have an FPU and so the
12225 instruction will not need emulation.  As of revision 2.6.1, these
12226 instructions are not generated unless you also use the
12227 @option{-funsafe-math-optimizations} switch.
12228
12229 @item -malign-double
12230 @itemx -mno-align-double
12231 @opindex malign-double
12232 @opindex mno-align-double
12233 Control whether GCC aligns @code{double}, @code{long double}, and
12234 @code{long long} variables on a two word boundary or a one word
12235 boundary.  Aligning @code{double} variables on a two word boundary will
12236 produce code that runs somewhat faster on a @samp{Pentium} at the
12237 expense of more memory.
12238
12239 On x86-64, @option{-malign-double} is enabled by default.
12240
12241 @strong{Warning:} if you use the @option{-malign-double} switch,
12242 structures containing the above types will be aligned differently than
12243 the published application binary interface specifications for the 386
12244 and will not be binary compatible with structures in code compiled
12245 without that switch.
12246
12247 @item -m96bit-long-double
12248 @itemx -m128bit-long-double
12249 @opindex m96bit-long-double
12250 @opindex m128bit-long-double
12251 These switches control the size of @code{long double} type.  The i386
12252 application binary interface specifies the size to be 96 bits,
12253 so @option{-m96bit-long-double} is the default in 32 bit mode.
12254
12255 Modern architectures (Pentium and newer) would prefer @code{long double}
12256 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
12257 conforming to the ABI, this would not be possible.  So specifying a
12258 @option{-m128bit-long-double} will align @code{long double}
12259 to a 16 byte boundary by padding the @code{long double} with an additional
12260 32 bit zero.
12261
12262 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
12263 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
12264
12265 Notice that neither of these options enable any extra precision over the x87
12266 standard of 80 bits for a @code{long double}.
12267
12268 @strong{Warning:} if you override the default value for your target ABI, the
12269 structures and arrays containing @code{long double} variables will change
12270 their size as well as function calling convention for function taking
12271 @code{long double} will be modified.  Hence they will not be binary
12272 compatible with arrays or structures in code compiled without that switch.
12273
12274 @item -mlarge-data-threshold=@var{number}
12275 @opindex mlarge-data-threshold=@var{number}
12276 When @option{-mcmodel=medium} is specified, the data greater than
12277 @var{threshold} are placed in large data section.  This value must be the
12278 same across all object linked into the binary and defaults to 65535.
12279
12280 @item -mrtd
12281 @opindex mrtd
12282 Use a different function-calling convention, in which functions that
12283 take a fixed number of arguments return with the @code{ret} @var{num}
12284 instruction, which pops their arguments while returning.  This saves one
12285 instruction in the caller since there is no need to pop the arguments
12286 there.
12287
12288 You can specify that an individual function is called with this calling
12289 sequence with the function attribute @samp{stdcall}.  You can also
12290 override the @option{-mrtd} option by using the function attribute
12291 @samp{cdecl}.  @xref{Function Attributes}.
12292
12293 @strong{Warning:} this calling convention is incompatible with the one
12294 normally used on Unix, so you cannot use it if you need to call
12295 libraries compiled with the Unix compiler.
12296
12297 Also, you must provide function prototypes for all functions that
12298 take variable numbers of arguments (including @code{printf});
12299 otherwise incorrect code will be generated for calls to those
12300 functions.
12301
12302 In addition, seriously incorrect code will result if you call a
12303 function with too many arguments.  (Normally, extra arguments are
12304 harmlessly ignored.)
12305
12306 @item -mregparm=@var{num}
12307 @opindex mregparm
12308 Control how many registers are used to pass integer arguments.  By
12309 default, no registers are used to pass arguments, and at most 3
12310 registers can be used.  You can control this behavior for a specific
12311 function by using the function attribute @samp{regparm}.
12312 @xref{Function Attributes}.
12313
12314 @strong{Warning:} if you use this switch, and
12315 @var{num} is nonzero, then you must build all modules with the same
12316 value, including any libraries.  This includes the system libraries and
12317 startup modules.
12318
12319 @item -msseregparm
12320 @opindex msseregparm
12321 Use SSE register passing conventions for float and double arguments
12322 and return values.  You can control this behavior for a specific
12323 function by using the function attribute @samp{sseregparm}.
12324 @xref{Function Attributes}.
12325
12326 @strong{Warning:} if you use this switch then you must build all
12327 modules with the same value, including any libraries.  This includes
12328 the system libraries and startup modules.
12329
12330 @item -mvect8-ret-in-mem
12331 @opindex mvect8-ret-in-mem
12332 Return 8-byte vectors in memory instead of MMX registers.  This is the
12333 default on Solaris@tie{}8 and 9 and VxWorks to match the ABI of the Sun
12334 Studio compilers until version 12.  Later compiler versions (starting
12335 with Studio 12 Update@tie{}1) follow the ABI used by other x86 targets, which
12336 is the default on Solaris@tie{}10 and later.  @emph{Only} use this option if
12337 you need to remain compatible with existing code produced by those
12338 previous compiler versions or older versions of GCC.
12339
12340 @item -mpc32
12341 @itemx -mpc64
12342 @itemx -mpc80
12343 @opindex mpc32
12344 @opindex mpc64
12345 @opindex mpc80
12346
12347 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
12348 is specified, the significands of results of floating-point operations are
12349 rounded to 24 bits (single precision); @option{-mpc64} rounds the
12350 significands of results of floating-point operations to 53 bits (double
12351 precision) and @option{-mpc80} rounds the significands of results of
12352 floating-point operations to 64 bits (extended double precision), which is
12353 the default.  When this option is used, floating-point operations in higher
12354 precisions are not available to the programmer without setting the FPU
12355 control word explicitly.
12356
12357 Setting the rounding of floating-point operations to less than the default
12358 80 bits can speed some programs by 2% or more.  Note that some mathematical
12359 libraries assume that extended precision (80 bit) floating-point operations
12360 are enabled by default; routines in such libraries could suffer significant
12361 loss of accuracy, typically through so-called "catastrophic cancellation",
12362 when this option is used to set the precision to less than extended precision.
12363
12364 @item -mstackrealign
12365 @opindex mstackrealign
12366 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
12367 option will generate an alternate prologue and epilogue that realigns the
12368 runtime stack if necessary.  This supports mixing legacy codes that keep
12369 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
12370 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
12371 applicable to individual functions.
12372
12373 @item -mpreferred-stack-boundary=@var{num}
12374 @opindex mpreferred-stack-boundary
12375 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
12376 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
12377 the default is 4 (16 bytes or 128 bits).
12378
12379 @item -mincoming-stack-boundary=@var{num}
12380 @opindex mincoming-stack-boundary
12381 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
12382 boundary.  If @option{-mincoming-stack-boundary} is not specified,
12383 the one specified by @option{-mpreferred-stack-boundary} will be used.
12384
12385 On Pentium and PentiumPro, @code{double} and @code{long double} values
12386 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
12387 suffer significant run time performance penalties.  On Pentium III, the
12388 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
12389 properly if it is not 16 byte aligned.
12390
12391 To ensure proper alignment of this values on the stack, the stack boundary
12392 must be as aligned as that required by any value stored on the stack.
12393 Further, every function must be generated such that it keeps the stack
12394 aligned.  Thus calling a function compiled with a higher preferred
12395 stack boundary from a function compiled with a lower preferred stack
12396 boundary will most likely misalign the stack.  It is recommended that
12397 libraries that use callbacks always use the default setting.
12398
12399 This extra alignment does consume extra stack space, and generally
12400 increases code size.  Code that is sensitive to stack space usage, such
12401 as embedded systems and operating system kernels, may want to reduce the
12402 preferred alignment to @option{-mpreferred-stack-boundary=2}.
12403
12404 @item -mmmx
12405 @itemx -mno-mmx
12406 @itemx -msse
12407 @itemx -mno-sse
12408 @itemx -msse2
12409 @itemx -mno-sse2
12410 @itemx -msse3
12411 @itemx -mno-sse3
12412 @itemx -mssse3
12413 @itemx -mno-ssse3
12414 @itemx -msse4.1
12415 @need 800
12416 @itemx -mno-sse4.1
12417 @itemx -msse4.2
12418 @itemx -mno-sse4.2
12419 @itemx -msse4
12420 @itemx -mno-sse4
12421 @itemx -mavx
12422 @itemx -mno-avx
12423 @itemx -maes
12424 @itemx -mno-aes
12425 @itemx -mpclmul
12426 @need 800
12427 @itemx -mno-pclmul
12428 @itemx -mfsgsbase
12429 @itemx -mno-fsgsbase
12430 @itemx -mrdrnd
12431 @itemx -mno-rdrnd
12432 @itemx -mf16c
12433 @itemx -mno-f16c
12434 @itemx -msse4a
12435 @itemx -mno-sse4a
12436 @itemx -mfma4
12437 @need 800
12438 @itemx -mno-fma4
12439 @itemx -mxop
12440 @itemx -mno-xop
12441 @itemx -mlwp
12442 @itemx -mno-lwp
12443 @itemx -m3dnow
12444 @itemx -mno-3dnow
12445 @itemx -mpopcnt
12446 @itemx -mno-popcnt
12447 @itemx -mabm
12448 @itemx -mno-abm
12449 @itemx -mbmi
12450 @itemx -mno-bmi
12451 @itemx -mtbm
12452 @itemx -mno-tbm
12453 @opindex mmmx
12454 @opindex mno-mmx
12455 @opindex msse
12456 @opindex mno-sse
12457 @opindex m3dnow
12458 @opindex mno-3dnow
12459 These switches enable or disable the use of instructions in the MMX,
12460 SSE, SSE2, SSE3, SSSE3, SSE4.1, AVX, AES, PCLMUL, FSGSBASE, RDRND,
12461 F16C, SSE4A, FMA4, XOP, LWP, ABM, BMI, or 3DNow!@: extended instruction sets.
12462 These extensions are also available as built-in functions: see
12463 @ref{X86 Built-in Functions}, for details of the functions enabled and
12464 disabled by these switches.
12465
12466 To have SSE/SSE2 instructions generated automatically from floating-point
12467 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
12468
12469 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
12470 generates new AVX instructions or AVX equivalence for all SSEx instructions
12471 when needed.
12472
12473 These options will enable GCC to use these extended instructions in
12474 generated code, even without @option{-mfpmath=sse}.  Applications which
12475 perform runtime CPU detection must compile separate files for each
12476 supported architecture, using the appropriate flags.  In particular,
12477 the file containing the CPU detection code should be compiled without
12478 these options.
12479
12480 @item -mfused-madd
12481 @itemx -mno-fused-madd
12482 @opindex mfused-madd
12483 @opindex mno-fused-madd
12484 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12485 instructions.  The default is to use these instructions.
12486
12487 @item -mcld
12488 @opindex mcld
12489 This option instructs GCC to emit a @code{cld} instruction in the prologue
12490 of functions that use string instructions.  String instructions depend on
12491 the DF flag to select between autoincrement or autodecrement mode.  While the
12492 ABI specifies the DF flag to be cleared on function entry, some operating
12493 systems violate this specification by not clearing the DF flag in their
12494 exception dispatchers.  The exception handler can be invoked with the DF flag
12495 set which leads to wrong direction mode, when string instructions are used.
12496 This option can be enabled by default on 32-bit x86 targets by configuring
12497 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
12498 instructions can be suppressed with the @option{-mno-cld} compiler option
12499 in this case.
12500
12501 @item -mvzeroupper
12502 @opindex mvzeroupper
12503 This option instructs GCC to emit a @code{vzeroupper} instruction
12504 before a transfer of control flow out of the function to minimize
12505 AVX to SSE transition penalty as well as remove unnecessary zeroupper
12506 intrinsics.
12507
12508 @item -mcx16
12509 @opindex mcx16
12510 This option will enable GCC to use CMPXCHG16B instruction in generated code.
12511 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
12512 data types.  This is useful for high resolution counters that could be updated
12513 by multiple processors (or cores).  This instruction is generated as part of
12514 atomic built-in functions: see @ref{Atomic Builtins} for details.
12515
12516 @item -msahf
12517 @opindex msahf
12518 This option will enable GCC to use SAHF instruction in generated 64-bit code.
12519 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
12520 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
12521 SAHF are load and store instructions, respectively, for certain status flags.
12522 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
12523 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
12524
12525 @item -mmovbe
12526 @opindex mmovbe
12527 This option will enable GCC to use movbe instruction to implement
12528 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
12529
12530 @item -mcrc32
12531 @opindex mcrc32
12532 This option will enable built-in functions, @code{__builtin_ia32_crc32qi},
12533 @code{__builtin_ia32_crc32hi}. @code{__builtin_ia32_crc32si} and
12534 @code{__builtin_ia32_crc32di} to generate the crc32 machine instruction.
12535
12536 @item -mrecip
12537 @opindex mrecip
12538 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
12539 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Raphson step
12540 to increase precision instead of DIVSS and SQRTSS (and their vectorized
12541 variants) for single precision floating point arguments.  These instructions
12542 are generated only when @option{-funsafe-math-optimizations} is enabled
12543 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
12544 Note that while the throughput of the sequence is higher than the throughput
12545 of the non-reciprocal instruction, the precision of the sequence can be
12546 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
12547
12548 Note that GCC implements 1.0f/sqrtf(x) in terms of RSQRTSS (or RSQRTPS)
12549 already with @option{-ffast-math} (or the above option combination), and
12550 doesn't need @option{-mrecip}.
12551
12552 @item -mveclibabi=@var{type}
12553 @opindex mveclibabi
12554 Specifies the ABI type to use for vectorizing intrinsics using an
12555 external library.  Supported types are @code{svml} for the Intel short
12556 vector math library and @code{acml} for the AMD math core library style
12557 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
12558 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
12559 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
12560 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
12561 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
12562 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
12563 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
12564 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
12565 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
12566 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
12567 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
12568 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
12569 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
12570 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
12571 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
12572 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
12573 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
12574 compatible library will have to be specified at link time.
12575
12576 @item -mabi=@var{name}
12577 @opindex mabi
12578 Generate code for the specified calling convention.  Permissible values
12579 are: @samp{sysv} for the ABI used on GNU/Linux and other systems and
12580 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
12581 ABI when targeting Windows.  On all other systems, the default is the
12582 SYSV ABI.  You can control this behavior for a specific function by
12583 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
12584 @xref{Function Attributes}.
12585
12586 @item -mtls-dialect=@var{type}
12587 @opindex mtls-dialect
12588 Generate code to access thread-local storage using the @samp{gnu} or
12589 @samp{gnu2} conventions.  @samp{gnu} is the conservative default;
12590 @samp{gnu2} is more efficient, but it may add compile- and run-time
12591 requirements that cannot be satisfied on all systems.
12592
12593 @item -mpush-args
12594 @itemx -mno-push-args
12595 @opindex mpush-args
12596 @opindex mno-push-args
12597 Use PUSH operations to store outgoing parameters.  This method is shorter
12598 and usually equally fast as method using SUB/MOV operations and is enabled
12599 by default.  In some cases disabling it may improve performance because of
12600 improved scheduling and reduced dependencies.
12601
12602 @item -maccumulate-outgoing-args
12603 @opindex maccumulate-outgoing-args
12604 If enabled, the maximum amount of space required for outgoing arguments will be
12605 computed in the function prologue.  This is faster on most modern CPUs
12606 because of reduced dependencies, improved scheduling and reduced stack usage
12607 when preferred stack boundary is not equal to 2.  The drawback is a notable
12608 increase in code size.  This switch implies @option{-mno-push-args}.
12609
12610 @item -mthreads
12611 @opindex mthreads
12612 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
12613 on thread-safe exception handling must compile and link all code with the
12614 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
12615 @option{-D_MT}; when linking, it links in a special thread helper library
12616 @option{-lmingwthrd} which cleans up per thread exception handling data.
12617
12618 @item -mno-align-stringops
12619 @opindex mno-align-stringops
12620 Do not align destination of inlined string operations.  This switch reduces
12621 code size and improves performance in case the destination is already aligned,
12622 but GCC doesn't know about it.
12623
12624 @item -minline-all-stringops
12625 @opindex minline-all-stringops
12626 By default GCC inlines string operations only when destination is known to be
12627 aligned at least to 4 byte boundary.  This enables more inlining, increase code
12628 size, but may improve performance of code that depends on fast memcpy, strlen
12629 and memset for short lengths.
12630
12631 @item -minline-stringops-dynamically
12632 @opindex minline-stringops-dynamically
12633 For string operation of unknown size, inline runtime checks so for small
12634 blocks inline code is used, while for large blocks library call is used.
12635
12636 @item -mstringop-strategy=@var{alg}
12637 @opindex mstringop-strategy=@var{alg}
12638 Overwrite internal decision heuristic about particular algorithm to inline
12639 string operation with.  The allowed values are @code{rep_byte},
12640 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
12641 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
12642 expanding inline loop, @code{libcall} for always expanding library call.
12643
12644 @item -momit-leaf-frame-pointer
12645 @opindex momit-leaf-frame-pointer
12646 Don't keep the frame pointer in a register for leaf functions.  This
12647 avoids the instructions to save, set up and restore frame pointers and
12648 makes an extra register available in leaf functions.  The option
12649 @option{-fomit-frame-pointer} removes the frame pointer for all functions
12650 which might make debugging harder.
12651
12652 @item -mtls-direct-seg-refs
12653 @itemx -mno-tls-direct-seg-refs
12654 @opindex mtls-direct-seg-refs
12655 Controls whether TLS variables may be accessed with offsets from the
12656 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
12657 or whether the thread base pointer must be added.  Whether or not this
12658 is legal depends on the operating system, and whether it maps the
12659 segment to cover the entire TLS area.
12660
12661 For systems that use GNU libc, the default is on.
12662
12663 @item -msse2avx
12664 @itemx -mno-sse2avx
12665 @opindex msse2avx
12666 Specify that the assembler should encode SSE instructions with VEX
12667 prefix.  The option @option{-mavx} turns this on by default.
12668
12669 @item -mfentry
12670 @itemx -mno-fentry
12671 @opindex mfentry
12672 If profiling is active @option{-pg} put the profiling
12673 counter call before prologue.
12674 Note: On x86 architectures the attribute @code{ms_hook_prologue}
12675 isn't possible at the moment for @option{-mfentry} and @option{-pg}.
12676
12677 @item -m8bit-idiv
12678 @itemx -mno-8bit-idiv
12679 @opindex 8bit-idiv
12680 On some processors, like Intel Atom, 8bit unsigned integer divide is
12681 much faster than 32bit/64bit integer divide.  This option will generate a
12682 runt-time check.  If both dividend and divisor are within range of 0
12683 to 255, 8bit unsigned integer divide will be used instead of
12684 32bit/64bit integer divide.
12685
12686 @item -mavx256-split-unaligned-load
12687 @item -mavx256-split-unaligned-store
12688 @opindex avx256-split-unaligned-load
12689 @opindex avx256-split-unaligned-store
12690 Split 32-byte AVX unaligned load and store.
12691
12692 @end table
12693
12694 These @samp{-m} switches are supported in addition to the above
12695 on AMD x86-64 processors in 64-bit environments.
12696
12697 @table @gcctabopt
12698 @item -m32
12699 @itemx -m64
12700 @opindex m32
12701 @opindex m64
12702 Generate code for a 32-bit or 64-bit environment.
12703 The 32-bit environment sets int, long and pointer to 32 bits and
12704 generates code that runs on any i386 system.
12705 The 64-bit environment sets int to 32 bits and long and pointer
12706 to 64 bits and generates code for AMD's x86-64 architecture. For
12707 darwin only the -m64 option turns off the @option{-fno-pic} and
12708 @option{-mdynamic-no-pic} options.
12709
12710 @item -mno-red-zone
12711 @opindex mno-red-zone
12712 Do not use a so called red zone for x86-64 code.  The red zone is mandated
12713 by the x86-64 ABI, it is a 128-byte area beyond the location of the
12714 stack pointer that will not be modified by signal or interrupt handlers
12715 and therefore can be used for temporary data without adjusting the stack
12716 pointer.  The flag @option{-mno-red-zone} disables this red zone.
12717
12718 @item -mcmodel=small
12719 @opindex mcmodel=small
12720 Generate code for the small code model: the program and its symbols must
12721 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
12722 Programs can be statically or dynamically linked.  This is the default
12723 code model.
12724
12725 @item -mcmodel=kernel
12726 @opindex mcmodel=kernel
12727 Generate code for the kernel code model.  The kernel runs in the
12728 negative 2 GB of the address space.
12729 This model has to be used for Linux kernel code.
12730
12731 @item -mcmodel=medium
12732 @opindex mcmodel=medium
12733 Generate code for the medium model: The program is linked in the lower 2
12734 GB of the address space.  Small symbols are also placed there.  Symbols
12735 with sizes larger than @option{-mlarge-data-threshold} are put into
12736 large data or bss sections and can be located above 2GB.  Programs can
12737 be statically or dynamically linked.
12738
12739 @item -mcmodel=large
12740 @opindex mcmodel=large
12741 Generate code for the large model: This model makes no assumptions
12742 about addresses and sizes of sections.
12743 @end table
12744
12745 @node i386 and x86-64 Windows Options
12746 @subsection i386 and x86-64 Windows Options
12747 @cindex i386 and x86-64 Windows Options
12748
12749 These additional options are available for Windows targets:
12750
12751 @table @gcctabopt
12752 @item -mconsole
12753 @opindex mconsole
12754 This option is available for Cygwin and MinGW targets.  It
12755 specifies that a console application is to be generated, by
12756 instructing the linker to set the PE header subsystem type
12757 required for console applications.
12758 This is the default behavior for Cygwin and MinGW targets.
12759
12760 @item -mdll
12761 @opindex mdll
12762 This option is available for Cygwin and MinGW targets.  It
12763 specifies that a DLL - a dynamic link library - is to be
12764 generated, enabling the selection of the required runtime
12765 startup object and entry point.
12766
12767 @item -mnop-fun-dllimport
12768 @opindex mnop-fun-dllimport
12769 This option is available for Cygwin and MinGW targets.  It
12770 specifies that the dllimport attribute should be ignored.
12771
12772 @item -mthread
12773 @opindex mthread
12774 This option is available for MinGW targets. It specifies
12775 that MinGW-specific thread support is to be used.
12776
12777 @item -municode
12778 @opindex municode
12779 This option is available for mingw-w64 targets.  It specifies
12780 that the UNICODE macro is getting pre-defined and that the
12781 unicode capable runtime startup code is chosen.
12782
12783 @item -mwin32
12784 @opindex mwin32
12785 This option is available for Cygwin and MinGW targets.  It
12786 specifies that the typical Windows pre-defined macros are to
12787 be set in the pre-processor, but does not influence the choice
12788 of runtime library/startup code.
12789
12790 @item -mwindows
12791 @opindex mwindows
12792 This option is available for Cygwin and MinGW targets.  It
12793 specifies that a GUI application is to be generated by
12794 instructing the linker to set the PE header subsystem type
12795 appropriately.
12796
12797 @item -fno-set-stack-executable
12798 @opindex fno-set-stack-executable
12799 This option is available for MinGW targets. It specifies that
12800 the executable flag for stack used by nested functions isn't
12801 set. This is necessary for binaries running in kernel mode of
12802 Windows, as there the user32 API, which is used to set executable
12803 privileges, isn't available.
12804
12805 @item -mpe-aligned-commons
12806 @opindex mpe-aligned-commons
12807 This option is available for Cygwin and MinGW targets.  It
12808 specifies that the GNU extension to the PE file format that
12809 permits the correct alignment of COMMON variables should be
12810 used when generating code.  It will be enabled by default if
12811 GCC detects that the target assembler found during configuration
12812 supports the feature.
12813 @end table
12814
12815 See also under @ref{i386 and x86-64 Options} for standard options.
12816
12817 @node IA-64 Options
12818 @subsection IA-64 Options
12819 @cindex IA-64 Options
12820
12821 These are the @samp{-m} options defined for the Intel IA-64 architecture.
12822
12823 @table @gcctabopt
12824 @item -mbig-endian
12825 @opindex mbig-endian
12826 Generate code for a big endian target.  This is the default for HP-UX@.
12827
12828 @item -mlittle-endian
12829 @opindex mlittle-endian
12830 Generate code for a little endian target.  This is the default for AIX5
12831 and GNU/Linux.
12832
12833 @item -mgnu-as
12834 @itemx -mno-gnu-as
12835 @opindex mgnu-as
12836 @opindex mno-gnu-as
12837 Generate (or don't) code for the GNU assembler.  This is the default.
12838 @c Also, this is the default if the configure option @option{--with-gnu-as}
12839 @c is used.
12840
12841 @item -mgnu-ld
12842 @itemx -mno-gnu-ld
12843 @opindex mgnu-ld
12844 @opindex mno-gnu-ld
12845 Generate (or don't) code for the GNU linker.  This is the default.
12846 @c Also, this is the default if the configure option @option{--with-gnu-ld}
12847 @c is used.
12848
12849 @item -mno-pic
12850 @opindex mno-pic
12851 Generate code that does not use a global pointer register.  The result
12852 is not position independent code, and violates the IA-64 ABI@.
12853
12854 @item -mvolatile-asm-stop
12855 @itemx -mno-volatile-asm-stop
12856 @opindex mvolatile-asm-stop
12857 @opindex mno-volatile-asm-stop
12858 Generate (or don't) a stop bit immediately before and after volatile asm
12859 statements.
12860
12861 @item -mregister-names
12862 @itemx -mno-register-names
12863 @opindex mregister-names
12864 @opindex mno-register-names
12865 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
12866 the stacked registers.  This may make assembler output more readable.
12867
12868 @item -mno-sdata
12869 @itemx -msdata
12870 @opindex mno-sdata
12871 @opindex msdata
12872 Disable (or enable) optimizations that use the small data section.  This may
12873 be useful for working around optimizer bugs.
12874
12875 @item -mconstant-gp
12876 @opindex mconstant-gp
12877 Generate code that uses a single constant global pointer value.  This is
12878 useful when compiling kernel code.
12879
12880 @item -mauto-pic
12881 @opindex mauto-pic
12882 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
12883 This is useful when compiling firmware code.
12884
12885 @item -minline-float-divide-min-latency
12886 @opindex minline-float-divide-min-latency
12887 Generate code for inline divides of floating point values
12888 using the minimum latency algorithm.
12889
12890 @item -minline-float-divide-max-throughput
12891 @opindex minline-float-divide-max-throughput
12892 Generate code for inline divides of floating point values
12893 using the maximum throughput algorithm.
12894
12895 @item -mno-inline-float-divide
12896 @opindex mno-inline-float-divide
12897 Do not generate inline code for divides of floating point values.
12898
12899 @item -minline-int-divide-min-latency
12900 @opindex minline-int-divide-min-latency
12901 Generate code for inline divides of integer values
12902 using the minimum latency algorithm.
12903
12904 @item -minline-int-divide-max-throughput
12905 @opindex minline-int-divide-max-throughput
12906 Generate code for inline divides of integer values
12907 using the maximum throughput algorithm.
12908
12909 @item -mno-inline-int-divide
12910 @opindex mno-inline-int-divide
12911 Do not generate inline code for divides of integer values.
12912
12913 @item -minline-sqrt-min-latency
12914 @opindex minline-sqrt-min-latency
12915 Generate code for inline square roots
12916 using the minimum latency algorithm.
12917
12918 @item -minline-sqrt-max-throughput
12919 @opindex minline-sqrt-max-throughput
12920 Generate code for inline square roots
12921 using the maximum throughput algorithm.
12922
12923 @item -mno-inline-sqrt
12924 @opindex mno-inline-sqrt
12925 Do not generate inline code for sqrt.
12926
12927 @item -mfused-madd
12928 @itemx -mno-fused-madd
12929 @opindex mfused-madd
12930 @opindex mno-fused-madd
12931 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12932 instructions.  The default is to use these instructions.
12933
12934 @item -mno-dwarf2-asm
12935 @itemx -mdwarf2-asm
12936 @opindex mno-dwarf2-asm
12937 @opindex mdwarf2-asm
12938 Don't (or do) generate assembler code for the DWARF2 line number debugging
12939 info.  This may be useful when not using the GNU assembler.
12940
12941 @item -mearly-stop-bits
12942 @itemx -mno-early-stop-bits
12943 @opindex mearly-stop-bits
12944 @opindex mno-early-stop-bits
12945 Allow stop bits to be placed earlier than immediately preceding the
12946 instruction that triggered the stop bit.  This can improve instruction
12947 scheduling, but does not always do so.
12948
12949 @item -mfixed-range=@var{register-range}
12950 @opindex mfixed-range
12951 Generate code treating the given register range as fixed registers.
12952 A fixed register is one that the register allocator can not use.  This is
12953 useful when compiling kernel code.  A register range is specified as
12954 two registers separated by a dash.  Multiple register ranges can be
12955 specified separated by a comma.
12956
12957 @item -mtls-size=@var{tls-size}
12958 @opindex mtls-size
12959 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
12960 64.
12961
12962 @item -mtune=@var{cpu-type}
12963 @opindex mtune
12964 Tune the instruction scheduling for a particular CPU, Valid values are
12965 itanium, itanium1, merced, itanium2, and mckinley.
12966
12967 @item -milp32
12968 @itemx -mlp64
12969 @opindex milp32
12970 @opindex mlp64
12971 Generate code for a 32-bit or 64-bit environment.
12972 The 32-bit environment sets int, long and pointer to 32 bits.
12973 The 64-bit environment sets int to 32 bits and long and pointer
12974 to 64 bits.  These are HP-UX specific flags.
12975
12976 @item -mno-sched-br-data-spec
12977 @itemx -msched-br-data-spec
12978 @opindex mno-sched-br-data-spec
12979 @opindex msched-br-data-spec
12980 (Dis/En)able data speculative scheduling before reload.
12981 This will result in generation of the ld.a instructions and
12982 the corresponding check instructions (ld.c / chk.a).
12983 The default is 'disable'.
12984
12985 @item -msched-ar-data-spec
12986 @itemx -mno-sched-ar-data-spec
12987 @opindex msched-ar-data-spec
12988 @opindex mno-sched-ar-data-spec
12989 (En/Dis)able data speculative scheduling after reload.
12990 This will result in generation of the ld.a instructions and
12991 the corresponding check instructions (ld.c / chk.a).
12992 The default is 'enable'.
12993
12994 @item -mno-sched-control-spec
12995 @itemx -msched-control-spec
12996 @opindex mno-sched-control-spec
12997 @opindex msched-control-spec
12998 (Dis/En)able control speculative scheduling.  This feature is
12999 available only during region scheduling (i.e.@: before reload).
13000 This will result in generation of the ld.s instructions and
13001 the corresponding check instructions chk.s .
13002 The default is 'disable'.
13003
13004 @item -msched-br-in-data-spec
13005 @itemx -mno-sched-br-in-data-spec
13006 @opindex msched-br-in-data-spec
13007 @opindex mno-sched-br-in-data-spec
13008 (En/Dis)able speculative scheduling of the instructions that
13009 are dependent on the data speculative loads before reload.
13010 This is effective only with @option{-msched-br-data-spec} enabled.
13011 The default is 'enable'.
13012
13013 @item -msched-ar-in-data-spec
13014 @itemx -mno-sched-ar-in-data-spec
13015 @opindex msched-ar-in-data-spec
13016 @opindex mno-sched-ar-in-data-spec
13017 (En/Dis)able speculative scheduling of the instructions that
13018 are dependent on the data speculative loads after reload.
13019 This is effective only with @option{-msched-ar-data-spec} enabled.
13020 The default is 'enable'.
13021
13022 @item -msched-in-control-spec
13023 @itemx -mno-sched-in-control-spec
13024 @opindex msched-in-control-spec
13025 @opindex mno-sched-in-control-spec
13026 (En/Dis)able speculative scheduling of the instructions that
13027 are dependent on the control speculative loads.
13028 This is effective only with @option{-msched-control-spec} enabled.
13029 The default is 'enable'.
13030
13031 @item -mno-sched-prefer-non-data-spec-insns
13032 @itemx -msched-prefer-non-data-spec-insns
13033 @opindex mno-sched-prefer-non-data-spec-insns
13034 @opindex msched-prefer-non-data-spec-insns
13035 If enabled, data speculative instructions will be chosen for schedule
13036 only if there are no other choices at the moment.  This will make
13037 the use of the data speculation much more conservative.
13038 The default is 'disable'.
13039
13040 @item -mno-sched-prefer-non-control-spec-insns
13041 @itemx -msched-prefer-non-control-spec-insns
13042 @opindex mno-sched-prefer-non-control-spec-insns
13043 @opindex msched-prefer-non-control-spec-insns
13044 If enabled, control speculative instructions will be chosen for schedule
13045 only if there are no other choices at the moment.  This will make
13046 the use of the control speculation much more conservative.
13047 The default is 'disable'.
13048
13049 @item -mno-sched-count-spec-in-critical-path
13050 @itemx -msched-count-spec-in-critical-path
13051 @opindex mno-sched-count-spec-in-critical-path
13052 @opindex msched-count-spec-in-critical-path
13053 If enabled, speculative dependencies will be considered during
13054 computation of the instructions priorities.  This will make the use of the
13055 speculation a bit more conservative.
13056 The default is 'disable'.
13057
13058 @item -msched-spec-ldc
13059 @opindex msched-spec-ldc
13060 Use a simple data speculation check.  This option is on by default.
13061
13062 @item -msched-control-spec-ldc
13063 @opindex msched-spec-ldc
13064 Use a simple check for control speculation.  This option is on by default.
13065
13066 @item -msched-stop-bits-after-every-cycle
13067 @opindex msched-stop-bits-after-every-cycle
13068 Place a stop bit after every cycle when scheduling.  This option is on
13069 by default.
13070
13071 @item -msched-fp-mem-deps-zero-cost
13072 @opindex msched-fp-mem-deps-zero-cost
13073 Assume that floating-point stores and loads are not likely to cause a conflict
13074 when placed into the same instruction group.  This option is disabled by
13075 default.
13076
13077 @item -msel-sched-dont-check-control-spec
13078 @opindex msel-sched-dont-check-control-spec
13079 Generate checks for control speculation in selective scheduling.
13080 This flag is disabled by default.
13081
13082 @item -msched-max-memory-insns=@var{max-insns}
13083 @opindex msched-max-memory-insns
13084 Limit on the number of memory insns per instruction group, giving lower
13085 priority to subsequent memory insns attempting to schedule in the same
13086 instruction group. Frequently useful to prevent cache bank conflicts.
13087 The default value is 1.
13088
13089 @item -msched-max-memory-insns-hard-limit
13090 @opindex msched-max-memory-insns-hard-limit
13091 Disallow more than `msched-max-memory-insns' in instruction group.
13092 Otherwise, limit is `soft' meaning that we would prefer non-memory operations
13093 when limit is reached but may still schedule memory operations.
13094
13095 @end table
13096
13097 @node IA-64/VMS Options
13098 @subsection IA-64/VMS Options
13099
13100 These @samp{-m} options are defined for the IA-64/VMS implementations:
13101
13102 @table @gcctabopt
13103 @item -mvms-return-codes
13104 @opindex mvms-return-codes
13105 Return VMS condition codes from main. The default is to return POSIX
13106 style condition (e.g.@ error) codes.
13107
13108 @item -mdebug-main=@var{prefix}
13109 @opindex mdebug-main=@var{prefix}
13110 Flag the first routine whose name starts with @var{prefix} as the main
13111 routine for the debugger.
13112
13113 @item -mmalloc64
13114 @opindex mmalloc64
13115 Default to 64bit memory allocation routines.
13116 @end table
13117
13118 @node LM32 Options
13119 @subsection LM32 Options
13120 @cindex LM32 options
13121
13122 These @option{-m} options are defined for the Lattice Mico32 architecture:
13123
13124 @table @gcctabopt
13125 @item -mbarrel-shift-enabled
13126 @opindex mbarrel-shift-enabled
13127 Enable barrel-shift instructions.
13128
13129 @item -mdivide-enabled
13130 @opindex mdivide-enabled
13131 Enable divide and modulus instructions.
13132
13133 @item -mmultiply-enabled
13134 @opindex multiply-enabled
13135 Enable multiply instructions.
13136
13137 @item -msign-extend-enabled
13138 @opindex msign-extend-enabled
13139 Enable sign extend instructions.
13140
13141 @item -muser-enabled
13142 @opindex muser-enabled
13143 Enable user-defined instructions.
13144
13145 @end table
13146
13147 @node M32C Options
13148 @subsection M32C Options
13149 @cindex M32C options
13150
13151 @table @gcctabopt
13152 @item -mcpu=@var{name}
13153 @opindex mcpu=
13154 Select the CPU for which code is generated.  @var{name} may be one of
13155 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
13156 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
13157 the M32C/80 series.
13158
13159 @item -msim
13160 @opindex msim
13161 Specifies that the program will be run on the simulator.  This causes
13162 an alternate runtime library to be linked in which supports, for
13163 example, file I/O@.  You must not use this option when generating
13164 programs that will run on real hardware; you must provide your own
13165 runtime library for whatever I/O functions are needed.
13166
13167 @item -memregs=@var{number}
13168 @opindex memregs=
13169 Specifies the number of memory-based pseudo-registers GCC will use
13170 during code generation.  These pseudo-registers will be used like real
13171 registers, so there is a tradeoff between GCC's ability to fit the
13172 code into available registers, and the performance penalty of using
13173 memory instead of registers.  Note that all modules in a program must
13174 be compiled with the same value for this option.  Because of that, you
13175 must not use this option with the default runtime libraries gcc
13176 builds.
13177
13178 @end table
13179
13180 @node M32R/D Options
13181 @subsection M32R/D Options
13182 @cindex M32R/D options
13183
13184 These @option{-m} options are defined for Renesas M32R/D architectures:
13185
13186 @table @gcctabopt
13187 @item -m32r2
13188 @opindex m32r2
13189 Generate code for the M32R/2@.
13190
13191 @item -m32rx
13192 @opindex m32rx
13193 Generate code for the M32R/X@.
13194
13195 @item -m32r
13196 @opindex m32r
13197 Generate code for the M32R@.  This is the default.
13198
13199 @item -mmodel=small
13200 @opindex mmodel=small
13201 Assume all objects live in the lower 16MB of memory (so that their addresses
13202 can be loaded with the @code{ld24} instruction), and assume all subroutines
13203 are reachable with the @code{bl} instruction.
13204 This is the default.
13205
13206 The addressability of a particular object can be set with the
13207 @code{model} attribute.
13208
13209 @item -mmodel=medium
13210 @opindex mmodel=medium
13211 Assume objects may be anywhere in the 32-bit address space (the compiler
13212 will generate @code{seth/add3} instructions to load their addresses), and
13213 assume all subroutines are reachable with the @code{bl} instruction.
13214
13215 @item -mmodel=large
13216 @opindex mmodel=large
13217 Assume objects may be anywhere in the 32-bit address space (the compiler
13218 will generate @code{seth/add3} instructions to load their addresses), and
13219 assume subroutines may not be reachable with the @code{bl} instruction
13220 (the compiler will generate the much slower @code{seth/add3/jl}
13221 instruction sequence).
13222
13223 @item -msdata=none
13224 @opindex msdata=none
13225 Disable use of the small data area.  Variables will be put into
13226 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
13227 @code{section} attribute has been specified).
13228 This is the default.
13229
13230 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
13231 Objects may be explicitly put in the small data area with the
13232 @code{section} attribute using one of these sections.
13233
13234 @item -msdata=sdata
13235 @opindex msdata=sdata
13236 Put small global and static data in the small data area, but do not
13237 generate special code to reference them.
13238
13239 @item -msdata=use
13240 @opindex msdata=use
13241 Put small global and static data in the small data area, and generate
13242 special instructions to reference them.
13243
13244 @item -G @var{num}
13245 @opindex G
13246 @cindex smaller data references
13247 Put global and static objects less than or equal to @var{num} bytes
13248 into the small data or bss sections instead of the normal data or bss
13249 sections.  The default value of @var{num} is 8.
13250 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
13251 for this option to have any effect.
13252
13253 All modules should be compiled with the same @option{-G @var{num}} value.
13254 Compiling with different values of @var{num} may or may not work; if it
13255 doesn't the linker will give an error message---incorrect code will not be
13256 generated.
13257
13258 @item -mdebug
13259 @opindex mdebug
13260 Makes the M32R specific code in the compiler display some statistics
13261 that might help in debugging programs.
13262
13263 @item -malign-loops
13264 @opindex malign-loops
13265 Align all loops to a 32-byte boundary.
13266
13267 @item -mno-align-loops
13268 @opindex mno-align-loops
13269 Do not enforce a 32-byte alignment for loops.  This is the default.
13270
13271 @item -missue-rate=@var{number}
13272 @opindex missue-rate=@var{number}
13273 Issue @var{number} instructions per cycle.  @var{number} can only be 1
13274 or 2.
13275
13276 @item -mbranch-cost=@var{number}
13277 @opindex mbranch-cost=@var{number}
13278 @var{number} can only be 1 or 2.  If it is 1 then branches will be
13279 preferred over conditional code, if it is 2, then the opposite will
13280 apply.
13281
13282 @item -mflush-trap=@var{number}
13283 @opindex mflush-trap=@var{number}
13284 Specifies the trap number to use to flush the cache.  The default is
13285 12.  Valid numbers are between 0 and 15 inclusive.
13286
13287 @item -mno-flush-trap
13288 @opindex mno-flush-trap
13289 Specifies that the cache cannot be flushed by using a trap.
13290
13291 @item -mflush-func=@var{name}
13292 @opindex mflush-func=@var{name}
13293 Specifies the name of the operating system function to call to flush
13294 the cache.  The default is @emph{_flush_cache}, but a function call
13295 will only be used if a trap is not available.
13296
13297 @item -mno-flush-func
13298 @opindex mno-flush-func
13299 Indicates that there is no OS function for flushing the cache.
13300
13301 @end table
13302
13303 @node M680x0 Options
13304 @subsection M680x0 Options
13305 @cindex M680x0 options
13306
13307 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
13308 The default settings depend on which architecture was selected when
13309 the compiler was configured; the defaults for the most common choices
13310 are given below.
13311
13312 @table @gcctabopt
13313 @item -march=@var{arch}
13314 @opindex march
13315 Generate code for a specific M680x0 or ColdFire instruction set
13316 architecture.  Permissible values of @var{arch} for M680x0
13317 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
13318 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
13319 architectures are selected according to Freescale's ISA classification
13320 and the permissible values are: @samp{isaa}, @samp{isaaplus},
13321 @samp{isab} and @samp{isac}.
13322
13323 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
13324 code for a ColdFire target.  The @var{arch} in this macro is one of the
13325 @option{-march} arguments given above.
13326
13327 When used together, @option{-march} and @option{-mtune} select code
13328 that runs on a family of similar processors but that is optimized
13329 for a particular microarchitecture.
13330
13331 @item -mcpu=@var{cpu}
13332 @opindex mcpu
13333 Generate code for a specific M680x0 or ColdFire processor.
13334 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
13335 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
13336 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
13337 below, which also classifies the CPUs into families:
13338
13339 @multitable @columnfractions 0.20 0.80
13340 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
13341 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51cn} @samp{51em} @samp{51qe}
13342 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
13343 @item @samp{5206e} @tab @samp{5206e}
13344 @item @samp{5208} @tab @samp{5207} @samp{5208}
13345 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
13346 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
13347 @item @samp{5216} @tab @samp{5214} @samp{5216}
13348 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
13349 @item @samp{5225} @tab @samp{5224} @samp{5225}
13350 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
13351 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
13352 @item @samp{5249} @tab @samp{5249}
13353 @item @samp{5250} @tab @samp{5250}
13354 @item @samp{5271} @tab @samp{5270} @samp{5271}
13355 @item @samp{5272} @tab @samp{5272}
13356 @item @samp{5275} @tab @samp{5274} @samp{5275}
13357 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
13358 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
13359 @item @samp{5307} @tab @samp{5307}
13360 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
13361 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
13362 @item @samp{5407} @tab @samp{5407}
13363 @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}
13364 @end multitable
13365
13366 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
13367 @var{arch} is compatible with @var{cpu}.  Other combinations of
13368 @option{-mcpu} and @option{-march} are rejected.
13369
13370 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
13371 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
13372 where the value of @var{family} is given by the table above.
13373
13374 @item -mtune=@var{tune}
13375 @opindex mtune
13376 Tune the code for a particular microarchitecture, within the
13377 constraints set by @option{-march} and @option{-mcpu}.
13378 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
13379 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
13380 and @samp{cpu32}.  The ColdFire microarchitectures
13381 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
13382
13383 You can also use @option{-mtune=68020-40} for code that needs
13384 to run relatively well on 68020, 68030 and 68040 targets.
13385 @option{-mtune=68020-60} is similar but includes 68060 targets
13386 as well.  These two options select the same tuning decisions as
13387 @option{-m68020-40} and @option{-m68020-60} respectively.
13388
13389 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
13390 when tuning for 680x0 architecture @var{arch}.  It also defines
13391 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
13392 option is used.  If gcc is tuning for a range of architectures,
13393 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
13394 it defines the macros for every architecture in the range.
13395
13396 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
13397 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
13398 of the arguments given above.
13399
13400 @item -m68000
13401 @itemx -mc68000
13402 @opindex m68000
13403 @opindex mc68000
13404 Generate output for a 68000.  This is the default
13405 when the compiler is configured for 68000-based systems.
13406 It is equivalent to @option{-march=68000}.
13407
13408 Use this option for microcontrollers with a 68000 or EC000 core,
13409 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
13410
13411 @item -m68010
13412 @opindex m68010
13413 Generate output for a 68010.  This is the default
13414 when the compiler is configured for 68010-based systems.
13415 It is equivalent to @option{-march=68010}.
13416
13417 @item -m68020
13418 @itemx -mc68020
13419 @opindex m68020
13420 @opindex mc68020
13421 Generate output for a 68020.  This is the default
13422 when the compiler is configured for 68020-based systems.
13423 It is equivalent to @option{-march=68020}.
13424
13425 @item -m68030
13426 @opindex m68030
13427 Generate output for a 68030.  This is the default when the compiler is
13428 configured for 68030-based systems.  It is equivalent to
13429 @option{-march=68030}.
13430
13431 @item -m68040
13432 @opindex m68040
13433 Generate output for a 68040.  This is the default when the compiler is
13434 configured for 68040-based systems.  It is equivalent to
13435 @option{-march=68040}.
13436
13437 This option inhibits the use of 68881/68882 instructions that have to be
13438 emulated by software on the 68040.  Use this option if your 68040 does not
13439 have code to emulate those instructions.
13440
13441 @item -m68060
13442 @opindex m68060
13443 Generate output for a 68060.  This is the default when the compiler is
13444 configured for 68060-based systems.  It is equivalent to
13445 @option{-march=68060}.
13446
13447 This option inhibits the use of 68020 and 68881/68882 instructions that
13448 have to be emulated by software on the 68060.  Use this option if your 68060
13449 does not have code to emulate those instructions.
13450
13451 @item -mcpu32
13452 @opindex mcpu32
13453 Generate output for a CPU32.  This is the default
13454 when the compiler is configured for CPU32-based systems.
13455 It is equivalent to @option{-march=cpu32}.
13456
13457 Use this option for microcontrollers with a
13458 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
13459 68336, 68340, 68341, 68349 and 68360.
13460
13461 @item -m5200
13462 @opindex m5200
13463 Generate output for a 520X ColdFire CPU@.  This is the default
13464 when the compiler is configured for 520X-based systems.
13465 It is equivalent to @option{-mcpu=5206}, and is now deprecated
13466 in favor of that option.
13467
13468 Use this option for microcontroller with a 5200 core, including
13469 the MCF5202, MCF5203, MCF5204 and MCF5206.
13470
13471 @item -m5206e
13472 @opindex m5206e
13473 Generate output for a 5206e ColdFire CPU@.  The option is now
13474 deprecated in favor of the equivalent @option{-mcpu=5206e}.
13475
13476 @item -m528x
13477 @opindex m528x
13478 Generate output for a member of the ColdFire 528X family.
13479 The option is now deprecated in favor of the equivalent
13480 @option{-mcpu=528x}.
13481
13482 @item -m5307
13483 @opindex m5307
13484 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
13485 in favor of the equivalent @option{-mcpu=5307}.
13486
13487 @item -m5407
13488 @opindex m5407
13489 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
13490 in favor of the equivalent @option{-mcpu=5407}.
13491
13492 @item -mcfv4e
13493 @opindex mcfv4e
13494 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
13495 This includes use of hardware floating point instructions.
13496 The option is equivalent to @option{-mcpu=547x}, and is now
13497 deprecated in favor of that option.
13498
13499 @item -m68020-40
13500 @opindex m68020-40
13501 Generate output for a 68040, without using any of the new instructions.
13502 This results in code which can run relatively efficiently on either a
13503 68020/68881 or a 68030 or a 68040.  The generated code does use the
13504 68881 instructions that are emulated on the 68040.
13505
13506 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
13507
13508 @item -m68020-60
13509 @opindex m68020-60
13510 Generate output for a 68060, without using any of the new instructions.
13511 This results in code which can run relatively efficiently on either a
13512 68020/68881 or a 68030 or a 68040.  The generated code does use the
13513 68881 instructions that are emulated on the 68060.
13514
13515 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
13516
13517 @item -mhard-float
13518 @itemx -m68881
13519 @opindex mhard-float
13520 @opindex m68881
13521 Generate floating-point instructions.  This is the default for 68020
13522 and above, and for ColdFire devices that have an FPU@.  It defines the
13523 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
13524 on ColdFire targets.
13525
13526 @item -msoft-float
13527 @opindex msoft-float
13528 Do not generate floating-point instructions; use library calls instead.
13529 This is the default for 68000, 68010, and 68832 targets.  It is also
13530 the default for ColdFire devices that have no FPU.
13531
13532 @item -mdiv
13533 @itemx -mno-div
13534 @opindex mdiv
13535 @opindex mno-div
13536 Generate (do not generate) ColdFire hardware divide and remainder
13537 instructions.  If @option{-march} is used without @option{-mcpu},
13538 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
13539 architectures.  Otherwise, the default is taken from the target CPU
13540 (either the default CPU, or the one specified by @option{-mcpu}).  For
13541 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
13542 @option{-mcpu=5206e}.
13543
13544 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
13545
13546 @item -mshort
13547 @opindex mshort
13548 Consider type @code{int} to be 16 bits wide, like @code{short int}.
13549 Additionally, parameters passed on the stack are also aligned to a
13550 16-bit boundary even on targets whose API mandates promotion to 32-bit.
13551
13552 @item -mno-short
13553 @opindex mno-short
13554 Do not consider type @code{int} to be 16 bits wide.  This is the default.
13555
13556 @item -mnobitfield
13557 @itemx -mno-bitfield
13558 @opindex mnobitfield
13559 @opindex mno-bitfield
13560 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
13561 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
13562
13563 @item -mbitfield
13564 @opindex mbitfield
13565 Do use the bit-field instructions.  The @option{-m68020} option implies
13566 @option{-mbitfield}.  This is the default if you use a configuration
13567 designed for a 68020.
13568
13569 @item -mrtd
13570 @opindex mrtd
13571 Use a different function-calling convention, in which functions
13572 that take a fixed number of arguments return with the @code{rtd}
13573 instruction, which pops their arguments while returning.  This
13574 saves one instruction in the caller since there is no need to pop
13575 the arguments there.
13576
13577 This calling convention is incompatible with the one normally
13578 used on Unix, so you cannot use it if you need to call libraries
13579 compiled with the Unix compiler.
13580
13581 Also, you must provide function prototypes for all functions that
13582 take variable numbers of arguments (including @code{printf});
13583 otherwise incorrect code will be generated for calls to those
13584 functions.
13585
13586 In addition, seriously incorrect code will result if you call a
13587 function with too many arguments.  (Normally, extra arguments are
13588 harmlessly ignored.)
13589
13590 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
13591 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
13592
13593 @item -mno-rtd
13594 @opindex mno-rtd
13595 Do not use the calling conventions selected by @option{-mrtd}.
13596 This is the default.
13597
13598 @item -malign-int
13599 @itemx -mno-align-int
13600 @opindex malign-int
13601 @opindex mno-align-int
13602 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
13603 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
13604 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
13605 Aligning variables on 32-bit boundaries produces code that runs somewhat
13606 faster on processors with 32-bit busses at the expense of more memory.
13607
13608 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
13609 align structures containing the above types  differently than
13610 most published application binary interface specifications for the m68k.
13611
13612 @item -mpcrel
13613 @opindex mpcrel
13614 Use the pc-relative addressing mode of the 68000 directly, instead of
13615 using a global offset table.  At present, this option implies @option{-fpic},
13616 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
13617 not presently supported with @option{-mpcrel}, though this could be supported for
13618 68020 and higher processors.
13619
13620 @item -mno-strict-align
13621 @itemx -mstrict-align
13622 @opindex mno-strict-align
13623 @opindex mstrict-align
13624 Do not (do) assume that unaligned memory references will be handled by
13625 the system.
13626
13627 @item -msep-data
13628 Generate code that allows the data segment to be located in a different
13629 area of memory from the text segment.  This allows for execute in place in
13630 an environment without virtual memory management.  This option implies
13631 @option{-fPIC}.
13632
13633 @item -mno-sep-data
13634 Generate code that assumes that the data segment follows the text segment.
13635 This is the default.
13636
13637 @item -mid-shared-library
13638 Generate code that supports shared libraries via the library ID method.
13639 This allows for execute in place and shared libraries in an environment
13640 without virtual memory management.  This option implies @option{-fPIC}.
13641
13642 @item -mno-id-shared-library
13643 Generate code that doesn't assume ID based shared libraries are being used.
13644 This is the default.
13645
13646 @item -mshared-library-id=n
13647 Specified the identification number of the ID based shared library being
13648 compiled.  Specifying a value of 0 will generate more compact code, specifying
13649 other values will force the allocation of that number to the current
13650 library but is no more space or time efficient than omitting this option.
13651
13652 @item -mxgot
13653 @itemx -mno-xgot
13654 @opindex mxgot
13655 @opindex mno-xgot
13656 When generating position-independent code for ColdFire, generate code
13657 that works if the GOT has more than 8192 entries.  This code is
13658 larger and slower than code generated without this option.  On M680x0
13659 processors, this option is not needed; @option{-fPIC} suffices.
13660
13661 GCC normally uses a single instruction to load values from the GOT@.
13662 While this is relatively efficient, it only works if the GOT
13663 is smaller than about 64k.  Anything larger causes the linker
13664 to report an error such as:
13665
13666 @cindex relocation truncated to fit (ColdFire)
13667 @smallexample
13668 relocation truncated to fit: R_68K_GOT16O foobar
13669 @end smallexample
13670
13671 If this happens, you should recompile your code with @option{-mxgot}.
13672 It should then work with very large GOTs.  However, code generated with
13673 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
13674 the value of a global symbol.
13675
13676 Note that some linkers, including newer versions of the GNU linker,
13677 can create multiple GOTs and sort GOT entries.  If you have such a linker,
13678 you should only need to use @option{-mxgot} when compiling a single
13679 object file that accesses more than 8192 GOT entries.  Very few do.
13680
13681 These options have no effect unless GCC is generating
13682 position-independent code.
13683
13684 @end table
13685
13686 @node MCore Options
13687 @subsection MCore Options
13688 @cindex MCore options
13689
13690 These are the @samp{-m} options defined for the Motorola M*Core
13691 processors.
13692
13693 @table @gcctabopt
13694
13695 @item -mhardlit
13696 @itemx -mno-hardlit
13697 @opindex mhardlit
13698 @opindex mno-hardlit
13699 Inline constants into the code stream if it can be done in two
13700 instructions or less.
13701
13702 @item -mdiv
13703 @itemx -mno-div
13704 @opindex mdiv
13705 @opindex mno-div
13706 Use the divide instruction.  (Enabled by default).
13707
13708 @item -mrelax-immediate
13709 @itemx -mno-relax-immediate
13710 @opindex mrelax-immediate
13711 @opindex mno-relax-immediate
13712 Allow arbitrary sized immediates in bit operations.
13713
13714 @item -mwide-bitfields
13715 @itemx -mno-wide-bitfields
13716 @opindex mwide-bitfields
13717 @opindex mno-wide-bitfields
13718 Always treat bit-fields as int-sized.
13719
13720 @item -m4byte-functions
13721 @itemx -mno-4byte-functions
13722 @opindex m4byte-functions
13723 @opindex mno-4byte-functions
13724 Force all functions to be aligned to a four byte boundary.
13725
13726 @item -mcallgraph-data
13727 @itemx -mno-callgraph-data
13728 @opindex mcallgraph-data
13729 @opindex mno-callgraph-data
13730 Emit callgraph information.
13731
13732 @item -mslow-bytes
13733 @itemx -mno-slow-bytes
13734 @opindex mslow-bytes
13735 @opindex mno-slow-bytes
13736 Prefer word access when reading byte quantities.
13737
13738 @item -mlittle-endian
13739 @itemx -mbig-endian
13740 @opindex mlittle-endian
13741 @opindex mbig-endian
13742 Generate code for a little endian target.
13743
13744 @item -m210
13745 @itemx -m340
13746 @opindex m210
13747 @opindex m340
13748 Generate code for the 210 processor.
13749
13750 @item -mno-lsim
13751 @opindex mno-lsim
13752 Assume that run-time support has been provided and so omit the
13753 simulator library (@file{libsim.a)} from the linker command line.
13754
13755 @item -mstack-increment=@var{size}
13756 @opindex mstack-increment
13757 Set the maximum amount for a single stack increment operation.  Large
13758 values can increase the speed of programs which contain functions
13759 that need a large amount of stack space, but they can also trigger a
13760 segmentation fault if the stack is extended too much.  The default
13761 value is 0x1000.
13762
13763 @end table
13764
13765 @node MeP Options
13766 @subsection MeP Options
13767 @cindex MeP options
13768
13769 @table @gcctabopt
13770
13771 @item -mabsdiff
13772 @opindex mabsdiff
13773 Enables the @code{abs} instruction, which is the absolute difference
13774 between two registers.
13775
13776 @item -mall-opts
13777 @opindex mall-opts
13778 Enables all the optional instructions - average, multiply, divide, bit
13779 operations, leading zero, absolute difference, min/max, clip, and
13780 saturation.
13781
13782
13783 @item -maverage
13784 @opindex maverage
13785 Enables the @code{ave} instruction, which computes the average of two
13786 registers.
13787
13788 @item -mbased=@var{n}
13789 @opindex mbased=
13790 Variables of size @var{n} bytes or smaller will be placed in the
13791 @code{.based} section by default.  Based variables use the @code{$tp}
13792 register as a base register, and there is a 128 byte limit to the
13793 @code{.based} section.
13794
13795 @item -mbitops
13796 @opindex mbitops
13797 Enables the bit operation instructions - bit test (@code{btstm}), set
13798 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
13799 test-and-set (@code{tas}).
13800
13801 @item -mc=@var{name}
13802 @opindex mc=
13803 Selects which section constant data will be placed in.  @var{name} may
13804 be @code{tiny}, @code{near}, or @code{far}.
13805
13806 @item -mclip
13807 @opindex mclip
13808 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
13809 useful unless you also provide @code{-mminmax}.
13810
13811 @item -mconfig=@var{name}
13812 @opindex mconfig=
13813 Selects one of the build-in core configurations.  Each MeP chip has
13814 one or more modules in it; each module has a core CPU and a variety of
13815 coprocessors, optional instructions, and peripherals.  The
13816 @code{MeP-Integrator} tool, not part of GCC, provides these
13817 configurations through this option; using this option is the same as
13818 using all the corresponding command line options.  The default
13819 configuration is @code{default}.
13820
13821 @item -mcop
13822 @opindex mcop
13823 Enables the coprocessor instructions.  By default, this is a 32-bit
13824 coprocessor.  Note that the coprocessor is normally enabled via the
13825 @code{-mconfig=} option.
13826
13827 @item -mcop32
13828 @opindex mcop32
13829 Enables the 32-bit coprocessor's instructions.
13830
13831 @item -mcop64
13832 @opindex mcop64
13833 Enables the 64-bit coprocessor's instructions.
13834
13835 @item -mivc2
13836 @opindex mivc2
13837 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
13838
13839 @item -mdc
13840 @opindex mdc
13841 Causes constant variables to be placed in the @code{.near} section.
13842
13843 @item -mdiv
13844 @opindex mdiv
13845 Enables the @code{div} and @code{divu} instructions.
13846
13847 @item -meb
13848 @opindex meb
13849 Generate big-endian code.
13850
13851 @item -mel
13852 @opindex mel
13853 Generate little-endian code.
13854
13855 @item -mio-volatile
13856 @opindex mio-volatile
13857 Tells the compiler that any variable marked with the @code{io}
13858 attribute is to be considered volatile.
13859
13860 @item -ml
13861 @opindex ml
13862 Causes variables to be assigned to the @code{.far} section by default.
13863
13864 @item -mleadz
13865 @opindex mleadz
13866 Enables the @code{leadz} (leading zero) instruction.
13867
13868 @item -mm
13869 @opindex mm
13870 Causes variables to be assigned to the @code{.near} section by default.
13871
13872 @item -mminmax
13873 @opindex mminmax
13874 Enables the @code{min} and @code{max} instructions.
13875
13876 @item -mmult
13877 @opindex mmult
13878 Enables the multiplication and multiply-accumulate instructions.
13879
13880 @item -mno-opts
13881 @opindex mno-opts
13882 Disables all the optional instructions enabled by @code{-mall-opts}.
13883
13884 @item -mrepeat
13885 @opindex mrepeat
13886 Enables the @code{repeat} and @code{erepeat} instructions, used for
13887 low-overhead looping.
13888
13889 @item -ms
13890 @opindex ms
13891 Causes all variables to default to the @code{.tiny} section.  Note
13892 that there is a 65536 byte limit to this section.  Accesses to these
13893 variables use the @code{%gp} base register.
13894
13895 @item -msatur
13896 @opindex msatur
13897 Enables the saturation instructions.  Note that the compiler does not
13898 currently generate these itself, but this option is included for
13899 compatibility with other tools, like @code{as}.
13900
13901 @item -msdram
13902 @opindex msdram
13903 Link the SDRAM-based runtime instead of the default ROM-based runtime.
13904
13905 @item -msim
13906 @opindex msim
13907 Link the simulator runtime libraries.
13908
13909 @item -msimnovec
13910 @opindex msimnovec
13911 Link the simulator runtime libraries, excluding built-in support
13912 for reset and exception vectors and tables.
13913
13914 @item -mtf
13915 @opindex mtf
13916 Causes all functions to default to the @code{.far} section.  Without
13917 this option, functions default to the @code{.near} section.
13918
13919 @item -mtiny=@var{n}
13920 @opindex mtiny=
13921 Variables that are @var{n} bytes or smaller will be allocated to the
13922 @code{.tiny} section.  These variables use the @code{$gp} base
13923 register.  The default for this option is 4, but note that there's a
13924 65536 byte limit to the @code{.tiny} section.
13925
13926 @end table
13927
13928 @node MicroBlaze Options
13929 @subsection MicroBlaze Options
13930 @cindex MicroBlaze Options
13931
13932 @table @gcctabopt
13933
13934 @item -msoft-float
13935 @opindex msoft-float
13936 Use software emulation for floating point (default).
13937
13938 @item -mhard-float
13939 @opindex mhard-float
13940 Use hardware floating point instructions.
13941
13942 @item -mmemcpy
13943 @opindex mmemcpy
13944 Do not optimize block moves, use @code{memcpy}.
13945
13946 @item -mno-clearbss
13947 @opindex mno-clearbss
13948 This option is deprecated.  Use @option{-fno-zero-initialized-in-bss} instead.
13949
13950 @item -mcpu=@var{cpu-type}
13951 @opindex mcpu=
13952 Use features of and schedule code for given CPU.
13953 Supported values are in the format @samp{v@var{X}.@var{YY}.@var{Z}},
13954 where @var{X} is a major version, @var{YY} is the minor version, and
13955 @var{Z} is compatibility code.  Example values are @samp{v3.00.a},
13956 @samp{v4.00.b}, @samp{v5.00.a}, @samp{v5.00.b}, @samp{v5.00.b}, @samp{v6.00.a}.
13957
13958 @item -mxl-soft-mul
13959 @opindex mxl-soft-mul
13960 Use software multiply emulation (default).
13961
13962 @item -mxl-soft-div
13963 @opindex mxl-soft-div
13964 Use software emulation for divides (default).
13965
13966 @item -mxl-barrel-shift
13967 @opindex mxl-barrel-shift
13968 Use the hardware barrel shifter.
13969
13970 @item -mxl-pattern-compare
13971 @opindex mxl-pattern-compare
13972 Use pattern compare instructions.
13973
13974 @item -msmall-divides
13975 @opindex msmall-divides
13976 Use table lookup optimization for small signed integer divisions.
13977
13978 @item -mxl-stack-check
13979 @opindex mxl-stack-check
13980 This option is deprecated.  Use -fstack-check instead.
13981
13982 @item -mxl-gp-opt
13983 @opindex mxl-gp-opt
13984 Use GP relative sdata/sbss sections.
13985
13986 @item -mxl-multiply-high
13987 @opindex mxl-multiply-high
13988 Use multiply high instructions for high part of 32x32 multiply.
13989
13990 @item -mxl-float-convert
13991 @opindex mxl-float-convert
13992 Use hardware floating point conversion instructions.
13993
13994 @item -mxl-float-sqrt
13995 @opindex mxl-float-sqrt
13996 Use hardware floating point square root instruction.
13997
13998 @item -mxl-mode-@var{app-model}
13999 Select application model @var{app-model}.  Valid models are
14000 @table @samp
14001 @item executable
14002 normal executable (default), uses startup code @file{crt0.o}.
14003
14004 @item xmdstub
14005 for use with Xilinx Microprocessor Debugger (XMD) based
14006 software intrusive debug agent called xmdstub. This uses startup file
14007 @file{crt1.o} and sets the start address of the program to be 0x800.
14008
14009 @item bootstrap
14010 for applications that are loaded using a bootloader.
14011 This model uses startup file @file{crt2.o} which does not contain a processor
14012 reset vector handler. This is suitable for transferring control on a
14013 processor reset to the bootloader rather than the application.
14014
14015 @item novectors
14016 for applications that do not require any of the
14017 MicroBlaze vectors. This option may be useful for applications running
14018 within a monitoring application. This model uses @file{crt3.o} as a startup file.
14019 @end table
14020
14021 Option @option{-xl-mode-@var{app-model}} is a deprecated alias for
14022 @option{-mxl-mode-@var{app-model}}.
14023
14024 @end table
14025
14026 @node MIPS Options
14027 @subsection MIPS Options
14028 @cindex MIPS options
14029
14030 @table @gcctabopt
14031
14032 @item -EB
14033 @opindex EB
14034 Generate big-endian code.
14035
14036 @item -EL
14037 @opindex EL
14038 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
14039 configurations.
14040
14041 @item -march=@var{arch}
14042 @opindex march
14043 Generate code that will run on @var{arch}, which can be the name of a
14044 generic MIPS ISA, or the name of a particular processor.
14045 The ISA names are:
14046 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
14047 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
14048 The processor names are:
14049 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
14050 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
14051 @samp{5kc}, @samp{5kf},
14052 @samp{20kc},
14053 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
14054 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
14055 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
14056 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
14057 @samp{1004kc}, @samp{1004kf2_1}, @samp{1004kf1_1},
14058 @samp{loongson2e}, @samp{loongson2f}, @samp{loongson3a},
14059 @samp{m4k},
14060 @samp{octeon},
14061 @samp{orion},
14062 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
14063 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
14064 @samp{rm7000}, @samp{rm9000},
14065 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
14066 @samp{sb1},
14067 @samp{sr71000},
14068 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
14069 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
14070 and @samp{xlr}.
14071 The special value @samp{from-abi} selects the
14072 most compatible architecture for the selected ABI (that is,
14073 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
14074
14075 Native Linux/GNU toolchains also support the value @samp{native},
14076 which selects the best architecture option for the host processor.
14077 @option{-march=native} has no effect if GCC does not recognize
14078 the processor.
14079
14080 In processor names, a final @samp{000} can be abbreviated as @samp{k}
14081 (for example, @samp{-march=r2k}).  Prefixes are optional, and
14082 @samp{vr} may be written @samp{r}.
14083
14084 Names of the form @samp{@var{n}f2_1} refer to processors with
14085 FPUs clocked at half the rate of the core, names of the form
14086 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
14087 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
14088 processors with FPUs clocked a ratio of 3:2 with respect to the core.
14089 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
14090 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
14091 accepted as synonyms for @samp{@var{n}f1_1}.
14092
14093 GCC defines two macros based on the value of this option.  The first
14094 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
14095 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
14096 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
14097 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
14098 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
14099
14100 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
14101 above.  In other words, it will have the full prefix and will not
14102 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
14103 the macro names the resolved architecture (either @samp{"mips1"} or
14104 @samp{"mips3"}).  It names the default architecture when no
14105 @option{-march} option is given.
14106
14107 @item -mtune=@var{arch}
14108 @opindex mtune
14109 Optimize for @var{arch}.  Among other things, this option controls
14110 the way instructions are scheduled, and the perceived cost of arithmetic
14111 operations.  The list of @var{arch} values is the same as for
14112 @option{-march}.
14113
14114 When this option is not used, GCC will optimize for the processor
14115 specified by @option{-march}.  By using @option{-march} and
14116 @option{-mtune} together, it is possible to generate code that will
14117 run on a family of processors, but optimize the code for one
14118 particular member of that family.
14119
14120 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
14121 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
14122 @samp{-march} ones described above.
14123
14124 @item -mips1
14125 @opindex mips1
14126 Equivalent to @samp{-march=mips1}.
14127
14128 @item -mips2
14129 @opindex mips2
14130 Equivalent to @samp{-march=mips2}.
14131
14132 @item -mips3
14133 @opindex mips3
14134 Equivalent to @samp{-march=mips3}.
14135
14136 @item -mips4
14137 @opindex mips4
14138 Equivalent to @samp{-march=mips4}.
14139
14140 @item -mips32
14141 @opindex mips32
14142 Equivalent to @samp{-march=mips32}.
14143
14144 @item -mips32r2
14145 @opindex mips32r2
14146 Equivalent to @samp{-march=mips32r2}.
14147
14148 @item -mips64
14149 @opindex mips64
14150 Equivalent to @samp{-march=mips64}.
14151
14152 @item -mips64r2
14153 @opindex mips64r2
14154 Equivalent to @samp{-march=mips64r2}.
14155
14156 @item -mips16
14157 @itemx -mno-mips16
14158 @opindex mips16
14159 @opindex mno-mips16
14160 Generate (do not generate) MIPS16 code.  If GCC is targetting a
14161 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
14162
14163 MIPS16 code generation can also be controlled on a per-function basis
14164 by means of @code{mips16} and @code{nomips16} attributes.
14165 @xref{Function Attributes}, for more information.
14166
14167 @item -mflip-mips16
14168 @opindex mflip-mips16
14169 Generate MIPS16 code on alternating functions.  This option is provided
14170 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
14171 not intended for ordinary use in compiling user code.
14172
14173 @item -minterlink-mips16
14174 @itemx -mno-interlink-mips16
14175 @opindex minterlink-mips16
14176 @opindex mno-interlink-mips16
14177 Require (do not require) that non-MIPS16 code be link-compatible with
14178 MIPS16 code.
14179
14180 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
14181 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
14182 therefore disables direct jumps unless GCC knows that the target of the
14183 jump is not MIPS16.
14184
14185 @item -mabi=32
14186 @itemx -mabi=o64
14187 @itemx -mabi=n32
14188 @itemx -mabi=64
14189 @itemx -mabi=eabi
14190 @opindex mabi=32
14191 @opindex mabi=o64
14192 @opindex mabi=n32
14193 @opindex mabi=64
14194 @opindex mabi=eabi
14195 Generate code for the given ABI@.
14196
14197 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
14198 generates 64-bit code when you select a 64-bit architecture, but you
14199 can use @option{-mgp32} to get 32-bit code instead.
14200
14201 For information about the O64 ABI, see
14202 @uref{http://gcc.gnu.org/@/projects/@/mipso64-abi.html}.
14203
14204 GCC supports a variant of the o32 ABI in which floating-point registers
14205 are 64 rather than 32 bits wide.  You can select this combination with
14206 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
14207 and @samp{mfhc1} instructions and is therefore only supported for
14208 MIPS32R2 processors.
14209
14210 The register assignments for arguments and return values remain the
14211 same, but each scalar value is passed in a single 64-bit register
14212 rather than a pair of 32-bit registers.  For example, scalar
14213 floating-point values are returned in @samp{$f0} only, not a
14214 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
14215 remains the same, but all 64 bits are saved.
14216
14217 @item -mabicalls
14218 @itemx -mno-abicalls
14219 @opindex mabicalls
14220 @opindex mno-abicalls
14221 Generate (do not generate) code that is suitable for SVR4-style
14222 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
14223 systems.
14224
14225 @item -mshared
14226 @itemx -mno-shared
14227 Generate (do not generate) code that is fully position-independent,
14228 and that can therefore be linked into shared libraries.  This option
14229 only affects @option{-mabicalls}.
14230
14231 All @option{-mabicalls} code has traditionally been position-independent,
14232 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
14233 as an extension, the GNU toolchain allows executables to use absolute
14234 accesses for locally-binding symbols.  It can also use shorter GP
14235 initialization sequences and generate direct calls to locally-defined
14236 functions.  This mode is selected by @option{-mno-shared}.
14237
14238 @option{-mno-shared} depends on binutils 2.16 or higher and generates
14239 objects that can only be linked by the GNU linker.  However, the option
14240 does not affect the ABI of the final executable; it only affects the ABI
14241 of relocatable objects.  Using @option{-mno-shared} will generally make
14242 executables both smaller and quicker.
14243
14244 @option{-mshared} is the default.
14245
14246 @item -mplt
14247 @itemx -mno-plt
14248 @opindex mplt
14249 @opindex mno-plt
14250 Assume (do not assume) that the static and dynamic linkers
14251 support PLTs and copy relocations.  This option only affects
14252 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
14253 has no effect without @samp{-msym32}.
14254
14255 You can make @option{-mplt} the default by configuring
14256 GCC with @option{--with-mips-plt}.  The default is
14257 @option{-mno-plt} otherwise.
14258
14259 @item -mxgot
14260 @itemx -mno-xgot
14261 @opindex mxgot
14262 @opindex mno-xgot
14263 Lift (do not lift) the usual restrictions on the size of the global
14264 offset table.
14265
14266 GCC normally uses a single instruction to load values from the GOT@.
14267 While this is relatively efficient, it will only work if the GOT
14268 is smaller than about 64k.  Anything larger will cause the linker
14269 to report an error such as:
14270
14271 @cindex relocation truncated to fit (MIPS)
14272 @smallexample
14273 relocation truncated to fit: R_MIPS_GOT16 foobar
14274 @end smallexample
14275
14276 If this happens, you should recompile your code with @option{-mxgot}.
14277 It should then work with very large GOTs, although it will also be
14278 less efficient, since it will take three instructions to fetch the
14279 value of a global symbol.
14280
14281 Note that some linkers can create multiple GOTs.  If you have such a
14282 linker, you should only need to use @option{-mxgot} when a single object
14283 file accesses more than 64k's worth of GOT entries.  Very few do.
14284
14285 These options have no effect unless GCC is generating position
14286 independent code.
14287
14288 @item -mgp32
14289 @opindex mgp32
14290 Assume that general-purpose registers are 32 bits wide.
14291
14292 @item -mgp64
14293 @opindex mgp64
14294 Assume that general-purpose registers are 64 bits wide.
14295
14296 @item -mfp32
14297 @opindex mfp32
14298 Assume that floating-point registers are 32 bits wide.
14299
14300 @item -mfp64
14301 @opindex mfp64
14302 Assume that floating-point registers are 64 bits wide.
14303
14304 @item -mhard-float
14305 @opindex mhard-float
14306 Use floating-point coprocessor instructions.
14307
14308 @item -msoft-float
14309 @opindex msoft-float
14310 Do not use floating-point coprocessor instructions.  Implement
14311 floating-point calculations using library calls instead.
14312
14313 @item -msingle-float
14314 @opindex msingle-float
14315 Assume that the floating-point coprocessor only supports single-precision
14316 operations.
14317
14318 @item -mdouble-float
14319 @opindex mdouble-float
14320 Assume that the floating-point coprocessor supports double-precision
14321 operations.  This is the default.
14322
14323 @item -mllsc
14324 @itemx -mno-llsc
14325 @opindex mllsc
14326 @opindex mno-llsc
14327 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
14328 implement atomic memory built-in functions.  When neither option is
14329 specified, GCC will use the instructions if the target architecture
14330 supports them.
14331
14332 @option{-mllsc} is useful if the runtime environment can emulate the
14333 instructions and @option{-mno-llsc} can be useful when compiling for
14334 nonstandard ISAs.  You can make either option the default by
14335 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
14336 respectively.  @option{--with-llsc} is the default for some
14337 configurations; see the installation documentation for details.
14338
14339 @item -mdsp
14340 @itemx -mno-dsp
14341 @opindex mdsp
14342 @opindex mno-dsp
14343 Use (do not use) revision 1 of the MIPS DSP ASE@.
14344 @xref{MIPS DSP Built-in Functions}.  This option defines the
14345 preprocessor macro @samp{__mips_dsp}.  It also defines
14346 @samp{__mips_dsp_rev} to 1.
14347
14348 @item -mdspr2
14349 @itemx -mno-dspr2
14350 @opindex mdspr2
14351 @opindex mno-dspr2
14352 Use (do not use) revision 2 of the MIPS DSP ASE@.
14353 @xref{MIPS DSP Built-in Functions}.  This option defines the
14354 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
14355 It also defines @samp{__mips_dsp_rev} to 2.
14356
14357 @item -msmartmips
14358 @itemx -mno-smartmips
14359 @opindex msmartmips
14360 @opindex mno-smartmips
14361 Use (do not use) the MIPS SmartMIPS ASE.
14362
14363 @item -mpaired-single
14364 @itemx -mno-paired-single
14365 @opindex mpaired-single
14366 @opindex mno-paired-single
14367 Use (do not use) paired-single floating-point instructions.
14368 @xref{MIPS Paired-Single Support}.  This option requires
14369 hardware floating-point support to be enabled.
14370
14371 @item -mdmx
14372 @itemx -mno-mdmx
14373 @opindex mdmx
14374 @opindex mno-mdmx
14375 Use (do not use) MIPS Digital Media Extension instructions.
14376 This option can only be used when generating 64-bit code and requires
14377 hardware floating-point support to be enabled.
14378
14379 @item -mips3d
14380 @itemx -mno-mips3d
14381 @opindex mips3d
14382 @opindex mno-mips3d
14383 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
14384 The option @option{-mips3d} implies @option{-mpaired-single}.
14385
14386 @item -mmt
14387 @itemx -mno-mt
14388 @opindex mmt
14389 @opindex mno-mt
14390 Use (do not use) MT Multithreading instructions.
14391
14392 @item -mlong64
14393 @opindex mlong64
14394 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
14395 an explanation of the default and the way that the pointer size is
14396 determined.
14397
14398 @item -mlong32
14399 @opindex mlong32
14400 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
14401
14402 The default size of @code{int}s, @code{long}s and pointers depends on
14403 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
14404 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
14405 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
14406 or the same size as integer registers, whichever is smaller.
14407
14408 @item -msym32
14409 @itemx -mno-sym32
14410 @opindex msym32
14411 @opindex mno-sym32
14412 Assume (do not assume) that all symbols have 32-bit values, regardless
14413 of the selected ABI@.  This option is useful in combination with
14414 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
14415 to generate shorter and faster references to symbolic addresses.
14416
14417 @item -G @var{num}
14418 @opindex G
14419 Put definitions of externally-visible data in a small data section
14420 if that data is no bigger than @var{num} bytes.  GCC can then access
14421 the data more efficiently; see @option{-mgpopt} for details.
14422
14423 The default @option{-G} option depends on the configuration.
14424
14425 @item -mlocal-sdata
14426 @itemx -mno-local-sdata
14427 @opindex mlocal-sdata
14428 @opindex mno-local-sdata
14429 Extend (do not extend) the @option{-G} behavior to local data too,
14430 such as to static variables in C@.  @option{-mlocal-sdata} is the
14431 default for all configurations.
14432
14433 If the linker complains that an application is using too much small data,
14434 you might want to try rebuilding the less performance-critical parts with
14435 @option{-mno-local-sdata}.  You might also want to build large
14436 libraries with @option{-mno-local-sdata}, so that the libraries leave
14437 more room for the main program.
14438
14439 @item -mextern-sdata
14440 @itemx -mno-extern-sdata
14441 @opindex mextern-sdata
14442 @opindex mno-extern-sdata
14443 Assume (do not assume) that externally-defined data will be in
14444 a small data section if that data is within the @option{-G} limit.
14445 @option{-mextern-sdata} is the default for all configurations.
14446
14447 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
14448 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
14449 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
14450 is placed in a small data section.  If @var{Var} is defined by another
14451 module, you must either compile that module with a high-enough
14452 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
14453 definition.  If @var{Var} is common, you must link the application
14454 with a high-enough @option{-G} setting.
14455
14456 The easiest way of satisfying these restrictions is to compile
14457 and link every module with the same @option{-G} option.  However,
14458 you may wish to build a library that supports several different
14459 small data limits.  You can do this by compiling the library with
14460 the highest supported @option{-G} setting and additionally using
14461 @option{-mno-extern-sdata} to stop the library from making assumptions
14462 about externally-defined data.
14463
14464 @item -mgpopt
14465 @itemx -mno-gpopt
14466 @opindex mgpopt
14467 @opindex mno-gpopt
14468 Use (do not use) GP-relative accesses for symbols that are known to be
14469 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
14470 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
14471 configurations.
14472
14473 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
14474 might not hold the value of @code{_gp}.  For example, if the code is
14475 part of a library that might be used in a boot monitor, programs that
14476 call boot monitor routines will pass an unknown value in @code{$gp}.
14477 (In such situations, the boot monitor itself would usually be compiled
14478 with @option{-G0}.)
14479
14480 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
14481 @option{-mno-extern-sdata}.
14482
14483 @item -membedded-data
14484 @itemx -mno-embedded-data
14485 @opindex membedded-data
14486 @opindex mno-embedded-data
14487 Allocate variables to the read-only data section first if possible, then
14488 next in the small data section if possible, otherwise in data.  This gives
14489 slightly slower code than the default, but reduces the amount of RAM required
14490 when executing, and thus may be preferred for some embedded systems.
14491
14492 @item -muninit-const-in-rodata
14493 @itemx -mno-uninit-const-in-rodata
14494 @opindex muninit-const-in-rodata
14495 @opindex mno-uninit-const-in-rodata
14496 Put uninitialized @code{const} variables in the read-only data section.
14497 This option is only meaningful in conjunction with @option{-membedded-data}.
14498
14499 @item -mcode-readable=@var{setting}
14500 @opindex mcode-readable
14501 Specify whether GCC may generate code that reads from executable sections.
14502 There are three possible settings:
14503
14504 @table @gcctabopt
14505 @item -mcode-readable=yes
14506 Instructions may freely access executable sections.  This is the
14507 default setting.
14508
14509 @item -mcode-readable=pcrel
14510 MIPS16 PC-relative load instructions can access executable sections,
14511 but other instructions must not do so.  This option is useful on 4KSc
14512 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
14513 It is also useful on processors that can be configured to have a dual
14514 instruction/data SRAM interface and that, like the M4K, automatically
14515 redirect PC-relative loads to the instruction RAM.
14516
14517 @item -mcode-readable=no
14518 Instructions must not access executable sections.  This option can be
14519 useful on targets that are configured to have a dual instruction/data
14520 SRAM interface but that (unlike the M4K) do not automatically redirect
14521 PC-relative loads to the instruction RAM.
14522 @end table
14523
14524 @item -msplit-addresses
14525 @itemx -mno-split-addresses
14526 @opindex msplit-addresses
14527 @opindex mno-split-addresses
14528 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
14529 relocation operators.  This option has been superseded by
14530 @option{-mexplicit-relocs} but is retained for backwards compatibility.
14531
14532 @item -mexplicit-relocs
14533 @itemx -mno-explicit-relocs
14534 @opindex mexplicit-relocs
14535 @opindex mno-explicit-relocs
14536 Use (do not use) assembler relocation operators when dealing with symbolic
14537 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
14538 is to use assembler macros instead.
14539
14540 @option{-mexplicit-relocs} is the default if GCC was configured
14541 to use an assembler that supports relocation operators.
14542
14543 @item -mcheck-zero-division
14544 @itemx -mno-check-zero-division
14545 @opindex mcheck-zero-division
14546 @opindex mno-check-zero-division
14547 Trap (do not trap) on integer division by zero.
14548
14549 The default is @option{-mcheck-zero-division}.
14550
14551 @item -mdivide-traps
14552 @itemx -mdivide-breaks
14553 @opindex mdivide-traps
14554 @opindex mdivide-breaks
14555 MIPS systems check for division by zero by generating either a
14556 conditional trap or a break instruction.  Using traps results in
14557 smaller code, but is only supported on MIPS II and later.  Also, some
14558 versions of the Linux kernel have a bug that prevents trap from
14559 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
14560 allow conditional traps on architectures that support them and
14561 @option{-mdivide-breaks} to force the use of breaks.
14562
14563 The default is usually @option{-mdivide-traps}, but this can be
14564 overridden at configure time using @option{--with-divide=breaks}.
14565 Divide-by-zero checks can be completely disabled using
14566 @option{-mno-check-zero-division}.
14567
14568 @item -mmemcpy
14569 @itemx -mno-memcpy
14570 @opindex mmemcpy
14571 @opindex mno-memcpy
14572 Force (do not force) the use of @code{memcpy()} for non-trivial block
14573 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
14574 most constant-sized copies.
14575
14576 @item -mlong-calls
14577 @itemx -mno-long-calls
14578 @opindex mlong-calls
14579 @opindex mno-long-calls
14580 Disable (do not disable) use of the @code{jal} instruction.  Calling
14581 functions using @code{jal} is more efficient but requires the caller
14582 and callee to be in the same 256 megabyte segment.
14583
14584 This option has no effect on abicalls code.  The default is
14585 @option{-mno-long-calls}.
14586
14587 @item -mmad
14588 @itemx -mno-mad
14589 @opindex mmad
14590 @opindex mno-mad
14591 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
14592 instructions, as provided by the R4650 ISA@.
14593
14594 @item -mfused-madd
14595 @itemx -mno-fused-madd
14596 @opindex mfused-madd
14597 @opindex mno-fused-madd
14598 Enable (disable) use of the floating point multiply-accumulate
14599 instructions, when they are available.  The default is
14600 @option{-mfused-madd}.
14601
14602 When multiply-accumulate instructions are used, the intermediate
14603 product is calculated to infinite precision and is not subject to
14604 the FCSR Flush to Zero bit.  This may be undesirable in some
14605 circumstances.
14606
14607 @item -nocpp
14608 @opindex nocpp
14609 Tell the MIPS assembler to not run its preprocessor over user
14610 assembler files (with a @samp{.s} suffix) when assembling them.
14611
14612 @item -mfix-24k
14613 @item -mno-fix-24k
14614 @opindex mfix-24k
14615 @opindex mno-fix-24k
14616 Work around the 24K E48 (lost data on stores during refill) errata.
14617 The workarounds are implemented by the assembler rather than by GCC.
14618
14619 @item -mfix-r4000
14620 @itemx -mno-fix-r4000
14621 @opindex mfix-r4000
14622 @opindex mno-fix-r4000
14623 Work around certain R4000 CPU errata:
14624 @itemize @minus
14625 @item
14626 A double-word or a variable shift may give an incorrect result if executed
14627 immediately after starting an integer division.
14628 @item
14629 A double-word or a variable shift may give an incorrect result if executed
14630 while an integer multiplication is in progress.
14631 @item
14632 An integer division may give an incorrect result if started in a delay slot
14633 of a taken branch or a jump.
14634 @end itemize
14635
14636 @item -mfix-r4400
14637 @itemx -mno-fix-r4400
14638 @opindex mfix-r4400
14639 @opindex mno-fix-r4400
14640 Work around certain R4400 CPU errata:
14641 @itemize @minus
14642 @item
14643 A double-word or a variable shift may give an incorrect result if executed
14644 immediately after starting an integer division.
14645 @end itemize
14646
14647 @item -mfix-r10000
14648 @itemx -mno-fix-r10000
14649 @opindex mfix-r10000
14650 @opindex mno-fix-r10000
14651 Work around certain R10000 errata:
14652 @itemize @minus
14653 @item
14654 @code{ll}/@code{sc} sequences may not behave atomically on revisions
14655 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
14656 @end itemize
14657
14658 This option can only be used if the target architecture supports
14659 branch-likely instructions.  @option{-mfix-r10000} is the default when
14660 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
14661 otherwise.
14662
14663 @item -mfix-vr4120
14664 @itemx -mno-fix-vr4120
14665 @opindex mfix-vr4120
14666 Work around certain VR4120 errata:
14667 @itemize @minus
14668 @item
14669 @code{dmultu} does not always produce the correct result.
14670 @item
14671 @code{div} and @code{ddiv} do not always produce the correct result if one
14672 of the operands is negative.
14673 @end itemize
14674 The workarounds for the division errata rely on special functions in
14675 @file{libgcc.a}.  At present, these functions are only provided by
14676 the @code{mips64vr*-elf} configurations.
14677
14678 Other VR4120 errata require a nop to be inserted between certain pairs of
14679 instructions.  These errata are handled by the assembler, not by GCC itself.
14680
14681 @item -mfix-vr4130
14682 @opindex mfix-vr4130
14683 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
14684 workarounds are implemented by the assembler rather than by GCC,
14685 although GCC will avoid using @code{mflo} and @code{mfhi} if the
14686 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
14687 instructions are available instead.
14688
14689 @item -mfix-sb1
14690 @itemx -mno-fix-sb1
14691 @opindex mfix-sb1
14692 Work around certain SB-1 CPU core errata.
14693 (This flag currently works around the SB-1 revision 2
14694 ``F1'' and ``F2'' floating point errata.)
14695
14696 @item -mr10k-cache-barrier=@var{setting}
14697 @opindex mr10k-cache-barrier
14698 Specify whether GCC should insert cache barriers to avoid the
14699 side-effects of speculation on R10K processors.
14700
14701 In common with many processors, the R10K tries to predict the outcome
14702 of a conditional branch and speculatively executes instructions from
14703 the ``taken'' branch.  It later aborts these instructions if the
14704 predicted outcome was wrong.  However, on the R10K, even aborted
14705 instructions can have side effects.
14706
14707 This problem only affects kernel stores and, depending on the system,
14708 kernel loads.  As an example, a speculatively-executed store may load
14709 the target memory into cache and mark the cache line as dirty, even if
14710 the store itself is later aborted.  If a DMA operation writes to the
14711 same area of memory before the ``dirty'' line is flushed, the cached
14712 data will overwrite the DMA-ed data.  See the R10K processor manual
14713 for a full description, including other potential problems.
14714
14715 One workaround is to insert cache barrier instructions before every memory
14716 access that might be speculatively executed and that might have side
14717 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
14718 controls GCC's implementation of this workaround.  It assumes that
14719 aborted accesses to any byte in the following regions will not have
14720 side effects:
14721
14722 @enumerate
14723 @item
14724 the memory occupied by the current function's stack frame;
14725
14726 @item
14727 the memory occupied by an incoming stack argument;
14728
14729 @item
14730 the memory occupied by an object with a link-time-constant address.
14731 @end enumerate
14732
14733 It is the kernel's responsibility to ensure that speculative
14734 accesses to these regions are indeed safe.
14735
14736 If the input program contains a function declaration such as:
14737
14738 @smallexample
14739 void foo (void);
14740 @end smallexample
14741
14742 then the implementation of @code{foo} must allow @code{j foo} and
14743 @code{jal foo} to be executed speculatively.  GCC honors this
14744 restriction for functions it compiles itself.  It expects non-GCC
14745 functions (such as hand-written assembly code) to do the same.
14746
14747 The option has three forms:
14748
14749 @table @gcctabopt
14750 @item -mr10k-cache-barrier=load-store
14751 Insert a cache barrier before a load or store that might be
14752 speculatively executed and that might have side effects even
14753 if aborted.
14754
14755 @item -mr10k-cache-barrier=store
14756 Insert a cache barrier before a store that might be speculatively
14757 executed and that might have side effects even if aborted.
14758
14759 @item -mr10k-cache-barrier=none
14760 Disable the insertion of cache barriers.  This is the default setting.
14761 @end table
14762
14763 @item -mflush-func=@var{func}
14764 @itemx -mno-flush-func
14765 @opindex mflush-func
14766 Specifies the function to call to flush the I and D caches, or to not
14767 call any such function.  If called, the function must take the same
14768 arguments as the common @code{_flush_func()}, that is, the address of the
14769 memory range for which the cache is being flushed, the size of the
14770 memory range, and the number 3 (to flush both caches).  The default
14771 depends on the target GCC was configured for, but commonly is either
14772 @samp{_flush_func} or @samp{__cpu_flush}.
14773
14774 @item mbranch-cost=@var{num}
14775 @opindex mbranch-cost
14776 Set the cost of branches to roughly @var{num} ``simple'' instructions.
14777 This cost is only a heuristic and is not guaranteed to produce
14778 consistent results across releases.  A zero cost redundantly selects
14779 the default, which is based on the @option{-mtune} setting.
14780
14781 @item -mbranch-likely
14782 @itemx -mno-branch-likely
14783 @opindex mbranch-likely
14784 @opindex mno-branch-likely
14785 Enable or disable use of Branch Likely instructions, regardless of the
14786 default for the selected architecture.  By default, Branch Likely
14787 instructions may be generated if they are supported by the selected
14788 architecture.  An exception is for the MIPS32 and MIPS64 architectures
14789 and processors which implement those architectures; for those, Branch
14790 Likely instructions will not be generated by default because the MIPS32
14791 and MIPS64 architectures specifically deprecate their use.
14792
14793 @item -mfp-exceptions
14794 @itemx -mno-fp-exceptions
14795 @opindex mfp-exceptions
14796 Specifies whether FP exceptions are enabled.  This affects how we schedule
14797 FP instructions for some processors.  The default is that FP exceptions are
14798 enabled.
14799
14800 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
14801 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
14802 FP pipe.
14803
14804 @item -mvr4130-align
14805 @itemx -mno-vr4130-align
14806 @opindex mvr4130-align
14807 The VR4130 pipeline is two-way superscalar, but can only issue two
14808 instructions together if the first one is 8-byte aligned.  When this
14809 option is enabled, GCC will align pairs of instructions that it
14810 thinks should execute in parallel.
14811
14812 This option only has an effect when optimizing for the VR4130.
14813 It normally makes code faster, but at the expense of making it bigger.
14814 It is enabled by default at optimization level @option{-O3}.
14815
14816 @item -msynci
14817 @itemx -mno-synci
14818 @opindex msynci
14819 Enable (disable) generation of @code{synci} instructions on
14820 architectures that support it.  The @code{synci} instructions (if
14821 enabled) will be generated when @code{__builtin___clear_cache()} is
14822 compiled.
14823
14824 This option defaults to @code{-mno-synci}, but the default can be
14825 overridden by configuring with @code{--with-synci}.
14826
14827 When compiling code for single processor systems, it is generally safe
14828 to use @code{synci}.  However, on many multi-core (SMP) systems, it
14829 will not invalidate the instruction caches on all cores and may lead
14830 to undefined behavior.
14831
14832 @item -mrelax-pic-calls
14833 @itemx -mno-relax-pic-calls
14834 @opindex mrelax-pic-calls
14835 Try to turn PIC calls that are normally dispatched via register
14836 @code{$25} into direct calls.  This is only possible if the linker can
14837 resolve the destination at link-time and if the destination is within
14838 range for a direct call.
14839
14840 @option{-mrelax-pic-calls} is the default if GCC was configured to use
14841 an assembler and a linker that supports the @code{.reloc} assembly
14842 directive and @code{-mexplicit-relocs} is in effect.  With
14843 @code{-mno-explicit-relocs}, this optimization can be performed by the
14844 assembler and the linker alone without help from the compiler.
14845
14846 @item -mmcount-ra-address
14847 @itemx -mno-mcount-ra-address
14848 @opindex mmcount-ra-address
14849 @opindex mno-mcount-ra-address
14850 Emit (do not emit) code that allows @code{_mcount} to modify the
14851 calling function's return address.  When enabled, this option extends
14852 the usual @code{_mcount} interface with a new @var{ra-address}
14853 parameter, which has type @code{intptr_t *} and is passed in register
14854 @code{$12}.  @code{_mcount} can then modify the return address by
14855 doing both of the following:
14856 @itemize
14857 @item
14858 Returning the new address in register @code{$31}.
14859 @item
14860 Storing the new address in @code{*@var{ra-address}},
14861 if @var{ra-address} is nonnull.
14862 @end itemize
14863
14864 The default is @option{-mno-mcount-ra-address}.
14865
14866 @end table
14867
14868 @node MMIX Options
14869 @subsection MMIX Options
14870 @cindex MMIX Options
14871
14872 These options are defined for the MMIX:
14873
14874 @table @gcctabopt
14875 @item -mlibfuncs
14876 @itemx -mno-libfuncs
14877 @opindex mlibfuncs
14878 @opindex mno-libfuncs
14879 Specify that intrinsic library functions are being compiled, passing all
14880 values in registers, no matter the size.
14881
14882 @item -mepsilon
14883 @itemx -mno-epsilon
14884 @opindex mepsilon
14885 @opindex mno-epsilon
14886 Generate floating-point comparison instructions that compare with respect
14887 to the @code{rE} epsilon register.
14888
14889 @item -mabi=mmixware
14890 @itemx -mabi=gnu
14891 @opindex mabi=mmixware
14892 @opindex mabi=gnu
14893 Generate code that passes function parameters and return values that (in
14894 the called function) are seen as registers @code{$0} and up, as opposed to
14895 the GNU ABI which uses global registers @code{$231} and up.
14896
14897 @item -mzero-extend
14898 @itemx -mno-zero-extend
14899 @opindex mzero-extend
14900 @opindex mno-zero-extend
14901 When reading data from memory in sizes shorter than 64 bits, use (do not
14902 use) zero-extending load instructions by default, rather than
14903 sign-extending ones.
14904
14905 @item -mknuthdiv
14906 @itemx -mno-knuthdiv
14907 @opindex mknuthdiv
14908 @opindex mno-knuthdiv
14909 Make the result of a division yielding a remainder have the same sign as
14910 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
14911 remainder follows the sign of the dividend.  Both methods are
14912 arithmetically valid, the latter being almost exclusively used.
14913
14914 @item -mtoplevel-symbols
14915 @itemx -mno-toplevel-symbols
14916 @opindex mtoplevel-symbols
14917 @opindex mno-toplevel-symbols
14918 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
14919 code can be used with the @code{PREFIX} assembly directive.
14920
14921 @item -melf
14922 @opindex melf
14923 Generate an executable in the ELF format, rather than the default
14924 @samp{mmo} format used by the @command{mmix} simulator.
14925
14926 @item -mbranch-predict
14927 @itemx -mno-branch-predict
14928 @opindex mbranch-predict
14929 @opindex mno-branch-predict
14930 Use (do not use) the probable-branch instructions, when static branch
14931 prediction indicates a probable branch.
14932
14933 @item -mbase-addresses
14934 @itemx -mno-base-addresses
14935 @opindex mbase-addresses
14936 @opindex mno-base-addresses
14937 Generate (do not generate) code that uses @emph{base addresses}.  Using a
14938 base address automatically generates a request (handled by the assembler
14939 and the linker) for a constant to be set up in a global register.  The
14940 register is used for one or more base address requests within the range 0
14941 to 255 from the value held in the register.  The generally leads to short
14942 and fast code, but the number of different data items that can be
14943 addressed is limited.  This means that a program that uses lots of static
14944 data may require @option{-mno-base-addresses}.
14945
14946 @item -msingle-exit
14947 @itemx -mno-single-exit
14948 @opindex msingle-exit
14949 @opindex mno-single-exit
14950 Force (do not force) generated code to have a single exit point in each
14951 function.
14952 @end table
14953
14954 @node MN10300 Options
14955 @subsection MN10300 Options
14956 @cindex MN10300 options
14957
14958 These @option{-m} options are defined for Matsushita MN10300 architectures:
14959
14960 @table @gcctabopt
14961 @item -mmult-bug
14962 @opindex mmult-bug
14963 Generate code to avoid bugs in the multiply instructions for the MN10300
14964 processors.  This is the default.
14965
14966 @item -mno-mult-bug
14967 @opindex mno-mult-bug
14968 Do not generate code to avoid bugs in the multiply instructions for the
14969 MN10300 processors.
14970
14971 @item -mam33
14972 @opindex mam33
14973 Generate code which uses features specific to the AM33 processor.
14974
14975 @item -mno-am33
14976 @opindex mno-am33
14977 Do not generate code which uses features specific to the AM33 processor.  This
14978 is the default.
14979
14980 @item -mam33-2
14981 @opindex mam33-2
14982 Generate code which uses features specific to the AM33/2.0 processor.
14983
14984 @item -mam34
14985 @opindex mam34
14986 Generate code which uses features specific to the AM34 processor.
14987
14988 @item -mtune=@var{cpu-type}
14989 @opindex mtune
14990 Use the timing characteristics of the indicated CPU type when
14991 scheduling instructions.  This does not change the targeted processor
14992 type.  The CPU type must be one of @samp{mn10300}, @samp{am33},
14993 @samp{am33-2} or @samp{am34}.
14994
14995 @item -mreturn-pointer-on-d0
14996 @opindex mreturn-pointer-on-d0
14997 When generating a function which returns a pointer, return the pointer
14998 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
14999 only in a0, and attempts to call such functions without a prototype
15000 would result in errors.  Note that this option is on by default; use
15001 @option{-mno-return-pointer-on-d0} to disable it.
15002
15003 @item -mno-crt0
15004 @opindex mno-crt0
15005 Do not link in the C run-time initialization object file.
15006
15007 @item -mrelax
15008 @opindex mrelax
15009 Indicate to the linker that it should perform a relaxation optimization pass
15010 to shorten branches, calls and absolute memory addresses.  This option only
15011 has an effect when used on the command line for the final link step.
15012
15013 This option makes symbolic debugging impossible.
15014
15015 @item -mliw
15016 @opindex mliw
15017 Allow the compiler to generate @emph{Long Instruction Word}
15018 instructions if the target is the @samp{AM33} or later.  This is the
15019 default.  This option defines the preprocessor macro @samp{__LIW__}.
15020
15021 @item -mnoliw
15022 @opindex mnoliw
15023 Do not allow the compiler to generate @emph{Long Instruction Word}
15024 instructions.  This option defines the preprocessor macro
15025 @samp{__NO_LIW__}.
15026
15027 @item -msetlb
15028 @opindex msetlb
15029 Allow the compiler to generate the @emph{SETLB} and @emph{Lcc}
15030 instructions if the target is the @samp{AM33} or later.  This is the
15031 default.  This option defines the preprocessor macro @samp{__SETLB__}.
15032
15033 @item -mnosetlb
15034 @opindex mnosetlb
15035 Do not allow the compiler to generate @emph{SETLB} or @emph{Lcc}
15036 instructions.  This option defines the preprocessor macro
15037 @samp{__NO_SETLB__}.
15038
15039 @end table
15040
15041 @node PDP-11 Options
15042 @subsection PDP-11 Options
15043 @cindex PDP-11 Options
15044
15045 These options are defined for the PDP-11:
15046
15047 @table @gcctabopt
15048 @item -mfpu
15049 @opindex mfpu
15050 Use hardware FPP floating point.  This is the default.  (FIS floating
15051 point on the PDP-11/40 is not supported.)
15052
15053 @item -msoft-float
15054 @opindex msoft-float
15055 Do not use hardware floating point.
15056
15057 @item -mac0
15058 @opindex mac0
15059 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
15060
15061 @item -mno-ac0
15062 @opindex mno-ac0
15063 Return floating-point results in memory.  This is the default.
15064
15065 @item -m40
15066 @opindex m40
15067 Generate code for a PDP-11/40.
15068
15069 @item -m45
15070 @opindex m45
15071 Generate code for a PDP-11/45.  This is the default.
15072
15073 @item -m10
15074 @opindex m10
15075 Generate code for a PDP-11/10.
15076
15077 @item -mbcopy-builtin
15078 @opindex mbcopy-builtin
15079 Use inline @code{movmemhi} patterns for copying memory.  This is the
15080 default.
15081
15082 @item -mbcopy
15083 @opindex mbcopy
15084 Do not use inline @code{movmemhi} patterns for copying memory.
15085
15086 @item -mint16
15087 @itemx -mno-int32
15088 @opindex mint16
15089 @opindex mno-int32
15090 Use 16-bit @code{int}.  This is the default.
15091
15092 @item -mint32
15093 @itemx -mno-int16
15094 @opindex mint32
15095 @opindex mno-int16
15096 Use 32-bit @code{int}.
15097
15098 @item -mfloat64
15099 @itemx -mno-float32
15100 @opindex mfloat64
15101 @opindex mno-float32
15102 Use 64-bit @code{float}.  This is the default.
15103
15104 @item -mfloat32
15105 @itemx -mno-float64
15106 @opindex mfloat32
15107 @opindex mno-float64
15108 Use 32-bit @code{float}.
15109
15110 @item -mabshi
15111 @opindex mabshi
15112 Use @code{abshi2} pattern.  This is the default.
15113
15114 @item -mno-abshi
15115 @opindex mno-abshi
15116 Do not use @code{abshi2} pattern.
15117
15118 @item -mbranch-expensive
15119 @opindex mbranch-expensive
15120 Pretend that branches are expensive.  This is for experimenting with
15121 code generation only.
15122
15123 @item -mbranch-cheap
15124 @opindex mbranch-cheap
15125 Do not pretend that branches are expensive.  This is the default.
15126
15127 @item -munix-asm
15128 @opindex munix-asm
15129 Use Unix assembler syntax.  This is the default when configured for
15130 @samp{pdp11-*-bsd}.
15131
15132 @item -mdec-asm
15133 @opindex mdec-asm
15134 Use DEC assembler syntax.  This is the default when configured for any
15135 PDP-11 target other than @samp{pdp11-*-bsd}.
15136 @end table
15137
15138 @node picoChip Options
15139 @subsection picoChip Options
15140 @cindex picoChip options
15141
15142 These @samp{-m} options are defined for picoChip implementations:
15143
15144 @table @gcctabopt
15145
15146 @item -mae=@var{ae_type}
15147 @opindex mcpu
15148 Set the instruction set, register set, and instruction scheduling
15149 parameters for array element type @var{ae_type}.  Supported values
15150 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
15151
15152 @option{-mae=ANY} selects a completely generic AE type.  Code
15153 generated with this option will run on any of the other AE types.  The
15154 code will not be as efficient as it would be if compiled for a specific
15155 AE type, and some types of operation (e.g., multiplication) will not
15156 work properly on all types of AE.
15157
15158 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
15159 for compiled code, and is the default.
15160
15161 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
15162 option may suffer from poor performance of byte (char) manipulation,
15163 since the DSP AE does not provide hardware support for byte load/stores.
15164
15165 @item -msymbol-as-address
15166 Enable the compiler to directly use a symbol name as an address in a
15167 load/store instruction, without first loading it into a
15168 register.  Typically, the use of this option will generate larger
15169 programs, which run faster than when the option isn't used.  However, the
15170 results vary from program to program, so it is left as a user option,
15171 rather than being permanently enabled.
15172
15173 @item -mno-inefficient-warnings
15174 Disables warnings about the generation of inefficient code.  These
15175 warnings can be generated, for example, when compiling code which
15176 performs byte-level memory operations on the MAC AE type.  The MAC AE has
15177 no hardware support for byte-level memory operations, so all byte
15178 load/stores must be synthesized from word load/store operations.  This is
15179 inefficient and a warning will be generated indicating to the programmer
15180 that they should rewrite the code to avoid byte operations, or to target
15181 an AE type which has the necessary hardware support.  This option enables
15182 the warning to be turned off.
15183
15184 @end table
15185
15186 @node PowerPC Options
15187 @subsection PowerPC Options
15188 @cindex PowerPC options
15189
15190 These are listed under @xref{RS/6000 and PowerPC Options}.
15191
15192 @node RS/6000 and PowerPC Options
15193 @subsection IBM RS/6000 and PowerPC Options
15194 @cindex RS/6000 and PowerPC Options
15195 @cindex IBM RS/6000 and PowerPC Options
15196
15197 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
15198 @table @gcctabopt
15199 @item -mpower
15200 @itemx -mno-power
15201 @itemx -mpower2
15202 @itemx -mno-power2
15203 @itemx -mpowerpc
15204 @itemx -mno-powerpc
15205 @itemx -mpowerpc-gpopt
15206 @itemx -mno-powerpc-gpopt
15207 @itemx -mpowerpc-gfxopt
15208 @itemx -mno-powerpc-gfxopt
15209 @need 800
15210 @itemx -mpowerpc64
15211 @itemx -mno-powerpc64
15212 @itemx -mmfcrf
15213 @itemx -mno-mfcrf
15214 @itemx -mpopcntb
15215 @itemx -mno-popcntb
15216 @itemx -mpopcntd
15217 @itemx -mno-popcntd
15218 @itemx -mfprnd
15219 @itemx -mno-fprnd
15220 @need 800
15221 @itemx -mcmpb
15222 @itemx -mno-cmpb
15223 @itemx -mmfpgpr
15224 @itemx -mno-mfpgpr
15225 @itemx -mhard-dfp
15226 @itemx -mno-hard-dfp
15227 @opindex mpower
15228 @opindex mno-power
15229 @opindex mpower2
15230 @opindex mno-power2
15231 @opindex mpowerpc
15232 @opindex mno-powerpc
15233 @opindex mpowerpc-gpopt
15234 @opindex mno-powerpc-gpopt
15235 @opindex mpowerpc-gfxopt
15236 @opindex mno-powerpc-gfxopt
15237 @opindex mpowerpc64
15238 @opindex mno-powerpc64
15239 @opindex mmfcrf
15240 @opindex mno-mfcrf
15241 @opindex mpopcntb
15242 @opindex mno-popcntb
15243 @opindex mpopcntd
15244 @opindex mno-popcntd
15245 @opindex mfprnd
15246 @opindex mno-fprnd
15247 @opindex mcmpb
15248 @opindex mno-cmpb
15249 @opindex mmfpgpr
15250 @opindex mno-mfpgpr
15251 @opindex mhard-dfp
15252 @opindex mno-hard-dfp
15253 GCC supports two related instruction set architectures for the
15254 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
15255 instructions supported by the @samp{rios} chip set used in the original
15256 RS/6000 systems and the @dfn{PowerPC} instruction set is the
15257 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
15258 the IBM 4xx, 6xx, and follow-on microprocessors.
15259
15260 Neither architecture is a subset of the other.  However there is a
15261 large common subset of instructions supported by both.  An MQ
15262 register is included in processors supporting the POWER architecture.
15263
15264 You use these options to specify which instructions are available on the
15265 processor you are using.  The default value of these options is
15266 determined when configuring GCC@.  Specifying the
15267 @option{-mcpu=@var{cpu_type}} overrides the specification of these
15268 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
15269 rather than the options listed above.
15270
15271 The @option{-mpower} option allows GCC to generate instructions that
15272 are found only in the POWER architecture and to use the MQ register.
15273 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
15274 to generate instructions that are present in the POWER2 architecture but
15275 not the original POWER architecture.
15276
15277 The @option{-mpowerpc} option allows GCC to generate instructions that
15278 are found only in the 32-bit subset of the PowerPC architecture.
15279 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
15280 GCC to use the optional PowerPC architecture instructions in the
15281 General Purpose group, including floating-point square root.  Specifying
15282 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
15283 use the optional PowerPC architecture instructions in the Graphics
15284 group, including floating-point select.
15285
15286 The @option{-mmfcrf} option allows GCC to generate the move from
15287 condition register field instruction implemented on the POWER4
15288 processor and other processors that support the PowerPC V2.01
15289 architecture.
15290 The @option{-mpopcntb} option allows GCC to generate the popcount and
15291 double precision FP reciprocal estimate instruction implemented on the
15292 POWER5 processor and other processors that support the PowerPC V2.02
15293 architecture.
15294 The @option{-mpopcntd} option allows GCC to generate the popcount
15295 instruction implemented on the POWER7 processor and other processors
15296 that support the PowerPC V2.06 architecture.
15297 The @option{-mfprnd} option allows GCC to generate the FP round to
15298 integer instructions implemented on the POWER5+ processor and other
15299 processors that support the PowerPC V2.03 architecture.
15300 The @option{-mcmpb} option allows GCC to generate the compare bytes
15301 instruction implemented on the POWER6 processor and other processors
15302 that support the PowerPC V2.05 architecture.
15303 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
15304 general purpose register instructions implemented on the POWER6X
15305 processor and other processors that support the extended PowerPC V2.05
15306 architecture.
15307 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
15308 point instructions implemented on some POWER processors.
15309
15310 The @option{-mpowerpc64} option allows GCC to generate the additional
15311 64-bit instructions that are found in the full PowerPC64 architecture
15312 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
15313 @option{-mno-powerpc64}.
15314
15315 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
15316 will use only the instructions in the common subset of both
15317 architectures plus some special AIX common-mode calls, and will not use
15318 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
15319 permits GCC to use any instruction from either architecture and to
15320 allow use of the MQ register; specify this for the Motorola MPC601.
15321
15322 @item -mnew-mnemonics
15323 @itemx -mold-mnemonics
15324 @opindex mnew-mnemonics
15325 @opindex mold-mnemonics
15326 Select which mnemonics to use in the generated assembler code.  With
15327 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
15328 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
15329 assembler mnemonics defined for the POWER architecture.  Instructions
15330 defined in only one architecture have only one mnemonic; GCC uses that
15331 mnemonic irrespective of which of these options is specified.
15332
15333 GCC defaults to the mnemonics appropriate for the architecture in
15334 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
15335 value of these option.  Unless you are building a cross-compiler, you
15336 should normally not specify either @option{-mnew-mnemonics} or
15337 @option{-mold-mnemonics}, but should instead accept the default.
15338
15339 @item -mcpu=@var{cpu_type}
15340 @opindex mcpu
15341 Set architecture type, register usage, choice of mnemonics, and
15342 instruction scheduling parameters for machine type @var{cpu_type}.
15343 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
15344 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
15345 @samp{476}, @samp{476fp}, @samp{505}, @samp{601}, @samp{602}, @samp{603},
15346 @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740},
15347 @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
15348 @samp{860}, @samp{970}, @samp{8540}, @samp{a2}, @samp{e300c2},
15349 @samp{e300c3}, @samp{e500mc}, @samp{e500mc64}, @samp{ec603e}, @samp{G3},
15350 @samp{G4}, @samp{G5}, @samp{titan}, @samp{power}, @samp{power2}, @samp{power3},
15351 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x},
15352 @samp{power7}, @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
15353 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
15354
15355 @option{-mcpu=common} selects a completely generic processor.  Code
15356 generated under this option will run on any POWER or PowerPC processor.
15357 GCC will use only the instructions in the common subset of both
15358 architectures, and will not use the MQ register.  GCC assumes a generic
15359 processor model for scheduling purposes.
15360
15361 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
15362 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
15363 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
15364 types, with an appropriate, generic processor model assumed for
15365 scheduling purposes.
15366
15367 The other options specify a specific processor.  Code generated under
15368 those options will run best on that processor, and may not run at all on
15369 others.
15370
15371 The @option{-mcpu} options automatically enable or disable the
15372 following options:
15373
15374 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
15375 -mnew-mnemonics  -mpopcntb -mpopcntd  -mpower  -mpower2  -mpowerpc64 @gol
15376 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
15377 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr -mvsx}
15378
15379 The particular options set for any particular CPU will vary between
15380 compiler versions, depending on what setting seems to produce optimal
15381 code for that CPU; it doesn't necessarily reflect the actual hardware's
15382 capabilities.  If you wish to set an individual option to a particular
15383 value, you may specify it after the @option{-mcpu} option, like
15384 @samp{-mcpu=970 -mno-altivec}.
15385
15386 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
15387 not enabled or disabled by the @option{-mcpu} option at present because
15388 AIX does not have full support for these options.  You may still
15389 enable or disable them individually if you're sure it'll work in your
15390 environment.
15391
15392 @item -mtune=@var{cpu_type}
15393 @opindex mtune
15394 Set the instruction scheduling parameters for machine type
15395 @var{cpu_type}, but do not set the architecture type, register usage, or
15396 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
15397 values for @var{cpu_type} are used for @option{-mtune} as for
15398 @option{-mcpu}.  If both are specified, the code generated will use the
15399 architecture, registers, and mnemonics set by @option{-mcpu}, but the
15400 scheduling parameters set by @option{-mtune}.
15401
15402 @item -mcmodel=small
15403 @opindex mcmodel=small
15404 Generate PowerPC64 code for the small model: The TOC is limited to
15405 64k.
15406
15407 @item -mcmodel=medium
15408 @opindex mcmodel=medium
15409 Generate PowerPC64 code for the medium model: The TOC and other static
15410 data may be up to a total of 4G in size.
15411
15412 @item -mcmodel=large
15413 @opindex mcmodel=large
15414 Generate PowerPC64 code for the large model: The TOC may be up to 4G
15415 in size.  Other data and code is only limited by the 64-bit address
15416 space.
15417
15418 @item -maltivec
15419 @itemx -mno-altivec
15420 @opindex maltivec
15421 @opindex mno-altivec
15422 Generate code that uses (does not use) AltiVec instructions, and also
15423 enable the use of built-in functions that allow more direct access to
15424 the AltiVec instruction set.  You may also need to set
15425 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
15426 enhancements.
15427
15428 @item -mvrsave
15429 @itemx -mno-vrsave
15430 @opindex mvrsave
15431 @opindex mno-vrsave
15432 Generate VRSAVE instructions when generating AltiVec code.
15433
15434 @item -mgen-cell-microcode
15435 @opindex mgen-cell-microcode
15436 Generate Cell microcode instructions
15437
15438 @item -mwarn-cell-microcode
15439 @opindex mwarn-cell-microcode
15440 Warning when a Cell microcode instruction is going to emitted.  An example
15441 of a Cell microcode instruction is a variable shift.
15442
15443 @item -msecure-plt
15444 @opindex msecure-plt
15445 Generate code that allows ld and ld.so to build executables and shared
15446 libraries with non-exec .plt and .got sections.  This is a PowerPC
15447 32-bit SYSV ABI option.
15448
15449 @item -mbss-plt
15450 @opindex mbss-plt
15451 Generate code that uses a BSS .plt section that ld.so fills in, and
15452 requires .plt and .got sections that are both writable and executable.
15453 This is a PowerPC 32-bit SYSV ABI option.
15454
15455 @item -misel
15456 @itemx -mno-isel
15457 @opindex misel
15458 @opindex mno-isel
15459 This switch enables or disables the generation of ISEL instructions.
15460
15461 @item -misel=@var{yes/no}
15462 This switch has been deprecated.  Use @option{-misel} and
15463 @option{-mno-isel} instead.
15464
15465 @item -mspe
15466 @itemx -mno-spe
15467 @opindex mspe
15468 @opindex mno-spe
15469 This switch enables or disables the generation of SPE simd
15470 instructions.
15471
15472 @item -mpaired
15473 @itemx -mno-paired
15474 @opindex mpaired
15475 @opindex mno-paired
15476 This switch enables or disables the generation of PAIRED simd
15477 instructions.
15478
15479 @item -mspe=@var{yes/no}
15480 This option has been deprecated.  Use @option{-mspe} and
15481 @option{-mno-spe} instead.
15482
15483 @item -mvsx
15484 @itemx -mno-vsx
15485 @opindex mvsx
15486 @opindex mno-vsx
15487 Generate code that uses (does not use) vector/scalar (VSX)
15488 instructions, and also enable the use of built-in functions that allow
15489 more direct access to the VSX instruction set.
15490
15491 @item -mfloat-gprs=@var{yes/single/double/no}
15492 @itemx -mfloat-gprs
15493 @opindex mfloat-gprs
15494 This switch enables or disables the generation of floating point
15495 operations on the general purpose registers for architectures that
15496 support it.
15497
15498 The argument @var{yes} or @var{single} enables the use of
15499 single-precision floating point operations.
15500
15501 The argument @var{double} enables the use of single and
15502 double-precision floating point operations.
15503
15504 The argument @var{no} disables floating point operations on the
15505 general purpose registers.
15506
15507 This option is currently only available on the MPC854x.
15508
15509 @item -m32
15510 @itemx -m64
15511 @opindex m32
15512 @opindex m64
15513 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
15514 targets (including GNU/Linux).  The 32-bit environment sets int, long
15515 and pointer to 32 bits and generates code that runs on any PowerPC
15516 variant.  The 64-bit environment sets int to 32 bits and long and
15517 pointer to 64 bits, and generates code for PowerPC64, as for
15518 @option{-mpowerpc64}.
15519
15520 @item -mfull-toc
15521 @itemx -mno-fp-in-toc
15522 @itemx -mno-sum-in-toc
15523 @itemx -mminimal-toc
15524 @opindex mfull-toc
15525 @opindex mno-fp-in-toc
15526 @opindex mno-sum-in-toc
15527 @opindex mminimal-toc
15528 Modify generation of the TOC (Table Of Contents), which is created for
15529 every executable file.  The @option{-mfull-toc} option is selected by
15530 default.  In that case, GCC will allocate at least one TOC entry for
15531 each unique non-automatic variable reference in your program.  GCC
15532 will also place floating-point constants in the TOC@.  However, only
15533 16,384 entries are available in the TOC@.
15534
15535 If you receive a linker error message that saying you have overflowed
15536 the available TOC space, you can reduce the amount of TOC space used
15537 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
15538 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
15539 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
15540 generate code to calculate the sum of an address and a constant at
15541 run-time instead of putting that sum into the TOC@.  You may specify one
15542 or both of these options.  Each causes GCC to produce very slightly
15543 slower and larger code at the expense of conserving TOC space.
15544
15545 If you still run out of space in the TOC even when you specify both of
15546 these options, specify @option{-mminimal-toc} instead.  This option causes
15547 GCC to make only one TOC entry for every file.  When you specify this
15548 option, GCC will produce code that is slower and larger but which
15549 uses extremely little TOC space.  You may wish to use this option
15550 only on files that contain less frequently executed code.
15551
15552 @item -maix64
15553 @itemx -maix32
15554 @opindex maix64
15555 @opindex maix32
15556 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
15557 @code{long} type, and the infrastructure needed to support them.
15558 Specifying @option{-maix64} implies @option{-mpowerpc64} and
15559 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
15560 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
15561
15562 @item -mxl-compat
15563 @itemx -mno-xl-compat
15564 @opindex mxl-compat
15565 @opindex mno-xl-compat
15566 Produce code that conforms more closely to IBM XL compiler semantics
15567 when using AIX-compatible ABI@.  Pass floating-point arguments to
15568 prototyped functions beyond the register save area (RSA) on the stack
15569 in addition to argument FPRs.  Do not assume that most significant
15570 double in 128-bit long double value is properly rounded when comparing
15571 values and converting to double.  Use XL symbol names for long double
15572 support routines.
15573
15574 The AIX calling convention was extended but not initially documented to
15575 handle an obscure K&R C case of calling a function that takes the
15576 address of its arguments with fewer arguments than declared.  IBM XL
15577 compilers access floating point arguments which do not fit in the
15578 RSA from the stack when a subroutine is compiled without
15579 optimization.  Because always storing floating-point arguments on the
15580 stack is inefficient and rarely needed, this option is not enabled by
15581 default and only is necessary when calling subroutines compiled by IBM
15582 XL compilers without optimization.
15583
15584 @item -mpe
15585 @opindex mpe
15586 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
15587 application written to use message passing with special startup code to
15588 enable the application to run.  The system must have PE installed in the
15589 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
15590 must be overridden with the @option{-specs=} option to specify the
15591 appropriate directory location.  The Parallel Environment does not
15592 support threads, so the @option{-mpe} option and the @option{-pthread}
15593 option are incompatible.
15594
15595 @item -malign-natural
15596 @itemx -malign-power
15597 @opindex malign-natural
15598 @opindex malign-power
15599 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
15600 @option{-malign-natural} overrides the ABI-defined alignment of larger
15601 types, such as floating-point doubles, on their natural size-based boundary.
15602 The option @option{-malign-power} instructs GCC to follow the ABI-specified
15603 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
15604
15605 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
15606 is not supported.
15607
15608 @item -msoft-float
15609 @itemx -mhard-float
15610 @opindex msoft-float
15611 @opindex mhard-float
15612 Generate code that does not use (uses) the floating-point register set.
15613 Software floating point emulation is provided if you use the
15614 @option{-msoft-float} option, and pass the option to GCC when linking.
15615
15616 @item -msingle-float
15617 @itemx -mdouble-float
15618 @opindex msingle-float
15619 @opindex mdouble-float
15620 Generate code for single or double-precision floating point operations.
15621 @option{-mdouble-float} implies @option{-msingle-float}.
15622
15623 @item -msimple-fpu
15624 @opindex msimple-fpu
15625 Do not generate sqrt and div instructions for hardware floating point unit.
15626
15627 @item -mfpu
15628 @opindex mfpu
15629 Specify type of floating point unit.  Valid values are @var{sp_lite}
15630 (equivalent to -msingle-float -msimple-fpu), @var{dp_lite} (equivalent
15631 to -mdouble-float -msimple-fpu), @var{sp_full} (equivalent to -msingle-float),
15632 and @var{dp_full} (equivalent to -mdouble-float).
15633
15634 @item -mxilinx-fpu
15635 @opindex mxilinx-fpu
15636 Perform optimizations for floating point unit on Xilinx PPC 405/440.
15637
15638 @item -mmultiple
15639 @itemx -mno-multiple
15640 @opindex mmultiple
15641 @opindex mno-multiple
15642 Generate code that uses (does not use) the load multiple word
15643 instructions and the store multiple word instructions.  These
15644 instructions are generated by default on POWER systems, and not
15645 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
15646 endian PowerPC systems, since those instructions do not work when the
15647 processor is in little endian mode.  The exceptions are PPC740 and
15648 PPC750 which permit the instructions usage in little endian mode.
15649
15650 @item -mstring
15651 @itemx -mno-string
15652 @opindex mstring
15653 @opindex mno-string
15654 Generate code that uses (does not use) the load string instructions
15655 and the store string word instructions to save multiple registers and
15656 do small block moves.  These instructions are generated by default on
15657 POWER systems, and not generated on PowerPC systems.  Do not use
15658 @option{-mstring} on little endian PowerPC systems, since those
15659 instructions do not work when the processor is in little endian mode.
15660 The exceptions are PPC740 and PPC750 which permit the instructions
15661 usage in little endian mode.
15662
15663 @item -mupdate
15664 @itemx -mno-update
15665 @opindex mupdate
15666 @opindex mno-update
15667 Generate code that uses (does not use) the load or store instructions
15668 that update the base register to the address of the calculated memory
15669 location.  These instructions are generated by default.  If you use
15670 @option{-mno-update}, there is a small window between the time that the
15671 stack pointer is updated and the address of the previous frame is
15672 stored, which means code that walks the stack frame across interrupts or
15673 signals may get corrupted data.
15674
15675 @item -mavoid-indexed-addresses
15676 @itemx -mno-avoid-indexed-addresses
15677 @opindex mavoid-indexed-addresses
15678 @opindex mno-avoid-indexed-addresses
15679 Generate code that tries to avoid (not avoid) the use of indexed load
15680 or store instructions. These instructions can incur a performance
15681 penalty on Power6 processors in certain situations, such as when
15682 stepping through large arrays that cross a 16M boundary.  This option
15683 is enabled by default when targetting Power6 and disabled otherwise.
15684
15685 @item -mfused-madd
15686 @itemx -mno-fused-madd
15687 @opindex mfused-madd
15688 @opindex mno-fused-madd
15689 Generate code that uses (does not use) the floating point multiply and
15690 accumulate instructions.  These instructions are generated by default
15691 if hardware floating point is used.  The machine dependent
15692 @option{-mfused-madd} option is now mapped to the machine independent
15693 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
15694 mapped to @option{-ffp-contract=off}.
15695
15696 @item -mmulhw
15697 @itemx -mno-mulhw
15698 @opindex mmulhw
15699 @opindex mno-mulhw
15700 Generate code that uses (does not use) the half-word multiply and
15701 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
15702 These instructions are generated by default when targetting those
15703 processors.
15704
15705 @item -mdlmzb
15706 @itemx -mno-dlmzb
15707 @opindex mdlmzb
15708 @opindex mno-dlmzb
15709 Generate code that uses (does not use) the string-search @samp{dlmzb}
15710 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
15711 generated by default when targetting those processors.
15712
15713 @item -mno-bit-align
15714 @itemx -mbit-align
15715 @opindex mno-bit-align
15716 @opindex mbit-align
15717 On System V.4 and embedded PowerPC systems do not (do) force structures
15718 and unions that contain bit-fields to be aligned to the base type of the
15719 bit-field.
15720
15721 For example, by default a structure containing nothing but 8
15722 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
15723 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
15724 the structure would be aligned to a 1 byte boundary and be one byte in
15725 size.
15726
15727 @item -mno-strict-align
15728 @itemx -mstrict-align
15729 @opindex mno-strict-align
15730 @opindex mstrict-align
15731 On System V.4 and embedded PowerPC systems do not (do) assume that
15732 unaligned memory references will be handled by the system.
15733
15734 @item -mrelocatable
15735 @itemx -mno-relocatable
15736 @opindex mrelocatable
15737 @opindex mno-relocatable
15738 Generate code that allows (does not allow) a static executable to be
15739 relocated to a different address at runtime.  A simple embedded
15740 PowerPC system loader should relocate the entire contents of
15741 @code{.got2} and 4-byte locations listed in the @code{.fixup} section,
15742 a table of 32-bit addresses generated by this option.  For this to
15743 work, all objects linked together must be compiled with
15744 @option{-mrelocatable} or @option{-mrelocatable-lib}.
15745 @option{-mrelocatable} code aligns the stack to an 8 byte boundary.
15746
15747 @item -mrelocatable-lib
15748 @itemx -mno-relocatable-lib
15749 @opindex mrelocatable-lib
15750 @opindex mno-relocatable-lib
15751 Like @option{-mrelocatable}, @option{-mrelocatable-lib} generates a
15752 @code{.fixup} section to allow static executables to be relocated at
15753 runtime, but @option{-mrelocatable-lib} does not use the smaller stack
15754 alignment of @option{-mrelocatable}.  Objects compiled with
15755 @option{-mrelocatable-lib} may be linked with objects compiled with
15756 any combination of the @option{-mrelocatable} options.
15757
15758 @item -mno-toc
15759 @itemx -mtoc
15760 @opindex mno-toc
15761 @opindex mtoc
15762 On System V.4 and embedded PowerPC systems do not (do) assume that
15763 register 2 contains a pointer to a global area pointing to the addresses
15764 used in the program.
15765
15766 @item -mlittle
15767 @itemx -mlittle-endian
15768 @opindex mlittle
15769 @opindex mlittle-endian
15770 On System V.4 and embedded PowerPC systems compile code for the
15771 processor in little endian mode.  The @option{-mlittle-endian} option is
15772 the same as @option{-mlittle}.
15773
15774 @item -mbig
15775 @itemx -mbig-endian
15776 @opindex mbig
15777 @opindex mbig-endian
15778 On System V.4 and embedded PowerPC systems compile code for the
15779 processor in big endian mode.  The @option{-mbig-endian} option is
15780 the same as @option{-mbig}.
15781
15782 @item -mdynamic-no-pic
15783 @opindex mdynamic-no-pic
15784 On Darwin and Mac OS X systems, compile code so that it is not
15785 relocatable, but that its external references are relocatable.  The
15786 resulting code is suitable for applications, but not shared
15787 libraries.
15788
15789 @item -msingle-pic-base
15790 @opindex msingle-pic-base
15791 Treat the register used for PIC addressing as read-only, rather than
15792 loading it in the prologue for each function.  The run-time system is
15793 responsible for initializing this register with an appropriate value
15794 before execution begins.
15795
15796 @item -mprioritize-restricted-insns=@var{priority}
15797 @opindex mprioritize-restricted-insns
15798 This option controls the priority that is assigned to
15799 dispatch-slot restricted instructions during the second scheduling
15800 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
15801 @var{no/highest/second-highest} priority to dispatch slot restricted
15802 instructions.
15803
15804 @item -msched-costly-dep=@var{dependence_type}
15805 @opindex msched-costly-dep
15806 This option controls which dependences are considered costly
15807 by the target during instruction scheduling.  The argument
15808 @var{dependence_type} takes one of the following values:
15809 @var{no}: no dependence is costly,
15810 @var{all}: all dependences are costly,
15811 @var{true_store_to_load}: a true dependence from store to load is costly,
15812 @var{store_to_load}: any dependence from store to load is costly,
15813 @var{number}: any dependence which latency >= @var{number} is costly.
15814
15815 @item -minsert-sched-nops=@var{scheme}
15816 @opindex minsert-sched-nops
15817 This option controls which nop insertion scheme will be used during
15818 the second scheduling pass.  The argument @var{scheme} takes one of the
15819 following values:
15820 @var{no}: Don't insert nops.
15821 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
15822 according to the scheduler's grouping.
15823 @var{regroup_exact}: Insert nops to force costly dependent insns into
15824 separate groups.  Insert exactly as many nops as needed to force an insn
15825 to a new group, according to the estimated processor grouping.
15826 @var{number}: Insert nops to force costly dependent insns into
15827 separate groups.  Insert @var{number} nops to force an insn to a new group.
15828
15829 @item -mcall-sysv
15830 @opindex mcall-sysv
15831 On System V.4 and embedded PowerPC systems compile code using calling
15832 conventions that adheres to the March 1995 draft of the System V
15833 Application Binary Interface, PowerPC processor supplement.  This is the
15834 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
15835
15836 @item -mcall-sysv-eabi
15837 @itemx -mcall-eabi
15838 @opindex mcall-sysv-eabi
15839 @opindex mcall-eabi
15840 Specify both @option{-mcall-sysv} and @option{-meabi} options.
15841
15842 @item -mcall-sysv-noeabi
15843 @opindex mcall-sysv-noeabi
15844 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
15845
15846 @item -mcall-aixdesc
15847 @opindex m
15848 On System V.4 and embedded PowerPC systems compile code for the AIX
15849 operating system.
15850
15851 @item -mcall-linux
15852 @opindex mcall-linux
15853 On System V.4 and embedded PowerPC systems compile code for the
15854 Linux-based GNU system.
15855
15856 @item -mcall-freebsd
15857 @opindex mcall-freebsd
15858 On System V.4 and embedded PowerPC systems compile code for the
15859 FreeBSD operating system.
15860
15861 @item -mcall-netbsd
15862 @opindex mcall-netbsd
15863 On System V.4 and embedded PowerPC systems compile code for the
15864 NetBSD operating system.
15865
15866 @item -mcall-openbsd
15867 @opindex mcall-netbsd
15868 On System V.4 and embedded PowerPC systems compile code for the
15869 OpenBSD operating system.
15870
15871 @item -maix-struct-return
15872 @opindex maix-struct-return
15873 Return all structures in memory (as specified by the AIX ABI)@.
15874
15875 @item -msvr4-struct-return
15876 @opindex msvr4-struct-return
15877 Return structures smaller than 8 bytes in registers (as specified by the
15878 SVR4 ABI)@.
15879
15880 @item -mabi=@var{abi-type}
15881 @opindex mabi
15882 Extend the current ABI with a particular extension, or remove such extension.
15883 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
15884 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
15885
15886 @item -mabi=spe
15887 @opindex mabi=spe
15888 Extend the current ABI with SPE ABI extensions.  This does not change
15889 the default ABI, instead it adds the SPE ABI extensions to the current
15890 ABI@.
15891
15892 @item -mabi=no-spe
15893 @opindex mabi=no-spe
15894 Disable Booke SPE ABI extensions for the current ABI@.
15895
15896 @item -mabi=ibmlongdouble
15897 @opindex mabi=ibmlongdouble
15898 Change the current ABI to use IBM extended precision long double.
15899 This is a PowerPC 32-bit SYSV ABI option.
15900
15901 @item -mabi=ieeelongdouble
15902 @opindex mabi=ieeelongdouble
15903 Change the current ABI to use IEEE extended precision long double.
15904 This is a PowerPC 32-bit Linux ABI option.
15905
15906 @item -mprototype
15907 @itemx -mno-prototype
15908 @opindex mprototype
15909 @opindex mno-prototype
15910 On System V.4 and embedded PowerPC systems assume that all calls to
15911 variable argument functions are properly prototyped.  Otherwise, the
15912 compiler must insert an instruction before every non prototyped call to
15913 set or clear bit 6 of the condition code register (@var{CR}) to
15914 indicate whether floating point values were passed in the floating point
15915 registers in case the function takes a variable arguments.  With
15916 @option{-mprototype}, only calls to prototyped variable argument functions
15917 will set or clear the bit.
15918
15919 @item -msim
15920 @opindex msim
15921 On embedded PowerPC systems, assume that the startup module is called
15922 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
15923 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
15924 configurations.
15925
15926 @item -mmvme
15927 @opindex mmvme
15928 On embedded PowerPC systems, assume that the startup module is called
15929 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
15930 @file{libc.a}.
15931
15932 @item -mads
15933 @opindex mads
15934 On embedded PowerPC systems, assume that the startup module is called
15935 @file{crt0.o} and the standard C libraries are @file{libads.a} and
15936 @file{libc.a}.
15937
15938 @item -myellowknife
15939 @opindex myellowknife
15940 On embedded PowerPC systems, assume that the startup module is called
15941 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
15942 @file{libc.a}.
15943
15944 @item -mvxworks
15945 @opindex mvxworks
15946 On System V.4 and embedded PowerPC systems, specify that you are
15947 compiling for a VxWorks system.
15948
15949 @item -memb
15950 @opindex memb
15951 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
15952 header to indicate that @samp{eabi} extended relocations are used.
15953
15954 @item -meabi
15955 @itemx -mno-eabi
15956 @opindex meabi
15957 @opindex mno-eabi
15958 On System V.4 and embedded PowerPC systems do (do not) adhere to the
15959 Embedded Applications Binary Interface (eabi) which is a set of
15960 modifications to the System V.4 specifications.  Selecting @option{-meabi}
15961 means that the stack is aligned to an 8 byte boundary, a function
15962 @code{__eabi} is called to from @code{main} to set up the eabi
15963 environment, and the @option{-msdata} option can use both @code{r2} and
15964 @code{r13} to point to two separate small data areas.  Selecting
15965 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
15966 do not call an initialization function from @code{main}, and the
15967 @option{-msdata} option will only use @code{r13} to point to a single
15968 small data area.  The @option{-meabi} option is on by default if you
15969 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
15970
15971 @item -msdata=eabi
15972 @opindex msdata=eabi
15973 On System V.4 and embedded PowerPC systems, put small initialized
15974 @code{const} global and static data in the @samp{.sdata2} section, which
15975 is pointed to by register @code{r2}.  Put small initialized
15976 non-@code{const} global and static data in the @samp{.sdata} section,
15977 which is pointed to by register @code{r13}.  Put small uninitialized
15978 global and static data in the @samp{.sbss} section, which is adjacent to
15979 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
15980 incompatible with the @option{-mrelocatable} option.  The
15981 @option{-msdata=eabi} option also sets the @option{-memb} option.
15982
15983 @item -msdata=sysv
15984 @opindex msdata=sysv
15985 On System V.4 and embedded PowerPC systems, put small global and static
15986 data in the @samp{.sdata} section, which is pointed to by register
15987 @code{r13}.  Put small uninitialized global and static data in the
15988 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
15989 The @option{-msdata=sysv} option is incompatible with the
15990 @option{-mrelocatable} option.
15991
15992 @item -msdata=default
15993 @itemx -msdata
15994 @opindex msdata=default
15995 @opindex msdata
15996 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
15997 compile code the same as @option{-msdata=eabi}, otherwise compile code the
15998 same as @option{-msdata=sysv}.
15999
16000 @item -msdata=data
16001 @opindex msdata=data
16002 On System V.4 and embedded PowerPC systems, put small global
16003 data in the @samp{.sdata} section.  Put small uninitialized global
16004 data in the @samp{.sbss} section.  Do not use register @code{r13}
16005 to address small data however.  This is the default behavior unless
16006 other @option{-msdata} options are used.
16007
16008 @item -msdata=none
16009 @itemx -mno-sdata
16010 @opindex msdata=none
16011 @opindex mno-sdata
16012 On embedded PowerPC systems, put all initialized global and static data
16013 in the @samp{.data} section, and all uninitialized data in the
16014 @samp{.bss} section.
16015
16016 @item -mblock-move-inline-limit=@var{num}
16017 @opindex mblock-move-inline-limit
16018 Inline all block moves (such as calls to @code{memcpy} or structure
16019 copies) less than or equal to @var{num} bytes.  The minimum value for
16020 @var{num} is 32 bytes on 32-bit targets and 64 bytes on 64-bit
16021 targets.  The default value is target-specific.
16022
16023 @item -G @var{num}
16024 @opindex G
16025 @cindex smaller data references (PowerPC)
16026 @cindex .sdata/.sdata2 references (PowerPC)
16027 On embedded PowerPC systems, put global and static items less than or
16028 equal to @var{num} bytes into the small data or bss sections instead of
16029 the normal data or bss section.  By default, @var{num} is 8.  The
16030 @option{-G @var{num}} switch is also passed to the linker.
16031 All modules should be compiled with the same @option{-G @var{num}} value.
16032
16033 @item -mregnames
16034 @itemx -mno-regnames
16035 @opindex mregnames
16036 @opindex mno-regnames
16037 On System V.4 and embedded PowerPC systems do (do not) emit register
16038 names in the assembly language output using symbolic forms.
16039
16040 @item -mlongcall
16041 @itemx -mno-longcall
16042 @opindex mlongcall
16043 @opindex mno-longcall
16044 By default assume that all calls are far away so that a longer more
16045 expensive calling sequence is required.  This is required for calls
16046 further than 32 megabytes (33,554,432 bytes) from the current location.
16047 A short call will be generated if the compiler knows
16048 the call cannot be that far away.  This setting can be overridden by
16049 the @code{shortcall} function attribute, or by @code{#pragma
16050 longcall(0)}.
16051
16052 Some linkers are capable of detecting out-of-range calls and generating
16053 glue code on the fly.  On these systems, long calls are unnecessary and
16054 generate slower code.  As of this writing, the AIX linker can do this,
16055 as can the GNU linker for PowerPC/64.  It is planned to add this feature
16056 to the GNU linker for 32-bit PowerPC systems as well.
16057
16058 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
16059 callee, L42'', plus a ``branch island'' (glue code).  The two target
16060 addresses represent the callee and the ``branch island''.  The
16061 Darwin/PPC linker will prefer the first address and generate a ``bl
16062 callee'' if the PPC ``bl'' instruction will reach the callee directly;
16063 otherwise, the linker will generate ``bl L42'' to call the ``branch
16064 island''.  The ``branch island'' is appended to the body of the
16065 calling function; it computes the full 32-bit address of the callee
16066 and jumps to it.
16067
16068 On Mach-O (Darwin) systems, this option directs the compiler emit to
16069 the glue for every direct call, and the Darwin linker decides whether
16070 to use or discard it.
16071
16072 In the future, we may cause GCC to ignore all longcall specifications
16073 when the linker is known to generate glue.
16074
16075 @item -mtls-markers
16076 @itemx -mno-tls-markers
16077 @opindex mtls-markers
16078 @opindex mno-tls-markers
16079 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
16080 specifying the function argument.  The relocation allows ld to
16081 reliably associate function call with argument setup instructions for
16082 TLS optimization, which in turn allows gcc to better schedule the
16083 sequence.
16084
16085 @item -pthread
16086 @opindex pthread
16087 Adds support for multithreading with the @dfn{pthreads} library.
16088 This option sets flags for both the preprocessor and linker.
16089
16090 @item -mrecip
16091 @itemx -mno-recip
16092 @opindex mrecip
16093 This option will enable GCC to use the reciprocal estimate and
16094 reciprocal square root estimate instructions with additional
16095 Newton-Raphson steps to increase precision instead of doing a divide or
16096 square root and divide for floating point arguments.  You should use
16097 the @option{-ffast-math} option when using @option{-mrecip} (or at
16098 least @option{-funsafe-math-optimizations},
16099 @option{-finite-math-only}, @option{-freciprocal-math} and
16100 @option{-fno-trapping-math}).  Note that while the throughput of the
16101 sequence is generally higher than the throughput of the non-reciprocal
16102 instruction, the precision of the sequence can be decreased by up to 2
16103 ulp (i.e. the inverse of 1.0 equals 0.99999994) for reciprocal square
16104 roots.
16105
16106 @item -mrecip=@var{opt}
16107 @opindex mrecip=opt
16108 This option allows to control which reciprocal estimate instructions
16109 may be used.  @var{opt} is a comma separated list of options, that may
16110 be preceded by a @code{!} to invert the option:
16111 @code{all}: enable all estimate instructions,
16112 @code{default}: enable the default instructions, equivalent to @option{-mrecip},
16113 @code{none}: disable all estimate instructions, equivalent to @option{-mno-recip};
16114 @code{div}: enable the reciprocal approximation instructions for both single and double precision;
16115 @code{divf}: enable the single precision reciprocal approximation instructions;
16116 @code{divd}: enable the double precision reciprocal approximation instructions;
16117 @code{rsqrt}: enable the reciprocal square root approximation instructions for both single and double precision;
16118 @code{rsqrtf}: enable the single precision reciprocal square root approximation instructions;
16119 @code{rsqrtd}: enable the double precision reciprocal square root approximation instructions;
16120
16121 So for example, @option{-mrecip=all,!rsqrtd} would enable the
16122 all of the reciprocal estimate instructions, except for the
16123 @code{FRSQRTE}, @code{XSRSQRTEDP}, and @code{XVRSQRTEDP} instructions
16124 which handle the double precision reciprocal square root calculations.
16125
16126 @item -mrecip-precision
16127 @itemx -mno-recip-precision
16128 @opindex mrecip-precision
16129 Assume (do not assume) that the reciprocal estimate instructions
16130 provide higher precision estimates than is mandated by the powerpc
16131 ABI.  Selecting @option{-mcpu=power6} or @option{-mcpu=power7}
16132 automatically selects @option{-mrecip-precision}.  The double
16133 precision square root estimate instructions are not generated by
16134 default on low precision machines, since they do not provide an
16135 estimate that converges after three steps.
16136
16137 @item -mveclibabi=@var{type}
16138 @opindex mveclibabi
16139 Specifies the ABI type to use for vectorizing intrinsics using an
16140 external library.  The only type supported at present is @code{mass},
16141 which specifies to use IBM's Mathematical Acceleration Subsystem
16142 (MASS) libraries for vectorizing intrinsics using external libraries.
16143 GCC will currently emit calls to @code{acosd2}, @code{acosf4},
16144 @code{acoshd2}, @code{acoshf4}, @code{asind2}, @code{asinf4},
16145 @code{asinhd2}, @code{asinhf4}, @code{atan2d2}, @code{atan2f4},
16146 @code{atand2}, @code{atanf4}, @code{atanhd2}, @code{atanhf4},
16147 @code{cbrtd2}, @code{cbrtf4}, @code{cosd2}, @code{cosf4},
16148 @code{coshd2}, @code{coshf4}, @code{erfcd2}, @code{erfcf4},
16149 @code{erfd2}, @code{erff4}, @code{exp2d2}, @code{exp2f4},
16150 @code{expd2}, @code{expf4}, @code{expm1d2}, @code{expm1f4},
16151 @code{hypotd2}, @code{hypotf4}, @code{lgammad2}, @code{lgammaf4},
16152 @code{log10d2}, @code{log10f4}, @code{log1pd2}, @code{log1pf4},
16153 @code{log2d2}, @code{log2f4}, @code{logd2}, @code{logf4},
16154 @code{powd2}, @code{powf4}, @code{sind2}, @code{sinf4}, @code{sinhd2},
16155 @code{sinhf4}, @code{sqrtd2}, @code{sqrtf4}, @code{tand2},
16156 @code{tanf4}, @code{tanhd2}, and @code{tanhf4} when generating code
16157 for power7.  Both @option{-ftree-vectorize} and
16158 @option{-funsafe-math-optimizations} have to be enabled.  The MASS
16159 libraries will have to be specified at link time.
16160
16161 @item -mfriz
16162 @itemx -mno-friz
16163 @opindex mfriz
16164 Generate (do not generate) the @code{friz} instruction when the
16165 @option{-funsafe-math-optimizations} option is used to optimize
16166 rounding a floating point value to 64-bit integer and back to floating
16167 point.  The @code{friz} instruction does not return the same value if
16168 the floating point number is too large to fit in an integer.
16169 @end table
16170
16171 @node RX Options
16172 @subsection RX Options
16173 @cindex RX Options
16174
16175 These command line options are defined for RX targets:
16176
16177 @table @gcctabopt
16178 @item -m64bit-doubles
16179 @itemx -m32bit-doubles
16180 @opindex m64bit-doubles
16181 @opindex m32bit-doubles
16182 Make the @code{double} data type be 64-bits (@option{-m64bit-doubles})
16183 or 32-bits (@option{-m32bit-doubles}) in size.  The default is
16184 @option{-m32bit-doubles}.  @emph{Note} RX floating point hardware only
16185 works on 32-bit values, which is why the default is
16186 @option{-m32bit-doubles}.
16187
16188 @item -fpu
16189 @itemx -nofpu
16190 @opindex fpu
16191 @opindex nofpu
16192 Enables (@option{-fpu}) or disables (@option{-nofpu}) the use of RX
16193 floating point hardware.  The default is enabled for the @var{RX600}
16194 series and disabled for the @var{RX200} series.
16195
16196 Floating point instructions will only be generated for 32-bit floating
16197 point values however, so if the @option{-m64bit-doubles} option is in
16198 use then the FPU hardware will not be used for doubles.
16199
16200 @emph{Note} If the @option{-fpu} option is enabled then
16201 @option{-funsafe-math-optimizations} is also enabled automatically.
16202 This is because the RX FPU instructions are themselves unsafe.
16203
16204 @item -mcpu=@var{name}
16205 @opindex -mcpu
16206 Selects the type of RX CPU to be targeted.  Currently three types are
16207 supported, the generic @var{RX600} and @var{RX200} series hardware and
16208 the specific @var{RX610} CPU.  The default is @var{RX600}.
16209
16210 The only difference between @var{RX600} and @var{RX610} is that the
16211 @var{RX610} does not support the @code{MVTIPL} instruction.
16212
16213 The @var{RX200} series does not have a hardware floating point unit
16214 and so @option{-nofpu} is enabled by default when this type is
16215 selected.
16216
16217 @item -mbig-endian-data
16218 @itemx -mlittle-endian-data
16219 @opindex mbig-endian-data
16220 @opindex mlittle-endian-data
16221 Store data (but not code) in the big-endian format.  The default is
16222 @option{-mlittle-endian-data}, i.e.@: to store data in the little endian
16223 format.
16224
16225 @item -msmall-data-limit=@var{N}
16226 @opindex msmall-data-limit
16227 Specifies the maximum size in bytes of global and static variables
16228 which can be placed into the small data area.  Using the small data
16229 area can lead to smaller and faster code, but the size of area is
16230 limited and it is up to the programmer to ensure that the area does
16231 not overflow.  Also when the small data area is used one of the RX's
16232 registers (@code{r13}) is reserved for use pointing to this area, so
16233 it is no longer available for use by the compiler.  This could result
16234 in slower and/or larger code if variables which once could have been
16235 held in @code{r13} are now pushed onto the stack.
16236
16237 Note, common variables (variables which have not been initialised) and
16238 constants are not placed into the small data area as they are assigned
16239 to other sections in the output executable.
16240
16241 The default value is zero, which disables this feature.  Note, this
16242 feature is not enabled by default with higher optimization levels
16243 (@option{-O2} etc) because of the potentially detrimental effects of
16244 reserving register @code{r13}.  It is up to the programmer to
16245 experiment and discover whether this feature is of benefit to their
16246 program.
16247
16248 @item -msim
16249 @itemx -mno-sim
16250 @opindex msim
16251 @opindex mno-sim
16252 Use the simulator runtime.  The default is to use the libgloss board
16253 specific runtime.
16254
16255 @item -mas100-syntax
16256 @itemx -mno-as100-syntax
16257 @opindex mas100-syntax
16258 @opindex mno-as100-syntax
16259 When generating assembler output use a syntax that is compatible with
16260 Renesas's AS100 assembler.  This syntax can also be handled by the GAS
16261 assembler but it has some restrictions so generating it is not the
16262 default option.
16263
16264 @item -mmax-constant-size=@var{N}
16265 @opindex mmax-constant-size
16266 Specifies the maximum size, in bytes, of a constant that can be used as
16267 an operand in a RX instruction.  Although the RX instruction set does
16268 allow constants of up to 4 bytes in length to be used in instructions,
16269 a longer value equates to a longer instruction.  Thus in some
16270 circumstances it can be beneficial to restrict the size of constants
16271 that are used in instructions.  Constants that are too big are instead
16272 placed into a constant pool and referenced via register indirection.
16273
16274 The value @var{N} can be between 0 and 4.  A value of 0 (the default)
16275 or 4 means that constants of any size are allowed.
16276
16277 @item -mrelax
16278 @opindex mrelax
16279 Enable linker relaxation.  Linker relaxation is a process whereby the
16280 linker will attempt to reduce the size of a program by finding shorter
16281 versions of various instructions.  Disabled by default.
16282
16283 @item -mint-register=@var{N}
16284 @opindex mint-register
16285 Specify the number of registers to reserve for fast interrupt handler
16286 functions.  The value @var{N} can be between 0 and 4.  A value of 1
16287 means that register @code{r13} will be reserved for the exclusive use
16288 of fast interrupt handlers.  A value of 2 reserves @code{r13} and
16289 @code{r12}.  A value of 3 reserves @code{r13}, @code{r12} and
16290 @code{r11}, and a value of 4 reserves @code{r13} through @code{r10}.
16291 A value of 0, the default, does not reserve any registers.
16292
16293 @item -msave-acc-in-interrupts
16294 @opindex msave-acc-in-interrupts
16295 Specifies that interrupt handler functions should preserve the
16296 accumulator register.  This is only necessary if normal code might use
16297 the accumulator register, for example because it performs 64-bit
16298 multiplications.  The default is to ignore the accumulator as this
16299 makes the interrupt handlers faster.
16300
16301 @end table
16302
16303 @emph{Note:} The generic GCC command line @option{-ffixed-@var{reg}}
16304 has special significance to the RX port when used with the
16305 @code{interrupt} function attribute.  This attribute indicates a
16306 function intended to process fast interrupts.  GCC will will ensure
16307 that it only uses the registers @code{r10}, @code{r11}, @code{r12}
16308 and/or @code{r13} and only provided that the normal use of the
16309 corresponding registers have been restricted via the
16310 @option{-ffixed-@var{reg}} or @option{-mint-register} command line
16311 options.
16312
16313 @node S/390 and zSeries Options
16314 @subsection S/390 and zSeries Options
16315 @cindex S/390 and zSeries Options
16316
16317 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
16318
16319 @table @gcctabopt
16320 @item -mhard-float
16321 @itemx -msoft-float
16322 @opindex mhard-float
16323 @opindex msoft-float
16324 Use (do not use) the hardware floating-point instructions and registers
16325 for floating-point operations.  When @option{-msoft-float} is specified,
16326 functions in @file{libgcc.a} will be used to perform floating-point
16327 operations.  When @option{-mhard-float} is specified, the compiler
16328 generates IEEE floating-point instructions.  This is the default.
16329
16330 @item -mhard-dfp
16331 @itemx -mno-hard-dfp
16332 @opindex mhard-dfp
16333 @opindex mno-hard-dfp
16334 Use (do not use) the hardware decimal-floating-point instructions for
16335 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
16336 specified, functions in @file{libgcc.a} will be used to perform
16337 decimal-floating-point operations.  When @option{-mhard-dfp} is
16338 specified, the compiler generates decimal-floating-point hardware
16339 instructions.  This is the default for @option{-march=z9-ec} or higher.
16340
16341 @item -mlong-double-64
16342 @itemx -mlong-double-128
16343 @opindex mlong-double-64
16344 @opindex mlong-double-128
16345 These switches control the size of @code{long double} type. A size
16346 of 64bit makes the @code{long double} type equivalent to the @code{double}
16347 type. This is the default.
16348
16349 @item -mbackchain
16350 @itemx -mno-backchain
16351 @opindex mbackchain
16352 @opindex mno-backchain
16353 Store (do not store) the address of the caller's frame as backchain pointer
16354 into the callee's stack frame.
16355 A backchain may be needed to allow debugging using tools that do not understand
16356 DWARF-2 call frame information.
16357 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
16358 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
16359 the backchain is placed into the topmost word of the 96/160 byte register
16360 save area.
16361
16362 In general, code compiled with @option{-mbackchain} is call-compatible with
16363 code compiled with @option{-mmo-backchain}; however, use of the backchain
16364 for debugging purposes usually requires that the whole binary is built with
16365 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
16366 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16367 to build a linux kernel use @option{-msoft-float}.
16368
16369 The default is to not maintain the backchain.
16370
16371 @item -mpacked-stack
16372 @itemx -mno-packed-stack
16373 @opindex mpacked-stack
16374 @opindex mno-packed-stack
16375 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
16376 specified, the compiler uses the all fields of the 96/160 byte register save
16377 area only for their default purpose; unused fields still take up stack space.
16378 When @option{-mpacked-stack} is specified, register save slots are densely
16379 packed at the top of the register save area; unused space is reused for other
16380 purposes, allowing for more efficient use of the available stack space.
16381 However, when @option{-mbackchain} is also in effect, the topmost word of
16382 the save area is always used to store the backchain, and the return address
16383 register is always saved two words below the backchain.
16384
16385 As long as the stack frame backchain is not used, code generated with
16386 @option{-mpacked-stack} is call-compatible with code generated with
16387 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
16388 S/390 or zSeries generated code that uses the stack frame backchain at run
16389 time, not just for debugging purposes.  Such code is not call-compatible
16390 with code compiled with @option{-mpacked-stack}.  Also, note that the
16391 combination of @option{-mbackchain},
16392 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16393 to build a linux kernel use @option{-msoft-float}.
16394
16395 The default is to not use the packed stack layout.
16396
16397 @item -msmall-exec
16398 @itemx -mno-small-exec
16399 @opindex msmall-exec
16400 @opindex mno-small-exec
16401 Generate (or do not generate) code using the @code{bras} instruction
16402 to do subroutine calls.
16403 This only works reliably if the total executable size does not
16404 exceed 64k.  The default is to use the @code{basr} instruction instead,
16405 which does not have this limitation.
16406
16407 @item -m64
16408 @itemx -m31
16409 @opindex m64
16410 @opindex m31
16411 When @option{-m31} is specified, generate code compliant to the
16412 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
16413 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
16414 particular to generate 64-bit instructions.  For the @samp{s390}
16415 targets, the default is @option{-m31}, while the @samp{s390x}
16416 targets default to @option{-m64}.
16417
16418 @item -mzarch
16419 @itemx -mesa
16420 @opindex mzarch
16421 @opindex mesa
16422 When @option{-mzarch} is specified, generate code using the
16423 instructions available on z/Architecture.
16424 When @option{-mesa} is specified, generate code using the
16425 instructions available on ESA/390.  Note that @option{-mesa} is
16426 not possible with @option{-m64}.
16427 When generating code compliant to the GNU/Linux for S/390 ABI,
16428 the default is @option{-mesa}.  When generating code compliant
16429 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
16430
16431 @item -mmvcle
16432 @itemx -mno-mvcle
16433 @opindex mmvcle
16434 @opindex mno-mvcle
16435 Generate (or do not generate) code using the @code{mvcle} instruction
16436 to perform block moves.  When @option{-mno-mvcle} is specified,
16437 use a @code{mvc} loop instead.  This is the default unless optimizing for
16438 size.
16439
16440 @item -mdebug
16441 @itemx -mno-debug
16442 @opindex mdebug
16443 @opindex mno-debug
16444 Print (or do not print) additional debug information when compiling.
16445 The default is to not print debug information.
16446
16447 @item -march=@var{cpu-type}
16448 @opindex march
16449 Generate code that will run on @var{cpu-type}, which is the name of a system
16450 representing a certain processor type.  Possible values for
16451 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
16452 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
16453 When generating code using the instructions available on z/Architecture,
16454 the default is @option{-march=z900}.  Otherwise, the default is
16455 @option{-march=g5}.
16456
16457 @item -mtune=@var{cpu-type}
16458 @opindex mtune
16459 Tune to @var{cpu-type} everything applicable about the generated code,
16460 except for the ABI and the set of available instructions.
16461 The list of @var{cpu-type} values is the same as for @option{-march}.
16462 The default is the value used for @option{-march}.
16463
16464 @item -mtpf-trace
16465 @itemx -mno-tpf-trace
16466 @opindex mtpf-trace
16467 @opindex mno-tpf-trace
16468 Generate code that adds (does not add) in TPF OS specific branches to trace
16469 routines in the operating system.  This option is off by default, even
16470 when compiling for the TPF OS@.
16471
16472 @item -mfused-madd
16473 @itemx -mno-fused-madd
16474 @opindex mfused-madd
16475 @opindex mno-fused-madd
16476 Generate code that uses (does not use) the floating point multiply and
16477 accumulate instructions.  These instructions are generated by default if
16478 hardware floating point is used.
16479
16480 @item -mwarn-framesize=@var{framesize}
16481 @opindex mwarn-framesize
16482 Emit a warning if the current function exceeds the given frame size.  Because
16483 this is a compile time check it doesn't need to be a real problem when the program
16484 runs.  It is intended to identify functions which most probably cause
16485 a stack overflow.  It is useful to be used in an environment with limited stack
16486 size e.g.@: the linux kernel.
16487
16488 @item -mwarn-dynamicstack
16489 @opindex mwarn-dynamicstack
16490 Emit a warning if the function calls alloca or uses dynamically
16491 sized arrays.  This is generally a bad idea with a limited stack size.
16492
16493 @item -mstack-guard=@var{stack-guard}
16494 @itemx -mstack-size=@var{stack-size}
16495 @opindex mstack-guard
16496 @opindex mstack-size
16497 If these options are provided the s390 back end emits additional instructions in
16498 the function prologue which trigger a trap if the stack size is @var{stack-guard}
16499 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
16500 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
16501 the frame size of the compiled function is chosen.
16502 These options are intended to be used to help debugging stack overflow problems.
16503 The additionally emitted code causes only little overhead and hence can also be
16504 used in production like systems without greater performance degradation.  The given
16505 values have to be exact powers of 2 and @var{stack-size} has to be greater than
16506 @var{stack-guard} without exceeding 64k.
16507 In order to be efficient the extra code makes the assumption that the stack starts
16508 at an address aligned to the value given by @var{stack-size}.
16509 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
16510 @end table
16511
16512 @node Score Options
16513 @subsection Score Options
16514 @cindex Score Options
16515
16516 These options are defined for Score implementations:
16517
16518 @table @gcctabopt
16519 @item -meb
16520 @opindex meb
16521 Compile code for big endian mode.  This is the default.
16522
16523 @item -mel
16524 @opindex mel
16525 Compile code for little endian mode.
16526
16527 @item -mnhwloop
16528 @opindex mnhwloop
16529 Disable generate bcnz instruction.
16530
16531 @item -muls
16532 @opindex muls
16533 Enable generate unaligned load and store instruction.
16534
16535 @item -mmac
16536 @opindex mmac
16537 Enable the use of multiply-accumulate instructions. Disabled by default.
16538
16539 @item -mscore5
16540 @opindex mscore5
16541 Specify the SCORE5 as the target architecture.
16542
16543 @item -mscore5u
16544 @opindex mscore5u
16545 Specify the SCORE5U of the target architecture.
16546
16547 @item -mscore7
16548 @opindex mscore7
16549 Specify the SCORE7 as the target architecture. This is the default.
16550
16551 @item -mscore7d
16552 @opindex mscore7d
16553 Specify the SCORE7D as the target architecture.
16554 @end table
16555
16556 @node SH Options
16557 @subsection SH Options
16558
16559 These @samp{-m} options are defined for the SH implementations:
16560
16561 @table @gcctabopt
16562 @item -m1
16563 @opindex m1
16564 Generate code for the SH1.
16565
16566 @item -m2
16567 @opindex m2
16568 Generate code for the SH2.
16569
16570 @item -m2e
16571 Generate code for the SH2e.
16572
16573 @item -m2a-nofpu
16574 @opindex m2a-nofpu
16575 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
16576 that the floating-point unit is not used.
16577
16578 @item -m2a-single-only
16579 @opindex m2a-single-only
16580 Generate code for the SH2a-FPU, in such a way that no double-precision
16581 floating point operations are used.
16582
16583 @item -m2a-single
16584 @opindex m2a-single
16585 Generate code for the SH2a-FPU assuming the floating-point unit is in
16586 single-precision mode by default.
16587
16588 @item -m2a
16589 @opindex m2a
16590 Generate code for the SH2a-FPU assuming the floating-point unit is in
16591 double-precision mode by default.
16592
16593 @item -m3
16594 @opindex m3
16595 Generate code for the SH3.
16596
16597 @item -m3e
16598 @opindex m3e
16599 Generate code for the SH3e.
16600
16601 @item -m4-nofpu
16602 @opindex m4-nofpu
16603 Generate code for the SH4 without a floating-point unit.
16604
16605 @item -m4-single-only
16606 @opindex m4-single-only
16607 Generate code for the SH4 with a floating-point unit that only
16608 supports single-precision arithmetic.
16609
16610 @item -m4-single
16611 @opindex m4-single
16612 Generate code for the SH4 assuming the floating-point unit is in
16613 single-precision mode by default.
16614
16615 @item -m4
16616 @opindex m4
16617 Generate code for the SH4.
16618
16619 @item -m4a-nofpu
16620 @opindex m4a-nofpu
16621 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
16622 floating-point unit is not used.
16623
16624 @item -m4a-single-only
16625 @opindex m4a-single-only
16626 Generate code for the SH4a, in such a way that no double-precision
16627 floating point operations are used.
16628
16629 @item -m4a-single
16630 @opindex m4a-single
16631 Generate code for the SH4a assuming the floating-point unit is in
16632 single-precision mode by default.
16633
16634 @item -m4a
16635 @opindex m4a
16636 Generate code for the SH4a.
16637
16638 @item -m4al
16639 @opindex m4al
16640 Same as @option{-m4a-nofpu}, except that it implicitly passes
16641 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
16642 instructions at the moment.
16643
16644 @item -mb
16645 @opindex mb
16646 Compile code for the processor in big endian mode.
16647
16648 @item -ml
16649 @opindex ml
16650 Compile code for the processor in little endian mode.
16651
16652 @item -mdalign
16653 @opindex mdalign
16654 Align doubles at 64-bit boundaries.  Note that this changes the calling
16655 conventions, and thus some functions from the standard C library will
16656 not work unless you recompile it first with @option{-mdalign}.
16657
16658 @item -mrelax
16659 @opindex mrelax
16660 Shorten some address references at link time, when possible; uses the
16661 linker option @option{-relax}.
16662
16663 @item -mbigtable
16664 @opindex mbigtable
16665 Use 32-bit offsets in @code{switch} tables.  The default is to use
16666 16-bit offsets.
16667
16668 @item -mbitops
16669 @opindex mbitops
16670 Enable the use of bit manipulation instructions on SH2A.
16671
16672 @item -mfmovd
16673 @opindex mfmovd
16674 Enable the use of the instruction @code{fmovd}.  Check @option{-mdalign} for
16675 alignment constraints.
16676
16677 @item -mhitachi
16678 @opindex mhitachi
16679 Comply with the calling conventions defined by Renesas.
16680
16681 @item -mrenesas
16682 @opindex mhitachi
16683 Comply with the calling conventions defined by Renesas.
16684
16685 @item -mno-renesas
16686 @opindex mhitachi
16687 Comply with the calling conventions defined for GCC before the Renesas
16688 conventions were available.  This option is the default for all
16689 targets of the SH toolchain.
16690
16691 @item -mnomacsave
16692 @opindex mnomacsave
16693 Mark the @code{MAC} register as call-clobbered, even if
16694 @option{-mhitachi} is given.
16695
16696 @item -mieee
16697 @opindex mieee
16698 Increase IEEE-compliance of floating-point code.
16699 At the moment, this is equivalent to @option{-fno-finite-math-only}.
16700 When generating 16 bit SH opcodes, getting IEEE-conforming results for
16701 comparisons of NANs / infinities incurs extra overhead in every
16702 floating point comparison, therefore the default is set to
16703 @option{-ffinite-math-only}.
16704
16705 @item -minline-ic_invalidate
16706 @opindex minline-ic_invalidate
16707 Inline code to invalidate instruction cache entries after setting up
16708 nested function trampolines.
16709 This option has no effect if -musermode is in effect and the selected
16710 code generation option (e.g. -m4) does not allow the use of the icbi
16711 instruction.
16712 If the selected code generation option does not allow the use of the icbi
16713 instruction, and -musermode is not in effect, the inlined code will
16714 manipulate the instruction cache address array directly with an associative
16715 write.  This not only requires privileged mode, but it will also
16716 fail if the cache line had been mapped via the TLB and has become unmapped.
16717
16718 @item -misize
16719 @opindex misize
16720 Dump instruction size and location in the assembly code.
16721
16722 @item -mpadstruct
16723 @opindex mpadstruct
16724 This option is deprecated.  It pads structures to multiple of 4 bytes,
16725 which is incompatible with the SH ABI@.
16726
16727 @item -mspace
16728 @opindex mspace
16729 Optimize for space instead of speed.  Implied by @option{-Os}.
16730
16731 @item -mprefergot
16732 @opindex mprefergot
16733 When generating position-independent code, emit function calls using
16734 the Global Offset Table instead of the Procedure Linkage Table.
16735
16736 @item -musermode
16737 @opindex musermode
16738 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
16739 if the inlined code would not work in user mode.
16740 This is the default when the target is @code{sh-*-linux*}.
16741
16742 @item -multcost=@var{number}
16743 @opindex multcost=@var{number}
16744 Set the cost to assume for a multiply insn.
16745
16746 @item -mdiv=@var{strategy}
16747 @opindex mdiv=@var{strategy}
16748 Set the division strategy to use for SHmedia code.  @var{strategy} must be
16749 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
16750 inv:call2, inv:fp .
16751 "fp" performs the operation in floating point.  This has a very high latency,
16752 but needs only a few instructions, so it might be a good choice if
16753 your code has enough easily exploitable ILP to allow the compiler to
16754 schedule the floating point instructions together with other instructions.
16755 Division by zero causes a floating point exception.
16756 "inv" uses integer operations to calculate the inverse of the divisor,
16757 and then multiplies the dividend with the inverse.  This strategy allows
16758 cse and hoisting of the inverse calculation.  Division by zero calculates
16759 an unspecified result, but does not trap.
16760 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
16761 have been found, or if the entire operation has been hoisted to the same
16762 place, the last stages of the inverse calculation are intertwined with the
16763 final multiply to reduce the overall latency, at the expense of using a few
16764 more instructions, and thus offering fewer scheduling opportunities with
16765 other code.
16766 "call" calls a library function that usually implements the inv:minlat
16767 strategy.
16768 This gives high code density for m5-*media-nofpu compilations.
16769 "call2" uses a different entry point of the same library function, where it
16770 assumes that a pointer to a lookup table has already been set up, which
16771 exposes the pointer load to cse / code hoisting optimizations.
16772 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
16773 code generation, but if the code stays unoptimized, revert to the "call",
16774 "call2", or "fp" strategies, respectively.  Note that the
16775 potentially-trapping side effect of division by zero is carried by a
16776 separate instruction, so it is possible that all the integer instructions
16777 are hoisted out, but the marker for the side effect stays where it is.
16778 A recombination to fp operations or a call is not possible in that case.
16779 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
16780 that the inverse calculation was nor separated from the multiply, they speed
16781 up division where the dividend fits into 20 bits (plus sign where applicable),
16782 by inserting a test to skip a number of operations in this case; this test
16783 slows down the case of larger dividends.  inv20u assumes the case of a such
16784 a small dividend to be unlikely, and inv20l assumes it to be likely.
16785
16786 @item -maccumulate-outgoing-args
16787 @opindex maccumulate-outgoing-args
16788 Reserve space once for outgoing arguments in the function prologue rather
16789 than around each call.  Generally beneficial for performance and size.  Also
16790 needed for unwinding to avoid changing the stack frame around conditional code.
16791
16792 @item -mdivsi3_libfunc=@var{name}
16793 @opindex mdivsi3_libfunc=@var{name}
16794 Set the name of the library function used for 32 bit signed division to
16795 @var{name}.  This only affect the name used in the call and inv:call
16796 division strategies, and the compiler will still expect the same
16797 sets of input/output/clobbered registers as if this option was not present.
16798
16799 @item -mfixed-range=@var{register-range}
16800 @opindex mfixed-range
16801 Generate code treating the given register range as fixed registers.
16802 A fixed register is one that the register allocator can not use.  This is
16803 useful when compiling kernel code.  A register range is specified as
16804 two registers separated by a dash.  Multiple register ranges can be
16805 specified separated by a comma.
16806
16807 @item -madjust-unroll
16808 @opindex madjust-unroll
16809 Throttle unrolling to avoid thrashing target registers.
16810 This option only has an effect if the gcc code base supports the
16811 TARGET_ADJUST_UNROLL_MAX target hook.
16812
16813 @item -mindexed-addressing
16814 @opindex mindexed-addressing
16815 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
16816 This is only safe if the hardware and/or OS implement 32 bit wrap-around
16817 semantics for the indexed addressing mode.  The architecture allows the
16818 implementation of processors with 64 bit MMU, which the OS could use to
16819 get 32 bit addressing, but since no current hardware implementation supports
16820 this or any other way to make the indexed addressing mode safe to use in
16821 the 32 bit ABI, the default is -mno-indexed-addressing.
16822
16823 @item -mgettrcost=@var{number}
16824 @opindex mgettrcost=@var{number}
16825 Set the cost assumed for the gettr instruction to @var{number}.
16826 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
16827
16828 @item -mpt-fixed
16829 @opindex mpt-fixed
16830 Assume pt* instructions won't trap.  This will generally generate better
16831 scheduled code, but is unsafe on current hardware.  The current architecture
16832 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
16833 This has the unintentional effect of making it unsafe to schedule ptabs /
16834 ptrel before a branch, or hoist it out of a loop.  For example,
16835 __do_global_ctors, a part of libgcc that runs constructors at program
16836 startup, calls functions in a list which is delimited by @minus{}1.  With the
16837 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
16838 That means that all the constructors will be run a bit quicker, but when
16839 the loop comes to the end of the list, the program crashes because ptabs
16840 loads @minus{}1 into a target register.  Since this option is unsafe for any
16841 hardware implementing the current architecture specification, the default
16842 is -mno-pt-fixed.  Unless the user specifies a specific cost with
16843 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
16844 this deters register allocation using target registers for storing
16845 ordinary integers.
16846
16847 @item -minvalid-symbols
16848 @opindex minvalid-symbols
16849 Assume symbols might be invalid.  Ordinary function symbols generated by
16850 the compiler will always be valid to load with movi/shori/ptabs or
16851 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
16852 to generate symbols that will cause ptabs / ptrel to trap.
16853 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
16854 It will then prevent cross-basic-block cse, hoisting and most scheduling
16855 of symbol loads.  The default is @option{-mno-invalid-symbols}.
16856 @end table
16857
16858 @node Solaris 2 Options
16859 @subsection Solaris 2 Options
16860 @cindex Solaris 2 options
16861
16862 These @samp{-m} options are supported on Solaris 2:
16863
16864 @table @gcctabopt
16865 @item -mimpure-text
16866 @opindex mimpure-text
16867 @option{-mimpure-text}, used in addition to @option{-shared}, tells
16868 the compiler to not pass @option{-z text} to the linker when linking a
16869 shared object.  Using this option, you can link position-dependent
16870 code into a shared object.
16871
16872 @option{-mimpure-text} suppresses the ``relocations remain against
16873 allocatable but non-writable sections'' linker error message.
16874 However, the necessary relocations will trigger copy-on-write, and the
16875 shared object is not actually shared across processes.  Instead of
16876 using @option{-mimpure-text}, you should compile all source code with
16877 @option{-fpic} or @option{-fPIC}.
16878
16879 @end table
16880
16881 These switches are supported in addition to the above on Solaris 2:
16882
16883 @table @gcctabopt
16884 @item -pthreads
16885 @opindex pthreads
16886 Add support for multithreading using the POSIX threads library.  This
16887 option sets flags for both the preprocessor and linker.  This option does
16888 not affect the thread safety of object code produced  by the compiler or
16889 that of libraries supplied with it.
16890
16891 @item -pthread
16892 @opindex pthread
16893 This is a synonym for @option{-pthreads}.
16894 @end table
16895
16896 @node SPARC Options
16897 @subsection SPARC Options
16898 @cindex SPARC options
16899
16900 These @samp{-m} options are supported on the SPARC:
16901
16902 @table @gcctabopt
16903 @item -mno-app-regs
16904 @itemx -mapp-regs
16905 @opindex mno-app-regs
16906 @opindex mapp-regs
16907 Specify @option{-mapp-regs} to generate output using the global registers
16908 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
16909 is the default.
16910
16911 To be fully SVR4 ABI compliant at the cost of some performance loss,
16912 specify @option{-mno-app-regs}.  You should compile libraries and system
16913 software with this option.
16914
16915 @item -mfpu
16916 @itemx -mhard-float
16917 @opindex mfpu
16918 @opindex mhard-float
16919 Generate output containing floating point instructions.  This is the
16920 default.
16921
16922 @item -mno-fpu
16923 @itemx -msoft-float
16924 @opindex mno-fpu
16925 @opindex msoft-float
16926 Generate output containing library calls for floating point.
16927 @strong{Warning:} the requisite libraries are not available for all SPARC
16928 targets.  Normally the facilities of the machine's usual C compiler are
16929 used, but this cannot be done directly in cross-compilation.  You must make
16930 your own arrangements to provide suitable library functions for
16931 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
16932 @samp{sparclite-*-*} do provide software floating point support.
16933
16934 @option{-msoft-float} changes the calling convention in the output file;
16935 therefore, it is only useful if you compile @emph{all} of a program with
16936 this option.  In particular, you need to compile @file{libgcc.a}, the
16937 library that comes with GCC, with @option{-msoft-float} in order for
16938 this to work.
16939
16940 @item -mhard-quad-float
16941 @opindex mhard-quad-float
16942 Generate output containing quad-word (long double) floating point
16943 instructions.
16944
16945 @item -msoft-quad-float
16946 @opindex msoft-quad-float
16947 Generate output containing library calls for quad-word (long double)
16948 floating point instructions.  The functions called are those specified
16949 in the SPARC ABI@.  This is the default.
16950
16951 As of this writing, there are no SPARC implementations that have hardware
16952 support for the quad-word floating point instructions.  They all invoke
16953 a trap handler for one of these instructions, and then the trap handler
16954 emulates the effect of the instruction.  Because of the trap handler overhead,
16955 this is much slower than calling the ABI library routines.  Thus the
16956 @option{-msoft-quad-float} option is the default.
16957
16958 @item -mno-unaligned-doubles
16959 @itemx -munaligned-doubles
16960 @opindex mno-unaligned-doubles
16961 @opindex munaligned-doubles
16962 Assume that doubles have 8 byte alignment.  This is the default.
16963
16964 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
16965 alignment only if they are contained in another type, or if they have an
16966 absolute address.  Otherwise, it assumes they have 4 byte alignment.
16967 Specifying this option avoids some rare compatibility problems with code
16968 generated by other compilers.  It is not the default because it results
16969 in a performance loss, especially for floating point code.
16970
16971 @item -mno-faster-structs
16972 @itemx -mfaster-structs
16973 @opindex mno-faster-structs
16974 @opindex mfaster-structs
16975 With @option{-mfaster-structs}, the compiler assumes that structures
16976 should have 8 byte alignment.  This enables the use of pairs of
16977 @code{ldd} and @code{std} instructions for copies in structure
16978 assignment, in place of twice as many @code{ld} and @code{st} pairs.
16979 However, the use of this changed alignment directly violates the SPARC
16980 ABI@.  Thus, it's intended only for use on targets where the developer
16981 acknowledges that their resulting code will not be directly in line with
16982 the rules of the ABI@.
16983
16984 @item -mcpu=@var{cpu_type}
16985 @opindex mcpu
16986 Set the instruction set, register set, and instruction scheduling parameters
16987 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
16988 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{hypersparc},
16989 @samp{leon}, @samp{sparclite}, @samp{f930}, @samp{f934}, @samp{sparclite86x},
16990 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
16991 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
16992
16993 Default instruction scheduling parameters are used for values that select
16994 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
16995 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
16996
16997 Here is a list of each supported architecture and their supported
16998 implementations.
16999
17000 @smallexample
17001     v7:             cypress
17002     v8:             supersparc, hypersparc, leon
17003     sparclite:      f930, f934, sparclite86x
17004     sparclet:       tsc701
17005     v9:             ultrasparc, ultrasparc3, niagara, niagara2
17006 @end smallexample
17007
17008 By default (unless configured otherwise), GCC generates code for the V7
17009 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
17010 additionally optimizes it for the Cypress CY7C602 chip, as used in the
17011 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
17012 SPARCStation 1, 2, IPX etc.
17013
17014 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
17015 architecture.  The only difference from V7 code is that the compiler emits
17016 the integer multiply and integer divide instructions which exist in SPARC-V8
17017 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
17018 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
17019 2000 series.
17020
17021 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
17022 the SPARC architecture.  This adds the integer multiply, integer divide step
17023 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
17024 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
17025 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
17026 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
17027 MB86934 chip, which is the more recent SPARClite with FPU@.
17028
17029 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
17030 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
17031 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
17032 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
17033 optimizes it for the TEMIC SPARClet chip.
17034
17035 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
17036 architecture.  This adds 64-bit integer and floating-point move instructions,
17037 3 additional floating-point condition code registers and conditional move
17038 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
17039 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
17040 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
17041 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
17042 @option{-mcpu=niagara}, the compiler additionally optimizes it for
17043 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
17044 additionally optimizes it for Sun UltraSPARC T2 chips.
17045
17046 @item -mtune=@var{cpu_type}
17047 @opindex mtune
17048 Set the instruction scheduling parameters for machine type
17049 @var{cpu_type}, but do not set the instruction set or register set that the
17050 option @option{-mcpu=@var{cpu_type}} would.
17051
17052 The same values for @option{-mcpu=@var{cpu_type}} can be used for
17053 @option{-mtune=@var{cpu_type}}, but the only useful values are those
17054 that select a particular CPU implementation.  Those are @samp{cypress},
17055 @samp{supersparc}, @samp{hypersparc}, @samp{leon}, @samp{f930}, @samp{f934},
17056 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc}, @samp{ultrasparc3},
17057 @samp{niagara}, and @samp{niagara2}.
17058
17059 @item -mv8plus
17060 @itemx -mno-v8plus
17061 @opindex mv8plus
17062 @opindex mno-v8plus
17063 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
17064 difference from the V8 ABI is that the global and out registers are
17065 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
17066 mode for all SPARC-V9 processors.
17067
17068 @item -mvis
17069 @itemx -mno-vis
17070 @opindex mvis
17071 @opindex mno-vis
17072 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
17073 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
17074 @end table
17075
17076 These @samp{-m} options are supported in addition to the above
17077 on SPARC-V9 processors in 64-bit environments:
17078
17079 @table @gcctabopt
17080 @item -mlittle-endian
17081 @opindex mlittle-endian
17082 Generate code for a processor running in little-endian mode.  It is only
17083 available for a few configurations and most notably not on Solaris and Linux.
17084
17085 @item -m32
17086 @itemx -m64
17087 @opindex m32
17088 @opindex m64
17089 Generate code for a 32-bit or 64-bit environment.
17090 The 32-bit environment sets int, long and pointer to 32 bits.
17091 The 64-bit environment sets int to 32 bits and long and pointer
17092 to 64 bits.
17093
17094 @item -mcmodel=medlow
17095 @opindex mcmodel=medlow
17096 Generate code for the Medium/Low code model: 64-bit addresses, programs
17097 must be linked in the low 32 bits of memory.  Programs can be statically
17098 or dynamically linked.
17099
17100 @item -mcmodel=medmid
17101 @opindex mcmodel=medmid
17102 Generate code for the Medium/Middle code model: 64-bit addresses, programs
17103 must be linked in the low 44 bits of memory, the text and data segments must
17104 be less than 2GB in size and the data segment must be located within 2GB of
17105 the text segment.
17106
17107 @item -mcmodel=medany
17108 @opindex mcmodel=medany
17109 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
17110 may be linked anywhere in memory, the text and data segments must be less
17111 than 2GB in size and the data segment must be located within 2GB of the
17112 text segment.
17113
17114 @item -mcmodel=embmedany
17115 @opindex mcmodel=embmedany
17116 Generate code for the Medium/Anywhere code model for embedded systems:
17117 64-bit addresses, the text and data segments must be less than 2GB in
17118 size, both starting anywhere in memory (determined at link time).  The
17119 global register %g4 points to the base of the data segment.  Programs
17120 are statically linked and PIC is not supported.
17121
17122 @item -mstack-bias
17123 @itemx -mno-stack-bias
17124 @opindex mstack-bias
17125 @opindex mno-stack-bias
17126 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
17127 frame pointer if present, are offset by @minus{}2047 which must be added back
17128 when making stack frame references.  This is the default in 64-bit mode.
17129 Otherwise, assume no such offset is present.
17130 @end table
17131
17132 @node SPU Options
17133 @subsection SPU Options
17134 @cindex SPU options
17135
17136 These @samp{-m} options are supported on the SPU:
17137
17138 @table @gcctabopt
17139 @item -mwarn-reloc
17140 @itemx -merror-reloc
17141 @opindex mwarn-reloc
17142 @opindex merror-reloc
17143
17144 The loader for SPU does not handle dynamic relocations.  By default, GCC
17145 will give an error when it generates code that requires a dynamic
17146 relocation.  @option{-mno-error-reloc} disables the error,
17147 @option{-mwarn-reloc} will generate a warning instead.
17148
17149 @item -msafe-dma
17150 @itemx -munsafe-dma
17151 @opindex msafe-dma
17152 @opindex munsafe-dma
17153
17154 Instructions which initiate or test completion of DMA must not be
17155 reordered with respect to loads and stores of the memory which is being
17156 accessed.  Users typically address this problem using the volatile
17157 keyword, but that can lead to inefficient code in places where the
17158 memory is known to not change.  Rather than mark the memory as volatile
17159 we treat the DMA instructions as potentially effecting all memory.  With
17160 @option{-munsafe-dma} users must use the volatile keyword to protect
17161 memory accesses.
17162
17163 @item -mbranch-hints
17164 @opindex mbranch-hints
17165
17166 By default, GCC will generate a branch hint instruction to avoid
17167 pipeline stalls for always taken or probably taken branches.  A hint
17168 will not be generated closer than 8 instructions away from its branch.
17169 There is little reason to disable them, except for debugging purposes,
17170 or to make an object a little bit smaller.
17171
17172 @item -msmall-mem
17173 @itemx -mlarge-mem
17174 @opindex msmall-mem
17175 @opindex mlarge-mem
17176
17177 By default, GCC generates code assuming that addresses are never larger
17178 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
17179 a full 32 bit address.
17180
17181 @item -mstdmain
17182 @opindex mstdmain
17183
17184 By default, GCC links against startup code that assumes the SPU-style
17185 main function interface (which has an unconventional parameter list).
17186 With @option{-mstdmain}, GCC will link your program against startup
17187 code that assumes a C99-style interface to @code{main}, including a
17188 local copy of @code{argv} strings.
17189
17190 @item -mfixed-range=@var{register-range}
17191 @opindex mfixed-range
17192 Generate code treating the given register range as fixed registers.
17193 A fixed register is one that the register allocator can not use.  This is
17194 useful when compiling kernel code.  A register range is specified as
17195 two registers separated by a dash.  Multiple register ranges can be
17196 specified separated by a comma.
17197
17198 @item -mea32
17199 @itemx -mea64
17200 @opindex mea32
17201 @opindex mea64
17202 Compile code assuming that pointers to the PPU address space accessed
17203 via the @code{__ea} named address space qualifier are either 32 or 64
17204 bits wide.  The default is 32 bits.  As this is an ABI changing option,
17205 all object code in an executable must be compiled with the same setting.
17206
17207 @item -maddress-space-conversion
17208 @itemx -mno-address-space-conversion
17209 @opindex maddress-space-conversion
17210 @opindex mno-address-space-conversion
17211 Allow/disallow treating the @code{__ea} address space as superset
17212 of the generic address space.  This enables explicit type casts
17213 between @code{__ea} and generic pointer as well as implicit
17214 conversions of generic pointers to @code{__ea} pointers.  The
17215 default is to allow address space pointer conversions.
17216
17217 @item -mcache-size=@var{cache-size}
17218 @opindex mcache-size
17219 This option controls the version of libgcc that the compiler links to an
17220 executable and selects a software-managed cache for accessing variables
17221 in the @code{__ea} address space with a particular cache size.  Possible
17222 options for @var{cache-size} are @samp{8}, @samp{16}, @samp{32}, @samp{64}
17223 and @samp{128}.  The default cache size is 64KB.
17224
17225 @item -matomic-updates
17226 @itemx -mno-atomic-updates
17227 @opindex matomic-updates
17228 @opindex mno-atomic-updates
17229 This option controls the version of libgcc that the compiler links to an
17230 executable and selects whether atomic updates to the software-managed
17231 cache of PPU-side variables are used.  If you use atomic updates, changes
17232 to a PPU variable from SPU code using the @code{__ea} named address space
17233 qualifier will not interfere with changes to other PPU variables residing
17234 in the same cache line from PPU code.  If you do not use atomic updates,
17235 such interference may occur; however, writing back cache lines will be
17236 more efficient.  The default behavior is to use atomic updates.
17237
17238 @item -mdual-nops
17239 @itemx -mdual-nops=@var{n}
17240 @opindex mdual-nops
17241 By default, GCC will insert nops to increase dual issue when it expects
17242 it to increase performance.  @var{n} can be a value from 0 to 10.  A
17243 smaller @var{n} will insert fewer nops.  10 is the default, 0 is the
17244 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
17245
17246 @item -mhint-max-nops=@var{n}
17247 @opindex mhint-max-nops
17248 Maximum number of nops to insert for a branch hint.  A branch hint must
17249 be at least 8 instructions away from the branch it is effecting.  GCC
17250 will insert up to @var{n} nops to enforce this, otherwise it will not
17251 generate the branch hint.
17252
17253 @item -mhint-max-distance=@var{n}
17254 @opindex mhint-max-distance
17255 The encoding of the branch hint instruction limits the hint to be within
17256 256 instructions of the branch it is effecting.  By default, GCC makes
17257 sure it is within 125.
17258
17259 @item -msafe-hints
17260 @opindex msafe-hints
17261 Work around a hardware bug which causes the SPU to stall indefinitely.
17262 By default, GCC will insert the @code{hbrp} instruction to make sure
17263 this stall won't happen.
17264
17265 @end table
17266
17267 @node System V Options
17268 @subsection Options for System V
17269
17270 These additional options are available on System V Release 4 for
17271 compatibility with other compilers on those systems:
17272
17273 @table @gcctabopt
17274 @item -G
17275 @opindex G
17276 Create a shared object.
17277 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
17278
17279 @item -Qy
17280 @opindex Qy
17281 Identify the versions of each tool used by the compiler, in a
17282 @code{.ident} assembler directive in the output.
17283
17284 @item -Qn
17285 @opindex Qn
17286 Refrain from adding @code{.ident} directives to the output file (this is
17287 the default).
17288
17289 @item -YP,@var{dirs}
17290 @opindex YP
17291 Search the directories @var{dirs}, and no others, for libraries
17292 specified with @option{-l}.
17293
17294 @item -Ym,@var{dir}
17295 @opindex Ym
17296 Look in the directory @var{dir} to find the M4 preprocessor.
17297 The assembler uses this option.
17298 @c This is supposed to go with a -Yd for predefined M4 macro files, but
17299 @c the generic assembler that comes with Solaris takes just -Ym.
17300 @end table
17301
17302 @node V850 Options
17303 @subsection V850 Options
17304 @cindex V850 Options
17305
17306 These @samp{-m} options are defined for V850 implementations:
17307
17308 @table @gcctabopt
17309 @item -mlong-calls
17310 @itemx -mno-long-calls
17311 @opindex mlong-calls
17312 @opindex mno-long-calls
17313 Treat all calls as being far away (near).  If calls are assumed to be
17314 far away, the compiler will always load the functions address up into a
17315 register, and call indirect through the pointer.
17316
17317 @item -mno-ep
17318 @itemx -mep
17319 @opindex mno-ep
17320 @opindex mep
17321 Do not optimize (do optimize) basic blocks that use the same index
17322 pointer 4 or more times to copy pointer into the @code{ep} register, and
17323 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
17324 option is on by default if you optimize.
17325
17326 @item -mno-prolog-function
17327 @itemx -mprolog-function
17328 @opindex mno-prolog-function
17329 @opindex mprolog-function
17330 Do not use (do use) external functions to save and restore registers
17331 at the prologue and epilogue of a function.  The external functions
17332 are slower, but use less code space if more than one function saves
17333 the same number of registers.  The @option{-mprolog-function} option
17334 is on by default if you optimize.
17335
17336 @item -mspace
17337 @opindex mspace
17338 Try to make the code as small as possible.  At present, this just turns
17339 on the @option{-mep} and @option{-mprolog-function} options.
17340
17341 @item -mtda=@var{n}
17342 @opindex mtda
17343 Put static or global variables whose size is @var{n} bytes or less into
17344 the tiny data area that register @code{ep} points to.  The tiny data
17345 area can hold up to 256 bytes in total (128 bytes for byte references).
17346
17347 @item -msda=@var{n}
17348 @opindex msda
17349 Put static or global variables whose size is @var{n} bytes or less into
17350 the small data area that register @code{gp} points to.  The small data
17351 area can hold up to 64 kilobytes.
17352
17353 @item -mzda=@var{n}
17354 @opindex mzda
17355 Put static or global variables whose size is @var{n} bytes or less into
17356 the first 32 kilobytes of memory.
17357
17358 @item -mv850
17359 @opindex mv850
17360 Specify that the target processor is the V850.
17361
17362 @item -mbig-switch
17363 @opindex mbig-switch
17364 Generate code suitable for big switch tables.  Use this option only if
17365 the assembler/linker complain about out of range branches within a switch
17366 table.
17367
17368 @item -mapp-regs
17369 @opindex mapp-regs
17370 This option will cause r2 and r5 to be used in the code generated by
17371 the compiler.  This setting is the default.
17372
17373 @item -mno-app-regs
17374 @opindex mno-app-regs
17375 This option will cause r2 and r5 to be treated as fixed registers.
17376
17377 @item -mv850e2v3
17378 @opindex mv850e2v3
17379 Specify that the target processor is the V850E2V3.  The preprocessor
17380 constants @samp{__v850e2v3__} will be defined if
17381 this option is used.
17382
17383 @item -mv850e2
17384 @opindex mv850e2
17385 Specify that the target processor is the V850E2.  The preprocessor
17386 constants @samp{__v850e2__} will be defined if this option is used.
17387
17388 @item -mv850e1
17389 @opindex mv850e1
17390 Specify that the target processor is the V850E1.  The preprocessor
17391 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
17392 this option is used.
17393
17394 @item -mv850es
17395 @opindex mv850es
17396 Specify that the target processor is the V850ES.  This is an alias for
17397 the @option{-mv850e1} option.
17398
17399 @item -mv850e
17400 @opindex mv850e
17401 Specify that the target processor is the V850E@.  The preprocessor
17402 constant @samp{__v850e__} will be defined if this option is used.
17403
17404 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
17405 nor @option{-mv850e2} nor @option{-mv850e2v3}
17406 are defined then a default target processor will be chosen and the
17407 relevant @samp{__v850*__} preprocessor constant will be defined.
17408
17409 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
17410 defined, regardless of which processor variant is the target.
17411
17412 @item -mdisable-callt
17413 @opindex mdisable-callt
17414 This option will suppress generation of the CALLT instruction for the
17415 v850e, v850e1, v850e2 and v850e2v3 flavors of the v850 architecture.  The default is
17416 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
17417
17418 @end table
17419
17420 @node VAX Options
17421 @subsection VAX Options
17422 @cindex VAX options
17423
17424 These @samp{-m} options are defined for the VAX:
17425
17426 @table @gcctabopt
17427 @item -munix
17428 @opindex munix
17429 Do not output certain jump instructions (@code{aobleq} and so on)
17430 that the Unix assembler for the VAX cannot handle across long
17431 ranges.
17432
17433 @item -mgnu
17434 @opindex mgnu
17435 Do output those jump instructions, on the assumption that you
17436 will assemble with the GNU assembler.
17437
17438 @item -mg
17439 @opindex mg
17440 Output code for g-format floating point numbers instead of d-format.
17441 @end table
17442
17443 @node VxWorks Options
17444 @subsection VxWorks Options
17445 @cindex VxWorks Options
17446
17447 The options in this section are defined for all VxWorks targets.
17448 Options specific to the target hardware are listed with the other
17449 options for that target.
17450
17451 @table @gcctabopt
17452 @item -mrtp
17453 @opindex mrtp
17454 GCC can generate code for both VxWorks kernels and real time processes
17455 (RTPs).  This option switches from the former to the latter.  It also
17456 defines the preprocessor macro @code{__RTP__}.
17457
17458 @item -non-static
17459 @opindex non-static
17460 Link an RTP executable against shared libraries rather than static
17461 libraries.  The options @option{-static} and @option{-shared} can
17462 also be used for RTPs (@pxref{Link Options}); @option{-static}
17463 is the default.
17464
17465 @item -Bstatic
17466 @itemx -Bdynamic
17467 @opindex Bstatic
17468 @opindex Bdynamic
17469 These options are passed down to the linker.  They are defined for
17470 compatibility with Diab.
17471
17472 @item -Xbind-lazy
17473 @opindex Xbind-lazy
17474 Enable lazy binding of function calls.  This option is equivalent to
17475 @option{-Wl,-z,now} and is defined for compatibility with Diab.
17476
17477 @item -Xbind-now
17478 @opindex Xbind-now
17479 Disable lazy binding of function calls.  This option is the default and
17480 is defined for compatibility with Diab.
17481 @end table
17482
17483 @node x86-64 Options
17484 @subsection x86-64 Options
17485 @cindex x86-64 options
17486
17487 These are listed under @xref{i386 and x86-64 Options}.
17488
17489 @node Xstormy16 Options
17490 @subsection Xstormy16 Options
17491 @cindex Xstormy16 Options
17492
17493 These options are defined for Xstormy16:
17494
17495 @table @gcctabopt
17496 @item -msim
17497 @opindex msim
17498 Choose startup files and linker script suitable for the simulator.
17499 @end table
17500
17501 @node Xtensa Options
17502 @subsection Xtensa Options
17503 @cindex Xtensa Options
17504
17505 These options are supported for Xtensa targets:
17506
17507 @table @gcctabopt
17508 @item -mconst16
17509 @itemx -mno-const16
17510 @opindex mconst16
17511 @opindex mno-const16
17512 Enable or disable use of @code{CONST16} instructions for loading
17513 constant values.  The @code{CONST16} instruction is currently not a
17514 standard option from Tensilica.  When enabled, @code{CONST16}
17515 instructions are always used in place of the standard @code{L32R}
17516 instructions.  The use of @code{CONST16} is enabled by default only if
17517 the @code{L32R} instruction is not available.
17518
17519 @item -mfused-madd
17520 @itemx -mno-fused-madd
17521 @opindex mfused-madd
17522 @opindex mno-fused-madd
17523 Enable or disable use of fused multiply/add and multiply/subtract
17524 instructions in the floating-point option.  This has no effect if the
17525 floating-point option is not also enabled.  Disabling fused multiply/add
17526 and multiply/subtract instructions forces the compiler to use separate
17527 instructions for the multiply and add/subtract operations.  This may be
17528 desirable in some cases where strict IEEE 754-compliant results are
17529 required: the fused multiply add/subtract instructions do not round the
17530 intermediate result, thereby producing results with @emph{more} bits of
17531 precision than specified by the IEEE standard.  Disabling fused multiply
17532 add/subtract instructions also ensures that the program output is not
17533 sensitive to the compiler's ability to combine multiply and add/subtract
17534 operations.
17535
17536 @item -mserialize-volatile
17537 @itemx -mno-serialize-volatile
17538 @opindex mserialize-volatile
17539 @opindex mno-serialize-volatile
17540 When this option is enabled, GCC inserts @code{MEMW} instructions before
17541 @code{volatile} memory references to guarantee sequential consistency.
17542 The default is @option{-mserialize-volatile}.  Use
17543 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
17544
17545 @item -mforce-no-pic
17546 @opindex mforce-no-pic
17547 For targets, like GNU/Linux, where all user-mode Xtensa code must be
17548 position-independent code (PIC), this option disables PIC for compiling
17549 kernel code.
17550
17551 @item -mtext-section-literals
17552 @itemx -mno-text-section-literals
17553 @opindex mtext-section-literals
17554 @opindex mno-text-section-literals
17555 Control the treatment of literal pools.  The default is
17556 @option{-mno-text-section-literals}, which places literals in a separate
17557 section in the output file.  This allows the literal pool to be placed
17558 in a data RAM/ROM, and it also allows the linker to combine literal
17559 pools from separate object files to remove redundant literals and
17560 improve code size.  With @option{-mtext-section-literals}, the literals
17561 are interspersed in the text section in order to keep them as close as
17562 possible to their references.  This may be necessary for large assembly
17563 files.
17564
17565 @item -mtarget-align
17566 @itemx -mno-target-align
17567 @opindex mtarget-align
17568 @opindex mno-target-align
17569 When this option is enabled, GCC instructs the assembler to
17570 automatically align instructions to reduce branch penalties at the
17571 expense of some code density.  The assembler attempts to widen density
17572 instructions to align branch targets and the instructions following call
17573 instructions.  If there are not enough preceding safe density
17574 instructions to align a target, no widening will be performed.  The
17575 default is @option{-mtarget-align}.  These options do not affect the
17576 treatment of auto-aligned instructions like @code{LOOP}, which the
17577 assembler will always align, either by widening density instructions or
17578 by inserting no-op instructions.
17579
17580 @item -mlongcalls
17581 @itemx -mno-longcalls
17582 @opindex mlongcalls
17583 @opindex mno-longcalls
17584 When this option is enabled, GCC instructs the assembler to translate
17585 direct calls to indirect calls unless it can determine that the target
17586 of a direct call is in the range allowed by the call instruction.  This
17587 translation typically occurs for calls to functions in other source
17588 files.  Specifically, the assembler translates a direct @code{CALL}
17589 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
17590 The default is @option{-mno-longcalls}.  This option should be used in
17591 programs where the call target can potentially be out of range.  This
17592 option is implemented in the assembler, not the compiler, so the
17593 assembly code generated by GCC will still show direct call
17594 instructions---look at the disassembled object code to see the actual
17595 instructions.  Note that the assembler will use an indirect call for
17596 every cross-file call, not just those that really will be out of range.
17597 @end table
17598
17599 @node zSeries Options
17600 @subsection zSeries Options
17601 @cindex zSeries options
17602
17603 These are listed under @xref{S/390 and zSeries Options}.
17604
17605 @node Code Gen Options
17606 @section Options for Code Generation Conventions
17607 @cindex code generation conventions
17608 @cindex options, code generation
17609 @cindex run-time options
17610
17611 These machine-independent options control the interface conventions
17612 used in code generation.
17613
17614 Most of them have both positive and negative forms; the negative form
17615 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
17616 one of the forms is listed---the one which is not the default.  You
17617 can figure out the other form by either removing @samp{no-} or adding
17618 it.
17619
17620 @table @gcctabopt
17621 @item -fbounds-check
17622 @opindex fbounds-check
17623 For front-ends that support it, generate additional code to check that
17624 indices used to access arrays are within the declared range.  This is
17625 currently only supported by the Java and Fortran front-ends, where
17626 this option defaults to true and false respectively.
17627
17628 @item -ftrapv
17629 @opindex ftrapv
17630 This option generates traps for signed overflow on addition, subtraction,
17631 multiplication operations.
17632
17633 @item -fwrapv
17634 @opindex fwrapv
17635 This option instructs the compiler to assume that signed arithmetic
17636 overflow of addition, subtraction and multiplication wraps around
17637 using twos-complement representation.  This flag enables some optimizations
17638 and disables others.  This option is enabled by default for the Java
17639 front-end, as required by the Java language specification.
17640
17641 @item -fexceptions
17642 @opindex fexceptions
17643 Enable exception handling.  Generates extra code needed to propagate
17644 exceptions.  For some targets, this implies GCC will generate frame
17645 unwind information for all functions, which can produce significant data
17646 size overhead, although it does not affect execution.  If you do not
17647 specify this option, GCC will enable it by default for languages like
17648 C++ which normally require exception handling, and disable it for
17649 languages like C that do not normally require it.  However, you may need
17650 to enable this option when compiling C code that needs to interoperate
17651 properly with exception handlers written in C++.  You may also wish to
17652 disable this option if you are compiling older C++ programs that don't
17653 use exception handling.
17654
17655 @item -fnon-call-exceptions
17656 @opindex fnon-call-exceptions
17657 Generate code that allows trapping instructions to throw exceptions.
17658 Note that this requires platform-specific runtime support that does
17659 not exist everywhere.  Moreover, it only allows @emph{trapping}
17660 instructions to throw exceptions, i.e.@: memory references or floating
17661 point instructions.  It does not allow exceptions to be thrown from
17662 arbitrary signal handlers such as @code{SIGALRM}.
17663
17664 @item -funwind-tables
17665 @opindex funwind-tables
17666 Similar to @option{-fexceptions}, except that it will just generate any needed
17667 static data, but will not affect the generated code in any other way.
17668 You will normally not enable this option; instead, a language processor
17669 that needs this handling would enable it on your behalf.
17670
17671 @item -fasynchronous-unwind-tables
17672 @opindex fasynchronous-unwind-tables
17673 Generate unwind table in dwarf2 format, if supported by target machine.  The
17674 table is exact at each instruction boundary, so it can be used for stack
17675 unwinding from asynchronous events (such as debugger or garbage collector).
17676
17677 @item -fpcc-struct-return
17678 @opindex fpcc-struct-return
17679 Return ``short'' @code{struct} and @code{union} values in memory like
17680 longer ones, rather than in registers.  This convention is less
17681 efficient, but it has the advantage of allowing intercallability between
17682 GCC-compiled files and files compiled with other compilers, particularly
17683 the Portable C Compiler (pcc).
17684
17685 The precise convention for returning structures in memory depends
17686 on the target configuration macros.
17687
17688 Short structures and unions are those whose size and alignment match
17689 that of some integer type.
17690
17691 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
17692 switch is not binary compatible with code compiled with the
17693 @option{-freg-struct-return} switch.
17694 Use it to conform to a non-default application binary interface.
17695
17696 @item -freg-struct-return
17697 @opindex freg-struct-return
17698 Return @code{struct} and @code{union} values in registers when possible.
17699 This is more efficient for small structures than
17700 @option{-fpcc-struct-return}.
17701
17702 If you specify neither @option{-fpcc-struct-return} nor
17703 @option{-freg-struct-return}, GCC defaults to whichever convention is
17704 standard for the target.  If there is no standard convention, GCC
17705 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
17706 the principal compiler.  In those cases, we can choose the standard, and
17707 we chose the more efficient register return alternative.
17708
17709 @strong{Warning:} code compiled with the @option{-freg-struct-return}
17710 switch is not binary compatible with code compiled with the
17711 @option{-fpcc-struct-return} switch.
17712 Use it to conform to a non-default application binary interface.
17713
17714 @item -fshort-enums
17715 @opindex fshort-enums
17716 Allocate to an @code{enum} type only as many bytes as it needs for the
17717 declared range of possible values.  Specifically, the @code{enum} type
17718 will be equivalent to the smallest integer type which has enough room.
17719
17720 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
17721 code that is not binary compatible with code generated without that switch.
17722 Use it to conform to a non-default application binary interface.
17723
17724 @item -fshort-double
17725 @opindex fshort-double
17726 Use the same size for @code{double} as for @code{float}.
17727
17728 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
17729 code that is not binary compatible with code generated without that switch.
17730 Use it to conform to a non-default application binary interface.
17731
17732 @item -fshort-wchar
17733 @opindex fshort-wchar
17734 Override the underlying type for @samp{wchar_t} to be @samp{short
17735 unsigned int} instead of the default for the target.  This option is
17736 useful for building programs to run under WINE@.
17737
17738 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
17739 code that is not binary compatible with code generated without that switch.
17740 Use it to conform to a non-default application binary interface.
17741
17742 @item -fno-common
17743 @opindex fno-common
17744 In C code, controls the placement of uninitialized global variables.
17745 Unix C compilers have traditionally permitted multiple definitions of
17746 such variables in different compilation units by placing the variables
17747 in a common block.
17748 This is the behavior specified by @option{-fcommon}, and is the default
17749 for GCC on most targets.
17750 On the other hand, this behavior is not required by ISO C, and on some
17751 targets may carry a speed or code size penalty on variable references.
17752 The @option{-fno-common} option specifies that the compiler should place
17753 uninitialized global variables in the data section of the object file,
17754 rather than generating them as common blocks.
17755 This has the effect that if the same variable is declared
17756 (without @code{extern}) in two different compilations,
17757 you will get a multiple-definition error when you link them.
17758 In this case, you must compile with @option{-fcommon} instead.
17759 Compiling with @option{-fno-common} is useful on targets for which
17760 it provides better performance, or if you wish to verify that the
17761 program will work on other systems which always treat uninitialized
17762 variable declarations this way.
17763
17764 @item -fno-ident
17765 @opindex fno-ident
17766 Ignore the @samp{#ident} directive.
17767
17768 @item -finhibit-size-directive
17769 @opindex finhibit-size-directive
17770 Don't output a @code{.size} assembler directive, or anything else that
17771 would cause trouble if the function is split in the middle, and the
17772 two halves are placed at locations far apart in memory.  This option is
17773 used when compiling @file{crtstuff.c}; you should not need to use it
17774 for anything else.
17775
17776 @item -fverbose-asm
17777 @opindex fverbose-asm
17778 Put extra commentary information in the generated assembly code to
17779 make it more readable.  This option is generally only of use to those
17780 who actually need to read the generated assembly code (perhaps while
17781 debugging the compiler itself).
17782
17783 @option{-fno-verbose-asm}, the default, causes the
17784 extra information to be omitted and is useful when comparing two assembler
17785 files.
17786
17787 @item -frecord-gcc-switches
17788 @opindex frecord-gcc-switches
17789 This switch causes the command line that was used to invoke the
17790 compiler to be recorded into the object file that is being created.
17791 This switch is only implemented on some targets and the exact format
17792 of the recording is target and binary file format dependent, but it
17793 usually takes the form of a section containing ASCII text.  This
17794 switch is related to the @option{-fverbose-asm} switch, but that
17795 switch only records information in the assembler output file as
17796 comments, so it never reaches the object file.
17797
17798 @item -fpic
17799 @opindex fpic
17800 @cindex global offset table
17801 @cindex PIC
17802 Generate position-independent code (PIC) suitable for use in a shared
17803 library, if supported for the target machine.  Such code accesses all
17804 constant addresses through a global offset table (GOT)@.  The dynamic
17805 loader resolves the GOT entries when the program starts (the dynamic
17806 loader is not part of GCC; it is part of the operating system).  If
17807 the GOT size for the linked executable exceeds a machine-specific
17808 maximum size, you get an error message from the linker indicating that
17809 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
17810 instead.  (These maximums are 8k on the SPARC and 32k
17811 on the m68k and RS/6000.  The 386 has no such limit.)
17812
17813 Position-independent code requires special support, and therefore works
17814 only on certain machines.  For the 386, GCC supports PIC for System V
17815 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
17816 position-independent.
17817
17818 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17819 are defined to 1.
17820
17821 @item -fPIC
17822 @opindex fPIC
17823 If supported for the target machine, emit position-independent code,
17824 suitable for dynamic linking and avoiding any limit on the size of the
17825 global offset table.  This option makes a difference on the m68k,
17826 PowerPC and SPARC@.
17827
17828 Position-independent code requires special support, and therefore works
17829 only on certain machines.
17830
17831 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17832 are defined to 2.
17833
17834 @item -fpie
17835 @itemx -fPIE
17836 @opindex fpie
17837 @opindex fPIE
17838 These options are similar to @option{-fpic} and @option{-fPIC}, but
17839 generated position independent code can be only linked into executables.
17840 Usually these options are used when @option{-pie} GCC option will be
17841 used during linking.
17842
17843 @option{-fpie} and @option{-fPIE} both define the macros
17844 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
17845 for @option{-fpie} and 2 for @option{-fPIE}.
17846
17847 @item -fno-jump-tables
17848 @opindex fno-jump-tables
17849 Do not use jump tables for switch statements even where it would be
17850 more efficient than other code generation strategies.  This option is
17851 of use in conjunction with @option{-fpic} or @option{-fPIC} for
17852 building code which forms part of a dynamic linker and cannot
17853 reference the address of a jump table.  On some targets, jump tables
17854 do not require a GOT and this option is not needed.
17855
17856 @item -ffixed-@var{reg}
17857 @opindex ffixed
17858 Treat the register named @var{reg} as a fixed register; generated code
17859 should never refer to it (except perhaps as a stack pointer, frame
17860 pointer or in some other fixed role).
17861
17862 @var{reg} must be the name of a register.  The register names accepted
17863 are machine-specific and are defined in the @code{REGISTER_NAMES}
17864 macro in the machine description macro file.
17865
17866 This flag does not have a negative form, because it specifies a
17867 three-way choice.
17868
17869 @item -fcall-used-@var{reg}
17870 @opindex fcall-used
17871 Treat the register named @var{reg} as an allocable register that is
17872 clobbered by function calls.  It may be allocated for temporaries or
17873 variables that do not live across a call.  Functions compiled this way
17874 will not save and restore the register @var{reg}.
17875
17876 It is an error to used this flag with the frame pointer or stack pointer.
17877 Use of this flag for other registers that have fixed pervasive roles in
17878 the machine's execution model will produce disastrous results.
17879
17880 This flag does not have a negative form, because it specifies a
17881 three-way choice.
17882
17883 @item -fcall-saved-@var{reg}
17884 @opindex fcall-saved
17885 Treat the register named @var{reg} as an allocable register saved by
17886 functions.  It may be allocated even for temporaries or variables that
17887 live across a call.  Functions compiled this way will save and restore
17888 the register @var{reg} if they use it.
17889
17890 It is an error to used this flag with the frame pointer or stack pointer.
17891 Use of this flag for other registers that have fixed pervasive roles in
17892 the machine's execution model will produce disastrous results.
17893
17894 A different sort of disaster will result from the use of this flag for
17895 a register in which function values may be returned.
17896
17897 This flag does not have a negative form, because it specifies a
17898 three-way choice.
17899
17900 @item -fpack-struct[=@var{n}]
17901 @opindex fpack-struct
17902 Without a value specified, pack all structure members together without
17903 holes.  When a value is specified (which must be a small power of two), pack
17904 structure members according to this value, representing the maximum
17905 alignment (that is, objects with default alignment requirements larger than
17906 this will be output potentially unaligned at the next fitting location.
17907
17908 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
17909 code that is not binary compatible with code generated without that switch.
17910 Additionally, it makes the code suboptimal.
17911 Use it to conform to a non-default application binary interface.
17912
17913 @item -finstrument-functions
17914 @opindex finstrument-functions
17915 Generate instrumentation calls for entry and exit to functions.  Just
17916 after function entry and just before function exit, the following
17917 profiling functions will be called with the address of the current
17918 function and its call site.  (On some platforms,
17919 @code{__builtin_return_address} does not work beyond the current
17920 function, so the call site information may not be available to the
17921 profiling functions otherwise.)
17922
17923 @smallexample
17924 void __cyg_profile_func_enter (void *this_fn,
17925                                void *call_site);
17926 void __cyg_profile_func_exit  (void *this_fn,
17927                                void *call_site);
17928 @end smallexample
17929
17930 The first argument is the address of the start of the current function,
17931 which may be looked up exactly in the symbol table.
17932
17933 This instrumentation is also done for functions expanded inline in other
17934 functions.  The profiling calls will indicate where, conceptually, the
17935 inline function is entered and exited.  This means that addressable
17936 versions of such functions must be available.  If all your uses of a
17937 function are expanded inline, this may mean an additional expansion of
17938 code size.  If you use @samp{extern inline} in your C code, an
17939 addressable version of such functions must be provided.  (This is
17940 normally the case anyways, but if you get lucky and the optimizer always
17941 expands the functions inline, you might have gotten away without
17942 providing static copies.)
17943
17944 A function may be given the attribute @code{no_instrument_function}, in
17945 which case this instrumentation will not be done.  This can be used, for
17946 example, for the profiling functions listed above, high-priority
17947 interrupt routines, and any functions from which the profiling functions
17948 cannot safely be called (perhaps signal handlers, if the profiling
17949 routines generate output or allocate memory).
17950
17951 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
17952 @opindex finstrument-functions-exclude-file-list
17953
17954 Set the list of functions that are excluded from instrumentation (see
17955 the description of @code{-finstrument-functions}).  If the file that
17956 contains a function definition matches with one of @var{file}, then
17957 that function is not instrumented.  The match is done on substrings:
17958 if the @var{file} parameter is a substring of the file name, it is
17959 considered to be a match.
17960
17961 For example:
17962
17963 @smallexample
17964 -finstrument-functions-exclude-file-list=/bits/stl,include/sys
17965 @end smallexample
17966
17967 @noindent
17968 will exclude any inline function defined in files whose pathnames
17969 contain @code{/bits/stl} or @code{include/sys}.
17970
17971 If, for some reason, you want to include letter @code{','} in one of
17972 @var{sym}, write @code{'\,'}. For example,
17973 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
17974 (note the single quote surrounding the option).
17975
17976 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
17977 @opindex finstrument-functions-exclude-function-list
17978
17979 This is similar to @code{-finstrument-functions-exclude-file-list},
17980 but this option sets the list of function names to be excluded from
17981 instrumentation.  The function name to be matched is its user-visible
17982 name, such as @code{vector<int> blah(const vector<int> &)}, not the
17983 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
17984 match is done on substrings: if the @var{sym} parameter is a substring
17985 of the function name, it is considered to be a match.  For C99 and C++
17986 extended identifiers, the function name must be given in UTF-8, not
17987 using universal character names.
17988
17989 @item -fstack-check
17990 @opindex fstack-check
17991 Generate code to verify that you do not go beyond the boundary of the
17992 stack.  You should specify this flag if you are running in an
17993 environment with multiple threads, but only rarely need to specify it in
17994 a single-threaded environment since stack overflow is automatically
17995 detected on nearly all systems if there is only one stack.
17996
17997 Note that this switch does not actually cause checking to be done; the
17998 operating system or the language runtime must do that.  The switch causes
17999 generation of code to ensure that they see the stack being extended.
18000
18001 You can additionally specify a string parameter: @code{no} means no
18002 checking, @code{generic} means force the use of old-style checking,
18003 @code{specific} means use the best checking method and is equivalent
18004 to bare @option{-fstack-check}.
18005
18006 Old-style checking is a generic mechanism that requires no specific
18007 target support in the compiler but comes with the following drawbacks:
18008
18009 @enumerate
18010 @item
18011 Modified allocation strategy for large objects: they will always be
18012 allocated dynamically if their size exceeds a fixed threshold.
18013
18014 @item
18015 Fixed limit on the size of the static frame of functions: when it is
18016 topped by a particular function, stack checking is not reliable and
18017 a warning is issued by the compiler.
18018
18019 @item
18020 Inefficiency: because of both the modified allocation strategy and the
18021 generic implementation, the performances of the code are hampered.
18022 @end enumerate
18023
18024 Note that old-style stack checking is also the fallback method for
18025 @code{specific} if no target support has been added in the compiler.
18026
18027 @item -fstack-limit-register=@var{reg}
18028 @itemx -fstack-limit-symbol=@var{sym}
18029 @itemx -fno-stack-limit
18030 @opindex fstack-limit-register
18031 @opindex fstack-limit-symbol
18032 @opindex fno-stack-limit
18033 Generate code to ensure that the stack does not grow beyond a certain value,
18034 either the value of a register or the address of a symbol.  If the stack
18035 would grow beyond the value, a signal is raised.  For most targets,
18036 the signal is raised before the stack overruns the boundary, so
18037 it is possible to catch the signal without taking special precautions.
18038
18039 For instance, if the stack starts at absolute address @samp{0x80000000}
18040 and grows downwards, you can use the flags
18041 @option{-fstack-limit-symbol=__stack_limit} and
18042 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
18043 of 128KB@.  Note that this may only work with the GNU linker.
18044
18045 @item -fsplit-stack
18046 @opindex fsplit-stack
18047 Generate code to automatically split the stack before it overflows.
18048 The resulting program has a discontiguous stack which can only
18049 overflow if the program is unable to allocate any more memory.  This
18050 is most useful when running threaded programs, as it is no longer
18051 necessary to calculate a good stack size to use for each thread.  This
18052 is currently only implemented for the i386 and x86_64 backends running
18053 GNU/Linux.
18054
18055 When code compiled with @option{-fsplit-stack} calls code compiled
18056 without @option{-fsplit-stack}, there may not be much stack space
18057 available for the latter code to run.  If compiling all code,
18058 including library code, with @option{-fsplit-stack} is not an option,
18059 then the linker can fix up these calls so that the code compiled
18060 without @option{-fsplit-stack} always has a large stack.  Support for
18061 this is implemented in the gold linker in GNU binutils release 2.21
18062 and later.
18063
18064 @item -fleading-underscore
18065 @opindex fleading-underscore
18066 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
18067 change the way C symbols are represented in the object file.  One use
18068 is to help link with legacy assembly code.
18069
18070 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
18071 generate code that is not binary compatible with code generated without that
18072 switch.  Use it to conform to a non-default application binary interface.
18073 Not all targets provide complete support for this switch.
18074
18075 @item -ftls-model=@var{model}
18076 @opindex ftls-model
18077 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
18078 The @var{model} argument should be one of @code{global-dynamic},
18079 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
18080
18081 The default without @option{-fpic} is @code{initial-exec}; with
18082 @option{-fpic} the default is @code{global-dynamic}.
18083
18084 @item -fvisibility=@var{default|internal|hidden|protected}
18085 @opindex fvisibility
18086 Set the default ELF image symbol visibility to the specified option---all
18087 symbols will be marked with this unless overridden within the code.
18088 Using this feature can very substantially improve linking and
18089 load times of shared object libraries, produce more optimized
18090 code, provide near-perfect API export and prevent symbol clashes.
18091 It is @strong{strongly} recommended that you use this in any shared objects
18092 you distribute.
18093
18094 Despite the nomenclature, @code{default} always means public; i.e.,
18095 available to be linked against from outside the shared object.
18096 @code{protected} and @code{internal} are pretty useless in real-world
18097 usage so the only other commonly used option will be @code{hidden}.
18098 The default if @option{-fvisibility} isn't specified is
18099 @code{default}, i.e., make every
18100 symbol public---this causes the same behavior as previous versions of
18101 GCC@.
18102
18103 A good explanation of the benefits offered by ensuring ELF
18104 symbols have the correct visibility is given by ``How To Write
18105 Shared Libraries'' by Ulrich Drepper (which can be found at
18106 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
18107 solution made possible by this option to marking things hidden when
18108 the default is public is to make the default hidden and mark things
18109 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
18110 and @code{__attribute__ ((visibility("default")))} instead of
18111 @code{__declspec(dllexport)} you get almost identical semantics with
18112 identical syntax.  This is a great boon to those working with
18113 cross-platform projects.
18114
18115 For those adding visibility support to existing code, you may find
18116 @samp{#pragma GCC visibility} of use.  This works by you enclosing
18117 the declarations you wish to set visibility for with (for example)
18118 @samp{#pragma GCC visibility push(hidden)} and
18119 @samp{#pragma GCC visibility pop}.
18120 Bear in mind that symbol visibility should be viewed @strong{as
18121 part of the API interface contract} and thus all new code should
18122 always specify visibility when it is not the default; i.e., declarations
18123 only for use within the local DSO should @strong{always} be marked explicitly
18124 as hidden as so to avoid PLT indirection overheads---making this
18125 abundantly clear also aids readability and self-documentation of the code.
18126 Note that due to ISO C++ specification requirements, operator new and
18127 operator delete must always be of default visibility.
18128
18129 Be aware that headers from outside your project, in particular system
18130 headers and headers from any other library you use, may not be
18131 expecting to be compiled with visibility other than the default.  You
18132 may need to explicitly say @samp{#pragma GCC visibility push(default)}
18133 before including any such headers.
18134
18135 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
18136 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
18137 no modifications.  However, this means that calls to @samp{extern}
18138 functions with no explicit visibility will use the PLT, so it is more
18139 effective to use @samp{__attribute ((visibility))} and/or
18140 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
18141 declarations should be treated as hidden.
18142
18143 Note that @samp{-fvisibility} does affect C++ vague linkage
18144 entities. This means that, for instance, an exception class that will
18145 be thrown between DSOs must be explicitly marked with default
18146 visibility so that the @samp{type_info} nodes will be unified between
18147 the DSOs.
18148
18149 An overview of these techniques, their benefits and how to use them
18150 is at @uref{http://gcc.gnu.org/@/wiki/@/Visibility}.
18151
18152 @item -fstrict-volatile-bitfields
18153 @opindex fstrict-volatile-bitfields
18154 This option should be used if accesses to volatile bitfields (or other
18155 structure fields, although the compiler usually honors those types
18156 anyway) should use a single access of the width of the
18157 field's type, aligned to a natural alignment if possible.  For
18158 example, targets with memory-mapped peripheral registers might require
18159 all such accesses to be 16 bits wide; with this flag the user could
18160 declare all peripheral bitfields as ``unsigned short'' (assuming short
18161 is 16 bits on these targets) to force GCC to use 16 bit accesses
18162 instead of, perhaps, a more efficient 32 bit access.
18163
18164 If this option is disabled, the compiler will use the most efficient
18165 instruction.  In the previous example, that might be a 32-bit load
18166 instruction, even though that will access bytes that do not contain
18167 any portion of the bitfield, or memory-mapped registers unrelated to
18168 the one being updated.
18169
18170 If the target requires strict alignment, and honoring the field
18171 type would require violating this alignment, a warning is issued.
18172 If the field has @code{packed} attribute, the access is done without
18173 honoring the field type.  If the field doesn't have @code{packed}
18174 attribute, the access is done honoring the field type.  In both cases,
18175 GCC assumes that the user knows something about the target hardware
18176 that it is unaware of.
18177
18178 The default value of this option is determined by the application binary
18179 interface for the target processor.
18180
18181 @end table
18182
18183 @c man end
18184
18185 @node Environment Variables
18186 @section Environment Variables Affecting GCC
18187 @cindex environment variables
18188
18189 @c man begin ENVIRONMENT
18190 This section describes several environment variables that affect how GCC
18191 operates.  Some of them work by specifying directories or prefixes to use
18192 when searching for various kinds of files.  Some are used to specify other
18193 aspects of the compilation environment.
18194
18195 Note that you can also specify places to search using options such as
18196 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
18197 take precedence over places specified using environment variables, which
18198 in turn take precedence over those specified by the configuration of GCC@.
18199 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
18200 GNU Compiler Collection (GCC) Internals}.
18201
18202 @table @env
18203 @item LANG
18204 @itemx LC_CTYPE
18205 @c @itemx LC_COLLATE
18206 @itemx LC_MESSAGES
18207 @c @itemx LC_MONETARY
18208 @c @itemx LC_NUMERIC
18209 @c @itemx LC_TIME
18210 @itemx LC_ALL
18211 @findex LANG
18212 @findex LC_CTYPE
18213 @c @findex LC_COLLATE
18214 @findex LC_MESSAGES
18215 @c @findex LC_MONETARY
18216 @c @findex LC_NUMERIC
18217 @c @findex LC_TIME
18218 @findex LC_ALL
18219 @cindex locale
18220 These environment variables control the way that GCC uses
18221 localization information that allow GCC to work with different
18222 national conventions.  GCC inspects the locale categories
18223 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
18224 so.  These locale categories can be set to any value supported by your
18225 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
18226 Kingdom encoded in UTF-8.
18227
18228 The @env{LC_CTYPE} environment variable specifies character
18229 classification.  GCC uses it to determine the character boundaries in
18230 a string; this is needed for some multibyte encodings that contain quote
18231 and escape characters that would otherwise be interpreted as a string
18232 end or escape.
18233
18234 The @env{LC_MESSAGES} environment variable specifies the language to
18235 use in diagnostic messages.
18236
18237 If the @env{LC_ALL} environment variable is set, it overrides the value
18238 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
18239 and @env{LC_MESSAGES} default to the value of the @env{LANG}
18240 environment variable.  If none of these variables are set, GCC
18241 defaults to traditional C English behavior.
18242
18243 @item TMPDIR
18244 @findex TMPDIR
18245 If @env{TMPDIR} is set, it specifies the directory to use for temporary
18246 files.  GCC uses temporary files to hold the output of one stage of
18247 compilation which is to be used as input to the next stage: for example,
18248 the output of the preprocessor, which is the input to the compiler
18249 proper.
18250
18251 @item GCC_COMPARE_DEBUG
18252 @findex GCC_COMPARE_DEBUG
18253 Setting @env{GCC_COMPARE_DEBUG} is nearly equivalent to passing
18254 @option{-fcompare-debug} to the compiler driver.  See the documentation
18255 of this option for more details.
18256
18257 @item GCC_EXEC_PREFIX
18258 @findex GCC_EXEC_PREFIX
18259 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
18260 names of the subprograms executed by the compiler.  No slash is added
18261 when this prefix is combined with the name of a subprogram, but you can
18262 specify a prefix that ends with a slash if you wish.
18263
18264 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
18265 an appropriate prefix to use based on the pathname it was invoked with.
18266
18267 If GCC cannot find the subprogram using the specified prefix, it
18268 tries looking in the usual places for the subprogram.
18269
18270 The default value of @env{GCC_EXEC_PREFIX} is
18271 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
18272 the installed compiler. In many cases @var{prefix} is the value
18273 of @code{prefix} when you ran the @file{configure} script.
18274
18275 Other prefixes specified with @option{-B} take precedence over this prefix.
18276
18277 This prefix is also used for finding files such as @file{crt0.o} that are
18278 used for linking.
18279
18280 In addition, the prefix is used in an unusual way in finding the
18281 directories to search for header files.  For each of the standard
18282 directories whose name normally begins with @samp{/usr/local/lib/gcc}
18283 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
18284 replacing that beginning with the specified prefix to produce an
18285 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
18286 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
18287 These alternate directories are searched first; the standard directories
18288 come next. If a standard directory begins with the configured
18289 @var{prefix} then the value of @var{prefix} is replaced by
18290 @env{GCC_EXEC_PREFIX} when looking for header files.
18291
18292 @item COMPILER_PATH
18293 @findex COMPILER_PATH
18294 The value of @env{COMPILER_PATH} is a colon-separated list of
18295 directories, much like @env{PATH}.  GCC tries the directories thus
18296 specified when searching for subprograms, if it can't find the
18297 subprograms using @env{GCC_EXEC_PREFIX}.
18298
18299 @item LIBRARY_PATH
18300 @findex LIBRARY_PATH
18301 The value of @env{LIBRARY_PATH} is a colon-separated list of
18302 directories, much like @env{PATH}.  When configured as a native compiler,
18303 GCC tries the directories thus specified when searching for special
18304 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
18305 using GCC also uses these directories when searching for ordinary
18306 libraries for the @option{-l} option (but directories specified with
18307 @option{-L} come first).
18308
18309 @item LANG
18310 @findex LANG
18311 @cindex locale definition
18312 This variable is used to pass locale information to the compiler.  One way in
18313 which this information is used is to determine the character set to be used
18314 when character literals, string literals and comments are parsed in C and C++.
18315 When the compiler is configured to allow multibyte characters,
18316 the following values for @env{LANG} are recognized:
18317
18318 @table @samp
18319 @item C-JIS
18320 Recognize JIS characters.
18321 @item C-SJIS
18322 Recognize SJIS characters.
18323 @item C-EUCJP
18324 Recognize EUCJP characters.
18325 @end table
18326
18327 If @env{LANG} is not defined, or if it has some other value, then the
18328 compiler will use mblen and mbtowc as defined by the default locale to
18329 recognize and translate multibyte characters.
18330 @end table
18331
18332 @noindent
18333 Some additional environments variables affect the behavior of the
18334 preprocessor.
18335
18336 @include cppenv.texi
18337
18338 @c man end
18339
18340 @node Precompiled Headers
18341 @section Using Precompiled Headers
18342 @cindex precompiled headers
18343 @cindex speed of compilation
18344
18345 Often large projects have many header files that are included in every
18346 source file.  The time the compiler takes to process these header files
18347 over and over again can account for nearly all of the time required to
18348 build the project.  To make builds faster, GCC allows users to
18349 `precompile' a header file; then, if builds can use the precompiled
18350 header file they will be much faster.
18351
18352 To create a precompiled header file, simply compile it as you would any
18353 other file, if necessary using the @option{-x} option to make the driver
18354 treat it as a C or C++ header file.  You will probably want to use a
18355 tool like @command{make} to keep the precompiled header up-to-date when
18356 the headers it contains change.
18357
18358 A precompiled header file will be searched for when @code{#include} is
18359 seen in the compilation.  As it searches for the included file
18360 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
18361 compiler looks for a precompiled header in each directory just before it
18362 looks for the include file in that directory.  The name searched for is
18363 the name specified in the @code{#include} with @samp{.gch} appended.  If
18364 the precompiled header file can't be used, it is ignored.
18365
18366 For instance, if you have @code{#include "all.h"}, and you have
18367 @file{all.h.gch} in the same directory as @file{all.h}, then the
18368 precompiled header file will be used if possible, and the original
18369 header will be used otherwise.
18370
18371 Alternatively, you might decide to put the precompiled header file in a
18372 directory and use @option{-I} to ensure that directory is searched
18373 before (or instead of) the directory containing the original header.
18374 Then, if you want to check that the precompiled header file is always
18375 used, you can put a file of the same name as the original header in this
18376 directory containing an @code{#error} command.
18377
18378 This also works with @option{-include}.  So yet another way to use
18379 precompiled headers, good for projects not designed with precompiled
18380 header files in mind, is to simply take most of the header files used by
18381 a project, include them from another header file, precompile that header
18382 file, and @option{-include} the precompiled header.  If the header files
18383 have guards against multiple inclusion, they will be skipped because
18384 they've already been included (in the precompiled header).
18385
18386 If you need to precompile the same header file for different
18387 languages, targets, or compiler options, you can instead make a
18388 @emph{directory} named like @file{all.h.gch}, and put each precompiled
18389 header in the directory, perhaps using @option{-o}.  It doesn't matter
18390 what you call the files in the directory, every precompiled header in
18391 the directory will be considered.  The first precompiled header
18392 encountered in the directory that is valid for this compilation will
18393 be used; they're searched in no particular order.
18394
18395 There are many other possibilities, limited only by your imagination,
18396 good sense, and the constraints of your build system.
18397
18398 A precompiled header file can be used only when these conditions apply:
18399
18400 @itemize
18401 @item
18402 Only one precompiled header can be used in a particular compilation.
18403
18404 @item
18405 A precompiled header can't be used once the first C token is seen.  You
18406 can have preprocessor directives before a precompiled header; you can
18407 even include a precompiled header from inside another header, so long as
18408 there are no C tokens before the @code{#include}.
18409
18410 @item
18411 The precompiled header file must be produced for the same language as
18412 the current compilation.  You can't use a C precompiled header for a C++
18413 compilation.
18414
18415 @item
18416 The precompiled header file must have been produced by the same compiler
18417 binary as the current compilation is using.
18418
18419 @item
18420 Any macros defined before the precompiled header is included must
18421 either be defined in the same way as when the precompiled header was
18422 generated, or must not affect the precompiled header, which usually
18423 means that they don't appear in the precompiled header at all.
18424
18425 The @option{-D} option is one way to define a macro before a
18426 precompiled header is included; using a @code{#define} can also do it.
18427 There are also some options that define macros implicitly, like
18428 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
18429 defined this way.
18430
18431 @item If debugging information is output when using the precompiled
18432 header, using @option{-g} or similar, the same kind of debugging information
18433 must have been output when building the precompiled header.  However,
18434 a precompiled header built using @option{-g} can be used in a compilation
18435 when no debugging information is being output.
18436
18437 @item The same @option{-m} options must generally be used when building
18438 and using the precompiled header.  @xref{Submodel Options},
18439 for any cases where this rule is relaxed.
18440
18441 @item Each of the following options must be the same when building and using
18442 the precompiled header:
18443
18444 @gccoptlist{-fexceptions}
18445
18446 @item
18447 Some other command-line options starting with @option{-f},
18448 @option{-p}, or @option{-O} must be defined in the same way as when
18449 the precompiled header was generated.  At present, it's not clear
18450 which options are safe to change and which are not; the safest choice
18451 is to use exactly the same options when generating and using the
18452 precompiled header.  The following are known to be safe:
18453
18454 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
18455 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
18456 -fsched-verbose=@var{number}  -fschedule-insns  -fvisibility= @gol
18457 -pedantic-errors}
18458
18459 @end itemize
18460
18461 For all of these except the last, the compiler will automatically
18462 ignore the precompiled header if the conditions aren't met.  If you
18463 find an option combination that doesn't work and doesn't cause the
18464 precompiled header to be ignored, please consider filing a bug report,
18465 see @ref{Bugs}.
18466
18467 If you do use differing options when generating and using the
18468 precompiled header, the actual behavior will be a mixture of the
18469 behavior for the options.  For instance, if you use @option{-g} to
18470 generate the precompiled header but not when using it, you may or may
18471 not get debugging information for routines in the precompiled header.