OSDN Git Service

848aa3746e06fe2f28fc53d16fb4266f72f22e45
[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 linker plugin during link time optimization.  This option
7705 relies on the linker plugin support in linker that 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 of
7709 library archives. This improves the quality of optimization by exposing more
7710 code the link time optimizer.  This information specify what symbols
7711 can be accessed externally (by non-LTO object or during dynamic linking).
7712 Resulting code quality improvements on binaries (and shared libraries that do
7713 use hidden visibility) is similar to @code{-fwhole-program}.  See
7714 @option{-flto} for a description on the effect of this flag and how to use it.
7715
7716 Enabled by default when LTO support in GCC is enabled and GCC was compiled
7717 with a linker supporting plugins (GNU ld 2.21 or newer or gold).
7718
7719 @item -fcompare-elim
7720 @opindex fcompare-elim
7721 After register allocation and post-register allocation instruction splitting,
7722 identify arithmetic instructions that compute processor flags similar to a
7723 comparison operation based on that arithmetic.  If possible, eliminate the
7724 explicit comparison operation.
7725
7726 This pass only applies to certain targets that cannot explicitly represent
7727 the comparison operation before register allocation is complete.
7728
7729 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7730
7731 @item -fcprop-registers
7732 @opindex fcprop-registers
7733 After register allocation and post-register allocation instruction splitting,
7734 we perform a copy-propagation pass to try to reduce scheduling dependencies
7735 and occasionally eliminate the copy.
7736
7737 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7738
7739 @item -fprofile-correction
7740 @opindex fprofile-correction
7741 Profiles collected using an instrumented binary for multi-threaded programs may
7742 be inconsistent due to missed counter updates. When this option is specified,
7743 GCC will use heuristics to correct or smooth out such inconsistencies. By
7744 default, GCC will emit an error message when an inconsistent profile is detected.
7745
7746 @item -fprofile-dir=@var{path}
7747 @opindex fprofile-dir
7748
7749 Set the directory to search for the profile data files in to @var{path}.
7750 This option affects only the profile data generated by
7751 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
7752 and used by @option{-fprofile-use} and @option{-fbranch-probabilities}
7753 and its related options.
7754 By default, GCC will use the current directory as @var{path}, thus the
7755 profile data file will appear in the same directory as the object file.
7756
7757 @item -fprofile-generate
7758 @itemx -fprofile-generate=@var{path}
7759 @opindex fprofile-generate
7760
7761 Enable options usually used for instrumenting application to produce
7762 profile useful for later recompilation with profile feedback based
7763 optimization.  You must use @option{-fprofile-generate} both when
7764 compiling and when linking your program.
7765
7766 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
7767
7768 If @var{path} is specified, GCC will look at the @var{path} to find
7769 the profile feedback data files. See @option{-fprofile-dir}.
7770
7771 @item -fprofile-use
7772 @itemx -fprofile-use=@var{path}
7773 @opindex fprofile-use
7774 Enable profile feedback directed optimizations, and optimizations
7775 generally profitable only with profile feedback available.
7776
7777 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
7778 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
7779
7780 By default, GCC emits an error message if the feedback profiles do not
7781 match the source code.  This error can be turned into a warning by using
7782 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
7783 code.
7784
7785 If @var{path} is specified, GCC will look at the @var{path} to find
7786 the profile feedback data files. See @option{-fprofile-dir}.
7787 @end table
7788
7789 The following options control compiler behavior regarding floating
7790 point arithmetic.  These options trade off between speed and
7791 correctness.  All must be specifically enabled.
7792
7793 @table @gcctabopt
7794 @item -ffloat-store
7795 @opindex ffloat-store
7796 Do not store floating point variables in registers, and inhibit other
7797 options that might change whether a floating point value is taken from a
7798 register or memory.
7799
7800 @cindex floating point precision
7801 This option prevents undesirable excess precision on machines such as
7802 the 68000 where the floating registers (of the 68881) keep more
7803 precision than a @code{double} is supposed to have.  Similarly for the
7804 x86 architecture.  For most programs, the excess precision does only
7805 good, but a few programs rely on the precise definition of IEEE floating
7806 point.  Use @option{-ffloat-store} for such programs, after modifying
7807 them to store all pertinent intermediate computations into variables.
7808
7809 @item -fexcess-precision=@var{style}
7810 @opindex fexcess-precision
7811 This option allows further control over excess precision on machines
7812 where floating-point registers have more precision than the IEEE
7813 @code{float} and @code{double} types and the processor does not
7814 support operations rounding to those types.  By default,
7815 @option{-fexcess-precision=fast} is in effect; this means that
7816 operations are carried out in the precision of the registers and that
7817 it is unpredictable when rounding to the types specified in the source
7818 code takes place.  When compiling C, if
7819 @option{-fexcess-precision=standard} is specified then excess
7820 precision will follow the rules specified in ISO C99; in particular,
7821 both casts and assignments cause values to be rounded to their
7822 semantic types (whereas @option{-ffloat-store} only affects
7823 assignments).  This option is enabled by default for C if a strict
7824 conformance option such as @option{-std=c99} is used.
7825
7826 @opindex mfpmath
7827 @option{-fexcess-precision=standard} is not implemented for languages
7828 other than C, and has no effect if
7829 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
7830 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
7831 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
7832 semantics apply without excess precision, and in the latter, rounding
7833 is unpredictable.
7834
7835 @item -ffast-math
7836 @opindex ffast-math
7837 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
7838 @option{-ffinite-math-only}, @option{-fno-rounding-math},
7839 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
7840
7841 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
7842
7843 This option is not turned on by any @option{-O} option besides
7844 @option{-Ofast} since it can result in incorrect output for programs
7845 which depend on an exact implementation of IEEE or ISO rules/specifications
7846 for math functions. It may, however, yield faster code for programs
7847 that do not require the guarantees of these specifications.
7848
7849 @item -fno-math-errno
7850 @opindex fno-math-errno
7851 Do not set ERRNO after calling math functions that are executed
7852 with a single instruction, e.g., sqrt.  A program that relies on
7853 IEEE exceptions for math error handling may want to use this flag
7854 for speed while maintaining IEEE arithmetic compatibility.
7855
7856 This option is not turned on by any @option{-O} option since
7857 it can result in incorrect output for programs which depend on
7858 an exact implementation of IEEE or ISO rules/specifications for
7859 math functions. It may, however, yield faster code for programs
7860 that do not require the guarantees of these specifications.
7861
7862 The default is @option{-fmath-errno}.
7863
7864 On Darwin systems, the math library never sets @code{errno}.  There is
7865 therefore no reason for the compiler to consider the possibility that
7866 it might, and @option{-fno-math-errno} is the default.
7867
7868 @item -funsafe-math-optimizations
7869 @opindex funsafe-math-optimizations
7870
7871 Allow optimizations for floating-point arithmetic that (a) assume
7872 that arguments and results are valid and (b) may violate IEEE or
7873 ANSI standards.  When used at link-time, it may include libraries
7874 or startup files that change the default FPU control word or other
7875 similar optimizations.
7876
7877 This option is not turned on by any @option{-O} option since
7878 it can result in incorrect output for programs which depend on
7879 an exact implementation of IEEE or ISO rules/specifications for
7880 math functions. It may, however, yield faster code for programs
7881 that do not require the guarantees of these specifications.
7882 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
7883 @option{-fassociative-math} and @option{-freciprocal-math}.
7884
7885 The default is @option{-fno-unsafe-math-optimizations}.
7886
7887 @item -fassociative-math
7888 @opindex fassociative-math
7889
7890 Allow re-association of operands in series of floating-point operations.
7891 This violates the ISO C and C++ language standard by possibly changing
7892 computation result.  NOTE: re-ordering may change the sign of zero as
7893 well as ignore NaNs and inhibit or create underflow or overflow (and
7894 thus cannot be used on a code which relies on rounding behavior like
7895 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
7896 and thus may not be used when ordered comparisons are required.
7897 This option requires that both @option{-fno-signed-zeros} and
7898 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
7899 much sense with @option{-frounding-math}. For Fortran the option
7900 is automatically enabled when both @option{-fno-signed-zeros} and
7901 @option{-fno-trapping-math} are in effect.
7902
7903 The default is @option{-fno-associative-math}.
7904
7905 @item -freciprocal-math
7906 @opindex freciprocal-math
7907
7908 Allow the reciprocal of a value to be used instead of dividing by
7909 the value if this enables optimizations.  For example @code{x / y}
7910 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
7911 is subject to common subexpression elimination.  Note that this loses
7912 precision and increases the number of flops operating on the value.
7913
7914 The default is @option{-fno-reciprocal-math}.
7915
7916 @item -ffinite-math-only
7917 @opindex ffinite-math-only
7918 Allow optimizations for floating-point arithmetic that assume
7919 that arguments and results are not NaNs or +-Infs.
7920
7921 This option is not turned on by any @option{-O} option since
7922 it can result in incorrect output for programs which depend on
7923 an exact implementation of IEEE or ISO rules/specifications for
7924 math functions. It may, however, yield faster code for programs
7925 that do not require the guarantees of these specifications.
7926
7927 The default is @option{-fno-finite-math-only}.
7928
7929 @item -fno-signed-zeros
7930 @opindex fno-signed-zeros
7931 Allow optimizations for floating point arithmetic that ignore the
7932 signedness of zero.  IEEE arithmetic specifies the behavior of
7933 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
7934 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
7935 This option implies that the sign of a zero result isn't significant.
7936
7937 The default is @option{-fsigned-zeros}.
7938
7939 @item -fno-trapping-math
7940 @opindex fno-trapping-math
7941 Compile code assuming that floating-point operations cannot generate
7942 user-visible traps.  These traps include division by zero, overflow,
7943 underflow, inexact result and invalid operation.  This option requires
7944 that @option{-fno-signaling-nans} be in effect.  Setting this option may
7945 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
7946
7947 This option should never be turned on by any @option{-O} option since
7948 it can result in incorrect output for programs which depend on
7949 an exact implementation of IEEE or ISO rules/specifications for
7950 math functions.
7951
7952 The default is @option{-ftrapping-math}.
7953
7954 @item -frounding-math
7955 @opindex frounding-math
7956 Disable transformations and optimizations that assume default floating
7957 point rounding behavior.  This is round-to-zero for all floating point
7958 to integer conversions, and round-to-nearest for all other arithmetic
7959 truncations.  This option should be specified for programs that change
7960 the FP rounding mode dynamically, or that may be executed with a
7961 non-default rounding mode.  This option disables constant folding of
7962 floating point expressions at compile-time (which may be affected by
7963 rounding mode) and arithmetic transformations that are unsafe in the
7964 presence of sign-dependent rounding modes.
7965
7966 The default is @option{-fno-rounding-math}.
7967
7968 This option is experimental and does not currently guarantee to
7969 disable all GCC optimizations that are affected by rounding mode.
7970 Future versions of GCC may provide finer control of this setting
7971 using C99's @code{FENV_ACCESS} pragma.  This command line option
7972 will be used to specify the default state for @code{FENV_ACCESS}.
7973
7974 @item -fsignaling-nans
7975 @opindex fsignaling-nans
7976 Compile code assuming that IEEE signaling NaNs may generate user-visible
7977 traps during floating-point operations.  Setting this option disables
7978 optimizations that may change the number of exceptions visible with
7979 signaling NaNs.  This option implies @option{-ftrapping-math}.
7980
7981 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
7982 be defined.
7983
7984 The default is @option{-fno-signaling-nans}.
7985
7986 This option is experimental and does not currently guarantee to
7987 disable all GCC optimizations that affect signaling NaN behavior.
7988
7989 @item -fsingle-precision-constant
7990 @opindex fsingle-precision-constant
7991 Treat floating point constant as single precision constant instead of
7992 implicitly converting it to double precision constant.
7993
7994 @item -fcx-limited-range
7995 @opindex fcx-limited-range
7996 When enabled, this option states that a range reduction step is not
7997 needed when performing complex division.  Also, there is no checking
7998 whether the result of a complex multiplication or division is @code{NaN
7999 + I*NaN}, with an attempt to rescue the situation in that case.  The
8000 default is @option{-fno-cx-limited-range}, but is enabled by
8001 @option{-ffast-math}.
8002
8003 This option controls the default setting of the ISO C99
8004 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
8005 all languages.
8006
8007 @item -fcx-fortran-rules
8008 @opindex fcx-fortran-rules
8009 Complex multiplication and division follow Fortran rules.  Range
8010 reduction is done as part of complex division, but there is no checking
8011 whether the result of a complex multiplication or division is @code{NaN
8012 + I*NaN}, with an attempt to rescue the situation in that case.
8013
8014 The default is @option{-fno-cx-fortran-rules}.
8015
8016 @end table
8017
8018 The following options control optimizations that may improve
8019 performance, but are not enabled by any @option{-O} options.  This
8020 section includes experimental options that may produce broken code.
8021
8022 @table @gcctabopt
8023 @item -fbranch-probabilities
8024 @opindex fbranch-probabilities
8025 After running a program compiled with @option{-fprofile-arcs}
8026 (@pxref{Debugging Options,, Options for Debugging Your Program or
8027 @command{gcc}}), you can compile it a second time using
8028 @option{-fbranch-probabilities}, to improve optimizations based on
8029 the number of times each branch was taken.  When the program
8030 compiled with @option{-fprofile-arcs} exits it saves arc execution
8031 counts to a file called @file{@var{sourcename}.gcda} for each source
8032 file.  The information in this data file is very dependent on the
8033 structure of the generated code, so you must use the same source code
8034 and the same optimization options for both compilations.
8035
8036 With @option{-fbranch-probabilities}, GCC puts a
8037 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
8038 These can be used to improve optimization.  Currently, they are only
8039 used in one place: in @file{reorg.c}, instead of guessing which path a
8040 branch is most likely to take, the @samp{REG_BR_PROB} values are used to
8041 exactly determine which path is taken more often.
8042
8043 @item -fprofile-values
8044 @opindex fprofile-values
8045 If combined with @option{-fprofile-arcs}, it adds code so that some
8046 data about values of expressions in the program is gathered.
8047
8048 With @option{-fbranch-probabilities}, it reads back the data gathered
8049 from profiling values of expressions for usage in optimizations.
8050
8051 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
8052
8053 @item -fvpt
8054 @opindex fvpt
8055 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
8056 a code to gather information about values of expressions.
8057
8058 With @option{-fbranch-probabilities}, it reads back the data gathered
8059 and actually performs the optimizations based on them.
8060 Currently the optimizations include specialization of division operation
8061 using the knowledge about the value of the denominator.
8062
8063 @item -frename-registers
8064 @opindex frename-registers
8065 Attempt to avoid false dependencies in scheduled code by making use
8066 of registers left over after register allocation.  This optimization
8067 will most benefit processors with lots of registers.  Depending on the
8068 debug information format adopted by the target, however, it can
8069 make debugging impossible, since variables will no longer stay in
8070 a ``home register''.
8071
8072 Enabled by default with @option{-funroll-loops} and @option{-fpeel-loops}.
8073
8074 @item -ftracer
8075 @opindex ftracer
8076 Perform tail duplication to enlarge superblock size.  This transformation
8077 simplifies the control flow of the function allowing other optimizations to do
8078 better job.
8079
8080 Enabled with @option{-fprofile-use}.
8081
8082 @item -funroll-loops
8083 @opindex funroll-loops
8084 Unroll loops whose number of iterations can be determined at compile time or
8085 upon entry to the loop.  @option{-funroll-loops} implies
8086 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
8087 It also turns on complete loop peeling (i.e.@: complete removal of loops with
8088 small constant number of iterations).  This option makes code larger, and may
8089 or may not make it run faster.
8090
8091 Enabled with @option{-fprofile-use}.
8092
8093 @item -funroll-all-loops
8094 @opindex funroll-all-loops
8095 Unroll all loops, even if their number of iterations is uncertain when
8096 the loop is entered.  This usually makes programs run more slowly.
8097 @option{-funroll-all-loops} implies the same options as
8098 @option{-funroll-loops}.
8099
8100 @item -fpeel-loops
8101 @opindex fpeel-loops
8102 Peels the loops for that there is enough information that they do not
8103 roll much (from profile feedback).  It also turns on complete loop peeling
8104 (i.e.@: complete removal of loops with small constant number of iterations).
8105
8106 Enabled with @option{-fprofile-use}.
8107
8108 @item -fmove-loop-invariants
8109 @opindex fmove-loop-invariants
8110 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
8111 at level @option{-O1}
8112
8113 @item -funswitch-loops
8114 @opindex funswitch-loops
8115 Move branches with loop invariant conditions out of the loop, with duplicates
8116 of the loop on both branches (modified according to result of the condition).
8117
8118 @item -ffunction-sections
8119 @itemx -fdata-sections
8120 @opindex ffunction-sections
8121 @opindex fdata-sections
8122 Place each function or data item into its own section in the output
8123 file if the target supports arbitrary sections.  The name of the
8124 function or the name of the data item determines the section's name
8125 in the output file.
8126
8127 Use these options on systems where the linker can perform optimizations
8128 to improve locality of reference in the instruction space.  Most systems
8129 using the ELF object format and SPARC processors running Solaris 2 have
8130 linkers with such optimizations.  AIX may have these optimizations in
8131 the future.
8132
8133 Only use these options when there are significant benefits from doing
8134 so.  When you specify these options, the assembler and linker will
8135 create larger object and executable files and will also be slower.
8136 You will not be able to use @code{gprof} on all systems if you
8137 specify this option and you may have problems with debugging if
8138 you specify both this option and @option{-g}.
8139
8140 @item -fbranch-target-load-optimize
8141 @opindex fbranch-target-load-optimize
8142 Perform branch target register load optimization before prologue / epilogue
8143 threading.
8144 The use of target registers can typically be exposed only during reload,
8145 thus hoisting loads out of loops and doing inter-block scheduling needs
8146 a separate optimization pass.
8147
8148 @item -fbranch-target-load-optimize2
8149 @opindex fbranch-target-load-optimize2
8150 Perform branch target register load optimization after prologue / epilogue
8151 threading.
8152
8153 @item -fbtr-bb-exclusive
8154 @opindex fbtr-bb-exclusive
8155 When performing branch target register load optimization, don't reuse
8156 branch target registers in within any basic block.
8157
8158 @item -fstack-protector
8159 @opindex fstack-protector
8160 Emit extra code to check for buffer overflows, such as stack smashing
8161 attacks.  This is done by adding a guard variable to functions with
8162 vulnerable objects.  This includes functions that call alloca, and
8163 functions with buffers larger than 8 bytes.  The guards are initialized
8164 when a function is entered and then checked when the function exits.
8165 If a guard check fails, an error message is printed and the program exits.
8166
8167 @item -fstack-protector-all
8168 @opindex fstack-protector-all
8169 Like @option{-fstack-protector} except that all functions are protected.
8170
8171 @item -fsection-anchors
8172 @opindex fsection-anchors
8173 Try to reduce the number of symbolic address calculations by using
8174 shared ``anchor'' symbols to address nearby objects.  This transformation
8175 can help to reduce the number of GOT entries and GOT accesses on some
8176 targets.
8177
8178 For example, the implementation of the following function @code{foo}:
8179
8180 @smallexample
8181 static int a, b, c;
8182 int foo (void) @{ return a + b + c; @}
8183 @end smallexample
8184
8185 would usually calculate the addresses of all three variables, but if you
8186 compile it with @option{-fsection-anchors}, it will access the variables
8187 from a common anchor point instead.  The effect is similar to the
8188 following pseudocode (which isn't valid C):
8189
8190 @smallexample
8191 int foo (void)
8192 @{
8193   register int *xr = &x;
8194   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
8195 @}
8196 @end smallexample
8197
8198 Not all targets support this option.
8199
8200 @item --param @var{name}=@var{value}
8201 @opindex param
8202 In some places, GCC uses various constants to control the amount of
8203 optimization that is done.  For example, GCC will not inline functions
8204 that contain more that a certain number of instructions.  You can
8205 control some of these constants on the command-line using the
8206 @option{--param} option.
8207
8208 The names of specific parameters, and the meaning of the values, are
8209 tied to the internals of the compiler, and are subject to change
8210 without notice in future releases.
8211
8212 In each case, the @var{value} is an integer.  The allowable choices for
8213 @var{name} are given in the following table:
8214
8215 @table @gcctabopt
8216 @item predictable-branch-outcome
8217 When branch is predicted to be taken with probability lower than this threshold
8218 (in percent), then it is considered well predictable. The default is 10.
8219
8220 @item max-crossjump-edges
8221 The maximum number of incoming edges to consider for crossjumping.
8222 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
8223 the number of edges incoming to each block.  Increasing values mean
8224 more aggressive optimization, making the compile time increase with
8225 probably small improvement in executable size.
8226
8227 @item min-crossjump-insns
8228 The minimum number of instructions which must be matched at the end
8229 of two blocks before crossjumping will be performed on them.  This
8230 value is ignored in the case where all instructions in the block being
8231 crossjumped from are matched.  The default value is 5.
8232
8233 @item max-grow-copy-bb-insns
8234 The maximum code size expansion factor when copying basic blocks
8235 instead of jumping.  The expansion is relative to a jump instruction.
8236 The default value is 8.
8237
8238 @item max-goto-duplication-insns
8239 The maximum number of instructions to duplicate to a block that jumps
8240 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
8241 passes, GCC factors computed gotos early in the compilation process,
8242 and unfactors them as late as possible.  Only computed jumps at the
8243 end of a basic blocks with no more than max-goto-duplication-insns are
8244 unfactored.  The default value is 8.
8245
8246 @item max-delay-slot-insn-search
8247 The maximum number of instructions to consider when looking for an
8248 instruction to fill a delay slot.  If more than this arbitrary number of
8249 instructions is searched, the time savings from filling the delay slot
8250 will be minimal so stop searching.  Increasing values mean more
8251 aggressive optimization, making the compile time increase with probably
8252 small improvement in executable run time.
8253
8254 @item max-delay-slot-live-search
8255 When trying to fill delay slots, the maximum number of instructions to
8256 consider when searching for a block with valid live register
8257 information.  Increasing this arbitrarily chosen value means more
8258 aggressive optimization, increasing the compile time.  This parameter
8259 should be removed when the delay slot code is rewritten to maintain the
8260 control-flow graph.
8261
8262 @item max-gcse-memory
8263 The approximate maximum amount of memory that will be allocated in
8264 order to perform the global common subexpression elimination
8265 optimization.  If more memory than specified is required, the
8266 optimization will not be done.
8267
8268 @item max-gcse-insertion-ratio
8269 If the ratio of expression insertions to deletions is larger than this value
8270 for any expression, then RTL PRE will insert or remove the expression and thus
8271 leave partially redundant computations in the instruction stream.  The default value is 20.
8272
8273 @item max-pending-list-length
8274 The maximum number of pending dependencies scheduling will allow
8275 before flushing the current state and starting over.  Large functions
8276 with few branches or calls can create excessively large lists which
8277 needlessly consume memory and resources.
8278
8279 @item max-inline-insns-single
8280 Several parameters control the tree inliner used in gcc.
8281 This number sets the maximum number of instructions (counted in GCC's
8282 internal representation) in a single function that the tree inliner
8283 will consider for inlining.  This only affects functions declared
8284 inline and methods implemented in a class declaration (C++).
8285 The default value is 400.
8286
8287 @item max-inline-insns-auto
8288 When you use @option{-finline-functions} (included in @option{-O3}),
8289 a lot of functions that would otherwise not be considered for inlining
8290 by the compiler will be investigated.  To those functions, a different
8291 (more restrictive) limit compared to functions declared inline can
8292 be applied.
8293 The default value is 40.
8294
8295 @item large-function-insns
8296 The limit specifying really large functions.  For functions larger than this
8297 limit after inlining, inlining is constrained by
8298 @option{--param large-function-growth}.  This parameter is useful primarily
8299 to avoid extreme compilation time caused by non-linear algorithms used by the
8300 backend.
8301 The default value is 2700.
8302
8303 @item large-function-growth
8304 Specifies maximal growth of large function caused by inlining in percents.
8305 The default value is 100 which limits large function growth to 2.0 times
8306 the original size.
8307
8308 @item large-unit-insns
8309 The limit specifying large translation unit.  Growth caused by inlining of
8310 units larger than this limit is limited by @option{--param inline-unit-growth}.
8311 For small units this might be too tight (consider unit consisting of function A
8312 that is inline and B that just calls A three time.  If B is small relative to
8313 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
8314 large units consisting of small inlineable functions however the overall unit
8315 growth limit is needed to avoid exponential explosion of code size.  Thus for
8316 smaller units, the size is increased to @option{--param large-unit-insns}
8317 before applying @option{--param inline-unit-growth}.  The default is 10000
8318
8319 @item inline-unit-growth
8320 Specifies maximal overall growth of the compilation unit caused by inlining.
8321 The default value is 30 which limits unit growth to 1.3 times the original
8322 size.
8323
8324 @item ipcp-unit-growth
8325 Specifies maximal overall growth of the compilation unit caused by
8326 interprocedural constant propagation.  The default value is 10 which limits
8327 unit growth to 1.1 times the original size.
8328
8329 @item large-stack-frame
8330 The limit specifying large stack frames.  While inlining the algorithm is trying
8331 to not grow past this limit too much.  Default value is 256 bytes.
8332
8333 @item large-stack-frame-growth
8334 Specifies maximal growth of large stack frames caused by inlining in percents.
8335 The default value is 1000 which limits large stack frame growth to 11 times
8336 the original size.
8337
8338 @item max-inline-insns-recursive
8339 @itemx max-inline-insns-recursive-auto
8340 Specifies maximum number of instructions out-of-line copy of self recursive inline
8341 function can grow into by performing recursive inlining.
8342
8343 For functions declared inline @option{--param max-inline-insns-recursive} is
8344 taken into account.  For function not declared inline, recursive inlining
8345 happens only when @option{-finline-functions} (included in @option{-O3}) is
8346 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
8347 default value is 450.
8348
8349 @item max-inline-recursive-depth
8350 @itemx max-inline-recursive-depth-auto
8351 Specifies maximum recursion depth used by the recursive inlining.
8352
8353 For functions declared inline @option{--param max-inline-recursive-depth} is
8354 taken into account.  For function not declared inline, recursive inlining
8355 happens only when @option{-finline-functions} (included in @option{-O3}) is
8356 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
8357 default value is 8.
8358
8359 @item min-inline-recursive-probability
8360 Recursive inlining is profitable only for function having deep recursion
8361 in average and can hurt for function having little recursion depth by
8362 increasing the prologue size or complexity of function body to other
8363 optimizers.
8364
8365 When profile feedback is available (see @option{-fprofile-generate}) the actual
8366 recursion depth can be guessed from probability that function will recurse via
8367 given call expression.  This parameter limits inlining only to call expression
8368 whose probability exceeds given threshold (in percents).  The default value is
8369 10.
8370
8371 @item early-inlining-insns
8372 Specify growth that early inliner can make.  In effect it increases amount of
8373 inlining for code having large abstraction penalty.  The default value is 10.
8374
8375 @item max-early-inliner-iterations
8376 @itemx max-early-inliner-iterations
8377 Limit of iterations of early inliner.  This basically bounds number of nested
8378 indirect calls early inliner can resolve.  Deeper chains are still handled by
8379 late inlining.
8380
8381 @item comdat-sharing-probability
8382 @itemx comdat-sharing-probability
8383 Probability (in percent) that C++ inline function with comdat visibility
8384 will be shared across multiple compilation units.  The default value is 20.
8385
8386 @item min-vect-loop-bound
8387 The minimum number of iterations under which a loop will not get vectorized
8388 when @option{-ftree-vectorize} is used.  The number of iterations after
8389 vectorization needs to be greater than the value specified by this option
8390 to allow vectorization.  The default value is 0.
8391
8392 @item gcse-cost-distance-ratio
8393 Scaling factor in calculation of maximum distance an expression
8394 can be moved by GCSE optimizations.  This is currently supported only in the
8395 code hoisting pass.  The bigger the ratio, the more aggressive code hoisting
8396 will be with simple expressions, i.e., the expressions which have cost
8397 less than @option{gcse-unrestricted-cost}.  Specifying 0 will disable
8398 hoisting of simple expressions.  The default value is 10.
8399
8400 @item gcse-unrestricted-cost
8401 Cost, roughly measured as the cost of a single typical machine
8402 instruction, at which GCSE optimizations will not constrain
8403 the distance an expression can travel.  This is currently
8404 supported only in the code hoisting pass.  The lesser the cost,
8405 the more aggressive code hoisting will be.  Specifying 0 will
8406 allow all expressions to travel unrestricted distances.
8407 The default value is 3.
8408
8409 @item max-hoist-depth
8410 The depth of search in the dominator tree for expressions to hoist.
8411 This is used to avoid quadratic behavior in hoisting algorithm.
8412 The value of 0 will avoid limiting the search, but may slow down compilation
8413 of huge functions.  The default value is 30.
8414
8415 @item max-unrolled-insns
8416 The maximum number of instructions that a loop should have if that loop
8417 is unrolled, and if the loop is unrolled, it determines how many times
8418 the loop code is unrolled.
8419
8420 @item max-average-unrolled-insns
8421 The maximum number of instructions biased by probabilities of their execution
8422 that a loop should have if that loop is unrolled, and if the loop is unrolled,
8423 it determines how many times the loop code is unrolled.
8424
8425 @item max-unroll-times
8426 The maximum number of unrollings of a single loop.
8427
8428 @item max-peeled-insns
8429 The maximum number of instructions that a loop should have if that loop
8430 is peeled, and if the loop is peeled, it determines how many times
8431 the loop code is peeled.
8432
8433 @item max-peel-times
8434 The maximum number of peelings of a single loop.
8435
8436 @item max-completely-peeled-insns
8437 The maximum number of insns of a completely peeled loop.
8438
8439 @item max-completely-peel-times
8440 The maximum number of iterations of a loop to be suitable for complete peeling.
8441
8442 @item max-completely-peel-loop-nest-depth
8443 The maximum depth of a loop nest suitable for complete peeling.
8444
8445 @item max-unswitch-insns
8446 The maximum number of insns of an unswitched loop.
8447
8448 @item max-unswitch-level
8449 The maximum number of branches unswitched in a single loop.
8450
8451 @item lim-expensive
8452 The minimum cost of an expensive expression in the loop invariant motion.
8453
8454 @item iv-consider-all-candidates-bound
8455 Bound on number of candidates for induction variables below that
8456 all candidates are considered for each use in induction variable
8457 optimizations.  Only the most relevant candidates are considered
8458 if there are more candidates, to avoid quadratic time complexity.
8459
8460 @item iv-max-considered-uses
8461 The induction variable optimizations give up on loops that contain more
8462 induction variable uses.
8463
8464 @item iv-always-prune-cand-set-bound
8465 If number of candidates in the set is smaller than this value,
8466 we always try to remove unnecessary ivs from the set during its
8467 optimization when a new iv is added to the set.
8468
8469 @item scev-max-expr-size
8470 Bound on size of expressions used in the scalar evolutions analyzer.
8471 Large expressions slow the analyzer.
8472
8473 @item scev-max-expr-complexity
8474 Bound on the complexity of the expressions in the scalar evolutions analyzer.
8475 Complex expressions slow the analyzer.
8476
8477 @item omega-max-vars
8478 The maximum number of variables in an Omega constraint system.
8479 The default value is 128.
8480
8481 @item omega-max-geqs
8482 The maximum number of inequalities in an Omega constraint system.
8483 The default value is 256.
8484
8485 @item omega-max-eqs
8486 The maximum number of equalities in an Omega constraint system.
8487 The default value is 128.
8488
8489 @item omega-max-wild-cards
8490 The maximum number of wildcard variables that the Omega solver will
8491 be able to insert.  The default value is 18.
8492
8493 @item omega-hash-table-size
8494 The size of the hash table in the Omega solver.  The default value is
8495 550.
8496
8497 @item omega-max-keys
8498 The maximal number of keys used by the Omega solver.  The default
8499 value is 500.
8500
8501 @item omega-eliminate-redundant-constraints
8502 When set to 1, use expensive methods to eliminate all redundant
8503 constraints.  The default value is 0.
8504
8505 @item vect-max-version-for-alignment-checks
8506 The maximum number of runtime checks that can be performed when
8507 doing loop versioning for alignment in the vectorizer.  See option
8508 ftree-vect-loop-version for more information.
8509
8510 @item vect-max-version-for-alias-checks
8511 The maximum number of runtime checks that can be performed when
8512 doing loop versioning for alias in the vectorizer.  See option
8513 ftree-vect-loop-version for more information.
8514
8515 @item max-iterations-to-track
8516
8517 The maximum number of iterations of a loop the brute force algorithm
8518 for analysis of # of iterations of the loop tries to evaluate.
8519
8520 @item hot-bb-count-fraction
8521 Select fraction of the maximal count of repetitions of basic block in program
8522 given basic block needs to have to be considered hot.
8523
8524 @item hot-bb-frequency-fraction
8525 Select fraction of the entry block frequency of executions of basic block in
8526 function given basic block needs to have to be considered hot.
8527
8528 @item max-predicted-iterations
8529 The maximum number of loop iterations we predict statically.  This is useful
8530 in cases where function contain single loop with known bound and other loop
8531 with unknown.  We predict the known number of iterations correctly, while
8532 the unknown number of iterations average to roughly 10.  This means that the
8533 loop without bounds would appear artificially cold relative to the other one.
8534
8535 @item align-threshold
8536
8537 Select fraction of the maximal frequency of executions of basic block in
8538 function given basic block will get aligned.
8539
8540 @item align-loop-iterations
8541
8542 A loop expected to iterate at lest the selected number of iterations will get
8543 aligned.
8544
8545 @item tracer-dynamic-coverage
8546 @itemx tracer-dynamic-coverage-feedback
8547
8548 This value is used to limit superblock formation once the given percentage of
8549 executed instructions is covered.  This limits unnecessary code size
8550 expansion.
8551
8552 The @option{tracer-dynamic-coverage-feedback} is used only when profile
8553 feedback is available.  The real profiles (as opposed to statically estimated
8554 ones) are much less balanced allowing the threshold to be larger value.
8555
8556 @item tracer-max-code-growth
8557 Stop tail duplication once code growth has reached given percentage.  This is
8558 rather hokey argument, as most of the duplicates will be eliminated later in
8559 cross jumping, so it may be set to much higher values than is the desired code
8560 growth.
8561
8562 @item tracer-min-branch-ratio
8563
8564 Stop reverse growth when the reverse probability of best edge is less than this
8565 threshold (in percent).
8566
8567 @item tracer-min-branch-ratio
8568 @itemx tracer-min-branch-ratio-feedback
8569
8570 Stop forward growth if the best edge do have probability lower than this
8571 threshold.
8572
8573 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
8574 compilation for profile feedback and one for compilation without.  The value
8575 for compilation with profile feedback needs to be more conservative (higher) in
8576 order to make tracer effective.
8577
8578 @item max-cse-path-length
8579
8580 Maximum number of basic blocks on path that cse considers.  The default is 10.
8581
8582 @item max-cse-insns
8583 The maximum instructions CSE process before flushing. The default is 1000.
8584
8585 @item ggc-min-expand
8586
8587 GCC uses a garbage collector to manage its own memory allocation.  This
8588 parameter specifies the minimum percentage by which the garbage
8589 collector's heap should be allowed to expand between collections.
8590 Tuning this may improve compilation speed; it has no effect on code
8591 generation.
8592
8593 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
8594 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
8595 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
8596 GCC is not able to calculate RAM on a particular platform, the lower
8597 bound of 30% is used.  Setting this parameter and
8598 @option{ggc-min-heapsize} to zero causes a full collection to occur at
8599 every opportunity.  This is extremely slow, but can be useful for
8600 debugging.
8601
8602 @item ggc-min-heapsize
8603
8604 Minimum size of the garbage collector's heap before it begins bothering
8605 to collect garbage.  The first collection occurs after the heap expands
8606 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
8607 tuning this may improve compilation speed, and has no effect on code
8608 generation.
8609
8610 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
8611 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
8612 with a lower bound of 4096 (four megabytes) and an upper bound of
8613 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
8614 particular platform, the lower bound is used.  Setting this parameter
8615 very large effectively disables garbage collection.  Setting this
8616 parameter and @option{ggc-min-expand} to zero causes a full collection
8617 to occur at every opportunity.
8618
8619 @item max-reload-search-insns
8620 The maximum number of instruction reload should look backward for equivalent
8621 register.  Increasing values mean more aggressive optimization, making the
8622 compile time increase with probably slightly better performance.  The default
8623 value is 100.
8624
8625 @item max-cselib-memory-locations
8626 The maximum number of memory locations cselib should take into account.
8627 Increasing values mean more aggressive optimization, making the compile time
8628 increase with probably slightly better performance.  The default value is 500.
8629
8630 @item reorder-blocks-duplicate
8631 @itemx reorder-blocks-duplicate-feedback
8632
8633 Used by basic block reordering pass to decide whether to use unconditional
8634 branch or duplicate the code on its destination.  Code is duplicated when its
8635 estimated size is smaller than this value multiplied by the estimated size of
8636 unconditional jump in the hot spots of the program.
8637
8638 The @option{reorder-block-duplicate-feedback} is used only when profile
8639 feedback is available and may be set to higher values than
8640 @option{reorder-block-duplicate} since information about the hot spots is more
8641 accurate.
8642
8643 @item max-sched-ready-insns
8644 The maximum number of instructions ready to be issued the scheduler should
8645 consider at any given time during the first scheduling pass.  Increasing
8646 values mean more thorough searches, making the compilation time increase
8647 with probably little benefit.  The default value is 100.
8648
8649 @item max-sched-region-blocks
8650 The maximum number of blocks in a region to be considered for
8651 interblock scheduling.  The default value is 10.
8652
8653 @item max-pipeline-region-blocks
8654 The maximum number of blocks in a region to be considered for
8655 pipelining in the selective scheduler.  The default value is 15.
8656
8657 @item max-sched-region-insns
8658 The maximum number of insns in a region to be considered for
8659 interblock scheduling.  The default value is 100.
8660
8661 @item max-pipeline-region-insns
8662 The maximum number of insns in a region to be considered for
8663 pipelining in the selective scheduler.  The default value is 200.
8664
8665 @item min-spec-prob
8666 The minimum probability (in percents) of reaching a source block
8667 for interblock speculative scheduling.  The default value is 40.
8668
8669 @item max-sched-extend-regions-iters
8670 The maximum number of iterations through CFG to extend regions.
8671 0 - disable region extension,
8672 N - do at most N iterations.
8673 The default value is 0.
8674
8675 @item max-sched-insn-conflict-delay
8676 The maximum conflict delay for an insn to be considered for speculative motion.
8677 The default value is 3.
8678
8679 @item sched-spec-prob-cutoff
8680 The minimal probability of speculation success (in percents), so that
8681 speculative insn will be scheduled.
8682 The default value is 40.
8683
8684 @item sched-mem-true-dep-cost
8685 Minimal distance (in CPU cycles) between store and load targeting same
8686 memory locations.  The default value is 1.
8687
8688 @item selsched-max-lookahead
8689 The maximum size of the lookahead window of selective scheduling.  It is a
8690 depth of search for available instructions.
8691 The default value is 50.
8692
8693 @item selsched-max-sched-times
8694 The maximum number of times that an instruction will be scheduled during
8695 selective scheduling.  This is the limit on the number of iterations
8696 through which the instruction may be pipelined.  The default value is 2.
8697
8698 @item selsched-max-insns-to-rename
8699 The maximum number of best instructions in the ready list that are considered
8700 for renaming in the selective scheduler.  The default value is 2.
8701
8702 @item sms-min-sc
8703 The minimum value of stage count that swing modulo scheduler will
8704 generate.  The default value is 2.
8705
8706 @item max-last-value-rtl
8707 The maximum size measured as number of RTLs that can be recorded in an expression
8708 in combiner for a pseudo register as last known value of that register.  The default
8709 is 10000.
8710
8711 @item integer-share-limit
8712 Small integer constants can use a shared data structure, reducing the
8713 compiler's memory usage and increasing its speed.  This sets the maximum
8714 value of a shared integer constant.  The default value is 256.
8715
8716 @item min-virtual-mappings
8717 Specifies the minimum number of virtual mappings in the incremental
8718 SSA updater that should be registered to trigger the virtual mappings
8719 heuristic defined by virtual-mappings-ratio.  The default value is
8720 100.
8721
8722 @item virtual-mappings-ratio
8723 If the number of virtual mappings is virtual-mappings-ratio bigger
8724 than the number of virtual symbols to be updated, then the incremental
8725 SSA updater switches to a full update for those symbols.  The default
8726 ratio is 3.
8727
8728 @item ssp-buffer-size
8729 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
8730 protection when @option{-fstack-protection} is used.
8731
8732 @item max-jump-thread-duplication-stmts
8733 Maximum number of statements allowed in a block that needs to be
8734 duplicated when threading jumps.
8735
8736 @item max-fields-for-field-sensitive
8737 Maximum number of fields in a structure we will treat in
8738 a field sensitive manner during pointer analysis.  The default is zero
8739 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
8740
8741 @item prefetch-latency
8742 Estimate on average number of instructions that are executed before
8743 prefetch finishes.  The distance we prefetch ahead is proportional
8744 to this constant.  Increasing this number may also lead to less
8745 streams being prefetched (see @option{simultaneous-prefetches}).
8746
8747 @item simultaneous-prefetches
8748 Maximum number of prefetches that can run at the same time.
8749
8750 @item l1-cache-line-size
8751 The size of cache line in L1 cache, in bytes.
8752
8753 @item l1-cache-size
8754 The size of L1 cache, in kilobytes.
8755
8756 @item l2-cache-size
8757 The size of L2 cache, in kilobytes.
8758
8759 @item min-insn-to-prefetch-ratio
8760 The minimum ratio between the number of instructions and the
8761 number of prefetches to enable prefetching in a loop.
8762
8763 @item prefetch-min-insn-to-mem-ratio
8764 The minimum ratio between the number of instructions and the
8765 number of memory references to enable prefetching in a loop.
8766
8767 @item use-canonical-types
8768 Whether the compiler should use the ``canonical'' type system.  By
8769 default, this should always be 1, which uses a more efficient internal
8770 mechanism for comparing types in C++ and Objective-C++.  However, if
8771 bugs in the canonical type system are causing compilation failures,
8772 set this value to 0 to disable canonical types.
8773
8774 @item switch-conversion-max-branch-ratio
8775 Switch initialization conversion will refuse to create arrays that are
8776 bigger than @option{switch-conversion-max-branch-ratio} times the number of
8777 branches in the switch.
8778
8779 @item max-partial-antic-length
8780 Maximum length of the partial antic set computed during the tree
8781 partial redundancy elimination optimization (@option{-ftree-pre}) when
8782 optimizing at @option{-O3} and above.  For some sorts of source code
8783 the enhanced partial redundancy elimination optimization can run away,
8784 consuming all of the memory available on the host machine.  This
8785 parameter sets a limit on the length of the sets that are computed,
8786 which prevents the runaway behavior.  Setting a value of 0 for
8787 this parameter will allow an unlimited set length.
8788
8789 @item sccvn-max-scc-size
8790 Maximum size of a strongly connected component (SCC) during SCCVN
8791 processing.  If this limit is hit, SCCVN processing for the whole
8792 function will not be done and optimizations depending on it will
8793 be disabled.  The default maximum SCC size is 10000.
8794
8795 @item ira-max-loops-num
8796 IRA uses a regional register allocation by default.  If a function
8797 contains loops more than number given by the parameter, only at most
8798 given number of the most frequently executed loops will form regions
8799 for the regional register allocation.  The default value of the
8800 parameter is 100.
8801
8802 @item ira-max-conflict-table-size
8803 Although IRA uses a sophisticated algorithm of compression conflict
8804 table, the table can be still big for huge functions.  If the conflict
8805 table for a function could be more than size in MB given by the
8806 parameter, the conflict table is not built and faster, simpler, and
8807 lower quality register allocation algorithm will be used.  The
8808 algorithm do not use pseudo-register conflicts.  The default value of
8809 the parameter is 2000.
8810
8811 @item ira-loop-reserved-regs
8812 IRA can be used to evaluate more accurate register pressure in loops
8813 for decision to move loop invariants (see @option{-O3}).  The number
8814 of available registers reserved for some other purposes is described
8815 by this parameter.  The default value of the parameter is 2 which is
8816 minimal number of registers needed for execution of typical
8817 instruction.  This value is the best found from numerous experiments.
8818
8819 @item loop-invariant-max-bbs-in-loop
8820 Loop invariant motion can be very expensive, both in compile time and
8821 in amount of needed compile time memory, with very large loops.  Loops
8822 with more basic blocks than this parameter won't have loop invariant
8823 motion optimization performed on them.  The default value of the
8824 parameter is 1000 for -O1 and 10000 for -O2 and above.
8825
8826 @item max-vartrack-size
8827 Sets a maximum number of hash table slots to use during variable
8828 tracking dataflow analysis of any function.  If this limit is exceeded
8829 with variable tracking at assignments enabled, analysis for that
8830 function is retried without it, after removing all debug insns from
8831 the function.  If the limit is exceeded even without debug insns, var
8832 tracking analysis is completely disabled for the function.  Setting
8833 the parameter to zero makes it unlimited.
8834
8835 @item min-nondebug-insn-uid
8836 Use uids starting at this parameter for nondebug insns.  The range below
8837 the parameter is reserved exclusively for debug insns created by
8838 @option{-fvar-tracking-assignments}, but debug insns may get
8839 (non-overlapping) uids above it if the reserved range is exhausted.
8840
8841 @item ipa-sra-ptr-growth-factor
8842 IPA-SRA will replace a pointer to an aggregate with one or more new
8843 parameters only when their cumulative size is less or equal to
8844 @option{ipa-sra-ptr-growth-factor} times the size of the original
8845 pointer parameter.
8846
8847 @item graphite-max-nb-scop-params
8848 To avoid exponential effects in the Graphite loop transforms, the
8849 number of parameters in a Static Control Part (SCoP) is bounded.  The
8850 default value is 10 parameters.  A variable whose value is unknown at
8851 compile time and defined outside a SCoP is a parameter of the SCoP.
8852
8853 @item graphite-max-bbs-per-function
8854 To avoid exponential effects in the detection of SCoPs, the size of
8855 the functions analyzed by Graphite is bounded.  The default value is
8856 100 basic blocks.
8857
8858 @item loop-block-tile-size
8859 Loop blocking or strip mining transforms, enabled with
8860 @option{-floop-block} or @option{-floop-strip-mine}, strip mine each
8861 loop in the loop nest by a given number of iterations.  The strip
8862 length can be changed using the @option{loop-block-tile-size}
8863 parameter.  The default value is 51 iterations.
8864
8865 @item devirt-type-list-size
8866 IPA-CP attempts to track all possible types passed to a function's
8867 parameter in order to perform devirtualization.
8868 @option{devirt-type-list-size} is the maximum number of types it
8869 stores per a single formal parameter of a function.
8870
8871 @item lto-partitions
8872 Specify desired number of partitions produced during WHOPR compilation.
8873 The number of partitions should exceed the number of CPUs used for compilation.
8874 The default value is 32.
8875
8876 @item lto-minpartition
8877 Size of minimal partition for WHOPR (in estimated instructions).
8878 This prevents expenses of splitting very small programs into too many
8879 partitions.
8880
8881 @item cxx-max-namespaces-for-diagnostic-help
8882 The maximum number of namespaces to consult for suggestions when C++
8883 name lookup fails for an identifier.  The default is 1000.
8884
8885 @item max-stores-to-sink
8886 The maximum number of conditional stores paires that can be sunk.  Set to 0
8887 if either vectorization (@option{-ftree-vectorize}) or if-conversion
8888 (@option{-ftree-loop-if-convert}) is disabled.  The default is 2.
8889
8890 @end table
8891 @end table
8892
8893 @node Preprocessor Options
8894 @section Options Controlling the Preprocessor
8895 @cindex preprocessor options
8896 @cindex options, preprocessor
8897
8898 These options control the C preprocessor, which is run on each C source
8899 file before actual compilation.
8900
8901 If you use the @option{-E} option, nothing is done except preprocessing.
8902 Some of these options make sense only together with @option{-E} because
8903 they cause the preprocessor output to be unsuitable for actual
8904 compilation.
8905
8906 @table @gcctabopt
8907 @item -Wp,@var{option}
8908 @opindex Wp
8909 You can use @option{-Wp,@var{option}} to bypass the compiler driver
8910 and pass @var{option} directly through to the preprocessor.  If
8911 @var{option} contains commas, it is split into multiple options at the
8912 commas.  However, many options are modified, translated or interpreted
8913 by the compiler driver before being passed to the preprocessor, and
8914 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
8915 interface is undocumented and subject to change, so whenever possible
8916 you should avoid using @option{-Wp} and let the driver handle the
8917 options instead.
8918
8919 @item -Xpreprocessor @var{option}
8920 @opindex Xpreprocessor
8921 Pass @var{option} as an option to the preprocessor.  You can use this to
8922 supply system-specific preprocessor options which GCC does not know how to
8923 recognize.
8924
8925 If you want to pass an option that takes an argument, you must use
8926 @option{-Xpreprocessor} twice, once for the option and once for the argument.
8927 @end table
8928
8929 @include cppopts.texi
8930
8931 @node Assembler Options
8932 @section Passing Options to the Assembler
8933
8934 @c prevent bad page break with this line
8935 You can pass options to the assembler.
8936
8937 @table @gcctabopt
8938 @item -Wa,@var{option}
8939 @opindex Wa
8940 Pass @var{option} as an option to the assembler.  If @var{option}
8941 contains commas, it is split into multiple options at the commas.
8942
8943 @item -Xassembler @var{option}
8944 @opindex Xassembler
8945 Pass @var{option} as an option to the assembler.  You can use this to
8946 supply system-specific assembler options which GCC does not know how to
8947 recognize.
8948
8949 If you want to pass an option that takes an argument, you must use
8950 @option{-Xassembler} twice, once for the option and once for the argument.
8951
8952 @end table
8953
8954 @node Link Options
8955 @section Options for Linking
8956 @cindex link options
8957 @cindex options, linking
8958
8959 These options come into play when the compiler links object files into
8960 an executable output file.  They are meaningless if the compiler is
8961 not doing a link step.
8962
8963 @table @gcctabopt
8964 @cindex file names
8965 @item @var{object-file-name}
8966 A file name that does not end in a special recognized suffix is
8967 considered to name an object file or library.  (Object files are
8968 distinguished from libraries by the linker according to the file
8969 contents.)  If linking is done, these object files are used as input
8970 to the linker.
8971
8972 @item -c
8973 @itemx -S
8974 @itemx -E
8975 @opindex c
8976 @opindex S
8977 @opindex E
8978 If any of these options is used, then the linker is not run, and
8979 object file names should not be used as arguments.  @xref{Overall
8980 Options}.
8981
8982 @cindex Libraries
8983 @item -l@var{library}
8984 @itemx -l @var{library}
8985 @opindex l
8986 Search the library named @var{library} when linking.  (The second
8987 alternative with the library as a separate argument is only for
8988 POSIX compliance and is not recommended.)
8989
8990 It makes a difference where in the command you write this option; the
8991 linker searches and processes libraries and object files in the order they
8992 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
8993 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
8994 to functions in @samp{z}, those functions may not be loaded.
8995
8996 The linker searches a standard list of directories for the library,
8997 which is actually a file named @file{lib@var{library}.a}.  The linker
8998 then uses this file as if it had been specified precisely by name.
8999
9000 The directories searched include several standard system directories
9001 plus any that you specify with @option{-L}.
9002
9003 Normally the files found this way are library files---archive files
9004 whose members are object files.  The linker handles an archive file by
9005 scanning through it for members which define symbols that have so far
9006 been referenced but not defined.  But if the file that is found is an
9007 ordinary object file, it is linked in the usual fashion.  The only
9008 difference between using an @option{-l} option and specifying a file name
9009 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
9010 and searches several directories.
9011
9012 @item -lobjc
9013 @opindex lobjc
9014 You need this special case of the @option{-l} option in order to
9015 link an Objective-C or Objective-C++ program.
9016
9017 @item -nostartfiles
9018 @opindex nostartfiles
9019 Do not use the standard system startup files when linking.
9020 The standard system libraries are used normally, unless @option{-nostdlib}
9021 or @option{-nodefaultlibs} is used.
9022
9023 @item -nodefaultlibs
9024 @opindex nodefaultlibs
9025 Do not use the standard system libraries when linking.
9026 Only the libraries you specify will be passed to the linker, options
9027 specifying linkage of the system libraries, such as @code{-static-libgcc}
9028 or @code{-shared-libgcc}, will be ignored.
9029 The standard startup files are used normally, unless @option{-nostartfiles}
9030 is used.  The compiler may generate calls to @code{memcmp},
9031 @code{memset}, @code{memcpy} and @code{memmove}.
9032 These entries are usually resolved by entries in
9033 libc.  These entry points should be supplied through some other
9034 mechanism when this option is specified.
9035
9036 @item -nostdlib
9037 @opindex nostdlib
9038 Do not use the standard system startup files or libraries when linking.
9039 No startup files and only the libraries you specify will be passed to
9040 the linker, options specifying linkage of the system libraries, such as
9041 @code{-static-libgcc} or @code{-shared-libgcc}, will be ignored.
9042 The compiler may generate calls to @code{memcmp}, @code{memset},
9043 @code{memcpy} and @code{memmove}.
9044 These entries are usually resolved by entries in
9045 libc.  These entry points should be supplied through some other
9046 mechanism when this option is specified.
9047
9048 @cindex @option{-lgcc}, use with @option{-nostdlib}
9049 @cindex @option{-nostdlib} and unresolved references
9050 @cindex unresolved references and @option{-nostdlib}
9051 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
9052 @cindex @option{-nodefaultlibs} and unresolved references
9053 @cindex unresolved references and @option{-nodefaultlibs}
9054 One of the standard libraries bypassed by @option{-nostdlib} and
9055 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
9056 that GCC uses to overcome shortcomings of particular machines, or special
9057 needs for some languages.
9058 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
9059 Collection (GCC) Internals},
9060 for more discussion of @file{libgcc.a}.)
9061 In most cases, you need @file{libgcc.a} even when you want to avoid
9062 other standard libraries.  In other words, when you specify @option{-nostdlib}
9063 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
9064 This ensures that you have no unresolved references to internal GCC
9065 library subroutines.  (For example, @samp{__main}, used to ensure C++
9066 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
9067 GNU Compiler Collection (GCC) Internals}.)
9068
9069 @item -pie
9070 @opindex pie
9071 Produce a position independent executable on targets which support it.
9072 For predictable results, you must also specify the same set of options
9073 that were used to generate code (@option{-fpie}, @option{-fPIE},
9074 or model suboptions) when you specify this option.
9075
9076 @item -rdynamic
9077 @opindex rdynamic
9078 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
9079 that support it. This instructs the linker to add all symbols, not
9080 only used ones, to the dynamic symbol table. This option is needed
9081 for some uses of @code{dlopen} or to allow obtaining backtraces
9082 from within a program.
9083
9084 @item -s
9085 @opindex s
9086 Remove all symbol table and relocation information from the executable.
9087
9088 @item -static
9089 @opindex static
9090 On systems that support dynamic linking, this prevents linking with the shared
9091 libraries.  On other systems, this option has no effect.
9092
9093 @item -shared
9094 @opindex shared
9095 Produce a shared object which can then be linked with other objects to
9096 form an executable.  Not all systems support this option.  For predictable
9097 results, you must also specify the same set of options that were used to
9098 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
9099 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
9100 needs to build supplementary stub code for constructors to work.  On
9101 multi-libbed systems, @samp{gcc -shared} must select the correct support
9102 libraries to link against.  Failing to supply the correct flags may lead
9103 to subtle defects.  Supplying them in cases where they are not necessary
9104 is innocuous.}
9105
9106 @item -shared-libgcc
9107 @itemx -static-libgcc
9108 @opindex shared-libgcc
9109 @opindex static-libgcc
9110 On systems that provide @file{libgcc} as a shared library, these options
9111 force the use of either the shared or static version respectively.
9112 If no shared version of @file{libgcc} was built when the compiler was
9113 configured, these options have no effect.
9114
9115 There are several situations in which an application should use the
9116 shared @file{libgcc} instead of the static version.  The most common
9117 of these is when the application wishes to throw and catch exceptions
9118 across different shared libraries.  In that case, each of the libraries
9119 as well as the application itself should use the shared @file{libgcc}.
9120
9121 Therefore, the G++ and GCJ drivers automatically add
9122 @option{-shared-libgcc} whenever you build a shared library or a main
9123 executable, because C++ and Java programs typically use exceptions, so
9124 this is the right thing to do.
9125
9126 If, instead, you use the GCC driver to create shared libraries, you may
9127 find that they will not always be linked with the shared @file{libgcc}.
9128 If GCC finds, at its configuration time, that you have a non-GNU linker
9129 or a GNU linker that does not support option @option{--eh-frame-hdr},
9130 it will link the shared version of @file{libgcc} into shared libraries
9131 by default.  Otherwise, it will take advantage of the linker and optimize
9132 away the linking with the shared version of @file{libgcc}, linking with
9133 the static version of libgcc by default.  This allows exceptions to
9134 propagate through such shared libraries, without incurring relocation
9135 costs at library load time.
9136
9137 However, if a library or main executable is supposed to throw or catch
9138 exceptions, you must link it using the G++ or GCJ driver, as appropriate
9139 for the languages used in the program, or using the option
9140 @option{-shared-libgcc}, such that it is linked with the shared
9141 @file{libgcc}.
9142
9143 @item -static-libstdc++
9144 When the @command{g++} program is used to link a C++ program, it will
9145 normally automatically link against @option{libstdc++}.  If
9146 @file{libstdc++} is available as a shared library, and the
9147 @option{-static} option is not used, then this will link against the
9148 shared version of @file{libstdc++}.  That is normally fine.  However, it
9149 is sometimes useful to freeze the version of @file{libstdc++} used by
9150 the program without going all the way to a fully static link.  The
9151 @option{-static-libstdc++} option directs the @command{g++} driver to
9152 link @file{libstdc++} statically, without necessarily linking other
9153 libraries statically.
9154
9155 @item -symbolic
9156 @opindex symbolic
9157 Bind references to global symbols when building a shared object.  Warn
9158 about any unresolved references (unless overridden by the link editor
9159 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
9160 this option.
9161
9162 @item -T @var{script}
9163 @opindex T
9164 @cindex linker script
9165 Use @var{script} as the linker script.  This option is supported by most
9166 systems using the GNU linker.  On some targets, such as bare-board
9167 targets without an operating system, the @option{-T} option may be required
9168 when linking to avoid references to undefined symbols.
9169
9170 @item -Xlinker @var{option}
9171 @opindex Xlinker
9172 Pass @var{option} as an option to the linker.  You can use this to
9173 supply system-specific linker options which GCC does not know how to
9174 recognize.
9175
9176 If you want to pass an option that takes a separate argument, you must use
9177 @option{-Xlinker} twice, once for the option and once for the argument.
9178 For example, to pass @option{-assert definitions}, you must write
9179 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
9180 @option{-Xlinker "-assert definitions"}, because this passes the entire
9181 string as a single argument, which is not what the linker expects.
9182
9183 When using the GNU linker, it is usually more convenient to pass
9184 arguments to linker options using the @option{@var{option}=@var{value}}
9185 syntax than as separate arguments.  For example, you can specify
9186 @samp{-Xlinker -Map=output.map} rather than
9187 @samp{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
9188 this syntax for command-line options.
9189
9190 @item -Wl,@var{option}
9191 @opindex Wl
9192 Pass @var{option} as an option to the linker.  If @var{option} contains
9193 commas, it is split into multiple options at the commas.  You can use this
9194 syntax to pass an argument to the option.
9195 For example, @samp{-Wl,-Map,output.map} passes @samp{-Map output.map} to the
9196 linker.  When using the GNU linker, you can also get the same effect with
9197 @samp{-Wl,-Map=output.map}.
9198
9199 @item -u @var{symbol}
9200 @opindex u
9201 Pretend the symbol @var{symbol} is undefined, to force linking of
9202 library modules to define it.  You can use @option{-u} multiple times with
9203 different symbols to force loading of additional library modules.
9204 @end table
9205
9206 @node Directory Options
9207 @section Options for Directory Search
9208 @cindex directory options
9209 @cindex options, directory search
9210 @cindex search path
9211
9212 These options specify directories to search for header files, for
9213 libraries and for parts of the compiler:
9214
9215 @table @gcctabopt
9216 @item -I@var{dir}
9217 @opindex I
9218 Add the directory @var{dir} to the head of the list of directories to be
9219 searched for header files.  This can be used to override a system header
9220 file, substituting your own version, since these directories are
9221 searched before the system header file directories.  However, you should
9222 not use this option to add directories that contain vendor-supplied
9223 system header files (use @option{-isystem} for that).  If you use more than
9224 one @option{-I} option, the directories are scanned in left-to-right
9225 order; the standard system directories come after.
9226
9227 If a standard system include directory, or a directory specified with
9228 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
9229 option will be ignored.  The directory will still be searched but as a
9230 system directory at its normal position in the system include chain.
9231 This is to ensure that GCC's procedure to fix buggy system headers and
9232 the ordering for the include_next directive are not inadvertently changed.
9233 If you really need to change the search order for system directories,
9234 use the @option{-nostdinc} and/or @option{-isystem} options.
9235
9236 @item -iplugindir=@var{dir}
9237 Set the directory to search for plugins which are passed
9238 by @option{-fplugin=@var{name}} instead of
9239 @option{-fplugin=@var{path}/@var{name}.so}.  This option is not meant
9240 to be used by the user, but only passed by the driver.
9241
9242 @item -iquote@var{dir}
9243 @opindex iquote
9244 Add the directory @var{dir} to the head of the list of directories to
9245 be searched for header files only for the case of @samp{#include
9246 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
9247 otherwise just like @option{-I}.
9248
9249 @item -L@var{dir}
9250 @opindex L
9251 Add directory @var{dir} to the list of directories to be searched
9252 for @option{-l}.
9253
9254 @item -B@var{prefix}
9255 @opindex B
9256 This option specifies where to find the executables, libraries,
9257 include files, and data files of the compiler itself.
9258
9259 The compiler driver program runs one or more of the subprograms
9260 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
9261 @var{prefix} as a prefix for each program it tries to run, both with and
9262 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
9263
9264 For each subprogram to be run, the compiler driver first tries the
9265 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
9266 was not specified, the driver tries two standard prefixes, which are
9267 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
9268 those results in a file name that is found, the unmodified program
9269 name is searched for using the directories specified in your
9270 @env{PATH} environment variable.
9271
9272 The compiler will check to see if the path provided by the @option{-B}
9273 refers to a directory, and if necessary it will add a directory
9274 separator character at the end of the path.
9275
9276 @option{-B} prefixes that effectively specify directory names also apply
9277 to libraries in the linker, because the compiler translates these
9278 options into @option{-L} options for the linker.  They also apply to
9279 includes files in the preprocessor, because the compiler translates these
9280 options into @option{-isystem} options for the preprocessor.  In this case,
9281 the compiler appends @samp{include} to the prefix.
9282
9283 The run-time support file @file{libgcc.a} can also be searched for using
9284 the @option{-B} prefix, if needed.  If it is not found there, the two
9285 standard prefixes above are tried, and that is all.  The file is left
9286 out of the link if it is not found by those means.
9287
9288 Another way to specify a prefix much like the @option{-B} prefix is to use
9289 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
9290 Variables}.
9291
9292 As a special kludge, if the path provided by @option{-B} is
9293 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
9294 9, then it will be replaced by @file{[dir/]include}.  This is to help
9295 with boot-strapping the compiler.
9296
9297 @item -specs=@var{file}
9298 @opindex specs
9299 Process @var{file} after the compiler reads in the standard @file{specs}
9300 file, in order to override the defaults that the @file{gcc} driver
9301 program uses when determining what switches to pass to @file{cc1},
9302 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
9303 @option{-specs=@var{file}} can be specified on the command line, and they
9304 are processed in order, from left to right.
9305
9306 @item --sysroot=@var{dir}
9307 @opindex sysroot
9308 Use @var{dir} as the logical root directory for headers and libraries.
9309 For example, if the compiler would normally search for headers in
9310 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
9311 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
9312
9313 If you use both this option and the @option{-isysroot} option, then
9314 the @option{--sysroot} option will apply to libraries, but the
9315 @option{-isysroot} option will apply to header files.
9316
9317 The GNU linker (beginning with version 2.16) has the necessary support
9318 for this option.  If your linker does not support this option, the
9319 header file aspect of @option{--sysroot} will still work, but the
9320 library aspect will not.
9321
9322 @item -I-
9323 @opindex I-
9324 This option has been deprecated.  Please use @option{-iquote} instead for
9325 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
9326 Any directories you specify with @option{-I} options before the @option{-I-}
9327 option are searched only for the case of @samp{#include "@var{file}"};
9328 they are not searched for @samp{#include <@var{file}>}.
9329
9330 If additional directories are specified with @option{-I} options after
9331 the @option{-I-}, these directories are searched for all @samp{#include}
9332 directives.  (Ordinarily @emph{all} @option{-I} directories are used
9333 this way.)
9334
9335 In addition, the @option{-I-} option inhibits the use of the current
9336 directory (where the current input file came from) as the first search
9337 directory for @samp{#include "@var{file}"}.  There is no way to
9338 override this effect of @option{-I-}.  With @option{-I.} you can specify
9339 searching the directory which was current when the compiler was
9340 invoked.  That is not exactly the same as what the preprocessor does
9341 by default, but it is often satisfactory.
9342
9343 @option{-I-} does not inhibit the use of the standard system directories
9344 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
9345 independent.
9346 @end table
9347
9348 @c man end
9349
9350 @node Spec Files
9351 @section Specifying subprocesses and the switches to pass to them
9352 @cindex Spec Files
9353
9354 @command{gcc} is a driver program.  It performs its job by invoking a
9355 sequence of other programs to do the work of compiling, assembling and
9356 linking.  GCC interprets its command-line parameters and uses these to
9357 deduce which programs it should invoke, and which command-line options
9358 it ought to place on their command lines.  This behavior is controlled
9359 by @dfn{spec strings}.  In most cases there is one spec string for each
9360 program that GCC can invoke, but a few programs have multiple spec
9361 strings to control their behavior.  The spec strings built into GCC can
9362 be overridden by using the @option{-specs=} command-line switch to specify
9363 a spec file.
9364
9365 @dfn{Spec files} are plaintext files that are used to construct spec
9366 strings.  They consist of a sequence of directives separated by blank
9367 lines.  The type of directive is determined by the first non-whitespace
9368 character on the line and it can be one of the following:
9369
9370 @table @code
9371 @item %@var{command}
9372 Issues a @var{command} to the spec file processor.  The commands that can
9373 appear here are:
9374
9375 @table @code
9376 @item %include <@var{file}>
9377 @cindex @code{%include}
9378 Search for @var{file} and insert its text at the current point in the
9379 specs file.
9380
9381 @item %include_noerr <@var{file}>
9382 @cindex @code{%include_noerr}
9383 Just like @samp{%include}, but do not generate an error message if the include
9384 file cannot be found.
9385
9386 @item %rename @var{old_name} @var{new_name}
9387 @cindex @code{%rename}
9388 Rename the spec string @var{old_name} to @var{new_name}.
9389
9390 @end table
9391
9392 @item *[@var{spec_name}]:
9393 This tells the compiler to create, override or delete the named spec
9394 string.  All lines after this directive up to the next directive or
9395 blank line are considered to be the text for the spec string.  If this
9396 results in an empty string then the spec will be deleted.  (Or, if the
9397 spec did not exist, then nothing will happen.)  Otherwise, if the spec
9398 does not currently exist a new spec will be created.  If the spec does
9399 exist then its contents will be overridden by the text of this
9400 directive, unless the first character of that text is the @samp{+}
9401 character, in which case the text will be appended to the spec.
9402
9403 @item [@var{suffix}]:
9404 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
9405 and up to the next directive or blank line are considered to make up the
9406 spec string for the indicated suffix.  When the compiler encounters an
9407 input file with the named suffix, it will processes the spec string in
9408 order to work out how to compile that file.  For example:
9409
9410 @smallexample
9411 .ZZ:
9412 z-compile -input %i
9413 @end smallexample
9414
9415 This says that any input file whose name ends in @samp{.ZZ} should be
9416 passed to the program @samp{z-compile}, which should be invoked with the
9417 command-line switch @option{-input} and with the result of performing the
9418 @samp{%i} substitution.  (See below.)
9419
9420 As an alternative to providing a spec string, the text that follows a
9421 suffix directive can be one of the following:
9422
9423 @table @code
9424 @item @@@var{language}
9425 This says that the suffix is an alias for a known @var{language}.  This is
9426 similar to using the @option{-x} command-line switch to GCC to specify a
9427 language explicitly.  For example:
9428
9429 @smallexample
9430 .ZZ:
9431 @@c++
9432 @end smallexample
9433
9434 Says that .ZZ files are, in fact, C++ source files.
9435
9436 @item #@var{name}
9437 This causes an error messages saying:
9438
9439 @smallexample
9440 @var{name} compiler not installed on this system.
9441 @end smallexample
9442 @end table
9443
9444 GCC already has an extensive list of suffixes built into it.
9445 This directive will add an entry to the end of the list of suffixes, but
9446 since the list is searched from the end backwards, it is effectively
9447 possible to override earlier entries using this technique.
9448
9449 @end table
9450
9451 GCC has the following spec strings built into it.  Spec files can
9452 override these strings or create their own.  Note that individual
9453 targets can also add their own spec strings to this list.
9454
9455 @smallexample
9456 asm          Options to pass to the assembler
9457 asm_final    Options to pass to the assembler post-processor
9458 cpp          Options to pass to the C preprocessor
9459 cc1          Options to pass to the C compiler
9460 cc1plus      Options to pass to the C++ compiler
9461 endfile      Object files to include at the end of the link
9462 link         Options to pass to the linker
9463 lib          Libraries to include on the command line to the linker
9464 libgcc       Decides which GCC support library to pass to the linker
9465 linker       Sets the name of the linker
9466 predefines   Defines to be passed to the C preprocessor
9467 signed_char  Defines to pass to CPP to say whether @code{char} is signed
9468              by default
9469 startfile    Object files to include at the start of the link
9470 @end smallexample
9471
9472 Here is a small example of a spec file:
9473
9474 @smallexample
9475 %rename lib                 old_lib
9476
9477 *lib:
9478 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
9479 @end smallexample
9480
9481 This example renames the spec called @samp{lib} to @samp{old_lib} and
9482 then overrides the previous definition of @samp{lib} with a new one.
9483 The new definition adds in some extra command-line options before
9484 including the text of the old definition.
9485
9486 @dfn{Spec strings} are a list of command-line options to be passed to their
9487 corresponding program.  In addition, the spec strings can contain
9488 @samp{%}-prefixed sequences to substitute variable text or to
9489 conditionally insert text into the command line.  Using these constructs
9490 it is possible to generate quite complex command lines.
9491
9492 Here is a table of all defined @samp{%}-sequences for spec
9493 strings.  Note that spaces are not generated automatically around the
9494 results of expanding these sequences.  Therefore you can concatenate them
9495 together or combine them with constant text in a single argument.
9496
9497 @table @code
9498 @item %%
9499 Substitute one @samp{%} into the program name or argument.
9500
9501 @item %i
9502 Substitute the name of the input file being processed.
9503
9504 @item %b
9505 Substitute the basename of the input file being processed.
9506 This is the substring up to (and not including) the last period
9507 and not including the directory.
9508
9509 @item %B
9510 This is the same as @samp{%b}, but include the file suffix (text after
9511 the last period).
9512
9513 @item %d
9514 Marks the argument containing or following the @samp{%d} as a
9515 temporary file name, so that that file will be deleted if GCC exits
9516 successfully.  Unlike @samp{%g}, this contributes no text to the
9517 argument.
9518
9519 @item %g@var{suffix}
9520 Substitute a file name that has suffix @var{suffix} and is chosen
9521 once per compilation, and mark the argument in the same way as
9522 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
9523 name is now chosen in a way that is hard to predict even when previously
9524 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
9525 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
9526 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
9527 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
9528 was simply substituted with a file name chosen once per compilation,
9529 without regard to any appended suffix (which was therefore treated
9530 just like ordinary text), making such attacks more likely to succeed.
9531
9532 @item %u@var{suffix}
9533 Like @samp{%g}, but generates a new temporary file name even if
9534 @samp{%u@var{suffix}} was already seen.
9535
9536 @item %U@var{suffix}
9537 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
9538 new one if there is no such last file name.  In the absence of any
9539 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
9540 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
9541 would involve the generation of two distinct file names, one
9542 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
9543 simply substituted with a file name chosen for the previous @samp{%u},
9544 without regard to any appended suffix.
9545
9546 @item %j@var{suffix}
9547 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
9548 writable, and if save-temps is off; otherwise, substitute the name
9549 of a temporary file, just like @samp{%u}.  This temporary file is not
9550 meant for communication between processes, but rather as a junk
9551 disposal mechanism.
9552
9553 @item %|@var{suffix}
9554 @itemx %m@var{suffix}
9555 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
9556 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
9557 all.  These are the two most common ways to instruct a program that it
9558 should read from standard input or write to standard output.  If you
9559 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
9560 construct: see for example @file{f/lang-specs.h}.
9561
9562 @item %.@var{SUFFIX}
9563 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
9564 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
9565 terminated by the next space or %.
9566
9567 @item %w
9568 Marks the argument containing or following the @samp{%w} as the
9569 designated output file of this compilation.  This puts the argument
9570 into the sequence of arguments that @samp{%o} will substitute later.
9571
9572 @item %o
9573 Substitutes the names of all the output files, with spaces
9574 automatically placed around them.  You should write spaces
9575 around the @samp{%o} as well or the results are undefined.
9576 @samp{%o} is for use in the specs for running the linker.
9577 Input files whose names have no recognized suffix are not compiled
9578 at all, but they are included among the output files, so they will
9579 be linked.
9580
9581 @item %O
9582 Substitutes the suffix for object files.  Note that this is
9583 handled specially when it immediately follows @samp{%g, %u, or %U},
9584 because of the need for those to form complete file names.  The
9585 handling is such that @samp{%O} is treated exactly as if it had already
9586 been substituted, except that @samp{%g, %u, and %U} do not currently
9587 support additional @var{suffix} characters following @samp{%O} as they would
9588 following, for example, @samp{.o}.
9589
9590 @item %p
9591 Substitutes the standard macro predefinitions for the
9592 current target machine.  Use this when running @code{cpp}.
9593
9594 @item %P
9595 Like @samp{%p}, but puts @samp{__} before and after the name of each
9596 predefined macro, except for macros that start with @samp{__} or with
9597 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
9598 C@.
9599
9600 @item %I
9601 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
9602 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
9603 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
9604 and @option{-imultilib} as necessary.
9605
9606 @item %s
9607 Current argument is the name of a library or startup file of some sort.
9608 Search for that file in a standard list of directories and substitute
9609 the full name found.  The current working directory is included in the
9610 list of directories scanned.
9611
9612 @item %T
9613 Current argument is the name of a linker script.  Search for that file
9614 in the current list of directories to scan for libraries. If the file
9615 is located insert a @option{--script} option into the command line
9616 followed by the full path name found.  If the file is not found then
9617 generate an error message.  Note: the current working directory is not
9618 searched.
9619
9620 @item %e@var{str}
9621 Print @var{str} as an error message.  @var{str} is terminated by a newline.
9622 Use this when inconsistent options are detected.
9623
9624 @item %(@var{name})
9625 Substitute the contents of spec string @var{name} at this point.
9626
9627 @item %[@var{name}]
9628 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
9629
9630 @item %x@{@var{option}@}
9631 Accumulate an option for @samp{%X}.
9632
9633 @item %X
9634 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
9635 spec string.
9636
9637 @item %Y
9638 Output the accumulated assembler options specified by @option{-Wa}.
9639
9640 @item %Z
9641 Output the accumulated preprocessor options specified by @option{-Wp}.
9642
9643 @item %a
9644 Process the @code{asm} spec.  This is used to compute the
9645 switches to be passed to the assembler.
9646
9647 @item %A
9648 Process the @code{asm_final} spec.  This is a spec string for
9649 passing switches to an assembler post-processor, if such a program is
9650 needed.
9651
9652 @item %l
9653 Process the @code{link} spec.  This is the spec for computing the
9654 command line passed to the linker.  Typically it will make use of the
9655 @samp{%L %G %S %D and %E} sequences.
9656
9657 @item %D
9658 Dump out a @option{-L} option for each directory that GCC believes might
9659 contain startup files.  If the target supports multilibs then the
9660 current multilib directory will be prepended to each of these paths.
9661
9662 @item %L
9663 Process the @code{lib} spec.  This is a spec string for deciding which
9664 libraries should be included on the command line to the linker.
9665
9666 @item %G
9667 Process the @code{libgcc} spec.  This is a spec string for deciding
9668 which GCC support library should be included on the command line to the linker.
9669
9670 @item %S
9671 Process the @code{startfile} spec.  This is a spec for deciding which
9672 object files should be the first ones passed to the linker.  Typically
9673 this might be a file named @file{crt0.o}.
9674
9675 @item %E
9676 Process the @code{endfile} spec.  This is a spec string that specifies
9677 the last object files that will be passed to the linker.
9678
9679 @item %C
9680 Process the @code{cpp} spec.  This is used to construct the arguments
9681 to be passed to the C preprocessor.
9682
9683 @item %1
9684 Process the @code{cc1} spec.  This is used to construct the options to be
9685 passed to the actual C compiler (@samp{cc1}).
9686
9687 @item %2
9688 Process the @code{cc1plus} spec.  This is used to construct the options to be
9689 passed to the actual C++ compiler (@samp{cc1plus}).
9690
9691 @item %*
9692 Substitute the variable part of a matched option.  See below.
9693 Note that each comma in the substituted string is replaced by
9694 a single space.
9695
9696 @item %<@code{S}
9697 Remove all occurrences of @code{-S} from the command line.  Note---this
9698 command is position dependent.  @samp{%} commands in the spec string
9699 before this one will see @code{-S}, @samp{%} commands in the spec string
9700 after this one will not.
9701
9702 @item %:@var{function}(@var{args})
9703 Call the named function @var{function}, passing it @var{args}.
9704 @var{args} is first processed as a nested spec string, then split
9705 into an argument vector in the usual fashion.  The function returns
9706 a string which is processed as if it had appeared literally as part
9707 of the current spec.
9708
9709 The following built-in spec functions are provided:
9710
9711 @table @code
9712 @item @code{getenv}
9713 The @code{getenv} spec function takes two arguments: an environment
9714 variable name and a string.  If the environment variable is not
9715 defined, a fatal error is issued.  Otherwise, the return value is the
9716 value of the environment variable concatenated with the string.  For
9717 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
9718
9719 @smallexample
9720 %:getenv(TOPDIR /include)
9721 @end smallexample
9722
9723 expands to @file{/path/to/top/include}.
9724
9725 @item @code{if-exists}
9726 The @code{if-exists} spec function takes one argument, an absolute
9727 pathname to a file.  If the file exists, @code{if-exists} returns the
9728 pathname.  Here is a small example of its usage:
9729
9730 @smallexample
9731 *startfile:
9732 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
9733 @end smallexample
9734
9735 @item @code{if-exists-else}
9736 The @code{if-exists-else} spec function is similar to the @code{if-exists}
9737 spec function, except that it takes two arguments.  The first argument is
9738 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
9739 returns the pathname.  If it does not exist, it returns the second argument.
9740 This way, @code{if-exists-else} can be used to select one file or another,
9741 based on the existence of the first.  Here is a small example of its usage:
9742
9743 @smallexample
9744 *startfile:
9745 crt0%O%s %:if-exists(crti%O%s) \
9746 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
9747 @end smallexample
9748
9749 @item @code{replace-outfile}
9750 The @code{replace-outfile} spec function takes two arguments.  It looks for the
9751 first argument in the outfiles array and replaces it with the second argument.  Here
9752 is a small example of its usage:
9753
9754 @smallexample
9755 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
9756 @end smallexample
9757
9758 @item @code{remove-outfile}
9759 The @code{remove-outfile} spec function takes one argument.  It looks for the
9760 first argument in the outfiles array and removes it.  Here is a small example
9761 its usage:
9762
9763 @smallexample
9764 %:remove-outfile(-lm)
9765 @end smallexample
9766
9767 @item @code{pass-through-libs}
9768 The @code{pass-through-libs} spec function takes any number of arguments.  It
9769 finds any @option{-l} options and any non-options ending in ".a" (which it
9770 assumes are the names of linker input library archive files) and returns a
9771 result containing all the found arguments each prepended by
9772 @option{-plugin-opt=-pass-through=} and joined by spaces.  This list is
9773 intended to be passed to the LTO linker plugin.
9774
9775 @smallexample
9776 %:pass-through-libs(%G %L %G)
9777 @end smallexample
9778
9779 @item @code{print-asm-header}
9780 The @code{print-asm-header} function takes no arguments and simply
9781 prints a banner like:
9782
9783 @smallexample
9784 Assembler options
9785 =================
9786
9787 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
9788 @end smallexample
9789
9790 It is used to separate compiler options from assembler options
9791 in the @option{--target-help} output.
9792 @end table
9793
9794 @item %@{@code{S}@}
9795 Substitutes the @code{-S} switch, if that switch was given to GCC@.
9796 If that switch was not specified, this substitutes nothing.  Note that
9797 the leading dash is omitted when specifying this option, and it is
9798 automatically inserted if the substitution is performed.  Thus the spec
9799 string @samp{%@{foo@}} would match the command-line option @option{-foo}
9800 and would output the command line option @option{-foo}.
9801
9802 @item %W@{@code{S}@}
9803 Like %@{@code{S}@} but mark last argument supplied within as a file to be
9804 deleted on failure.
9805
9806 @item %@{@code{S}*@}
9807 Substitutes all the switches specified to GCC whose names start
9808 with @code{-S}, but which also take an argument.  This is used for
9809 switches like @option{-o}, @option{-D}, @option{-I}, etc.
9810 GCC considers @option{-o foo} as being
9811 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
9812 text, including the space.  Thus two arguments would be generated.
9813
9814 @item %@{@code{S}*&@code{T}*@}
9815 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
9816 (the order of @code{S} and @code{T} in the spec is not significant).
9817 There can be any number of ampersand-separated variables; for each the
9818 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
9819
9820 @item %@{@code{S}:@code{X}@}
9821 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
9822
9823 @item %@{!@code{S}:@code{X}@}
9824 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
9825
9826 @item %@{@code{S}*:@code{X}@}
9827 Substitutes @code{X} if one or more switches whose names start with
9828 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
9829 once, no matter how many such switches appeared.  However, if @code{%*}
9830 appears somewhere in @code{X}, then @code{X} will be substituted once
9831 for each matching switch, with the @code{%*} replaced by the part of
9832 that switch that matched the @code{*}.
9833
9834 @item %@{.@code{S}:@code{X}@}
9835 Substitutes @code{X}, if processing a file with suffix @code{S}.
9836
9837 @item %@{!.@code{S}:@code{X}@}
9838 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
9839
9840 @item %@{,@code{S}:@code{X}@}
9841 Substitutes @code{X}, if processing a file for language @code{S}.
9842
9843 @item %@{!,@code{S}:@code{X}@}
9844 Substitutes @code{X}, if not processing a file for language @code{S}.
9845
9846 @item %@{@code{S}|@code{P}:@code{X}@}
9847 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
9848 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
9849 @code{*} sequences as well, although they have a stronger binding than
9850 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
9851 alternatives must be starred, and only the first matching alternative
9852 is substituted.
9853
9854 For example, a spec string like this:
9855
9856 @smallexample
9857 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
9858 @end smallexample
9859
9860 will output the following command-line options from the following input
9861 command-line options:
9862
9863 @smallexample
9864 fred.c        -foo -baz
9865 jim.d         -bar -boggle
9866 -d fred.c     -foo -baz -boggle
9867 -d jim.d      -bar -baz -boggle
9868 @end smallexample
9869
9870 @item %@{S:X; T:Y; :D@}
9871
9872 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
9873 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
9874 be as many clauses as you need.  This may be combined with @code{.},
9875 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
9876
9877
9878 @end table
9879
9880 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
9881 construct may contain other nested @samp{%} constructs or spaces, or
9882 even newlines.  They are processed as usual, as described above.
9883 Trailing white space in @code{X} is ignored.  White space may also
9884 appear anywhere on the left side of the colon in these constructs,
9885 except between @code{.} or @code{*} and the corresponding word.
9886
9887 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
9888 handled specifically in these constructs.  If another value of
9889 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
9890 @option{-W} switch is found later in the command line, the earlier
9891 switch value is ignored, except with @{@code{S}*@} where @code{S} is
9892 just one letter, which passes all matching options.
9893
9894 The character @samp{|} at the beginning of the predicate text is used to
9895 indicate that a command should be piped to the following command, but
9896 only if @option{-pipe} is specified.
9897
9898 It is built into GCC which switches take arguments and which do not.
9899 (You might think it would be useful to generalize this to allow each
9900 compiler's spec to say which switches take arguments.  But this cannot
9901 be done in a consistent fashion.  GCC cannot even decide which input
9902 files have been specified without knowing which switches take arguments,
9903 and it must know which input files to compile in order to tell which
9904 compilers to run).
9905
9906 GCC also knows implicitly that arguments starting in @option{-l} are to be
9907 treated as compiler output files, and passed to the linker in their
9908 proper position among the other output files.
9909
9910 @c man begin OPTIONS
9911
9912 @node Target Options
9913 @section Specifying Target Machine and Compiler Version
9914 @cindex target options
9915 @cindex cross compiling
9916 @cindex specifying machine version
9917 @cindex specifying compiler version and target machine
9918 @cindex compiler version, specifying
9919 @cindex target machine, specifying
9920
9921 The usual way to run GCC is to run the executable called @command{gcc}, or
9922 @command{@var{machine}-gcc} when cross-compiling, or
9923 @command{@var{machine}-gcc-@var{version}} to run a version other than the
9924 one that was installed last.
9925
9926 @node Submodel Options
9927 @section Hardware Models and Configurations
9928 @cindex submodel options
9929 @cindex specifying hardware config
9930 @cindex hardware models and configurations, specifying
9931 @cindex machine dependent options
9932
9933 Each target machine types can have its own
9934 special options, starting with @samp{-m}, to choose among various
9935 hardware models or configurations---for example, 68010 vs 68020,
9936 floating coprocessor or none.  A single installed version of the
9937 compiler can compile for any model or configuration, according to the
9938 options specified.
9939
9940 Some configurations of the compiler also support additional special
9941 options, usually for compatibility with other compilers on the same
9942 platform.
9943
9944 @c This list is ordered alphanumerically by subsection name.
9945 @c It should be the same order and spelling as these options are listed
9946 @c in Machine Dependent Options
9947
9948 @menu
9949 * ARM Options::
9950 * AVR Options::
9951 * Blackfin Options::
9952 * CRIS Options::
9953 * Darwin Options::
9954 * DEC Alpha Options::
9955 * DEC Alpha/VMS Options::
9956 * FR30 Options::
9957 * FRV Options::
9958 * GNU/Linux Options::
9959 * H8/300 Options::
9960 * HPPA Options::
9961 * i386 and x86-64 Options::
9962 * i386 and x86-64 Windows Options::
9963 * IA-64 Options::
9964 * IA-64/VMS Options::
9965 * LM32 Options::
9966 * M32C Options::
9967 * M32R/D Options::
9968 * M680x0 Options::
9969 * MCore Options::
9970 * MeP Options::
9971 * MicroBlaze Options::
9972 * MIPS Options::
9973 * MMIX Options::
9974 * MN10300 Options::
9975 * PDP-11 Options::
9976 * picoChip Options::
9977 * PowerPC Options::
9978 * RS/6000 and PowerPC Options::
9979 * RX Options::
9980 * S/390 and zSeries Options::
9981 * Score Options::
9982 * SH Options::
9983 * Solaris 2 Options::
9984 * SPARC Options::
9985 * SPU Options::
9986 * System V Options::
9987 * V850 Options::
9988 * VAX Options::
9989 * VxWorks Options::
9990 * x86-64 Options::
9991 * Xstormy16 Options::
9992 * Xtensa Options::
9993 * zSeries Options::
9994 @end menu
9995
9996 @node ARM Options
9997 @subsection ARM Options
9998 @cindex ARM options
9999
10000 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
10001 architectures:
10002
10003 @table @gcctabopt
10004 @item -mabi=@var{name}
10005 @opindex mabi
10006 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
10007 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
10008
10009 @item -mapcs-frame
10010 @opindex mapcs-frame
10011 Generate a stack frame that is compliant with the ARM Procedure Call
10012 Standard for all functions, even if this is not strictly necessary for
10013 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
10014 with this option will cause the stack frames not to be generated for
10015 leaf functions.  The default is @option{-mno-apcs-frame}.
10016
10017 @item -mapcs
10018 @opindex mapcs
10019 This is a synonym for @option{-mapcs-frame}.
10020
10021 @ignore
10022 @c not currently implemented
10023 @item -mapcs-stack-check
10024 @opindex mapcs-stack-check
10025 Generate code to check the amount of stack space available upon entry to
10026 every function (that actually uses some stack space).  If there is
10027 insufficient space available then either the function
10028 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
10029 called, depending upon the amount of stack space required.  The run time
10030 system is required to provide these functions.  The default is
10031 @option{-mno-apcs-stack-check}, since this produces smaller code.
10032
10033 @c not currently implemented
10034 @item -mapcs-float
10035 @opindex mapcs-float
10036 Pass floating point arguments using the float point registers.  This is
10037 one of the variants of the APCS@.  This option is recommended if the
10038 target hardware has a floating point unit or if a lot of floating point
10039 arithmetic is going to be performed by the code.  The default is
10040 @option{-mno-apcs-float}, since integer only code is slightly increased in
10041 size if @option{-mapcs-float} is used.
10042
10043 @c not currently implemented
10044 @item -mapcs-reentrant
10045 @opindex mapcs-reentrant
10046 Generate reentrant, position independent code.  The default is
10047 @option{-mno-apcs-reentrant}.
10048 @end ignore
10049
10050 @item -mthumb-interwork
10051 @opindex mthumb-interwork
10052 Generate code which supports calling between the ARM and Thumb
10053 instruction sets.  Without this option the two instruction sets cannot
10054 be reliably used inside one program.  The default is
10055 @option{-mno-thumb-interwork}, since slightly larger code is generated
10056 when @option{-mthumb-interwork} is specified.
10057
10058 @item -mno-sched-prolog
10059 @opindex mno-sched-prolog
10060 Prevent the reordering of instructions in the function prolog, or the
10061 merging of those instruction with the instructions in the function's
10062 body.  This means that all functions will start with a recognizable set
10063 of instructions (or in fact one of a choice from a small set of
10064 different function prologues), and this information can be used to
10065 locate the start if functions inside an executable piece of code.  The
10066 default is @option{-msched-prolog}.
10067
10068 @item -mfloat-abi=@var{name}
10069 @opindex mfloat-abi
10070 Specifies which floating-point ABI to use.  Permissible values
10071 are: @samp{soft}, @samp{softfp} and @samp{hard}.
10072
10073 Specifying @samp{soft} causes GCC to generate output containing
10074 library calls for floating-point operations.
10075 @samp{softfp} allows the generation of code using hardware floating-point
10076 instructions, but still uses the soft-float calling conventions.
10077 @samp{hard} allows generation of floating-point instructions
10078 and uses FPU-specific calling conventions.
10079
10080 The default depends on the specific target configuration.  Note that
10081 the hard-float and soft-float ABIs are not link-compatible; you must
10082 compile your entire program with the same ABI, and link with a
10083 compatible set of libraries.
10084
10085 @item -mlittle-endian
10086 @opindex mlittle-endian
10087 Generate code for a processor running in little-endian mode.  This is
10088 the default for all standard configurations.
10089
10090 @item -mbig-endian
10091 @opindex mbig-endian
10092 Generate code for a processor running in big-endian mode; the default is
10093 to compile code for a little-endian processor.
10094
10095 @item -mwords-little-endian
10096 @opindex mwords-little-endian
10097 This option only applies when generating code for big-endian processors.
10098 Generate code for a little-endian word order but a big-endian byte
10099 order.  That is, a byte order of the form @samp{32107654}.  Note: this
10100 option should only be used if you require compatibility with code for
10101 big-endian ARM processors generated by versions of the compiler prior to
10102 2.8.
10103
10104 @item -mcpu=@var{name}
10105 @opindex mcpu
10106 This specifies the name of the target ARM processor.  GCC uses this name
10107 to determine what kind of instructions it can emit when generating
10108 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
10109 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
10110 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
10111 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
10112 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
10113 @samp{arm720},
10114 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
10115 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
10116 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
10117 @samp{strongarm1110},
10118 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
10119 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
10120 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
10121 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
10122 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
10123 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
10124 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
10125 @samp{cortex-a5}, @samp{cortex-a8}, @samp{cortex-a9}, @samp{cortex-a15},
10126 @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m4}, @samp{cortex-m3},
10127 @samp{cortex-m1},
10128 @samp{cortex-m0},
10129 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10130
10131 @item -mtune=@var{name}
10132 @opindex mtune
10133 This option is very similar to the @option{-mcpu=} option, except that
10134 instead of specifying the actual target processor type, and hence
10135 restricting which instructions can be used, it specifies that GCC should
10136 tune the performance of the code as if the target were of the type
10137 specified in this option, but still choosing the instructions that it
10138 will generate based on the CPU specified by a @option{-mcpu=} option.
10139 For some ARM implementations better performance can be obtained by using
10140 this option.
10141
10142 @item -march=@var{name}
10143 @opindex march
10144 This specifies the name of the target ARM architecture.  GCC uses this
10145 name to determine what kind of instructions it can emit when generating
10146 assembly code.  This option can be used in conjunction with or instead
10147 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
10148 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
10149 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
10150 @samp{armv6}, @samp{armv6j},
10151 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
10152 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
10153 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10154
10155 @item -mfpu=@var{name}
10156 @itemx -mfpe=@var{number}
10157 @itemx -mfp=@var{number}
10158 @opindex mfpu
10159 @opindex mfpe
10160 @opindex mfp
10161 This specifies what floating point hardware (or hardware emulation) is
10162 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
10163 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-fp16},
10164 @samp{vfpv3-d16}, @samp{vfpv3-d16-fp16}, @samp{vfpv3xd}, @samp{vfpv3xd-fp16},
10165 @samp{neon}, @samp{neon-fp16}, @samp{vfpv4}, @samp{vfpv4-d16},
10166 @samp{fpv4-sp-d16} and @samp{neon-vfpv4}.
10167 @option{-mfp} and @option{-mfpe} are synonyms for
10168 @option{-mfpu}=@samp{fpe}@var{number}, for compatibility with older versions
10169 of GCC@.
10170
10171 If @option{-msoft-float} is specified this specifies the format of
10172 floating point values.
10173
10174 If the selected floating-point hardware includes the NEON extension
10175 (e.g. @option{-mfpu}=@samp{neon}), note that floating-point
10176 operations will not be used by GCC's auto-vectorization pass unless
10177 @option{-funsafe-math-optimizations} is also specified.  This is
10178 because NEON hardware does not fully implement the IEEE 754 standard for
10179 floating-point arithmetic (in particular denormal values are treated as
10180 zero), so the use of NEON instructions may lead to a loss of precision.
10181
10182 @item -mfp16-format=@var{name}
10183 @opindex mfp16-format
10184 Specify the format of the @code{__fp16} half-precision floating-point type.
10185 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative};
10186 the default is @samp{none}, in which case the @code{__fp16} type is not
10187 defined.  @xref{Half-Precision}, for more information.
10188
10189 @item -mstructure-size-boundary=@var{n}
10190 @opindex mstructure-size-boundary
10191 The size of all structures and unions will be rounded up to a multiple
10192 of the number of bits set by this option.  Permissible values are 8, 32
10193 and 64.  The default value varies for different toolchains.  For the COFF
10194 targeted toolchain the default value is 8.  A value of 64 is only allowed
10195 if the underlying ABI supports it.
10196
10197 Specifying the larger number can produce faster, more efficient code, but
10198 can also increase the size of the program.  Different values are potentially
10199 incompatible.  Code compiled with one value cannot necessarily expect to
10200 work with code or libraries compiled with another value, if they exchange
10201 information using structures or unions.
10202
10203 @item -mabort-on-noreturn
10204 @opindex mabort-on-noreturn
10205 Generate a call to the function @code{abort} at the end of a
10206 @code{noreturn} function.  It will be executed if the function tries to
10207 return.
10208
10209 @item -mlong-calls
10210 @itemx -mno-long-calls
10211 @opindex mlong-calls
10212 @opindex mno-long-calls
10213 Tells the compiler to perform function calls by first loading the
10214 address of the function into a register and then performing a subroutine
10215 call on this register.  This switch is needed if the target function
10216 will lie outside of the 64 megabyte addressing range of the offset based
10217 version of subroutine call instruction.
10218
10219 Even if this switch is enabled, not all function calls will be turned
10220 into long calls.  The heuristic is that static functions, functions
10221 which have the @samp{short-call} attribute, functions that are inside
10222 the scope of a @samp{#pragma no_long_calls} directive and functions whose
10223 definitions have already been compiled within the current compilation
10224 unit, will not be turned into long calls.  The exception to this rule is
10225 that weak function definitions, functions with the @samp{long-call}
10226 attribute or the @samp{section} attribute, and functions that are within
10227 the scope of a @samp{#pragma long_calls} directive, will always be
10228 turned into long calls.
10229
10230 This feature is not enabled by default.  Specifying
10231 @option{-mno-long-calls} will restore the default behavior, as will
10232 placing the function calls within the scope of a @samp{#pragma
10233 long_calls_off} directive.  Note these switches have no effect on how
10234 the compiler generates code to handle function calls via function
10235 pointers.
10236
10237 @item -msingle-pic-base
10238 @opindex msingle-pic-base
10239 Treat the register used for PIC addressing as read-only, rather than
10240 loading it in the prologue for each function.  The run-time system is
10241 responsible for initializing this register with an appropriate value
10242 before execution begins.
10243
10244 @item -mpic-register=@var{reg}
10245 @opindex mpic-register
10246 Specify the register to be used for PIC addressing.  The default is R10
10247 unless stack-checking is enabled, when R9 is used.
10248
10249 @item -mcirrus-fix-invalid-insns
10250 @opindex mcirrus-fix-invalid-insns
10251 @opindex mno-cirrus-fix-invalid-insns
10252 Insert NOPs into the instruction stream to in order to work around
10253 problems with invalid Maverick instruction combinations.  This option
10254 is only valid if the @option{-mcpu=ep9312} option has been used to
10255 enable generation of instructions for the Cirrus Maverick floating
10256 point co-processor.  This option is not enabled by default, since the
10257 problem is only present in older Maverick implementations.  The default
10258 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
10259 switch.
10260
10261 @item -mpoke-function-name
10262 @opindex mpoke-function-name
10263 Write the name of each function into the text section, directly
10264 preceding the function prologue.  The generated code is similar to this:
10265
10266 @smallexample
10267      t0
10268          .ascii "arm_poke_function_name", 0
10269          .align
10270      t1
10271          .word 0xff000000 + (t1 - t0)
10272      arm_poke_function_name
10273          mov     ip, sp
10274          stmfd   sp!, @{fp, ip, lr, pc@}
10275          sub     fp, ip, #4
10276 @end smallexample
10277
10278 When performing a stack backtrace, code can inspect the value of
10279 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
10280 location @code{pc - 12} and the top 8 bits are set, then we know that
10281 there is a function name embedded immediately preceding this location
10282 and has length @code{((pc[-3]) & 0xff000000)}.
10283
10284 @item -mthumb
10285 @itemx -marm
10286 @opindex marm
10287 @opindex mthumb
10288
10289 Select between generating code that executes in ARM and Thumb
10290 states.  The default for most configurations is to generate code
10291 that executes in ARM state, but the default can be changed by
10292 configuring GCC with the @option{--with-mode=}@var{state}
10293 configure option.
10294
10295 @item -mtpcs-frame
10296 @opindex mtpcs-frame
10297 Generate a stack frame that is compliant with the Thumb Procedure Call
10298 Standard for all non-leaf functions.  (A leaf function is one that does
10299 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
10300
10301 @item -mtpcs-leaf-frame
10302 @opindex mtpcs-leaf-frame
10303 Generate a stack frame that is compliant with the Thumb Procedure Call
10304 Standard for all leaf functions.  (A leaf function is one that does
10305 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
10306
10307 @item -mcallee-super-interworking
10308 @opindex mcallee-super-interworking
10309 Gives all externally visible functions in the file being compiled an ARM
10310 instruction set header which switches to Thumb mode before executing the
10311 rest of the function.  This allows these functions to be called from
10312 non-interworking code.  This option is not valid in AAPCS configurations
10313 because interworking is enabled by default.
10314
10315 @item -mcaller-super-interworking
10316 @opindex mcaller-super-interworking
10317 Allows calls via function pointers (including virtual functions) to
10318 execute correctly regardless of whether the target code has been
10319 compiled for interworking or not.  There is a small overhead in the cost
10320 of executing a function pointer if this option is enabled.  This option
10321 is not valid in AAPCS configurations because interworking is enabled
10322 by default.
10323
10324 @item -mtp=@var{name}
10325 @opindex mtp
10326 Specify the access model for the thread local storage pointer.  The valid
10327 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
10328 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
10329 (supported in the arm6k architecture), and @option{auto}, which uses the
10330 best available method for the selected processor.  The default setting is
10331 @option{auto}.
10332
10333 @item -mword-relocations
10334 @opindex mword-relocations
10335 Only generate absolute relocations on word sized values (i.e. R_ARM_ABS32).
10336 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
10337 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
10338 is specified.
10339
10340 @item -mfix-cortex-m3-ldrd
10341 @opindex mfix-cortex-m3-ldrd
10342 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
10343 with overlapping destination and base registers are used.  This option avoids
10344 generating these instructions.  This option is enabled by default when
10345 @option{-mcpu=cortex-m3} is specified.
10346
10347 @end table
10348
10349 @node AVR Options
10350 @subsection AVR Options
10351 @cindex AVR Options
10352
10353 These options are defined for AVR implementations:
10354
10355 @table @gcctabopt
10356 @item -mmcu=@var{mcu}
10357 @opindex mmcu
10358 Specify ATMEL AVR instruction set or MCU type.
10359
10360 Instruction set avr1 is for the minimal AVR core, not supported by the C
10361 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
10362 attiny11, attiny12, attiny15, attiny28).
10363
10364 Instruction set avr2 (default) is for the classic AVR core with up to
10365 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
10366 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
10367 at90c8534, at90s8535).
10368
10369 Instruction set avr3 is for the classic AVR core with up to 128K program
10370 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
10371
10372 Instruction set avr4 is for the enhanced AVR core with up to 8K program
10373 memory space (MCU types: atmega8, atmega83, atmega85).
10374
10375 Instruction set avr5 is for the enhanced AVR core with up to 128K program
10376 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
10377 atmega64, atmega128, at43usb355, at94k).
10378
10379 @item -mno-interrupts
10380 @opindex mno-interrupts
10381 Generated code is not compatible with hardware interrupts.
10382 Code size will be smaller.
10383
10384 @item -mcall-prologues
10385 @opindex mcall-prologues
10386 Functions prologues/epilogues expanded as call to appropriate
10387 subroutines.  Code size will be smaller.
10388
10389 @item -mtiny-stack
10390 @opindex mtiny-stack
10391 Change only the low 8 bits of the stack pointer.
10392
10393 @item -mint8
10394 @opindex mint8
10395 Assume int to be 8 bit integer.  This affects the sizes of all types: A
10396 char will be 1 byte, an int will be 1 byte, a long will be 2 bytes
10397 and long long will be 4 bytes.  Please note that this option does not
10398 comply to the C standards, but it will provide you with smaller code
10399 size.
10400 @end table
10401
10402 @node Blackfin Options
10403 @subsection Blackfin Options
10404 @cindex Blackfin Options
10405
10406 @table @gcctabopt
10407 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
10408 @opindex mcpu=
10409 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
10410 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
10411 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
10412 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
10413 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
10414 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
10415 @samp{bf542m}, @samp{bf544m}, @samp{bf547m}, @samp{bf548m}, @samp{bf549m},
10416 @samp{bf561}.
10417 The optional @var{sirevision} specifies the silicon revision of the target
10418 Blackfin processor.  Any workarounds available for the targeted silicon revision
10419 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
10420 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
10421 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
10422 hexadecimal digits representing the major and minor numbers in the silicon
10423 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
10424 is not defined.  If @var{sirevision} is @samp{any}, the
10425 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
10426 If this optional @var{sirevision} is not used, GCC assumes the latest known
10427 silicon revision of the targeted Blackfin processor.
10428
10429 Support for @samp{bf561} is incomplete.  For @samp{bf561},
10430 Only the processor macro is defined.
10431 Without this option, @samp{bf532} is used as the processor by default.
10432 The corresponding predefined processor macros for @var{cpu} is to
10433 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
10434 provided by libgloss to be linked in if @option{-msim} is not given.
10435
10436 @item -msim
10437 @opindex msim
10438 Specifies that the program will be run on the simulator.  This causes
10439 the simulator BSP provided by libgloss to be linked in.  This option
10440 has effect only for @samp{bfin-elf} toolchain.
10441 Certain other options, such as @option{-mid-shared-library} and
10442 @option{-mfdpic}, imply @option{-msim}.
10443
10444 @item -momit-leaf-frame-pointer
10445 @opindex momit-leaf-frame-pointer
10446 Don't keep the frame pointer in a register for leaf functions.  This
10447 avoids the instructions to save, set up and restore frame pointers and
10448 makes an extra register available in leaf functions.  The option
10449 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10450 which might make debugging harder.
10451
10452 @item -mspecld-anomaly
10453 @opindex mspecld-anomaly
10454 When enabled, the compiler will ensure that the generated code does not
10455 contain speculative loads after jump instructions. If this option is used,
10456 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
10457
10458 @item -mno-specld-anomaly
10459 @opindex mno-specld-anomaly
10460 Don't generate extra code to prevent speculative loads from occurring.
10461
10462 @item -mcsync-anomaly
10463 @opindex mcsync-anomaly
10464 When enabled, the compiler will ensure that the generated code does not
10465 contain CSYNC or SSYNC instructions too soon after conditional branches.
10466 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
10467
10468 @item -mno-csync-anomaly
10469 @opindex mno-csync-anomaly
10470 Don't generate extra code to prevent CSYNC or SSYNC instructions from
10471 occurring too soon after a conditional branch.
10472
10473 @item -mlow-64k
10474 @opindex mlow-64k
10475 When enabled, the compiler is free to take advantage of the knowledge that
10476 the entire program fits into the low 64k of memory.
10477
10478 @item -mno-low-64k
10479 @opindex mno-low-64k
10480 Assume that the program is arbitrarily large.  This is the default.
10481
10482 @item -mstack-check-l1
10483 @opindex mstack-check-l1
10484 Do stack checking using information placed into L1 scratchpad memory by the
10485 uClinux kernel.
10486
10487 @item -mid-shared-library
10488 @opindex mid-shared-library
10489 Generate code that supports shared libraries via the library ID method.
10490 This allows for execute in place and shared libraries in an environment
10491 without virtual memory management.  This option implies @option{-fPIC}.
10492 With a @samp{bfin-elf} target, this option implies @option{-msim}.
10493
10494 @item -mno-id-shared-library
10495 @opindex mno-id-shared-library
10496 Generate code that doesn't assume ID based shared libraries are being used.
10497 This is the default.
10498
10499 @item -mleaf-id-shared-library
10500 @opindex mleaf-id-shared-library
10501 Generate code that supports shared libraries via the library ID method,
10502 but assumes that this library or executable won't link against any other
10503 ID shared libraries.  That allows the compiler to use faster code for jumps
10504 and calls.
10505
10506 @item -mno-leaf-id-shared-library
10507 @opindex mno-leaf-id-shared-library
10508 Do not assume that the code being compiled won't link against any ID shared
10509 libraries.  Slower code will be generated for jump and call insns.
10510
10511 @item -mshared-library-id=n
10512 @opindex mshared-library-id
10513 Specified the identification number of the ID based shared library being
10514 compiled.  Specifying a value of 0 will generate more compact code, specifying
10515 other values will force the allocation of that number to the current
10516 library but is no more space or time efficient than omitting this option.
10517
10518 @item -msep-data
10519 @opindex msep-data
10520 Generate code that allows the data segment to be located in a different
10521 area of memory from the text segment.  This allows for execute in place in
10522 an environment without virtual memory management by eliminating relocations
10523 against the text section.
10524
10525 @item -mno-sep-data
10526 @opindex mno-sep-data
10527 Generate code that assumes that the data segment follows the text segment.
10528 This is the default.
10529
10530 @item -mlong-calls
10531 @itemx -mno-long-calls
10532 @opindex mlong-calls
10533 @opindex mno-long-calls
10534 Tells the compiler to perform function calls by first loading the
10535 address of the function into a register and then performing a subroutine
10536 call on this register.  This switch is needed if the target function
10537 will lie outside of the 24 bit addressing range of the offset based
10538 version of subroutine call instruction.
10539
10540 This feature is not enabled by default.  Specifying
10541 @option{-mno-long-calls} will restore the default behavior.  Note these
10542 switches have no effect on how the compiler generates code to handle
10543 function calls via function pointers.
10544
10545 @item -mfast-fp
10546 @opindex mfast-fp
10547 Link with the fast floating-point library. This library relaxes some of
10548 the IEEE floating-point standard's rules for checking inputs against
10549 Not-a-Number (NAN), in the interest of performance.
10550
10551 @item -minline-plt
10552 @opindex minline-plt
10553 Enable inlining of PLT entries in function calls to functions that are
10554 not known to bind locally.  It has no effect without @option{-mfdpic}.
10555
10556 @item -mmulticore
10557 @opindex mmulticore
10558 Build standalone application for multicore Blackfin processor. Proper
10559 start files and link scripts will be used to support multicore.
10560 This option defines @code{__BFIN_MULTICORE}. It can only be used with
10561 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
10562 @option{-mcorea} or @option{-mcoreb}. If it's used without
10563 @option{-mcorea} or @option{-mcoreb}, single application/dual core
10564 programming model is used. In this model, the main function of Core B
10565 should be named as coreb_main. If it's used with @option{-mcorea} or
10566 @option{-mcoreb}, one application per core programming model is used.
10567 If this option is not used, single core application programming
10568 model is used.
10569
10570 @item -mcorea
10571 @opindex mcorea
10572 Build standalone application for Core A of BF561 when using
10573 one application per core programming model. Proper start files
10574 and link scripts will be used to support Core A. This option
10575 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
10576
10577 @item -mcoreb
10578 @opindex mcoreb
10579 Build standalone application for Core B of BF561 when using
10580 one application per core programming model. Proper start files
10581 and link scripts will be used to support Core B. This option
10582 defines @code{__BFIN_COREB}. When this option is used, coreb_main
10583 should be used instead of main. It must be used with
10584 @option{-mmulticore}.
10585
10586 @item -msdram
10587 @opindex msdram
10588 Build standalone application for SDRAM. Proper start files and
10589 link scripts will be used to put the application into SDRAM.
10590 Loader should initialize SDRAM before loading the application
10591 into SDRAM. This option defines @code{__BFIN_SDRAM}.
10592
10593 @item -micplb
10594 @opindex micplb
10595 Assume that ICPLBs are enabled at runtime.  This has an effect on certain
10596 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
10597 are enabled; for standalone applications the default is off.
10598 @end table
10599
10600 @node CRIS Options
10601 @subsection CRIS Options
10602 @cindex CRIS Options
10603
10604 These options are defined specifically for the CRIS ports.
10605
10606 @table @gcctabopt
10607 @item -march=@var{architecture-type}
10608 @itemx -mcpu=@var{architecture-type}
10609 @opindex march
10610 @opindex mcpu
10611 Generate code for the specified architecture.  The choices for
10612 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
10613 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
10614 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
10615 @samp{v10}.
10616
10617 @item -mtune=@var{architecture-type}
10618 @opindex mtune
10619 Tune to @var{architecture-type} everything applicable about the generated
10620 code, except for the ABI and the set of available instructions.  The
10621 choices for @var{architecture-type} are the same as for
10622 @option{-march=@var{architecture-type}}.
10623
10624 @item -mmax-stack-frame=@var{n}
10625 @opindex mmax-stack-frame
10626 Warn when the stack frame of a function exceeds @var{n} bytes.
10627
10628 @item -metrax4
10629 @itemx -metrax100
10630 @opindex metrax4
10631 @opindex metrax100
10632 The options @option{-metrax4} and @option{-metrax100} are synonyms for
10633 @option{-march=v3} and @option{-march=v8} respectively.
10634
10635 @item -mmul-bug-workaround
10636 @itemx -mno-mul-bug-workaround
10637 @opindex mmul-bug-workaround
10638 @opindex mno-mul-bug-workaround
10639 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
10640 models where it applies.  This option is active by default.
10641
10642 @item -mpdebug
10643 @opindex mpdebug
10644 Enable CRIS-specific verbose debug-related information in the assembly
10645 code.  This option also has the effect to turn off the @samp{#NO_APP}
10646 formatted-code indicator to the assembler at the beginning of the
10647 assembly file.
10648
10649 @item -mcc-init
10650 @opindex mcc-init
10651 Do not use condition-code results from previous instruction; always emit
10652 compare and test instructions before use of condition codes.
10653
10654 @item -mno-side-effects
10655 @opindex mno-side-effects
10656 Do not emit instructions with side-effects in addressing modes other than
10657 post-increment.
10658
10659 @item -mstack-align
10660 @itemx -mno-stack-align
10661 @itemx -mdata-align
10662 @itemx -mno-data-align
10663 @itemx -mconst-align
10664 @itemx -mno-const-align
10665 @opindex mstack-align
10666 @opindex mno-stack-align
10667 @opindex mdata-align
10668 @opindex mno-data-align
10669 @opindex mconst-align
10670 @opindex mno-const-align
10671 These options (no-options) arranges (eliminate arrangements) for the
10672 stack-frame, individual data and constants to be aligned for the maximum
10673 single data access size for the chosen CPU model.  The default is to
10674 arrange for 32-bit alignment.  ABI details such as structure layout are
10675 not affected by these options.
10676
10677 @item -m32-bit
10678 @itemx -m16-bit
10679 @itemx -m8-bit
10680 @opindex m32-bit
10681 @opindex m16-bit
10682 @opindex m8-bit
10683 Similar to the stack- data- and const-align options above, these options
10684 arrange for stack-frame, writable data and constants to all be 32-bit,
10685 16-bit or 8-bit aligned.  The default is 32-bit alignment.
10686
10687 @item -mno-prologue-epilogue
10688 @itemx -mprologue-epilogue
10689 @opindex mno-prologue-epilogue
10690 @opindex mprologue-epilogue
10691 With @option{-mno-prologue-epilogue}, the normal function prologue and
10692 epilogue that sets up the stack-frame are omitted and no return
10693 instructions or return sequences are generated in the code.  Use this
10694 option only together with visual inspection of the compiled code: no
10695 warnings or errors are generated when call-saved registers must be saved,
10696 or storage for local variable needs to be allocated.
10697
10698 @item -mno-gotplt
10699 @itemx -mgotplt
10700 @opindex mno-gotplt
10701 @opindex mgotplt
10702 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
10703 instruction sequences that load addresses for functions from the PLT part
10704 of the GOT rather than (traditional on other architectures) calls to the
10705 PLT@.  The default is @option{-mgotplt}.
10706
10707 @item -melf
10708 @opindex melf
10709 Legacy no-op option only recognized with the cris-axis-elf and
10710 cris-axis-linux-gnu targets.
10711
10712 @item -mlinux
10713 @opindex mlinux
10714 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
10715
10716 @item -sim
10717 @opindex sim
10718 This option, recognized for the cris-axis-elf arranges
10719 to link with input-output functions from a simulator library.  Code,
10720 initialized data and zero-initialized data are allocated consecutively.
10721
10722 @item -sim2
10723 @opindex sim2
10724 Like @option{-sim}, but pass linker options to locate initialized data at
10725 0x40000000 and zero-initialized data at 0x80000000.
10726 @end table
10727
10728 @node Darwin Options
10729 @subsection Darwin Options
10730 @cindex Darwin options
10731
10732 These options are defined for all architectures running the Darwin operating
10733 system.
10734
10735 FSF GCC on Darwin does not create ``fat'' object files; it will create
10736 an object file for the single architecture that it was built to
10737 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
10738 @option{-arch} options are used; it does so by running the compiler or
10739 linker multiple times and joining the results together with
10740 @file{lipo}.
10741
10742 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
10743 @samp{i686}) is determined by the flags that specify the ISA
10744 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
10745 @option{-force_cpusubtype_ALL} option can be used to override this.
10746
10747 The Darwin tools vary in their behavior when presented with an ISA
10748 mismatch.  The assembler, @file{as}, will only permit instructions to
10749 be used that are valid for the subtype of the file it is generating,
10750 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
10751 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
10752 and print an error if asked to create a shared library with a less
10753 restrictive subtype than its input files (for instance, trying to put
10754 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
10755 for executables, @file{ld}, will quietly give the executable the most
10756 restrictive subtype of any of its input files.
10757
10758 @table @gcctabopt
10759 @item -F@var{dir}
10760 @opindex F
10761 Add the framework directory @var{dir} to the head of the list of
10762 directories to be searched for header files.  These directories are
10763 interleaved with those specified by @option{-I} options and are
10764 scanned in a left-to-right order.
10765
10766 A framework directory is a directory with frameworks in it.  A
10767 framework is a directory with a @samp{"Headers"} and/or
10768 @samp{"PrivateHeaders"} directory contained directly in it that ends
10769 in @samp{".framework"}.  The name of a framework is the name of this
10770 directory excluding the @samp{".framework"}.  Headers associated with
10771 the framework are found in one of those two directories, with
10772 @samp{"Headers"} being searched first.  A subframework is a framework
10773 directory that is in a framework's @samp{"Frameworks"} directory.
10774 Includes of subframework headers can only appear in a header of a
10775 framework that contains the subframework, or in a sibling subframework
10776 header.  Two subframeworks are siblings if they occur in the same
10777 framework.  A subframework should not have the same name as a
10778 framework, a warning will be issued if this is violated.  Currently a
10779 subframework cannot have subframeworks, in the future, the mechanism
10780 may be extended to support this.  The standard frameworks can be found
10781 in @samp{"/System/Library/Frameworks"} and
10782 @samp{"/Library/Frameworks"}.  An example include looks like
10783 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
10784 the name of the framework and header.h is found in the
10785 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
10786
10787 @item -iframework@var{dir}
10788 @opindex iframework
10789 Like @option{-F} except the directory is a treated as a system
10790 directory.  The main difference between this @option{-iframework} and
10791 @option{-F} is that with @option{-iframework} the compiler does not
10792 warn about constructs contained within header files found via
10793 @var{dir}.  This option is valid only for the C family of languages.
10794
10795 @item -gused
10796 @opindex gused
10797 Emit debugging information for symbols that are used.  For STABS
10798 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
10799 This is by default ON@.
10800
10801 @item -gfull
10802 @opindex gfull
10803 Emit debugging information for all symbols and types.
10804
10805 @item -mmacosx-version-min=@var{version}
10806 The earliest version of MacOS X that this executable will run on
10807 is @var{version}.  Typical values of @var{version} include @code{10.1},
10808 @code{10.2}, and @code{10.3.9}.
10809
10810 If the compiler was built to use the system's headers by default,
10811 then the default for this option is the system version on which the
10812 compiler is running, otherwise the default is to make choices which
10813 are compatible with as many systems and code bases as possible.
10814
10815 @item -mkernel
10816 @opindex mkernel
10817 Enable kernel development mode.  The @option{-mkernel} option sets
10818 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
10819 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
10820 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
10821 applicable.  This mode also sets @option{-mno-altivec},
10822 @option{-msoft-float}, @option{-fno-builtin} and
10823 @option{-mlong-branch} for PowerPC targets.
10824
10825 @item -mone-byte-bool
10826 @opindex mone-byte-bool
10827 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
10828 By default @samp{sizeof(bool)} is @samp{4} when compiling for
10829 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
10830 option has no effect on x86.
10831
10832 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
10833 to generate code that is not binary compatible with code generated
10834 without that switch.  Using this switch may require recompiling all
10835 other modules in a program, including system libraries.  Use this
10836 switch to conform to a non-default data model.
10837
10838 @item -mfix-and-continue
10839 @itemx -ffix-and-continue
10840 @itemx -findirect-data
10841 @opindex mfix-and-continue
10842 @opindex ffix-and-continue
10843 @opindex findirect-data
10844 Generate code suitable for fast turn around development.  Needed to
10845 enable gdb to dynamically load @code{.o} files into already running
10846 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
10847 are provided for backwards compatibility.
10848
10849 @item -all_load
10850 @opindex all_load
10851 Loads all members of static archive libraries.
10852 See man ld(1) for more information.
10853
10854 @item -arch_errors_fatal
10855 @opindex arch_errors_fatal
10856 Cause the errors having to do with files that have the wrong architecture
10857 to be fatal.
10858
10859 @item -bind_at_load
10860 @opindex bind_at_load
10861 Causes the output file to be marked such that the dynamic linker will
10862 bind all undefined references when the file is loaded or launched.
10863
10864 @item -bundle
10865 @opindex bundle
10866 Produce a Mach-o bundle format file.
10867 See man ld(1) for more information.
10868
10869 @item -bundle_loader @var{executable}
10870 @opindex bundle_loader
10871 This option specifies the @var{executable} that will be loading the build
10872 output file being linked.  See man ld(1) for more information.
10873
10874 @item -dynamiclib
10875 @opindex dynamiclib
10876 When passed this option, GCC will produce a dynamic library instead of
10877 an executable when linking, using the Darwin @file{libtool} command.
10878
10879 @item -force_cpusubtype_ALL
10880 @opindex force_cpusubtype_ALL
10881 This causes GCC's output file to have the @var{ALL} subtype, instead of
10882 one controlled by the @option{-mcpu} or @option{-march} option.
10883
10884 @item -allowable_client  @var{client_name}
10885 @itemx -client_name
10886 @itemx -compatibility_version
10887 @itemx -current_version
10888 @itemx -dead_strip
10889 @itemx -dependency-file
10890 @itemx -dylib_file
10891 @itemx -dylinker_install_name
10892 @itemx -dynamic
10893 @itemx -exported_symbols_list
10894 @itemx -filelist
10895 @need 800
10896 @itemx -flat_namespace
10897 @itemx -force_flat_namespace
10898 @itemx -headerpad_max_install_names
10899 @itemx -image_base
10900 @itemx -init
10901 @itemx -install_name
10902 @itemx -keep_private_externs
10903 @itemx -multi_module
10904 @itemx -multiply_defined
10905 @itemx -multiply_defined_unused
10906 @need 800
10907 @itemx -noall_load
10908 @itemx -no_dead_strip_inits_and_terms
10909 @itemx -nofixprebinding
10910 @itemx -nomultidefs
10911 @itemx -noprebind
10912 @itemx -noseglinkedit
10913 @itemx -pagezero_size
10914 @itemx -prebind
10915 @itemx -prebind_all_twolevel_modules
10916 @itemx -private_bundle
10917 @need 800
10918 @itemx -read_only_relocs
10919 @itemx -sectalign
10920 @itemx -sectobjectsymbols
10921 @itemx -whyload
10922 @itemx -seg1addr
10923 @itemx -sectcreate
10924 @itemx -sectobjectsymbols
10925 @itemx -sectorder
10926 @itemx -segaddr
10927 @itemx -segs_read_only_addr
10928 @need 800
10929 @itemx -segs_read_write_addr
10930 @itemx -seg_addr_table
10931 @itemx -seg_addr_table_filename
10932 @itemx -seglinkedit
10933 @itemx -segprot
10934 @itemx -segs_read_only_addr
10935 @itemx -segs_read_write_addr
10936 @itemx -single_module
10937 @itemx -static
10938 @itemx -sub_library
10939 @need 800
10940 @itemx -sub_umbrella
10941 @itemx -twolevel_namespace
10942 @itemx -umbrella
10943 @itemx -undefined
10944 @itemx -unexported_symbols_list
10945 @itemx -weak_reference_mismatches
10946 @itemx -whatsloaded
10947 @opindex allowable_client
10948 @opindex client_name
10949 @opindex compatibility_version
10950 @opindex current_version
10951 @opindex dead_strip
10952 @opindex dependency-file
10953 @opindex dylib_file
10954 @opindex dylinker_install_name
10955 @opindex dynamic
10956 @opindex exported_symbols_list
10957 @opindex filelist
10958 @opindex flat_namespace
10959 @opindex force_flat_namespace
10960 @opindex headerpad_max_install_names
10961 @opindex image_base
10962 @opindex init
10963 @opindex install_name
10964 @opindex keep_private_externs
10965 @opindex multi_module
10966 @opindex multiply_defined
10967 @opindex multiply_defined_unused
10968 @opindex noall_load
10969 @opindex no_dead_strip_inits_and_terms
10970 @opindex nofixprebinding
10971 @opindex nomultidefs
10972 @opindex noprebind
10973 @opindex noseglinkedit
10974 @opindex pagezero_size
10975 @opindex prebind
10976 @opindex prebind_all_twolevel_modules
10977 @opindex private_bundle
10978 @opindex read_only_relocs
10979 @opindex sectalign
10980 @opindex sectobjectsymbols
10981 @opindex whyload
10982 @opindex seg1addr
10983 @opindex sectcreate
10984 @opindex sectobjectsymbols
10985 @opindex sectorder
10986 @opindex segaddr
10987 @opindex segs_read_only_addr
10988 @opindex segs_read_write_addr
10989 @opindex seg_addr_table
10990 @opindex seg_addr_table_filename
10991 @opindex seglinkedit
10992 @opindex segprot
10993 @opindex segs_read_only_addr
10994 @opindex segs_read_write_addr
10995 @opindex single_module
10996 @opindex static
10997 @opindex sub_library
10998 @opindex sub_umbrella
10999 @opindex twolevel_namespace
11000 @opindex umbrella
11001 @opindex undefined
11002 @opindex unexported_symbols_list
11003 @opindex weak_reference_mismatches
11004 @opindex whatsloaded
11005 These options are passed to the Darwin linker.  The Darwin linker man page
11006 describes them in detail.
11007 @end table
11008
11009 @node DEC Alpha Options
11010 @subsection DEC Alpha Options
11011
11012 These @samp{-m} options are defined for the DEC Alpha implementations:
11013
11014 @table @gcctabopt
11015 @item -mno-soft-float
11016 @itemx -msoft-float
11017 @opindex mno-soft-float
11018 @opindex msoft-float
11019 Use (do not use) the hardware floating-point instructions for
11020 floating-point operations.  When @option{-msoft-float} is specified,
11021 functions in @file{libgcc.a} will be used to perform floating-point
11022 operations.  Unless they are replaced by routines that emulate the
11023 floating-point operations, or compiled in such a way as to call such
11024 emulations routines, these routines will issue floating-point
11025 operations.   If you are compiling for an Alpha without floating-point
11026 operations, you must ensure that the library is built so as not to call
11027 them.
11028
11029 Note that Alpha implementations without floating-point operations are
11030 required to have floating-point registers.
11031
11032 @item -mfp-reg
11033 @itemx -mno-fp-regs
11034 @opindex mfp-reg
11035 @opindex mno-fp-regs
11036 Generate code that uses (does not use) the floating-point register set.
11037 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
11038 register set is not used, floating point operands are passed in integer
11039 registers as if they were integers and floating-point results are passed
11040 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
11041 so any function with a floating-point argument or return value called by code
11042 compiled with @option{-mno-fp-regs} must also be compiled with that
11043 option.
11044
11045 A typical use of this option is building a kernel that does not use,
11046 and hence need not save and restore, any floating-point registers.
11047
11048 @item -mieee
11049 @opindex mieee
11050 The Alpha architecture implements floating-point hardware optimized for
11051 maximum performance.  It is mostly compliant with the IEEE floating
11052 point standard.  However, for full compliance, software assistance is
11053 required.  This option generates code fully IEEE compliant code
11054 @emph{except} that the @var{inexact-flag} is not maintained (see below).
11055 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
11056 defined during compilation.  The resulting code is less efficient but is
11057 able to correctly support denormalized numbers and exceptional IEEE
11058 values such as not-a-number and plus/minus infinity.  Other Alpha
11059 compilers call this option @option{-ieee_with_no_inexact}.
11060
11061 @item -mieee-with-inexact
11062 @opindex mieee-with-inexact
11063 This is like @option{-mieee} except the generated code also maintains
11064 the IEEE @var{inexact-flag}.  Turning on this option causes the
11065 generated code to implement fully-compliant IEEE math.  In addition to
11066 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
11067 macro.  On some Alpha implementations the resulting code may execute
11068 significantly slower than the code generated by default.  Since there is
11069 very little code that depends on the @var{inexact-flag}, you should
11070 normally not specify this option.  Other Alpha compilers call this
11071 option @option{-ieee_with_inexact}.
11072
11073 @item -mfp-trap-mode=@var{trap-mode}
11074 @opindex mfp-trap-mode
11075 This option controls what floating-point related traps are enabled.
11076 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
11077 The trap mode can be set to one of four values:
11078
11079 @table @samp
11080 @item n
11081 This is the default (normal) setting.  The only traps that are enabled
11082 are the ones that cannot be disabled in software (e.g., division by zero
11083 trap).
11084
11085 @item u
11086 In addition to the traps enabled by @samp{n}, underflow traps are enabled
11087 as well.
11088
11089 @item su
11090 Like @samp{u}, but the instructions are marked to be safe for software
11091 completion (see Alpha architecture manual for details).
11092
11093 @item sui
11094 Like @samp{su}, but inexact traps are enabled as well.
11095 @end table
11096
11097 @item -mfp-rounding-mode=@var{rounding-mode}
11098 @opindex mfp-rounding-mode
11099 Selects the IEEE rounding mode.  Other Alpha compilers call this option
11100 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
11101 of:
11102
11103 @table @samp
11104 @item n
11105 Normal IEEE rounding mode.  Floating point numbers are rounded towards
11106 the nearest machine number or towards the even machine number in case
11107 of a tie.
11108
11109 @item m
11110 Round towards minus infinity.
11111
11112 @item c
11113 Chopped rounding mode.  Floating point numbers are rounded towards zero.
11114
11115 @item d
11116 Dynamic rounding mode.  A field in the floating point control register
11117 (@var{fpcr}, see Alpha architecture reference manual) controls the
11118 rounding mode in effect.  The C library initializes this register for
11119 rounding towards plus infinity.  Thus, unless your program modifies the
11120 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
11121 @end table
11122
11123 @item -mtrap-precision=@var{trap-precision}
11124 @opindex mtrap-precision
11125 In the Alpha architecture, floating point traps are imprecise.  This
11126 means without software assistance it is impossible to recover from a
11127 floating trap and program execution normally needs to be terminated.
11128 GCC can generate code that can assist operating system trap handlers
11129 in determining the exact location that caused a floating point trap.
11130 Depending on the requirements of an application, different levels of
11131 precisions can be selected:
11132
11133 @table @samp
11134 @item p
11135 Program precision.  This option is the default and means a trap handler
11136 can only identify which program caused a floating point exception.
11137
11138 @item f
11139 Function precision.  The trap handler can determine the function that
11140 caused a floating point exception.
11141
11142 @item i
11143 Instruction precision.  The trap handler can determine the exact
11144 instruction that caused a floating point exception.
11145 @end table
11146
11147 Other Alpha compilers provide the equivalent options called
11148 @option{-scope_safe} and @option{-resumption_safe}.
11149
11150 @item -mieee-conformant
11151 @opindex mieee-conformant
11152 This option marks the generated code as IEEE conformant.  You must not
11153 use this option unless you also specify @option{-mtrap-precision=i} and either
11154 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
11155 is to emit the line @samp{.eflag 48} in the function prologue of the
11156 generated assembly file.  Under DEC Unix, this has the effect that
11157 IEEE-conformant math library routines will be linked in.
11158
11159 @item -mbuild-constants
11160 @opindex mbuild-constants
11161 Normally GCC examines a 32- or 64-bit integer constant to
11162 see if it can construct it from smaller constants in two or three
11163 instructions.  If it cannot, it will output the constant as a literal and
11164 generate code to load it from the data segment at runtime.
11165
11166 Use this option to require GCC to construct @emph{all} integer constants
11167 using code, even if it takes more instructions (the maximum is six).
11168
11169 You would typically use this option to build a shared library dynamic
11170 loader.  Itself a shared library, it must relocate itself in memory
11171 before it can find the variables and constants in its own data segment.
11172
11173 @item -malpha-as
11174 @itemx -mgas
11175 @opindex malpha-as
11176 @opindex mgas
11177 Select whether to generate code to be assembled by the vendor-supplied
11178 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
11179
11180 @item -mbwx
11181 @itemx -mno-bwx
11182 @itemx -mcix
11183 @itemx -mno-cix
11184 @itemx -mfix
11185 @itemx -mno-fix
11186 @itemx -mmax
11187 @itemx -mno-max
11188 @opindex mbwx
11189 @opindex mno-bwx
11190 @opindex mcix
11191 @opindex mno-cix
11192 @opindex mfix
11193 @opindex mno-fix
11194 @opindex mmax
11195 @opindex mno-max
11196 Indicate whether GCC should generate code to use the optional BWX,
11197 CIX, FIX and MAX instruction sets.  The default is to use the instruction
11198 sets supported by the CPU type specified via @option{-mcpu=} option or that
11199 of the CPU on which GCC was built if none was specified.
11200
11201 @item -mfloat-vax
11202 @itemx -mfloat-ieee
11203 @opindex mfloat-vax
11204 @opindex mfloat-ieee
11205 Generate code that uses (does not use) VAX F and G floating point
11206 arithmetic instead of IEEE single and double precision.
11207
11208 @item -mexplicit-relocs
11209 @itemx -mno-explicit-relocs
11210 @opindex mexplicit-relocs
11211 @opindex mno-explicit-relocs
11212 Older Alpha assemblers provided no way to generate symbol relocations
11213 except via assembler macros.  Use of these macros does not allow
11214 optimal instruction scheduling.  GNU binutils as of version 2.12
11215 supports a new syntax that allows the compiler to explicitly mark
11216 which relocations should apply to which instructions.  This option
11217 is mostly useful for debugging, as GCC detects the capabilities of
11218 the assembler when it is built and sets the default accordingly.
11219
11220 @item -msmall-data
11221 @itemx -mlarge-data
11222 @opindex msmall-data
11223 @opindex mlarge-data
11224 When @option{-mexplicit-relocs} is in effect, static data is
11225 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
11226 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
11227 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
11228 16-bit relocations off of the @code{$gp} register.  This limits the
11229 size of the small data area to 64KB, but allows the variables to be
11230 directly accessed via a single instruction.
11231
11232 The default is @option{-mlarge-data}.  With this option the data area
11233 is limited to just below 2GB@.  Programs that require more than 2GB of
11234 data must use @code{malloc} or @code{mmap} to allocate the data in the
11235 heap instead of in the program's data segment.
11236
11237 When generating code for shared libraries, @option{-fpic} implies
11238 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
11239
11240 @item -msmall-text
11241 @itemx -mlarge-text
11242 @opindex msmall-text
11243 @opindex mlarge-text
11244 When @option{-msmall-text} is used, the compiler assumes that the
11245 code of the entire program (or shared library) fits in 4MB, and is
11246 thus reachable with a branch instruction.  When @option{-msmall-data}
11247 is used, the compiler can assume that all local symbols share the
11248 same @code{$gp} value, and thus reduce the number of instructions
11249 required for a function call from 4 to 1.
11250
11251 The default is @option{-mlarge-text}.
11252
11253 @item -mcpu=@var{cpu_type}
11254 @opindex mcpu
11255 Set the instruction set and instruction scheduling parameters for
11256 machine type @var{cpu_type}.  You can specify either the @samp{EV}
11257 style name or the corresponding chip number.  GCC supports scheduling
11258 parameters for the EV4, EV5 and EV6 family of processors and will
11259 choose the default values for the instruction set from the processor
11260 you specify.  If you do not specify a processor type, GCC will default
11261 to the processor on which the compiler was built.
11262
11263 Supported values for @var{cpu_type} are
11264
11265 @table @samp
11266 @item ev4
11267 @itemx ev45
11268 @itemx 21064
11269 Schedules as an EV4 and has no instruction set extensions.
11270
11271 @item ev5
11272 @itemx 21164
11273 Schedules as an EV5 and has no instruction set extensions.
11274
11275 @item ev56
11276 @itemx 21164a
11277 Schedules as an EV5 and supports the BWX extension.
11278
11279 @item pca56
11280 @itemx 21164pc
11281 @itemx 21164PC
11282 Schedules as an EV5 and supports the BWX and MAX extensions.
11283
11284 @item ev6
11285 @itemx 21264
11286 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
11287
11288 @item ev67
11289 @itemx 21264a
11290 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
11291 @end table
11292
11293 Native Linux/GNU toolchains also support the value @samp{native},
11294 which selects the best architecture option for the host processor.
11295 @option{-mcpu=native} has no effect if GCC does not recognize
11296 the processor.
11297
11298 @item -mtune=@var{cpu_type}
11299 @opindex mtune
11300 Set only the instruction scheduling parameters for machine type
11301 @var{cpu_type}.  The instruction set is not changed.
11302
11303 Native Linux/GNU toolchains also support the value @samp{native},
11304 which selects the best architecture option for the host processor.
11305 @option{-mtune=native} has no effect if GCC does not recognize
11306 the processor.
11307
11308 @item -mmemory-latency=@var{time}
11309 @opindex mmemory-latency
11310 Sets the latency the scheduler should assume for typical memory
11311 references as seen by the application.  This number is highly
11312 dependent on the memory access patterns used by the application
11313 and the size of the external cache on the machine.
11314
11315 Valid options for @var{time} are
11316
11317 @table @samp
11318 @item @var{number}
11319 A decimal number representing clock cycles.
11320
11321 @item L1
11322 @itemx L2
11323 @itemx L3
11324 @itemx main
11325 The compiler contains estimates of the number of clock cycles for
11326 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
11327 (also called Dcache, Scache, and Bcache), as well as to main memory.
11328 Note that L3 is only valid for EV5.
11329
11330 @end table
11331 @end table
11332
11333 @node DEC Alpha/VMS Options
11334 @subsection DEC Alpha/VMS Options
11335
11336 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
11337
11338 @table @gcctabopt
11339 @item -mvms-return-codes
11340 @opindex mvms-return-codes
11341 Return VMS condition codes from main.  The default is to return POSIX
11342 style condition (e.g.@: error) codes.
11343
11344 @item -mdebug-main=@var{prefix}
11345 @opindex mdebug-main=@var{prefix}
11346 Flag the first routine whose name starts with @var{prefix} as the main
11347 routine for the debugger.
11348
11349 @item -mmalloc64
11350 @opindex mmalloc64
11351 Default to 64bit memory allocation routines.
11352 @end table
11353
11354 @node FR30 Options
11355 @subsection FR30 Options
11356 @cindex FR30 Options
11357
11358 These options are defined specifically for the FR30 port.
11359
11360 @table @gcctabopt
11361
11362 @item -msmall-model
11363 @opindex msmall-model
11364 Use the small address space model.  This can produce smaller code, but
11365 it does assume that all symbolic values and addresses will fit into a
11366 20-bit range.
11367
11368 @item -mno-lsim
11369 @opindex mno-lsim
11370 Assume that run-time support has been provided and so there is no need
11371 to include the simulator library (@file{libsim.a}) on the linker
11372 command line.
11373
11374 @end table
11375
11376 @node FRV Options
11377 @subsection FRV Options
11378 @cindex FRV Options
11379
11380 @table @gcctabopt
11381 @item -mgpr-32
11382 @opindex mgpr-32
11383
11384 Only use the first 32 general purpose registers.
11385
11386 @item -mgpr-64
11387 @opindex mgpr-64
11388
11389 Use all 64 general purpose registers.
11390
11391 @item -mfpr-32
11392 @opindex mfpr-32
11393
11394 Use only the first 32 floating point registers.
11395
11396 @item -mfpr-64
11397 @opindex mfpr-64
11398
11399 Use all 64 floating point registers
11400
11401 @item -mhard-float
11402 @opindex mhard-float
11403
11404 Use hardware instructions for floating point operations.
11405
11406 @item -msoft-float
11407 @opindex msoft-float
11408
11409 Use library routines for floating point operations.
11410
11411 @item -malloc-cc
11412 @opindex malloc-cc
11413
11414 Dynamically allocate condition code registers.
11415
11416 @item -mfixed-cc
11417 @opindex mfixed-cc
11418
11419 Do not try to dynamically allocate condition code registers, only
11420 use @code{icc0} and @code{fcc0}.
11421
11422 @item -mdword
11423 @opindex mdword
11424
11425 Change ABI to use double word insns.
11426
11427 @item -mno-dword
11428 @opindex mno-dword
11429
11430 Do not use double word instructions.
11431
11432 @item -mdouble
11433 @opindex mdouble
11434
11435 Use floating point double instructions.
11436
11437 @item -mno-double
11438 @opindex mno-double
11439
11440 Do not use floating point double instructions.
11441
11442 @item -mmedia
11443 @opindex mmedia
11444
11445 Use media instructions.
11446
11447 @item -mno-media
11448 @opindex mno-media
11449
11450 Do not use media instructions.
11451
11452 @item -mmuladd
11453 @opindex mmuladd
11454
11455 Use multiply and add/subtract instructions.
11456
11457 @item -mno-muladd
11458 @opindex mno-muladd
11459
11460 Do not use multiply and add/subtract instructions.
11461
11462 @item -mfdpic
11463 @opindex mfdpic
11464
11465 Select the FDPIC ABI, that uses function descriptors to represent
11466 pointers to functions.  Without any PIC/PIE-related options, it
11467 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
11468 assumes GOT entries and small data are within a 12-bit range from the
11469 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
11470 are computed with 32 bits.
11471 With a @samp{bfin-elf} target, this option implies @option{-msim}.
11472
11473 @item -minline-plt
11474 @opindex minline-plt
11475
11476 Enable inlining of PLT entries in function calls to functions that are
11477 not known to bind locally.  It has no effect without @option{-mfdpic}.
11478 It's enabled by default if optimizing for speed and compiling for
11479 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
11480 optimization option such as @option{-O3} or above is present in the
11481 command line.
11482
11483 @item -mTLS
11484 @opindex mTLS
11485
11486 Assume a large TLS segment when generating thread-local code.
11487
11488 @item -mtls
11489 @opindex mtls
11490
11491 Do not assume a large TLS segment when generating thread-local code.
11492
11493 @item -mgprel-ro
11494 @opindex mgprel-ro
11495
11496 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
11497 that is known to be in read-only sections.  It's enabled by default,
11498 except for @option{-fpic} or @option{-fpie}: even though it may help
11499 make the global offset table smaller, it trades 1 instruction for 4.
11500 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
11501 one of which may be shared by multiple symbols, and it avoids the need
11502 for a GOT entry for the referenced symbol, so it's more likely to be a
11503 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
11504
11505 @item -multilib-library-pic
11506 @opindex multilib-library-pic
11507
11508 Link with the (library, not FD) pic libraries.  It's implied by
11509 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
11510 @option{-fpic} without @option{-mfdpic}.  You should never have to use
11511 it explicitly.
11512
11513 @item -mlinked-fp
11514 @opindex mlinked-fp
11515
11516 Follow the EABI requirement of always creating a frame pointer whenever
11517 a stack frame is allocated.  This option is enabled by default and can
11518 be disabled with @option{-mno-linked-fp}.
11519
11520 @item -mlong-calls
11521 @opindex mlong-calls
11522
11523 Use indirect addressing to call functions outside the current
11524 compilation unit.  This allows the functions to be placed anywhere
11525 within the 32-bit address space.
11526
11527 @item -malign-labels
11528 @opindex malign-labels
11529
11530 Try to align labels to an 8-byte boundary by inserting nops into the
11531 previous packet.  This option only has an effect when VLIW packing
11532 is enabled.  It doesn't create new packets; it merely adds nops to
11533 existing ones.
11534
11535 @item -mlibrary-pic
11536 @opindex mlibrary-pic
11537
11538 Generate position-independent EABI code.
11539
11540 @item -macc-4
11541 @opindex macc-4
11542
11543 Use only the first four media accumulator registers.
11544
11545 @item -macc-8
11546 @opindex macc-8
11547
11548 Use all eight media accumulator registers.
11549
11550 @item -mpack
11551 @opindex mpack
11552
11553 Pack VLIW instructions.
11554
11555 @item -mno-pack
11556 @opindex mno-pack
11557
11558 Do not pack VLIW instructions.
11559
11560 @item -mno-eflags
11561 @opindex mno-eflags
11562
11563 Do not mark ABI switches in e_flags.
11564
11565 @item -mcond-move
11566 @opindex mcond-move
11567
11568 Enable the use of conditional-move instructions (default).
11569
11570 This switch is mainly for debugging the compiler and will likely be removed
11571 in a future version.
11572
11573 @item -mno-cond-move
11574 @opindex mno-cond-move
11575
11576 Disable the use of conditional-move instructions.
11577
11578 This switch is mainly for debugging the compiler and will likely be removed
11579 in a future version.
11580
11581 @item -mscc
11582 @opindex mscc
11583
11584 Enable the use of conditional set instructions (default).
11585
11586 This switch is mainly for debugging the compiler and will likely be removed
11587 in a future version.
11588
11589 @item -mno-scc
11590 @opindex mno-scc
11591
11592 Disable the use of conditional set instructions.
11593
11594 This switch is mainly for debugging the compiler and will likely be removed
11595 in a future version.
11596
11597 @item -mcond-exec
11598 @opindex mcond-exec
11599
11600 Enable the use of conditional execution (default).
11601
11602 This switch is mainly for debugging the compiler and will likely be removed
11603 in a future version.
11604
11605 @item -mno-cond-exec
11606 @opindex mno-cond-exec
11607
11608 Disable the use of conditional execution.
11609
11610 This switch is mainly for debugging the compiler and will likely be removed
11611 in a future version.
11612
11613 @item -mvliw-branch
11614 @opindex mvliw-branch
11615
11616 Run a pass to pack branches into VLIW instructions (default).
11617
11618 This switch is mainly for debugging the compiler and will likely be removed
11619 in a future version.
11620
11621 @item -mno-vliw-branch
11622 @opindex mno-vliw-branch
11623
11624 Do not run a pass to pack branches into VLIW instructions.
11625
11626 This switch is mainly for debugging the compiler and will likely be removed
11627 in a future version.
11628
11629 @item -mmulti-cond-exec
11630 @opindex mmulti-cond-exec
11631
11632 Enable optimization of @code{&&} and @code{||} in conditional execution
11633 (default).
11634
11635 This switch is mainly for debugging the compiler and will likely be removed
11636 in a future version.
11637
11638 @item -mno-multi-cond-exec
11639 @opindex mno-multi-cond-exec
11640
11641 Disable optimization of @code{&&} and @code{||} in conditional execution.
11642
11643 This switch is mainly for debugging the compiler and will likely be removed
11644 in a future version.
11645
11646 @item -mnested-cond-exec
11647 @opindex mnested-cond-exec
11648
11649 Enable nested conditional execution optimizations (default).
11650
11651 This switch is mainly for debugging the compiler and will likely be removed
11652 in a future version.
11653
11654 @item -mno-nested-cond-exec
11655 @opindex mno-nested-cond-exec
11656
11657 Disable nested conditional execution optimizations.
11658
11659 This switch is mainly for debugging the compiler and will likely be removed
11660 in a future version.
11661
11662 @item -moptimize-membar
11663 @opindex moptimize-membar
11664
11665 This switch removes redundant @code{membar} instructions from the
11666 compiler generated code.  It is enabled by default.
11667
11668 @item -mno-optimize-membar
11669 @opindex mno-optimize-membar
11670
11671 This switch disables the automatic removal of redundant @code{membar}
11672 instructions from the generated code.
11673
11674 @item -mtomcat-stats
11675 @opindex mtomcat-stats
11676
11677 Cause gas to print out tomcat statistics.
11678
11679 @item -mcpu=@var{cpu}
11680 @opindex mcpu
11681
11682 Select the processor type for which to generate code.  Possible values are
11683 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
11684 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
11685
11686 @end table
11687
11688 @node GNU/Linux Options
11689 @subsection GNU/Linux Options
11690
11691 These @samp{-m} options are defined for GNU/Linux targets:
11692
11693 @table @gcctabopt
11694 @item -mglibc
11695 @opindex mglibc
11696 Use the GNU C library.  This is the default except
11697 on @samp{*-*-linux-*uclibc*} and @samp{*-*-linux-*android*} targets.
11698
11699 @item -muclibc
11700 @opindex muclibc
11701 Use uClibc C library.  This is the default on
11702 @samp{*-*-linux-*uclibc*} targets.
11703
11704 @item -mbionic
11705 @opindex mbionic
11706 Use Bionic C library.  This is the default on
11707 @samp{*-*-linux-*android*} targets.
11708
11709 @item -mandroid
11710 @opindex mandroid
11711 Compile code compatible with Android platform.  This is the default on
11712 @samp{*-*-linux-*android*} targets.
11713
11714 When compiling, this option enables @option{-mbionic}, @option{-fPIC},
11715 @option{-fno-exceptions} and @option{-fno-rtti} by default.  When linking,
11716 this option makes the GCC driver pass Android-specific options to the linker.
11717 Finally, this option causes the preprocessor macro @code{__ANDROID__}
11718 to be defined.
11719
11720 @item -tno-android-cc
11721 @opindex tno-android-cc
11722 Disable compilation effects of @option{-mandroid}, i.e., do not enable
11723 @option{-mbionic}, @option{-fPIC}, @option{-fno-exceptions} and
11724 @option{-fno-rtti} by default.
11725
11726 @item -tno-android-ld
11727 @opindex tno-android-ld
11728 Disable linking effects of @option{-mandroid}, i.e., pass standard Linux
11729 linking options to the linker.
11730
11731 @end table
11732
11733 @node H8/300 Options
11734 @subsection H8/300 Options
11735
11736 These @samp{-m} options are defined for the H8/300 implementations:
11737
11738 @table @gcctabopt
11739 @item -mrelax
11740 @opindex mrelax
11741 Shorten some address references at link time, when possible; uses the
11742 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
11743 ld, Using ld}, for a fuller description.
11744
11745 @item -mh
11746 @opindex mh
11747 Generate code for the H8/300H@.
11748
11749 @item -ms
11750 @opindex ms
11751 Generate code for the H8S@.
11752
11753 @item -mn
11754 @opindex mn
11755 Generate code for the H8S and H8/300H in the normal mode.  This switch
11756 must be used either with @option{-mh} or @option{-ms}.
11757
11758 @item -ms2600
11759 @opindex ms2600
11760 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
11761
11762 @item -mint32
11763 @opindex mint32
11764 Make @code{int} data 32 bits by default.
11765
11766 @item -malign-300
11767 @opindex malign-300
11768 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
11769 The default for the H8/300H and H8S is to align longs and floats on 4
11770 byte boundaries.
11771 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
11772 This option has no effect on the H8/300.
11773 @end table
11774
11775 @node HPPA Options
11776 @subsection HPPA Options
11777 @cindex HPPA Options
11778
11779 These @samp{-m} options are defined for the HPPA family of computers:
11780
11781 @table @gcctabopt
11782 @item -march=@var{architecture-type}
11783 @opindex march
11784 Generate code for the specified architecture.  The choices for
11785 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
11786 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
11787 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
11788 architecture option for your machine.  Code compiled for lower numbered
11789 architectures will run on higher numbered architectures, but not the
11790 other way around.
11791
11792 @item -mpa-risc-1-0
11793 @itemx -mpa-risc-1-1
11794 @itemx -mpa-risc-2-0
11795 @opindex mpa-risc-1-0
11796 @opindex mpa-risc-1-1
11797 @opindex mpa-risc-2-0
11798 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
11799
11800 @item -mbig-switch
11801 @opindex mbig-switch
11802 Generate code suitable for big switch tables.  Use this option only if
11803 the assembler/linker complain about out of range branches within a switch
11804 table.
11805
11806 @item -mjump-in-delay
11807 @opindex mjump-in-delay
11808 Fill delay slots of function calls with unconditional jump instructions
11809 by modifying the return pointer for the function call to be the target
11810 of the conditional jump.
11811
11812 @item -mdisable-fpregs
11813 @opindex mdisable-fpregs
11814 Prevent floating point registers from being used in any manner.  This is
11815 necessary for compiling kernels which perform lazy context switching of
11816 floating point registers.  If you use this option and attempt to perform
11817 floating point operations, the compiler will abort.
11818
11819 @item -mdisable-indexing
11820 @opindex mdisable-indexing
11821 Prevent the compiler from using indexing address modes.  This avoids some
11822 rather obscure problems when compiling MIG generated code under MACH@.
11823
11824 @item -mno-space-regs
11825 @opindex mno-space-regs
11826 Generate code that assumes the target has no space registers.  This allows
11827 GCC to generate faster indirect calls and use unscaled index address modes.
11828
11829 Such code is suitable for level 0 PA systems and kernels.
11830
11831 @item -mfast-indirect-calls
11832 @opindex mfast-indirect-calls
11833 Generate code that assumes calls never cross space boundaries.  This
11834 allows GCC to emit code which performs faster indirect calls.
11835
11836 This option will not work in the presence of shared libraries or nested
11837 functions.
11838
11839 @item -mfixed-range=@var{register-range}
11840 @opindex mfixed-range
11841 Generate code treating the given register range as fixed registers.
11842 A fixed register is one that the register allocator can not use.  This is
11843 useful when compiling kernel code.  A register range is specified as
11844 two registers separated by a dash.  Multiple register ranges can be
11845 specified separated by a comma.
11846
11847 @item -mlong-load-store
11848 @opindex mlong-load-store
11849 Generate 3-instruction load and store sequences as sometimes required by
11850 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
11851 the HP compilers.
11852
11853 @item -mportable-runtime
11854 @opindex mportable-runtime
11855 Use the portable calling conventions proposed by HP for ELF systems.
11856
11857 @item -mgas
11858 @opindex mgas
11859 Enable the use of assembler directives only GAS understands.
11860
11861 @item -mschedule=@var{cpu-type}
11862 @opindex mschedule
11863 Schedule code according to the constraints for the machine type
11864 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
11865 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
11866 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
11867 proper scheduling option for your machine.  The default scheduling is
11868 @samp{8000}.
11869
11870 @item -mlinker-opt
11871 @opindex mlinker-opt
11872 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
11873 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
11874 linkers in which they give bogus error messages when linking some programs.
11875
11876 @item -msoft-float
11877 @opindex msoft-float
11878 Generate output containing library calls for floating point.
11879 @strong{Warning:} the requisite libraries are not available for all HPPA
11880 targets.  Normally the facilities of the machine's usual C compiler are
11881 used, but this cannot be done directly in cross-compilation.  You must make
11882 your own arrangements to provide suitable library functions for
11883 cross-compilation.
11884
11885 @option{-msoft-float} changes the calling convention in the output file;
11886 therefore, it is only useful if you compile @emph{all} of a program with
11887 this option.  In particular, you need to compile @file{libgcc.a}, the
11888 library that comes with GCC, with @option{-msoft-float} in order for
11889 this to work.
11890
11891 @item -msio
11892 @opindex msio
11893 Generate the predefine, @code{_SIO}, for server IO@.  The default is
11894 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
11895 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
11896 options are available under HP-UX and HI-UX@.
11897
11898 @item -mgnu-ld
11899 @opindex mgnu-ld
11900 Use GNU ld specific options.  This passes @option{-shared} to ld when
11901 building a shared library.  It is the default when GCC is configured,
11902 explicitly or implicitly, with the GNU linker.  This option does not
11903 have any affect on which ld is called, it only changes what parameters
11904 are passed to that ld.  The ld that is called is determined by the
11905 @option{--with-ld} configure option, GCC's program search path, and
11906 finally by the user's @env{PATH}.  The linker used by GCC can be printed
11907 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
11908 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11909
11910 @item -mhp-ld
11911 @opindex mhp-ld
11912 Use HP ld specific options.  This passes @option{-b} to ld when building
11913 a shared library and passes @option{+Accept TypeMismatch} to ld on all
11914 links.  It is the default when GCC is configured, explicitly or
11915 implicitly, with the HP linker.  This option does not have any affect on
11916 which ld is called, it only changes what parameters are passed to that
11917 ld.  The ld that is called is determined by the @option{--with-ld}
11918 configure option, GCC's program search path, and finally by the user's
11919 @env{PATH}.  The linker used by GCC can be printed using @samp{which
11920 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
11921 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11922
11923 @item -mlong-calls
11924 @opindex mno-long-calls
11925 Generate code that uses long call sequences.  This ensures that a call
11926 is always able to reach linker generated stubs.  The default is to generate
11927 long calls only when the distance from the call site to the beginning
11928 of the function or translation unit, as the case may be, exceeds a
11929 predefined limit set by the branch type being used.  The limits for
11930 normal calls are 7,600,000 and 240,000 bytes, respectively for the
11931 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
11932 240,000 bytes.
11933
11934 Distances are measured from the beginning of functions when using the
11935 @option{-ffunction-sections} option, or when using the @option{-mgas}
11936 and @option{-mno-portable-runtime} options together under HP-UX with
11937 the SOM linker.
11938
11939 It is normally not desirable to use this option as it will degrade
11940 performance.  However, it may be useful in large applications,
11941 particularly when partial linking is used to build the application.
11942
11943 The types of long calls used depends on the capabilities of the
11944 assembler and linker, and the type of code being generated.  The
11945 impact on systems that support long absolute calls, and long pic
11946 symbol-difference or pc-relative calls should be relatively small.
11947 However, an indirect call is used on 32-bit ELF systems in pic code
11948 and it is quite long.
11949
11950 @item -munix=@var{unix-std}
11951 @opindex march
11952 Generate compiler predefines and select a startfile for the specified
11953 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
11954 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
11955 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
11956 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
11957 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
11958 and later.
11959
11960 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
11961 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
11962 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
11963 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
11964 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
11965 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
11966
11967 It is @emph{important} to note that this option changes the interfaces
11968 for various library routines.  It also affects the operational behavior
11969 of the C library.  Thus, @emph{extreme} care is needed in using this
11970 option.
11971
11972 Library code that is intended to operate with more than one UNIX
11973 standard must test, set and restore the variable @var{__xpg4_extended_mask}
11974 as appropriate.  Most GNU software doesn't provide this capability.
11975
11976 @item -nolibdld
11977 @opindex nolibdld
11978 Suppress the generation of link options to search libdld.sl when the
11979 @option{-static} option is specified on HP-UX 10 and later.
11980
11981 @item -static
11982 @opindex static
11983 The HP-UX implementation of setlocale in libc has a dependency on
11984 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
11985 when the @option{-static} option is specified, special link options
11986 are needed to resolve this dependency.
11987
11988 On HP-UX 10 and later, the GCC driver adds the necessary options to
11989 link with libdld.sl when the @option{-static} option is specified.
11990 This causes the resulting binary to be dynamic.  On the 64-bit port,
11991 the linkers generate dynamic binaries by default in any case.  The
11992 @option{-nolibdld} option can be used to prevent the GCC driver from
11993 adding these link options.
11994
11995 @item -threads
11996 @opindex threads
11997 Add support for multithreading with the @dfn{dce thread} library
11998 under HP-UX@.  This option sets flags for both the preprocessor and
11999 linker.
12000 @end table
12001
12002 @node i386 and x86-64 Options
12003 @subsection Intel 386 and AMD x86-64 Options
12004 @cindex i386 Options
12005 @cindex x86-64 Options
12006 @cindex Intel 386 Options
12007 @cindex AMD x86-64 Options
12008
12009 These @samp{-m} options are defined for the i386 and x86-64 family of
12010 computers:
12011
12012 @table @gcctabopt
12013 @item -mtune=@var{cpu-type}
12014 @opindex mtune
12015 Tune to @var{cpu-type} everything applicable about the generated code, except
12016 for the ABI and the set of available instructions.  The choices for
12017 @var{cpu-type} are:
12018 @table @emph
12019 @item generic
12020 Produce code optimized for the most common IA32/@/AMD64/@/EM64T processors.
12021 If you know the CPU on which your code will run, then you should use
12022 the corresponding @option{-mtune} option instead of
12023 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
12024 of your application will have, then you should use this option.
12025
12026 As new processors are deployed in the marketplace, the behavior of this
12027 option will change.  Therefore, if you upgrade to a newer version of
12028 GCC, the code generated option will change to reflect the processors
12029 that were most common when that version of GCC was released.
12030
12031 There is no @option{-march=generic} option because @option{-march}
12032 indicates the instruction set the compiler can use, and there is no
12033 generic instruction set applicable to all processors.  In contrast,
12034 @option{-mtune} indicates the processor (or, in this case, collection of
12035 processors) for which the code is optimized.
12036 @item native
12037 This selects the CPU to tune for at compilation time by determining
12038 the processor type of the compiling machine.  Using @option{-mtune=native}
12039 will produce code optimized for the local machine under the constraints
12040 of the selected instruction set.  Using @option{-march=native} will
12041 enable all instruction subsets supported by the local machine (hence
12042 the result might not run on different machines).
12043 @item i386
12044 Original Intel's i386 CPU@.
12045 @item i486
12046 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
12047 @item i586, pentium
12048 Intel Pentium CPU with no MMX support.
12049 @item pentium-mmx
12050 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
12051 @item pentiumpro
12052 Intel PentiumPro CPU@.
12053 @item i686
12054 Same as @code{generic}, but when used as @code{march} option, PentiumPro
12055 instruction set will be used, so the code will run on all i686 family chips.
12056 @item pentium2
12057 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
12058 @item pentium3, pentium3m
12059 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
12060 support.
12061 @item pentium-m
12062 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
12063 support.  Used by Centrino notebooks.
12064 @item pentium4, pentium4m
12065 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
12066 @item prescott
12067 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
12068 set support.
12069 @item nocona
12070 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
12071 SSE2 and SSE3 instruction set support.
12072 @item core2
12073 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12074 instruction set support.
12075 @item corei7
12076 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
12077 and SSE4.2 instruction set support.
12078 @item corei7-avx
12079 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
12080 SSE4.1, SSE4.2, AVX, AES and PCLMUL instruction set support.
12081 @item atom
12082 Intel Atom CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12083 instruction set support.
12084 @item k6
12085 AMD K6 CPU with MMX instruction set support.
12086 @item k6-2, k6-3
12087 Improved versions of AMD K6 CPU with MMX and 3DNow!@: instruction set support.
12088 @item athlon, athlon-tbird
12089 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3DNow!@: and SSE prefetch instructions
12090 support.
12091 @item athlon-4, athlon-xp, athlon-mp
12092 Improved AMD Athlon CPU with MMX, 3DNow!, enhanced 3DNow!@: and full SSE
12093 instruction set support.
12094 @item k8, opteron, athlon64, athlon-fx
12095 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
12096 MMX, SSE, SSE2, 3DNow!, enhanced 3DNow!@: and 64-bit instruction set extensions.)
12097 @item k8-sse3, opteron-sse3, athlon64-sse3
12098 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
12099 @item amdfam10, barcelona
12100 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
12101 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3DNow!, enhanced 3DNow!, ABM and 64-bit
12102 instruction set extensions.)
12103 @item winchip-c6
12104 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
12105 set support.
12106 @item winchip2
12107 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3DNow!@:
12108 instruction set support.
12109 @item c3
12110 Via C3 CPU with MMX and 3DNow!@: instruction set support.  (No scheduling is
12111 implemented for this chip.)
12112 @item c3-2
12113 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
12114 implemented for this chip.)
12115 @item geode
12116 Embedded AMD CPU with MMX and 3DNow!@: instruction set support.
12117 @end table
12118
12119 While picking a specific @var{cpu-type} will schedule things appropriately
12120 for that particular chip, the compiler will not generate any code that
12121 does not run on the i386 without the @option{-march=@var{cpu-type}} option
12122 being used.
12123
12124 @item -march=@var{cpu-type}
12125 @opindex march
12126 Generate instructions for the machine type @var{cpu-type}.  The choices
12127 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
12128 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
12129
12130 @item -mcpu=@var{cpu-type}
12131 @opindex mcpu
12132 A deprecated synonym for @option{-mtune}.
12133
12134 @item -mfpmath=@var{unit}
12135 @opindex mfpmath
12136 Generate floating point arithmetics for selected unit @var{unit}.  The choices
12137 for @var{unit} are:
12138
12139 @table @samp
12140 @item 387
12141 Use the standard 387 floating point coprocessor present majority of chips and
12142 emulated otherwise.  Code compiled with this option will run almost everywhere.
12143 The temporary results are computed in 80bit precision instead of precision
12144 specified by the type resulting in slightly different results compared to most
12145 of other chips.  See @option{-ffloat-store} for more detailed description.
12146
12147 This is the default choice for i386 compiler.
12148
12149 @item sse
12150 Use scalar floating point instructions present in the SSE instruction set.
12151 This instruction set is supported by Pentium3 and newer chips, in the AMD line
12152 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
12153 instruction set supports only single precision arithmetics, thus the double and
12154 extended precision arithmetics is still done using 387.  Later version, present
12155 only in Pentium4 and the future AMD x86-64 chips supports double precision
12156 arithmetics too.
12157
12158 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
12159 or @option{-msse2} switches to enable SSE extensions and make this option
12160 effective.  For the x86-64 compiler, these extensions are enabled by default.
12161
12162 The resulting code should be considerably faster in the majority of cases and avoid
12163 the numerical instability problems of 387 code, but may break some existing
12164 code that expects temporaries to be 80bit.
12165
12166 This is the default choice for the x86-64 compiler.
12167
12168 @item sse,387
12169 @itemx sse+387
12170 @itemx both
12171 Attempt to utilize both instruction sets at once.  This effectively double the
12172 amount of available registers and on chips with separate execution units for
12173 387 and SSE the execution resources too.  Use this option with care, as it is
12174 still experimental, because the GCC register allocator does not model separate
12175 functional units well resulting in instable performance.
12176 @end table
12177
12178 @item -masm=@var{dialect}
12179 @opindex masm=@var{dialect}
12180 Output asm instructions using selected @var{dialect}.  Supported
12181 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
12182 not support @samp{intel}.
12183
12184 @item -mieee-fp
12185 @itemx -mno-ieee-fp
12186 @opindex mieee-fp
12187 @opindex mno-ieee-fp
12188 Control whether or not the compiler uses IEEE floating point
12189 comparisons.  These handle correctly the case where the result of a
12190 comparison is unordered.
12191
12192 @item -msoft-float
12193 @opindex msoft-float
12194 Generate output containing library calls for floating point.
12195 @strong{Warning:} the requisite libraries are not part of GCC@.
12196 Normally the facilities of the machine's usual C compiler are used, but
12197 this can't be done directly in cross-compilation.  You must make your
12198 own arrangements to provide suitable library functions for
12199 cross-compilation.
12200
12201 On machines where a function returns floating point results in the 80387
12202 register stack, some floating point opcodes may be emitted even if
12203 @option{-msoft-float} is used.
12204
12205 @item -mno-fp-ret-in-387
12206 @opindex mno-fp-ret-in-387
12207 Do not use the FPU registers for return values of functions.
12208
12209 The usual calling convention has functions return values of types
12210 @code{float} and @code{double} in an FPU register, even if there
12211 is no FPU@.  The idea is that the operating system should emulate
12212 an FPU@.
12213
12214 The option @option{-mno-fp-ret-in-387} causes such values to be returned
12215 in ordinary CPU registers instead.
12216
12217 @item -mno-fancy-math-387
12218 @opindex mno-fancy-math-387
12219 Some 387 emulators do not support the @code{sin}, @code{cos} and
12220 @code{sqrt} instructions for the 387.  Specify this option to avoid
12221 generating those instructions.  This option is the default on FreeBSD,
12222 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
12223 indicates that the target CPU will always have an FPU and so the
12224 instruction will not need emulation.  As of revision 2.6.1, these
12225 instructions are not generated unless you also use the
12226 @option{-funsafe-math-optimizations} switch.
12227
12228 @item -malign-double
12229 @itemx -mno-align-double
12230 @opindex malign-double
12231 @opindex mno-align-double
12232 Control whether GCC aligns @code{double}, @code{long double}, and
12233 @code{long long} variables on a two word boundary or a one word
12234 boundary.  Aligning @code{double} variables on a two word boundary will
12235 produce code that runs somewhat faster on a @samp{Pentium} at the
12236 expense of more memory.
12237
12238 On x86-64, @option{-malign-double} is enabled by default.
12239
12240 @strong{Warning:} if you use the @option{-malign-double} switch,
12241 structures containing the above types will be aligned differently than
12242 the published application binary interface specifications for the 386
12243 and will not be binary compatible with structures in code compiled
12244 without that switch.
12245
12246 @item -m96bit-long-double
12247 @itemx -m128bit-long-double
12248 @opindex m96bit-long-double
12249 @opindex m128bit-long-double
12250 These switches control the size of @code{long double} type.  The i386
12251 application binary interface specifies the size to be 96 bits,
12252 so @option{-m96bit-long-double} is the default in 32 bit mode.
12253
12254 Modern architectures (Pentium and newer) would prefer @code{long double}
12255 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
12256 conforming to the ABI, this would not be possible.  So specifying a
12257 @option{-m128bit-long-double} will align @code{long double}
12258 to a 16 byte boundary by padding the @code{long double} with an additional
12259 32 bit zero.
12260
12261 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
12262 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
12263
12264 Notice that neither of these options enable any extra precision over the x87
12265 standard of 80 bits for a @code{long double}.
12266
12267 @strong{Warning:} if you override the default value for your target ABI, the
12268 structures and arrays containing @code{long double} variables will change
12269 their size as well as function calling convention for function taking
12270 @code{long double} will be modified.  Hence they will not be binary
12271 compatible with arrays or structures in code compiled without that switch.
12272
12273 @item -mlarge-data-threshold=@var{number}
12274 @opindex mlarge-data-threshold=@var{number}
12275 When @option{-mcmodel=medium} is specified, the data greater than
12276 @var{threshold} are placed in large data section.  This value must be the
12277 same across all object linked into the binary and defaults to 65535.
12278
12279 @item -mrtd
12280 @opindex mrtd
12281 Use a different function-calling convention, in which functions that
12282 take a fixed number of arguments return with the @code{ret} @var{num}
12283 instruction, which pops their arguments while returning.  This saves one
12284 instruction in the caller since there is no need to pop the arguments
12285 there.
12286
12287 You can specify that an individual function is called with this calling
12288 sequence with the function attribute @samp{stdcall}.  You can also
12289 override the @option{-mrtd} option by using the function attribute
12290 @samp{cdecl}.  @xref{Function Attributes}.
12291
12292 @strong{Warning:} this calling convention is incompatible with the one
12293 normally used on Unix, so you cannot use it if you need to call
12294 libraries compiled with the Unix compiler.
12295
12296 Also, you must provide function prototypes for all functions that
12297 take variable numbers of arguments (including @code{printf});
12298 otherwise incorrect code will be generated for calls to those
12299 functions.
12300
12301 In addition, seriously incorrect code will result if you call a
12302 function with too many arguments.  (Normally, extra arguments are
12303 harmlessly ignored.)
12304
12305 @item -mregparm=@var{num}
12306 @opindex mregparm
12307 Control how many registers are used to pass integer arguments.  By
12308 default, no registers are used to pass arguments, and at most 3
12309 registers can be used.  You can control this behavior for a specific
12310 function by using the function attribute @samp{regparm}.
12311 @xref{Function Attributes}.
12312
12313 @strong{Warning:} if you use this switch, and
12314 @var{num} is nonzero, then you must build all modules with the same
12315 value, including any libraries.  This includes the system libraries and
12316 startup modules.
12317
12318 @item -msseregparm
12319 @opindex msseregparm
12320 Use SSE register passing conventions for float and double arguments
12321 and return values.  You can control this behavior for a specific
12322 function by using the function attribute @samp{sseregparm}.
12323 @xref{Function Attributes}.
12324
12325 @strong{Warning:} if you use this switch then you must build all
12326 modules with the same value, including any libraries.  This includes
12327 the system libraries and startup modules.
12328
12329 @item -mvect8-ret-in-mem
12330 @opindex mvect8-ret-in-mem
12331 Return 8-byte vectors in memory instead of MMX registers.  This is the
12332 default on Solaris@tie{}8 and 9 and VxWorks to match the ABI of the Sun
12333 Studio compilers until version 12.  Later compiler versions (starting
12334 with Studio 12 Update@tie{}1) follow the ABI used by other x86 targets, which
12335 is the default on Solaris@tie{}10 and later.  @emph{Only} use this option if
12336 you need to remain compatible with existing code produced by those
12337 previous compiler versions or older versions of GCC.
12338
12339 @item -mpc32
12340 @itemx -mpc64
12341 @itemx -mpc80
12342 @opindex mpc32
12343 @opindex mpc64
12344 @opindex mpc80
12345
12346 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
12347 is specified, the significands of results of floating-point operations are
12348 rounded to 24 bits (single precision); @option{-mpc64} rounds the
12349 significands of results of floating-point operations to 53 bits (double
12350 precision) and @option{-mpc80} rounds the significands of results of
12351 floating-point operations to 64 bits (extended double precision), which is
12352 the default.  When this option is used, floating-point operations in higher
12353 precisions are not available to the programmer without setting the FPU
12354 control word explicitly.
12355
12356 Setting the rounding of floating-point operations to less than the default
12357 80 bits can speed some programs by 2% or more.  Note that some mathematical
12358 libraries assume that extended precision (80 bit) floating-point operations
12359 are enabled by default; routines in such libraries could suffer significant
12360 loss of accuracy, typically through so-called "catastrophic cancellation",
12361 when this option is used to set the precision to less than extended precision.
12362
12363 @item -mstackrealign
12364 @opindex mstackrealign
12365 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
12366 option will generate an alternate prologue and epilogue that realigns the
12367 runtime stack if necessary.  This supports mixing legacy codes that keep
12368 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
12369 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
12370 applicable to individual functions.
12371
12372 @item -mpreferred-stack-boundary=@var{num}
12373 @opindex mpreferred-stack-boundary
12374 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
12375 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
12376 the default is 4 (16 bytes or 128 bits).
12377
12378 @item -mincoming-stack-boundary=@var{num}
12379 @opindex mincoming-stack-boundary
12380 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
12381 boundary.  If @option{-mincoming-stack-boundary} is not specified,
12382 the one specified by @option{-mpreferred-stack-boundary} will be used.
12383
12384 On Pentium and PentiumPro, @code{double} and @code{long double} values
12385 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
12386 suffer significant run time performance penalties.  On Pentium III, the
12387 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
12388 properly if it is not 16 byte aligned.
12389
12390 To ensure proper alignment of this values on the stack, the stack boundary
12391 must be as aligned as that required by any value stored on the stack.
12392 Further, every function must be generated such that it keeps the stack
12393 aligned.  Thus calling a function compiled with a higher preferred
12394 stack boundary from a function compiled with a lower preferred stack
12395 boundary will most likely misalign the stack.  It is recommended that
12396 libraries that use callbacks always use the default setting.
12397
12398 This extra alignment does consume extra stack space, and generally
12399 increases code size.  Code that is sensitive to stack space usage, such
12400 as embedded systems and operating system kernels, may want to reduce the
12401 preferred alignment to @option{-mpreferred-stack-boundary=2}.
12402
12403 @item -mmmx
12404 @itemx -mno-mmx
12405 @itemx -msse
12406 @itemx -mno-sse
12407 @itemx -msse2
12408 @itemx -mno-sse2
12409 @itemx -msse3
12410 @itemx -mno-sse3
12411 @itemx -mssse3
12412 @itemx -mno-ssse3
12413 @itemx -msse4.1
12414 @need 800
12415 @itemx -mno-sse4.1
12416 @itemx -msse4.2
12417 @itemx -mno-sse4.2
12418 @itemx -msse4
12419 @itemx -mno-sse4
12420 @itemx -mavx
12421 @itemx -mno-avx
12422 @itemx -maes
12423 @itemx -mno-aes
12424 @itemx -mpclmul
12425 @need 800
12426 @itemx -mno-pclmul
12427 @itemx -mfsgsbase
12428 @itemx -mno-fsgsbase
12429 @itemx -mrdrnd
12430 @itemx -mno-rdrnd
12431 @itemx -mf16c
12432 @itemx -mno-f16c
12433 @itemx -msse4a
12434 @itemx -mno-sse4a
12435 @itemx -mfma4
12436 @need 800
12437 @itemx -mno-fma4
12438 @itemx -mxop
12439 @itemx -mno-xop
12440 @itemx -mlwp
12441 @itemx -mno-lwp
12442 @itemx -m3dnow
12443 @itemx -mno-3dnow
12444 @itemx -mpopcnt
12445 @itemx -mno-popcnt
12446 @itemx -mabm
12447 @itemx -mno-abm
12448 @itemx -mbmi
12449 @itemx -mno-bmi
12450 @itemx -mtbm
12451 @itemx -mno-tbm
12452 @opindex mmmx
12453 @opindex mno-mmx
12454 @opindex msse
12455 @opindex mno-sse
12456 @opindex m3dnow
12457 @opindex mno-3dnow
12458 These switches enable or disable the use of instructions in the MMX,
12459 SSE, SSE2, SSE3, SSSE3, SSE4.1, AVX, AES, PCLMUL, FSGSBASE, RDRND,
12460 F16C, SSE4A, FMA4, XOP, LWP, ABM, BMI, or 3DNow!@: extended instruction sets.
12461 These extensions are also available as built-in functions: see
12462 @ref{X86 Built-in Functions}, for details of the functions enabled and
12463 disabled by these switches.
12464
12465 To have SSE/SSE2 instructions generated automatically from floating-point
12466 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
12467
12468 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
12469 generates new AVX instructions or AVX equivalence for all SSEx instructions
12470 when needed.
12471
12472 These options will enable GCC to use these extended instructions in
12473 generated code, even without @option{-mfpmath=sse}.  Applications which
12474 perform runtime CPU detection must compile separate files for each
12475 supported architecture, using the appropriate flags.  In particular,
12476 the file containing the CPU detection code should be compiled without
12477 these options.
12478
12479 @item -mfused-madd
12480 @itemx -mno-fused-madd
12481 @opindex mfused-madd
12482 @opindex mno-fused-madd
12483 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12484 instructions.  The default is to use these instructions.
12485
12486 @item -mcld
12487 @opindex mcld
12488 This option instructs GCC to emit a @code{cld} instruction in the prologue
12489 of functions that use string instructions.  String instructions depend on
12490 the DF flag to select between autoincrement or autodecrement mode.  While the
12491 ABI specifies the DF flag to be cleared on function entry, some operating
12492 systems violate this specification by not clearing the DF flag in their
12493 exception dispatchers.  The exception handler can be invoked with the DF flag
12494 set which leads to wrong direction mode, when string instructions are used.
12495 This option can be enabled by default on 32-bit x86 targets by configuring
12496 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
12497 instructions can be suppressed with the @option{-mno-cld} compiler option
12498 in this case.
12499
12500 @item -mvzeroupper
12501 @opindex mvzeroupper
12502 This option instructs GCC to emit a @code{vzeroupper} instruction
12503 before a transfer of control flow out of the function to minimize
12504 AVX to SSE transition penalty as well as remove unnecessary zeroupper
12505 intrinsics.
12506
12507 @item -mcx16
12508 @opindex mcx16
12509 This option will enable GCC to use CMPXCHG16B instruction in generated code.
12510 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
12511 data types.  This is useful for high resolution counters that could be updated
12512 by multiple processors (or cores).  This instruction is generated as part of
12513 atomic built-in functions: see @ref{Atomic Builtins} for details.
12514
12515 @item -msahf
12516 @opindex msahf
12517 This option will enable GCC to use SAHF instruction in generated 64-bit code.
12518 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
12519 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
12520 SAHF are load and store instructions, respectively, for certain status flags.
12521 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
12522 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
12523
12524 @item -mmovbe
12525 @opindex mmovbe
12526 This option will enable GCC to use movbe instruction to implement
12527 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
12528
12529 @item -mcrc32
12530 @opindex mcrc32
12531 This option will enable built-in functions, @code{__builtin_ia32_crc32qi},
12532 @code{__builtin_ia32_crc32hi}. @code{__builtin_ia32_crc32si} and
12533 @code{__builtin_ia32_crc32di} to generate the crc32 machine instruction.
12534
12535 @item -mrecip
12536 @opindex mrecip
12537 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
12538 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Raphson step
12539 to increase precision instead of DIVSS and SQRTSS (and their vectorized
12540 variants) for single precision floating point arguments.  These instructions
12541 are generated only when @option{-funsafe-math-optimizations} is enabled
12542 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
12543 Note that while the throughput of the sequence is higher than the throughput
12544 of the non-reciprocal instruction, the precision of the sequence can be
12545 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
12546
12547 Note that GCC implements 1.0f/sqrtf(x) in terms of RSQRTSS (or RSQRTPS)
12548 already with @option{-ffast-math} (or the above option combination), and
12549 doesn't need @option{-mrecip}.
12550
12551 @item -mveclibabi=@var{type}
12552 @opindex mveclibabi
12553 Specifies the ABI type to use for vectorizing intrinsics using an
12554 external library.  Supported types are @code{svml} for the Intel short
12555 vector math library and @code{acml} for the AMD math core library style
12556 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
12557 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
12558 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
12559 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
12560 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
12561 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
12562 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
12563 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
12564 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
12565 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
12566 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
12567 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
12568 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
12569 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
12570 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
12571 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
12572 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
12573 compatible library will have to be specified at link time.
12574
12575 @item -mabi=@var{name}
12576 @opindex mabi
12577 Generate code for the specified calling convention.  Permissible values
12578 are: @samp{sysv} for the ABI used on GNU/Linux and other systems and
12579 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
12580 ABI when targeting Windows.  On all other systems, the default is the
12581 SYSV ABI.  You can control this behavior for a specific function by
12582 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
12583 @xref{Function Attributes}.
12584
12585 @item -mtls-dialect=@var{type}
12586 @opindex mtls-dialect
12587 Generate code to access thread-local storage using the @samp{gnu} or
12588 @samp{gnu2} conventions.  @samp{gnu} is the conservative default;
12589 @samp{gnu2} is more efficient, but it may add compile- and run-time
12590 requirements that cannot be satisfied on all systems.
12591
12592 @item -mpush-args
12593 @itemx -mno-push-args
12594 @opindex mpush-args
12595 @opindex mno-push-args
12596 Use PUSH operations to store outgoing parameters.  This method is shorter
12597 and usually equally fast as method using SUB/MOV operations and is enabled
12598 by default.  In some cases disabling it may improve performance because of
12599 improved scheduling and reduced dependencies.
12600
12601 @item -maccumulate-outgoing-args
12602 @opindex maccumulate-outgoing-args
12603 If enabled, the maximum amount of space required for outgoing arguments will be
12604 computed in the function prologue.  This is faster on most modern CPUs
12605 because of reduced dependencies, improved scheduling and reduced stack usage
12606 when preferred stack boundary is not equal to 2.  The drawback is a notable
12607 increase in code size.  This switch implies @option{-mno-push-args}.
12608
12609 @item -mthreads
12610 @opindex mthreads
12611 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
12612 on thread-safe exception handling must compile and link all code with the
12613 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
12614 @option{-D_MT}; when linking, it links in a special thread helper library
12615 @option{-lmingwthrd} which cleans up per thread exception handling data.
12616
12617 @item -mno-align-stringops
12618 @opindex mno-align-stringops
12619 Do not align destination of inlined string operations.  This switch reduces
12620 code size and improves performance in case the destination is already aligned,
12621 but GCC doesn't know about it.
12622
12623 @item -minline-all-stringops
12624 @opindex minline-all-stringops
12625 By default GCC inlines string operations only when destination is known to be
12626 aligned at least to 4 byte boundary.  This enables more inlining, increase code
12627 size, but may improve performance of code that depends on fast memcpy, strlen
12628 and memset for short lengths.
12629
12630 @item -minline-stringops-dynamically
12631 @opindex minline-stringops-dynamically
12632 For string operation of unknown size, inline runtime checks so for small
12633 blocks inline code is used, while for large blocks library call is used.
12634
12635 @item -mstringop-strategy=@var{alg}
12636 @opindex mstringop-strategy=@var{alg}
12637 Overwrite internal decision heuristic about particular algorithm to inline
12638 string operation with.  The allowed values are @code{rep_byte},
12639 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
12640 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
12641 expanding inline loop, @code{libcall} for always expanding library call.
12642
12643 @item -momit-leaf-frame-pointer
12644 @opindex momit-leaf-frame-pointer
12645 Don't keep the frame pointer in a register for leaf functions.  This
12646 avoids the instructions to save, set up and restore frame pointers and
12647 makes an extra register available in leaf functions.  The option
12648 @option{-fomit-frame-pointer} removes the frame pointer for all functions
12649 which might make debugging harder.
12650
12651 @item -mtls-direct-seg-refs
12652 @itemx -mno-tls-direct-seg-refs
12653 @opindex mtls-direct-seg-refs
12654 Controls whether TLS variables may be accessed with offsets from the
12655 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
12656 or whether the thread base pointer must be added.  Whether or not this
12657 is legal depends on the operating system, and whether it maps the
12658 segment to cover the entire TLS area.
12659
12660 For systems that use GNU libc, the default is on.
12661
12662 @item -msse2avx
12663 @itemx -mno-sse2avx
12664 @opindex msse2avx
12665 Specify that the assembler should encode SSE instructions with VEX
12666 prefix.  The option @option{-mavx} turns this on by default.
12667
12668 @item -mfentry
12669 @itemx -mno-fentry
12670 @opindex mfentry
12671 If profiling is active @option{-pg} put the profiling
12672 counter call before prologue.
12673 Note: On x86 architectures the attribute @code{ms_hook_prologue}
12674 isn't possible at the moment for @option{-mfentry} and @option{-pg}.
12675
12676 @item -m8bit-idiv
12677 @itemx -mno-8bit-idiv
12678 @opindex 8bit-idiv
12679 On some processors, like Intel Atom, 8bit unsigned integer divide is
12680 much faster than 32bit/64bit integer divide.  This option will generate a
12681 runt-time check.  If both dividend and divisor are within range of 0
12682 to 255, 8bit unsigned integer divide will be used instead of
12683 32bit/64bit integer divide.
12684
12685 @item -mavx256-split-unaligned-load
12686 @item -mavx256-split-unaligned-store
12687 @opindex avx256-split-unaligned-load
12688 @opindex avx256-split-unaligned-store
12689 Split 32-byte AVX unaligned load and store.
12690
12691 @end table
12692
12693 These @samp{-m} switches are supported in addition to the above
12694 on AMD x86-64 processors in 64-bit environments.
12695
12696 @table @gcctabopt
12697 @item -m32
12698 @itemx -m64
12699 @opindex m32
12700 @opindex m64
12701 Generate code for a 32-bit or 64-bit environment.
12702 The 32-bit environment sets int, long and pointer to 32 bits and
12703 generates code that runs on any i386 system.
12704 The 64-bit environment sets int to 32 bits and long and pointer
12705 to 64 bits and generates code for AMD's x86-64 architecture. For
12706 darwin only the -m64 option turns off the @option{-fno-pic} and
12707 @option{-mdynamic-no-pic} options.
12708
12709 @item -mno-red-zone
12710 @opindex mno-red-zone
12711 Do not use a so called red zone for x86-64 code.  The red zone is mandated
12712 by the x86-64 ABI, it is a 128-byte area beyond the location of the
12713 stack pointer that will not be modified by signal or interrupt handlers
12714 and therefore can be used for temporary data without adjusting the stack
12715 pointer.  The flag @option{-mno-red-zone} disables this red zone.
12716
12717 @item -mcmodel=small
12718 @opindex mcmodel=small
12719 Generate code for the small code model: the program and its symbols must
12720 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
12721 Programs can be statically or dynamically linked.  This is the default
12722 code model.
12723
12724 @item -mcmodel=kernel
12725 @opindex mcmodel=kernel
12726 Generate code for the kernel code model.  The kernel runs in the
12727 negative 2 GB of the address space.
12728 This model has to be used for Linux kernel code.
12729
12730 @item -mcmodel=medium
12731 @opindex mcmodel=medium
12732 Generate code for the medium model: The program is linked in the lower 2
12733 GB of the address space.  Small symbols are also placed there.  Symbols
12734 with sizes larger than @option{-mlarge-data-threshold} are put into
12735 large data or bss sections and can be located above 2GB.  Programs can
12736 be statically or dynamically linked.
12737
12738 @item -mcmodel=large
12739 @opindex mcmodel=large
12740 Generate code for the large model: This model makes no assumptions
12741 about addresses and sizes of sections.
12742 @end table
12743
12744 @node i386 and x86-64 Windows Options
12745 @subsection i386 and x86-64 Windows Options
12746 @cindex i386 and x86-64 Windows Options
12747
12748 These additional options are available for Windows targets:
12749
12750 @table @gcctabopt
12751 @item -mconsole
12752 @opindex mconsole
12753 This option is available for Cygwin and MinGW targets.  It
12754 specifies that a console application is to be generated, by
12755 instructing the linker to set the PE header subsystem type
12756 required for console applications.
12757 This is the default behavior for Cygwin and MinGW targets.
12758
12759 @item -mdll
12760 @opindex mdll
12761 This option is available for Cygwin and MinGW targets.  It
12762 specifies that a DLL - a dynamic link library - is to be
12763 generated, enabling the selection of the required runtime
12764 startup object and entry point.
12765
12766 @item -mnop-fun-dllimport
12767 @opindex mnop-fun-dllimport
12768 This option is available for Cygwin and MinGW targets.  It
12769 specifies that the dllimport attribute should be ignored.
12770
12771 @item -mthread
12772 @opindex mthread
12773 This option is available for MinGW targets. It specifies
12774 that MinGW-specific thread support is to be used.
12775
12776 @item -municode
12777 @opindex municode
12778 This option is available for mingw-w64 targets.  It specifies
12779 that the UNICODE macro is getting pre-defined and that the
12780 unicode capable runtime startup code is chosen.
12781
12782 @item -mwin32
12783 @opindex mwin32
12784 This option is available for Cygwin and MinGW targets.  It
12785 specifies that the typical Windows pre-defined macros are to
12786 be set in the pre-processor, but does not influence the choice
12787 of runtime library/startup code.
12788
12789 @item -mwindows
12790 @opindex mwindows
12791 This option is available for Cygwin and MinGW targets.  It
12792 specifies that a GUI application is to be generated by
12793 instructing the linker to set the PE header subsystem type
12794 appropriately.
12795
12796 @item -fno-set-stack-executable
12797 @opindex fno-set-stack-executable
12798 This option is available for MinGW targets. It specifies that
12799 the executable flag for stack used by nested functions isn't
12800 set. This is necessary for binaries running in kernel mode of
12801 Windows, as there the user32 API, which is used to set executable
12802 privileges, isn't available.
12803
12804 @item -mpe-aligned-commons
12805 @opindex mpe-aligned-commons
12806 This option is available for Cygwin and MinGW targets.  It
12807 specifies that the GNU extension to the PE file format that
12808 permits the correct alignment of COMMON variables should be
12809 used when generating code.  It will be enabled by default if
12810 GCC detects that the target assembler found during configuration
12811 supports the feature.
12812 @end table
12813
12814 See also under @ref{i386 and x86-64 Options} for standard options.
12815
12816 @node IA-64 Options
12817 @subsection IA-64 Options
12818 @cindex IA-64 Options
12819
12820 These are the @samp{-m} options defined for the Intel IA-64 architecture.
12821
12822 @table @gcctabopt
12823 @item -mbig-endian
12824 @opindex mbig-endian
12825 Generate code for a big endian target.  This is the default for HP-UX@.
12826
12827 @item -mlittle-endian
12828 @opindex mlittle-endian
12829 Generate code for a little endian target.  This is the default for AIX5
12830 and GNU/Linux.
12831
12832 @item -mgnu-as
12833 @itemx -mno-gnu-as
12834 @opindex mgnu-as
12835 @opindex mno-gnu-as
12836 Generate (or don't) code for the GNU assembler.  This is the default.
12837 @c Also, this is the default if the configure option @option{--with-gnu-as}
12838 @c is used.
12839
12840 @item -mgnu-ld
12841 @itemx -mno-gnu-ld
12842 @opindex mgnu-ld
12843 @opindex mno-gnu-ld
12844 Generate (or don't) code for the GNU linker.  This is the default.
12845 @c Also, this is the default if the configure option @option{--with-gnu-ld}
12846 @c is used.
12847
12848 @item -mno-pic
12849 @opindex mno-pic
12850 Generate code that does not use a global pointer register.  The result
12851 is not position independent code, and violates the IA-64 ABI@.
12852
12853 @item -mvolatile-asm-stop
12854 @itemx -mno-volatile-asm-stop
12855 @opindex mvolatile-asm-stop
12856 @opindex mno-volatile-asm-stop
12857 Generate (or don't) a stop bit immediately before and after volatile asm
12858 statements.
12859
12860 @item -mregister-names
12861 @itemx -mno-register-names
12862 @opindex mregister-names
12863 @opindex mno-register-names
12864 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
12865 the stacked registers.  This may make assembler output more readable.
12866
12867 @item -mno-sdata
12868 @itemx -msdata
12869 @opindex mno-sdata
12870 @opindex msdata
12871 Disable (or enable) optimizations that use the small data section.  This may
12872 be useful for working around optimizer bugs.
12873
12874 @item -mconstant-gp
12875 @opindex mconstant-gp
12876 Generate code that uses a single constant global pointer value.  This is
12877 useful when compiling kernel code.
12878
12879 @item -mauto-pic
12880 @opindex mauto-pic
12881 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
12882 This is useful when compiling firmware code.
12883
12884 @item -minline-float-divide-min-latency
12885 @opindex minline-float-divide-min-latency
12886 Generate code for inline divides of floating point values
12887 using the minimum latency algorithm.
12888
12889 @item -minline-float-divide-max-throughput
12890 @opindex minline-float-divide-max-throughput
12891 Generate code for inline divides of floating point values
12892 using the maximum throughput algorithm.
12893
12894 @item -mno-inline-float-divide
12895 @opindex mno-inline-float-divide
12896 Do not generate inline code for divides of floating point values.
12897
12898 @item -minline-int-divide-min-latency
12899 @opindex minline-int-divide-min-latency
12900 Generate code for inline divides of integer values
12901 using the minimum latency algorithm.
12902
12903 @item -minline-int-divide-max-throughput
12904 @opindex minline-int-divide-max-throughput
12905 Generate code for inline divides of integer values
12906 using the maximum throughput algorithm.
12907
12908 @item -mno-inline-int-divide
12909 @opindex mno-inline-int-divide
12910 Do not generate inline code for divides of integer values.
12911
12912 @item -minline-sqrt-min-latency
12913 @opindex minline-sqrt-min-latency
12914 Generate code for inline square roots
12915 using the minimum latency algorithm.
12916
12917 @item -minline-sqrt-max-throughput
12918 @opindex minline-sqrt-max-throughput
12919 Generate code for inline square roots
12920 using the maximum throughput algorithm.
12921
12922 @item -mno-inline-sqrt
12923 @opindex mno-inline-sqrt
12924 Do not generate inline code for sqrt.
12925
12926 @item -mfused-madd
12927 @itemx -mno-fused-madd
12928 @opindex mfused-madd
12929 @opindex mno-fused-madd
12930 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12931 instructions.  The default is to use these instructions.
12932
12933 @item -mno-dwarf2-asm
12934 @itemx -mdwarf2-asm
12935 @opindex mno-dwarf2-asm
12936 @opindex mdwarf2-asm
12937 Don't (or do) generate assembler code for the DWARF2 line number debugging
12938 info.  This may be useful when not using the GNU assembler.
12939
12940 @item -mearly-stop-bits
12941 @itemx -mno-early-stop-bits
12942 @opindex mearly-stop-bits
12943 @opindex mno-early-stop-bits
12944 Allow stop bits to be placed earlier than immediately preceding the
12945 instruction that triggered the stop bit.  This can improve instruction
12946 scheduling, but does not always do so.
12947
12948 @item -mfixed-range=@var{register-range}
12949 @opindex mfixed-range
12950 Generate code treating the given register range as fixed registers.
12951 A fixed register is one that the register allocator can not use.  This is
12952 useful when compiling kernel code.  A register range is specified as
12953 two registers separated by a dash.  Multiple register ranges can be
12954 specified separated by a comma.
12955
12956 @item -mtls-size=@var{tls-size}
12957 @opindex mtls-size
12958 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
12959 64.
12960
12961 @item -mtune=@var{cpu-type}
12962 @opindex mtune
12963 Tune the instruction scheduling for a particular CPU, Valid values are
12964 itanium, itanium1, merced, itanium2, and mckinley.
12965
12966 @item -milp32
12967 @itemx -mlp64
12968 @opindex milp32
12969 @opindex mlp64
12970 Generate code for a 32-bit or 64-bit environment.
12971 The 32-bit environment sets int, long and pointer to 32 bits.
12972 The 64-bit environment sets int to 32 bits and long and pointer
12973 to 64 bits.  These are HP-UX specific flags.
12974
12975 @item -mno-sched-br-data-spec
12976 @itemx -msched-br-data-spec
12977 @opindex mno-sched-br-data-spec
12978 @opindex msched-br-data-spec
12979 (Dis/En)able data speculative scheduling before reload.
12980 This will result in generation of the ld.a instructions and
12981 the corresponding check instructions (ld.c / chk.a).
12982 The default is 'disable'.
12983
12984 @item -msched-ar-data-spec
12985 @itemx -mno-sched-ar-data-spec
12986 @opindex msched-ar-data-spec
12987 @opindex mno-sched-ar-data-spec
12988 (En/Dis)able data speculative scheduling after reload.
12989 This will result in generation of the ld.a instructions and
12990 the corresponding check instructions (ld.c / chk.a).
12991 The default is 'enable'.
12992
12993 @item -mno-sched-control-spec
12994 @itemx -msched-control-spec
12995 @opindex mno-sched-control-spec
12996 @opindex msched-control-spec
12997 (Dis/En)able control speculative scheduling.  This feature is
12998 available only during region scheduling (i.e.@: before reload).
12999 This will result in generation of the ld.s instructions and
13000 the corresponding check instructions chk.s .
13001 The default is 'disable'.
13002
13003 @item -msched-br-in-data-spec
13004 @itemx -mno-sched-br-in-data-spec
13005 @opindex msched-br-in-data-spec
13006 @opindex mno-sched-br-in-data-spec
13007 (En/Dis)able speculative scheduling of the instructions that
13008 are dependent on the data speculative loads before reload.
13009 This is effective only with @option{-msched-br-data-spec} enabled.
13010 The default is 'enable'.
13011
13012 @item -msched-ar-in-data-spec
13013 @itemx -mno-sched-ar-in-data-spec
13014 @opindex msched-ar-in-data-spec
13015 @opindex mno-sched-ar-in-data-spec
13016 (En/Dis)able speculative scheduling of the instructions that
13017 are dependent on the data speculative loads after reload.
13018 This is effective only with @option{-msched-ar-data-spec} enabled.
13019 The default is 'enable'.
13020
13021 @item -msched-in-control-spec
13022 @itemx -mno-sched-in-control-spec
13023 @opindex msched-in-control-spec
13024 @opindex mno-sched-in-control-spec
13025 (En/Dis)able speculative scheduling of the instructions that
13026 are dependent on the control speculative loads.
13027 This is effective only with @option{-msched-control-spec} enabled.
13028 The default is 'enable'.
13029
13030 @item -mno-sched-prefer-non-data-spec-insns
13031 @itemx -msched-prefer-non-data-spec-insns
13032 @opindex mno-sched-prefer-non-data-spec-insns
13033 @opindex msched-prefer-non-data-spec-insns
13034 If enabled, data speculative instructions will be chosen for schedule
13035 only if there are no other choices at the moment.  This will make
13036 the use of the data speculation much more conservative.
13037 The default is 'disable'.
13038
13039 @item -mno-sched-prefer-non-control-spec-insns
13040 @itemx -msched-prefer-non-control-spec-insns
13041 @opindex mno-sched-prefer-non-control-spec-insns
13042 @opindex msched-prefer-non-control-spec-insns
13043 If enabled, control speculative instructions will be chosen for schedule
13044 only if there are no other choices at the moment.  This will make
13045 the use of the control speculation much more conservative.
13046 The default is 'disable'.
13047
13048 @item -mno-sched-count-spec-in-critical-path
13049 @itemx -msched-count-spec-in-critical-path
13050 @opindex mno-sched-count-spec-in-critical-path
13051 @opindex msched-count-spec-in-critical-path
13052 If enabled, speculative dependencies will be considered during
13053 computation of the instructions priorities.  This will make the use of the
13054 speculation a bit more conservative.
13055 The default is 'disable'.
13056
13057 @item -msched-spec-ldc
13058 @opindex msched-spec-ldc
13059 Use a simple data speculation check.  This option is on by default.
13060
13061 @item -msched-control-spec-ldc
13062 @opindex msched-spec-ldc
13063 Use a simple check for control speculation.  This option is on by default.
13064
13065 @item -msched-stop-bits-after-every-cycle
13066 @opindex msched-stop-bits-after-every-cycle
13067 Place a stop bit after every cycle when scheduling.  This option is on
13068 by default.
13069
13070 @item -msched-fp-mem-deps-zero-cost
13071 @opindex msched-fp-mem-deps-zero-cost
13072 Assume that floating-point stores and loads are not likely to cause a conflict
13073 when placed into the same instruction group.  This option is disabled by
13074 default.
13075
13076 @item -msel-sched-dont-check-control-spec
13077 @opindex msel-sched-dont-check-control-spec
13078 Generate checks for control speculation in selective scheduling.
13079 This flag is disabled by default.
13080
13081 @item -msched-max-memory-insns=@var{max-insns}
13082 @opindex msched-max-memory-insns
13083 Limit on the number of memory insns per instruction group, giving lower
13084 priority to subsequent memory insns attempting to schedule in the same
13085 instruction group. Frequently useful to prevent cache bank conflicts.
13086 The default value is 1.
13087
13088 @item -msched-max-memory-insns-hard-limit
13089 @opindex msched-max-memory-insns-hard-limit
13090 Disallow more than `msched-max-memory-insns' in instruction group.
13091 Otherwise, limit is `soft' meaning that we would prefer non-memory operations
13092 when limit is reached but may still schedule memory operations.
13093
13094 @end table
13095
13096 @node IA-64/VMS Options
13097 @subsection IA-64/VMS Options
13098
13099 These @samp{-m} options are defined for the IA-64/VMS implementations:
13100
13101 @table @gcctabopt
13102 @item -mvms-return-codes
13103 @opindex mvms-return-codes
13104 Return VMS condition codes from main. The default is to return POSIX
13105 style condition (e.g.@ error) codes.
13106
13107 @item -mdebug-main=@var{prefix}
13108 @opindex mdebug-main=@var{prefix}
13109 Flag the first routine whose name starts with @var{prefix} as the main
13110 routine for the debugger.
13111
13112 @item -mmalloc64
13113 @opindex mmalloc64
13114 Default to 64bit memory allocation routines.
13115 @end table
13116
13117 @node LM32 Options
13118 @subsection LM32 Options
13119 @cindex LM32 options
13120
13121 These @option{-m} options are defined for the Lattice Mico32 architecture:
13122
13123 @table @gcctabopt
13124 @item -mbarrel-shift-enabled
13125 @opindex mbarrel-shift-enabled
13126 Enable barrel-shift instructions.
13127
13128 @item -mdivide-enabled
13129 @opindex mdivide-enabled
13130 Enable divide and modulus instructions.
13131
13132 @item -mmultiply-enabled
13133 @opindex multiply-enabled
13134 Enable multiply instructions.
13135
13136 @item -msign-extend-enabled
13137 @opindex msign-extend-enabled
13138 Enable sign extend instructions.
13139
13140 @item -muser-enabled
13141 @opindex muser-enabled
13142 Enable user-defined instructions.
13143
13144 @end table
13145
13146 @node M32C Options
13147 @subsection M32C Options
13148 @cindex M32C options
13149
13150 @table @gcctabopt
13151 @item -mcpu=@var{name}
13152 @opindex mcpu=
13153 Select the CPU for which code is generated.  @var{name} may be one of
13154 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
13155 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
13156 the M32C/80 series.
13157
13158 @item -msim
13159 @opindex msim
13160 Specifies that the program will be run on the simulator.  This causes
13161 an alternate runtime library to be linked in which supports, for
13162 example, file I/O@.  You must not use this option when generating
13163 programs that will run on real hardware; you must provide your own
13164 runtime library for whatever I/O functions are needed.
13165
13166 @item -memregs=@var{number}
13167 @opindex memregs=
13168 Specifies the number of memory-based pseudo-registers GCC will use
13169 during code generation.  These pseudo-registers will be used like real
13170 registers, so there is a tradeoff between GCC's ability to fit the
13171 code into available registers, and the performance penalty of using
13172 memory instead of registers.  Note that all modules in a program must
13173 be compiled with the same value for this option.  Because of that, you
13174 must not use this option with the default runtime libraries gcc
13175 builds.
13176
13177 @end table
13178
13179 @node M32R/D Options
13180 @subsection M32R/D Options
13181 @cindex M32R/D options
13182
13183 These @option{-m} options are defined for Renesas M32R/D architectures:
13184
13185 @table @gcctabopt
13186 @item -m32r2
13187 @opindex m32r2
13188 Generate code for the M32R/2@.
13189
13190 @item -m32rx
13191 @opindex m32rx
13192 Generate code for the M32R/X@.
13193
13194 @item -m32r
13195 @opindex m32r
13196 Generate code for the M32R@.  This is the default.
13197
13198 @item -mmodel=small
13199 @opindex mmodel=small
13200 Assume all objects live in the lower 16MB of memory (so that their addresses
13201 can be loaded with the @code{ld24} instruction), and assume all subroutines
13202 are reachable with the @code{bl} instruction.
13203 This is the default.
13204
13205 The addressability of a particular object can be set with the
13206 @code{model} attribute.
13207
13208 @item -mmodel=medium
13209 @opindex mmodel=medium
13210 Assume objects may be anywhere in the 32-bit address space (the compiler
13211 will generate @code{seth/add3} instructions to load their addresses), and
13212 assume all subroutines are reachable with the @code{bl} instruction.
13213
13214 @item -mmodel=large
13215 @opindex mmodel=large
13216 Assume objects may be anywhere in the 32-bit address space (the compiler
13217 will generate @code{seth/add3} instructions to load their addresses), and
13218 assume subroutines may not be reachable with the @code{bl} instruction
13219 (the compiler will generate the much slower @code{seth/add3/jl}
13220 instruction sequence).
13221
13222 @item -msdata=none
13223 @opindex msdata=none
13224 Disable use of the small data area.  Variables will be put into
13225 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
13226 @code{section} attribute has been specified).
13227 This is the default.
13228
13229 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
13230 Objects may be explicitly put in the small data area with the
13231 @code{section} attribute using one of these sections.
13232
13233 @item -msdata=sdata
13234 @opindex msdata=sdata
13235 Put small global and static data in the small data area, but do not
13236 generate special code to reference them.
13237
13238 @item -msdata=use
13239 @opindex msdata=use
13240 Put small global and static data in the small data area, and generate
13241 special instructions to reference them.
13242
13243 @item -G @var{num}
13244 @opindex G
13245 @cindex smaller data references
13246 Put global and static objects less than or equal to @var{num} bytes
13247 into the small data or bss sections instead of the normal data or bss
13248 sections.  The default value of @var{num} is 8.
13249 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
13250 for this option to have any effect.
13251
13252 All modules should be compiled with the same @option{-G @var{num}} value.
13253 Compiling with different values of @var{num} may or may not work; if it
13254 doesn't the linker will give an error message---incorrect code will not be
13255 generated.
13256
13257 @item -mdebug
13258 @opindex mdebug
13259 Makes the M32R specific code in the compiler display some statistics
13260 that might help in debugging programs.
13261
13262 @item -malign-loops
13263 @opindex malign-loops
13264 Align all loops to a 32-byte boundary.
13265
13266 @item -mno-align-loops
13267 @opindex mno-align-loops
13268 Do not enforce a 32-byte alignment for loops.  This is the default.
13269
13270 @item -missue-rate=@var{number}
13271 @opindex missue-rate=@var{number}
13272 Issue @var{number} instructions per cycle.  @var{number} can only be 1
13273 or 2.
13274
13275 @item -mbranch-cost=@var{number}
13276 @opindex mbranch-cost=@var{number}
13277 @var{number} can only be 1 or 2.  If it is 1 then branches will be
13278 preferred over conditional code, if it is 2, then the opposite will
13279 apply.
13280
13281 @item -mflush-trap=@var{number}
13282 @opindex mflush-trap=@var{number}
13283 Specifies the trap number to use to flush the cache.  The default is
13284 12.  Valid numbers are between 0 and 15 inclusive.
13285
13286 @item -mno-flush-trap
13287 @opindex mno-flush-trap
13288 Specifies that the cache cannot be flushed by using a trap.
13289
13290 @item -mflush-func=@var{name}
13291 @opindex mflush-func=@var{name}
13292 Specifies the name of the operating system function to call to flush
13293 the cache.  The default is @emph{_flush_cache}, but a function call
13294 will only be used if a trap is not available.
13295
13296 @item -mno-flush-func
13297 @opindex mno-flush-func
13298 Indicates that there is no OS function for flushing the cache.
13299
13300 @end table
13301
13302 @node M680x0 Options
13303 @subsection M680x0 Options
13304 @cindex M680x0 options
13305
13306 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
13307 The default settings depend on which architecture was selected when
13308 the compiler was configured; the defaults for the most common choices
13309 are given below.
13310
13311 @table @gcctabopt
13312 @item -march=@var{arch}
13313 @opindex march
13314 Generate code for a specific M680x0 or ColdFire instruction set
13315 architecture.  Permissible values of @var{arch} for M680x0
13316 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
13317 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
13318 architectures are selected according to Freescale's ISA classification
13319 and the permissible values are: @samp{isaa}, @samp{isaaplus},
13320 @samp{isab} and @samp{isac}.
13321
13322 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
13323 code for a ColdFire target.  The @var{arch} in this macro is one of the
13324 @option{-march} arguments given above.
13325
13326 When used together, @option{-march} and @option{-mtune} select code
13327 that runs on a family of similar processors but that is optimized
13328 for a particular microarchitecture.
13329
13330 @item -mcpu=@var{cpu}
13331 @opindex mcpu
13332 Generate code for a specific M680x0 or ColdFire processor.
13333 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
13334 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
13335 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
13336 below, which also classifies the CPUs into families:
13337
13338 @multitable @columnfractions 0.20 0.80
13339 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
13340 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51cn} @samp{51em} @samp{51qe}
13341 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
13342 @item @samp{5206e} @tab @samp{5206e}
13343 @item @samp{5208} @tab @samp{5207} @samp{5208}
13344 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
13345 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
13346 @item @samp{5216} @tab @samp{5214} @samp{5216}
13347 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
13348 @item @samp{5225} @tab @samp{5224} @samp{5225}
13349 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
13350 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
13351 @item @samp{5249} @tab @samp{5249}
13352 @item @samp{5250} @tab @samp{5250}
13353 @item @samp{5271} @tab @samp{5270} @samp{5271}
13354 @item @samp{5272} @tab @samp{5272}
13355 @item @samp{5275} @tab @samp{5274} @samp{5275}
13356 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
13357 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
13358 @item @samp{5307} @tab @samp{5307}
13359 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
13360 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
13361 @item @samp{5407} @tab @samp{5407}
13362 @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}
13363 @end multitable
13364
13365 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
13366 @var{arch} is compatible with @var{cpu}.  Other combinations of
13367 @option{-mcpu} and @option{-march} are rejected.
13368
13369 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
13370 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
13371 where the value of @var{family} is given by the table above.
13372
13373 @item -mtune=@var{tune}
13374 @opindex mtune
13375 Tune the code for a particular microarchitecture, within the
13376 constraints set by @option{-march} and @option{-mcpu}.
13377 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
13378 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
13379 and @samp{cpu32}.  The ColdFire microarchitectures
13380 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
13381
13382 You can also use @option{-mtune=68020-40} for code that needs
13383 to run relatively well on 68020, 68030 and 68040 targets.
13384 @option{-mtune=68020-60} is similar but includes 68060 targets
13385 as well.  These two options select the same tuning decisions as
13386 @option{-m68020-40} and @option{-m68020-60} respectively.
13387
13388 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
13389 when tuning for 680x0 architecture @var{arch}.  It also defines
13390 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
13391 option is used.  If gcc is tuning for a range of architectures,
13392 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
13393 it defines the macros for every architecture in the range.
13394
13395 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
13396 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
13397 of the arguments given above.
13398
13399 @item -m68000
13400 @itemx -mc68000
13401 @opindex m68000
13402 @opindex mc68000
13403 Generate output for a 68000.  This is the default
13404 when the compiler is configured for 68000-based systems.
13405 It is equivalent to @option{-march=68000}.
13406
13407 Use this option for microcontrollers with a 68000 or EC000 core,
13408 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
13409
13410 @item -m68010
13411 @opindex m68010
13412 Generate output for a 68010.  This is the default
13413 when the compiler is configured for 68010-based systems.
13414 It is equivalent to @option{-march=68010}.
13415
13416 @item -m68020
13417 @itemx -mc68020
13418 @opindex m68020
13419 @opindex mc68020
13420 Generate output for a 68020.  This is the default
13421 when the compiler is configured for 68020-based systems.
13422 It is equivalent to @option{-march=68020}.
13423
13424 @item -m68030
13425 @opindex m68030
13426 Generate output for a 68030.  This is the default when the compiler is
13427 configured for 68030-based systems.  It is equivalent to
13428 @option{-march=68030}.
13429
13430 @item -m68040
13431 @opindex m68040
13432 Generate output for a 68040.  This is the default when the compiler is
13433 configured for 68040-based systems.  It is equivalent to
13434 @option{-march=68040}.
13435
13436 This option inhibits the use of 68881/68882 instructions that have to be
13437 emulated by software on the 68040.  Use this option if your 68040 does not
13438 have code to emulate those instructions.
13439
13440 @item -m68060
13441 @opindex m68060
13442 Generate output for a 68060.  This is the default when the compiler is
13443 configured for 68060-based systems.  It is equivalent to
13444 @option{-march=68060}.
13445
13446 This option inhibits the use of 68020 and 68881/68882 instructions that
13447 have to be emulated by software on the 68060.  Use this option if your 68060
13448 does not have code to emulate those instructions.
13449
13450 @item -mcpu32
13451 @opindex mcpu32
13452 Generate output for a CPU32.  This is the default
13453 when the compiler is configured for CPU32-based systems.
13454 It is equivalent to @option{-march=cpu32}.
13455
13456 Use this option for microcontrollers with a
13457 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
13458 68336, 68340, 68341, 68349 and 68360.
13459
13460 @item -m5200
13461 @opindex m5200
13462 Generate output for a 520X ColdFire CPU@.  This is the default
13463 when the compiler is configured for 520X-based systems.
13464 It is equivalent to @option{-mcpu=5206}, and is now deprecated
13465 in favor of that option.
13466
13467 Use this option for microcontroller with a 5200 core, including
13468 the MCF5202, MCF5203, MCF5204 and MCF5206.
13469
13470 @item -m5206e
13471 @opindex m5206e
13472 Generate output for a 5206e ColdFire CPU@.  The option is now
13473 deprecated in favor of the equivalent @option{-mcpu=5206e}.
13474
13475 @item -m528x
13476 @opindex m528x
13477 Generate output for a member of the ColdFire 528X family.
13478 The option is now deprecated in favor of the equivalent
13479 @option{-mcpu=528x}.
13480
13481 @item -m5307
13482 @opindex m5307
13483 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
13484 in favor of the equivalent @option{-mcpu=5307}.
13485
13486 @item -m5407
13487 @opindex m5407
13488 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
13489 in favor of the equivalent @option{-mcpu=5407}.
13490
13491 @item -mcfv4e
13492 @opindex mcfv4e
13493 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
13494 This includes use of hardware floating point instructions.
13495 The option is equivalent to @option{-mcpu=547x}, and is now
13496 deprecated in favor of that option.
13497
13498 @item -m68020-40
13499 @opindex m68020-40
13500 Generate output for a 68040, without using any of the new instructions.
13501 This results in code which can run relatively efficiently on either a
13502 68020/68881 or a 68030 or a 68040.  The generated code does use the
13503 68881 instructions that are emulated on the 68040.
13504
13505 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
13506
13507 @item -m68020-60
13508 @opindex m68020-60
13509 Generate output for a 68060, without using any of the new instructions.
13510 This results in code which can run relatively efficiently on either a
13511 68020/68881 or a 68030 or a 68040.  The generated code does use the
13512 68881 instructions that are emulated on the 68060.
13513
13514 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
13515
13516 @item -mhard-float
13517 @itemx -m68881
13518 @opindex mhard-float
13519 @opindex m68881
13520 Generate floating-point instructions.  This is the default for 68020
13521 and above, and for ColdFire devices that have an FPU@.  It defines the
13522 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
13523 on ColdFire targets.
13524
13525 @item -msoft-float
13526 @opindex msoft-float
13527 Do not generate floating-point instructions; use library calls instead.
13528 This is the default for 68000, 68010, and 68832 targets.  It is also
13529 the default for ColdFire devices that have no FPU.
13530
13531 @item -mdiv
13532 @itemx -mno-div
13533 @opindex mdiv
13534 @opindex mno-div
13535 Generate (do not generate) ColdFire hardware divide and remainder
13536 instructions.  If @option{-march} is used without @option{-mcpu},
13537 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
13538 architectures.  Otherwise, the default is taken from the target CPU
13539 (either the default CPU, or the one specified by @option{-mcpu}).  For
13540 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
13541 @option{-mcpu=5206e}.
13542
13543 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
13544
13545 @item -mshort
13546 @opindex mshort
13547 Consider type @code{int} to be 16 bits wide, like @code{short int}.
13548 Additionally, parameters passed on the stack are also aligned to a
13549 16-bit boundary even on targets whose API mandates promotion to 32-bit.
13550
13551 @item -mno-short
13552 @opindex mno-short
13553 Do not consider type @code{int} to be 16 bits wide.  This is the default.
13554
13555 @item -mnobitfield
13556 @itemx -mno-bitfield
13557 @opindex mnobitfield
13558 @opindex mno-bitfield
13559 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
13560 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
13561
13562 @item -mbitfield
13563 @opindex mbitfield
13564 Do use the bit-field instructions.  The @option{-m68020} option implies
13565 @option{-mbitfield}.  This is the default if you use a configuration
13566 designed for a 68020.
13567
13568 @item -mrtd
13569 @opindex mrtd
13570 Use a different function-calling convention, in which functions
13571 that take a fixed number of arguments return with the @code{rtd}
13572 instruction, which pops their arguments while returning.  This
13573 saves one instruction in the caller since there is no need to pop
13574 the arguments there.
13575
13576 This calling convention is incompatible with the one normally
13577 used on Unix, so you cannot use it if you need to call libraries
13578 compiled with the Unix compiler.
13579
13580 Also, you must provide function prototypes for all functions that
13581 take variable numbers of arguments (including @code{printf});
13582 otherwise incorrect code will be generated for calls to those
13583 functions.
13584
13585 In addition, seriously incorrect code will result if you call a
13586 function with too many arguments.  (Normally, extra arguments are
13587 harmlessly ignored.)
13588
13589 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
13590 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
13591
13592 @item -mno-rtd
13593 @opindex mno-rtd
13594 Do not use the calling conventions selected by @option{-mrtd}.
13595 This is the default.
13596
13597 @item -malign-int
13598 @itemx -mno-align-int
13599 @opindex malign-int
13600 @opindex mno-align-int
13601 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
13602 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
13603 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
13604 Aligning variables on 32-bit boundaries produces code that runs somewhat
13605 faster on processors with 32-bit busses at the expense of more memory.
13606
13607 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
13608 align structures containing the above types  differently than
13609 most published application binary interface specifications for the m68k.
13610
13611 @item -mpcrel
13612 @opindex mpcrel
13613 Use the pc-relative addressing mode of the 68000 directly, instead of
13614 using a global offset table.  At present, this option implies @option{-fpic},
13615 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
13616 not presently supported with @option{-mpcrel}, though this could be supported for
13617 68020 and higher processors.
13618
13619 @item -mno-strict-align
13620 @itemx -mstrict-align
13621 @opindex mno-strict-align
13622 @opindex mstrict-align
13623 Do not (do) assume that unaligned memory references will be handled by
13624 the system.
13625
13626 @item -msep-data
13627 Generate code that allows the data segment to be located in a different
13628 area of memory from the text segment.  This allows for execute in place in
13629 an environment without virtual memory management.  This option implies
13630 @option{-fPIC}.
13631
13632 @item -mno-sep-data
13633 Generate code that assumes that the data segment follows the text segment.
13634 This is the default.
13635
13636 @item -mid-shared-library
13637 Generate code that supports shared libraries via the library ID method.
13638 This allows for execute in place and shared libraries in an environment
13639 without virtual memory management.  This option implies @option{-fPIC}.
13640
13641 @item -mno-id-shared-library
13642 Generate code that doesn't assume ID based shared libraries are being used.
13643 This is the default.
13644
13645 @item -mshared-library-id=n
13646 Specified the identification number of the ID based shared library being
13647 compiled.  Specifying a value of 0 will generate more compact code, specifying
13648 other values will force the allocation of that number to the current
13649 library but is no more space or time efficient than omitting this option.
13650
13651 @item -mxgot
13652 @itemx -mno-xgot
13653 @opindex mxgot
13654 @opindex mno-xgot
13655 When generating position-independent code for ColdFire, generate code
13656 that works if the GOT has more than 8192 entries.  This code is
13657 larger and slower than code generated without this option.  On M680x0
13658 processors, this option is not needed; @option{-fPIC} suffices.
13659
13660 GCC normally uses a single instruction to load values from the GOT@.
13661 While this is relatively efficient, it only works if the GOT
13662 is smaller than about 64k.  Anything larger causes the linker
13663 to report an error such as:
13664
13665 @cindex relocation truncated to fit (ColdFire)
13666 @smallexample
13667 relocation truncated to fit: R_68K_GOT16O foobar
13668 @end smallexample
13669
13670 If this happens, you should recompile your code with @option{-mxgot}.
13671 It should then work with very large GOTs.  However, code generated with
13672 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
13673 the value of a global symbol.
13674
13675 Note that some linkers, including newer versions of the GNU linker,
13676 can create multiple GOTs and sort GOT entries.  If you have such a linker,
13677 you should only need to use @option{-mxgot} when compiling a single
13678 object file that accesses more than 8192 GOT entries.  Very few do.
13679
13680 These options have no effect unless GCC is generating
13681 position-independent code.
13682
13683 @end table
13684
13685 @node MCore Options
13686 @subsection MCore Options
13687 @cindex MCore options
13688
13689 These are the @samp{-m} options defined for the Motorola M*Core
13690 processors.
13691
13692 @table @gcctabopt
13693
13694 @item -mhardlit
13695 @itemx -mno-hardlit
13696 @opindex mhardlit
13697 @opindex mno-hardlit
13698 Inline constants into the code stream if it can be done in two
13699 instructions or less.
13700
13701 @item -mdiv
13702 @itemx -mno-div
13703 @opindex mdiv
13704 @opindex mno-div
13705 Use the divide instruction.  (Enabled by default).
13706
13707 @item -mrelax-immediate
13708 @itemx -mno-relax-immediate
13709 @opindex mrelax-immediate
13710 @opindex mno-relax-immediate
13711 Allow arbitrary sized immediates in bit operations.
13712
13713 @item -mwide-bitfields
13714 @itemx -mno-wide-bitfields
13715 @opindex mwide-bitfields
13716 @opindex mno-wide-bitfields
13717 Always treat bit-fields as int-sized.
13718
13719 @item -m4byte-functions
13720 @itemx -mno-4byte-functions
13721 @opindex m4byte-functions
13722 @opindex mno-4byte-functions
13723 Force all functions to be aligned to a four byte boundary.
13724
13725 @item -mcallgraph-data
13726 @itemx -mno-callgraph-data
13727 @opindex mcallgraph-data
13728 @opindex mno-callgraph-data
13729 Emit callgraph information.
13730
13731 @item -mslow-bytes
13732 @itemx -mno-slow-bytes
13733 @opindex mslow-bytes
13734 @opindex mno-slow-bytes
13735 Prefer word access when reading byte quantities.
13736
13737 @item -mlittle-endian
13738 @itemx -mbig-endian
13739 @opindex mlittle-endian
13740 @opindex mbig-endian
13741 Generate code for a little endian target.
13742
13743 @item -m210
13744 @itemx -m340
13745 @opindex m210
13746 @opindex m340
13747 Generate code for the 210 processor.
13748
13749 @item -mno-lsim
13750 @opindex mno-lsim
13751 Assume that run-time support has been provided and so omit the
13752 simulator library (@file{libsim.a)} from the linker command line.
13753
13754 @item -mstack-increment=@var{size}
13755 @opindex mstack-increment
13756 Set the maximum amount for a single stack increment operation.  Large
13757 values can increase the speed of programs which contain functions
13758 that need a large amount of stack space, but they can also trigger a
13759 segmentation fault if the stack is extended too much.  The default
13760 value is 0x1000.
13761
13762 @end table
13763
13764 @node MeP Options
13765 @subsection MeP Options
13766 @cindex MeP options
13767
13768 @table @gcctabopt
13769
13770 @item -mabsdiff
13771 @opindex mabsdiff
13772 Enables the @code{abs} instruction, which is the absolute difference
13773 between two registers.
13774
13775 @item -mall-opts
13776 @opindex mall-opts
13777 Enables all the optional instructions - average, multiply, divide, bit
13778 operations, leading zero, absolute difference, min/max, clip, and
13779 saturation.
13780
13781
13782 @item -maverage
13783 @opindex maverage
13784 Enables the @code{ave} instruction, which computes the average of two
13785 registers.
13786
13787 @item -mbased=@var{n}
13788 @opindex mbased=
13789 Variables of size @var{n} bytes or smaller will be placed in the
13790 @code{.based} section by default.  Based variables use the @code{$tp}
13791 register as a base register, and there is a 128 byte limit to the
13792 @code{.based} section.
13793
13794 @item -mbitops
13795 @opindex mbitops
13796 Enables the bit operation instructions - bit test (@code{btstm}), set
13797 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
13798 test-and-set (@code{tas}).
13799
13800 @item -mc=@var{name}
13801 @opindex mc=
13802 Selects which section constant data will be placed in.  @var{name} may
13803 be @code{tiny}, @code{near}, or @code{far}.
13804
13805 @item -mclip
13806 @opindex mclip
13807 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
13808 useful unless you also provide @code{-mminmax}.
13809
13810 @item -mconfig=@var{name}
13811 @opindex mconfig=
13812 Selects one of the build-in core configurations.  Each MeP chip has
13813 one or more modules in it; each module has a core CPU and a variety of
13814 coprocessors, optional instructions, and peripherals.  The
13815 @code{MeP-Integrator} tool, not part of GCC, provides these
13816 configurations through this option; using this option is the same as
13817 using all the corresponding command line options.  The default
13818 configuration is @code{default}.
13819
13820 @item -mcop
13821 @opindex mcop
13822 Enables the coprocessor instructions.  By default, this is a 32-bit
13823 coprocessor.  Note that the coprocessor is normally enabled via the
13824 @code{-mconfig=} option.
13825
13826 @item -mcop32
13827 @opindex mcop32
13828 Enables the 32-bit coprocessor's instructions.
13829
13830 @item -mcop64
13831 @opindex mcop64
13832 Enables the 64-bit coprocessor's instructions.
13833
13834 @item -mivc2
13835 @opindex mivc2
13836 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
13837
13838 @item -mdc
13839 @opindex mdc
13840 Causes constant variables to be placed in the @code{.near} section.
13841
13842 @item -mdiv
13843 @opindex mdiv
13844 Enables the @code{div} and @code{divu} instructions.
13845
13846 @item -meb
13847 @opindex meb
13848 Generate big-endian code.
13849
13850 @item -mel
13851 @opindex mel
13852 Generate little-endian code.
13853
13854 @item -mio-volatile
13855 @opindex mio-volatile
13856 Tells the compiler that any variable marked with the @code{io}
13857 attribute is to be considered volatile.
13858
13859 @item -ml
13860 @opindex ml
13861 Causes variables to be assigned to the @code{.far} section by default.
13862
13863 @item -mleadz
13864 @opindex mleadz
13865 Enables the @code{leadz} (leading zero) instruction.
13866
13867 @item -mm
13868 @opindex mm
13869 Causes variables to be assigned to the @code{.near} section by default.
13870
13871 @item -mminmax
13872 @opindex mminmax
13873 Enables the @code{min} and @code{max} instructions.
13874
13875 @item -mmult
13876 @opindex mmult
13877 Enables the multiplication and multiply-accumulate instructions.
13878
13879 @item -mno-opts
13880 @opindex mno-opts
13881 Disables all the optional instructions enabled by @code{-mall-opts}.
13882
13883 @item -mrepeat
13884 @opindex mrepeat
13885 Enables the @code{repeat} and @code{erepeat} instructions, used for
13886 low-overhead looping.
13887
13888 @item -ms
13889 @opindex ms
13890 Causes all variables to default to the @code{.tiny} section.  Note
13891 that there is a 65536 byte limit to this section.  Accesses to these
13892 variables use the @code{%gp} base register.
13893
13894 @item -msatur
13895 @opindex msatur
13896 Enables the saturation instructions.  Note that the compiler does not
13897 currently generate these itself, but this option is included for
13898 compatibility with other tools, like @code{as}.
13899
13900 @item -msdram
13901 @opindex msdram
13902 Link the SDRAM-based runtime instead of the default ROM-based runtime.
13903
13904 @item -msim
13905 @opindex msim
13906 Link the simulator runtime libraries.
13907
13908 @item -msimnovec
13909 @opindex msimnovec
13910 Link the simulator runtime libraries, excluding built-in support
13911 for reset and exception vectors and tables.
13912
13913 @item -mtf
13914 @opindex mtf
13915 Causes all functions to default to the @code{.far} section.  Without
13916 this option, functions default to the @code{.near} section.
13917
13918 @item -mtiny=@var{n}
13919 @opindex mtiny=
13920 Variables that are @var{n} bytes or smaller will be allocated to the
13921 @code{.tiny} section.  These variables use the @code{$gp} base
13922 register.  The default for this option is 4, but note that there's a
13923 65536 byte limit to the @code{.tiny} section.
13924
13925 @end table
13926
13927 @node MicroBlaze Options
13928 @subsection MicroBlaze Options
13929 @cindex MicroBlaze Options
13930
13931 @table @gcctabopt
13932
13933 @item -msoft-float
13934 @opindex msoft-float
13935 Use software emulation for floating point (default).
13936
13937 @item -mhard-float
13938 @opindex mhard-float
13939 Use hardware floating point instructions.
13940
13941 @item -mmemcpy
13942 @opindex mmemcpy
13943 Do not optimize block moves, use @code{memcpy}.
13944
13945 @item -mno-clearbss
13946 @opindex mno-clearbss
13947 This option is deprecated.  Use @option{-fno-zero-initialized-in-bss} instead.
13948
13949 @item -mcpu=@var{cpu-type}
13950 @opindex mcpu=
13951 Use features of and schedule code for given CPU.
13952 Supported values are in the format @samp{v@var{X}.@var{YY}.@var{Z}},
13953 where @var{X} is a major version, @var{YY} is the minor version, and
13954 @var{Z} is compatibility code.  Example values are @samp{v3.00.a},
13955 @samp{v4.00.b}, @samp{v5.00.a}, @samp{v5.00.b}, @samp{v5.00.b}, @samp{v6.00.a}.
13956
13957 @item -mxl-soft-mul
13958 @opindex mxl-soft-mul
13959 Use software multiply emulation (default).
13960
13961 @item -mxl-soft-div
13962 @opindex mxl-soft-div
13963 Use software emulation for divides (default).
13964
13965 @item -mxl-barrel-shift
13966 @opindex mxl-barrel-shift
13967 Use the hardware barrel shifter.
13968
13969 @item -mxl-pattern-compare
13970 @opindex mxl-pattern-compare
13971 Use pattern compare instructions.
13972
13973 @item -msmall-divides
13974 @opindex msmall-divides
13975 Use table lookup optimization for small signed integer divisions.
13976
13977 @item -mxl-stack-check
13978 @opindex mxl-stack-check
13979 This option is deprecated.  Use -fstack-check instead.
13980
13981 @item -mxl-gp-opt
13982 @opindex mxl-gp-opt
13983 Use GP relative sdata/sbss sections.
13984
13985 @item -mxl-multiply-high
13986 @opindex mxl-multiply-high
13987 Use multiply high instructions for high part of 32x32 multiply.
13988
13989 @item -mxl-float-convert
13990 @opindex mxl-float-convert
13991 Use hardware floating point conversion instructions.
13992
13993 @item -mxl-float-sqrt
13994 @opindex mxl-float-sqrt
13995 Use hardware floating point square root instruction.
13996
13997 @item -mxl-mode-@var{app-model}
13998 Select application model @var{app-model}.  Valid models are
13999 @table @samp
14000 @item executable
14001 normal executable (default), uses startup code @file{crt0.o}.
14002
14003 @item xmdstub
14004 for use with Xilinx Microprocessor Debugger (XMD) based
14005 software intrusive debug agent called xmdstub. This uses startup file
14006 @file{crt1.o} and sets the start address of the program to be 0x800.
14007
14008 @item bootstrap
14009 for applications that are loaded using a bootloader.
14010 This model uses startup file @file{crt2.o} which does not contain a processor
14011 reset vector handler. This is suitable for transferring control on a
14012 processor reset to the bootloader rather than the application.
14013
14014 @item novectors
14015 for applications that do not require any of the
14016 MicroBlaze vectors. This option may be useful for applications running
14017 within a monitoring application. This model uses @file{crt3.o} as a startup file.
14018 @end table
14019
14020 Option @option{-xl-mode-@var{app-model}} is a deprecated alias for
14021 @option{-mxl-mode-@var{app-model}}.
14022
14023 @end table
14024
14025 @node MIPS Options
14026 @subsection MIPS Options
14027 @cindex MIPS options
14028
14029 @table @gcctabopt
14030
14031 @item -EB
14032 @opindex EB
14033 Generate big-endian code.
14034
14035 @item -EL
14036 @opindex EL
14037 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
14038 configurations.
14039
14040 @item -march=@var{arch}
14041 @opindex march
14042 Generate code that will run on @var{arch}, which can be the name of a
14043 generic MIPS ISA, or the name of a particular processor.
14044 The ISA names are:
14045 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
14046 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
14047 The processor names are:
14048 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
14049 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
14050 @samp{5kc}, @samp{5kf},
14051 @samp{20kc},
14052 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
14053 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
14054 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
14055 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
14056 @samp{1004kc}, @samp{1004kf2_1}, @samp{1004kf1_1},
14057 @samp{loongson2e}, @samp{loongson2f}, @samp{loongson3a},
14058 @samp{m4k},
14059 @samp{octeon},
14060 @samp{orion},
14061 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
14062 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
14063 @samp{rm7000}, @samp{rm9000},
14064 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
14065 @samp{sb1},
14066 @samp{sr71000},
14067 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
14068 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
14069 and @samp{xlr}.
14070 The special value @samp{from-abi} selects the
14071 most compatible architecture for the selected ABI (that is,
14072 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
14073
14074 Native Linux/GNU toolchains also support the value @samp{native},
14075 which selects the best architecture option for the host processor.
14076 @option{-march=native} has no effect if GCC does not recognize
14077 the processor.
14078
14079 In processor names, a final @samp{000} can be abbreviated as @samp{k}
14080 (for example, @samp{-march=r2k}).  Prefixes are optional, and
14081 @samp{vr} may be written @samp{r}.
14082
14083 Names of the form @samp{@var{n}f2_1} refer to processors with
14084 FPUs clocked at half the rate of the core, names of the form
14085 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
14086 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
14087 processors with FPUs clocked a ratio of 3:2 with respect to the core.
14088 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
14089 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
14090 accepted as synonyms for @samp{@var{n}f1_1}.
14091
14092 GCC defines two macros based on the value of this option.  The first
14093 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
14094 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
14095 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
14096 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
14097 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
14098
14099 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
14100 above.  In other words, it will have the full prefix and will not
14101 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
14102 the macro names the resolved architecture (either @samp{"mips1"} or
14103 @samp{"mips3"}).  It names the default architecture when no
14104 @option{-march} option is given.
14105
14106 @item -mtune=@var{arch}
14107 @opindex mtune
14108 Optimize for @var{arch}.  Among other things, this option controls
14109 the way instructions are scheduled, and the perceived cost of arithmetic
14110 operations.  The list of @var{arch} values is the same as for
14111 @option{-march}.
14112
14113 When this option is not used, GCC will optimize for the processor
14114 specified by @option{-march}.  By using @option{-march} and
14115 @option{-mtune} together, it is possible to generate code that will
14116 run on a family of processors, but optimize the code for one
14117 particular member of that family.
14118
14119 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
14120 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
14121 @samp{-march} ones described above.
14122
14123 @item -mips1
14124 @opindex mips1
14125 Equivalent to @samp{-march=mips1}.
14126
14127 @item -mips2
14128 @opindex mips2
14129 Equivalent to @samp{-march=mips2}.
14130
14131 @item -mips3
14132 @opindex mips3
14133 Equivalent to @samp{-march=mips3}.
14134
14135 @item -mips4
14136 @opindex mips4
14137 Equivalent to @samp{-march=mips4}.
14138
14139 @item -mips32
14140 @opindex mips32
14141 Equivalent to @samp{-march=mips32}.
14142
14143 @item -mips32r2
14144 @opindex mips32r2
14145 Equivalent to @samp{-march=mips32r2}.
14146
14147 @item -mips64
14148 @opindex mips64
14149 Equivalent to @samp{-march=mips64}.
14150
14151 @item -mips64r2
14152 @opindex mips64r2
14153 Equivalent to @samp{-march=mips64r2}.
14154
14155 @item -mips16
14156 @itemx -mno-mips16
14157 @opindex mips16
14158 @opindex mno-mips16
14159 Generate (do not generate) MIPS16 code.  If GCC is targetting a
14160 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
14161
14162 MIPS16 code generation can also be controlled on a per-function basis
14163 by means of @code{mips16} and @code{nomips16} attributes.
14164 @xref{Function Attributes}, for more information.
14165
14166 @item -mflip-mips16
14167 @opindex mflip-mips16
14168 Generate MIPS16 code on alternating functions.  This option is provided
14169 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
14170 not intended for ordinary use in compiling user code.
14171
14172 @item -minterlink-mips16
14173 @itemx -mno-interlink-mips16
14174 @opindex minterlink-mips16
14175 @opindex mno-interlink-mips16
14176 Require (do not require) that non-MIPS16 code be link-compatible with
14177 MIPS16 code.
14178
14179 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
14180 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
14181 therefore disables direct jumps unless GCC knows that the target of the
14182 jump is not MIPS16.
14183
14184 @item -mabi=32
14185 @itemx -mabi=o64
14186 @itemx -mabi=n32
14187 @itemx -mabi=64
14188 @itemx -mabi=eabi
14189 @opindex mabi=32
14190 @opindex mabi=o64
14191 @opindex mabi=n32
14192 @opindex mabi=64
14193 @opindex mabi=eabi
14194 Generate code for the given ABI@.
14195
14196 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
14197 generates 64-bit code when you select a 64-bit architecture, but you
14198 can use @option{-mgp32} to get 32-bit code instead.
14199
14200 For information about the O64 ABI, see
14201 @uref{http://gcc.gnu.org/@/projects/@/mipso64-abi.html}.
14202
14203 GCC supports a variant of the o32 ABI in which floating-point registers
14204 are 64 rather than 32 bits wide.  You can select this combination with
14205 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
14206 and @samp{mfhc1} instructions and is therefore only supported for
14207 MIPS32R2 processors.
14208
14209 The register assignments for arguments and return values remain the
14210 same, but each scalar value is passed in a single 64-bit register
14211 rather than a pair of 32-bit registers.  For example, scalar
14212 floating-point values are returned in @samp{$f0} only, not a
14213 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
14214 remains the same, but all 64 bits are saved.
14215
14216 @item -mabicalls
14217 @itemx -mno-abicalls
14218 @opindex mabicalls
14219 @opindex mno-abicalls
14220 Generate (do not generate) code that is suitable for SVR4-style
14221 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
14222 systems.
14223
14224 @item -mshared
14225 @itemx -mno-shared
14226 Generate (do not generate) code that is fully position-independent,
14227 and that can therefore be linked into shared libraries.  This option
14228 only affects @option{-mabicalls}.
14229
14230 All @option{-mabicalls} code has traditionally been position-independent,
14231 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
14232 as an extension, the GNU toolchain allows executables to use absolute
14233 accesses for locally-binding symbols.  It can also use shorter GP
14234 initialization sequences and generate direct calls to locally-defined
14235 functions.  This mode is selected by @option{-mno-shared}.
14236
14237 @option{-mno-shared} depends on binutils 2.16 or higher and generates
14238 objects that can only be linked by the GNU linker.  However, the option
14239 does not affect the ABI of the final executable; it only affects the ABI
14240 of relocatable objects.  Using @option{-mno-shared} will generally make
14241 executables both smaller and quicker.
14242
14243 @option{-mshared} is the default.
14244
14245 @item -mplt
14246 @itemx -mno-plt
14247 @opindex mplt
14248 @opindex mno-plt
14249 Assume (do not assume) that the static and dynamic linkers
14250 support PLTs and copy relocations.  This option only affects
14251 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
14252 has no effect without @samp{-msym32}.
14253
14254 You can make @option{-mplt} the default by configuring
14255 GCC with @option{--with-mips-plt}.  The default is
14256 @option{-mno-plt} otherwise.
14257
14258 @item -mxgot
14259 @itemx -mno-xgot
14260 @opindex mxgot
14261 @opindex mno-xgot
14262 Lift (do not lift) the usual restrictions on the size of the global
14263 offset table.
14264
14265 GCC normally uses a single instruction to load values from the GOT@.
14266 While this is relatively efficient, it will only work if the GOT
14267 is smaller than about 64k.  Anything larger will cause the linker
14268 to report an error such as:
14269
14270 @cindex relocation truncated to fit (MIPS)
14271 @smallexample
14272 relocation truncated to fit: R_MIPS_GOT16 foobar
14273 @end smallexample
14274
14275 If this happens, you should recompile your code with @option{-mxgot}.
14276 It should then work with very large GOTs, although it will also be
14277 less efficient, since it will take three instructions to fetch the
14278 value of a global symbol.
14279
14280 Note that some linkers can create multiple GOTs.  If you have such a
14281 linker, you should only need to use @option{-mxgot} when a single object
14282 file accesses more than 64k's worth of GOT entries.  Very few do.
14283
14284 These options have no effect unless GCC is generating position
14285 independent code.
14286
14287 @item -mgp32
14288 @opindex mgp32
14289 Assume that general-purpose registers are 32 bits wide.
14290
14291 @item -mgp64
14292 @opindex mgp64
14293 Assume that general-purpose registers are 64 bits wide.
14294
14295 @item -mfp32
14296 @opindex mfp32
14297 Assume that floating-point registers are 32 bits wide.
14298
14299 @item -mfp64
14300 @opindex mfp64
14301 Assume that floating-point registers are 64 bits wide.
14302
14303 @item -mhard-float
14304 @opindex mhard-float
14305 Use floating-point coprocessor instructions.
14306
14307 @item -msoft-float
14308 @opindex msoft-float
14309 Do not use floating-point coprocessor instructions.  Implement
14310 floating-point calculations using library calls instead.
14311
14312 @item -msingle-float
14313 @opindex msingle-float
14314 Assume that the floating-point coprocessor only supports single-precision
14315 operations.
14316
14317 @item -mdouble-float
14318 @opindex mdouble-float
14319 Assume that the floating-point coprocessor supports double-precision
14320 operations.  This is the default.
14321
14322 @item -mllsc
14323 @itemx -mno-llsc
14324 @opindex mllsc
14325 @opindex mno-llsc
14326 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
14327 implement atomic memory built-in functions.  When neither option is
14328 specified, GCC will use the instructions if the target architecture
14329 supports them.
14330
14331 @option{-mllsc} is useful if the runtime environment can emulate the
14332 instructions and @option{-mno-llsc} can be useful when compiling for
14333 nonstandard ISAs.  You can make either option the default by
14334 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
14335 respectively.  @option{--with-llsc} is the default for some
14336 configurations; see the installation documentation for details.
14337
14338 @item -mdsp
14339 @itemx -mno-dsp
14340 @opindex mdsp
14341 @opindex mno-dsp
14342 Use (do not use) revision 1 of the MIPS DSP ASE@.
14343 @xref{MIPS DSP Built-in Functions}.  This option defines the
14344 preprocessor macro @samp{__mips_dsp}.  It also defines
14345 @samp{__mips_dsp_rev} to 1.
14346
14347 @item -mdspr2
14348 @itemx -mno-dspr2
14349 @opindex mdspr2
14350 @opindex mno-dspr2
14351 Use (do not use) revision 2 of the MIPS DSP ASE@.
14352 @xref{MIPS DSP Built-in Functions}.  This option defines the
14353 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
14354 It also defines @samp{__mips_dsp_rev} to 2.
14355
14356 @item -msmartmips
14357 @itemx -mno-smartmips
14358 @opindex msmartmips
14359 @opindex mno-smartmips
14360 Use (do not use) the MIPS SmartMIPS ASE.
14361
14362 @item -mpaired-single
14363 @itemx -mno-paired-single
14364 @opindex mpaired-single
14365 @opindex mno-paired-single
14366 Use (do not use) paired-single floating-point instructions.
14367 @xref{MIPS Paired-Single Support}.  This option requires
14368 hardware floating-point support to be enabled.
14369
14370 @item -mdmx
14371 @itemx -mno-mdmx
14372 @opindex mdmx
14373 @opindex mno-mdmx
14374 Use (do not use) MIPS Digital Media Extension instructions.
14375 This option can only be used when generating 64-bit code and requires
14376 hardware floating-point support to be enabled.
14377
14378 @item -mips3d
14379 @itemx -mno-mips3d
14380 @opindex mips3d
14381 @opindex mno-mips3d
14382 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
14383 The option @option{-mips3d} implies @option{-mpaired-single}.
14384
14385 @item -mmt
14386 @itemx -mno-mt
14387 @opindex mmt
14388 @opindex mno-mt
14389 Use (do not use) MT Multithreading instructions.
14390
14391 @item -mlong64
14392 @opindex mlong64
14393 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
14394 an explanation of the default and the way that the pointer size is
14395 determined.
14396
14397 @item -mlong32
14398 @opindex mlong32
14399 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
14400
14401 The default size of @code{int}s, @code{long}s and pointers depends on
14402 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
14403 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
14404 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
14405 or the same size as integer registers, whichever is smaller.
14406
14407 @item -msym32
14408 @itemx -mno-sym32
14409 @opindex msym32
14410 @opindex mno-sym32
14411 Assume (do not assume) that all symbols have 32-bit values, regardless
14412 of the selected ABI@.  This option is useful in combination with
14413 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
14414 to generate shorter and faster references to symbolic addresses.
14415
14416 @item -G @var{num}
14417 @opindex G
14418 Put definitions of externally-visible data in a small data section
14419 if that data is no bigger than @var{num} bytes.  GCC can then access
14420 the data more efficiently; see @option{-mgpopt} for details.
14421
14422 The default @option{-G} option depends on the configuration.
14423
14424 @item -mlocal-sdata
14425 @itemx -mno-local-sdata
14426 @opindex mlocal-sdata
14427 @opindex mno-local-sdata
14428 Extend (do not extend) the @option{-G} behavior to local data too,
14429 such as to static variables in C@.  @option{-mlocal-sdata} is the
14430 default for all configurations.
14431
14432 If the linker complains that an application is using too much small data,
14433 you might want to try rebuilding the less performance-critical parts with
14434 @option{-mno-local-sdata}.  You might also want to build large
14435 libraries with @option{-mno-local-sdata}, so that the libraries leave
14436 more room for the main program.
14437
14438 @item -mextern-sdata
14439 @itemx -mno-extern-sdata
14440 @opindex mextern-sdata
14441 @opindex mno-extern-sdata
14442 Assume (do not assume) that externally-defined data will be in
14443 a small data section if that data is within the @option{-G} limit.
14444 @option{-mextern-sdata} is the default for all configurations.
14445
14446 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
14447 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
14448 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
14449 is placed in a small data section.  If @var{Var} is defined by another
14450 module, you must either compile that module with a high-enough
14451 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
14452 definition.  If @var{Var} is common, you must link the application
14453 with a high-enough @option{-G} setting.
14454
14455 The easiest way of satisfying these restrictions is to compile
14456 and link every module with the same @option{-G} option.  However,
14457 you may wish to build a library that supports several different
14458 small data limits.  You can do this by compiling the library with
14459 the highest supported @option{-G} setting and additionally using
14460 @option{-mno-extern-sdata} to stop the library from making assumptions
14461 about externally-defined data.
14462
14463 @item -mgpopt
14464 @itemx -mno-gpopt
14465 @opindex mgpopt
14466 @opindex mno-gpopt
14467 Use (do not use) GP-relative accesses for symbols that are known to be
14468 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
14469 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
14470 configurations.
14471
14472 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
14473 might not hold the value of @code{_gp}.  For example, if the code is
14474 part of a library that might be used in a boot monitor, programs that
14475 call boot monitor routines will pass an unknown value in @code{$gp}.
14476 (In such situations, the boot monitor itself would usually be compiled
14477 with @option{-G0}.)
14478
14479 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
14480 @option{-mno-extern-sdata}.
14481
14482 @item -membedded-data
14483 @itemx -mno-embedded-data
14484 @opindex membedded-data
14485 @opindex mno-embedded-data
14486 Allocate variables to the read-only data section first if possible, then
14487 next in the small data section if possible, otherwise in data.  This gives
14488 slightly slower code than the default, but reduces the amount of RAM required
14489 when executing, and thus may be preferred for some embedded systems.
14490
14491 @item -muninit-const-in-rodata
14492 @itemx -mno-uninit-const-in-rodata
14493 @opindex muninit-const-in-rodata
14494 @opindex mno-uninit-const-in-rodata
14495 Put uninitialized @code{const} variables in the read-only data section.
14496 This option is only meaningful in conjunction with @option{-membedded-data}.
14497
14498 @item -mcode-readable=@var{setting}
14499 @opindex mcode-readable
14500 Specify whether GCC may generate code that reads from executable sections.
14501 There are three possible settings:
14502
14503 @table @gcctabopt
14504 @item -mcode-readable=yes
14505 Instructions may freely access executable sections.  This is the
14506 default setting.
14507
14508 @item -mcode-readable=pcrel
14509 MIPS16 PC-relative load instructions can access executable sections,
14510 but other instructions must not do so.  This option is useful on 4KSc
14511 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
14512 It is also useful on processors that can be configured to have a dual
14513 instruction/data SRAM interface and that, like the M4K, automatically
14514 redirect PC-relative loads to the instruction RAM.
14515
14516 @item -mcode-readable=no
14517 Instructions must not access executable sections.  This option can be
14518 useful on targets that are configured to have a dual instruction/data
14519 SRAM interface but that (unlike the M4K) do not automatically redirect
14520 PC-relative loads to the instruction RAM.
14521 @end table
14522
14523 @item -msplit-addresses
14524 @itemx -mno-split-addresses
14525 @opindex msplit-addresses
14526 @opindex mno-split-addresses
14527 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
14528 relocation operators.  This option has been superseded by
14529 @option{-mexplicit-relocs} but is retained for backwards compatibility.
14530
14531 @item -mexplicit-relocs
14532 @itemx -mno-explicit-relocs
14533 @opindex mexplicit-relocs
14534 @opindex mno-explicit-relocs
14535 Use (do not use) assembler relocation operators when dealing with symbolic
14536 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
14537 is to use assembler macros instead.
14538
14539 @option{-mexplicit-relocs} is the default if GCC was configured
14540 to use an assembler that supports relocation operators.
14541
14542 @item -mcheck-zero-division
14543 @itemx -mno-check-zero-division
14544 @opindex mcheck-zero-division
14545 @opindex mno-check-zero-division
14546 Trap (do not trap) on integer division by zero.
14547
14548 The default is @option{-mcheck-zero-division}.
14549
14550 @item -mdivide-traps
14551 @itemx -mdivide-breaks
14552 @opindex mdivide-traps
14553 @opindex mdivide-breaks
14554 MIPS systems check for division by zero by generating either a
14555 conditional trap or a break instruction.  Using traps results in
14556 smaller code, but is only supported on MIPS II and later.  Also, some
14557 versions of the Linux kernel have a bug that prevents trap from
14558 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
14559 allow conditional traps on architectures that support them and
14560 @option{-mdivide-breaks} to force the use of breaks.
14561
14562 The default is usually @option{-mdivide-traps}, but this can be
14563 overridden at configure time using @option{--with-divide=breaks}.
14564 Divide-by-zero checks can be completely disabled using
14565 @option{-mno-check-zero-division}.
14566
14567 @item -mmemcpy
14568 @itemx -mno-memcpy
14569 @opindex mmemcpy
14570 @opindex mno-memcpy
14571 Force (do not force) the use of @code{memcpy()} for non-trivial block
14572 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
14573 most constant-sized copies.
14574
14575 @item -mlong-calls
14576 @itemx -mno-long-calls
14577 @opindex mlong-calls
14578 @opindex mno-long-calls
14579 Disable (do not disable) use of the @code{jal} instruction.  Calling
14580 functions using @code{jal} is more efficient but requires the caller
14581 and callee to be in the same 256 megabyte segment.
14582
14583 This option has no effect on abicalls code.  The default is
14584 @option{-mno-long-calls}.
14585
14586 @item -mmad
14587 @itemx -mno-mad
14588 @opindex mmad
14589 @opindex mno-mad
14590 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
14591 instructions, as provided by the R4650 ISA@.
14592
14593 @item -mfused-madd
14594 @itemx -mno-fused-madd
14595 @opindex mfused-madd
14596 @opindex mno-fused-madd
14597 Enable (disable) use of the floating point multiply-accumulate
14598 instructions, when they are available.  The default is
14599 @option{-mfused-madd}.
14600
14601 When multiply-accumulate instructions are used, the intermediate
14602 product is calculated to infinite precision and is not subject to
14603 the FCSR Flush to Zero bit.  This may be undesirable in some
14604 circumstances.
14605
14606 @item -nocpp
14607 @opindex nocpp
14608 Tell the MIPS assembler to not run its preprocessor over user
14609 assembler files (with a @samp{.s} suffix) when assembling them.
14610
14611 @item -mfix-24k
14612 @item -mno-fix-24k
14613 @opindex mfix-24k
14614 @opindex mno-fix-24k
14615 Work around the 24K E48 (lost data on stores during refill) errata.
14616 The workarounds are implemented by the assembler rather than by GCC.
14617
14618 @item -mfix-r4000
14619 @itemx -mno-fix-r4000
14620 @opindex mfix-r4000
14621 @opindex mno-fix-r4000
14622 Work around certain R4000 CPU errata:
14623 @itemize @minus
14624 @item
14625 A double-word or a variable shift may give an incorrect result if executed
14626 immediately after starting an integer division.
14627 @item
14628 A double-word or a variable shift may give an incorrect result if executed
14629 while an integer multiplication is in progress.
14630 @item
14631 An integer division may give an incorrect result if started in a delay slot
14632 of a taken branch or a jump.
14633 @end itemize
14634
14635 @item -mfix-r4400
14636 @itemx -mno-fix-r4400
14637 @opindex mfix-r4400
14638 @opindex mno-fix-r4400
14639 Work around certain R4400 CPU errata:
14640 @itemize @minus
14641 @item
14642 A double-word or a variable shift may give an incorrect result if executed
14643 immediately after starting an integer division.
14644 @end itemize
14645
14646 @item -mfix-r10000
14647 @itemx -mno-fix-r10000
14648 @opindex mfix-r10000
14649 @opindex mno-fix-r10000
14650 Work around certain R10000 errata:
14651 @itemize @minus
14652 @item
14653 @code{ll}/@code{sc} sequences may not behave atomically on revisions
14654 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
14655 @end itemize
14656
14657 This option can only be used if the target architecture supports
14658 branch-likely instructions.  @option{-mfix-r10000} is the default when
14659 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
14660 otherwise.
14661
14662 @item -mfix-vr4120
14663 @itemx -mno-fix-vr4120
14664 @opindex mfix-vr4120
14665 Work around certain VR4120 errata:
14666 @itemize @minus
14667 @item
14668 @code{dmultu} does not always produce the correct result.
14669 @item
14670 @code{div} and @code{ddiv} do not always produce the correct result if one
14671 of the operands is negative.
14672 @end itemize
14673 The workarounds for the division errata rely on special functions in
14674 @file{libgcc.a}.  At present, these functions are only provided by
14675 the @code{mips64vr*-elf} configurations.
14676
14677 Other VR4120 errata require a nop to be inserted between certain pairs of
14678 instructions.  These errata are handled by the assembler, not by GCC itself.
14679
14680 @item -mfix-vr4130
14681 @opindex mfix-vr4130
14682 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
14683 workarounds are implemented by the assembler rather than by GCC,
14684 although GCC will avoid using @code{mflo} and @code{mfhi} if the
14685 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
14686 instructions are available instead.
14687
14688 @item -mfix-sb1
14689 @itemx -mno-fix-sb1
14690 @opindex mfix-sb1
14691 Work around certain SB-1 CPU core errata.
14692 (This flag currently works around the SB-1 revision 2
14693 ``F1'' and ``F2'' floating point errata.)
14694
14695 @item -mr10k-cache-barrier=@var{setting}
14696 @opindex mr10k-cache-barrier
14697 Specify whether GCC should insert cache barriers to avoid the
14698 side-effects of speculation on R10K processors.
14699
14700 In common with many processors, the R10K tries to predict the outcome
14701 of a conditional branch and speculatively executes instructions from
14702 the ``taken'' branch.  It later aborts these instructions if the
14703 predicted outcome was wrong.  However, on the R10K, even aborted
14704 instructions can have side effects.
14705
14706 This problem only affects kernel stores and, depending on the system,
14707 kernel loads.  As an example, a speculatively-executed store may load
14708 the target memory into cache and mark the cache line as dirty, even if
14709 the store itself is later aborted.  If a DMA operation writes to the
14710 same area of memory before the ``dirty'' line is flushed, the cached
14711 data will overwrite the DMA-ed data.  See the R10K processor manual
14712 for a full description, including other potential problems.
14713
14714 One workaround is to insert cache barrier instructions before every memory
14715 access that might be speculatively executed and that might have side
14716 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
14717 controls GCC's implementation of this workaround.  It assumes that
14718 aborted accesses to any byte in the following regions will not have
14719 side effects:
14720
14721 @enumerate
14722 @item
14723 the memory occupied by the current function's stack frame;
14724
14725 @item
14726 the memory occupied by an incoming stack argument;
14727
14728 @item
14729 the memory occupied by an object with a link-time-constant address.
14730 @end enumerate
14731
14732 It is the kernel's responsibility to ensure that speculative
14733 accesses to these regions are indeed safe.
14734
14735 If the input program contains a function declaration such as:
14736
14737 @smallexample
14738 void foo (void);
14739 @end smallexample
14740
14741 then the implementation of @code{foo} must allow @code{j foo} and
14742 @code{jal foo} to be executed speculatively.  GCC honors this
14743 restriction for functions it compiles itself.  It expects non-GCC
14744 functions (such as hand-written assembly code) to do the same.
14745
14746 The option has three forms:
14747
14748 @table @gcctabopt
14749 @item -mr10k-cache-barrier=load-store
14750 Insert a cache barrier before a load or store that might be
14751 speculatively executed and that might have side effects even
14752 if aborted.
14753
14754 @item -mr10k-cache-barrier=store
14755 Insert a cache barrier before a store that might be speculatively
14756 executed and that might have side effects even if aborted.
14757
14758 @item -mr10k-cache-barrier=none
14759 Disable the insertion of cache barriers.  This is the default setting.
14760 @end table
14761
14762 @item -mflush-func=@var{func}
14763 @itemx -mno-flush-func
14764 @opindex mflush-func
14765 Specifies the function to call to flush the I and D caches, or to not
14766 call any such function.  If called, the function must take the same
14767 arguments as the common @code{_flush_func()}, that is, the address of the
14768 memory range for which the cache is being flushed, the size of the
14769 memory range, and the number 3 (to flush both caches).  The default
14770 depends on the target GCC was configured for, but commonly is either
14771 @samp{_flush_func} or @samp{__cpu_flush}.
14772
14773 @item mbranch-cost=@var{num}
14774 @opindex mbranch-cost
14775 Set the cost of branches to roughly @var{num} ``simple'' instructions.
14776 This cost is only a heuristic and is not guaranteed to produce
14777 consistent results across releases.  A zero cost redundantly selects
14778 the default, which is based on the @option{-mtune} setting.
14779
14780 @item -mbranch-likely
14781 @itemx -mno-branch-likely
14782 @opindex mbranch-likely
14783 @opindex mno-branch-likely
14784 Enable or disable use of Branch Likely instructions, regardless of the
14785 default for the selected architecture.  By default, Branch Likely
14786 instructions may be generated if they are supported by the selected
14787 architecture.  An exception is for the MIPS32 and MIPS64 architectures
14788 and processors which implement those architectures; for those, Branch
14789 Likely instructions will not be generated by default because the MIPS32
14790 and MIPS64 architectures specifically deprecate their use.
14791
14792 @item -mfp-exceptions
14793 @itemx -mno-fp-exceptions
14794 @opindex mfp-exceptions
14795 Specifies whether FP exceptions are enabled.  This affects how we schedule
14796 FP instructions for some processors.  The default is that FP exceptions are
14797 enabled.
14798
14799 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
14800 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
14801 FP pipe.
14802
14803 @item -mvr4130-align
14804 @itemx -mno-vr4130-align
14805 @opindex mvr4130-align
14806 The VR4130 pipeline is two-way superscalar, but can only issue two
14807 instructions together if the first one is 8-byte aligned.  When this
14808 option is enabled, GCC will align pairs of instructions that it
14809 thinks should execute in parallel.
14810
14811 This option only has an effect when optimizing for the VR4130.
14812 It normally makes code faster, but at the expense of making it bigger.
14813 It is enabled by default at optimization level @option{-O3}.
14814
14815 @item -msynci
14816 @itemx -mno-synci
14817 @opindex msynci
14818 Enable (disable) generation of @code{synci} instructions on
14819 architectures that support it.  The @code{synci} instructions (if
14820 enabled) will be generated when @code{__builtin___clear_cache()} is
14821 compiled.
14822
14823 This option defaults to @code{-mno-synci}, but the default can be
14824 overridden by configuring with @code{--with-synci}.
14825
14826 When compiling code for single processor systems, it is generally safe
14827 to use @code{synci}.  However, on many multi-core (SMP) systems, it
14828 will not invalidate the instruction caches on all cores and may lead
14829 to undefined behavior.
14830
14831 @item -mrelax-pic-calls
14832 @itemx -mno-relax-pic-calls
14833 @opindex mrelax-pic-calls
14834 Try to turn PIC calls that are normally dispatched via register
14835 @code{$25} into direct calls.  This is only possible if the linker can
14836 resolve the destination at link-time and if the destination is within
14837 range for a direct call.
14838
14839 @option{-mrelax-pic-calls} is the default if GCC was configured to use
14840 an assembler and a linker that supports the @code{.reloc} assembly
14841 directive and @code{-mexplicit-relocs} is in effect.  With
14842 @code{-mno-explicit-relocs}, this optimization can be performed by the
14843 assembler and the linker alone without help from the compiler.
14844
14845 @item -mmcount-ra-address
14846 @itemx -mno-mcount-ra-address
14847 @opindex mmcount-ra-address
14848 @opindex mno-mcount-ra-address
14849 Emit (do not emit) code that allows @code{_mcount} to modify the
14850 calling function's return address.  When enabled, this option extends
14851 the usual @code{_mcount} interface with a new @var{ra-address}
14852 parameter, which has type @code{intptr_t *} and is passed in register
14853 @code{$12}.  @code{_mcount} can then modify the return address by
14854 doing both of the following:
14855 @itemize
14856 @item
14857 Returning the new address in register @code{$31}.
14858 @item
14859 Storing the new address in @code{*@var{ra-address}},
14860 if @var{ra-address} is nonnull.
14861 @end itemize
14862
14863 The default is @option{-mno-mcount-ra-address}.
14864
14865 @end table
14866
14867 @node MMIX Options
14868 @subsection MMIX Options
14869 @cindex MMIX Options
14870
14871 These options are defined for the MMIX:
14872
14873 @table @gcctabopt
14874 @item -mlibfuncs
14875 @itemx -mno-libfuncs
14876 @opindex mlibfuncs
14877 @opindex mno-libfuncs
14878 Specify that intrinsic library functions are being compiled, passing all
14879 values in registers, no matter the size.
14880
14881 @item -mepsilon
14882 @itemx -mno-epsilon
14883 @opindex mepsilon
14884 @opindex mno-epsilon
14885 Generate floating-point comparison instructions that compare with respect
14886 to the @code{rE} epsilon register.
14887
14888 @item -mabi=mmixware
14889 @itemx -mabi=gnu
14890 @opindex mabi=mmixware
14891 @opindex mabi=gnu
14892 Generate code that passes function parameters and return values that (in
14893 the called function) are seen as registers @code{$0} and up, as opposed to
14894 the GNU ABI which uses global registers @code{$231} and up.
14895
14896 @item -mzero-extend
14897 @itemx -mno-zero-extend
14898 @opindex mzero-extend
14899 @opindex mno-zero-extend
14900 When reading data from memory in sizes shorter than 64 bits, use (do not
14901 use) zero-extending load instructions by default, rather than
14902 sign-extending ones.
14903
14904 @item -mknuthdiv
14905 @itemx -mno-knuthdiv
14906 @opindex mknuthdiv
14907 @opindex mno-knuthdiv
14908 Make the result of a division yielding a remainder have the same sign as
14909 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
14910 remainder follows the sign of the dividend.  Both methods are
14911 arithmetically valid, the latter being almost exclusively used.
14912
14913 @item -mtoplevel-symbols
14914 @itemx -mno-toplevel-symbols
14915 @opindex mtoplevel-symbols
14916 @opindex mno-toplevel-symbols
14917 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
14918 code can be used with the @code{PREFIX} assembly directive.
14919
14920 @item -melf
14921 @opindex melf
14922 Generate an executable in the ELF format, rather than the default
14923 @samp{mmo} format used by the @command{mmix} simulator.
14924
14925 @item -mbranch-predict
14926 @itemx -mno-branch-predict
14927 @opindex mbranch-predict
14928 @opindex mno-branch-predict
14929 Use (do not use) the probable-branch instructions, when static branch
14930 prediction indicates a probable branch.
14931
14932 @item -mbase-addresses
14933 @itemx -mno-base-addresses
14934 @opindex mbase-addresses
14935 @opindex mno-base-addresses
14936 Generate (do not generate) code that uses @emph{base addresses}.  Using a
14937 base address automatically generates a request (handled by the assembler
14938 and the linker) for a constant to be set up in a global register.  The
14939 register is used for one or more base address requests within the range 0
14940 to 255 from the value held in the register.  The generally leads to short
14941 and fast code, but the number of different data items that can be
14942 addressed is limited.  This means that a program that uses lots of static
14943 data may require @option{-mno-base-addresses}.
14944
14945 @item -msingle-exit
14946 @itemx -mno-single-exit
14947 @opindex msingle-exit
14948 @opindex mno-single-exit
14949 Force (do not force) generated code to have a single exit point in each
14950 function.
14951 @end table
14952
14953 @node MN10300 Options
14954 @subsection MN10300 Options
14955 @cindex MN10300 options
14956
14957 These @option{-m} options are defined for Matsushita MN10300 architectures:
14958
14959 @table @gcctabopt
14960 @item -mmult-bug
14961 @opindex mmult-bug
14962 Generate code to avoid bugs in the multiply instructions for the MN10300
14963 processors.  This is the default.
14964
14965 @item -mno-mult-bug
14966 @opindex mno-mult-bug
14967 Do not generate code to avoid bugs in the multiply instructions for the
14968 MN10300 processors.
14969
14970 @item -mam33
14971 @opindex mam33
14972 Generate code which uses features specific to the AM33 processor.
14973
14974 @item -mno-am33
14975 @opindex mno-am33
14976 Do not generate code which uses features specific to the AM33 processor.  This
14977 is the default.
14978
14979 @item -mam33-2
14980 @opindex mam33-2
14981 Generate code which uses features specific to the AM33/2.0 processor.
14982
14983 @item -mam34
14984 @opindex mam34
14985 Generate code which uses features specific to the AM34 processor.
14986
14987 @item -mtune=@var{cpu-type}
14988 @opindex mtune
14989 Use the timing characteristics of the indicated CPU type when
14990 scheduling instructions.  This does not change the targeted processor
14991 type.  The CPU type must be one of @samp{mn10300}, @samp{am33},
14992 @samp{am33-2} or @samp{am34}.
14993
14994 @item -mreturn-pointer-on-d0
14995 @opindex mreturn-pointer-on-d0
14996 When generating a function which returns a pointer, return the pointer
14997 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
14998 only in a0, and attempts to call such functions without a prototype
14999 would result in errors.  Note that this option is on by default; use
15000 @option{-mno-return-pointer-on-d0} to disable it.
15001
15002 @item -mno-crt0
15003 @opindex mno-crt0
15004 Do not link in the C run-time initialization object file.
15005
15006 @item -mrelax
15007 @opindex mrelax
15008 Indicate to the linker that it should perform a relaxation optimization pass
15009 to shorten branches, calls and absolute memory addresses.  This option only
15010 has an effect when used on the command line for the final link step.
15011
15012 This option makes symbolic debugging impossible.
15013
15014 @item -mliw
15015 @opindex mliw
15016 Allow the compiler to generate @emph{Long Instruction Word}
15017 instructions if the target is the @samp{AM33} or later.  This is the
15018 default.  This option defines the preprocessor macro @samp{__LIW__}.
15019
15020 @item -mnoliw
15021 @opindex mnoliw
15022 Do not allow the compiler to generate @emph{Long Instruction Word}
15023 instructions.  This option defines the preprocessor macro
15024 @samp{__NO_LIW__}.
15025
15026 @item -msetlb
15027 @opindex msetlb
15028 Allow the compiler to generate the @emph{SETLB} and @emph{Lcc}
15029 instructions if the target is the @samp{AM33} or later.  This is the
15030 default.  This option defines the preprocessor macro @samp{__SETLB__}.
15031
15032 @item -mnosetlb
15033 @opindex mnosetlb
15034 Do not allow the compiler to generate @emph{SETLB} or @emph{Lcc}
15035 instructions.  This option defines the preprocessor macro
15036 @samp{__NO_SETLB__}.
15037
15038 @end table
15039
15040 @node PDP-11 Options
15041 @subsection PDP-11 Options
15042 @cindex PDP-11 Options
15043
15044 These options are defined for the PDP-11:
15045
15046 @table @gcctabopt
15047 @item -mfpu
15048 @opindex mfpu
15049 Use hardware FPP floating point.  This is the default.  (FIS floating
15050 point on the PDP-11/40 is not supported.)
15051
15052 @item -msoft-float
15053 @opindex msoft-float
15054 Do not use hardware floating point.
15055
15056 @item -mac0
15057 @opindex mac0
15058 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
15059
15060 @item -mno-ac0
15061 @opindex mno-ac0
15062 Return floating-point results in memory.  This is the default.
15063
15064 @item -m40
15065 @opindex m40
15066 Generate code for a PDP-11/40.
15067
15068 @item -m45
15069 @opindex m45
15070 Generate code for a PDP-11/45.  This is the default.
15071
15072 @item -m10
15073 @opindex m10
15074 Generate code for a PDP-11/10.
15075
15076 @item -mbcopy-builtin
15077 @opindex mbcopy-builtin
15078 Use inline @code{movmemhi} patterns for copying memory.  This is the
15079 default.
15080
15081 @item -mbcopy
15082 @opindex mbcopy
15083 Do not use inline @code{movmemhi} patterns for copying memory.
15084
15085 @item -mint16
15086 @itemx -mno-int32
15087 @opindex mint16
15088 @opindex mno-int32
15089 Use 16-bit @code{int}.  This is the default.
15090
15091 @item -mint32
15092 @itemx -mno-int16
15093 @opindex mint32
15094 @opindex mno-int16
15095 Use 32-bit @code{int}.
15096
15097 @item -mfloat64
15098 @itemx -mno-float32
15099 @opindex mfloat64
15100 @opindex mno-float32
15101 Use 64-bit @code{float}.  This is the default.
15102
15103 @item -mfloat32
15104 @itemx -mno-float64
15105 @opindex mfloat32
15106 @opindex mno-float64
15107 Use 32-bit @code{float}.
15108
15109 @item -mabshi
15110 @opindex mabshi
15111 Use @code{abshi2} pattern.  This is the default.
15112
15113 @item -mno-abshi
15114 @opindex mno-abshi
15115 Do not use @code{abshi2} pattern.
15116
15117 @item -mbranch-expensive
15118 @opindex mbranch-expensive
15119 Pretend that branches are expensive.  This is for experimenting with
15120 code generation only.
15121
15122 @item -mbranch-cheap
15123 @opindex mbranch-cheap
15124 Do not pretend that branches are expensive.  This is the default.
15125
15126 @item -munix-asm
15127 @opindex munix-asm
15128 Use Unix assembler syntax.  This is the default when configured for
15129 @samp{pdp11-*-bsd}.
15130
15131 @item -mdec-asm
15132 @opindex mdec-asm
15133 Use DEC assembler syntax.  This is the default when configured for any
15134 PDP-11 target other than @samp{pdp11-*-bsd}.
15135 @end table
15136
15137 @node picoChip Options
15138 @subsection picoChip Options
15139 @cindex picoChip options
15140
15141 These @samp{-m} options are defined for picoChip implementations:
15142
15143 @table @gcctabopt
15144
15145 @item -mae=@var{ae_type}
15146 @opindex mcpu
15147 Set the instruction set, register set, and instruction scheduling
15148 parameters for array element type @var{ae_type}.  Supported values
15149 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
15150
15151 @option{-mae=ANY} selects a completely generic AE type.  Code
15152 generated with this option will run on any of the other AE types.  The
15153 code will not be as efficient as it would be if compiled for a specific
15154 AE type, and some types of operation (e.g., multiplication) will not
15155 work properly on all types of AE.
15156
15157 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
15158 for compiled code, and is the default.
15159
15160 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
15161 option may suffer from poor performance of byte (char) manipulation,
15162 since the DSP AE does not provide hardware support for byte load/stores.
15163
15164 @item -msymbol-as-address
15165 Enable the compiler to directly use a symbol name as an address in a
15166 load/store instruction, without first loading it into a
15167 register.  Typically, the use of this option will generate larger
15168 programs, which run faster than when the option isn't used.  However, the
15169 results vary from program to program, so it is left as a user option,
15170 rather than being permanently enabled.
15171
15172 @item -mno-inefficient-warnings
15173 Disables warnings about the generation of inefficient code.  These
15174 warnings can be generated, for example, when compiling code which
15175 performs byte-level memory operations on the MAC AE type.  The MAC AE has
15176 no hardware support for byte-level memory operations, so all byte
15177 load/stores must be synthesized from word load/store operations.  This is
15178 inefficient and a warning will be generated indicating to the programmer
15179 that they should rewrite the code to avoid byte operations, or to target
15180 an AE type which has the necessary hardware support.  This option enables
15181 the warning to be turned off.
15182
15183 @end table
15184
15185 @node PowerPC Options
15186 @subsection PowerPC Options
15187 @cindex PowerPC options
15188
15189 These are listed under @xref{RS/6000 and PowerPC Options}.
15190
15191 @node RS/6000 and PowerPC Options
15192 @subsection IBM RS/6000 and PowerPC Options
15193 @cindex RS/6000 and PowerPC Options
15194 @cindex IBM RS/6000 and PowerPC Options
15195
15196 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
15197 @table @gcctabopt
15198 @item -mpower
15199 @itemx -mno-power
15200 @itemx -mpower2
15201 @itemx -mno-power2
15202 @itemx -mpowerpc
15203 @itemx -mno-powerpc
15204 @itemx -mpowerpc-gpopt
15205 @itemx -mno-powerpc-gpopt
15206 @itemx -mpowerpc-gfxopt
15207 @itemx -mno-powerpc-gfxopt
15208 @need 800
15209 @itemx -mpowerpc64
15210 @itemx -mno-powerpc64
15211 @itemx -mmfcrf
15212 @itemx -mno-mfcrf
15213 @itemx -mpopcntb
15214 @itemx -mno-popcntb
15215 @itemx -mpopcntd
15216 @itemx -mno-popcntd
15217 @itemx -mfprnd
15218 @itemx -mno-fprnd
15219 @need 800
15220 @itemx -mcmpb
15221 @itemx -mno-cmpb
15222 @itemx -mmfpgpr
15223 @itemx -mno-mfpgpr
15224 @itemx -mhard-dfp
15225 @itemx -mno-hard-dfp
15226 @opindex mpower
15227 @opindex mno-power
15228 @opindex mpower2
15229 @opindex mno-power2
15230 @opindex mpowerpc
15231 @opindex mno-powerpc
15232 @opindex mpowerpc-gpopt
15233 @opindex mno-powerpc-gpopt
15234 @opindex mpowerpc-gfxopt
15235 @opindex mno-powerpc-gfxopt
15236 @opindex mpowerpc64
15237 @opindex mno-powerpc64
15238 @opindex mmfcrf
15239 @opindex mno-mfcrf
15240 @opindex mpopcntb
15241 @opindex mno-popcntb
15242 @opindex mpopcntd
15243 @opindex mno-popcntd
15244 @opindex mfprnd
15245 @opindex mno-fprnd
15246 @opindex mcmpb
15247 @opindex mno-cmpb
15248 @opindex mmfpgpr
15249 @opindex mno-mfpgpr
15250 @opindex mhard-dfp
15251 @opindex mno-hard-dfp
15252 GCC supports two related instruction set architectures for the
15253 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
15254 instructions supported by the @samp{rios} chip set used in the original
15255 RS/6000 systems and the @dfn{PowerPC} instruction set is the
15256 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
15257 the IBM 4xx, 6xx, and follow-on microprocessors.
15258
15259 Neither architecture is a subset of the other.  However there is a
15260 large common subset of instructions supported by both.  An MQ
15261 register is included in processors supporting the POWER architecture.
15262
15263 You use these options to specify which instructions are available on the
15264 processor you are using.  The default value of these options is
15265 determined when configuring GCC@.  Specifying the
15266 @option{-mcpu=@var{cpu_type}} overrides the specification of these
15267 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
15268 rather than the options listed above.
15269
15270 The @option{-mpower} option allows GCC to generate instructions that
15271 are found only in the POWER architecture and to use the MQ register.
15272 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
15273 to generate instructions that are present in the POWER2 architecture but
15274 not the original POWER architecture.
15275
15276 The @option{-mpowerpc} option allows GCC to generate instructions that
15277 are found only in the 32-bit subset of the PowerPC architecture.
15278 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
15279 GCC to use the optional PowerPC architecture instructions in the
15280 General Purpose group, including floating-point square root.  Specifying
15281 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
15282 use the optional PowerPC architecture instructions in the Graphics
15283 group, including floating-point select.
15284
15285 The @option{-mmfcrf} option allows GCC to generate the move from
15286 condition register field instruction implemented on the POWER4
15287 processor and other processors that support the PowerPC V2.01
15288 architecture.
15289 The @option{-mpopcntb} option allows GCC to generate the popcount and
15290 double precision FP reciprocal estimate instruction implemented on the
15291 POWER5 processor and other processors that support the PowerPC V2.02
15292 architecture.
15293 The @option{-mpopcntd} option allows GCC to generate the popcount
15294 instruction implemented on the POWER7 processor and other processors
15295 that support the PowerPC V2.06 architecture.
15296 The @option{-mfprnd} option allows GCC to generate the FP round to
15297 integer instructions implemented on the POWER5+ processor and other
15298 processors that support the PowerPC V2.03 architecture.
15299 The @option{-mcmpb} option allows GCC to generate the compare bytes
15300 instruction implemented on the POWER6 processor and other processors
15301 that support the PowerPC V2.05 architecture.
15302 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
15303 general purpose register instructions implemented on the POWER6X
15304 processor and other processors that support the extended PowerPC V2.05
15305 architecture.
15306 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
15307 point instructions implemented on some POWER processors.
15308
15309 The @option{-mpowerpc64} option allows GCC to generate the additional
15310 64-bit instructions that are found in the full PowerPC64 architecture
15311 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
15312 @option{-mno-powerpc64}.
15313
15314 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
15315 will use only the instructions in the common subset of both
15316 architectures plus some special AIX common-mode calls, and will not use
15317 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
15318 permits GCC to use any instruction from either architecture and to
15319 allow use of the MQ register; specify this for the Motorola MPC601.
15320
15321 @item -mnew-mnemonics
15322 @itemx -mold-mnemonics
15323 @opindex mnew-mnemonics
15324 @opindex mold-mnemonics
15325 Select which mnemonics to use in the generated assembler code.  With
15326 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
15327 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
15328 assembler mnemonics defined for the POWER architecture.  Instructions
15329 defined in only one architecture have only one mnemonic; GCC uses that
15330 mnemonic irrespective of which of these options is specified.
15331
15332 GCC defaults to the mnemonics appropriate for the architecture in
15333 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
15334 value of these option.  Unless you are building a cross-compiler, you
15335 should normally not specify either @option{-mnew-mnemonics} or
15336 @option{-mold-mnemonics}, but should instead accept the default.
15337
15338 @item -mcpu=@var{cpu_type}
15339 @opindex mcpu
15340 Set architecture type, register usage, choice of mnemonics, and
15341 instruction scheduling parameters for machine type @var{cpu_type}.
15342 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
15343 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
15344 @samp{476}, @samp{476fp}, @samp{505}, @samp{601}, @samp{602}, @samp{603},
15345 @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740},
15346 @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
15347 @samp{860}, @samp{970}, @samp{8540}, @samp{a2}, @samp{e300c2},
15348 @samp{e300c3}, @samp{e500mc}, @samp{e500mc64}, @samp{ec603e}, @samp{G3},
15349 @samp{G4}, @samp{G5}, @samp{titan}, @samp{power}, @samp{power2}, @samp{power3},
15350 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x},
15351 @samp{power7}, @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
15352 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
15353
15354 @option{-mcpu=common} selects a completely generic processor.  Code
15355 generated under this option will run on any POWER or PowerPC processor.
15356 GCC will use only the instructions in the common subset of both
15357 architectures, and will not use the MQ register.  GCC assumes a generic
15358 processor model for scheduling purposes.
15359
15360 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
15361 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
15362 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
15363 types, with an appropriate, generic processor model assumed for
15364 scheduling purposes.
15365
15366 The other options specify a specific processor.  Code generated under
15367 those options will run best on that processor, and may not run at all on
15368 others.
15369
15370 The @option{-mcpu} options automatically enable or disable the
15371 following options:
15372
15373 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
15374 -mnew-mnemonics  -mpopcntb -mpopcntd  -mpower  -mpower2  -mpowerpc64 @gol
15375 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
15376 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr -mvsx}
15377
15378 The particular options set for any particular CPU will vary between
15379 compiler versions, depending on what setting seems to produce optimal
15380 code for that CPU; it doesn't necessarily reflect the actual hardware's
15381 capabilities.  If you wish to set an individual option to a particular
15382 value, you may specify it after the @option{-mcpu} option, like
15383 @samp{-mcpu=970 -mno-altivec}.
15384
15385 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
15386 not enabled or disabled by the @option{-mcpu} option at present because
15387 AIX does not have full support for these options.  You may still
15388 enable or disable them individually if you're sure it'll work in your
15389 environment.
15390
15391 @item -mtune=@var{cpu_type}
15392 @opindex mtune
15393 Set the instruction scheduling parameters for machine type
15394 @var{cpu_type}, but do not set the architecture type, register usage, or
15395 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
15396 values for @var{cpu_type} are used for @option{-mtune} as for
15397 @option{-mcpu}.  If both are specified, the code generated will use the
15398 architecture, registers, and mnemonics set by @option{-mcpu}, but the
15399 scheduling parameters set by @option{-mtune}.
15400
15401 @item -mcmodel=small
15402 @opindex mcmodel=small
15403 Generate PowerPC64 code for the small model: The TOC is limited to
15404 64k.
15405
15406 @item -mcmodel=medium
15407 @opindex mcmodel=medium
15408 Generate PowerPC64 code for the medium model: The TOC and other static
15409 data may be up to a total of 4G in size.
15410
15411 @item -mcmodel=large
15412 @opindex mcmodel=large
15413 Generate PowerPC64 code for the large model: The TOC may be up to 4G
15414 in size.  Other data and code is only limited by the 64-bit address
15415 space.
15416
15417 @item -maltivec
15418 @itemx -mno-altivec
15419 @opindex maltivec
15420 @opindex mno-altivec
15421 Generate code that uses (does not use) AltiVec instructions, and also
15422 enable the use of built-in functions that allow more direct access to
15423 the AltiVec instruction set.  You may also need to set
15424 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
15425 enhancements.
15426
15427 @item -mvrsave
15428 @itemx -mno-vrsave
15429 @opindex mvrsave
15430 @opindex mno-vrsave
15431 Generate VRSAVE instructions when generating AltiVec code.
15432
15433 @item -mgen-cell-microcode
15434 @opindex mgen-cell-microcode
15435 Generate Cell microcode instructions
15436
15437 @item -mwarn-cell-microcode
15438 @opindex mwarn-cell-microcode
15439 Warning when a Cell microcode instruction is going to emitted.  An example
15440 of a Cell microcode instruction is a variable shift.
15441
15442 @item -msecure-plt
15443 @opindex msecure-plt
15444 Generate code that allows ld and ld.so to build executables and shared
15445 libraries with non-exec .plt and .got sections.  This is a PowerPC
15446 32-bit SYSV ABI option.
15447
15448 @item -mbss-plt
15449 @opindex mbss-plt
15450 Generate code that uses a BSS .plt section that ld.so fills in, and
15451 requires .plt and .got sections that are both writable and executable.
15452 This is a PowerPC 32-bit SYSV ABI option.
15453
15454 @item -misel
15455 @itemx -mno-isel
15456 @opindex misel
15457 @opindex mno-isel
15458 This switch enables or disables the generation of ISEL instructions.
15459
15460 @item -misel=@var{yes/no}
15461 This switch has been deprecated.  Use @option{-misel} and
15462 @option{-mno-isel} instead.
15463
15464 @item -mspe
15465 @itemx -mno-spe
15466 @opindex mspe
15467 @opindex mno-spe
15468 This switch enables or disables the generation of SPE simd
15469 instructions.
15470
15471 @item -mpaired
15472 @itemx -mno-paired
15473 @opindex mpaired
15474 @opindex mno-paired
15475 This switch enables or disables the generation of PAIRED simd
15476 instructions.
15477
15478 @item -mspe=@var{yes/no}
15479 This option has been deprecated.  Use @option{-mspe} and
15480 @option{-mno-spe} instead.
15481
15482 @item -mvsx
15483 @itemx -mno-vsx
15484 @opindex mvsx
15485 @opindex mno-vsx
15486 Generate code that uses (does not use) vector/scalar (VSX)
15487 instructions, and also enable the use of built-in functions that allow
15488 more direct access to the VSX instruction set.
15489
15490 @item -mfloat-gprs=@var{yes/single/double/no}
15491 @itemx -mfloat-gprs
15492 @opindex mfloat-gprs
15493 This switch enables or disables the generation of floating point
15494 operations on the general purpose registers for architectures that
15495 support it.
15496
15497 The argument @var{yes} or @var{single} enables the use of
15498 single-precision floating point operations.
15499
15500 The argument @var{double} enables the use of single and
15501 double-precision floating point operations.
15502
15503 The argument @var{no} disables floating point operations on the
15504 general purpose registers.
15505
15506 This option is currently only available on the MPC854x.
15507
15508 @item -m32
15509 @itemx -m64
15510 @opindex m32
15511 @opindex m64
15512 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
15513 targets (including GNU/Linux).  The 32-bit environment sets int, long
15514 and pointer to 32 bits and generates code that runs on any PowerPC
15515 variant.  The 64-bit environment sets int to 32 bits and long and
15516 pointer to 64 bits, and generates code for PowerPC64, as for
15517 @option{-mpowerpc64}.
15518
15519 @item -mfull-toc
15520 @itemx -mno-fp-in-toc
15521 @itemx -mno-sum-in-toc
15522 @itemx -mminimal-toc
15523 @opindex mfull-toc
15524 @opindex mno-fp-in-toc
15525 @opindex mno-sum-in-toc
15526 @opindex mminimal-toc
15527 Modify generation of the TOC (Table Of Contents), which is created for
15528 every executable file.  The @option{-mfull-toc} option is selected by
15529 default.  In that case, GCC will allocate at least one TOC entry for
15530 each unique non-automatic variable reference in your program.  GCC
15531 will also place floating-point constants in the TOC@.  However, only
15532 16,384 entries are available in the TOC@.
15533
15534 If you receive a linker error message that saying you have overflowed
15535 the available TOC space, you can reduce the amount of TOC space used
15536 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
15537 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
15538 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
15539 generate code to calculate the sum of an address and a constant at
15540 run-time instead of putting that sum into the TOC@.  You may specify one
15541 or both of these options.  Each causes GCC to produce very slightly
15542 slower and larger code at the expense of conserving TOC space.
15543
15544 If you still run out of space in the TOC even when you specify both of
15545 these options, specify @option{-mminimal-toc} instead.  This option causes
15546 GCC to make only one TOC entry for every file.  When you specify this
15547 option, GCC will produce code that is slower and larger but which
15548 uses extremely little TOC space.  You may wish to use this option
15549 only on files that contain less frequently executed code.
15550
15551 @item -maix64
15552 @itemx -maix32
15553 @opindex maix64
15554 @opindex maix32
15555 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
15556 @code{long} type, and the infrastructure needed to support them.
15557 Specifying @option{-maix64} implies @option{-mpowerpc64} and
15558 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
15559 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
15560
15561 @item -mxl-compat
15562 @itemx -mno-xl-compat
15563 @opindex mxl-compat
15564 @opindex mno-xl-compat
15565 Produce code that conforms more closely to IBM XL compiler semantics
15566 when using AIX-compatible ABI@.  Pass floating-point arguments to
15567 prototyped functions beyond the register save area (RSA) on the stack
15568 in addition to argument FPRs.  Do not assume that most significant
15569 double in 128-bit long double value is properly rounded when comparing
15570 values and converting to double.  Use XL symbol names for long double
15571 support routines.
15572
15573 The AIX calling convention was extended but not initially documented to
15574 handle an obscure K&R C case of calling a function that takes the
15575 address of its arguments with fewer arguments than declared.  IBM XL
15576 compilers access floating point arguments which do not fit in the
15577 RSA from the stack when a subroutine is compiled without
15578 optimization.  Because always storing floating-point arguments on the
15579 stack is inefficient and rarely needed, this option is not enabled by
15580 default and only is necessary when calling subroutines compiled by IBM
15581 XL compilers without optimization.
15582
15583 @item -mpe
15584 @opindex mpe
15585 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
15586 application written to use message passing with special startup code to
15587 enable the application to run.  The system must have PE installed in the
15588 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
15589 must be overridden with the @option{-specs=} option to specify the
15590 appropriate directory location.  The Parallel Environment does not
15591 support threads, so the @option{-mpe} option and the @option{-pthread}
15592 option are incompatible.
15593
15594 @item -malign-natural
15595 @itemx -malign-power
15596 @opindex malign-natural
15597 @opindex malign-power
15598 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
15599 @option{-malign-natural} overrides the ABI-defined alignment of larger
15600 types, such as floating-point doubles, on their natural size-based boundary.
15601 The option @option{-malign-power} instructs GCC to follow the ABI-specified
15602 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
15603
15604 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
15605 is not supported.
15606
15607 @item -msoft-float
15608 @itemx -mhard-float
15609 @opindex msoft-float
15610 @opindex mhard-float
15611 Generate code that does not use (uses) the floating-point register set.
15612 Software floating point emulation is provided if you use the
15613 @option{-msoft-float} option, and pass the option to GCC when linking.
15614
15615 @item -msingle-float
15616 @itemx -mdouble-float
15617 @opindex msingle-float
15618 @opindex mdouble-float
15619 Generate code for single or double-precision floating point operations.
15620 @option{-mdouble-float} implies @option{-msingle-float}.
15621
15622 @item -msimple-fpu
15623 @opindex msimple-fpu
15624 Do not generate sqrt and div instructions for hardware floating point unit.
15625
15626 @item -mfpu
15627 @opindex mfpu
15628 Specify type of floating point unit.  Valid values are @var{sp_lite}
15629 (equivalent to -msingle-float -msimple-fpu), @var{dp_lite} (equivalent
15630 to -mdouble-float -msimple-fpu), @var{sp_full} (equivalent to -msingle-float),
15631 and @var{dp_full} (equivalent to -mdouble-float).
15632
15633 @item -mxilinx-fpu
15634 @opindex mxilinx-fpu
15635 Perform optimizations for floating point unit on Xilinx PPC 405/440.
15636
15637 @item -mmultiple
15638 @itemx -mno-multiple
15639 @opindex mmultiple
15640 @opindex mno-multiple
15641 Generate code that uses (does not use) the load multiple word
15642 instructions and the store multiple word instructions.  These
15643 instructions are generated by default on POWER systems, and not
15644 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
15645 endian PowerPC systems, since those instructions do not work when the
15646 processor is in little endian mode.  The exceptions are PPC740 and
15647 PPC750 which permit the instructions usage in little endian mode.
15648
15649 @item -mstring
15650 @itemx -mno-string
15651 @opindex mstring
15652 @opindex mno-string
15653 Generate code that uses (does not use) the load string instructions
15654 and the store string word instructions to save multiple registers and
15655 do small block moves.  These instructions are generated by default on
15656 POWER systems, and not generated on PowerPC systems.  Do not use
15657 @option{-mstring} on little endian PowerPC systems, since those
15658 instructions do not work when the processor is in little endian mode.
15659 The exceptions are PPC740 and PPC750 which permit the instructions
15660 usage in little endian mode.
15661
15662 @item -mupdate
15663 @itemx -mno-update
15664 @opindex mupdate
15665 @opindex mno-update
15666 Generate code that uses (does not use) the load or store instructions
15667 that update the base register to the address of the calculated memory
15668 location.  These instructions are generated by default.  If you use
15669 @option{-mno-update}, there is a small window between the time that the
15670 stack pointer is updated and the address of the previous frame is
15671 stored, which means code that walks the stack frame across interrupts or
15672 signals may get corrupted data.
15673
15674 @item -mavoid-indexed-addresses
15675 @itemx -mno-avoid-indexed-addresses
15676 @opindex mavoid-indexed-addresses
15677 @opindex mno-avoid-indexed-addresses
15678 Generate code that tries to avoid (not avoid) the use of indexed load
15679 or store instructions. These instructions can incur a performance
15680 penalty on Power6 processors in certain situations, such as when
15681 stepping through large arrays that cross a 16M boundary.  This option
15682 is enabled by default when targetting Power6 and disabled otherwise.
15683
15684 @item -mfused-madd
15685 @itemx -mno-fused-madd
15686 @opindex mfused-madd
15687 @opindex mno-fused-madd
15688 Generate code that uses (does not use) the floating point multiply and
15689 accumulate instructions.  These instructions are generated by default
15690 if hardware floating point is used.  The machine dependent
15691 @option{-mfused-madd} option is now mapped to the machine independent
15692 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
15693 mapped to @option{-ffp-contract=off}.
15694
15695 @item -mmulhw
15696 @itemx -mno-mulhw
15697 @opindex mmulhw
15698 @opindex mno-mulhw
15699 Generate code that uses (does not use) the half-word multiply and
15700 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
15701 These instructions are generated by default when targetting those
15702 processors.
15703
15704 @item -mdlmzb
15705 @itemx -mno-dlmzb
15706 @opindex mdlmzb
15707 @opindex mno-dlmzb
15708 Generate code that uses (does not use) the string-search @samp{dlmzb}
15709 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
15710 generated by default when targetting those processors.
15711
15712 @item -mno-bit-align
15713 @itemx -mbit-align
15714 @opindex mno-bit-align
15715 @opindex mbit-align
15716 On System V.4 and embedded PowerPC systems do not (do) force structures
15717 and unions that contain bit-fields to be aligned to the base type of the
15718 bit-field.
15719
15720 For example, by default a structure containing nothing but 8
15721 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
15722 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
15723 the structure would be aligned to a 1 byte boundary and be one byte in
15724 size.
15725
15726 @item -mno-strict-align
15727 @itemx -mstrict-align
15728 @opindex mno-strict-align
15729 @opindex mstrict-align
15730 On System V.4 and embedded PowerPC systems do not (do) assume that
15731 unaligned memory references will be handled by the system.
15732
15733 @item -mrelocatable
15734 @itemx -mno-relocatable
15735 @opindex mrelocatable
15736 @opindex mno-relocatable
15737 Generate code that allows (does not allow) a static executable to be
15738 relocated to a different address at runtime.  A simple embedded
15739 PowerPC system loader should relocate the entire contents of
15740 @code{.got2} and 4-byte locations listed in the @code{.fixup} section,
15741 a table of 32-bit addresses generated by this option.  For this to
15742 work, all objects linked together must be compiled with
15743 @option{-mrelocatable} or @option{-mrelocatable-lib}.
15744 @option{-mrelocatable} code aligns the stack to an 8 byte boundary.
15745
15746 @item -mrelocatable-lib
15747 @itemx -mno-relocatable-lib
15748 @opindex mrelocatable-lib
15749 @opindex mno-relocatable-lib
15750 Like @option{-mrelocatable}, @option{-mrelocatable-lib} generates a
15751 @code{.fixup} section to allow static executables to be relocated at
15752 runtime, but @option{-mrelocatable-lib} does not use the smaller stack
15753 alignment of @option{-mrelocatable}.  Objects compiled with
15754 @option{-mrelocatable-lib} may be linked with objects compiled with
15755 any combination of the @option{-mrelocatable} options.
15756
15757 @item -mno-toc
15758 @itemx -mtoc
15759 @opindex mno-toc
15760 @opindex mtoc
15761 On System V.4 and embedded PowerPC systems do not (do) assume that
15762 register 2 contains a pointer to a global area pointing to the addresses
15763 used in the program.
15764
15765 @item -mlittle
15766 @itemx -mlittle-endian
15767 @opindex mlittle
15768 @opindex mlittle-endian
15769 On System V.4 and embedded PowerPC systems compile code for the
15770 processor in little endian mode.  The @option{-mlittle-endian} option is
15771 the same as @option{-mlittle}.
15772
15773 @item -mbig
15774 @itemx -mbig-endian
15775 @opindex mbig
15776 @opindex mbig-endian
15777 On System V.4 and embedded PowerPC systems compile code for the
15778 processor in big endian mode.  The @option{-mbig-endian} option is
15779 the same as @option{-mbig}.
15780
15781 @item -mdynamic-no-pic
15782 @opindex mdynamic-no-pic
15783 On Darwin and Mac OS X systems, compile code so that it is not
15784 relocatable, but that its external references are relocatable.  The
15785 resulting code is suitable for applications, but not shared
15786 libraries.
15787
15788 @item -msingle-pic-base
15789 @opindex msingle-pic-base
15790 Treat the register used for PIC addressing as read-only, rather than
15791 loading it in the prologue for each function.  The run-time system is
15792 responsible for initializing this register with an appropriate value
15793 before execution begins.
15794
15795 @item -mprioritize-restricted-insns=@var{priority}
15796 @opindex mprioritize-restricted-insns
15797 This option controls the priority that is assigned to
15798 dispatch-slot restricted instructions during the second scheduling
15799 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
15800 @var{no/highest/second-highest} priority to dispatch slot restricted
15801 instructions.
15802
15803 @item -msched-costly-dep=@var{dependence_type}
15804 @opindex msched-costly-dep
15805 This option controls which dependences are considered costly
15806 by the target during instruction scheduling.  The argument
15807 @var{dependence_type} takes one of the following values:
15808 @var{no}: no dependence is costly,
15809 @var{all}: all dependences are costly,
15810 @var{true_store_to_load}: a true dependence from store to load is costly,
15811 @var{store_to_load}: any dependence from store to load is costly,
15812 @var{number}: any dependence which latency >= @var{number} is costly.
15813
15814 @item -minsert-sched-nops=@var{scheme}
15815 @opindex minsert-sched-nops
15816 This option controls which nop insertion scheme will be used during
15817 the second scheduling pass.  The argument @var{scheme} takes one of the
15818 following values:
15819 @var{no}: Don't insert nops.
15820 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
15821 according to the scheduler's grouping.
15822 @var{regroup_exact}: Insert nops to force costly dependent insns into
15823 separate groups.  Insert exactly as many nops as needed to force an insn
15824 to a new group, according to the estimated processor grouping.
15825 @var{number}: Insert nops to force costly dependent insns into
15826 separate groups.  Insert @var{number} nops to force an insn to a new group.
15827
15828 @item -mcall-sysv
15829 @opindex mcall-sysv
15830 On System V.4 and embedded PowerPC systems compile code using calling
15831 conventions that adheres to the March 1995 draft of the System V
15832 Application Binary Interface, PowerPC processor supplement.  This is the
15833 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
15834
15835 @item -mcall-sysv-eabi
15836 @itemx -mcall-eabi
15837 @opindex mcall-sysv-eabi
15838 @opindex mcall-eabi
15839 Specify both @option{-mcall-sysv} and @option{-meabi} options.
15840
15841 @item -mcall-sysv-noeabi
15842 @opindex mcall-sysv-noeabi
15843 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
15844
15845 @item -mcall-aixdesc
15846 @opindex m
15847 On System V.4 and embedded PowerPC systems compile code for the AIX
15848 operating system.
15849
15850 @item -mcall-linux
15851 @opindex mcall-linux
15852 On System V.4 and embedded PowerPC systems compile code for the
15853 Linux-based GNU system.
15854
15855 @item -mcall-freebsd
15856 @opindex mcall-freebsd
15857 On System V.4 and embedded PowerPC systems compile code for the
15858 FreeBSD operating system.
15859
15860 @item -mcall-netbsd
15861 @opindex mcall-netbsd
15862 On System V.4 and embedded PowerPC systems compile code for the
15863 NetBSD operating system.
15864
15865 @item -mcall-openbsd
15866 @opindex mcall-netbsd
15867 On System V.4 and embedded PowerPC systems compile code for the
15868 OpenBSD operating system.
15869
15870 @item -maix-struct-return
15871 @opindex maix-struct-return
15872 Return all structures in memory (as specified by the AIX ABI)@.
15873
15874 @item -msvr4-struct-return
15875 @opindex msvr4-struct-return
15876 Return structures smaller than 8 bytes in registers (as specified by the
15877 SVR4 ABI)@.
15878
15879 @item -mabi=@var{abi-type}
15880 @opindex mabi
15881 Extend the current ABI with a particular extension, or remove such extension.
15882 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
15883 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
15884
15885 @item -mabi=spe
15886 @opindex mabi=spe
15887 Extend the current ABI with SPE ABI extensions.  This does not change
15888 the default ABI, instead it adds the SPE ABI extensions to the current
15889 ABI@.
15890
15891 @item -mabi=no-spe
15892 @opindex mabi=no-spe
15893 Disable Booke SPE ABI extensions for the current ABI@.
15894
15895 @item -mabi=ibmlongdouble
15896 @opindex mabi=ibmlongdouble
15897 Change the current ABI to use IBM extended precision long double.
15898 This is a PowerPC 32-bit SYSV ABI option.
15899
15900 @item -mabi=ieeelongdouble
15901 @opindex mabi=ieeelongdouble
15902 Change the current ABI to use IEEE extended precision long double.
15903 This is a PowerPC 32-bit Linux ABI option.
15904
15905 @item -mprototype
15906 @itemx -mno-prototype
15907 @opindex mprototype
15908 @opindex mno-prototype
15909 On System V.4 and embedded PowerPC systems assume that all calls to
15910 variable argument functions are properly prototyped.  Otherwise, the
15911 compiler must insert an instruction before every non prototyped call to
15912 set or clear bit 6 of the condition code register (@var{CR}) to
15913 indicate whether floating point values were passed in the floating point
15914 registers in case the function takes a variable arguments.  With
15915 @option{-mprototype}, only calls to prototyped variable argument functions
15916 will set or clear the bit.
15917
15918 @item -msim
15919 @opindex msim
15920 On embedded PowerPC systems, assume that the startup module is called
15921 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
15922 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
15923 configurations.
15924
15925 @item -mmvme
15926 @opindex mmvme
15927 On embedded PowerPC systems, assume that the startup module is called
15928 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
15929 @file{libc.a}.
15930
15931 @item -mads
15932 @opindex mads
15933 On embedded PowerPC systems, assume that the startup module is called
15934 @file{crt0.o} and the standard C libraries are @file{libads.a} and
15935 @file{libc.a}.
15936
15937 @item -myellowknife
15938 @opindex myellowknife
15939 On embedded PowerPC systems, assume that the startup module is called
15940 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
15941 @file{libc.a}.
15942
15943 @item -mvxworks
15944 @opindex mvxworks
15945 On System V.4 and embedded PowerPC systems, specify that you are
15946 compiling for a VxWorks system.
15947
15948 @item -memb
15949 @opindex memb
15950 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
15951 header to indicate that @samp{eabi} extended relocations are used.
15952
15953 @item -meabi
15954 @itemx -mno-eabi
15955 @opindex meabi
15956 @opindex mno-eabi
15957 On System V.4 and embedded PowerPC systems do (do not) adhere to the
15958 Embedded Applications Binary Interface (eabi) which is a set of
15959 modifications to the System V.4 specifications.  Selecting @option{-meabi}
15960 means that the stack is aligned to an 8 byte boundary, a function
15961 @code{__eabi} is called to from @code{main} to set up the eabi
15962 environment, and the @option{-msdata} option can use both @code{r2} and
15963 @code{r13} to point to two separate small data areas.  Selecting
15964 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
15965 do not call an initialization function from @code{main}, and the
15966 @option{-msdata} option will only use @code{r13} to point to a single
15967 small data area.  The @option{-meabi} option is on by default if you
15968 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
15969
15970 @item -msdata=eabi
15971 @opindex msdata=eabi
15972 On System V.4 and embedded PowerPC systems, put small initialized
15973 @code{const} global and static data in the @samp{.sdata2} section, which
15974 is pointed to by register @code{r2}.  Put small initialized
15975 non-@code{const} global and static data in the @samp{.sdata} section,
15976 which is pointed to by register @code{r13}.  Put small uninitialized
15977 global and static data in the @samp{.sbss} section, which is adjacent to
15978 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
15979 incompatible with the @option{-mrelocatable} option.  The
15980 @option{-msdata=eabi} option also sets the @option{-memb} option.
15981
15982 @item -msdata=sysv
15983 @opindex msdata=sysv
15984 On System V.4 and embedded PowerPC systems, put small global and static
15985 data in the @samp{.sdata} section, which is pointed to by register
15986 @code{r13}.  Put small uninitialized global and static data in the
15987 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
15988 The @option{-msdata=sysv} option is incompatible with the
15989 @option{-mrelocatable} option.
15990
15991 @item -msdata=default
15992 @itemx -msdata
15993 @opindex msdata=default
15994 @opindex msdata
15995 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
15996 compile code the same as @option{-msdata=eabi}, otherwise compile code the
15997 same as @option{-msdata=sysv}.
15998
15999 @item -msdata=data
16000 @opindex msdata=data
16001 On System V.4 and embedded PowerPC systems, put small global
16002 data in the @samp{.sdata} section.  Put small uninitialized global
16003 data in the @samp{.sbss} section.  Do not use register @code{r13}
16004 to address small data however.  This is the default behavior unless
16005 other @option{-msdata} options are used.
16006
16007 @item -msdata=none
16008 @itemx -mno-sdata
16009 @opindex msdata=none
16010 @opindex mno-sdata
16011 On embedded PowerPC systems, put all initialized global and static data
16012 in the @samp{.data} section, and all uninitialized data in the
16013 @samp{.bss} section.
16014
16015 @item -mblock-move-inline-limit=@var{num}
16016 @opindex mblock-move-inline-limit
16017 Inline all block moves (such as calls to @code{memcpy} or structure
16018 copies) less than or equal to @var{num} bytes.  The minimum value for
16019 @var{num} is 32 bytes on 32-bit targets and 64 bytes on 64-bit
16020 targets.  The default value is target-specific.
16021
16022 @item -G @var{num}
16023 @opindex G
16024 @cindex smaller data references (PowerPC)
16025 @cindex .sdata/.sdata2 references (PowerPC)
16026 On embedded PowerPC systems, put global and static items less than or
16027 equal to @var{num} bytes into the small data or bss sections instead of
16028 the normal data or bss section.  By default, @var{num} is 8.  The
16029 @option{-G @var{num}} switch is also passed to the linker.
16030 All modules should be compiled with the same @option{-G @var{num}} value.
16031
16032 @item -mregnames
16033 @itemx -mno-regnames
16034 @opindex mregnames
16035 @opindex mno-regnames
16036 On System V.4 and embedded PowerPC systems do (do not) emit register
16037 names in the assembly language output using symbolic forms.
16038
16039 @item -mlongcall
16040 @itemx -mno-longcall
16041 @opindex mlongcall
16042 @opindex mno-longcall
16043 By default assume that all calls are far away so that a longer more
16044 expensive calling sequence is required.  This is required for calls
16045 further than 32 megabytes (33,554,432 bytes) from the current location.
16046 A short call will be generated if the compiler knows
16047 the call cannot be that far away.  This setting can be overridden by
16048 the @code{shortcall} function attribute, or by @code{#pragma
16049 longcall(0)}.
16050
16051 Some linkers are capable of detecting out-of-range calls and generating
16052 glue code on the fly.  On these systems, long calls are unnecessary and
16053 generate slower code.  As of this writing, the AIX linker can do this,
16054 as can the GNU linker for PowerPC/64.  It is planned to add this feature
16055 to the GNU linker for 32-bit PowerPC systems as well.
16056
16057 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
16058 callee, L42'', plus a ``branch island'' (glue code).  The two target
16059 addresses represent the callee and the ``branch island''.  The
16060 Darwin/PPC linker will prefer the first address and generate a ``bl
16061 callee'' if the PPC ``bl'' instruction will reach the callee directly;
16062 otherwise, the linker will generate ``bl L42'' to call the ``branch
16063 island''.  The ``branch island'' is appended to the body of the
16064 calling function; it computes the full 32-bit address of the callee
16065 and jumps to it.
16066
16067 On Mach-O (Darwin) systems, this option directs the compiler emit to
16068 the glue for every direct call, and the Darwin linker decides whether
16069 to use or discard it.
16070
16071 In the future, we may cause GCC to ignore all longcall specifications
16072 when the linker is known to generate glue.
16073
16074 @item -mtls-markers
16075 @itemx -mno-tls-markers
16076 @opindex mtls-markers
16077 @opindex mno-tls-markers
16078 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
16079 specifying the function argument.  The relocation allows ld to
16080 reliably associate function call with argument setup instructions for
16081 TLS optimization, which in turn allows gcc to better schedule the
16082 sequence.
16083
16084 @item -pthread
16085 @opindex pthread
16086 Adds support for multithreading with the @dfn{pthreads} library.
16087 This option sets flags for both the preprocessor and linker.
16088
16089 @item -mrecip
16090 @itemx -mno-recip
16091 @opindex mrecip
16092 This option will enable GCC to use the reciprocal estimate and
16093 reciprocal square root estimate instructions with additional
16094 Newton-Raphson steps to increase precision instead of doing a divide or
16095 square root and divide for floating point arguments.  You should use
16096 the @option{-ffast-math} option when using @option{-mrecip} (or at
16097 least @option{-funsafe-math-optimizations},
16098 @option{-finite-math-only}, @option{-freciprocal-math} and
16099 @option{-fno-trapping-math}).  Note that while the throughput of the
16100 sequence is generally higher than the throughput of the non-reciprocal
16101 instruction, the precision of the sequence can be decreased by up to 2
16102 ulp (i.e. the inverse of 1.0 equals 0.99999994) for reciprocal square
16103 roots.
16104
16105 @item -mrecip=@var{opt}
16106 @opindex mrecip=opt
16107 This option allows to control which reciprocal estimate instructions
16108 may be used.  @var{opt} is a comma separated list of options, that may
16109 be preceded by a @code{!} to invert the option:
16110 @code{all}: enable all estimate instructions,
16111 @code{default}: enable the default instructions, equivalent to @option{-mrecip},
16112 @code{none}: disable all estimate instructions, equivalent to @option{-mno-recip};
16113 @code{div}: enable the reciprocal approximation instructions for both single and double precision;
16114 @code{divf}: enable the single precision reciprocal approximation instructions;
16115 @code{divd}: enable the double precision reciprocal approximation instructions;
16116 @code{rsqrt}: enable the reciprocal square root approximation instructions for both single and double precision;
16117 @code{rsqrtf}: enable the single precision reciprocal square root approximation instructions;
16118 @code{rsqrtd}: enable the double precision reciprocal square root approximation instructions;
16119
16120 So for example, @option{-mrecip=all,!rsqrtd} would enable the
16121 all of the reciprocal estimate instructions, except for the
16122 @code{FRSQRTE}, @code{XSRSQRTEDP}, and @code{XVRSQRTEDP} instructions
16123 which handle the double precision reciprocal square root calculations.
16124
16125 @item -mrecip-precision
16126 @itemx -mno-recip-precision
16127 @opindex mrecip-precision
16128 Assume (do not assume) that the reciprocal estimate instructions
16129 provide higher precision estimates than is mandated by the powerpc
16130 ABI.  Selecting @option{-mcpu=power6} or @option{-mcpu=power7}
16131 automatically selects @option{-mrecip-precision}.  The double
16132 precision square root estimate instructions are not generated by
16133 default on low precision machines, since they do not provide an
16134 estimate that converges after three steps.
16135
16136 @item -mveclibabi=@var{type}
16137 @opindex mveclibabi
16138 Specifies the ABI type to use for vectorizing intrinsics using an
16139 external library.  The only type supported at present is @code{mass},
16140 which specifies to use IBM's Mathematical Acceleration Subsystem
16141 (MASS) libraries for vectorizing intrinsics using external libraries.
16142 GCC will currently emit calls to @code{acosd2}, @code{acosf4},
16143 @code{acoshd2}, @code{acoshf4}, @code{asind2}, @code{asinf4},
16144 @code{asinhd2}, @code{asinhf4}, @code{atan2d2}, @code{atan2f4},
16145 @code{atand2}, @code{atanf4}, @code{atanhd2}, @code{atanhf4},
16146 @code{cbrtd2}, @code{cbrtf4}, @code{cosd2}, @code{cosf4},
16147 @code{coshd2}, @code{coshf4}, @code{erfcd2}, @code{erfcf4},
16148 @code{erfd2}, @code{erff4}, @code{exp2d2}, @code{exp2f4},
16149 @code{expd2}, @code{expf4}, @code{expm1d2}, @code{expm1f4},
16150 @code{hypotd2}, @code{hypotf4}, @code{lgammad2}, @code{lgammaf4},
16151 @code{log10d2}, @code{log10f4}, @code{log1pd2}, @code{log1pf4},
16152 @code{log2d2}, @code{log2f4}, @code{logd2}, @code{logf4},
16153 @code{powd2}, @code{powf4}, @code{sind2}, @code{sinf4}, @code{sinhd2},
16154 @code{sinhf4}, @code{sqrtd2}, @code{sqrtf4}, @code{tand2},
16155 @code{tanf4}, @code{tanhd2}, and @code{tanhf4} when generating code
16156 for power7.  Both @option{-ftree-vectorize} and
16157 @option{-funsafe-math-optimizations} have to be enabled.  The MASS
16158 libraries will have to be specified at link time.
16159
16160 @item -mfriz
16161 @itemx -mno-friz
16162 @opindex mfriz
16163 Generate (do not generate) the @code{friz} instruction when the
16164 @option{-funsafe-math-optimizations} option is used to optimize
16165 rounding a floating point value to 64-bit integer and back to floating
16166 point.  The @code{friz} instruction does not return the same value if
16167 the floating point number is too large to fit in an integer.
16168 @end table
16169
16170 @node RX Options
16171 @subsection RX Options
16172 @cindex RX Options
16173
16174 These command line options are defined for RX targets:
16175
16176 @table @gcctabopt
16177 @item -m64bit-doubles
16178 @itemx -m32bit-doubles
16179 @opindex m64bit-doubles
16180 @opindex m32bit-doubles
16181 Make the @code{double} data type be 64-bits (@option{-m64bit-doubles})
16182 or 32-bits (@option{-m32bit-doubles}) in size.  The default is
16183 @option{-m32bit-doubles}.  @emph{Note} RX floating point hardware only
16184 works on 32-bit values, which is why the default is
16185 @option{-m32bit-doubles}.
16186
16187 @item -fpu
16188 @itemx -nofpu
16189 @opindex fpu
16190 @opindex nofpu
16191 Enables (@option{-fpu}) or disables (@option{-nofpu}) the use of RX
16192 floating point hardware.  The default is enabled for the @var{RX600}
16193 series and disabled for the @var{RX200} series.
16194
16195 Floating point instructions will only be generated for 32-bit floating
16196 point values however, so if the @option{-m64bit-doubles} option is in
16197 use then the FPU hardware will not be used for doubles.
16198
16199 @emph{Note} If the @option{-fpu} option is enabled then
16200 @option{-funsafe-math-optimizations} is also enabled automatically.
16201 This is because the RX FPU instructions are themselves unsafe.
16202
16203 @item -mcpu=@var{name}
16204 @opindex -mcpu
16205 Selects the type of RX CPU to be targeted.  Currently three types are
16206 supported, the generic @var{RX600} and @var{RX200} series hardware and
16207 the specific @var{RX610} CPU.  The default is @var{RX600}.
16208
16209 The only difference between @var{RX600} and @var{RX610} is that the
16210 @var{RX610} does not support the @code{MVTIPL} instruction.
16211
16212 The @var{RX200} series does not have a hardware floating point unit
16213 and so @option{-nofpu} is enabled by default when this type is
16214 selected.
16215
16216 @item -mbig-endian-data
16217 @itemx -mlittle-endian-data
16218 @opindex mbig-endian-data
16219 @opindex mlittle-endian-data
16220 Store data (but not code) in the big-endian format.  The default is
16221 @option{-mlittle-endian-data}, i.e.@: to store data in the little endian
16222 format.
16223
16224 @item -msmall-data-limit=@var{N}
16225 @opindex msmall-data-limit
16226 Specifies the maximum size in bytes of global and static variables
16227 which can be placed into the small data area.  Using the small data
16228 area can lead to smaller and faster code, but the size of area is
16229 limited and it is up to the programmer to ensure that the area does
16230 not overflow.  Also when the small data area is used one of the RX's
16231 registers (@code{r13}) is reserved for use pointing to this area, so
16232 it is no longer available for use by the compiler.  This could result
16233 in slower and/or larger code if variables which once could have been
16234 held in @code{r13} are now pushed onto the stack.
16235
16236 Note, common variables (variables which have not been initialised) and
16237 constants are not placed into the small data area as they are assigned
16238 to other sections in the output executable.
16239
16240 The default value is zero, which disables this feature.  Note, this
16241 feature is not enabled by default with higher optimization levels
16242 (@option{-O2} etc) because of the potentially detrimental effects of
16243 reserving register @code{r13}.  It is up to the programmer to
16244 experiment and discover whether this feature is of benefit to their
16245 program.
16246
16247 @item -msim
16248 @itemx -mno-sim
16249 @opindex msim
16250 @opindex mno-sim
16251 Use the simulator runtime.  The default is to use the libgloss board
16252 specific runtime.
16253
16254 @item -mas100-syntax
16255 @itemx -mno-as100-syntax
16256 @opindex mas100-syntax
16257 @opindex mno-as100-syntax
16258 When generating assembler output use a syntax that is compatible with
16259 Renesas's AS100 assembler.  This syntax can also be handled by the GAS
16260 assembler but it has some restrictions so generating it is not the
16261 default option.
16262
16263 @item -mmax-constant-size=@var{N}
16264 @opindex mmax-constant-size
16265 Specifies the maximum size, in bytes, of a constant that can be used as
16266 an operand in a RX instruction.  Although the RX instruction set does
16267 allow constants of up to 4 bytes in length to be used in instructions,
16268 a longer value equates to a longer instruction.  Thus in some
16269 circumstances it can be beneficial to restrict the size of constants
16270 that are used in instructions.  Constants that are too big are instead
16271 placed into a constant pool and referenced via register indirection.
16272
16273 The value @var{N} can be between 0 and 4.  A value of 0 (the default)
16274 or 4 means that constants of any size are allowed.
16275
16276 @item -mrelax
16277 @opindex mrelax
16278 Enable linker relaxation.  Linker relaxation is a process whereby the
16279 linker will attempt to reduce the size of a program by finding shorter
16280 versions of various instructions.  Disabled by default.
16281
16282 @item -mint-register=@var{N}
16283 @opindex mint-register
16284 Specify the number of registers to reserve for fast interrupt handler
16285 functions.  The value @var{N} can be between 0 and 4.  A value of 1
16286 means that register @code{r13} will be reserved for the exclusive use
16287 of fast interrupt handlers.  A value of 2 reserves @code{r13} and
16288 @code{r12}.  A value of 3 reserves @code{r13}, @code{r12} and
16289 @code{r11}, and a value of 4 reserves @code{r13} through @code{r10}.
16290 A value of 0, the default, does not reserve any registers.
16291
16292 @item -msave-acc-in-interrupts
16293 @opindex msave-acc-in-interrupts
16294 Specifies that interrupt handler functions should preserve the
16295 accumulator register.  This is only necessary if normal code might use
16296 the accumulator register, for example because it performs 64-bit
16297 multiplications.  The default is to ignore the accumulator as this
16298 makes the interrupt handlers faster.
16299
16300 @end table
16301
16302 @emph{Note:} The generic GCC command line @option{-ffixed-@var{reg}}
16303 has special significance to the RX port when used with the
16304 @code{interrupt} function attribute.  This attribute indicates a
16305 function intended to process fast interrupts.  GCC will will ensure
16306 that it only uses the registers @code{r10}, @code{r11}, @code{r12}
16307 and/or @code{r13} and only provided that the normal use of the
16308 corresponding registers have been restricted via the
16309 @option{-ffixed-@var{reg}} or @option{-mint-register} command line
16310 options.
16311
16312 @node S/390 and zSeries Options
16313 @subsection S/390 and zSeries Options
16314 @cindex S/390 and zSeries Options
16315
16316 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
16317
16318 @table @gcctabopt
16319 @item -mhard-float
16320 @itemx -msoft-float
16321 @opindex mhard-float
16322 @opindex msoft-float
16323 Use (do not use) the hardware floating-point instructions and registers
16324 for floating-point operations.  When @option{-msoft-float} is specified,
16325 functions in @file{libgcc.a} will be used to perform floating-point
16326 operations.  When @option{-mhard-float} is specified, the compiler
16327 generates IEEE floating-point instructions.  This is the default.
16328
16329 @item -mhard-dfp
16330 @itemx -mno-hard-dfp
16331 @opindex mhard-dfp
16332 @opindex mno-hard-dfp
16333 Use (do not use) the hardware decimal-floating-point instructions for
16334 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
16335 specified, functions in @file{libgcc.a} will be used to perform
16336 decimal-floating-point operations.  When @option{-mhard-dfp} is
16337 specified, the compiler generates decimal-floating-point hardware
16338 instructions.  This is the default for @option{-march=z9-ec} or higher.
16339
16340 @item -mlong-double-64
16341 @itemx -mlong-double-128
16342 @opindex mlong-double-64
16343 @opindex mlong-double-128
16344 These switches control the size of @code{long double} type. A size
16345 of 64bit makes the @code{long double} type equivalent to the @code{double}
16346 type. This is the default.
16347
16348 @item -mbackchain
16349 @itemx -mno-backchain
16350 @opindex mbackchain
16351 @opindex mno-backchain
16352 Store (do not store) the address of the caller's frame as backchain pointer
16353 into the callee's stack frame.
16354 A backchain may be needed to allow debugging using tools that do not understand
16355 DWARF-2 call frame information.
16356 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
16357 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
16358 the backchain is placed into the topmost word of the 96/160 byte register
16359 save area.
16360
16361 In general, code compiled with @option{-mbackchain} is call-compatible with
16362 code compiled with @option{-mmo-backchain}; however, use of the backchain
16363 for debugging purposes usually requires that the whole binary is built with
16364 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
16365 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16366 to build a linux kernel use @option{-msoft-float}.
16367
16368 The default is to not maintain the backchain.
16369
16370 @item -mpacked-stack
16371 @itemx -mno-packed-stack
16372 @opindex mpacked-stack
16373 @opindex mno-packed-stack
16374 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
16375 specified, the compiler uses the all fields of the 96/160 byte register save
16376 area only for their default purpose; unused fields still take up stack space.
16377 When @option{-mpacked-stack} is specified, register save slots are densely
16378 packed at the top of the register save area; unused space is reused for other
16379 purposes, allowing for more efficient use of the available stack space.
16380 However, when @option{-mbackchain} is also in effect, the topmost word of
16381 the save area is always used to store the backchain, and the return address
16382 register is always saved two words below the backchain.
16383
16384 As long as the stack frame backchain is not used, code generated with
16385 @option{-mpacked-stack} is call-compatible with code generated with
16386 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
16387 S/390 or zSeries generated code that uses the stack frame backchain at run
16388 time, not just for debugging purposes.  Such code is not call-compatible
16389 with code compiled with @option{-mpacked-stack}.  Also, note that the
16390 combination of @option{-mbackchain},
16391 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16392 to build a linux kernel use @option{-msoft-float}.
16393
16394 The default is to not use the packed stack layout.
16395
16396 @item -msmall-exec
16397 @itemx -mno-small-exec
16398 @opindex msmall-exec
16399 @opindex mno-small-exec
16400 Generate (or do not generate) code using the @code{bras} instruction
16401 to do subroutine calls.
16402 This only works reliably if the total executable size does not
16403 exceed 64k.  The default is to use the @code{basr} instruction instead,
16404 which does not have this limitation.
16405
16406 @item -m64
16407 @itemx -m31
16408 @opindex m64
16409 @opindex m31
16410 When @option{-m31} is specified, generate code compliant to the
16411 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
16412 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
16413 particular to generate 64-bit instructions.  For the @samp{s390}
16414 targets, the default is @option{-m31}, while the @samp{s390x}
16415 targets default to @option{-m64}.
16416
16417 @item -mzarch
16418 @itemx -mesa
16419 @opindex mzarch
16420 @opindex mesa
16421 When @option{-mzarch} is specified, generate code using the
16422 instructions available on z/Architecture.
16423 When @option{-mesa} is specified, generate code using the
16424 instructions available on ESA/390.  Note that @option{-mesa} is
16425 not possible with @option{-m64}.
16426 When generating code compliant to the GNU/Linux for S/390 ABI,
16427 the default is @option{-mesa}.  When generating code compliant
16428 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
16429
16430 @item -mmvcle
16431 @itemx -mno-mvcle
16432 @opindex mmvcle
16433 @opindex mno-mvcle
16434 Generate (or do not generate) code using the @code{mvcle} instruction
16435 to perform block moves.  When @option{-mno-mvcle} is specified,
16436 use a @code{mvc} loop instead.  This is the default unless optimizing for
16437 size.
16438
16439 @item -mdebug
16440 @itemx -mno-debug
16441 @opindex mdebug
16442 @opindex mno-debug
16443 Print (or do not print) additional debug information when compiling.
16444 The default is to not print debug information.
16445
16446 @item -march=@var{cpu-type}
16447 @opindex march
16448 Generate code that will run on @var{cpu-type}, which is the name of a system
16449 representing a certain processor type.  Possible values for
16450 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
16451 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
16452 When generating code using the instructions available on z/Architecture,
16453 the default is @option{-march=z900}.  Otherwise, the default is
16454 @option{-march=g5}.
16455
16456 @item -mtune=@var{cpu-type}
16457 @opindex mtune
16458 Tune to @var{cpu-type} everything applicable about the generated code,
16459 except for the ABI and the set of available instructions.
16460 The list of @var{cpu-type} values is the same as for @option{-march}.
16461 The default is the value used for @option{-march}.
16462
16463 @item -mtpf-trace
16464 @itemx -mno-tpf-trace
16465 @opindex mtpf-trace
16466 @opindex mno-tpf-trace
16467 Generate code that adds (does not add) in TPF OS specific branches to trace
16468 routines in the operating system.  This option is off by default, even
16469 when compiling for the TPF OS@.
16470
16471 @item -mfused-madd
16472 @itemx -mno-fused-madd
16473 @opindex mfused-madd
16474 @opindex mno-fused-madd
16475 Generate code that uses (does not use) the floating point multiply and
16476 accumulate instructions.  These instructions are generated by default if
16477 hardware floating point is used.
16478
16479 @item -mwarn-framesize=@var{framesize}
16480 @opindex mwarn-framesize
16481 Emit a warning if the current function exceeds the given frame size.  Because
16482 this is a compile time check it doesn't need to be a real problem when the program
16483 runs.  It is intended to identify functions which most probably cause
16484 a stack overflow.  It is useful to be used in an environment with limited stack
16485 size e.g.@: the linux kernel.
16486
16487 @item -mwarn-dynamicstack
16488 @opindex mwarn-dynamicstack
16489 Emit a warning if the function calls alloca or uses dynamically
16490 sized arrays.  This is generally a bad idea with a limited stack size.
16491
16492 @item -mstack-guard=@var{stack-guard}
16493 @itemx -mstack-size=@var{stack-size}
16494 @opindex mstack-guard
16495 @opindex mstack-size
16496 If these options are provided the s390 back end emits additional instructions in
16497 the function prologue which trigger a trap if the stack size is @var{stack-guard}
16498 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
16499 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
16500 the frame size of the compiled function is chosen.
16501 These options are intended to be used to help debugging stack overflow problems.
16502 The additionally emitted code causes only little overhead and hence can also be
16503 used in production like systems without greater performance degradation.  The given
16504 values have to be exact powers of 2 and @var{stack-size} has to be greater than
16505 @var{stack-guard} without exceeding 64k.
16506 In order to be efficient the extra code makes the assumption that the stack starts
16507 at an address aligned to the value given by @var{stack-size}.
16508 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
16509 @end table
16510
16511 @node Score Options
16512 @subsection Score Options
16513 @cindex Score Options
16514
16515 These options are defined for Score implementations:
16516
16517 @table @gcctabopt
16518 @item -meb
16519 @opindex meb
16520 Compile code for big endian mode.  This is the default.
16521
16522 @item -mel
16523 @opindex mel
16524 Compile code for little endian mode.
16525
16526 @item -mnhwloop
16527 @opindex mnhwloop
16528 Disable generate bcnz instruction.
16529
16530 @item -muls
16531 @opindex muls
16532 Enable generate unaligned load and store instruction.
16533
16534 @item -mmac
16535 @opindex mmac
16536 Enable the use of multiply-accumulate instructions. Disabled by default.
16537
16538 @item -mscore5
16539 @opindex mscore5
16540 Specify the SCORE5 as the target architecture.
16541
16542 @item -mscore5u
16543 @opindex mscore5u
16544 Specify the SCORE5U of the target architecture.
16545
16546 @item -mscore7
16547 @opindex mscore7
16548 Specify the SCORE7 as the target architecture. This is the default.
16549
16550 @item -mscore7d
16551 @opindex mscore7d
16552 Specify the SCORE7D as the target architecture.
16553 @end table
16554
16555 @node SH Options
16556 @subsection SH Options
16557
16558 These @samp{-m} options are defined for the SH implementations:
16559
16560 @table @gcctabopt
16561 @item -m1
16562 @opindex m1
16563 Generate code for the SH1.
16564
16565 @item -m2
16566 @opindex m2
16567 Generate code for the SH2.
16568
16569 @item -m2e
16570 Generate code for the SH2e.
16571
16572 @item -m2a-nofpu
16573 @opindex m2a-nofpu
16574 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
16575 that the floating-point unit is not used.
16576
16577 @item -m2a-single-only
16578 @opindex m2a-single-only
16579 Generate code for the SH2a-FPU, in such a way that no double-precision
16580 floating point operations are used.
16581
16582 @item -m2a-single
16583 @opindex m2a-single
16584 Generate code for the SH2a-FPU assuming the floating-point unit is in
16585 single-precision mode by default.
16586
16587 @item -m2a
16588 @opindex m2a
16589 Generate code for the SH2a-FPU assuming the floating-point unit is in
16590 double-precision mode by default.
16591
16592 @item -m3
16593 @opindex m3
16594 Generate code for the SH3.
16595
16596 @item -m3e
16597 @opindex m3e
16598 Generate code for the SH3e.
16599
16600 @item -m4-nofpu
16601 @opindex m4-nofpu
16602 Generate code for the SH4 without a floating-point unit.
16603
16604 @item -m4-single-only
16605 @opindex m4-single-only
16606 Generate code for the SH4 with a floating-point unit that only
16607 supports single-precision arithmetic.
16608
16609 @item -m4-single
16610 @opindex m4-single
16611 Generate code for the SH4 assuming the floating-point unit is in
16612 single-precision mode by default.
16613
16614 @item -m4
16615 @opindex m4
16616 Generate code for the SH4.
16617
16618 @item -m4a-nofpu
16619 @opindex m4a-nofpu
16620 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
16621 floating-point unit is not used.
16622
16623 @item -m4a-single-only
16624 @opindex m4a-single-only
16625 Generate code for the SH4a, in such a way that no double-precision
16626 floating point operations are used.
16627
16628 @item -m4a-single
16629 @opindex m4a-single
16630 Generate code for the SH4a assuming the floating-point unit is in
16631 single-precision mode by default.
16632
16633 @item -m4a
16634 @opindex m4a
16635 Generate code for the SH4a.
16636
16637 @item -m4al
16638 @opindex m4al
16639 Same as @option{-m4a-nofpu}, except that it implicitly passes
16640 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
16641 instructions at the moment.
16642
16643 @item -mb
16644 @opindex mb
16645 Compile code for the processor in big endian mode.
16646
16647 @item -ml
16648 @opindex ml
16649 Compile code for the processor in little endian mode.
16650
16651 @item -mdalign
16652 @opindex mdalign
16653 Align doubles at 64-bit boundaries.  Note that this changes the calling
16654 conventions, and thus some functions from the standard C library will
16655 not work unless you recompile it first with @option{-mdalign}.
16656
16657 @item -mrelax
16658 @opindex mrelax
16659 Shorten some address references at link time, when possible; uses the
16660 linker option @option{-relax}.
16661
16662 @item -mbigtable
16663 @opindex mbigtable
16664 Use 32-bit offsets in @code{switch} tables.  The default is to use
16665 16-bit offsets.
16666
16667 @item -mbitops
16668 @opindex mbitops
16669 Enable the use of bit manipulation instructions on SH2A.
16670
16671 @item -mfmovd
16672 @opindex mfmovd
16673 Enable the use of the instruction @code{fmovd}.  Check @option{-mdalign} for
16674 alignment constraints.
16675
16676 @item -mhitachi
16677 @opindex mhitachi
16678 Comply with the calling conventions defined by Renesas.
16679
16680 @item -mrenesas
16681 @opindex mhitachi
16682 Comply with the calling conventions defined by Renesas.
16683
16684 @item -mno-renesas
16685 @opindex mhitachi
16686 Comply with the calling conventions defined for GCC before the Renesas
16687 conventions were available.  This option is the default for all
16688 targets of the SH toolchain.
16689
16690 @item -mnomacsave
16691 @opindex mnomacsave
16692 Mark the @code{MAC} register as call-clobbered, even if
16693 @option{-mhitachi} is given.
16694
16695 @item -mieee
16696 @opindex mieee
16697 Increase IEEE-compliance of floating-point code.
16698 At the moment, this is equivalent to @option{-fno-finite-math-only}.
16699 When generating 16 bit SH opcodes, getting IEEE-conforming results for
16700 comparisons of NANs / infinities incurs extra overhead in every
16701 floating point comparison, therefore the default is set to
16702 @option{-ffinite-math-only}.
16703
16704 @item -minline-ic_invalidate
16705 @opindex minline-ic_invalidate
16706 Inline code to invalidate instruction cache entries after setting up
16707 nested function trampolines.
16708 This option has no effect if -musermode is in effect and the selected
16709 code generation option (e.g. -m4) does not allow the use of the icbi
16710 instruction.
16711 If the selected code generation option does not allow the use of the icbi
16712 instruction, and -musermode is not in effect, the inlined code will
16713 manipulate the instruction cache address array directly with an associative
16714 write.  This not only requires privileged mode, but it will also
16715 fail if the cache line had been mapped via the TLB and has become unmapped.
16716
16717 @item -misize
16718 @opindex misize
16719 Dump instruction size and location in the assembly code.
16720
16721 @item -mpadstruct
16722 @opindex mpadstruct
16723 This option is deprecated.  It pads structures to multiple of 4 bytes,
16724 which is incompatible with the SH ABI@.
16725
16726 @item -mspace
16727 @opindex mspace
16728 Optimize for space instead of speed.  Implied by @option{-Os}.
16729
16730 @item -mprefergot
16731 @opindex mprefergot
16732 When generating position-independent code, emit function calls using
16733 the Global Offset Table instead of the Procedure Linkage Table.
16734
16735 @item -musermode
16736 @opindex musermode
16737 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
16738 if the inlined code would not work in user mode.
16739 This is the default when the target is @code{sh-*-linux*}.
16740
16741 @item -multcost=@var{number}
16742 @opindex multcost=@var{number}
16743 Set the cost to assume for a multiply insn.
16744
16745 @item -mdiv=@var{strategy}
16746 @opindex mdiv=@var{strategy}
16747 Set the division strategy to use for SHmedia code.  @var{strategy} must be
16748 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
16749 inv:call2, inv:fp .
16750 "fp" performs the operation in floating point.  This has a very high latency,
16751 but needs only a few instructions, so it might be a good choice if
16752 your code has enough easily exploitable ILP to allow the compiler to
16753 schedule the floating point instructions together with other instructions.
16754 Division by zero causes a floating point exception.
16755 "inv" uses integer operations to calculate the inverse of the divisor,
16756 and then multiplies the dividend with the inverse.  This strategy allows
16757 cse and hoisting of the inverse calculation.  Division by zero calculates
16758 an unspecified result, but does not trap.
16759 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
16760 have been found, or if the entire operation has been hoisted to the same
16761 place, the last stages of the inverse calculation are intertwined with the
16762 final multiply to reduce the overall latency, at the expense of using a few
16763 more instructions, and thus offering fewer scheduling opportunities with
16764 other code.
16765 "call" calls a library function that usually implements the inv:minlat
16766 strategy.
16767 This gives high code density for m5-*media-nofpu compilations.
16768 "call2" uses a different entry point of the same library function, where it
16769 assumes that a pointer to a lookup table has already been set up, which
16770 exposes the pointer load to cse / code hoisting optimizations.
16771 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
16772 code generation, but if the code stays unoptimized, revert to the "call",
16773 "call2", or "fp" strategies, respectively.  Note that the
16774 potentially-trapping side effect of division by zero is carried by a
16775 separate instruction, so it is possible that all the integer instructions
16776 are hoisted out, but the marker for the side effect stays where it is.
16777 A recombination to fp operations or a call is not possible in that case.
16778 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
16779 that the inverse calculation was nor separated from the multiply, they speed
16780 up division where the dividend fits into 20 bits (plus sign where applicable),
16781 by inserting a test to skip a number of operations in this case; this test
16782 slows down the case of larger dividends.  inv20u assumes the case of a such
16783 a small dividend to be unlikely, and inv20l assumes it to be likely.
16784
16785 @item -maccumulate-outgoing-args
16786 @opindex maccumulate-outgoing-args
16787 Reserve space once for outgoing arguments in the function prologue rather
16788 than around each call.  Generally beneficial for performance and size.  Also
16789 needed for unwinding to avoid changing the stack frame around conditional code.
16790
16791 @item -mdivsi3_libfunc=@var{name}
16792 @opindex mdivsi3_libfunc=@var{name}
16793 Set the name of the library function used for 32 bit signed division to
16794 @var{name}.  This only affect the name used in the call and inv:call
16795 division strategies, and the compiler will still expect the same
16796 sets of input/output/clobbered registers as if this option was not present.
16797
16798 @item -mfixed-range=@var{register-range}
16799 @opindex mfixed-range
16800 Generate code treating the given register range as fixed registers.
16801 A fixed register is one that the register allocator can not use.  This is
16802 useful when compiling kernel code.  A register range is specified as
16803 two registers separated by a dash.  Multiple register ranges can be
16804 specified separated by a comma.
16805
16806 @item -madjust-unroll
16807 @opindex madjust-unroll
16808 Throttle unrolling to avoid thrashing target registers.
16809 This option only has an effect if the gcc code base supports the
16810 TARGET_ADJUST_UNROLL_MAX target hook.
16811
16812 @item -mindexed-addressing
16813 @opindex mindexed-addressing
16814 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
16815 This is only safe if the hardware and/or OS implement 32 bit wrap-around
16816 semantics for the indexed addressing mode.  The architecture allows the
16817 implementation of processors with 64 bit MMU, which the OS could use to
16818 get 32 bit addressing, but since no current hardware implementation supports
16819 this or any other way to make the indexed addressing mode safe to use in
16820 the 32 bit ABI, the default is -mno-indexed-addressing.
16821
16822 @item -mgettrcost=@var{number}
16823 @opindex mgettrcost=@var{number}
16824 Set the cost assumed for the gettr instruction to @var{number}.
16825 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
16826
16827 @item -mpt-fixed
16828 @opindex mpt-fixed
16829 Assume pt* instructions won't trap.  This will generally generate better
16830 scheduled code, but is unsafe on current hardware.  The current architecture
16831 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
16832 This has the unintentional effect of making it unsafe to schedule ptabs /
16833 ptrel before a branch, or hoist it out of a loop.  For example,
16834 __do_global_ctors, a part of libgcc that runs constructors at program
16835 startup, calls functions in a list which is delimited by @minus{}1.  With the
16836 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
16837 That means that all the constructors will be run a bit quicker, but when
16838 the loop comes to the end of the list, the program crashes because ptabs
16839 loads @minus{}1 into a target register.  Since this option is unsafe for any
16840 hardware implementing the current architecture specification, the default
16841 is -mno-pt-fixed.  Unless the user specifies a specific cost with
16842 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
16843 this deters register allocation using target registers for storing
16844 ordinary integers.
16845
16846 @item -minvalid-symbols
16847 @opindex minvalid-symbols
16848 Assume symbols might be invalid.  Ordinary function symbols generated by
16849 the compiler will always be valid to load with movi/shori/ptabs or
16850 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
16851 to generate symbols that will cause ptabs / ptrel to trap.
16852 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
16853 It will then prevent cross-basic-block cse, hoisting and most scheduling
16854 of symbol loads.  The default is @option{-mno-invalid-symbols}.
16855 @end table
16856
16857 @node Solaris 2 Options
16858 @subsection Solaris 2 Options
16859 @cindex Solaris 2 options
16860
16861 These @samp{-m} options are supported on Solaris 2:
16862
16863 @table @gcctabopt
16864 @item -mimpure-text
16865 @opindex mimpure-text
16866 @option{-mimpure-text}, used in addition to @option{-shared}, tells
16867 the compiler to not pass @option{-z text} to the linker when linking a
16868 shared object.  Using this option, you can link position-dependent
16869 code into a shared object.
16870
16871 @option{-mimpure-text} suppresses the ``relocations remain against
16872 allocatable but non-writable sections'' linker error message.
16873 However, the necessary relocations will trigger copy-on-write, and the
16874 shared object is not actually shared across processes.  Instead of
16875 using @option{-mimpure-text}, you should compile all source code with
16876 @option{-fpic} or @option{-fPIC}.
16877
16878 @end table
16879
16880 These switches are supported in addition to the above on Solaris 2:
16881
16882 @table @gcctabopt
16883 @item -pthreads
16884 @opindex pthreads
16885 Add support for multithreading using the POSIX threads library.  This
16886 option sets flags for both the preprocessor and linker.  This option does
16887 not affect the thread safety of object code produced  by the compiler or
16888 that of libraries supplied with it.
16889
16890 @item -pthread
16891 @opindex pthread
16892 This is a synonym for @option{-pthreads}.
16893 @end table
16894
16895 @node SPARC Options
16896 @subsection SPARC Options
16897 @cindex SPARC options
16898
16899 These @samp{-m} options are supported on the SPARC:
16900
16901 @table @gcctabopt
16902 @item -mno-app-regs
16903 @itemx -mapp-regs
16904 @opindex mno-app-regs
16905 @opindex mapp-regs
16906 Specify @option{-mapp-regs} to generate output using the global registers
16907 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
16908 is the default.
16909
16910 To be fully SVR4 ABI compliant at the cost of some performance loss,
16911 specify @option{-mno-app-regs}.  You should compile libraries and system
16912 software with this option.
16913
16914 @item -mfpu
16915 @itemx -mhard-float
16916 @opindex mfpu
16917 @opindex mhard-float
16918 Generate output containing floating point instructions.  This is the
16919 default.
16920
16921 @item -mno-fpu
16922 @itemx -msoft-float
16923 @opindex mno-fpu
16924 @opindex msoft-float
16925 Generate output containing library calls for floating point.
16926 @strong{Warning:} the requisite libraries are not available for all SPARC
16927 targets.  Normally the facilities of the machine's usual C compiler are
16928 used, but this cannot be done directly in cross-compilation.  You must make
16929 your own arrangements to provide suitable library functions for
16930 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
16931 @samp{sparclite-*-*} do provide software floating point support.
16932
16933 @option{-msoft-float} changes the calling convention in the output file;
16934 therefore, it is only useful if you compile @emph{all} of a program with
16935 this option.  In particular, you need to compile @file{libgcc.a}, the
16936 library that comes with GCC, with @option{-msoft-float} in order for
16937 this to work.
16938
16939 @item -mhard-quad-float
16940 @opindex mhard-quad-float
16941 Generate output containing quad-word (long double) floating point
16942 instructions.
16943
16944 @item -msoft-quad-float
16945 @opindex msoft-quad-float
16946 Generate output containing library calls for quad-word (long double)
16947 floating point instructions.  The functions called are those specified
16948 in the SPARC ABI@.  This is the default.
16949
16950 As of this writing, there are no SPARC implementations that have hardware
16951 support for the quad-word floating point instructions.  They all invoke
16952 a trap handler for one of these instructions, and then the trap handler
16953 emulates the effect of the instruction.  Because of the trap handler overhead,
16954 this is much slower than calling the ABI library routines.  Thus the
16955 @option{-msoft-quad-float} option is the default.
16956
16957 @item -mno-unaligned-doubles
16958 @itemx -munaligned-doubles
16959 @opindex mno-unaligned-doubles
16960 @opindex munaligned-doubles
16961 Assume that doubles have 8 byte alignment.  This is the default.
16962
16963 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
16964 alignment only if they are contained in another type, or if they have an
16965 absolute address.  Otherwise, it assumes they have 4 byte alignment.
16966 Specifying this option avoids some rare compatibility problems with code
16967 generated by other compilers.  It is not the default because it results
16968 in a performance loss, especially for floating point code.
16969
16970 @item -mno-faster-structs
16971 @itemx -mfaster-structs
16972 @opindex mno-faster-structs
16973 @opindex mfaster-structs
16974 With @option{-mfaster-structs}, the compiler assumes that structures
16975 should have 8 byte alignment.  This enables the use of pairs of
16976 @code{ldd} and @code{std} instructions for copies in structure
16977 assignment, in place of twice as many @code{ld} and @code{st} pairs.
16978 However, the use of this changed alignment directly violates the SPARC
16979 ABI@.  Thus, it's intended only for use on targets where the developer
16980 acknowledges that their resulting code will not be directly in line with
16981 the rules of the ABI@.
16982
16983 @item -mcpu=@var{cpu_type}
16984 @opindex mcpu
16985 Set the instruction set, register set, and instruction scheduling parameters
16986 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
16987 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{hypersparc},
16988 @samp{leon}, @samp{sparclite}, @samp{f930}, @samp{f934}, @samp{sparclite86x},
16989 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
16990 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
16991
16992 Default instruction scheduling parameters are used for values that select
16993 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
16994 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
16995
16996 Here is a list of each supported architecture and their supported
16997 implementations.
16998
16999 @smallexample
17000     v7:             cypress
17001     v8:             supersparc, hypersparc, leon
17002     sparclite:      f930, f934, sparclite86x
17003     sparclet:       tsc701
17004     v9:             ultrasparc, ultrasparc3, niagara, niagara2
17005 @end smallexample
17006
17007 By default (unless configured otherwise), GCC generates code for the V7
17008 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
17009 additionally optimizes it for the Cypress CY7C602 chip, as used in the
17010 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
17011 SPARCStation 1, 2, IPX etc.
17012
17013 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
17014 architecture.  The only difference from V7 code is that the compiler emits
17015 the integer multiply and integer divide instructions which exist in SPARC-V8
17016 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
17017 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
17018 2000 series.
17019
17020 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
17021 the SPARC architecture.  This adds the integer multiply, integer divide step
17022 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
17023 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
17024 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
17025 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
17026 MB86934 chip, which is the more recent SPARClite with FPU@.
17027
17028 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
17029 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
17030 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
17031 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
17032 optimizes it for the TEMIC SPARClet chip.
17033
17034 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
17035 architecture.  This adds 64-bit integer and floating-point move instructions,
17036 3 additional floating-point condition code registers and conditional move
17037 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
17038 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
17039 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
17040 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
17041 @option{-mcpu=niagara}, the compiler additionally optimizes it for
17042 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
17043 additionally optimizes it for Sun UltraSPARC T2 chips.
17044
17045 @item -mtune=@var{cpu_type}
17046 @opindex mtune
17047 Set the instruction scheduling parameters for machine type
17048 @var{cpu_type}, but do not set the instruction set or register set that the
17049 option @option{-mcpu=@var{cpu_type}} would.
17050
17051 The same values for @option{-mcpu=@var{cpu_type}} can be used for
17052 @option{-mtune=@var{cpu_type}}, but the only useful values are those
17053 that select a particular CPU implementation.  Those are @samp{cypress},
17054 @samp{supersparc}, @samp{hypersparc}, @samp{leon}, @samp{f930}, @samp{f934},
17055 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc}, @samp{ultrasparc3},
17056 @samp{niagara}, and @samp{niagara2}.
17057
17058 @item -mv8plus
17059 @itemx -mno-v8plus
17060 @opindex mv8plus
17061 @opindex mno-v8plus
17062 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
17063 difference from the V8 ABI is that the global and out registers are
17064 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
17065 mode for all SPARC-V9 processors.
17066
17067 @item -mvis
17068 @itemx -mno-vis
17069 @opindex mvis
17070 @opindex mno-vis
17071 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
17072 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
17073 @end table
17074
17075 These @samp{-m} options are supported in addition to the above
17076 on SPARC-V9 processors in 64-bit environments:
17077
17078 @table @gcctabopt
17079 @item -mlittle-endian
17080 @opindex mlittle-endian
17081 Generate code for a processor running in little-endian mode.  It is only
17082 available for a few configurations and most notably not on Solaris and Linux.
17083
17084 @item -m32
17085 @itemx -m64
17086 @opindex m32
17087 @opindex m64
17088 Generate code for a 32-bit or 64-bit environment.
17089 The 32-bit environment sets int, long and pointer to 32 bits.
17090 The 64-bit environment sets int to 32 bits and long and pointer
17091 to 64 bits.
17092
17093 @item -mcmodel=medlow
17094 @opindex mcmodel=medlow
17095 Generate code for the Medium/Low code model: 64-bit addresses, programs
17096 must be linked in the low 32 bits of memory.  Programs can be statically
17097 or dynamically linked.
17098
17099 @item -mcmodel=medmid
17100 @opindex mcmodel=medmid
17101 Generate code for the Medium/Middle code model: 64-bit addresses, programs
17102 must be linked in the low 44 bits of memory, the text and data segments must
17103 be less than 2GB in size and the data segment must be located within 2GB of
17104 the text segment.
17105
17106 @item -mcmodel=medany
17107 @opindex mcmodel=medany
17108 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
17109 may be linked anywhere in memory, the text and data segments must be less
17110 than 2GB in size and the data segment must be located within 2GB of the
17111 text segment.
17112
17113 @item -mcmodel=embmedany
17114 @opindex mcmodel=embmedany
17115 Generate code for the Medium/Anywhere code model for embedded systems:
17116 64-bit addresses, the text and data segments must be less than 2GB in
17117 size, both starting anywhere in memory (determined at link time).  The
17118 global register %g4 points to the base of the data segment.  Programs
17119 are statically linked and PIC is not supported.
17120
17121 @item -mstack-bias
17122 @itemx -mno-stack-bias
17123 @opindex mstack-bias
17124 @opindex mno-stack-bias
17125 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
17126 frame pointer if present, are offset by @minus{}2047 which must be added back
17127 when making stack frame references.  This is the default in 64-bit mode.
17128 Otherwise, assume no such offset is present.
17129 @end table
17130
17131 @node SPU Options
17132 @subsection SPU Options
17133 @cindex SPU options
17134
17135 These @samp{-m} options are supported on the SPU:
17136
17137 @table @gcctabopt
17138 @item -mwarn-reloc
17139 @itemx -merror-reloc
17140 @opindex mwarn-reloc
17141 @opindex merror-reloc
17142
17143 The loader for SPU does not handle dynamic relocations.  By default, GCC
17144 will give an error when it generates code that requires a dynamic
17145 relocation.  @option{-mno-error-reloc} disables the error,
17146 @option{-mwarn-reloc} will generate a warning instead.
17147
17148 @item -msafe-dma
17149 @itemx -munsafe-dma
17150 @opindex msafe-dma
17151 @opindex munsafe-dma
17152
17153 Instructions which initiate or test completion of DMA must not be
17154 reordered with respect to loads and stores of the memory which is being
17155 accessed.  Users typically address this problem using the volatile
17156 keyword, but that can lead to inefficient code in places where the
17157 memory is known to not change.  Rather than mark the memory as volatile
17158 we treat the DMA instructions as potentially effecting all memory.  With
17159 @option{-munsafe-dma} users must use the volatile keyword to protect
17160 memory accesses.
17161
17162 @item -mbranch-hints
17163 @opindex mbranch-hints
17164
17165 By default, GCC will generate a branch hint instruction to avoid
17166 pipeline stalls for always taken or probably taken branches.  A hint
17167 will not be generated closer than 8 instructions away from its branch.
17168 There is little reason to disable them, except for debugging purposes,
17169 or to make an object a little bit smaller.
17170
17171 @item -msmall-mem
17172 @itemx -mlarge-mem
17173 @opindex msmall-mem
17174 @opindex mlarge-mem
17175
17176 By default, GCC generates code assuming that addresses are never larger
17177 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
17178 a full 32 bit address.
17179
17180 @item -mstdmain
17181 @opindex mstdmain
17182
17183 By default, GCC links against startup code that assumes the SPU-style
17184 main function interface (which has an unconventional parameter list).
17185 With @option{-mstdmain}, GCC will link your program against startup
17186 code that assumes a C99-style interface to @code{main}, including a
17187 local copy of @code{argv} strings.
17188
17189 @item -mfixed-range=@var{register-range}
17190 @opindex mfixed-range
17191 Generate code treating the given register range as fixed registers.
17192 A fixed register is one that the register allocator can not use.  This is
17193 useful when compiling kernel code.  A register range is specified as
17194 two registers separated by a dash.  Multiple register ranges can be
17195 specified separated by a comma.
17196
17197 @item -mea32
17198 @itemx -mea64
17199 @opindex mea32
17200 @opindex mea64
17201 Compile code assuming that pointers to the PPU address space accessed
17202 via the @code{__ea} named address space qualifier are either 32 or 64
17203 bits wide.  The default is 32 bits.  As this is an ABI changing option,
17204 all object code in an executable must be compiled with the same setting.
17205
17206 @item -maddress-space-conversion
17207 @itemx -mno-address-space-conversion
17208 @opindex maddress-space-conversion
17209 @opindex mno-address-space-conversion
17210 Allow/disallow treating the @code{__ea} address space as superset
17211 of the generic address space.  This enables explicit type casts
17212 between @code{__ea} and generic pointer as well as implicit
17213 conversions of generic pointers to @code{__ea} pointers.  The
17214 default is to allow address space pointer conversions.
17215
17216 @item -mcache-size=@var{cache-size}
17217 @opindex mcache-size
17218 This option controls the version of libgcc that the compiler links to an
17219 executable and selects a software-managed cache for accessing variables
17220 in the @code{__ea} address space with a particular cache size.  Possible
17221 options for @var{cache-size} are @samp{8}, @samp{16}, @samp{32}, @samp{64}
17222 and @samp{128}.  The default cache size is 64KB.
17223
17224 @item -matomic-updates
17225 @itemx -mno-atomic-updates
17226 @opindex matomic-updates
17227 @opindex mno-atomic-updates
17228 This option controls the version of libgcc that the compiler links to an
17229 executable and selects whether atomic updates to the software-managed
17230 cache of PPU-side variables are used.  If you use atomic updates, changes
17231 to a PPU variable from SPU code using the @code{__ea} named address space
17232 qualifier will not interfere with changes to other PPU variables residing
17233 in the same cache line from PPU code.  If you do not use atomic updates,
17234 such interference may occur; however, writing back cache lines will be
17235 more efficient.  The default behavior is to use atomic updates.
17236
17237 @item -mdual-nops
17238 @itemx -mdual-nops=@var{n}
17239 @opindex mdual-nops
17240 By default, GCC will insert nops to increase dual issue when it expects
17241 it to increase performance.  @var{n} can be a value from 0 to 10.  A
17242 smaller @var{n} will insert fewer nops.  10 is the default, 0 is the
17243 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
17244
17245 @item -mhint-max-nops=@var{n}
17246 @opindex mhint-max-nops
17247 Maximum number of nops to insert for a branch hint.  A branch hint must
17248 be at least 8 instructions away from the branch it is effecting.  GCC
17249 will insert up to @var{n} nops to enforce this, otherwise it will not
17250 generate the branch hint.
17251
17252 @item -mhint-max-distance=@var{n}
17253 @opindex mhint-max-distance
17254 The encoding of the branch hint instruction limits the hint to be within
17255 256 instructions of the branch it is effecting.  By default, GCC makes
17256 sure it is within 125.
17257
17258 @item -msafe-hints
17259 @opindex msafe-hints
17260 Work around a hardware bug which causes the SPU to stall indefinitely.
17261 By default, GCC will insert the @code{hbrp} instruction to make sure
17262 this stall won't happen.
17263
17264 @end table
17265
17266 @node System V Options
17267 @subsection Options for System V
17268
17269 These additional options are available on System V Release 4 for
17270 compatibility with other compilers on those systems:
17271
17272 @table @gcctabopt
17273 @item -G
17274 @opindex G
17275 Create a shared object.
17276 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
17277
17278 @item -Qy
17279 @opindex Qy
17280 Identify the versions of each tool used by the compiler, in a
17281 @code{.ident} assembler directive in the output.
17282
17283 @item -Qn
17284 @opindex Qn
17285 Refrain from adding @code{.ident} directives to the output file (this is
17286 the default).
17287
17288 @item -YP,@var{dirs}
17289 @opindex YP
17290 Search the directories @var{dirs}, and no others, for libraries
17291 specified with @option{-l}.
17292
17293 @item -Ym,@var{dir}
17294 @opindex Ym
17295 Look in the directory @var{dir} to find the M4 preprocessor.
17296 The assembler uses this option.
17297 @c This is supposed to go with a -Yd for predefined M4 macro files, but
17298 @c the generic assembler that comes with Solaris takes just -Ym.
17299 @end table
17300
17301 @node V850 Options
17302 @subsection V850 Options
17303 @cindex V850 Options
17304
17305 These @samp{-m} options are defined for V850 implementations:
17306
17307 @table @gcctabopt
17308 @item -mlong-calls
17309 @itemx -mno-long-calls
17310 @opindex mlong-calls
17311 @opindex mno-long-calls
17312 Treat all calls as being far away (near).  If calls are assumed to be
17313 far away, the compiler will always load the functions address up into a
17314 register, and call indirect through the pointer.
17315
17316 @item -mno-ep
17317 @itemx -mep
17318 @opindex mno-ep
17319 @opindex mep
17320 Do not optimize (do optimize) basic blocks that use the same index
17321 pointer 4 or more times to copy pointer into the @code{ep} register, and
17322 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
17323 option is on by default if you optimize.
17324
17325 @item -mno-prolog-function
17326 @itemx -mprolog-function
17327 @opindex mno-prolog-function
17328 @opindex mprolog-function
17329 Do not use (do use) external functions to save and restore registers
17330 at the prologue and epilogue of a function.  The external functions
17331 are slower, but use less code space if more than one function saves
17332 the same number of registers.  The @option{-mprolog-function} option
17333 is on by default if you optimize.
17334
17335 @item -mspace
17336 @opindex mspace
17337 Try to make the code as small as possible.  At present, this just turns
17338 on the @option{-mep} and @option{-mprolog-function} options.
17339
17340 @item -mtda=@var{n}
17341 @opindex mtda
17342 Put static or global variables whose size is @var{n} bytes or less into
17343 the tiny data area that register @code{ep} points to.  The tiny data
17344 area can hold up to 256 bytes in total (128 bytes for byte references).
17345
17346 @item -msda=@var{n}
17347 @opindex msda
17348 Put static or global variables whose size is @var{n} bytes or less into
17349 the small data area that register @code{gp} points to.  The small data
17350 area can hold up to 64 kilobytes.
17351
17352 @item -mzda=@var{n}
17353 @opindex mzda
17354 Put static or global variables whose size is @var{n} bytes or less into
17355 the first 32 kilobytes of memory.
17356
17357 @item -mv850
17358 @opindex mv850
17359 Specify that the target processor is the V850.
17360
17361 @item -mbig-switch
17362 @opindex mbig-switch
17363 Generate code suitable for big switch tables.  Use this option only if
17364 the assembler/linker complain about out of range branches within a switch
17365 table.
17366
17367 @item -mapp-regs
17368 @opindex mapp-regs
17369 This option will cause r2 and r5 to be used in the code generated by
17370 the compiler.  This setting is the default.
17371
17372 @item -mno-app-regs
17373 @opindex mno-app-regs
17374 This option will cause r2 and r5 to be treated as fixed registers.
17375
17376 @item -mv850e2v3
17377 @opindex mv850e2v3
17378 Specify that the target processor is the V850E2V3.  The preprocessor
17379 constants @samp{__v850e2v3__} will be defined if
17380 this option is used.
17381
17382 @item -mv850e2
17383 @opindex mv850e2
17384 Specify that the target processor is the V850E2.  The preprocessor
17385 constants @samp{__v850e2__} will be defined if this option is used.
17386
17387 @item -mv850e1
17388 @opindex mv850e1
17389 Specify that the target processor is the V850E1.  The preprocessor
17390 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
17391 this option is used.
17392
17393 @item -mv850es
17394 @opindex mv850es
17395 Specify that the target processor is the V850ES.  This is an alias for
17396 the @option{-mv850e1} option.
17397
17398 @item -mv850e
17399 @opindex mv850e
17400 Specify that the target processor is the V850E@.  The preprocessor
17401 constant @samp{__v850e__} will be defined if this option is used.
17402
17403 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
17404 nor @option{-mv850e2} nor @option{-mv850e2v3}
17405 are defined then a default target processor will be chosen and the
17406 relevant @samp{__v850*__} preprocessor constant will be defined.
17407
17408 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
17409 defined, regardless of which processor variant is the target.
17410
17411 @item -mdisable-callt
17412 @opindex mdisable-callt
17413 This option will suppress generation of the CALLT instruction for the
17414 v850e, v850e1, v850e2 and v850e2v3 flavors of the v850 architecture.  The default is
17415 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
17416
17417 @end table
17418
17419 @node VAX Options
17420 @subsection VAX Options
17421 @cindex VAX options
17422
17423 These @samp{-m} options are defined for the VAX:
17424
17425 @table @gcctabopt
17426 @item -munix
17427 @opindex munix
17428 Do not output certain jump instructions (@code{aobleq} and so on)
17429 that the Unix assembler for the VAX cannot handle across long
17430 ranges.
17431
17432 @item -mgnu
17433 @opindex mgnu
17434 Do output those jump instructions, on the assumption that you
17435 will assemble with the GNU assembler.
17436
17437 @item -mg
17438 @opindex mg
17439 Output code for g-format floating point numbers instead of d-format.
17440 @end table
17441
17442 @node VxWorks Options
17443 @subsection VxWorks Options
17444 @cindex VxWorks Options
17445
17446 The options in this section are defined for all VxWorks targets.
17447 Options specific to the target hardware are listed with the other
17448 options for that target.
17449
17450 @table @gcctabopt
17451 @item -mrtp
17452 @opindex mrtp
17453 GCC can generate code for both VxWorks kernels and real time processes
17454 (RTPs).  This option switches from the former to the latter.  It also
17455 defines the preprocessor macro @code{__RTP__}.
17456
17457 @item -non-static
17458 @opindex non-static
17459 Link an RTP executable against shared libraries rather than static
17460 libraries.  The options @option{-static} and @option{-shared} can
17461 also be used for RTPs (@pxref{Link Options}); @option{-static}
17462 is the default.
17463
17464 @item -Bstatic
17465 @itemx -Bdynamic
17466 @opindex Bstatic
17467 @opindex Bdynamic
17468 These options are passed down to the linker.  They are defined for
17469 compatibility with Diab.
17470
17471 @item -Xbind-lazy
17472 @opindex Xbind-lazy
17473 Enable lazy binding of function calls.  This option is equivalent to
17474 @option{-Wl,-z,now} and is defined for compatibility with Diab.
17475
17476 @item -Xbind-now
17477 @opindex Xbind-now
17478 Disable lazy binding of function calls.  This option is the default and
17479 is defined for compatibility with Diab.
17480 @end table
17481
17482 @node x86-64 Options
17483 @subsection x86-64 Options
17484 @cindex x86-64 options
17485
17486 These are listed under @xref{i386 and x86-64 Options}.
17487
17488 @node Xstormy16 Options
17489 @subsection Xstormy16 Options
17490 @cindex Xstormy16 Options
17491
17492 These options are defined for Xstormy16:
17493
17494 @table @gcctabopt
17495 @item -msim
17496 @opindex msim
17497 Choose startup files and linker script suitable for the simulator.
17498 @end table
17499
17500 @node Xtensa Options
17501 @subsection Xtensa Options
17502 @cindex Xtensa Options
17503
17504 These options are supported for Xtensa targets:
17505
17506 @table @gcctabopt
17507 @item -mconst16
17508 @itemx -mno-const16
17509 @opindex mconst16
17510 @opindex mno-const16
17511 Enable or disable use of @code{CONST16} instructions for loading
17512 constant values.  The @code{CONST16} instruction is currently not a
17513 standard option from Tensilica.  When enabled, @code{CONST16}
17514 instructions are always used in place of the standard @code{L32R}
17515 instructions.  The use of @code{CONST16} is enabled by default only if
17516 the @code{L32R} instruction is not available.
17517
17518 @item -mfused-madd
17519 @itemx -mno-fused-madd
17520 @opindex mfused-madd
17521 @opindex mno-fused-madd
17522 Enable or disable use of fused multiply/add and multiply/subtract
17523 instructions in the floating-point option.  This has no effect if the
17524 floating-point option is not also enabled.  Disabling fused multiply/add
17525 and multiply/subtract instructions forces the compiler to use separate
17526 instructions for the multiply and add/subtract operations.  This may be
17527 desirable in some cases where strict IEEE 754-compliant results are
17528 required: the fused multiply add/subtract instructions do not round the
17529 intermediate result, thereby producing results with @emph{more} bits of
17530 precision than specified by the IEEE standard.  Disabling fused multiply
17531 add/subtract instructions also ensures that the program output is not
17532 sensitive to the compiler's ability to combine multiply and add/subtract
17533 operations.
17534
17535 @item -mserialize-volatile
17536 @itemx -mno-serialize-volatile
17537 @opindex mserialize-volatile
17538 @opindex mno-serialize-volatile
17539 When this option is enabled, GCC inserts @code{MEMW} instructions before
17540 @code{volatile} memory references to guarantee sequential consistency.
17541 The default is @option{-mserialize-volatile}.  Use
17542 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
17543
17544 @item -mforce-no-pic
17545 @opindex mforce-no-pic
17546 For targets, like GNU/Linux, where all user-mode Xtensa code must be
17547 position-independent code (PIC), this option disables PIC for compiling
17548 kernel code.
17549
17550 @item -mtext-section-literals
17551 @itemx -mno-text-section-literals
17552 @opindex mtext-section-literals
17553 @opindex mno-text-section-literals
17554 Control the treatment of literal pools.  The default is
17555 @option{-mno-text-section-literals}, which places literals in a separate
17556 section in the output file.  This allows the literal pool to be placed
17557 in a data RAM/ROM, and it also allows the linker to combine literal
17558 pools from separate object files to remove redundant literals and
17559 improve code size.  With @option{-mtext-section-literals}, the literals
17560 are interspersed in the text section in order to keep them as close as
17561 possible to their references.  This may be necessary for large assembly
17562 files.
17563
17564 @item -mtarget-align
17565 @itemx -mno-target-align
17566 @opindex mtarget-align
17567 @opindex mno-target-align
17568 When this option is enabled, GCC instructs the assembler to
17569 automatically align instructions to reduce branch penalties at the
17570 expense of some code density.  The assembler attempts to widen density
17571 instructions to align branch targets and the instructions following call
17572 instructions.  If there are not enough preceding safe density
17573 instructions to align a target, no widening will be performed.  The
17574 default is @option{-mtarget-align}.  These options do not affect the
17575 treatment of auto-aligned instructions like @code{LOOP}, which the
17576 assembler will always align, either by widening density instructions or
17577 by inserting no-op instructions.
17578
17579 @item -mlongcalls
17580 @itemx -mno-longcalls
17581 @opindex mlongcalls
17582 @opindex mno-longcalls
17583 When this option is enabled, GCC instructs the assembler to translate
17584 direct calls to indirect calls unless it can determine that the target
17585 of a direct call is in the range allowed by the call instruction.  This
17586 translation typically occurs for calls to functions in other source
17587 files.  Specifically, the assembler translates a direct @code{CALL}
17588 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
17589 The default is @option{-mno-longcalls}.  This option should be used in
17590 programs where the call target can potentially be out of range.  This
17591 option is implemented in the assembler, not the compiler, so the
17592 assembly code generated by GCC will still show direct call
17593 instructions---look at the disassembled object code to see the actual
17594 instructions.  Note that the assembler will use an indirect call for
17595 every cross-file call, not just those that really will be out of range.
17596 @end table
17597
17598 @node zSeries Options
17599 @subsection zSeries Options
17600 @cindex zSeries options
17601
17602 These are listed under @xref{S/390 and zSeries Options}.
17603
17604 @node Code Gen Options
17605 @section Options for Code Generation Conventions
17606 @cindex code generation conventions
17607 @cindex options, code generation
17608 @cindex run-time options
17609
17610 These machine-independent options control the interface conventions
17611 used in code generation.
17612
17613 Most of them have both positive and negative forms; the negative form
17614 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
17615 one of the forms is listed---the one which is not the default.  You
17616 can figure out the other form by either removing @samp{no-} or adding
17617 it.
17618
17619 @table @gcctabopt
17620 @item -fbounds-check
17621 @opindex fbounds-check
17622 For front-ends that support it, generate additional code to check that
17623 indices used to access arrays are within the declared range.  This is
17624 currently only supported by the Java and Fortran front-ends, where
17625 this option defaults to true and false respectively.
17626
17627 @item -ftrapv
17628 @opindex ftrapv
17629 This option generates traps for signed overflow on addition, subtraction,
17630 multiplication operations.
17631
17632 @item -fwrapv
17633 @opindex fwrapv
17634 This option instructs the compiler to assume that signed arithmetic
17635 overflow of addition, subtraction and multiplication wraps around
17636 using twos-complement representation.  This flag enables some optimizations
17637 and disables others.  This option is enabled by default for the Java
17638 front-end, as required by the Java language specification.
17639
17640 @item -fexceptions
17641 @opindex fexceptions
17642 Enable exception handling.  Generates extra code needed to propagate
17643 exceptions.  For some targets, this implies GCC will generate frame
17644 unwind information for all functions, which can produce significant data
17645 size overhead, although it does not affect execution.  If you do not
17646 specify this option, GCC will enable it by default for languages like
17647 C++ which normally require exception handling, and disable it for
17648 languages like C that do not normally require it.  However, you may need
17649 to enable this option when compiling C code that needs to interoperate
17650 properly with exception handlers written in C++.  You may also wish to
17651 disable this option if you are compiling older C++ programs that don't
17652 use exception handling.
17653
17654 @item -fnon-call-exceptions
17655 @opindex fnon-call-exceptions
17656 Generate code that allows trapping instructions to throw exceptions.
17657 Note that this requires platform-specific runtime support that does
17658 not exist everywhere.  Moreover, it only allows @emph{trapping}
17659 instructions to throw exceptions, i.e.@: memory references or floating
17660 point instructions.  It does not allow exceptions to be thrown from
17661 arbitrary signal handlers such as @code{SIGALRM}.
17662
17663 @item -funwind-tables
17664 @opindex funwind-tables
17665 Similar to @option{-fexceptions}, except that it will just generate any needed
17666 static data, but will not affect the generated code in any other way.
17667 You will normally not enable this option; instead, a language processor
17668 that needs this handling would enable it on your behalf.
17669
17670 @item -fasynchronous-unwind-tables
17671 @opindex fasynchronous-unwind-tables
17672 Generate unwind table in dwarf2 format, if supported by target machine.  The
17673 table is exact at each instruction boundary, so it can be used for stack
17674 unwinding from asynchronous events (such as debugger or garbage collector).
17675
17676 @item -fpcc-struct-return
17677 @opindex fpcc-struct-return
17678 Return ``short'' @code{struct} and @code{union} values in memory like
17679 longer ones, rather than in registers.  This convention is less
17680 efficient, but it has the advantage of allowing intercallability between
17681 GCC-compiled files and files compiled with other compilers, particularly
17682 the Portable C Compiler (pcc).
17683
17684 The precise convention for returning structures in memory depends
17685 on the target configuration macros.
17686
17687 Short structures and unions are those whose size and alignment match
17688 that of some integer type.
17689
17690 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
17691 switch is not binary compatible with code compiled with the
17692 @option{-freg-struct-return} switch.
17693 Use it to conform to a non-default application binary interface.
17694
17695 @item -freg-struct-return
17696 @opindex freg-struct-return
17697 Return @code{struct} and @code{union} values in registers when possible.
17698 This is more efficient for small structures than
17699 @option{-fpcc-struct-return}.
17700
17701 If you specify neither @option{-fpcc-struct-return} nor
17702 @option{-freg-struct-return}, GCC defaults to whichever convention is
17703 standard for the target.  If there is no standard convention, GCC
17704 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
17705 the principal compiler.  In those cases, we can choose the standard, and
17706 we chose the more efficient register return alternative.
17707
17708 @strong{Warning:} code compiled with the @option{-freg-struct-return}
17709 switch is not binary compatible with code compiled with the
17710 @option{-fpcc-struct-return} switch.
17711 Use it to conform to a non-default application binary interface.
17712
17713 @item -fshort-enums
17714 @opindex fshort-enums
17715 Allocate to an @code{enum} type only as many bytes as it needs for the
17716 declared range of possible values.  Specifically, the @code{enum} type
17717 will be equivalent to the smallest integer type which has enough room.
17718
17719 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
17720 code that is not binary compatible with code generated without that switch.
17721 Use it to conform to a non-default application binary interface.
17722
17723 @item -fshort-double
17724 @opindex fshort-double
17725 Use the same size for @code{double} as for @code{float}.
17726
17727 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
17728 code that is not binary compatible with code generated without that switch.
17729 Use it to conform to a non-default application binary interface.
17730
17731 @item -fshort-wchar
17732 @opindex fshort-wchar
17733 Override the underlying type for @samp{wchar_t} to be @samp{short
17734 unsigned int} instead of the default for the target.  This option is
17735 useful for building programs to run under WINE@.
17736
17737 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
17738 code that is not binary compatible with code generated without that switch.
17739 Use it to conform to a non-default application binary interface.
17740
17741 @item -fno-common
17742 @opindex fno-common
17743 In C code, controls the placement of uninitialized global variables.
17744 Unix C compilers have traditionally permitted multiple definitions of
17745 such variables in different compilation units by placing the variables
17746 in a common block.
17747 This is the behavior specified by @option{-fcommon}, and is the default
17748 for GCC on most targets.
17749 On the other hand, this behavior is not required by ISO C, and on some
17750 targets may carry a speed or code size penalty on variable references.
17751 The @option{-fno-common} option specifies that the compiler should place
17752 uninitialized global variables in the data section of the object file,
17753 rather than generating them as common blocks.
17754 This has the effect that if the same variable is declared
17755 (without @code{extern}) in two different compilations,
17756 you will get a multiple-definition error when you link them.
17757 In this case, you must compile with @option{-fcommon} instead.
17758 Compiling with @option{-fno-common} is useful on targets for which
17759 it provides better performance, or if you wish to verify that the
17760 program will work on other systems which always treat uninitialized
17761 variable declarations this way.
17762
17763 @item -fno-ident
17764 @opindex fno-ident
17765 Ignore the @samp{#ident} directive.
17766
17767 @item -finhibit-size-directive
17768 @opindex finhibit-size-directive
17769 Don't output a @code{.size} assembler directive, or anything else that
17770 would cause trouble if the function is split in the middle, and the
17771 two halves are placed at locations far apart in memory.  This option is
17772 used when compiling @file{crtstuff.c}; you should not need to use it
17773 for anything else.
17774
17775 @item -fverbose-asm
17776 @opindex fverbose-asm
17777 Put extra commentary information in the generated assembly code to
17778 make it more readable.  This option is generally only of use to those
17779 who actually need to read the generated assembly code (perhaps while
17780 debugging the compiler itself).
17781
17782 @option{-fno-verbose-asm}, the default, causes the
17783 extra information to be omitted and is useful when comparing two assembler
17784 files.
17785
17786 @item -frecord-gcc-switches
17787 @opindex frecord-gcc-switches
17788 This switch causes the command line that was used to invoke the
17789 compiler to be recorded into the object file that is being created.
17790 This switch is only implemented on some targets and the exact format
17791 of the recording is target and binary file format dependent, but it
17792 usually takes the form of a section containing ASCII text.  This
17793 switch is related to the @option{-fverbose-asm} switch, but that
17794 switch only records information in the assembler output file as
17795 comments, so it never reaches the object file.
17796
17797 @item -fpic
17798 @opindex fpic
17799 @cindex global offset table
17800 @cindex PIC
17801 Generate position-independent code (PIC) suitable for use in a shared
17802 library, if supported for the target machine.  Such code accesses all
17803 constant addresses through a global offset table (GOT)@.  The dynamic
17804 loader resolves the GOT entries when the program starts (the dynamic
17805 loader is not part of GCC; it is part of the operating system).  If
17806 the GOT size for the linked executable exceeds a machine-specific
17807 maximum size, you get an error message from the linker indicating that
17808 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
17809 instead.  (These maximums are 8k on the SPARC and 32k
17810 on the m68k and RS/6000.  The 386 has no such limit.)
17811
17812 Position-independent code requires special support, and therefore works
17813 only on certain machines.  For the 386, GCC supports PIC for System V
17814 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
17815 position-independent.
17816
17817 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17818 are defined to 1.
17819
17820 @item -fPIC
17821 @opindex fPIC
17822 If supported for the target machine, emit position-independent code,
17823 suitable for dynamic linking and avoiding any limit on the size of the
17824 global offset table.  This option makes a difference on the m68k,
17825 PowerPC and SPARC@.
17826
17827 Position-independent code requires special support, and therefore works
17828 only on certain machines.
17829
17830 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17831 are defined to 2.
17832
17833 @item -fpie
17834 @itemx -fPIE
17835 @opindex fpie
17836 @opindex fPIE
17837 These options are similar to @option{-fpic} and @option{-fPIC}, but
17838 generated position independent code can be only linked into executables.
17839 Usually these options are used when @option{-pie} GCC option will be
17840 used during linking.
17841
17842 @option{-fpie} and @option{-fPIE} both define the macros
17843 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
17844 for @option{-fpie} and 2 for @option{-fPIE}.
17845
17846 @item -fno-jump-tables
17847 @opindex fno-jump-tables
17848 Do not use jump tables for switch statements even where it would be
17849 more efficient than other code generation strategies.  This option is
17850 of use in conjunction with @option{-fpic} or @option{-fPIC} for
17851 building code which forms part of a dynamic linker and cannot
17852 reference the address of a jump table.  On some targets, jump tables
17853 do not require a GOT and this option is not needed.
17854
17855 @item -ffixed-@var{reg}
17856 @opindex ffixed
17857 Treat the register named @var{reg} as a fixed register; generated code
17858 should never refer to it (except perhaps as a stack pointer, frame
17859 pointer or in some other fixed role).
17860
17861 @var{reg} must be the name of a register.  The register names accepted
17862 are machine-specific and are defined in the @code{REGISTER_NAMES}
17863 macro in the machine description macro file.
17864
17865 This flag does not have a negative form, because it specifies a
17866 three-way choice.
17867
17868 @item -fcall-used-@var{reg}
17869 @opindex fcall-used
17870 Treat the register named @var{reg} as an allocable register that is
17871 clobbered by function calls.  It may be allocated for temporaries or
17872 variables that do not live across a call.  Functions compiled this way
17873 will not save and restore the register @var{reg}.
17874
17875 It is an error to used this flag with the frame pointer or stack pointer.
17876 Use of this flag for other registers that have fixed pervasive roles in
17877 the machine's execution model will produce disastrous results.
17878
17879 This flag does not have a negative form, because it specifies a
17880 three-way choice.
17881
17882 @item -fcall-saved-@var{reg}
17883 @opindex fcall-saved
17884 Treat the register named @var{reg} as an allocable register saved by
17885 functions.  It may be allocated even for temporaries or variables that
17886 live across a call.  Functions compiled this way will save and restore
17887 the register @var{reg} if they use it.
17888
17889 It is an error to used this flag with the frame pointer or stack pointer.
17890 Use of this flag for other registers that have fixed pervasive roles in
17891 the machine's execution model will produce disastrous results.
17892
17893 A different sort of disaster will result from the use of this flag for
17894 a register in which function values may be returned.
17895
17896 This flag does not have a negative form, because it specifies a
17897 three-way choice.
17898
17899 @item -fpack-struct[=@var{n}]
17900 @opindex fpack-struct
17901 Without a value specified, pack all structure members together without
17902 holes.  When a value is specified (which must be a small power of two), pack
17903 structure members according to this value, representing the maximum
17904 alignment (that is, objects with default alignment requirements larger than
17905 this will be output potentially unaligned at the next fitting location.
17906
17907 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
17908 code that is not binary compatible with code generated without that switch.
17909 Additionally, it makes the code suboptimal.
17910 Use it to conform to a non-default application binary interface.
17911
17912 @item -finstrument-functions
17913 @opindex finstrument-functions
17914 Generate instrumentation calls for entry and exit to functions.  Just
17915 after function entry and just before function exit, the following
17916 profiling functions will be called with the address of the current
17917 function and its call site.  (On some platforms,
17918 @code{__builtin_return_address} does not work beyond the current
17919 function, so the call site information may not be available to the
17920 profiling functions otherwise.)
17921
17922 @smallexample
17923 void __cyg_profile_func_enter (void *this_fn,
17924                                void *call_site);
17925 void __cyg_profile_func_exit  (void *this_fn,
17926                                void *call_site);
17927 @end smallexample
17928
17929 The first argument is the address of the start of the current function,
17930 which may be looked up exactly in the symbol table.
17931
17932 This instrumentation is also done for functions expanded inline in other
17933 functions.  The profiling calls will indicate where, conceptually, the
17934 inline function is entered and exited.  This means that addressable
17935 versions of such functions must be available.  If all your uses of a
17936 function are expanded inline, this may mean an additional expansion of
17937 code size.  If you use @samp{extern inline} in your C code, an
17938 addressable version of such functions must be provided.  (This is
17939 normally the case anyways, but if you get lucky and the optimizer always
17940 expands the functions inline, you might have gotten away without
17941 providing static copies.)
17942
17943 A function may be given the attribute @code{no_instrument_function}, in
17944 which case this instrumentation will not be done.  This can be used, for
17945 example, for the profiling functions listed above, high-priority
17946 interrupt routines, and any functions from which the profiling functions
17947 cannot safely be called (perhaps signal handlers, if the profiling
17948 routines generate output or allocate memory).
17949
17950 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
17951 @opindex finstrument-functions-exclude-file-list
17952
17953 Set the list of functions that are excluded from instrumentation (see
17954 the description of @code{-finstrument-functions}).  If the file that
17955 contains a function definition matches with one of @var{file}, then
17956 that function is not instrumented.  The match is done on substrings:
17957 if the @var{file} parameter is a substring of the file name, it is
17958 considered to be a match.
17959
17960 For example:
17961
17962 @smallexample
17963 -finstrument-functions-exclude-file-list=/bits/stl,include/sys
17964 @end smallexample
17965
17966 @noindent
17967 will exclude any inline function defined in files whose pathnames
17968 contain @code{/bits/stl} or @code{include/sys}.
17969
17970 If, for some reason, you want to include letter @code{','} in one of
17971 @var{sym}, write @code{'\,'}. For example,
17972 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
17973 (note the single quote surrounding the option).
17974
17975 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
17976 @opindex finstrument-functions-exclude-function-list
17977
17978 This is similar to @code{-finstrument-functions-exclude-file-list},
17979 but this option sets the list of function names to be excluded from
17980 instrumentation.  The function name to be matched is its user-visible
17981 name, such as @code{vector<int> blah(const vector<int> &)}, not the
17982 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
17983 match is done on substrings: if the @var{sym} parameter is a substring
17984 of the function name, it is considered to be a match.  For C99 and C++
17985 extended identifiers, the function name must be given in UTF-8, not
17986 using universal character names.
17987
17988 @item -fstack-check
17989 @opindex fstack-check
17990 Generate code to verify that you do not go beyond the boundary of the
17991 stack.  You should specify this flag if you are running in an
17992 environment with multiple threads, but only rarely need to specify it in
17993 a single-threaded environment since stack overflow is automatically
17994 detected on nearly all systems if there is only one stack.
17995
17996 Note that this switch does not actually cause checking to be done; the
17997 operating system or the language runtime must do that.  The switch causes
17998 generation of code to ensure that they see the stack being extended.
17999
18000 You can additionally specify a string parameter: @code{no} means no
18001 checking, @code{generic} means force the use of old-style checking,
18002 @code{specific} means use the best checking method and is equivalent
18003 to bare @option{-fstack-check}.
18004
18005 Old-style checking is a generic mechanism that requires no specific
18006 target support in the compiler but comes with the following drawbacks:
18007
18008 @enumerate
18009 @item
18010 Modified allocation strategy for large objects: they will always be
18011 allocated dynamically if their size exceeds a fixed threshold.
18012
18013 @item
18014 Fixed limit on the size of the static frame of functions: when it is
18015 topped by a particular function, stack checking is not reliable and
18016 a warning is issued by the compiler.
18017
18018 @item
18019 Inefficiency: because of both the modified allocation strategy and the
18020 generic implementation, the performances of the code are hampered.
18021 @end enumerate
18022
18023 Note that old-style stack checking is also the fallback method for
18024 @code{specific} if no target support has been added in the compiler.
18025
18026 @item -fstack-limit-register=@var{reg}
18027 @itemx -fstack-limit-symbol=@var{sym}
18028 @itemx -fno-stack-limit
18029 @opindex fstack-limit-register
18030 @opindex fstack-limit-symbol
18031 @opindex fno-stack-limit
18032 Generate code to ensure that the stack does not grow beyond a certain value,
18033 either the value of a register or the address of a symbol.  If the stack
18034 would grow beyond the value, a signal is raised.  For most targets,
18035 the signal is raised before the stack overruns the boundary, so
18036 it is possible to catch the signal without taking special precautions.
18037
18038 For instance, if the stack starts at absolute address @samp{0x80000000}
18039 and grows downwards, you can use the flags
18040 @option{-fstack-limit-symbol=__stack_limit} and
18041 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
18042 of 128KB@.  Note that this may only work with the GNU linker.
18043
18044 @item -fsplit-stack
18045 @opindex fsplit-stack
18046 Generate code to automatically split the stack before it overflows.
18047 The resulting program has a discontiguous stack which can only
18048 overflow if the program is unable to allocate any more memory.  This
18049 is most useful when running threaded programs, as it is no longer
18050 necessary to calculate a good stack size to use for each thread.  This
18051 is currently only implemented for the i386 and x86_64 backends running
18052 GNU/Linux.
18053
18054 When code compiled with @option{-fsplit-stack} calls code compiled
18055 without @option{-fsplit-stack}, there may not be much stack space
18056 available for the latter code to run.  If compiling all code,
18057 including library code, with @option{-fsplit-stack} is not an option,
18058 then the linker can fix up these calls so that the code compiled
18059 without @option{-fsplit-stack} always has a large stack.  Support for
18060 this is implemented in the gold linker in GNU binutils release 2.21
18061 and later.
18062
18063 @item -fleading-underscore
18064 @opindex fleading-underscore
18065 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
18066 change the way C symbols are represented in the object file.  One use
18067 is to help link with legacy assembly code.
18068
18069 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
18070 generate code that is not binary compatible with code generated without that
18071 switch.  Use it to conform to a non-default application binary interface.
18072 Not all targets provide complete support for this switch.
18073
18074 @item -ftls-model=@var{model}
18075 @opindex ftls-model
18076 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
18077 The @var{model} argument should be one of @code{global-dynamic},
18078 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
18079
18080 The default without @option{-fpic} is @code{initial-exec}; with
18081 @option{-fpic} the default is @code{global-dynamic}.
18082
18083 @item -fvisibility=@var{default|internal|hidden|protected}
18084 @opindex fvisibility
18085 Set the default ELF image symbol visibility to the specified option---all
18086 symbols will be marked with this unless overridden within the code.
18087 Using this feature can very substantially improve linking and
18088 load times of shared object libraries, produce more optimized
18089 code, provide near-perfect API export and prevent symbol clashes.
18090 It is @strong{strongly} recommended that you use this in any shared objects
18091 you distribute.
18092
18093 Despite the nomenclature, @code{default} always means public; i.e.,
18094 available to be linked against from outside the shared object.
18095 @code{protected} and @code{internal} are pretty useless in real-world
18096 usage so the only other commonly used option will be @code{hidden}.
18097 The default if @option{-fvisibility} isn't specified is
18098 @code{default}, i.e., make every
18099 symbol public---this causes the same behavior as previous versions of
18100 GCC@.
18101
18102 A good explanation of the benefits offered by ensuring ELF
18103 symbols have the correct visibility is given by ``How To Write
18104 Shared Libraries'' by Ulrich Drepper (which can be found at
18105 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
18106 solution made possible by this option to marking things hidden when
18107 the default is public is to make the default hidden and mark things
18108 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
18109 and @code{__attribute__ ((visibility("default")))} instead of
18110 @code{__declspec(dllexport)} you get almost identical semantics with
18111 identical syntax.  This is a great boon to those working with
18112 cross-platform projects.
18113
18114 For those adding visibility support to existing code, you may find
18115 @samp{#pragma GCC visibility} of use.  This works by you enclosing
18116 the declarations you wish to set visibility for with (for example)
18117 @samp{#pragma GCC visibility push(hidden)} and
18118 @samp{#pragma GCC visibility pop}.
18119 Bear in mind that symbol visibility should be viewed @strong{as
18120 part of the API interface contract} and thus all new code should
18121 always specify visibility when it is not the default; i.e., declarations
18122 only for use within the local DSO should @strong{always} be marked explicitly
18123 as hidden as so to avoid PLT indirection overheads---making this
18124 abundantly clear also aids readability and self-documentation of the code.
18125 Note that due to ISO C++ specification requirements, operator new and
18126 operator delete must always be of default visibility.
18127
18128 Be aware that headers from outside your project, in particular system
18129 headers and headers from any other library you use, may not be
18130 expecting to be compiled with visibility other than the default.  You
18131 may need to explicitly say @samp{#pragma GCC visibility push(default)}
18132 before including any such headers.
18133
18134 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
18135 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
18136 no modifications.  However, this means that calls to @samp{extern}
18137 functions with no explicit visibility will use the PLT, so it is more
18138 effective to use @samp{__attribute ((visibility))} and/or
18139 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
18140 declarations should be treated as hidden.
18141
18142 Note that @samp{-fvisibility} does affect C++ vague linkage
18143 entities. This means that, for instance, an exception class that will
18144 be thrown between DSOs must be explicitly marked with default
18145 visibility so that the @samp{type_info} nodes will be unified between
18146 the DSOs.
18147
18148 An overview of these techniques, their benefits and how to use them
18149 is at @uref{http://gcc.gnu.org/@/wiki/@/Visibility}.
18150
18151 @item -fstrict-volatile-bitfields
18152 @opindex fstrict-volatile-bitfields
18153 This option should be used if accesses to volatile bitfields (or other
18154 structure fields, although the compiler usually honors those types
18155 anyway) should use a single access of the width of the
18156 field's type, aligned to a natural alignment if possible.  For
18157 example, targets with memory-mapped peripheral registers might require
18158 all such accesses to be 16 bits wide; with this flag the user could
18159 declare all peripheral bitfields as ``unsigned short'' (assuming short
18160 is 16 bits on these targets) to force GCC to use 16 bit accesses
18161 instead of, perhaps, a more efficient 32 bit access.
18162
18163 If this option is disabled, the compiler will use the most efficient
18164 instruction.  In the previous example, that might be a 32-bit load
18165 instruction, even though that will access bytes that do not contain
18166 any portion of the bitfield, or memory-mapped registers unrelated to
18167 the one being updated.
18168
18169 If the target requires strict alignment, and honoring the field
18170 type would require violating this alignment, a warning is issued.
18171 If the field has @code{packed} attribute, the access is done without
18172 honoring the field type.  If the field doesn't have @code{packed}
18173 attribute, the access is done honoring the field type.  In both cases,
18174 GCC assumes that the user knows something about the target hardware
18175 that it is unaware of.
18176
18177 The default value of this option is determined by the application binary
18178 interface for the target processor.
18179
18180 @end table
18181
18182 @c man end
18183
18184 @node Environment Variables
18185 @section Environment Variables Affecting GCC
18186 @cindex environment variables
18187
18188 @c man begin ENVIRONMENT
18189 This section describes several environment variables that affect how GCC
18190 operates.  Some of them work by specifying directories or prefixes to use
18191 when searching for various kinds of files.  Some are used to specify other
18192 aspects of the compilation environment.
18193
18194 Note that you can also specify places to search using options such as
18195 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
18196 take precedence over places specified using environment variables, which
18197 in turn take precedence over those specified by the configuration of GCC@.
18198 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
18199 GNU Compiler Collection (GCC) Internals}.
18200
18201 @table @env
18202 @item LANG
18203 @itemx LC_CTYPE
18204 @c @itemx LC_COLLATE
18205 @itemx LC_MESSAGES
18206 @c @itemx LC_MONETARY
18207 @c @itemx LC_NUMERIC
18208 @c @itemx LC_TIME
18209 @itemx LC_ALL
18210 @findex LANG
18211 @findex LC_CTYPE
18212 @c @findex LC_COLLATE
18213 @findex LC_MESSAGES
18214 @c @findex LC_MONETARY
18215 @c @findex LC_NUMERIC
18216 @c @findex LC_TIME
18217 @findex LC_ALL
18218 @cindex locale
18219 These environment variables control the way that GCC uses
18220 localization information that allow GCC to work with different
18221 national conventions.  GCC inspects the locale categories
18222 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
18223 so.  These locale categories can be set to any value supported by your
18224 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
18225 Kingdom encoded in UTF-8.
18226
18227 The @env{LC_CTYPE} environment variable specifies character
18228 classification.  GCC uses it to determine the character boundaries in
18229 a string; this is needed for some multibyte encodings that contain quote
18230 and escape characters that would otherwise be interpreted as a string
18231 end or escape.
18232
18233 The @env{LC_MESSAGES} environment variable specifies the language to
18234 use in diagnostic messages.
18235
18236 If the @env{LC_ALL} environment variable is set, it overrides the value
18237 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
18238 and @env{LC_MESSAGES} default to the value of the @env{LANG}
18239 environment variable.  If none of these variables are set, GCC
18240 defaults to traditional C English behavior.
18241
18242 @item TMPDIR
18243 @findex TMPDIR
18244 If @env{TMPDIR} is set, it specifies the directory to use for temporary
18245 files.  GCC uses temporary files to hold the output of one stage of
18246 compilation which is to be used as input to the next stage: for example,
18247 the output of the preprocessor, which is the input to the compiler
18248 proper.
18249
18250 @item GCC_COMPARE_DEBUG
18251 @findex GCC_COMPARE_DEBUG
18252 Setting @env{GCC_COMPARE_DEBUG} is nearly equivalent to passing
18253 @option{-fcompare-debug} to the compiler driver.  See the documentation
18254 of this option for more details.
18255
18256 @item GCC_EXEC_PREFIX
18257 @findex GCC_EXEC_PREFIX
18258 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
18259 names of the subprograms executed by the compiler.  No slash is added
18260 when this prefix is combined with the name of a subprogram, but you can
18261 specify a prefix that ends with a slash if you wish.
18262
18263 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
18264 an appropriate prefix to use based on the pathname it was invoked with.
18265
18266 If GCC cannot find the subprogram using the specified prefix, it
18267 tries looking in the usual places for the subprogram.
18268
18269 The default value of @env{GCC_EXEC_PREFIX} is
18270 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
18271 the installed compiler. In many cases @var{prefix} is the value
18272 of @code{prefix} when you ran the @file{configure} script.
18273
18274 Other prefixes specified with @option{-B} take precedence over this prefix.
18275
18276 This prefix is also used for finding files such as @file{crt0.o} that are
18277 used for linking.
18278
18279 In addition, the prefix is used in an unusual way in finding the
18280 directories to search for header files.  For each of the standard
18281 directories whose name normally begins with @samp{/usr/local/lib/gcc}
18282 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
18283 replacing that beginning with the specified prefix to produce an
18284 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
18285 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
18286 These alternate directories are searched first; the standard directories
18287 come next. If a standard directory begins with the configured
18288 @var{prefix} then the value of @var{prefix} is replaced by
18289 @env{GCC_EXEC_PREFIX} when looking for header files.
18290
18291 @item COMPILER_PATH
18292 @findex COMPILER_PATH
18293 The value of @env{COMPILER_PATH} is a colon-separated list of
18294 directories, much like @env{PATH}.  GCC tries the directories thus
18295 specified when searching for subprograms, if it can't find the
18296 subprograms using @env{GCC_EXEC_PREFIX}.
18297
18298 @item LIBRARY_PATH
18299 @findex LIBRARY_PATH
18300 The value of @env{LIBRARY_PATH} is a colon-separated list of
18301 directories, much like @env{PATH}.  When configured as a native compiler,
18302 GCC tries the directories thus specified when searching for special
18303 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
18304 using GCC also uses these directories when searching for ordinary
18305 libraries for the @option{-l} option (but directories specified with
18306 @option{-L} come first).
18307
18308 @item LANG
18309 @findex LANG
18310 @cindex locale definition
18311 This variable is used to pass locale information to the compiler.  One way in
18312 which this information is used is to determine the character set to be used
18313 when character literals, string literals and comments are parsed in C and C++.
18314 When the compiler is configured to allow multibyte characters,
18315 the following values for @env{LANG} are recognized:
18316
18317 @table @samp
18318 @item C-JIS
18319 Recognize JIS characters.
18320 @item C-SJIS
18321 Recognize SJIS characters.
18322 @item C-EUCJP
18323 Recognize EUCJP characters.
18324 @end table
18325
18326 If @env{LANG} is not defined, or if it has some other value, then the
18327 compiler will use mblen and mbtowc as defined by the default locale to
18328 recognize and translate multibyte characters.
18329 @end table
18330
18331 @noindent
18332 Some additional environments variables affect the behavior of the
18333 preprocessor.
18334
18335 @include cppenv.texi
18336
18337 @c man end
18338
18339 @node Precompiled Headers
18340 @section Using Precompiled Headers
18341 @cindex precompiled headers
18342 @cindex speed of compilation
18343
18344 Often large projects have many header files that are included in every
18345 source file.  The time the compiler takes to process these header files
18346 over and over again can account for nearly all of the time required to
18347 build the project.  To make builds faster, GCC allows users to
18348 `precompile' a header file; then, if builds can use the precompiled
18349 header file they will be much faster.
18350
18351 To create a precompiled header file, simply compile it as you would any
18352 other file, if necessary using the @option{-x} option to make the driver
18353 treat it as a C or C++ header file.  You will probably want to use a
18354 tool like @command{make} to keep the precompiled header up-to-date when
18355 the headers it contains change.
18356
18357 A precompiled header file will be searched for when @code{#include} is
18358 seen in the compilation.  As it searches for the included file
18359 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
18360 compiler looks for a precompiled header in each directory just before it
18361 looks for the include file in that directory.  The name searched for is
18362 the name specified in the @code{#include} with @samp{.gch} appended.  If
18363 the precompiled header file can't be used, it is ignored.
18364
18365 For instance, if you have @code{#include "all.h"}, and you have
18366 @file{all.h.gch} in the same directory as @file{all.h}, then the
18367 precompiled header file will be used if possible, and the original
18368 header will be used otherwise.
18369
18370 Alternatively, you might decide to put the precompiled header file in a
18371 directory and use @option{-I} to ensure that directory is searched
18372 before (or instead of) the directory containing the original header.
18373 Then, if you want to check that the precompiled header file is always
18374 used, you can put a file of the same name as the original header in this
18375 directory containing an @code{#error} command.
18376
18377 This also works with @option{-include}.  So yet another way to use
18378 precompiled headers, good for projects not designed with precompiled
18379 header files in mind, is to simply take most of the header files used by
18380 a project, include them from another header file, precompile that header
18381 file, and @option{-include} the precompiled header.  If the header files
18382 have guards against multiple inclusion, they will be skipped because
18383 they've already been included (in the precompiled header).
18384
18385 If you need to precompile the same header file for different
18386 languages, targets, or compiler options, you can instead make a
18387 @emph{directory} named like @file{all.h.gch}, and put each precompiled
18388 header in the directory, perhaps using @option{-o}.  It doesn't matter
18389 what you call the files in the directory, every precompiled header in
18390 the directory will be considered.  The first precompiled header
18391 encountered in the directory that is valid for this compilation will
18392 be used; they're searched in no particular order.
18393
18394 There are many other possibilities, limited only by your imagination,
18395 good sense, and the constraints of your build system.
18396
18397 A precompiled header file can be used only when these conditions apply:
18398
18399 @itemize
18400 @item
18401 Only one precompiled header can be used in a particular compilation.
18402
18403 @item
18404 A precompiled header can't be used once the first C token is seen.  You
18405 can have preprocessor directives before a precompiled header; you can
18406 even include a precompiled header from inside another header, so long as
18407 there are no C tokens before the @code{#include}.
18408
18409 @item
18410 The precompiled header file must be produced for the same language as
18411 the current compilation.  You can't use a C precompiled header for a C++
18412 compilation.
18413
18414 @item
18415 The precompiled header file must have been produced by the same compiler
18416 binary as the current compilation is using.
18417
18418 @item
18419 Any macros defined before the precompiled header is included must
18420 either be defined in the same way as when the precompiled header was
18421 generated, or must not affect the precompiled header, which usually
18422 means that they don't appear in the precompiled header at all.
18423
18424 The @option{-D} option is one way to define a macro before a
18425 precompiled header is included; using a @code{#define} can also do it.
18426 There are also some options that define macros implicitly, like
18427 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
18428 defined this way.
18429
18430 @item If debugging information is output when using the precompiled
18431 header, using @option{-g} or similar, the same kind of debugging information
18432 must have been output when building the precompiled header.  However,
18433 a precompiled header built using @option{-g} can be used in a compilation
18434 when no debugging information is being output.
18435
18436 @item The same @option{-m} options must generally be used when building
18437 and using the precompiled header.  @xref{Submodel Options},
18438 for any cases where this rule is relaxed.
18439
18440 @item Each of the following options must be the same when building and using
18441 the precompiled header:
18442
18443 @gccoptlist{-fexceptions}
18444
18445 @item
18446 Some other command-line options starting with @option{-f},
18447 @option{-p}, or @option{-O} must be defined in the same way as when
18448 the precompiled header was generated.  At present, it's not clear
18449 which options are safe to change and which are not; the safest choice
18450 is to use exactly the same options when generating and using the
18451 precompiled header.  The following are known to be safe:
18452
18453 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
18454 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
18455 -fsched-verbose=@var{number}  -fschedule-insns  -fvisibility= @gol
18456 -pedantic-errors}
18457
18458 @end itemize
18459
18460 For all of these except the last, the compiler will automatically
18461 ignore the precompiled header if the conditions aren't met.  If you
18462 find an option combination that doesn't work and doesn't cause the
18463 precompiled header to be ignored, please consider filing a bug report,
18464 see @ref{Bugs}.
18465
18466 If you do use differing options when generating and using the
18467 precompiled header, the actual behavior will be a mixture of the
18468 behavior for the options.  For instance, if you use @option{-g} to
18469 generate the precompiled header but not when using it, you may or may
18470 not get debugging information for routines in the precompiled header.