OSDN Git Service

2011-05-02 Richard Guenther <rguenther@suse.de>
[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}.
6003
6004 If you use multiple @option{-O} options, with or without level numbers,
6005 the last such option is the one that is effective.
6006 @end table
6007
6008 Options of the form @option{-f@var{flag}} specify machine-independent
6009 flags.  Most flags have both positive and negative forms; the negative
6010 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
6011 below, only one of the forms is listed---the one you typically will
6012 use.  You can figure out the other form by either removing @samp{no-}
6013 or adding it.
6014
6015 The following options control specific optimizations.  They are either
6016 activated by @option{-O} options or are related to ones that are.  You
6017 can use the following flags in the rare cases when ``fine-tuning'' of
6018 optimizations to be performed is desired.
6019
6020 @table @gcctabopt
6021 @item -fno-default-inline
6022 @opindex fno-default-inline
6023 Do not make member functions inline by default merely because they are
6024 defined inside the class scope (C++ only).  Otherwise, when you specify
6025 @w{@option{-O}}, member functions defined inside class scope are compiled
6026 inline by default; i.e., you don't need to add @samp{inline} in front of
6027 the member function name.
6028
6029 @item -fno-defer-pop
6030 @opindex fno-defer-pop
6031 Always pop the arguments to each function call as soon as that function
6032 returns.  For machines which must pop arguments after a function call,
6033 the compiler normally lets arguments accumulate on the stack for several
6034 function calls and pops them all at once.
6035
6036 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6037
6038 @item -fforward-propagate
6039 @opindex fforward-propagate
6040 Perform a forward propagation pass on RTL@.  The pass tries to combine two
6041 instructions and checks if the result can be simplified.  If loop unrolling
6042 is active, two passes are performed and the second is scheduled after
6043 loop unrolling.
6044
6045 This option is enabled by default at optimization levels @option{-O},
6046 @option{-O2}, @option{-O3}, @option{-Os}.
6047
6048 @item -ffp-contract=@var{style}
6049 @opindex ffp-contract
6050 @option{-ffp-contract=off} disables floating-point expression contraction.
6051 @option{-ffp-contract=fast} enables floating-point expression contraction
6052 such as forming of fused multiply-add operations if the target has
6053 native support for them.
6054 @option{-ffp-contract=on} enables floating-point expression contraction
6055 if allowed by the language standard.  This is currently not implemented
6056 and treated equal to @option{-ffp-contract=off}.
6057
6058 The default is @option{-ffp-contract=fast}.
6059
6060 @item -fomit-frame-pointer
6061 @opindex fomit-frame-pointer
6062 Don't keep the frame pointer in a register for functions that
6063 don't need one.  This avoids the instructions to save, set up and
6064 restore frame pointers; it also makes an extra register available
6065 in many functions.  @strong{It also makes debugging impossible on
6066 some machines.}
6067
6068 On some machines, such as the VAX, this flag has no effect, because
6069 the standard calling sequence automatically handles the frame pointer
6070 and nothing is saved by pretending it doesn't exist.  The
6071 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
6072 whether a target machine supports this flag.  @xref{Registers,,Register
6073 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
6074
6075 Starting with GCC version 4.6, the default setting (when not optimizing for
6076 size) for 32-bit Linux x86 and 32-bit Darwin x86 targets has been changed to
6077 @option{-fomit-frame-pointer}.  The default can be reverted to
6078 @option{-fno-omit-frame-pointer} by configuring GCC with the
6079 @option{--enable-frame-pointer} configure option.
6080
6081 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6082
6083 @item -foptimize-sibling-calls
6084 @opindex foptimize-sibling-calls
6085 Optimize sibling and tail recursive calls.
6086
6087 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6088
6089 @item -fno-inline
6090 @opindex fno-inline
6091 Don't pay attention to the @code{inline} keyword.  Normally this option
6092 is used to keep the compiler from expanding any functions inline.
6093 Note that if you are not optimizing, no functions can be expanded inline.
6094
6095 @item -finline-small-functions
6096 @opindex finline-small-functions
6097 Integrate functions into their callers when their body is smaller than expected
6098 function call code (so overall size of program gets smaller).  The compiler
6099 heuristically decides which functions are simple enough to be worth integrating
6100 in this way.
6101
6102 Enabled at level @option{-O2}.
6103
6104 @item -findirect-inlining
6105 @opindex findirect-inlining
6106 Inline also indirect calls that are discovered to be known at compile
6107 time thanks to previous inlining.  This option has any effect only
6108 when inlining itself is turned on by the @option{-finline-functions}
6109 or @option{-finline-small-functions} options.
6110
6111 Enabled at level @option{-O2}.
6112
6113 @item -finline-functions
6114 @opindex finline-functions
6115 Integrate all simple functions into their callers.  The compiler
6116 heuristically decides which functions are simple enough to be worth
6117 integrating in this way.
6118
6119 If all calls to a given function are integrated, and the function is
6120 declared @code{static}, then the function is normally not output as
6121 assembler code in its own right.
6122
6123 Enabled at level @option{-O3}.
6124
6125 @item -finline-functions-called-once
6126 @opindex finline-functions-called-once
6127 Consider all @code{static} functions called once for inlining into their
6128 caller even if they are not marked @code{inline}.  If a call to a given
6129 function is integrated, then the function is not output as assembler code
6130 in its own right.
6131
6132 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
6133
6134 @item -fearly-inlining
6135 @opindex fearly-inlining
6136 Inline functions marked by @code{always_inline} and functions whose body seems
6137 smaller than the function call overhead early before doing
6138 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
6139 makes profiling significantly cheaper and usually inlining faster on programs
6140 having large chains of nested wrapper functions.
6141
6142 Enabled by default.
6143
6144 @item -fipa-sra
6145 @opindex fipa-sra
6146 Perform interprocedural scalar replacement of aggregates, removal of
6147 unused parameters and replacement of parameters passed by reference
6148 by parameters passed by value.
6149
6150 Enabled at levels @option{-O2}, @option{-O3} and @option{-Os}.
6151
6152 @item -finline-limit=@var{n}
6153 @opindex finline-limit
6154 By default, GCC limits the size of functions that can be inlined.  This flag
6155 allows coarse control of this limit.  @var{n} is the size of functions that
6156 can be inlined in number of pseudo instructions.
6157
6158 Inlining is actually controlled by a number of parameters, which may be
6159 specified individually by using @option{--param @var{name}=@var{value}}.
6160 The @option{-finline-limit=@var{n}} option sets some of these parameters
6161 as follows:
6162
6163 @table @gcctabopt
6164 @item max-inline-insns-single
6165 is set to @var{n}/2.
6166 @item max-inline-insns-auto
6167 is set to @var{n}/2.
6168 @end table
6169
6170 See below for a documentation of the individual
6171 parameters controlling inlining and for the defaults of these parameters.
6172
6173 @emph{Note:} there may be no value to @option{-finline-limit} that results
6174 in default behavior.
6175
6176 @emph{Note:} pseudo instruction represents, in this particular context, an
6177 abstract measurement of function's size.  In no way does it represent a count
6178 of assembly instructions and as such its exact meaning might change from one
6179 release to an another.
6180
6181 @item -fno-keep-inline-dllexport
6182 @opindex -fno-keep-inline-dllexport
6183 This is a more fine-grained version of @option{-fkeep-inline-functions},
6184 which applies only to functions that are declared using the @code{dllexport}
6185 attribute or declspec (@xref{Function Attributes,,Declaring Attributes of
6186 Functions}.)
6187
6188 @item -fkeep-inline-functions
6189 @opindex fkeep-inline-functions
6190 In C, emit @code{static} functions that are declared @code{inline}
6191 into the object file, even if the function has been inlined into all
6192 of its callers.  This switch does not affect functions using the
6193 @code{extern inline} extension in GNU C90@.  In C++, emit any and all
6194 inline functions into the object file.
6195
6196 @item -fkeep-static-consts
6197 @opindex fkeep-static-consts
6198 Emit variables declared @code{static const} when optimization isn't turned
6199 on, even if the variables aren't referenced.
6200
6201 GCC enables this option by default.  If you want to force the compiler to
6202 check if the variable was referenced, regardless of whether or not
6203 optimization is turned on, use the @option{-fno-keep-static-consts} option.
6204
6205 @item -fmerge-constants
6206 @opindex fmerge-constants
6207 Attempt to merge identical constants (string constants and floating point
6208 constants) across compilation units.
6209
6210 This option is the default for optimized compilation if the assembler and
6211 linker support it.  Use @option{-fno-merge-constants} to inhibit this
6212 behavior.
6213
6214 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6215
6216 @item -fmerge-all-constants
6217 @opindex fmerge-all-constants
6218 Attempt to merge identical constants and identical variables.
6219
6220 This option implies @option{-fmerge-constants}.  In addition to
6221 @option{-fmerge-constants} this considers e.g.@: even constant initialized
6222 arrays or initialized constant variables with integral or floating point
6223 types.  Languages like C or C++ require each variable, including multiple
6224 instances of the same variable in recursive calls, to have distinct locations,
6225 so using this option will result in non-conforming
6226 behavior.
6227
6228 @item -fmodulo-sched
6229 @opindex fmodulo-sched
6230 Perform swing modulo scheduling immediately before the first scheduling
6231 pass.  This pass looks at innermost loops and reorders their
6232 instructions by overlapping different iterations.
6233
6234 @item -fmodulo-sched-allow-regmoves
6235 @opindex fmodulo-sched-allow-regmoves
6236 Perform more aggressive SMS based modulo scheduling with register moves
6237 allowed.  By setting this flag certain anti-dependences edges will be
6238 deleted which will trigger the generation of reg-moves based on the
6239 life-range analysis.  This option is effective only with
6240 @option{-fmodulo-sched} enabled.
6241
6242 @item -fno-branch-count-reg
6243 @opindex fno-branch-count-reg
6244 Do not use ``decrement and branch'' instructions on a count register,
6245 but instead generate a sequence of instructions that decrement a
6246 register, compare it against zero, then branch based upon the result.
6247 This option is only meaningful on architectures that support such
6248 instructions, which include x86, PowerPC, IA-64 and S/390.
6249
6250 The default is @option{-fbranch-count-reg}.
6251
6252 @item -fno-function-cse
6253 @opindex fno-function-cse
6254 Do not put function addresses in registers; make each instruction that
6255 calls a constant function contain the function's address explicitly.
6256
6257 This option results in less efficient code, but some strange hacks
6258 that alter the assembler output may be confused by the optimizations
6259 performed when this option is not used.
6260
6261 The default is @option{-ffunction-cse}
6262
6263 @item -fno-zero-initialized-in-bss
6264 @opindex fno-zero-initialized-in-bss
6265 If the target supports a BSS section, GCC by default puts variables that
6266 are initialized to zero into BSS@.  This can save space in the resulting
6267 code.
6268
6269 This option turns off this behavior because some programs explicitly
6270 rely on variables going to the data section.  E.g., so that the
6271 resulting executable can find the beginning of that section and/or make
6272 assumptions based on that.
6273
6274 The default is @option{-fzero-initialized-in-bss}.
6275
6276 @item -fmudflap -fmudflapth -fmudflapir
6277 @opindex fmudflap
6278 @opindex fmudflapth
6279 @opindex fmudflapir
6280 @cindex bounds checking
6281 @cindex mudflap
6282 For front-ends that support it (C and C++), instrument all risky
6283 pointer/array dereferencing operations, some standard library
6284 string/heap functions, and some other associated constructs with
6285 range/validity tests.  Modules so instrumented should be immune to
6286 buffer overflows, invalid heap use, and some other classes of C/C++
6287 programming errors.  The instrumentation relies on a separate runtime
6288 library (@file{libmudflap}), which will be linked into a program if
6289 @option{-fmudflap} is given at link time.  Run-time behavior of the
6290 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
6291 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
6292 for its options.
6293
6294 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
6295 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
6296 addition to @option{-fmudflap} or @option{-fmudflapth}, if
6297 instrumentation should ignore pointer reads.  This produces less
6298 instrumentation (and therefore faster execution) and still provides
6299 some protection against outright memory corrupting writes, but allows
6300 erroneously read data to propagate within a program.
6301
6302 @item -fthread-jumps
6303 @opindex fthread-jumps
6304 Perform optimizations where we check to see if a jump branches to a
6305 location where another comparison subsumed by the first is found.  If
6306 so, the first branch is redirected to either the destination of the
6307 second branch or a point immediately following it, depending on whether
6308 the condition is known to be true or false.
6309
6310 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6311
6312 @item -fsplit-wide-types
6313 @opindex fsplit-wide-types
6314 When using a type that occupies multiple registers, such as @code{long
6315 long} on a 32-bit system, split the registers apart and allocate them
6316 independently.  This normally generates better code for those types,
6317 but may make debugging more difficult.
6318
6319 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
6320 @option{-Os}.
6321
6322 @item -fcse-follow-jumps
6323 @opindex fcse-follow-jumps
6324 In common subexpression elimination (CSE), scan through jump instructions
6325 when the target of the jump is not reached by any other path.  For
6326 example, when CSE encounters an @code{if} statement with an
6327 @code{else} clause, CSE will follow the jump when the condition
6328 tested is false.
6329
6330 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6331
6332 @item -fcse-skip-blocks
6333 @opindex fcse-skip-blocks
6334 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
6335 follow jumps which conditionally skip over blocks.  When CSE
6336 encounters a simple @code{if} statement with no else clause,
6337 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
6338 body of the @code{if}.
6339
6340 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6341
6342 @item -frerun-cse-after-loop
6343 @opindex frerun-cse-after-loop
6344 Re-run common subexpression elimination after loop optimizations has been
6345 performed.
6346
6347 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6348
6349 @item -fgcse
6350 @opindex fgcse
6351 Perform a global common subexpression elimination pass.
6352 This pass also performs global constant and copy propagation.
6353
6354 @emph{Note:} When compiling a program using computed gotos, a GCC
6355 extension, you may get better runtime performance if you disable
6356 the global common subexpression elimination pass by adding
6357 @option{-fno-gcse} to the command line.
6358
6359 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6360
6361 @item -fgcse-lm
6362 @opindex fgcse-lm
6363 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
6364 attempt to move loads which are only killed by stores into themselves.  This
6365 allows a loop containing a load/store sequence to be changed to a load outside
6366 the loop, and a copy/store within the loop.
6367
6368 Enabled by default when gcse is enabled.
6369
6370 @item -fgcse-sm
6371 @opindex fgcse-sm
6372 When @option{-fgcse-sm} is enabled, a store motion pass is run after
6373 global common subexpression elimination.  This pass will attempt to move
6374 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
6375 loops containing a load/store sequence can be changed to a load before
6376 the loop and a store after the loop.
6377
6378 Not enabled at any optimization level.
6379
6380 @item -fgcse-las
6381 @opindex fgcse-las
6382 When @option{-fgcse-las} is enabled, the global common subexpression
6383 elimination pass eliminates redundant loads that come after stores to the
6384 same memory location (both partial and full redundancies).
6385
6386 Not enabled at any optimization level.
6387
6388 @item -fgcse-after-reload
6389 @opindex fgcse-after-reload
6390 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
6391 pass is performed after reload.  The purpose of this pass is to cleanup
6392 redundant spilling.
6393
6394 @item -funsafe-loop-optimizations
6395 @opindex funsafe-loop-optimizations
6396 If given, the loop optimizer will assume that loop indices do not
6397 overflow, and that the loops with nontrivial exit condition are not
6398 infinite.  This enables a wider range of loop optimizations even if
6399 the loop optimizer itself cannot prove that these assumptions are valid.
6400 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
6401 if it finds this kind of loop.
6402
6403 @item -fcrossjumping
6404 @opindex fcrossjumping
6405 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
6406 resulting code may or may not perform better than without cross-jumping.
6407
6408 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6409
6410 @item -fauto-inc-dec
6411 @opindex fauto-inc-dec
6412 Combine increments or decrements of addresses with memory accesses.
6413 This pass is always skipped on architectures that do not have
6414 instructions to support this.  Enabled by default at @option{-O} and
6415 higher on architectures that support this.
6416
6417 @item -fdce
6418 @opindex fdce
6419 Perform dead code elimination (DCE) on RTL@.
6420 Enabled by default at @option{-O} and higher.
6421
6422 @item -fdse
6423 @opindex fdse
6424 Perform dead store elimination (DSE) on RTL@.
6425 Enabled by default at @option{-O} and higher.
6426
6427 @item -fif-conversion
6428 @opindex fif-conversion
6429 Attempt to transform conditional jumps into branch-less equivalents.  This
6430 include use of conditional moves, min, max, set flags and abs instructions, and
6431 some tricks doable by standard arithmetics.  The use of conditional execution
6432 on chips where it is available is controlled by @code{if-conversion2}.
6433
6434 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6435
6436 @item -fif-conversion2
6437 @opindex fif-conversion2
6438 Use conditional execution (where available) to transform conditional jumps into
6439 branch-less equivalents.
6440
6441 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6442
6443 @item -fdelete-null-pointer-checks
6444 @opindex fdelete-null-pointer-checks
6445 Assume that programs cannot safely dereference null pointers, and that
6446 no code or data element resides there.  This enables simple constant
6447 folding optimizations at all optimization levels.  In addition, other
6448 optimization passes in GCC use this flag to control global dataflow
6449 analyses that eliminate useless checks for null pointers; these assume
6450 that if a pointer is checked after it has already been dereferenced,
6451 it cannot be null.
6452
6453 Note however that in some environments this assumption is not true.
6454 Use @option{-fno-delete-null-pointer-checks} to disable this optimization
6455 for programs which depend on that behavior.
6456
6457 Some targets, especially embedded ones, disable this option at all levels.
6458 Otherwise it is enabled at all levels: @option{-O0}, @option{-O1},
6459 @option{-O2}, @option{-O3}, @option{-Os}.  Passes that use the information
6460 are enabled independently at different optimization levels.
6461
6462 @item -fdevirtualize
6463 @opindex fdevirtualize
6464 Attempt to convert calls to virtual functions to direct calls.  This
6465 is done both within a procedure and interprocedurally as part of
6466 indirect inlining (@code{-findirect-inlining}) and interprocedural constant
6467 propagation (@option{-fipa-cp}).
6468 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6469
6470 @item -fexpensive-optimizations
6471 @opindex fexpensive-optimizations
6472 Perform a number of minor optimizations that are relatively expensive.
6473
6474 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6475
6476 @item -foptimize-register-move
6477 @itemx -fregmove
6478 @opindex foptimize-register-move
6479 @opindex fregmove
6480 Attempt to reassign register numbers in move instructions and as
6481 operands of other simple instructions in order to maximize the amount of
6482 register tying.  This is especially helpful on machines with two-operand
6483 instructions.
6484
6485 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
6486 optimization.
6487
6488 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6489
6490 @item -fira-algorithm=@var{algorithm}
6491 Use specified coloring algorithm for the integrated register
6492 allocator.  The @var{algorithm} argument should be @code{priority} or
6493 @code{CB}.  The first algorithm specifies Chow's priority coloring,
6494 the second one specifies Chaitin-Briggs coloring.  The second
6495 algorithm can be unimplemented for some architectures.  If it is
6496 implemented, it is the default because Chaitin-Briggs coloring as a
6497 rule generates a better code.
6498
6499 @item -fira-region=@var{region}
6500 Use specified regions for the integrated register allocator.  The
6501 @var{region} argument should be one of @code{all}, @code{mixed}, or
6502 @code{one}.  The first value means using all loops as register
6503 allocation regions, the second value which is the default means using
6504 all loops except for loops with small register pressure as the
6505 regions, and third one means using all function as a single region.
6506 The first value can give best result for machines with small size and
6507 irregular register set, the third one results in faster and generates
6508 decent code and the smallest size code, and the default value usually
6509 give the best results in most cases and for most architectures.
6510
6511 @item -fira-loop-pressure
6512 @opindex fira-loop-pressure
6513 Use IRA to evaluate register pressure in loops for decision to move
6514 loop invariants.  Usage of this option usually results in generation
6515 of faster and smaller code on machines with big register files (>= 32
6516 registers) but it can slow compiler down.
6517
6518 This option is enabled at level @option{-O3} for some targets.
6519
6520 @item -fno-ira-share-save-slots
6521 @opindex fno-ira-share-save-slots
6522 Switch off sharing stack slots used for saving call used hard
6523 registers living through a call.  Each hard register will get a
6524 separate stack slot and as a result function stack frame will be
6525 bigger.
6526
6527 @item -fno-ira-share-spill-slots
6528 @opindex fno-ira-share-spill-slots
6529 Switch off sharing stack slots allocated for pseudo-registers.  Each
6530 pseudo-register which did not get a hard register will get a separate
6531 stack slot and as a result function stack frame will be bigger.
6532
6533 @item -fira-verbose=@var{n}
6534 @opindex fira-verbose
6535 Set up how verbose dump file for the integrated register allocator
6536 will be.  Default value is 5.  If the value is greater or equal to 10,
6537 the dump file will be stderr as if the value were @var{n} minus 10.
6538
6539 @item -fdelayed-branch
6540 @opindex fdelayed-branch
6541 If supported for the target machine, attempt to reorder instructions
6542 to exploit instruction slots available after delayed branch
6543 instructions.
6544
6545 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6546
6547 @item -fschedule-insns
6548 @opindex fschedule-insns
6549 If supported for the target machine, attempt to reorder instructions to
6550 eliminate execution stalls due to required data being unavailable.  This
6551 helps machines that have slow floating point or memory load instructions
6552 by allowing other instructions to be issued until the result of the load
6553 or floating point instruction is required.
6554
6555 Enabled at levels @option{-O2}, @option{-O3}.
6556
6557 @item -fschedule-insns2
6558 @opindex fschedule-insns2
6559 Similar to @option{-fschedule-insns}, but requests an additional pass of
6560 instruction scheduling after register allocation has been done.  This is
6561 especially useful on machines with a relatively small number of
6562 registers and where memory load instructions take more than one cycle.
6563
6564 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6565
6566 @item -fno-sched-interblock
6567 @opindex fno-sched-interblock
6568 Don't schedule instructions across basic blocks.  This is normally
6569 enabled by default when scheduling before register allocation, i.e.@:
6570 with @option{-fschedule-insns} or at @option{-O2} or higher.
6571
6572 @item -fno-sched-spec
6573 @opindex fno-sched-spec
6574 Don't allow speculative motion of non-load instructions.  This is normally
6575 enabled by default when scheduling before register allocation, i.e.@:
6576 with @option{-fschedule-insns} or at @option{-O2} or higher.
6577
6578 @item -fsched-pressure
6579 @opindex fsched-pressure
6580 Enable register pressure sensitive insn scheduling before the register
6581 allocation.  This only makes sense when scheduling before register
6582 allocation is enabled, i.e.@: with @option{-fschedule-insns} or at
6583 @option{-O2} or higher.  Usage of this option can improve the
6584 generated code and decrease its size by preventing register pressure
6585 increase above the number of available hard registers and as a
6586 consequence register spills in the register allocation.
6587
6588 @item -fsched-spec-load
6589 @opindex fsched-spec-load
6590 Allow speculative motion of some load instructions.  This only makes
6591 sense when scheduling before register allocation, i.e.@: with
6592 @option{-fschedule-insns} or at @option{-O2} or higher.
6593
6594 @item -fsched-spec-load-dangerous
6595 @opindex fsched-spec-load-dangerous
6596 Allow speculative motion of more load instructions.  This only makes
6597 sense when scheduling before register allocation, i.e.@: with
6598 @option{-fschedule-insns} or at @option{-O2} or higher.
6599
6600 @item -fsched-stalled-insns
6601 @itemx -fsched-stalled-insns=@var{n}
6602 @opindex fsched-stalled-insns
6603 Define how many insns (if any) can be moved prematurely from the queue
6604 of stalled insns into the ready list, during the second scheduling pass.
6605 @option{-fno-sched-stalled-insns} means that no insns will be moved
6606 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
6607 on how many queued insns can be moved prematurely.
6608 @option{-fsched-stalled-insns} without a value is equivalent to
6609 @option{-fsched-stalled-insns=1}.
6610
6611 @item -fsched-stalled-insns-dep
6612 @itemx -fsched-stalled-insns-dep=@var{n}
6613 @opindex fsched-stalled-insns-dep
6614 Define how many insn groups (cycles) will be examined for a dependency
6615 on a stalled insn that is candidate for premature removal from the queue
6616 of stalled insns.  This has an effect only during the second scheduling pass,
6617 and only if @option{-fsched-stalled-insns} is used.
6618 @option{-fno-sched-stalled-insns-dep} is equivalent to
6619 @option{-fsched-stalled-insns-dep=0}.
6620 @option{-fsched-stalled-insns-dep} without a value is equivalent to
6621 @option{-fsched-stalled-insns-dep=1}.
6622
6623 @item -fsched2-use-superblocks
6624 @opindex fsched2-use-superblocks
6625 When scheduling after register allocation, do use superblock scheduling
6626 algorithm.  Superblock scheduling allows motion across basic block boundaries
6627 resulting on faster schedules.  This option is experimental, as not all machine
6628 descriptions used by GCC model the CPU closely enough to avoid unreliable
6629 results from the algorithm.
6630
6631 This only makes sense when scheduling after register allocation, i.e.@: with
6632 @option{-fschedule-insns2} or at @option{-O2} or higher.
6633
6634 @item -fsched-group-heuristic
6635 @opindex fsched-group-heuristic
6636 Enable the group heuristic in the scheduler.  This heuristic favors 
6637 the instruction that belongs to a schedule group.  This is enabled 
6638 by default when scheduling is enabled, i.e.@: with @option{-fschedule-insns} 
6639 or @option{-fschedule-insns2} or at @option{-O2} or higher.
6640
6641 @item -fsched-critical-path-heuristic
6642 @opindex fsched-critical-path-heuristic
6643 Enable the critical-path heuristic in the scheduler.  This heuristic favors 
6644 instructions on the critical path.  This is enabled by default when 
6645 scheduling is enabled, i.e.@: with @option{-fschedule-insns} 
6646 or @option{-fschedule-insns2} or at @option{-O2} or higher.
6647
6648 @item -fsched-spec-insn-heuristic
6649 @opindex fsched-spec-insn-heuristic
6650 Enable the speculative instruction heuristic in the scheduler.  This 
6651 heuristic favors speculative instructions with greater dependency weakness.  
6652 This is enabled by default when scheduling is enabled, i.e.@: 
6653 with @option{-fschedule-insns} or @option{-fschedule-insns2} 
6654 or at @option{-O2} or higher.
6655
6656 @item -fsched-rank-heuristic
6657 @opindex fsched-rank-heuristic
6658 Enable the rank heuristic in the scheduler.  This heuristic favors 
6659 the instruction belonging to a basic block with greater size or frequency.  
6660 This is enabled by default when scheduling is enabled, i.e.@: 
6661 with @option{-fschedule-insns} or @option{-fschedule-insns2} or 
6662 at @option{-O2} or higher.
6663
6664 @item -fsched-last-insn-heuristic
6665 @opindex fsched-last-insn-heuristic
6666 Enable the last-instruction heuristic in the scheduler.  This heuristic 
6667 favors the instruction that is less dependent on the last instruction
6668 scheduled.  This is enabled by default when scheduling is enabled, 
6669 i.e.@: with @option{-fschedule-insns} or @option{-fschedule-insns2} or 
6670 at @option{-O2} or higher.
6671
6672 @item -fsched-dep-count-heuristic
6673 @opindex fsched-dep-count-heuristic
6674 Enable the dependent-count heuristic in the scheduler.  This heuristic 
6675 favors the instruction that has more instructions depending on it.  
6676 This is enabled by default when scheduling is enabled, i.e.@: 
6677 with @option{-fschedule-insns} or @option{-fschedule-insns2} or 
6678 at @option{-O2} or higher.
6679
6680 @item -freschedule-modulo-scheduled-loops
6681 @opindex freschedule-modulo-scheduled-loops
6682 The modulo scheduling comes before the traditional scheduling, if a loop
6683 was modulo scheduled we may want to prevent the later scheduling passes
6684 from changing its schedule, we use this option to control that.
6685
6686 @item -fselective-scheduling
6687 @opindex fselective-scheduling
6688 Schedule instructions using selective scheduling algorithm.  Selective
6689 scheduling runs instead of the first scheduler pass.
6690
6691 @item -fselective-scheduling2
6692 @opindex fselective-scheduling2
6693 Schedule instructions using selective scheduling algorithm.  Selective
6694 scheduling runs instead of the second scheduler pass.
6695
6696 @item -fsel-sched-pipelining
6697 @opindex fsel-sched-pipelining
6698 Enable software pipelining of innermost loops during selective scheduling.
6699 This option has no effect until one of @option{-fselective-scheduling} or
6700 @option{-fselective-scheduling2} is turned on.
6701
6702 @item -fsel-sched-pipelining-outer-loops
6703 @opindex fsel-sched-pipelining-outer-loops
6704 When pipelining loops during selective scheduling, also pipeline outer loops.
6705 This option has no effect until @option{-fsel-sched-pipelining} is turned on.
6706
6707 @item -fcaller-saves
6708 @opindex fcaller-saves
6709 Enable values to be allocated in registers that will be clobbered by
6710 function calls, by emitting extra instructions to save and restore the
6711 registers around such calls.  Such allocation is done only when it
6712 seems to result in better code than would otherwise be produced.
6713
6714 This option is always enabled by default on certain machines, usually
6715 those which have no call-preserved registers to use instead.
6716
6717 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6718
6719 @item -fcombine-stack-adjustments
6720 @opindex fcombine-stack-adjustments
6721 Tracks stack adjustments (pushes and pops) and stack memory references
6722 and then tries to find ways to combine them.
6723
6724 Enabled by default at @option{-O1} and higher.
6725
6726 @item -fconserve-stack
6727 @opindex fconserve-stack
6728 Attempt to minimize stack usage.  The compiler will attempt to use less
6729 stack space, even if that makes the program slower.  This option
6730 implies setting the @option{large-stack-frame} parameter to 100
6731 and the @option{large-stack-frame-growth} parameter to 400.
6732
6733 @item -ftree-reassoc
6734 @opindex ftree-reassoc
6735 Perform reassociation on trees.  This flag is enabled by default
6736 at @option{-O} and higher.
6737
6738 @item -ftree-pre
6739 @opindex ftree-pre
6740 Perform partial redundancy elimination (PRE) on trees.  This flag is
6741 enabled by default at @option{-O2} and @option{-O3}.
6742
6743 @item -ftree-forwprop
6744 @opindex ftree-forwprop
6745 Perform forward propagation on trees.  This flag is enabled by default
6746 at @option{-O} and higher.
6747
6748 @item -ftree-fre
6749 @opindex ftree-fre
6750 Perform full redundancy elimination (FRE) on trees.  The difference
6751 between FRE and PRE is that FRE only considers expressions
6752 that are computed on all paths leading to the redundant computation.
6753 This analysis is faster than PRE, though it exposes fewer redundancies.
6754 This flag is enabled by default at @option{-O} and higher.
6755
6756 @item -ftree-phiprop
6757 @opindex ftree-phiprop
6758 Perform hoisting of loads from conditional pointers on trees.  This
6759 pass is enabled by default at @option{-O} and higher.
6760
6761 @item -ftree-copy-prop
6762 @opindex ftree-copy-prop
6763 Perform copy propagation on trees.  This pass eliminates unnecessary
6764 copy operations.  This flag is enabled by default at @option{-O} and
6765 higher.
6766
6767 @item -fipa-pure-const
6768 @opindex fipa-pure-const
6769 Discover which functions are pure or constant.
6770 Enabled by default at @option{-O} and higher.
6771
6772 @item -fipa-reference
6773 @opindex fipa-reference
6774 Discover which static variables do not escape cannot escape the
6775 compilation unit.
6776 Enabled by default at @option{-O} and higher.
6777
6778 @item -fipa-pta
6779 @opindex fipa-pta
6780 Perform interprocedural pointer analysis and interprocedural modification
6781 and reference analysis.  This option can cause excessive memory and
6782 compile-time usage on large compilation units.  It is not enabled by
6783 default at any optimization level.
6784
6785 @item -fipa-profile
6786 @opindex fipa-profile
6787 Perform interprocedural profile propagation.  The functions called only from
6788 cold functions are marked as cold. Also functions executed once (such as
6789 @code{cold}, @code{noreturn}, static constructors or destructors) are identified. Cold
6790 functions and loop less parts of functions executed once are then optimized for
6791 size.
6792 Enabled by default at @option{-O} and higher.
6793
6794 @item -fipa-cp
6795 @opindex fipa-cp
6796 Perform interprocedural constant propagation.
6797 This optimization analyzes the program to determine when values passed
6798 to functions are constants and then optimizes accordingly.
6799 This optimization can substantially increase performance
6800 if the application has constants passed to functions.
6801 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
6802
6803 @item -fipa-cp-clone
6804 @opindex fipa-cp-clone
6805 Perform function cloning to make interprocedural constant propagation stronger.
6806 When enabled, interprocedural constant propagation will perform function cloning
6807 when externally visible function can be called with constant arguments.
6808 Because this optimization can create multiple copies of functions,
6809 it may significantly increase code size
6810 (see @option{--param ipcp-unit-growth=@var{value}}).
6811 This flag is enabled by default at @option{-O3}.
6812
6813 @item -fipa-matrix-reorg
6814 @opindex fipa-matrix-reorg
6815 Perform matrix flattening and transposing.
6816 Matrix flattening tries to replace an @math{m}-dimensional matrix
6817 with its equivalent @math{n}-dimensional matrix, where @math{n < m}.
6818 This reduces the level of indirection needed for accessing the elements
6819 of the matrix. The second optimization is matrix transposing that
6820 attempts to change the order of the matrix's dimensions in order to
6821 improve cache locality.
6822 Both optimizations need the @option{-fwhole-program} flag.
6823 Transposing is enabled only if profiling information is available.
6824
6825 @item -ftree-sink
6826 @opindex ftree-sink
6827 Perform forward store motion  on trees.  This flag is
6828 enabled by default at @option{-O} and higher.
6829
6830 @item -ftree-bit-ccp
6831 @opindex ftree-bit-ccp
6832 Perform sparse conditional bit constant propagation on trees and propagate
6833 pointer alignment information.
6834 This pass only operates on local scalar variables and is enabled by default
6835 at @option{-O} and higher.  It requires that @option{-ftree-ccp} is enabled.
6836
6837 @item -ftree-ccp
6838 @opindex ftree-ccp
6839 Perform sparse conditional constant propagation (CCP) on trees.  This
6840 pass only operates on local scalar variables and is enabled by default
6841 at @option{-O} and higher.
6842
6843 @item -ftree-switch-conversion
6844 Perform conversion of simple initializations in a switch to
6845 initializations from a scalar array.  This flag is enabled by default
6846 at @option{-O2} and higher.
6847
6848 @item -ftree-dce
6849 @opindex ftree-dce
6850 Perform dead code elimination (DCE) on trees.  This flag is enabled by
6851 default at @option{-O} and higher.
6852
6853 @item -ftree-builtin-call-dce
6854 @opindex ftree-builtin-call-dce
6855 Perform conditional dead code elimination (DCE) for calls to builtin functions
6856 that may set @code{errno} but are otherwise side-effect free.  This flag is
6857 enabled by default at @option{-O2} and higher if @option{-Os} is not also
6858 specified.
6859
6860 @item -ftree-dominator-opts
6861 @opindex ftree-dominator-opts
6862 Perform a variety of simple scalar cleanups (constant/copy
6863 propagation, redundancy elimination, range propagation and expression
6864 simplification) based on a dominator tree traversal.  This also
6865 performs jump threading (to reduce jumps to jumps). This flag is
6866 enabled by default at @option{-O} and higher.
6867
6868 @item -ftree-dse
6869 @opindex ftree-dse
6870 Perform dead store elimination (DSE) on trees.  A dead store is a store into
6871 a memory location which will later be overwritten by another store without
6872 any intervening loads.  In this case the earlier store can be deleted.  This
6873 flag is enabled by default at @option{-O} and higher.
6874
6875 @item -ftree-ch
6876 @opindex ftree-ch
6877 Perform loop header copying on trees.  This is beneficial since it increases
6878 effectiveness of code motion optimizations.  It also saves one jump.  This flag
6879 is enabled by default at @option{-O} and higher.  It is not enabled
6880 for @option{-Os}, since it usually increases code size.
6881
6882 @item -ftree-loop-optimize
6883 @opindex ftree-loop-optimize
6884 Perform loop optimizations on trees.  This flag is enabled by default
6885 at @option{-O} and higher.
6886
6887 @item -ftree-loop-linear
6888 @opindex ftree-loop-linear
6889 Perform loop interchange transformations on tree.  Same as
6890 @option{-floop-interchange}.  To use this code transformation, GCC has
6891 to be configured with @option{--with-ppl} and @option{--with-cloog} to
6892 enable the Graphite loop transformation infrastructure.
6893
6894 @item -floop-interchange
6895 @opindex floop-interchange
6896 Perform loop interchange transformations on loops.  Interchanging two
6897 nested loops switches the inner and outer loops.  For example, given a
6898 loop like:
6899 @smallexample
6900 DO J = 1, M
6901   DO I = 1, N
6902     A(J, I) = A(J, I) * C
6903   ENDDO
6904 ENDDO
6905 @end smallexample
6906 loop interchange will transform the loop as if the user had written:
6907 @smallexample
6908 DO I = 1, N
6909   DO J = 1, M
6910     A(J, I) = A(J, I) * C
6911   ENDDO
6912 ENDDO
6913 @end smallexample
6914 which can be beneficial when @code{N} is larger than the caches,
6915 because in Fortran, the elements of an array are stored in memory
6916 contiguously by column, and the original loop iterates over rows,
6917 potentially creating at each access a cache miss.  This optimization
6918 applies to all the languages supported by GCC and is not limited to
6919 Fortran.  To use this code transformation, GCC has to be configured
6920 with @option{--with-ppl} and @option{--with-cloog} to enable the
6921 Graphite loop transformation infrastructure.
6922
6923 @item -floop-strip-mine
6924 @opindex floop-strip-mine
6925 Perform loop strip mining transformations on loops.  Strip mining
6926 splits a loop into two nested loops.  The outer loop has strides
6927 equal to the strip size and the inner loop has strides of the
6928 original loop within a strip.  The strip length can be changed
6929 using the @option{loop-block-tile-size} parameter.  For example,
6930 given a loop like:
6931 @smallexample
6932 DO I = 1, N
6933   A(I) = A(I) + C
6934 ENDDO
6935 @end smallexample
6936 loop strip mining will transform the loop as if the user had written:
6937 @smallexample
6938 DO II = 1, N, 51
6939   DO I = II, min (II + 50, N)
6940     A(I) = A(I) + C
6941   ENDDO
6942 ENDDO
6943 @end smallexample
6944 This optimization applies to all the languages supported by GCC and is
6945 not limited to Fortran.  To use this code transformation, GCC has to
6946 be configured with @option{--with-ppl} and @option{--with-cloog} to
6947 enable the Graphite loop transformation infrastructure.
6948
6949 @item -floop-block
6950 @opindex floop-block
6951 Perform loop blocking transformations on loops.  Blocking strip mines
6952 each loop in the loop nest such that the memory accesses of the
6953 element loops fit inside caches.  The strip length can be changed
6954 using the @option{loop-block-tile-size} parameter.  For example, given
6955 a loop like:
6956 @smallexample
6957 DO I = 1, N
6958   DO J = 1, M
6959     A(J, I) = B(I) + C(J)
6960   ENDDO
6961 ENDDO
6962 @end smallexample
6963 loop blocking will transform the loop as if the user had written:
6964 @smallexample
6965 DO II = 1, N, 51
6966   DO JJ = 1, M, 51
6967     DO I = II, min (II + 50, N)
6968       DO J = JJ, min (JJ + 50, M)
6969         A(J, I) = B(I) + C(J)
6970       ENDDO
6971     ENDDO
6972   ENDDO
6973 ENDDO
6974 @end smallexample
6975 which can be beneficial when @code{M} is larger than the caches,
6976 because the innermost loop will iterate over a smaller amount of data
6977 that can be kept in the caches.  This optimization applies to all the
6978 languages supported by GCC and is not limited to Fortran.  To use this
6979 code transformation, GCC has to be configured with @option{--with-ppl}
6980 and @option{--with-cloog} to enable the Graphite loop transformation
6981 infrastructure.
6982
6983 @item -fgraphite-identity
6984 @opindex fgraphite-identity
6985 Enable the identity transformation for graphite.  For every SCoP we generate
6986 the polyhedral representation and transform it back to gimple.  Using
6987 @option{-fgraphite-identity} we can check the costs or benefits of the
6988 GIMPLE -> GRAPHITE -> GIMPLE transformation.  Some minimal optimizations
6989 are also performed by the code generator CLooG, like index splitting and
6990 dead code elimination in loops.
6991
6992 @item -floop-flatten
6993 @opindex floop-flatten
6994 Removes the loop nesting structure: transforms the loop nest into a
6995 single loop.  This transformation can be useful to vectorize all the
6996 levels of the loop nest.
6997
6998 @item -floop-parallelize-all
6999 @opindex floop-parallelize-all
7000 Use the Graphite data dependence analysis to identify loops that can
7001 be parallelized.  Parallelize all the loops that can be analyzed to
7002 not contain loop carried dependences without checking that it is
7003 profitable to parallelize the loops.
7004
7005 @item -fcheck-data-deps
7006 @opindex fcheck-data-deps
7007 Compare the results of several data dependence analyzers.  This option
7008 is used for debugging the data dependence analyzers.
7009
7010 @item -ftree-loop-if-convert
7011 Attempt to transform conditional jumps in the innermost loops to
7012 branch-less equivalents.  The intent is to remove control-flow from
7013 the innermost loops in order to improve the ability of the
7014 vectorization pass to handle these loops.  This is enabled by default
7015 if vectorization is enabled.
7016
7017 @item -ftree-loop-if-convert-stores
7018 Attempt to also if-convert conditional jumps containing memory writes.
7019 This transformation can be unsafe for multi-threaded programs as it
7020 transforms conditional memory writes into unconditional memory writes.
7021 For example,
7022 @smallexample
7023 for (i = 0; i < N; i++)
7024   if (cond)
7025     A[i] = expr;
7026 @end smallexample
7027 would be transformed to
7028 @smallexample
7029 for (i = 0; i < N; i++)
7030   A[i] = cond ? expr : A[i];
7031 @end smallexample
7032 potentially producing data races.
7033
7034 @item -ftree-loop-distribution
7035 Perform loop distribution.  This flag can improve cache performance on
7036 big loop bodies and allow further loop optimizations, like
7037 parallelization or vectorization, to take place.  For example, the loop
7038 @smallexample
7039 DO I = 1, N
7040   A(I) = B(I) + C
7041   D(I) = E(I) * F
7042 ENDDO
7043 @end smallexample
7044 is transformed to
7045 @smallexample
7046 DO I = 1, N
7047    A(I) = B(I) + C
7048 ENDDO
7049 DO I = 1, N
7050    D(I) = E(I) * F
7051 ENDDO
7052 @end smallexample
7053
7054 @item -ftree-loop-distribute-patterns
7055 Perform loop distribution of patterns that can be code generated with
7056 calls to a library.  This flag is enabled by default at @option{-O3}.
7057
7058 This pass distributes the initialization loops and generates a call to
7059 memset zero.  For example, the loop
7060 @smallexample
7061 DO I = 1, N
7062   A(I) = 0
7063   B(I) = A(I) + I
7064 ENDDO
7065 @end smallexample
7066 is transformed to
7067 @smallexample
7068 DO I = 1, N
7069    A(I) = 0
7070 ENDDO
7071 DO I = 1, N
7072    B(I) = A(I) + I
7073 ENDDO
7074 @end smallexample
7075 and the initialization loop is transformed into a call to memset zero.
7076
7077 @item -ftree-loop-im
7078 @opindex ftree-loop-im
7079 Perform loop invariant motion on trees.  This pass moves only invariants that
7080 would be hard to handle at RTL level (function calls, operations that expand to
7081 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
7082 operands of conditions that are invariant out of the loop, so that we can use
7083 just trivial invariantness analysis in loop unswitching.  The pass also includes
7084 store motion.
7085
7086 @item -ftree-loop-ivcanon
7087 @opindex ftree-loop-ivcanon
7088 Create a canonical counter for number of iterations in the loop for that
7089 determining number of iterations requires complicated analysis.  Later
7090 optimizations then may determine the number easily.  Useful especially
7091 in connection with unrolling.
7092
7093 @item -fivopts
7094 @opindex fivopts
7095 Perform induction variable optimizations (strength reduction, induction
7096 variable merging and induction variable elimination) on trees.
7097
7098 @item -ftree-parallelize-loops=n
7099 @opindex ftree-parallelize-loops
7100 Parallelize loops, i.e., split their iteration space to run in n threads.
7101 This is only possible for loops whose iterations are independent
7102 and can be arbitrarily reordered.  The optimization is only
7103 profitable on multiprocessor machines, for loops that are CPU-intensive,
7104 rather than constrained e.g.@: by memory bandwidth.  This option
7105 implies @option{-pthread}, and thus is only supported on targets
7106 that have support for @option{-pthread}.
7107
7108 @item -ftree-pta
7109 @opindex ftree-pta
7110 Perform function-local points-to analysis on trees.  This flag is
7111 enabled by default at @option{-O} and higher.
7112
7113 @item -ftree-sra
7114 @opindex ftree-sra
7115 Perform scalar replacement of aggregates.  This pass replaces structure
7116 references with scalars to prevent committing structures to memory too
7117 early.  This flag is enabled by default at @option{-O} and higher.
7118
7119 @item -ftree-copyrename
7120 @opindex ftree-copyrename
7121 Perform copy renaming on trees.  This pass attempts to rename compiler
7122 temporaries to other variables at copy locations, usually resulting in
7123 variable names which more closely resemble the original variables.  This flag
7124 is enabled by default at @option{-O} and higher.
7125
7126 @item -ftree-ter
7127 @opindex ftree-ter
7128 Perform temporary expression replacement during the SSA->normal phase.  Single
7129 use/single def temporaries are replaced at their use location with their
7130 defining expression.  This results in non-GIMPLE code, but gives the expanders
7131 much more complex trees to work on resulting in better RTL generation.  This is
7132 enabled by default at @option{-O} and higher.
7133
7134 @item -ftree-vectorize
7135 @opindex ftree-vectorize
7136 Perform loop vectorization on trees. This flag is enabled by default at
7137 @option{-O3}.
7138
7139 @item -ftree-slp-vectorize
7140 @opindex ftree-slp-vectorize
7141 Perform basic block vectorization on trees. This flag is enabled by default at
7142 @option{-O3} and when @option{-ftree-vectorize} is enabled.
7143
7144 @item -ftree-vect-loop-version
7145 @opindex ftree-vect-loop-version
7146 Perform loop versioning when doing loop vectorization on trees.  When a loop
7147 appears to be vectorizable except that data alignment or data dependence cannot
7148 be determined at compile time then vectorized and non-vectorized versions of
7149 the loop are generated along with runtime checks for alignment or dependence
7150 to control which version is executed.  This option is enabled by default
7151 except at level @option{-Os} where it is disabled.
7152
7153 @item -fvect-cost-model
7154 @opindex fvect-cost-model
7155 Enable cost model for vectorization.
7156
7157 @item -ftree-vrp
7158 @opindex ftree-vrp
7159 Perform Value Range Propagation on trees.  This is similar to the
7160 constant propagation pass, but instead of values, ranges of values are
7161 propagated.  This allows the optimizers to remove unnecessary range
7162 checks like array bound checks and null pointer checks.  This is
7163 enabled by default at @option{-O2} and higher.  Null pointer check
7164 elimination is only done if @option{-fdelete-null-pointer-checks} is
7165 enabled.
7166
7167 @item -ftracer
7168 @opindex ftracer
7169 Perform tail duplication to enlarge superblock size.  This transformation
7170 simplifies the control flow of the function allowing other optimizations to do
7171 better job.
7172
7173 @item -funroll-loops
7174 @opindex funroll-loops
7175 Unroll loops whose number of iterations can be determined at compile
7176 time or upon entry to the loop.  @option{-funroll-loops} implies
7177 @option{-frerun-cse-after-loop}.  This option makes code larger,
7178 and may or may not make it run faster.
7179
7180 @item -funroll-all-loops
7181 @opindex funroll-all-loops
7182 Unroll all loops, even if their number of iterations is uncertain when
7183 the loop is entered.  This usually makes programs run more slowly.
7184 @option{-funroll-all-loops} implies the same options as
7185 @option{-funroll-loops},
7186
7187 @item -fsplit-ivs-in-unroller
7188 @opindex fsplit-ivs-in-unroller
7189 Enables expressing of values of induction variables in later iterations
7190 of the unrolled loop using the value in the first iteration.  This breaks
7191 long dependency chains, thus improving efficiency of the scheduling passes.
7192
7193 Combination of @option{-fweb} and CSE is often sufficient to obtain the
7194 same effect.  However in cases the loop body is more complicated than
7195 a single basic block, this is not reliable.  It also does not work at all
7196 on some of the architectures due to restrictions in the CSE pass.
7197
7198 This optimization is enabled by default.
7199
7200 @item -fvariable-expansion-in-unroller
7201 @opindex fvariable-expansion-in-unroller
7202 With this option, the compiler will create multiple copies of some
7203 local variables when unrolling a loop which can result in superior code.
7204
7205 @item -fpartial-inlining
7206 @opindex fpartial-inlining
7207 Inline parts of functions.  This option has any effect only
7208 when inlining itself is turned on by the @option{-finline-functions}
7209 or @option{-finline-small-functions} options.
7210
7211 Enabled at level @option{-O2}.
7212
7213 @item -fpredictive-commoning
7214 @opindex fpredictive-commoning
7215 Perform predictive commoning optimization, i.e., reusing computations
7216 (especially memory loads and stores) performed in previous
7217 iterations of loops.
7218
7219 This option is enabled at level @option{-O3}.
7220
7221 @item -fprefetch-loop-arrays
7222 @opindex fprefetch-loop-arrays
7223 If supported by the target machine, generate instructions to prefetch
7224 memory to improve the performance of loops that access large arrays.
7225
7226 This option may generate better or worse code; results are highly
7227 dependent on the structure of loops within the source code.
7228
7229 Disabled at level @option{-Os}.
7230
7231 @item -fno-peephole
7232 @itemx -fno-peephole2
7233 @opindex fno-peephole
7234 @opindex fno-peephole2
7235 Disable any machine-specific peephole optimizations.  The difference
7236 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
7237 are implemented in the compiler; some targets use one, some use the
7238 other, a few use both.
7239
7240 @option{-fpeephole} is enabled by default.
7241 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7242
7243 @item -fno-guess-branch-probability
7244 @opindex fno-guess-branch-probability
7245 Do not guess branch probabilities using heuristics.
7246
7247 GCC will use heuristics to guess branch probabilities if they are
7248 not provided by profiling feedback (@option{-fprofile-arcs}).  These
7249 heuristics are based on the control flow graph.  If some branch probabilities
7250 are specified by @samp{__builtin_expect}, then the heuristics will be
7251 used to guess branch probabilities for the rest of the control flow graph,
7252 taking the @samp{__builtin_expect} info into account.  The interactions
7253 between the heuristics and @samp{__builtin_expect} can be complex, and in
7254 some cases, it may be useful to disable the heuristics so that the effects
7255 of @samp{__builtin_expect} are easier to understand.
7256
7257 The default is @option{-fguess-branch-probability} at levels
7258 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7259
7260 @item -freorder-blocks
7261 @opindex freorder-blocks
7262 Reorder basic blocks in the compiled function in order to reduce number of
7263 taken branches and improve code locality.
7264
7265 Enabled at levels @option{-O2}, @option{-O3}.
7266
7267 @item -freorder-blocks-and-partition
7268 @opindex freorder-blocks-and-partition
7269 In addition to reordering basic blocks in the compiled function, in order
7270 to reduce number of taken branches, partitions hot and cold basic blocks
7271 into separate sections of the assembly and .o files, to improve
7272 paging and cache locality performance.
7273
7274 This optimization is automatically turned off in the presence of
7275 exception handling, for linkonce sections, for functions with a user-defined
7276 section attribute and on any architecture that does not support named
7277 sections.
7278
7279 @item -freorder-functions
7280 @opindex freorder-functions
7281 Reorder functions in the object file in order to
7282 improve code locality.  This is implemented by using special
7283 subsections @code{.text.hot} for most frequently executed functions and
7284 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
7285 the linker so object file format must support named sections and linker must
7286 place them in a reasonable way.
7287
7288 Also profile feedback must be available in to make this option effective.  See
7289 @option{-fprofile-arcs} for details.
7290
7291 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7292
7293 @item -fstrict-aliasing
7294 @opindex fstrict-aliasing
7295 Allow the compiler to assume the strictest aliasing rules applicable to
7296 the language being compiled.  For C (and C++), this activates
7297 optimizations based on the type of expressions.  In particular, an
7298 object of one type is assumed never to reside at the same address as an
7299 object of a different type, unless the types are almost the same.  For
7300 example, an @code{unsigned int} can alias an @code{int}, but not a
7301 @code{void*} or a @code{double}.  A character type may alias any other
7302 type.
7303
7304 @anchor{Type-punning}Pay special attention to code like this:
7305 @smallexample
7306 union a_union @{
7307   int i;
7308   double d;
7309 @};
7310
7311 int f() @{
7312   union a_union t;
7313   t.d = 3.0;
7314   return t.i;
7315 @}
7316 @end smallexample
7317 The practice of reading from a different union member than the one most
7318 recently written to (called ``type-punning'') is common.  Even with
7319 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
7320 is accessed through the union type.  So, the code above will work as
7321 expected.  @xref{Structures unions enumerations and bit-fields
7322 implementation}.  However, this code might not:
7323 @smallexample
7324 int f() @{
7325   union a_union t;
7326   int* ip;
7327   t.d = 3.0;
7328   ip = &t.i;
7329   return *ip;
7330 @}
7331 @end smallexample
7332
7333 Similarly, access by taking the address, casting the resulting pointer
7334 and dereferencing the result has undefined behavior, even if the cast
7335 uses a union type, e.g.:
7336 @smallexample
7337 int f() @{
7338   double d = 3.0;
7339   return ((union a_union *) &d)->i;
7340 @}
7341 @end smallexample
7342
7343 The @option{-fstrict-aliasing} option is enabled at levels
7344 @option{-O2}, @option{-O3}, @option{-Os}.
7345
7346 @item -fstrict-overflow
7347 @opindex fstrict-overflow
7348 Allow the compiler to assume strict signed overflow rules, depending
7349 on the language being compiled.  For C (and C++) this means that
7350 overflow when doing arithmetic with signed numbers is undefined, which
7351 means that the compiler may assume that it will not happen.  This
7352 permits various optimizations.  For example, the compiler will assume
7353 that an expression like @code{i + 10 > i} will always be true for
7354 signed @code{i}.  This assumption is only valid if signed overflow is
7355 undefined, as the expression is false if @code{i + 10} overflows when
7356 using twos complement arithmetic.  When this option is in effect any
7357 attempt to determine whether an operation on signed numbers will
7358 overflow must be written carefully to not actually involve overflow.
7359
7360 This option also allows the compiler to assume strict pointer
7361 semantics: given a pointer to an object, if adding an offset to that
7362 pointer does not produce a pointer to the same object, the addition is
7363 undefined.  This permits the compiler to conclude that @code{p + u >
7364 p} is always true for a pointer @code{p} and unsigned integer
7365 @code{u}.  This assumption is only valid because pointer wraparound is
7366 undefined, as the expression is false if @code{p + u} overflows using
7367 twos complement arithmetic.
7368
7369 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
7370 that integer signed overflow is fully defined: it wraps.  When
7371 @option{-fwrapv} is used, there is no difference between
7372 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
7373 integers.  With @option{-fwrapv} certain types of overflow are
7374 permitted.  For example, if the compiler gets an overflow when doing
7375 arithmetic on constants, the overflowed value can still be used with
7376 @option{-fwrapv}, but not otherwise.
7377
7378 The @option{-fstrict-overflow} option is enabled at levels
7379 @option{-O2}, @option{-O3}, @option{-Os}.
7380
7381 @item -falign-functions
7382 @itemx -falign-functions=@var{n}
7383 @opindex falign-functions
7384 Align the start of functions to the next power-of-two greater than
7385 @var{n}, skipping up to @var{n} bytes.  For instance,
7386 @option{-falign-functions=32} aligns functions to the next 32-byte
7387 boundary, but @option{-falign-functions=24} would align to the next
7388 32-byte boundary only if this can be done by skipping 23 bytes or less.
7389
7390 @option{-fno-align-functions} and @option{-falign-functions=1} are
7391 equivalent and mean that functions will not be aligned.
7392
7393 Some assemblers only support this flag when @var{n} is a power of two;
7394 in that case, it is rounded up.
7395
7396 If @var{n} is not specified or is zero, use a machine-dependent default.
7397
7398 Enabled at levels @option{-O2}, @option{-O3}.
7399
7400 @item -falign-labels
7401 @itemx -falign-labels=@var{n}
7402 @opindex falign-labels
7403 Align all branch targets to a power-of-two boundary, skipping up to
7404 @var{n} bytes like @option{-falign-functions}.  This option can easily
7405 make code slower, because it must insert dummy operations for when the
7406 branch target is reached in the usual flow of the code.
7407
7408 @option{-fno-align-labels} and @option{-falign-labels=1} are
7409 equivalent and mean that labels will not be aligned.
7410
7411 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
7412 are greater than this value, then their values are used instead.
7413
7414 If @var{n} is not specified or is zero, use a machine-dependent default
7415 which is very likely to be @samp{1}, meaning no alignment.
7416
7417 Enabled at levels @option{-O2}, @option{-O3}.
7418
7419 @item -falign-loops
7420 @itemx -falign-loops=@var{n}
7421 @opindex falign-loops
7422 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
7423 like @option{-falign-functions}.  The hope is that the loop will be
7424 executed many times, which will make up for any execution of the dummy
7425 operations.
7426
7427 @option{-fno-align-loops} and @option{-falign-loops=1} are
7428 equivalent and mean that loops will not be aligned.
7429
7430 If @var{n} is not specified or is zero, use a machine-dependent default.
7431
7432 Enabled at levels @option{-O2}, @option{-O3}.
7433
7434 @item -falign-jumps
7435 @itemx -falign-jumps=@var{n}
7436 @opindex falign-jumps
7437 Align branch targets to a power-of-two boundary, for branch targets
7438 where the targets can only be reached by jumping, skipping up to @var{n}
7439 bytes like @option{-falign-functions}.  In this case, no dummy operations
7440 need be executed.
7441
7442 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
7443 equivalent and mean that loops will not be aligned.
7444
7445 If @var{n} is not specified or is zero, use a machine-dependent default.
7446
7447 Enabled at levels @option{-O2}, @option{-O3}.
7448
7449 @item -funit-at-a-time
7450 @opindex funit-at-a-time
7451 This option is left for compatibility reasons. @option{-funit-at-a-time}
7452 has no effect, while @option{-fno-unit-at-a-time} implies
7453 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
7454
7455 Enabled by default.
7456
7457 @item -fno-toplevel-reorder
7458 @opindex fno-toplevel-reorder
7459 Do not reorder top-level functions, variables, and @code{asm}
7460 statements.  Output them in the same order that they appear in the
7461 input file.  When this option is used, unreferenced static variables
7462 will not be removed.  This option is intended to support existing code
7463 which relies on a particular ordering.  For new code, it is better to
7464 use attributes.
7465
7466 Enabled at level @option{-O0}.  When disabled explicitly, it also imply
7467 @option{-fno-section-anchors} that is otherwise enabled at @option{-O0} on some
7468 targets.
7469
7470 @item -fweb
7471 @opindex fweb
7472 Constructs webs as commonly used for register allocation purposes and assign
7473 each web individual pseudo register.  This allows the register allocation pass
7474 to operate on pseudos directly, but also strengthens several other optimization
7475 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
7476 however, make debugging impossible, since variables will no longer stay in a
7477 ``home register''.
7478
7479 Enabled by default with @option{-funroll-loops}.
7480
7481 @item -fwhole-program
7482 @opindex fwhole-program
7483 Assume that the current compilation unit represents the whole program being
7484 compiled.  All public functions and variables with the exception of @code{main}
7485 and those merged by attribute @code{externally_visible} become static functions
7486 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.
7487 While this option is equivalent to proper use of the @code{static} keyword for
7488 programs consisting of a single file, in combination with option
7489 @option{-flto} this flag can be used to
7490 compile many smaller scale programs since the functions and variables become
7491 local for the whole combined compilation unit, not for the single source file
7492 itself.
7493
7494 This option implies @option{-fwhole-file} for Fortran programs.
7495
7496 @item -flto[=@var{n}]
7497 @opindex flto
7498 This option runs the standard link-time optimizer.  When invoked
7499 with source code, it generates GIMPLE (one of GCC's internal
7500 representations) and writes it to special ELF sections in the object
7501 file.  When the object files are linked together, all the function
7502 bodies are read from these ELF sections and instantiated as if they
7503 had been part of the same translation unit.
7504
7505 To use the link-timer optimizer, @option{-flto} needs to be specified at
7506 compile time and during the final link.  For example,
7507
7508 @smallexample
7509 gcc -c -O2 -flto foo.c
7510 gcc -c -O2 -flto bar.c
7511 gcc -o myprog -flto -O2 foo.o bar.o
7512 @end smallexample
7513
7514 The first two invocations to GCC will save a bytecode representation
7515 of GIMPLE into special ELF sections inside @file{foo.o} and
7516 @file{bar.o}.  The final invocation will read the GIMPLE bytecode from
7517 @file{foo.o} and @file{bar.o}, merge the two files into a single
7518 internal image, and compile the result as usual.  Since both
7519 @file{foo.o} and @file{bar.o} are merged into a single image, this
7520 causes all the inter-procedural analyses and optimizations in GCC to
7521 work across the two files as if they were a single one.  This means,
7522 for example, that the inliner will be able to inline functions in
7523 @file{bar.o} into functions in @file{foo.o} and vice-versa.
7524
7525 Another (simpler) way to enable link-time optimization is,
7526
7527 @smallexample
7528 gcc -o myprog -flto -O2 foo.c bar.c
7529 @end smallexample
7530
7531 The above will generate bytecode for @file{foo.c} and @file{bar.c},
7532 merge them together into a single GIMPLE representation and optimize
7533 them as usual to produce @file{myprog}.
7534
7535 The only important thing to keep in mind is that to enable link-time
7536 optimizations the @option{-flto} flag needs to be passed to both the
7537 compile and the link commands.
7538
7539 To make whole program optimization effective, it is necessary to make
7540 certain whole program assumptions.  The compiler needs to know
7541 what functions and variables can be accessed by libraries and runtime
7542 outside of the link time optimized unit.  When supported by the linker,
7543 the linker plugin (see @option{-fuse-linker-plugin}) passes to the
7544 compiler information about used and externally visible symbols.  When
7545 the linker plugin is not available, @option{-fwhole-program} should be
7546 used to allow the compiler to make these assumptions, which will lead
7547 to more aggressive optimization decisions.
7548
7549 Note that when a file is compiled with @option{-flto}, the generated
7550 object file will be larger than a regular object file because it will
7551 contain GIMPLE bytecodes and the usual final code.  This means that
7552 object files with LTO information can be linked as a normal object
7553 file.  So, in the previous example, if the final link is done with
7554
7555 @smallexample
7556 gcc -o myprog foo.o bar.o
7557 @end smallexample
7558
7559 The only difference will be that no inter-procedural optimizations
7560 will be applied to produce @file{myprog}.  The two object files
7561 @file{foo.o} and @file{bar.o} will be simply sent to the regular
7562 linker.
7563
7564 Additionally, the optimization flags used to compile individual files
7565 are not necessarily related to those used at link-time.  For instance,
7566
7567 @smallexample
7568 gcc -c -O0 -flto foo.c
7569 gcc -c -O0 -flto bar.c
7570 gcc -o myprog -flto -O3 foo.o bar.o
7571 @end smallexample
7572
7573 This will produce individual object files with unoptimized assembler
7574 code, but the resulting binary @file{myprog} will be optimized at
7575 @option{-O3}.  Now, if the final binary is generated without
7576 @option{-flto}, then @file{myprog} will not be optimized.
7577
7578 When producing the final binary with @option{-flto}, GCC will only
7579 apply link-time optimizations to those files that contain bytecode.
7580 Therefore, you can mix and match object files and libraries with
7581 GIMPLE bytecodes and final object code.  GCC will automatically select
7582 which files to optimize in LTO mode and which files to link without
7583 further processing.
7584
7585 There are some code generation flags that GCC will preserve when
7586 generating bytecodes, as they need to be used during the final link
7587 stage.  Currently, the following options are saved into the GIMPLE
7588 bytecode files: @option{-fPIC}, @option{-fcommon} and all the
7589 @option{-m} target flags.
7590
7591 At link time, these options are read-in and reapplied.  Note that the
7592 current implementation makes no attempt at recognizing conflicting
7593 values for these options.  If two or more files have a conflicting
7594 value (e.g., one file is compiled with @option{-fPIC} and another
7595 isn't), the compiler will simply use the last value read from the
7596 bytecode files.  It is recommended, then, that all the files
7597 participating in the same link be compiled with the same options.
7598
7599 Another feature of LTO is that it is possible to apply interprocedural
7600 optimizations on files written in different languages.  This requires
7601 some support in the language front end.  Currently, the C, C++ and
7602 Fortran front ends are capable of emitting GIMPLE bytecodes, so
7603 something like this should work
7604
7605 @smallexample
7606 gcc -c -flto foo.c
7607 g++ -c -flto bar.cc
7608 gfortran -c -flto baz.f90
7609 g++ -o myprog -flto -O3 foo.o bar.o baz.o -lgfortran
7610 @end smallexample
7611
7612 Notice that the final link is done with @command{g++} to get the C++
7613 runtime libraries and @option{-lgfortran} is added to get the Fortran
7614 runtime libraries.  In general, when mixing languages in LTO mode, you
7615 should use the same link command used when mixing languages in a
7616 regular (non-LTO) compilation.  This means that if your build process
7617 was mixing languages before, all you need to add is @option{-flto} to
7618 all the compile and link commands.
7619
7620 If LTO encounters objects with C linkage declared with incompatible
7621 types in separate translation units to be linked together (undefined
7622 behavior according to ISO C99 6.2.7), a non-fatal diagnostic may be
7623 issued.  The behavior is still undefined at runtime.
7624
7625 If object files containing GIMPLE bytecode are stored in a library archive, say
7626 @file{libfoo.a}, it is possible to extract and use them in an LTO link if you
7627 are using a linker with linker plugin support.  To enable this feature, use
7628 the flag @option{-fuse-linker-plugin} at link-time:
7629
7630 @smallexample
7631 gcc -o myprog -O2 -flto -fuse-linker-plugin a.o b.o -lfoo
7632 @end smallexample
7633
7634 With the linker plugin enabled, the linker will extract the needed
7635 GIMPLE files from @file{libfoo.a} and pass them on to the running GCC
7636 to make them part of the aggregated GIMPLE image to be optimized.
7637
7638 If you are not using a linker with linker plugin support and/or do not 
7639 enable linker plugin then the objects inside @file{libfoo.a}
7640 will be extracted and linked as usual, but they will not participate
7641 in the LTO optimization process.
7642
7643 Link time optimizations do not require the presence of the whole program to
7644 operate.  If the program does not require any symbols to be exported, it is
7645 possible to combine @option{-flto} and with @option{-fwhole-program} to allow
7646 the interprocedural optimizers to use more aggressive assumptions which may
7647 lead to improved optimization opportunities. 
7648 Use of @option{-fwhole-program} is not needed when linker plugin is
7649 active (see @option{-fuse-linker-plugin}).
7650
7651 Regarding portability: the current implementation of LTO makes no
7652 attempt at generating bytecode that can be ported between different
7653 types of hosts.  The bytecode files are versioned and there is a
7654 strict version check, so bytecode files generated in one version of
7655 GCC will not work with an older/newer version of GCC.
7656
7657 Link time optimization does not play well with generating debugging
7658 information.  Combining @option{-flto} with
7659 @option{-g} is currently experimental and expected to produce wrong
7660 results.
7661
7662 If you specify the optional @var{n}, the optimization and code
7663 generation done at link time is executed in parallel using @var{n}
7664 parallel jobs by utilizing an installed @command{make} program.  The
7665 environment variable @env{MAKE} may be used to override the program
7666 used.  The default value for @var{n} is 1.
7667
7668 You can also specify @option{-flto=jobserver} to use GNU make's 
7669 job server mode to determine the number of parallel jobs. This 
7670 is useful when the Makefile calling GCC is already executing in parallel.
7671 The parent Makefile will need a @samp{+} prepended to the command recipe
7672 for this to work. This will likely only work if @env{MAKE} is 
7673 GNU make.
7674
7675 This option is disabled by default.
7676
7677 @item -flto-partition=@var{alg}
7678 @opindex flto-partition
7679 Specify the partitioning algorithm used by the link time optimizer.
7680 The value is either @code{1to1} to specify a partitioning mirroring
7681 the original source files or @code{balanced} to specify partitioning
7682 into equally sized chunks (whenever possible).  Specifying @code{none}
7683 as an algorithm disables partitioning and streaming completely. The
7684 default value is @code{balanced}.
7685
7686 @item -flto-compression-level=@var{n}
7687 This option specifies the level of compression used for intermediate
7688 language written to LTO object files, and is only meaningful in
7689 conjunction with LTO mode (@option{-flto}).  Valid
7690 values are 0 (no compression) to 9 (maximum compression).  Values
7691 outside this range are clamped to either 0 or 9.  If the option is not
7692 given, a default balanced compression setting is used.
7693
7694 @item -flto-report
7695 Prints a report with internal details on the workings of the link-time
7696 optimizer.  The contents of this report vary from version to version,
7697 it is meant to be useful to GCC developers when processing object
7698 files in LTO mode (via @option{-flto}).
7699
7700 Disabled by default.
7701
7702 @item -fuse-linker-plugin
7703 Enables the use of linker plugin during link time optimization.  This option
7704 relies on the linker plugin support in linker that is available in gold
7705 or in GNU ld 2.21 or newer.
7706
7707 This option enables the extraction of object files with GIMPLE bytecode out of
7708 library archives. This improves the quality of optimization by exposing more
7709 code the link time optimizer.  This information specify what symbols 
7710 can be accessed externally (by non-LTO object or during dynamic linking).
7711 Resulting code quality improvements on binaries (and shared libraries that do
7712 use hidden visibility) is similar to @code{-fwhole-program}.  See
7713 @option{-flto} for a description on the effect of this flag and how to use it.
7714
7715 Enabled by default when LTO support in GCC is enabled and GCC was compiled
7716 with a linker supporting plugins (GNU ld 2.21 or newer or gold).
7717
7718 @item -fcompare-elim
7719 @opindex fcompare-elim
7720 After register allocation and post-register allocation instruction splitting,
7721 identify arithmetic instructions that compute processor flags similar to a
7722 comparison operation based on that arithmetic.  If possible, eliminate the
7723 explicit comparison operation.
7724
7725 This pass only applies to certain targets that cannot explicitly represent
7726 the comparison operation before register allocation is complete.
7727
7728 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7729
7730 @item -fcprop-registers
7731 @opindex fcprop-registers
7732 After register allocation and post-register allocation instruction splitting,
7733 we perform a copy-propagation pass to try to reduce scheduling dependencies
7734 and occasionally eliminate the copy.
7735
7736 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7737
7738 @item -fprofile-correction
7739 @opindex fprofile-correction
7740 Profiles collected using an instrumented binary for multi-threaded programs may
7741 be inconsistent due to missed counter updates. When this option is specified,
7742 GCC will use heuristics to correct or smooth out such inconsistencies. By
7743 default, GCC will emit an error message when an inconsistent profile is detected.
7744
7745 @item -fprofile-dir=@var{path}
7746 @opindex fprofile-dir
7747
7748 Set the directory to search for the profile data files in to @var{path}.
7749 This option affects only the profile data generated by
7750 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
7751 and used by @option{-fprofile-use} and @option{-fbranch-probabilities}
7752 and its related options.
7753 By default, GCC will use the current directory as @var{path}, thus the
7754 profile data file will appear in the same directory as the object file.
7755
7756 @item -fprofile-generate
7757 @itemx -fprofile-generate=@var{path}
7758 @opindex fprofile-generate
7759
7760 Enable options usually used for instrumenting application to produce
7761 profile useful for later recompilation with profile feedback based
7762 optimization.  You must use @option{-fprofile-generate} both when
7763 compiling and when linking your program.
7764
7765 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
7766
7767 If @var{path} is specified, GCC will look at the @var{path} to find
7768 the profile feedback data files. See @option{-fprofile-dir}.
7769
7770 @item -fprofile-use
7771 @itemx -fprofile-use=@var{path}
7772 @opindex fprofile-use
7773 Enable profile feedback directed optimizations, and optimizations
7774 generally profitable only with profile feedback available.
7775
7776 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
7777 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
7778
7779 By default, GCC emits an error message if the feedback profiles do not
7780 match the source code.  This error can be turned into a warning by using
7781 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
7782 code.
7783
7784 If @var{path} is specified, GCC will look at the @var{path} to find
7785 the profile feedback data files. See @option{-fprofile-dir}.
7786 @end table
7787
7788 The following options control compiler behavior regarding floating
7789 point arithmetic.  These options trade off between speed and
7790 correctness.  All must be specifically enabled.
7791
7792 @table @gcctabopt
7793 @item -ffloat-store
7794 @opindex ffloat-store
7795 Do not store floating point variables in registers, and inhibit other
7796 options that might change whether a floating point value is taken from a
7797 register or memory.
7798
7799 @cindex floating point precision
7800 This option prevents undesirable excess precision on machines such as
7801 the 68000 where the floating registers (of the 68881) keep more
7802 precision than a @code{double} is supposed to have.  Similarly for the
7803 x86 architecture.  For most programs, the excess precision does only
7804 good, but a few programs rely on the precise definition of IEEE floating
7805 point.  Use @option{-ffloat-store} for such programs, after modifying
7806 them to store all pertinent intermediate computations into variables.
7807
7808 @item -fexcess-precision=@var{style}
7809 @opindex fexcess-precision
7810 This option allows further control over excess precision on machines
7811 where floating-point registers have more precision than the IEEE
7812 @code{float} and @code{double} types and the processor does not
7813 support operations rounding to those types.  By default,
7814 @option{-fexcess-precision=fast} is in effect; this means that
7815 operations are carried out in the precision of the registers and that
7816 it is unpredictable when rounding to the types specified in the source
7817 code takes place.  When compiling C, if
7818 @option{-fexcess-precision=standard} is specified then excess
7819 precision will follow the rules specified in ISO C99; in particular,
7820 both casts and assignments cause values to be rounded to their
7821 semantic types (whereas @option{-ffloat-store} only affects
7822 assignments).  This option is enabled by default for C if a strict
7823 conformance option such as @option{-std=c99} is used.
7824
7825 @opindex mfpmath
7826 @option{-fexcess-precision=standard} is not implemented for languages
7827 other than C, and has no effect if
7828 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
7829 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
7830 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
7831 semantics apply without excess precision, and in the latter, rounding
7832 is unpredictable.
7833
7834 @item -ffast-math
7835 @opindex ffast-math
7836 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
7837 @option{-ffinite-math-only}, @option{-fno-rounding-math},
7838 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
7839
7840 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
7841
7842 This option is not turned on by any @option{-O} option besides
7843 @option{-Ofast} since it can result in incorrect output for programs
7844 which depend on an exact implementation of IEEE or ISO rules/specifications
7845 for math functions. It may, however, yield faster code for programs
7846 that do not require the guarantees of these specifications.
7847
7848 @item -fno-math-errno
7849 @opindex fno-math-errno
7850 Do not set ERRNO after calling math functions that are executed
7851 with a single instruction, e.g., sqrt.  A program that relies on
7852 IEEE exceptions for math error handling may want to use this flag
7853 for speed while maintaining IEEE arithmetic compatibility.
7854
7855 This option is not turned on by any @option{-O} option since
7856 it can result in incorrect output for programs which depend on
7857 an exact implementation of IEEE or ISO rules/specifications for
7858 math functions. It may, however, yield faster code for programs
7859 that do not require the guarantees of these specifications.
7860
7861 The default is @option{-fmath-errno}.
7862
7863 On Darwin systems, the math library never sets @code{errno}.  There is
7864 therefore no reason for the compiler to consider the possibility that
7865 it might, and @option{-fno-math-errno} is the default.
7866
7867 @item -funsafe-math-optimizations
7868 @opindex funsafe-math-optimizations
7869
7870 Allow optimizations for floating-point arithmetic that (a) assume
7871 that arguments and results are valid and (b) may violate IEEE or
7872 ANSI standards.  When used at link-time, it may include libraries
7873 or startup files that change the default FPU control word or other
7874 similar optimizations.
7875
7876 This option is not turned on by any @option{-O} option since
7877 it can result in incorrect output for programs which depend on
7878 an exact implementation of IEEE or ISO rules/specifications for
7879 math functions. It may, however, yield faster code for programs
7880 that do not require the guarantees of these specifications.
7881 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
7882 @option{-fassociative-math} and @option{-freciprocal-math}.
7883
7884 The default is @option{-fno-unsafe-math-optimizations}.
7885
7886 @item -fassociative-math
7887 @opindex fassociative-math
7888
7889 Allow re-association of operands in series of floating-point operations.
7890 This violates the ISO C and C++ language standard by possibly changing
7891 computation result.  NOTE: re-ordering may change the sign of zero as
7892 well as ignore NaNs and inhibit or create underflow or overflow (and
7893 thus cannot be used on a code which relies on rounding behavior like
7894 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
7895 and thus may not be used when ordered comparisons are required.
7896 This option requires that both @option{-fno-signed-zeros} and
7897 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
7898 much sense with @option{-frounding-math}. For Fortran the option
7899 is automatically enabled when both @option{-fno-signed-zeros} and
7900 @option{-fno-trapping-math} are in effect.
7901
7902 The default is @option{-fno-associative-math}.
7903
7904 @item -freciprocal-math
7905 @opindex freciprocal-math
7906
7907 Allow the reciprocal of a value to be used instead of dividing by
7908 the value if this enables optimizations.  For example @code{x / y}
7909 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
7910 is subject to common subexpression elimination.  Note that this loses
7911 precision and increases the number of flops operating on the value.
7912
7913 The default is @option{-fno-reciprocal-math}.
7914
7915 @item -ffinite-math-only
7916 @opindex ffinite-math-only
7917 Allow optimizations for floating-point arithmetic that assume
7918 that arguments and results are not NaNs or +-Infs.
7919
7920 This option is not turned on by any @option{-O} option since
7921 it can result in incorrect output for programs which depend on
7922 an exact implementation of IEEE or ISO rules/specifications for
7923 math functions. It may, however, yield faster code for programs
7924 that do not require the guarantees of these specifications.
7925
7926 The default is @option{-fno-finite-math-only}.
7927
7928 @item -fno-signed-zeros
7929 @opindex fno-signed-zeros
7930 Allow optimizations for floating point arithmetic that ignore the
7931 signedness of zero.  IEEE arithmetic specifies the behavior of
7932 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
7933 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
7934 This option implies that the sign of a zero result isn't significant.
7935
7936 The default is @option{-fsigned-zeros}.
7937
7938 @item -fno-trapping-math
7939 @opindex fno-trapping-math
7940 Compile code assuming that floating-point operations cannot generate
7941 user-visible traps.  These traps include division by zero, overflow,
7942 underflow, inexact result and invalid operation.  This option requires
7943 that @option{-fno-signaling-nans} be in effect.  Setting this option may
7944 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
7945
7946 This option should never be turned on by any @option{-O} option since
7947 it can result in incorrect output for programs which depend on
7948 an exact implementation of IEEE or ISO rules/specifications for
7949 math functions.
7950
7951 The default is @option{-ftrapping-math}.
7952
7953 @item -frounding-math
7954 @opindex frounding-math
7955 Disable transformations and optimizations that assume default floating
7956 point rounding behavior.  This is round-to-zero for all floating point
7957 to integer conversions, and round-to-nearest for all other arithmetic
7958 truncations.  This option should be specified for programs that change
7959 the FP rounding mode dynamically, or that may be executed with a
7960 non-default rounding mode.  This option disables constant folding of
7961 floating point expressions at compile-time (which may be affected by
7962 rounding mode) and arithmetic transformations that are unsafe in the
7963 presence of sign-dependent rounding modes.
7964
7965 The default is @option{-fno-rounding-math}.
7966
7967 This option is experimental and does not currently guarantee to
7968 disable all GCC optimizations that are affected by rounding mode.
7969 Future versions of GCC may provide finer control of this setting
7970 using C99's @code{FENV_ACCESS} pragma.  This command line option
7971 will be used to specify the default state for @code{FENV_ACCESS}.
7972
7973 @item -fsignaling-nans
7974 @opindex fsignaling-nans
7975 Compile code assuming that IEEE signaling NaNs may generate user-visible
7976 traps during floating-point operations.  Setting this option disables
7977 optimizations that may change the number of exceptions visible with
7978 signaling NaNs.  This option implies @option{-ftrapping-math}.
7979
7980 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
7981 be defined.
7982
7983 The default is @option{-fno-signaling-nans}.
7984
7985 This option is experimental and does not currently guarantee to
7986 disable all GCC optimizations that affect signaling NaN behavior.
7987
7988 @item -fsingle-precision-constant
7989 @opindex fsingle-precision-constant
7990 Treat floating point constant as single precision constant instead of
7991 implicitly converting it to double precision constant.
7992
7993 @item -fcx-limited-range
7994 @opindex fcx-limited-range
7995 When enabled, this option states that a range reduction step is not
7996 needed when performing complex division.  Also, there is no checking
7997 whether the result of a complex multiplication or division is @code{NaN
7998 + I*NaN}, with an attempt to rescue the situation in that case.  The
7999 default is @option{-fno-cx-limited-range}, but is enabled by
8000 @option{-ffast-math}.
8001
8002 This option controls the default setting of the ISO C99
8003 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
8004 all languages.
8005
8006 @item -fcx-fortran-rules
8007 @opindex fcx-fortran-rules
8008 Complex multiplication and division follow Fortran rules.  Range
8009 reduction is done as part of complex division, but there is no checking
8010 whether the result of a complex multiplication or division is @code{NaN
8011 + I*NaN}, with an attempt to rescue the situation in that case.
8012
8013 The default is @option{-fno-cx-fortran-rules}.
8014
8015 @end table
8016
8017 The following options control optimizations that may improve
8018 performance, but are not enabled by any @option{-O} options.  This
8019 section includes experimental options that may produce broken code.
8020
8021 @table @gcctabopt
8022 @item -fbranch-probabilities
8023 @opindex fbranch-probabilities
8024 After running a program compiled with @option{-fprofile-arcs}
8025 (@pxref{Debugging Options,, Options for Debugging Your Program or
8026 @command{gcc}}), you can compile it a second time using
8027 @option{-fbranch-probabilities}, to improve optimizations based on
8028 the number of times each branch was taken.  When the program
8029 compiled with @option{-fprofile-arcs} exits it saves arc execution
8030 counts to a file called @file{@var{sourcename}.gcda} for each source
8031 file.  The information in this data file is very dependent on the
8032 structure of the generated code, so you must use the same source code
8033 and the same optimization options for both compilations.
8034
8035 With @option{-fbranch-probabilities}, GCC puts a
8036 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
8037 These can be used to improve optimization.  Currently, they are only
8038 used in one place: in @file{reorg.c}, instead of guessing which path a
8039 branch is most likely to take, the @samp{REG_BR_PROB} values are used to
8040 exactly determine which path is taken more often.
8041
8042 @item -fprofile-values
8043 @opindex fprofile-values
8044 If combined with @option{-fprofile-arcs}, it adds code so that some
8045 data about values of expressions in the program is gathered.
8046
8047 With @option{-fbranch-probabilities}, it reads back the data gathered
8048 from profiling values of expressions for usage in optimizations.
8049
8050 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
8051
8052 @item -fvpt
8053 @opindex fvpt
8054 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
8055 a code to gather information about values of expressions.
8056
8057 With @option{-fbranch-probabilities}, it reads back the data gathered
8058 and actually performs the optimizations based on them.
8059 Currently the optimizations include specialization of division operation
8060 using the knowledge about the value of the denominator.
8061
8062 @item -frename-registers
8063 @opindex frename-registers
8064 Attempt to avoid false dependencies in scheduled code by making use
8065 of registers left over after register allocation.  This optimization
8066 will most benefit processors with lots of registers.  Depending on the
8067 debug information format adopted by the target, however, it can
8068 make debugging impossible, since variables will no longer stay in
8069 a ``home register''.
8070
8071 Enabled by default with @option{-funroll-loops} and @option{-fpeel-loops}.
8072
8073 @item -ftracer
8074 @opindex ftracer
8075 Perform tail duplication to enlarge superblock size.  This transformation
8076 simplifies the control flow of the function allowing other optimizations to do
8077 better job.
8078
8079 Enabled with @option{-fprofile-use}.
8080
8081 @item -funroll-loops
8082 @opindex funroll-loops
8083 Unroll loops whose number of iterations can be determined at compile time or
8084 upon entry to the loop.  @option{-funroll-loops} implies
8085 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
8086 It also turns on complete loop peeling (i.e.@: complete removal of loops with
8087 small constant number of iterations).  This option makes code larger, and may
8088 or may not make it run faster.
8089
8090 Enabled with @option{-fprofile-use}.
8091
8092 @item -funroll-all-loops
8093 @opindex funroll-all-loops
8094 Unroll all loops, even if their number of iterations is uncertain when
8095 the loop is entered.  This usually makes programs run more slowly.
8096 @option{-funroll-all-loops} implies the same options as
8097 @option{-funroll-loops}.
8098
8099 @item -fpeel-loops
8100 @opindex fpeel-loops
8101 Peels the loops for that there is enough information that they do not
8102 roll much (from profile feedback).  It also turns on complete loop peeling
8103 (i.e.@: complete removal of loops with small constant number of iterations).
8104
8105 Enabled with @option{-fprofile-use}.
8106
8107 @item -fmove-loop-invariants
8108 @opindex fmove-loop-invariants
8109 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
8110 at level @option{-O1}
8111
8112 @item -funswitch-loops
8113 @opindex funswitch-loops
8114 Move branches with loop invariant conditions out of the loop, with duplicates
8115 of the loop on both branches (modified according to result of the condition).
8116
8117 @item -ffunction-sections
8118 @itemx -fdata-sections
8119 @opindex ffunction-sections
8120 @opindex fdata-sections
8121 Place each function or data item into its own section in the output
8122 file if the target supports arbitrary sections.  The name of the
8123 function or the name of the data item determines the section's name
8124 in the output file.
8125
8126 Use these options on systems where the linker can perform optimizations
8127 to improve locality of reference in the instruction space.  Most systems
8128 using the ELF object format and SPARC processors running Solaris 2 have
8129 linkers with such optimizations.  AIX may have these optimizations in
8130 the future.
8131
8132 Only use these options when there are significant benefits from doing
8133 so.  When you specify these options, the assembler and linker will
8134 create larger object and executable files and will also be slower.
8135 You will not be able to use @code{gprof} on all systems if you
8136 specify this option and you may have problems with debugging if
8137 you specify both this option and @option{-g}.
8138
8139 @item -fbranch-target-load-optimize
8140 @opindex fbranch-target-load-optimize
8141 Perform branch target register load optimization before prologue / epilogue
8142 threading.
8143 The use of target registers can typically be exposed only during reload,
8144 thus hoisting loads out of loops and doing inter-block scheduling needs
8145 a separate optimization pass.
8146
8147 @item -fbranch-target-load-optimize2
8148 @opindex fbranch-target-load-optimize2
8149 Perform branch target register load optimization after prologue / epilogue
8150 threading.
8151
8152 @item -fbtr-bb-exclusive
8153 @opindex fbtr-bb-exclusive
8154 When performing branch target register load optimization, don't reuse
8155 branch target registers in within any basic block.
8156
8157 @item -fstack-protector
8158 @opindex fstack-protector
8159 Emit extra code to check for buffer overflows, such as stack smashing
8160 attacks.  This is done by adding a guard variable to functions with
8161 vulnerable objects.  This includes functions that call alloca, and
8162 functions with buffers larger than 8 bytes.  The guards are initialized
8163 when a function is entered and then checked when the function exits.
8164 If a guard check fails, an error message is printed and the program exits.
8165
8166 @item -fstack-protector-all
8167 @opindex fstack-protector-all
8168 Like @option{-fstack-protector} except that all functions are protected.
8169
8170 @item -fsection-anchors
8171 @opindex fsection-anchors
8172 Try to reduce the number of symbolic address calculations by using
8173 shared ``anchor'' symbols to address nearby objects.  This transformation
8174 can help to reduce the number of GOT entries and GOT accesses on some
8175 targets.
8176
8177 For example, the implementation of the following function @code{foo}:
8178
8179 @smallexample
8180 static int a, b, c;
8181 int foo (void) @{ return a + b + c; @}
8182 @end smallexample
8183
8184 would usually calculate the addresses of all three variables, but if you
8185 compile it with @option{-fsection-anchors}, it will access the variables
8186 from a common anchor point instead.  The effect is similar to the
8187 following pseudocode (which isn't valid C):
8188
8189 @smallexample
8190 int foo (void)
8191 @{
8192   register int *xr = &x;
8193   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
8194 @}
8195 @end smallexample
8196
8197 Not all targets support this option.
8198
8199 @item --param @var{name}=@var{value}
8200 @opindex param
8201 In some places, GCC uses various constants to control the amount of
8202 optimization that is done.  For example, GCC will not inline functions
8203 that contain more that a certain number of instructions.  You can
8204 control some of these constants on the command-line using the
8205 @option{--param} option.
8206
8207 The names of specific parameters, and the meaning of the values, are
8208 tied to the internals of the compiler, and are subject to change
8209 without notice in future releases.
8210
8211 In each case, the @var{value} is an integer.  The allowable choices for
8212 @var{name} are given in the following table:
8213
8214 @table @gcctabopt
8215 @item predictable-branch-outcome
8216 When branch is predicted to be taken with probability lower than this threshold
8217 (in percent), then it is considered well predictable. The default is 10.
8218
8219 @item max-crossjump-edges
8220 The maximum number of incoming edges to consider for crossjumping.
8221 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
8222 the number of edges incoming to each block.  Increasing values mean
8223 more aggressive optimization, making the compile time increase with
8224 probably small improvement in executable size.
8225
8226 @item min-crossjump-insns
8227 The minimum number of instructions which must be matched at the end
8228 of two blocks before crossjumping will be performed on them.  This
8229 value is ignored in the case where all instructions in the block being
8230 crossjumped from are matched.  The default value is 5.
8231
8232 @item max-grow-copy-bb-insns
8233 The maximum code size expansion factor when copying basic blocks
8234 instead of jumping.  The expansion is relative to a jump instruction.
8235 The default value is 8.
8236
8237 @item max-goto-duplication-insns
8238 The maximum number of instructions to duplicate to a block that jumps
8239 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
8240 passes, GCC factors computed gotos early in the compilation process,
8241 and unfactors them as late as possible.  Only computed jumps at the
8242 end of a basic blocks with no more than max-goto-duplication-insns are
8243 unfactored.  The default value is 8.
8244
8245 @item max-delay-slot-insn-search
8246 The maximum number of instructions to consider when looking for an
8247 instruction to fill a delay slot.  If more than this arbitrary number of
8248 instructions is searched, the time savings from filling the delay slot
8249 will be minimal so stop searching.  Increasing values mean more
8250 aggressive optimization, making the compile time increase with probably
8251 small improvement in executable run time.
8252
8253 @item max-delay-slot-live-search
8254 When trying to fill delay slots, the maximum number of instructions to
8255 consider when searching for a block with valid live register
8256 information.  Increasing this arbitrarily chosen value means more
8257 aggressive optimization, increasing the compile time.  This parameter
8258 should be removed when the delay slot code is rewritten to maintain the
8259 control-flow graph.
8260
8261 @item max-gcse-memory
8262 The approximate maximum amount of memory that will be allocated in
8263 order to perform the global common subexpression elimination
8264 optimization.  If more memory than specified is required, the
8265 optimization will not be done.
8266
8267 @item max-gcse-insertion-ratio
8268 If the ratio of expression insertions to deletions is larger than this value
8269 for any expression, then RTL PRE will insert or remove the expression and thus
8270 leave partially redundant computations in the instruction stream.  The default value is 20.
8271
8272 @item max-pending-list-length
8273 The maximum number of pending dependencies scheduling will allow
8274 before flushing the current state and starting over.  Large functions
8275 with few branches or calls can create excessively large lists which
8276 needlessly consume memory and resources.
8277
8278 @item max-inline-insns-single
8279 Several parameters control the tree inliner used in gcc.
8280 This number sets the maximum number of instructions (counted in GCC's
8281 internal representation) in a single function that the tree inliner
8282 will consider for inlining.  This only affects functions declared
8283 inline and methods implemented in a class declaration (C++).
8284 The default value is 400.
8285
8286 @item max-inline-insns-auto
8287 When you use @option{-finline-functions} (included in @option{-O3}),
8288 a lot of functions that would otherwise not be considered for inlining
8289 by the compiler will be investigated.  To those functions, a different
8290 (more restrictive) limit compared to functions declared inline can
8291 be applied.
8292 The default value is 40.
8293
8294 @item large-function-insns
8295 The limit specifying really large functions.  For functions larger than this
8296 limit after inlining, inlining is constrained by
8297 @option{--param large-function-growth}.  This parameter is useful primarily
8298 to avoid extreme compilation time caused by non-linear algorithms used by the
8299 backend.
8300 The default value is 2700.
8301
8302 @item large-function-growth
8303 Specifies maximal growth of large function caused by inlining in percents.
8304 The default value is 100 which limits large function growth to 2.0 times
8305 the original size.
8306
8307 @item large-unit-insns
8308 The limit specifying large translation unit.  Growth caused by inlining of
8309 units larger than this limit is limited by @option{--param inline-unit-growth}.
8310 For small units this might be too tight (consider unit consisting of function A
8311 that is inline and B that just calls A three time.  If B is small relative to
8312 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
8313 large units consisting of small inlineable functions however the overall unit
8314 growth limit is needed to avoid exponential explosion of code size.  Thus for
8315 smaller units, the size is increased to @option{--param large-unit-insns}
8316 before applying @option{--param inline-unit-growth}.  The default is 10000
8317
8318 @item inline-unit-growth
8319 Specifies maximal overall growth of the compilation unit caused by inlining.
8320 The default value is 30 which limits unit growth to 1.3 times the original
8321 size.
8322
8323 @item ipcp-unit-growth
8324 Specifies maximal overall growth of the compilation unit caused by
8325 interprocedural constant propagation.  The default value is 10 which limits
8326 unit growth to 1.1 times the original size.
8327
8328 @item large-stack-frame
8329 The limit specifying large stack frames.  While inlining the algorithm is trying
8330 to not grow past this limit too much.  Default value is 256 bytes.
8331
8332 @item large-stack-frame-growth
8333 Specifies maximal growth of large stack frames caused by inlining in percents.
8334 The default value is 1000 which limits large stack frame growth to 11 times
8335 the original size.
8336
8337 @item max-inline-insns-recursive
8338 @itemx max-inline-insns-recursive-auto
8339 Specifies maximum number of instructions out-of-line copy of self recursive inline
8340 function can grow into by performing recursive inlining.
8341
8342 For functions declared inline @option{--param max-inline-insns-recursive} is
8343 taken into account.  For function not declared inline, recursive inlining
8344 happens only when @option{-finline-functions} (included in @option{-O3}) is
8345 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
8346 default value is 450.
8347
8348 @item max-inline-recursive-depth
8349 @itemx max-inline-recursive-depth-auto
8350 Specifies maximum recursion depth used by the recursive inlining.
8351
8352 For functions declared inline @option{--param max-inline-recursive-depth} is
8353 taken into account.  For function not declared inline, recursive inlining
8354 happens only when @option{-finline-functions} (included in @option{-O3}) is
8355 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
8356 default value is 8.
8357
8358 @item min-inline-recursive-probability
8359 Recursive inlining is profitable only for function having deep recursion
8360 in average and can hurt for function having little recursion depth by
8361 increasing the prologue size or complexity of function body to other
8362 optimizers.
8363
8364 When profile feedback is available (see @option{-fprofile-generate}) the actual
8365 recursion depth can be guessed from probability that function will recurse via
8366 given call expression.  This parameter limits inlining only to call expression
8367 whose probability exceeds given threshold (in percents).  The default value is
8368 10.
8369
8370 @item early-inlining-insns
8371 Specify growth that early inliner can make.  In effect it increases amount of
8372 inlining for code having large abstraction penalty.  The default value is 10.
8373
8374 @item max-early-inliner-iterations
8375 @itemx max-early-inliner-iterations
8376 Limit of iterations of early inliner.  This basically bounds number of nested
8377 indirect calls early inliner can resolve.  Deeper chains are still handled by
8378 late inlining.
8379
8380 @item comdat-sharing-probability
8381 @itemx comdat-sharing-probability
8382 Probability (in percent) that C++ inline function with comdat visibility
8383 will be shared across multiple compilation units.  The default value is 20.
8384
8385 @item min-vect-loop-bound
8386 The minimum number of iterations under which a loop will not get vectorized
8387 when @option{-ftree-vectorize} is used.  The number of iterations after
8388 vectorization needs to be greater than the value specified by this option
8389 to allow vectorization.  The default value is 0.
8390
8391 @item gcse-cost-distance-ratio
8392 Scaling factor in calculation of maximum distance an expression
8393 can be moved by GCSE optimizations.  This is currently supported only in the
8394 code hoisting pass.  The bigger the ratio, the more aggressive code hoisting
8395 will be with simple expressions, i.e., the expressions which have cost
8396 less than @option{gcse-unrestricted-cost}.  Specifying 0 will disable
8397 hoisting of simple expressions.  The default value is 10.
8398
8399 @item gcse-unrestricted-cost
8400 Cost, roughly measured as the cost of a single typical machine
8401 instruction, at which GCSE optimizations will not constrain
8402 the distance an expression can travel.  This is currently
8403 supported only in the code hoisting pass.  The lesser the cost,
8404 the more aggressive code hoisting will be.  Specifying 0 will
8405 allow all expressions to travel unrestricted distances.
8406 The default value is 3.
8407
8408 @item max-hoist-depth
8409 The depth of search in the dominator tree for expressions to hoist.
8410 This is used to avoid quadratic behavior in hoisting algorithm.
8411 The value of 0 will avoid limiting the search, but may slow down compilation
8412 of huge functions.  The default value is 30.
8413
8414 @item max-unrolled-insns
8415 The maximum number of instructions that a loop should have if that loop
8416 is unrolled, and if the loop is unrolled, it determines how many times
8417 the loop code is unrolled.
8418
8419 @item max-average-unrolled-insns
8420 The maximum number of instructions biased by probabilities of their execution
8421 that a loop should have if that loop is unrolled, and if the loop is unrolled,
8422 it determines how many times the loop code is unrolled.
8423
8424 @item max-unroll-times
8425 The maximum number of unrollings of a single loop.
8426
8427 @item max-peeled-insns
8428 The maximum number of instructions that a loop should have if that loop
8429 is peeled, and if the loop is peeled, it determines how many times
8430 the loop code is peeled.
8431
8432 @item max-peel-times
8433 The maximum number of peelings of a single loop.
8434
8435 @item max-completely-peeled-insns
8436 The maximum number of insns of a completely peeled loop.
8437
8438 @item max-completely-peel-times
8439 The maximum number of iterations of a loop to be suitable for complete peeling.
8440
8441 @item max-completely-peel-loop-nest-depth
8442 The maximum depth of a loop nest suitable for complete peeling.
8443
8444 @item max-unswitch-insns
8445 The maximum number of insns of an unswitched loop.
8446
8447 @item max-unswitch-level
8448 The maximum number of branches unswitched in a single loop.
8449
8450 @item lim-expensive
8451 The minimum cost of an expensive expression in the loop invariant motion.
8452
8453 @item iv-consider-all-candidates-bound
8454 Bound on number of candidates for induction variables below that
8455 all candidates are considered for each use in induction variable
8456 optimizations.  Only the most relevant candidates are considered
8457 if there are more candidates, to avoid quadratic time complexity.
8458
8459 @item iv-max-considered-uses
8460 The induction variable optimizations give up on loops that contain more
8461 induction variable uses.
8462
8463 @item iv-always-prune-cand-set-bound
8464 If number of candidates in the set is smaller than this value,
8465 we always try to remove unnecessary ivs from the set during its
8466 optimization when a new iv is added to the set.
8467
8468 @item scev-max-expr-size
8469 Bound on size of expressions used in the scalar evolutions analyzer.
8470 Large expressions slow the analyzer.
8471
8472 @item scev-max-expr-complexity
8473 Bound on the complexity of the expressions in the scalar evolutions analyzer.
8474 Complex expressions slow the analyzer.
8475
8476 @item omega-max-vars
8477 The maximum number of variables in an Omega constraint system.
8478 The default value is 128.
8479
8480 @item omega-max-geqs
8481 The maximum number of inequalities in an Omega constraint system.
8482 The default value is 256.
8483
8484 @item omega-max-eqs
8485 The maximum number of equalities in an Omega constraint system.
8486 The default value is 128.
8487
8488 @item omega-max-wild-cards
8489 The maximum number of wildcard variables that the Omega solver will
8490 be able to insert.  The default value is 18.
8491
8492 @item omega-hash-table-size
8493 The size of the hash table in the Omega solver.  The default value is
8494 550.
8495
8496 @item omega-max-keys
8497 The maximal number of keys used by the Omega solver.  The default
8498 value is 500.
8499
8500 @item omega-eliminate-redundant-constraints
8501 When set to 1, use expensive methods to eliminate all redundant
8502 constraints.  The default value is 0.
8503
8504 @item vect-max-version-for-alignment-checks
8505 The maximum number of runtime checks that can be performed when
8506 doing loop versioning for alignment in the vectorizer.  See option
8507 ftree-vect-loop-version for more information.
8508
8509 @item vect-max-version-for-alias-checks
8510 The maximum number of runtime checks that can be performed when
8511 doing loop versioning for alias in the vectorizer.  See option
8512 ftree-vect-loop-version for more information.
8513
8514 @item max-iterations-to-track
8515
8516 The maximum number of iterations of a loop the brute force algorithm
8517 for analysis of # of iterations of the loop tries to evaluate.
8518
8519 @item hot-bb-count-fraction
8520 Select fraction of the maximal count of repetitions of basic block in program
8521 given basic block needs to have to be considered hot.
8522
8523 @item hot-bb-frequency-fraction
8524 Select fraction of the entry block frequency of executions of basic block in
8525 function given basic block needs to have to be considered hot.
8526
8527 @item max-predicted-iterations
8528 The maximum number of loop iterations we predict statically.  This is useful
8529 in cases where function contain single loop with known bound and other loop
8530 with unknown.  We predict the known number of iterations correctly, while
8531 the unknown number of iterations average to roughly 10.  This means that the
8532 loop without bounds would appear artificially cold relative to the other one.
8533
8534 @item align-threshold
8535
8536 Select fraction of the maximal frequency of executions of basic block in
8537 function given basic block will get aligned.
8538
8539 @item align-loop-iterations
8540
8541 A loop expected to iterate at lest the selected number of iterations will get
8542 aligned.
8543
8544 @item tracer-dynamic-coverage
8545 @itemx tracer-dynamic-coverage-feedback
8546
8547 This value is used to limit superblock formation once the given percentage of
8548 executed instructions is covered.  This limits unnecessary code size
8549 expansion.
8550
8551 The @option{tracer-dynamic-coverage-feedback} is used only when profile
8552 feedback is available.  The real profiles (as opposed to statically estimated
8553 ones) are much less balanced allowing the threshold to be larger value.
8554
8555 @item tracer-max-code-growth
8556 Stop tail duplication once code growth has reached given percentage.  This is
8557 rather hokey argument, as most of the duplicates will be eliminated later in
8558 cross jumping, so it may be set to much higher values than is the desired code
8559 growth.
8560
8561 @item tracer-min-branch-ratio
8562
8563 Stop reverse growth when the reverse probability of best edge is less than this
8564 threshold (in percent).
8565
8566 @item tracer-min-branch-ratio
8567 @itemx tracer-min-branch-ratio-feedback
8568
8569 Stop forward growth if the best edge do have probability lower than this
8570 threshold.
8571
8572 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
8573 compilation for profile feedback and one for compilation without.  The value
8574 for compilation with profile feedback needs to be more conservative (higher) in
8575 order to make tracer effective.
8576
8577 @item max-cse-path-length
8578
8579 Maximum number of basic blocks on path that cse considers.  The default is 10.
8580
8581 @item max-cse-insns
8582 The maximum instructions CSE process before flushing. The default is 1000.
8583
8584 @item ggc-min-expand
8585
8586 GCC uses a garbage collector to manage its own memory allocation.  This
8587 parameter specifies the minimum percentage by which the garbage
8588 collector's heap should be allowed to expand between collections.
8589 Tuning this may improve compilation speed; it has no effect on code
8590 generation.
8591
8592 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
8593 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
8594 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
8595 GCC is not able to calculate RAM on a particular platform, the lower
8596 bound of 30% is used.  Setting this parameter and
8597 @option{ggc-min-heapsize} to zero causes a full collection to occur at
8598 every opportunity.  This is extremely slow, but can be useful for
8599 debugging.
8600
8601 @item ggc-min-heapsize
8602
8603 Minimum size of the garbage collector's heap before it begins bothering
8604 to collect garbage.  The first collection occurs after the heap expands
8605 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
8606 tuning this may improve compilation speed, and has no effect on code
8607 generation.
8608
8609 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
8610 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
8611 with a lower bound of 4096 (four megabytes) and an upper bound of
8612 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
8613 particular platform, the lower bound is used.  Setting this parameter
8614 very large effectively disables garbage collection.  Setting this
8615 parameter and @option{ggc-min-expand} to zero causes a full collection
8616 to occur at every opportunity.
8617
8618 @item max-reload-search-insns
8619 The maximum number of instruction reload should look backward for equivalent
8620 register.  Increasing values mean more aggressive optimization, making the
8621 compile time increase with probably slightly better performance.  The default
8622 value is 100.
8623
8624 @item max-cselib-memory-locations
8625 The maximum number of memory locations cselib should take into account.
8626 Increasing values mean more aggressive optimization, making the compile time
8627 increase with probably slightly better performance.  The default value is 500.
8628
8629 @item reorder-blocks-duplicate
8630 @itemx reorder-blocks-duplicate-feedback
8631
8632 Used by basic block reordering pass to decide whether to use unconditional
8633 branch or duplicate the code on its destination.  Code is duplicated when its
8634 estimated size is smaller than this value multiplied by the estimated size of
8635 unconditional jump in the hot spots of the program.
8636
8637 The @option{reorder-block-duplicate-feedback} is used only when profile
8638 feedback is available and may be set to higher values than
8639 @option{reorder-block-duplicate} since information about the hot spots is more
8640 accurate.
8641
8642 @item max-sched-ready-insns
8643 The maximum number of instructions ready to be issued the scheduler should
8644 consider at any given time during the first scheduling pass.  Increasing
8645 values mean more thorough searches, making the compilation time increase
8646 with probably little benefit.  The default value is 100.
8647
8648 @item max-sched-region-blocks
8649 The maximum number of blocks in a region to be considered for
8650 interblock scheduling.  The default value is 10.
8651
8652 @item max-pipeline-region-blocks
8653 The maximum number of blocks in a region to be considered for
8654 pipelining in the selective scheduler.  The default value is 15.
8655
8656 @item max-sched-region-insns
8657 The maximum number of insns in a region to be considered for
8658 interblock scheduling.  The default value is 100.
8659
8660 @item max-pipeline-region-insns
8661 The maximum number of insns in a region to be considered for
8662 pipelining in the selective scheduler.  The default value is 200.
8663
8664 @item min-spec-prob
8665 The minimum probability (in percents) of reaching a source block
8666 for interblock speculative scheduling.  The default value is 40.
8667
8668 @item max-sched-extend-regions-iters
8669 The maximum number of iterations through CFG to extend regions.
8670 0 - disable region extension,
8671 N - do at most N iterations.
8672 The default value is 0.
8673
8674 @item max-sched-insn-conflict-delay
8675 The maximum conflict delay for an insn to be considered for speculative motion.
8676 The default value is 3.
8677
8678 @item sched-spec-prob-cutoff
8679 The minimal probability of speculation success (in percents), so that
8680 speculative insn will be scheduled.
8681 The default value is 40.
8682
8683 @item sched-mem-true-dep-cost
8684 Minimal distance (in CPU cycles) between store and load targeting same
8685 memory locations.  The default value is 1.
8686
8687 @item selsched-max-lookahead
8688 The maximum size of the lookahead window of selective scheduling.  It is a
8689 depth of search for available instructions.
8690 The default value is 50.
8691
8692 @item selsched-max-sched-times
8693 The maximum number of times that an instruction will be scheduled during
8694 selective scheduling.  This is the limit on the number of iterations
8695 through which the instruction may be pipelined.  The default value is 2.
8696
8697 @item selsched-max-insns-to-rename
8698 The maximum number of best instructions in the ready list that are considered
8699 for renaming in the selective scheduler.  The default value is 2.
8700
8701 @item sms-min-sc
8702 The minimum value of stage count that swing modulo scheduler will
8703 generate.  The default value is 2.
8704
8705 @item max-last-value-rtl
8706 The maximum size measured as number of RTLs that can be recorded in an expression
8707 in combiner for a pseudo register as last known value of that register.  The default
8708 is 10000.
8709
8710 @item integer-share-limit
8711 Small integer constants can use a shared data structure, reducing the
8712 compiler's memory usage and increasing its speed.  This sets the maximum
8713 value of a shared integer constant.  The default value is 256.
8714
8715 @item min-virtual-mappings
8716 Specifies the minimum number of virtual mappings in the incremental
8717 SSA updater that should be registered to trigger the virtual mappings
8718 heuristic defined by virtual-mappings-ratio.  The default value is
8719 100.
8720
8721 @item virtual-mappings-ratio
8722 If the number of virtual mappings is virtual-mappings-ratio bigger
8723 than the number of virtual symbols to be updated, then the incremental
8724 SSA updater switches to a full update for those symbols.  The default
8725 ratio is 3.
8726
8727 @item ssp-buffer-size
8728 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
8729 protection when @option{-fstack-protection} is used.
8730
8731 @item max-jump-thread-duplication-stmts
8732 Maximum number of statements allowed in a block that needs to be
8733 duplicated when threading jumps.
8734
8735 @item max-fields-for-field-sensitive
8736 Maximum number of fields in a structure we will treat in
8737 a field sensitive manner during pointer analysis.  The default is zero
8738 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
8739
8740 @item prefetch-latency
8741 Estimate on average number of instructions that are executed before
8742 prefetch finishes.  The distance we prefetch ahead is proportional
8743 to this constant.  Increasing this number may also lead to less
8744 streams being prefetched (see @option{simultaneous-prefetches}).
8745
8746 @item simultaneous-prefetches
8747 Maximum number of prefetches that can run at the same time.
8748
8749 @item l1-cache-line-size
8750 The size of cache line in L1 cache, in bytes.
8751
8752 @item l1-cache-size
8753 The size of L1 cache, in kilobytes.
8754
8755 @item l2-cache-size
8756 The size of L2 cache, in kilobytes.
8757
8758 @item min-insn-to-prefetch-ratio
8759 The minimum ratio between the number of instructions and the
8760 number of prefetches to enable prefetching in a loop.
8761
8762 @item prefetch-min-insn-to-mem-ratio
8763 The minimum ratio between the number of instructions and the
8764 number of memory references to enable prefetching in a loop.
8765
8766 @item use-canonical-types
8767 Whether the compiler should use the ``canonical'' type system.  By
8768 default, this should always be 1, which uses a more efficient internal
8769 mechanism for comparing types in C++ and Objective-C++.  However, if
8770 bugs in the canonical type system are causing compilation failures,
8771 set this value to 0 to disable canonical types.
8772
8773 @item switch-conversion-max-branch-ratio
8774 Switch initialization conversion will refuse to create arrays that are
8775 bigger than @option{switch-conversion-max-branch-ratio} times the number of
8776 branches in the switch.
8777
8778 @item max-partial-antic-length
8779 Maximum length of the partial antic set computed during the tree
8780 partial redundancy elimination optimization (@option{-ftree-pre}) when
8781 optimizing at @option{-O3} and above.  For some sorts of source code
8782 the enhanced partial redundancy elimination optimization can run away,
8783 consuming all of the memory available on the host machine.  This
8784 parameter sets a limit on the length of the sets that are computed,
8785 which prevents the runaway behavior.  Setting a value of 0 for
8786 this parameter will allow an unlimited set length.
8787
8788 @item sccvn-max-scc-size
8789 Maximum size of a strongly connected component (SCC) during SCCVN
8790 processing.  If this limit is hit, SCCVN processing for the whole
8791 function will not be done and optimizations depending on it will
8792 be disabled.  The default maximum SCC size is 10000.
8793
8794 @item ira-max-loops-num
8795 IRA uses a regional register allocation by default.  If a function
8796 contains loops more than number given by the parameter, only at most
8797 given number of the most frequently executed loops will form regions
8798 for the regional register allocation.  The default value of the
8799 parameter is 100.
8800
8801 @item ira-max-conflict-table-size
8802 Although IRA uses a sophisticated algorithm of compression conflict
8803 table, the table can be still big for huge functions.  If the conflict
8804 table for a function could be more than size in MB given by the
8805 parameter, the conflict table is not built and faster, simpler, and
8806 lower quality register allocation algorithm will be used.  The
8807 algorithm do not use pseudo-register conflicts.  The default value of
8808 the parameter is 2000.
8809
8810 @item ira-loop-reserved-regs
8811 IRA can be used to evaluate more accurate register pressure in loops
8812 for decision to move loop invariants (see @option{-O3}).  The number
8813 of available registers reserved for some other purposes is described
8814 by this parameter.  The default value of the parameter is 2 which is
8815 minimal number of registers needed for execution of typical
8816 instruction.  This value is the best found from numerous experiments.
8817
8818 @item loop-invariant-max-bbs-in-loop
8819 Loop invariant motion can be very expensive, both in compile time and
8820 in amount of needed compile time memory, with very large loops.  Loops
8821 with more basic blocks than this parameter won't have loop invariant
8822 motion optimization performed on them.  The default value of the
8823 parameter is 1000 for -O1 and 10000 for -O2 and above.
8824
8825 @item max-vartrack-size
8826 Sets a maximum number of hash table slots to use during variable
8827 tracking dataflow analysis of any function.  If this limit is exceeded
8828 with variable tracking at assignments enabled, analysis for that
8829 function is retried without it, after removing all debug insns from
8830 the function.  If the limit is exceeded even without debug insns, var
8831 tracking analysis is completely disabled for the function.  Setting
8832 the parameter to zero makes it unlimited.
8833
8834 @item min-nondebug-insn-uid
8835 Use uids starting at this parameter for nondebug insns.  The range below
8836 the parameter is reserved exclusively for debug insns created by
8837 @option{-fvar-tracking-assignments}, but debug insns may get
8838 (non-overlapping) uids above it if the reserved range is exhausted.
8839
8840 @item ipa-sra-ptr-growth-factor
8841 IPA-SRA will replace a pointer to an aggregate with one or more new
8842 parameters only when their cumulative size is less or equal to
8843 @option{ipa-sra-ptr-growth-factor} times the size of the original
8844 pointer parameter.
8845
8846 @item graphite-max-nb-scop-params
8847 To avoid exponential effects in the Graphite loop transforms, the
8848 number of parameters in a Static Control Part (SCoP) is bounded.  The
8849 default value is 10 parameters.  A variable whose value is unknown at
8850 compile time and defined outside a SCoP is a parameter of the SCoP.
8851
8852 @item graphite-max-bbs-per-function
8853 To avoid exponential effects in the detection of SCoPs, the size of
8854 the functions analyzed by Graphite is bounded.  The default value is
8855 100 basic blocks.
8856
8857 @item loop-block-tile-size
8858 Loop blocking or strip mining transforms, enabled with
8859 @option{-floop-block} or @option{-floop-strip-mine}, strip mine each
8860 loop in the loop nest by a given number of iterations.  The strip
8861 length can be changed using the @option{loop-block-tile-size}
8862 parameter.  The default value is 51 iterations.
8863
8864 @item devirt-type-list-size
8865 IPA-CP attempts to track all possible types passed to a function's
8866 parameter in order to perform devirtualization.
8867 @option{devirt-type-list-size} is the maximum number of types it
8868 stores per a single formal parameter of a function.
8869
8870 @item lto-partitions
8871 Specify desired number of partitions produced during WHOPR compilation.
8872 The number of partitions should exceed the number of CPUs used for compilation.
8873 The default value is 32.
8874
8875 @item lto-minpartition
8876 Size of minimal partition for WHOPR (in estimated instructions).
8877 This prevents expenses of splitting very small programs into too many
8878 partitions.
8879
8880 @item cxx-max-namespaces-for-diagnostic-help
8881 The maximum number of namespaces to consult for suggestions when C++
8882 name lookup fails for an identifier.  The default is 1000.
8883
8884 @item max-stores-to-sink
8885 The maximum number of conditional stores paires that can be sunk.  Set to 0
8886 if either vectorization (@option{-ftree-vectorize}) or if-conversion
8887 (@option{-ftree-loop-if-convert}) is disabled.  The default is 2.
8888
8889 @end table
8890 @end table
8891
8892 @node Preprocessor Options
8893 @section Options Controlling the Preprocessor
8894 @cindex preprocessor options
8895 @cindex options, preprocessor
8896
8897 These options control the C preprocessor, which is run on each C source
8898 file before actual compilation.
8899
8900 If you use the @option{-E} option, nothing is done except preprocessing.
8901 Some of these options make sense only together with @option{-E} because
8902 they cause the preprocessor output to be unsuitable for actual
8903 compilation.
8904
8905 @table @gcctabopt
8906 @item -Wp,@var{option}
8907 @opindex Wp
8908 You can use @option{-Wp,@var{option}} to bypass the compiler driver
8909 and pass @var{option} directly through to the preprocessor.  If
8910 @var{option} contains commas, it is split into multiple options at the
8911 commas.  However, many options are modified, translated or interpreted
8912 by the compiler driver before being passed to the preprocessor, and
8913 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
8914 interface is undocumented and subject to change, so whenever possible
8915 you should avoid using @option{-Wp} and let the driver handle the
8916 options instead.
8917
8918 @item -Xpreprocessor @var{option}
8919 @opindex Xpreprocessor
8920 Pass @var{option} as an option to the preprocessor.  You can use this to
8921 supply system-specific preprocessor options which GCC does not know how to
8922 recognize.
8923
8924 If you want to pass an option that takes an argument, you must use
8925 @option{-Xpreprocessor} twice, once for the option and once for the argument.
8926 @end table
8927
8928 @include cppopts.texi
8929
8930 @node Assembler Options
8931 @section Passing Options to the Assembler
8932
8933 @c prevent bad page break with this line
8934 You can pass options to the assembler.
8935
8936 @table @gcctabopt
8937 @item -Wa,@var{option}
8938 @opindex Wa
8939 Pass @var{option} as an option to the assembler.  If @var{option}
8940 contains commas, it is split into multiple options at the commas.
8941
8942 @item -Xassembler @var{option}
8943 @opindex Xassembler
8944 Pass @var{option} as an option to the assembler.  You can use this to
8945 supply system-specific assembler options which GCC does not know how to
8946 recognize.
8947
8948 If you want to pass an option that takes an argument, you must use
8949 @option{-Xassembler} twice, once for the option and once for the argument.
8950
8951 @end table
8952
8953 @node Link Options
8954 @section Options for Linking
8955 @cindex link options
8956 @cindex options, linking
8957
8958 These options come into play when the compiler links object files into
8959 an executable output file.  They are meaningless if the compiler is
8960 not doing a link step.
8961
8962 @table @gcctabopt
8963 @cindex file names
8964 @item @var{object-file-name}
8965 A file name that does not end in a special recognized suffix is
8966 considered to name an object file or library.  (Object files are
8967 distinguished from libraries by the linker according to the file
8968 contents.)  If linking is done, these object files are used as input
8969 to the linker.
8970
8971 @item -c
8972 @itemx -S
8973 @itemx -E
8974 @opindex c
8975 @opindex S
8976 @opindex E
8977 If any of these options is used, then the linker is not run, and
8978 object file names should not be used as arguments.  @xref{Overall
8979 Options}.
8980
8981 @cindex Libraries
8982 @item -l@var{library}
8983 @itemx -l @var{library}
8984 @opindex l
8985 Search the library named @var{library} when linking.  (The second
8986 alternative with the library as a separate argument is only for
8987 POSIX compliance and is not recommended.)
8988
8989 It makes a difference where in the command you write this option; the
8990 linker searches and processes libraries and object files in the order they
8991 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
8992 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
8993 to functions in @samp{z}, those functions may not be loaded.
8994
8995 The linker searches a standard list of directories for the library,
8996 which is actually a file named @file{lib@var{library}.a}.  The linker
8997 then uses this file as if it had been specified precisely by name.
8998
8999 The directories searched include several standard system directories
9000 plus any that you specify with @option{-L}.
9001
9002 Normally the files found this way are library files---archive files
9003 whose members are object files.  The linker handles an archive file by
9004 scanning through it for members which define symbols that have so far
9005 been referenced but not defined.  But if the file that is found is an
9006 ordinary object file, it is linked in the usual fashion.  The only
9007 difference between using an @option{-l} option and specifying a file name
9008 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
9009 and searches several directories.
9010
9011 @item -lobjc
9012 @opindex lobjc
9013 You need this special case of the @option{-l} option in order to
9014 link an Objective-C or Objective-C++ program.
9015
9016 @item -nostartfiles
9017 @opindex nostartfiles
9018 Do not use the standard system startup files when linking.
9019 The standard system libraries are used normally, unless @option{-nostdlib}
9020 or @option{-nodefaultlibs} is used.
9021
9022 @item -nodefaultlibs
9023 @opindex nodefaultlibs
9024 Do not use the standard system libraries when linking.
9025 Only the libraries you specify will be passed to the linker, options
9026 specifying linkage of the system libraries, such as @code{-static-libgcc}
9027 or @code{-shared-libgcc}, will be ignored.
9028 The standard startup files are used normally, unless @option{-nostartfiles}
9029 is used.  The compiler may generate calls to @code{memcmp},
9030 @code{memset}, @code{memcpy} and @code{memmove}.
9031 These entries are usually resolved by entries in
9032 libc.  These entry points should be supplied through some other
9033 mechanism when this option is specified.
9034
9035 @item -nostdlib
9036 @opindex nostdlib
9037 Do not use the standard system startup files or libraries when linking.
9038 No startup files and only the libraries you specify will be passed to
9039 the linker, options specifying linkage of the system libraries, such as
9040 @code{-static-libgcc} or @code{-shared-libgcc}, will be ignored.
9041 The compiler may generate calls to @code{memcmp}, @code{memset},
9042 @code{memcpy} and @code{memmove}.
9043 These entries are usually resolved by entries in
9044 libc.  These entry points should be supplied through some other
9045 mechanism when this option is specified.
9046
9047 @cindex @option{-lgcc}, use with @option{-nostdlib}
9048 @cindex @option{-nostdlib} and unresolved references
9049 @cindex unresolved references and @option{-nostdlib}
9050 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
9051 @cindex @option{-nodefaultlibs} and unresolved references
9052 @cindex unresolved references and @option{-nodefaultlibs}
9053 One of the standard libraries bypassed by @option{-nostdlib} and
9054 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
9055 that GCC uses to overcome shortcomings of particular machines, or special
9056 needs for some languages.
9057 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
9058 Collection (GCC) Internals},
9059 for more discussion of @file{libgcc.a}.)
9060 In most cases, you need @file{libgcc.a} even when you want to avoid
9061 other standard libraries.  In other words, when you specify @option{-nostdlib}
9062 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
9063 This ensures that you have no unresolved references to internal GCC
9064 library subroutines.  (For example, @samp{__main}, used to ensure C++
9065 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
9066 GNU Compiler Collection (GCC) Internals}.)
9067
9068 @item -pie
9069 @opindex pie
9070 Produce a position independent executable on targets which support it.
9071 For predictable results, you must also specify the same set of options
9072 that were used to generate code (@option{-fpie}, @option{-fPIE},
9073 or model suboptions) when you specify this option.
9074
9075 @item -rdynamic
9076 @opindex rdynamic
9077 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
9078 that support it. This instructs the linker to add all symbols, not
9079 only used ones, to the dynamic symbol table. This option is needed
9080 for some uses of @code{dlopen} or to allow obtaining backtraces
9081 from within a program.
9082
9083 @item -s
9084 @opindex s
9085 Remove all symbol table and relocation information from the executable.
9086
9087 @item -static
9088 @opindex static
9089 On systems that support dynamic linking, this prevents linking with the shared
9090 libraries.  On other systems, this option has no effect.
9091
9092 @item -shared
9093 @opindex shared
9094 Produce a shared object which can then be linked with other objects to
9095 form an executable.  Not all systems support this option.  For predictable
9096 results, you must also specify the same set of options that were used to
9097 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
9098 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
9099 needs to build supplementary stub code for constructors to work.  On
9100 multi-libbed systems, @samp{gcc -shared} must select the correct support
9101 libraries to link against.  Failing to supply the correct flags may lead
9102 to subtle defects.  Supplying them in cases where they are not necessary
9103 is innocuous.}
9104
9105 @item -shared-libgcc
9106 @itemx -static-libgcc
9107 @opindex shared-libgcc
9108 @opindex static-libgcc
9109 On systems that provide @file{libgcc} as a shared library, these options
9110 force the use of either the shared or static version respectively.
9111 If no shared version of @file{libgcc} was built when the compiler was
9112 configured, these options have no effect.
9113
9114 There are several situations in which an application should use the
9115 shared @file{libgcc} instead of the static version.  The most common
9116 of these is when the application wishes to throw and catch exceptions
9117 across different shared libraries.  In that case, each of the libraries
9118 as well as the application itself should use the shared @file{libgcc}.
9119
9120 Therefore, the G++ and GCJ drivers automatically add
9121 @option{-shared-libgcc} whenever you build a shared library or a main
9122 executable, because C++ and Java programs typically use exceptions, so
9123 this is the right thing to do.
9124
9125 If, instead, you use the GCC driver to create shared libraries, you may
9126 find that they will not always be linked with the shared @file{libgcc}.
9127 If GCC finds, at its configuration time, that you have a non-GNU linker
9128 or a GNU linker that does not support option @option{--eh-frame-hdr},
9129 it will link the shared version of @file{libgcc} into shared libraries
9130 by default.  Otherwise, it will take advantage of the linker and optimize
9131 away the linking with the shared version of @file{libgcc}, linking with
9132 the static version of libgcc by default.  This allows exceptions to
9133 propagate through such shared libraries, without incurring relocation
9134 costs at library load time.
9135
9136 However, if a library or main executable is supposed to throw or catch
9137 exceptions, you must link it using the G++ or GCJ driver, as appropriate
9138 for the languages used in the program, or using the option
9139 @option{-shared-libgcc}, such that it is linked with the shared
9140 @file{libgcc}.
9141
9142 @item -static-libstdc++
9143 When the @command{g++} program is used to link a C++ program, it will
9144 normally automatically link against @option{libstdc++}.  If
9145 @file{libstdc++} is available as a shared library, and the
9146 @option{-static} option is not used, then this will link against the
9147 shared version of @file{libstdc++}.  That is normally fine.  However, it
9148 is sometimes useful to freeze the version of @file{libstdc++} used by
9149 the program without going all the way to a fully static link.  The
9150 @option{-static-libstdc++} option directs the @command{g++} driver to
9151 link @file{libstdc++} statically, without necessarily linking other
9152 libraries statically.
9153
9154 @item -symbolic
9155 @opindex symbolic
9156 Bind references to global symbols when building a shared object.  Warn
9157 about any unresolved references (unless overridden by the link editor
9158 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
9159 this option.
9160
9161 @item -T @var{script}
9162 @opindex T
9163 @cindex linker script
9164 Use @var{script} as the linker script.  This option is supported by most
9165 systems using the GNU linker.  On some targets, such as bare-board
9166 targets without an operating system, the @option{-T} option may be required
9167 when linking to avoid references to undefined symbols.
9168
9169 @item -Xlinker @var{option}
9170 @opindex Xlinker
9171 Pass @var{option} as an option to the linker.  You can use this to
9172 supply system-specific linker options which GCC does not know how to
9173 recognize.
9174
9175 If you want to pass an option that takes a separate argument, you must use
9176 @option{-Xlinker} twice, once for the option and once for the argument.
9177 For example, to pass @option{-assert definitions}, you must write
9178 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
9179 @option{-Xlinker "-assert definitions"}, because this passes the entire
9180 string as a single argument, which is not what the linker expects.
9181
9182 When using the GNU linker, it is usually more convenient to pass
9183 arguments to linker options using the @option{@var{option}=@var{value}}
9184 syntax than as separate arguments.  For example, you can specify
9185 @samp{-Xlinker -Map=output.map} rather than
9186 @samp{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
9187 this syntax for command-line options.
9188
9189 @item -Wl,@var{option}
9190 @opindex Wl
9191 Pass @var{option} as an option to the linker.  If @var{option} contains
9192 commas, it is split into multiple options at the commas.  You can use this
9193 syntax to pass an argument to the option.
9194 For example, @samp{-Wl,-Map,output.map} passes @samp{-Map output.map} to the
9195 linker.  When using the GNU linker, you can also get the same effect with
9196 @samp{-Wl,-Map=output.map}.
9197
9198 @item -u @var{symbol}
9199 @opindex u
9200 Pretend the symbol @var{symbol} is undefined, to force linking of
9201 library modules to define it.  You can use @option{-u} multiple times with
9202 different symbols to force loading of additional library modules.
9203 @end table
9204
9205 @node Directory Options
9206 @section Options for Directory Search
9207 @cindex directory options
9208 @cindex options, directory search
9209 @cindex search path
9210
9211 These options specify directories to search for header files, for
9212 libraries and for parts of the compiler:
9213
9214 @table @gcctabopt
9215 @item -I@var{dir}
9216 @opindex I
9217 Add the directory @var{dir} to the head of the list of directories to be
9218 searched for header files.  This can be used to override a system header
9219 file, substituting your own version, since these directories are
9220 searched before the system header file directories.  However, you should
9221 not use this option to add directories that contain vendor-supplied
9222 system header files (use @option{-isystem} for that).  If you use more than
9223 one @option{-I} option, the directories are scanned in left-to-right
9224 order; the standard system directories come after.
9225
9226 If a standard system include directory, or a directory specified with
9227 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
9228 option will be ignored.  The directory will still be searched but as a
9229 system directory at its normal position in the system include chain.
9230 This is to ensure that GCC's procedure to fix buggy system headers and
9231 the ordering for the include_next directive are not inadvertently changed.
9232 If you really need to change the search order for system directories,
9233 use the @option{-nostdinc} and/or @option{-isystem} options.
9234
9235 @item -iplugindir=@var{dir}
9236 Set the directory to search for plugins which are passed
9237 by @option{-fplugin=@var{name}} instead of
9238 @option{-fplugin=@var{path}/@var{name}.so}.  This option is not meant
9239 to be used by the user, but only passed by the driver.
9240
9241 @item -iquote@var{dir}
9242 @opindex iquote
9243 Add the directory @var{dir} to the head of the list of directories to
9244 be searched for header files only for the case of @samp{#include
9245 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
9246 otherwise just like @option{-I}.
9247
9248 @item -L@var{dir}
9249 @opindex L
9250 Add directory @var{dir} to the list of directories to be searched
9251 for @option{-l}.
9252
9253 @item -B@var{prefix}
9254 @opindex B
9255 This option specifies where to find the executables, libraries,
9256 include files, and data files of the compiler itself.
9257
9258 The compiler driver program runs one or more of the subprograms
9259 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
9260 @var{prefix} as a prefix for each program it tries to run, both with and
9261 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
9262
9263 For each subprogram to be run, the compiler driver first tries the
9264 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
9265 was not specified, the driver tries two standard prefixes, which are
9266 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
9267 those results in a file name that is found, the unmodified program
9268 name is searched for using the directories specified in your
9269 @env{PATH} environment variable.
9270
9271 The compiler will check to see if the path provided by the @option{-B}
9272 refers to a directory, and if necessary it will add a directory
9273 separator character at the end of the path.
9274
9275 @option{-B} prefixes that effectively specify directory names also apply
9276 to libraries in the linker, because the compiler translates these
9277 options into @option{-L} options for the linker.  They also apply to
9278 includes files in the preprocessor, because the compiler translates these
9279 options into @option{-isystem} options for the preprocessor.  In this case,
9280 the compiler appends @samp{include} to the prefix.
9281
9282 The run-time support file @file{libgcc.a} can also be searched for using
9283 the @option{-B} prefix, if needed.  If it is not found there, the two
9284 standard prefixes above are tried, and that is all.  The file is left
9285 out of the link if it is not found by those means.
9286
9287 Another way to specify a prefix much like the @option{-B} prefix is to use
9288 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
9289 Variables}.
9290
9291 As a special kludge, if the path provided by @option{-B} is
9292 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
9293 9, then it will be replaced by @file{[dir/]include}.  This is to help
9294 with boot-strapping the compiler.
9295
9296 @item -specs=@var{file}
9297 @opindex specs
9298 Process @var{file} after the compiler reads in the standard @file{specs}
9299 file, in order to override the defaults that the @file{gcc} driver
9300 program uses when determining what switches to pass to @file{cc1},
9301 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
9302 @option{-specs=@var{file}} can be specified on the command line, and they
9303 are processed in order, from left to right.
9304
9305 @item --sysroot=@var{dir}
9306 @opindex sysroot
9307 Use @var{dir} as the logical root directory for headers and libraries.
9308 For example, if the compiler would normally search for headers in
9309 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
9310 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
9311
9312 If you use both this option and the @option{-isysroot} option, then
9313 the @option{--sysroot} option will apply to libraries, but the
9314 @option{-isysroot} option will apply to header files.
9315
9316 The GNU linker (beginning with version 2.16) has the necessary support
9317 for this option.  If your linker does not support this option, the
9318 header file aspect of @option{--sysroot} will still work, but the
9319 library aspect will not.
9320
9321 @item -I-
9322 @opindex I-
9323 This option has been deprecated.  Please use @option{-iquote} instead for
9324 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
9325 Any directories you specify with @option{-I} options before the @option{-I-}
9326 option are searched only for the case of @samp{#include "@var{file}"};
9327 they are not searched for @samp{#include <@var{file}>}.
9328
9329 If additional directories are specified with @option{-I} options after
9330 the @option{-I-}, these directories are searched for all @samp{#include}
9331 directives.  (Ordinarily @emph{all} @option{-I} directories are used
9332 this way.)
9333
9334 In addition, the @option{-I-} option inhibits the use of the current
9335 directory (where the current input file came from) as the first search
9336 directory for @samp{#include "@var{file}"}.  There is no way to
9337 override this effect of @option{-I-}.  With @option{-I.} you can specify
9338 searching the directory which was current when the compiler was
9339 invoked.  That is not exactly the same as what the preprocessor does
9340 by default, but it is often satisfactory.
9341
9342 @option{-I-} does not inhibit the use of the standard system directories
9343 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
9344 independent.
9345 @end table
9346
9347 @c man end
9348
9349 @node Spec Files
9350 @section Specifying subprocesses and the switches to pass to them
9351 @cindex Spec Files
9352
9353 @command{gcc} is a driver program.  It performs its job by invoking a
9354 sequence of other programs to do the work of compiling, assembling and
9355 linking.  GCC interprets its command-line parameters and uses these to
9356 deduce which programs it should invoke, and which command-line options
9357 it ought to place on their command lines.  This behavior is controlled
9358 by @dfn{spec strings}.  In most cases there is one spec string for each
9359 program that GCC can invoke, but a few programs have multiple spec
9360 strings to control their behavior.  The spec strings built into GCC can
9361 be overridden by using the @option{-specs=} command-line switch to specify
9362 a spec file.
9363
9364 @dfn{Spec files} are plaintext files that are used to construct spec
9365 strings.  They consist of a sequence of directives separated by blank
9366 lines.  The type of directive is determined by the first non-whitespace
9367 character on the line and it can be one of the following:
9368
9369 @table @code
9370 @item %@var{command}
9371 Issues a @var{command} to the spec file processor.  The commands that can
9372 appear here are:
9373
9374 @table @code
9375 @item %include <@var{file}>
9376 @cindex @code{%include}
9377 Search for @var{file} and insert its text at the current point in the
9378 specs file.
9379
9380 @item %include_noerr <@var{file}>
9381 @cindex @code{%include_noerr}
9382 Just like @samp{%include}, but do not generate an error message if the include
9383 file cannot be found.
9384
9385 @item %rename @var{old_name} @var{new_name}
9386 @cindex @code{%rename}
9387 Rename the spec string @var{old_name} to @var{new_name}.
9388
9389 @end table
9390
9391 @item *[@var{spec_name}]:
9392 This tells the compiler to create, override or delete the named spec
9393 string.  All lines after this directive up to the next directive or
9394 blank line are considered to be the text for the spec string.  If this
9395 results in an empty string then the spec will be deleted.  (Or, if the
9396 spec did not exist, then nothing will happen.)  Otherwise, if the spec
9397 does not currently exist a new spec will be created.  If the spec does
9398 exist then its contents will be overridden by the text of this
9399 directive, unless the first character of that text is the @samp{+}
9400 character, in which case the text will be appended to the spec.
9401
9402 @item [@var{suffix}]:
9403 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
9404 and up to the next directive or blank line are considered to make up the
9405 spec string for the indicated suffix.  When the compiler encounters an
9406 input file with the named suffix, it will processes the spec string in
9407 order to work out how to compile that file.  For example:
9408
9409 @smallexample
9410 .ZZ:
9411 z-compile -input %i
9412 @end smallexample
9413
9414 This says that any input file whose name ends in @samp{.ZZ} should be
9415 passed to the program @samp{z-compile}, which should be invoked with the
9416 command-line switch @option{-input} and with the result of performing the
9417 @samp{%i} substitution.  (See below.)
9418
9419 As an alternative to providing a spec string, the text that follows a
9420 suffix directive can be one of the following:
9421
9422 @table @code
9423 @item @@@var{language}
9424 This says that the suffix is an alias for a known @var{language}.  This is
9425 similar to using the @option{-x} command-line switch to GCC to specify a
9426 language explicitly.  For example:
9427
9428 @smallexample
9429 .ZZ:
9430 @@c++
9431 @end smallexample
9432
9433 Says that .ZZ files are, in fact, C++ source files.
9434
9435 @item #@var{name}
9436 This causes an error messages saying:
9437
9438 @smallexample
9439 @var{name} compiler not installed on this system.
9440 @end smallexample
9441 @end table
9442
9443 GCC already has an extensive list of suffixes built into it.
9444 This directive will add an entry to the end of the list of suffixes, but
9445 since the list is searched from the end backwards, it is effectively
9446 possible to override earlier entries using this technique.
9447
9448 @end table
9449
9450 GCC has the following spec strings built into it.  Spec files can
9451 override these strings or create their own.  Note that individual
9452 targets can also add their own spec strings to this list.
9453
9454 @smallexample
9455 asm          Options to pass to the assembler
9456 asm_final    Options to pass to the assembler post-processor
9457 cpp          Options to pass to the C preprocessor
9458 cc1          Options to pass to the C compiler
9459 cc1plus      Options to pass to the C++ compiler
9460 endfile      Object files to include at the end of the link
9461 link         Options to pass to the linker
9462 lib          Libraries to include on the command line to the linker
9463 libgcc       Decides which GCC support library to pass to the linker
9464 linker       Sets the name of the linker
9465 predefines   Defines to be passed to the C preprocessor
9466 signed_char  Defines to pass to CPP to say whether @code{char} is signed
9467              by default
9468 startfile    Object files to include at the start of the link
9469 @end smallexample
9470
9471 Here is a small example of a spec file:
9472
9473 @smallexample
9474 %rename lib                 old_lib
9475
9476 *lib:
9477 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
9478 @end smallexample
9479
9480 This example renames the spec called @samp{lib} to @samp{old_lib} and
9481 then overrides the previous definition of @samp{lib} with a new one.
9482 The new definition adds in some extra command-line options before
9483 including the text of the old definition.
9484
9485 @dfn{Spec strings} are a list of command-line options to be passed to their
9486 corresponding program.  In addition, the spec strings can contain
9487 @samp{%}-prefixed sequences to substitute variable text or to
9488 conditionally insert text into the command line.  Using these constructs
9489 it is possible to generate quite complex command lines.
9490
9491 Here is a table of all defined @samp{%}-sequences for spec
9492 strings.  Note that spaces are not generated automatically around the
9493 results of expanding these sequences.  Therefore you can concatenate them
9494 together or combine them with constant text in a single argument.
9495
9496 @table @code
9497 @item %%
9498 Substitute one @samp{%} into the program name or argument.
9499
9500 @item %i
9501 Substitute the name of the input file being processed.
9502
9503 @item %b
9504 Substitute the basename of the input file being processed.
9505 This is the substring up to (and not including) the last period
9506 and not including the directory.
9507
9508 @item %B
9509 This is the same as @samp{%b}, but include the file suffix (text after
9510 the last period).
9511
9512 @item %d
9513 Marks the argument containing or following the @samp{%d} as a
9514 temporary file name, so that that file will be deleted if GCC exits
9515 successfully.  Unlike @samp{%g}, this contributes no text to the
9516 argument.
9517
9518 @item %g@var{suffix}
9519 Substitute a file name that has suffix @var{suffix} and is chosen
9520 once per compilation, and mark the argument in the same way as
9521 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
9522 name is now chosen in a way that is hard to predict even when previously
9523 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
9524 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
9525 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
9526 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
9527 was simply substituted with a file name chosen once per compilation,
9528 without regard to any appended suffix (which was therefore treated
9529 just like ordinary text), making such attacks more likely to succeed.
9530
9531 @item %u@var{suffix}
9532 Like @samp{%g}, but generates a new temporary file name even if
9533 @samp{%u@var{suffix}} was already seen.
9534
9535 @item %U@var{suffix}
9536 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
9537 new one if there is no such last file name.  In the absence of any
9538 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
9539 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
9540 would involve the generation of two distinct file names, one
9541 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
9542 simply substituted with a file name chosen for the previous @samp{%u},
9543 without regard to any appended suffix.
9544
9545 @item %j@var{suffix}
9546 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
9547 writable, and if save-temps is off; otherwise, substitute the name
9548 of a temporary file, just like @samp{%u}.  This temporary file is not
9549 meant for communication between processes, but rather as a junk
9550 disposal mechanism.
9551
9552 @item %|@var{suffix}
9553 @itemx %m@var{suffix}
9554 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
9555 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
9556 all.  These are the two most common ways to instruct a program that it
9557 should read from standard input or write to standard output.  If you
9558 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
9559 construct: see for example @file{f/lang-specs.h}.
9560
9561 @item %.@var{SUFFIX}
9562 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
9563 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
9564 terminated by the next space or %.
9565
9566 @item %w
9567 Marks the argument containing or following the @samp{%w} as the
9568 designated output file of this compilation.  This puts the argument
9569 into the sequence of arguments that @samp{%o} will substitute later.
9570
9571 @item %o
9572 Substitutes the names of all the output files, with spaces
9573 automatically placed around them.  You should write spaces
9574 around the @samp{%o} as well or the results are undefined.
9575 @samp{%o} is for use in the specs for running the linker.
9576 Input files whose names have no recognized suffix are not compiled
9577 at all, but they are included among the output files, so they will
9578 be linked.
9579
9580 @item %O
9581 Substitutes the suffix for object files.  Note that this is
9582 handled specially when it immediately follows @samp{%g, %u, or %U},
9583 because of the need for those to form complete file names.  The
9584 handling is such that @samp{%O} is treated exactly as if it had already
9585 been substituted, except that @samp{%g, %u, and %U} do not currently
9586 support additional @var{suffix} characters following @samp{%O} as they would
9587 following, for example, @samp{.o}.
9588
9589 @item %p
9590 Substitutes the standard macro predefinitions for the
9591 current target machine.  Use this when running @code{cpp}.
9592
9593 @item %P
9594 Like @samp{%p}, but puts @samp{__} before and after the name of each
9595 predefined macro, except for macros that start with @samp{__} or with
9596 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
9597 C@.
9598
9599 @item %I
9600 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
9601 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
9602 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
9603 and @option{-imultilib} as necessary.
9604
9605 @item %s
9606 Current argument is the name of a library or startup file of some sort.
9607 Search for that file in a standard list of directories and substitute
9608 the full name found.  The current working directory is included in the
9609 list of directories scanned.
9610
9611 @item %T
9612 Current argument is the name of a linker script.  Search for that file
9613 in the current list of directories to scan for libraries. If the file
9614 is located insert a @option{--script} option into the command line
9615 followed by the full path name found.  If the file is not found then
9616 generate an error message.  Note: the current working directory is not
9617 searched.
9618
9619 @item %e@var{str}
9620 Print @var{str} as an error message.  @var{str} is terminated by a newline.
9621 Use this when inconsistent options are detected.
9622
9623 @item %(@var{name})
9624 Substitute the contents of spec string @var{name} at this point.
9625
9626 @item %[@var{name}]
9627 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
9628
9629 @item %x@{@var{option}@}
9630 Accumulate an option for @samp{%X}.
9631
9632 @item %X
9633 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
9634 spec string.
9635
9636 @item %Y
9637 Output the accumulated assembler options specified by @option{-Wa}.
9638
9639 @item %Z
9640 Output the accumulated preprocessor options specified by @option{-Wp}.
9641
9642 @item %a
9643 Process the @code{asm} spec.  This is used to compute the
9644 switches to be passed to the assembler.
9645
9646 @item %A
9647 Process the @code{asm_final} spec.  This is a spec string for
9648 passing switches to an assembler post-processor, if such a program is
9649 needed.
9650
9651 @item %l
9652 Process the @code{link} spec.  This is the spec for computing the
9653 command line passed to the linker.  Typically it will make use of the
9654 @samp{%L %G %S %D and %E} sequences.
9655
9656 @item %D
9657 Dump out a @option{-L} option for each directory that GCC believes might
9658 contain startup files.  If the target supports multilibs then the
9659 current multilib directory will be prepended to each of these paths.
9660
9661 @item %L
9662 Process the @code{lib} spec.  This is a spec string for deciding which
9663 libraries should be included on the command line to the linker.
9664
9665 @item %G
9666 Process the @code{libgcc} spec.  This is a spec string for deciding
9667 which GCC support library should be included on the command line to the linker.
9668
9669 @item %S
9670 Process the @code{startfile} spec.  This is a spec for deciding which
9671 object files should be the first ones passed to the linker.  Typically
9672 this might be a file named @file{crt0.o}.
9673
9674 @item %E
9675 Process the @code{endfile} spec.  This is a spec string that specifies
9676 the last object files that will be passed to the linker.
9677
9678 @item %C
9679 Process the @code{cpp} spec.  This is used to construct the arguments
9680 to be passed to the C preprocessor.
9681
9682 @item %1
9683 Process the @code{cc1} spec.  This is used to construct the options to be
9684 passed to the actual C compiler (@samp{cc1}).
9685
9686 @item %2
9687 Process the @code{cc1plus} spec.  This is used to construct the options to be
9688 passed to the actual C++ compiler (@samp{cc1plus}).
9689
9690 @item %*
9691 Substitute the variable part of a matched option.  See below.
9692 Note that each comma in the substituted string is replaced by
9693 a single space.
9694
9695 @item %<@code{S}
9696 Remove all occurrences of @code{-S} from the command line.  Note---this
9697 command is position dependent.  @samp{%} commands in the spec string
9698 before this one will see @code{-S}, @samp{%} commands in the spec string
9699 after this one will not.
9700
9701 @item %:@var{function}(@var{args})
9702 Call the named function @var{function}, passing it @var{args}.
9703 @var{args} is first processed as a nested spec string, then split
9704 into an argument vector in the usual fashion.  The function returns
9705 a string which is processed as if it had appeared literally as part
9706 of the current spec.
9707
9708 The following built-in spec functions are provided:
9709
9710 @table @code
9711 @item @code{getenv}
9712 The @code{getenv} spec function takes two arguments: an environment
9713 variable name and a string.  If the environment variable is not
9714 defined, a fatal error is issued.  Otherwise, the return value is the
9715 value of the environment variable concatenated with the string.  For
9716 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
9717
9718 @smallexample
9719 %:getenv(TOPDIR /include)
9720 @end smallexample
9721
9722 expands to @file{/path/to/top/include}.
9723
9724 @item @code{if-exists}
9725 The @code{if-exists} spec function takes one argument, an absolute
9726 pathname to a file.  If the file exists, @code{if-exists} returns the
9727 pathname.  Here is a small example of its usage:
9728
9729 @smallexample
9730 *startfile:
9731 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
9732 @end smallexample
9733
9734 @item @code{if-exists-else}
9735 The @code{if-exists-else} spec function is similar to the @code{if-exists}
9736 spec function, except that it takes two arguments.  The first argument is
9737 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
9738 returns the pathname.  If it does not exist, it returns the second argument.
9739 This way, @code{if-exists-else} can be used to select one file or another,
9740 based on the existence of the first.  Here is a small example of its usage:
9741
9742 @smallexample
9743 *startfile:
9744 crt0%O%s %:if-exists(crti%O%s) \
9745 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
9746 @end smallexample
9747
9748 @item @code{replace-outfile}
9749 The @code{replace-outfile} spec function takes two arguments.  It looks for the
9750 first argument in the outfiles array and replaces it with the second argument.  Here
9751 is a small example of its usage:
9752
9753 @smallexample
9754 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
9755 @end smallexample
9756
9757 @item @code{remove-outfile}
9758 The @code{remove-outfile} spec function takes one argument.  It looks for the
9759 first argument in the outfiles array and removes it.  Here is a small example
9760 its usage:
9761
9762 @smallexample
9763 %:remove-outfile(-lm)
9764 @end smallexample
9765
9766 @item @code{pass-through-libs}
9767 The @code{pass-through-libs} spec function takes any number of arguments.  It
9768 finds any @option{-l} options and any non-options ending in ".a" (which it
9769 assumes are the names of linker input library archive files) and returns a
9770 result containing all the found arguments each prepended by
9771 @option{-plugin-opt=-pass-through=} and joined by spaces.  This list is
9772 intended to be passed to the LTO linker plugin.
9773
9774 @smallexample
9775 %:pass-through-libs(%G %L %G)
9776 @end smallexample
9777
9778 @item @code{print-asm-header}
9779 The @code{print-asm-header} function takes no arguments and simply
9780 prints a banner like:
9781
9782 @smallexample
9783 Assembler options
9784 =================
9785
9786 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
9787 @end smallexample
9788
9789 It is used to separate compiler options from assembler options
9790 in the @option{--target-help} output.
9791 @end table
9792
9793 @item %@{@code{S}@}
9794 Substitutes the @code{-S} switch, if that switch was given to GCC@.
9795 If that switch was not specified, this substitutes nothing.  Note that
9796 the leading dash is omitted when specifying this option, and it is
9797 automatically inserted if the substitution is performed.  Thus the spec
9798 string @samp{%@{foo@}} would match the command-line option @option{-foo}
9799 and would output the command line option @option{-foo}.
9800
9801 @item %W@{@code{S}@}
9802 Like %@{@code{S}@} but mark last argument supplied within as a file to be
9803 deleted on failure.
9804
9805 @item %@{@code{S}*@}
9806 Substitutes all the switches specified to GCC whose names start
9807 with @code{-S}, but which also take an argument.  This is used for
9808 switches like @option{-o}, @option{-D}, @option{-I}, etc.
9809 GCC considers @option{-o foo} as being
9810 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
9811 text, including the space.  Thus two arguments would be generated.
9812
9813 @item %@{@code{S}*&@code{T}*@}
9814 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
9815 (the order of @code{S} and @code{T} in the spec is not significant).
9816 There can be any number of ampersand-separated variables; for each the
9817 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
9818
9819 @item %@{@code{S}:@code{X}@}
9820 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
9821
9822 @item %@{!@code{S}:@code{X}@}
9823 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
9824
9825 @item %@{@code{S}*:@code{X}@}
9826 Substitutes @code{X} if one or more switches whose names start with
9827 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
9828 once, no matter how many such switches appeared.  However, if @code{%*}
9829 appears somewhere in @code{X}, then @code{X} will be substituted once
9830 for each matching switch, with the @code{%*} replaced by the part of
9831 that switch that matched the @code{*}.
9832
9833 @item %@{.@code{S}:@code{X}@}
9834 Substitutes @code{X}, if processing a file with suffix @code{S}.
9835
9836 @item %@{!.@code{S}:@code{X}@}
9837 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
9838
9839 @item %@{,@code{S}:@code{X}@}
9840 Substitutes @code{X}, if processing a file for language @code{S}.
9841
9842 @item %@{!,@code{S}:@code{X}@}
9843 Substitutes @code{X}, if not processing a file for language @code{S}.
9844
9845 @item %@{@code{S}|@code{P}:@code{X}@}
9846 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
9847 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
9848 @code{*} sequences as well, although they have a stronger binding than
9849 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
9850 alternatives must be starred, and only the first matching alternative
9851 is substituted.
9852
9853 For example, a spec string like this:
9854
9855 @smallexample
9856 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
9857 @end smallexample
9858
9859 will output the following command-line options from the following input
9860 command-line options:
9861
9862 @smallexample
9863 fred.c        -foo -baz
9864 jim.d         -bar -boggle
9865 -d fred.c     -foo -baz -boggle
9866 -d jim.d      -bar -baz -boggle
9867 @end smallexample
9868
9869 @item %@{S:X; T:Y; :D@}
9870
9871 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
9872 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
9873 be as many clauses as you need.  This may be combined with @code{.},
9874 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
9875
9876
9877 @end table
9878
9879 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
9880 construct may contain other nested @samp{%} constructs or spaces, or
9881 even newlines.  They are processed as usual, as described above.
9882 Trailing white space in @code{X} is ignored.  White space may also
9883 appear anywhere on the left side of the colon in these constructs,
9884 except between @code{.} or @code{*} and the corresponding word.
9885
9886 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
9887 handled specifically in these constructs.  If another value of
9888 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
9889 @option{-W} switch is found later in the command line, the earlier
9890 switch value is ignored, except with @{@code{S}*@} where @code{S} is
9891 just one letter, which passes all matching options.
9892
9893 The character @samp{|} at the beginning of the predicate text is used to
9894 indicate that a command should be piped to the following command, but
9895 only if @option{-pipe} is specified.
9896
9897 It is built into GCC which switches take arguments and which do not.
9898 (You might think it would be useful to generalize this to allow each
9899 compiler's spec to say which switches take arguments.  But this cannot
9900 be done in a consistent fashion.  GCC cannot even decide which input
9901 files have been specified without knowing which switches take arguments,
9902 and it must know which input files to compile in order to tell which
9903 compilers to run).
9904
9905 GCC also knows implicitly that arguments starting in @option{-l} are to be
9906 treated as compiler output files, and passed to the linker in their
9907 proper position among the other output files.
9908
9909 @c man begin OPTIONS
9910
9911 @node Target Options
9912 @section Specifying Target Machine and Compiler Version
9913 @cindex target options
9914 @cindex cross compiling
9915 @cindex specifying machine version
9916 @cindex specifying compiler version and target machine
9917 @cindex compiler version, specifying
9918 @cindex target machine, specifying
9919
9920 The usual way to run GCC is to run the executable called @command{gcc}, or
9921 @command{@var{machine}-gcc} when cross-compiling, or
9922 @command{@var{machine}-gcc-@var{version}} to run a version other than the
9923 one that was installed last.
9924
9925 @node Submodel Options
9926 @section Hardware Models and Configurations
9927 @cindex submodel options
9928 @cindex specifying hardware config
9929 @cindex hardware models and configurations, specifying
9930 @cindex machine dependent options
9931
9932 Each target machine types can have its own
9933 special options, starting with @samp{-m}, to choose among various
9934 hardware models or configurations---for example, 68010 vs 68020,
9935 floating coprocessor or none.  A single installed version of the
9936 compiler can compile for any model or configuration, according to the
9937 options specified.
9938
9939 Some configurations of the compiler also support additional special
9940 options, usually for compatibility with other compilers on the same
9941 platform.
9942
9943 @c This list is ordered alphanumerically by subsection name.
9944 @c It should be the same order and spelling as these options are listed
9945 @c in Machine Dependent Options
9946
9947 @menu
9948 * ARM Options::
9949 * AVR Options::
9950 * Blackfin Options::
9951 * CRIS Options::
9952 * Darwin Options::
9953 * DEC Alpha Options::
9954 * DEC Alpha/VMS Options::
9955 * FR30 Options::
9956 * FRV Options::
9957 * GNU/Linux Options::
9958 * H8/300 Options::
9959 * HPPA Options::
9960 * i386 and x86-64 Options::
9961 * i386 and x86-64 Windows Options::
9962 * IA-64 Options::
9963 * IA-64/VMS Options::
9964 * LM32 Options::
9965 * M32C Options::
9966 * M32R/D Options::
9967 * M680x0 Options::
9968 * MCore Options::
9969 * MeP Options::
9970 * MicroBlaze Options::
9971 * MIPS Options::
9972 * MMIX Options::
9973 * MN10300 Options::
9974 * PDP-11 Options::
9975 * picoChip Options::
9976 * PowerPC Options::
9977 * RS/6000 and PowerPC Options::
9978 * RX Options::
9979 * S/390 and zSeries Options::
9980 * Score Options::
9981 * SH Options::
9982 * Solaris 2 Options::
9983 * SPARC Options::
9984 * SPU Options::
9985 * System V Options::
9986 * V850 Options::
9987 * VAX Options::
9988 * VxWorks Options::
9989 * x86-64 Options::
9990 * Xstormy16 Options::
9991 * Xtensa Options::
9992 * zSeries Options::
9993 @end menu
9994
9995 @node ARM Options
9996 @subsection ARM Options
9997 @cindex ARM options
9998
9999 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
10000 architectures:
10001
10002 @table @gcctabopt
10003 @item -mabi=@var{name}
10004 @opindex mabi
10005 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
10006 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
10007
10008 @item -mapcs-frame
10009 @opindex mapcs-frame
10010 Generate a stack frame that is compliant with the ARM Procedure Call
10011 Standard for all functions, even if this is not strictly necessary for
10012 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
10013 with this option will cause the stack frames not to be generated for
10014 leaf functions.  The default is @option{-mno-apcs-frame}.
10015
10016 @item -mapcs
10017 @opindex mapcs
10018 This is a synonym for @option{-mapcs-frame}.
10019
10020 @ignore
10021 @c not currently implemented
10022 @item -mapcs-stack-check
10023 @opindex mapcs-stack-check
10024 Generate code to check the amount of stack space available upon entry to
10025 every function (that actually uses some stack space).  If there is
10026 insufficient space available then either the function
10027 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
10028 called, depending upon the amount of stack space required.  The run time
10029 system is required to provide these functions.  The default is
10030 @option{-mno-apcs-stack-check}, since this produces smaller code.
10031
10032 @c not currently implemented
10033 @item -mapcs-float
10034 @opindex mapcs-float
10035 Pass floating point arguments using the float point registers.  This is
10036 one of the variants of the APCS@.  This option is recommended if the
10037 target hardware has a floating point unit or if a lot of floating point
10038 arithmetic is going to be performed by the code.  The default is
10039 @option{-mno-apcs-float}, since integer only code is slightly increased in
10040 size if @option{-mapcs-float} is used.
10041
10042 @c not currently implemented
10043 @item -mapcs-reentrant
10044 @opindex mapcs-reentrant
10045 Generate reentrant, position independent code.  The default is
10046 @option{-mno-apcs-reentrant}.
10047 @end ignore
10048
10049 @item -mthumb-interwork
10050 @opindex mthumb-interwork
10051 Generate code which supports calling between the ARM and Thumb
10052 instruction sets.  Without this option the two instruction sets cannot
10053 be reliably used inside one program.  The default is
10054 @option{-mno-thumb-interwork}, since slightly larger code is generated
10055 when @option{-mthumb-interwork} is specified.
10056
10057 @item -mno-sched-prolog
10058 @opindex mno-sched-prolog
10059 Prevent the reordering of instructions in the function prolog, or the
10060 merging of those instruction with the instructions in the function's
10061 body.  This means that all functions will start with a recognizable set
10062 of instructions (or in fact one of a choice from a small set of
10063 different function prologues), and this information can be used to
10064 locate the start if functions inside an executable piece of code.  The
10065 default is @option{-msched-prolog}.
10066
10067 @item -mfloat-abi=@var{name}
10068 @opindex mfloat-abi
10069 Specifies which floating-point ABI to use.  Permissible values
10070 are: @samp{soft}, @samp{softfp} and @samp{hard}.
10071
10072 Specifying @samp{soft} causes GCC to generate output containing
10073 library calls for floating-point operations.
10074 @samp{softfp} allows the generation of code using hardware floating-point
10075 instructions, but still uses the soft-float calling conventions.
10076 @samp{hard} allows generation of floating-point instructions
10077 and uses FPU-specific calling conventions.
10078
10079 The default depends on the specific target configuration.  Note that
10080 the hard-float and soft-float ABIs are not link-compatible; you must
10081 compile your entire program with the same ABI, and link with a
10082 compatible set of libraries.
10083
10084 @item -mlittle-endian
10085 @opindex mlittle-endian
10086 Generate code for a processor running in little-endian mode.  This is
10087 the default for all standard configurations.
10088
10089 @item -mbig-endian
10090 @opindex mbig-endian
10091 Generate code for a processor running in big-endian mode; the default is
10092 to compile code for a little-endian processor.
10093
10094 @item -mwords-little-endian
10095 @opindex mwords-little-endian
10096 This option only applies when generating code for big-endian processors.
10097 Generate code for a little-endian word order but a big-endian byte
10098 order.  That is, a byte order of the form @samp{32107654}.  Note: this
10099 option should only be used if you require compatibility with code for
10100 big-endian ARM processors generated by versions of the compiler prior to
10101 2.8.
10102
10103 @item -mcpu=@var{name}
10104 @opindex mcpu
10105 This specifies the name of the target ARM processor.  GCC uses this name
10106 to determine what kind of instructions it can emit when generating
10107 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
10108 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
10109 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
10110 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
10111 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
10112 @samp{arm720},
10113 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
10114 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
10115 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
10116 @samp{strongarm1110},
10117 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
10118 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
10119 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
10120 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
10121 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
10122 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
10123 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
10124 @samp{cortex-a5}, @samp{cortex-a8}, @samp{cortex-a9}, @samp{cortex-a15},
10125 @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m4}, @samp{cortex-m3},
10126 @samp{cortex-m1},
10127 @samp{cortex-m0},
10128 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10129
10130 @item -mtune=@var{name}
10131 @opindex mtune
10132 This option is very similar to the @option{-mcpu=} option, except that
10133 instead of specifying the actual target processor type, and hence
10134 restricting which instructions can be used, it specifies that GCC should
10135 tune the performance of the code as if the target were of the type
10136 specified in this option, but still choosing the instructions that it
10137 will generate based on the CPU specified by a @option{-mcpu=} option.
10138 For some ARM implementations better performance can be obtained by using
10139 this option.
10140
10141 @item -march=@var{name}
10142 @opindex march
10143 This specifies the name of the target ARM architecture.  GCC uses this
10144 name to determine what kind of instructions it can emit when generating
10145 assembly code.  This option can be used in conjunction with or instead
10146 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
10147 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
10148 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
10149 @samp{armv6}, @samp{armv6j},
10150 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
10151 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
10152 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
10153
10154 @item -mfpu=@var{name}
10155 @itemx -mfpe=@var{number}
10156 @itemx -mfp=@var{number}
10157 @opindex mfpu
10158 @opindex mfpe
10159 @opindex mfp
10160 This specifies what floating point hardware (or hardware emulation) is
10161 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
10162 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-fp16},
10163 @samp{vfpv3-d16}, @samp{vfpv3-d16-fp16}, @samp{vfpv3xd}, @samp{vfpv3xd-fp16},
10164 @samp{neon}, @samp{neon-fp16}, @samp{vfpv4}, @samp{vfpv4-d16},
10165 @samp{fpv4-sp-d16} and @samp{neon-vfpv4}.
10166 @option{-mfp} and @option{-mfpe} are synonyms for
10167 @option{-mfpu}=@samp{fpe}@var{number}, for compatibility with older versions
10168 of GCC@.
10169
10170 If @option{-msoft-float} is specified this specifies the format of
10171 floating point values.
10172
10173 If the selected floating-point hardware includes the NEON extension
10174 (e.g. @option{-mfpu}=@samp{neon}), note that floating-point
10175 operations will not be used by GCC's auto-vectorization pass unless
10176 @option{-funsafe-math-optimizations} is also specified.  This is
10177 because NEON hardware does not fully implement the IEEE 754 standard for
10178 floating-point arithmetic (in particular denormal values are treated as
10179 zero), so the use of NEON instructions may lead to a loss of precision.
10180
10181 @item -mfp16-format=@var{name}
10182 @opindex mfp16-format
10183 Specify the format of the @code{__fp16} half-precision floating-point type.
10184 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative};
10185 the default is @samp{none}, in which case the @code{__fp16} type is not
10186 defined.  @xref{Half-Precision}, for more information.
10187
10188 @item -mstructure-size-boundary=@var{n}
10189 @opindex mstructure-size-boundary
10190 The size of all structures and unions will be rounded up to a multiple
10191 of the number of bits set by this option.  Permissible values are 8, 32
10192 and 64.  The default value varies for different toolchains.  For the COFF
10193 targeted toolchain the default value is 8.  A value of 64 is only allowed
10194 if the underlying ABI supports it.
10195
10196 Specifying the larger number can produce faster, more efficient code, but
10197 can also increase the size of the program.  Different values are potentially
10198 incompatible.  Code compiled with one value cannot necessarily expect to
10199 work with code or libraries compiled with another value, if they exchange
10200 information using structures or unions.
10201
10202 @item -mabort-on-noreturn
10203 @opindex mabort-on-noreturn
10204 Generate a call to the function @code{abort} at the end of a
10205 @code{noreturn} function.  It will be executed if the function tries to
10206 return.
10207
10208 @item -mlong-calls
10209 @itemx -mno-long-calls
10210 @opindex mlong-calls
10211 @opindex mno-long-calls
10212 Tells the compiler to perform function calls by first loading the
10213 address of the function into a register and then performing a subroutine
10214 call on this register.  This switch is needed if the target function
10215 will lie outside of the 64 megabyte addressing range of the offset based
10216 version of subroutine call instruction.
10217
10218 Even if this switch is enabled, not all function calls will be turned
10219 into long calls.  The heuristic is that static functions, functions
10220 which have the @samp{short-call} attribute, functions that are inside
10221 the scope of a @samp{#pragma no_long_calls} directive and functions whose
10222 definitions have already been compiled within the current compilation
10223 unit, will not be turned into long calls.  The exception to this rule is
10224 that weak function definitions, functions with the @samp{long-call}
10225 attribute or the @samp{section} attribute, and functions that are within
10226 the scope of a @samp{#pragma long_calls} directive, will always be
10227 turned into long calls.
10228
10229 This feature is not enabled by default.  Specifying
10230 @option{-mno-long-calls} will restore the default behavior, as will
10231 placing the function calls within the scope of a @samp{#pragma
10232 long_calls_off} directive.  Note these switches have no effect on how
10233 the compiler generates code to handle function calls via function
10234 pointers.
10235
10236 @item -msingle-pic-base
10237 @opindex msingle-pic-base
10238 Treat the register used for PIC addressing as read-only, rather than
10239 loading it in the prologue for each function.  The run-time system is
10240 responsible for initializing this register with an appropriate value
10241 before execution begins.
10242
10243 @item -mpic-register=@var{reg}
10244 @opindex mpic-register
10245 Specify the register to be used for PIC addressing.  The default is R10
10246 unless stack-checking is enabled, when R9 is used.
10247
10248 @item -mcirrus-fix-invalid-insns
10249 @opindex mcirrus-fix-invalid-insns
10250 @opindex mno-cirrus-fix-invalid-insns
10251 Insert NOPs into the instruction stream to in order to work around
10252 problems with invalid Maverick instruction combinations.  This option
10253 is only valid if the @option{-mcpu=ep9312} option has been used to
10254 enable generation of instructions for the Cirrus Maverick floating
10255 point co-processor.  This option is not enabled by default, since the
10256 problem is only present in older Maverick implementations.  The default
10257 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
10258 switch.
10259
10260 @item -mpoke-function-name
10261 @opindex mpoke-function-name
10262 Write the name of each function into the text section, directly
10263 preceding the function prologue.  The generated code is similar to this:
10264
10265 @smallexample
10266      t0
10267          .ascii "arm_poke_function_name", 0
10268          .align
10269      t1
10270          .word 0xff000000 + (t1 - t0)
10271      arm_poke_function_name
10272          mov     ip, sp
10273          stmfd   sp!, @{fp, ip, lr, pc@}
10274          sub     fp, ip, #4
10275 @end smallexample
10276
10277 When performing a stack backtrace, code can inspect the value of
10278 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
10279 location @code{pc - 12} and the top 8 bits are set, then we know that
10280 there is a function name embedded immediately preceding this location
10281 and has length @code{((pc[-3]) & 0xff000000)}.
10282
10283 @item -mthumb
10284 @opindex mthumb
10285 Generate code for the Thumb instruction set.  The default is to
10286 use the 32-bit ARM instruction set.
10287 This option automatically enables either 16-bit Thumb-1 or
10288 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
10289 and @option{-march=@var{name}} options.  This option is not passed to the
10290 assembler. If you want to force assembler files to be interpreted as Thumb code,
10291 either add a @samp{.thumb} directive to the source or pass the @option{-mthumb}
10292 option directly to the assembler by prefixing it with @option{-Wa}.
10293
10294 @item -mtpcs-frame
10295 @opindex mtpcs-frame
10296 Generate a stack frame that is compliant with the Thumb Procedure Call
10297 Standard for all non-leaf functions.  (A leaf function is one that does
10298 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
10299
10300 @item -mtpcs-leaf-frame
10301 @opindex mtpcs-leaf-frame
10302 Generate a stack frame that is compliant with the Thumb Procedure Call
10303 Standard for all leaf functions.  (A leaf function is one that does
10304 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
10305
10306 @item -mcallee-super-interworking
10307 @opindex mcallee-super-interworking
10308 Gives all externally visible functions in the file being compiled an ARM
10309 instruction set header which switches to Thumb mode before executing the
10310 rest of the function.  This allows these functions to be called from
10311 non-interworking code.  This option is not valid in AAPCS configurations
10312 because interworking is enabled by default.
10313
10314 @item -mcaller-super-interworking
10315 @opindex mcaller-super-interworking
10316 Allows calls via function pointers (including virtual functions) to
10317 execute correctly regardless of whether the target code has been
10318 compiled for interworking or not.  There is a small overhead in the cost
10319 of executing a function pointer if this option is enabled.  This option
10320 is not valid in AAPCS configurations because interworking is enabled
10321 by default.
10322
10323 @item -mtp=@var{name}
10324 @opindex mtp
10325 Specify the access model for the thread local storage pointer.  The valid
10326 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
10327 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
10328 (supported in the arm6k architecture), and @option{auto}, which uses the
10329 best available method for the selected processor.  The default setting is
10330 @option{auto}.
10331
10332 @item -mword-relocations
10333 @opindex mword-relocations
10334 Only generate absolute relocations on word sized values (i.e. R_ARM_ABS32).
10335 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
10336 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
10337 is specified.
10338
10339 @item -mfix-cortex-m3-ldrd
10340 @opindex mfix-cortex-m3-ldrd
10341 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
10342 with overlapping destination and base registers are used.  This option avoids
10343 generating these instructions.  This option is enabled by default when
10344 @option{-mcpu=cortex-m3} is specified.
10345
10346 @end table
10347
10348 @node AVR Options
10349 @subsection AVR Options
10350 @cindex AVR Options
10351
10352 These options are defined for AVR implementations:
10353
10354 @table @gcctabopt
10355 @item -mmcu=@var{mcu}
10356 @opindex mmcu
10357 Specify ATMEL AVR instruction set or MCU type.
10358
10359 Instruction set avr1 is for the minimal AVR core, not supported by the C
10360 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
10361 attiny11, attiny12, attiny15, attiny28).
10362
10363 Instruction set avr2 (default) is for the classic AVR core with up to
10364 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
10365 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
10366 at90c8534, at90s8535).
10367
10368 Instruction set avr3 is for the classic AVR core with up to 128K program
10369 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
10370
10371 Instruction set avr4 is for the enhanced AVR core with up to 8K program
10372 memory space (MCU types: atmega8, atmega83, atmega85).
10373
10374 Instruction set avr5 is for the enhanced AVR core with up to 128K program
10375 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
10376 atmega64, atmega128, at43usb355, at94k).
10377
10378 @item -mno-interrupts
10379 @opindex mno-interrupts
10380 Generated code is not compatible with hardware interrupts.
10381 Code size will be smaller.
10382
10383 @item -mcall-prologues
10384 @opindex mcall-prologues
10385 Functions prologues/epilogues expanded as call to appropriate
10386 subroutines.  Code size will be smaller.
10387
10388 @item -mtiny-stack
10389 @opindex mtiny-stack
10390 Change only the low 8 bits of the stack pointer.
10391
10392 @item -mint8
10393 @opindex mint8
10394 Assume int to be 8 bit integer.  This affects the sizes of all types: A
10395 char will be 1 byte, an int will be 1 byte, a long will be 2 bytes
10396 and long long will be 4 bytes.  Please note that this option does not
10397 comply to the C standards, but it will provide you with smaller code
10398 size.
10399 @end table
10400
10401 @node Blackfin Options
10402 @subsection Blackfin Options
10403 @cindex Blackfin Options
10404
10405 @table @gcctabopt
10406 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
10407 @opindex mcpu=
10408 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
10409 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
10410 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
10411 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
10412 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
10413 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
10414 @samp{bf542m}, @samp{bf544m}, @samp{bf547m}, @samp{bf548m}, @samp{bf549m},
10415 @samp{bf561}.
10416 The optional @var{sirevision} specifies the silicon revision of the target
10417 Blackfin processor.  Any workarounds available for the targeted silicon revision
10418 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
10419 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
10420 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
10421 hexadecimal digits representing the major and minor numbers in the silicon
10422 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
10423 is not defined.  If @var{sirevision} is @samp{any}, the
10424 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
10425 If this optional @var{sirevision} is not used, GCC assumes the latest known
10426 silicon revision of the targeted Blackfin processor.
10427
10428 Support for @samp{bf561} is incomplete.  For @samp{bf561},
10429 Only the processor macro is defined.
10430 Without this option, @samp{bf532} is used as the processor by default.
10431 The corresponding predefined processor macros for @var{cpu} is to
10432 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
10433 provided by libgloss to be linked in if @option{-msim} is not given.
10434
10435 @item -msim
10436 @opindex msim
10437 Specifies that the program will be run on the simulator.  This causes
10438 the simulator BSP provided by libgloss to be linked in.  This option
10439 has effect only for @samp{bfin-elf} toolchain.
10440 Certain other options, such as @option{-mid-shared-library} and
10441 @option{-mfdpic}, imply @option{-msim}.
10442
10443 @item -momit-leaf-frame-pointer
10444 @opindex momit-leaf-frame-pointer
10445 Don't keep the frame pointer in a register for leaf functions.  This
10446 avoids the instructions to save, set up and restore frame pointers and
10447 makes an extra register available in leaf functions.  The option
10448 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10449 which might make debugging harder.
10450
10451 @item -mspecld-anomaly
10452 @opindex mspecld-anomaly
10453 When enabled, the compiler will ensure that the generated code does not
10454 contain speculative loads after jump instructions. If this option is used,
10455 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
10456
10457 @item -mno-specld-anomaly
10458 @opindex mno-specld-anomaly
10459 Don't generate extra code to prevent speculative loads from occurring.
10460
10461 @item -mcsync-anomaly
10462 @opindex mcsync-anomaly
10463 When enabled, the compiler will ensure that the generated code does not
10464 contain CSYNC or SSYNC instructions too soon after conditional branches.
10465 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
10466
10467 @item -mno-csync-anomaly
10468 @opindex mno-csync-anomaly
10469 Don't generate extra code to prevent CSYNC or SSYNC instructions from
10470 occurring too soon after a conditional branch.
10471
10472 @item -mlow-64k
10473 @opindex mlow-64k
10474 When enabled, the compiler is free to take advantage of the knowledge that
10475 the entire program fits into the low 64k of memory.
10476
10477 @item -mno-low-64k
10478 @opindex mno-low-64k
10479 Assume that the program is arbitrarily large.  This is the default.
10480
10481 @item -mstack-check-l1
10482 @opindex mstack-check-l1
10483 Do stack checking using information placed into L1 scratchpad memory by the
10484 uClinux kernel.
10485
10486 @item -mid-shared-library
10487 @opindex mid-shared-library
10488 Generate code that supports shared libraries via the library ID method.
10489 This allows for execute in place and shared libraries in an environment
10490 without virtual memory management.  This option implies @option{-fPIC}.
10491 With a @samp{bfin-elf} target, this option implies @option{-msim}.
10492
10493 @item -mno-id-shared-library
10494 @opindex mno-id-shared-library
10495 Generate code that doesn't assume ID based shared libraries are being used.
10496 This is the default.
10497
10498 @item -mleaf-id-shared-library
10499 @opindex mleaf-id-shared-library
10500 Generate code that supports shared libraries via the library ID method,
10501 but assumes that this library or executable won't link against any other
10502 ID shared libraries.  That allows the compiler to use faster code for jumps
10503 and calls.
10504
10505 @item -mno-leaf-id-shared-library
10506 @opindex mno-leaf-id-shared-library
10507 Do not assume that the code being compiled won't link against any ID shared
10508 libraries.  Slower code will be generated for jump and call insns.
10509
10510 @item -mshared-library-id=n
10511 @opindex mshared-library-id
10512 Specified the identification number of the ID based shared library being
10513 compiled.  Specifying a value of 0 will generate more compact code, specifying
10514 other values will force the allocation of that number to the current
10515 library but is no more space or time efficient than omitting this option.
10516
10517 @item -msep-data
10518 @opindex msep-data
10519 Generate code that allows the data segment to be located in a different
10520 area of memory from the text segment.  This allows for execute in place in
10521 an environment without virtual memory management by eliminating relocations
10522 against the text section.
10523
10524 @item -mno-sep-data
10525 @opindex mno-sep-data
10526 Generate code that assumes that the data segment follows the text segment.
10527 This is the default.
10528
10529 @item -mlong-calls
10530 @itemx -mno-long-calls
10531 @opindex mlong-calls
10532 @opindex mno-long-calls
10533 Tells the compiler to perform function calls by first loading the
10534 address of the function into a register and then performing a subroutine
10535 call on this register.  This switch is needed if the target function
10536 will lie outside of the 24 bit addressing range of the offset based
10537 version of subroutine call instruction.
10538
10539 This feature is not enabled by default.  Specifying
10540 @option{-mno-long-calls} will restore the default behavior.  Note these
10541 switches have no effect on how the compiler generates code to handle
10542 function calls via function pointers.
10543
10544 @item -mfast-fp
10545 @opindex mfast-fp
10546 Link with the fast floating-point library. This library relaxes some of
10547 the IEEE floating-point standard's rules for checking inputs against
10548 Not-a-Number (NAN), in the interest of performance.
10549
10550 @item -minline-plt
10551 @opindex minline-plt
10552 Enable inlining of PLT entries in function calls to functions that are
10553 not known to bind locally.  It has no effect without @option{-mfdpic}.
10554
10555 @item -mmulticore
10556 @opindex mmulticore
10557 Build standalone application for multicore Blackfin processor. Proper
10558 start files and link scripts will be used to support multicore.
10559 This option defines @code{__BFIN_MULTICORE}. It can only be used with
10560 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
10561 @option{-mcorea} or @option{-mcoreb}. If it's used without
10562 @option{-mcorea} or @option{-mcoreb}, single application/dual core
10563 programming model is used. In this model, the main function of Core B
10564 should be named as coreb_main. If it's used with @option{-mcorea} or
10565 @option{-mcoreb}, one application per core programming model is used.
10566 If this option is not used, single core application programming
10567 model is used.
10568
10569 @item -mcorea
10570 @opindex mcorea
10571 Build standalone application for Core A of BF561 when using
10572 one application per core programming model. Proper start files
10573 and link scripts will be used to support Core A. This option
10574 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
10575
10576 @item -mcoreb
10577 @opindex mcoreb
10578 Build standalone application for Core B of BF561 when using
10579 one application per core programming model. Proper start files
10580 and link scripts will be used to support Core B. This option
10581 defines @code{__BFIN_COREB}. When this option is used, coreb_main
10582 should be used instead of main. It must be used with
10583 @option{-mmulticore}.
10584
10585 @item -msdram
10586 @opindex msdram
10587 Build standalone application for SDRAM. Proper start files and
10588 link scripts will be used to put the application into SDRAM.
10589 Loader should initialize SDRAM before loading the application
10590 into SDRAM. This option defines @code{__BFIN_SDRAM}.
10591
10592 @item -micplb
10593 @opindex micplb
10594 Assume that ICPLBs are enabled at runtime.  This has an effect on certain
10595 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
10596 are enabled; for standalone applications the default is off.
10597 @end table
10598
10599 @node CRIS Options
10600 @subsection CRIS Options
10601 @cindex CRIS Options
10602
10603 These options are defined specifically for the CRIS ports.
10604
10605 @table @gcctabopt
10606 @item -march=@var{architecture-type}
10607 @itemx -mcpu=@var{architecture-type}
10608 @opindex march
10609 @opindex mcpu
10610 Generate code for the specified architecture.  The choices for
10611 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
10612 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
10613 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
10614 @samp{v10}.
10615
10616 @item -mtune=@var{architecture-type}
10617 @opindex mtune
10618 Tune to @var{architecture-type} everything applicable about the generated
10619 code, except for the ABI and the set of available instructions.  The
10620 choices for @var{architecture-type} are the same as for
10621 @option{-march=@var{architecture-type}}.
10622
10623 @item -mmax-stack-frame=@var{n}
10624 @opindex mmax-stack-frame
10625 Warn when the stack frame of a function exceeds @var{n} bytes.
10626
10627 @item -metrax4
10628 @itemx -metrax100
10629 @opindex metrax4
10630 @opindex metrax100
10631 The options @option{-metrax4} and @option{-metrax100} are synonyms for
10632 @option{-march=v3} and @option{-march=v8} respectively.
10633
10634 @item -mmul-bug-workaround
10635 @itemx -mno-mul-bug-workaround
10636 @opindex mmul-bug-workaround
10637 @opindex mno-mul-bug-workaround
10638 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
10639 models where it applies.  This option is active by default.
10640
10641 @item -mpdebug
10642 @opindex mpdebug
10643 Enable CRIS-specific verbose debug-related information in the assembly
10644 code.  This option also has the effect to turn off the @samp{#NO_APP}
10645 formatted-code indicator to the assembler at the beginning of the
10646 assembly file.
10647
10648 @item -mcc-init
10649 @opindex mcc-init
10650 Do not use condition-code results from previous instruction; always emit
10651 compare and test instructions before use of condition codes.
10652
10653 @item -mno-side-effects
10654 @opindex mno-side-effects
10655 Do not emit instructions with side-effects in addressing modes other than
10656 post-increment.
10657
10658 @item -mstack-align
10659 @itemx -mno-stack-align
10660 @itemx -mdata-align
10661 @itemx -mno-data-align
10662 @itemx -mconst-align
10663 @itemx -mno-const-align
10664 @opindex mstack-align
10665 @opindex mno-stack-align
10666 @opindex mdata-align
10667 @opindex mno-data-align
10668 @opindex mconst-align
10669 @opindex mno-const-align
10670 These options (no-options) arranges (eliminate arrangements) for the
10671 stack-frame, individual data and constants to be aligned for the maximum
10672 single data access size for the chosen CPU model.  The default is to
10673 arrange for 32-bit alignment.  ABI details such as structure layout are
10674 not affected by these options.
10675
10676 @item -m32-bit
10677 @itemx -m16-bit
10678 @itemx -m8-bit
10679 @opindex m32-bit
10680 @opindex m16-bit
10681 @opindex m8-bit
10682 Similar to the stack- data- and const-align options above, these options
10683 arrange for stack-frame, writable data and constants to all be 32-bit,
10684 16-bit or 8-bit aligned.  The default is 32-bit alignment.
10685
10686 @item -mno-prologue-epilogue
10687 @itemx -mprologue-epilogue
10688 @opindex mno-prologue-epilogue
10689 @opindex mprologue-epilogue
10690 With @option{-mno-prologue-epilogue}, the normal function prologue and
10691 epilogue that sets up the stack-frame are omitted and no return
10692 instructions or return sequences are generated in the code.  Use this
10693 option only together with visual inspection of the compiled code: no
10694 warnings or errors are generated when call-saved registers must be saved,
10695 or storage for local variable needs to be allocated.
10696
10697 @item -mno-gotplt
10698 @itemx -mgotplt
10699 @opindex mno-gotplt
10700 @opindex mgotplt
10701 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
10702 instruction sequences that load addresses for functions from the PLT part
10703 of the GOT rather than (traditional on other architectures) calls to the
10704 PLT@.  The default is @option{-mgotplt}.
10705
10706 @item -melf
10707 @opindex melf
10708 Legacy no-op option only recognized with the cris-axis-elf and
10709 cris-axis-linux-gnu targets.
10710
10711 @item -mlinux
10712 @opindex mlinux
10713 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
10714
10715 @item -sim
10716 @opindex sim
10717 This option, recognized for the cris-axis-elf arranges
10718 to link with input-output functions from a simulator library.  Code,
10719 initialized data and zero-initialized data are allocated consecutively.
10720
10721 @item -sim2
10722 @opindex sim2
10723 Like @option{-sim}, but pass linker options to locate initialized data at
10724 0x40000000 and zero-initialized data at 0x80000000.
10725 @end table
10726
10727 @node Darwin Options
10728 @subsection Darwin Options
10729 @cindex Darwin options
10730
10731 These options are defined for all architectures running the Darwin operating
10732 system.
10733
10734 FSF GCC on Darwin does not create ``fat'' object files; it will create
10735 an object file for the single architecture that it was built to
10736 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
10737 @option{-arch} options are used; it does so by running the compiler or
10738 linker multiple times and joining the results together with
10739 @file{lipo}.
10740
10741 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
10742 @samp{i686}) is determined by the flags that specify the ISA
10743 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
10744 @option{-force_cpusubtype_ALL} option can be used to override this.
10745
10746 The Darwin tools vary in their behavior when presented with an ISA
10747 mismatch.  The assembler, @file{as}, will only permit instructions to
10748 be used that are valid for the subtype of the file it is generating,
10749 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
10750 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
10751 and print an error if asked to create a shared library with a less
10752 restrictive subtype than its input files (for instance, trying to put
10753 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
10754 for executables, @file{ld}, will quietly give the executable the most
10755 restrictive subtype of any of its input files.
10756
10757 @table @gcctabopt
10758 @item -F@var{dir}
10759 @opindex F
10760 Add the framework directory @var{dir} to the head of the list of
10761 directories to be searched for header files.  These directories are
10762 interleaved with those specified by @option{-I} options and are
10763 scanned in a left-to-right order.
10764
10765 A framework directory is a directory with frameworks in it.  A
10766 framework is a directory with a @samp{"Headers"} and/or
10767 @samp{"PrivateHeaders"} directory contained directly in it that ends
10768 in @samp{".framework"}.  The name of a framework is the name of this
10769 directory excluding the @samp{".framework"}.  Headers associated with
10770 the framework are found in one of those two directories, with
10771 @samp{"Headers"} being searched first.  A subframework is a framework
10772 directory that is in a framework's @samp{"Frameworks"} directory.
10773 Includes of subframework headers can only appear in a header of a
10774 framework that contains the subframework, or in a sibling subframework
10775 header.  Two subframeworks are siblings if they occur in the same
10776 framework.  A subframework should not have the same name as a
10777 framework, a warning will be issued if this is violated.  Currently a
10778 subframework cannot have subframeworks, in the future, the mechanism
10779 may be extended to support this.  The standard frameworks can be found
10780 in @samp{"/System/Library/Frameworks"} and
10781 @samp{"/Library/Frameworks"}.  An example include looks like
10782 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
10783 the name of the framework and header.h is found in the
10784 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
10785
10786 @item -iframework@var{dir}
10787 @opindex iframework
10788 Like @option{-F} except the directory is a treated as a system
10789 directory.  The main difference between this @option{-iframework} and
10790 @option{-F} is that with @option{-iframework} the compiler does not
10791 warn about constructs contained within header files found via
10792 @var{dir}.  This option is valid only for the C family of languages.
10793
10794 @item -gused
10795 @opindex gused
10796 Emit debugging information for symbols that are used.  For STABS
10797 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
10798 This is by default ON@.
10799
10800 @item -gfull
10801 @opindex gfull
10802 Emit debugging information for all symbols and types.
10803
10804 @item -mmacosx-version-min=@var{version}
10805 The earliest version of MacOS X that this executable will run on
10806 is @var{version}.  Typical values of @var{version} include @code{10.1},
10807 @code{10.2}, and @code{10.3.9}.
10808
10809 If the compiler was built to use the system's headers by default,
10810 then the default for this option is the system version on which the
10811 compiler is running, otherwise the default is to make choices which
10812 are compatible with as many systems and code bases as possible.
10813
10814 @item -mkernel
10815 @opindex mkernel
10816 Enable kernel development mode.  The @option{-mkernel} option sets
10817 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
10818 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
10819 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
10820 applicable.  This mode also sets @option{-mno-altivec},
10821 @option{-msoft-float}, @option{-fno-builtin} and
10822 @option{-mlong-branch} for PowerPC targets.
10823
10824 @item -mone-byte-bool
10825 @opindex mone-byte-bool
10826 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
10827 By default @samp{sizeof(bool)} is @samp{4} when compiling for
10828 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
10829 option has no effect on x86.
10830
10831 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
10832 to generate code that is not binary compatible with code generated
10833 without that switch.  Using this switch may require recompiling all
10834 other modules in a program, including system libraries.  Use this
10835 switch to conform to a non-default data model.
10836
10837 @item -mfix-and-continue
10838 @itemx -ffix-and-continue
10839 @itemx -findirect-data
10840 @opindex mfix-and-continue
10841 @opindex ffix-and-continue
10842 @opindex findirect-data
10843 Generate code suitable for fast turn around development.  Needed to
10844 enable gdb to dynamically load @code{.o} files into already running
10845 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
10846 are provided for backwards compatibility.
10847
10848 @item -all_load
10849 @opindex all_load
10850 Loads all members of static archive libraries.
10851 See man ld(1) for more information.
10852
10853 @item -arch_errors_fatal
10854 @opindex arch_errors_fatal
10855 Cause the errors having to do with files that have the wrong architecture
10856 to be fatal.
10857
10858 @item -bind_at_load
10859 @opindex bind_at_load
10860 Causes the output file to be marked such that the dynamic linker will
10861 bind all undefined references when the file is loaded or launched.
10862
10863 @item -bundle
10864 @opindex bundle
10865 Produce a Mach-o bundle format file.
10866 See man ld(1) for more information.
10867
10868 @item -bundle_loader @var{executable}
10869 @opindex bundle_loader
10870 This option specifies the @var{executable} that will be loading the build
10871 output file being linked.  See man ld(1) for more information.
10872
10873 @item -dynamiclib
10874 @opindex dynamiclib
10875 When passed this option, GCC will produce a dynamic library instead of
10876 an executable when linking, using the Darwin @file{libtool} command.
10877
10878 @item -force_cpusubtype_ALL
10879 @opindex force_cpusubtype_ALL
10880 This causes GCC's output file to have the @var{ALL} subtype, instead of
10881 one controlled by the @option{-mcpu} or @option{-march} option.
10882
10883 @item -allowable_client  @var{client_name}
10884 @itemx -client_name
10885 @itemx -compatibility_version
10886 @itemx -current_version
10887 @itemx -dead_strip
10888 @itemx -dependency-file
10889 @itemx -dylib_file
10890 @itemx -dylinker_install_name
10891 @itemx -dynamic
10892 @itemx -exported_symbols_list
10893 @itemx -filelist
10894 @need 800
10895 @itemx -flat_namespace
10896 @itemx -force_flat_namespace
10897 @itemx -headerpad_max_install_names
10898 @itemx -image_base
10899 @itemx -init
10900 @itemx -install_name
10901 @itemx -keep_private_externs
10902 @itemx -multi_module
10903 @itemx -multiply_defined
10904 @itemx -multiply_defined_unused
10905 @need 800
10906 @itemx -noall_load
10907 @itemx -no_dead_strip_inits_and_terms
10908 @itemx -nofixprebinding
10909 @itemx -nomultidefs
10910 @itemx -noprebind
10911 @itemx -noseglinkedit
10912 @itemx -pagezero_size
10913 @itemx -prebind
10914 @itemx -prebind_all_twolevel_modules
10915 @itemx -private_bundle
10916 @need 800
10917 @itemx -read_only_relocs
10918 @itemx -sectalign
10919 @itemx -sectobjectsymbols
10920 @itemx -whyload
10921 @itemx -seg1addr
10922 @itemx -sectcreate
10923 @itemx -sectobjectsymbols
10924 @itemx -sectorder
10925 @itemx -segaddr
10926 @itemx -segs_read_only_addr
10927 @need 800
10928 @itemx -segs_read_write_addr
10929 @itemx -seg_addr_table
10930 @itemx -seg_addr_table_filename
10931 @itemx -seglinkedit
10932 @itemx -segprot
10933 @itemx -segs_read_only_addr
10934 @itemx -segs_read_write_addr
10935 @itemx -single_module
10936 @itemx -static
10937 @itemx -sub_library
10938 @need 800
10939 @itemx -sub_umbrella
10940 @itemx -twolevel_namespace
10941 @itemx -umbrella
10942 @itemx -undefined
10943 @itemx -unexported_symbols_list
10944 @itemx -weak_reference_mismatches
10945 @itemx -whatsloaded
10946 @opindex allowable_client
10947 @opindex client_name
10948 @opindex compatibility_version
10949 @opindex current_version
10950 @opindex dead_strip
10951 @opindex dependency-file
10952 @opindex dylib_file
10953 @opindex dylinker_install_name
10954 @opindex dynamic
10955 @opindex exported_symbols_list
10956 @opindex filelist
10957 @opindex flat_namespace
10958 @opindex force_flat_namespace
10959 @opindex headerpad_max_install_names
10960 @opindex image_base
10961 @opindex init
10962 @opindex install_name
10963 @opindex keep_private_externs
10964 @opindex multi_module
10965 @opindex multiply_defined
10966 @opindex multiply_defined_unused
10967 @opindex noall_load
10968 @opindex no_dead_strip_inits_and_terms
10969 @opindex nofixprebinding
10970 @opindex nomultidefs
10971 @opindex noprebind
10972 @opindex noseglinkedit
10973 @opindex pagezero_size
10974 @opindex prebind
10975 @opindex prebind_all_twolevel_modules
10976 @opindex private_bundle
10977 @opindex read_only_relocs
10978 @opindex sectalign
10979 @opindex sectobjectsymbols
10980 @opindex whyload
10981 @opindex seg1addr
10982 @opindex sectcreate
10983 @opindex sectobjectsymbols
10984 @opindex sectorder
10985 @opindex segaddr
10986 @opindex segs_read_only_addr
10987 @opindex segs_read_write_addr
10988 @opindex seg_addr_table
10989 @opindex seg_addr_table_filename
10990 @opindex seglinkedit
10991 @opindex segprot
10992 @opindex segs_read_only_addr
10993 @opindex segs_read_write_addr
10994 @opindex single_module
10995 @opindex static
10996 @opindex sub_library
10997 @opindex sub_umbrella
10998 @opindex twolevel_namespace
10999 @opindex umbrella
11000 @opindex undefined
11001 @opindex unexported_symbols_list
11002 @opindex weak_reference_mismatches
11003 @opindex whatsloaded
11004 These options are passed to the Darwin linker.  The Darwin linker man page
11005 describes them in detail.
11006 @end table
11007
11008 @node DEC Alpha Options
11009 @subsection DEC Alpha Options
11010
11011 These @samp{-m} options are defined for the DEC Alpha implementations:
11012
11013 @table @gcctabopt
11014 @item -mno-soft-float
11015 @itemx -msoft-float
11016 @opindex mno-soft-float
11017 @opindex msoft-float
11018 Use (do not use) the hardware floating-point instructions for
11019 floating-point operations.  When @option{-msoft-float} is specified,
11020 functions in @file{libgcc.a} will be used to perform floating-point
11021 operations.  Unless they are replaced by routines that emulate the
11022 floating-point operations, or compiled in such a way as to call such
11023 emulations routines, these routines will issue floating-point
11024 operations.   If you are compiling for an Alpha without floating-point
11025 operations, you must ensure that the library is built so as not to call
11026 them.
11027
11028 Note that Alpha implementations without floating-point operations are
11029 required to have floating-point registers.
11030
11031 @item -mfp-reg
11032 @itemx -mno-fp-regs
11033 @opindex mfp-reg
11034 @opindex mno-fp-regs
11035 Generate code that uses (does not use) the floating-point register set.
11036 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
11037 register set is not used, floating point operands are passed in integer
11038 registers as if they were integers and floating-point results are passed
11039 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
11040 so any function with a floating-point argument or return value called by code
11041 compiled with @option{-mno-fp-regs} must also be compiled with that
11042 option.
11043
11044 A typical use of this option is building a kernel that does not use,
11045 and hence need not save and restore, any floating-point registers.
11046
11047 @item -mieee
11048 @opindex mieee
11049 The Alpha architecture implements floating-point hardware optimized for
11050 maximum performance.  It is mostly compliant with the IEEE floating
11051 point standard.  However, for full compliance, software assistance is
11052 required.  This option generates code fully IEEE compliant code
11053 @emph{except} that the @var{inexact-flag} is not maintained (see below).
11054 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
11055 defined during compilation.  The resulting code is less efficient but is
11056 able to correctly support denormalized numbers and exceptional IEEE
11057 values such as not-a-number and plus/minus infinity.  Other Alpha
11058 compilers call this option @option{-ieee_with_no_inexact}.
11059
11060 @item -mieee-with-inexact
11061 @opindex mieee-with-inexact
11062 This is like @option{-mieee} except the generated code also maintains
11063 the IEEE @var{inexact-flag}.  Turning on this option causes the
11064 generated code to implement fully-compliant IEEE math.  In addition to
11065 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
11066 macro.  On some Alpha implementations the resulting code may execute
11067 significantly slower than the code generated by default.  Since there is
11068 very little code that depends on the @var{inexact-flag}, you should
11069 normally not specify this option.  Other Alpha compilers call this
11070 option @option{-ieee_with_inexact}.
11071
11072 @item -mfp-trap-mode=@var{trap-mode}
11073 @opindex mfp-trap-mode
11074 This option controls what floating-point related traps are enabled.
11075 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
11076 The trap mode can be set to one of four values:
11077
11078 @table @samp
11079 @item n
11080 This is the default (normal) setting.  The only traps that are enabled
11081 are the ones that cannot be disabled in software (e.g., division by zero
11082 trap).
11083
11084 @item u
11085 In addition to the traps enabled by @samp{n}, underflow traps are enabled
11086 as well.
11087
11088 @item su
11089 Like @samp{u}, but the instructions are marked to be safe for software
11090 completion (see Alpha architecture manual for details).
11091
11092 @item sui
11093 Like @samp{su}, but inexact traps are enabled as well.
11094 @end table
11095
11096 @item -mfp-rounding-mode=@var{rounding-mode}
11097 @opindex mfp-rounding-mode
11098 Selects the IEEE rounding mode.  Other Alpha compilers call this option
11099 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
11100 of:
11101
11102 @table @samp
11103 @item n
11104 Normal IEEE rounding mode.  Floating point numbers are rounded towards
11105 the nearest machine number or towards the even machine number in case
11106 of a tie.
11107
11108 @item m
11109 Round towards minus infinity.
11110
11111 @item c
11112 Chopped rounding mode.  Floating point numbers are rounded towards zero.
11113
11114 @item d
11115 Dynamic rounding mode.  A field in the floating point control register
11116 (@var{fpcr}, see Alpha architecture reference manual) controls the
11117 rounding mode in effect.  The C library initializes this register for
11118 rounding towards plus infinity.  Thus, unless your program modifies the
11119 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
11120 @end table
11121
11122 @item -mtrap-precision=@var{trap-precision}
11123 @opindex mtrap-precision
11124 In the Alpha architecture, floating point traps are imprecise.  This
11125 means without software assistance it is impossible to recover from a
11126 floating trap and program execution normally needs to be terminated.
11127 GCC can generate code that can assist operating system trap handlers
11128 in determining the exact location that caused a floating point trap.
11129 Depending on the requirements of an application, different levels of
11130 precisions can be selected:
11131
11132 @table @samp
11133 @item p
11134 Program precision.  This option is the default and means a trap handler
11135 can only identify which program caused a floating point exception.
11136
11137 @item f
11138 Function precision.  The trap handler can determine the function that
11139 caused a floating point exception.
11140
11141 @item i
11142 Instruction precision.  The trap handler can determine the exact
11143 instruction that caused a floating point exception.
11144 @end table
11145
11146 Other Alpha compilers provide the equivalent options called
11147 @option{-scope_safe} and @option{-resumption_safe}.
11148
11149 @item -mieee-conformant
11150 @opindex mieee-conformant
11151 This option marks the generated code as IEEE conformant.  You must not
11152 use this option unless you also specify @option{-mtrap-precision=i} and either
11153 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
11154 is to emit the line @samp{.eflag 48} in the function prologue of the
11155 generated assembly file.  Under DEC Unix, this has the effect that
11156 IEEE-conformant math library routines will be linked in.
11157
11158 @item -mbuild-constants
11159 @opindex mbuild-constants
11160 Normally GCC examines a 32- or 64-bit integer constant to
11161 see if it can construct it from smaller constants in two or three
11162 instructions.  If it cannot, it will output the constant as a literal and
11163 generate code to load it from the data segment at runtime.
11164
11165 Use this option to require GCC to construct @emph{all} integer constants
11166 using code, even if it takes more instructions (the maximum is six).
11167
11168 You would typically use this option to build a shared library dynamic
11169 loader.  Itself a shared library, it must relocate itself in memory
11170 before it can find the variables and constants in its own data segment.
11171
11172 @item -malpha-as
11173 @itemx -mgas
11174 @opindex malpha-as
11175 @opindex mgas
11176 Select whether to generate code to be assembled by the vendor-supplied
11177 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
11178
11179 @item -mbwx
11180 @itemx -mno-bwx
11181 @itemx -mcix
11182 @itemx -mno-cix
11183 @itemx -mfix
11184 @itemx -mno-fix
11185 @itemx -mmax
11186 @itemx -mno-max
11187 @opindex mbwx
11188 @opindex mno-bwx
11189 @opindex mcix
11190 @opindex mno-cix
11191 @opindex mfix
11192 @opindex mno-fix
11193 @opindex mmax
11194 @opindex mno-max
11195 Indicate whether GCC should generate code to use the optional BWX,
11196 CIX, FIX and MAX instruction sets.  The default is to use the instruction
11197 sets supported by the CPU type specified via @option{-mcpu=} option or that
11198 of the CPU on which GCC was built if none was specified.
11199
11200 @item -mfloat-vax
11201 @itemx -mfloat-ieee
11202 @opindex mfloat-vax
11203 @opindex mfloat-ieee
11204 Generate code that uses (does not use) VAX F and G floating point
11205 arithmetic instead of IEEE single and double precision.
11206
11207 @item -mexplicit-relocs
11208 @itemx -mno-explicit-relocs
11209 @opindex mexplicit-relocs
11210 @opindex mno-explicit-relocs
11211 Older Alpha assemblers provided no way to generate symbol relocations
11212 except via assembler macros.  Use of these macros does not allow
11213 optimal instruction scheduling.  GNU binutils as of version 2.12
11214 supports a new syntax that allows the compiler to explicitly mark
11215 which relocations should apply to which instructions.  This option
11216 is mostly useful for debugging, as GCC detects the capabilities of
11217 the assembler when it is built and sets the default accordingly.
11218
11219 @item -msmall-data
11220 @itemx -mlarge-data
11221 @opindex msmall-data
11222 @opindex mlarge-data
11223 When @option{-mexplicit-relocs} is in effect, static data is
11224 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
11225 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
11226 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
11227 16-bit relocations off of the @code{$gp} register.  This limits the
11228 size of the small data area to 64KB, but allows the variables to be
11229 directly accessed via a single instruction.
11230
11231 The default is @option{-mlarge-data}.  With this option the data area
11232 is limited to just below 2GB@.  Programs that require more than 2GB of
11233 data must use @code{malloc} or @code{mmap} to allocate the data in the
11234 heap instead of in the program's data segment.
11235
11236 When generating code for shared libraries, @option{-fpic} implies
11237 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
11238
11239 @item -msmall-text
11240 @itemx -mlarge-text
11241 @opindex msmall-text
11242 @opindex mlarge-text
11243 When @option{-msmall-text} is used, the compiler assumes that the
11244 code of the entire program (or shared library) fits in 4MB, and is
11245 thus reachable with a branch instruction.  When @option{-msmall-data}
11246 is used, the compiler can assume that all local symbols share the
11247 same @code{$gp} value, and thus reduce the number of instructions
11248 required for a function call from 4 to 1.
11249
11250 The default is @option{-mlarge-text}.
11251
11252 @item -mcpu=@var{cpu_type}
11253 @opindex mcpu
11254 Set the instruction set and instruction scheduling parameters for
11255 machine type @var{cpu_type}.  You can specify either the @samp{EV}
11256 style name or the corresponding chip number.  GCC supports scheduling
11257 parameters for the EV4, EV5 and EV6 family of processors and will
11258 choose the default values for the instruction set from the processor
11259 you specify.  If you do not specify a processor type, GCC will default
11260 to the processor on which the compiler was built.
11261
11262 Supported values for @var{cpu_type} are
11263
11264 @table @samp
11265 @item ev4
11266 @itemx ev45
11267 @itemx 21064
11268 Schedules as an EV4 and has no instruction set extensions.
11269
11270 @item ev5
11271 @itemx 21164
11272 Schedules as an EV5 and has no instruction set extensions.
11273
11274 @item ev56
11275 @itemx 21164a
11276 Schedules as an EV5 and supports the BWX extension.
11277
11278 @item pca56
11279 @itemx 21164pc
11280 @itemx 21164PC
11281 Schedules as an EV5 and supports the BWX and MAX extensions.
11282
11283 @item ev6
11284 @itemx 21264
11285 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
11286
11287 @item ev67
11288 @itemx 21264a
11289 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
11290 @end table
11291
11292 Native Linux/GNU toolchains also support the value @samp{native},
11293 which selects the best architecture option for the host processor.
11294 @option{-mcpu=native} has no effect if GCC does not recognize
11295 the processor.
11296
11297 @item -mtune=@var{cpu_type}
11298 @opindex mtune
11299 Set only the instruction scheduling parameters for machine type
11300 @var{cpu_type}.  The instruction set is not changed.
11301
11302 Native Linux/GNU toolchains also support the value @samp{native},
11303 which selects the best architecture option for the host processor.
11304 @option{-mtune=native} has no effect if GCC does not recognize
11305 the processor.
11306
11307 @item -mmemory-latency=@var{time}
11308 @opindex mmemory-latency
11309 Sets the latency the scheduler should assume for typical memory
11310 references as seen by the application.  This number is highly
11311 dependent on the memory access patterns used by the application
11312 and the size of the external cache on the machine.
11313
11314 Valid options for @var{time} are
11315
11316 @table @samp
11317 @item @var{number}
11318 A decimal number representing clock cycles.
11319
11320 @item L1
11321 @itemx L2
11322 @itemx L3
11323 @itemx main
11324 The compiler contains estimates of the number of clock cycles for
11325 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
11326 (also called Dcache, Scache, and Bcache), as well as to main memory.
11327 Note that L3 is only valid for EV5.
11328
11329 @end table
11330 @end table
11331
11332 @node DEC Alpha/VMS Options
11333 @subsection DEC Alpha/VMS Options
11334
11335 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
11336
11337 @table @gcctabopt
11338 @item -mvms-return-codes
11339 @opindex mvms-return-codes
11340 Return VMS condition codes from main.  The default is to return POSIX
11341 style condition (e.g.@: error) codes.
11342
11343 @item -mdebug-main=@var{prefix}
11344 @opindex mdebug-main=@var{prefix}
11345 Flag the first routine whose name starts with @var{prefix} as the main
11346 routine for the debugger.
11347
11348 @item -mmalloc64
11349 @opindex mmalloc64
11350 Default to 64bit memory allocation routines.
11351 @end table
11352
11353 @node FR30 Options
11354 @subsection FR30 Options
11355 @cindex FR30 Options
11356
11357 These options are defined specifically for the FR30 port.
11358
11359 @table @gcctabopt
11360
11361 @item -msmall-model
11362 @opindex msmall-model
11363 Use the small address space model.  This can produce smaller code, but
11364 it does assume that all symbolic values and addresses will fit into a
11365 20-bit range.
11366
11367 @item -mno-lsim
11368 @opindex mno-lsim
11369 Assume that run-time support has been provided and so there is no need
11370 to include the simulator library (@file{libsim.a}) on the linker
11371 command line.
11372
11373 @end table
11374
11375 @node FRV Options
11376 @subsection FRV Options
11377 @cindex FRV Options
11378
11379 @table @gcctabopt
11380 @item -mgpr-32
11381 @opindex mgpr-32
11382
11383 Only use the first 32 general purpose registers.
11384
11385 @item -mgpr-64
11386 @opindex mgpr-64
11387
11388 Use all 64 general purpose registers.
11389
11390 @item -mfpr-32
11391 @opindex mfpr-32
11392
11393 Use only the first 32 floating point registers.
11394
11395 @item -mfpr-64
11396 @opindex mfpr-64
11397
11398 Use all 64 floating point registers
11399
11400 @item -mhard-float
11401 @opindex mhard-float
11402
11403 Use hardware instructions for floating point operations.
11404
11405 @item -msoft-float
11406 @opindex msoft-float
11407
11408 Use library routines for floating point operations.
11409
11410 @item -malloc-cc
11411 @opindex malloc-cc
11412
11413 Dynamically allocate condition code registers.
11414
11415 @item -mfixed-cc
11416 @opindex mfixed-cc
11417
11418 Do not try to dynamically allocate condition code registers, only
11419 use @code{icc0} and @code{fcc0}.
11420
11421 @item -mdword
11422 @opindex mdword
11423
11424 Change ABI to use double word insns.
11425
11426 @item -mno-dword
11427 @opindex mno-dword
11428
11429 Do not use double word instructions.
11430
11431 @item -mdouble
11432 @opindex mdouble
11433
11434 Use floating point double instructions.
11435
11436 @item -mno-double
11437 @opindex mno-double
11438
11439 Do not use floating point double instructions.
11440
11441 @item -mmedia
11442 @opindex mmedia
11443
11444 Use media instructions.
11445
11446 @item -mno-media
11447 @opindex mno-media
11448
11449 Do not use media instructions.
11450
11451 @item -mmuladd
11452 @opindex mmuladd
11453
11454 Use multiply and add/subtract instructions.
11455
11456 @item -mno-muladd
11457 @opindex mno-muladd
11458
11459 Do not use multiply and add/subtract instructions.
11460
11461 @item -mfdpic
11462 @opindex mfdpic
11463
11464 Select the FDPIC ABI, that uses function descriptors to represent
11465 pointers to functions.  Without any PIC/PIE-related options, it
11466 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
11467 assumes GOT entries and small data are within a 12-bit range from the
11468 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
11469 are computed with 32 bits.
11470 With a @samp{bfin-elf} target, this option implies @option{-msim}.
11471
11472 @item -minline-plt
11473 @opindex minline-plt
11474
11475 Enable inlining of PLT entries in function calls to functions that are
11476 not known to bind locally.  It has no effect without @option{-mfdpic}.
11477 It's enabled by default if optimizing for speed and compiling for
11478 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
11479 optimization option such as @option{-O3} or above is present in the
11480 command line.
11481
11482 @item -mTLS
11483 @opindex mTLS
11484
11485 Assume a large TLS segment when generating thread-local code.
11486
11487 @item -mtls
11488 @opindex mtls
11489
11490 Do not assume a large TLS segment when generating thread-local code.
11491
11492 @item -mgprel-ro
11493 @opindex mgprel-ro
11494
11495 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
11496 that is known to be in read-only sections.  It's enabled by default,
11497 except for @option{-fpic} or @option{-fpie}: even though it may help
11498 make the global offset table smaller, it trades 1 instruction for 4.
11499 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
11500 one of which may be shared by multiple symbols, and it avoids the need
11501 for a GOT entry for the referenced symbol, so it's more likely to be a
11502 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
11503
11504 @item -multilib-library-pic
11505 @opindex multilib-library-pic
11506
11507 Link with the (library, not FD) pic libraries.  It's implied by
11508 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
11509 @option{-fpic} without @option{-mfdpic}.  You should never have to use
11510 it explicitly.
11511
11512 @item -mlinked-fp
11513 @opindex mlinked-fp
11514
11515 Follow the EABI requirement of always creating a frame pointer whenever
11516 a stack frame is allocated.  This option is enabled by default and can
11517 be disabled with @option{-mno-linked-fp}.
11518
11519 @item -mlong-calls
11520 @opindex mlong-calls
11521
11522 Use indirect addressing to call functions outside the current
11523 compilation unit.  This allows the functions to be placed anywhere
11524 within the 32-bit address space.
11525
11526 @item -malign-labels
11527 @opindex malign-labels
11528
11529 Try to align labels to an 8-byte boundary by inserting nops into the
11530 previous packet.  This option only has an effect when VLIW packing
11531 is enabled.  It doesn't create new packets; it merely adds nops to
11532 existing ones.
11533
11534 @item -mlibrary-pic
11535 @opindex mlibrary-pic
11536
11537 Generate position-independent EABI code.
11538
11539 @item -macc-4
11540 @opindex macc-4
11541
11542 Use only the first four media accumulator registers.
11543
11544 @item -macc-8
11545 @opindex macc-8
11546
11547 Use all eight media accumulator registers.
11548
11549 @item -mpack
11550 @opindex mpack
11551
11552 Pack VLIW instructions.
11553
11554 @item -mno-pack
11555 @opindex mno-pack
11556
11557 Do not pack VLIW instructions.
11558
11559 @item -mno-eflags
11560 @opindex mno-eflags
11561
11562 Do not mark ABI switches in e_flags.
11563
11564 @item -mcond-move
11565 @opindex mcond-move
11566
11567 Enable the use of conditional-move instructions (default).
11568
11569 This switch is mainly for debugging the compiler and will likely be removed
11570 in a future version.
11571
11572 @item -mno-cond-move
11573 @opindex mno-cond-move
11574
11575 Disable the use of conditional-move instructions.
11576
11577 This switch is mainly for debugging the compiler and will likely be removed
11578 in a future version.
11579
11580 @item -mscc
11581 @opindex mscc
11582
11583 Enable the use of conditional set instructions (default).
11584
11585 This switch is mainly for debugging the compiler and will likely be removed
11586 in a future version.
11587
11588 @item -mno-scc
11589 @opindex mno-scc
11590
11591 Disable the use of conditional set instructions.
11592
11593 This switch is mainly for debugging the compiler and will likely be removed
11594 in a future version.
11595
11596 @item -mcond-exec
11597 @opindex mcond-exec
11598
11599 Enable the use of conditional execution (default).
11600
11601 This switch is mainly for debugging the compiler and will likely be removed
11602 in a future version.
11603
11604 @item -mno-cond-exec
11605 @opindex mno-cond-exec
11606
11607 Disable the use of conditional execution.
11608
11609 This switch is mainly for debugging the compiler and will likely be removed
11610 in a future version.
11611
11612 @item -mvliw-branch
11613 @opindex mvliw-branch
11614
11615 Run a pass to pack branches into VLIW instructions (default).
11616
11617 This switch is mainly for debugging the compiler and will likely be removed
11618 in a future version.
11619
11620 @item -mno-vliw-branch
11621 @opindex mno-vliw-branch
11622
11623 Do not run a pass to pack branches into VLIW instructions.
11624
11625 This switch is mainly for debugging the compiler and will likely be removed
11626 in a future version.
11627
11628 @item -mmulti-cond-exec
11629 @opindex mmulti-cond-exec
11630
11631 Enable optimization of @code{&&} and @code{||} in conditional execution
11632 (default).
11633
11634 This switch is mainly for debugging the compiler and will likely be removed
11635 in a future version.
11636
11637 @item -mno-multi-cond-exec
11638 @opindex mno-multi-cond-exec
11639
11640 Disable optimization of @code{&&} and @code{||} in conditional execution.
11641
11642 This switch is mainly for debugging the compiler and will likely be removed
11643 in a future version.
11644
11645 @item -mnested-cond-exec
11646 @opindex mnested-cond-exec
11647
11648 Enable nested conditional execution optimizations (default).
11649
11650 This switch is mainly for debugging the compiler and will likely be removed
11651 in a future version.
11652
11653 @item -mno-nested-cond-exec
11654 @opindex mno-nested-cond-exec
11655
11656 Disable nested conditional execution optimizations.
11657
11658 This switch is mainly for debugging the compiler and will likely be removed
11659 in a future version.
11660
11661 @item -moptimize-membar
11662 @opindex moptimize-membar
11663
11664 This switch removes redundant @code{membar} instructions from the
11665 compiler generated code.  It is enabled by default.
11666
11667 @item -mno-optimize-membar
11668 @opindex mno-optimize-membar
11669
11670 This switch disables the automatic removal of redundant @code{membar}
11671 instructions from the generated code.
11672
11673 @item -mtomcat-stats
11674 @opindex mtomcat-stats
11675
11676 Cause gas to print out tomcat statistics.
11677
11678 @item -mcpu=@var{cpu}
11679 @opindex mcpu
11680
11681 Select the processor type for which to generate code.  Possible values are
11682 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
11683 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
11684
11685 @end table
11686
11687 @node GNU/Linux Options
11688 @subsection GNU/Linux Options
11689
11690 These @samp{-m} options are defined for GNU/Linux targets:
11691
11692 @table @gcctabopt
11693 @item -mglibc
11694 @opindex mglibc
11695 Use the GNU C library.  This is the default except
11696 on @samp{*-*-linux-*uclibc*} and @samp{*-*-linux-*android*} targets.
11697
11698 @item -muclibc
11699 @opindex muclibc
11700 Use uClibc C library.  This is the default on
11701 @samp{*-*-linux-*uclibc*} targets.
11702
11703 @item -mbionic
11704 @opindex mbionic
11705 Use Bionic C library.  This is the default on
11706 @samp{*-*-linux-*android*} targets.
11707
11708 @item -mandroid
11709 @opindex mandroid
11710 Compile code compatible with Android platform.  This is the default on
11711 @samp{*-*-linux-*android*} targets.
11712
11713 When compiling, this option enables @option{-mbionic}, @option{-fPIC},
11714 @option{-fno-exceptions} and @option{-fno-rtti} by default.  When linking,
11715 this option makes the GCC driver pass Android-specific options to the linker.
11716 Finally, this option causes the preprocessor macro @code{__ANDROID__}
11717 to be defined.
11718
11719 @item -tno-android-cc
11720 @opindex tno-android-cc
11721 Disable compilation effects of @option{-mandroid}, i.e., do not enable
11722 @option{-mbionic}, @option{-fPIC}, @option{-fno-exceptions} and
11723 @option{-fno-rtti} by default.
11724
11725 @item -tno-android-ld
11726 @opindex tno-android-ld
11727 Disable linking effects of @option{-mandroid}, i.e., pass standard Linux
11728 linking options to the linker.
11729
11730 @end table
11731
11732 @node H8/300 Options
11733 @subsection H8/300 Options
11734
11735 These @samp{-m} options are defined for the H8/300 implementations:
11736
11737 @table @gcctabopt
11738 @item -mrelax
11739 @opindex mrelax
11740 Shorten some address references at link time, when possible; uses the
11741 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
11742 ld, Using ld}, for a fuller description.
11743
11744 @item -mh
11745 @opindex mh
11746 Generate code for the H8/300H@.
11747
11748 @item -ms
11749 @opindex ms
11750 Generate code for the H8S@.
11751
11752 @item -mn
11753 @opindex mn
11754 Generate code for the H8S and H8/300H in the normal mode.  This switch
11755 must be used either with @option{-mh} or @option{-ms}.
11756
11757 @item -ms2600
11758 @opindex ms2600
11759 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
11760
11761 @item -mint32
11762 @opindex mint32
11763 Make @code{int} data 32 bits by default.
11764
11765 @item -malign-300
11766 @opindex malign-300
11767 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
11768 The default for the H8/300H and H8S is to align longs and floats on 4
11769 byte boundaries.
11770 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
11771 This option has no effect on the H8/300.
11772 @end table
11773
11774 @node HPPA Options
11775 @subsection HPPA Options
11776 @cindex HPPA Options
11777
11778 These @samp{-m} options are defined for the HPPA family of computers:
11779
11780 @table @gcctabopt
11781 @item -march=@var{architecture-type}
11782 @opindex march
11783 Generate code for the specified architecture.  The choices for
11784 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
11785 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
11786 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
11787 architecture option for your machine.  Code compiled for lower numbered
11788 architectures will run on higher numbered architectures, but not the
11789 other way around.
11790
11791 @item -mpa-risc-1-0
11792 @itemx -mpa-risc-1-1
11793 @itemx -mpa-risc-2-0
11794 @opindex mpa-risc-1-0
11795 @opindex mpa-risc-1-1
11796 @opindex mpa-risc-2-0
11797 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
11798
11799 @item -mbig-switch
11800 @opindex mbig-switch
11801 Generate code suitable for big switch tables.  Use this option only if
11802 the assembler/linker complain about out of range branches within a switch
11803 table.
11804
11805 @item -mjump-in-delay
11806 @opindex mjump-in-delay
11807 Fill delay slots of function calls with unconditional jump instructions
11808 by modifying the return pointer for the function call to be the target
11809 of the conditional jump.
11810
11811 @item -mdisable-fpregs
11812 @opindex mdisable-fpregs
11813 Prevent floating point registers from being used in any manner.  This is
11814 necessary for compiling kernels which perform lazy context switching of
11815 floating point registers.  If you use this option and attempt to perform
11816 floating point operations, the compiler will abort.
11817
11818 @item -mdisable-indexing
11819 @opindex mdisable-indexing
11820 Prevent the compiler from using indexing address modes.  This avoids some
11821 rather obscure problems when compiling MIG generated code under MACH@.
11822
11823 @item -mno-space-regs
11824 @opindex mno-space-regs
11825 Generate code that assumes the target has no space registers.  This allows
11826 GCC to generate faster indirect calls and use unscaled index address modes.
11827
11828 Such code is suitable for level 0 PA systems and kernels.
11829
11830 @item -mfast-indirect-calls
11831 @opindex mfast-indirect-calls
11832 Generate code that assumes calls never cross space boundaries.  This
11833 allows GCC to emit code which performs faster indirect calls.
11834
11835 This option will not work in the presence of shared libraries or nested
11836 functions.
11837
11838 @item -mfixed-range=@var{register-range}
11839 @opindex mfixed-range
11840 Generate code treating the given register range as fixed registers.
11841 A fixed register is one that the register allocator can not use.  This is
11842 useful when compiling kernel code.  A register range is specified as
11843 two registers separated by a dash.  Multiple register ranges can be
11844 specified separated by a comma.
11845
11846 @item -mlong-load-store
11847 @opindex mlong-load-store
11848 Generate 3-instruction load and store sequences as sometimes required by
11849 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
11850 the HP compilers.
11851
11852 @item -mportable-runtime
11853 @opindex mportable-runtime
11854 Use the portable calling conventions proposed by HP for ELF systems.
11855
11856 @item -mgas
11857 @opindex mgas
11858 Enable the use of assembler directives only GAS understands.
11859
11860 @item -mschedule=@var{cpu-type}
11861 @opindex mschedule
11862 Schedule code according to the constraints for the machine type
11863 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
11864 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
11865 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
11866 proper scheduling option for your machine.  The default scheduling is
11867 @samp{8000}.
11868
11869 @item -mlinker-opt
11870 @opindex mlinker-opt
11871 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
11872 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
11873 linkers in which they give bogus error messages when linking some programs.
11874
11875 @item -msoft-float
11876 @opindex msoft-float
11877 Generate output containing library calls for floating point.
11878 @strong{Warning:} the requisite libraries are not available for all HPPA
11879 targets.  Normally the facilities of the machine's usual C compiler are
11880 used, but this cannot be done directly in cross-compilation.  You must make
11881 your own arrangements to provide suitable library functions for
11882 cross-compilation.
11883
11884 @option{-msoft-float} changes the calling convention in the output file;
11885 therefore, it is only useful if you compile @emph{all} of a program with
11886 this option.  In particular, you need to compile @file{libgcc.a}, the
11887 library that comes with GCC, with @option{-msoft-float} in order for
11888 this to work.
11889
11890 @item -msio
11891 @opindex msio
11892 Generate the predefine, @code{_SIO}, for server IO@.  The default is
11893 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
11894 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
11895 options are available under HP-UX and HI-UX@.
11896
11897 @item -mgnu-ld
11898 @opindex mgnu-ld
11899 Use GNU ld specific options.  This passes @option{-shared} to ld when
11900 building a shared library.  It is the default when GCC is configured,
11901 explicitly or implicitly, with the GNU linker.  This option does not
11902 have any affect on which ld is called, it only changes what parameters
11903 are passed to that ld.  The ld that is called is determined by the
11904 @option{--with-ld} configure option, GCC's program search path, and
11905 finally by the user's @env{PATH}.  The linker used by GCC can be printed
11906 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
11907 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11908
11909 @item -mhp-ld
11910 @opindex mhp-ld
11911 Use HP ld specific options.  This passes @option{-b} to ld when building
11912 a shared library and passes @option{+Accept TypeMismatch} to ld on all
11913 links.  It is the default when GCC is configured, explicitly or
11914 implicitly, with the HP linker.  This option does not have any affect on
11915 which ld is called, it only changes what parameters are passed to that
11916 ld.  The ld that is called is determined by the @option{--with-ld}
11917 configure option, GCC's program search path, and finally by the user's
11918 @env{PATH}.  The linker used by GCC can be printed using @samp{which
11919 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
11920 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11921
11922 @item -mlong-calls
11923 @opindex mno-long-calls
11924 Generate code that uses long call sequences.  This ensures that a call
11925 is always able to reach linker generated stubs.  The default is to generate
11926 long calls only when the distance from the call site to the beginning
11927 of the function or translation unit, as the case may be, exceeds a
11928 predefined limit set by the branch type being used.  The limits for
11929 normal calls are 7,600,000 and 240,000 bytes, respectively for the
11930 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
11931 240,000 bytes.
11932
11933 Distances are measured from the beginning of functions when using the
11934 @option{-ffunction-sections} option, or when using the @option{-mgas}
11935 and @option{-mno-portable-runtime} options together under HP-UX with
11936 the SOM linker.
11937
11938 It is normally not desirable to use this option as it will degrade
11939 performance.  However, it may be useful in large applications,
11940 particularly when partial linking is used to build the application.
11941
11942 The types of long calls used depends on the capabilities of the
11943 assembler and linker, and the type of code being generated.  The
11944 impact on systems that support long absolute calls, and long pic
11945 symbol-difference or pc-relative calls should be relatively small.
11946 However, an indirect call is used on 32-bit ELF systems in pic code
11947 and it is quite long.
11948
11949 @item -munix=@var{unix-std}
11950 @opindex march
11951 Generate compiler predefines and select a startfile for the specified
11952 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
11953 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
11954 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
11955 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
11956 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
11957 and later.
11958
11959 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
11960 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
11961 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
11962 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
11963 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
11964 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
11965
11966 It is @emph{important} to note that this option changes the interfaces
11967 for various library routines.  It also affects the operational behavior
11968 of the C library.  Thus, @emph{extreme} care is needed in using this
11969 option.
11970
11971 Library code that is intended to operate with more than one UNIX
11972 standard must test, set and restore the variable @var{__xpg4_extended_mask}
11973 as appropriate.  Most GNU software doesn't provide this capability.
11974
11975 @item -nolibdld
11976 @opindex nolibdld
11977 Suppress the generation of link options to search libdld.sl when the
11978 @option{-static} option is specified on HP-UX 10 and later.
11979
11980 @item -static
11981 @opindex static
11982 The HP-UX implementation of setlocale in libc has a dependency on
11983 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
11984 when the @option{-static} option is specified, special link options
11985 are needed to resolve this dependency.
11986
11987 On HP-UX 10 and later, the GCC driver adds the necessary options to
11988 link with libdld.sl when the @option{-static} option is specified.
11989 This causes the resulting binary to be dynamic.  On the 64-bit port,
11990 the linkers generate dynamic binaries by default in any case.  The
11991 @option{-nolibdld} option can be used to prevent the GCC driver from
11992 adding these link options.
11993
11994 @item -threads
11995 @opindex threads
11996 Add support for multithreading with the @dfn{dce thread} library
11997 under HP-UX@.  This option sets flags for both the preprocessor and
11998 linker.
11999 @end table
12000
12001 @node i386 and x86-64 Options
12002 @subsection Intel 386 and AMD x86-64 Options
12003 @cindex i386 Options
12004 @cindex x86-64 Options
12005 @cindex Intel 386 Options
12006 @cindex AMD x86-64 Options
12007
12008 These @samp{-m} options are defined for the i386 and x86-64 family of
12009 computers:
12010
12011 @table @gcctabopt
12012 @item -mtune=@var{cpu-type}
12013 @opindex mtune
12014 Tune to @var{cpu-type} everything applicable about the generated code, except
12015 for the ABI and the set of available instructions.  The choices for
12016 @var{cpu-type} are:
12017 @table @emph
12018 @item generic
12019 Produce code optimized for the most common IA32/@/AMD64/@/EM64T processors.
12020 If you know the CPU on which your code will run, then you should use
12021 the corresponding @option{-mtune} option instead of
12022 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
12023 of your application will have, then you should use this option.
12024
12025 As new processors are deployed in the marketplace, the behavior of this
12026 option will change.  Therefore, if you upgrade to a newer version of
12027 GCC, the code generated option will change to reflect the processors
12028 that were most common when that version of GCC was released.
12029
12030 There is no @option{-march=generic} option because @option{-march}
12031 indicates the instruction set the compiler can use, and there is no
12032 generic instruction set applicable to all processors.  In contrast,
12033 @option{-mtune} indicates the processor (or, in this case, collection of
12034 processors) for which the code is optimized.
12035 @item native
12036 This selects the CPU to tune for at compilation time by determining
12037 the processor type of the compiling machine.  Using @option{-mtune=native}
12038 will produce code optimized for the local machine under the constraints
12039 of the selected instruction set.  Using @option{-march=native} will
12040 enable all instruction subsets supported by the local machine (hence
12041 the result might not run on different machines).
12042 @item i386
12043 Original Intel's i386 CPU@.
12044 @item i486
12045 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
12046 @item i586, pentium
12047 Intel Pentium CPU with no MMX support.
12048 @item pentium-mmx
12049 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
12050 @item pentiumpro
12051 Intel PentiumPro CPU@.
12052 @item i686
12053 Same as @code{generic}, but when used as @code{march} option, PentiumPro
12054 instruction set will be used, so the code will run on all i686 family chips.
12055 @item pentium2
12056 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
12057 @item pentium3, pentium3m
12058 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
12059 support.
12060 @item pentium-m
12061 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
12062 support.  Used by Centrino notebooks.
12063 @item pentium4, pentium4m
12064 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
12065 @item prescott
12066 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
12067 set support.
12068 @item nocona
12069 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
12070 SSE2 and SSE3 instruction set support.
12071 @item core2
12072 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12073 instruction set support.
12074 @item corei7
12075 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
12076 and SSE4.2 instruction set support.
12077 @item corei7-avx
12078 Intel Core i7 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
12079 SSE4.1, SSE4.2, AVX, AES and PCLMUL instruction set support.
12080 @item atom
12081 Intel Atom CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
12082 instruction set support.
12083 @item k6
12084 AMD K6 CPU with MMX instruction set support.
12085 @item k6-2, k6-3
12086 Improved versions of AMD K6 CPU with MMX and 3DNow!@: instruction set support.
12087 @item athlon, athlon-tbird
12088 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3DNow!@: and SSE prefetch instructions
12089 support.
12090 @item athlon-4, athlon-xp, athlon-mp
12091 Improved AMD Athlon CPU with MMX, 3DNow!, enhanced 3DNow!@: and full SSE
12092 instruction set support.
12093 @item k8, opteron, athlon64, athlon-fx
12094 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
12095 MMX, SSE, SSE2, 3DNow!, enhanced 3DNow!@: and 64-bit instruction set extensions.)
12096 @item k8-sse3, opteron-sse3, athlon64-sse3
12097 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
12098 @item amdfam10, barcelona
12099 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
12100 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3DNow!, enhanced 3DNow!, ABM and 64-bit
12101 instruction set extensions.)
12102 @item winchip-c6
12103 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
12104 set support.
12105 @item winchip2
12106 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3DNow!@:
12107 instruction set support.
12108 @item c3
12109 Via C3 CPU with MMX and 3DNow!@: instruction set support.  (No scheduling is
12110 implemented for this chip.)
12111 @item c3-2
12112 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
12113 implemented for this chip.)
12114 @item geode
12115 Embedded AMD CPU with MMX and 3DNow!@: instruction set support.
12116 @end table
12117
12118 While picking a specific @var{cpu-type} will schedule things appropriately
12119 for that particular chip, the compiler will not generate any code that
12120 does not run on the i386 without the @option{-march=@var{cpu-type}} option
12121 being used.
12122
12123 @item -march=@var{cpu-type}
12124 @opindex march
12125 Generate instructions for the machine type @var{cpu-type}.  The choices
12126 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
12127 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
12128
12129 @item -mcpu=@var{cpu-type}
12130 @opindex mcpu
12131 A deprecated synonym for @option{-mtune}.
12132
12133 @item -mfpmath=@var{unit}
12134 @opindex mfpmath
12135 Generate floating point arithmetics for selected unit @var{unit}.  The choices
12136 for @var{unit} are:
12137
12138 @table @samp
12139 @item 387
12140 Use the standard 387 floating point coprocessor present majority of chips and
12141 emulated otherwise.  Code compiled with this option will run almost everywhere.
12142 The temporary results are computed in 80bit precision instead of precision
12143 specified by the type resulting in slightly different results compared to most
12144 of other chips.  See @option{-ffloat-store} for more detailed description.
12145
12146 This is the default choice for i386 compiler.
12147
12148 @item sse
12149 Use scalar floating point instructions present in the SSE instruction set.
12150 This instruction set is supported by Pentium3 and newer chips, in the AMD line
12151 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
12152 instruction set supports only single precision arithmetics, thus the double and
12153 extended precision arithmetics is still done using 387.  Later version, present
12154 only in Pentium4 and the future AMD x86-64 chips supports double precision
12155 arithmetics too.
12156
12157 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
12158 or @option{-msse2} switches to enable SSE extensions and make this option
12159 effective.  For the x86-64 compiler, these extensions are enabled by default.
12160
12161 The resulting code should be considerably faster in the majority of cases and avoid
12162 the numerical instability problems of 387 code, but may break some existing
12163 code that expects temporaries to be 80bit.
12164
12165 This is the default choice for the x86-64 compiler.
12166
12167 @item sse,387
12168 @itemx sse+387
12169 @itemx both
12170 Attempt to utilize both instruction sets at once.  This effectively double the
12171 amount of available registers and on chips with separate execution units for
12172 387 and SSE the execution resources too.  Use this option with care, as it is
12173 still experimental, because the GCC register allocator does not model separate
12174 functional units well resulting in instable performance.
12175 @end table
12176
12177 @item -masm=@var{dialect}
12178 @opindex masm=@var{dialect}
12179 Output asm instructions using selected @var{dialect}.  Supported
12180 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
12181 not support @samp{intel}.
12182
12183 @item -mieee-fp
12184 @itemx -mno-ieee-fp
12185 @opindex mieee-fp
12186 @opindex mno-ieee-fp
12187 Control whether or not the compiler uses IEEE floating point
12188 comparisons.  These handle correctly the case where the result of a
12189 comparison is unordered.
12190
12191 @item -msoft-float
12192 @opindex msoft-float
12193 Generate output containing library calls for floating point.
12194 @strong{Warning:} the requisite libraries are not part of GCC@.
12195 Normally the facilities of the machine's usual C compiler are used, but
12196 this can't be done directly in cross-compilation.  You must make your
12197 own arrangements to provide suitable library functions for
12198 cross-compilation.
12199
12200 On machines where a function returns floating point results in the 80387
12201 register stack, some floating point opcodes may be emitted even if
12202 @option{-msoft-float} is used.
12203
12204 @item -mno-fp-ret-in-387
12205 @opindex mno-fp-ret-in-387
12206 Do not use the FPU registers for return values of functions.
12207
12208 The usual calling convention has functions return values of types
12209 @code{float} and @code{double} in an FPU register, even if there
12210 is no FPU@.  The idea is that the operating system should emulate
12211 an FPU@.
12212
12213 The option @option{-mno-fp-ret-in-387} causes such values to be returned
12214 in ordinary CPU registers instead.
12215
12216 @item -mno-fancy-math-387
12217 @opindex mno-fancy-math-387
12218 Some 387 emulators do not support the @code{sin}, @code{cos} and
12219 @code{sqrt} instructions for the 387.  Specify this option to avoid
12220 generating those instructions.  This option is the default on FreeBSD,
12221 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
12222 indicates that the target CPU will always have an FPU and so the
12223 instruction will not need emulation.  As of revision 2.6.1, these
12224 instructions are not generated unless you also use the
12225 @option{-funsafe-math-optimizations} switch.
12226
12227 @item -malign-double
12228 @itemx -mno-align-double
12229 @opindex malign-double
12230 @opindex mno-align-double
12231 Control whether GCC aligns @code{double}, @code{long double}, and
12232 @code{long long} variables on a two word boundary or a one word
12233 boundary.  Aligning @code{double} variables on a two word boundary will
12234 produce code that runs somewhat faster on a @samp{Pentium} at the
12235 expense of more memory.
12236
12237 On x86-64, @option{-malign-double} is enabled by default.
12238
12239 @strong{Warning:} if you use the @option{-malign-double} switch,
12240 structures containing the above types will be aligned differently than
12241 the published application binary interface specifications for the 386
12242 and will not be binary compatible with structures in code compiled
12243 without that switch.
12244
12245 @item -m96bit-long-double
12246 @itemx -m128bit-long-double
12247 @opindex m96bit-long-double
12248 @opindex m128bit-long-double
12249 These switches control the size of @code{long double} type.  The i386
12250 application binary interface specifies the size to be 96 bits,
12251 so @option{-m96bit-long-double} is the default in 32 bit mode.
12252
12253 Modern architectures (Pentium and newer) would prefer @code{long double}
12254 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
12255 conforming to the ABI, this would not be possible.  So specifying a
12256 @option{-m128bit-long-double} will align @code{long double}
12257 to a 16 byte boundary by padding the @code{long double} with an additional
12258 32 bit zero.
12259
12260 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
12261 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
12262
12263 Notice that neither of these options enable any extra precision over the x87
12264 standard of 80 bits for a @code{long double}.
12265
12266 @strong{Warning:} if you override the default value for your target ABI, the
12267 structures and arrays containing @code{long double} variables will change
12268 their size as well as function calling convention for function taking
12269 @code{long double} will be modified.  Hence they will not be binary
12270 compatible with arrays or structures in code compiled without that switch.
12271
12272 @item -mlarge-data-threshold=@var{number}
12273 @opindex mlarge-data-threshold=@var{number}
12274 When @option{-mcmodel=medium} is specified, the data greater than
12275 @var{threshold} are placed in large data section.  This value must be the
12276 same across all object linked into the binary and defaults to 65535.
12277
12278 @item -mrtd
12279 @opindex mrtd
12280 Use a different function-calling convention, in which functions that
12281 take a fixed number of arguments return with the @code{ret} @var{num}
12282 instruction, which pops their arguments while returning.  This saves one
12283 instruction in the caller since there is no need to pop the arguments
12284 there.
12285
12286 You can specify that an individual function is called with this calling
12287 sequence with the function attribute @samp{stdcall}.  You can also
12288 override the @option{-mrtd} option by using the function attribute
12289 @samp{cdecl}.  @xref{Function Attributes}.
12290
12291 @strong{Warning:} this calling convention is incompatible with the one
12292 normally used on Unix, so you cannot use it if you need to call
12293 libraries compiled with the Unix compiler.
12294
12295 Also, you must provide function prototypes for all functions that
12296 take variable numbers of arguments (including @code{printf});
12297 otherwise incorrect code will be generated for calls to those
12298 functions.
12299
12300 In addition, seriously incorrect code will result if you call a
12301 function with too many arguments.  (Normally, extra arguments are
12302 harmlessly ignored.)
12303
12304 @item -mregparm=@var{num}
12305 @opindex mregparm
12306 Control how many registers are used to pass integer arguments.  By
12307 default, no registers are used to pass arguments, and at most 3
12308 registers can be used.  You can control this behavior for a specific
12309 function by using the function attribute @samp{regparm}.
12310 @xref{Function Attributes}.
12311
12312 @strong{Warning:} if you use this switch, and
12313 @var{num} is nonzero, then you must build all modules with the same
12314 value, including any libraries.  This includes the system libraries and
12315 startup modules.
12316
12317 @item -msseregparm
12318 @opindex msseregparm
12319 Use SSE register passing conventions for float and double arguments
12320 and return values.  You can control this behavior for a specific
12321 function by using the function attribute @samp{sseregparm}.
12322 @xref{Function Attributes}.
12323
12324 @strong{Warning:} if you use this switch then you must build all
12325 modules with the same value, including any libraries.  This includes
12326 the system libraries and startup modules.
12327
12328 @item -mvect8-ret-in-mem
12329 @opindex mvect8-ret-in-mem
12330 Return 8-byte vectors in memory instead of MMX registers.  This is the
12331 default on Solaris@tie{}8 and 9 and VxWorks to match the ABI of the Sun
12332 Studio compilers until version 12.  Later compiler versions (starting
12333 with Studio 12 Update@tie{}1) follow the ABI used by other x86 targets, which
12334 is the default on Solaris@tie{}10 and later.  @emph{Only} use this option if
12335 you need to remain compatible with existing code produced by those
12336 previous compiler versions or older versions of GCC.
12337
12338 @item -mpc32
12339 @itemx -mpc64
12340 @itemx -mpc80
12341 @opindex mpc32
12342 @opindex mpc64
12343 @opindex mpc80
12344
12345 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
12346 is specified, the significands of results of floating-point operations are
12347 rounded to 24 bits (single precision); @option{-mpc64} rounds the
12348 significands of results of floating-point operations to 53 bits (double
12349 precision) and @option{-mpc80} rounds the significands of results of
12350 floating-point operations to 64 bits (extended double precision), which is
12351 the default.  When this option is used, floating-point operations in higher
12352 precisions are not available to the programmer without setting the FPU
12353 control word explicitly.
12354
12355 Setting the rounding of floating-point operations to less than the default
12356 80 bits can speed some programs by 2% or more.  Note that some mathematical
12357 libraries assume that extended precision (80 bit) floating-point operations
12358 are enabled by default; routines in such libraries could suffer significant
12359 loss of accuracy, typically through so-called "catastrophic cancellation",
12360 when this option is used to set the precision to less than extended precision.
12361
12362 @item -mstackrealign
12363 @opindex mstackrealign
12364 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
12365 option will generate an alternate prologue and epilogue that realigns the
12366 runtime stack if necessary.  This supports mixing legacy codes that keep
12367 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
12368 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
12369 applicable to individual functions.
12370
12371 @item -mpreferred-stack-boundary=@var{num}
12372 @opindex mpreferred-stack-boundary
12373 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
12374 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
12375 the default is 4 (16 bytes or 128 bits).
12376
12377 @item -mincoming-stack-boundary=@var{num}
12378 @opindex mincoming-stack-boundary
12379 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
12380 boundary.  If @option{-mincoming-stack-boundary} is not specified,
12381 the one specified by @option{-mpreferred-stack-boundary} will be used.
12382
12383 On Pentium and PentiumPro, @code{double} and @code{long double} values
12384 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
12385 suffer significant run time performance penalties.  On Pentium III, the
12386 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
12387 properly if it is not 16 byte aligned.
12388
12389 To ensure proper alignment of this values on the stack, the stack boundary
12390 must be as aligned as that required by any value stored on the stack.
12391 Further, every function must be generated such that it keeps the stack
12392 aligned.  Thus calling a function compiled with a higher preferred
12393 stack boundary from a function compiled with a lower preferred stack
12394 boundary will most likely misalign the stack.  It is recommended that
12395 libraries that use callbacks always use the default setting.
12396
12397 This extra alignment does consume extra stack space, and generally
12398 increases code size.  Code that is sensitive to stack space usage, such
12399 as embedded systems and operating system kernels, may want to reduce the
12400 preferred alignment to @option{-mpreferred-stack-boundary=2}.
12401
12402 @item -mmmx
12403 @itemx -mno-mmx
12404 @itemx -msse
12405 @itemx -mno-sse
12406 @itemx -msse2
12407 @itemx -mno-sse2
12408 @itemx -msse3
12409 @itemx -mno-sse3
12410 @itemx -mssse3
12411 @itemx -mno-ssse3
12412 @itemx -msse4.1
12413 @need 800
12414 @itemx -mno-sse4.1
12415 @itemx -msse4.2
12416 @itemx -mno-sse4.2
12417 @itemx -msse4
12418 @itemx -mno-sse4
12419 @itemx -mavx
12420 @itemx -mno-avx
12421 @itemx -maes
12422 @itemx -mno-aes
12423 @itemx -mpclmul
12424 @need 800
12425 @itemx -mno-pclmul
12426 @itemx -mfsgsbase
12427 @itemx -mno-fsgsbase
12428 @itemx -mrdrnd
12429 @itemx -mno-rdrnd
12430 @itemx -mf16c
12431 @itemx -mno-f16c
12432 @itemx -msse4a
12433 @itemx -mno-sse4a
12434 @itemx -mfma4
12435 @need 800
12436 @itemx -mno-fma4
12437 @itemx -mxop
12438 @itemx -mno-xop
12439 @itemx -mlwp
12440 @itemx -mno-lwp
12441 @itemx -m3dnow
12442 @itemx -mno-3dnow
12443 @itemx -mpopcnt
12444 @itemx -mno-popcnt
12445 @itemx -mabm
12446 @itemx -mno-abm
12447 @itemx -mbmi
12448 @itemx -mno-bmi
12449 @itemx -mtbm
12450 @itemx -mno-tbm
12451 @opindex mmmx
12452 @opindex mno-mmx
12453 @opindex msse
12454 @opindex mno-sse
12455 @opindex m3dnow
12456 @opindex mno-3dnow
12457 These switches enable or disable the use of instructions in the MMX,
12458 SSE, SSE2, SSE3, SSSE3, SSE4.1, AVX, AES, PCLMUL, FSGSBASE, RDRND,
12459 F16C, SSE4A, FMA4, XOP, LWP, ABM, BMI, or 3DNow!@: extended instruction sets.
12460 These extensions are also available as built-in functions: see
12461 @ref{X86 Built-in Functions}, for details of the functions enabled and
12462 disabled by these switches.
12463
12464 To have SSE/SSE2 instructions generated automatically from floating-point
12465 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
12466
12467 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
12468 generates new AVX instructions or AVX equivalence for all SSEx instructions
12469 when needed.
12470
12471 These options will enable GCC to use these extended instructions in
12472 generated code, even without @option{-mfpmath=sse}.  Applications which
12473 perform runtime CPU detection must compile separate files for each
12474 supported architecture, using the appropriate flags.  In particular,
12475 the file containing the CPU detection code should be compiled without
12476 these options.
12477
12478 @item -mfused-madd
12479 @itemx -mno-fused-madd
12480 @opindex mfused-madd
12481 @opindex mno-fused-madd
12482 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12483 instructions.  The default is to use these instructions.
12484
12485 @item -mcld
12486 @opindex mcld
12487 This option instructs GCC to emit a @code{cld} instruction in the prologue
12488 of functions that use string instructions.  String instructions depend on
12489 the DF flag to select between autoincrement or autodecrement mode.  While the
12490 ABI specifies the DF flag to be cleared on function entry, some operating
12491 systems violate this specification by not clearing the DF flag in their
12492 exception dispatchers.  The exception handler can be invoked with the DF flag
12493 set which leads to wrong direction mode, when string instructions are used.
12494 This option can be enabled by default on 32-bit x86 targets by configuring
12495 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
12496 instructions can be suppressed with the @option{-mno-cld} compiler option
12497 in this case.
12498
12499 @item -mvzeroupper
12500 @opindex mvzeroupper
12501 This option instructs GCC to emit a @code{vzeroupper} instruction
12502 before a transfer of control flow out of the function to minimize
12503 AVX to SSE transition penalty as well as remove unnecessary zeroupper 
12504 intrinsics.
12505
12506 @item -mcx16
12507 @opindex mcx16
12508 This option will enable GCC to use CMPXCHG16B instruction in generated code.
12509 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
12510 data types.  This is useful for high resolution counters that could be updated
12511 by multiple processors (or cores).  This instruction is generated as part of
12512 atomic built-in functions: see @ref{Atomic Builtins} for details.
12513
12514 @item -msahf
12515 @opindex msahf
12516 This option will enable GCC to use SAHF instruction in generated 64-bit code.
12517 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
12518 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
12519 SAHF are load and store instructions, respectively, for certain status flags.
12520 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
12521 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
12522
12523 @item -mmovbe
12524 @opindex mmovbe
12525 This option will enable GCC to use movbe instruction to implement
12526 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
12527
12528 @item -mcrc32
12529 @opindex mcrc32
12530 This option will enable built-in functions, @code{__builtin_ia32_crc32qi},
12531 @code{__builtin_ia32_crc32hi}. @code{__builtin_ia32_crc32si} and
12532 @code{__builtin_ia32_crc32di} to generate the crc32 machine instruction.
12533
12534 @item -mrecip
12535 @opindex mrecip
12536 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
12537 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Raphson step
12538 to increase precision instead of DIVSS and SQRTSS (and their vectorized
12539 variants) for single precision floating point arguments.  These instructions
12540 are generated only when @option{-funsafe-math-optimizations} is enabled
12541 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
12542 Note that while the throughput of the sequence is higher than the throughput
12543 of the non-reciprocal instruction, the precision of the sequence can be
12544 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
12545
12546 Note that GCC implements 1.0f/sqrtf(x) in terms of RSQRTSS (or RSQRTPS)
12547 already with @option{-ffast-math} (or the above option combination), and
12548 doesn't need @option{-mrecip}.
12549
12550 @item -mveclibabi=@var{type}
12551 @opindex mveclibabi
12552 Specifies the ABI type to use for vectorizing intrinsics using an
12553 external library.  Supported types are @code{svml} for the Intel short
12554 vector math library and @code{acml} for the AMD math core library style
12555 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
12556 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
12557 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
12558 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
12559 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
12560 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
12561 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
12562 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
12563 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
12564 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
12565 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
12566 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
12567 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
12568 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
12569 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
12570 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
12571 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
12572 compatible library will have to be specified at link time.
12573
12574 @item -mabi=@var{name}
12575 @opindex mabi
12576 Generate code for the specified calling convention.  Permissible values
12577 are: @samp{sysv} for the ABI used on GNU/Linux and other systems and
12578 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
12579 ABI when targeting Windows.  On all other systems, the default is the
12580 SYSV ABI.  You can control this behavior for a specific function by
12581 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
12582 @xref{Function Attributes}.
12583
12584 @item -mpush-args
12585 @itemx -mno-push-args
12586 @opindex mpush-args
12587 @opindex mno-push-args
12588 Use PUSH operations to store outgoing parameters.  This method is shorter
12589 and usually equally fast as method using SUB/MOV operations and is enabled
12590 by default.  In some cases disabling it may improve performance because of
12591 improved scheduling and reduced dependencies.
12592
12593 @item -maccumulate-outgoing-args
12594 @opindex maccumulate-outgoing-args
12595 If enabled, the maximum amount of space required for outgoing arguments will be
12596 computed in the function prologue.  This is faster on most modern CPUs
12597 because of reduced dependencies, improved scheduling and reduced stack usage
12598 when preferred stack boundary is not equal to 2.  The drawback is a notable
12599 increase in code size.  This switch implies @option{-mno-push-args}.
12600
12601 @item -mthreads
12602 @opindex mthreads
12603 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
12604 on thread-safe exception handling must compile and link all code with the
12605 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
12606 @option{-D_MT}; when linking, it links in a special thread helper library
12607 @option{-lmingwthrd} which cleans up per thread exception handling data.
12608
12609 @item -mno-align-stringops
12610 @opindex mno-align-stringops
12611 Do not align destination of inlined string operations.  This switch reduces
12612 code size and improves performance in case the destination is already aligned,
12613 but GCC doesn't know about it.
12614
12615 @item -minline-all-stringops
12616 @opindex minline-all-stringops
12617 By default GCC inlines string operations only when destination is known to be
12618 aligned at least to 4 byte boundary.  This enables more inlining, increase code
12619 size, but may improve performance of code that depends on fast memcpy, strlen
12620 and memset for short lengths.
12621
12622 @item -minline-stringops-dynamically
12623 @opindex minline-stringops-dynamically
12624 For string operation of unknown size, inline runtime checks so for small
12625 blocks inline code is used, while for large blocks library call is used.
12626
12627 @item -mstringop-strategy=@var{alg}
12628 @opindex mstringop-strategy=@var{alg}
12629 Overwrite internal decision heuristic about particular algorithm to inline
12630 string operation with.  The allowed values are @code{rep_byte},
12631 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
12632 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
12633 expanding inline loop, @code{libcall} for always expanding library call.
12634
12635 @item -momit-leaf-frame-pointer
12636 @opindex momit-leaf-frame-pointer
12637 Don't keep the frame pointer in a register for leaf functions.  This
12638 avoids the instructions to save, set up and restore frame pointers and
12639 makes an extra register available in leaf functions.  The option
12640 @option{-fomit-frame-pointer} removes the frame pointer for all functions
12641 which might make debugging harder.
12642
12643 @item -mtls-direct-seg-refs
12644 @itemx -mno-tls-direct-seg-refs
12645 @opindex mtls-direct-seg-refs
12646 Controls whether TLS variables may be accessed with offsets from the
12647 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
12648 or whether the thread base pointer must be added.  Whether or not this
12649 is legal depends on the operating system, and whether it maps the
12650 segment to cover the entire TLS area.
12651
12652 For systems that use GNU libc, the default is on.
12653
12654 @item -msse2avx
12655 @itemx -mno-sse2avx
12656 @opindex msse2avx
12657 Specify that the assembler should encode SSE instructions with VEX
12658 prefix.  The option @option{-mavx} turns this on by default.
12659
12660 @item -mfentry
12661 @itemx -mno-fentry
12662 @opindex mfentry
12663 If profiling is active @option{-pg} put the profiling
12664 counter call before prologue.
12665 Note: On x86 architectures the attribute @code{ms_hook_prologue}
12666 isn't possible at the moment for @option{-mfentry} and @option{-pg}.
12667
12668 @item -m8bit-idiv
12669 @itemx -mno-8bit-idiv
12670 @opindex 8bit-idiv
12671 On some processors, like Intel Atom, 8bit unsigned integer divide is
12672 much faster than 32bit/64bit integer divide.  This option will generate a
12673 runt-time check.  If both dividend and divisor are within range of 0
12674 to 255, 8bit unsigned integer divide will be used instead of
12675 32bit/64bit integer divide.
12676
12677 @item -mavx256-split-unaligned-load
12678 @item -mavx256-split-unaligned-store
12679 @opindex avx256-split-unaligned-load
12680 @opindex avx256-split-unaligned-store
12681 Split 32-byte AVX unaligned load and store.
12682
12683 @end table
12684
12685 These @samp{-m} switches are supported in addition to the above
12686 on AMD x86-64 processors in 64-bit environments.
12687
12688 @table @gcctabopt
12689 @item -m32
12690 @itemx -m64
12691 @opindex m32
12692 @opindex m64
12693 Generate code for a 32-bit or 64-bit environment.
12694 The 32-bit environment sets int, long and pointer to 32 bits and
12695 generates code that runs on any i386 system.
12696 The 64-bit environment sets int to 32 bits and long and pointer
12697 to 64 bits and generates code for AMD's x86-64 architecture. For
12698 darwin only the -m64 option turns off the @option{-fno-pic} and
12699 @option{-mdynamic-no-pic} options.
12700
12701 @item -mno-red-zone
12702 @opindex mno-red-zone
12703 Do not use a so called red zone for x86-64 code.  The red zone is mandated
12704 by the x86-64 ABI, it is a 128-byte area beyond the location of the
12705 stack pointer that will not be modified by signal or interrupt handlers
12706 and therefore can be used for temporary data without adjusting the stack
12707 pointer.  The flag @option{-mno-red-zone} disables this red zone.
12708
12709 @item -mcmodel=small
12710 @opindex mcmodel=small
12711 Generate code for the small code model: the program and its symbols must
12712 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
12713 Programs can be statically or dynamically linked.  This is the default
12714 code model.
12715
12716 @item -mcmodel=kernel
12717 @opindex mcmodel=kernel
12718 Generate code for the kernel code model.  The kernel runs in the
12719 negative 2 GB of the address space.
12720 This model has to be used for Linux kernel code.
12721
12722 @item -mcmodel=medium
12723 @opindex mcmodel=medium
12724 Generate code for the medium model: The program is linked in the lower 2
12725 GB of the address space.  Small symbols are also placed there.  Symbols
12726 with sizes larger than @option{-mlarge-data-threshold} are put into
12727 large data or bss sections and can be located above 2GB.  Programs can
12728 be statically or dynamically linked.
12729
12730 @item -mcmodel=large
12731 @opindex mcmodel=large
12732 Generate code for the large model: This model makes no assumptions
12733 about addresses and sizes of sections.
12734 @end table
12735
12736 @node i386 and x86-64 Windows Options
12737 @subsection i386 and x86-64 Windows Options
12738 @cindex i386 and x86-64 Windows Options
12739
12740 These additional options are available for Windows targets:
12741
12742 @table @gcctabopt
12743 @item -mconsole
12744 @opindex mconsole
12745 This option is available for Cygwin and MinGW targets.  It
12746 specifies that a console application is to be generated, by
12747 instructing the linker to set the PE header subsystem type
12748 required for console applications.
12749 This is the default behavior for Cygwin and MinGW targets.
12750
12751 @item -mdll
12752 @opindex mdll
12753 This option is available for Cygwin and MinGW targets.  It
12754 specifies that a DLL - a dynamic link library - is to be
12755 generated, enabling the selection of the required runtime
12756 startup object and entry point.
12757
12758 @item -mnop-fun-dllimport
12759 @opindex mnop-fun-dllimport
12760 This option is available for Cygwin and MinGW targets.  It
12761 specifies that the dllimport attribute should be ignored.
12762
12763 @item -mthread
12764 @opindex mthread
12765 This option is available for MinGW targets. It specifies
12766 that MinGW-specific thread support is to be used.
12767
12768 @item -municode
12769 @opindex municode
12770 This option is available for mingw-w64 targets.  It specifies
12771 that the UNICODE macro is getting pre-defined and that the
12772 unicode capable runtime startup code is chosen.
12773
12774 @item -mwin32
12775 @opindex mwin32
12776 This option is available for Cygwin and MinGW targets.  It
12777 specifies that the typical Windows pre-defined macros are to
12778 be set in the pre-processor, but does not influence the choice
12779 of runtime library/startup code.
12780
12781 @item -mwindows
12782 @opindex mwindows
12783 This option is available for Cygwin and MinGW targets.  It
12784 specifies that a GUI application is to be generated by
12785 instructing the linker to set the PE header subsystem type
12786 appropriately.
12787
12788 @item -fno-set-stack-executable
12789 @opindex fno-set-stack-executable
12790 This option is available for MinGW targets. It specifies that
12791 the executable flag for stack used by nested functions isn't
12792 set. This is necessary for binaries running in kernel mode of
12793 Windows, as there the user32 API, which is used to set executable
12794 privileges, isn't available.
12795
12796 @item -mpe-aligned-commons
12797 @opindex mpe-aligned-commons
12798 This option is available for Cygwin and MinGW targets.  It
12799 specifies that the GNU extension to the PE file format that
12800 permits the correct alignment of COMMON variables should be
12801 used when generating code.  It will be enabled by default if
12802 GCC detects that the target assembler found during configuration
12803 supports the feature.
12804 @end table
12805
12806 See also under @ref{i386 and x86-64 Options} for standard options.
12807
12808 @node IA-64 Options
12809 @subsection IA-64 Options
12810 @cindex IA-64 Options
12811
12812 These are the @samp{-m} options defined for the Intel IA-64 architecture.
12813
12814 @table @gcctabopt
12815 @item -mbig-endian
12816 @opindex mbig-endian
12817 Generate code for a big endian target.  This is the default for HP-UX@.
12818
12819 @item -mlittle-endian
12820 @opindex mlittle-endian
12821 Generate code for a little endian target.  This is the default for AIX5
12822 and GNU/Linux.
12823
12824 @item -mgnu-as
12825 @itemx -mno-gnu-as
12826 @opindex mgnu-as
12827 @opindex mno-gnu-as
12828 Generate (or don't) code for the GNU assembler.  This is the default.
12829 @c Also, this is the default if the configure option @option{--with-gnu-as}
12830 @c is used.
12831
12832 @item -mgnu-ld
12833 @itemx -mno-gnu-ld
12834 @opindex mgnu-ld
12835 @opindex mno-gnu-ld
12836 Generate (or don't) code for the GNU linker.  This is the default.
12837 @c Also, this is the default if the configure option @option{--with-gnu-ld}
12838 @c is used.
12839
12840 @item -mno-pic
12841 @opindex mno-pic
12842 Generate code that does not use a global pointer register.  The result
12843 is not position independent code, and violates the IA-64 ABI@.
12844
12845 @item -mvolatile-asm-stop
12846 @itemx -mno-volatile-asm-stop
12847 @opindex mvolatile-asm-stop
12848 @opindex mno-volatile-asm-stop
12849 Generate (or don't) a stop bit immediately before and after volatile asm
12850 statements.
12851
12852 @item -mregister-names
12853 @itemx -mno-register-names
12854 @opindex mregister-names
12855 @opindex mno-register-names
12856 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
12857 the stacked registers.  This may make assembler output more readable.
12858
12859 @item -mno-sdata
12860 @itemx -msdata
12861 @opindex mno-sdata
12862 @opindex msdata
12863 Disable (or enable) optimizations that use the small data section.  This may
12864 be useful for working around optimizer bugs.
12865
12866 @item -mconstant-gp
12867 @opindex mconstant-gp
12868 Generate code that uses a single constant global pointer value.  This is
12869 useful when compiling kernel code.
12870
12871 @item -mauto-pic
12872 @opindex mauto-pic
12873 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
12874 This is useful when compiling firmware code.
12875
12876 @item -minline-float-divide-min-latency
12877 @opindex minline-float-divide-min-latency
12878 Generate code for inline divides of floating point values
12879 using the minimum latency algorithm.
12880
12881 @item -minline-float-divide-max-throughput
12882 @opindex minline-float-divide-max-throughput
12883 Generate code for inline divides of floating point values
12884 using the maximum throughput algorithm.
12885
12886 @item -mno-inline-float-divide
12887 @opindex mno-inline-float-divide
12888 Do not generate inline code for divides of floating point values.
12889
12890 @item -minline-int-divide-min-latency
12891 @opindex minline-int-divide-min-latency
12892 Generate code for inline divides of integer values
12893 using the minimum latency algorithm.
12894
12895 @item -minline-int-divide-max-throughput
12896 @opindex minline-int-divide-max-throughput
12897 Generate code for inline divides of integer values
12898 using the maximum throughput algorithm.
12899
12900 @item -mno-inline-int-divide
12901 @opindex mno-inline-int-divide
12902 Do not generate inline code for divides of integer values.
12903
12904 @item -minline-sqrt-min-latency
12905 @opindex minline-sqrt-min-latency
12906 Generate code for inline square roots
12907 using the minimum latency algorithm.
12908
12909 @item -minline-sqrt-max-throughput
12910 @opindex minline-sqrt-max-throughput
12911 Generate code for inline square roots
12912 using the maximum throughput algorithm.
12913
12914 @item -mno-inline-sqrt
12915 @opindex mno-inline-sqrt
12916 Do not generate inline code for sqrt.
12917
12918 @item -mfused-madd
12919 @itemx -mno-fused-madd
12920 @opindex mfused-madd
12921 @opindex mno-fused-madd
12922 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
12923 instructions.  The default is to use these instructions.
12924
12925 @item -mno-dwarf2-asm
12926 @itemx -mdwarf2-asm
12927 @opindex mno-dwarf2-asm
12928 @opindex mdwarf2-asm
12929 Don't (or do) generate assembler code for the DWARF2 line number debugging
12930 info.  This may be useful when not using the GNU assembler.
12931
12932 @item -mearly-stop-bits
12933 @itemx -mno-early-stop-bits
12934 @opindex mearly-stop-bits
12935 @opindex mno-early-stop-bits
12936 Allow stop bits to be placed earlier than immediately preceding the
12937 instruction that triggered the stop bit.  This can improve instruction
12938 scheduling, but does not always do so.
12939
12940 @item -mfixed-range=@var{register-range}
12941 @opindex mfixed-range
12942 Generate code treating the given register range as fixed registers.
12943 A fixed register is one that the register allocator can not use.  This is
12944 useful when compiling kernel code.  A register range is specified as
12945 two registers separated by a dash.  Multiple register ranges can be
12946 specified separated by a comma.
12947
12948 @item -mtls-size=@var{tls-size}
12949 @opindex mtls-size
12950 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
12951 64.
12952
12953 @item -mtune=@var{cpu-type}
12954 @opindex mtune
12955 Tune the instruction scheduling for a particular CPU, Valid values are
12956 itanium, itanium1, merced, itanium2, and mckinley.
12957
12958 @item -milp32
12959 @itemx -mlp64
12960 @opindex milp32
12961 @opindex mlp64
12962 Generate code for a 32-bit or 64-bit environment.
12963 The 32-bit environment sets int, long and pointer to 32 bits.
12964 The 64-bit environment sets int to 32 bits and long and pointer
12965 to 64 bits.  These are HP-UX specific flags.
12966
12967 @item -mno-sched-br-data-spec
12968 @itemx -msched-br-data-spec
12969 @opindex mno-sched-br-data-spec
12970 @opindex msched-br-data-spec
12971 (Dis/En)able data speculative scheduling before reload.
12972 This will result in generation of the ld.a instructions and
12973 the corresponding check instructions (ld.c / chk.a).
12974 The default is 'disable'.
12975
12976 @item -msched-ar-data-spec
12977 @itemx -mno-sched-ar-data-spec
12978 @opindex msched-ar-data-spec
12979 @opindex mno-sched-ar-data-spec
12980 (En/Dis)able data speculative scheduling after reload.
12981 This will result in generation of the ld.a instructions and
12982 the corresponding check instructions (ld.c / chk.a).
12983 The default is 'enable'.
12984
12985 @item -mno-sched-control-spec
12986 @itemx -msched-control-spec
12987 @opindex mno-sched-control-spec
12988 @opindex msched-control-spec
12989 (Dis/En)able control speculative scheduling.  This feature is
12990 available only during region scheduling (i.e.@: before reload).
12991 This will result in generation of the ld.s instructions and
12992 the corresponding check instructions chk.s .
12993 The default is 'disable'.
12994
12995 @item -msched-br-in-data-spec
12996 @itemx -mno-sched-br-in-data-spec
12997 @opindex msched-br-in-data-spec
12998 @opindex mno-sched-br-in-data-spec
12999 (En/Dis)able speculative scheduling of the instructions that
13000 are dependent on the data speculative loads before reload.
13001 This is effective only with @option{-msched-br-data-spec} enabled.
13002 The default is 'enable'.
13003
13004 @item -msched-ar-in-data-spec
13005 @itemx -mno-sched-ar-in-data-spec
13006 @opindex msched-ar-in-data-spec
13007 @opindex mno-sched-ar-in-data-spec
13008 (En/Dis)able speculative scheduling of the instructions that
13009 are dependent on the data speculative loads after reload.
13010 This is effective only with @option{-msched-ar-data-spec} enabled.
13011 The default is 'enable'.
13012
13013 @item -msched-in-control-spec
13014 @itemx -mno-sched-in-control-spec
13015 @opindex msched-in-control-spec
13016 @opindex mno-sched-in-control-spec
13017 (En/Dis)able speculative scheduling of the instructions that
13018 are dependent on the control speculative loads.
13019 This is effective only with @option{-msched-control-spec} enabled.
13020 The default is 'enable'.
13021
13022 @item -mno-sched-prefer-non-data-spec-insns
13023 @itemx -msched-prefer-non-data-spec-insns
13024 @opindex mno-sched-prefer-non-data-spec-insns
13025 @opindex msched-prefer-non-data-spec-insns
13026 If enabled, data speculative instructions will be chosen for schedule
13027 only if there are no other choices at the moment.  This will make
13028 the use of the data speculation much more conservative.
13029 The default is 'disable'.
13030
13031 @item -mno-sched-prefer-non-control-spec-insns
13032 @itemx -msched-prefer-non-control-spec-insns
13033 @opindex mno-sched-prefer-non-control-spec-insns
13034 @opindex msched-prefer-non-control-spec-insns
13035 If enabled, control speculative instructions will be chosen for schedule
13036 only if there are no other choices at the moment.  This will make
13037 the use of the control speculation much more conservative.
13038 The default is 'disable'.
13039
13040 @item -mno-sched-count-spec-in-critical-path
13041 @itemx -msched-count-spec-in-critical-path
13042 @opindex mno-sched-count-spec-in-critical-path
13043 @opindex msched-count-spec-in-critical-path
13044 If enabled, speculative dependencies will be considered during
13045 computation of the instructions priorities.  This will make the use of the
13046 speculation a bit more conservative.
13047 The default is 'disable'.
13048
13049 @item -msched-spec-ldc
13050 @opindex msched-spec-ldc
13051 Use a simple data speculation check.  This option is on by default.
13052
13053 @item -msched-control-spec-ldc
13054 @opindex msched-spec-ldc
13055 Use a simple check for control speculation.  This option is on by default.
13056
13057 @item -msched-stop-bits-after-every-cycle
13058 @opindex msched-stop-bits-after-every-cycle
13059 Place a stop bit after every cycle when scheduling.  This option is on
13060 by default.
13061
13062 @item -msched-fp-mem-deps-zero-cost
13063 @opindex msched-fp-mem-deps-zero-cost
13064 Assume that floating-point stores and loads are not likely to cause a conflict
13065 when placed into the same instruction group.  This option is disabled by
13066 default.
13067
13068 @item -msel-sched-dont-check-control-spec
13069 @opindex msel-sched-dont-check-control-spec
13070 Generate checks for control speculation in selective scheduling.
13071 This flag is disabled by default.
13072
13073 @item -msched-max-memory-insns=@var{max-insns}
13074 @opindex msched-max-memory-insns
13075 Limit on the number of memory insns per instruction group, giving lower
13076 priority to subsequent memory insns attempting to schedule in the same
13077 instruction group. Frequently useful to prevent cache bank conflicts.
13078 The default value is 1.
13079
13080 @item -msched-max-memory-insns-hard-limit
13081 @opindex msched-max-memory-insns-hard-limit
13082 Disallow more than `msched-max-memory-insns' in instruction group.
13083 Otherwise, limit is `soft' meaning that we would prefer non-memory operations
13084 when limit is reached but may still schedule memory operations.
13085
13086 @end table
13087
13088 @node IA-64/VMS Options
13089 @subsection IA-64/VMS Options
13090
13091 These @samp{-m} options are defined for the IA-64/VMS implementations:
13092
13093 @table @gcctabopt
13094 @item -mvms-return-codes
13095 @opindex mvms-return-codes
13096 Return VMS condition codes from main. The default is to return POSIX
13097 style condition (e.g.@ error) codes.
13098
13099 @item -mdebug-main=@var{prefix}
13100 @opindex mdebug-main=@var{prefix}
13101 Flag the first routine whose name starts with @var{prefix} as the main
13102 routine for the debugger.
13103
13104 @item -mmalloc64
13105 @opindex mmalloc64
13106 Default to 64bit memory allocation routines.
13107 @end table
13108
13109 @node LM32 Options
13110 @subsection LM32 Options
13111 @cindex LM32 options
13112
13113 These @option{-m} options are defined for the Lattice Mico32 architecture:
13114
13115 @table @gcctabopt
13116 @item -mbarrel-shift-enabled
13117 @opindex mbarrel-shift-enabled
13118 Enable barrel-shift instructions.
13119
13120 @item -mdivide-enabled
13121 @opindex mdivide-enabled
13122 Enable divide and modulus instructions.
13123
13124 @item -mmultiply-enabled
13125 @opindex multiply-enabled
13126 Enable multiply instructions.
13127
13128 @item -msign-extend-enabled
13129 @opindex msign-extend-enabled
13130 Enable sign extend instructions.
13131
13132 @item -muser-enabled
13133 @opindex muser-enabled
13134 Enable user-defined instructions.
13135
13136 @end table
13137
13138 @node M32C Options
13139 @subsection M32C Options
13140 @cindex M32C options
13141
13142 @table @gcctabopt
13143 @item -mcpu=@var{name}
13144 @opindex mcpu=
13145 Select the CPU for which code is generated.  @var{name} may be one of
13146 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
13147 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
13148 the M32C/80 series.
13149
13150 @item -msim
13151 @opindex msim
13152 Specifies that the program will be run on the simulator.  This causes
13153 an alternate runtime library to be linked in which supports, for
13154 example, file I/O@.  You must not use this option when generating
13155 programs that will run on real hardware; you must provide your own
13156 runtime library for whatever I/O functions are needed.
13157
13158 @item -memregs=@var{number}
13159 @opindex memregs=
13160 Specifies the number of memory-based pseudo-registers GCC will use
13161 during code generation.  These pseudo-registers will be used like real
13162 registers, so there is a tradeoff between GCC's ability to fit the
13163 code into available registers, and the performance penalty of using
13164 memory instead of registers.  Note that all modules in a program must
13165 be compiled with the same value for this option.  Because of that, you
13166 must not use this option with the default runtime libraries gcc
13167 builds.
13168
13169 @end table
13170
13171 @node M32R/D Options
13172 @subsection M32R/D Options
13173 @cindex M32R/D options
13174
13175 These @option{-m} options are defined for Renesas M32R/D architectures:
13176
13177 @table @gcctabopt
13178 @item -m32r2
13179 @opindex m32r2
13180 Generate code for the M32R/2@.
13181
13182 @item -m32rx
13183 @opindex m32rx
13184 Generate code for the M32R/X@.
13185
13186 @item -m32r
13187 @opindex m32r
13188 Generate code for the M32R@.  This is the default.
13189
13190 @item -mmodel=small
13191 @opindex mmodel=small
13192 Assume all objects live in the lower 16MB of memory (so that their addresses
13193 can be loaded with the @code{ld24} instruction), and assume all subroutines
13194 are reachable with the @code{bl} instruction.
13195 This is the default.
13196
13197 The addressability of a particular object can be set with the
13198 @code{model} attribute.
13199
13200 @item -mmodel=medium
13201 @opindex mmodel=medium
13202 Assume objects may be anywhere in the 32-bit address space (the compiler
13203 will generate @code{seth/add3} instructions to load their addresses), and
13204 assume all subroutines are reachable with the @code{bl} instruction.
13205
13206 @item -mmodel=large
13207 @opindex mmodel=large
13208 Assume objects may be anywhere in the 32-bit address space (the compiler
13209 will generate @code{seth/add3} instructions to load their addresses), and
13210 assume subroutines may not be reachable with the @code{bl} instruction
13211 (the compiler will generate the much slower @code{seth/add3/jl}
13212 instruction sequence).
13213
13214 @item -msdata=none
13215 @opindex msdata=none
13216 Disable use of the small data area.  Variables will be put into
13217 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
13218 @code{section} attribute has been specified).
13219 This is the default.
13220
13221 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
13222 Objects may be explicitly put in the small data area with the
13223 @code{section} attribute using one of these sections.
13224
13225 @item -msdata=sdata
13226 @opindex msdata=sdata
13227 Put small global and static data in the small data area, but do not
13228 generate special code to reference them.
13229
13230 @item -msdata=use
13231 @opindex msdata=use
13232 Put small global and static data in the small data area, and generate
13233 special instructions to reference them.
13234
13235 @item -G @var{num}
13236 @opindex G
13237 @cindex smaller data references
13238 Put global and static objects less than or equal to @var{num} bytes
13239 into the small data or bss sections instead of the normal data or bss
13240 sections.  The default value of @var{num} is 8.
13241 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
13242 for this option to have any effect.
13243
13244 All modules should be compiled with the same @option{-G @var{num}} value.
13245 Compiling with different values of @var{num} may or may not work; if it
13246 doesn't the linker will give an error message---incorrect code will not be
13247 generated.
13248
13249 @item -mdebug
13250 @opindex mdebug
13251 Makes the M32R specific code in the compiler display some statistics
13252 that might help in debugging programs.
13253
13254 @item -malign-loops
13255 @opindex malign-loops
13256 Align all loops to a 32-byte boundary.
13257
13258 @item -mno-align-loops
13259 @opindex mno-align-loops
13260 Do not enforce a 32-byte alignment for loops.  This is the default.
13261
13262 @item -missue-rate=@var{number}
13263 @opindex missue-rate=@var{number}
13264 Issue @var{number} instructions per cycle.  @var{number} can only be 1
13265 or 2.
13266
13267 @item -mbranch-cost=@var{number}
13268 @opindex mbranch-cost=@var{number}
13269 @var{number} can only be 1 or 2.  If it is 1 then branches will be
13270 preferred over conditional code, if it is 2, then the opposite will
13271 apply.
13272
13273 @item -mflush-trap=@var{number}
13274 @opindex mflush-trap=@var{number}
13275 Specifies the trap number to use to flush the cache.  The default is
13276 12.  Valid numbers are between 0 and 15 inclusive.
13277
13278 @item -mno-flush-trap
13279 @opindex mno-flush-trap
13280 Specifies that the cache cannot be flushed by using a trap.
13281
13282 @item -mflush-func=@var{name}
13283 @opindex mflush-func=@var{name}
13284 Specifies the name of the operating system function to call to flush
13285 the cache.  The default is @emph{_flush_cache}, but a function call
13286 will only be used if a trap is not available.
13287
13288 @item -mno-flush-func
13289 @opindex mno-flush-func
13290 Indicates that there is no OS function for flushing the cache.
13291
13292 @end table
13293
13294 @node M680x0 Options
13295 @subsection M680x0 Options
13296 @cindex M680x0 options
13297
13298 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
13299 The default settings depend on which architecture was selected when
13300 the compiler was configured; the defaults for the most common choices
13301 are given below.
13302
13303 @table @gcctabopt
13304 @item -march=@var{arch}
13305 @opindex march
13306 Generate code for a specific M680x0 or ColdFire instruction set
13307 architecture.  Permissible values of @var{arch} for M680x0
13308 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
13309 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
13310 architectures are selected according to Freescale's ISA classification
13311 and the permissible values are: @samp{isaa}, @samp{isaaplus},
13312 @samp{isab} and @samp{isac}.
13313
13314 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
13315 code for a ColdFire target.  The @var{arch} in this macro is one of the
13316 @option{-march} arguments given above.
13317
13318 When used together, @option{-march} and @option{-mtune} select code
13319 that runs on a family of similar processors but that is optimized
13320 for a particular microarchitecture.
13321
13322 @item -mcpu=@var{cpu}
13323 @opindex mcpu
13324 Generate code for a specific M680x0 or ColdFire processor.
13325 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
13326 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
13327 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
13328 below, which also classifies the CPUs into families:
13329
13330 @multitable @columnfractions 0.20 0.80
13331 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
13332 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51cn} @samp{51em} @samp{51qe}
13333 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
13334 @item @samp{5206e} @tab @samp{5206e}
13335 @item @samp{5208} @tab @samp{5207} @samp{5208}
13336 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
13337 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
13338 @item @samp{5216} @tab @samp{5214} @samp{5216}
13339 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
13340 @item @samp{5225} @tab @samp{5224} @samp{5225}
13341 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
13342 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
13343 @item @samp{5249} @tab @samp{5249}
13344 @item @samp{5250} @tab @samp{5250}
13345 @item @samp{5271} @tab @samp{5270} @samp{5271}
13346 @item @samp{5272} @tab @samp{5272}
13347 @item @samp{5275} @tab @samp{5274} @samp{5275}
13348 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
13349 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
13350 @item @samp{5307} @tab @samp{5307}
13351 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
13352 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
13353 @item @samp{5407} @tab @samp{5407}
13354 @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}
13355 @end multitable
13356
13357 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
13358 @var{arch} is compatible with @var{cpu}.  Other combinations of
13359 @option{-mcpu} and @option{-march} are rejected.
13360
13361 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
13362 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
13363 where the value of @var{family} is given by the table above.
13364
13365 @item -mtune=@var{tune}
13366 @opindex mtune
13367 Tune the code for a particular microarchitecture, within the
13368 constraints set by @option{-march} and @option{-mcpu}.
13369 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
13370 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
13371 and @samp{cpu32}.  The ColdFire microarchitectures
13372 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
13373
13374 You can also use @option{-mtune=68020-40} for code that needs
13375 to run relatively well on 68020, 68030 and 68040 targets.
13376 @option{-mtune=68020-60} is similar but includes 68060 targets
13377 as well.  These two options select the same tuning decisions as
13378 @option{-m68020-40} and @option{-m68020-60} respectively.
13379
13380 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
13381 when tuning for 680x0 architecture @var{arch}.  It also defines
13382 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
13383 option is used.  If gcc is tuning for a range of architectures,
13384 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
13385 it defines the macros for every architecture in the range.
13386
13387 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
13388 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
13389 of the arguments given above.
13390
13391 @item -m68000
13392 @itemx -mc68000
13393 @opindex m68000
13394 @opindex mc68000
13395 Generate output for a 68000.  This is the default
13396 when the compiler is configured for 68000-based systems.
13397 It is equivalent to @option{-march=68000}.
13398
13399 Use this option for microcontrollers with a 68000 or EC000 core,
13400 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
13401
13402 @item -m68010
13403 @opindex m68010
13404 Generate output for a 68010.  This is the default
13405 when the compiler is configured for 68010-based systems.
13406 It is equivalent to @option{-march=68010}.
13407
13408 @item -m68020
13409 @itemx -mc68020
13410 @opindex m68020
13411 @opindex mc68020
13412 Generate output for a 68020.  This is the default
13413 when the compiler is configured for 68020-based systems.
13414 It is equivalent to @option{-march=68020}.
13415
13416 @item -m68030
13417 @opindex m68030
13418 Generate output for a 68030.  This is the default when the compiler is
13419 configured for 68030-based systems.  It is equivalent to
13420 @option{-march=68030}.
13421
13422 @item -m68040
13423 @opindex m68040
13424 Generate output for a 68040.  This is the default when the compiler is
13425 configured for 68040-based systems.  It is equivalent to
13426 @option{-march=68040}.
13427
13428 This option inhibits the use of 68881/68882 instructions that have to be
13429 emulated by software on the 68040.  Use this option if your 68040 does not
13430 have code to emulate those instructions.
13431
13432 @item -m68060
13433 @opindex m68060
13434 Generate output for a 68060.  This is the default when the compiler is
13435 configured for 68060-based systems.  It is equivalent to
13436 @option{-march=68060}.
13437
13438 This option inhibits the use of 68020 and 68881/68882 instructions that
13439 have to be emulated by software on the 68060.  Use this option if your 68060
13440 does not have code to emulate those instructions.
13441
13442 @item -mcpu32
13443 @opindex mcpu32
13444 Generate output for a CPU32.  This is the default
13445 when the compiler is configured for CPU32-based systems.
13446 It is equivalent to @option{-march=cpu32}.
13447
13448 Use this option for microcontrollers with a
13449 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
13450 68336, 68340, 68341, 68349 and 68360.
13451
13452 @item -m5200
13453 @opindex m5200
13454 Generate output for a 520X ColdFire CPU@.  This is the default
13455 when the compiler is configured for 520X-based systems.
13456 It is equivalent to @option{-mcpu=5206}, and is now deprecated
13457 in favor of that option.
13458
13459 Use this option for microcontroller with a 5200 core, including
13460 the MCF5202, MCF5203, MCF5204 and MCF5206.
13461
13462 @item -m5206e
13463 @opindex m5206e
13464 Generate output for a 5206e ColdFire CPU@.  The option is now
13465 deprecated in favor of the equivalent @option{-mcpu=5206e}.
13466
13467 @item -m528x
13468 @opindex m528x
13469 Generate output for a member of the ColdFire 528X family.
13470 The option is now deprecated in favor of the equivalent
13471 @option{-mcpu=528x}.
13472
13473 @item -m5307
13474 @opindex m5307
13475 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
13476 in favor of the equivalent @option{-mcpu=5307}.
13477
13478 @item -m5407
13479 @opindex m5407
13480 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
13481 in favor of the equivalent @option{-mcpu=5407}.
13482
13483 @item -mcfv4e
13484 @opindex mcfv4e
13485 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
13486 This includes use of hardware floating point instructions.
13487 The option is equivalent to @option{-mcpu=547x}, and is now
13488 deprecated in favor of that option.
13489
13490 @item -m68020-40
13491 @opindex m68020-40
13492 Generate output for a 68040, without using any of the new instructions.
13493 This results in code which can run relatively efficiently on either a
13494 68020/68881 or a 68030 or a 68040.  The generated code does use the
13495 68881 instructions that are emulated on the 68040.
13496
13497 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
13498
13499 @item -m68020-60
13500 @opindex m68020-60
13501 Generate output for a 68060, without using any of the new instructions.
13502 This results in code which can run relatively efficiently on either a
13503 68020/68881 or a 68030 or a 68040.  The generated code does use the
13504 68881 instructions that are emulated on the 68060.
13505
13506 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
13507
13508 @item -mhard-float
13509 @itemx -m68881
13510 @opindex mhard-float
13511 @opindex m68881
13512 Generate floating-point instructions.  This is the default for 68020
13513 and above, and for ColdFire devices that have an FPU@.  It defines the
13514 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
13515 on ColdFire targets.
13516
13517 @item -msoft-float
13518 @opindex msoft-float
13519 Do not generate floating-point instructions; use library calls instead.
13520 This is the default for 68000, 68010, and 68832 targets.  It is also
13521 the default for ColdFire devices that have no FPU.
13522
13523 @item -mdiv
13524 @itemx -mno-div
13525 @opindex mdiv
13526 @opindex mno-div
13527 Generate (do not generate) ColdFire hardware divide and remainder
13528 instructions.  If @option{-march} is used without @option{-mcpu},
13529 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
13530 architectures.  Otherwise, the default is taken from the target CPU
13531 (either the default CPU, or the one specified by @option{-mcpu}).  For
13532 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
13533 @option{-mcpu=5206e}.
13534
13535 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
13536
13537 @item -mshort
13538 @opindex mshort
13539 Consider type @code{int} to be 16 bits wide, like @code{short int}.
13540 Additionally, parameters passed on the stack are also aligned to a
13541 16-bit boundary even on targets whose API mandates promotion to 32-bit.
13542
13543 @item -mno-short
13544 @opindex mno-short
13545 Do not consider type @code{int} to be 16 bits wide.  This is the default.
13546
13547 @item -mnobitfield
13548 @itemx -mno-bitfield
13549 @opindex mnobitfield
13550 @opindex mno-bitfield
13551 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
13552 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
13553
13554 @item -mbitfield
13555 @opindex mbitfield
13556 Do use the bit-field instructions.  The @option{-m68020} option implies
13557 @option{-mbitfield}.  This is the default if you use a configuration
13558 designed for a 68020.
13559
13560 @item -mrtd
13561 @opindex mrtd
13562 Use a different function-calling convention, in which functions
13563 that take a fixed number of arguments return with the @code{rtd}
13564 instruction, which pops their arguments while returning.  This
13565 saves one instruction in the caller since there is no need to pop
13566 the arguments there.
13567
13568 This calling convention is incompatible with the one normally
13569 used on Unix, so you cannot use it if you need to call libraries
13570 compiled with the Unix compiler.
13571
13572 Also, you must provide function prototypes for all functions that
13573 take variable numbers of arguments (including @code{printf});
13574 otherwise incorrect code will be generated for calls to those
13575 functions.
13576
13577 In addition, seriously incorrect code will result if you call a
13578 function with too many arguments.  (Normally, extra arguments are
13579 harmlessly ignored.)
13580
13581 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
13582 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
13583
13584 @item -mno-rtd
13585 @opindex mno-rtd
13586 Do not use the calling conventions selected by @option{-mrtd}.
13587 This is the default.
13588
13589 @item -malign-int
13590 @itemx -mno-align-int
13591 @opindex malign-int
13592 @opindex mno-align-int
13593 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
13594 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
13595 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
13596 Aligning variables on 32-bit boundaries produces code that runs somewhat
13597 faster on processors with 32-bit busses at the expense of more memory.
13598
13599 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
13600 align structures containing the above types  differently than
13601 most published application binary interface specifications for the m68k.
13602
13603 @item -mpcrel
13604 @opindex mpcrel
13605 Use the pc-relative addressing mode of the 68000 directly, instead of
13606 using a global offset table.  At present, this option implies @option{-fpic},
13607 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
13608 not presently supported with @option{-mpcrel}, though this could be supported for
13609 68020 and higher processors.
13610
13611 @item -mno-strict-align
13612 @itemx -mstrict-align
13613 @opindex mno-strict-align
13614 @opindex mstrict-align
13615 Do not (do) assume that unaligned memory references will be handled by
13616 the system.
13617
13618 @item -msep-data
13619 Generate code that allows the data segment to be located in a different
13620 area of memory from the text segment.  This allows for execute in place in
13621 an environment without virtual memory management.  This option implies
13622 @option{-fPIC}.
13623
13624 @item -mno-sep-data
13625 Generate code that assumes that the data segment follows the text segment.
13626 This is the default.
13627
13628 @item -mid-shared-library
13629 Generate code that supports shared libraries via the library ID method.
13630 This allows for execute in place and shared libraries in an environment
13631 without virtual memory management.  This option implies @option{-fPIC}.
13632
13633 @item -mno-id-shared-library
13634 Generate code that doesn't assume ID based shared libraries are being used.
13635 This is the default.
13636
13637 @item -mshared-library-id=n
13638 Specified the identification number of the ID based shared library being
13639 compiled.  Specifying a value of 0 will generate more compact code, specifying
13640 other values will force the allocation of that number to the current
13641 library but is no more space or time efficient than omitting this option.
13642
13643 @item -mxgot
13644 @itemx -mno-xgot
13645 @opindex mxgot
13646 @opindex mno-xgot
13647 When generating position-independent code for ColdFire, generate code
13648 that works if the GOT has more than 8192 entries.  This code is
13649 larger and slower than code generated without this option.  On M680x0
13650 processors, this option is not needed; @option{-fPIC} suffices.
13651
13652 GCC normally uses a single instruction to load values from the GOT@.
13653 While this is relatively efficient, it only works if the GOT
13654 is smaller than about 64k.  Anything larger causes the linker
13655 to report an error such as:
13656
13657 @cindex relocation truncated to fit (ColdFire)
13658 @smallexample
13659 relocation truncated to fit: R_68K_GOT16O foobar
13660 @end smallexample
13661
13662 If this happens, you should recompile your code with @option{-mxgot}.
13663 It should then work with very large GOTs.  However, code generated with
13664 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
13665 the value of a global symbol.
13666
13667 Note that some linkers, including newer versions of the GNU linker,
13668 can create multiple GOTs and sort GOT entries.  If you have such a linker,
13669 you should only need to use @option{-mxgot} when compiling a single
13670 object file that accesses more than 8192 GOT entries.  Very few do.
13671
13672 These options have no effect unless GCC is generating
13673 position-independent code.
13674
13675 @end table
13676
13677 @node MCore Options
13678 @subsection MCore Options
13679 @cindex MCore options
13680
13681 These are the @samp{-m} options defined for the Motorola M*Core
13682 processors.
13683
13684 @table @gcctabopt
13685
13686 @item -mhardlit
13687 @itemx -mno-hardlit
13688 @opindex mhardlit
13689 @opindex mno-hardlit
13690 Inline constants into the code stream if it can be done in two
13691 instructions or less.
13692
13693 @item -mdiv
13694 @itemx -mno-div
13695 @opindex mdiv
13696 @opindex mno-div
13697 Use the divide instruction.  (Enabled by default).
13698
13699 @item -mrelax-immediate
13700 @itemx -mno-relax-immediate
13701 @opindex mrelax-immediate
13702 @opindex mno-relax-immediate
13703 Allow arbitrary sized immediates in bit operations.
13704
13705 @item -mwide-bitfields
13706 @itemx -mno-wide-bitfields
13707 @opindex mwide-bitfields
13708 @opindex mno-wide-bitfields
13709 Always treat bit-fields as int-sized.
13710
13711 @item -m4byte-functions
13712 @itemx -mno-4byte-functions
13713 @opindex m4byte-functions
13714 @opindex mno-4byte-functions
13715 Force all functions to be aligned to a four byte boundary.
13716
13717 @item -mcallgraph-data
13718 @itemx -mno-callgraph-data
13719 @opindex mcallgraph-data
13720 @opindex mno-callgraph-data
13721 Emit callgraph information.
13722
13723 @item -mslow-bytes
13724 @itemx -mno-slow-bytes
13725 @opindex mslow-bytes
13726 @opindex mno-slow-bytes
13727 Prefer word access when reading byte quantities.
13728
13729 @item -mlittle-endian
13730 @itemx -mbig-endian
13731 @opindex mlittle-endian
13732 @opindex mbig-endian
13733 Generate code for a little endian target.
13734
13735 @item -m210
13736 @itemx -m340
13737 @opindex m210
13738 @opindex m340
13739 Generate code for the 210 processor.
13740
13741 @item -mno-lsim
13742 @opindex mno-lsim
13743 Assume that run-time support has been provided and so omit the
13744 simulator library (@file{libsim.a)} from the linker command line.
13745
13746 @item -mstack-increment=@var{size}
13747 @opindex mstack-increment
13748 Set the maximum amount for a single stack increment operation.  Large
13749 values can increase the speed of programs which contain functions
13750 that need a large amount of stack space, but they can also trigger a
13751 segmentation fault if the stack is extended too much.  The default
13752 value is 0x1000.
13753
13754 @end table
13755
13756 @node MeP Options
13757 @subsection MeP Options
13758 @cindex MeP options
13759
13760 @table @gcctabopt
13761
13762 @item -mabsdiff
13763 @opindex mabsdiff
13764 Enables the @code{abs} instruction, which is the absolute difference
13765 between two registers.
13766
13767 @item -mall-opts
13768 @opindex mall-opts
13769 Enables all the optional instructions - average, multiply, divide, bit
13770 operations, leading zero, absolute difference, min/max, clip, and
13771 saturation.
13772
13773
13774 @item -maverage
13775 @opindex maverage
13776 Enables the @code{ave} instruction, which computes the average of two
13777 registers.
13778
13779 @item -mbased=@var{n}
13780 @opindex mbased=
13781 Variables of size @var{n} bytes or smaller will be placed in the
13782 @code{.based} section by default.  Based variables use the @code{$tp}
13783 register as a base register, and there is a 128 byte limit to the
13784 @code{.based} section.
13785
13786 @item -mbitops
13787 @opindex mbitops
13788 Enables the bit operation instructions - bit test (@code{btstm}), set
13789 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
13790 test-and-set (@code{tas}).
13791
13792 @item -mc=@var{name}
13793 @opindex mc=
13794 Selects which section constant data will be placed in.  @var{name} may
13795 be @code{tiny}, @code{near}, or @code{far}.
13796
13797 @item -mclip
13798 @opindex mclip
13799 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
13800 useful unless you also provide @code{-mminmax}.
13801
13802 @item -mconfig=@var{name}
13803 @opindex mconfig=
13804 Selects one of the build-in core configurations.  Each MeP chip has
13805 one or more modules in it; each module has a core CPU and a variety of
13806 coprocessors, optional instructions, and peripherals.  The
13807 @code{MeP-Integrator} tool, not part of GCC, provides these
13808 configurations through this option; using this option is the same as
13809 using all the corresponding command line options.  The default
13810 configuration is @code{default}.
13811
13812 @item -mcop
13813 @opindex mcop
13814 Enables the coprocessor instructions.  By default, this is a 32-bit
13815 coprocessor.  Note that the coprocessor is normally enabled via the
13816 @code{-mconfig=} option.
13817
13818 @item -mcop32
13819 @opindex mcop32
13820 Enables the 32-bit coprocessor's instructions.
13821
13822 @item -mcop64
13823 @opindex mcop64
13824 Enables the 64-bit coprocessor's instructions.
13825
13826 @item -mivc2
13827 @opindex mivc2
13828 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
13829
13830 @item -mdc
13831 @opindex mdc
13832 Causes constant variables to be placed in the @code{.near} section.
13833
13834 @item -mdiv
13835 @opindex mdiv
13836 Enables the @code{div} and @code{divu} instructions.
13837
13838 @item -meb
13839 @opindex meb
13840 Generate big-endian code.
13841
13842 @item -mel
13843 @opindex mel
13844 Generate little-endian code.
13845
13846 @item -mio-volatile
13847 @opindex mio-volatile
13848 Tells the compiler that any variable marked with the @code{io}
13849 attribute is to be considered volatile.
13850
13851 @item -ml
13852 @opindex ml
13853 Causes variables to be assigned to the @code{.far} section by default.
13854
13855 @item -mleadz
13856 @opindex mleadz
13857 Enables the @code{leadz} (leading zero) instruction.
13858
13859 @item -mm
13860 @opindex mm
13861 Causes variables to be assigned to the @code{.near} section by default.
13862
13863 @item -mminmax
13864 @opindex mminmax
13865 Enables the @code{min} and @code{max} instructions.
13866
13867 @item -mmult
13868 @opindex mmult
13869 Enables the multiplication and multiply-accumulate instructions.
13870
13871 @item -mno-opts
13872 @opindex mno-opts
13873 Disables all the optional instructions enabled by @code{-mall-opts}.
13874
13875 @item -mrepeat
13876 @opindex mrepeat
13877 Enables the @code{repeat} and @code{erepeat} instructions, used for
13878 low-overhead looping.
13879
13880 @item -ms
13881 @opindex ms
13882 Causes all variables to default to the @code{.tiny} section.  Note
13883 that there is a 65536 byte limit to this section.  Accesses to these
13884 variables use the @code{%gp} base register.
13885
13886 @item -msatur
13887 @opindex msatur
13888 Enables the saturation instructions.  Note that the compiler does not
13889 currently generate these itself, but this option is included for
13890 compatibility with other tools, like @code{as}.
13891
13892 @item -msdram
13893 @opindex msdram
13894 Link the SDRAM-based runtime instead of the default ROM-based runtime.
13895
13896 @item -msim
13897 @opindex msim
13898 Link the simulator runtime libraries.
13899
13900 @item -msimnovec
13901 @opindex msimnovec
13902 Link the simulator runtime libraries, excluding built-in support
13903 for reset and exception vectors and tables.
13904
13905 @item -mtf
13906 @opindex mtf
13907 Causes all functions to default to the @code{.far} section.  Without
13908 this option, functions default to the @code{.near} section.
13909
13910 @item -mtiny=@var{n}
13911 @opindex mtiny=
13912 Variables that are @var{n} bytes or smaller will be allocated to the
13913 @code{.tiny} section.  These variables use the @code{$gp} base
13914 register.  The default for this option is 4, but note that there's a
13915 65536 byte limit to the @code{.tiny} section.
13916
13917 @end table
13918
13919 @node MicroBlaze Options
13920 @subsection MicroBlaze Options
13921 @cindex MicroBlaze Options
13922
13923 @table @gcctabopt
13924
13925 @item -msoft-float
13926 @opindex msoft-float
13927 Use software emulation for floating point (default).
13928
13929 @item -mhard-float
13930 @opindex mhard-float
13931 Use hardware floating point instructions.
13932
13933 @item -mmemcpy
13934 @opindex mmemcpy
13935 Do not optimize block moves, use @code{memcpy}.
13936
13937 @item -mno-clearbss
13938 @opindex mno-clearbss
13939 This option is deprecated.  Use @option{-fno-zero-initialized-in-bss} instead.
13940
13941 @item -mcpu=@var{cpu-type}
13942 @opindex mcpu=
13943 Use features of and schedule code for given CPU.
13944 Supported values are in the format @samp{v@var{X}.@var{YY}.@var{Z}}, 
13945 where @var{X} is a major version, @var{YY} is the minor version, and 
13946 @var{Z} is compatibility code.  Example values are @samp{v3.00.a},
13947 @samp{v4.00.b}, @samp{v5.00.a}, @samp{v5.00.b}, @samp{v5.00.b}, @samp{v6.00.a}. 
13948
13949 @item -mxl-soft-mul
13950 @opindex mxl-soft-mul
13951 Use software multiply emulation (default).
13952
13953 @item -mxl-soft-div
13954 @opindex mxl-soft-div
13955 Use software emulation for divides (default).
13956
13957 @item -mxl-barrel-shift
13958 @opindex mxl-barrel-shift
13959 Use the hardware barrel shifter.
13960
13961 @item -mxl-pattern-compare
13962 @opindex mxl-pattern-compare
13963 Use pattern compare instructions.
13964
13965 @item -msmall-divides
13966 @opindex msmall-divides
13967 Use table lookup optimization for small signed integer divisions.
13968
13969 @item -mxl-stack-check
13970 @opindex mxl-stack-check
13971 This option is deprecated.  Use -fstack-check instead.
13972
13973 @item -mxl-gp-opt
13974 @opindex mxl-gp-opt
13975 Use GP relative sdata/sbss sections.
13976
13977 @item -mxl-multiply-high
13978 @opindex mxl-multiply-high
13979 Use multiply high instructions for high part of 32x32 multiply.
13980
13981 @item -mxl-float-convert
13982 @opindex mxl-float-convert
13983 Use hardware floating point conversion instructions.
13984
13985 @item -mxl-float-sqrt
13986 @opindex mxl-float-sqrt
13987 Use hardware floating point square root instruction.
13988
13989 @item -mxl-mode-@var{app-model}
13990 Select application model @var{app-model}.  Valid models are 
13991 @table @samp
13992 @item executable
13993 normal executable (default), uses startup code @file{crt0.o}.
13994
13995 @item xmdstub
13996 for use with Xilinx Microprocessor Debugger (XMD) based 
13997 software intrusive debug agent called xmdstub. This uses startup file 
13998 @file{crt1.o} and sets the start address of the program to be 0x800.
13999
14000 @item bootstrap
14001 for applications that are loaded using a bootloader.
14002 This model uses startup file @file{crt2.o} which does not contain a processor 
14003 reset vector handler. This is suitable for transferring control on a 
14004 processor reset to the bootloader rather than the application.
14005
14006 @item novectors
14007 for applications that do not require any of the 
14008 MicroBlaze vectors. This option may be useful for applications running
14009 within a monitoring application. This model uses @file{crt3.o} as a startup file.
14010 @end table
14011
14012 Option @option{-xl-mode-@var{app-model}} is a deprecated alias for 
14013 @option{-mxl-mode-@var{app-model}}.
14014
14015 @end table
14016
14017 @node MIPS Options
14018 @subsection MIPS Options
14019 @cindex MIPS options
14020
14021 @table @gcctabopt
14022
14023 @item -EB
14024 @opindex EB
14025 Generate big-endian code.
14026
14027 @item -EL
14028 @opindex EL
14029 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
14030 configurations.
14031
14032 @item -march=@var{arch}
14033 @opindex march
14034 Generate code that will run on @var{arch}, which can be the name of a
14035 generic MIPS ISA, or the name of a particular processor.
14036 The ISA names are:
14037 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
14038 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
14039 The processor names are:
14040 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
14041 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
14042 @samp{5kc}, @samp{5kf},
14043 @samp{20kc},
14044 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
14045 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
14046 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
14047 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
14048 @samp{1004kc}, @samp{1004kf2_1}, @samp{1004kf1_1},
14049 @samp{loongson2e}, @samp{loongson2f}, @samp{loongson3a},
14050 @samp{m4k},
14051 @samp{octeon},
14052 @samp{orion},
14053 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
14054 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
14055 @samp{rm7000}, @samp{rm9000},
14056 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
14057 @samp{sb1},
14058 @samp{sr71000},
14059 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
14060 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
14061 and @samp{xlr}.
14062 The special value @samp{from-abi} selects the
14063 most compatible architecture for the selected ABI (that is,
14064 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
14065
14066 Native Linux/GNU toolchains also support the value @samp{native},
14067 which selects the best architecture option for the host processor.
14068 @option{-march=native} has no effect if GCC does not recognize
14069 the processor.
14070
14071 In processor names, a final @samp{000} can be abbreviated as @samp{k}
14072 (for example, @samp{-march=r2k}).  Prefixes are optional, and
14073 @samp{vr} may be written @samp{r}.
14074
14075 Names of the form @samp{@var{n}f2_1} refer to processors with
14076 FPUs clocked at half the rate of the core, names of the form
14077 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
14078 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
14079 processors with FPUs clocked a ratio of 3:2 with respect to the core.
14080 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
14081 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
14082 accepted as synonyms for @samp{@var{n}f1_1}.
14083
14084 GCC defines two macros based on the value of this option.  The first
14085 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
14086 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
14087 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
14088 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
14089 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
14090
14091 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
14092 above.  In other words, it will have the full prefix and will not
14093 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
14094 the macro names the resolved architecture (either @samp{"mips1"} or
14095 @samp{"mips3"}).  It names the default architecture when no
14096 @option{-march} option is given.
14097
14098 @item -mtune=@var{arch}
14099 @opindex mtune
14100 Optimize for @var{arch}.  Among other things, this option controls
14101 the way instructions are scheduled, and the perceived cost of arithmetic
14102 operations.  The list of @var{arch} values is the same as for
14103 @option{-march}.
14104
14105 When this option is not used, GCC will optimize for the processor
14106 specified by @option{-march}.  By using @option{-march} and
14107 @option{-mtune} together, it is possible to generate code that will
14108 run on a family of processors, but optimize the code for one
14109 particular member of that family.
14110
14111 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
14112 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
14113 @samp{-march} ones described above.
14114
14115 @item -mips1
14116 @opindex mips1
14117 Equivalent to @samp{-march=mips1}.
14118
14119 @item -mips2
14120 @opindex mips2
14121 Equivalent to @samp{-march=mips2}.
14122
14123 @item -mips3
14124 @opindex mips3
14125 Equivalent to @samp{-march=mips3}.
14126
14127 @item -mips4
14128 @opindex mips4
14129 Equivalent to @samp{-march=mips4}.
14130
14131 @item -mips32
14132 @opindex mips32
14133 Equivalent to @samp{-march=mips32}.
14134
14135 @item -mips32r2
14136 @opindex mips32r2
14137 Equivalent to @samp{-march=mips32r2}.
14138
14139 @item -mips64
14140 @opindex mips64
14141 Equivalent to @samp{-march=mips64}.
14142
14143 @item -mips64r2
14144 @opindex mips64r2
14145 Equivalent to @samp{-march=mips64r2}.
14146
14147 @item -mips16
14148 @itemx -mno-mips16
14149 @opindex mips16
14150 @opindex mno-mips16
14151 Generate (do not generate) MIPS16 code.  If GCC is targetting a
14152 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
14153
14154 MIPS16 code generation can also be controlled on a per-function basis
14155 by means of @code{mips16} and @code{nomips16} attributes.
14156 @xref{Function Attributes}, for more information.
14157
14158 @item -mflip-mips16
14159 @opindex mflip-mips16
14160 Generate MIPS16 code on alternating functions.  This option is provided
14161 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
14162 not intended for ordinary use in compiling user code.
14163
14164 @item -minterlink-mips16
14165 @itemx -mno-interlink-mips16
14166 @opindex minterlink-mips16
14167 @opindex mno-interlink-mips16
14168 Require (do not require) that non-MIPS16 code be link-compatible with
14169 MIPS16 code.
14170
14171 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
14172 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
14173 therefore disables direct jumps unless GCC knows that the target of the
14174 jump is not MIPS16.
14175
14176 @item -mabi=32
14177 @itemx -mabi=o64
14178 @itemx -mabi=n32
14179 @itemx -mabi=64
14180 @itemx -mabi=eabi
14181 @opindex mabi=32
14182 @opindex mabi=o64
14183 @opindex mabi=n32
14184 @opindex mabi=64
14185 @opindex mabi=eabi
14186 Generate code for the given ABI@.
14187
14188 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
14189 generates 64-bit code when you select a 64-bit architecture, but you
14190 can use @option{-mgp32} to get 32-bit code instead.
14191
14192 For information about the O64 ABI, see
14193 @uref{http://gcc.gnu.org/@/projects/@/mipso64-abi.html}.
14194
14195 GCC supports a variant of the o32 ABI in which floating-point registers
14196 are 64 rather than 32 bits wide.  You can select this combination with
14197 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
14198 and @samp{mfhc1} instructions and is therefore only supported for
14199 MIPS32R2 processors.
14200
14201 The register assignments for arguments and return values remain the
14202 same, but each scalar value is passed in a single 64-bit register
14203 rather than a pair of 32-bit registers.  For example, scalar
14204 floating-point values are returned in @samp{$f0} only, not a
14205 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
14206 remains the same, but all 64 bits are saved.
14207
14208 @item -mabicalls
14209 @itemx -mno-abicalls
14210 @opindex mabicalls
14211 @opindex mno-abicalls
14212 Generate (do not generate) code that is suitable for SVR4-style
14213 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
14214 systems.
14215
14216 @item -mshared
14217 @itemx -mno-shared
14218 Generate (do not generate) code that is fully position-independent,
14219 and that can therefore be linked into shared libraries.  This option
14220 only affects @option{-mabicalls}.
14221
14222 All @option{-mabicalls} code has traditionally been position-independent,
14223 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
14224 as an extension, the GNU toolchain allows executables to use absolute
14225 accesses for locally-binding symbols.  It can also use shorter GP
14226 initialization sequences and generate direct calls to locally-defined
14227 functions.  This mode is selected by @option{-mno-shared}.
14228
14229 @option{-mno-shared} depends on binutils 2.16 or higher and generates
14230 objects that can only be linked by the GNU linker.  However, the option
14231 does not affect the ABI of the final executable; it only affects the ABI
14232 of relocatable objects.  Using @option{-mno-shared} will generally make
14233 executables both smaller and quicker.
14234
14235 @option{-mshared} is the default.
14236
14237 @item -mplt
14238 @itemx -mno-plt
14239 @opindex mplt
14240 @opindex mno-plt
14241 Assume (do not assume) that the static and dynamic linkers
14242 support PLTs and copy relocations.  This option only affects
14243 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
14244 has no effect without @samp{-msym32}.
14245
14246 You can make @option{-mplt} the default by configuring
14247 GCC with @option{--with-mips-plt}.  The default is
14248 @option{-mno-plt} otherwise.
14249
14250 @item -mxgot
14251 @itemx -mno-xgot
14252 @opindex mxgot
14253 @opindex mno-xgot
14254 Lift (do not lift) the usual restrictions on the size of the global
14255 offset table.
14256
14257 GCC normally uses a single instruction to load values from the GOT@.
14258 While this is relatively efficient, it will only work if the GOT
14259 is smaller than about 64k.  Anything larger will cause the linker
14260 to report an error such as:
14261
14262 @cindex relocation truncated to fit (MIPS)
14263 @smallexample
14264 relocation truncated to fit: R_MIPS_GOT16 foobar
14265 @end smallexample
14266
14267 If this happens, you should recompile your code with @option{-mxgot}.
14268 It should then work with very large GOTs, although it will also be
14269 less efficient, since it will take three instructions to fetch the
14270 value of a global symbol.
14271
14272 Note that some linkers can create multiple GOTs.  If you have such a
14273 linker, you should only need to use @option{-mxgot} when a single object
14274 file accesses more than 64k's worth of GOT entries.  Very few do.
14275
14276 These options have no effect unless GCC is generating position
14277 independent code.
14278
14279 @item -mgp32
14280 @opindex mgp32
14281 Assume that general-purpose registers are 32 bits wide.
14282
14283 @item -mgp64
14284 @opindex mgp64
14285 Assume that general-purpose registers are 64 bits wide.
14286
14287 @item -mfp32
14288 @opindex mfp32
14289 Assume that floating-point registers are 32 bits wide.
14290
14291 @item -mfp64
14292 @opindex mfp64
14293 Assume that floating-point registers are 64 bits wide.
14294
14295 @item -mhard-float
14296 @opindex mhard-float
14297 Use floating-point coprocessor instructions.
14298
14299 @item -msoft-float
14300 @opindex msoft-float
14301 Do not use floating-point coprocessor instructions.  Implement
14302 floating-point calculations using library calls instead.
14303
14304 @item -msingle-float
14305 @opindex msingle-float
14306 Assume that the floating-point coprocessor only supports single-precision
14307 operations.
14308
14309 @item -mdouble-float
14310 @opindex mdouble-float
14311 Assume that the floating-point coprocessor supports double-precision
14312 operations.  This is the default.
14313
14314 @item -mllsc
14315 @itemx -mno-llsc
14316 @opindex mllsc
14317 @opindex mno-llsc
14318 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
14319 implement atomic memory built-in functions.  When neither option is
14320 specified, GCC will use the instructions if the target architecture
14321 supports them.
14322
14323 @option{-mllsc} is useful if the runtime environment can emulate the
14324 instructions and @option{-mno-llsc} can be useful when compiling for
14325 nonstandard ISAs.  You can make either option the default by
14326 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
14327 respectively.  @option{--with-llsc} is the default for some
14328 configurations; see the installation documentation for details.
14329
14330 @item -mdsp
14331 @itemx -mno-dsp
14332 @opindex mdsp
14333 @opindex mno-dsp
14334 Use (do not use) revision 1 of the MIPS DSP ASE@.
14335 @xref{MIPS DSP Built-in Functions}.  This option defines the
14336 preprocessor macro @samp{__mips_dsp}.  It also defines
14337 @samp{__mips_dsp_rev} to 1.
14338
14339 @item -mdspr2
14340 @itemx -mno-dspr2
14341 @opindex mdspr2
14342 @opindex mno-dspr2
14343 Use (do not use) revision 2 of the MIPS DSP ASE@.
14344 @xref{MIPS DSP Built-in Functions}.  This option defines the
14345 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
14346 It also defines @samp{__mips_dsp_rev} to 2.
14347
14348 @item -msmartmips
14349 @itemx -mno-smartmips
14350 @opindex msmartmips
14351 @opindex mno-smartmips
14352 Use (do not use) the MIPS SmartMIPS ASE.
14353
14354 @item -mpaired-single
14355 @itemx -mno-paired-single
14356 @opindex mpaired-single
14357 @opindex mno-paired-single
14358 Use (do not use) paired-single floating-point instructions.
14359 @xref{MIPS Paired-Single Support}.  This option requires
14360 hardware floating-point support to be enabled.
14361
14362 @item -mdmx
14363 @itemx -mno-mdmx
14364 @opindex mdmx
14365 @opindex mno-mdmx
14366 Use (do not use) MIPS Digital Media Extension instructions.
14367 This option can only be used when generating 64-bit code and requires
14368 hardware floating-point support to be enabled.
14369
14370 @item -mips3d
14371 @itemx -mno-mips3d
14372 @opindex mips3d
14373 @opindex mno-mips3d
14374 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
14375 The option @option{-mips3d} implies @option{-mpaired-single}.
14376
14377 @item -mmt
14378 @itemx -mno-mt
14379 @opindex mmt
14380 @opindex mno-mt
14381 Use (do not use) MT Multithreading instructions.
14382
14383 @item -mlong64
14384 @opindex mlong64
14385 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
14386 an explanation of the default and the way that the pointer size is
14387 determined.
14388
14389 @item -mlong32
14390 @opindex mlong32
14391 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
14392
14393 The default size of @code{int}s, @code{long}s and pointers depends on
14394 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
14395 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
14396 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
14397 or the same size as integer registers, whichever is smaller.
14398
14399 @item -msym32
14400 @itemx -mno-sym32
14401 @opindex msym32
14402 @opindex mno-sym32
14403 Assume (do not assume) that all symbols have 32-bit values, regardless
14404 of the selected ABI@.  This option is useful in combination with
14405 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
14406 to generate shorter and faster references to symbolic addresses.
14407
14408 @item -G @var{num}
14409 @opindex G
14410 Put definitions of externally-visible data in a small data section
14411 if that data is no bigger than @var{num} bytes.  GCC can then access
14412 the data more efficiently; see @option{-mgpopt} for details.
14413
14414 The default @option{-G} option depends on the configuration.
14415
14416 @item -mlocal-sdata
14417 @itemx -mno-local-sdata
14418 @opindex mlocal-sdata
14419 @opindex mno-local-sdata
14420 Extend (do not extend) the @option{-G} behavior to local data too,
14421 such as to static variables in C@.  @option{-mlocal-sdata} is the
14422 default for all configurations.
14423
14424 If the linker complains that an application is using too much small data,
14425 you might want to try rebuilding the less performance-critical parts with
14426 @option{-mno-local-sdata}.  You might also want to build large
14427 libraries with @option{-mno-local-sdata}, so that the libraries leave
14428 more room for the main program.
14429
14430 @item -mextern-sdata
14431 @itemx -mno-extern-sdata
14432 @opindex mextern-sdata
14433 @opindex mno-extern-sdata
14434 Assume (do not assume) that externally-defined data will be in
14435 a small data section if that data is within the @option{-G} limit.
14436 @option{-mextern-sdata} is the default for all configurations.
14437
14438 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
14439 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
14440 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
14441 is placed in a small data section.  If @var{Var} is defined by another
14442 module, you must either compile that module with a high-enough
14443 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
14444 definition.  If @var{Var} is common, you must link the application
14445 with a high-enough @option{-G} setting.
14446
14447 The easiest way of satisfying these restrictions is to compile
14448 and link every module with the same @option{-G} option.  However,
14449 you may wish to build a library that supports several different
14450 small data limits.  You can do this by compiling the library with
14451 the highest supported @option{-G} setting and additionally using
14452 @option{-mno-extern-sdata} to stop the library from making assumptions
14453 about externally-defined data.
14454
14455 @item -mgpopt
14456 @itemx -mno-gpopt
14457 @opindex mgpopt
14458 @opindex mno-gpopt
14459 Use (do not use) GP-relative accesses for symbols that are known to be
14460 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
14461 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
14462 configurations.
14463
14464 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
14465 might not hold the value of @code{_gp}.  For example, if the code is
14466 part of a library that might be used in a boot monitor, programs that
14467 call boot monitor routines will pass an unknown value in @code{$gp}.
14468 (In such situations, the boot monitor itself would usually be compiled
14469 with @option{-G0}.)
14470
14471 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
14472 @option{-mno-extern-sdata}.
14473
14474 @item -membedded-data
14475 @itemx -mno-embedded-data
14476 @opindex membedded-data
14477 @opindex mno-embedded-data
14478 Allocate variables to the read-only data section first if possible, then
14479 next in the small data section if possible, otherwise in data.  This gives
14480 slightly slower code than the default, but reduces the amount of RAM required
14481 when executing, and thus may be preferred for some embedded systems.
14482
14483 @item -muninit-const-in-rodata
14484 @itemx -mno-uninit-const-in-rodata
14485 @opindex muninit-const-in-rodata
14486 @opindex mno-uninit-const-in-rodata
14487 Put uninitialized @code{const} variables in the read-only data section.
14488 This option is only meaningful in conjunction with @option{-membedded-data}.
14489
14490 @item -mcode-readable=@var{setting}
14491 @opindex mcode-readable
14492 Specify whether GCC may generate code that reads from executable sections.
14493 There are three possible settings:
14494
14495 @table @gcctabopt
14496 @item -mcode-readable=yes
14497 Instructions may freely access executable sections.  This is the
14498 default setting.
14499
14500 @item -mcode-readable=pcrel
14501 MIPS16 PC-relative load instructions can access executable sections,
14502 but other instructions must not do so.  This option is useful on 4KSc
14503 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
14504 It is also useful on processors that can be configured to have a dual
14505 instruction/data SRAM interface and that, like the M4K, automatically
14506 redirect PC-relative loads to the instruction RAM.
14507
14508 @item -mcode-readable=no
14509 Instructions must not access executable sections.  This option can be
14510 useful on targets that are configured to have a dual instruction/data
14511 SRAM interface but that (unlike the M4K) do not automatically redirect
14512 PC-relative loads to the instruction RAM.
14513 @end table
14514
14515 @item -msplit-addresses
14516 @itemx -mno-split-addresses
14517 @opindex msplit-addresses
14518 @opindex mno-split-addresses
14519 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
14520 relocation operators.  This option has been superseded by
14521 @option{-mexplicit-relocs} but is retained for backwards compatibility.
14522
14523 @item -mexplicit-relocs
14524 @itemx -mno-explicit-relocs
14525 @opindex mexplicit-relocs
14526 @opindex mno-explicit-relocs
14527 Use (do not use) assembler relocation operators when dealing with symbolic
14528 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
14529 is to use assembler macros instead.
14530
14531 @option{-mexplicit-relocs} is the default if GCC was configured
14532 to use an assembler that supports relocation operators.
14533
14534 @item -mcheck-zero-division
14535 @itemx -mno-check-zero-division
14536 @opindex mcheck-zero-division
14537 @opindex mno-check-zero-division
14538 Trap (do not trap) on integer division by zero.
14539
14540 The default is @option{-mcheck-zero-division}.
14541
14542 @item -mdivide-traps
14543 @itemx -mdivide-breaks
14544 @opindex mdivide-traps
14545 @opindex mdivide-breaks
14546 MIPS systems check for division by zero by generating either a
14547 conditional trap or a break instruction.  Using traps results in
14548 smaller code, but is only supported on MIPS II and later.  Also, some
14549 versions of the Linux kernel have a bug that prevents trap from
14550 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
14551 allow conditional traps on architectures that support them and
14552 @option{-mdivide-breaks} to force the use of breaks.
14553
14554 The default is usually @option{-mdivide-traps}, but this can be
14555 overridden at configure time using @option{--with-divide=breaks}.
14556 Divide-by-zero checks can be completely disabled using
14557 @option{-mno-check-zero-division}.
14558
14559 @item -mmemcpy
14560 @itemx -mno-memcpy
14561 @opindex mmemcpy
14562 @opindex mno-memcpy
14563 Force (do not force) the use of @code{memcpy()} for non-trivial block
14564 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
14565 most constant-sized copies.
14566
14567 @item -mlong-calls
14568 @itemx -mno-long-calls
14569 @opindex mlong-calls
14570 @opindex mno-long-calls
14571 Disable (do not disable) use of the @code{jal} instruction.  Calling
14572 functions using @code{jal} is more efficient but requires the caller
14573 and callee to be in the same 256 megabyte segment.
14574
14575 This option has no effect on abicalls code.  The default is
14576 @option{-mno-long-calls}.
14577
14578 @item -mmad
14579 @itemx -mno-mad
14580 @opindex mmad
14581 @opindex mno-mad
14582 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
14583 instructions, as provided by the R4650 ISA@.
14584
14585 @item -mfused-madd
14586 @itemx -mno-fused-madd
14587 @opindex mfused-madd
14588 @opindex mno-fused-madd
14589 Enable (disable) use of the floating point multiply-accumulate
14590 instructions, when they are available.  The default is
14591 @option{-mfused-madd}.
14592
14593 When multiply-accumulate instructions are used, the intermediate
14594 product is calculated to infinite precision and is not subject to
14595 the FCSR Flush to Zero bit.  This may be undesirable in some
14596 circumstances.
14597
14598 @item -nocpp
14599 @opindex nocpp
14600 Tell the MIPS assembler to not run its preprocessor over user
14601 assembler files (with a @samp{.s} suffix) when assembling them.
14602
14603 @item -mfix-24k
14604 @item -mno-fix-24k
14605 @opindex mfix-24k
14606 @opindex mno-fix-24k
14607 Work around the 24K E48 (lost data on stores during refill) errata.
14608 The workarounds are implemented by the assembler rather than by GCC.
14609
14610 @item -mfix-r4000
14611 @itemx -mno-fix-r4000
14612 @opindex mfix-r4000
14613 @opindex mno-fix-r4000
14614 Work around certain R4000 CPU errata:
14615 @itemize @minus
14616 @item
14617 A double-word or a variable shift may give an incorrect result if executed
14618 immediately after starting an integer division.
14619 @item
14620 A double-word or a variable shift may give an incorrect result if executed
14621 while an integer multiplication is in progress.
14622 @item
14623 An integer division may give an incorrect result if started in a delay slot
14624 of a taken branch or a jump.
14625 @end itemize
14626
14627 @item -mfix-r4400
14628 @itemx -mno-fix-r4400
14629 @opindex mfix-r4400
14630 @opindex mno-fix-r4400
14631 Work around certain R4400 CPU errata:
14632 @itemize @minus
14633 @item
14634 A double-word or a variable shift may give an incorrect result if executed
14635 immediately after starting an integer division.
14636 @end itemize
14637
14638 @item -mfix-r10000
14639 @itemx -mno-fix-r10000
14640 @opindex mfix-r10000
14641 @opindex mno-fix-r10000
14642 Work around certain R10000 errata:
14643 @itemize @minus
14644 @item
14645 @code{ll}/@code{sc} sequences may not behave atomically on revisions
14646 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
14647 @end itemize
14648
14649 This option can only be used if the target architecture supports
14650 branch-likely instructions.  @option{-mfix-r10000} is the default when
14651 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
14652 otherwise.
14653
14654 @item -mfix-vr4120
14655 @itemx -mno-fix-vr4120
14656 @opindex mfix-vr4120
14657 Work around certain VR4120 errata:
14658 @itemize @minus
14659 @item
14660 @code{dmultu} does not always produce the correct result.
14661 @item
14662 @code{div} and @code{ddiv} do not always produce the correct result if one
14663 of the operands is negative.
14664 @end itemize
14665 The workarounds for the division errata rely on special functions in
14666 @file{libgcc.a}.  At present, these functions are only provided by
14667 the @code{mips64vr*-elf} configurations.
14668
14669 Other VR4120 errata require a nop to be inserted between certain pairs of
14670 instructions.  These errata are handled by the assembler, not by GCC itself.
14671
14672 @item -mfix-vr4130
14673 @opindex mfix-vr4130
14674 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
14675 workarounds are implemented by the assembler rather than by GCC,
14676 although GCC will avoid using @code{mflo} and @code{mfhi} if the
14677 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
14678 instructions are available instead.
14679
14680 @item -mfix-sb1
14681 @itemx -mno-fix-sb1
14682 @opindex mfix-sb1
14683 Work around certain SB-1 CPU core errata.
14684 (This flag currently works around the SB-1 revision 2
14685 ``F1'' and ``F2'' floating point errata.)
14686
14687 @item -mr10k-cache-barrier=@var{setting}
14688 @opindex mr10k-cache-barrier
14689 Specify whether GCC should insert cache barriers to avoid the
14690 side-effects of speculation on R10K processors.
14691
14692 In common with many processors, the R10K tries to predict the outcome
14693 of a conditional branch and speculatively executes instructions from
14694 the ``taken'' branch.  It later aborts these instructions if the
14695 predicted outcome was wrong.  However, on the R10K, even aborted
14696 instructions can have side effects.
14697
14698 This problem only affects kernel stores and, depending on the system,
14699 kernel loads.  As an example, a speculatively-executed store may load
14700 the target memory into cache and mark the cache line as dirty, even if
14701 the store itself is later aborted.  If a DMA operation writes to the
14702 same area of memory before the ``dirty'' line is flushed, the cached
14703 data will overwrite the DMA-ed data.  See the R10K processor manual
14704 for a full description, including other potential problems.
14705
14706 One workaround is to insert cache barrier instructions before every memory
14707 access that might be speculatively executed and that might have side
14708 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
14709 controls GCC's implementation of this workaround.  It assumes that
14710 aborted accesses to any byte in the following regions will not have
14711 side effects:
14712
14713 @enumerate
14714 @item
14715 the memory occupied by the current function's stack frame;
14716
14717 @item
14718 the memory occupied by an incoming stack argument;
14719
14720 @item
14721 the memory occupied by an object with a link-time-constant address.
14722 @end enumerate
14723
14724 It is the kernel's responsibility to ensure that speculative
14725 accesses to these regions are indeed safe.
14726
14727 If the input program contains a function declaration such as:
14728
14729 @smallexample
14730 void foo (void);
14731 @end smallexample
14732
14733 then the implementation of @code{foo} must allow @code{j foo} and
14734 @code{jal foo} to be executed speculatively.  GCC honors this
14735 restriction for functions it compiles itself.  It expects non-GCC
14736 functions (such as hand-written assembly code) to do the same.
14737
14738 The option has three forms:
14739
14740 @table @gcctabopt
14741 @item -mr10k-cache-barrier=load-store
14742 Insert a cache barrier before a load or store that might be
14743 speculatively executed and that might have side effects even
14744 if aborted.
14745
14746 @item -mr10k-cache-barrier=store
14747 Insert a cache barrier before a store that might be speculatively
14748 executed and that might have side effects even if aborted.
14749
14750 @item -mr10k-cache-barrier=none
14751 Disable the insertion of cache barriers.  This is the default setting.
14752 @end table
14753
14754 @item -mflush-func=@var{func}
14755 @itemx -mno-flush-func
14756 @opindex mflush-func
14757 Specifies the function to call to flush the I and D caches, or to not
14758 call any such function.  If called, the function must take the same
14759 arguments as the common @code{_flush_func()}, that is, the address of the
14760 memory range for which the cache is being flushed, the size of the
14761 memory range, and the number 3 (to flush both caches).  The default
14762 depends on the target GCC was configured for, but commonly is either
14763 @samp{_flush_func} or @samp{__cpu_flush}.
14764
14765 @item mbranch-cost=@var{num}
14766 @opindex mbranch-cost
14767 Set the cost of branches to roughly @var{num} ``simple'' instructions.
14768 This cost is only a heuristic and is not guaranteed to produce
14769 consistent results across releases.  A zero cost redundantly selects
14770 the default, which is based on the @option{-mtune} setting.
14771
14772 @item -mbranch-likely
14773 @itemx -mno-branch-likely
14774 @opindex mbranch-likely
14775 @opindex mno-branch-likely
14776 Enable or disable use of Branch Likely instructions, regardless of the
14777 default for the selected architecture.  By default, Branch Likely
14778 instructions may be generated if they are supported by the selected
14779 architecture.  An exception is for the MIPS32 and MIPS64 architectures
14780 and processors which implement those architectures; for those, Branch
14781 Likely instructions will not be generated by default because the MIPS32
14782 and MIPS64 architectures specifically deprecate their use.
14783
14784 @item -mfp-exceptions
14785 @itemx -mno-fp-exceptions
14786 @opindex mfp-exceptions
14787 Specifies whether FP exceptions are enabled.  This affects how we schedule
14788 FP instructions for some processors.  The default is that FP exceptions are
14789 enabled.
14790
14791 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
14792 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
14793 FP pipe.
14794
14795 @item -mvr4130-align
14796 @itemx -mno-vr4130-align
14797 @opindex mvr4130-align
14798 The VR4130 pipeline is two-way superscalar, but can only issue two
14799 instructions together if the first one is 8-byte aligned.  When this
14800 option is enabled, GCC will align pairs of instructions that it
14801 thinks should execute in parallel.
14802
14803 This option only has an effect when optimizing for the VR4130.
14804 It normally makes code faster, but at the expense of making it bigger.
14805 It is enabled by default at optimization level @option{-O3}.
14806
14807 @item -msynci
14808 @itemx -mno-synci
14809 @opindex msynci
14810 Enable (disable) generation of @code{synci} instructions on
14811 architectures that support it.  The @code{synci} instructions (if
14812 enabled) will be generated when @code{__builtin___clear_cache()} is
14813 compiled.
14814
14815 This option defaults to @code{-mno-synci}, but the default can be
14816 overridden by configuring with @code{--with-synci}.
14817
14818 When compiling code for single processor systems, it is generally safe
14819 to use @code{synci}.  However, on many multi-core (SMP) systems, it
14820 will not invalidate the instruction caches on all cores and may lead
14821 to undefined behavior.
14822
14823 @item -mrelax-pic-calls
14824 @itemx -mno-relax-pic-calls
14825 @opindex mrelax-pic-calls
14826 Try to turn PIC calls that are normally dispatched via register
14827 @code{$25} into direct calls.  This is only possible if the linker can
14828 resolve the destination at link-time and if the destination is within
14829 range for a direct call.
14830
14831 @option{-mrelax-pic-calls} is the default if GCC was configured to use
14832 an assembler and a linker that supports the @code{.reloc} assembly
14833 directive and @code{-mexplicit-relocs} is in effect.  With
14834 @code{-mno-explicit-relocs}, this optimization can be performed by the
14835 assembler and the linker alone without help from the compiler.
14836
14837 @item -mmcount-ra-address
14838 @itemx -mno-mcount-ra-address
14839 @opindex mmcount-ra-address
14840 @opindex mno-mcount-ra-address
14841 Emit (do not emit) code that allows @code{_mcount} to modify the
14842 calling function's return address.  When enabled, this option extends
14843 the usual @code{_mcount} interface with a new @var{ra-address}
14844 parameter, which has type @code{intptr_t *} and is passed in register
14845 @code{$12}.  @code{_mcount} can then modify the return address by
14846 doing both of the following:
14847 @itemize
14848 @item
14849 Returning the new address in register @code{$31}.
14850 @item
14851 Storing the new address in @code{*@var{ra-address}},
14852 if @var{ra-address} is nonnull.
14853 @end itemize
14854
14855 The default is @option{-mno-mcount-ra-address}.
14856
14857 @end table
14858
14859 @node MMIX Options
14860 @subsection MMIX Options
14861 @cindex MMIX Options
14862
14863 These options are defined for the MMIX:
14864
14865 @table @gcctabopt
14866 @item -mlibfuncs
14867 @itemx -mno-libfuncs
14868 @opindex mlibfuncs
14869 @opindex mno-libfuncs
14870 Specify that intrinsic library functions are being compiled, passing all
14871 values in registers, no matter the size.
14872
14873 @item -mepsilon
14874 @itemx -mno-epsilon
14875 @opindex mepsilon
14876 @opindex mno-epsilon
14877 Generate floating-point comparison instructions that compare with respect
14878 to the @code{rE} epsilon register.
14879
14880 @item -mabi=mmixware
14881 @itemx -mabi=gnu
14882 @opindex mabi=mmixware
14883 @opindex mabi=gnu
14884 Generate code that passes function parameters and return values that (in
14885 the called function) are seen as registers @code{$0} and up, as opposed to
14886 the GNU ABI which uses global registers @code{$231} and up.
14887
14888 @item -mzero-extend
14889 @itemx -mno-zero-extend
14890 @opindex mzero-extend
14891 @opindex mno-zero-extend
14892 When reading data from memory in sizes shorter than 64 bits, use (do not
14893 use) zero-extending load instructions by default, rather than
14894 sign-extending ones.
14895
14896 @item -mknuthdiv
14897 @itemx -mno-knuthdiv
14898 @opindex mknuthdiv
14899 @opindex mno-knuthdiv
14900 Make the result of a division yielding a remainder have the same sign as
14901 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
14902 remainder follows the sign of the dividend.  Both methods are
14903 arithmetically valid, the latter being almost exclusively used.
14904
14905 @item -mtoplevel-symbols
14906 @itemx -mno-toplevel-symbols
14907 @opindex mtoplevel-symbols
14908 @opindex mno-toplevel-symbols
14909 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
14910 code can be used with the @code{PREFIX} assembly directive.
14911
14912 @item -melf
14913 @opindex melf
14914 Generate an executable in the ELF format, rather than the default
14915 @samp{mmo} format used by the @command{mmix} simulator.
14916
14917 @item -mbranch-predict
14918 @itemx -mno-branch-predict
14919 @opindex mbranch-predict
14920 @opindex mno-branch-predict
14921 Use (do not use) the probable-branch instructions, when static branch
14922 prediction indicates a probable branch.
14923
14924 @item -mbase-addresses
14925 @itemx -mno-base-addresses
14926 @opindex mbase-addresses
14927 @opindex mno-base-addresses
14928 Generate (do not generate) code that uses @emph{base addresses}.  Using a
14929 base address automatically generates a request (handled by the assembler
14930 and the linker) for a constant to be set up in a global register.  The
14931 register is used for one or more base address requests within the range 0
14932 to 255 from the value held in the register.  The generally leads to short
14933 and fast code, but the number of different data items that can be
14934 addressed is limited.  This means that a program that uses lots of static
14935 data may require @option{-mno-base-addresses}.
14936
14937 @item -msingle-exit
14938 @itemx -mno-single-exit
14939 @opindex msingle-exit
14940 @opindex mno-single-exit
14941 Force (do not force) generated code to have a single exit point in each
14942 function.
14943 @end table
14944
14945 @node MN10300 Options
14946 @subsection MN10300 Options
14947 @cindex MN10300 options
14948
14949 These @option{-m} options are defined for Matsushita MN10300 architectures:
14950
14951 @table @gcctabopt
14952 @item -mmult-bug
14953 @opindex mmult-bug
14954 Generate code to avoid bugs in the multiply instructions for the MN10300
14955 processors.  This is the default.
14956
14957 @item -mno-mult-bug
14958 @opindex mno-mult-bug
14959 Do not generate code to avoid bugs in the multiply instructions for the
14960 MN10300 processors.
14961
14962 @item -mam33
14963 @opindex mam33
14964 Generate code which uses features specific to the AM33 processor.
14965
14966 @item -mno-am33
14967 @opindex mno-am33
14968 Do not generate code which uses features specific to the AM33 processor.  This
14969 is the default.
14970
14971 @item -mam33-2
14972 @opindex mam33-2
14973 Generate code which uses features specific to the AM33/2.0 processor.
14974
14975 @item -mam34
14976 @opindex mam34
14977 Generate code which uses features specific to the AM34 processor.
14978
14979 @item -mtune=@var{cpu-type}
14980 @opindex mtune
14981 Use the timing characteristics of the indicated CPU type when
14982 scheduling instructions.  This does not change the targeted processor
14983 type.  The CPU type must be one of @samp{mn10300}, @samp{am33},
14984 @samp{am33-2} or @samp{am34}.
14985
14986 @item -mreturn-pointer-on-d0
14987 @opindex mreturn-pointer-on-d0
14988 When generating a function which returns a pointer, return the pointer
14989 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
14990 only in a0, and attempts to call such functions without a prototype
14991 would result in errors.  Note that this option is on by default; use
14992 @option{-mno-return-pointer-on-d0} to disable it.
14993
14994 @item -mno-crt0
14995 @opindex mno-crt0
14996 Do not link in the C run-time initialization object file.
14997
14998 @item -mrelax
14999 @opindex mrelax
15000 Indicate to the linker that it should perform a relaxation optimization pass
15001 to shorten branches, calls and absolute memory addresses.  This option only
15002 has an effect when used on the command line for the final link step.
15003
15004 This option makes symbolic debugging impossible.
15005
15006 @item -mliw
15007 @opindex mliw
15008 Allow the compiler to generate @emph{Long Instruction Word}
15009 instructions if the target is the @samp{AM33} or later.  This is the
15010 default.  This option defines the preprocessor macro @samp{__LIW__}.
15011
15012 @item -mnoliw
15013 @opindex mnoliw
15014 Do not allow the compiler to generate @emph{Long Instruction Word}
15015 instructions.  This option defines the preprocessor macro
15016 @samp{__NO_LIW__}.
15017
15018 @item -msetlb
15019 @opindex msetlb
15020 Allow the compiler to generate the @emph{SETLB} and @emph{Lcc}
15021 instructions if the target is the @samp{AM33} or later.  This is the
15022 default.  This option defines the preprocessor macro @samp{__SETLB__}.
15023
15024 @item -mnosetlb
15025 @opindex mnosetlb
15026 Do not allow the compiler to generate @emph{SETLB} or @emph{Lcc}
15027 instructions.  This option defines the preprocessor macro
15028 @samp{__NO_SETLB__}.
15029
15030 @end table
15031
15032 @node PDP-11 Options
15033 @subsection PDP-11 Options
15034 @cindex PDP-11 Options
15035
15036 These options are defined for the PDP-11:
15037
15038 @table @gcctabopt
15039 @item -mfpu
15040 @opindex mfpu
15041 Use hardware FPP floating point.  This is the default.  (FIS floating
15042 point on the PDP-11/40 is not supported.)
15043
15044 @item -msoft-float
15045 @opindex msoft-float
15046 Do not use hardware floating point.
15047
15048 @item -mac0
15049 @opindex mac0
15050 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
15051
15052 @item -mno-ac0
15053 @opindex mno-ac0
15054 Return floating-point results in memory.  This is the default.
15055
15056 @item -m40
15057 @opindex m40
15058 Generate code for a PDP-11/40.
15059
15060 @item -m45
15061 @opindex m45
15062 Generate code for a PDP-11/45.  This is the default.
15063
15064 @item -m10
15065 @opindex m10
15066 Generate code for a PDP-11/10.
15067
15068 @item -mbcopy-builtin
15069 @opindex mbcopy-builtin
15070 Use inline @code{movmemhi} patterns for copying memory.  This is the
15071 default.
15072
15073 @item -mbcopy
15074 @opindex mbcopy
15075 Do not use inline @code{movmemhi} patterns for copying memory.
15076
15077 @item -mint16
15078 @itemx -mno-int32
15079 @opindex mint16
15080 @opindex mno-int32
15081 Use 16-bit @code{int}.  This is the default.
15082
15083 @item -mint32
15084 @itemx -mno-int16
15085 @opindex mint32
15086 @opindex mno-int16
15087 Use 32-bit @code{int}.
15088
15089 @item -mfloat64
15090 @itemx -mno-float32
15091 @opindex mfloat64
15092 @opindex mno-float32
15093 Use 64-bit @code{float}.  This is the default.
15094
15095 @item -mfloat32
15096 @itemx -mno-float64
15097 @opindex mfloat32
15098 @opindex mno-float64
15099 Use 32-bit @code{float}.
15100
15101 @item -mabshi
15102 @opindex mabshi
15103 Use @code{abshi2} pattern.  This is the default.
15104
15105 @item -mno-abshi
15106 @opindex mno-abshi
15107 Do not use @code{abshi2} pattern.
15108
15109 @item -mbranch-expensive
15110 @opindex mbranch-expensive
15111 Pretend that branches are expensive.  This is for experimenting with
15112 code generation only.
15113
15114 @item -mbranch-cheap
15115 @opindex mbranch-cheap
15116 Do not pretend that branches are expensive.  This is the default.
15117
15118 @item -munix-asm
15119 @opindex munix-asm
15120 Use Unix assembler syntax.  This is the default when configured for
15121 @samp{pdp11-*-bsd}.
15122
15123 @item -mdec-asm
15124 @opindex mdec-asm
15125 Use DEC assembler syntax.  This is the default when configured for any
15126 PDP-11 target other than @samp{pdp11-*-bsd}.
15127 @end table
15128
15129 @node picoChip Options
15130 @subsection picoChip Options
15131 @cindex picoChip options
15132
15133 These @samp{-m} options are defined for picoChip implementations:
15134
15135 @table @gcctabopt
15136
15137 @item -mae=@var{ae_type}
15138 @opindex mcpu
15139 Set the instruction set, register set, and instruction scheduling
15140 parameters for array element type @var{ae_type}.  Supported values
15141 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
15142
15143 @option{-mae=ANY} selects a completely generic AE type.  Code
15144 generated with this option will run on any of the other AE types.  The
15145 code will not be as efficient as it would be if compiled for a specific
15146 AE type, and some types of operation (e.g., multiplication) will not
15147 work properly on all types of AE.
15148
15149 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
15150 for compiled code, and is the default.
15151
15152 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
15153 option may suffer from poor performance of byte (char) manipulation,
15154 since the DSP AE does not provide hardware support for byte load/stores.
15155
15156 @item -msymbol-as-address
15157 Enable the compiler to directly use a symbol name as an address in a
15158 load/store instruction, without first loading it into a
15159 register.  Typically, the use of this option will generate larger
15160 programs, which run faster than when the option isn't used.  However, the
15161 results vary from program to program, so it is left as a user option,
15162 rather than being permanently enabled.
15163
15164 @item -mno-inefficient-warnings
15165 Disables warnings about the generation of inefficient code.  These
15166 warnings can be generated, for example, when compiling code which
15167 performs byte-level memory operations on the MAC AE type.  The MAC AE has
15168 no hardware support for byte-level memory operations, so all byte
15169 load/stores must be synthesized from word load/store operations.  This is
15170 inefficient and a warning will be generated indicating to the programmer
15171 that they should rewrite the code to avoid byte operations, or to target
15172 an AE type which has the necessary hardware support.  This option enables
15173 the warning to be turned off.
15174
15175 @end table
15176
15177 @node PowerPC Options
15178 @subsection PowerPC Options
15179 @cindex PowerPC options
15180
15181 These are listed under @xref{RS/6000 and PowerPC Options}.
15182
15183 @node RS/6000 and PowerPC Options
15184 @subsection IBM RS/6000 and PowerPC Options
15185 @cindex RS/6000 and PowerPC Options
15186 @cindex IBM RS/6000 and PowerPC Options
15187
15188 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
15189 @table @gcctabopt
15190 @item -mpower
15191 @itemx -mno-power
15192 @itemx -mpower2
15193 @itemx -mno-power2
15194 @itemx -mpowerpc
15195 @itemx -mno-powerpc
15196 @itemx -mpowerpc-gpopt
15197 @itemx -mno-powerpc-gpopt
15198 @itemx -mpowerpc-gfxopt
15199 @itemx -mno-powerpc-gfxopt
15200 @need 800
15201 @itemx -mpowerpc64
15202 @itemx -mno-powerpc64
15203 @itemx -mmfcrf
15204 @itemx -mno-mfcrf
15205 @itemx -mpopcntb
15206 @itemx -mno-popcntb
15207 @itemx -mpopcntd
15208 @itemx -mno-popcntd
15209 @itemx -mfprnd
15210 @itemx -mno-fprnd
15211 @need 800
15212 @itemx -mcmpb
15213 @itemx -mno-cmpb
15214 @itemx -mmfpgpr
15215 @itemx -mno-mfpgpr
15216 @itemx -mhard-dfp
15217 @itemx -mno-hard-dfp
15218 @opindex mpower
15219 @opindex mno-power
15220 @opindex mpower2
15221 @opindex mno-power2
15222 @opindex mpowerpc
15223 @opindex mno-powerpc
15224 @opindex mpowerpc-gpopt
15225 @opindex mno-powerpc-gpopt
15226 @opindex mpowerpc-gfxopt
15227 @opindex mno-powerpc-gfxopt
15228 @opindex mpowerpc64
15229 @opindex mno-powerpc64
15230 @opindex mmfcrf
15231 @opindex mno-mfcrf
15232 @opindex mpopcntb
15233 @opindex mno-popcntb
15234 @opindex mpopcntd
15235 @opindex mno-popcntd
15236 @opindex mfprnd
15237 @opindex mno-fprnd
15238 @opindex mcmpb
15239 @opindex mno-cmpb
15240 @opindex mmfpgpr
15241 @opindex mno-mfpgpr
15242 @opindex mhard-dfp
15243 @opindex mno-hard-dfp
15244 GCC supports two related instruction set architectures for the
15245 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
15246 instructions supported by the @samp{rios} chip set used in the original
15247 RS/6000 systems and the @dfn{PowerPC} instruction set is the
15248 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
15249 the IBM 4xx, 6xx, and follow-on microprocessors.
15250
15251 Neither architecture is a subset of the other.  However there is a
15252 large common subset of instructions supported by both.  An MQ
15253 register is included in processors supporting the POWER architecture.
15254
15255 You use these options to specify which instructions are available on the
15256 processor you are using.  The default value of these options is
15257 determined when configuring GCC@.  Specifying the
15258 @option{-mcpu=@var{cpu_type}} overrides the specification of these
15259 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
15260 rather than the options listed above.
15261
15262 The @option{-mpower} option allows GCC to generate instructions that
15263 are found only in the POWER architecture and to use the MQ register.
15264 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
15265 to generate instructions that are present in the POWER2 architecture but
15266 not the original POWER architecture.
15267
15268 The @option{-mpowerpc} option allows GCC to generate instructions that
15269 are found only in the 32-bit subset of the PowerPC architecture.
15270 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
15271 GCC to use the optional PowerPC architecture instructions in the
15272 General Purpose group, including floating-point square root.  Specifying
15273 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
15274 use the optional PowerPC architecture instructions in the Graphics
15275 group, including floating-point select.
15276
15277 The @option{-mmfcrf} option allows GCC to generate the move from
15278 condition register field instruction implemented on the POWER4
15279 processor and other processors that support the PowerPC V2.01
15280 architecture.
15281 The @option{-mpopcntb} option allows GCC to generate the popcount and
15282 double precision FP reciprocal estimate instruction implemented on the
15283 POWER5 processor and other processors that support the PowerPC V2.02
15284 architecture.
15285 The @option{-mpopcntd} option allows GCC to generate the popcount
15286 instruction implemented on the POWER7 processor and other processors
15287 that support the PowerPC V2.06 architecture.
15288 The @option{-mfprnd} option allows GCC to generate the FP round to
15289 integer instructions implemented on the POWER5+ processor and other
15290 processors that support the PowerPC V2.03 architecture.
15291 The @option{-mcmpb} option allows GCC to generate the compare bytes
15292 instruction implemented on the POWER6 processor and other processors
15293 that support the PowerPC V2.05 architecture.
15294 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
15295 general purpose register instructions implemented on the POWER6X
15296 processor and other processors that support the extended PowerPC V2.05
15297 architecture.
15298 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
15299 point instructions implemented on some POWER processors.
15300
15301 The @option{-mpowerpc64} option allows GCC to generate the additional
15302 64-bit instructions that are found in the full PowerPC64 architecture
15303 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
15304 @option{-mno-powerpc64}.
15305
15306 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
15307 will use only the instructions in the common subset of both
15308 architectures plus some special AIX common-mode calls, and will not use
15309 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
15310 permits GCC to use any instruction from either architecture and to
15311 allow use of the MQ register; specify this for the Motorola MPC601.
15312
15313 @item -mnew-mnemonics
15314 @itemx -mold-mnemonics
15315 @opindex mnew-mnemonics
15316 @opindex mold-mnemonics
15317 Select which mnemonics to use in the generated assembler code.  With
15318 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
15319 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
15320 assembler mnemonics defined for the POWER architecture.  Instructions
15321 defined in only one architecture have only one mnemonic; GCC uses that
15322 mnemonic irrespective of which of these options is specified.
15323
15324 GCC defaults to the mnemonics appropriate for the architecture in
15325 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
15326 value of these option.  Unless you are building a cross-compiler, you
15327 should normally not specify either @option{-mnew-mnemonics} or
15328 @option{-mold-mnemonics}, but should instead accept the default.
15329
15330 @item -mcpu=@var{cpu_type}
15331 @opindex mcpu
15332 Set architecture type, register usage, choice of mnemonics, and
15333 instruction scheduling parameters for machine type @var{cpu_type}.
15334 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
15335 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
15336 @samp{476}, @samp{476fp}, @samp{505}, @samp{601}, @samp{602}, @samp{603},
15337 @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740},
15338 @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
15339 @samp{860}, @samp{970}, @samp{8540}, @samp{a2}, @samp{e300c2},
15340 @samp{e300c3}, @samp{e500mc}, @samp{e500mc64}, @samp{ec603e}, @samp{G3},
15341 @samp{G4}, @samp{G5}, @samp{titan}, @samp{power}, @samp{power2}, @samp{power3},
15342 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x},
15343 @samp{power7}, @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
15344 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
15345
15346 @option{-mcpu=common} selects a completely generic processor.  Code
15347 generated under this option will run on any POWER or PowerPC processor.
15348 GCC will use only the instructions in the common subset of both
15349 architectures, and will not use the MQ register.  GCC assumes a generic
15350 processor model for scheduling purposes.
15351
15352 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
15353 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
15354 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
15355 types, with an appropriate, generic processor model assumed for
15356 scheduling purposes.
15357
15358 The other options specify a specific processor.  Code generated under
15359 those options will run best on that processor, and may not run at all on
15360 others.
15361
15362 The @option{-mcpu} options automatically enable or disable the
15363 following options:
15364
15365 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
15366 -mnew-mnemonics  -mpopcntb -mpopcntd  -mpower  -mpower2  -mpowerpc64 @gol
15367 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
15368 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr -mvsx}
15369
15370 The particular options set for any particular CPU will vary between
15371 compiler versions, depending on what setting seems to produce optimal
15372 code for that CPU; it doesn't necessarily reflect the actual hardware's
15373 capabilities.  If you wish to set an individual option to a particular
15374 value, you may specify it after the @option{-mcpu} option, like
15375 @samp{-mcpu=970 -mno-altivec}.
15376
15377 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
15378 not enabled or disabled by the @option{-mcpu} option at present because
15379 AIX does not have full support for these options.  You may still
15380 enable or disable them individually if you're sure it'll work in your
15381 environment.
15382
15383 @item -mtune=@var{cpu_type}
15384 @opindex mtune
15385 Set the instruction scheduling parameters for machine type
15386 @var{cpu_type}, but do not set the architecture type, register usage, or
15387 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
15388 values for @var{cpu_type} are used for @option{-mtune} as for
15389 @option{-mcpu}.  If both are specified, the code generated will use the
15390 architecture, registers, and mnemonics set by @option{-mcpu}, but the
15391 scheduling parameters set by @option{-mtune}.
15392
15393 @item -mcmodel=small
15394 @opindex mcmodel=small
15395 Generate PowerPC64 code for the small model: The TOC is limited to
15396 64k.
15397
15398 @item -mcmodel=medium
15399 @opindex mcmodel=medium
15400 Generate PowerPC64 code for the medium model: The TOC and other static
15401 data may be up to a total of 4G in size.
15402
15403 @item -mcmodel=large
15404 @opindex mcmodel=large
15405 Generate PowerPC64 code for the large model: The TOC may be up to 4G
15406 in size.  Other data and code is only limited by the 64-bit address
15407 space.
15408
15409 @item -maltivec
15410 @itemx -mno-altivec
15411 @opindex maltivec
15412 @opindex mno-altivec
15413 Generate code that uses (does not use) AltiVec instructions, and also
15414 enable the use of built-in functions that allow more direct access to
15415 the AltiVec instruction set.  You may also need to set
15416 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
15417 enhancements.
15418
15419 @item -mvrsave
15420 @itemx -mno-vrsave
15421 @opindex mvrsave
15422 @opindex mno-vrsave
15423 Generate VRSAVE instructions when generating AltiVec code.
15424
15425 @item -mgen-cell-microcode
15426 @opindex mgen-cell-microcode
15427 Generate Cell microcode instructions
15428
15429 @item -mwarn-cell-microcode
15430 @opindex mwarn-cell-microcode
15431 Warning when a Cell microcode instruction is going to emitted.  An example
15432 of a Cell microcode instruction is a variable shift.
15433
15434 @item -msecure-plt
15435 @opindex msecure-plt
15436 Generate code that allows ld and ld.so to build executables and shared
15437 libraries with non-exec .plt and .got sections.  This is a PowerPC
15438 32-bit SYSV ABI option.
15439
15440 @item -mbss-plt
15441 @opindex mbss-plt
15442 Generate code that uses a BSS .plt section that ld.so fills in, and
15443 requires .plt and .got sections that are both writable and executable.
15444 This is a PowerPC 32-bit SYSV ABI option.
15445
15446 @item -misel
15447 @itemx -mno-isel
15448 @opindex misel
15449 @opindex mno-isel
15450 This switch enables or disables the generation of ISEL instructions.
15451
15452 @item -misel=@var{yes/no}
15453 This switch has been deprecated.  Use @option{-misel} and
15454 @option{-mno-isel} instead.
15455
15456 @item -mspe
15457 @itemx -mno-spe
15458 @opindex mspe
15459 @opindex mno-spe
15460 This switch enables or disables the generation of SPE simd
15461 instructions.
15462
15463 @item -mpaired
15464 @itemx -mno-paired
15465 @opindex mpaired
15466 @opindex mno-paired
15467 This switch enables or disables the generation of PAIRED simd
15468 instructions.
15469
15470 @item -mspe=@var{yes/no}
15471 This option has been deprecated.  Use @option{-mspe} and
15472 @option{-mno-spe} instead.
15473
15474 @item -mvsx
15475 @itemx -mno-vsx
15476 @opindex mvsx
15477 @opindex mno-vsx
15478 Generate code that uses (does not use) vector/scalar (VSX)
15479 instructions, and also enable the use of built-in functions that allow
15480 more direct access to the VSX instruction set.
15481
15482 @item -mfloat-gprs=@var{yes/single/double/no}
15483 @itemx -mfloat-gprs
15484 @opindex mfloat-gprs
15485 This switch enables or disables the generation of floating point
15486 operations on the general purpose registers for architectures that
15487 support it.
15488
15489 The argument @var{yes} or @var{single} enables the use of
15490 single-precision floating point operations.
15491
15492 The argument @var{double} enables the use of single and
15493 double-precision floating point operations.
15494
15495 The argument @var{no} disables floating point operations on the
15496 general purpose registers.
15497
15498 This option is currently only available on the MPC854x.
15499
15500 @item -m32
15501 @itemx -m64
15502 @opindex m32
15503 @opindex m64
15504 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
15505 targets (including GNU/Linux).  The 32-bit environment sets int, long
15506 and pointer to 32 bits and generates code that runs on any PowerPC
15507 variant.  The 64-bit environment sets int to 32 bits and long and
15508 pointer to 64 bits, and generates code for PowerPC64, as for
15509 @option{-mpowerpc64}.
15510
15511 @item -mfull-toc
15512 @itemx -mno-fp-in-toc
15513 @itemx -mno-sum-in-toc
15514 @itemx -mminimal-toc
15515 @opindex mfull-toc
15516 @opindex mno-fp-in-toc
15517 @opindex mno-sum-in-toc
15518 @opindex mminimal-toc
15519 Modify generation of the TOC (Table Of Contents), which is created for
15520 every executable file.  The @option{-mfull-toc} option is selected by
15521 default.  In that case, GCC will allocate at least one TOC entry for
15522 each unique non-automatic variable reference in your program.  GCC
15523 will also place floating-point constants in the TOC@.  However, only
15524 16,384 entries are available in the TOC@.
15525
15526 If you receive a linker error message that saying you have overflowed
15527 the available TOC space, you can reduce the amount of TOC space used
15528 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
15529 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
15530 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
15531 generate code to calculate the sum of an address and a constant at
15532 run-time instead of putting that sum into the TOC@.  You may specify one
15533 or both of these options.  Each causes GCC to produce very slightly
15534 slower and larger code at the expense of conserving TOC space.
15535
15536 If you still run out of space in the TOC even when you specify both of
15537 these options, specify @option{-mminimal-toc} instead.  This option causes
15538 GCC to make only one TOC entry for every file.  When you specify this
15539 option, GCC will produce code that is slower and larger but which
15540 uses extremely little TOC space.  You may wish to use this option
15541 only on files that contain less frequently executed code.
15542
15543 @item -maix64
15544 @itemx -maix32
15545 @opindex maix64
15546 @opindex maix32
15547 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
15548 @code{long} type, and the infrastructure needed to support them.
15549 Specifying @option{-maix64} implies @option{-mpowerpc64} and
15550 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
15551 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
15552
15553 @item -mxl-compat
15554 @itemx -mno-xl-compat
15555 @opindex mxl-compat
15556 @opindex mno-xl-compat
15557 Produce code that conforms more closely to IBM XL compiler semantics
15558 when using AIX-compatible ABI@.  Pass floating-point arguments to
15559 prototyped functions beyond the register save area (RSA) on the stack
15560 in addition to argument FPRs.  Do not assume that most significant
15561 double in 128-bit long double value is properly rounded when comparing
15562 values and converting to double.  Use XL symbol names for long double
15563 support routines.
15564
15565 The AIX calling convention was extended but not initially documented to
15566 handle an obscure K&R C case of calling a function that takes the
15567 address of its arguments with fewer arguments than declared.  IBM XL
15568 compilers access floating point arguments which do not fit in the
15569 RSA from the stack when a subroutine is compiled without
15570 optimization.  Because always storing floating-point arguments on the
15571 stack is inefficient and rarely needed, this option is not enabled by
15572 default and only is necessary when calling subroutines compiled by IBM
15573 XL compilers without optimization.
15574
15575 @item -mpe
15576 @opindex mpe
15577 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
15578 application written to use message passing with special startup code to
15579 enable the application to run.  The system must have PE installed in the
15580 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
15581 must be overridden with the @option{-specs=} option to specify the
15582 appropriate directory location.  The Parallel Environment does not
15583 support threads, so the @option{-mpe} option and the @option{-pthread}
15584 option are incompatible.
15585
15586 @item -malign-natural
15587 @itemx -malign-power
15588 @opindex malign-natural
15589 @opindex malign-power
15590 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
15591 @option{-malign-natural} overrides the ABI-defined alignment of larger
15592 types, such as floating-point doubles, on their natural size-based boundary.
15593 The option @option{-malign-power} instructs GCC to follow the ABI-specified
15594 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
15595
15596 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
15597 is not supported.
15598
15599 @item -msoft-float
15600 @itemx -mhard-float
15601 @opindex msoft-float
15602 @opindex mhard-float
15603 Generate code that does not use (uses) the floating-point register set.
15604 Software floating point emulation is provided if you use the
15605 @option{-msoft-float} option, and pass the option to GCC when linking.
15606
15607 @item -msingle-float
15608 @itemx -mdouble-float
15609 @opindex msingle-float
15610 @opindex mdouble-float
15611 Generate code for single or double-precision floating point operations.
15612 @option{-mdouble-float} implies @option{-msingle-float}.
15613
15614 @item -msimple-fpu
15615 @opindex msimple-fpu
15616 Do not generate sqrt and div instructions for hardware floating point unit.
15617
15618 @item -mfpu
15619 @opindex mfpu
15620 Specify type of floating point unit.  Valid values are @var{sp_lite}
15621 (equivalent to -msingle-float -msimple-fpu), @var{dp_lite} (equivalent
15622 to -mdouble-float -msimple-fpu), @var{sp_full} (equivalent to -msingle-float),
15623 and @var{dp_full} (equivalent to -mdouble-float).
15624
15625 @item -mxilinx-fpu
15626 @opindex mxilinx-fpu
15627 Perform optimizations for floating point unit on Xilinx PPC 405/440.
15628
15629 @item -mmultiple
15630 @itemx -mno-multiple
15631 @opindex mmultiple
15632 @opindex mno-multiple
15633 Generate code that uses (does not use) the load multiple word
15634 instructions and the store multiple word instructions.  These
15635 instructions are generated by default on POWER systems, and not
15636 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
15637 endian PowerPC systems, since those instructions do not work when the
15638 processor is in little endian mode.  The exceptions are PPC740 and
15639 PPC750 which permit the instructions usage in little endian mode.
15640
15641 @item -mstring
15642 @itemx -mno-string
15643 @opindex mstring
15644 @opindex mno-string
15645 Generate code that uses (does not use) the load string instructions
15646 and the store string word instructions to save multiple registers and
15647 do small block moves.  These instructions are generated by default on
15648 POWER systems, and not generated on PowerPC systems.  Do not use
15649 @option{-mstring} on little endian PowerPC systems, since those
15650 instructions do not work when the processor is in little endian mode.
15651 The exceptions are PPC740 and PPC750 which permit the instructions
15652 usage in little endian mode.
15653
15654 @item -mupdate
15655 @itemx -mno-update
15656 @opindex mupdate
15657 @opindex mno-update
15658 Generate code that uses (does not use) the load or store instructions
15659 that update the base register to the address of the calculated memory
15660 location.  These instructions are generated by default.  If you use
15661 @option{-mno-update}, there is a small window between the time that the
15662 stack pointer is updated and the address of the previous frame is
15663 stored, which means code that walks the stack frame across interrupts or
15664 signals may get corrupted data.
15665
15666 @item -mavoid-indexed-addresses
15667 @itemx -mno-avoid-indexed-addresses
15668 @opindex mavoid-indexed-addresses
15669 @opindex mno-avoid-indexed-addresses
15670 Generate code that tries to avoid (not avoid) the use of indexed load
15671 or store instructions. These instructions can incur a performance
15672 penalty on Power6 processors in certain situations, such as when
15673 stepping through large arrays that cross a 16M boundary.  This option
15674 is enabled by default when targetting Power6 and disabled otherwise.
15675
15676 @item -mfused-madd
15677 @itemx -mno-fused-madd
15678 @opindex mfused-madd
15679 @opindex mno-fused-madd
15680 Generate code that uses (does not use) the floating point multiply and
15681 accumulate instructions.  These instructions are generated by default
15682 if hardware floating point is used.  The machine dependent
15683 @option{-mfused-madd} option is now mapped to the machine independent
15684 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
15685 mapped to @option{-ffp-contract=off}.
15686
15687 @item -mmulhw
15688 @itemx -mno-mulhw
15689 @opindex mmulhw
15690 @opindex mno-mulhw
15691 Generate code that uses (does not use) the half-word multiply and
15692 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
15693 These instructions are generated by default when targetting those
15694 processors.
15695
15696 @item -mdlmzb
15697 @itemx -mno-dlmzb
15698 @opindex mdlmzb
15699 @opindex mno-dlmzb
15700 Generate code that uses (does not use) the string-search @samp{dlmzb}
15701 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
15702 generated by default when targetting those processors.
15703
15704 @item -mno-bit-align
15705 @itemx -mbit-align
15706 @opindex mno-bit-align
15707 @opindex mbit-align
15708 On System V.4 and embedded PowerPC systems do not (do) force structures
15709 and unions that contain bit-fields to be aligned to the base type of the
15710 bit-field.
15711
15712 For example, by default a structure containing nothing but 8
15713 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
15714 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
15715 the structure would be aligned to a 1 byte boundary and be one byte in
15716 size.
15717
15718 @item -mno-strict-align
15719 @itemx -mstrict-align
15720 @opindex mno-strict-align
15721 @opindex mstrict-align
15722 On System V.4 and embedded PowerPC systems do not (do) assume that
15723 unaligned memory references will be handled by the system.
15724
15725 @item -mrelocatable
15726 @itemx -mno-relocatable
15727 @opindex mrelocatable
15728 @opindex mno-relocatable
15729 Generate code that allows (does not allow) a static executable to be
15730 relocated to a different address at runtime.  A simple embedded
15731 PowerPC system loader should relocate the entire contents of
15732 @code{.got2} and 4-byte locations listed in the @code{.fixup} section,
15733 a table of 32-bit addresses generated by this option.  For this to
15734 work, all objects linked together must be compiled with
15735 @option{-mrelocatable} or @option{-mrelocatable-lib}.
15736 @option{-mrelocatable} code aligns the stack to an 8 byte boundary.
15737
15738 @item -mrelocatable-lib
15739 @itemx -mno-relocatable-lib
15740 @opindex mrelocatable-lib
15741 @opindex mno-relocatable-lib
15742 Like @option{-mrelocatable}, @option{-mrelocatable-lib} generates a
15743 @code{.fixup} section to allow static executables to be relocated at
15744 runtime, but @option{-mrelocatable-lib} does not use the smaller stack
15745 alignment of @option{-mrelocatable}.  Objects compiled with
15746 @option{-mrelocatable-lib} may be linked with objects compiled with
15747 any combination of the @option{-mrelocatable} options.
15748
15749 @item -mno-toc
15750 @itemx -mtoc
15751 @opindex mno-toc
15752 @opindex mtoc
15753 On System V.4 and embedded PowerPC systems do not (do) assume that
15754 register 2 contains a pointer to a global area pointing to the addresses
15755 used in the program.
15756
15757 @item -mlittle
15758 @itemx -mlittle-endian
15759 @opindex mlittle
15760 @opindex mlittle-endian
15761 On System V.4 and embedded PowerPC systems compile code for the
15762 processor in little endian mode.  The @option{-mlittle-endian} option is
15763 the same as @option{-mlittle}.
15764
15765 @item -mbig
15766 @itemx -mbig-endian
15767 @opindex mbig
15768 @opindex mbig-endian
15769 On System V.4 and embedded PowerPC systems compile code for the
15770 processor in big endian mode.  The @option{-mbig-endian} option is
15771 the same as @option{-mbig}.
15772
15773 @item -mdynamic-no-pic
15774 @opindex mdynamic-no-pic
15775 On Darwin and Mac OS X systems, compile code so that it is not
15776 relocatable, but that its external references are relocatable.  The
15777 resulting code is suitable for applications, but not shared
15778 libraries.
15779
15780 @item -msingle-pic-base
15781 @opindex msingle-pic-base
15782 Treat the register used for PIC addressing as read-only, rather than
15783 loading it in the prologue for each function.  The run-time system is
15784 responsible for initializing this register with an appropriate value
15785 before execution begins.
15786
15787 @item -mprioritize-restricted-insns=@var{priority}
15788 @opindex mprioritize-restricted-insns
15789 This option controls the priority that is assigned to
15790 dispatch-slot restricted instructions during the second scheduling
15791 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
15792 @var{no/highest/second-highest} priority to dispatch slot restricted
15793 instructions.
15794
15795 @item -msched-costly-dep=@var{dependence_type}
15796 @opindex msched-costly-dep
15797 This option controls which dependences are considered costly
15798 by the target during instruction scheduling.  The argument
15799 @var{dependence_type} takes one of the following values:
15800 @var{no}: no dependence is costly,
15801 @var{all}: all dependences are costly,
15802 @var{true_store_to_load}: a true dependence from store to load is costly,
15803 @var{store_to_load}: any dependence from store to load is costly,
15804 @var{number}: any dependence which latency >= @var{number} is costly.
15805
15806 @item -minsert-sched-nops=@var{scheme}
15807 @opindex minsert-sched-nops
15808 This option controls which nop insertion scheme will be used during
15809 the second scheduling pass.  The argument @var{scheme} takes one of the
15810 following values:
15811 @var{no}: Don't insert nops.
15812 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
15813 according to the scheduler's grouping.
15814 @var{regroup_exact}: Insert nops to force costly dependent insns into
15815 separate groups.  Insert exactly as many nops as needed to force an insn
15816 to a new group, according to the estimated processor grouping.
15817 @var{number}: Insert nops to force costly dependent insns into
15818 separate groups.  Insert @var{number} nops to force an insn to a new group.
15819
15820 @item -mcall-sysv
15821 @opindex mcall-sysv
15822 On System V.4 and embedded PowerPC systems compile code using calling
15823 conventions that adheres to the March 1995 draft of the System V
15824 Application Binary Interface, PowerPC processor supplement.  This is the
15825 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
15826
15827 @item -mcall-sysv-eabi
15828 @itemx -mcall-eabi
15829 @opindex mcall-sysv-eabi
15830 @opindex mcall-eabi
15831 Specify both @option{-mcall-sysv} and @option{-meabi} options.
15832
15833 @item -mcall-sysv-noeabi
15834 @opindex mcall-sysv-noeabi
15835 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
15836
15837 @item -mcall-aixdesc
15838 @opindex m
15839 On System V.4 and embedded PowerPC systems compile code for the AIX
15840 operating system.
15841
15842 @item -mcall-linux
15843 @opindex mcall-linux
15844 On System V.4 and embedded PowerPC systems compile code for the
15845 Linux-based GNU system.
15846
15847 @item -mcall-freebsd
15848 @opindex mcall-freebsd
15849 On System V.4 and embedded PowerPC systems compile code for the
15850 FreeBSD operating system.
15851
15852 @item -mcall-netbsd
15853 @opindex mcall-netbsd
15854 On System V.4 and embedded PowerPC systems compile code for the
15855 NetBSD operating system.
15856
15857 @item -mcall-openbsd
15858 @opindex mcall-netbsd
15859 On System V.4 and embedded PowerPC systems compile code for the
15860 OpenBSD operating system.
15861
15862 @item -maix-struct-return
15863 @opindex maix-struct-return
15864 Return all structures in memory (as specified by the AIX ABI)@.
15865
15866 @item -msvr4-struct-return
15867 @opindex msvr4-struct-return
15868 Return structures smaller than 8 bytes in registers (as specified by the
15869 SVR4 ABI)@.
15870
15871 @item -mabi=@var{abi-type}
15872 @opindex mabi
15873 Extend the current ABI with a particular extension, or remove such extension.
15874 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
15875 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
15876
15877 @item -mabi=spe
15878 @opindex mabi=spe
15879 Extend the current ABI with SPE ABI extensions.  This does not change
15880 the default ABI, instead it adds the SPE ABI extensions to the current
15881 ABI@.
15882
15883 @item -mabi=no-spe
15884 @opindex mabi=no-spe
15885 Disable Booke SPE ABI extensions for the current ABI@.
15886
15887 @item -mabi=ibmlongdouble
15888 @opindex mabi=ibmlongdouble
15889 Change the current ABI to use IBM extended precision long double.
15890 This is a PowerPC 32-bit SYSV ABI option.
15891
15892 @item -mabi=ieeelongdouble
15893 @opindex mabi=ieeelongdouble
15894 Change the current ABI to use IEEE extended precision long double.
15895 This is a PowerPC 32-bit Linux ABI option.
15896
15897 @item -mprototype
15898 @itemx -mno-prototype
15899 @opindex mprototype
15900 @opindex mno-prototype
15901 On System V.4 and embedded PowerPC systems assume that all calls to
15902 variable argument functions are properly prototyped.  Otherwise, the
15903 compiler must insert an instruction before every non prototyped call to
15904 set or clear bit 6 of the condition code register (@var{CR}) to
15905 indicate whether floating point values were passed in the floating point
15906 registers in case the function takes a variable arguments.  With
15907 @option{-mprototype}, only calls to prototyped variable argument functions
15908 will set or clear the bit.
15909
15910 @item -msim
15911 @opindex msim
15912 On embedded PowerPC systems, assume that the startup module is called
15913 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
15914 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
15915 configurations.
15916
15917 @item -mmvme
15918 @opindex mmvme
15919 On embedded PowerPC systems, assume that the startup module is called
15920 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
15921 @file{libc.a}.
15922
15923 @item -mads
15924 @opindex mads
15925 On embedded PowerPC systems, assume that the startup module is called
15926 @file{crt0.o} and the standard C libraries are @file{libads.a} and
15927 @file{libc.a}.
15928
15929 @item -myellowknife
15930 @opindex myellowknife
15931 On embedded PowerPC systems, assume that the startup module is called
15932 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
15933 @file{libc.a}.
15934
15935 @item -mvxworks
15936 @opindex mvxworks
15937 On System V.4 and embedded PowerPC systems, specify that you are
15938 compiling for a VxWorks system.
15939
15940 @item -memb
15941 @opindex memb
15942 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
15943 header to indicate that @samp{eabi} extended relocations are used.
15944
15945 @item -meabi
15946 @itemx -mno-eabi
15947 @opindex meabi
15948 @opindex mno-eabi
15949 On System V.4 and embedded PowerPC systems do (do not) adhere to the
15950 Embedded Applications Binary Interface (eabi) which is a set of
15951 modifications to the System V.4 specifications.  Selecting @option{-meabi}
15952 means that the stack is aligned to an 8 byte boundary, a function
15953 @code{__eabi} is called to from @code{main} to set up the eabi
15954 environment, and the @option{-msdata} option can use both @code{r2} and
15955 @code{r13} to point to two separate small data areas.  Selecting
15956 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
15957 do not call an initialization function from @code{main}, and the
15958 @option{-msdata} option will only use @code{r13} to point to a single
15959 small data area.  The @option{-meabi} option is on by default if you
15960 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
15961
15962 @item -msdata=eabi
15963 @opindex msdata=eabi
15964 On System V.4 and embedded PowerPC systems, put small initialized
15965 @code{const} global and static data in the @samp{.sdata2} section, which
15966 is pointed to by register @code{r2}.  Put small initialized
15967 non-@code{const} global and static data in the @samp{.sdata} section,
15968 which is pointed to by register @code{r13}.  Put small uninitialized
15969 global and static data in the @samp{.sbss} section, which is adjacent to
15970 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
15971 incompatible with the @option{-mrelocatable} option.  The
15972 @option{-msdata=eabi} option also sets the @option{-memb} option.
15973
15974 @item -msdata=sysv
15975 @opindex msdata=sysv
15976 On System V.4 and embedded PowerPC systems, put small global and static
15977 data in the @samp{.sdata} section, which is pointed to by register
15978 @code{r13}.  Put small uninitialized global and static data in the
15979 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
15980 The @option{-msdata=sysv} option is incompatible with the
15981 @option{-mrelocatable} option.
15982
15983 @item -msdata=default
15984 @itemx -msdata
15985 @opindex msdata=default
15986 @opindex msdata
15987 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
15988 compile code the same as @option{-msdata=eabi}, otherwise compile code the
15989 same as @option{-msdata=sysv}.
15990
15991 @item -msdata=data
15992 @opindex msdata=data
15993 On System V.4 and embedded PowerPC systems, put small global
15994 data in the @samp{.sdata} section.  Put small uninitialized global
15995 data in the @samp{.sbss} section.  Do not use register @code{r13}
15996 to address small data however.  This is the default behavior unless
15997 other @option{-msdata} options are used.
15998
15999 @item -msdata=none
16000 @itemx -mno-sdata
16001 @opindex msdata=none
16002 @opindex mno-sdata
16003 On embedded PowerPC systems, put all initialized global and static data
16004 in the @samp{.data} section, and all uninitialized data in the
16005 @samp{.bss} section.
16006
16007 @item -mblock-move-inline-limit=@var{num}
16008 @opindex mblock-move-inline-limit
16009 Inline all block moves (such as calls to @code{memcpy} or structure
16010 copies) less than or equal to @var{num} bytes.  The minimum value for
16011 @var{num} is 32 bytes on 32-bit targets and 64 bytes on 64-bit
16012 targets.  The default value is target-specific.
16013
16014 @item -G @var{num}
16015 @opindex G
16016 @cindex smaller data references (PowerPC)
16017 @cindex .sdata/.sdata2 references (PowerPC)
16018 On embedded PowerPC systems, put global and static items less than or
16019 equal to @var{num} bytes into the small data or bss sections instead of
16020 the normal data or bss section.  By default, @var{num} is 8.  The
16021 @option{-G @var{num}} switch is also passed to the linker.
16022 All modules should be compiled with the same @option{-G @var{num}} value.
16023
16024 @item -mregnames
16025 @itemx -mno-regnames
16026 @opindex mregnames
16027 @opindex mno-regnames
16028 On System V.4 and embedded PowerPC systems do (do not) emit register
16029 names in the assembly language output using symbolic forms.
16030
16031 @item -mlongcall
16032 @itemx -mno-longcall
16033 @opindex mlongcall
16034 @opindex mno-longcall
16035 By default assume that all calls are far away so that a longer more
16036 expensive calling sequence is required.  This is required for calls
16037 further than 32 megabytes (33,554,432 bytes) from the current location.
16038 A short call will be generated if the compiler knows
16039 the call cannot be that far away.  This setting can be overridden by
16040 the @code{shortcall} function attribute, or by @code{#pragma
16041 longcall(0)}.
16042
16043 Some linkers are capable of detecting out-of-range calls and generating
16044 glue code on the fly.  On these systems, long calls are unnecessary and
16045 generate slower code.  As of this writing, the AIX linker can do this,
16046 as can the GNU linker for PowerPC/64.  It is planned to add this feature
16047 to the GNU linker for 32-bit PowerPC systems as well.
16048
16049 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
16050 callee, L42'', plus a ``branch island'' (glue code).  The two target
16051 addresses represent the callee and the ``branch island''.  The
16052 Darwin/PPC linker will prefer the first address and generate a ``bl
16053 callee'' if the PPC ``bl'' instruction will reach the callee directly;
16054 otherwise, the linker will generate ``bl L42'' to call the ``branch
16055 island''.  The ``branch island'' is appended to the body of the
16056 calling function; it computes the full 32-bit address of the callee
16057 and jumps to it.
16058
16059 On Mach-O (Darwin) systems, this option directs the compiler emit to
16060 the glue for every direct call, and the Darwin linker decides whether
16061 to use or discard it.
16062
16063 In the future, we may cause GCC to ignore all longcall specifications
16064 when the linker is known to generate glue.
16065
16066 @item -mtls-markers
16067 @itemx -mno-tls-markers
16068 @opindex mtls-markers
16069 @opindex mno-tls-markers
16070 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
16071 specifying the function argument.  The relocation allows ld to
16072 reliably associate function call with argument setup instructions for
16073 TLS optimization, which in turn allows gcc to better schedule the
16074 sequence.
16075
16076 @item -pthread
16077 @opindex pthread
16078 Adds support for multithreading with the @dfn{pthreads} library.
16079 This option sets flags for both the preprocessor and linker.
16080
16081 @item -mrecip
16082 @itemx -mno-recip
16083 @opindex mrecip
16084 This option will enable GCC to use the reciprocal estimate and
16085 reciprocal square root estimate instructions with additional
16086 Newton-Raphson steps to increase precision instead of doing a divide or
16087 square root and divide for floating point arguments.  You should use
16088 the @option{-ffast-math} option when using @option{-mrecip} (or at
16089 least @option{-funsafe-math-optimizations},
16090 @option{-finite-math-only}, @option{-freciprocal-math} and
16091 @option{-fno-trapping-math}).  Note that while the throughput of the
16092 sequence is generally higher than the throughput of the non-reciprocal
16093 instruction, the precision of the sequence can be decreased by up to 2
16094 ulp (i.e. the inverse of 1.0 equals 0.99999994) for reciprocal square
16095 roots.
16096
16097 @item -mrecip=@var{opt}
16098 @opindex mrecip=opt
16099 This option allows to control which reciprocal estimate instructions
16100 may be used.  @var{opt} is a comma separated list of options, that may
16101 be preceded by a @code{!} to invert the option:
16102 @code{all}: enable all estimate instructions,
16103 @code{default}: enable the default instructions, equivalent to @option{-mrecip},
16104 @code{none}: disable all estimate instructions, equivalent to @option{-mno-recip};
16105 @code{div}: enable the reciprocal approximation instructions for both single and double precision;
16106 @code{divf}: enable the single precision reciprocal approximation instructions;
16107 @code{divd}: enable the double precision reciprocal approximation instructions;
16108 @code{rsqrt}: enable the reciprocal square root approximation instructions for both single and double precision;
16109 @code{rsqrtf}: enable the single precision reciprocal square root approximation instructions;
16110 @code{rsqrtd}: enable the double precision reciprocal square root approximation instructions;
16111
16112 So for example, @option{-mrecip=all,!rsqrtd} would enable the
16113 all of the reciprocal estimate instructions, except for the
16114 @code{FRSQRTE}, @code{XSRSQRTEDP}, and @code{XVRSQRTEDP} instructions
16115 which handle the double precision reciprocal square root calculations.
16116
16117 @item -mrecip-precision
16118 @itemx -mno-recip-precision
16119 @opindex mrecip-precision
16120 Assume (do not assume) that the reciprocal estimate instructions
16121 provide higher precision estimates than is mandated by the powerpc
16122 ABI.  Selecting @option{-mcpu=power6} or @option{-mcpu=power7}
16123 automatically selects @option{-mrecip-precision}.  The double
16124 precision square root estimate instructions are not generated by
16125 default on low precision machines, since they do not provide an
16126 estimate that converges after three steps.
16127
16128 @item -mveclibabi=@var{type}
16129 @opindex mveclibabi
16130 Specifies the ABI type to use for vectorizing intrinsics using an
16131 external library.  The only type supported at present is @code{mass},
16132 which specifies to use IBM's Mathematical Acceleration Subsystem
16133 (MASS) libraries for vectorizing intrinsics using external libraries.
16134 GCC will currently emit calls to @code{acosd2}, @code{acosf4},
16135 @code{acoshd2}, @code{acoshf4}, @code{asind2}, @code{asinf4},
16136 @code{asinhd2}, @code{asinhf4}, @code{atan2d2}, @code{atan2f4},
16137 @code{atand2}, @code{atanf4}, @code{atanhd2}, @code{atanhf4},
16138 @code{cbrtd2}, @code{cbrtf4}, @code{cosd2}, @code{cosf4},
16139 @code{coshd2}, @code{coshf4}, @code{erfcd2}, @code{erfcf4},
16140 @code{erfd2}, @code{erff4}, @code{exp2d2}, @code{exp2f4},
16141 @code{expd2}, @code{expf4}, @code{expm1d2}, @code{expm1f4},
16142 @code{hypotd2}, @code{hypotf4}, @code{lgammad2}, @code{lgammaf4},
16143 @code{log10d2}, @code{log10f4}, @code{log1pd2}, @code{log1pf4},
16144 @code{log2d2}, @code{log2f4}, @code{logd2}, @code{logf4},
16145 @code{powd2}, @code{powf4}, @code{sind2}, @code{sinf4}, @code{sinhd2},
16146 @code{sinhf4}, @code{sqrtd2}, @code{sqrtf4}, @code{tand2},
16147 @code{tanf4}, @code{tanhd2}, and @code{tanhf4} when generating code
16148 for power7.  Both @option{-ftree-vectorize} and
16149 @option{-funsafe-math-optimizations} have to be enabled.  The MASS
16150 libraries will have to be specified at link time.
16151
16152 @item -mfriz
16153 @itemx -mno-friz
16154 @opindex mfriz
16155 Generate (do not generate) the @code{friz} instruction when the
16156 @option{-funsafe-math-optimizations} option is used to optimize
16157 rounding a floating point value to 64-bit integer and back to floating
16158 point.  The @code{friz} instruction does not return the same value if
16159 the floating point number is too large to fit in an integer.
16160 @end table
16161
16162 @node RX Options
16163 @subsection RX Options
16164 @cindex RX Options
16165
16166 These command line options are defined for RX targets:
16167
16168 @table @gcctabopt
16169 @item -m64bit-doubles
16170 @itemx -m32bit-doubles
16171 @opindex m64bit-doubles
16172 @opindex m32bit-doubles
16173 Make the @code{double} data type be 64-bits (@option{-m64bit-doubles})
16174 or 32-bits (@option{-m32bit-doubles}) in size.  The default is
16175 @option{-m32bit-doubles}.  @emph{Note} RX floating point hardware only
16176 works on 32-bit values, which is why the default is
16177 @option{-m32bit-doubles}.
16178
16179 @item -fpu
16180 @itemx -nofpu
16181 @opindex fpu
16182 @opindex nofpu
16183 Enables (@option{-fpu}) or disables (@option{-nofpu}) the use of RX
16184 floating point hardware.  The default is enabled for the @var{RX600}
16185 series and disabled for the @var{RX200} series.
16186
16187 Floating point instructions will only be generated for 32-bit floating
16188 point values however, so if the @option{-m64bit-doubles} option is in
16189 use then the FPU hardware will not be used for doubles.
16190
16191 @emph{Note} If the @option{-fpu} option is enabled then
16192 @option{-funsafe-math-optimizations} is also enabled automatically.
16193 This is because the RX FPU instructions are themselves unsafe.
16194
16195 @item -mcpu=@var{name}
16196 @opindex -mcpu
16197 Selects the type of RX CPU to be targeted.  Currently three types are
16198 supported, the generic @var{RX600} and @var{RX200} series hardware and
16199 the specific @var{RX610} CPU.  The default is @var{RX600}.
16200
16201 The only difference between @var{RX600} and @var{RX610} is that the
16202 @var{RX610} does not support the @code{MVTIPL} instruction.
16203
16204 The @var{RX200} series does not have a hardware floating point unit
16205 and so @option{-nofpu} is enabled by default when this type is
16206 selected.
16207
16208 @item -mbig-endian-data
16209 @itemx -mlittle-endian-data
16210 @opindex mbig-endian-data
16211 @opindex mlittle-endian-data
16212 Store data (but not code) in the big-endian format.  The default is
16213 @option{-mlittle-endian-data}, i.e.@: to store data in the little endian
16214 format.
16215
16216 @item -msmall-data-limit=@var{N}
16217 @opindex msmall-data-limit
16218 Specifies the maximum size in bytes of global and static variables
16219 which can be placed into the small data area.  Using the small data
16220 area can lead to smaller and faster code, but the size of area is
16221 limited and it is up to the programmer to ensure that the area does
16222 not overflow.  Also when the small data area is used one of the RX's
16223 registers (@code{r13}) is reserved for use pointing to this area, so
16224 it is no longer available for use by the compiler.  This could result
16225 in slower and/or larger code if variables which once could have been
16226 held in @code{r13} are now pushed onto the stack.
16227
16228 Note, common variables (variables which have not been initialised) and
16229 constants are not placed into the small data area as they are assigned
16230 to other sections in the output executable.
16231
16232 The default value is zero, which disables this feature.  Note, this
16233 feature is not enabled by default with higher optimization levels
16234 (@option{-O2} etc) because of the potentially detrimental effects of
16235 reserving register @code{r13}.  It is up to the programmer to
16236 experiment and discover whether this feature is of benefit to their
16237 program.
16238
16239 @item -msim
16240 @itemx -mno-sim
16241 @opindex msim
16242 @opindex mno-sim
16243 Use the simulator runtime.  The default is to use the libgloss board
16244 specific runtime.
16245
16246 @item -mas100-syntax
16247 @itemx -mno-as100-syntax
16248 @opindex mas100-syntax
16249 @opindex mno-as100-syntax
16250 When generating assembler output use a syntax that is compatible with
16251 Renesas's AS100 assembler.  This syntax can also be handled by the GAS
16252 assembler but it has some restrictions so generating it is not the
16253 default option.
16254
16255 @item -mmax-constant-size=@var{N}
16256 @opindex mmax-constant-size
16257 Specifies the maximum size, in bytes, of a constant that can be used as
16258 an operand in a RX instruction.  Although the RX instruction set does
16259 allow constants of up to 4 bytes in length to be used in instructions,
16260 a longer value equates to a longer instruction.  Thus in some
16261 circumstances it can be beneficial to restrict the size of constants
16262 that are used in instructions.  Constants that are too big are instead
16263 placed into a constant pool and referenced via register indirection.
16264
16265 The value @var{N} can be between 0 and 4.  A value of 0 (the default)
16266 or 4 means that constants of any size are allowed.
16267
16268 @item -mrelax
16269 @opindex mrelax
16270 Enable linker relaxation.  Linker relaxation is a process whereby the
16271 linker will attempt to reduce the size of a program by finding shorter
16272 versions of various instructions.  Disabled by default.
16273
16274 @item -mint-register=@var{N}
16275 @opindex mint-register
16276 Specify the number of registers to reserve for fast interrupt handler
16277 functions.  The value @var{N} can be between 0 and 4.  A value of 1
16278 means that register @code{r13} will be reserved for the exclusive use
16279 of fast interrupt handlers.  A value of 2 reserves @code{r13} and
16280 @code{r12}.  A value of 3 reserves @code{r13}, @code{r12} and
16281 @code{r11}, and a value of 4 reserves @code{r13} through @code{r10}.
16282 A value of 0, the default, does not reserve any registers.
16283
16284 @item -msave-acc-in-interrupts
16285 @opindex msave-acc-in-interrupts
16286 Specifies that interrupt handler functions should preserve the
16287 accumulator register.  This is only necessary if normal code might use
16288 the accumulator register, for example because it performs 64-bit
16289 multiplications.  The default is to ignore the accumulator as this
16290 makes the interrupt handlers faster.
16291
16292 @end table
16293
16294 @emph{Note:} The generic GCC command line @option{-ffixed-@var{reg}}
16295 has special significance to the RX port when used with the
16296 @code{interrupt} function attribute.  This attribute indicates a
16297 function intended to process fast interrupts.  GCC will will ensure
16298 that it only uses the registers @code{r10}, @code{r11}, @code{r12}
16299 and/or @code{r13} and only provided that the normal use of the
16300 corresponding registers have been restricted via the
16301 @option{-ffixed-@var{reg}} or @option{-mint-register} command line
16302 options.
16303
16304 @node S/390 and zSeries Options
16305 @subsection S/390 and zSeries Options
16306 @cindex S/390 and zSeries Options
16307
16308 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
16309
16310 @table @gcctabopt
16311 @item -mhard-float
16312 @itemx -msoft-float
16313 @opindex mhard-float
16314 @opindex msoft-float
16315 Use (do not use) the hardware floating-point instructions and registers
16316 for floating-point operations.  When @option{-msoft-float} is specified,
16317 functions in @file{libgcc.a} will be used to perform floating-point
16318 operations.  When @option{-mhard-float} is specified, the compiler
16319 generates IEEE floating-point instructions.  This is the default.
16320
16321 @item -mhard-dfp
16322 @itemx -mno-hard-dfp
16323 @opindex mhard-dfp
16324 @opindex mno-hard-dfp
16325 Use (do not use) the hardware decimal-floating-point instructions for
16326 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
16327 specified, functions in @file{libgcc.a} will be used to perform
16328 decimal-floating-point operations.  When @option{-mhard-dfp} is
16329 specified, the compiler generates decimal-floating-point hardware
16330 instructions.  This is the default for @option{-march=z9-ec} or higher.
16331
16332 @item -mlong-double-64
16333 @itemx -mlong-double-128
16334 @opindex mlong-double-64
16335 @opindex mlong-double-128
16336 These switches control the size of @code{long double} type. A size
16337 of 64bit makes the @code{long double} type equivalent to the @code{double}
16338 type. This is the default.
16339
16340 @item -mbackchain
16341 @itemx -mno-backchain
16342 @opindex mbackchain
16343 @opindex mno-backchain
16344 Store (do not store) the address of the caller's frame as backchain pointer
16345 into the callee's stack frame.
16346 A backchain may be needed to allow debugging using tools that do not understand
16347 DWARF-2 call frame information.
16348 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
16349 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
16350 the backchain is placed into the topmost word of the 96/160 byte register
16351 save area.
16352
16353 In general, code compiled with @option{-mbackchain} is call-compatible with
16354 code compiled with @option{-mmo-backchain}; however, use of the backchain
16355 for debugging purposes usually requires that the whole binary is built with
16356 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
16357 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16358 to build a linux kernel use @option{-msoft-float}.
16359
16360 The default is to not maintain the backchain.
16361
16362 @item -mpacked-stack
16363 @itemx -mno-packed-stack
16364 @opindex mpacked-stack
16365 @opindex mno-packed-stack
16366 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
16367 specified, the compiler uses the all fields of the 96/160 byte register save
16368 area only for their default purpose; unused fields still take up stack space.
16369 When @option{-mpacked-stack} is specified, register save slots are densely
16370 packed at the top of the register save area; unused space is reused for other
16371 purposes, allowing for more efficient use of the available stack space.
16372 However, when @option{-mbackchain} is also in effect, the topmost word of
16373 the save area is always used to store the backchain, and the return address
16374 register is always saved two words below the backchain.
16375
16376 As long as the stack frame backchain is not used, code generated with
16377 @option{-mpacked-stack} is call-compatible with code generated with
16378 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
16379 S/390 or zSeries generated code that uses the stack frame backchain at run
16380 time, not just for debugging purposes.  Such code is not call-compatible
16381 with code compiled with @option{-mpacked-stack}.  Also, note that the
16382 combination of @option{-mbackchain},
16383 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
16384 to build a linux kernel use @option{-msoft-float}.
16385
16386 The default is to not use the packed stack layout.
16387
16388 @item -msmall-exec
16389 @itemx -mno-small-exec
16390 @opindex msmall-exec
16391 @opindex mno-small-exec
16392 Generate (or do not generate) code using the @code{bras} instruction
16393 to do subroutine calls.
16394 This only works reliably if the total executable size does not
16395 exceed 64k.  The default is to use the @code{basr} instruction instead,
16396 which does not have this limitation.
16397
16398 @item -m64
16399 @itemx -m31
16400 @opindex m64
16401 @opindex m31
16402 When @option{-m31} is specified, generate code compliant to the
16403 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
16404 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
16405 particular to generate 64-bit instructions.  For the @samp{s390}
16406 targets, the default is @option{-m31}, while the @samp{s390x}
16407 targets default to @option{-m64}.
16408
16409 @item -mzarch
16410 @itemx -mesa
16411 @opindex mzarch
16412 @opindex mesa
16413 When @option{-mzarch} is specified, generate code using the
16414 instructions available on z/Architecture.
16415 When @option{-mesa} is specified, generate code using the
16416 instructions available on ESA/390.  Note that @option{-mesa} is
16417 not possible with @option{-m64}.
16418 When generating code compliant to the GNU/Linux for S/390 ABI,
16419 the default is @option{-mesa}.  When generating code compliant
16420 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
16421
16422 @item -mmvcle
16423 @itemx -mno-mvcle
16424 @opindex mmvcle
16425 @opindex mno-mvcle
16426 Generate (or do not generate) code using the @code{mvcle} instruction
16427 to perform block moves.  When @option{-mno-mvcle} is specified,
16428 use a @code{mvc} loop instead.  This is the default unless optimizing for
16429 size.
16430
16431 @item -mdebug
16432 @itemx -mno-debug
16433 @opindex mdebug
16434 @opindex mno-debug
16435 Print (or do not print) additional debug information when compiling.
16436 The default is to not print debug information.
16437
16438 @item -march=@var{cpu-type}
16439 @opindex march
16440 Generate code that will run on @var{cpu-type}, which is the name of a system
16441 representing a certain processor type.  Possible values for
16442 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
16443 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
16444 When generating code using the instructions available on z/Architecture,
16445 the default is @option{-march=z900}.  Otherwise, the default is
16446 @option{-march=g5}.
16447
16448 @item -mtune=@var{cpu-type}
16449 @opindex mtune
16450 Tune to @var{cpu-type} everything applicable about the generated code,
16451 except for the ABI and the set of available instructions.
16452 The list of @var{cpu-type} values is the same as for @option{-march}.
16453 The default is the value used for @option{-march}.
16454
16455 @item -mtpf-trace
16456 @itemx -mno-tpf-trace
16457 @opindex mtpf-trace
16458 @opindex mno-tpf-trace
16459 Generate code that adds (does not add) in TPF OS specific branches to trace
16460 routines in the operating system.  This option is off by default, even
16461 when compiling for the TPF OS@.
16462
16463 @item -mfused-madd
16464 @itemx -mno-fused-madd
16465 @opindex mfused-madd
16466 @opindex mno-fused-madd
16467 Generate code that uses (does not use) the floating point multiply and
16468 accumulate instructions.  These instructions are generated by default if
16469 hardware floating point is used.
16470
16471 @item -mwarn-framesize=@var{framesize}
16472 @opindex mwarn-framesize
16473 Emit a warning if the current function exceeds the given frame size.  Because
16474 this is a compile time check it doesn't need to be a real problem when the program
16475 runs.  It is intended to identify functions which most probably cause
16476 a stack overflow.  It is useful to be used in an environment with limited stack
16477 size e.g.@: the linux kernel.
16478
16479 @item -mwarn-dynamicstack
16480 @opindex mwarn-dynamicstack
16481 Emit a warning if the function calls alloca or uses dynamically
16482 sized arrays.  This is generally a bad idea with a limited stack size.
16483
16484 @item -mstack-guard=@var{stack-guard}
16485 @itemx -mstack-size=@var{stack-size}
16486 @opindex mstack-guard
16487 @opindex mstack-size
16488 If these options are provided the s390 back end emits additional instructions in
16489 the function prologue which trigger a trap if the stack size is @var{stack-guard}
16490 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
16491 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
16492 the frame size of the compiled function is chosen.
16493 These options are intended to be used to help debugging stack overflow problems.
16494 The additionally emitted code causes only little overhead and hence can also be
16495 used in production like systems without greater performance degradation.  The given
16496 values have to be exact powers of 2 and @var{stack-size} has to be greater than
16497 @var{stack-guard} without exceeding 64k.
16498 In order to be efficient the extra code makes the assumption that the stack starts
16499 at an address aligned to the value given by @var{stack-size}.
16500 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
16501 @end table
16502
16503 @node Score Options
16504 @subsection Score Options
16505 @cindex Score Options
16506
16507 These options are defined for Score implementations:
16508
16509 @table @gcctabopt
16510 @item -meb
16511 @opindex meb
16512 Compile code for big endian mode.  This is the default.
16513
16514 @item -mel
16515 @opindex mel
16516 Compile code for little endian mode.
16517
16518 @item -mnhwloop
16519 @opindex mnhwloop
16520 Disable generate bcnz instruction.
16521
16522 @item -muls
16523 @opindex muls
16524 Enable generate unaligned load and store instruction.
16525
16526 @item -mmac
16527 @opindex mmac
16528 Enable the use of multiply-accumulate instructions. Disabled by default.
16529
16530 @item -mscore5
16531 @opindex mscore5
16532 Specify the SCORE5 as the target architecture.
16533
16534 @item -mscore5u
16535 @opindex mscore5u
16536 Specify the SCORE5U of the target architecture.
16537
16538 @item -mscore7
16539 @opindex mscore7
16540 Specify the SCORE7 as the target architecture. This is the default.
16541
16542 @item -mscore7d
16543 @opindex mscore7d
16544 Specify the SCORE7D as the target architecture.
16545 @end table
16546
16547 @node SH Options
16548 @subsection SH Options
16549
16550 These @samp{-m} options are defined for the SH implementations:
16551
16552 @table @gcctabopt
16553 @item -m1
16554 @opindex m1
16555 Generate code for the SH1.
16556
16557 @item -m2
16558 @opindex m2
16559 Generate code for the SH2.
16560
16561 @item -m2e
16562 Generate code for the SH2e.
16563
16564 @item -m2a-nofpu
16565 @opindex m2a-nofpu
16566 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
16567 that the floating-point unit is not used.
16568
16569 @item -m2a-single-only
16570 @opindex m2a-single-only
16571 Generate code for the SH2a-FPU, in such a way that no double-precision
16572 floating point operations are used.
16573
16574 @item -m2a-single
16575 @opindex m2a-single
16576 Generate code for the SH2a-FPU assuming the floating-point unit is in
16577 single-precision mode by default.
16578
16579 @item -m2a
16580 @opindex m2a
16581 Generate code for the SH2a-FPU assuming the floating-point unit is in
16582 double-precision mode by default.
16583
16584 @item -m3
16585 @opindex m3
16586 Generate code for the SH3.
16587
16588 @item -m3e
16589 @opindex m3e
16590 Generate code for the SH3e.
16591
16592 @item -m4-nofpu
16593 @opindex m4-nofpu
16594 Generate code for the SH4 without a floating-point unit.
16595
16596 @item -m4-single-only
16597 @opindex m4-single-only
16598 Generate code for the SH4 with a floating-point unit that only
16599 supports single-precision arithmetic.
16600
16601 @item -m4-single
16602 @opindex m4-single
16603 Generate code for the SH4 assuming the floating-point unit is in
16604 single-precision mode by default.
16605
16606 @item -m4
16607 @opindex m4
16608 Generate code for the SH4.
16609
16610 @item -m4a-nofpu
16611 @opindex m4a-nofpu
16612 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
16613 floating-point unit is not used.
16614
16615 @item -m4a-single-only
16616 @opindex m4a-single-only
16617 Generate code for the SH4a, in such a way that no double-precision
16618 floating point operations are used.
16619
16620 @item -m4a-single
16621 @opindex m4a-single
16622 Generate code for the SH4a assuming the floating-point unit is in
16623 single-precision mode by default.
16624
16625 @item -m4a
16626 @opindex m4a
16627 Generate code for the SH4a.
16628
16629 @item -m4al
16630 @opindex m4al
16631 Same as @option{-m4a-nofpu}, except that it implicitly passes
16632 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
16633 instructions at the moment.
16634
16635 @item -mb
16636 @opindex mb
16637 Compile code for the processor in big endian mode.
16638
16639 @item -ml
16640 @opindex ml
16641 Compile code for the processor in little endian mode.
16642
16643 @item -mdalign
16644 @opindex mdalign
16645 Align doubles at 64-bit boundaries.  Note that this changes the calling
16646 conventions, and thus some functions from the standard C library will
16647 not work unless you recompile it first with @option{-mdalign}.
16648
16649 @item -mrelax
16650 @opindex mrelax
16651 Shorten some address references at link time, when possible; uses the
16652 linker option @option{-relax}.
16653
16654 @item -mbigtable
16655 @opindex mbigtable
16656 Use 32-bit offsets in @code{switch} tables.  The default is to use
16657 16-bit offsets.
16658
16659 @item -mbitops
16660 @opindex mbitops
16661 Enable the use of bit manipulation instructions on SH2A.
16662
16663 @item -mfmovd
16664 @opindex mfmovd
16665 Enable the use of the instruction @code{fmovd}.  Check @option{-mdalign} for
16666 alignment constraints.
16667
16668 @item -mhitachi
16669 @opindex mhitachi
16670 Comply with the calling conventions defined by Renesas.
16671
16672 @item -mrenesas
16673 @opindex mhitachi
16674 Comply with the calling conventions defined by Renesas.
16675
16676 @item -mno-renesas
16677 @opindex mhitachi
16678 Comply with the calling conventions defined for GCC before the Renesas
16679 conventions were available.  This option is the default for all
16680 targets of the SH toolchain.
16681
16682 @item -mnomacsave
16683 @opindex mnomacsave
16684 Mark the @code{MAC} register as call-clobbered, even if
16685 @option{-mhitachi} is given.
16686
16687 @item -mieee
16688 @opindex mieee
16689 Increase IEEE-compliance of floating-point code.
16690 At the moment, this is equivalent to @option{-fno-finite-math-only}.
16691 When generating 16 bit SH opcodes, getting IEEE-conforming results for
16692 comparisons of NANs / infinities incurs extra overhead in every
16693 floating point comparison, therefore the default is set to
16694 @option{-ffinite-math-only}.
16695
16696 @item -minline-ic_invalidate
16697 @opindex minline-ic_invalidate
16698 Inline code to invalidate instruction cache entries after setting up
16699 nested function trampolines.
16700 This option has no effect if -musermode is in effect and the selected
16701 code generation option (e.g. -m4) does not allow the use of the icbi
16702 instruction.
16703 If the selected code generation option does not allow the use of the icbi
16704 instruction, and -musermode is not in effect, the inlined code will
16705 manipulate the instruction cache address array directly with an associative
16706 write.  This not only requires privileged mode, but it will also
16707 fail if the cache line had been mapped via the TLB and has become unmapped.
16708
16709 @item -misize
16710 @opindex misize
16711 Dump instruction size and location in the assembly code.
16712
16713 @item -mpadstruct
16714 @opindex mpadstruct
16715 This option is deprecated.  It pads structures to multiple of 4 bytes,
16716 which is incompatible with the SH ABI@.
16717
16718 @item -mspace
16719 @opindex mspace
16720 Optimize for space instead of speed.  Implied by @option{-Os}.
16721
16722 @item -mprefergot
16723 @opindex mprefergot
16724 When generating position-independent code, emit function calls using
16725 the Global Offset Table instead of the Procedure Linkage Table.
16726
16727 @item -musermode
16728 @opindex musermode
16729 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
16730 if the inlined code would not work in user mode.
16731 This is the default when the target is @code{sh-*-linux*}.
16732
16733 @item -multcost=@var{number}
16734 @opindex multcost=@var{number}
16735 Set the cost to assume for a multiply insn.
16736
16737 @item -mdiv=@var{strategy}
16738 @opindex mdiv=@var{strategy}
16739 Set the division strategy to use for SHmedia code.  @var{strategy} must be
16740 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
16741 inv:call2, inv:fp .
16742 "fp" performs the operation in floating point.  This has a very high latency,
16743 but needs only a few instructions, so it might be a good choice if
16744 your code has enough easily exploitable ILP to allow the compiler to
16745 schedule the floating point instructions together with other instructions.
16746 Division by zero causes a floating point exception.
16747 "inv" uses integer operations to calculate the inverse of the divisor,
16748 and then multiplies the dividend with the inverse.  This strategy allows
16749 cse and hoisting of the inverse calculation.  Division by zero calculates
16750 an unspecified result, but does not trap.
16751 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
16752 have been found, or if the entire operation has been hoisted to the same
16753 place, the last stages of the inverse calculation are intertwined with the
16754 final multiply to reduce the overall latency, at the expense of using a few
16755 more instructions, and thus offering fewer scheduling opportunities with
16756 other code.
16757 "call" calls a library function that usually implements the inv:minlat
16758 strategy.
16759 This gives high code density for m5-*media-nofpu compilations.
16760 "call2" uses a different entry point of the same library function, where it
16761 assumes that a pointer to a lookup table has already been set up, which
16762 exposes the pointer load to cse / code hoisting optimizations.
16763 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
16764 code generation, but if the code stays unoptimized, revert to the "call",
16765 "call2", or "fp" strategies, respectively.  Note that the
16766 potentially-trapping side effect of division by zero is carried by a
16767 separate instruction, so it is possible that all the integer instructions
16768 are hoisted out, but the marker for the side effect stays where it is.
16769 A recombination to fp operations or a call is not possible in that case.
16770 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
16771 that the inverse calculation was nor separated from the multiply, they speed
16772 up division where the dividend fits into 20 bits (plus sign where applicable),
16773 by inserting a test to skip a number of operations in this case; this test
16774 slows down the case of larger dividends.  inv20u assumes the case of a such
16775 a small dividend to be unlikely, and inv20l assumes it to be likely.
16776
16777 @item -maccumulate-outgoing-args
16778 @opindex maccumulate-outgoing-args
16779 Reserve space once for outgoing arguments in the function prologue rather 
16780 than around each call.  Generally beneficial for performance and size.  Also
16781 needed for unwinding to avoid changing the stack frame around conditional code.
16782
16783 @item -mdivsi3_libfunc=@var{name}
16784 @opindex mdivsi3_libfunc=@var{name}
16785 Set the name of the library function used for 32 bit signed division to
16786 @var{name}.  This only affect the name used in the call and inv:call
16787 division strategies, and the compiler will still expect the same
16788 sets of input/output/clobbered registers as if this option was not present.
16789
16790 @item -mfixed-range=@var{register-range}
16791 @opindex mfixed-range
16792 Generate code treating the given register range as fixed registers.
16793 A fixed register is one that the register allocator can not use.  This is
16794 useful when compiling kernel code.  A register range is specified as
16795 two registers separated by a dash.  Multiple register ranges can be
16796 specified separated by a comma.
16797
16798 @item -madjust-unroll
16799 @opindex madjust-unroll
16800 Throttle unrolling to avoid thrashing target registers.
16801 This option only has an effect if the gcc code base supports the
16802 TARGET_ADJUST_UNROLL_MAX target hook.
16803
16804 @item -mindexed-addressing
16805 @opindex mindexed-addressing
16806 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
16807 This is only safe if the hardware and/or OS implement 32 bit wrap-around
16808 semantics for the indexed addressing mode.  The architecture allows the
16809 implementation of processors with 64 bit MMU, which the OS could use to
16810 get 32 bit addressing, but since no current hardware implementation supports
16811 this or any other way to make the indexed addressing mode safe to use in
16812 the 32 bit ABI, the default is -mno-indexed-addressing.
16813
16814 @item -mgettrcost=@var{number}
16815 @opindex mgettrcost=@var{number}
16816 Set the cost assumed for the gettr instruction to @var{number}.
16817 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
16818
16819 @item -mpt-fixed
16820 @opindex mpt-fixed
16821 Assume pt* instructions won't trap.  This will generally generate better
16822 scheduled code, but is unsafe on current hardware.  The current architecture
16823 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
16824 This has the unintentional effect of making it unsafe to schedule ptabs /
16825 ptrel before a branch, or hoist it out of a loop.  For example,
16826 __do_global_ctors, a part of libgcc that runs constructors at program
16827 startup, calls functions in a list which is delimited by @minus{}1.  With the
16828 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
16829 That means that all the constructors will be run a bit quicker, but when
16830 the loop comes to the end of the list, the program crashes because ptabs
16831 loads @minus{}1 into a target register.  Since this option is unsafe for any
16832 hardware implementing the current architecture specification, the default
16833 is -mno-pt-fixed.  Unless the user specifies a specific cost with
16834 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
16835 this deters register allocation using target registers for storing
16836 ordinary integers.
16837
16838 @item -minvalid-symbols
16839 @opindex minvalid-symbols
16840 Assume symbols might be invalid.  Ordinary function symbols generated by
16841 the compiler will always be valid to load with movi/shori/ptabs or
16842 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
16843 to generate symbols that will cause ptabs / ptrel to trap.
16844 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
16845 It will then prevent cross-basic-block cse, hoisting and most scheduling
16846 of symbol loads.  The default is @option{-mno-invalid-symbols}.
16847 @end table
16848
16849 @node Solaris 2 Options
16850 @subsection Solaris 2 Options
16851 @cindex Solaris 2 options
16852
16853 These @samp{-m} options are supported on Solaris 2:
16854
16855 @table @gcctabopt
16856 @item -mimpure-text
16857 @opindex mimpure-text
16858 @option{-mimpure-text}, used in addition to @option{-shared}, tells
16859 the compiler to not pass @option{-z text} to the linker when linking a
16860 shared object.  Using this option, you can link position-dependent
16861 code into a shared object.
16862
16863 @option{-mimpure-text} suppresses the ``relocations remain against
16864 allocatable but non-writable sections'' linker error message.
16865 However, the necessary relocations will trigger copy-on-write, and the
16866 shared object is not actually shared across processes.  Instead of
16867 using @option{-mimpure-text}, you should compile all source code with
16868 @option{-fpic} or @option{-fPIC}.
16869
16870 @end table
16871
16872 These switches are supported in addition to the above on Solaris 2:
16873
16874 @table @gcctabopt
16875 @item -pthreads
16876 @opindex pthreads
16877 Add support for multithreading using the POSIX threads library.  This
16878 option sets flags for both the preprocessor and linker.  This option does
16879 not affect the thread safety of object code produced  by the compiler or
16880 that of libraries supplied with it.
16881
16882 @item -pthread
16883 @opindex pthread
16884 This is a synonym for @option{-pthreads}.
16885 @end table
16886
16887 @node SPARC Options
16888 @subsection SPARC Options
16889 @cindex SPARC options
16890
16891 These @samp{-m} options are supported on the SPARC:
16892
16893 @table @gcctabopt
16894 @item -mno-app-regs
16895 @itemx -mapp-regs
16896 @opindex mno-app-regs
16897 @opindex mapp-regs
16898 Specify @option{-mapp-regs} to generate output using the global registers
16899 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
16900 is the default.
16901
16902 To be fully SVR4 ABI compliant at the cost of some performance loss,
16903 specify @option{-mno-app-regs}.  You should compile libraries and system
16904 software with this option.
16905
16906 @item -mfpu
16907 @itemx -mhard-float
16908 @opindex mfpu
16909 @opindex mhard-float
16910 Generate output containing floating point instructions.  This is the
16911 default.
16912
16913 @item -mno-fpu
16914 @itemx -msoft-float
16915 @opindex mno-fpu
16916 @opindex msoft-float
16917 Generate output containing library calls for floating point.
16918 @strong{Warning:} the requisite libraries are not available for all SPARC
16919 targets.  Normally the facilities of the machine's usual C compiler are
16920 used, but this cannot be done directly in cross-compilation.  You must make
16921 your own arrangements to provide suitable library functions for
16922 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
16923 @samp{sparclite-*-*} do provide software floating point support.
16924
16925 @option{-msoft-float} changes the calling convention in the output file;
16926 therefore, it is only useful if you compile @emph{all} of a program with
16927 this option.  In particular, you need to compile @file{libgcc.a}, the
16928 library that comes with GCC, with @option{-msoft-float} in order for
16929 this to work.
16930
16931 @item -mhard-quad-float
16932 @opindex mhard-quad-float
16933 Generate output containing quad-word (long double) floating point
16934 instructions.
16935
16936 @item -msoft-quad-float
16937 @opindex msoft-quad-float
16938 Generate output containing library calls for quad-word (long double)
16939 floating point instructions.  The functions called are those specified
16940 in the SPARC ABI@.  This is the default.
16941
16942 As of this writing, there are no SPARC implementations that have hardware
16943 support for the quad-word floating point instructions.  They all invoke
16944 a trap handler for one of these instructions, and then the trap handler
16945 emulates the effect of the instruction.  Because of the trap handler overhead,
16946 this is much slower than calling the ABI library routines.  Thus the
16947 @option{-msoft-quad-float} option is the default.
16948
16949 @item -mno-unaligned-doubles
16950 @itemx -munaligned-doubles
16951 @opindex mno-unaligned-doubles
16952 @opindex munaligned-doubles
16953 Assume that doubles have 8 byte alignment.  This is the default.
16954
16955 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
16956 alignment only if they are contained in another type, or if they have an
16957 absolute address.  Otherwise, it assumes they have 4 byte alignment.
16958 Specifying this option avoids some rare compatibility problems with code
16959 generated by other compilers.  It is not the default because it results
16960 in a performance loss, especially for floating point code.
16961
16962 @item -mno-faster-structs
16963 @itemx -mfaster-structs
16964 @opindex mno-faster-structs
16965 @opindex mfaster-structs
16966 With @option{-mfaster-structs}, the compiler assumes that structures
16967 should have 8 byte alignment.  This enables the use of pairs of
16968 @code{ldd} and @code{std} instructions for copies in structure
16969 assignment, in place of twice as many @code{ld} and @code{st} pairs.
16970 However, the use of this changed alignment directly violates the SPARC
16971 ABI@.  Thus, it's intended only for use on targets where the developer
16972 acknowledges that their resulting code will not be directly in line with
16973 the rules of the ABI@.
16974
16975 @item -mcpu=@var{cpu_type}
16976 @opindex mcpu
16977 Set the instruction set, register set, and instruction scheduling parameters
16978 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
16979 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{hypersparc},
16980 @samp{leon}, @samp{sparclite}, @samp{f930}, @samp{f934}, @samp{sparclite86x},
16981 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
16982 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
16983
16984 Default instruction scheduling parameters are used for values that select
16985 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
16986 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
16987
16988 Here is a list of each supported architecture and their supported
16989 implementations.
16990
16991 @smallexample
16992     v7:             cypress
16993     v8:             supersparc, hypersparc, leon
16994     sparclite:      f930, f934, sparclite86x
16995     sparclet:       tsc701
16996     v9:             ultrasparc, ultrasparc3, niagara, niagara2
16997 @end smallexample
16998
16999 By default (unless configured otherwise), GCC generates code for the V7
17000 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
17001 additionally optimizes it for the Cypress CY7C602 chip, as used in the
17002 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
17003 SPARCStation 1, 2, IPX etc.
17004
17005 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
17006 architecture.  The only difference from V7 code is that the compiler emits
17007 the integer multiply and integer divide instructions which exist in SPARC-V8
17008 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
17009 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
17010 2000 series.
17011
17012 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
17013 the SPARC architecture.  This adds the integer multiply, integer divide step
17014 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
17015 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
17016 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
17017 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
17018 MB86934 chip, which is the more recent SPARClite with FPU@.
17019
17020 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
17021 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
17022 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
17023 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
17024 optimizes it for the TEMIC SPARClet chip.
17025
17026 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
17027 architecture.  This adds 64-bit integer and floating-point move instructions,
17028 3 additional floating-point condition code registers and conditional move
17029 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
17030 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
17031 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
17032 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
17033 @option{-mcpu=niagara}, the compiler additionally optimizes it for
17034 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
17035 additionally optimizes it for Sun UltraSPARC T2 chips.
17036
17037 @item -mtune=@var{cpu_type}
17038 @opindex mtune
17039 Set the instruction scheduling parameters for machine type
17040 @var{cpu_type}, but do not set the instruction set or register set that the
17041 option @option{-mcpu=@var{cpu_type}} would.
17042
17043 The same values for @option{-mcpu=@var{cpu_type}} can be used for
17044 @option{-mtune=@var{cpu_type}}, but the only useful values are those
17045 that select a particular CPU implementation.  Those are @samp{cypress},
17046 @samp{supersparc}, @samp{hypersparc}, @samp{leon}, @samp{f930}, @samp{f934},
17047 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc}, @samp{ultrasparc3},
17048 @samp{niagara}, and @samp{niagara2}.
17049
17050 @item -mv8plus
17051 @itemx -mno-v8plus
17052 @opindex mv8plus
17053 @opindex mno-v8plus
17054 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
17055 difference from the V8 ABI is that the global and out registers are
17056 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
17057 mode for all SPARC-V9 processors.
17058
17059 @item -mvis
17060 @itemx -mno-vis
17061 @opindex mvis
17062 @opindex mno-vis
17063 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
17064 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
17065 @end table
17066
17067 These @samp{-m} options are supported in addition to the above
17068 on SPARC-V9 processors in 64-bit environments:
17069
17070 @table @gcctabopt
17071 @item -mlittle-endian
17072 @opindex mlittle-endian
17073 Generate code for a processor running in little-endian mode.  It is only
17074 available for a few configurations and most notably not on Solaris and Linux.
17075
17076 @item -m32
17077 @itemx -m64
17078 @opindex m32
17079 @opindex m64
17080 Generate code for a 32-bit or 64-bit environment.
17081 The 32-bit environment sets int, long and pointer to 32 bits.
17082 The 64-bit environment sets int to 32 bits and long and pointer
17083 to 64 bits.
17084
17085 @item -mcmodel=medlow
17086 @opindex mcmodel=medlow
17087 Generate code for the Medium/Low code model: 64-bit addresses, programs
17088 must be linked in the low 32 bits of memory.  Programs can be statically
17089 or dynamically linked.
17090
17091 @item -mcmodel=medmid
17092 @opindex mcmodel=medmid
17093 Generate code for the Medium/Middle code model: 64-bit addresses, programs
17094 must be linked in the low 44 bits of memory, the text and data segments must
17095 be less than 2GB in size and the data segment must be located within 2GB of
17096 the text segment.
17097
17098 @item -mcmodel=medany
17099 @opindex mcmodel=medany
17100 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
17101 may be linked anywhere in memory, the text and data segments must be less
17102 than 2GB in size and the data segment must be located within 2GB of the
17103 text segment.
17104
17105 @item -mcmodel=embmedany
17106 @opindex mcmodel=embmedany
17107 Generate code for the Medium/Anywhere code model for embedded systems:
17108 64-bit addresses, the text and data segments must be less than 2GB in
17109 size, both starting anywhere in memory (determined at link time).  The
17110 global register %g4 points to the base of the data segment.  Programs
17111 are statically linked and PIC is not supported.
17112
17113 @item -mstack-bias
17114 @itemx -mno-stack-bias
17115 @opindex mstack-bias
17116 @opindex mno-stack-bias
17117 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
17118 frame pointer if present, are offset by @minus{}2047 which must be added back
17119 when making stack frame references.  This is the default in 64-bit mode.
17120 Otherwise, assume no such offset is present.
17121 @end table
17122
17123 @node SPU Options
17124 @subsection SPU Options
17125 @cindex SPU options
17126
17127 These @samp{-m} options are supported on the SPU:
17128
17129 @table @gcctabopt
17130 @item -mwarn-reloc
17131 @itemx -merror-reloc
17132 @opindex mwarn-reloc
17133 @opindex merror-reloc
17134
17135 The loader for SPU does not handle dynamic relocations.  By default, GCC
17136 will give an error when it generates code that requires a dynamic
17137 relocation.  @option{-mno-error-reloc} disables the error,
17138 @option{-mwarn-reloc} will generate a warning instead.
17139
17140 @item -msafe-dma
17141 @itemx -munsafe-dma
17142 @opindex msafe-dma
17143 @opindex munsafe-dma
17144
17145 Instructions which initiate or test completion of DMA must not be
17146 reordered with respect to loads and stores of the memory which is being
17147 accessed.  Users typically address this problem using the volatile
17148 keyword, but that can lead to inefficient code in places where the
17149 memory is known to not change.  Rather than mark the memory as volatile
17150 we treat the DMA instructions as potentially effecting all memory.  With
17151 @option{-munsafe-dma} users must use the volatile keyword to protect
17152 memory accesses.
17153
17154 @item -mbranch-hints
17155 @opindex mbranch-hints
17156
17157 By default, GCC will generate a branch hint instruction to avoid
17158 pipeline stalls for always taken or probably taken branches.  A hint
17159 will not be generated closer than 8 instructions away from its branch.
17160 There is little reason to disable them, except for debugging purposes,
17161 or to make an object a little bit smaller.
17162
17163 @item -msmall-mem
17164 @itemx -mlarge-mem
17165 @opindex msmall-mem
17166 @opindex mlarge-mem
17167
17168 By default, GCC generates code assuming that addresses are never larger
17169 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
17170 a full 32 bit address.
17171
17172 @item -mstdmain
17173 @opindex mstdmain
17174
17175 By default, GCC links against startup code that assumes the SPU-style
17176 main function interface (which has an unconventional parameter list).
17177 With @option{-mstdmain}, GCC will link your program against startup
17178 code that assumes a C99-style interface to @code{main}, including a
17179 local copy of @code{argv} strings.
17180
17181 @item -mfixed-range=@var{register-range}
17182 @opindex mfixed-range
17183 Generate code treating the given register range as fixed registers.
17184 A fixed register is one that the register allocator can not use.  This is
17185 useful when compiling kernel code.  A register range is specified as
17186 two registers separated by a dash.  Multiple register ranges can be
17187 specified separated by a comma.
17188
17189 @item -mea32
17190 @itemx -mea64
17191 @opindex mea32
17192 @opindex mea64
17193 Compile code assuming that pointers to the PPU address space accessed
17194 via the @code{__ea} named address space qualifier are either 32 or 64
17195 bits wide.  The default is 32 bits.  As this is an ABI changing option,
17196 all object code in an executable must be compiled with the same setting.
17197
17198 @item -maddress-space-conversion
17199 @itemx -mno-address-space-conversion
17200 @opindex maddress-space-conversion
17201 @opindex mno-address-space-conversion
17202 Allow/disallow treating the @code{__ea} address space as superset
17203 of the generic address space.  This enables explicit type casts
17204 between @code{__ea} and generic pointer as well as implicit
17205 conversions of generic pointers to @code{__ea} pointers.  The
17206 default is to allow address space pointer conversions.
17207
17208 @item -mcache-size=@var{cache-size}
17209 @opindex mcache-size
17210 This option controls the version of libgcc that the compiler links to an
17211 executable and selects a software-managed cache for accessing variables
17212 in the @code{__ea} address space with a particular cache size.  Possible
17213 options for @var{cache-size} are @samp{8}, @samp{16}, @samp{32}, @samp{64}
17214 and @samp{128}.  The default cache size is 64KB.
17215
17216 @item -matomic-updates
17217 @itemx -mno-atomic-updates
17218 @opindex matomic-updates
17219 @opindex mno-atomic-updates
17220 This option controls the version of libgcc that the compiler links to an
17221 executable and selects whether atomic updates to the software-managed
17222 cache of PPU-side variables are used.  If you use atomic updates, changes
17223 to a PPU variable from SPU code using the @code{__ea} named address space
17224 qualifier will not interfere with changes to other PPU variables residing
17225 in the same cache line from PPU code.  If you do not use atomic updates,
17226 such interference may occur; however, writing back cache lines will be
17227 more efficient.  The default behavior is to use atomic updates.
17228
17229 @item -mdual-nops
17230 @itemx -mdual-nops=@var{n}
17231 @opindex mdual-nops
17232 By default, GCC will insert nops to increase dual issue when it expects
17233 it to increase performance.  @var{n} can be a value from 0 to 10.  A
17234 smaller @var{n} will insert fewer nops.  10 is the default, 0 is the
17235 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
17236
17237 @item -mhint-max-nops=@var{n}
17238 @opindex mhint-max-nops
17239 Maximum number of nops to insert for a branch hint.  A branch hint must
17240 be at least 8 instructions away from the branch it is effecting.  GCC
17241 will insert up to @var{n} nops to enforce this, otherwise it will not
17242 generate the branch hint.
17243
17244 @item -mhint-max-distance=@var{n}
17245 @opindex mhint-max-distance
17246 The encoding of the branch hint instruction limits the hint to be within
17247 256 instructions of the branch it is effecting.  By default, GCC makes
17248 sure it is within 125.
17249
17250 @item -msafe-hints
17251 @opindex msafe-hints
17252 Work around a hardware bug which causes the SPU to stall indefinitely.
17253 By default, GCC will insert the @code{hbrp} instruction to make sure
17254 this stall won't happen.
17255
17256 @end table
17257
17258 @node System V Options
17259 @subsection Options for System V
17260
17261 These additional options are available on System V Release 4 for
17262 compatibility with other compilers on those systems:
17263
17264 @table @gcctabopt
17265 @item -G
17266 @opindex G
17267 Create a shared object.
17268 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
17269
17270 @item -Qy
17271 @opindex Qy
17272 Identify the versions of each tool used by the compiler, in a
17273 @code{.ident} assembler directive in the output.
17274
17275 @item -Qn
17276 @opindex Qn
17277 Refrain from adding @code{.ident} directives to the output file (this is
17278 the default).
17279
17280 @item -YP,@var{dirs}
17281 @opindex YP
17282 Search the directories @var{dirs}, and no others, for libraries
17283 specified with @option{-l}.
17284
17285 @item -Ym,@var{dir}
17286 @opindex Ym
17287 Look in the directory @var{dir} to find the M4 preprocessor.
17288 The assembler uses this option.
17289 @c This is supposed to go with a -Yd for predefined M4 macro files, but
17290 @c the generic assembler that comes with Solaris takes just -Ym.
17291 @end table
17292
17293 @node V850 Options
17294 @subsection V850 Options
17295 @cindex V850 Options
17296
17297 These @samp{-m} options are defined for V850 implementations:
17298
17299 @table @gcctabopt
17300 @item -mlong-calls
17301 @itemx -mno-long-calls
17302 @opindex mlong-calls
17303 @opindex mno-long-calls
17304 Treat all calls as being far away (near).  If calls are assumed to be
17305 far away, the compiler will always load the functions address up into a
17306 register, and call indirect through the pointer.
17307
17308 @item -mno-ep
17309 @itemx -mep
17310 @opindex mno-ep
17311 @opindex mep
17312 Do not optimize (do optimize) basic blocks that use the same index
17313 pointer 4 or more times to copy pointer into the @code{ep} register, and
17314 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
17315 option is on by default if you optimize.
17316
17317 @item -mno-prolog-function
17318 @itemx -mprolog-function
17319 @opindex mno-prolog-function
17320 @opindex mprolog-function
17321 Do not use (do use) external functions to save and restore registers
17322 at the prologue and epilogue of a function.  The external functions
17323 are slower, but use less code space if more than one function saves
17324 the same number of registers.  The @option{-mprolog-function} option
17325 is on by default if you optimize.
17326
17327 @item -mspace
17328 @opindex mspace
17329 Try to make the code as small as possible.  At present, this just turns
17330 on the @option{-mep} and @option{-mprolog-function} options.
17331
17332 @item -mtda=@var{n}
17333 @opindex mtda
17334 Put static or global variables whose size is @var{n} bytes or less into
17335 the tiny data area that register @code{ep} points to.  The tiny data
17336 area can hold up to 256 bytes in total (128 bytes for byte references).
17337
17338 @item -msda=@var{n}
17339 @opindex msda
17340 Put static or global variables whose size is @var{n} bytes or less into
17341 the small data area that register @code{gp} points to.  The small data
17342 area can hold up to 64 kilobytes.
17343
17344 @item -mzda=@var{n}
17345 @opindex mzda
17346 Put static or global variables whose size is @var{n} bytes or less into
17347 the first 32 kilobytes of memory.
17348
17349 @item -mv850
17350 @opindex mv850
17351 Specify that the target processor is the V850.
17352
17353 @item -mbig-switch
17354 @opindex mbig-switch
17355 Generate code suitable for big switch tables.  Use this option only if
17356 the assembler/linker complain about out of range branches within a switch
17357 table.
17358
17359 @item -mapp-regs
17360 @opindex mapp-regs
17361 This option will cause r2 and r5 to be used in the code generated by
17362 the compiler.  This setting is the default.
17363
17364 @item -mno-app-regs
17365 @opindex mno-app-regs
17366 This option will cause r2 and r5 to be treated as fixed registers.
17367
17368 @item -mv850e2v3
17369 @opindex mv850e2v3
17370 Specify that the target processor is the V850E2V3.  The preprocessor
17371 constants @samp{__v850e2v3__} will be defined if
17372 this option is used.
17373
17374 @item -mv850e2
17375 @opindex mv850e2
17376 Specify that the target processor is the V850E2.  The preprocessor
17377 constants @samp{__v850e2__} will be defined if this option is used.
17378
17379 @item -mv850e1
17380 @opindex mv850e1
17381 Specify that the target processor is the V850E1.  The preprocessor
17382 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
17383 this option is used.
17384
17385 @item -mv850es
17386 @opindex mv850es
17387 Specify that the target processor is the V850ES.  This is an alias for
17388 the @option{-mv850e1} option.
17389
17390 @item -mv850e
17391 @opindex mv850e
17392 Specify that the target processor is the V850E@.  The preprocessor
17393 constant @samp{__v850e__} will be defined if this option is used.
17394
17395 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
17396 nor @option{-mv850e2} nor @option{-mv850e2v3}
17397 are defined then a default target processor will be chosen and the
17398 relevant @samp{__v850*__} preprocessor constant will be defined.
17399
17400 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
17401 defined, regardless of which processor variant is the target.
17402
17403 @item -mdisable-callt
17404 @opindex mdisable-callt
17405 This option will suppress generation of the CALLT instruction for the
17406 v850e, v850e1, v850e2 and v850e2v3 flavors of the v850 architecture.  The default is
17407 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
17408
17409 @end table
17410
17411 @node VAX Options
17412 @subsection VAX Options
17413 @cindex VAX options
17414
17415 These @samp{-m} options are defined for the VAX:
17416
17417 @table @gcctabopt
17418 @item -munix
17419 @opindex munix
17420 Do not output certain jump instructions (@code{aobleq} and so on)
17421 that the Unix assembler for the VAX cannot handle across long
17422 ranges.
17423
17424 @item -mgnu
17425 @opindex mgnu
17426 Do output those jump instructions, on the assumption that you
17427 will assemble with the GNU assembler.
17428
17429 @item -mg
17430 @opindex mg
17431 Output code for g-format floating point numbers instead of d-format.
17432 @end table
17433
17434 @node VxWorks Options
17435 @subsection VxWorks Options
17436 @cindex VxWorks Options
17437
17438 The options in this section are defined for all VxWorks targets.
17439 Options specific to the target hardware are listed with the other
17440 options for that target.
17441
17442 @table @gcctabopt
17443 @item -mrtp
17444 @opindex mrtp
17445 GCC can generate code for both VxWorks kernels and real time processes
17446 (RTPs).  This option switches from the former to the latter.  It also
17447 defines the preprocessor macro @code{__RTP__}.
17448
17449 @item -non-static
17450 @opindex non-static
17451 Link an RTP executable against shared libraries rather than static
17452 libraries.  The options @option{-static} and @option{-shared} can
17453 also be used for RTPs (@pxref{Link Options}); @option{-static}
17454 is the default.
17455
17456 @item -Bstatic
17457 @itemx -Bdynamic
17458 @opindex Bstatic
17459 @opindex Bdynamic
17460 These options are passed down to the linker.  They are defined for
17461 compatibility with Diab.
17462
17463 @item -Xbind-lazy
17464 @opindex Xbind-lazy
17465 Enable lazy binding of function calls.  This option is equivalent to
17466 @option{-Wl,-z,now} and is defined for compatibility with Diab.
17467
17468 @item -Xbind-now
17469 @opindex Xbind-now
17470 Disable lazy binding of function calls.  This option is the default and
17471 is defined for compatibility with Diab.
17472 @end table
17473
17474 @node x86-64 Options
17475 @subsection x86-64 Options
17476 @cindex x86-64 options
17477
17478 These are listed under @xref{i386 and x86-64 Options}.
17479
17480 @node Xstormy16 Options
17481 @subsection Xstormy16 Options
17482 @cindex Xstormy16 Options
17483
17484 These options are defined for Xstormy16:
17485
17486 @table @gcctabopt
17487 @item -msim
17488 @opindex msim
17489 Choose startup files and linker script suitable for the simulator.
17490 @end table
17491
17492 @node Xtensa Options
17493 @subsection Xtensa Options
17494 @cindex Xtensa Options
17495
17496 These options are supported for Xtensa targets:
17497
17498 @table @gcctabopt
17499 @item -mconst16
17500 @itemx -mno-const16
17501 @opindex mconst16
17502 @opindex mno-const16
17503 Enable or disable use of @code{CONST16} instructions for loading
17504 constant values.  The @code{CONST16} instruction is currently not a
17505 standard option from Tensilica.  When enabled, @code{CONST16}
17506 instructions are always used in place of the standard @code{L32R}
17507 instructions.  The use of @code{CONST16} is enabled by default only if
17508 the @code{L32R} instruction is not available.
17509
17510 @item -mfused-madd
17511 @itemx -mno-fused-madd
17512 @opindex mfused-madd
17513 @opindex mno-fused-madd
17514 Enable or disable use of fused multiply/add and multiply/subtract
17515 instructions in the floating-point option.  This has no effect if the
17516 floating-point option is not also enabled.  Disabling fused multiply/add
17517 and multiply/subtract instructions forces the compiler to use separate
17518 instructions for the multiply and add/subtract operations.  This may be
17519 desirable in some cases where strict IEEE 754-compliant results are
17520 required: the fused multiply add/subtract instructions do not round the
17521 intermediate result, thereby producing results with @emph{more} bits of
17522 precision than specified by the IEEE standard.  Disabling fused multiply
17523 add/subtract instructions also ensures that the program output is not
17524 sensitive to the compiler's ability to combine multiply and add/subtract
17525 operations.
17526
17527 @item -mserialize-volatile
17528 @itemx -mno-serialize-volatile
17529 @opindex mserialize-volatile
17530 @opindex mno-serialize-volatile
17531 When this option is enabled, GCC inserts @code{MEMW} instructions before
17532 @code{volatile} memory references to guarantee sequential consistency.
17533 The default is @option{-mserialize-volatile}.  Use
17534 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
17535
17536 @item -mforce-no-pic
17537 @opindex mforce-no-pic
17538 For targets, like GNU/Linux, where all user-mode Xtensa code must be
17539 position-independent code (PIC), this option disables PIC for compiling
17540 kernel code.
17541
17542 @item -mtext-section-literals
17543 @itemx -mno-text-section-literals
17544 @opindex mtext-section-literals
17545 @opindex mno-text-section-literals
17546 Control the treatment of literal pools.  The default is
17547 @option{-mno-text-section-literals}, which places literals in a separate
17548 section in the output file.  This allows the literal pool to be placed
17549 in a data RAM/ROM, and it also allows the linker to combine literal
17550 pools from separate object files to remove redundant literals and
17551 improve code size.  With @option{-mtext-section-literals}, the literals
17552 are interspersed in the text section in order to keep them as close as
17553 possible to their references.  This may be necessary for large assembly
17554 files.
17555
17556 @item -mtarget-align
17557 @itemx -mno-target-align
17558 @opindex mtarget-align
17559 @opindex mno-target-align
17560 When this option is enabled, GCC instructs the assembler to
17561 automatically align instructions to reduce branch penalties at the
17562 expense of some code density.  The assembler attempts to widen density
17563 instructions to align branch targets and the instructions following call
17564 instructions.  If there are not enough preceding safe density
17565 instructions to align a target, no widening will be performed.  The
17566 default is @option{-mtarget-align}.  These options do not affect the
17567 treatment of auto-aligned instructions like @code{LOOP}, which the
17568 assembler will always align, either by widening density instructions or
17569 by inserting no-op instructions.
17570
17571 @item -mlongcalls
17572 @itemx -mno-longcalls
17573 @opindex mlongcalls
17574 @opindex mno-longcalls
17575 When this option is enabled, GCC instructs the assembler to translate
17576 direct calls to indirect calls unless it can determine that the target
17577 of a direct call is in the range allowed by the call instruction.  This
17578 translation typically occurs for calls to functions in other source
17579 files.  Specifically, the assembler translates a direct @code{CALL}
17580 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
17581 The default is @option{-mno-longcalls}.  This option should be used in
17582 programs where the call target can potentially be out of range.  This
17583 option is implemented in the assembler, not the compiler, so the
17584 assembly code generated by GCC will still show direct call
17585 instructions---look at the disassembled object code to see the actual
17586 instructions.  Note that the assembler will use an indirect call for
17587 every cross-file call, not just those that really will be out of range.
17588 @end table
17589
17590 @node zSeries Options
17591 @subsection zSeries Options
17592 @cindex zSeries options
17593
17594 These are listed under @xref{S/390 and zSeries Options}.
17595
17596 @node Code Gen Options
17597 @section Options for Code Generation Conventions
17598 @cindex code generation conventions
17599 @cindex options, code generation
17600 @cindex run-time options
17601
17602 These machine-independent options control the interface conventions
17603 used in code generation.
17604
17605 Most of them have both positive and negative forms; the negative form
17606 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
17607 one of the forms is listed---the one which is not the default.  You
17608 can figure out the other form by either removing @samp{no-} or adding
17609 it.
17610
17611 @table @gcctabopt
17612 @item -fbounds-check
17613 @opindex fbounds-check
17614 For front-ends that support it, generate additional code to check that
17615 indices used to access arrays are within the declared range.  This is
17616 currently only supported by the Java and Fortran front-ends, where
17617 this option defaults to true and false respectively.
17618
17619 @item -ftrapv
17620 @opindex ftrapv
17621 This option generates traps for signed overflow on addition, subtraction,
17622 multiplication operations.
17623
17624 @item -fwrapv
17625 @opindex fwrapv
17626 This option instructs the compiler to assume that signed arithmetic
17627 overflow of addition, subtraction and multiplication wraps around
17628 using twos-complement representation.  This flag enables some optimizations
17629 and disables others.  This option is enabled by default for the Java
17630 front-end, as required by the Java language specification.
17631
17632 @item -fexceptions
17633 @opindex fexceptions
17634 Enable exception handling.  Generates extra code needed to propagate
17635 exceptions.  For some targets, this implies GCC will generate frame
17636 unwind information for all functions, which can produce significant data
17637 size overhead, although it does not affect execution.  If you do not
17638 specify this option, GCC will enable it by default for languages like
17639 C++ which normally require exception handling, and disable it for
17640 languages like C that do not normally require it.  However, you may need
17641 to enable this option when compiling C code that needs to interoperate
17642 properly with exception handlers written in C++.  You may also wish to
17643 disable this option if you are compiling older C++ programs that don't
17644 use exception handling.
17645
17646 @item -fnon-call-exceptions
17647 @opindex fnon-call-exceptions
17648 Generate code that allows trapping instructions to throw exceptions.
17649 Note that this requires platform-specific runtime support that does
17650 not exist everywhere.  Moreover, it only allows @emph{trapping}
17651 instructions to throw exceptions, i.e.@: memory references or floating
17652 point instructions.  It does not allow exceptions to be thrown from
17653 arbitrary signal handlers such as @code{SIGALRM}.
17654
17655 @item -funwind-tables
17656 @opindex funwind-tables
17657 Similar to @option{-fexceptions}, except that it will just generate any needed
17658 static data, but will not affect the generated code in any other way.
17659 You will normally not enable this option; instead, a language processor
17660 that needs this handling would enable it on your behalf.
17661
17662 @item -fasynchronous-unwind-tables
17663 @opindex fasynchronous-unwind-tables
17664 Generate unwind table in dwarf2 format, if supported by target machine.  The
17665 table is exact at each instruction boundary, so it can be used for stack
17666 unwinding from asynchronous events (such as debugger or garbage collector).
17667
17668 @item -fpcc-struct-return
17669 @opindex fpcc-struct-return
17670 Return ``short'' @code{struct} and @code{union} values in memory like
17671 longer ones, rather than in registers.  This convention is less
17672 efficient, but it has the advantage of allowing intercallability between
17673 GCC-compiled files and files compiled with other compilers, particularly
17674 the Portable C Compiler (pcc).
17675
17676 The precise convention for returning structures in memory depends
17677 on the target configuration macros.
17678
17679 Short structures and unions are those whose size and alignment match
17680 that of some integer type.
17681
17682 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
17683 switch is not binary compatible with code compiled with the
17684 @option{-freg-struct-return} switch.
17685 Use it to conform to a non-default application binary interface.
17686
17687 @item -freg-struct-return
17688 @opindex freg-struct-return
17689 Return @code{struct} and @code{union} values in registers when possible.
17690 This is more efficient for small structures than
17691 @option{-fpcc-struct-return}.
17692
17693 If you specify neither @option{-fpcc-struct-return} nor
17694 @option{-freg-struct-return}, GCC defaults to whichever convention is
17695 standard for the target.  If there is no standard convention, GCC
17696 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
17697 the principal compiler.  In those cases, we can choose the standard, and
17698 we chose the more efficient register return alternative.
17699
17700 @strong{Warning:} code compiled with the @option{-freg-struct-return}
17701 switch is not binary compatible with code compiled with the
17702 @option{-fpcc-struct-return} switch.
17703 Use it to conform to a non-default application binary interface.
17704
17705 @item -fshort-enums
17706 @opindex fshort-enums
17707 Allocate to an @code{enum} type only as many bytes as it needs for the
17708 declared range of possible values.  Specifically, the @code{enum} type
17709 will be equivalent to the smallest integer type which has enough room.
17710
17711 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
17712 code that is not binary compatible with code generated without that switch.
17713 Use it to conform to a non-default application binary interface.
17714
17715 @item -fshort-double
17716 @opindex fshort-double
17717 Use the same size for @code{double} as for @code{float}.
17718
17719 @strong{Warning:} the @option{-fshort-double} 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-wchar
17724 @opindex fshort-wchar
17725 Override the underlying type for @samp{wchar_t} to be @samp{short
17726 unsigned int} instead of the default for the target.  This option is
17727 useful for building programs to run under WINE@.
17728
17729 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
17730 code that is not binary compatible with code generated without that switch.
17731 Use it to conform to a non-default application binary interface.
17732
17733 @item -fno-common
17734 @opindex fno-common
17735 In C code, controls the placement of uninitialized global variables.
17736 Unix C compilers have traditionally permitted multiple definitions of
17737 such variables in different compilation units by placing the variables
17738 in a common block.
17739 This is the behavior specified by @option{-fcommon}, and is the default
17740 for GCC on most targets.
17741 On the other hand, this behavior is not required by ISO C, and on some
17742 targets may carry a speed or code size penalty on variable references.
17743 The @option{-fno-common} option specifies that the compiler should place
17744 uninitialized global variables in the data section of the object file,
17745 rather than generating them as common blocks.
17746 This has the effect that if the same variable is declared
17747 (without @code{extern}) in two different compilations,
17748 you will get a multiple-definition error when you link them.
17749 In this case, you must compile with @option{-fcommon} instead.
17750 Compiling with @option{-fno-common} is useful on targets for which
17751 it provides better performance, or if you wish to verify that the
17752 program will work on other systems which always treat uninitialized
17753 variable declarations this way.
17754
17755 @item -fno-ident
17756 @opindex fno-ident
17757 Ignore the @samp{#ident} directive.
17758
17759 @item -finhibit-size-directive
17760 @opindex finhibit-size-directive
17761 Don't output a @code{.size} assembler directive, or anything else that
17762 would cause trouble if the function is split in the middle, and the
17763 two halves are placed at locations far apart in memory.  This option is
17764 used when compiling @file{crtstuff.c}; you should not need to use it
17765 for anything else.
17766
17767 @item -fverbose-asm
17768 @opindex fverbose-asm
17769 Put extra commentary information in the generated assembly code to
17770 make it more readable.  This option is generally only of use to those
17771 who actually need to read the generated assembly code (perhaps while
17772 debugging the compiler itself).
17773
17774 @option{-fno-verbose-asm}, the default, causes the
17775 extra information to be omitted and is useful when comparing two assembler
17776 files.
17777
17778 @item -frecord-gcc-switches
17779 @opindex frecord-gcc-switches
17780 This switch causes the command line that was used to invoke the
17781 compiler to be recorded into the object file that is being created.
17782 This switch is only implemented on some targets and the exact format
17783 of the recording is target and binary file format dependent, but it
17784 usually takes the form of a section containing ASCII text.  This
17785 switch is related to the @option{-fverbose-asm} switch, but that
17786 switch only records information in the assembler output file as
17787 comments, so it never reaches the object file.
17788
17789 @item -fpic
17790 @opindex fpic
17791 @cindex global offset table
17792 @cindex PIC
17793 Generate position-independent code (PIC) suitable for use in a shared
17794 library, if supported for the target machine.  Such code accesses all
17795 constant addresses through a global offset table (GOT)@.  The dynamic
17796 loader resolves the GOT entries when the program starts (the dynamic
17797 loader is not part of GCC; it is part of the operating system).  If
17798 the GOT size for the linked executable exceeds a machine-specific
17799 maximum size, you get an error message from the linker indicating that
17800 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
17801 instead.  (These maximums are 8k on the SPARC and 32k
17802 on the m68k and RS/6000.  The 386 has no such limit.)
17803
17804 Position-independent code requires special support, and therefore works
17805 only on certain machines.  For the 386, GCC supports PIC for System V
17806 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
17807 position-independent.
17808
17809 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17810 are defined to 1.
17811
17812 @item -fPIC
17813 @opindex fPIC
17814 If supported for the target machine, emit position-independent code,
17815 suitable for dynamic linking and avoiding any limit on the size of the
17816 global offset table.  This option makes a difference on the m68k,
17817 PowerPC and SPARC@.
17818
17819 Position-independent code requires special support, and therefore works
17820 only on certain machines.
17821
17822 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
17823 are defined to 2.
17824
17825 @item -fpie
17826 @itemx -fPIE
17827 @opindex fpie
17828 @opindex fPIE
17829 These options are similar to @option{-fpic} and @option{-fPIC}, but
17830 generated position independent code can be only linked into executables.
17831 Usually these options are used when @option{-pie} GCC option will be
17832 used during linking.
17833
17834 @option{-fpie} and @option{-fPIE} both define the macros
17835 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
17836 for @option{-fpie} and 2 for @option{-fPIE}.
17837
17838 @item -fno-jump-tables
17839 @opindex fno-jump-tables
17840 Do not use jump tables for switch statements even where it would be
17841 more efficient than other code generation strategies.  This option is
17842 of use in conjunction with @option{-fpic} or @option{-fPIC} for
17843 building code which forms part of a dynamic linker and cannot
17844 reference the address of a jump table.  On some targets, jump tables
17845 do not require a GOT and this option is not needed.
17846
17847 @item -ffixed-@var{reg}
17848 @opindex ffixed
17849 Treat the register named @var{reg} as a fixed register; generated code
17850 should never refer to it (except perhaps as a stack pointer, frame
17851 pointer or in some other fixed role).
17852
17853 @var{reg} must be the name of a register.  The register names accepted
17854 are machine-specific and are defined in the @code{REGISTER_NAMES}
17855 macro in the machine description macro file.
17856
17857 This flag does not have a negative form, because it specifies a
17858 three-way choice.
17859
17860 @item -fcall-used-@var{reg}
17861 @opindex fcall-used
17862 Treat the register named @var{reg} as an allocable register that is
17863 clobbered by function calls.  It may be allocated for temporaries or
17864 variables that do not live across a call.  Functions compiled this way
17865 will not save and restore the register @var{reg}.
17866
17867 It is an error to used this flag with the frame pointer or stack pointer.
17868 Use of this flag for other registers that have fixed pervasive roles in
17869 the machine's execution model will produce disastrous results.
17870
17871 This flag does not have a negative form, because it specifies a
17872 three-way choice.
17873
17874 @item -fcall-saved-@var{reg}
17875 @opindex fcall-saved
17876 Treat the register named @var{reg} as an allocable register saved by
17877 functions.  It may be allocated even for temporaries or variables that
17878 live across a call.  Functions compiled this way will save and restore
17879 the register @var{reg} if they use it.
17880
17881 It is an error to used this flag with the frame pointer or stack pointer.
17882 Use of this flag for other registers that have fixed pervasive roles in
17883 the machine's execution model will produce disastrous results.
17884
17885 A different sort of disaster will result from the use of this flag for
17886 a register in which function values may be returned.
17887
17888 This flag does not have a negative form, because it specifies a
17889 three-way choice.
17890
17891 @item -fpack-struct[=@var{n}]
17892 @opindex fpack-struct
17893 Without a value specified, pack all structure members together without
17894 holes.  When a value is specified (which must be a small power of two), pack
17895 structure members according to this value, representing the maximum
17896 alignment (that is, objects with default alignment requirements larger than
17897 this will be output potentially unaligned at the next fitting location.
17898
17899 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
17900 code that is not binary compatible with code generated without that switch.
17901 Additionally, it makes the code suboptimal.
17902 Use it to conform to a non-default application binary interface.
17903
17904 @item -finstrument-functions
17905 @opindex finstrument-functions
17906 Generate instrumentation calls for entry and exit to functions.  Just
17907 after function entry and just before function exit, the following
17908 profiling functions will be called with the address of the current
17909 function and its call site.  (On some platforms,
17910 @code{__builtin_return_address} does not work beyond the current
17911 function, so the call site information may not be available to the
17912 profiling functions otherwise.)
17913
17914 @smallexample
17915 void __cyg_profile_func_enter (void *this_fn,
17916                                void *call_site);
17917 void __cyg_profile_func_exit  (void *this_fn,
17918                                void *call_site);
17919 @end smallexample
17920
17921 The first argument is the address of the start of the current function,
17922 which may be looked up exactly in the symbol table.
17923
17924 This instrumentation is also done for functions expanded inline in other
17925 functions.  The profiling calls will indicate where, conceptually, the
17926 inline function is entered and exited.  This means that addressable
17927 versions of such functions must be available.  If all your uses of a
17928 function are expanded inline, this may mean an additional expansion of
17929 code size.  If you use @samp{extern inline} in your C code, an
17930 addressable version of such functions must be provided.  (This is
17931 normally the case anyways, but if you get lucky and the optimizer always
17932 expands the functions inline, you might have gotten away without
17933 providing static copies.)
17934
17935 A function may be given the attribute @code{no_instrument_function}, in
17936 which case this instrumentation will not be done.  This can be used, for
17937 example, for the profiling functions listed above, high-priority
17938 interrupt routines, and any functions from which the profiling functions
17939 cannot safely be called (perhaps signal handlers, if the profiling
17940 routines generate output or allocate memory).
17941
17942 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
17943 @opindex finstrument-functions-exclude-file-list
17944
17945 Set the list of functions that are excluded from instrumentation (see
17946 the description of @code{-finstrument-functions}).  If the file that
17947 contains a function definition matches with one of @var{file}, then
17948 that function is not instrumented.  The match is done on substrings:
17949 if the @var{file} parameter is a substring of the file name, it is
17950 considered to be a match.
17951
17952 For example:
17953
17954 @smallexample
17955 -finstrument-functions-exclude-file-list=/bits/stl,include/sys
17956 @end smallexample
17957
17958 @noindent
17959 will exclude any inline function defined in files whose pathnames
17960 contain @code{/bits/stl} or @code{include/sys}.
17961
17962 If, for some reason, you want to include letter @code{','} in one of
17963 @var{sym}, write @code{'\,'}. For example,
17964 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
17965 (note the single quote surrounding the option).
17966
17967 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
17968 @opindex finstrument-functions-exclude-function-list
17969
17970 This is similar to @code{-finstrument-functions-exclude-file-list},
17971 but this option sets the list of function names to be excluded from
17972 instrumentation.  The function name to be matched is its user-visible
17973 name, such as @code{vector<int> blah(const vector<int> &)}, not the
17974 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
17975 match is done on substrings: if the @var{sym} parameter is a substring
17976 of the function name, it is considered to be a match.  For C99 and C++
17977 extended identifiers, the function name must be given in UTF-8, not
17978 using universal character names.
17979
17980 @item -fstack-check
17981 @opindex fstack-check
17982 Generate code to verify that you do not go beyond the boundary of the
17983 stack.  You should specify this flag if you are running in an
17984 environment with multiple threads, but only rarely need to specify it in
17985 a single-threaded environment since stack overflow is automatically
17986 detected on nearly all systems if there is only one stack.
17987
17988 Note that this switch does not actually cause checking to be done; the
17989 operating system or the language runtime must do that.  The switch causes
17990 generation of code to ensure that they see the stack being extended.
17991
17992 You can additionally specify a string parameter: @code{no} means no
17993 checking, @code{generic} means force the use of old-style checking,
17994 @code{specific} means use the best checking method and is equivalent
17995 to bare @option{-fstack-check}.
17996
17997 Old-style checking is a generic mechanism that requires no specific
17998 target support in the compiler but comes with the following drawbacks:
17999
18000 @enumerate
18001 @item
18002 Modified allocation strategy for large objects: they will always be
18003 allocated dynamically if their size exceeds a fixed threshold.
18004
18005 @item
18006 Fixed limit on the size of the static frame of functions: when it is
18007 topped by a particular function, stack checking is not reliable and
18008 a warning is issued by the compiler.
18009
18010 @item
18011 Inefficiency: because of both the modified allocation strategy and the
18012 generic implementation, the performances of the code are hampered.
18013 @end enumerate
18014
18015 Note that old-style stack checking is also the fallback method for
18016 @code{specific} if no target support has been added in the compiler.
18017
18018 @item -fstack-limit-register=@var{reg}
18019 @itemx -fstack-limit-symbol=@var{sym}
18020 @itemx -fno-stack-limit
18021 @opindex fstack-limit-register
18022 @opindex fstack-limit-symbol
18023 @opindex fno-stack-limit
18024 Generate code to ensure that the stack does not grow beyond a certain value,
18025 either the value of a register or the address of a symbol.  If the stack
18026 would grow beyond the value, a signal is raised.  For most targets,
18027 the signal is raised before the stack overruns the boundary, so
18028 it is possible to catch the signal without taking special precautions.
18029
18030 For instance, if the stack starts at absolute address @samp{0x80000000}
18031 and grows downwards, you can use the flags
18032 @option{-fstack-limit-symbol=__stack_limit} and
18033 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
18034 of 128KB@.  Note that this may only work with the GNU linker.
18035
18036 @item -fsplit-stack
18037 @opindex fsplit-stack
18038 Generate code to automatically split the stack before it overflows.
18039 The resulting program has a discontiguous stack which can only
18040 overflow if the program is unable to allocate any more memory.  This
18041 is most useful when running threaded programs, as it is no longer
18042 necessary to calculate a good stack size to use for each thread.  This
18043 is currently only implemented for the i386 and x86_64 backends running
18044 GNU/Linux.
18045
18046 When code compiled with @option{-fsplit-stack} calls code compiled
18047 without @option{-fsplit-stack}, there may not be much stack space
18048 available for the latter code to run.  If compiling all code,
18049 including library code, with @option{-fsplit-stack} is not an option,
18050 then the linker can fix up these calls so that the code compiled
18051 without @option{-fsplit-stack} always has a large stack.  Support for
18052 this is implemented in the gold linker in GNU binutils release 2.21
18053 and later.
18054
18055 @item -fleading-underscore
18056 @opindex fleading-underscore
18057 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
18058 change the way C symbols are represented in the object file.  One use
18059 is to help link with legacy assembly code.
18060
18061 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
18062 generate code that is not binary compatible with code generated without that
18063 switch.  Use it to conform to a non-default application binary interface.
18064 Not all targets provide complete support for this switch.
18065
18066 @item -ftls-model=@var{model}
18067 @opindex ftls-model
18068 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
18069 The @var{model} argument should be one of @code{global-dynamic},
18070 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
18071
18072 The default without @option{-fpic} is @code{initial-exec}; with
18073 @option{-fpic} the default is @code{global-dynamic}.
18074
18075 @item -fvisibility=@var{default|internal|hidden|protected}
18076 @opindex fvisibility
18077 Set the default ELF image symbol visibility to the specified option---all
18078 symbols will be marked with this unless overridden within the code.
18079 Using this feature can very substantially improve linking and
18080 load times of shared object libraries, produce more optimized
18081 code, provide near-perfect API export and prevent symbol clashes.
18082 It is @strong{strongly} recommended that you use this in any shared objects
18083 you distribute.
18084
18085 Despite the nomenclature, @code{default} always means public; i.e.,
18086 available to be linked against from outside the shared object.
18087 @code{protected} and @code{internal} are pretty useless in real-world
18088 usage so the only other commonly used option will be @code{hidden}.
18089 The default if @option{-fvisibility} isn't specified is
18090 @code{default}, i.e., make every
18091 symbol public---this causes the same behavior as previous versions of
18092 GCC@.
18093
18094 A good explanation of the benefits offered by ensuring ELF
18095 symbols have the correct visibility is given by ``How To Write
18096 Shared Libraries'' by Ulrich Drepper (which can be found at
18097 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
18098 solution made possible by this option to marking things hidden when
18099 the default is public is to make the default hidden and mark things
18100 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
18101 and @code{__attribute__ ((visibility("default")))} instead of
18102 @code{__declspec(dllexport)} you get almost identical semantics with
18103 identical syntax.  This is a great boon to those working with
18104 cross-platform projects.
18105
18106 For those adding visibility support to existing code, you may find
18107 @samp{#pragma GCC visibility} of use.  This works by you enclosing
18108 the declarations you wish to set visibility for with (for example)
18109 @samp{#pragma GCC visibility push(hidden)} and
18110 @samp{#pragma GCC visibility pop}.
18111 Bear in mind that symbol visibility should be viewed @strong{as
18112 part of the API interface contract} and thus all new code should
18113 always specify visibility when it is not the default; i.e., declarations
18114 only for use within the local DSO should @strong{always} be marked explicitly
18115 as hidden as so to avoid PLT indirection overheads---making this
18116 abundantly clear also aids readability and self-documentation of the code.
18117 Note that due to ISO C++ specification requirements, operator new and
18118 operator delete must always be of default visibility.
18119
18120 Be aware that headers from outside your project, in particular system
18121 headers and headers from any other library you use, may not be
18122 expecting to be compiled with visibility other than the default.  You
18123 may need to explicitly say @samp{#pragma GCC visibility push(default)}
18124 before including any such headers.
18125
18126 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
18127 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
18128 no modifications.  However, this means that calls to @samp{extern}
18129 functions with no explicit visibility will use the PLT, so it is more
18130 effective to use @samp{__attribute ((visibility))} and/or
18131 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
18132 declarations should be treated as hidden.
18133
18134 Note that @samp{-fvisibility} does affect C++ vague linkage
18135 entities. This means that, for instance, an exception class that will
18136 be thrown between DSOs must be explicitly marked with default
18137 visibility so that the @samp{type_info} nodes will be unified between
18138 the DSOs.
18139
18140 An overview of these techniques, their benefits and how to use them
18141 is at @uref{http://gcc.gnu.org/@/wiki/@/Visibility}.
18142
18143 @item -fstrict-volatile-bitfields
18144 @opindex fstrict-volatile-bitfields
18145 This option should be used if accesses to volatile bitfields (or other
18146 structure fields, although the compiler usually honors those types
18147 anyway) should use a single access of the width of the
18148 field's type, aligned to a natural alignment if possible.  For
18149 example, targets with memory-mapped peripheral registers might require
18150 all such accesses to be 16 bits wide; with this flag the user could
18151 declare all peripheral bitfields as ``unsigned short'' (assuming short
18152 is 16 bits on these targets) to force GCC to use 16 bit accesses
18153 instead of, perhaps, a more efficient 32 bit access.
18154
18155 If this option is disabled, the compiler will use the most efficient
18156 instruction.  In the previous example, that might be a 32-bit load
18157 instruction, even though that will access bytes that do not contain
18158 any portion of the bitfield, or memory-mapped registers unrelated to
18159 the one being updated.
18160
18161 If the target requires strict alignment, and honoring the field
18162 type would require violating this alignment, a warning is issued.
18163 If the field has @code{packed} attribute, the access is done without
18164 honoring the field type.  If the field doesn't have @code{packed}
18165 attribute, the access is done honoring the field type.  In both cases,
18166 GCC assumes that the user knows something about the target hardware
18167 that it is unaware of.
18168
18169 The default value of this option is determined by the application binary
18170 interface for the target processor.
18171
18172 @end table
18173
18174 @c man end
18175
18176 @node Environment Variables
18177 @section Environment Variables Affecting GCC
18178 @cindex environment variables
18179
18180 @c man begin ENVIRONMENT
18181 This section describes several environment variables that affect how GCC
18182 operates.  Some of them work by specifying directories or prefixes to use
18183 when searching for various kinds of files.  Some are used to specify other
18184 aspects of the compilation environment.
18185
18186 Note that you can also specify places to search using options such as
18187 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
18188 take precedence over places specified using environment variables, which
18189 in turn take precedence over those specified by the configuration of GCC@.
18190 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
18191 GNU Compiler Collection (GCC) Internals}.
18192
18193 @table @env
18194 @item LANG
18195 @itemx LC_CTYPE
18196 @c @itemx LC_COLLATE
18197 @itemx LC_MESSAGES
18198 @c @itemx LC_MONETARY
18199 @c @itemx LC_NUMERIC
18200 @c @itemx LC_TIME
18201 @itemx LC_ALL
18202 @findex LANG
18203 @findex LC_CTYPE
18204 @c @findex LC_COLLATE
18205 @findex LC_MESSAGES
18206 @c @findex LC_MONETARY
18207 @c @findex LC_NUMERIC
18208 @c @findex LC_TIME
18209 @findex LC_ALL
18210 @cindex locale
18211 These environment variables control the way that GCC uses
18212 localization information that allow GCC to work with different
18213 national conventions.  GCC inspects the locale categories
18214 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
18215 so.  These locale categories can be set to any value supported by your
18216 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
18217 Kingdom encoded in UTF-8.
18218
18219 The @env{LC_CTYPE} environment variable specifies character
18220 classification.  GCC uses it to determine the character boundaries in
18221 a string; this is needed for some multibyte encodings that contain quote
18222 and escape characters that would otherwise be interpreted as a string
18223 end or escape.
18224
18225 The @env{LC_MESSAGES} environment variable specifies the language to
18226 use in diagnostic messages.
18227
18228 If the @env{LC_ALL} environment variable is set, it overrides the value
18229 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
18230 and @env{LC_MESSAGES} default to the value of the @env{LANG}
18231 environment variable.  If none of these variables are set, GCC
18232 defaults to traditional C English behavior.
18233
18234 @item TMPDIR
18235 @findex TMPDIR
18236 If @env{TMPDIR} is set, it specifies the directory to use for temporary
18237 files.  GCC uses temporary files to hold the output of one stage of
18238 compilation which is to be used as input to the next stage: for example,
18239 the output of the preprocessor, which is the input to the compiler
18240 proper.
18241
18242 @item GCC_EXEC_PREFIX
18243 @findex GCC_EXEC_PREFIX
18244 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
18245 names of the subprograms executed by the compiler.  No slash is added
18246 when this prefix is combined with the name of a subprogram, but you can
18247 specify a prefix that ends with a slash if you wish.
18248
18249 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
18250 an appropriate prefix to use based on the pathname it was invoked with.
18251
18252 If GCC cannot find the subprogram using the specified prefix, it
18253 tries looking in the usual places for the subprogram.
18254
18255 The default value of @env{GCC_EXEC_PREFIX} is
18256 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
18257 the installed compiler. In many cases @var{prefix} is the value
18258 of @code{prefix} when you ran the @file{configure} script.
18259
18260 Other prefixes specified with @option{-B} take precedence over this prefix.
18261
18262 This prefix is also used for finding files such as @file{crt0.o} that are
18263 used for linking.
18264
18265 In addition, the prefix is used in an unusual way in finding the
18266 directories to search for header files.  For each of the standard
18267 directories whose name normally begins with @samp{/usr/local/lib/gcc}
18268 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
18269 replacing that beginning with the specified prefix to produce an
18270 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
18271 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
18272 These alternate directories are searched first; the standard directories
18273 come next. If a standard directory begins with the configured
18274 @var{prefix} then the value of @var{prefix} is replaced by
18275 @env{GCC_EXEC_PREFIX} when looking for header files.
18276
18277 @item COMPILER_PATH
18278 @findex COMPILER_PATH
18279 The value of @env{COMPILER_PATH} is a colon-separated list of
18280 directories, much like @env{PATH}.  GCC tries the directories thus
18281 specified when searching for subprograms, if it can't find the
18282 subprograms using @env{GCC_EXEC_PREFIX}.
18283
18284 @item LIBRARY_PATH
18285 @findex LIBRARY_PATH
18286 The value of @env{LIBRARY_PATH} is a colon-separated list of
18287 directories, much like @env{PATH}.  When configured as a native compiler,
18288 GCC tries the directories thus specified when searching for special
18289 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
18290 using GCC also uses these directories when searching for ordinary
18291 libraries for the @option{-l} option (but directories specified with
18292 @option{-L} come first).
18293
18294 @item LANG
18295 @findex LANG
18296 @cindex locale definition
18297 This variable is used to pass locale information to the compiler.  One way in
18298 which this information is used is to determine the character set to be used
18299 when character literals, string literals and comments are parsed in C and C++.
18300 When the compiler is configured to allow multibyte characters,
18301 the following values for @env{LANG} are recognized:
18302
18303 @table @samp
18304 @item C-JIS
18305 Recognize JIS characters.
18306 @item C-SJIS
18307 Recognize SJIS characters.
18308 @item C-EUCJP
18309 Recognize EUCJP characters.
18310 @end table
18311
18312 If @env{LANG} is not defined, or if it has some other value, then the
18313 compiler will use mblen and mbtowc as defined by the default locale to
18314 recognize and translate multibyte characters.
18315 @end table
18316
18317 @noindent
18318 Some additional environments variables affect the behavior of the
18319 preprocessor.
18320
18321 @include cppenv.texi
18322
18323 @c man end
18324
18325 @node Precompiled Headers
18326 @section Using Precompiled Headers
18327 @cindex precompiled headers
18328 @cindex speed of compilation
18329
18330 Often large projects have many header files that are included in every
18331 source file.  The time the compiler takes to process these header files
18332 over and over again can account for nearly all of the time required to
18333 build the project.  To make builds faster, GCC allows users to
18334 `precompile' a header file; then, if builds can use the precompiled
18335 header file they will be much faster.
18336
18337 To create a precompiled header file, simply compile it as you would any
18338 other file, if necessary using the @option{-x} option to make the driver
18339 treat it as a C or C++ header file.  You will probably want to use a
18340 tool like @command{make} to keep the precompiled header up-to-date when
18341 the headers it contains change.
18342
18343 A precompiled header file will be searched for when @code{#include} is
18344 seen in the compilation.  As it searches for the included file
18345 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
18346 compiler looks for a precompiled header in each directory just before it
18347 looks for the include file in that directory.  The name searched for is
18348 the name specified in the @code{#include} with @samp{.gch} appended.  If
18349 the precompiled header file can't be used, it is ignored.
18350
18351 For instance, if you have @code{#include "all.h"}, and you have
18352 @file{all.h.gch} in the same directory as @file{all.h}, then the
18353 precompiled header file will be used if possible, and the original
18354 header will be used otherwise.
18355
18356 Alternatively, you might decide to put the precompiled header file in a
18357 directory and use @option{-I} to ensure that directory is searched
18358 before (or instead of) the directory containing the original header.
18359 Then, if you want to check that the precompiled header file is always
18360 used, you can put a file of the same name as the original header in this
18361 directory containing an @code{#error} command.
18362
18363 This also works with @option{-include}.  So yet another way to use
18364 precompiled headers, good for projects not designed with precompiled
18365 header files in mind, is to simply take most of the header files used by
18366 a project, include them from another header file, precompile that header
18367 file, and @option{-include} the precompiled header.  If the header files
18368 have guards against multiple inclusion, they will be skipped because
18369 they've already been included (in the precompiled header).
18370
18371 If you need to precompile the same header file for different
18372 languages, targets, or compiler options, you can instead make a
18373 @emph{directory} named like @file{all.h.gch}, and put each precompiled
18374 header in the directory, perhaps using @option{-o}.  It doesn't matter
18375 what you call the files in the directory, every precompiled header in
18376 the directory will be considered.  The first precompiled header
18377 encountered in the directory that is valid for this compilation will
18378 be used; they're searched in no particular order.
18379
18380 There are many other possibilities, limited only by your imagination,
18381 good sense, and the constraints of your build system.
18382
18383 A precompiled header file can be used only when these conditions apply:
18384
18385 @itemize
18386 @item
18387 Only one precompiled header can be used in a particular compilation.
18388
18389 @item
18390 A precompiled header can't be used once the first C token is seen.  You
18391 can have preprocessor directives before a precompiled header; you can
18392 even include a precompiled header from inside another header, so long as
18393 there are no C tokens before the @code{#include}.
18394
18395 @item
18396 The precompiled header file must be produced for the same language as
18397 the current compilation.  You can't use a C precompiled header for a C++
18398 compilation.
18399
18400 @item
18401 The precompiled header file must have been produced by the same compiler
18402 binary as the current compilation is using.
18403
18404 @item
18405 Any macros defined before the precompiled header is included must
18406 either be defined in the same way as when the precompiled header was
18407 generated, or must not affect the precompiled header, which usually
18408 means that they don't appear in the precompiled header at all.
18409
18410 The @option{-D} option is one way to define a macro before a
18411 precompiled header is included; using a @code{#define} can also do it.
18412 There are also some options that define macros implicitly, like
18413 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
18414 defined this way.
18415
18416 @item If debugging information is output when using the precompiled
18417 header, using @option{-g} or similar, the same kind of debugging information
18418 must have been output when building the precompiled header.  However,
18419 a precompiled header built using @option{-g} can be used in a compilation
18420 when no debugging information is being output.
18421
18422 @item The same @option{-m} options must generally be used when building
18423 and using the precompiled header.  @xref{Submodel Options},
18424 for any cases where this rule is relaxed.
18425
18426 @item Each of the following options must be the same when building and using
18427 the precompiled header:
18428
18429 @gccoptlist{-fexceptions}
18430
18431 @item
18432 Some other command-line options starting with @option{-f},
18433 @option{-p}, or @option{-O} must be defined in the same way as when
18434 the precompiled header was generated.  At present, it's not clear
18435 which options are safe to change and which are not; the safest choice
18436 is to use exactly the same options when generating and using the
18437 precompiled header.  The following are known to be safe:
18438
18439 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
18440 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
18441 -fsched-verbose=@var{number}  -fschedule-insns  -fvisibility= @gol
18442 -pedantic-errors}
18443
18444 @end itemize
18445
18446 For all of these except the last, the compiler will automatically
18447 ignore the precompiled header if the conditions aren't met.  If you
18448 find an option combination that doesn't work and doesn't cause the
18449 precompiled header to be ignored, please consider filing a bug report,
18450 see @ref{Bugs}.
18451
18452 If you do use differing options when generating and using the
18453 precompiled header, the actual behavior will be a mixture of the
18454 behavior for the options.  For instance, if you use @option{-g} to
18455 generate the precompiled header but not when using it, you may or may
18456 not get debugging information for routines in the precompiled header.