OSDN Git Service

* doc/extend.texi: Add MeP attributes and pragmas.
[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
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
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.2 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}  -combine  -pipe  -pass-exit-codes  @gol
165 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{[},@dots{}@r{]]}  --target-help  @gol
166 --version -wrapper@@@var{file} -fplugin=@var{file} -fplugin-arg-@var{name}=@var{arg}}
167
168 @item C Language Options
169 @xref{C Dialect Options,,Options Controlling C Dialect}.
170 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
171 -aux-info @var{filename} @gol
172 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
173 -fhosted  -ffreestanding -fopenmp -fms-extensions @gol
174 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
175 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
176 -fsigned-bitfields  -fsigned-char @gol
177 -funsigned-bitfields  -funsigned-char}
178
179 @item C++ Language Options
180 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
181 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
182 -fconserve-space  -ffriend-injection @gol
183 -fno-elide-constructors @gol
184 -fno-enforce-eh-specs @gol
185 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
186 -fno-implicit-templates @gol
187 -fno-implicit-inline-templates @gol
188 -fno-implement-inlines  -fms-extensions @gol
189 -fno-nonansi-builtins  -fno-operator-names @gol
190 -fno-optional-diags  -fpermissive @gol
191 -fno-pretty-templates @gol
192 -frepo  -fno-rtti  -fstats  -ftemplate-depth-@var{n} @gol
193 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
194 -fno-default-inline  -fvisibility-inlines-hidden @gol
195 -fvisibility-ms-compat @gol
196 -Wabi  -Wctor-dtor-privacy @gol
197 -Wnon-virtual-dtor  -Wreorder @gol
198 -Weffc++  -Wstrict-null-sentinel @gol
199 -Wno-non-template-friend  -Wold-style-cast @gol
200 -Woverloaded-virtual  -Wno-pmf-conversions @gol
201 -Wsign-promo}
202
203 @item Objective-C and Objective-C++ Language Options
204 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
205 Objective-C and Objective-C++ Dialects}.
206 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
207 -fgnu-runtime  -fnext-runtime @gol
208 -fno-nil-receivers @gol
209 -fobjc-call-cxx-cdtors @gol
210 -fobjc-direct-dispatch @gol
211 -fobjc-exceptions @gol
212 -fobjc-gc @gol
213 -freplace-objc-classes @gol
214 -fzero-link @gol
215 -gen-decls @gol
216 -Wassign-intercept @gol
217 -Wno-protocol  -Wselector @gol
218 -Wstrict-selector-match @gol
219 -Wundeclared-selector}
220
221 @item Language Independent Options
222 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
223 @gccoptlist{-fmessage-length=@var{n}  @gol
224 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
225 -fdiagnostics-show-option}
226
227 @item Warning Options
228 @xref{Warning Options,,Options to Request or Suppress Warnings}.
229 @gccoptlist{-fsyntax-only  -pedantic  -pedantic-errors @gol
230 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  -Warray-bounds @gol
231 -Wno-attributes -Wno-builtin-macro-redefined @gol
232 -Wc++-compat -Wc++0x-compat -Wcast-align  -Wcast-qual  @gol
233 -Wchar-subscripts -Wclobbered  -Wcomment @gol
234 -Wconversion  -Wcoverage-mismatch  -Wno-deprecated  @gol
235 -Wno-deprecated-declarations -Wdisabled-optimization  @gol
236 -Wno-div-by-zero -Wempty-body  -Wenum-compare -Wno-endif-labels @gol
237 -Werror  -Werror=* @gol
238 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
239 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
240 -Wformat-security  -Wformat-y2k @gol
241 -Wframe-larger-than=@var{len} -Wjump-misses-init -Wignored-qualifiers @gol
242 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
243 -Winit-self  -Winline @gol
244 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
245 -Winvalid-pch -Wlarger-than=@var{len}  -Wunsafe-loop-optimizations @gol
246 -Wlogical-op -Wlong-long @gol
247 -Wmain  -Wmissing-braces  -Wmissing-field-initializers @gol
248 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
249 -Wmissing-noreturn  -Wno-mudflap @gol
250 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
251 -Woverlength-strings  -Wpacked  -Wpacked-bitfield-compat  -Wpadded @gol
252 -Wparentheses  -Wpedantic-ms-format -Wno-pedantic-ms-format @gol
253 -Wpointer-arith  -Wno-pointer-to-int-cast @gol
254 -Wredundant-decls @gol
255 -Wreturn-type  -Wsequence-point  -Wshadow @gol
256 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
257 -Wstrict-aliasing -Wstrict-aliasing=n @gol
258 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
259 -Wswitch  -Wswitch-default  -Wswitch-enum -Wsync-nand @gol
260 -Wsystem-headers  -Wtrigraphs  -Wtype-limits  -Wundef  -Wuninitialized @gol
261 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
262 -Wunsuffixed-float-constants  -Wunused  -Wunused-function @gol
263 -Wunused-label  -Wunused-parameter  -Wunused-value  -Wunused-variable @gol
264 -Wvariadic-macros -Wvla @gol
265 -Wvolatile-register-var  -Wwrite-strings}
266
267 @item C and Objective-C-only Warning Options
268 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
269 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
270 -Wold-style-declaration  -Wold-style-definition @gol
271 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
272 -Wdeclaration-after-statement -Wpointer-sign}
273
274 @item Debugging Options
275 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
276 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
277 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
278 -fdump-noaddr -fdump-unnumbered -fdump-unnumbered-links @gol
279 -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
280 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
281 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
282 -fdump-statistics @gol
283 -fdump-tree-all @gol
284 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
285 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
286 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
287 -fdump-tree-ch @gol
288 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
293 -fdump-tree-phiprop@r{[}-@var{n}@r{]} @gol
294 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
295 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
296 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-nrv -fdump-tree-vect @gol
298 -fdump-tree-sink @gol
299 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
300 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
301 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
302 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
303 -ftree-vectorizer-verbose=@var{n} @gol
304 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
305 -fdump-final-insns=@var{file} @gol
306 -fcompare-debug@r{[}=@var{opts}@r{]}  -fcompare-debug-second @gol
307 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
308 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
309 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
310 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
311 -fsel-sched-verbose -fsel-sched-dump-cfg -fsel-sched-pipelining-verbose @gol
312 -ftest-coverage  -ftime-report -fvar-tracking @gol
313 -g  -g@var{level}  -gtoggle  -gcoff  -gdwarf-@var{version} @gol
314 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
315 -fno-merge-debug-strings -fno-dwarf2-cfi-asm @gol
316 -fdebug-prefix-map=@var{old}=@var{new} @gol
317 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
318 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
319 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
320 -print-multi-directory  -print-multi-lib @gol
321 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
322 -print-sysroot -print-sysroot-headers-suffix @gol
323 -save-temps -save-temps=cwd -save-temps=obj -time@r{[}=@var{file}@r{]}}
324
325 @item Optimization Options
326 @xref{Optimize Options,,Options that Control Optimization}.
327 @gccoptlist{
328 -falign-functions[=@var{n}] -falign-jumps[=@var{n}] @gol
329 -falign-labels[=@var{n}] -falign-loops[=@var{n}] -fassociative-math @gol
330 -fauto-inc-dec -fbranch-probabilities -fbranch-target-load-optimize @gol
331 -fbranch-target-load-optimize2 -fbtr-bb-exclusive -fcaller-saves @gol
332 -fcheck-data-deps -fconserve-stack -fcprop-registers -fcrossjumping @gol
333 -fcse-follow-jumps -fcse-skip-blocks -fcx-fortran-rules -fcx-limited-range @gol
334 -fdata-sections -fdce -fdce @gol
335 -fdelayed-branch -fdelete-null-pointer-checks -fdse -fdse @gol
336 -fearly-inlining -fexpensive-optimizations -ffast-math @gol
337 -ffinite-math-only -ffloat-store -fexcess-precision=@var{style} @gol
338 -fforward-propagate -ffunction-sections @gol
339 -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm @gol
340 -fgcse-sm -fif-conversion -fif-conversion2 -findirect-inlining @gol
341 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
342 -finline-small-functions -fipa-cp -fipa-cp-clone -fipa-matrix-reorg -fipa-pta @gol 
343 -fipa-pure-const -fipa-reference -fipa-struct-reorg @gol
344 -fipa-type-escape -fira-algorithm=@var{algorithm} @gol
345 -fira-region=@var{region} -fira-coalesce -fno-ira-share-save-slots @gol
346 -fno-ira-share-spill-slots -fira-verbose=@var{n} @gol
347 -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
348 -floop-block -floop-interchange -floop-strip-mine @gol
349 -fmerge-all-constants -fmerge-constants -fmodulo-sched @gol
350 -fmodulo-sched-allow-regmoves -fmove-loop-invariants -fmudflap @gol
351 -fmudflapir -fmudflapth -fno-branch-count-reg -fno-default-inline @gol
352 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
353 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
354 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
355 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
356 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
357 -fpeel-loops -fpredictive-commoning -fprefetch-loop-arrays @gol
358 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
359 -fprofile-generate=@var{path} @gol
360 -fprofile-use -fprofile-use=@var{path} -fprofile-values @gol
361 -freciprocal-math -fregmove -frename-registers -freorder-blocks @gol
362 -freorder-blocks-and-partition -freorder-functions @gol
363 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
364 -frounding-math -fsched2-use-superblocks @gol
365 -fsched2-use-traces -fsched-spec-load -fsched-spec-load-dangerous @gol
366 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
367 -fschedule-insns -fschedule-insns2 -fsection-anchors @gol
368 -fselective-scheduling -fselective-scheduling2 @gol
369 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops @gol
370 -fsignaling-nans -fsingle-precision-constant -fsplit-ivs-in-unroller @gol
371 -fsplit-wide-types -fstack-protector -fstack-protector-all @gol
372 -fstrict-aliasing -fstrict-overflow -fthread-jumps -ftracer @gol
373 -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copy-prop @gol
374 -ftree-copyrename -ftree-dce @gol
375 -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-loop-im @gol
376 -ftree-phiprop -ftree-loop-distribution @gol
377 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
378 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-pta -ftree-reassoc @gol
379 -ftree-sink -ftree-sra -ftree-switch-conversion @gol
380 -ftree-ter -ftree-vect-loop-version -ftree-vectorize -ftree-vrp @gol
381 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
382 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
383 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
384 -fwhole-program @gol
385 --param @var{name}=@var{value}
386 -O  -O0  -O1  -O2  -O3  -Os}
387
388 @item Preprocessor Options
389 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
390 @gccoptlist{-A@var{question}=@var{answer} @gol
391 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
392 -C  -dD  -dI  -dM  -dN @gol
393 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
394 -idirafter @var{dir} @gol
395 -include @var{file}  -imacros @var{file} @gol
396 -iprefix @var{file}  -iwithprefix @var{dir} @gol
397 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
398 -imultilib @var{dir} -isysroot @var{dir} @gol
399 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
400 -P  -fworking-directory  -remap @gol
401 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
402 -Xpreprocessor @var{option}}
403
404 @item Assembler Option
405 @xref{Assembler Options,,Passing Options to the Assembler}.
406 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
407
408 @item Linker Options
409 @xref{Link Options,,Options for Linking}.
410 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
411 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
412 -s  -static  -static-libgcc  -static-libstdc++ -shared  @gol
413 -shared-libgcc  -symbolic @gol
414 -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
415 -u @var{symbol}}
416
417 @item Directory Options
418 @xref{Directory Options,,Options for Directory Search}.
419 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
420 -specs=@var{file}  -I- --sysroot=@var{dir}}
421
422 @item Target Options
423 @c I wrote this xref this way to avoid overfull hbox. -- rms
424 @xref{Target Options}.
425 @gccoptlist{-V @var{version}  -b @var{machine}}
426
427 @item Machine Dependent Options
428 @xref{Submodel Options,,Hardware Models and Configurations}.
429 @c This list is ordered alphanumerically by subsection name.
430 @c Try and put the significant identifier (CPU or system) first,
431 @c so users have a clue at guessing where the ones they want will be.
432
433 @emph{ARC Options}
434 @gccoptlist{-EB  -EL @gol
435 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
436 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
437
438 @emph{ARM Options}
439 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
440 -mabi=@var{name} @gol
441 -mapcs-stack-check  -mno-apcs-stack-check @gol
442 -mapcs-float  -mno-apcs-float @gol
443 -mapcs-reentrant  -mno-apcs-reentrant @gol
444 -msched-prolog  -mno-sched-prolog @gol
445 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
446 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
447 -mfp16-format=@var{name}
448 -mthumb-interwork  -mno-thumb-interwork @gol
449 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
450 -mstructure-size-boundary=@var{n} @gol
451 -mabort-on-noreturn @gol
452 -mlong-calls  -mno-long-calls @gol
453 -msingle-pic-base  -mno-single-pic-base @gol
454 -mpic-register=@var{reg} @gol
455 -mnop-fun-dllimport @gol
456 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
457 -mpoke-function-name @gol
458 -mthumb  -marm @gol
459 -mtpcs-frame  -mtpcs-leaf-frame @gol
460 -mcaller-super-interworking  -mcallee-super-interworking @gol
461 -mtp=@var{name} @gol
462 -mword-relocations @gol
463 -mfix-cortex-m3-ldrd}
464
465 @emph{AVR Options}
466 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
467 -mcall-prologues  -mtiny-stack  -mint8}
468
469 @emph{Blackfin Options}
470 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
471 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
472 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
473 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
474 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
475 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
476 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
477 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram @gol
478 -micplb}
479
480 @emph{CRIS Options}
481 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
482 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
483 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
484 -mstack-align  -mdata-align  -mconst-align @gol
485 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
486 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
487 -mmul-bug-workaround  -mno-mul-bug-workaround}
488
489 @emph{CRX Options}
490 @gccoptlist{-mmac -mpush-args}
491
492 @emph{Darwin Options}
493 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
494 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
495 -client_name  -compatibility_version  -current_version @gol
496 -dead_strip @gol
497 -dependency-file  -dylib_file  -dylinker_install_name @gol
498 -dynamic  -dynamiclib  -exported_symbols_list @gol
499 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
500 -force_flat_namespace  -headerpad_max_install_names @gol
501 -iframework @gol
502 -image_base  -init  -install_name  -keep_private_externs @gol
503 -multi_module  -multiply_defined  -multiply_defined_unused @gol
504 -noall_load   -no_dead_strip_inits_and_terms @gol
505 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
506 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
507 -private_bundle  -read_only_relocs  -sectalign @gol
508 -sectobjectsymbols  -whyload  -seg1addr @gol
509 -sectcreate  -sectobjectsymbols  -sectorder @gol
510 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
511 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
512 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
513 -single_module  -static  -sub_library  -sub_umbrella @gol
514 -twolevel_namespace  -umbrella  -undefined @gol
515 -unexported_symbols_list  -weak_reference_mismatches @gol
516 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
517 -mkernel -mone-byte-bool}
518
519 @emph{DEC Alpha Options}
520 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
521 -mieee  -mieee-with-inexact  -mieee-conformant @gol
522 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
523 -mtrap-precision=@var{mode}  -mbuild-constants @gol
524 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
525 -mbwx  -mmax  -mfix  -mcix @gol
526 -mfloat-vax  -mfloat-ieee @gol
527 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
528 -msmall-text  -mlarge-text @gol
529 -mmemory-latency=@var{time}}
530
531 @emph{DEC Alpha/VMS Options}
532 @gccoptlist{-mvms-return-codes}
533
534 @emph{FR30 Options}
535 @gccoptlist{-msmall-model -mno-lsim}
536
537 @emph{FRV Options}
538 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
539 -mhard-float  -msoft-float @gol
540 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
541 -mdouble  -mno-double @gol
542 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
543 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
544 -mlinked-fp  -mlong-calls  -malign-labels @gol
545 -mlibrary-pic  -macc-4  -macc-8 @gol
546 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
547 -moptimize-membar -mno-optimize-membar @gol
548 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
549 -mvliw-branch  -mno-vliw-branch @gol
550 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
551 -mno-nested-cond-exec  -mtomcat-stats @gol
552 -mTLS -mtls @gol
553 -mcpu=@var{cpu}}
554
555 @emph{GNU/Linux Options}
556 @gccoptlist{-muclibc}
557
558 @emph{H8/300 Options}
559 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
560
561 @emph{HPPA Options}
562 @gccoptlist{-march=@var{architecture-type} @gol
563 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
564 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
565 -mfixed-range=@var{register-range} @gol
566 -mjump-in-delay -mlinker-opt -mlong-calls @gol
567 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
568 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
569 -mno-jump-in-delay  -mno-long-load-store @gol
570 -mno-portable-runtime  -mno-soft-float @gol
571 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
572 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
573 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
574 -munix=@var{unix-std}  -nolibdld  -static  -threads}
575
576 @emph{i386 and x86-64 Options}
577 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
578 -mfpmath=@var{unit} @gol
579 -masm=@var{dialect}  -mno-fancy-math-387 @gol
580 -mno-fp-ret-in-387  -msoft-float @gol
581 -mno-wide-multiply  -mrtd  -malign-double @gol
582 -mpreferred-stack-boundary=@var{num}
583 -mincoming-stack-boundary=@var{num}
584 -mcld -mcx16 -msahf -mmovbe -mcrc32 -mrecip @gol
585 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 -mavx @gol
586 -maes -mpclmul @gol
587 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
588 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
589 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
590 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
591 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
592 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
593 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
594 -mcmodel=@var{code-model} -mabi=@var{name} @gol
595 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
596 -mfused-madd -mno-fused-madd -msse2avx}
597
598 @emph{IA-64 Options}
599 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
600 -mvolatile-asm-stop  -mregister-names  -msdata -mno-sdata @gol
601 -mconstant-gp  -mauto-pic  -mfused-madd @gol
602 -minline-float-divide-min-latency @gol
603 -minline-float-divide-max-throughput @gol
604 -mno-inline-float-divide @gol
605 -minline-int-divide-min-latency @gol
606 -minline-int-divide-max-throughput  @gol
607 -mno-inline-int-divide @gol
608 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
609 -mno-inline-sqrt @gol
610 -mdwarf2-asm -mearly-stop-bits @gol
611 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
612 -mtune=@var{cpu-type} -milp32 -mlp64 @gol
613 -msched-br-data-spec -msched-ar-data-spec -msched-control-spec @gol
614 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
615 -msched-spec-ldc -msched-spec-control-ldc @gol
616 -msched-prefer-non-data-spec-insns -msched-prefer-non-control-spec-insns @gol
617 -msched-stop-bits-after-every-cycle -msched-count-spec-in-critical-path @gol
618 -msel-sched-dont-check-control-spec -msched-fp-mem-deps-zero-cost @gol
619 -msched-max-memory-insns-hard-limit -msched-max-memory-insns=@var{max-insns}}
620
621 @emph{M32R/D Options}
622 @gccoptlist{-m32r2 -m32rx -m32r @gol
623 -mdebug @gol
624 -malign-loops -mno-align-loops @gol
625 -missue-rate=@var{number} @gol
626 -mbranch-cost=@var{number} @gol
627 -mmodel=@var{code-size-model-type} @gol
628 -msdata=@var{sdata-type} @gol
629 -mno-flush-func -mflush-func=@var{name} @gol
630 -mno-flush-trap -mflush-trap=@var{number} @gol
631 -G @var{num}}
632
633 @emph{M32C Options}
634 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
635
636 @emph{M680x0 Options}
637 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
638 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
639 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
640 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
641 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
642 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
643 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
644 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
645 -mxgot -mno-xgot}
646
647 @emph{M68hc1x Options}
648 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
649 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
650 -msoft-reg-count=@var{count}}
651
652 @emph{MCore Options}
653 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
654 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
655 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
656 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
657 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
658
659 @emph{MeP Options}
660 @gccoptlist{-mabsdiff -mall-opts -maverage -mbased=@var{n} -mbitops @gol
661 -mc=@var{n} -mclip -mconfig=@var{name} -mcop -mcop32 -mcop64 -mivc2 @gol
662 -mdc -mdiv -meb -mel -mio-volatile -ml -mleadz -mm -mminmax @gol
663 -mmult -mno-opts -mrepeat -ms -msatur -msdram -msim -msimnovec -mtf @gol
664 -mtiny=@var{n}}
665
666 @emph{MIPS Options}
667 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
668 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2 @gol
669 -mips64  -mips64r2 @gol
670 -mips16  -mno-mips16  -mflip-mips16 @gol
671 -minterlink-mips16  -mno-interlink-mips16 @gol
672 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
673 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
674 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
675 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
676 -mfpu=@var{fpu-type} @gol
677 -msmartmips  -mno-smartmips @gol
678 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
679 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
680 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
681 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
682 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
683 -membedded-data  -mno-embedded-data @gol
684 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
685 -mcode-readable=@var{setting} @gol
686 -msplit-addresses  -mno-split-addresses @gol
687 -mexplicit-relocs  -mno-explicit-relocs @gol
688 -mcheck-zero-division  -mno-check-zero-division @gol
689 -mdivide-traps  -mdivide-breaks @gol
690 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
691 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
692 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
693 -mfix-r10000 -mno-fix-r10000  -mfix-vr4120  -mno-fix-vr4120 @gol
694 -mfix-vr4130  -mno-fix-vr4130  -mfix-sb1  -mno-fix-sb1 @gol
695 -mflush-func=@var{func}  -mno-flush-func @gol
696 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
697 -mfp-exceptions -mno-fp-exceptions @gol
698 -mvr4130-align -mno-vr4130-align}
699
700 @emph{MMIX Options}
701 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
702 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
703 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
704 -mno-base-addresses  -msingle-exit  -mno-single-exit}
705
706 @emph{MN10300 Options}
707 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
708 -mam33  -mno-am33 @gol
709 -mam33-2  -mno-am33-2 @gol
710 -mreturn-pointer-on-d0 @gol
711 -mno-crt0  -mrelax}
712
713 @emph{PDP-11 Options}
714 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
715 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
716 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
717 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
718 -mbranch-expensive  -mbranch-cheap @gol
719 -msplit  -mno-split  -munix-asm  -mdec-asm}
720
721 @emph{picoChip Options}
722 @gccoptlist{-mae=@var{ae_type} -mvliw-lookahead=@var{N}
723 -msymbol-as-address -mno-inefficient-warnings}
724
725 @emph{PowerPC Options}
726 See RS/6000 and PowerPC Options.
727
728 @emph{RS/6000 and PowerPC Options}
729 @gccoptlist{-mcpu=@var{cpu-type} @gol
730 -mtune=@var{cpu-type} @gol
731 -mpower  -mno-power  -mpower2  -mno-power2 @gol
732 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
733 -maltivec  -mno-altivec @gol
734 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
735 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
736 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
737 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
738 -mnew-mnemonics  -mold-mnemonics @gol
739 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
740 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
741 -malign-power  -malign-natural @gol
742 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
743 -msingle-float -mdouble-float -msimple-fpu @gol
744 -mstring  -mno-string  -mupdate  -mno-update @gol
745 -mavoid-indexed-addresses  -mno-avoid-indexed-addresses @gol
746 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
747 -mstrict-align  -mno-strict-align  -mrelocatable @gol
748 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
749 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
750 -mdynamic-no-pic  -maltivec  -mswdiv @gol
751 -mprioritize-restricted-insns=@var{priority} @gol
752 -msched-costly-dep=@var{dependence_type} @gol
753 -minsert-sched-nops=@var{scheme} @gol
754 -mcall-sysv  -mcall-netbsd @gol
755 -maix-struct-return  -msvr4-struct-return @gol
756 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
757 -misel -mno-isel @gol
758 -misel=yes  -misel=no @gol
759 -mspe -mno-spe @gol
760 -mspe=yes  -mspe=no @gol
761 -mpaired @gol
762 -mgen-cell-microcode -mwarn-cell-microcode @gol
763 -mvrsave -mno-vrsave @gol
764 -mmulhw -mno-mulhw @gol
765 -mdlmzb -mno-dlmzb @gol
766 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
767 -mprototype  -mno-prototype @gol
768 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
769 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread}
770
771 @emph{S/390 and zSeries Options}
772 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
773 -mhard-float  -msoft-float  -mhard-dfp -mno-hard-dfp @gol
774 -mlong-double-64 -mlong-double-128 @gol
775 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
776 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
777 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
778 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
779 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
780
781 @emph{Score Options}
782 @gccoptlist{-meb -mel @gol
783 -mnhwloop @gol
784 -muls @gol
785 -mmac @gol
786 -mscore5 -mscore5u -mscore7 -mscore7d}
787
788 @emph{SH Options}
789 @gccoptlist{-m1  -m2  -m2e @gol
790 -m2a-nofpu -m2a-single-only -m2a-single -m2a @gol
791 -m3  -m3e @gol
792 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
793 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
794 -m5-64media  -m5-64media-nofpu @gol
795 -m5-32media  -m5-32media-nofpu @gol
796 -m5-compact  -m5-compact-nofpu @gol
797 -mb  -ml  -mdalign  -mrelax @gol
798 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
799 -mieee  -mbitops  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
800 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
801 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
802 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
803 -minvalid-symbols}
804
805 @emph{SPARC Options}
806 @gccoptlist{-mcpu=@var{cpu-type} @gol
807 -mtune=@var{cpu-type} @gol
808 -mcmodel=@var{code-model} @gol
809 -m32  -m64  -mapp-regs  -mno-app-regs @gol
810 -mfaster-structs  -mno-faster-structs @gol
811 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
812 -mhard-quad-float  -msoft-quad-float @gol
813 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
814 -mstack-bias  -mno-stack-bias @gol
815 -munaligned-doubles  -mno-unaligned-doubles @gol
816 -mv8plus  -mno-v8plus  -mvis  -mno-vis
817 -threads -pthreads -pthread}
818
819 @emph{SPU Options}
820 @gccoptlist{-mwarn-reloc -merror-reloc @gol
821 -msafe-dma -munsafe-dma @gol
822 -mbranch-hints @gol
823 -msmall-mem -mlarge-mem -mstdmain @gol
824 -mfixed-range=@var{register-range}}
825
826 @emph{System V Options}
827 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
828
829 @emph{V850 Options}
830 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
831 -mprolog-function  -mno-prolog-function  -mspace @gol
832 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
833 -mapp-regs  -mno-app-regs @gol
834 -mdisable-callt  -mno-disable-callt @gol
835 -mv850e1 @gol
836 -mv850e @gol
837 -mv850  -mbig-switch}
838
839 @emph{VAX Options}
840 @gccoptlist{-mg  -mgnu  -munix}
841
842 @emph{VxWorks Options}
843 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
844 -Xbind-lazy  -Xbind-now}
845
846 @emph{x86-64 Options}
847 See i386 and x86-64 Options.
848
849 @emph{i386 and x86-64 Windows Options}
850 @gccoptlist{-mconsole -mcygwin -mno-cygwin -mdll
851 -mnop-fun-dllimport -mthread -municode -mwin32 -mwindows}
852
853 @emph{Xstormy16 Options}
854 @gccoptlist{-msim}
855
856 @emph{Xtensa Options}
857 @gccoptlist{-mconst16 -mno-const16 @gol
858 -mfused-madd  -mno-fused-madd @gol
859 -mserialize-volatile  -mno-serialize-volatile @gol
860 -mtext-section-literals  -mno-text-section-literals @gol
861 -mtarget-align  -mno-target-align @gol
862 -mlongcalls  -mno-longcalls}
863
864 @emph{zSeries Options}
865 See S/390 and zSeries Options.
866
867 @item Code Generation Options
868 @xref{Code Gen Options,,Options for Code Generation Conventions}.
869 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
870 -ffixed-@var{reg}  -fexceptions @gol
871 -fnon-call-exceptions  -funwind-tables @gol
872 -fasynchronous-unwind-tables @gol
873 -finhibit-size-directive  -finstrument-functions @gol
874 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
875 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
876 -fno-common  -fno-ident @gol
877 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
878 -fno-jump-tables @gol
879 -frecord-gcc-switches @gol
880 -freg-struct-return  -fshort-enums @gol
881 -fshort-double  -fshort-wchar @gol
882 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
883 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
884 -fno-stack-limit  -fargument-alias  -fargument-noalias @gol
885 -fargument-noalias-global  -fargument-noalias-anything @gol
886 -fleading-underscore  -ftls-model=@var{model} @gol
887 -ftrapv  -fwrapv  -fbounds-check @gol
888 -fvisibility}
889 @end table
890
891 @menu
892 * Overall Options::     Controlling the kind of output:
893                         an executable, object files, assembler files,
894                         or preprocessed source.
895 * C Dialect Options::   Controlling the variant of C language compiled.
896 * C++ Dialect Options:: Variations on C++.
897 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
898                         and Objective-C++.
899 * Language Independent Options:: Controlling how diagnostics should be
900                         formatted.
901 * Warning Options::     How picky should the compiler be?
902 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
903 * Optimize Options::    How much optimization?
904 * Preprocessor Options:: Controlling header files and macro definitions.
905                          Also, getting dependency information for Make.
906 * Assembler Options::   Passing options to the assembler.
907 * Link Options::        Specifying libraries and so on.
908 * Directory Options::   Where to find header files and libraries.
909                         Where to find the compiler executable files.
910 * Spec Files::          How to pass switches to sub-processes.
911 * Target Options::      Running a cross-compiler, or an old version of GCC.
912 @end menu
913
914 @node Overall Options
915 @section Options Controlling the Kind of Output
916
917 Compilation can involve up to four stages: preprocessing, compilation
918 proper, assembly and linking, always in that order.  GCC is capable of
919 preprocessing and compiling several files either into several
920 assembler input files, or into one assembler input file; then each
921 assembler input file produces an object file, and linking combines all
922 the object files (those newly compiled, and those specified as input)
923 into an executable file.
924
925 @cindex file name suffix
926 For any given input file, the file name suffix determines what kind of
927 compilation is done:
928
929 @table @gcctabopt
930 @item @var{file}.c
931 C source code which must be preprocessed.
932
933 @item @var{file}.i
934 C source code which should not be preprocessed.
935
936 @item @var{file}.ii
937 C++ source code which should not be preprocessed.
938
939 @item @var{file}.m
940 Objective-C source code.  Note that you must link with the @file{libobjc}
941 library to make an Objective-C program work.
942
943 @item @var{file}.mi
944 Objective-C source code which should not be preprocessed.
945
946 @item @var{file}.mm
947 @itemx @var{file}.M
948 Objective-C++ source code.  Note that you must link with the @file{libobjc}
949 library to make an Objective-C++ program work.  Note that @samp{.M} refers
950 to a literal capital M@.
951
952 @item @var{file}.mii
953 Objective-C++ source code which should not be preprocessed.
954
955 @item @var{file}.h
956 C, C++, Objective-C or Objective-C++ header file to be turned into a
957 precompiled header.
958
959 @item @var{file}.cc
960 @itemx @var{file}.cp
961 @itemx @var{file}.cxx
962 @itemx @var{file}.cpp
963 @itemx @var{file}.CPP
964 @itemx @var{file}.c++
965 @itemx @var{file}.C
966 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
967 the last two letters must both be literally @samp{x}.  Likewise,
968 @samp{.C} refers to a literal capital C@.
969
970 @item @var{file}.mm
971 @itemx @var{file}.M
972 Objective-C++ source code which must be preprocessed.
973
974 @item @var{file}.mii
975 Objective-C++ source code which should not be preprocessed.
976
977 @item @var{file}.hh
978 @itemx @var{file}.H
979 @itemx @var{file}.hp
980 @itemx @var{file}.hxx
981 @itemx @var{file}.hpp
982 @itemx @var{file}.HPP
983 @itemx @var{file}.h++
984 @itemx @var{file}.tcc
985 C++ header file to be turned into a precompiled header.
986
987 @item @var{file}.f
988 @itemx @var{file}.for
989 @itemx @var{file}.ftn
990 Fixed form Fortran source code which should not be preprocessed.
991
992 @item @var{file}.F
993 @itemx @var{file}.FOR
994 @itemx @var{file}.fpp
995 @itemx @var{file}.FPP
996 @itemx @var{file}.FTN
997 Fixed form Fortran source code which must be preprocessed (with the traditional
998 preprocessor).
999
1000 @item @var{file}.f90
1001 @itemx @var{file}.f95
1002 @itemx @var{file}.f03
1003 @itemx @var{file}.f08
1004 Free form Fortran source code which should not be preprocessed.
1005
1006 @item @var{file}.F90
1007 @itemx @var{file}.F95
1008 @itemx @var{file}.F03
1009 @itemx @var{file}.F08
1010 Free form Fortran source code which must be preprocessed (with the
1011 traditional preprocessor).
1012
1013 @c FIXME: Descriptions of Java file types.
1014 @c @var{file}.java
1015 @c @var{file}.class
1016 @c @var{file}.zip
1017 @c @var{file}.jar
1018
1019 @item @var{file}.ads
1020 Ada source code file which contains a library unit declaration (a
1021 declaration of a package, subprogram, or generic, or a generic
1022 instantiation), or a library unit renaming declaration (a package,
1023 generic, or subprogram renaming declaration).  Such files are also
1024 called @dfn{specs}.
1025
1026 @item @var{file}.adb
1027 Ada source code file containing a library unit body (a subprogram or
1028 package body).  Such files are also called @dfn{bodies}.
1029
1030 @c GCC also knows about some suffixes for languages not yet included:
1031 @c Pascal:
1032 @c @var{file}.p
1033 @c @var{file}.pas
1034 @c Ratfor:
1035 @c @var{file}.r
1036
1037 @item @var{file}.s
1038 Assembler code.
1039
1040 @item @var{file}.S
1041 @itemx @var{file}.sx
1042 Assembler code which must be preprocessed.
1043
1044 @item @var{other}
1045 An object file to be fed straight into linking.
1046 Any file name with no recognized suffix is treated this way.
1047 @end table
1048
1049 @opindex x
1050 You can specify the input language explicitly with the @option{-x} option:
1051
1052 @table @gcctabopt
1053 @item -x @var{language}
1054 Specify explicitly the @var{language} for the following input files
1055 (rather than letting the compiler choose a default based on the file
1056 name suffix).  This option applies to all following input files until
1057 the next @option{-x} option.  Possible values for @var{language} are:
1058 @smallexample
1059 c  c-header  c-cpp-output
1060 c++  c++-header  c++-cpp-output
1061 objective-c  objective-c-header  objective-c-cpp-output
1062 objective-c++ objective-c++-header objective-c++-cpp-output
1063 assembler  assembler-with-cpp
1064 ada
1065 f77  f77-cpp-input f95  f95-cpp-input
1066 java
1067 @end smallexample
1068
1069 @item -x none
1070 Turn off any specification of a language, so that subsequent files are
1071 handled according to their file name suffixes (as they are if @option{-x}
1072 has not been used at all).
1073
1074 @item -pass-exit-codes
1075 @opindex pass-exit-codes
1076 Normally the @command{gcc} program will exit with the code of 1 if any
1077 phase of the compiler returns a non-success return code.  If you specify
1078 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1079 numerically highest error produced by any phase that returned an error
1080 indication.  The C, C++, and Fortran frontends return 4, if an internal
1081 compiler error is encountered.
1082 @end table
1083
1084 If you only want some of the stages of compilation, you can use
1085 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1086 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1087 @command{gcc} is to stop.  Note that some combinations (for example,
1088 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1089
1090 @table @gcctabopt
1091 @item -c
1092 @opindex c
1093 Compile or assemble the source files, but do not link.  The linking
1094 stage simply is not done.  The ultimate output is in the form of an
1095 object file for each source file.
1096
1097 By default, the object file name for a source file is made by replacing
1098 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1099
1100 Unrecognized input files, not requiring compilation or assembly, are
1101 ignored.
1102
1103 @item -S
1104 @opindex S
1105 Stop after the stage of compilation proper; do not assemble.  The output
1106 is in the form of an assembler code file for each non-assembler input
1107 file specified.
1108
1109 By default, the assembler file name for a source file is made by
1110 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1111
1112 Input files that don't require compilation are ignored.
1113
1114 @item -E
1115 @opindex E
1116 Stop after the preprocessing stage; do not run the compiler proper.  The
1117 output is in the form of preprocessed source code, which is sent to the
1118 standard output.
1119
1120 Input files which don't require preprocessing are ignored.
1121
1122 @cindex output file option
1123 @item -o @var{file}
1124 @opindex o
1125 Place output in file @var{file}.  This applies regardless to whatever
1126 sort of output is being produced, whether it be an executable file,
1127 an object file, an assembler file or preprocessed C code.
1128
1129 If @option{-o} is not specified, the default is to put an executable
1130 file in @file{a.out}, the object file for
1131 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1132 assembler file in @file{@var{source}.s}, a precompiled header file in
1133 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1134 standard output.
1135
1136 @item -v
1137 @opindex v
1138 Print (on standard error output) the commands executed to run the stages
1139 of compilation.  Also print the version number of the compiler driver
1140 program and of the preprocessor and the compiler proper.
1141
1142 @item -###
1143 @opindex ###
1144 Like @option{-v} except the commands are not executed and all command
1145 arguments are quoted.  This is useful for shell scripts to capture the
1146 driver-generated command lines.
1147
1148 @item -pipe
1149 @opindex pipe
1150 Use pipes rather than temporary files for communication between the
1151 various stages of compilation.  This fails to work on some systems where
1152 the assembler is unable to read from a pipe; but the GNU assembler has
1153 no trouble.
1154
1155 @item -combine
1156 @opindex combine
1157 If you are compiling multiple source files, this option tells the driver
1158 to pass all the source files to the compiler at once (for those
1159 languages for which the compiler can handle this).  This will allow
1160 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1161 language for which this is supported is C@.  If you pass source files for
1162 multiple languages to the driver, using this option, the driver will invoke
1163 the compiler(s) that support IMA once each, passing each compiler all the
1164 source files appropriate for it.  For those languages that do not support
1165 IMA this option will be ignored, and the compiler will be invoked once for
1166 each source file in that language.  If you use this option in conjunction
1167 with @option{-save-temps}, the compiler will generate multiple
1168 pre-processed files
1169 (one for each source file), but only one (combined) @file{.o} or
1170 @file{.s} file.
1171
1172 @item --help
1173 @opindex help
1174 Print (on the standard output) a description of the command line options
1175 understood by @command{gcc}.  If the @option{-v} option is also specified
1176 then @option{--help} will also be passed on to the various processes
1177 invoked by @command{gcc}, so that they can display the command line options
1178 they accept.  If the @option{-Wextra} option has also been specified
1179 (prior to the @option{--help} option), then command line options which
1180 have no documentation associated with them will also be displayed.
1181
1182 @item --target-help
1183 @opindex target-help
1184 Print (on the standard output) a description of target-specific command
1185 line options for each tool.  For some targets extra target-specific
1186 information may also be printed.
1187
1188 @item --help=@{@var{class}@r{|[}^@r{]}@var{qualifier}@}@r{[},@dots{}@r{]}
1189 Print (on the standard output) a description of the command line
1190 options understood by the compiler that fit into all specified classes
1191 and qualifiers.  These are the supported classes:
1192
1193 @table @asis
1194 @item @samp{optimizers}
1195 This will display all of the optimization options supported by the
1196 compiler.
1197
1198 @item @samp{warnings}
1199 This will display all of the options controlling warning messages
1200 produced by the compiler.
1201
1202 @item @samp{target}
1203 This will display target-specific options.  Unlike the
1204 @option{--target-help} option however, target-specific options of the
1205 linker and assembler will not be displayed.  This is because those
1206 tools do not currently support the extended @option{--help=} syntax.
1207
1208 @item @samp{params}
1209 This will display the values recognized by the @option{--param}
1210 option.
1211
1212 @item @var{language}
1213 This will display the options supported for @var{language}, where 
1214 @var{language} is the name of one of the languages supported in this 
1215 version of GCC.
1216
1217 @item @samp{common}
1218 This will display the options that are common to all languages.
1219 @end table
1220
1221 These are the supported qualifiers:
1222
1223 @table @asis
1224 @item @samp{undocumented}
1225 Display only those options which are undocumented.
1226
1227 @item @samp{joined}
1228 Display options which take an argument that appears after an equal
1229 sign in the same continuous piece of text, such as:
1230 @samp{--help=target}.
1231
1232 @item @samp{separate}
1233 Display options which take an argument that appears as a separate word
1234 following the original option, such as: @samp{-o output-file}.
1235 @end table
1236
1237 Thus for example to display all the undocumented target-specific
1238 switches supported by the compiler the following can be used:
1239
1240 @smallexample
1241 --help=target,undocumented
1242 @end smallexample
1243
1244 The sense of a qualifier can be inverted by prefixing it with the
1245 @samp{^} character, so for example to display all binary warning
1246 options (i.e., ones that are either on or off and that do not take an
1247 argument), which have a description the following can be used:
1248
1249 @smallexample
1250 --help=warnings,^joined,^undocumented
1251 @end smallexample
1252
1253 The argument to @option{--help=} should not consist solely of inverted
1254 qualifiers.
1255
1256 Combining several classes is possible, although this usually
1257 restricts the output by so much that there is nothing to display.  One
1258 case where it does work however is when one of the classes is
1259 @var{target}.  So for example to display all the target-specific
1260 optimization options the following can be used:
1261
1262 @smallexample
1263 --help=target,optimizers
1264 @end smallexample
1265
1266 The @option{--help=} option can be repeated on the command line.  Each
1267 successive use will display its requested class of options, skipping
1268 those that have already been displayed.
1269
1270 If the @option{-Q} option appears on the command line before the
1271 @option{--help=} option, then the descriptive text displayed by
1272 @option{--help=} is changed.  Instead of describing the displayed
1273 options, an indication is given as to whether the option is enabled,
1274 disabled or set to a specific value (assuming that the compiler
1275 knows this at the point where the @option{--help=} option is used).
1276
1277 Here is a truncated example from the ARM port of @command{gcc}:
1278
1279 @smallexample
1280   % gcc -Q -mabi=2 --help=target -c
1281   The following options are target specific:
1282   -mabi=                                2
1283   -mabort-on-noreturn                   [disabled]
1284   -mapcs                                [disabled]
1285 @end smallexample
1286
1287 The output is sensitive to the effects of previous command line
1288 options, so for example it is possible to find out which optimizations
1289 are enabled at @option{-O2} by using:
1290
1291 @smallexample
1292 -Q -O2 --help=optimizers
1293 @end smallexample
1294
1295 Alternatively you can discover which binary optimizations are enabled
1296 by @option{-O3} by using:
1297
1298 @smallexample
1299 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1300 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1301 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1302 @end smallexample
1303
1304 @item --version
1305 @opindex version
1306 Display the version number and copyrights of the invoked GCC@.
1307
1308 @item -wrapper
1309 @opindex wrapper
1310 Invoke all subcommands under a wrapper program. It takes a single
1311 comma separated list as an argument, which will be used to invoke
1312 the wrapper:
1313
1314 @smallexample
1315 gcc -c t.c -wrapper gdb,--args
1316 @end smallexample
1317
1318 This will invoke all subprograms of gcc under "gdb --args",
1319 thus cc1 invocation will be "gdb --args cc1 ...".
1320
1321 @item -fplugin=@var{name}.so
1322 Load the plugin code in file @var{name}.so, assumed to be a
1323 shared object to be dlopen'd by the compiler.  The base name of
1324 the shared object file is used to identify the plugin for the
1325 purposes of argument parsing (See
1326 @option{-fplugin-arg-@var{name}-@var{key}=@var{value}} below).
1327 Each plugin should define the callback functions specified in the
1328 Plugins API.
1329
1330 @item -fplugin-arg-@var{name}-@var{key}=@var{value}
1331 Define an argument called @var{key} with a value of @var{value}
1332 for the plugin called @var{name}.
1333
1334 @include @value{srcdir}/../libiberty/at-file.texi
1335 @end table
1336
1337 @node Invoking G++
1338 @section Compiling C++ Programs
1339
1340 @cindex suffixes for C++ source
1341 @cindex C++ source file suffixes
1342 C++ source files conventionally use one of the suffixes @samp{.C},
1343 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1344 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1345 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1346 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1347 files with these names and compiles them as C++ programs even if you
1348 call the compiler the same way as for compiling C programs (usually
1349 with the name @command{gcc}).
1350
1351 @findex g++
1352 @findex c++
1353 However, the use of @command{gcc} does not add the C++ library.
1354 @command{g++} is a program that calls GCC and treats @samp{.c},
1355 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1356 files unless @option{-x} is used, and automatically specifies linking
1357 against the C++ library.  This program is also useful when
1358 precompiling a C header file with a @samp{.h} extension for use in C++
1359 compilations.  On many systems, @command{g++} is also installed with
1360 the name @command{c++}.
1361
1362 @cindex invoking @command{g++}
1363 When you compile C++ programs, you may specify many of the same
1364 command-line options that you use for compiling programs in any
1365 language; or command-line options meaningful for C and related
1366 languages; or options that are meaningful only for C++ programs.
1367 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1368 explanations of options for languages related to C@.
1369 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1370 explanations of options that are meaningful only for C++ programs.
1371
1372 @node C Dialect Options
1373 @section Options Controlling C Dialect
1374 @cindex dialect options
1375 @cindex language dialect options
1376 @cindex options, dialect
1377
1378 The following options control the dialect of C (or languages derived
1379 from C, such as C++, Objective-C and Objective-C++) that the compiler
1380 accepts:
1381
1382 @table @gcctabopt
1383 @cindex ANSI support
1384 @cindex ISO support
1385 @item -ansi
1386 @opindex ansi
1387 In C mode, this is equivalent to @samp{-std=c89}. In C++ mode, it is
1388 equivalent to @samp{-std=c++98}.
1389
1390 This turns off certain features of GCC that are incompatible with ISO
1391 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1392 such as the @code{asm} and @code{typeof} keywords, and
1393 predefined macros such as @code{unix} and @code{vax} that identify the
1394 type of system you are using.  It also enables the undesirable and
1395 rarely used ISO trigraph feature.  For the C compiler,
1396 it disables recognition of C++ style @samp{//} comments as well as
1397 the @code{inline} keyword.
1398
1399 The alternate keywords @code{__asm__}, @code{__extension__},
1400 @code{__inline__} and @code{__typeof__} continue to work despite
1401 @option{-ansi}.  You would not want to use them in an ISO C program, of
1402 course, but it is useful to put them in header files that might be included
1403 in compilations done with @option{-ansi}.  Alternate predefined macros
1404 such as @code{__unix__} and @code{__vax__} are also available, with or
1405 without @option{-ansi}.
1406
1407 The @option{-ansi} option does not cause non-ISO programs to be
1408 rejected gratuitously.  For that, @option{-pedantic} is required in
1409 addition to @option{-ansi}.  @xref{Warning Options}.
1410
1411 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1412 option is used.  Some header files may notice this macro and refrain
1413 from declaring certain functions or defining certain macros that the
1414 ISO standard doesn't call for; this is to avoid interfering with any
1415 programs that might use these names for other things.
1416
1417 Functions that would normally be built in but do not have semantics
1418 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1419 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1420 built-in functions provided by GCC}, for details of the functions
1421 affected.
1422
1423 @item -std=
1424 @opindex std
1425 Determine the language standard. @xref{Standards,,Language Standards
1426 Supported by GCC}, for details of these standard versions.  This option
1427 is currently only supported when compiling C or C++. 
1428
1429 The compiler can accept several base standards, such as @samp{c89} or
1430 @samp{c++98}, and GNU dialects of those standards, such as
1431 @samp{gnu89} or @samp{gnu++98}.  By specifying a base standard, the
1432 compiler will accept all programs following that standard and those
1433 using GNU extensions that do not contradict it.  For example,
1434 @samp{-std=c89} turns off certain features of GCC that are
1435 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1436 keywords, but not other GNU extensions that do not have a meaning in
1437 ISO C90, such as omitting the middle term of a @code{?:}
1438 expression. On the other hand, by specifying a GNU dialect of a
1439 standard, all features the compiler support are enabled, even when
1440 those features change the meaning of the base standard and some
1441 strict-conforming programs may be rejected.  The particular standard
1442 is used by @option{-pedantic} to identify which features are GNU
1443 extensions given that version of the standard. For example
1444 @samp{-std=gnu89 -pedantic} would warn about C++ style @samp{//}
1445 comments, while @samp{-std=gnu99 -pedantic} would not.
1446
1447 A value for this option must be provided; possible values are
1448
1449 @table @samp
1450 @item c89
1451 @itemx iso9899:1990
1452 Support all ISO C90 programs (certain GNU extensions that conflict
1453 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1454
1455 @item iso9899:199409
1456 ISO C90 as modified in amendment 1.
1457
1458 @item c99
1459 @itemx c9x
1460 @itemx iso9899:1999
1461 @itemx iso9899:199x
1462 ISO C99.  Note that this standard is not yet fully supported; see
1463 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1464 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1465
1466 @item gnu89
1467 GNU dialect of ISO C90 (including some C99 features). This
1468 is the default for C code.
1469
1470 @item gnu99
1471 @itemx gnu9x
1472 GNU dialect of ISO C99.  When ISO C99 is fully implemented in GCC,
1473 this will become the default.  The name @samp{gnu9x} is deprecated.
1474
1475 @item c++98
1476 The 1998 ISO C++ standard plus amendments. Same as @option{-ansi} for
1477 C++ code.
1478
1479 @item gnu++98
1480 GNU dialect of @option{-std=c++98}.  This is the default for
1481 C++ code.
1482
1483 @item c++0x
1484 The working draft of the upcoming ISO C++0x standard. This option
1485 enables experimental features that are likely to be included in
1486 C++0x. The working draft is constantly changing, and any feature that is
1487 enabled by this flag may be removed from future versions of GCC if it is
1488 not part of the C++0x standard.
1489
1490 @item gnu++0x
1491 GNU dialect of @option{-std=c++0x}. This option enables
1492 experimental features that may be removed in future versions of GCC.
1493 @end table
1494
1495 @item -fgnu89-inline
1496 @opindex fgnu89-inline
1497 The option @option{-fgnu89-inline} tells GCC to use the traditional
1498 GNU semantics for @code{inline} functions when in C99 mode.
1499 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1500 is accepted and ignored by GCC versions 4.1.3 up to but not including
1501 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1502 C99 mode.  Using this option is roughly equivalent to adding the
1503 @code{gnu_inline} function attribute to all inline functions
1504 (@pxref{Function Attributes}).
1505
1506 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1507 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1508 specifies the default behavior).  This option was first supported in
1509 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1510
1511 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1512 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1513 in effect for @code{inline} functions.  @xref{Common Predefined
1514 Macros,,,cpp,The C Preprocessor}.
1515
1516 @item -aux-info @var{filename}
1517 @opindex aux-info
1518 Output to the given filename prototyped declarations for all functions
1519 declared and/or defined in a translation unit, including those in header
1520 files.  This option is silently ignored in any language other than C@.
1521
1522 Besides declarations, the file indicates, in comments, the origin of
1523 each declaration (source file and line), whether the declaration was
1524 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1525 @samp{O} for old, respectively, in the first character after the line
1526 number and the colon), and whether it came from a declaration or a
1527 definition (@samp{C} or @samp{F}, respectively, in the following
1528 character).  In the case of function definitions, a K&R-style list of
1529 arguments followed by their declarations is also provided, inside
1530 comments, after the declaration.
1531
1532 @item -fno-asm
1533 @opindex fno-asm
1534 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1535 keyword, so that code can use these words as identifiers.  You can use
1536 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1537 instead.  @option{-ansi} implies @option{-fno-asm}.
1538
1539 In C++, this switch only affects the @code{typeof} keyword, since
1540 @code{asm} and @code{inline} are standard keywords.  You may want to
1541 use the @option{-fno-gnu-keywords} flag instead, which has the same
1542 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1543 switch only affects the @code{asm} and @code{typeof} keywords, since
1544 @code{inline} is a standard keyword in ISO C99.
1545
1546 @item -fno-builtin
1547 @itemx -fno-builtin-@var{function}
1548 @opindex fno-builtin
1549 @cindex built-in functions
1550 Don't recognize built-in functions that do not begin with
1551 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1552 functions provided by GCC}, for details of the functions affected,
1553 including those which are not built-in functions when @option{-ansi} or
1554 @option{-std} options for strict ISO C conformance are used because they
1555 do not have an ISO standard meaning.
1556
1557 GCC normally generates special code to handle certain built-in functions
1558 more efficiently; for instance, calls to @code{alloca} may become single
1559 instructions that adjust the stack directly, and calls to @code{memcpy}
1560 may become inline copy loops.  The resulting code is often both smaller
1561 and faster, but since the function calls no longer appear as such, you
1562 cannot set a breakpoint on those calls, nor can you change the behavior
1563 of the functions by linking with a different library.  In addition,
1564 when a function is recognized as a built-in function, GCC may use
1565 information about that function to warn about problems with calls to
1566 that function, or to generate more efficient code, even if the
1567 resulting code still contains calls to that function.  For example,
1568 warnings are given with @option{-Wformat} for bad calls to
1569 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1570 known not to modify global memory.
1571
1572 With the @option{-fno-builtin-@var{function}} option
1573 only the built-in function @var{function} is
1574 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1575 function is named that is not built-in in this version of GCC, this
1576 option is ignored.  There is no corresponding
1577 @option{-fbuiltin-@var{function}} option; if you wish to enable
1578 built-in functions selectively when using @option{-fno-builtin} or
1579 @option{-ffreestanding}, you may define macros such as:
1580
1581 @smallexample
1582 #define abs(n)          __builtin_abs ((n))
1583 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1584 @end smallexample
1585
1586 @item -fhosted
1587 @opindex fhosted
1588 @cindex hosted environment
1589
1590 Assert that compilation takes place in a hosted environment.  This implies
1591 @option{-fbuiltin}.  A hosted environment is one in which the
1592 entire standard library is available, and in which @code{main} has a return
1593 type of @code{int}.  Examples are nearly everything except a kernel.
1594 This is equivalent to @option{-fno-freestanding}.
1595
1596 @item -ffreestanding
1597 @opindex ffreestanding
1598 @cindex hosted environment
1599
1600 Assert that compilation takes place in a freestanding environment.  This
1601 implies @option{-fno-builtin}.  A freestanding environment
1602 is one in which the standard library may not exist, and program startup may
1603 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1604 This is equivalent to @option{-fno-hosted}.
1605
1606 @xref{Standards,,Language Standards Supported by GCC}, for details of
1607 freestanding and hosted environments.
1608
1609 @item -fopenmp
1610 @opindex fopenmp
1611 @cindex openmp parallel
1612 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1613 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1614 compiler generates parallel code according to the OpenMP Application
1615 Program Interface v3.0 @w{@uref{http://www.openmp.org/}}.  This option
1616 implies @option{-pthread}, and thus is only supported on targets that
1617 have support for @option{-pthread}.
1618
1619 @item -fms-extensions
1620 @opindex fms-extensions
1621 Accept some non-standard constructs used in Microsoft header files.
1622
1623 Some cases of unnamed fields in structures and unions are only
1624 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1625 fields within structs/unions}, for details.
1626
1627 @item -trigraphs
1628 @opindex trigraphs
1629 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1630 options for strict ISO C conformance) implies @option{-trigraphs}.
1631
1632 @item -no-integrated-cpp
1633 @opindex no-integrated-cpp
1634 Performs a compilation in two passes: preprocessing and compiling.  This
1635 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1636 @option{-B} option.  The user supplied compilation step can then add in
1637 an additional preprocessing step after normal preprocessing but before
1638 compiling.  The default is to use the integrated cpp (internal cpp)
1639
1640 The semantics of this option will change if "cc1", "cc1plus", and
1641 "cc1obj" are merged.
1642
1643 @cindex traditional C language
1644 @cindex C language, traditional
1645 @item -traditional
1646 @itemx -traditional-cpp
1647 @opindex traditional-cpp
1648 @opindex traditional
1649 Formerly, these options caused GCC to attempt to emulate a pre-standard
1650 C compiler.  They are now only supported with the @option{-E} switch.
1651 The preprocessor continues to support a pre-standard mode.  See the GNU
1652 CPP manual for details.
1653
1654 @item -fcond-mismatch
1655 @opindex fcond-mismatch
1656 Allow conditional expressions with mismatched types in the second and
1657 third arguments.  The value of such an expression is void.  This option
1658 is not supported for C++.
1659
1660 @item -flax-vector-conversions
1661 @opindex flax-vector-conversions
1662 Allow implicit conversions between vectors with differing numbers of
1663 elements and/or incompatible element types.  This option should not be
1664 used for new code.
1665
1666 @item -funsigned-char
1667 @opindex funsigned-char
1668 Let the type @code{char} be unsigned, like @code{unsigned char}.
1669
1670 Each kind of machine has a default for what @code{char} should
1671 be.  It is either like @code{unsigned char} by default or like
1672 @code{signed char} by default.
1673
1674 Ideally, a portable program should always use @code{signed char} or
1675 @code{unsigned char} when it depends on the signedness of an object.
1676 But many programs have been written to use plain @code{char} and
1677 expect it to be signed, or expect it to be unsigned, depending on the
1678 machines they were written for.  This option, and its inverse, let you
1679 make such a program work with the opposite default.
1680
1681 The type @code{char} is always a distinct type from each of
1682 @code{signed char} or @code{unsigned char}, even though its behavior
1683 is always just like one of those two.
1684
1685 @item -fsigned-char
1686 @opindex fsigned-char
1687 Let the type @code{char} be signed, like @code{signed char}.
1688
1689 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1690 the negative form of @option{-funsigned-char}.  Likewise, the option
1691 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1692
1693 @item -fsigned-bitfields
1694 @itemx -funsigned-bitfields
1695 @itemx -fno-signed-bitfields
1696 @itemx -fno-unsigned-bitfields
1697 @opindex fsigned-bitfields
1698 @opindex funsigned-bitfields
1699 @opindex fno-signed-bitfields
1700 @opindex fno-unsigned-bitfields
1701 These options control whether a bit-field is signed or unsigned, when the
1702 declaration does not use either @code{signed} or @code{unsigned}.  By
1703 default, such a bit-field is signed, because this is consistent: the
1704 basic integer types such as @code{int} are signed types.
1705 @end table
1706
1707 @node C++ Dialect Options
1708 @section Options Controlling C++ Dialect
1709
1710 @cindex compiler options, C++
1711 @cindex C++ options, command line
1712 @cindex options, C++
1713 This section describes the command-line options that are only meaningful
1714 for C++ programs; but you can also use most of the GNU compiler options
1715 regardless of what language your program is in.  For example, you
1716 might compile a file @code{firstClass.C} like this:
1717
1718 @smallexample
1719 g++ -g -frepo -O -c firstClass.C
1720 @end smallexample
1721
1722 @noindent
1723 In this example, only @option{-frepo} is an option meant
1724 only for C++ programs; you can use the other options with any
1725 language supported by GCC@.
1726
1727 Here is a list of options that are @emph{only} for compiling C++ programs:
1728
1729 @table @gcctabopt
1730
1731 @item -fabi-version=@var{n}
1732 @opindex fabi-version
1733 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1734 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1735 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1736 the version that conforms most closely to the C++ ABI specification.
1737 Therefore, the ABI obtained using version 0 will change as ABI bugs
1738 are fixed.
1739
1740 The default is version 2.
1741
1742 @item -fno-access-control
1743 @opindex fno-access-control
1744 Turn off all access checking.  This switch is mainly useful for working
1745 around bugs in the access control code.
1746
1747 @item -fcheck-new
1748 @opindex fcheck-new
1749 Check that the pointer returned by @code{operator new} is non-null
1750 before attempting to modify the storage allocated.  This check is
1751 normally unnecessary because the C++ standard specifies that
1752 @code{operator new} will only return @code{0} if it is declared
1753 @samp{throw()}, in which case the compiler will always check the
1754 return value even without this option.  In all other cases, when
1755 @code{operator new} has a non-empty exception specification, memory
1756 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1757 @samp{new (nothrow)}.
1758
1759 @item -fconserve-space
1760 @opindex fconserve-space
1761 Put uninitialized or runtime-initialized global variables into the
1762 common segment, as C does.  This saves space in the executable at the
1763 cost of not diagnosing duplicate definitions.  If you compile with this
1764 flag and your program mysteriously crashes after @code{main()} has
1765 completed, you may have an object that is being destroyed twice because
1766 two definitions were merged.
1767
1768 This option is no longer useful on most targets, now that support has
1769 been added for putting variables into BSS without making them common.
1770
1771 @item -ffriend-injection
1772 @opindex ffriend-injection
1773 Inject friend functions into the enclosing namespace, so that they are
1774 visible outside the scope of the class in which they are declared.
1775 Friend functions were documented to work this way in the old Annotated
1776 C++ Reference Manual, and versions of G++ before 4.1 always worked
1777 that way.  However, in ISO C++ a friend function which is not declared
1778 in an enclosing scope can only be found using argument dependent
1779 lookup.  This option causes friends to be injected as they were in
1780 earlier releases.
1781
1782 This option is for compatibility, and may be removed in a future
1783 release of G++.
1784
1785 @item -fno-elide-constructors
1786 @opindex fno-elide-constructors
1787 The C++ standard allows an implementation to omit creating a temporary
1788 which is only used to initialize another object of the same type.
1789 Specifying this option disables that optimization, and forces G++ to
1790 call the copy constructor in all cases.
1791
1792 @item -fno-enforce-eh-specs
1793 @opindex fno-enforce-eh-specs
1794 Don't generate code to check for violation of exception specifications
1795 at runtime.  This option violates the C++ standard, but may be useful
1796 for reducing code size in production builds, much like defining
1797 @samp{NDEBUG}.  This does not give user code permission to throw
1798 exceptions in violation of the exception specifications; the compiler
1799 will still optimize based on the specifications, so throwing an
1800 unexpected exception will result in undefined behavior.
1801
1802 @item -ffor-scope
1803 @itemx -fno-for-scope
1804 @opindex ffor-scope
1805 @opindex fno-for-scope
1806 If @option{-ffor-scope} is specified, the scope of variables declared in
1807 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1808 as specified by the C++ standard.
1809 If @option{-fno-for-scope} is specified, the scope of variables declared in
1810 a @i{for-init-statement} extends to the end of the enclosing scope,
1811 as was the case in old versions of G++, and other (traditional)
1812 implementations of C++.
1813
1814 The default if neither flag is given to follow the standard,
1815 but to allow and give a warning for old-style code that would
1816 otherwise be invalid, or have different behavior.
1817
1818 @item -fno-gnu-keywords
1819 @opindex fno-gnu-keywords
1820 Do not recognize @code{typeof} as a keyword, so that code can use this
1821 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1822 @option{-ansi} implies @option{-fno-gnu-keywords}.
1823
1824 @item -fno-implicit-templates
1825 @opindex fno-implicit-templates
1826 Never emit code for non-inline templates which are instantiated
1827 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1828 @xref{Template Instantiation}, for more information.
1829
1830 @item -fno-implicit-inline-templates
1831 @opindex fno-implicit-inline-templates
1832 Don't emit code for implicit instantiations of inline templates, either.
1833 The default is to handle inlines differently so that compiles with and
1834 without optimization will need the same set of explicit instantiations.
1835
1836 @item -fno-implement-inlines
1837 @opindex fno-implement-inlines
1838 To save space, do not emit out-of-line copies of inline functions
1839 controlled by @samp{#pragma implementation}.  This will cause linker
1840 errors if these functions are not inlined everywhere they are called.
1841
1842 @item -fms-extensions
1843 @opindex fms-extensions
1844 Disable pedantic warnings about constructs used in MFC, such as implicit
1845 int and getting a pointer to member function via non-standard syntax.
1846
1847 @item -fno-nonansi-builtins
1848 @opindex fno-nonansi-builtins
1849 Disable built-in declarations of functions that are not mandated by
1850 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1851 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1852
1853 @item -fno-operator-names
1854 @opindex fno-operator-names
1855 Do not treat the operator name keywords @code{and}, @code{bitand},
1856 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1857 synonyms as keywords.
1858
1859 @item -fno-optional-diags
1860 @opindex fno-optional-diags
1861 Disable diagnostics that the standard says a compiler does not need to
1862 issue.  Currently, the only such diagnostic issued by G++ is the one for
1863 a name having multiple meanings within a class.
1864
1865 @item -fpermissive
1866 @opindex fpermissive
1867 Downgrade some diagnostics about nonconformant code from errors to
1868 warnings.  Thus, using @option{-fpermissive} will allow some
1869 nonconforming code to compile.
1870
1871 @item -fno-pretty-templates
1872 @opindex fno-pretty-templates
1873 When an error message refers to a specialization of a function
1874 template, the compiler will normally print the signature of the
1875 template followed by the template arguments and any typedefs or
1876 typenames in the signature (e.g. @code{void f(T) [with T = int]}
1877 rather than @code{void f(int)}) so that it's clear which template is
1878 involved.  When an error message refers to a specialization of a class
1879 template, the compiler will omit any template arguments which match
1880 the default template arguments for that template.  If either of these
1881 behaviors make it harder to understand the error message rather than
1882 easier, using @option{-fno-pretty-templates} will disable them.
1883
1884 @item -frepo
1885 @opindex frepo
1886 Enable automatic template instantiation at link time.  This option also
1887 implies @option{-fno-implicit-templates}.  @xref{Template
1888 Instantiation}, for more information.
1889
1890 @item -fno-rtti
1891 @opindex fno-rtti
1892 Disable generation of information about every class with virtual
1893 functions for use by the C++ runtime type identification features
1894 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1895 of the language, you can save some space by using this flag.  Note that
1896 exception handling uses the same information, but it will generate it as
1897 needed. The @samp{dynamic_cast} operator can still be used for casts that
1898 do not require runtime type information, i.e.@: casts to @code{void *} or to
1899 unambiguous base classes.
1900
1901 @item -fstats
1902 @opindex fstats
1903 Emit statistics about front-end processing at the end of the compilation.
1904 This information is generally only useful to the G++ development team.
1905
1906 @item -ftemplate-depth-@var{n}
1907 @opindex ftemplate-depth
1908 Set the maximum instantiation depth for template classes to @var{n}.
1909 A limit on the template instantiation depth is needed to detect
1910 endless recursions during template class instantiation.  ANSI/ISO C++
1911 conforming programs must not rely on a maximum depth greater than 17.
1912
1913 @item -fno-threadsafe-statics
1914 @opindex fno-threadsafe-statics
1915 Do not emit the extra code to use the routines specified in the C++
1916 ABI for thread-safe initialization of local statics.  You can use this
1917 option to reduce code size slightly in code that doesn't need to be
1918 thread-safe.
1919
1920 @item -fuse-cxa-atexit
1921 @opindex fuse-cxa-atexit
1922 Register destructors for objects with static storage duration with the
1923 @code{__cxa_atexit} function rather than the @code{atexit} function.
1924 This option is required for fully standards-compliant handling of static
1925 destructors, but will only work if your C library supports
1926 @code{__cxa_atexit}.
1927
1928 @item -fno-use-cxa-get-exception-ptr
1929 @opindex fno-use-cxa-get-exception-ptr
1930 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1931 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1932 if the runtime routine is not available.
1933
1934 @item -fvisibility-inlines-hidden
1935 @opindex fvisibility-inlines-hidden
1936 This switch declares that the user does not attempt to compare
1937 pointers to inline methods where the addresses of the two functions
1938 were taken in different shared objects.
1939
1940 The effect of this is that GCC may, effectively, mark inline methods with
1941 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1942 appear in the export table of a DSO and do not require a PLT indirection
1943 when used within the DSO@.  Enabling this option can have a dramatic effect
1944 on load and link times of a DSO as it massively reduces the size of the
1945 dynamic export table when the library makes heavy use of templates.
1946
1947 The behavior of this switch is not quite the same as marking the
1948 methods as hidden directly, because it does not affect static variables
1949 local to the function or cause the compiler to deduce that
1950 the function is defined in only one shared object.
1951
1952 You may mark a method as having a visibility explicitly to negate the
1953 effect of the switch for that method.  For example, if you do want to
1954 compare pointers to a particular inline method, you might mark it as
1955 having default visibility.  Marking the enclosing class with explicit
1956 visibility will have no effect.
1957
1958 Explicitly instantiated inline methods are unaffected by this option
1959 as their linkage might otherwise cross a shared library boundary.
1960 @xref{Template Instantiation}.
1961
1962 @item -fvisibility-ms-compat
1963 @opindex fvisibility-ms-compat
1964 This flag attempts to use visibility settings to make GCC's C++
1965 linkage model compatible with that of Microsoft Visual Studio.
1966
1967 The flag makes these changes to GCC's linkage model:
1968
1969 @enumerate
1970 @item
1971 It sets the default visibility to @code{hidden}, like
1972 @option{-fvisibility=hidden}.
1973
1974 @item
1975 Types, but not their members, are not hidden by default.
1976
1977 @item
1978 The One Definition Rule is relaxed for types without explicit
1979 visibility specifications which are defined in more than one different
1980 shared object: those declarations are permitted if they would have
1981 been permitted when this option was not used.
1982 @end enumerate
1983
1984 In new code it is better to use @option{-fvisibility=hidden} and
1985 export those classes which are intended to be externally visible.
1986 Unfortunately it is possible for code to rely, perhaps accidentally,
1987 on the Visual Studio behavior.
1988
1989 Among the consequences of these changes are that static data members
1990 of the same type with the same name but defined in different shared
1991 objects will be different, so changing one will not change the other;
1992 and that pointers to function members defined in different shared
1993 objects may not compare equal.  When this flag is given, it is a
1994 violation of the ODR to define types with the same name differently.
1995
1996 @item -fno-weak
1997 @opindex fno-weak
1998 Do not use weak symbol support, even if it is provided by the linker.
1999 By default, G++ will use weak symbols if they are available.  This
2000 option exists only for testing, and should not be used by end-users;
2001 it will result in inferior code and has no benefits.  This option may
2002 be removed in a future release of G++.
2003
2004 @item -nostdinc++
2005 @opindex nostdinc++
2006 Do not search for header files in the standard directories specific to
2007 C++, but do still search the other standard directories.  (This option
2008 is used when building the C++ library.)
2009 @end table
2010
2011 In addition, these optimization, warning, and code generation options
2012 have meanings only for C++ programs:
2013
2014 @table @gcctabopt
2015 @item -fno-default-inline
2016 @opindex fno-default-inline
2017 Do not assume @samp{inline} for functions defined inside a class scope.
2018 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
2019 functions will have linkage like inline functions; they just won't be
2020 inlined by default.
2021
2022 @item -Wabi @r{(C, Objective-C, C++ and Objective-C++ only)}
2023 @opindex Wabi
2024 @opindex Wno-abi
2025 Warn when G++ generates code that is probably not compatible with the
2026 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
2027 all such cases, there are probably some cases that are not warned about,
2028 even though G++ is generating incompatible code.  There may also be
2029 cases where warnings are emitted even though the code that is generated
2030 will be compatible.
2031
2032 You should rewrite your code to avoid these warnings if you are
2033 concerned about the fact that code generated by G++ may not be binary
2034 compatible with code generated by other compilers.
2035
2036 The known incompatibilities at this point include:
2037
2038 @itemize @bullet
2039
2040 @item
2041 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
2042 pack data into the same byte as a base class.  For example:
2043
2044 @smallexample
2045 struct A @{ virtual void f(); int f1 : 1; @};
2046 struct B : public A @{ int f2 : 1; @};
2047 @end smallexample
2048
2049 @noindent
2050 In this case, G++ will place @code{B::f2} into the same byte
2051 as@code{A::f1}; other compilers will not.  You can avoid this problem
2052 by explicitly padding @code{A} so that its size is a multiple of the
2053 byte size on your platform; that will cause G++ and other compilers to
2054 layout @code{B} identically.
2055
2056 @item
2057 Incorrect handling of tail-padding for virtual bases.  G++ does not use
2058 tail padding when laying out virtual bases.  For example:
2059
2060 @smallexample
2061 struct A @{ virtual void f(); char c1; @};
2062 struct B @{ B(); char c2; @};
2063 struct C : public A, public virtual B @{@};
2064 @end smallexample
2065
2066 @noindent
2067 In this case, G++ will not place @code{B} into the tail-padding for
2068 @code{A}; other compilers will.  You can avoid this problem by
2069 explicitly padding @code{A} so that its size is a multiple of its
2070 alignment (ignoring virtual base classes); that will cause G++ and other
2071 compilers to layout @code{C} identically.
2072
2073 @item
2074 Incorrect handling of bit-fields with declared widths greater than that
2075 of their underlying types, when the bit-fields appear in a union.  For
2076 example:
2077
2078 @smallexample
2079 union U @{ int i : 4096; @};
2080 @end smallexample
2081
2082 @noindent
2083 Assuming that an @code{int} does not have 4096 bits, G++ will make the
2084 union too small by the number of bits in an @code{int}.
2085
2086 @item
2087 Empty classes can be placed at incorrect offsets.  For example:
2088
2089 @smallexample
2090 struct A @{@};
2091
2092 struct B @{
2093   A a;
2094   virtual void f ();
2095 @};
2096
2097 struct C : public B, public A @{@};
2098 @end smallexample
2099
2100 @noindent
2101 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
2102 it should be placed at offset zero.  G++ mistakenly believes that the
2103 @code{A} data member of @code{B} is already at offset zero.
2104
2105 @item
2106 Names of template functions whose types involve @code{typename} or
2107 template template parameters can be mangled incorrectly.
2108
2109 @smallexample
2110 template <typename Q>
2111 void f(typename Q::X) @{@}
2112
2113 template <template <typename> class Q>
2114 void f(typename Q<int>::X) @{@}
2115 @end smallexample
2116
2117 @noindent
2118 Instantiations of these templates may be mangled incorrectly.
2119
2120 @end itemize
2121
2122 It also warns psABI related changes.  The known psABI changes at this
2123 point include:
2124
2125 @itemize @bullet
2126
2127 @item
2128 For SYSV/x86-64, when passing union with long double, it is changed to
2129 pass in memory as specified in psABI.  For example:
2130
2131 @smallexample
2132 union U @{
2133   long double ld;
2134   int i;
2135 @};
2136 @end smallexample
2137
2138 @noindent
2139 @code{union U} will always be passed in memory.
2140
2141 @end itemize
2142
2143 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2144 @opindex Wctor-dtor-privacy
2145 @opindex Wno-ctor-dtor-privacy
2146 Warn when a class seems unusable because all the constructors or
2147 destructors in that class are private, and it has neither friends nor
2148 public static member functions.
2149
2150 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2151 @opindex Wnon-virtual-dtor
2152 @opindex Wno-non-virtual-dtor
2153 Warn when a class has virtual functions and accessible non-virtual
2154 destructor, in which case it would be possible but unsafe to delete
2155 an instance of a derived class through a pointer to the base class.
2156 This warning is also enabled if -Weffc++ is specified.
2157
2158 @item -Wreorder @r{(C++ and Objective-C++ only)}
2159 @opindex Wreorder
2160 @opindex Wno-reorder
2161 @cindex reordering, warning
2162 @cindex warning for reordering of member initializers
2163 Warn when the order of member initializers given in the code does not
2164 match the order in which they must be executed.  For instance:
2165
2166 @smallexample
2167 struct A @{
2168   int i;
2169   int j;
2170   A(): j (0), i (1) @{ @}
2171 @};
2172 @end smallexample
2173
2174 The compiler will rearrange the member initializers for @samp{i}
2175 and @samp{j} to match the declaration order of the members, emitting
2176 a warning to that effect.  This warning is enabled by @option{-Wall}.
2177 @end table
2178
2179 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2180
2181 @table @gcctabopt
2182 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2183 @opindex Weffc++
2184 @opindex Wno-effc++
2185 Warn about violations of the following style guidelines from Scott Meyers'
2186 @cite{Effective C++} book:
2187
2188 @itemize @bullet
2189 @item
2190 Item 11:  Define a copy constructor and an assignment operator for classes
2191 with dynamically allocated memory.
2192
2193 @item
2194 Item 12:  Prefer initialization to assignment in constructors.
2195
2196 @item
2197 Item 14:  Make destructors virtual in base classes.
2198
2199 @item
2200 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2201
2202 @item
2203 Item 23:  Don't try to return a reference when you must return an object.
2204
2205 @end itemize
2206
2207 Also warn about violations of the following style guidelines from
2208 Scott Meyers' @cite{More Effective C++} book:
2209
2210 @itemize @bullet
2211 @item
2212 Item 6:  Distinguish between prefix and postfix forms of increment and
2213 decrement operators.
2214
2215 @item
2216 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2217
2218 @end itemize
2219
2220 When selecting this option, be aware that the standard library
2221 headers do not obey all of these guidelines; use @samp{grep -v}
2222 to filter out those warnings.
2223
2224 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2225 @opindex Wstrict-null-sentinel
2226 @opindex Wno-strict-null-sentinel
2227 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2228 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2229 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2230 it is guaranteed to be of the same size as a pointer.  But this use is
2231 not portable across different compilers.
2232
2233 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2234 @opindex Wno-non-template-friend
2235 @opindex Wnon-template-friend
2236 Disable warnings when non-templatized friend functions are declared
2237 within a template.  Since the advent of explicit template specification
2238 support in G++, if the name of the friend is an unqualified-id (i.e.,
2239 @samp{friend foo(int)}), the C++ language specification demands that the
2240 friend declare or define an ordinary, nontemplate function.  (Section
2241 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2242 could be interpreted as a particular specialization of a templatized
2243 function.  Because this non-conforming behavior is no longer the default
2244 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2245 check existing code for potential trouble spots and is on by default.
2246 This new compiler behavior can be turned off with
2247 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2248 but disables the helpful warning.
2249
2250 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2251 @opindex Wold-style-cast
2252 @opindex Wno-old-style-cast
2253 Warn if an old-style (C-style) cast to a non-void type is used within
2254 a C++ program.  The new-style casts (@samp{dynamic_cast},
2255 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2256 less vulnerable to unintended effects and much easier to search for.
2257
2258 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2259 @opindex Woverloaded-virtual
2260 @opindex Wno-overloaded-virtual
2261 @cindex overloaded virtual fn, warning
2262 @cindex warning for overloaded virtual fn
2263 Warn when a function declaration hides virtual functions from a
2264 base class.  For example, in:
2265
2266 @smallexample
2267 struct A @{
2268   virtual void f();
2269 @};
2270
2271 struct B: public A @{
2272   void f(int);
2273 @};
2274 @end smallexample
2275
2276 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2277 like:
2278
2279 @smallexample
2280 B* b;
2281 b->f();
2282 @end smallexample
2283
2284 will fail to compile.
2285
2286 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2287 @opindex Wno-pmf-conversions
2288 @opindex Wpmf-conversions
2289 Disable the diagnostic for converting a bound pointer to member function
2290 to a plain pointer.
2291
2292 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2293 @opindex Wsign-promo
2294 @opindex Wno-sign-promo
2295 Warn when overload resolution chooses a promotion from unsigned or
2296 enumerated type to a signed type, over a conversion to an unsigned type of
2297 the same size.  Previous versions of G++ would try to preserve
2298 unsignedness, but the standard mandates the current behavior.
2299
2300 @smallexample
2301 struct A @{
2302   operator int ();
2303   A& operator = (int);
2304 @};
2305
2306 main ()
2307 @{
2308   A a,b;
2309   a = b;
2310 @}
2311 @end smallexample
2312
2313 In this example, G++ will synthesize a default @samp{A& operator =
2314 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2315 @end table
2316
2317 @node Objective-C and Objective-C++ Dialect Options
2318 @section Options Controlling Objective-C and Objective-C++ Dialects
2319
2320 @cindex compiler options, Objective-C and Objective-C++
2321 @cindex Objective-C and Objective-C++ options, command line
2322 @cindex options, Objective-C and Objective-C++
2323 (NOTE: This manual does not describe the Objective-C and Objective-C++
2324 languages themselves.  See @xref{Standards,,Language Standards
2325 Supported by GCC}, for references.)
2326
2327 This section describes the command-line options that are only meaningful
2328 for Objective-C and Objective-C++ programs, but you can also use most of
2329 the language-independent GNU compiler options.
2330 For example, you might compile a file @code{some_class.m} like this:
2331
2332 @smallexample
2333 gcc -g -fgnu-runtime -O -c some_class.m
2334 @end smallexample
2335
2336 @noindent
2337 In this example, @option{-fgnu-runtime} is an option meant only for
2338 Objective-C and Objective-C++ programs; you can use the other options with
2339 any language supported by GCC@.
2340
2341 Note that since Objective-C is an extension of the C language, Objective-C
2342 compilations may also use options specific to the C front-end (e.g.,
2343 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2344 C++-specific options (e.g., @option{-Wabi}).
2345
2346 Here is a list of options that are @emph{only} for compiling Objective-C
2347 and Objective-C++ programs:
2348
2349 @table @gcctabopt
2350 @item -fconstant-string-class=@var{class-name}
2351 @opindex fconstant-string-class
2352 Use @var{class-name} as the name of the class to instantiate for each
2353 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2354 class name is @code{NXConstantString} if the GNU runtime is being used, and
2355 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2356 @option{-fconstant-cfstrings} option, if also present, will override the
2357 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2358 to be laid out as constant CoreFoundation strings.
2359
2360 @item -fgnu-runtime
2361 @opindex fgnu-runtime
2362 Generate object code compatible with the standard GNU Objective-C
2363 runtime.  This is the default for most types of systems.
2364
2365 @item -fnext-runtime
2366 @opindex fnext-runtime
2367 Generate output compatible with the NeXT runtime.  This is the default
2368 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2369 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2370 used.
2371
2372 @item -fno-nil-receivers
2373 @opindex fno-nil-receivers
2374 Assume that all Objective-C message dispatches (e.g.,
2375 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2376 is not @code{nil}.  This allows for more efficient entry points in the runtime
2377 to be used.  Currently, this option is only available in conjunction with
2378 the NeXT runtime on Mac OS X 10.3 and later.
2379
2380 @item -fobjc-call-cxx-cdtors
2381 @opindex fobjc-call-cxx-cdtors
2382 For each Objective-C class, check if any of its instance variables is a
2383 C++ object with a non-trivial default constructor.  If so, synthesize a
2384 special @code{- (id) .cxx_construct} instance method that will run
2385 non-trivial default constructors on any such instance variables, in order,
2386 and then return @code{self}.  Similarly, check if any instance variable
2387 is a C++ object with a non-trivial destructor, and if so, synthesize a
2388 special @code{- (void) .cxx_destruct} method that will run
2389 all such default destructors, in reverse order.
2390
2391 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2392 thusly generated will only operate on instance variables declared in the
2393 current Objective-C class, and not those inherited from superclasses.  It
2394 is the responsibility of the Objective-C runtime to invoke all such methods
2395 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2396 will be invoked by the runtime immediately after a new object
2397 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2398 be invoked immediately before the runtime deallocates an object instance.
2399
2400 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2401 support for invoking the @code{- (id) .cxx_construct} and
2402 @code{- (void) .cxx_destruct} methods.
2403
2404 @item -fobjc-direct-dispatch
2405 @opindex fobjc-direct-dispatch
2406 Allow fast jumps to the message dispatcher.  On Darwin this is
2407 accomplished via the comm page.
2408
2409 @item -fobjc-exceptions
2410 @opindex fobjc-exceptions
2411 Enable syntactic support for structured exception handling in Objective-C,
2412 similar to what is offered by C++ and Java.  This option is
2413 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2414 earlier.
2415
2416 @smallexample
2417   @@try @{
2418     @dots{}
2419        @@throw expr;
2420     @dots{}
2421   @}
2422   @@catch (AnObjCClass *exc) @{
2423     @dots{}
2424       @@throw expr;
2425     @dots{}
2426       @@throw;
2427     @dots{}
2428   @}
2429   @@catch (AnotherClass *exc) @{
2430     @dots{}
2431   @}
2432   @@catch (id allOthers) @{
2433     @dots{}
2434   @}
2435   @@finally @{
2436     @dots{}
2437       @@throw expr;
2438     @dots{}
2439   @}
2440 @end smallexample
2441
2442 The @code{@@throw} statement may appear anywhere in an Objective-C or
2443 Objective-C++ program; when used inside of a @code{@@catch} block, the
2444 @code{@@throw} may appear without an argument (as shown above), in which case
2445 the object caught by the @code{@@catch} will be rethrown.
2446
2447 Note that only (pointers to) Objective-C objects may be thrown and
2448 caught using this scheme.  When an object is thrown, it will be caught
2449 by the nearest @code{@@catch} clause capable of handling objects of that type,
2450 analogously to how @code{catch} blocks work in C++ and Java.  A
2451 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2452 any and all Objective-C exceptions not caught by previous @code{@@catch}
2453 clauses (if any).
2454
2455 The @code{@@finally} clause, if present, will be executed upon exit from the
2456 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2457 regardless of whether any exceptions are thrown, caught or rethrown
2458 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2459 of the @code{finally} clause in Java.
2460
2461 There are several caveats to using the new exception mechanism:
2462
2463 @itemize @bullet
2464 @item
2465 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2466 idioms provided by the @code{NSException} class, the new
2467 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2468 systems, due to additional functionality needed in the (NeXT) Objective-C
2469 runtime.
2470
2471 @item
2472 As mentioned above, the new exceptions do not support handling
2473 types other than Objective-C objects.   Furthermore, when used from
2474 Objective-C++, the Objective-C exception model does not interoperate with C++
2475 exceptions at this time.  This means you cannot @code{@@throw} an exception
2476 from Objective-C and @code{catch} it in C++, or vice versa
2477 (i.e., @code{throw @dots{} @@catch}).
2478 @end itemize
2479
2480 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2481 blocks for thread-safe execution:
2482
2483 @smallexample
2484   @@synchronized (ObjCClass *guard) @{
2485     @dots{}
2486   @}
2487 @end smallexample
2488
2489 Upon entering the @code{@@synchronized} block, a thread of execution shall
2490 first check whether a lock has been placed on the corresponding @code{guard}
2491 object by another thread.  If it has, the current thread shall wait until
2492 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2493 the current thread will place its own lock on it, execute the code contained in
2494 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2495 making @code{guard} available to other threads).
2496
2497 Unlike Java, Objective-C does not allow for entire methods to be marked
2498 @code{@@synchronized}.  Note that throwing exceptions out of
2499 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2500 to be unlocked properly.
2501
2502 @item -fobjc-gc
2503 @opindex fobjc-gc
2504 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2505
2506 @item -freplace-objc-classes
2507 @opindex freplace-objc-classes
2508 Emit a special marker instructing @command{ld(1)} not to statically link in
2509 the resulting object file, and allow @command{dyld(1)} to load it in at
2510 run time instead.  This is used in conjunction with the Fix-and-Continue
2511 debugging mode, where the object file in question may be recompiled and
2512 dynamically reloaded in the course of program execution, without the need
2513 to restart the program itself.  Currently, Fix-and-Continue functionality
2514 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2515 and later.
2516
2517 @item -fzero-link
2518 @opindex fzero-link
2519 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2520 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2521 compile time) with static class references that get initialized at load time,
2522 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2523 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2524 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2525 for individual class implementations to be modified during program execution.
2526
2527 @item -gen-decls
2528 @opindex gen-decls
2529 Dump interface declarations for all classes seen in the source file to a
2530 file named @file{@var{sourcename}.decl}.
2531
2532 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
2533 @opindex Wassign-intercept
2534 @opindex Wno-assign-intercept
2535 Warn whenever an Objective-C assignment is being intercepted by the
2536 garbage collector.
2537
2538 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
2539 @opindex Wno-protocol
2540 @opindex Wprotocol
2541 If a class is declared to implement a protocol, a warning is issued for
2542 every method in the protocol that is not implemented by the class.  The
2543 default behavior is to issue a warning for every method not explicitly
2544 implemented in the class, even if a method implementation is inherited
2545 from the superclass.  If you use the @option{-Wno-protocol} option, then
2546 methods inherited from the superclass are considered to be implemented,
2547 and no warning is issued for them.
2548
2549 @item -Wselector @r{(Objective-C and Objective-C++ only)}
2550 @opindex Wselector
2551 @opindex Wno-selector
2552 Warn if multiple methods of different types for the same selector are
2553 found during compilation.  The check is performed on the list of methods
2554 in the final stage of compilation.  Additionally, a check is performed
2555 for each selector appearing in a @code{@@selector(@dots{})}
2556 expression, and a corresponding method for that selector has been found
2557 during compilation.  Because these checks scan the method table only at
2558 the end of compilation, these warnings are not produced if the final
2559 stage of compilation is not reached, for example because an error is
2560 found during compilation, or because the @option{-fsyntax-only} option is
2561 being used.
2562
2563 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
2564 @opindex Wstrict-selector-match
2565 @opindex Wno-strict-selector-match
2566 Warn if multiple methods with differing argument and/or return types are
2567 found for a given selector when attempting to send a message using this
2568 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2569 is off (which is the default behavior), the compiler will omit such warnings
2570 if any differences found are confined to types which share the same size
2571 and alignment.
2572
2573 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
2574 @opindex Wundeclared-selector
2575 @opindex Wno-undeclared-selector
2576 Warn if a @code{@@selector(@dots{})} expression referring to an
2577 undeclared selector is found.  A selector is considered undeclared if no
2578 method with that name has been declared before the
2579 @code{@@selector(@dots{})} expression, either explicitly in an
2580 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2581 an @code{@@implementation} section.  This option always performs its
2582 checks as soon as a @code{@@selector(@dots{})} expression is found,
2583 while @option{-Wselector} only performs its checks in the final stage of
2584 compilation.  This also enforces the coding style convention
2585 that methods and selectors must be declared before being used.
2586
2587 @item -print-objc-runtime-info
2588 @opindex print-objc-runtime-info
2589 Generate C header describing the largest structure that is passed by
2590 value, if any.
2591
2592 @end table
2593
2594 @node Language Independent Options
2595 @section Options to Control Diagnostic Messages Formatting
2596 @cindex options to control diagnostics formatting
2597 @cindex diagnostic messages
2598 @cindex message formatting
2599
2600 Traditionally, diagnostic messages have been formatted irrespective of
2601 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2602 below can be used to control the diagnostic messages formatting
2603 algorithm, e.g.@: how many characters per line, how often source location
2604 information should be reported.  Right now, only the C++ front end can
2605 honor these options.  However it is expected, in the near future, that
2606 the remaining front ends would be able to digest them correctly.
2607
2608 @table @gcctabopt
2609 @item -fmessage-length=@var{n}
2610 @opindex fmessage-length
2611 Try to format error messages so that they fit on lines of about @var{n}
2612 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2613 the front ends supported by GCC@.  If @var{n} is zero, then no
2614 line-wrapping will be done; each error message will appear on a single
2615 line.
2616
2617 @opindex fdiagnostics-show-location
2618 @item -fdiagnostics-show-location=once
2619 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2620 reporter to emit @emph{once} source location information; that is, in
2621 case the message is too long to fit on a single physical line and has to
2622 be wrapped, the source location won't be emitted (as prefix) again,
2623 over and over, in subsequent continuation lines.  This is the default
2624 behavior.
2625
2626 @item -fdiagnostics-show-location=every-line
2627 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2628 messages reporter to emit the same source location information (as
2629 prefix) for physical lines that result from the process of breaking
2630 a message which is too long to fit on a single line.
2631
2632 @item -fdiagnostics-show-option
2633 @opindex fdiagnostics-show-option
2634 This option instructs the diagnostic machinery to add text to each
2635 diagnostic emitted, which indicates which command line option directly
2636 controls that diagnostic, when such an option is known to the
2637 diagnostic machinery.
2638
2639 @item -Wcoverage-mismatch
2640 @opindex Wcoverage-mismatch
2641 Warn if feedback profiles do not match when using the
2642 @option{-fprofile-use} option.
2643 If a source file was changed between @option{-fprofile-gen} and
2644 @option{-fprofile-use}, the files with the profile feedback can fail
2645 to match the source file and GCC can not use the profile feedback
2646 information.  By default, GCC emits an error message in this case.
2647 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2648 error.  GCC does not use appropriate feedback profiles, so using this
2649 option can result in poorly optimized code.  This option is useful
2650 only in the case of very minor changes such as bug fixes to an
2651 existing code-base.
2652
2653 @end table
2654
2655 @node Warning Options
2656 @section Options to Request or Suppress Warnings
2657 @cindex options to control warnings
2658 @cindex warning messages
2659 @cindex messages, warning
2660 @cindex suppressing warnings
2661
2662 Warnings are diagnostic messages that report constructions which
2663 are not inherently erroneous but which are risky or suggest there
2664 may have been an error.
2665
2666 The following language-independent options do not enable specific
2667 warnings but control the kinds of diagnostics produced by GCC.
2668
2669 @table @gcctabopt
2670 @cindex syntax checking
2671 @item -fsyntax-only
2672 @opindex fsyntax-only
2673 Check the code for syntax errors, but don't do anything beyond that.
2674
2675 @item -w
2676 @opindex w
2677 Inhibit all warning messages.
2678
2679 @item -Werror
2680 @opindex Werror
2681 @opindex Wno-error
2682 Make all warnings into errors.
2683
2684 @item -Werror=
2685 @opindex Werror=
2686 @opindex Wno-error=
2687 Make the specified warning into an error.  The specifier for a warning
2688 is appended, for example @option{-Werror=switch} turns the warnings
2689 controlled by @option{-Wswitch} into errors.  This switch takes a
2690 negative form, to be used to negate @option{-Werror} for specific
2691 warnings, for example @option{-Wno-error=switch} makes
2692 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2693 is in effect.  You can use the @option{-fdiagnostics-show-option}
2694 option to have each controllable warning amended with the option which
2695 controls it, to determine what to use with this option.
2696
2697 Note that specifying @option{-Werror=}@var{foo} automatically implies
2698 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2699 imply anything.
2700
2701 @item -Wfatal-errors
2702 @opindex Wfatal-errors
2703 @opindex Wno-fatal-errors
2704 This option causes the compiler to abort compilation on the first error
2705 occurred rather than trying to keep going and printing further error
2706 messages.
2707
2708 @end table
2709
2710 You can request many specific warnings with options beginning
2711 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2712 implicit declarations.  Each of these specific warning options also
2713 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2714 example, @option{-Wno-implicit}.  This manual lists only one of the
2715 two forms, whichever is not the default.  For further,
2716 language-specific options also refer to @ref{C++ Dialect Options} and
2717 @ref{Objective-C and Objective-C++ Dialect Options}.
2718
2719 @table @gcctabopt
2720 @item -pedantic
2721 @opindex pedantic
2722 Issue all the warnings demanded by strict ISO C and ISO C++;
2723 reject all programs that use forbidden extensions, and some other
2724 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2725 version of the ISO C standard specified by any @option{-std} option used.
2726
2727 Valid ISO C and ISO C++ programs should compile properly with or without
2728 this option (though a rare few will require @option{-ansi} or a
2729 @option{-std} option specifying the required version of ISO C)@.  However,
2730 without this option, certain GNU extensions and traditional C and C++
2731 features are supported as well.  With this option, they are rejected.
2732
2733 @option{-pedantic} does not cause warning messages for use of the
2734 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2735 warnings are also disabled in the expression that follows
2736 @code{__extension__}.  However, only system header files should use
2737 these escape routes; application programs should avoid them.
2738 @xref{Alternate Keywords}.
2739
2740 Some users try to use @option{-pedantic} to check programs for strict ISO
2741 C conformance.  They soon find that it does not do quite what they want:
2742 it finds some non-ISO practices, but not all---only those for which
2743 ISO C @emph{requires} a diagnostic, and some others for which
2744 diagnostics have been added.
2745
2746 A feature to report any failure to conform to ISO C might be useful in
2747 some instances, but would require considerable additional work and would
2748 be quite different from @option{-pedantic}.  We don't have plans to
2749 support such a feature in the near future.
2750
2751 Where the standard specified with @option{-std} represents a GNU
2752 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2753 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2754 extended dialect is based.  Warnings from @option{-pedantic} are given
2755 where they are required by the base standard.  (It would not make sense
2756 for such warnings to be given only for features not in the specified GNU
2757 C dialect, since by definition the GNU dialects of C include all
2758 features the compiler supports with the given option, and there would be
2759 nothing to warn about.)
2760
2761 @item -pedantic-errors
2762 @opindex pedantic-errors
2763 Like @option{-pedantic}, except that errors are produced rather than
2764 warnings.
2765
2766 @item -Wall
2767 @opindex Wall
2768 @opindex Wno-all
2769 This enables all the warnings about constructions that some users
2770 consider questionable, and that are easy to avoid (or modify to
2771 prevent the warning), even in conjunction with macros.  This also
2772 enables some language-specific warnings described in @ref{C++ Dialect
2773 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2774
2775 @option{-Wall} turns on the following warning flags:
2776
2777 @gccoptlist{-Waddress   @gol
2778 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2779 -Wc++0x-compat  @gol
2780 -Wchar-subscripts  @gol
2781 -Wenum-compare @r{(in C/Objc; this is on by default in C++)} @gol
2782 -Wimplicit-int  @gol
2783 -Wimplicit-function-declaration  @gol
2784 -Wcomment  @gol
2785 -Wformat   @gol
2786 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2787 -Wmissing-braces  @gol
2788 -Wnonnull  @gol
2789 -Wparentheses  @gol
2790 -Wpointer-sign  @gol
2791 -Wreorder   @gol
2792 -Wreturn-type  @gol
2793 -Wsequence-point  @gol
2794 -Wsign-compare @r{(only in C++)}  @gol
2795 -Wstrict-aliasing  @gol
2796 -Wstrict-overflow=1  @gol
2797 -Wswitch  @gol
2798 -Wtrigraphs  @gol
2799 -Wuninitialized  @gol
2800 -Wunknown-pragmas  @gol
2801 -Wunused-function  @gol
2802 -Wunused-label     @gol
2803 -Wunused-value     @gol
2804 -Wunused-variable  @gol
2805 -Wvolatile-register-var @gol
2806 }
2807
2808 Note that some warning flags are not implied by @option{-Wall}.  Some of
2809 them warn about constructions that users generally do not consider
2810 questionable, but which occasionally you might wish to check for;
2811 others warn about constructions that are necessary or hard to avoid in
2812 some cases, and there is no simple way to modify the code to suppress
2813 the warning. Some of them are enabled by @option{-Wextra} but many of
2814 them must be enabled individually.
2815
2816 @item -Wextra
2817 @opindex W
2818 @opindex Wextra
2819 @opindex Wno-extra
2820 This enables some extra warning flags that are not enabled by
2821 @option{-Wall}. (This option used to be called @option{-W}.  The older
2822 name is still supported, but the newer name is more descriptive.)
2823
2824 @gccoptlist{-Wclobbered  @gol
2825 -Wempty-body  @gol
2826 -Wignored-qualifiers @gol
2827 -Wmissing-field-initializers  @gol
2828 -Wmissing-parameter-type @r{(C only)}  @gol
2829 -Wold-style-declaration @r{(C only)}  @gol
2830 -Woverride-init  @gol
2831 -Wsign-compare  @gol
2832 -Wtype-limits  @gol
2833 -Wuninitialized  @gol
2834 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2835 }
2836
2837 The option @option{-Wextra} also prints warning messages for the
2838 following cases:
2839
2840 @itemize @bullet
2841
2842 @item
2843 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2844 @samp{>}, or @samp{>=}.
2845
2846 @item 
2847 (C++ only) An enumerator and a non-enumerator both appear in a
2848 conditional expression.
2849
2850 @item 
2851 (C++ only) Ambiguous virtual bases.
2852
2853 @item 
2854 (C++ only) Subscripting an array which has been declared @samp{register}.
2855
2856 @item 
2857 (C++ only) Taking the address of a variable which has been declared
2858 @samp{register}.
2859
2860 @item 
2861 (C++ only) A base class is not initialized in a derived class' copy
2862 constructor.
2863
2864 @end itemize
2865
2866 @item -Wchar-subscripts
2867 @opindex Wchar-subscripts
2868 @opindex Wno-char-subscripts
2869 Warn if an array subscript has type @code{char}.  This is a common cause
2870 of error, as programmers often forget that this type is signed on some
2871 machines.
2872 This warning is enabled by @option{-Wall}.
2873
2874 @item -Wcomment
2875 @opindex Wcomment
2876 @opindex Wno-comment
2877 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2878 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2879 This warning is enabled by @option{-Wall}.
2880
2881 @item -Wformat
2882 @opindex Wformat
2883 @opindex Wno-format
2884 @opindex ffreestanding
2885 @opindex fno-builtin
2886 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2887 the arguments supplied have types appropriate to the format string
2888 specified, and that the conversions specified in the format string make
2889 sense.  This includes standard functions, and others specified by format
2890 attributes (@pxref{Function Attributes}), in the @code{printf},
2891 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2892 not in the C standard) families (or other target-specific families).
2893 Which functions are checked without format attributes having been
2894 specified depends on the standard version selected, and such checks of
2895 functions without the attribute specified are disabled by
2896 @option{-ffreestanding} or @option{-fno-builtin}.
2897
2898 The formats are checked against the format features supported by GNU
2899 libc version 2.2.  These include all ISO C90 and C99 features, as well
2900 as features from the Single Unix Specification and some BSD and GNU
2901 extensions.  Other library implementations may not support all these
2902 features; GCC does not support warning about features that go beyond a
2903 particular library's limitations.  However, if @option{-pedantic} is used
2904 with @option{-Wformat}, warnings will be given about format features not
2905 in the selected standard version (but not for @code{strfmon} formats,
2906 since those are not in any version of the C standard).  @xref{C Dialect
2907 Options,,Options Controlling C Dialect}.
2908
2909 Since @option{-Wformat} also checks for null format arguments for
2910 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2911
2912 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2913 aspects of format checking, the options @option{-Wformat-y2k},
2914 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2915 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2916 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2917
2918 @item -Wformat-y2k
2919 @opindex Wformat-y2k
2920 @opindex Wno-format-y2k
2921 If @option{-Wformat} is specified, also warn about @code{strftime}
2922 formats which may yield only a two-digit year.
2923
2924 @item -Wno-format-contains-nul
2925 @opindex Wno-format-contains-nul
2926 @opindex Wformat-contains-nul
2927 If @option{-Wformat} is specified, do not warn about format strings that
2928 contain NUL bytes.
2929
2930 @item -Wno-format-extra-args
2931 @opindex Wno-format-extra-args
2932 @opindex Wformat-extra-args
2933 If @option{-Wformat} is specified, do not warn about excess arguments to a
2934 @code{printf} or @code{scanf} format function.  The C standard specifies
2935 that such arguments are ignored.
2936
2937 Where the unused arguments lie between used arguments that are
2938 specified with @samp{$} operand number specifications, normally
2939 warnings are still given, since the implementation could not know what
2940 type to pass to @code{va_arg} to skip the unused arguments.  However,
2941 in the case of @code{scanf} formats, this option will suppress the
2942 warning if the unused arguments are all pointers, since the Single
2943 Unix Specification says that such unused arguments are allowed.
2944
2945 @item -Wno-format-zero-length @r{(C and Objective-C only)}
2946 @opindex Wno-format-zero-length
2947 @opindex Wformat-zero-length
2948 If @option{-Wformat} is specified, do not warn about zero-length formats.
2949 The C standard specifies that zero-length formats are allowed.
2950
2951 @item -Wformat-nonliteral
2952 @opindex Wformat-nonliteral
2953 @opindex Wno-format-nonliteral
2954 If @option{-Wformat} is specified, also warn if the format string is not a
2955 string literal and so cannot be checked, unless the format function
2956 takes its format arguments as a @code{va_list}.
2957
2958 @item -Wformat-security
2959 @opindex Wformat-security
2960 @opindex Wno-format-security
2961 If @option{-Wformat} is specified, also warn about uses of format
2962 functions that represent possible security problems.  At present, this
2963 warns about calls to @code{printf} and @code{scanf} functions where the
2964 format string is not a string literal and there are no format arguments,
2965 as in @code{printf (foo);}.  This may be a security hole if the format
2966 string came from untrusted input and contains @samp{%n}.  (This is
2967 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2968 in future warnings may be added to @option{-Wformat-security} that are not
2969 included in @option{-Wformat-nonliteral}.)
2970
2971 @item -Wformat=2
2972 @opindex Wformat=2
2973 @opindex Wno-format=2
2974 Enable @option{-Wformat} plus format checks not included in
2975 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2976 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2977
2978 @item -Wnonnull @r{(C and Objective-C only)}
2979 @opindex Wnonnull
2980 @opindex Wno-nonnull
2981 Warn about passing a null pointer for arguments marked as
2982 requiring a non-null value by the @code{nonnull} function attribute.
2983
2984 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2985 can be disabled with the @option{-Wno-nonnull} option.
2986
2987 @item -Wjump-misses-init @r{(C, Objective-C only)}
2988 @opindex Wjump-misses-init
2989 @opindex Wno-jump-misses-init
2990 Warn if a @code{goto} statement or a @code{switch} statement jumps
2991 forward across the initialization of a variable, or jumps backward to a
2992 label after the variable has been initialized.  This only warns about
2993 variables which are initialized when they are declared.  This warning is
2994 only supported for C and Objective C; in C++ this sort of branch is an
2995 error in any case.
2996
2997 @option{-Wjump-misses-init} is included in @option{-Wall} and
2998 @option{-Wc++-compat}.  It can be disabled with the
2999 @option{-Wno-jump-misses-init} option.
3000
3001 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
3002 @opindex Winit-self
3003 @opindex Wno-init-self
3004 Warn about uninitialized variables which are initialized with themselves.
3005 Note this option can only be used with the @option{-Wuninitialized} option.
3006
3007 For example, GCC will warn about @code{i} being uninitialized in the
3008 following snippet only when @option{-Winit-self} has been specified:
3009 @smallexample
3010 @group
3011 int f()
3012 @{
3013   int i = i;
3014   return i;
3015 @}
3016 @end group
3017 @end smallexample
3018
3019 @item -Wimplicit-int @r{(C and Objective-C only)}
3020 @opindex Wimplicit-int
3021 @opindex Wno-implicit-int
3022 Warn when a declaration does not specify a type.
3023 This warning is enabled by @option{-Wall}.
3024
3025 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
3026 @opindex Wimplicit-function-declaration
3027 @opindex Wno-implicit-function-declaration
3028 Give a warning whenever a function is used before being declared. In
3029 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
3030 enabled by default and it is made into an error by
3031 @option{-pedantic-errors}. This warning is also enabled by
3032 @option{-Wall}.
3033
3034 @item -Wimplicit
3035 @opindex Wimplicit
3036 @opindex Wno-implicit
3037 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
3038 This warning is enabled by @option{-Wall}.
3039
3040 @item -Wignored-qualifiers @r{(C and C++ only)}
3041 @opindex Wignored-qualifiers
3042 @opindex Wno-ignored-qualifiers
3043 Warn if the return type of a function has a type qualifier
3044 such as @code{const}.  For ISO C such a type qualifier has no effect,
3045 since the value returned by a function is not an lvalue.
3046 For C++, the warning is only emitted for scalar types or @code{void}.
3047 ISO C prohibits qualified @code{void} return types on function
3048 definitions, so such return types always receive a warning
3049 even without this option.
3050
3051 This warning is also enabled by @option{-Wextra}.
3052
3053 @item -Wmain
3054 @opindex Wmain
3055 @opindex Wno-main
3056 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
3057 a function with external linkage, returning int, taking either zero
3058 arguments, two, or three arguments of appropriate types.  This warning
3059 is enabled by default in C++ and is enabled by either @option{-Wall}
3060 or @option{-pedantic}.
3061
3062 @item -Wmissing-braces
3063 @opindex Wmissing-braces
3064 @opindex Wno-missing-braces
3065 Warn if an aggregate or union initializer is not fully bracketed.  In
3066 the following example, the initializer for @samp{a} is not fully
3067 bracketed, but that for @samp{b} is fully bracketed.
3068
3069 @smallexample
3070 int a[2][2] = @{ 0, 1, 2, 3 @};
3071 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
3072 @end smallexample
3073
3074 This warning is enabled by @option{-Wall}.
3075
3076 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
3077 @opindex Wmissing-include-dirs
3078 @opindex Wno-missing-include-dirs
3079 Warn if a user-supplied include directory does not exist.
3080
3081 @item -Wparentheses
3082 @opindex Wparentheses
3083 @opindex Wno-parentheses
3084 Warn if parentheses are omitted in certain contexts, such
3085 as when there is an assignment in a context where a truth value
3086 is expected, or when operators are nested whose precedence people
3087 often get confused about.
3088
3089 Also warn if a comparison like @samp{x<=y<=z} appears; this is
3090 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
3091 interpretation from that of ordinary mathematical notation.
3092
3093 Also warn about constructions where there may be confusion to which
3094 @code{if} statement an @code{else} branch belongs.  Here is an example of
3095 such a case:
3096
3097 @smallexample
3098 @group
3099 @{
3100   if (a)
3101     if (b)
3102       foo ();
3103   else
3104     bar ();
3105 @}
3106 @end group
3107 @end smallexample
3108
3109 In C/C++, every @code{else} branch belongs to the innermost possible
3110 @code{if} statement, which in this example is @code{if (b)}.  This is
3111 often not what the programmer expected, as illustrated in the above
3112 example by indentation the programmer chose.  When there is the
3113 potential for this confusion, GCC will issue a warning when this flag
3114 is specified.  To eliminate the warning, add explicit braces around
3115 the innermost @code{if} statement so there is no way the @code{else}
3116 could belong to the enclosing @code{if}.  The resulting code would
3117 look like this:
3118
3119 @smallexample
3120 @group
3121 @{
3122   if (a)
3123     @{
3124       if (b)
3125         foo ();
3126       else
3127         bar ();
3128     @}
3129 @}
3130 @end group
3131 @end smallexample
3132
3133 This warning is enabled by @option{-Wall}.
3134
3135 @item -Wsequence-point
3136 @opindex Wsequence-point
3137 @opindex Wno-sequence-point
3138 Warn about code that may have undefined semantics because of violations
3139 of sequence point rules in the C and C++ standards.
3140
3141 The C and C++ standards defines the order in which expressions in a C/C++
3142 program are evaluated in terms of @dfn{sequence points}, which represent
3143 a partial ordering between the execution of parts of the program: those
3144 executed before the sequence point, and those executed after it.  These
3145 occur after the evaluation of a full expression (one which is not part
3146 of a larger expression), after the evaluation of the first operand of a
3147 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3148 function is called (but after the evaluation of its arguments and the
3149 expression denoting the called function), and in certain other places.
3150 Other than as expressed by the sequence point rules, the order of
3151 evaluation of subexpressions of an expression is not specified.  All
3152 these rules describe only a partial order rather than a total order,
3153 since, for example, if two functions are called within one expression
3154 with no sequence point between them, the order in which the functions
3155 are called is not specified.  However, the standards committee have
3156 ruled that function calls do not overlap.
3157
3158 It is not specified when between sequence points modifications to the
3159 values of objects take effect.  Programs whose behavior depends on this
3160 have undefined behavior; the C and C++ standards specify that ``Between
3161 the previous and next sequence point an object shall have its stored
3162 value modified at most once by the evaluation of an expression.
3163 Furthermore, the prior value shall be read only to determine the value
3164 to be stored.''.  If a program breaks these rules, the results on any
3165 particular implementation are entirely unpredictable.
3166
3167 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3168 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3169 diagnosed by this option, and it may give an occasional false positive
3170 result, but in general it has been found fairly effective at detecting
3171 this sort of problem in programs.
3172
3173 The standard is worded confusingly, therefore there is some debate
3174 over the precise meaning of the sequence point rules in subtle cases.
3175 Links to discussions of the problem, including proposed formal
3176 definitions, may be found on the GCC readings page, at
3177 @w{@uref{http://gcc.gnu.org/readings.html}}.
3178
3179 This warning is enabled by @option{-Wall} for C and C++.
3180
3181 @item -Wreturn-type
3182 @opindex Wreturn-type
3183 @opindex Wno-return-type
3184 Warn whenever a function is defined with a return-type that defaults
3185 to @code{int}.  Also warn about any @code{return} statement with no
3186 return-value in a function whose return-type is not @code{void}
3187 (falling off the end of the function body is considered returning
3188 without a value), and about a @code{return} statement with an
3189 expression in a function whose return-type is @code{void}.
3190
3191 For C++, a function without return type always produces a diagnostic
3192 message, even when @option{-Wno-return-type} is specified.  The only
3193 exceptions are @samp{main} and functions defined in system headers.
3194
3195 This warning is enabled by @option{-Wall}.
3196
3197 @item -Wswitch
3198 @opindex Wswitch
3199 @opindex Wno-switch
3200 Warn whenever a @code{switch} statement has an index of enumerated type
3201 and lacks a @code{case} for one or more of the named codes of that
3202 enumeration.  (The presence of a @code{default} label prevents this
3203 warning.)  @code{case} labels outside the enumeration range also
3204 provoke warnings when this option is used (even if there is a
3205 @code{default} label).
3206 This warning is enabled by @option{-Wall}.
3207
3208 @item -Wswitch-default
3209 @opindex Wswitch-default
3210 @opindex Wno-switch-default
3211 Warn whenever a @code{switch} statement does not have a @code{default}
3212 case.
3213
3214 @item -Wswitch-enum
3215 @opindex Wswitch-enum
3216 @opindex Wno-switch-enum
3217 Warn whenever a @code{switch} statement has an index of enumerated type
3218 and lacks a @code{case} for one or more of the named codes of that
3219 enumeration.  @code{case} labels outside the enumeration range also
3220 provoke warnings when this option is used.  The only difference
3221 between @option{-Wswitch} and this option is that this option gives a
3222 warning about an omitted enumeration code even if there is a
3223 @code{default} label.
3224
3225 @item -Wsync-nand @r{(C and C++ only)}
3226 @opindex Wsync-nand
3227 @opindex Wno-sync-nand
3228 Warn when @code{__sync_fetch_and_nand} and @code{__sync_nand_and_fetch}
3229 built-in functions are used.  These functions changed semantics in GCC 4.4.
3230
3231 @item -Wtrigraphs
3232 @opindex Wtrigraphs
3233 @opindex Wno-trigraphs
3234 Warn if any trigraphs are encountered that might change the meaning of
3235 the program (trigraphs within comments are not warned about).
3236 This warning is enabled by @option{-Wall}.
3237
3238 @item -Wunused-function
3239 @opindex Wunused-function
3240 @opindex Wno-unused-function
3241 Warn whenever a static function is declared but not defined or a
3242 non-inline static function is unused.
3243 This warning is enabled by @option{-Wall}.
3244
3245 @item -Wunused-label
3246 @opindex Wunused-label
3247 @opindex Wno-unused-label
3248 Warn whenever a label is declared but not used.
3249 This warning is enabled by @option{-Wall}.
3250
3251 To suppress this warning use the @samp{unused} attribute
3252 (@pxref{Variable Attributes}).
3253
3254 @item -Wunused-parameter
3255 @opindex Wunused-parameter
3256 @opindex Wno-unused-parameter
3257 Warn whenever a function parameter is unused aside from its declaration.
3258
3259 To suppress this warning use the @samp{unused} attribute
3260 (@pxref{Variable Attributes}).
3261
3262 @item -Wunused-variable
3263 @opindex Wunused-variable
3264 @opindex Wno-unused-variable
3265 Warn whenever a local variable or non-constant static variable is unused
3266 aside from its declaration.
3267 This warning is enabled by @option{-Wall}.
3268
3269 To suppress this warning use the @samp{unused} attribute
3270 (@pxref{Variable Attributes}).
3271
3272 @item -Wunused-value
3273 @opindex Wunused-value
3274 @opindex Wno-unused-value
3275 Warn whenever a statement computes a result that is explicitly not
3276 used. To suppress this warning cast the unused expression to
3277 @samp{void}. This includes an expression-statement or the left-hand
3278 side of a comma expression that contains no side effects. For example,
3279 an expression such as @samp{x[i,j]} will cause a warning, while
3280 @samp{x[(void)i,j]} will not.
3281
3282 This warning is enabled by @option{-Wall}.
3283
3284 @item -Wunused
3285 @opindex Wunused
3286 @opindex Wno-unused
3287 All the above @option{-Wunused} options combined.
3288
3289 In order to get a warning about an unused function parameter, you must
3290 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3291 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3292
3293 @item -Wuninitialized
3294 @opindex Wuninitialized
3295 @opindex Wno-uninitialized
3296 Warn if an automatic variable is used without first being initialized
3297 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3298 warn if a non-static reference or non-static @samp{const} member
3299 appears in a class without constructors.
3300
3301 If you want to warn about code which uses the uninitialized value of the
3302 variable in its own initializer, use the @option{-Winit-self} option.
3303
3304 These warnings occur for individual uninitialized or clobbered
3305 elements of structure, union or array variables as well as for
3306 variables which are uninitialized or clobbered as a whole.  They do
3307 not occur for variables or elements declared @code{volatile}.  Because
3308 these warnings depend on optimization, the exact variables or elements
3309 for which there are warnings will depend on the precise optimization
3310 options and version of GCC used.
3311
3312 Note that there may be no warning about a variable that is used only
3313 to compute a value that itself is never used, because such
3314 computations may be deleted by data flow analysis before the warnings
3315 are printed.
3316
3317 These warnings are made optional because GCC is not smart
3318 enough to see all the reasons why the code might be correct
3319 despite appearing to have an error.  Here is one example of how
3320 this can happen:
3321
3322 @smallexample
3323 @group
3324 @{
3325   int x;
3326   switch (y)
3327     @{
3328     case 1: x = 1;
3329       break;
3330     case 2: x = 4;
3331       break;
3332     case 3: x = 5;
3333     @}
3334   foo (x);
3335 @}
3336 @end group
3337 @end smallexample
3338
3339 @noindent
3340 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3341 always initialized, but GCC doesn't know this.  Here is
3342 another common case:
3343
3344 @smallexample
3345 @{
3346   int save_y;
3347   if (change_y) save_y = y, y = new_y;
3348   @dots{}
3349   if (change_y) y = save_y;
3350 @}
3351 @end smallexample
3352
3353 @noindent
3354 This has no bug because @code{save_y} is used only if it is set.
3355
3356 @cindex @code{longjmp} warnings
3357 This option also warns when a non-volatile automatic variable might be
3358 changed by a call to @code{longjmp}.  These warnings as well are possible
3359 only in optimizing compilation.
3360
3361 The compiler sees only the calls to @code{setjmp}.  It cannot know
3362 where @code{longjmp} will be called; in fact, a signal handler could
3363 call it at any point in the code.  As a result, you may get a warning
3364 even when there is in fact no problem because @code{longjmp} cannot
3365 in fact be called at the place which would cause a problem.
3366
3367 Some spurious warnings can be avoided if you declare all the functions
3368 you use that never return as @code{noreturn}.  @xref{Function
3369 Attributes}.
3370
3371 This warning is enabled by @option{-Wall} or @option{-Wextra}.
3372
3373 @item -Wunknown-pragmas
3374 @opindex Wunknown-pragmas
3375 @opindex Wno-unknown-pragmas
3376 @cindex warning for unknown pragmas
3377 @cindex unknown pragmas, warning
3378 @cindex pragmas, warning of unknown
3379 Warn when a #pragma directive is encountered which is not understood by
3380 GCC@.  If this command line option is used, warnings will even be issued
3381 for unknown pragmas in system header files.  This is not the case if
3382 the warnings were only enabled by the @option{-Wall} command line option.
3383
3384 @item -Wno-pragmas
3385 @opindex Wno-pragmas
3386 @opindex Wpragmas
3387 Do not warn about misuses of pragmas, such as incorrect parameters,
3388 invalid syntax, or conflicts between pragmas.  See also
3389 @samp{-Wunknown-pragmas}.
3390
3391 @item -Wstrict-aliasing
3392 @opindex Wstrict-aliasing
3393 @opindex Wno-strict-aliasing
3394 This option is only active when @option{-fstrict-aliasing} is active.
3395 It warns about code which might break the strict aliasing rules that the
3396 compiler is using for optimization.  The warning does not catch all
3397 cases, but does attempt to catch the more common pitfalls.  It is
3398 included in @option{-Wall}.
3399 It is equivalent to @option{-Wstrict-aliasing=3}
3400
3401 @item -Wstrict-aliasing=n
3402 @opindex Wstrict-aliasing=n
3403 @opindex Wno-strict-aliasing=n
3404 This option is only active when @option{-fstrict-aliasing} is active.
3405 It warns about code which might break the strict aliasing rules that the
3406 compiler is using for optimization.
3407 Higher levels correspond to higher accuracy (fewer false positives).
3408 Higher levels also correspond to more effort, similar to the way -O works.
3409 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3410 with n=3.
3411
3412 Level 1: Most aggressive, quick, least accurate.
3413 Possibly useful when higher levels
3414 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3415 false negatives.  However, it has many false positives.
3416 Warns for all pointer conversions between possibly incompatible types, 
3417 even if never dereferenced.  Runs in the frontend only.
3418
3419 Level 2: Aggressive, quick, not too precise.
3420 May still have many false positives (not as many as level 1 though),
3421 and few false negatives (but possibly more than level 1).
3422 Unlike level 1, it only warns when an address is taken.  Warns about
3423 incomplete types.  Runs in the frontend only.
3424
3425 Level 3 (default for @option{-Wstrict-aliasing}): 
3426 Should have very few false positives and few false 
3427 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3428 Takes care of the common punn+dereference pattern in the frontend:
3429 @code{*(int*)&some_float}.
3430 If optimization is enabled, it also runs in the backend, where it deals 
3431 with multiple statement cases using flow-sensitive points-to information.
3432 Only warns when the converted pointer is dereferenced.
3433 Does not warn about incomplete types.
3434
3435 @item -Wstrict-overflow
3436 @itemx -Wstrict-overflow=@var{n}
3437 @opindex Wstrict-overflow
3438 @opindex Wno-strict-overflow
3439 This option is only active when @option{-fstrict-overflow} is active.
3440 It warns about cases where the compiler optimizes based on the
3441 assumption that signed overflow does not occur.  Note that it does not
3442 warn about all cases where the code might overflow: it only warns
3443 about cases where the compiler implements some optimization.  Thus
3444 this warning depends on the optimization level.
3445
3446 An optimization which assumes that signed overflow does not occur is
3447 perfectly safe if the values of the variables involved are such that
3448 overflow never does, in fact, occur.  Therefore this warning can
3449 easily give a false positive: a warning about code which is not
3450 actually a problem.  To help focus on important issues, several
3451 warning levels are defined.  No warnings are issued for the use of
3452 undefined signed overflow when estimating how many iterations a loop
3453 will require, in particular when determining whether a loop will be
3454 executed at all.
3455
3456 @table @gcctabopt
3457 @item -Wstrict-overflow=1
3458 Warn about cases which are both questionable and easy to avoid.  For
3459 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3460 compiler will simplify this to @code{1}.  This level of
3461 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3462 are not, and must be explicitly requested.
3463
3464 @item -Wstrict-overflow=2
3465 Also warn about other cases where a comparison is simplified to a
3466 constant.  For example: @code{abs (x) >= 0}.  This can only be
3467 simplified when @option{-fstrict-overflow} is in effect, because
3468 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3469 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3470 @option{-Wstrict-overflow=2}.
3471
3472 @item -Wstrict-overflow=3
3473 Also warn about other cases where a comparison is simplified.  For
3474 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3475
3476 @item -Wstrict-overflow=4
3477 Also warn about other simplifications not covered by the above cases.
3478 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3479
3480 @item -Wstrict-overflow=5
3481 Also warn about cases where the compiler reduces the magnitude of a
3482 constant involved in a comparison.  For example: @code{x + 2 > y} will
3483 be simplified to @code{x + 1 >= y}.  This is reported only at the
3484 highest warning level because this simplification applies to many
3485 comparisons, so this warning level will give a very large number of
3486 false positives.
3487 @end table
3488
3489 @item -Warray-bounds
3490 @opindex Wno-array-bounds
3491 @opindex Warray-bounds
3492 This option is only active when @option{-ftree-vrp} is active
3493 (default for -O2 and above). It warns about subscripts to arrays
3494 that are always out of bounds. This warning is enabled by @option{-Wall}.
3495
3496 @item -Wno-div-by-zero
3497 @opindex Wno-div-by-zero
3498 @opindex Wdiv-by-zero
3499 Do not warn about compile-time integer division by zero.  Floating point
3500 division by zero is not warned about, as it can be a legitimate way of
3501 obtaining infinities and NaNs.
3502
3503 @item -Wsystem-headers
3504 @opindex Wsystem-headers
3505 @opindex Wno-system-headers
3506 @cindex warnings from system headers
3507 @cindex system headers, warnings from
3508 Print warning messages for constructs found in system header files.
3509 Warnings from system headers are normally suppressed, on the assumption
3510 that they usually do not indicate real problems and would only make the
3511 compiler output harder to read.  Using this command line option tells
3512 GCC to emit warnings from system headers as if they occurred in user
3513 code.  However, note that using @option{-Wall} in conjunction with this
3514 option will @emph{not} warn about unknown pragmas in system
3515 headers---for that, @option{-Wunknown-pragmas} must also be used.
3516
3517 @item -Wfloat-equal
3518 @opindex Wfloat-equal
3519 @opindex Wno-float-equal
3520 Warn if floating point values are used in equality comparisons.
3521
3522 The idea behind this is that sometimes it is convenient (for the
3523 programmer) to consider floating-point values as approximations to
3524 infinitely precise real numbers.  If you are doing this, then you need
3525 to compute (by analyzing the code, or in some other way) the maximum or
3526 likely maximum error that the computation introduces, and allow for it
3527 when performing comparisons (and when producing output, but that's a
3528 different problem).  In particular, instead of testing for equality, you
3529 would check to see whether the two values have ranges that overlap; and
3530 this is done with the relational operators, so equality comparisons are
3531 probably mistaken.
3532
3533 @item -Wtraditional @r{(C and Objective-C only)}
3534 @opindex Wtraditional
3535 @opindex Wno-traditional
3536 Warn about certain constructs that behave differently in traditional and
3537 ISO C@.  Also warn about ISO C constructs that have no traditional C
3538 equivalent, and/or problematic constructs which should be avoided.
3539
3540 @itemize @bullet
3541 @item
3542 Macro parameters that appear within string literals in the macro body.
3543 In traditional C macro replacement takes place within string literals,
3544 but does not in ISO C@.
3545
3546 @item
3547 In traditional C, some preprocessor directives did not exist.
3548 Traditional preprocessors would only consider a line to be a directive
3549 if the @samp{#} appeared in column 1 on the line.  Therefore
3550 @option{-Wtraditional} warns about directives that traditional C
3551 understands but would ignore because the @samp{#} does not appear as the
3552 first character on the line.  It also suggests you hide directives like
3553 @samp{#pragma} not understood by traditional C by indenting them.  Some
3554 traditional implementations would not recognize @samp{#elif}, so it
3555 suggests avoiding it altogether.
3556
3557 @item
3558 A function-like macro that appears without arguments.
3559
3560 @item
3561 The unary plus operator.
3562
3563 @item
3564 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3565 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3566 constants.)  Note, these suffixes appear in macros defined in the system
3567 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3568 Use of these macros in user code might normally lead to spurious
3569 warnings, however GCC's integrated preprocessor has enough context to
3570 avoid warning in these cases.
3571
3572 @item
3573 A function declared external in one block and then used after the end of
3574 the block.
3575
3576 @item
3577 A @code{switch} statement has an operand of type @code{long}.
3578
3579 @item
3580 A non-@code{static} function declaration follows a @code{static} one.
3581 This construct is not accepted by some traditional C compilers.
3582
3583 @item
3584 The ISO type of an integer constant has a different width or
3585 signedness from its traditional type.  This warning is only issued if
3586 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3587 typically represent bit patterns, are not warned about.
3588
3589 @item
3590 Usage of ISO string concatenation is detected.
3591
3592 @item
3593 Initialization of automatic aggregates.
3594
3595 @item
3596 Identifier conflicts with labels.  Traditional C lacks a separate
3597 namespace for labels.
3598
3599 @item
3600 Initialization of unions.  If the initializer is zero, the warning is
3601 omitted.  This is done under the assumption that the zero initializer in
3602 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3603 initializer warnings and relies on default initialization to zero in the
3604 traditional C case.
3605
3606 @item
3607 Conversions by prototypes between fixed/floating point values and vice
3608 versa.  The absence of these prototypes when compiling with traditional
3609 C would cause serious problems.  This is a subset of the possible
3610 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3611
3612 @item
3613 Use of ISO C style function definitions.  This warning intentionally is
3614 @emph{not} issued for prototype declarations or variadic functions
3615 because these ISO C features will appear in your code when using
3616 libiberty's traditional C compatibility macros, @code{PARAMS} and
3617 @code{VPARAMS}.  This warning is also bypassed for nested functions
3618 because that feature is already a GCC extension and thus not relevant to
3619 traditional C compatibility.
3620 @end itemize
3621
3622 @item -Wtraditional-conversion @r{(C and Objective-C only)}
3623 @opindex Wtraditional-conversion
3624 @opindex Wno-traditional-conversion
3625 Warn if a prototype causes a type conversion that is different from what
3626 would happen to the same argument in the absence of a prototype.  This
3627 includes conversions of fixed point to floating and vice versa, and
3628 conversions changing the width or signedness of a fixed point argument
3629 except when the same as the default promotion.
3630
3631 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
3632 @opindex Wdeclaration-after-statement
3633 @opindex Wno-declaration-after-statement
3634 Warn when a declaration is found after a statement in a block.  This
3635 construct, known from C++, was introduced with ISO C99 and is by default
3636 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3637 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3638
3639 @item -Wundef
3640 @opindex Wundef
3641 @opindex Wno-undef
3642 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3643
3644 @item -Wno-endif-labels
3645 @opindex Wno-endif-labels
3646 @opindex Wendif-labels
3647 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3648
3649 @item -Wshadow
3650 @opindex Wshadow
3651 @opindex Wno-shadow
3652 Warn whenever a local variable shadows another local variable, parameter or
3653 global variable or whenever a built-in function is shadowed.
3654
3655 @item -Wlarger-than=@var{len}
3656 @opindex Wlarger-than=@var{len}
3657 @opindex Wlarger-than-@var{len}
3658 Warn whenever an object of larger than @var{len} bytes is defined.
3659
3660 @item -Wframe-larger-than=@var{len}
3661 @opindex Wframe-larger-than
3662 Warn if the size of a function frame is larger than @var{len} bytes.
3663 The computation done to determine the stack frame size is approximate
3664 and not conservative.
3665 The actual requirements may be somewhat greater than @var{len}
3666 even if you do not get a warning.  In addition, any space allocated
3667 via @code{alloca}, variable-length arrays, or related constructs
3668 is not included by the compiler when determining
3669 whether or not to issue a warning.
3670
3671 @item -Wunsafe-loop-optimizations
3672 @opindex Wunsafe-loop-optimizations
3673 @opindex Wno-unsafe-loop-optimizations
3674 Warn if the loop cannot be optimized because the compiler could not
3675 assume anything on the bounds of the loop indices.  With
3676 @option{-funsafe-loop-optimizations} warn if the compiler made
3677 such assumptions.
3678
3679 @item -Wno-pedantic-ms-format @r{(MinGW targets only)}
3680 @opindex Wno-pedantic-ms-format
3681 @opindex Wpedantic-ms-format
3682 Disables the warnings about non-ISO @code{printf} / @code{scanf} format
3683 width specifiers @code{I32}, @code{I64}, and @code{I} used on Windows targets
3684 depending on the MS runtime, when you are using the options @option{-Wformat}
3685 and @option{-pedantic} without gnu-extensions.
3686
3687 @item -Wpointer-arith
3688 @opindex Wpointer-arith
3689 @opindex Wno-pointer-arith
3690 Warn about anything that depends on the ``size of'' a function type or
3691 of @code{void}.  GNU C assigns these types a size of 1, for
3692 convenience in calculations with @code{void *} pointers and pointers
3693 to functions.  In C++, warn also when an arithmetic operation involves
3694 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3695
3696 @item -Wtype-limits
3697 @opindex Wtype-limits
3698 @opindex Wno-type-limits
3699 Warn if a comparison is always true or always false due to the limited
3700 range of the data type, but do not warn for constant expressions.  For
3701 example, warn if an unsigned variable is compared against zero with
3702 @samp{<} or @samp{>=}.  This warning is also enabled by
3703 @option{-Wextra}.
3704
3705 @item -Wbad-function-cast @r{(C and Objective-C only)}
3706 @opindex Wbad-function-cast
3707 @opindex Wno-bad-function-cast
3708 Warn whenever a function call is cast to a non-matching type.
3709 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3710
3711 @item -Wc++-compat @r{(C and Objective-C only)}
3712 Warn about ISO C constructs that are outside of the common subset of
3713 ISO C and ISO C++, e.g.@: request for implicit conversion from
3714 @code{void *} to a pointer to non-@code{void} type.
3715
3716 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3717 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3718 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3719 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3720
3721 @item -Wcast-qual
3722 @opindex Wcast-qual
3723 @opindex Wno-cast-qual
3724 Warn whenever a pointer is cast so as to remove a type qualifier from
3725 the target type.  For example, warn if a @code{const char *} is cast
3726 to an ordinary @code{char *}.
3727
3728 Also warn when making a cast which introduces a type qualifier in an
3729 unsafe way.  For example, casting @code{char **} to @code{const char **}
3730 is unsafe, as in this example:
3731
3732 @smallexample
3733   /* p is char ** value.  */
3734   const char **q = (const char **) p;
3735   /* Assignment of readonly string to const char * is OK.  */
3736   *q = "string";
3737   /* Now char** pointer points to read-only memory.  */
3738   **p = 'b';
3739 @end smallexample
3740
3741 @item -Wcast-align
3742 @opindex Wcast-align
3743 @opindex Wno-cast-align
3744 Warn whenever a pointer is cast such that the required alignment of the
3745 target is increased.  For example, warn if a @code{char *} is cast to
3746 an @code{int *} on machines where integers can only be accessed at
3747 two- or four-byte boundaries.
3748
3749 @item -Wwrite-strings
3750 @opindex Wwrite-strings
3751 @opindex Wno-write-strings
3752 When compiling C, give string constants the type @code{const
3753 char[@var{length}]} so that copying the address of one into a
3754 non-@code{const} @code{char *} pointer will get a warning.  These
3755 warnings will help you find at compile time code that can try to write
3756 into a string constant, but only if you have been very careful about
3757 using @code{const} in declarations and prototypes.  Otherwise, it will
3758 just be a nuisance. This is why we did not make @option{-Wall} request
3759 these warnings.
3760
3761 When compiling C++, warn about the deprecated conversion from string
3762 literals to @code{char *}.  This warning is enabled by default for C++
3763 programs.
3764
3765 @item -Wclobbered
3766 @opindex Wclobbered
3767 @opindex Wno-clobbered
3768 Warn for variables that might be changed by @samp{longjmp} or
3769 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3770
3771 @item -Wconversion
3772 @opindex Wconversion
3773 @opindex Wno-conversion
3774 Warn for implicit conversions that may alter a value. This includes
3775 conversions between real and integer, like @code{abs (x)} when
3776 @code{x} is @code{double}; conversions between signed and unsigned,
3777 like @code{unsigned ui = -1}; and conversions to smaller types, like
3778 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3779 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3780 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3781 conversions between signed and unsigned integers can be disabled by
3782 using @option{-Wno-sign-conversion}.
3783
3784 For C++, also warn for conversions between @code{NULL} and non-pointer
3785 types; confusing overload resolution for user-defined conversions; and
3786 conversions that will never use a type conversion operator:
3787 conversions to @code{void}, the same type, a base class or a reference
3788 to them. Warnings about conversions between signed and unsigned
3789 integers are disabled by default in C++ unless
3790 @option{-Wsign-conversion} is explicitly enabled.
3791
3792 @item -Wempty-body
3793 @opindex Wempty-body
3794 @opindex Wno-empty-body
3795 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3796 while} statement.  This warning is also enabled by @option{-Wextra}.
3797
3798 @item -Wenum-compare
3799 @opindex Wenum-compare
3800 @opindex Wno-enum-compare
3801 Warn about a comparison between values of different enum types. In C++
3802 this warning is enabled by default.  In C this warning is enabled by
3803 @option{-Wall}.
3804
3805 @item -Wsign-compare
3806 @opindex Wsign-compare
3807 @opindex Wno-sign-compare
3808 @cindex warning for comparison of signed and unsigned values
3809 @cindex comparison of signed and unsigned values, warning
3810 @cindex signed and unsigned values, comparison warning
3811 Warn when a comparison between signed and unsigned values could produce
3812 an incorrect result when the signed value is converted to unsigned.
3813 This warning is also enabled by @option{-Wextra}; to get the other warnings
3814 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3815
3816 @item -Wsign-conversion
3817 @opindex Wsign-conversion
3818 @opindex Wno-sign-conversion
3819 Warn for implicit conversions that may change the sign of an integer
3820 value, like assigning a signed integer expression to an unsigned
3821 integer variable. An explicit cast silences the warning. In C, this
3822 option is enabled also by @option{-Wconversion}.
3823
3824 @item -Waddress
3825 @opindex Waddress
3826 @opindex Wno-address
3827 Warn about suspicious uses of memory addresses. These include using
3828 the address of a function in a conditional expression, such as
3829 @code{void func(void); if (func)}, and comparisons against the memory
3830 address of a string literal, such as @code{if (x == "abc")}.  Such
3831 uses typically indicate a programmer error: the address of a function
3832 always evaluates to true, so their use in a conditional usually
3833 indicate that the programmer forgot the parentheses in a function
3834 call; and comparisons against string literals result in unspecified
3835 behavior and are not portable in C, so they usually indicate that the
3836 programmer intended to use @code{strcmp}.  This warning is enabled by
3837 @option{-Wall}.
3838
3839 @item -Wlogical-op
3840 @opindex Wlogical-op
3841 @opindex Wno-logical-op
3842 Warn about suspicious uses of logical operators in expressions.
3843 This includes using logical operators in contexts where a
3844 bit-wise operator is likely to be expected.
3845
3846 @item -Waggregate-return
3847 @opindex Waggregate-return
3848 @opindex Wno-aggregate-return
3849 Warn if any functions that return structures or unions are defined or
3850 called.  (In languages where you can return an array, this also elicits
3851 a warning.)
3852
3853 @item -Wno-attributes
3854 @opindex Wno-attributes
3855 @opindex Wattributes
3856 Do not warn if an unexpected @code{__attribute__} is used, such as
3857 unrecognized attributes, function attributes applied to variables,
3858 etc.  This will not stop errors for incorrect use of supported
3859 attributes.
3860
3861 @item -Wno-builtin-macro-redefined
3862 @opindex Wno-builtin-macro-redefined
3863 @opindex Wbuiltin-macro-redefined
3864 Do not warn if certain built-in macros are redefined.  This suppresses
3865 warnings for redefinition of @code{__TIMESTAMP__}, @code{__TIME__},
3866 @code{__DATE__}, @code{__FILE__}, and @code{__BASE_FILE__}.
3867
3868 @item -Wstrict-prototypes @r{(C and Objective-C only)}
3869 @opindex Wstrict-prototypes
3870 @opindex Wno-strict-prototypes
3871 Warn if a function is declared or defined without specifying the
3872 argument types.  (An old-style function definition is permitted without
3873 a warning if preceded by a declaration which specifies the argument
3874 types.)
3875
3876 @item -Wold-style-declaration @r{(C and Objective-C only)}
3877 @opindex Wold-style-declaration
3878 @opindex Wno-old-style-declaration
3879 Warn for obsolescent usages, according to the C Standard, in a
3880 declaration. For example, warn if storage-class specifiers like
3881 @code{static} are not the first things in a declaration.  This warning
3882 is also enabled by @option{-Wextra}.
3883
3884 @item -Wold-style-definition @r{(C and Objective-C only)}
3885 @opindex Wold-style-definition
3886 @opindex Wno-old-style-definition
3887 Warn if an old-style function definition is used.  A warning is given
3888 even if there is a previous prototype.
3889
3890 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
3891 @opindex Wmissing-parameter-type
3892 @opindex Wno-missing-parameter-type
3893 A function parameter is declared without a type specifier in K&R-style
3894 functions:
3895
3896 @smallexample
3897 void foo(bar) @{ @}
3898 @end smallexample
3899
3900 This warning is also enabled by @option{-Wextra}.
3901
3902 @item -Wmissing-prototypes @r{(C and Objective-C only)}
3903 @opindex Wmissing-prototypes
3904 @opindex Wno-missing-prototypes
3905 Warn if a global function is defined without a previous prototype
3906 declaration.  This warning is issued even if the definition itself
3907 provides a prototype.  The aim is to detect global functions that fail
3908 to be declared in header files.
3909
3910 @item -Wmissing-declarations
3911 @opindex Wmissing-declarations
3912 @opindex Wno-missing-declarations
3913 Warn if a global function is defined without a previous declaration.
3914 Do so even if the definition itself provides a prototype.
3915 Use this option to detect global functions that are not declared in
3916 header files.  In C++, no warnings are issued for function templates,
3917 or for inline functions, or for functions in anonymous namespaces.
3918
3919 @item -Wmissing-field-initializers
3920 @opindex Wmissing-field-initializers
3921 @opindex Wno-missing-field-initializers
3922 @opindex W
3923 @opindex Wextra
3924 @opindex Wno-extra
3925 Warn if a structure's initializer has some fields missing.  For
3926 example, the following code would cause such a warning, because
3927 @code{x.h} is implicitly zero:
3928
3929 @smallexample
3930 struct s @{ int f, g, h; @};
3931 struct s x = @{ 3, 4 @};
3932 @end smallexample
3933
3934 This option does not warn about designated initializers, so the following
3935 modification would not trigger a warning:
3936
3937 @smallexample
3938 struct s @{ int f, g, h; @};
3939 struct s x = @{ .f = 3, .g = 4 @};
3940 @end smallexample
3941
3942 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3943 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3944
3945 @item -Wmissing-noreturn
3946 @opindex Wmissing-noreturn
3947 @opindex Wno-missing-noreturn
3948 Warn about functions which might be candidates for attribute @code{noreturn}.
3949 Note these are only possible candidates, not absolute ones.  Care should
3950 be taken to manually verify functions actually do not ever return before
3951 adding the @code{noreturn} attribute, otherwise subtle code generation
3952 bugs could be introduced.  You will not get a warning for @code{main} in
3953 hosted C environments.
3954
3955 @item -Wmissing-format-attribute
3956 @opindex Wmissing-format-attribute
3957 @opindex Wno-missing-format-attribute
3958 @opindex Wformat
3959 @opindex Wno-format
3960 Warn about function pointers which might be candidates for @code{format}
3961 attributes.  Note these are only possible candidates, not absolute ones.
3962 GCC will guess that function pointers with @code{format} attributes that
3963 are used in assignment, initialization, parameter passing or return
3964 statements should have a corresponding @code{format} attribute in the
3965 resulting type.  I.e.@: the left-hand side of the assignment or
3966 initialization, the type of the parameter variable, or the return type
3967 of the containing function respectively should also have a @code{format}
3968 attribute to avoid the warning.
3969
3970 GCC will also warn about function definitions which might be
3971 candidates for @code{format} attributes.  Again, these are only
3972 possible candidates.  GCC will guess that @code{format} attributes
3973 might be appropriate for any function that calls a function like
3974 @code{vprintf} or @code{vscanf}, but this might not always be the
3975 case, and some functions for which @code{format} attributes are
3976 appropriate may not be detected.
3977
3978 @item -Wno-multichar
3979 @opindex Wno-multichar
3980 @opindex Wmultichar
3981 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3982 Usually they indicate a typo in the user's code, as they have
3983 implementation-defined values, and should not be used in portable code.
3984
3985 @item -Wnormalized=<none|id|nfc|nfkc>
3986 @opindex Wnormalized=
3987 @cindex NFC
3988 @cindex NFKC
3989 @cindex character set, input normalization
3990 In ISO C and ISO C++, two identifiers are different if they are
3991 different sequences of characters.  However, sometimes when characters
3992 outside the basic ASCII character set are used, you can have two
3993 different character sequences that look the same.  To avoid confusion,
3994 the ISO 10646 standard sets out some @dfn{normalization rules} which
3995 when applied ensure that two sequences that look the same are turned into
3996 the same sequence.  GCC can warn you if you are using identifiers which
3997 have not been normalized; this option controls that warning.
3998
3999 There are four levels of warning that GCC supports.  The default is
4000 @option{-Wnormalized=nfc}, which warns about any identifier which is
4001 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
4002 recommended form for most uses.
4003
4004 Unfortunately, there are some characters which ISO C and ISO C++ allow
4005 in identifiers that when turned into NFC aren't allowable as
4006 identifiers.  That is, there's no way to use these symbols in portable
4007 ISO C or C++ and have all your identifiers in NFC@.
4008 @option{-Wnormalized=id} suppresses the warning for these characters.
4009 It is hoped that future versions of the standards involved will correct
4010 this, which is why this option is not the default.
4011
4012 You can switch the warning off for all characters by writing
4013 @option{-Wnormalized=none}.  You would only want to do this if you
4014 were using some other normalization scheme (like ``D''), because
4015 otherwise you can easily create bugs that are literally impossible to see.
4016
4017 Some characters in ISO 10646 have distinct meanings but look identical
4018 in some fonts or display methodologies, especially once formatting has
4019 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
4020 LETTER N'', will display just like a regular @code{n} which has been
4021 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
4022 normalization scheme to convert all these into a standard form as
4023 well, and GCC will warn if your code is not in NFKC if you use
4024 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
4025 about every identifier that contains the letter O because it might be
4026 confused with the digit 0, and so is not the default, but may be
4027 useful as a local coding convention if the programming environment is
4028 unable to be fixed to display these characters distinctly.
4029
4030 @item -Wno-deprecated
4031 @opindex Wno-deprecated
4032 @opindex Wdeprecated
4033 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
4034
4035 @item -Wno-deprecated-declarations
4036 @opindex Wno-deprecated-declarations
4037 @opindex Wdeprecated-declarations
4038 Do not warn about uses of functions (@pxref{Function Attributes}),
4039 variables (@pxref{Variable Attributes}), and types (@pxref{Type
4040 Attributes}) marked as deprecated by using the @code{deprecated}
4041 attribute.
4042
4043 @item -Wno-overflow
4044 @opindex Wno-overflow
4045 @opindex Woverflow
4046 Do not warn about compile-time overflow in constant expressions.
4047
4048 @item -Woverride-init @r{(C and Objective-C only)}
4049 @opindex Woverride-init
4050 @opindex Wno-override-init
4051 @opindex W
4052 @opindex Wextra
4053 @opindex Wno-extra
4054 Warn if an initialized field without side effects is overridden when
4055 using designated initializers (@pxref{Designated Inits, , Designated
4056 Initializers}).
4057
4058 This warning is included in @option{-Wextra}.  To get other
4059 @option{-Wextra} warnings without this one, use @samp{-Wextra
4060 -Wno-override-init}.
4061
4062 @item -Wpacked
4063 @opindex Wpacked
4064 @opindex Wno-packed
4065 Warn if a structure is given the packed attribute, but the packed
4066 attribute has no effect on the layout or size of the structure.
4067 Such structures may be mis-aligned for little benefit.  For
4068 instance, in this code, the variable @code{f.x} in @code{struct bar}
4069 will be misaligned even though @code{struct bar} does not itself
4070 have the packed attribute:
4071
4072 @smallexample
4073 @group
4074 struct foo @{
4075   int x;
4076   char a, b, c, d;
4077 @} __attribute__((packed));
4078 struct bar @{
4079   char z;
4080   struct foo f;
4081 @};
4082 @end group
4083 @end smallexample
4084
4085 @item -Wpacked-bitfield-compat
4086 @opindex Wpacked-bitfield-compat
4087 @opindex Wno-packed-bitfield-compat
4088 The 4.1, 4.2 and 4.3 series of GCC ignore the @code{packed} attribute
4089 on bit-fields of type @code{char}.  This has been fixed in GCC 4.4 but
4090 the change can lead to differences in the structure layout.  GCC
4091 informs you when the offset of such a field has changed in GCC 4.4.
4092 For example there is no longer a 4-bit padding between field @code{a}
4093 and @code{b} in this structure:
4094
4095 @smallexample
4096 struct foo
4097 @{
4098   char a:4;
4099   char b:8;
4100 @} __attribute__ ((packed));
4101 @end smallexample
4102
4103 This warning is enabled by default.  Use
4104 @option{-Wno-packed-bitfield-compat} to disable this warning.
4105
4106 @item -Wpadded
4107 @opindex Wpadded
4108 @opindex Wno-padded
4109 Warn if padding is included in a structure, either to align an element
4110 of the structure or to align the whole structure.  Sometimes when this
4111 happens it is possible to rearrange the fields of the structure to
4112 reduce the padding and so make the structure smaller.
4113
4114 @item -Wredundant-decls
4115 @opindex Wredundant-decls
4116 @opindex Wno-redundant-decls
4117 Warn if anything is declared more than once in the same scope, even in
4118 cases where multiple declaration is valid and changes nothing.
4119
4120 @item -Wnested-externs @r{(C and Objective-C only)}
4121 @opindex Wnested-externs
4122 @opindex Wno-nested-externs
4123 Warn if an @code{extern} declaration is encountered within a function.
4124
4125 @item -Wunreachable-code
4126 @opindex Wunreachable-code
4127 @opindex Wno-unreachable-code
4128 Warn if the compiler detects that code will never be executed.
4129
4130 This option is intended to warn when the compiler detects that at
4131 least a whole line of source code will never be executed, because
4132 some condition is never satisfied or because it is after a
4133 procedure that never returns.
4134
4135 It is possible for this option to produce a warning even though there
4136 are circumstances under which part of the affected line can be executed,
4137 so care should be taken when removing apparently-unreachable code.
4138
4139 For instance, when a function is inlined, a warning may mean that the
4140 line is unreachable in only one inlined copy of the function.
4141
4142 This option is not made part of @option{-Wall} because in a debugging
4143 version of a program there is often substantial code which checks
4144 correct functioning of the program and is, hopefully, unreachable
4145 because the program does work.  Another common use of unreachable
4146 code is to provide behavior which is selectable at compile-time.
4147
4148 @item -Winline
4149 @opindex Winline
4150 @opindex Wno-inline
4151 Warn if a function can not be inlined and it was declared as inline.
4152 Even with this option, the compiler will not warn about failures to
4153 inline functions declared in system headers.
4154
4155 The compiler uses a variety of heuristics to determine whether or not
4156 to inline a function.  For example, the compiler takes into account
4157 the size of the function being inlined and the amount of inlining
4158 that has already been done in the current function.  Therefore,
4159 seemingly insignificant changes in the source program can cause the
4160 warnings produced by @option{-Winline} to appear or disappear.
4161
4162 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
4163 @opindex Wno-invalid-offsetof
4164 @opindex Winvalid-offsetof
4165 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
4166 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
4167 to a non-POD type is undefined.  In existing C++ implementations,
4168 however, @samp{offsetof} typically gives meaningful results even when
4169 applied to certain kinds of non-POD types. (Such as a simple
4170 @samp{struct} that fails to be a POD type only by virtue of having a
4171 constructor.)  This flag is for users who are aware that they are
4172 writing nonportable code and who have deliberately chosen to ignore the
4173 warning about it.
4174
4175 The restrictions on @samp{offsetof} may be relaxed in a future version
4176 of the C++ standard.
4177
4178 @item -Wno-int-to-pointer-cast @r{(C and Objective-C only)}
4179 @opindex Wno-int-to-pointer-cast
4180 @opindex Wint-to-pointer-cast
4181 Suppress warnings from casts to pointer type of an integer of a
4182 different size.
4183
4184 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
4185 @opindex Wno-pointer-to-int-cast
4186 @opindex Wpointer-to-int-cast
4187 Suppress warnings from casts from a pointer to an integer type of a
4188 different size.
4189
4190 @item -Winvalid-pch
4191 @opindex Winvalid-pch
4192 @opindex Wno-invalid-pch
4193 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
4194 the search path but can't be used.
4195
4196 @item -Wlong-long
4197 @opindex Wlong-long
4198 @opindex Wno-long-long
4199 Warn if @samp{long long} type is used.  This is enabled by either
4200 @option{-pedantic} or @option{-Wtraditional} in ISO C90 and C++98
4201 modes.  To inhibit the warning messages, use @option{-Wno-long-long}.
4202
4203 @item -Wvariadic-macros
4204 @opindex Wvariadic-macros
4205 @opindex Wno-variadic-macros
4206 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
4207 alternate syntax when in pedantic ISO C99 mode.  This is default.
4208 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
4209
4210 @item -Wvla
4211 @opindex Wvla
4212 @opindex Wno-vla
4213 Warn if variable length array is used in the code.
4214 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
4215 the variable length array.
4216
4217 @item -Wvolatile-register-var
4218 @opindex Wvolatile-register-var
4219 @opindex Wno-volatile-register-var
4220 Warn if a register variable is declared volatile.  The volatile
4221 modifier does not inhibit all optimizations that may eliminate reads
4222 and/or writes to register variables.  This warning is enabled by
4223 @option{-Wall}.
4224
4225 @item -Wdisabled-optimization
4226 @opindex Wdisabled-optimization
4227 @opindex Wno-disabled-optimization
4228 Warn if a requested optimization pass is disabled.  This warning does
4229 not generally indicate that there is anything wrong with your code; it
4230 merely indicates that GCC's optimizers were unable to handle the code
4231 effectively.  Often, the problem is that your code is too big or too
4232 complex; GCC will refuse to optimize programs when the optimization
4233 itself is likely to take inordinate amounts of time.
4234
4235 @item -Wpointer-sign @r{(C and Objective-C only)}
4236 @opindex Wpointer-sign
4237 @opindex Wno-pointer-sign
4238 Warn for pointer argument passing or assignment with different signedness.
4239 This option is only supported for C and Objective-C@.  It is implied by
4240 @option{-Wall} and by @option{-pedantic}, which can be disabled with
4241 @option{-Wno-pointer-sign}.
4242
4243 @item -Wstack-protector
4244 @opindex Wstack-protector
4245 @opindex Wno-stack-protector
4246 This option is only active when @option{-fstack-protector} is active.  It
4247 warns about functions that will not be protected against stack smashing.
4248
4249 @item -Wno-mudflap
4250 @opindex Wno-mudflap
4251 Suppress warnings about constructs that cannot be instrumented by
4252 @option{-fmudflap}.
4253
4254 @item -Woverlength-strings
4255 @opindex Woverlength-strings
4256 @opindex Wno-overlength-strings
4257 Warn about string constants which are longer than the ``minimum
4258 maximum'' length specified in the C standard.  Modern compilers
4259 generally allow string constants which are much longer than the
4260 standard's minimum limit, but very portable programs should avoid
4261 using longer strings.
4262
4263 The limit applies @emph{after} string constant concatenation, and does
4264 not count the trailing NUL@.  In C89, the limit was 509 characters; in
4265 C99, it was raised to 4095.  C++98 does not specify a normative
4266 minimum maximum, so we do not diagnose overlength strings in C++@.
4267
4268 This option is implied by @option{-pedantic}, and can be disabled with
4269 @option{-Wno-overlength-strings}.
4270
4271 @item -Wunsuffixed-float-constants
4272 @opindex Wunsuffixed-float-constants
4273
4274 GCC will issue a warning for any floating constant that does not have
4275 a suffix.  When used together with @option{-Wsystem-headers} it will
4276 warn about such constants in system header files.  This can be useful
4277 when preparing code to use with the @code{FLOAT_CONST_DECIMAL64} pragma
4278 from the decimal floating-point extension to C99.
4279 @end table
4280
4281 @node Debugging Options
4282 @section Options for Debugging Your Program or GCC
4283 @cindex options, debugging
4284 @cindex debugging information options
4285
4286 GCC has various special options that are used for debugging
4287 either your program or GCC:
4288
4289 @table @gcctabopt
4290 @item -g
4291 @opindex g
4292 Produce debugging information in the operating system's native format
4293 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
4294 information.
4295
4296 On most systems that use stabs format, @option{-g} enables use of extra
4297 debugging information that only GDB can use; this extra information
4298 makes debugging work better in GDB but will probably make other debuggers
4299 crash or
4300 refuse to read the program.  If you want to control for certain whether
4301 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
4302 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4303
4304 GCC allows you to use @option{-g} with
4305 @option{-O}.  The shortcuts taken by optimized code may occasionally
4306 produce surprising results: some variables you declared may not exist
4307 at all; flow of control may briefly move where you did not expect it;
4308 some statements may not be executed because they compute constant
4309 results or their values were already at hand; some statements may
4310 execute in different places because they were moved out of loops.
4311
4312 Nevertheless it proves possible to debug optimized output.  This makes
4313 it reasonable to use the optimizer for programs that might have bugs.
4314
4315 The following options are useful when GCC is generated with the
4316 capability for more than one debugging format.
4317
4318 @item -ggdb
4319 @opindex ggdb
4320 Produce debugging information for use by GDB@.  This means to use the
4321 most expressive format available (DWARF 2, stabs, or the native format
4322 if neither of those are supported), including GDB extensions if at all
4323 possible.
4324
4325 @item -gstabs
4326 @opindex gstabs
4327 Produce debugging information in stabs format (if that is supported),
4328 without GDB extensions.  This is the format used by DBX on most BSD
4329 systems.  On MIPS, Alpha and System V Release 4 systems this option
4330 produces stabs debugging output which is not understood by DBX or SDB@.
4331 On System V Release 4 systems this option requires the GNU assembler.
4332
4333 @item -feliminate-unused-debug-symbols
4334 @opindex feliminate-unused-debug-symbols
4335 Produce debugging information in stabs format (if that is supported),
4336 for only symbols that are actually used.
4337
4338 @item -femit-class-debug-always
4339 Instead of emitting debugging information for a C++ class in only one
4340 object file, emit it in all object files using the class.  This option
4341 should be used only with debuggers that are unable to handle the way GCC
4342 normally emits debugging information for classes because using this
4343 option will increase the size of debugging information by as much as a
4344 factor of two.
4345
4346 @item -gstabs+
4347 @opindex gstabs+
4348 Produce debugging information in stabs format (if that is supported),
4349 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4350 use of these extensions is likely to make other debuggers crash or
4351 refuse to read the program.
4352
4353 @item -gcoff
4354 @opindex gcoff
4355 Produce debugging information in COFF format (if that is supported).
4356 This is the format used by SDB on most System V systems prior to
4357 System V Release 4.
4358
4359 @item -gxcoff
4360 @opindex gxcoff
4361 Produce debugging information in XCOFF format (if that is supported).
4362 This is the format used by the DBX debugger on IBM RS/6000 systems.
4363
4364 @item -gxcoff+
4365 @opindex gxcoff+
4366 Produce debugging information in XCOFF format (if that is supported),
4367 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4368 use of these extensions is likely to make other debuggers crash or
4369 refuse to read the program, and may cause assemblers other than the GNU
4370 assembler (GAS) to fail with an error.
4371
4372 @item -gdwarf-@var{version}
4373 @opindex gdwarf-@var{version}
4374 Produce debugging information in DWARF format (if that is
4375 supported).  This is the format used by DBX on IRIX 6.  The value
4376 of @var{version} may be either 2 or 3; the default version is 2.
4377
4378 Note that with DWARF version 2 some ports require, and will always
4379 use, some non-conflicting DWARF 3 extensions in the unwind tables.
4380
4381 @item -gvms
4382 @opindex gvms
4383 Produce debugging information in VMS debug format (if that is
4384 supported).  This is the format used by DEBUG on VMS systems.
4385
4386 @item -g@var{level}
4387 @itemx -ggdb@var{level}
4388 @itemx -gstabs@var{level}
4389 @itemx -gcoff@var{level}
4390 @itemx -gxcoff@var{level}
4391 @itemx -gvms@var{level}
4392 Request debugging information and also use @var{level} to specify how
4393 much information.  The default level is 2.
4394
4395 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4396 @option{-g}.
4397
4398 Level 1 produces minimal information, enough for making backtraces in
4399 parts of the program that you don't plan to debug.  This includes
4400 descriptions of functions and external variables, but no information
4401 about local variables and no line numbers.
4402
4403 Level 3 includes extra information, such as all the macro definitions
4404 present in the program.  Some debuggers support macro expansion when
4405 you use @option{-g3}.
4406
4407 @option{-gdwarf-2} does not accept a concatenated debug level, because
4408 GCC used to support an option @option{-gdwarf} that meant to generate
4409 debug information in version 1 of the DWARF format (which is very
4410 different from version 2), and it would have been too confusing.  That
4411 debug format is long obsolete, but the option cannot be changed now.
4412 Instead use an additional @option{-g@var{level}} option to change the
4413 debug level for DWARF.
4414
4415 @item -gtoggle
4416 @opindex gtoggle
4417 Turn off generation of debug info, if leaving out this option would have
4418 generated it, or turn it on at level 2 otherwise.  The position of this
4419 argument in the command line does not matter, it takes effect after all
4420 other options are processed, and it does so only once, no matter how
4421 many times it is given.  This is mainly intended to be used with
4422 @option{-fcompare-debug}.
4423
4424 @item -fdump-final-insns=@var{file}
4425 @opindex fdump-final-insns=
4426 Dump the final internal representation (RTL) to @var{file}.
4427
4428 @item -fcompare-debug@r{[}=@var{opts}@r{]}
4429 @opindex fcompare-debug
4430 @opindex fno-compare-debug
4431 If no error occurs during compilation, run the compiler a second time,
4432 adding @var{opts} and @option{-fcompare-debug-second} to the arguments
4433 passed to the second compilation.  Dump the final internal
4434 representation in both compilations, and print an error if they differ.
4435
4436 If the equal sign is omitted, the default @option{-gtoggle} is used.
4437
4438 The environment variable @env{GCC_COMPARE_DEBUG}, if defined, non-empty
4439 and nonzero, implicitly enables @option{-fcompare-debug}.  If
4440 @env{GCC_COMPARE_DEBUG} is defined to a string starting with a dash,
4441 then it is used for @var{opts}, otherwise the default @option{-gtoggle}
4442 is used.
4443
4444 @option{-fcompare-debug=}, with the equal sign but without @var{opts},
4445 is equivalent to @option{-fno-compare-debug}, which disables the dumping
4446 of the final representation and the second compilation, preventing even
4447 @env{GCC_COMPARE_DEBUG} from taking effect.
4448
4449 To verify full coverage during @option{-fcompare-debug} testing, set
4450 @env{GCC_COMPARE_DEBUG} to say @samp{-fcompare-debug-not-overridden},
4451 which GCC will reject as an invalid option in any actual compilation
4452 (rather than preprocessing, assembly or linking).  To get just a
4453 warning, setting @env{GCC_COMPARE_DEBUG} to @samp{-w%n-fcompare-debug
4454 not overridden} will do.
4455
4456 @item -fcompare-debug-second
4457 @opindex fcompare-debug-second
4458 This option is implicitly passed to the compiler for the second
4459 compilation requested by @option{-fcompare-debug}, along with options to
4460 silence warnings, and omitting other options that would cause
4461 side-effect compiler outputs to files or to the standard output.  Dump
4462 files and preserved temporary files are renamed so as to contain the
4463 @code{.gk} additional extension during the second compilation, to avoid
4464 overwriting those generated by the first.
4465
4466 When this option is passed to the compiler driver, it causes the
4467 @emph{first} compilation to be skipped, which makes it useful for little
4468 other than debugging the compiler proper.
4469
4470 @item -feliminate-dwarf2-dups
4471 @opindex feliminate-dwarf2-dups
4472 Compress DWARF2 debugging information by eliminating duplicated
4473 information about each symbol.  This option only makes sense when
4474 generating DWARF2 debugging information with @option{-gdwarf-2}.
4475
4476 @item -femit-struct-debug-baseonly
4477 Emit debug information for struct-like types
4478 only when the base name of the compilation source file
4479 matches the base name of file in which the struct was defined.
4480
4481 This option substantially reduces the size of debugging information,
4482 but at significant potential loss in type information to the debugger.
4483 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4484 See @option{-femit-struct-debug-detailed} for more detailed control.
4485
4486 This option works only with DWARF 2.
4487
4488 @item -femit-struct-debug-reduced
4489 Emit debug information for struct-like types
4490 only when the base name of the compilation source file
4491 matches the base name of file in which the type was defined,
4492 unless the struct is a template or defined in a system header.
4493
4494 This option significantly reduces the size of debugging information,
4495 with some potential loss in type information to the debugger.
4496 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4497 See @option{-femit-struct-debug-detailed} for more detailed control.
4498
4499 This option works only with DWARF 2.
4500
4501 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4502 Specify the struct-like types
4503 for which the compiler will generate debug information.
4504 The intent is to reduce duplicate struct debug information
4505 between different object files within the same program.
4506
4507 This option is a detailed version of
4508 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4509 which will serve for most needs.
4510
4511 A specification has the syntax
4512 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4513
4514 The optional first word limits the specification to
4515 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4516 A struct type is used directly when it is the type of a variable, member.
4517 Indirect uses arise through pointers to structs.
4518 That is, when use of an incomplete struct would be legal, the use is indirect.
4519 An example is
4520 @samp{struct one direct; struct two * indirect;}.
4521
4522 The optional second word limits the specification to
4523 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4524 Generic structs are a bit complicated to explain.
4525 For C++, these are non-explicit specializations of template classes,
4526 or non-template classes within the above.
4527 Other programming languages have generics,
4528 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4529
4530 The third word specifies the source files for those
4531 structs for which the compiler will emit debug information.
4532 The values @samp{none} and @samp{any} have the normal meaning.
4533 The value @samp{base} means that
4534 the base of name of the file in which the type declaration appears
4535 must match the base of the name of the main compilation file.
4536 In practice, this means that
4537 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4538 but types declared in other header will not.
4539 The value @samp{sys} means those types satisfying @samp{base}
4540 or declared in system or compiler headers.
4541
4542 You may need to experiment to determine the best settings for your application.
4543
4544 The default is @samp{-femit-struct-debug-detailed=all}.
4545
4546 This option works only with DWARF 2.
4547
4548 @item -fno-merge-debug-strings
4549 @opindex fmerge-debug-strings
4550 @opindex fno-merge-debug-strings
4551 Direct the linker to not merge together strings in the debugging
4552 information which are identical in different object files.  Merging is
4553 not supported by all assemblers or linkers.  Merging decreases the size
4554 of the debug information in the output file at the cost of increasing
4555 link processing time.  Merging is enabled by default.
4556
4557 @item -fdebug-prefix-map=@var{old}=@var{new}
4558 @opindex fdebug-prefix-map
4559 When compiling files in directory @file{@var{old}}, record debugging
4560 information describing them as in @file{@var{new}} instead.
4561
4562 @item -fno-dwarf2-cfi-asm
4563 @opindex fdwarf2-cfi-asm
4564 @opindex fno-dwarf2-cfi-asm
4565 Emit DWARF 2 unwind info as compiler generated @code{.eh_frame} section
4566 instead of using GAS @code{.cfi_*} directives.
4567
4568 @cindex @command{prof}
4569 @item -p
4570 @opindex p
4571 Generate extra code to write profile information suitable for the
4572 analysis program @command{prof}.  You must use this option when compiling
4573 the source files you want data about, and you must also use it when
4574 linking.
4575
4576 @cindex @command{gprof}
4577 @item -pg
4578 @opindex pg
4579 Generate extra code to write profile information suitable for the
4580 analysis program @command{gprof}.  You must use this option when compiling
4581 the source files you want data about, and you must also use it when
4582 linking.
4583
4584 @item -Q
4585 @opindex Q
4586 Makes the compiler print out each function name as it is compiled, and
4587 print some statistics about each pass when it finishes.
4588
4589 @item -ftime-report
4590 @opindex ftime-report
4591 Makes the compiler print some statistics about the time consumed by each
4592 pass when it finishes.
4593
4594 @item -fmem-report
4595 @opindex fmem-report
4596 Makes the compiler print some statistics about permanent memory
4597 allocation when it finishes.
4598
4599 @item -fpre-ipa-mem-report
4600 @opindex fpre-ipa-mem-report
4601 @item -fpost-ipa-mem-report
4602 @opindex fpost-ipa-mem-report
4603 Makes the compiler print some statistics about permanent memory
4604 allocation before or after interprocedural optimization.
4605
4606 @item -fprofile-arcs
4607 @opindex fprofile-arcs
4608 Add code so that program flow @dfn{arcs} are instrumented.  During
4609 execution the program records how many times each branch and call is
4610 executed and how many times it is taken or returns.  When the compiled
4611 program exits it saves this data to a file called
4612 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4613 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4614 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4615 @var{auxname} is generated from the name of the output file, if
4616 explicitly specified and it is not the final executable, otherwise it is
4617 the basename of the source file.  In both cases any suffix is removed
4618 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4619 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4620 @xref{Cross-profiling}.
4621
4622 @cindex @command{gcov}
4623 @item --coverage
4624 @opindex coverage
4625
4626 This option is used to compile and link code instrumented for coverage
4627 analysis.  The option is a synonym for @option{-fprofile-arcs}
4628 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4629 linking).  See the documentation for those options for more details.
4630
4631 @itemize
4632
4633 @item
4634 Compile the source files with @option{-fprofile-arcs} plus optimization
4635 and code generation options.  For test coverage analysis, use the
4636 additional @option{-ftest-coverage} option.  You do not need to profile
4637 every source file in a program.
4638
4639 @item
4640 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4641 (the latter implies the former).
4642
4643 @item
4644 Run the program on a representative workload to generate the arc profile
4645 information.  This may be repeated any number of times.  You can run
4646 concurrent instances of your program, and provided that the file system
4647 supports locking, the data files will be correctly updated.  Also
4648 @code{fork} calls are detected and correctly handled (double counting
4649 will not happen).
4650
4651 @item
4652 For profile-directed optimizations, compile the source files again with
4653 the same optimization and code generation options plus
4654 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4655 Control Optimization}).
4656
4657 @item
4658 For test coverage analysis, use @command{gcov} to produce human readable
4659 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4660 @command{gcov} documentation for further information.
4661
4662 @end itemize
4663
4664 With @option{-fprofile-arcs}, for each function of your program GCC
4665 creates a program flow graph, then finds a spanning tree for the graph.
4666 Only arcs that are not on the spanning tree have to be instrumented: the
4667 compiler adds code to count the number of times that these arcs are
4668 executed.  When an arc is the only exit or only entrance to a block, the
4669 instrumentation code can be added to the block; otherwise, a new basic
4670 block must be created to hold the instrumentation code.
4671
4672 @need 2000
4673 @item -ftest-coverage
4674 @opindex ftest-coverage
4675 Produce a notes file that the @command{gcov} code-coverage utility
4676 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4677 show program coverage.  Each source file's note file is called
4678 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4679 above for a description of @var{auxname} and instructions on how to
4680 generate test coverage data.  Coverage data will match the source files
4681 more closely, if you do not optimize.
4682
4683 @item -fdbg-cnt-list
4684 @opindex fdbg-cnt-list
4685 Print the name and the counter upperbound for all debug counters.
4686
4687 @item -fdbg-cnt=@var{counter-value-list}
4688 @opindex fdbg-cnt
4689 Set the internal debug counter upperbound. @var{counter-value-list} 
4690 is a comma-separated list of @var{name}:@var{value} pairs
4691 which sets the upperbound of each debug counter @var{name} to @var{value}.
4692 All debug counters have the initial upperbound of @var{UINT_MAX},
4693 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4694 e.g. With -fdbg-cnt=dce:10,tail_call:0
4695 dbg_cnt(dce) will return true only for first 10 invocations
4696 and dbg_cnt(tail_call) will return false always.
4697
4698 @item -d@var{letters}
4699 @itemx -fdump-rtl-@var{pass}
4700 @opindex d
4701 Says to make debugging dumps during compilation at times specified by
4702 @var{letters}.  This is used for debugging the RTL-based passes of the
4703 compiler.  The file names for most of the dumps are made by appending
4704 a pass number and a word to the @var{dumpname}, and the files are
4705 created in the directory of the output file.  @var{dumpname} is
4706 generated from the name of the output file, if explicitly specified
4707 and it is not an executable, otherwise it is the basename of the
4708 source file. These switches may have different effects when
4709 @option{-E} is used for preprocessing.
4710
4711 Debug dumps can be enabled with a @option{-fdump-rtl} switch or some
4712 @option{-d} option @var{letters}.  Here are the possible
4713 letters for use in @var{pass} and @var{letters}, and their meanings:
4714
4715 @table @gcctabopt
4716
4717 @item -fdump-rtl-alignments
4718 @opindex fdump-rtl-alignments
4719 Dump after branch alignments have been computed.
4720
4721 @item -fdump-rtl-asmcons
4722 @opindex fdump-rtl-asmcons
4723 Dump after fixing rtl statements that have unsatisfied in/out constraints.
4724
4725 @item -fdump-rtl-auto_inc_dec
4726 @opindex fdump-rtl-auto_inc_dec
4727 Dump after auto-inc-dec discovery.  This pass is only run on
4728 architectures that have auto inc or auto dec instructions.
4729
4730 @item -fdump-rtl-barriers
4731 @opindex fdump-rtl-barriers
4732 Dump after cleaning up the barrier instructions.
4733
4734 @item -fdump-rtl-bbpart
4735 @opindex fdump-rtl-bbpart
4736 Dump after partitioning hot and cold basic blocks.
4737
4738 @item -fdump-rtl-bbro
4739 @opindex fdump-rtl-bbro
4740 Dump after block reordering.
4741
4742 @item -fdump-rtl-btl1
4743 @itemx -fdump-rtl-btl2
4744 @opindex fdump-rtl-btl2
4745 @opindex fdump-rtl-btl2
4746 @option{-fdump-rtl-btl1} and @option{-fdump-rtl-btl2} enable dumping
4747 after the two branch
4748 target load optimization passes.
4749
4750 @item -fdump-rtl-bypass
4751 @opindex fdump-rtl-bypass
4752 Dump after jump bypassing and control flow optimizations.
4753
4754 @item -fdump-rtl-combine
4755 @opindex fdump-rtl-combine
4756 Dump after the RTL instruction combination pass.
4757
4758 @item -fdump-rtl-compgotos
4759 @opindex fdump-rtl-compgotos
4760 Dump after duplicating the computed gotos.
4761
4762 @item -fdump-rtl-ce1
4763 @itemx -fdump-rtl-ce2
4764 @itemx -fdump-rtl-ce3
4765 @opindex fdump-rtl-ce1
4766 @opindex fdump-rtl-ce2
4767 @opindex fdump-rtl-ce3
4768 @option{-fdump-rtl-ce1}, @option{-fdump-rtl-ce2}, and
4769 @option{-fdump-rtl-ce3} enable dumping after the three
4770 if conversion passes. 
4771
4772 @itemx -fdump-rtl-cprop_hardreg
4773 @opindex fdump-rtl-cprop_hardreg
4774 Dump after hard register copy propagation.
4775
4776 @itemx -fdump-rtl-csa
4777 @opindex fdump-rtl-csa
4778 Dump after combining stack adjustments.
4779
4780 @item -fdump-rtl-cse1
4781 @itemx -fdump-rtl-cse2
4782 @opindex fdump-rtl-cse1
4783 @opindex fdump-rtl-cse2
4784 @option{-fdump-rtl-cse1} and @option{-fdump-rtl-cse2} enable dumping after
4785 the two common sub-expression elimination passes.
4786
4787 @itemx -fdump-rtl-dce
4788 @opindex fdump-rtl-dce
4789 Dump after the standalone dead code elimination passes.
4790
4791 @itemx -fdump-rtl-dbr
4792 @opindex fdump-rtl-dbr
4793 Dump after delayed branch scheduling.
4794
4795 @item -fdump-rtl-dce1
4796 @itemx -fdump-rtl-dce2
4797 @opindex fdump-rtl-dce1
4798 @opindex fdump-rtl-dce2
4799 @option{-fdump-rtl-dce1} and @option{-fdump-rtl-dce2} enable dumping after
4800 the two dead store elimination passes.
4801
4802 @item -fdump-rtl-eh
4803 @opindex fdump-rtl-eh
4804 Dump after finalization of EH handling code.
4805
4806 @item -fdump-rtl-eh_ranges
4807 @opindex fdump-rtl-eh_ranges
4808 Dump after conversion of EH handling range regions.
4809
4810 @item -fdump-rtl-expand
4811 @opindex fdump-rtl-expand
4812 Dump after RTL generation.
4813
4814 @item -fdump-rtl-fwprop1
4815 @itemx -fdump-rtl-fwprop2
4816 @opindex fdump-rtl-fwprop1
4817 @opindex fdump-rtl-fwprop2
4818 @option{-fdump-rtl-fwprop1} and @option{-fdump-rtl-fwprop2} enable
4819 dumping after the two forward propagation passes.
4820
4821 @item -fdump-rtl-gcse1
4822 @itemx -fdump-rtl-gcse2
4823 @opindex fdump-rtl-gcse1
4824 @opindex fdump-rtl-gcse2
4825 @option{-fdump-rtl-gcse1} and @option{-fdump-rtl-gcse2} enable dumping
4826 after global common subexpression elimination.
4827
4828 @item -fdump-rtl-init-regs
4829 @opindex fdump-rtl-init-regs
4830 Dump after the initialization of the registers.
4831
4832 @item -fdump-rtl-initvals
4833 @opindex fdump-rtl-initvals
4834 Dump after the computation of the initial value sets.
4835
4836 @itemx -fdump-rtl-into_cfglayout
4837 @opindex fdump-rtl-into_cfglayout
4838 Dump after converting to cfglayout mode.
4839
4840 @item -fdump-rtl-ira
4841 @opindex fdump-rtl-ira
4842 Dump after iterated register allocation.
4843
4844 @item -fdump-rtl-jump
4845 @opindex fdump-rtl-jump
4846 Dump after the second jump optimization.
4847
4848 @item -fdump-rtl-loop2
4849 @opindex fdump-rtl-loop2
4850 @option{-fdump-rtl-loop2} enables dumping after the rtl
4851 loop optimization passes.
4852
4853 @item -fdump-rtl-mach
4854 @opindex fdump-rtl-mach
4855 Dump after performing the machine dependent reorganization pass, if that
4856 pass exists.
4857
4858 @item -fdump-rtl-mode_sw
4859 @opindex fdump-rtl-mode_sw
4860 Dump after removing redundant mode switches.
4861
4862 @item -fdump-rtl-rnreg
4863 @opindex fdump-rtl-rnreg
4864 Dump after register renumbering.
4865
4866 @itemx -fdump-rtl-outof_cfglayout
4867 @opindex fdump-rtl-outof_cfglayout
4868 Dump after converting from cfglayout mode.
4869
4870 @item -fdump-rtl-peephole2
4871 @opindex fdump-rtl-peephole2
4872 Dump after the peephole pass.
4873
4874 @item -fdump-rtl-postreload
4875 @opindex fdump-rtl-postreload
4876 Dump after post-reload optimizations.
4877
4878 @itemx -fdump-rtl-pro_and_epilogue
4879 @opindex fdump-rtl-pro_and_epilogue
4880 Dump after generating the function pro and epilogues.
4881
4882 @item -fdump-rtl-regmove
4883 @opindex fdump-rtl-regmove
4884 Dump after the register move pass.
4885
4886 @item -fdump-rtl-sched1
4887 @itemx -fdump-rtl-sched2
4888 @opindex fdump-rtl-sched1
4889 @opindex fdump-rtl-sched2
4890 @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2} enable dumping
4891 after the basic block scheduling passes.
4892
4893 @item -fdump-rtl-see
4894 @opindex fdump-rtl-see
4895 Dump after sign extension elimination.
4896
4897 @item -fdump-rtl-seqabstr
4898 @opindex fdump-rtl-seqabstr
4899 Dump after common sequence discovery. 
4900
4901 @item -fdump-rtl-shorten
4902 @opindex fdump-rtl-shorten
4903 Dump after shortening branches.
4904
4905 @item -fdump-rtl-sibling
4906 @opindex fdump-rtl-sibling
4907 Dump after sibling call optimizations.
4908
4909 @item -fdump-rtl-split1
4910 @itemx -fdump-rtl-split2
4911 @itemx -fdump-rtl-split3
4912 @itemx -fdump-rtl-split4
4913 @itemx -fdump-rtl-split5
4914 @opindex fdump-rtl-split1
4915 @opindex fdump-rtl-split2
4916 @opindex fdump-rtl-split3
4917 @opindex fdump-rtl-split4
4918 @opindex fdump-rtl-split5
4919 @option{-fdump-rtl-split1}, @option{-fdump-rtl-split2},
4920 @option{-fdump-rtl-split3}, @option{-fdump-rtl-split4} and
4921 @option{-fdump-rtl-split5} enable dumping after five rounds of
4922 instruction splitting.
4923
4924 @item -fdump-rtl-sms
4925 @opindex fdump-rtl-sms
4926 Dump after modulo scheduling.  This pass is only run on some
4927 architectures.
4928
4929 @item -fdump-rtl-stack
4930 @opindex fdump-rtl-stack
4931 Dump after conversion from GCC's "flat register file" registers to the
4932 x87's stack-like registers.  This pass is only run on x86 variants.
4933
4934 @item -fdump-rtl-subreg1
4935 @itemx -fdump-rtl-subreg2
4936 @opindex fdump-rtl-subreg1
4937 @opindex fdump-rtl-subreg2
4938 @option{-fdump-rtl-subreg1} and @option{-fdump-rtl-subreg2} enable dumping after
4939 the two subreg expansion passes.
4940
4941 @item -fdump-rtl-unshare
4942 @opindex fdump-rtl-unshare
4943 Dump after all rtl has been unshared.
4944
4945 @item -fdump-rtl-vartrack
4946 @opindex fdump-rtl-vartrack
4947 Dump after variable tracking.
4948
4949 @item -fdump-rtl-vregs
4950 @opindex fdump-rtl-vregs
4951 Dump after converting virtual registers to hard registers.
4952
4953 @item -fdump-rtl-web
4954 @opindex fdump-rtl-web
4955 Dump after live range splitting.
4956
4957 @item -fdump-rtl-regclass
4958 @itemx -fdump-rtl-subregs_of_mode_init
4959 @itemx -fdump-rtl-subregs_of_mode_finish
4960 @itemx -fdump-rtl-dfinit
4961 @itemx -fdump-rtl-dfinish
4962 @opindex fdump-rtl-regclass
4963 @opindex fdump-rtl-subregs_of_mode_init
4964 @opindex fdump-rtl-subregs_of_mode_finish
4965 @opindex fdump-rtl-dfinit
4966 @opindex fdump-rtl-dfinish
4967 These dumps are defined but always produce empty files.
4968
4969 @item -fdump-rtl-all
4970 @opindex fdump-rtl-all
4971 Produce all the dumps listed above.
4972
4973 @item -dA
4974 @opindex dA
4975 Annotate the assembler output with miscellaneous debugging information.
4976
4977 @item -dD
4978 @opindex dD
4979 Dump all macro definitions, at the end of preprocessing, in addition to
4980 normal output.
4981
4982 @item -dH
4983 @opindex dH
4984 Produce a core dump whenever an error occurs.
4985
4986 @item -dm
4987 @opindex dm
4988 Print statistics on memory usage, at the end of the run, to
4989 standard error.
4990
4991 @item -dp
4992 @opindex dp
4993 Annotate the assembler output with a comment indicating which
4994 pattern and alternative was used.  The length of each instruction is
4995 also printed.
4996
4997 @item -dP
4998 @opindex dP
4999 Dump the RTL in the assembler output as a comment before each instruction.
5000 Also turns on @option{-dp} annotation.
5001
5002 @item -dv
5003 @opindex dv
5004 For each of the other indicated dump files (@option{-fdump-rtl-@var{pass}}),
5005 dump a representation of the control flow graph suitable for viewing with VCG
5006 to @file{@var{file}.@var{pass}.vcg}.
5007
5008 @item -dx
5009 @opindex dx
5010 Just generate RTL for a function instead of compiling it.  Usually used
5011 with @option{-fdump-rtl-expand}.
5012
5013 @item -dy
5014 @opindex dy
5015 Dump debugging information during parsing, to standard error.
5016 @end table
5017
5018 @item -fdump-noaddr
5019 @opindex fdump-noaddr
5020 When doing debugging dumps, suppress address output.  This makes it more
5021 feasible to use diff on debugging dumps for compiler invocations with
5022 different compiler binaries and/or different
5023 text / bss / data / heap / stack / dso start locations.
5024
5025 @item -fdump-unnumbered
5026 @opindex fdump-unnumbered
5027 When doing debugging dumps, suppress instruction numbers and address output.
5028 This makes it more feasible to use diff on debugging dumps for compiler
5029 invocations with different options, in particular with and without
5030 @option{-g}.
5031
5032 @item -fdump-unnumbered-links
5033 @opindex fdump-unnumbered-links
5034 When doing debugging dumps (see @option{-d} option above), suppress
5035 instruction numbers for the links to the previous and next instructions
5036 in a sequence.
5037
5038 @item -fdump-translation-unit @r{(C++ only)}
5039 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
5040 @opindex fdump-translation-unit
5041 Dump a representation of the tree structure for the entire translation
5042 unit to a file.  The file name is made by appending @file{.tu} to the
5043 source file name, and the file is created in the same directory as the
5044 output file.  If the @samp{-@var{options}} form is used, @var{options}
5045 controls the details of the dump as described for the
5046 @option{-fdump-tree} options.
5047
5048 @item -fdump-class-hierarchy @r{(C++ only)}
5049 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
5050 @opindex fdump-class-hierarchy
5051 Dump a representation of each class's hierarchy and virtual function
5052 table layout to a file.  The file name is made by appending
5053 @file{.class} to the source file name, and the file is created in the
5054 same directory as the output file.  If the @samp{-@var{options}} form
5055 is used, @var{options} controls the details of the dump as described
5056 for the @option{-fdump-tree} options.
5057
5058 @item -fdump-ipa-@var{switch}
5059 @opindex fdump-ipa
5060 Control the dumping at various stages of inter-procedural analysis
5061 language tree to a file.  The file name is generated by appending a
5062 switch specific suffix to the source file name, and the file is created
5063 in the same directory as the output file.  The following dumps are
5064 possible:
5065
5066 @table @samp
5067 @item all
5068 Enables all inter-procedural analysis dumps.
5069
5070 @item cgraph
5071 Dumps information about call-graph optimization, unused function removal,
5072 and inlining decisions.
5073
5074 @item inline
5075 Dump after function inlining.
5076
5077 @end table
5078
5079 @item -fdump-statistics-@var{option}
5080 @opindex fdump-statistics
5081 Enable and control dumping of pass statistics in a separate file.  The
5082 file name is generated by appending a suffix ending in
5083 @samp{.statistics} to the source file name, and the file is created in
5084 the same directory as the output file.  If the @samp{-@var{option}}
5085 form is used, @samp{-stats} will cause counters to be summed over the
5086 whole compilation unit while @samp{-details} will dump every event as
5087 the passes generate them.  The default with no option is to sum
5088 counters for each function compiled.
5089
5090 @item -fdump-tree-@var{switch}
5091 @itemx -fdump-tree-@var{switch}-@var{options}
5092 @opindex fdump-tree
5093 Control the dumping at various stages of processing the intermediate
5094 language tree to a file.  The file name is generated by appending a
5095 switch specific suffix to the source file name, and the file is
5096 created in the same directory as the output file.  If the
5097 @samp{-@var{options}} form is used, @var{options} is a list of
5098 @samp{-} separated options that control the details of the dump.  Not
5099 all options are applicable to all dumps, those which are not
5100 meaningful will be ignored.  The following options are available
5101
5102 @table @samp
5103 @item address
5104 Print the address of each node.  Usually this is not meaningful as it
5105 changes according to the environment and source file.  Its primary use
5106 is for tying up a dump file with a debug environment.
5107 @item asmname
5108 If @code{DECL_ASSEMBLER_NAME} has been set for a given decl, use that
5109 in the dump instead of @code{DECL_NAME}.  Its primary use is ease of
5110 use working backward from mangled names in the assembly file.
5111 @item slim
5112 Inhibit dumping of members of a scope or body of a function merely
5113 because that scope has been reached.  Only dump such items when they
5114 are directly reachable by some other path.  When dumping pretty-printed
5115 trees, this option inhibits dumping the bodies of control structures.
5116 @item raw
5117 Print a raw representation of the tree.  By default, trees are
5118 pretty-printed into a C-like representation.
5119 @item details
5120 Enable more detailed dumps (not honored by every dump option).
5121 @item stats
5122 Enable dumping various statistics about the pass (not honored by every dump
5123 option).
5124 @item blocks
5125 Enable showing basic block boundaries (disabled in raw dumps).
5126 @item vops
5127 Enable showing virtual operands for every statement.
5128 @item lineno
5129 Enable showing line numbers for statements.
5130 @item uid
5131 Enable showing the unique ID (@code{DECL_UID}) for each variable.
5132 @item verbose
5133 Enable showing the tree dump for each statement.
5134 @item all
5135 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
5136 and @option{lineno}.
5137 @end table
5138
5139 The following tree dumps are possible:
5140 @table @samp
5141
5142 @item original
5143 @opindex fdump-tree-original
5144 Dump before any tree based optimization, to @file{@var{file}.original}.
5145
5146 @item optimized
5147 @opindex fdump-tree-optimized
5148 Dump after all tree based optimization, to @file{@var{file}.optimized}.
5149
5150 @item gimple
5151 @opindex fdump-tree-gimple
5152 Dump each function before and after the gimplification pass to a file.  The
5153 file name is made by appending @file{.gimple} to the source file name.
5154
5155 @item cfg
5156 @opindex fdump-tree-cfg
5157 Dump the control flow graph of each function to a file.  The file name is
5158 made by appending @file{.cfg} to the source file name.
5159
5160 @item vcg
5161 @opindex fdump-tree-vcg
5162 Dump the control flow graph of each function to a file in VCG format.  The
5163 file name is made by appending @file{.vcg} to the source file name.  Note
5164 that if the file contains more than one function, the generated file cannot
5165 be used directly by VCG@.  You will need to cut and paste each function's
5166 graph into its own separate file first.
5167
5168 @item ch
5169 @opindex fdump-tree-ch
5170 Dump each function after copying loop headers.  The file name is made by
5171 appending @file{.ch} to the source file name.
5172
5173 @item ssa
5174 @opindex fdump-tree-ssa
5175 Dump SSA related information to a file.  The file name is made by appending
5176 @file{.ssa} to the source file name.
5177
5178 @item alias
5179 @opindex fdump-tree-alias
5180 Dump aliasing information for each function.  The file name is made by
5181 appending @file{.alias} to the source file name.
5182
5183 @item ccp
5184 @opindex fdump-tree-ccp
5185 Dump each function after CCP@.  The file name is made by appending
5186 @file{.ccp} to the source file name.
5187
5188 @item storeccp
5189 @opindex fdump-tree-storeccp
5190 Dump each function after STORE-CCP@.  The file name is made by appending
5191 @file{.storeccp} to the source file name.
5192
5193 @item pre
5194 @opindex fdump-tree-pre
5195 Dump trees after partial redundancy elimination.  The file name is made
5196 by appending @file{.pre} to the source file name.
5197
5198 @item fre
5199 @opindex fdump-tree-fre
5200 Dump trees after full redundancy elimination.  The file name is made
5201 by appending @file{.fre} to the source file name.
5202
5203 @item copyprop
5204 @opindex fdump-tree-copyprop
5205 Dump trees after copy propagation.  The file name is made
5206 by appending @file{.copyprop} to the source file name.
5207
5208 @item store_copyprop
5209 @opindex fdump-tree-store_copyprop
5210 Dump trees after store copy-propagation.  The file name is made
5211 by appending @file{.store_copyprop} to the source file name.
5212
5213 @item dce
5214 @opindex fdump-tree-dce
5215 Dump each function after dead code elimination.  The file name is made by
5216 appending @file{.dce} to the source file name.
5217
5218 @item mudflap
5219 @opindex fdump-tree-mudflap
5220 Dump each function after adding mudflap instrumentation.  The file name is
5221 made by appending @file{.mudflap} to the source file name.
5222
5223 @item sra
5224 @opindex fdump-tree-sra
5225 Dump each function after performing scalar replacement of aggregates.  The
5226 file name is made by appending @file{.sra} to the source file name.
5227
5228 @item sink
5229 @opindex fdump-tree-sink
5230 Dump each function after performing code sinking.  The file name is made
5231 by appending @file{.sink} to the source file name.
5232
5233 @item dom
5234 @opindex fdump-tree-dom
5235 Dump each function after applying dominator tree optimizations.  The file
5236 name is made by appending @file{.dom} to the source file name.
5237
5238 @item dse
5239 @opindex fdump-tree-dse
5240 Dump each function after applying dead store elimination.  The file
5241 name is made by appending @file{.dse} to the source file name.
5242
5243 @item phiopt
5244 @opindex fdump-tree-phiopt
5245 Dump each function after optimizing PHI nodes into straightline code.  The file
5246 name is made by appending @file{.phiopt} to the source file name.
5247
5248 @item forwprop
5249 @opindex fdump-tree-forwprop
5250 Dump each function after forward propagating single use variables.  The file
5251 name is made by appending @file{.forwprop} to the source file name.
5252
5253 @item copyrename
5254 @opindex fdump-tree-copyrename
5255 Dump each function after applying the copy rename optimization.  The file
5256 name is made by appending @file{.copyrename} to the source file name.
5257
5258 @item nrv
5259 @opindex fdump-tree-nrv
5260 Dump each function after applying the named return value optimization on
5261 generic trees.  The file name is made by appending @file{.nrv} to the source
5262 file name.
5263
5264 @item vect
5265 @opindex fdump-tree-vect
5266 Dump each function after applying vectorization of loops.  The file name is
5267 made by appending @file{.vect} to the source file name.
5268
5269 @item vrp
5270 @opindex fdump-tree-vrp
5271 Dump each function after Value Range Propagation (VRP).  The file name
5272 is made by appending @file{.vrp} to the source file name.
5273
5274 @item all
5275 @opindex fdump-tree-all
5276 Enable all the available tree dumps with the flags provided in this option.
5277 @end table
5278
5279 @item -ftree-vectorizer-verbose=@var{n}
5280 @opindex ftree-vectorizer-verbose
5281 This option controls the amount of debugging output the vectorizer prints.
5282 This information is written to standard error, unless
5283 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
5284 in which case it is output to the usual dump listing file, @file{.vect}.
5285 For @var{n}=0 no diagnostic information is reported.
5286 If @var{n}=1 the vectorizer reports each loop that got vectorized,
5287 and the total number of loops that got vectorized.
5288 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
5289 the first analysis phase (vect_analyze_loop_form) - i.e.@: countable,
5290 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
5291 level that @option{-fdump-tree-vect-stats} uses.
5292 Higher verbosity levels mean either more information dumped for each
5293 reported loop, or same amount of information reported for more loops:
5294 If @var{n}=3, alignment related information is added to the reports.
5295 If @var{n}=4, data-references related information (e.g.@: memory dependences,
5296 memory access-patterns) is added to the reports.
5297 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
5298 that did not pass the first analysis phase (i.e., may not be countable, or
5299 may have complicated control-flow).
5300 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
5301 For @var{n}=7, all the information the vectorizer generates during its
5302 analysis and transformation is reported.  This is the same verbosity level
5303 that @option{-fdump-tree-vect-details} uses.
5304
5305 @item -frandom-seed=@var{string}
5306 @opindex frandom-seed
5307 This option provides a seed that GCC uses when it would otherwise use
5308 random numbers.  It is used to generate certain symbol names
5309 that have to be different in every compiled file.  It is also used to
5310 place unique stamps in coverage data files and the object files that
5311 produce them.  You can use the @option{-frandom-seed} option to produce
5312 reproducibly identical object files.
5313
5314 The @var{string} should be different for every file you compile.
5315
5316 @item -fsched-verbose=@var{n}
5317 @opindex fsched-verbose
5318 On targets that use instruction scheduling, this option controls the
5319 amount of debugging output the scheduler prints.  This information is
5320 written to standard error, unless @option{-fdump-rtl-sched1} or
5321 @option{-fdump-rtl-sched2} is specified, in which case it is output
5322 to the usual dump listing file, @file{.sched} or @file{.sched2}
5323 respectively.  However for @var{n} greater than nine, the output is
5324 always printed to standard error.
5325
5326 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
5327 same information as @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2}.
5328 For @var{n} greater than one, it also output basic block probabilities,
5329 detailed ready list information and unit/insn info.  For @var{n} greater
5330 than two, it includes RTL at abort point, control-flow and regions info.
5331 And for @var{n} over four, @option{-fsched-verbose} also includes
5332 dependence info.
5333
5334 @item -save-temps
5335 @itemx -save-temps=cwd
5336 @opindex save-temps
5337 Store the usual ``temporary'' intermediate files permanently; place them
5338 in the current directory and name them based on the source file.  Thus,
5339 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
5340 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
5341 preprocessed @file{foo.i} output file even though the compiler now
5342 normally uses an integrated preprocessor.
5343
5344 When used in combination with the @option{-x} command line option,
5345 @option{-save-temps} is sensible enough to avoid over writing an
5346 input source file with the same extension as an intermediate file.
5347 The corresponding intermediate file may be obtained by renaming the
5348 source file before using @option{-save-temps}.
5349
5350 If you invoke GCC in parallel, compiling several different source
5351 files that share a common base name in different subdirectories or the
5352 same source file compiled for multiple output destinations, it is
5353 likely that the different parallel compilers will interfere with each
5354 other, and overwrite the temporary files.  For instance:
5355
5356 @smallexample
5357 gcc -save-temps -o outdir1/foo.o indir1/foo.c&
5358 gcc -save-temps -o outdir2/foo.o indir2/foo.c&
5359 @end smallexample
5360
5361 may result in @file{foo.i} and @file{foo.o} being written to
5362 simultaneously by both compilers.
5363
5364 @item -save-temps=obj
5365 @opindex save-temps=obj
5366 Store the usual ``temporary'' intermediate files permanently.  If the
5367 @option{-o} option is used, the temporary files are based on the
5368 object file.  If the @option{-o} option is not used, the
5369 @option{-save-temps=obj} switch behaves like @option{-save-temps}.
5370
5371 For example:
5372
5373 @smallexample
5374 gcc -save-temps=obj -c foo.c
5375 gcc -save-temps=obj -c bar.c -o dir/xbar.o
5376 gcc -save-temps=obj foobar.c -o dir2/yfoobar
5377 @end smallexample
5378
5379 would create @file{foo.i}, @file{foo.s}, @file{dir/xbar.i},
5380 @file{dir/xbar.s}, @file{dir2/yfoobar.i}, @file{dir2/yfoobar.s}, and
5381 @file{dir2/yfoobar.o}.
5382
5383 @item -time@r{[}=@var{file}@r{]}
5384 @opindex time
5385 Report the CPU time taken by each subprocess in the compilation
5386 sequence.  For C source files, this is the compiler proper and assembler
5387 (plus the linker if linking is done).
5388
5389 Without the specification of an output file, the output looks like this:
5390
5391 @smallexample
5392 # cc1 0.12 0.01
5393 # as 0.00 0.01
5394 @end smallexample
5395
5396 The first number on each line is the ``user time'', that is time spent
5397 executing the program itself.  The second number is ``system time'',
5398 time spent executing operating system routines on behalf of the program.
5399 Both numbers are in seconds.
5400
5401 With the specification of an output file, the output is appended to the
5402 named file, and it looks like this:
5403
5404 @smallexample
5405 0.12 0.01 cc1 @var{options}
5406 0.00 0.01 as @var{options}
5407 @end smallexample
5408
5409 The ``user time'' and the ``system time'' are moved before the program
5410 name, and the options passed to the program are displayed, so that one
5411 can later tell what file was being compiled, and with which options.
5412
5413 @item -fvar-tracking
5414 @opindex fvar-tracking
5415 Run variable tracking pass.  It computes where variables are stored at each
5416 position in code.  Better debugging information is then generated
5417 (if the debugging information format supports this information).
5418
5419 It is enabled by default when compiling with optimization (@option{-Os},
5420 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
5421 the debug info format supports it.
5422
5423 @item -print-file-name=@var{library}
5424 @opindex print-file-name
5425 Print the full absolute name of the library file @var{library} that
5426 would be used when linking---and don't do anything else.  With this
5427 option, GCC does not compile or link anything; it just prints the
5428 file name.
5429
5430 @item -print-multi-directory
5431 @opindex print-multi-directory
5432 Print the directory name corresponding to the multilib selected by any
5433 other switches present in the command line.  This directory is supposed
5434 to exist in @env{GCC_EXEC_PREFIX}.
5435
5436 @item -print-multi-lib
5437 @opindex print-multi-lib
5438 Print the mapping from multilib directory names to compiler switches
5439 that enable them.  The directory name is separated from the switches by
5440 @samp{;}, and each switch starts with an @samp{@@} instead of the
5441 @samp{-}, without spaces between multiple switches.  This is supposed to
5442 ease shell-processing.
5443
5444 @item -print-prog-name=@var{program}
5445 @opindex print-prog-name
5446 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
5447
5448 @item -print-libgcc-file-name
5449 @opindex print-libgcc-file-name
5450 Same as @option{-print-file-name=libgcc.a}.
5451
5452 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
5453 but you do want to link with @file{libgcc.a}.  You can do
5454
5455 @smallexample
5456 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
5457 @end smallexample
5458
5459 @item -print-search-dirs
5460 @opindex print-search-dirs
5461 Print the name of the configured installation directory and a list of
5462 program and library directories @command{gcc} will search---and don't do anything else.
5463
5464 This is useful when @command{gcc} prints the error message
5465 @samp{installation problem, cannot exec cpp0: No such file or directory}.
5466 To resolve this you either need to put @file{cpp0} and the other compiler
5467 components where @command{gcc} expects to find them, or you can set the environment
5468 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
5469 Don't forget the trailing @samp{/}.
5470 @xref{Environment Variables}.
5471
5472 @item -print-sysroot
5473 @opindex print-sysroot
5474 Print the target sysroot directory that will be used during
5475 compilation.  This is the target sysroot specified either at configure
5476 time or using the @option{--sysroot} option, possibly with an extra
5477 suffix that depends on compilation options.  If no target sysroot is
5478 specified, the option prints nothing.
5479
5480 @item -print-sysroot-headers-suffix
5481 @opindex print-sysroot-headers-suffix
5482 Print the suffix added to the target sysroot when searching for
5483 headers, or give an error if the compiler is not configured with such
5484 a suffix---and don't do anything else.
5485
5486 @item -dumpmachine
5487 @opindex dumpmachine
5488 Print the compiler's target machine (for example,
5489 @samp{i686-pc-linux-gnu})---and don't do anything else.
5490
5491 @item -dumpversion
5492 @opindex dumpversion
5493 Print the compiler version (for example, @samp{3.0})---and don't do
5494 anything else.
5495
5496 @item -dumpspecs
5497 @opindex dumpspecs
5498 Print the compiler's built-in specs---and don't do anything else.  (This
5499 is used when GCC itself is being built.)  @xref{Spec Files}.
5500
5501 @item -feliminate-unused-debug-types
5502 @opindex feliminate-unused-debug-types
5503 Normally, when producing DWARF2 output, GCC will emit debugging
5504 information for all types declared in a compilation
5505 unit, regardless of whether or not they are actually used
5506 in that compilation unit.  Sometimes this is useful, such as
5507 if, in the debugger, you want to cast a value to a type that is
5508 not actually used in your program (but is declared).  More often,
5509 however, this results in a significant amount of wasted space.
5510 With this option, GCC will avoid producing debug symbol output
5511 for types that are nowhere used in the source file being compiled.
5512 @end table
5513
5514 @node Optimize Options
5515 @section Options That Control Optimization
5516 @cindex optimize options
5517 @cindex options, optimization
5518
5519 These options control various sorts of optimizations.
5520
5521 Without any optimization option, the compiler's goal is to reduce the
5522 cost of compilation and to make debugging produce the expected
5523 results.  Statements are independent: if you stop the program with a
5524 breakpoint between statements, you can then assign a new value to any
5525 variable or change the program counter to any other statement in the
5526 function and get exactly the results you would expect from the source
5527 code.
5528
5529 Turning on optimization flags makes the compiler attempt to improve
5530 the performance and/or code size at the expense of compilation time
5531 and possibly the ability to debug the program.
5532
5533 The compiler performs optimization based on the knowledge it has of the
5534 program.  Compiling multiple files at once to a single output file mode allows
5535 the compiler to use information gained from all of the files when compiling
5536 each of them.
5537
5538 Not all optimizations are controlled directly by a flag.  Only
5539 optimizations that have a flag are listed in this section.
5540
5541 Depending on the target and how GCC was configured, a slightly different 
5542 set of optimizations may be enabled at each @option{-O} level than 
5543 those listed here.  You can invoke GCC with @samp{-Q --help=optimizers} 
5544 to find out the exact set of optimizations that are enabled at each level.
5545 @xref{Overall Options}, for examples.
5546
5547 @table @gcctabopt
5548 @item -O
5549 @itemx -O1
5550 @opindex O
5551 @opindex O1
5552 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5553 more memory for a large function.
5554
5555 With @option{-O}, the compiler tries to reduce code size and execution
5556 time, without performing any optimizations that take a great deal of
5557 compilation time.
5558
5559 @option{-O} turns on the following optimization flags:
5560 @gccoptlist{
5561 -fauto-inc-dec @gol
5562 -fcprop-registers @gol
5563 -fdce @gol
5564 -fdefer-pop @gol
5565 -fdelayed-branch @gol
5566 -fdse @gol
5567 -fguess-branch-probability @gol
5568 -fif-conversion2 @gol
5569 -fif-conversion @gol
5570 -finline-small-functions @gol
5571 -fipa-pure-const @gol
5572 -fipa-reference @gol
5573 -fmerge-constants
5574 -fsplit-wide-types @gol
5575 -ftree-builtin-call-dce @gol
5576 -ftree-ccp @gol
5577 -ftree-ch @gol
5578 -ftree-copyrename @gol
5579 -ftree-dce @gol
5580 -ftree-dominator-opts @gol
5581 -ftree-dse @gol
5582 -ftree-forwprop @gol
5583 -ftree-fre @gol
5584 -ftree-phiprop @gol
5585 -ftree-sra @gol
5586 -ftree-pta @gol
5587 -ftree-ter @gol
5588 -funit-at-a-time}
5589
5590 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5591 where doing so does not interfere with debugging.
5592
5593 @item -O2
5594 @opindex O2
5595 Optimize even more.  GCC performs nearly all supported optimizations
5596 that do not involve a space-speed tradeoff.
5597 As compared to @option{-O}, this option increases both compilation time
5598 and the performance of the generated code.
5599
5600 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5601 also turns on the following optimization flags:
5602 @gccoptlist{-fthread-jumps @gol
5603 -falign-functions  -falign-jumps @gol
5604 -falign-loops  -falign-labels @gol
5605 -fcaller-saves @gol
5606 -fcrossjumping @gol
5607 -fcse-follow-jumps  -fcse-skip-blocks @gol
5608 -fdelete-null-pointer-checks @gol
5609 -fexpensive-optimizations @gol
5610 -fgcse  -fgcse-lm  @gol
5611 -findirect-inlining @gol
5612 -foptimize-sibling-calls @gol
5613 -fpeephole2 @gol
5614 -fregmove @gol
5615 -freorder-blocks  -freorder-functions @gol
5616 -frerun-cse-after-loop  @gol
5617 -fsched-interblock  -fsched-spec @gol
5618 -fschedule-insns  -fschedule-insns2 @gol
5619 -fstrict-aliasing -fstrict-overflow @gol
5620 -ftree-switch-conversion @gol
5621 -ftree-pre @gol
5622 -ftree-vrp}
5623
5624 Please note the warning under @option{-fgcse} about
5625 invoking @option{-O2} on programs that use computed gotos.
5626
5627 @item -O3
5628 @opindex O3
5629 Optimize yet more.  @option{-O3} turns on all optimizations specified
5630 by @option{-O2} and also turns on the @option{-finline-functions},
5631 @option{-funswitch-loops}, @option{-fpredictive-commoning},
5632 @option{-fgcse-after-reload} and @option{-ftree-vectorize} options.
5633
5634 @item -O0
5635 @opindex O0
5636 Reduce compilation time and make debugging produce the expected
5637 results.  This is the default.
5638
5639 @item -Os
5640 @opindex Os
5641 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5642 do not typically increase code size.  It also performs further
5643 optimizations designed to reduce code size.
5644
5645 @option{-Os} disables the following optimization flags:
5646 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5647 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5648 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5649
5650 If you use multiple @option{-O} options, with or without level numbers,
5651 the last such option is the one that is effective.
5652 @end table
5653
5654 Options of the form @option{-f@var{flag}} specify machine-independent
5655 flags.  Most flags have both positive and negative forms; the negative
5656 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5657 below, only one of the forms is listed---the one you typically will
5658 use.  You can figure out the other form by either removing @samp{no-}
5659 or adding it.
5660
5661 The following options control specific optimizations.  They are either
5662 activated by @option{-O} options or are related to ones that are.  You
5663 can use the following flags in the rare cases when ``fine-tuning'' of
5664 optimizations to be performed is desired.
5665
5666 @table @gcctabopt
5667 @item -fno-default-inline
5668 @opindex fno-default-inline
5669 Do not make member functions inline by default merely because they are
5670 defined inside the class scope (C++ only).  Otherwise, when you specify
5671 @w{@option{-O}}, member functions defined inside class scope are compiled
5672 inline by default; i.e., you don't need to add @samp{inline} in front of
5673 the member function name.
5674
5675 @item -fno-defer-pop
5676 @opindex fno-defer-pop
5677 Always pop the arguments to each function call as soon as that function
5678 returns.  For machines which must pop arguments after a function call,
5679 the compiler normally lets arguments accumulate on the stack for several
5680 function calls and pops them all at once.
5681
5682 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5683
5684 @item -fforward-propagate
5685 @opindex fforward-propagate
5686 Perform a forward propagation pass on RTL@.  The pass tries to combine two
5687 instructions and checks if the result can be simplified.  If loop unrolling
5688 is active, two passes are performed and the second is scheduled after
5689 loop unrolling.
5690
5691 This option is enabled by default at optimization levels @option{-O},
5692 @option{-O2}, @option{-O3}, @option{-Os}.
5693
5694 @item -fomit-frame-pointer
5695 @opindex fomit-frame-pointer
5696 Don't keep the frame pointer in a register for functions that
5697 don't need one.  This avoids the instructions to save, set up and
5698 restore frame pointers; it also makes an extra register available
5699 in many functions.  @strong{It also makes debugging impossible on
5700 some machines.}
5701
5702 On some machines, such as the VAX, this flag has no effect, because
5703 the standard calling sequence automatically handles the frame pointer
5704 and nothing is saved by pretending it doesn't exist.  The
5705 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5706 whether a target machine supports this flag.  @xref{Registers,,Register
5707 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5708
5709 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5710
5711 @item -foptimize-sibling-calls
5712 @opindex foptimize-sibling-calls
5713 Optimize sibling and tail recursive calls.
5714
5715 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5716
5717 @item -fno-inline
5718 @opindex fno-inline
5719 Don't pay attention to the @code{inline} keyword.  Normally this option
5720 is used to keep the compiler from expanding any functions inline.
5721 Note that if you are not optimizing, no functions can be expanded inline.
5722
5723 @item -finline-small-functions
5724 @opindex finline-small-functions
5725 Integrate functions into their callers when their body is smaller than expected
5726 function call code (so overall size of program gets smaller).  The compiler
5727 heuristically decides which functions are simple enough to be worth integrating
5728 in this way.
5729
5730 Enabled at level @option{-O2}.
5731
5732 @item -findirect-inlining
5733 @opindex findirect-inlining
5734 Inline also indirect calls that are discovered to be known at compile
5735 time thanks to previous inlining.  This option has any effect only
5736 when inlining itself is turned on by the @option{-finline-functions}
5737 or @option{-finline-small-functions} options.
5738
5739 Enabled at level @option{-O2}.
5740
5741 @item -finline-functions
5742 @opindex finline-functions
5743 Integrate all simple functions into their callers.  The compiler
5744 heuristically decides which functions are simple enough to be worth
5745 integrating in this way.
5746
5747 If all calls to a given function are integrated, and the function is
5748 declared @code{static}, then the function is normally not output as
5749 assembler code in its own right.
5750
5751 Enabled at level @option{-O3}.
5752
5753 @item -finline-functions-called-once
5754 @opindex finline-functions-called-once
5755 Consider all @code{static} functions called once for inlining into their
5756 caller even if they are not marked @code{inline}.  If a call to a given
5757 function is integrated, then the function is not output as assembler code
5758 in its own right.
5759
5760 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
5761
5762 @item -fearly-inlining
5763 @opindex fearly-inlining
5764 Inline functions marked by @code{always_inline} and functions whose body seems
5765 smaller than the function call overhead early before doing
5766 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5767 makes profiling significantly cheaper and usually inlining faster on programs
5768 having large chains of nested wrapper functions.
5769
5770 Enabled by default.
5771
5772 @item -finline-limit=@var{n}
5773 @opindex finline-limit
5774 By default, GCC limits the size of functions that can be inlined.  This flag
5775 allows coarse control of this limit.  @var{n} is the size of functions that
5776 can be inlined in number of pseudo instructions.
5777
5778 Inlining is actually controlled by a number of parameters, which may be
5779 specified individually by using @option{--param @var{name}=@var{value}}.
5780 The @option{-finline-limit=@var{n}} option sets some of these parameters
5781 as follows:
5782
5783 @table @gcctabopt
5784 @item max-inline-insns-single
5785 is set to @var{n}/2.
5786 @item max-inline-insns-auto
5787 is set to @var{n}/2.
5788 @end table
5789
5790 See below for a documentation of the individual
5791 parameters controlling inlining and for the defaults of these parameters.
5792
5793 @emph{Note:} there may be no value to @option{-finline-limit} that results
5794 in default behavior.
5795
5796 @emph{Note:} pseudo instruction represents, in this particular context, an
5797 abstract measurement of function's size.  In no way does it represent a count
5798 of assembly instructions and as such its exact meaning might change from one
5799 release to an another.
5800
5801 @item -fkeep-inline-functions
5802 @opindex fkeep-inline-functions
5803 In C, emit @code{static} functions that are declared @code{inline}
5804 into the object file, even if the function has been inlined into all
5805 of its callers.  This switch does not affect functions using the
5806 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5807 inline functions into the object file.
5808
5809 @item -fkeep-static-consts
5810 @opindex fkeep-static-consts
5811 Emit variables declared @code{static const} when optimization isn't turned
5812 on, even if the variables aren't referenced.
5813
5814 GCC enables this option by default.  If you want to force the compiler to
5815 check if the variable was referenced, regardless of whether or not
5816 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5817
5818 @item -fmerge-constants
5819 @opindex fmerge-constants
5820 Attempt to merge identical constants (string constants and floating point
5821 constants) across compilation units.
5822
5823 This option is the default for optimized compilation if the assembler and
5824 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5825 behavior.
5826
5827 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5828
5829 @item -fmerge-all-constants
5830 @opindex fmerge-all-constants
5831 Attempt to merge identical constants and identical variables.
5832
5833 This option implies @option{-fmerge-constants}.  In addition to
5834 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5835 arrays or initialized constant variables with integral or floating point
5836 types.  Languages like C or C++ require each variable, including multiple
5837 instances of the same variable in recursive calls, to have distinct locations,
5838 so using this option will result in non-conforming
5839 behavior.
5840
5841 @item -fmodulo-sched
5842 @opindex fmodulo-sched
5843 Perform swing modulo scheduling immediately before the first scheduling
5844 pass.  This pass looks at innermost loops and reorders their
5845 instructions by overlapping different iterations.
5846
5847 @item -fmodulo-sched-allow-regmoves
5848 @opindex fmodulo-sched-allow-regmoves
5849 Perform more aggressive SMS based modulo scheduling with register moves
5850 allowed.  By setting this flag certain anti-dependences edges will be
5851 deleted which will trigger the generation of reg-moves based on the
5852 life-range analysis.  This option is effective only with
5853 @option{-fmodulo-sched} enabled.
5854
5855 @item -fno-branch-count-reg
5856 @opindex fno-branch-count-reg
5857 Do not use ``decrement and branch'' instructions on a count register,
5858 but instead generate a sequence of instructions that decrement a
5859 register, compare it against zero, then branch based upon the result.
5860 This option is only meaningful on architectures that support such
5861 instructions, which include x86, PowerPC, IA-64 and S/390.
5862
5863 The default is @option{-fbranch-count-reg}.
5864
5865 @item -fno-function-cse
5866 @opindex fno-function-cse
5867 Do not put function addresses in registers; make each instruction that
5868 calls a constant function contain the function's address explicitly.
5869
5870 This option results in less efficient code, but some strange hacks
5871 that alter the assembler output may be confused by the optimizations
5872 performed when this option is not used.
5873
5874 The default is @option{-ffunction-cse}
5875
5876 @item -fno-zero-initialized-in-bss
5877 @opindex fno-zero-initialized-in-bss
5878 If the target supports a BSS section, GCC by default puts variables that
5879 are initialized to zero into BSS@.  This can save space in the resulting
5880 code.
5881
5882 This option turns off this behavior because some programs explicitly
5883 rely on variables going to the data section.  E.g., so that the
5884 resulting executable can find the beginning of that section and/or make
5885 assumptions based on that.
5886
5887 The default is @option{-fzero-initialized-in-bss}.
5888
5889 @item -fmudflap -fmudflapth -fmudflapir
5890 @opindex fmudflap
5891 @opindex fmudflapth
5892 @opindex fmudflapir
5893 @cindex bounds checking
5894 @cindex mudflap
5895 For front-ends that support it (C and C++), instrument all risky
5896 pointer/array dereferencing operations, some standard library
5897 string/heap functions, and some other associated constructs with
5898 range/validity tests.  Modules so instrumented should be immune to
5899 buffer overflows, invalid heap use, and some other classes of C/C++
5900 programming errors.  The instrumentation relies on a separate runtime
5901 library (@file{libmudflap}), which will be linked into a program if
5902 @option{-fmudflap} is given at link time.  Run-time behavior of the
5903 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5904 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5905 for its options.
5906
5907 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5908 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5909 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5910 instrumentation should ignore pointer reads.  This produces less
5911 instrumentation (and therefore faster execution) and still provides
5912 some protection against outright memory corrupting writes, but allows
5913 erroneously read data to propagate within a program.
5914
5915 @item -fthread-jumps
5916 @opindex fthread-jumps
5917 Perform optimizations where we check to see if a jump branches to a
5918 location where another comparison subsumed by the first is found.  If
5919 so, the first branch is redirected to either the destination of the
5920 second branch or a point immediately following it, depending on whether
5921 the condition is known to be true or false.
5922
5923 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5924
5925 @item -fsplit-wide-types
5926 @opindex fsplit-wide-types
5927 When using a type that occupies multiple registers, such as @code{long
5928 long} on a 32-bit system, split the registers apart and allocate them
5929 independently.  This normally generates better code for those types,
5930 but may make debugging more difficult.
5931
5932 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5933 @option{-Os}.
5934
5935 @item -fcse-follow-jumps
5936 @opindex fcse-follow-jumps
5937 In common subexpression elimination (CSE), scan through jump instructions
5938 when the target of the jump is not reached by any other path.  For
5939 example, when CSE encounters an @code{if} statement with an
5940 @code{else} clause, CSE will follow the jump when the condition
5941 tested is false.
5942
5943 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5944
5945 @item -fcse-skip-blocks
5946 @opindex fcse-skip-blocks
5947 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5948 follow jumps which conditionally skip over blocks.  When CSE
5949 encounters a simple @code{if} statement with no else clause,
5950 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5951 body of the @code{if}.
5952
5953 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5954
5955 @item -frerun-cse-after-loop
5956 @opindex frerun-cse-after-loop
5957 Re-run common subexpression elimination after loop optimizations has been
5958 performed.
5959
5960 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5961
5962 @item -fgcse
5963 @opindex fgcse
5964 Perform a global common subexpression elimination pass.
5965 This pass also performs global constant and copy propagation.
5966
5967 @emph{Note:} When compiling a program using computed gotos, a GCC
5968 extension, you may get better runtime performance if you disable
5969 the global common subexpression elimination pass by adding
5970 @option{-fno-gcse} to the command line.
5971
5972 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5973
5974 @item -fgcse-lm
5975 @opindex fgcse-lm
5976 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5977 attempt to move loads which are only killed by stores into themselves.  This
5978 allows a loop containing a load/store sequence to be changed to a load outside
5979 the loop, and a copy/store within the loop.
5980
5981 Enabled by default when gcse is enabled.
5982
5983 @item -fgcse-sm
5984 @opindex fgcse-sm
5985 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5986 global common subexpression elimination.  This pass will attempt to move
5987 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5988 loops containing a load/store sequence can be changed to a load before
5989 the loop and a store after the loop.
5990
5991 Not enabled at any optimization level.
5992
5993 @item -fgcse-las
5994 @opindex fgcse-las
5995 When @option{-fgcse-las} is enabled, the global common subexpression
5996 elimination pass eliminates redundant loads that come after stores to the
5997 same memory location (both partial and full redundancies).
5998
5999 Not enabled at any optimization level.
6000
6001 @item -fgcse-after-reload
6002 @opindex fgcse-after-reload
6003 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
6004 pass is performed after reload.  The purpose of this pass is to cleanup
6005 redundant spilling.
6006
6007 @item -funsafe-loop-optimizations
6008 @opindex funsafe-loop-optimizations
6009 If given, the loop optimizer will assume that loop indices do not
6010 overflow, and that the loops with nontrivial exit condition are not
6011 infinite.  This enables a wider range of loop optimizations even if
6012 the loop optimizer itself cannot prove that these assumptions are valid.
6013 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
6014 if it finds this kind of loop.
6015
6016 @item -fcrossjumping
6017 @opindex fcrossjumping
6018 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
6019 resulting code may or may not perform better than without cross-jumping.
6020
6021 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6022
6023 @item -fauto-inc-dec
6024 @opindex fauto-inc-dec
6025 Combine increments or decrements of addresses with memory accesses.
6026 This pass is always skipped on architectures that do not have
6027 instructions to support this.  Enabled by default at @option{-O} and
6028 higher on architectures that support this.
6029
6030 @item -fdce
6031 @opindex fdce
6032 Perform dead code elimination (DCE) on RTL@.
6033 Enabled by default at @option{-O} and higher.
6034
6035 @item -fdse
6036 @opindex fdse
6037 Perform dead store elimination (DSE) on RTL@.
6038 Enabled by default at @option{-O} and higher.
6039
6040 @item -fif-conversion
6041 @opindex fif-conversion
6042 Attempt to transform conditional jumps into branch-less equivalents.  This
6043 include use of conditional moves, min, max, set flags and abs instructions, and
6044 some tricks doable by standard arithmetics.  The use of conditional execution
6045 on chips where it is available is controlled by @code{if-conversion2}.
6046
6047 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6048
6049 @item -fif-conversion2
6050 @opindex fif-conversion2
6051 Use conditional execution (where available) to transform conditional jumps into
6052 branch-less equivalents.
6053
6054 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6055
6056 @item -fdelete-null-pointer-checks
6057 @opindex fdelete-null-pointer-checks
6058 Assume that programs cannot safely dereference null pointers, and that
6059 no code or data element resides there.  This enables simple constant
6060 folding optimizations at all optimization levels.  In addition, other
6061 optimization passes in GCC use this flag to control global dataflow
6062 analyses that eliminate useless checks for null pointers; these assume
6063 that if a pointer is checked after it has already been dereferenced,
6064 it cannot be null.
6065
6066 Note however that in some environments this assumption is not true.
6067 Use @option{-fno-delete-null-pointer-checks} to disable this optimization
6068 for programs which depend on that behavior.
6069
6070 Some targets, especially embedded ones, disable this option at all levels.
6071 Otherwise it is enabled at all levels: @option{-O0}, @option{-O1},
6072 @option{-O2}, @option{-O3}, @option{-Os}.  Passes that use the information
6073 are enabled independently at different optimization levels.
6074
6075 @item -fexpensive-optimizations
6076 @opindex fexpensive-optimizations
6077 Perform a number of minor optimizations that are relatively expensive.
6078
6079 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6080
6081 @item -foptimize-register-move
6082 @itemx -fregmove
6083 @opindex foptimize-register-move
6084 @opindex fregmove
6085 Attempt to reassign register numbers in move instructions and as
6086 operands of other simple instructions in order to maximize the amount of
6087 register tying.  This is especially helpful on machines with two-operand
6088 instructions.
6089
6090 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
6091 optimization.
6092
6093 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6094
6095 @item -fira-algorithm=@var{algorithm}
6096 Use specified coloring algorithm for the integrated register
6097 allocator.  The @var{algorithm} argument should be @code{priority} or
6098 @code{CB}.  The first algorithm specifies Chow's priority coloring,
6099 the second one specifies Chaitin-Briggs coloring.  The second
6100 algorithm can be unimplemented for some architectures.  If it is
6101 implemented, it is the default because Chaitin-Briggs coloring as a
6102 rule generates a better code.
6103
6104 @item -fira-region=@var{region}
6105 Use specified regions for the integrated register allocator.  The
6106 @var{region} argument should be one of @code{all}, @code{mixed}, or
6107 @code{one}.  The first value means using all loops as register
6108 allocation regions, the second value which is the default means using
6109 all loops except for loops with small register pressure as the
6110 regions, and third one means using all function as a single region.
6111 The first value can give best result for machines with small size and
6112 irregular register set, the third one results in faster and generates
6113 decent code and the smallest size code, and the default value usually
6114 give the best results in most cases and for most architectures.
6115
6116 @item -fira-coalesce
6117 @opindex fira-coalesce
6118 Do optimistic register coalescing.  This option might be profitable for
6119 architectures with big regular register files.
6120
6121 @item -fno-ira-share-save-slots
6122 @opindex fno-ira-share-save-slots
6123 Switch off sharing stack slots used for saving call used hard
6124 registers living through a call.  Each hard register will get a
6125 separate stack slot and as a result function stack frame will be
6126 bigger.
6127
6128 @item -fno-ira-share-spill-slots
6129 @opindex fno-ira-share-spill-slots
6130 Switch off sharing stack slots allocated for pseudo-registers.  Each
6131 pseudo-register which did not get a hard register will get a separate
6132 stack slot and as a result function stack frame will be bigger.
6133
6134 @item -fira-verbose=@var{n}
6135 @opindex fira-verbose
6136 Set up how verbose dump file for the integrated register allocator
6137 will be.  Default value is 5.  If the value is greater or equal to 10,
6138 the dump file will be stderr as if the value were @var{n} minus 10.
6139
6140 @item -fdelayed-branch
6141 @opindex fdelayed-branch
6142 If supported for the target machine, attempt to reorder instructions
6143 to exploit instruction slots available after delayed branch
6144 instructions.
6145
6146 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6147
6148 @item -fschedule-insns
6149 @opindex fschedule-insns
6150 If supported for the target machine, attempt to reorder instructions to
6151 eliminate execution stalls due to required data being unavailable.  This
6152 helps machines that have slow floating point or memory load instructions
6153 by allowing other instructions to be issued until the result of the load
6154 or floating point instruction is required.
6155
6156 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6157
6158 @item -fschedule-insns2
6159 @opindex fschedule-insns2
6160 Similar to @option{-fschedule-insns}, but requests an additional pass of
6161 instruction scheduling after register allocation has been done.  This is
6162 especially useful on machines with a relatively small number of
6163 registers and where memory load instructions take more than one cycle.
6164
6165 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6166
6167 @item -fno-sched-interblock
6168 @opindex fno-sched-interblock
6169 Don't schedule instructions across basic blocks.  This is normally
6170 enabled by default when scheduling before register allocation, i.e.@:
6171 with @option{-fschedule-insns} or at @option{-O2} or higher.
6172
6173 @item -fno-sched-spec
6174 @opindex fno-sched-spec
6175 Don't allow speculative motion of non-load instructions.  This is normally
6176 enabled by default when scheduling before register allocation, i.e.@:
6177 with @option{-fschedule-insns} or at @option{-O2} or higher.
6178
6179 @item -fsched-spec-load
6180 @opindex fsched-spec-load
6181 Allow speculative motion of some load instructions.  This only makes
6182 sense when scheduling before register allocation, i.e.@: with
6183 @option{-fschedule-insns} or at @option{-O2} or higher.
6184
6185 @item -fsched-spec-load-dangerous
6186 @opindex fsched-spec-load-dangerous
6187 Allow speculative motion of more load instructions.  This only makes
6188 sense when scheduling before register allocation, i.e.@: with
6189 @option{-fschedule-insns} or at @option{-O2} or higher.
6190
6191 @item -fsched-stalled-insns
6192 @itemx -fsched-stalled-insns=@var{n}
6193 @opindex fsched-stalled-insns
6194 Define how many insns (if any) can be moved prematurely from the queue
6195 of stalled insns into the ready list, during the second scheduling pass.
6196 @option{-fno-sched-stalled-insns} means that no insns will be moved
6197 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
6198 on how many queued insns can be moved prematurely.
6199 @option{-fsched-stalled-insns} without a value is equivalent to
6200 @option{-fsched-stalled-insns=1}.
6201
6202 @item -fsched-stalled-insns-dep
6203 @itemx -fsched-stalled-insns-dep=@var{n}
6204 @opindex fsched-stalled-insns-dep
6205 Define how many insn groups (cycles) will be examined for a dependency
6206 on a stalled insn that is candidate for premature removal from the queue
6207 of stalled insns.  This has an effect only during the second scheduling pass,
6208 and only if @option{-fsched-stalled-insns} is used.
6209 @option{-fno-sched-stalled-insns-dep} is equivalent to
6210 @option{-fsched-stalled-insns-dep=0}.
6211 @option{-fsched-stalled-insns-dep} without a value is equivalent to
6212 @option{-fsched-stalled-insns-dep=1}.
6213
6214 @item -fsched2-use-superblocks
6215 @opindex fsched2-use-superblocks
6216 When scheduling after register allocation, do use superblock scheduling
6217 algorithm.  Superblock scheduling allows motion across basic block boundaries
6218 resulting on faster schedules.  This option is experimental, as not all machine
6219 descriptions used by GCC model the CPU closely enough to avoid unreliable
6220 results from the algorithm.
6221
6222 This only makes sense when scheduling after register allocation, i.e.@: with
6223 @option{-fschedule-insns2} or at @option{-O2} or higher.
6224
6225 @item -fsched2-use-traces
6226 @opindex fsched2-use-traces
6227 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
6228 allocation and additionally perform code duplication in order to increase the
6229 size of superblocks using tracer pass.  See @option{-ftracer} for details on
6230 trace formation.
6231
6232 This mode should produce faster but significantly longer programs.  Also
6233 without @option{-fbranch-probabilities} the traces constructed may not
6234 match the reality and hurt the performance.  This only makes
6235 sense when scheduling after register allocation, i.e.@: with
6236 @option{-fschedule-insns2} or at @option{-O2} or higher.
6237
6238 @item -freschedule-modulo-scheduled-loops
6239 @opindex freschedule-modulo-scheduled-loops
6240 The modulo scheduling comes before the traditional scheduling, if a loop
6241 was modulo scheduled we may want to prevent the later scheduling passes
6242 from changing its schedule, we use this option to control that.
6243
6244 @item -fselective-scheduling
6245 @opindex fselective-scheduling
6246 Schedule instructions using selective scheduling algorithm.  Selective
6247 scheduling runs instead of the first scheduler pass.
6248
6249 @item -fselective-scheduling2
6250 @opindex fselective-scheduling2
6251 Schedule instructions using selective scheduling algorithm.  Selective
6252 scheduling runs instead of the second scheduler pass.
6253
6254 @item -fsel-sched-pipelining
6255 @opindex fsel-sched-pipelining
6256 Enable software pipelining of innermost loops during selective scheduling.  
6257 This option has no effect until one of @option{-fselective-scheduling} or 
6258 @option{-fselective-scheduling2} is turned on.
6259
6260 @item -fsel-sched-pipelining-outer-loops
6261 @opindex fsel-sched-pipelining-outer-loops
6262 When pipelining loops during selective scheduling, also pipeline outer loops.
6263 This option has no effect until @option{-fsel-sched-pipelining} is turned on.
6264
6265 @item -fcaller-saves
6266 @opindex fcaller-saves
6267 Enable values to be allocated in registers that will be clobbered by
6268 function calls, by emitting extra instructions to save and restore the
6269 registers around such calls.  Such allocation is done only when it
6270 seems to result in better code than would otherwise be produced.
6271
6272 This option is always enabled by default on certain machines, usually
6273 those which have no call-preserved registers to use instead.
6274
6275 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6276
6277 @item -fconserve-stack
6278 @opindex fconserve-stack
6279 Attempt to minimize stack usage.  The compiler will attempt to use less
6280 stack space, even if that makes the program slower.  This option
6281 implies setting the @option{large-stack-frame} parameter to 100
6282 and the @option{large-stack-frame-growth} parameter to 400.
6283
6284 @item -ftree-reassoc
6285 @opindex ftree-reassoc
6286 Perform reassociation on trees.  This flag is enabled by default
6287 at @option{-O} and higher.
6288
6289 @item -ftree-pre
6290 @opindex ftree-pre
6291 Perform partial redundancy elimination (PRE) on trees.  This flag is
6292 enabled by default at @option{-O2} and @option{-O3}.
6293
6294 @item -ftree-forwprop
6295 @opindex ftree-forwprop
6296 Perform forward propagation on trees.  This flag is enabled by default
6297 at @option{-O} and higher.
6298
6299 @item -ftree-fre
6300 @opindex ftree-fre
6301 Perform full redundancy elimination (FRE) on trees.  The difference
6302 between FRE and PRE is that FRE only considers expressions
6303 that are computed on all paths leading to the redundant computation.
6304 This analysis is faster than PRE, though it exposes fewer redundancies.
6305 This flag is enabled by default at @option{-O} and higher.
6306
6307 @item -ftree-phiprop
6308 @opindex ftree-phiprop
6309 Perform hoisting of loads from conditional pointers on trees.  This
6310 pass is enabled by default at @option{-O} and higher.
6311
6312 @item -ftree-copy-prop
6313 @opindex ftree-copy-prop
6314 Perform copy propagation on trees.  This pass eliminates unnecessary
6315 copy operations.  This flag is enabled by default at @option{-O} and
6316 higher.
6317
6318 @item -fipa-pure-const
6319 @opindex fipa-pure-const
6320 Discover which functions are pure or constant.
6321 Enabled by default at @option{-O} and higher.
6322
6323 @item -fipa-reference
6324 @opindex fipa-reference
6325 Discover which static variables do not escape cannot escape the
6326 compilation unit.
6327 Enabled by default at @option{-O} and higher.
6328
6329 @item -fipa-struct-reorg
6330 @opindex fipa-struct-reorg
6331 Perform structure reorganization optimization, that change C-like structures 
6332 layout in order to better utilize spatial locality.  This transformation is 
6333 affective for programs containing arrays of structures.  Available in two 
6334 compilation modes: profile-based (enabled with @option{-fprofile-generate})
6335 or static (which uses built-in heuristics).  Require @option{-fipa-type-escape}
6336 to provide the safety of this transformation.  It works only in whole program
6337 mode, so it requires @option{-fwhole-program} and @option{-combine} to be
6338 enabled.  Structures considered @samp{cold} by this transformation are not
6339 affected (see @option{--param struct-reorg-cold-struct-ratio=@var{value}}).
6340
6341 With this flag, the program debug info reflects a new structure layout.
6342
6343 @item -fipa-pta
6344 @opindex fipa-pta
6345 Perform interprocedural pointer analysis.  This option is experimental
6346 and does not affect generated code.
6347
6348 @item -fipa-cp
6349 @opindex fipa-cp
6350 Perform interprocedural constant propagation.
6351 This optimization analyzes the program to determine when values passed
6352 to functions are constants and then optimizes accordingly.  
6353 This optimization can substantially increase performance
6354 if the application has constants passed to functions.
6355 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
6356
6357 @item -fipa-cp-clone
6358 @opindex fipa-cp-clone
6359 Perform function cloning to make interprocedural constant propagation stronger.
6360 When enabled, interprocedural constant propagation will perform function cloning
6361 when externally visible function can be called with constant arguments.
6362 Because this optimization can create multiple copies of functions,
6363 it may significantly increase code size
6364 (see @option{--param ipcp-unit-growth=@var{value}}).
6365 This flag is enabled by default at @option{-O3}.
6366
6367 @item -fipa-matrix-reorg
6368 @opindex fipa-matrix-reorg
6369 Perform matrix flattening and transposing.
6370 Matrix flattening tries to replace an @math{m}-dimensional matrix
6371 with its equivalent @math{n}-dimensional matrix, where @math{n < m}.
6372 This reduces the level of indirection needed for accessing the elements
6373 of the matrix. The second optimization is matrix transposing that
6374 attempts to change the order of the matrix's dimensions in order to
6375 improve cache locality.
6376 Both optimizations need the @option{-fwhole-program} flag. 
6377 Transposing is enabled only if profiling information is available.
6378
6379
6380 @item -ftree-sink
6381 @opindex ftree-sink
6382 Perform forward store motion  on trees.  This flag is
6383 enabled by default at @option{-O} and higher.
6384
6385 @item -ftree-ccp
6386 @opindex ftree-ccp
6387 Perform sparse conditional constant propagation (CCP) on trees.  This
6388 pass only operates on local scalar variables and is enabled by default
6389 at @option{-O} and higher.
6390
6391 @item -ftree-switch-conversion
6392 Perform conversion of simple initializations in a switch to
6393 initializations from a scalar array.  This flag is enabled by default
6394 at @option{-O2} and higher.
6395
6396 @item -ftree-dce
6397 @opindex ftree-dce
6398 Perform dead code elimination (DCE) on trees.  This flag is enabled by
6399 default at @option{-O} and higher.
6400
6401 @item -ftree-builtin-call-dce
6402 @opindex ftree-builtin-call-dce
6403 Perform conditional dead code elimination (DCE) for calls to builtin functions 
6404 that may set @code{errno} but are otherwise side-effect free.  This flag is 
6405 enabled by default at @option{-O2} and higher if @option{-Os} is not also 
6406 specified.
6407
6408 @item -ftree-dominator-opts
6409 @opindex ftree-dominator-opts
6410 Perform a variety of simple scalar cleanups (constant/copy
6411 propagation, redundancy elimination, range propagation and expression
6412 simplification) based on a dominator tree traversal.  This also
6413 performs jump threading (to reduce jumps to jumps). This flag is
6414 enabled by default at @option{-O} and higher.
6415
6416 @item -ftree-dse
6417 @opindex ftree-dse
6418 Perform dead store elimination (DSE) on trees.  A dead store is a store into
6419 a memory location which will later be overwritten by another store without
6420 any intervening loads.  In this case the earlier store can be deleted.  This
6421 flag is enabled by default at @option{-O} and higher.
6422
6423 @item -ftree-ch
6424 @opindex ftree-ch
6425 Perform loop header copying on trees.  This is beneficial since it increases
6426 effectiveness of code motion optimizations.  It also saves one jump.  This flag
6427 is enabled by default at @option{-O} and higher.  It is not enabled
6428 for @option{-Os}, since it usually increases code size.
6429
6430 @item -ftree-loop-optimize
6431 @opindex ftree-loop-optimize
6432 Perform loop optimizations on trees.  This flag is enabled by default
6433 at @option{-O} and higher.
6434
6435 @item -ftree-loop-linear
6436 @opindex ftree-loop-linear
6437 Perform linear loop transformations on tree.  This flag can improve cache
6438 performance and allow further loop optimizations to take place.
6439
6440 @item -floop-interchange
6441 Perform loop interchange transformations on loops.  Interchanging two
6442 nested loops switches the inner and outer loops.  For example, given a
6443 loop like:
6444 @smallexample
6445 DO J = 1, M
6446   DO I = 1, N
6447     A(J, I) = A(J, I) * C
6448   ENDDO
6449 ENDDO
6450 @end smallexample
6451 loop interchange will transform the loop as if the user had written:
6452 @smallexample
6453 DO I = 1, N
6454   DO J = 1, M
6455     A(J, I) = A(J, I) * C
6456   ENDDO
6457 ENDDO
6458 @end smallexample
6459 which can be beneficial when @code{N} is larger than the caches,
6460 because in Fortran, the elements of an array are stored in memory
6461 contiguously by column, and the original loop iterates over rows,
6462 potentially creating at each access a cache miss.  This optimization
6463 applies to all the languages supported by GCC and is not limited to
6464 Fortran.  To use this code transformation, GCC has to be configured
6465 with @option{--with-ppl} and @option{--with-cloog} to enable the
6466 Graphite loop transformation infrastructure.
6467
6468 @item -floop-strip-mine
6469 Perform loop strip mining transformations on loops.  Strip mining
6470 splits a loop into two nested loops.  The outer loop has strides 
6471 equal to the strip size and the inner loop has strides of the 
6472 original loop within a strip.  For example, given a loop like:
6473 @smallexample
6474 DO I = 1, N
6475   A(I) = A(I) + C
6476 ENDDO
6477 @end smallexample
6478 loop strip mining will transform the loop as if the user had written:
6479 @smallexample
6480 DO II = 1, N, 4
6481   DO I = II, min (II + 3, N)
6482     A(I) = A(I) + C
6483   ENDDO
6484 ENDDO
6485 @end smallexample
6486 This optimization applies to all the languages supported by GCC and is
6487 not limited to Fortran.  To use this code transformation, GCC has to
6488 be configured with @option{--with-ppl} and @option{--with-cloog} to
6489 enable the Graphite loop transformation infrastructure.
6490
6491 @item -floop-block
6492 Perform loop blocking transformations on loops.  Blocking strip mines
6493 each loop in the loop nest such that the memory accesses of the
6494 element loops fit inside caches.  For example, given a loop like:
6495 @smallexample
6496 DO I = 1, N
6497   DO J = 1, M
6498     A(J, I) = B(I) + C(J)
6499   ENDDO
6500 ENDDO
6501 @end smallexample
6502 loop blocking will transform the loop as if the user had written:
6503 @smallexample
6504 DO II = 1, N, 64
6505   DO JJ = 1, M, 64
6506     DO I = II, min (II + 63, N)
6507       DO J = JJ, min (JJ + 63, M)
6508         A(J, I) = B(I) + C(J)
6509       ENDDO
6510     ENDDO
6511   ENDDO
6512 ENDDO
6513 @end smallexample
6514 which can be beneficial when @code{M} is larger than the caches,
6515 because the innermost loop will iterate over a smaller amount of data
6516 that can be kept in the caches.  This optimization applies to all the
6517 languages supported by GCC and is not limited to Fortran.  To use this
6518 code transformation, GCC has to be configured with @option{--with-ppl}
6519 and @option{--with-cloog} to enable the Graphite loop transformation
6520 infrastructure.
6521
6522 @item -fcheck-data-deps
6523 @opindex fcheck-data-deps
6524 Compare the results of several data dependence analyzers.  This option
6525 is used for debugging the data dependence analyzers.
6526
6527 @item -ftree-loop-distribution
6528 Perform loop distribution.  This flag can improve cache performance on
6529 big loop bodies and allow further loop optimizations, like
6530 parallelization or vectorization, to take place.  For example, the loop
6531 @smallexample
6532 DO I = 1, N
6533   A(I) = B(I) + C
6534   D(I) = E(I) * F
6535 ENDDO
6536 @end smallexample
6537 is transformed to
6538 @smallexample
6539 DO I = 1, N
6540    A(I) = B(I) + C
6541 ENDDO
6542 DO I = 1, N
6543    D(I) = E(I) * F
6544 ENDDO
6545 @end smallexample
6546
6547 @item -ftree-loop-im
6548 @opindex ftree-loop-im
6549 Perform loop invariant motion on trees.  This pass moves only invariants that
6550 would be hard to handle at RTL level (function calls, operations that expand to
6551 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
6552 operands of conditions that are invariant out of the loop, so that we can use
6553 just trivial invariantness analysis in loop unswitching.  The pass also includes
6554 store motion.
6555
6556 @item -ftree-loop-ivcanon
6557 @opindex ftree-loop-ivcanon
6558 Create a canonical counter for number of iterations in the loop for that
6559 determining number of iterations requires complicated analysis.  Later
6560 optimizations then may determine the number easily.  Useful especially
6561 in connection with unrolling.
6562
6563 @item -fivopts
6564 @opindex fivopts
6565 Perform induction variable optimizations (strength reduction, induction
6566 variable merging and induction variable elimination) on trees.
6567
6568 @item -ftree-parallelize-loops=n
6569 @opindex ftree-parallelize-loops
6570 Parallelize loops, i.e., split their iteration space to run in n threads.
6571 This is only possible for loops whose iterations are independent
6572 and can be arbitrarily reordered.  The optimization is only
6573 profitable on multiprocessor machines, for loops that are CPU-intensive,
6574 rather than constrained e.g.@: by memory bandwidth.  This option
6575 implies @option{-pthread}, and thus is only supported on targets
6576 that have support for @option{-pthread}.
6577
6578 @item -ftree-pta
6579 @opindex ftree-pta
6580 Perform function-local points-to analysis on trees.  This flag is
6581 enabled by default at @option{-O} and higher.
6582
6583 @item -ftree-sra
6584 @opindex ftree-sra
6585 Perform scalar replacement of aggregates.  This pass replaces structure
6586 references with scalars to prevent committing structures to memory too
6587 early.  This flag is enabled by default at @option{-O} and higher.
6588
6589 @item -ftree-copyrename
6590 @opindex ftree-copyrename
6591 Perform copy renaming on trees.  This pass attempts to rename compiler
6592 temporaries to other variables at copy locations, usually resulting in
6593 variable names which more closely resemble the original variables.  This flag
6594 is enabled by default at @option{-O} and higher.
6595
6596 @item -ftree-ter
6597 @opindex ftree-ter
6598 Perform temporary expression replacement during the SSA->normal phase.  Single
6599 use/single def temporaries are replaced at their use location with their
6600 defining expression.  This results in non-GIMPLE code, but gives the expanders
6601 much more complex trees to work on resulting in better RTL generation.  This is
6602 enabled by default at @option{-O} and higher.
6603
6604 @item -ftree-vectorize
6605 @opindex ftree-vectorize
6606 Perform loop vectorization on trees. This flag is enabled by default at
6607 @option{-O3}.
6608
6609 @item -ftree-vect-loop-version
6610 @opindex ftree-vect-loop-version
6611 Perform loop versioning when doing loop vectorization on trees.  When a loop
6612 appears to be vectorizable except that data alignment or data dependence cannot
6613 be determined at compile time then vectorized and non-vectorized versions of
6614 the loop are generated along with runtime checks for alignment or dependence
6615 to control which version is executed.  This option is enabled by default
6616 except at level @option{-Os} where it is disabled.
6617
6618 @item -fvect-cost-model
6619 @opindex fvect-cost-model
6620 Enable cost model for vectorization.
6621
6622 @item -ftree-vrp
6623 @opindex ftree-vrp
6624 Perform Value Range Propagation on trees.  This is similar to the
6625 constant propagation pass, but instead of values, ranges of values are
6626 propagated.  This allows the optimizers to remove unnecessary range
6627 checks like array bound checks and null pointer checks.  This is
6628 enabled by default at @option{-O2} and higher.  Null pointer check
6629 elimination is only done if @option{-fdelete-null-pointer-checks} is
6630 enabled.
6631
6632 @item -ftracer
6633 @opindex ftracer
6634 Perform tail duplication to enlarge superblock size.  This transformation
6635 simplifies the control flow of the function allowing other optimizations to do
6636 better job.
6637
6638 @item -funroll-loops
6639 @opindex funroll-loops
6640 Unroll loops whose number of iterations can be determined at compile
6641 time or upon entry to the loop.  @option{-funroll-loops} implies
6642 @option{-frerun-cse-after-loop}.  This option makes code larger,
6643 and may or may not make it run faster.
6644
6645 @item -funroll-all-loops
6646 @opindex funroll-all-loops
6647 Unroll all loops, even if their number of iterations is uncertain when
6648 the loop is entered.  This usually makes programs run more slowly.
6649 @option{-funroll-all-loops} implies the same options as
6650 @option{-funroll-loops},
6651
6652 @item -fsplit-ivs-in-unroller
6653 @opindex fsplit-ivs-in-unroller
6654 Enables expressing of values of induction variables in later iterations
6655 of the unrolled loop using the value in the first iteration.  This breaks
6656 long dependency chains, thus improving efficiency of the scheduling passes.
6657
6658 Combination of @option{-fweb} and CSE is often sufficient to obtain the
6659 same effect.  However in cases the loop body is more complicated than
6660 a single basic block, this is not reliable.  It also does not work at all
6661 on some of the architectures due to restrictions in the CSE pass.
6662
6663 This optimization is enabled by default.
6664
6665 @item -fvariable-expansion-in-unroller
6666 @opindex fvariable-expansion-in-unroller
6667 With this option, the compiler will create multiple copies of some
6668 local variables when unrolling a loop which can result in superior code.
6669
6670 @item -fpredictive-commoning
6671 @opindex fpredictive-commoning
6672 Perform predictive commoning optimization, i.e., reusing computations
6673 (especially memory loads and stores) performed in previous
6674 iterations of loops.
6675
6676 This option is enabled at level @option{-O3}.
6677
6678 @item -fprefetch-loop-arrays
6679 @opindex fprefetch-loop-arrays
6680 If supported by the target machine, generate instructions to prefetch
6681 memory to improve the performance of loops that access large arrays.
6682
6683 This option may generate better or worse code; results are highly
6684 dependent on the structure of loops within the source code.
6685
6686 Disabled at level @option{-Os}.
6687
6688 @item -fno-peephole
6689 @itemx -fno-peephole2
6690 @opindex fno-peephole
6691 @opindex fno-peephole2
6692 Disable any machine-specific peephole optimizations.  The difference
6693 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
6694 are implemented in the compiler; some targets use one, some use the
6695 other, a few use both.
6696
6697 @option{-fpeephole} is enabled by default.
6698 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6699
6700 @item -fno-guess-branch-probability
6701 @opindex fno-guess-branch-probability
6702 Do not guess branch probabilities using heuristics.
6703
6704 GCC will use heuristics to guess branch probabilities if they are
6705 not provided by profiling feedback (@option{-fprofile-arcs}).  These
6706 heuristics are based on the control flow graph.  If some branch probabilities
6707 are specified by @samp{__builtin_expect}, then the heuristics will be
6708 used to guess branch probabilities for the rest of the control flow graph,
6709 taking the @samp{__builtin_expect} info into account.  The interactions
6710 between the heuristics and @samp{__builtin_expect} can be complex, and in
6711 some cases, it may be useful to disable the heuristics so that the effects
6712 of @samp{__builtin_expect} are easier to understand.
6713
6714 The default is @option{-fguess-branch-probability} at levels
6715 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6716
6717 @item -freorder-blocks
6718 @opindex freorder-blocks
6719 Reorder basic blocks in the compiled function in order to reduce number of
6720 taken branches and improve code locality.
6721
6722 Enabled at levels @option{-O2}, @option{-O3}.
6723
6724 @item -freorder-blocks-and-partition
6725 @opindex freorder-blocks-and-partition
6726 In addition to reordering basic blocks in the compiled function, in order
6727 to reduce number of taken branches, partitions hot and cold basic blocks
6728 into separate sections of the assembly and .o files, to improve
6729 paging and cache locality performance.
6730
6731 This optimization is automatically turned off in the presence of
6732 exception handling, for linkonce sections, for functions with a user-defined
6733 section attribute and on any architecture that does not support named
6734 sections.
6735
6736 @item -freorder-functions
6737 @opindex freorder-functions
6738 Reorder functions in the object file in order to
6739 improve code locality.  This is implemented by using special
6740 subsections @code{.text.hot} for most frequently executed functions and
6741 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
6742 the linker so object file format must support named sections and linker must
6743 place them in a reasonable way.
6744
6745 Also profile feedback must be available in to make this option effective.  See
6746 @option{-fprofile-arcs} for details.
6747
6748 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6749
6750 @item -fstrict-aliasing
6751 @opindex fstrict-aliasing
6752 Allows the compiler to assume the strictest aliasing rules applicable to
6753 the language being compiled.  For C (and C++), this activates
6754 optimizations based on the type of expressions.  In particular, an
6755 object of one type is assumed never to reside at the same address as an
6756 object of a different type, unless the types are almost the same.  For
6757 example, an @code{unsigned int} can alias an @code{int}, but not a
6758 @code{void*} or a @code{double}.  A character type may alias any other
6759 type.
6760
6761 @anchor{Type-punning}Pay special attention to code like this:
6762 @smallexample
6763 union a_union @{
6764   int i;
6765   double d;
6766 @};
6767
6768 int f() @{
6769   a_union t;
6770   t.d = 3.0;
6771   return t.i;
6772 @}
6773 @end smallexample
6774 The practice of reading from a different union member than the one most
6775 recently written to (called ``type-punning'') is common.  Even with
6776 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
6777 is accessed through the union type.  So, the code above will work as
6778 expected.  @xref{Structures unions enumerations and bit-fields
6779 implementation}.  However, this code might not:
6780 @smallexample
6781 int f() @{
6782   a_union t;
6783   int* ip;
6784   t.d = 3.0;
6785   ip = &t.i;
6786   return *ip;
6787 @}
6788 @end smallexample
6789
6790 Similarly, access by taking the address, casting the resulting pointer
6791 and dereferencing the result has undefined behavior, even if the cast
6792 uses a union type, e.g.:
6793 @smallexample
6794 int f() @{
6795   double d = 3.0;
6796   return ((union a_union *) &d)->i;
6797 @}
6798 @end smallexample
6799
6800 The @option{-fstrict-aliasing} option is enabled at levels
6801 @option{-O2}, @option{-O3}, @option{-Os}.
6802
6803 @item -fstrict-overflow
6804 @opindex fstrict-overflow
6805 Allow the compiler to assume strict signed overflow rules, depending
6806 on the language being compiled.  For C (and C++) this means that
6807 overflow when doing arithmetic with signed numbers is undefined, which
6808 means that the compiler may assume that it will not happen.  This
6809 permits various optimizations.  For example, the compiler will assume
6810 that an expression like @code{i + 10 > i} will always be true for
6811 signed @code{i}.  This assumption is only valid if signed overflow is
6812 undefined, as the expression is false if @code{i + 10} overflows when
6813 using twos complement arithmetic.  When this option is in effect any
6814 attempt to determine whether an operation on signed numbers will
6815 overflow must be written carefully to not actually involve overflow.
6816
6817 This option also allows the compiler to assume strict pointer
6818 semantics: given a pointer to an object, if adding an offset to that
6819 pointer does not produce a pointer to the same object, the addition is
6820 undefined.  This permits the compiler to conclude that @code{p + u >
6821 p} is always true for a pointer @code{p} and unsigned integer
6822 @code{u}.  This assumption is only valid because pointer wraparound is
6823 undefined, as the expression is false if @code{p + u} overflows using
6824 twos complement arithmetic.
6825
6826 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
6827 that integer signed overflow is fully defined: it wraps.  When
6828 @option{-fwrapv} is used, there is no difference between
6829 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
6830 integers.  With @option{-fwrapv} certain types of overflow are
6831 permitted.  For example, if the compiler gets an overflow when doing
6832 arithmetic on constants, the overflowed value can still be used with
6833 @option{-fwrapv}, but not otherwise.
6834
6835 The @option{-fstrict-overflow} option is enabled at levels
6836 @option{-O2}, @option{-O3}, @option{-Os}.
6837
6838 @item -falign-functions
6839 @itemx -falign-functions=@var{n}
6840 @opindex falign-functions
6841 Align the start of functions to the next power-of-two greater than
6842 @var{n}, skipping up to @var{n} bytes.  For instance,
6843 @option{-falign-functions=32} aligns functions to the next 32-byte
6844 boundary, but @option{-falign-functions=24} would align to the next
6845 32-byte boundary only if this can be done by skipping 23 bytes or less.
6846
6847 @option{-fno-align-functions} and @option{-falign-functions=1} are
6848 equivalent and mean that functions will not be aligned.
6849
6850 Some assemblers only support this flag when @var{n} is a power of two;
6851 in that case, it is rounded up.
6852
6853 If @var{n} is not specified or is zero, use a machine-dependent default.
6854
6855 Enabled at levels @option{-O2}, @option{-O3}.
6856
6857 @item -falign-labels
6858 @itemx -falign-labels=@var{n}
6859 @opindex falign-labels
6860 Align all branch targets to a power-of-two boundary, skipping up to
6861 @var{n} bytes like @option{-falign-functions}.  This option can easily
6862 make code slower, because it must insert dummy operations for when the
6863 branch target is reached in the usual flow of the code.
6864
6865 @option{-fno-align-labels} and @option{-falign-labels=1} are
6866 equivalent and mean that labels will not be aligned.
6867
6868 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6869 are greater than this value, then their values are used instead.
6870
6871 If @var{n} is not specified or is zero, use a machine-dependent default
6872 which is very likely to be @samp{1}, meaning no alignment.
6873
6874 Enabled at levels @option{-O2}, @option{-O3}.
6875
6876 @item -falign-loops
6877 @itemx -falign-loops=@var{n}
6878 @opindex falign-loops
6879 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6880 like @option{-falign-functions}.  The hope is that the loop will be
6881 executed many times, which will make up for any execution of the dummy
6882 operations.
6883
6884 @option{-fno-align-loops} and @option{-falign-loops=1} are
6885 equivalent and mean that loops will not be aligned.
6886
6887 If @var{n} is not specified or is zero, use a machine-dependent default.
6888
6889 Enabled at levels @option{-O2}, @option{-O3}.
6890
6891 @item -falign-jumps
6892 @itemx -falign-jumps=@var{n}
6893 @opindex falign-jumps
6894 Align branch targets to a power-of-two boundary, for branch targets
6895 where the targets can only be reached by jumping, skipping up to @var{n}
6896 bytes like @option{-falign-functions}.  In this case, no dummy operations
6897 need be executed.
6898
6899 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6900 equivalent and mean that loops will not be aligned.
6901
6902 If @var{n} is not specified or is zero, use a machine-dependent default.
6903
6904 Enabled at levels @option{-O2}, @option{-O3}.
6905
6906 @item -funit-at-a-time
6907 @opindex funit-at-a-time
6908 This option is left for compatibility reasons. @option{-funit-at-a-time}
6909 has no effect, while @option{-fno-unit-at-a-time} implies
6910 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
6911
6912 Enabled by default.
6913
6914 @item -fno-toplevel-reorder
6915 @opindex fno-toplevel-reorder
6916 Do not reorder top-level functions, variables, and @code{asm}
6917 statements.  Output them in the same order that they appear in the
6918 input file.  When this option is used, unreferenced static variables
6919 will not be removed.  This option is intended to support existing code
6920 which relies on a particular ordering.  For new code, it is better to
6921 use attributes.
6922
6923 Enabled at level @option{-O0}.  When disabled explicitly, it also imply
6924 @option{-fno-section-anchors} that is otherwise enabled at @option{-O0} on some
6925 targets.
6926
6927 @item -fweb
6928 @opindex fweb
6929 Constructs webs as commonly used for register allocation purposes and assign
6930 each web individual pseudo register.  This allows the register allocation pass
6931 to operate on pseudos directly, but also strengthens several other optimization
6932 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6933 however, make debugging impossible, since variables will no longer stay in a
6934 ``home register''.
6935
6936 Enabled by default with @option{-funroll-loops}.
6937
6938 @item -fwhole-program
6939 @opindex fwhole-program
6940 Assume that the current compilation unit represents the whole program being
6941 compiled.  All public functions and variables with the exception of @code{main}
6942 and those merged by attribute @code{externally_visible} become static functions
6943 and in effect are optimized more aggressively by interprocedural optimizers.
6944 While this option is equivalent to proper use of the @code{static} keyword for
6945 programs consisting of a single file, in combination with option
6946 @option{--combine} this flag can be used to compile many smaller scale C
6947 programs since the functions and variables become local for the whole combined
6948 compilation unit, not for the single source file itself.
6949
6950 This option implies @option{-fwhole-file} for Fortran programs.
6951
6952 @item -fcprop-registers
6953 @opindex fcprop-registers
6954 After register allocation and post-register allocation instruction splitting,
6955 we perform a copy-propagation pass to try to reduce scheduling dependencies
6956 and occasionally eliminate the copy.
6957
6958 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6959
6960 @item -fprofile-correction
6961 @opindex fprofile-correction
6962 Profiles collected using an instrumented binary for multi-threaded programs may
6963 be inconsistent due to missed counter updates. When this option is specified,
6964 GCC will use heuristics to correct or smooth out such inconsistencies. By
6965 default, GCC will emit an error message when an inconsistent profile is detected.
6966
6967 @item -fprofile-dir=@var{path}
6968 @opindex fprofile-dir
6969
6970 Set the directory to search the profile data files in to @var{path}.
6971 This option affects only the profile data generated by
6972 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
6973 and used by @option{-fprofile-use} and @option{-fbranch-probabilities} 
6974 and its related options.
6975 By default, GCC will use the current directory as @var{path}
6976 thus the profile data file will appear in the same directory as the object file.
6977
6978 @item -fprofile-generate
6979 @itemx -fprofile-generate=@var{path}
6980 @opindex fprofile-generate
6981
6982 Enable options usually used for instrumenting application to produce
6983 profile useful for later recompilation with profile feedback based
6984 optimization.  You must use @option{-fprofile-generate} both when
6985 compiling and when linking your program.
6986
6987 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6988
6989 If @var{path} is specified, GCC will look at the @var{path} to find
6990 the profile feedback data files. See @option{-fprofile-dir}.
6991
6992 @item -fprofile-use
6993 @itemx -fprofile-use=@var{path}
6994 @opindex fprofile-use
6995 Enable profile feedback directed optimizations, and optimizations
6996 generally profitable only with profile feedback available.
6997
6998 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6999 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
7000
7001 By default, GCC emits an error message if the feedback profiles do not
7002 match the source code.  This error can be turned into a warning by using
7003 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
7004 code.
7005
7006 If @var{path} is specified, GCC will look at the @var{path} to find
7007 the profile feedback data files. See @option{-fprofile-dir}.
7008 @end table
7009
7010 The following options control compiler behavior regarding floating
7011 point arithmetic.  These options trade off between speed and
7012 correctness.  All must be specifically enabled.
7013
7014 @table @gcctabopt
7015 @item -ffloat-store
7016 @opindex ffloat-store
7017 Do not store floating point variables in registers, and inhibit other
7018 options that might change whether a floating point value is taken from a
7019 register or memory.
7020
7021 @cindex floating point precision
7022 This option prevents undesirable excess precision on machines such as
7023 the 68000 where the floating registers (of the 68881) keep more
7024 precision than a @code{double} is supposed to have.  Similarly for the
7025 x86 architecture.  For most programs, the excess precision does only
7026 good, but a few programs rely on the precise definition of IEEE floating
7027 point.  Use @option{-ffloat-store} for such programs, after modifying
7028 them to store all pertinent intermediate computations into variables.
7029
7030 @item -fexcess-precision=@var{style}
7031 @opindex fexcess-precision
7032 This option allows further control over excess precision on machines
7033 where floating-point registers have more precision than the IEEE
7034 @code{float} and @code{double} types and the processor does not
7035 support operations rounding to those types.  By default,
7036 @option{-fexcess-precision=fast} is in effect; this means that
7037 operations are carried out in the precision of the registers and that
7038 it is unpredictable when rounding to the types specified in the source
7039 code takes place.  When compiling C, if
7040 @option{-fexcess-precision=standard} is specified then excess
7041 precision will follow the rules specified in ISO C99; in particular,
7042 both casts and assignments cause values to be rounded to their
7043 semantic types (whereas @option{-ffloat-store} only affects
7044 assignments).  This option is enabled by default for C if a strict
7045 conformance option such as @option{-std=c99} is used.
7046
7047 @opindex mfpmath
7048 @option{-fexcess-precision=standard} is not implemented for languages
7049 other than C, and has no effect if
7050 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
7051 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
7052 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
7053 semantics apply without excess precision, and in the latter, rounding
7054 is unpredictable.
7055
7056 @item -ffast-math
7057 @opindex ffast-math
7058 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
7059 @option{-ffinite-math-only}, @option{-fno-rounding-math},
7060 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
7061
7062 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
7063
7064 This option is not turned on by any @option{-O} option since
7065 it can result in incorrect output for programs which depend on
7066 an exact implementation of IEEE or ISO rules/specifications for
7067 math functions. It may, however, yield faster code for programs
7068 that do not require the guarantees of these specifications.
7069
7070 @item -fno-math-errno
7071 @opindex fno-math-errno
7072 Do not set ERRNO after calling math functions that are executed
7073 with a single instruction, e.g., sqrt.  A program that relies on
7074 IEEE exceptions for math error handling may want to use this flag
7075 for speed while maintaining IEEE arithmetic compatibility.
7076
7077 This option is not turned on by any @option{-O} option since
7078 it can result in incorrect output for programs which depend on
7079 an exact implementation of IEEE or ISO rules/specifications for
7080 math functions. It may, however, yield faster code for programs
7081 that do not require the guarantees of these specifications.
7082
7083 The default is @option{-fmath-errno}.
7084
7085 On Darwin systems, the math library never sets @code{errno}.  There is
7086 therefore no reason for the compiler to consider the possibility that
7087 it might, and @option{-fno-math-errno} is the default.
7088
7089 @item -funsafe-math-optimizations
7090 @opindex funsafe-math-optimizations
7091
7092 Allow optimizations for floating-point arithmetic that (a) assume
7093 that arguments and results are valid and (b) may violate IEEE or
7094 ANSI standards.  When used at link-time, it may include libraries
7095 or startup files that change the default FPU control word or other
7096 similar optimizations.
7097
7098 This option is not turned on by any @option{-O} option since
7099 it can result in incorrect output for programs which depend on
7100 an exact implementation of IEEE or ISO rules/specifications for
7101 math functions. It may, however, yield faster code for programs
7102 that do not require the guarantees of these specifications.
7103 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
7104 @option{-fassociative-math} and @option{-freciprocal-math}.
7105
7106 The default is @option{-fno-unsafe-math-optimizations}.
7107
7108 @item -fassociative-math
7109 @opindex fassociative-math
7110
7111 Allow re-association of operands in series of floating-point operations.
7112 This violates the ISO C and C++ language standard by possibly changing
7113 computation result.  NOTE: re-ordering may change the sign of zero as
7114 well as ignore NaNs and inhibit or create underflow or overflow (and
7115 thus cannot be used on a code which relies on rounding behavior like
7116 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
7117 and thus may not be used when ordered comparisons are required.
7118 This option requires that both @option{-fno-signed-zeros} and
7119 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
7120 much sense with @option{-frounding-math}.
7121
7122 The default is @option{-fno-associative-math}.
7123
7124 @item -freciprocal-math
7125 @opindex freciprocal-math
7126
7127 Allow the reciprocal of a value to be used instead of dividing by
7128 the value if this enables optimizations.  For example @code{x / y}
7129 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
7130 is subject to common subexpression elimination.  Note that this loses
7131 precision and increases the number of flops operating on the value.
7132
7133 The default is @option{-fno-reciprocal-math}.
7134
7135 @item -ffinite-math-only
7136 @opindex ffinite-math-only
7137 Allow optimizations for floating-point arithmetic that assume
7138 that arguments and results are not NaNs or +-Infs.
7139
7140 This option is not turned on by any @option{-O} option since
7141 it can result in incorrect output for programs which depend on
7142 an exact implementation of IEEE or ISO rules/specifications for
7143 math functions. It may, however, yield faster code for programs
7144 that do not require the guarantees of these specifications.
7145
7146 The default is @option{-fno-finite-math-only}.
7147
7148 @item -fno-signed-zeros
7149 @opindex fno-signed-zeros
7150 Allow optimizations for floating point arithmetic that ignore the
7151 signedness of zero.  IEEE arithmetic specifies the behavior of
7152 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
7153 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
7154 This option implies that the sign of a zero result isn't significant.
7155
7156 The default is @option{-fsigned-zeros}.
7157
7158 @item -fno-trapping-math
7159 @opindex fno-trapping-math
7160 Compile code assuming that floating-point operations cannot generate
7161 user-visible traps.  These traps include division by zero, overflow,
7162 underflow, inexact result and invalid operation.  This option requires
7163 that @option{-fno-signaling-nans} be in effect.  Setting this option may
7164 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
7165
7166 This option should never be turned on by any @option{-O} option since
7167 it can result in incorrect output for programs which depend on
7168 an exact implementation of IEEE or ISO rules/specifications for
7169 math functions.
7170
7171 The default is @option{-ftrapping-math}.
7172
7173 @item -frounding-math
7174 @opindex frounding-math
7175 Disable transformations and optimizations that assume default floating
7176 point rounding behavior.  This is round-to-zero for all floating point
7177 to integer conversions, and round-to-nearest for all other arithmetic
7178 truncations.  This option should be specified for programs that change
7179 the FP rounding mode dynamically, or that may be executed with a
7180 non-default rounding mode.  This option disables constant folding of
7181 floating point expressions at compile-time (which may be affected by
7182 rounding mode) and arithmetic transformations that are unsafe in the
7183 presence of sign-dependent rounding modes.
7184
7185 The default is @option{-fno-rounding-math}.
7186
7187 This option is experimental and does not currently guarantee to
7188 disable all GCC optimizations that are affected by rounding mode.
7189 Future versions of GCC may provide finer control of this setting
7190 using C99's @code{FENV_ACCESS} pragma.  This command line option
7191 will be used to specify the default state for @code{FENV_ACCESS}.
7192
7193 @item -fsignaling-nans
7194 @opindex fsignaling-nans
7195 Compile code assuming that IEEE signaling NaNs may generate user-visible
7196 traps during floating-point operations.  Setting this option disables
7197 optimizations that may change the number of exceptions visible with
7198 signaling NaNs.  This option implies @option{-ftrapping-math}.
7199
7200 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
7201 be defined.
7202
7203 The default is @option{-fno-signaling-nans}.
7204
7205 This option is experimental and does not currently guarantee to
7206 disable all GCC optimizations that affect signaling NaN behavior.
7207
7208 @item -fsingle-precision-constant
7209 @opindex fsingle-precision-constant
7210 Treat floating point constant as single precision constant instead of
7211 implicitly converting it to double precision constant.
7212
7213 @item -fcx-limited-range
7214 @opindex fcx-limited-range
7215 When enabled, this option states that a range reduction step is not
7216 needed when performing complex division.  Also, there is no checking
7217 whether the result of a complex multiplication or division is @code{NaN
7218 + I*NaN}, with an attempt to rescue the situation in that case.  The
7219 default is @option{-fno-cx-limited-range}, but is enabled by
7220 @option{-ffast-math}.
7221
7222 This option controls the default setting of the ISO C99
7223 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
7224 all languages.
7225
7226 @item -fcx-fortran-rules
7227 @opindex fcx-fortran-rules
7228 Complex multiplication and division follow Fortran rules.  Range
7229 reduction is done as part of complex division, but there is no checking
7230 whether the result of a complex multiplication or division is @code{NaN
7231 + I*NaN}, with an attempt to rescue the situation in that case.
7232
7233 The default is @option{-fno-cx-fortran-rules}.
7234
7235 @end table
7236
7237 The following options control optimizations that may improve
7238 performance, but are not enabled by any @option{-O} options.  This
7239 section includes experimental options that may produce broken code.
7240
7241 @table @gcctabopt
7242 @item -fbranch-probabilities
7243 @opindex fbranch-probabilities
7244 After running a program compiled with @option{-fprofile-arcs}
7245 (@pxref{Debugging Options,, Options for Debugging Your Program or
7246 @command{gcc}}), you can compile it a second time using
7247 @option{-fbranch-probabilities}, to improve optimizations based on
7248 the number of times each branch was taken.  When the program
7249 compiled with @option{-fprofile-arcs} exits it saves arc execution
7250 counts to a file called @file{@var{sourcename}.gcda} for each source
7251 file.  The information in this data file is very dependent on the
7252 structure of the generated code, so you must use the same source code
7253 and the same optimization options for both compilations.
7254
7255 With @option{-fbranch-probabilities}, GCC puts a
7256 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
7257 These can be used to improve optimization.  Currently, they are only
7258 used in one place: in @file{reorg.c}, instead of guessing which path a
7259 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
7260 exactly determine which path is taken more often.
7261
7262 @item -fprofile-values
7263 @opindex fprofile-values
7264 If combined with @option{-fprofile-arcs}, it adds code so that some
7265 data about values of expressions in the program is gathered.
7266
7267 With @option{-fbranch-probabilities}, it reads back the data gathered
7268 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
7269 notes to instructions for their later usage in optimizations.
7270
7271 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
7272
7273 @item -fvpt
7274 @opindex fvpt
7275 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
7276 a code to gather information about values of expressions.
7277
7278 With @option{-fbranch-probabilities}, it reads back the data gathered
7279 and actually performs the optimizations based on them.
7280 Currently the optimizations include specialization of division operation
7281 using the knowledge about the value of the denominator.
7282
7283 @item -frename-registers
7284 @opindex frename-registers
7285 Attempt to avoid false dependencies in scheduled code by making use
7286 of registers left over after register allocation.  This optimization
7287 will most benefit processors with lots of registers.  Depending on the
7288 debug information format adopted by the target, however, it can
7289 make debugging impossible, since variables will no longer stay in
7290 a ``home register''.
7291
7292 Enabled by default with @option{-funroll-loops}.
7293
7294 @item -ftracer
7295 @opindex ftracer
7296 Perform tail duplication to enlarge superblock size.  This transformation
7297 simplifies the control flow of the function allowing other optimizations to do
7298 better job.
7299
7300 Enabled with @option{-fprofile-use}.
7301
7302 @item -funroll-loops
7303 @opindex funroll-loops
7304 Unroll loops whose number of iterations can be determined at compile time or
7305 upon entry to the loop.  @option{-funroll-loops} implies
7306 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
7307 It also turns on complete loop peeling (i.e.@: complete removal of loops with
7308 small constant number of iterations).  This option makes code larger, and may
7309 or may not make it run faster.
7310
7311 Enabled with @option{-fprofile-use}.
7312
7313 @item -funroll-all-loops
7314 @opindex funroll-all-loops
7315 Unroll all loops, even if their number of iterations is uncertain when
7316 the loop is entered.  This usually makes programs run more slowly.
7317 @option{-funroll-all-loops} implies the same options as
7318 @option{-funroll-loops}.
7319
7320 @item -fpeel-loops
7321 @opindex fpeel-loops
7322 Peels the loops for that there is enough information that they do not
7323 roll much (from profile feedback).  It also turns on complete loop peeling
7324 (i.e.@: complete removal of loops with small constant number of iterations).
7325
7326 Enabled with @option{-fprofile-use}.
7327
7328 @item -fmove-loop-invariants
7329 @opindex fmove-loop-invariants
7330 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
7331 at level @option{-O1}
7332
7333 @item -funswitch-loops
7334 @opindex funswitch-loops
7335 Move branches with loop invariant conditions out of the loop, with duplicates
7336 of the loop on both branches (modified according to result of the condition).
7337
7338 @item -ffunction-sections
7339 @itemx -fdata-sections
7340 @opindex ffunction-sections
7341 @opindex fdata-sections
7342 Place each function or data item into its own section in the output
7343 file if the target supports arbitrary sections.  The name of the
7344 function or the name of the data item determines the section's name
7345 in the output file.
7346
7347 Use these options on systems where the linker can perform optimizations
7348 to improve locality of reference in the instruction space.  Most systems
7349 using the ELF object format and SPARC processors running Solaris 2 have
7350 linkers with such optimizations.  AIX may have these optimizations in
7351 the future.
7352
7353 Only use these options when there are significant benefits from doing
7354 so.  When you specify these options, the assembler and linker will
7355 create larger object and executable files and will also be slower.
7356 You will not be able to use @code{gprof} on all systems if you
7357 specify this option and you may have problems with debugging if
7358 you specify both this option and @option{-g}.
7359
7360 @item -fbranch-target-load-optimize
7361 @opindex fbranch-target-load-optimize
7362 Perform branch target register load optimization before prologue / epilogue
7363 threading.
7364 The use of target registers can typically be exposed only during reload,
7365 thus hoisting loads out of loops and doing inter-block scheduling needs
7366 a separate optimization pass.
7367
7368 @item -fbranch-target-load-optimize2
7369 @opindex fbranch-target-load-optimize2
7370 Perform branch target register load optimization after prologue / epilogue
7371 threading.
7372
7373 @item -fbtr-bb-exclusive
7374 @opindex fbtr-bb-exclusive
7375 When performing branch target register load optimization, don't reuse
7376 branch target registers in within any basic block.
7377
7378 @item -fstack-protector
7379 @opindex fstack-protector
7380 Emit extra code to check for buffer overflows, such as stack smashing
7381 attacks.  This is done by adding a guard variable to functions with
7382 vulnerable objects.  This includes functions that call alloca, and
7383 functions with buffers larger than 8 bytes.  The guards are initialized
7384 when a function is entered and then checked when the function exits.
7385 If a guard check fails, an error message is printed and the program exits.
7386
7387 @item -fstack-protector-all
7388 @opindex fstack-protector-all
7389 Like @option{-fstack-protector} except that all functions are protected.
7390
7391 @item -fsection-anchors
7392 @opindex fsection-anchors
7393 Try to reduce the number of symbolic address calculations by using
7394 shared ``anchor'' symbols to address nearby objects.  This transformation
7395 can help to reduce the number of GOT entries and GOT accesses on some
7396 targets.
7397
7398 For example, the implementation of the following function @code{foo}:
7399
7400 @smallexample
7401 static int a, b, c;
7402 int foo (void) @{ return a + b + c; @}
7403 @end smallexample
7404
7405 would usually calculate the addresses of all three variables, but if you
7406 compile it with @option{-fsection-anchors}, it will access the variables
7407 from a common anchor point instead.  The effect is similar to the
7408 following pseudocode (which isn't valid C):
7409
7410 @smallexample
7411 int foo (void)
7412 @{
7413   register int *xr = &x;
7414   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
7415 @}
7416 @end smallexample
7417
7418 Not all targets support this option.
7419
7420 @item --param @var{name}=@var{value}
7421 @opindex param
7422 In some places, GCC uses various constants to control the amount of
7423 optimization that is done.  For example, GCC will not inline functions
7424 that contain more that a certain number of instructions.  You can
7425 control some of these constants on the command-line using the
7426 @option{--param} option.
7427
7428 The names of specific parameters, and the meaning of the values, are
7429 tied to the internals of the compiler, and are subject to change
7430 without notice in future releases.
7431
7432 In each case, the @var{value} is an integer.  The allowable choices for
7433 @var{name} are given in the following table:
7434
7435 @table @gcctabopt
7436 @item struct-reorg-cold-struct-ratio
7437 The threshold ratio (as a percentage) between a structure frequency
7438 and the frequency of the hottest structure in the program.  This parameter
7439 is used by struct-reorg optimization enabled by @option{-fipa-struct-reorg}.
7440 We say that if the ratio of a structure frequency, calculated by profiling, 
7441 to the hottest structure frequency in the program is less than this 
7442 parameter, then structure reorganization is not applied to this structure.
7443 The default is 10.
7444
7445 @item predictable-branch-cost-outcome
7446 When branch is predicted to be taken with probability lower than this threshold
7447 (in percent), then it is considered well predictable. The default is 10.
7448
7449 @item max-crossjump-edges
7450 The maximum number of incoming edges to consider for crossjumping.
7451 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
7452 the number of edges incoming to each block.  Increasing values mean
7453 more aggressive optimization, making the compile time increase with
7454 probably small improvement in executable size.
7455
7456 @item min-crossjump-insns
7457 The minimum number of instructions which must be matched at the end
7458 of two blocks before crossjumping will be performed on them.  This
7459 value is ignored in the case where all instructions in the block being
7460 crossjumped from are matched.  The default value is 5.
7461
7462 @item max-grow-copy-bb-insns
7463 The maximum code size expansion factor when copying basic blocks
7464 instead of jumping.  The expansion is relative to a jump instruction.
7465 The default value is 8.
7466
7467 @item max-goto-duplication-insns
7468 The maximum number of instructions to duplicate to a block that jumps
7469 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
7470 passes, GCC factors computed gotos early in the compilation process,
7471 and unfactors them as late as possible.  Only computed jumps at the
7472 end of a basic blocks with no more than max-goto-duplication-insns are
7473 unfactored.  The default value is 8.
7474
7475 @item max-delay-slot-insn-search
7476 The maximum number of instructions to consider when looking for an
7477 instruction to fill a delay slot.  If more than this arbitrary number of
7478 instructions is searched, the time savings from filling the delay slot
7479 will be minimal so stop searching.  Increasing values mean more
7480 aggressive optimization, making the compile time increase with probably
7481 small improvement in executable run time.
7482
7483 @item max-delay-slot-live-search
7484 When trying to fill delay slots, the maximum number of instructions to
7485 consider when searching for a block with valid live register
7486 information.  Increasing this arbitrarily chosen value means more
7487 aggressive optimization, increasing the compile time.  This parameter
7488 should be removed when the delay slot code is rewritten to maintain the
7489 control-flow graph.
7490
7491 @item max-gcse-memory
7492 The approximate maximum amount of memory that will be allocated in
7493 order to perform the global common subexpression elimination
7494 optimization.  If more memory than specified is required, the
7495 optimization will not be done.
7496
7497 @item max-pending-list-length
7498 The maximum number of pending dependencies scheduling will allow
7499 before flushing the current state and starting over.  Large functions
7500 with few branches or calls can create excessively large lists which
7501 needlessly consume memory and resources.
7502
7503 @item max-inline-insns-single
7504 Several parameters control the tree inliner used in gcc.
7505 This number sets the maximum number of instructions (counted in GCC's
7506 internal representation) in a single function that the tree inliner
7507 will consider for inlining.  This only affects functions declared
7508 inline and methods implemented in a class declaration (C++).
7509 The default value is 300.
7510
7511 @item max-inline-insns-auto
7512 When you use @option{-finline-functions} (included in @option{-O3}),
7513 a lot of functions that would otherwise not be considered for inlining
7514 by the compiler will be investigated.  To those functions, a different
7515 (more restrictive) limit compared to functions declared inline can
7516 be applied.
7517 The default value is 60.
7518
7519 @item large-function-insns
7520 The limit specifying really large functions.  For functions larger than this
7521 limit after inlining, inlining is constrained by
7522 @option{--param large-function-growth}.  This parameter is useful primarily
7523 to avoid extreme compilation time caused by non-linear algorithms used by the
7524 backend.
7525 The default value is 2700.
7526
7527 @item large-function-growth
7528 Specifies maximal growth of large function caused by inlining in percents.
7529 The default value is 100 which limits large function growth to 2.0 times
7530 the original size.
7531
7532 @item large-unit-insns
7533 The limit specifying large translation unit.  Growth caused by inlining of
7534 units larger than this limit is limited by @option{--param inline-unit-growth}.
7535 For small units this might be too tight (consider unit consisting of function A
7536 that is inline and B that just calls A three time.  If B is small relative to
7537 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
7538 large units consisting of small inlineable functions however the overall unit
7539 growth limit is needed to avoid exponential explosion of code size.  Thus for
7540 smaller units, the size is increased to @option{--param large-unit-insns}
7541 before applying @option{--param inline-unit-growth}.  The default is 10000
7542
7543 @item inline-unit-growth
7544 Specifies maximal overall growth of the compilation unit caused by inlining.
7545 The default value is 30 which limits unit growth to 1.3 times the original
7546 size.
7547
7548 @item ipcp-unit-growth
7549 Specifies maximal overall growth of the compilation unit caused by
7550 interprocedural constant propagation.  The default value is 10 which limits
7551 unit growth to 1.1 times the original size.
7552
7553 @item large-stack-frame
7554 The limit specifying large stack frames.  While inlining the algorithm is trying
7555 to not grow past this limit too much.  Default value is 256 bytes.
7556
7557 @item large-stack-frame-growth
7558 Specifies maximal growth of large stack frames caused by inlining in percents.
7559 The default value is 1000 which limits large stack frame growth to 11 times
7560 the original size.
7561
7562 @item max-inline-insns-recursive
7563 @itemx max-inline-insns-recursive-auto
7564 Specifies maximum number of instructions out-of-line copy of self recursive inline
7565 function can grow into by performing recursive inlining.
7566
7567 For functions declared inline @option{--param max-inline-insns-recursive} is
7568 taken into account.  For function not declared inline, recursive inlining
7569 happens only when @option{-finline-functions} (included in @option{-O3}) is
7570 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
7571 default value is 450.
7572
7573 @item max-inline-recursive-depth
7574 @itemx max-inline-recursive-depth-auto
7575 Specifies maximum recursion depth used by the recursive inlining.
7576
7577 For functions declared inline @option{--param max-inline-recursive-depth} is
7578 taken into account.  For function not declared inline, recursive inlining
7579 happens only when @option{-finline-functions} (included in @option{-O3}) is
7580 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
7581 default value is 8.
7582
7583 @item min-inline-recursive-probability
7584 Recursive inlining is profitable only for function having deep recursion
7585 in average and can hurt for function having little recursion depth by
7586 increasing the prologue size or complexity of function body to other
7587 optimizers.
7588
7589 When profile feedback is available (see @option{-fprofile-generate}) the actual
7590 recursion depth can be guessed from probability that function will recurse via
7591 given call expression.  This parameter limits inlining only to call expression
7592 whose probability exceeds given threshold (in percents).  The default value is
7593 10.
7594
7595 @item early-inlining-insns
7596 Specify growth that early inliner can make.  In effect it increases amount of
7597 inlining for code having large abstraction penalty.  The default value is 12.
7598
7599 @item max-early-inliner-iterations
7600 @itemx max-early-inliner-iterations
7601 Limit of iterations of early inliner.  This basically bounds number of nested
7602 indirect calls early inliner can resolve.  Deeper chains are still handled by
7603 late inlining.
7604
7605 @item min-vect-loop-bound
7606 The minimum number of iterations under which a loop will not get vectorized
7607 when @option{-ftree-vectorize} is used.  The number of iterations after
7608 vectorization needs to be greater than the value specified by this option
7609 to allow vectorization.  The default value is 0.
7610
7611 @item max-unrolled-insns
7612 The maximum number of instructions that a loop should have if that loop
7613 is unrolled, and if the loop is unrolled, it determines how many times
7614 the loop code is unrolled.
7615
7616 @item max-average-unrolled-insns
7617 The maximum number of instructions biased by probabilities of their execution
7618 that a loop should have if that loop is unrolled, and if the loop is unrolled,
7619 it determines how many times the loop code is unrolled.
7620
7621 @item max-unroll-times
7622 The maximum number of unrollings of a single loop.
7623
7624 @item max-peeled-insns
7625 The maximum number of instructions that a loop should have if that loop
7626 is peeled, and if the loop is peeled, it determines how many times
7627 the loop code is peeled.
7628
7629 @item max-peel-times
7630 The maximum number of peelings of a single loop.
7631
7632 @item max-completely-peeled-insns
7633 The maximum number of insns of a completely peeled loop.
7634
7635 @item max-completely-peel-times
7636 The maximum number of iterations of a loop to be suitable for complete peeling.
7637
7638 @item max-unswitch-insns
7639 The maximum number of insns of an unswitched loop.
7640
7641 @item max-unswitch-level
7642 The maximum number of branches unswitched in a single loop.
7643
7644 @item lim-expensive
7645 The minimum cost of an expensive expression in the loop invariant motion.
7646
7647 @item iv-consider-all-candidates-bound
7648 Bound on number of candidates for induction variables below that
7649 all candidates are considered for each use in induction variable
7650 optimizations.  Only the most relevant candidates are considered
7651 if there are more candidates, to avoid quadratic time complexity.
7652
7653 @item iv-max-considered-uses
7654 The induction variable optimizations give up on loops that contain more
7655 induction variable uses.
7656
7657 @item iv-always-prune-cand-set-bound
7658 If number of candidates in the set is smaller than this value,
7659 we always try to remove unnecessary ivs from the set during its
7660 optimization when a new iv is added to the set.
7661
7662 @item scev-max-expr-size
7663 Bound on size of expressions used in the scalar evolutions analyzer.
7664 Large expressions slow the analyzer.
7665
7666 @item omega-max-vars
7667 The maximum number of variables in an Omega constraint system.
7668 The default value is 128.
7669
7670 @item omega-max-geqs
7671 The maximum number of inequalities in an Omega constraint system.
7672 The default value is 256.
7673
7674 @item omega-max-eqs
7675 The maximum number of equalities in an Omega constraint system.
7676 The default value is 128.
7677
7678 @item omega-max-wild-cards
7679 The maximum number of wildcard variables that the Omega solver will
7680 be able to insert.  The default value is 18.
7681
7682 @item omega-hash-table-size
7683 The size of the hash table in the Omega solver.  The default value is
7684 550.
7685
7686 @item omega-max-keys
7687 The maximal number of keys used by the Omega solver.  The default
7688 value is 500.
7689
7690 @item omega-eliminate-redundant-constraints
7691 When set to 1, use expensive methods to eliminate all redundant
7692 constraints.  The default value is 0.
7693
7694 @item vect-max-version-for-alignment-checks
7695 The maximum number of runtime checks that can be performed when
7696 doing loop versioning for alignment in the vectorizer.  See option
7697 ftree-vect-loop-version for more information.
7698
7699 @item vect-max-version-for-alias-checks
7700 The maximum number of runtime checks that can be performed when
7701 doing loop versioning for alias in the vectorizer.  See option
7702 ftree-vect-loop-version for more information.
7703
7704 @item max-iterations-to-track
7705
7706 The maximum number of iterations of a loop the brute force algorithm
7707 for analysis of # of iterations of the loop tries to evaluate.
7708
7709 @item hot-bb-count-fraction
7710 Select fraction of the maximal count of repetitions of basic block in program
7711 given basic block needs to have to be considered hot.
7712
7713 @item hot-bb-frequency-fraction
7714 Select fraction of the maximal frequency of executions of basic block in
7715 function given basic block needs to have to be considered hot
7716
7717 @item max-predicted-iterations
7718 The maximum number of loop iterations we predict statically.  This is useful
7719 in cases where function contain single loop with known bound and other loop
7720 with unknown.  We predict the known number of iterations correctly, while
7721 the unknown number of iterations average to roughly 10.  This means that the
7722 loop without bounds would appear artificially cold relative to the other one.
7723
7724 @item align-threshold
7725
7726 Select fraction of the maximal frequency of executions of basic block in
7727 function given basic block will get aligned.
7728
7729 @item align-loop-iterations
7730
7731 A loop expected to iterate at lest the selected number of iterations will get
7732 aligned.
7733
7734 @item tracer-dynamic-coverage
7735 @itemx tracer-dynamic-coverage-feedback
7736
7737 This value is used to limit superblock formation once the given percentage of
7738 executed instructions is covered.  This limits unnecessary code size
7739 expansion.
7740
7741 The @option{tracer-dynamic-coverage-feedback} is used only when profile
7742 feedback is available.  The real profiles (as opposed to statically estimated
7743 ones) are much less balanced allowing the threshold to be larger value.
7744
7745 @item tracer-max-code-growth
7746 Stop tail duplication once code growth has reached given percentage.  This is
7747 rather hokey argument, as most of the duplicates will be eliminated later in
7748 cross jumping, so it may be set to much higher values than is the desired code
7749 growth.
7750
7751 @item tracer-min-branch-ratio
7752
7753 Stop reverse growth when the reverse probability of best edge is less than this
7754 threshold (in percent).
7755
7756 @item tracer-min-branch-ratio
7757 @itemx tracer-min-branch-ratio-feedback
7758
7759 Stop forward growth if the best edge do have probability lower than this
7760 threshold.
7761
7762 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
7763 compilation for profile feedback and one for compilation without.  The value
7764 for compilation with profile feedback needs to be more conservative (higher) in
7765 order to make tracer effective.
7766
7767 @item max-cse-path-length
7768
7769 Maximum number of basic blocks on path that cse considers.  The default is 10.
7770
7771 @item max-cse-insns
7772 The maximum instructions CSE process before flushing. The default is 1000.
7773
7774 @item ggc-min-expand
7775
7776 GCC uses a garbage collector to manage its own memory allocation.  This
7777 parameter specifies the minimum percentage by which the garbage
7778 collector's heap should be allowed to expand between collections.
7779 Tuning this may improve compilation speed; it has no effect on code
7780 generation.
7781
7782 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
7783 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
7784 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
7785 GCC is not able to calculate RAM on a particular platform, the lower
7786 bound of 30% is used.  Setting this parameter and
7787 @option{ggc-min-heapsize} to zero causes a full collection to occur at
7788 every opportunity.  This is extremely slow, but can be useful for
7789 debugging.
7790
7791 @item ggc-min-heapsize
7792
7793 Minimum size of the garbage collector's heap before it begins bothering
7794 to collect garbage.  The first collection occurs after the heap expands
7795 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
7796 tuning this may improve compilation speed, and has no effect on code
7797 generation.
7798
7799 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
7800 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
7801 with a lower bound of 4096 (four megabytes) and an upper bound of
7802 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
7803 particular platform, the lower bound is used.  Setting this parameter
7804 very large effectively disables garbage collection.  Setting this
7805 parameter and @option{ggc-min-expand} to zero causes a full collection
7806 to occur at every opportunity.
7807
7808 @item max-reload-search-insns
7809 The maximum number of instruction reload should look backward for equivalent
7810 register.  Increasing values mean more aggressive optimization, making the
7811 compile time increase with probably slightly better performance.  The default
7812 value is 100.
7813
7814 @item max-cselib-memory-locations
7815 The maximum number of memory locations cselib should take into account.
7816 Increasing values mean more aggressive optimization, making the compile time
7817 increase with probably slightly better performance.  The default value is 500.
7818
7819 @item reorder-blocks-duplicate
7820 @itemx reorder-blocks-duplicate-feedback
7821
7822 Used by basic block reordering pass to decide whether to use unconditional
7823 branch or duplicate the code on its destination.  Code is duplicated when its
7824 estimated size is smaller than this value multiplied by the estimated size of
7825 unconditional jump in the hot spots of the program.
7826
7827 The @option{reorder-block-duplicate-feedback} is used only when profile
7828 feedback is available and may be set to higher values than
7829 @option{reorder-block-duplicate} since information about the hot spots is more
7830 accurate.
7831
7832 @item max-sched-ready-insns
7833 The maximum number of instructions ready to be issued the scheduler should
7834 consider at any given time during the first scheduling pass.  Increasing
7835 values mean more thorough searches, making the compilation time increase
7836 with probably little benefit.  The default value is 100.
7837
7838 @item max-sched-region-blocks
7839 The maximum number of blocks in a region to be considered for
7840 interblock scheduling.  The default value is 10.
7841
7842 @item max-pipeline-region-blocks
7843 The maximum number of blocks in a region to be considered for
7844 pipelining in the selective scheduler.  The default value is 15.
7845
7846 @item max-sched-region-insns
7847 The maximum number of insns in a region to be considered for
7848 interblock scheduling.  The default value is 100.
7849
7850 @item max-pipeline-region-insns
7851 The maximum number of insns in a region to be considered for
7852 pipelining in the selective scheduler.  The default value is 200.
7853
7854 @item min-spec-prob
7855 The minimum probability (in percents) of reaching a source block
7856 for interblock speculative scheduling.  The default value is 40.
7857
7858 @item max-sched-extend-regions-iters
7859 The maximum number of iterations through CFG to extend regions.
7860 0 - disable region extension,
7861 N - do at most N iterations.
7862 The default value is 0.
7863
7864 @item max-sched-insn-conflict-delay
7865 The maximum conflict delay for an insn to be considered for speculative motion.
7866 The default value is 3.
7867
7868 @item sched-spec-prob-cutoff
7869 The minimal probability of speculation success (in percents), so that
7870 speculative insn will be scheduled.
7871 The default value is 40.
7872
7873 @item sched-mem-true-dep-cost
7874 Minimal distance (in CPU cycles) between store and load targeting same
7875 memory locations.  The default value is 1.
7876
7877 @item selsched-max-lookahead
7878 The maximum size of the lookahead window of selective scheduling.  It is a
7879 depth of search for available instructions.
7880 The default value is 50.
7881
7882 @item selsched-max-sched-times
7883 The maximum number of times that an instruction will be scheduled during 
7884 selective scheduling.  This is the limit on the number of iterations 
7885 through which the instruction may be pipelined.  The default value is 2.
7886
7887 @item selsched-max-insns-to-rename
7888 The maximum number of best instructions in the ready list that are considered
7889 for renaming in the selective scheduler.  The default value is 2.
7890
7891 @item max-last-value-rtl
7892 The maximum size measured as number of RTLs that can be recorded in an expression
7893 in combiner for a pseudo register as last known value of that register.  The default
7894 is 10000.
7895
7896 @item integer-share-limit
7897 Small integer constants can use a shared data structure, reducing the
7898 compiler's memory usage and increasing its speed.  This sets the maximum
7899 value of a shared integer constant.  The default value is 256.
7900
7901 @item min-virtual-mappings
7902 Specifies the minimum number of virtual mappings in the incremental
7903 SSA updater that should be registered to trigger the virtual mappings
7904 heuristic defined by virtual-mappings-ratio.  The default value is
7905 100.
7906
7907 @item virtual-mappings-ratio
7908 If the number of virtual mappings is virtual-mappings-ratio bigger
7909 than the number of virtual symbols to be updated, then the incremental
7910 SSA updater switches to a full update for those symbols.  The default
7911 ratio is 3.
7912
7913 @item ssp-buffer-size
7914 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
7915 protection when @option{-fstack-protection} is used.
7916
7917 @item max-jump-thread-duplication-stmts
7918 Maximum number of statements allowed in a block that needs to be
7919 duplicated when threading jumps.
7920
7921 @item max-fields-for-field-sensitive
7922 Maximum number of fields in a structure we will treat in
7923 a field sensitive manner during pointer analysis.  The default is zero
7924 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
7925
7926 @item prefetch-latency
7927 Estimate on average number of instructions that are executed before
7928 prefetch finishes.  The distance we prefetch ahead is proportional
7929 to this constant.  Increasing this number may also lead to less
7930 streams being prefetched (see @option{simultaneous-prefetches}).
7931
7932 @item simultaneous-prefetches
7933 Maximum number of prefetches that can run at the same time.
7934
7935 @item l1-cache-line-size
7936 The size of cache line in L1 cache, in bytes.
7937
7938 @item l1-cache-size
7939 The size of L1 cache, in kilobytes.
7940
7941 @item l2-cache-size
7942 The size of L2 cache, in kilobytes.
7943
7944 @item min-insn-to-prefetch-ratio
7945 The minimum ratio between the number of instructions and the 
7946 number of prefetches to enable prefetching in a loop with an 
7947 unknown trip count.
7948
7949 @item prefetch-min-insn-to-mem-ratio
7950 The minimum ratio between the number of instructions and the 
7951 number of memory references to enable prefetching in a loop.
7952
7953 @item use-canonical-types
7954 Whether the compiler should use the ``canonical'' type system.  By
7955 default, this should always be 1, which uses a more efficient internal
7956 mechanism for comparing types in C++ and Objective-C++.  However, if
7957 bugs in the canonical type system are causing compilation failures,
7958 set this value to 0 to disable canonical types.
7959
7960 @item switch-conversion-max-branch-ratio
7961 Switch initialization conversion will refuse to create arrays that are
7962 bigger than @option{switch-conversion-max-branch-ratio} times the number of
7963 branches in the switch.
7964
7965 @item max-partial-antic-length
7966 Maximum length of the partial antic set computed during the tree
7967 partial redundancy elimination optimization (@option{-ftree-pre}) when
7968 optimizing at @option{-O3} and above.  For some sorts of source code
7969 the enhanced partial redundancy elimination optimization can run away,
7970 consuming all of the memory available on the host machine.  This
7971 parameter sets a limit on the length of the sets that are computed,
7972 which prevents the runaway behavior.  Setting a value of 0 for
7973 this parameter will allow an unlimited set length.
7974
7975 @item sccvn-max-scc-size
7976 Maximum size of a strongly connected component (SCC) during SCCVN
7977 processing.  If this limit is hit, SCCVN processing for the whole
7978 function will not be done and optimizations depending on it will
7979 be disabled.  The default maximum SCC size is 10000.
7980
7981 @item ira-max-loops-num
7982 IRA uses a regional register allocation by default.  If a function
7983 contains loops more than number given by the parameter, only at most
7984 given number of the most frequently executed loops will form regions
7985 for the regional register allocation.  The default value of the
7986 parameter is 100.
7987
7988 @item ira-max-conflict-table-size
7989 Although IRA uses a sophisticated algorithm of compression conflict
7990 table, the table can be still big for huge functions.  If the conflict
7991 table for a function could be more than size in MB given by the
7992 parameter, the conflict table is not built and faster, simpler, and
7993 lower quality register allocation algorithm will be used.  The
7994 algorithm do not use pseudo-register conflicts.  The default value of
7995 the parameter is 2000.
7996
7997 @item loop-invariant-max-bbs-in-loop
7998 Loop invariant motion can be very expensive, both in compile time and
7999 in amount of needed compile time memory, with very large loops.  Loops
8000 with more basic blocks than this parameter won't have loop invariant
8001 motion optimization performed on them.  The default value of the
8002 parameter is 1000 for -O1 and 10000 for -O2 and above.
8003
8004 @end table
8005 @end table
8006
8007 @node Preprocessor Options
8008 @section Options Controlling the Preprocessor
8009 @cindex preprocessor options
8010 @cindex options, preprocessor
8011
8012 These options control the C preprocessor, which is run on each C source
8013 file before actual compilation.
8014
8015 If you use the @option{-E} option, nothing is done except preprocessing.
8016 Some of these options make sense only together with @option{-E} because
8017 they cause the preprocessor output to be unsuitable for actual
8018 compilation.
8019
8020 @table @gcctabopt
8021 @item -Wp,@var{option}
8022 @opindex Wp
8023 You can use @option{-Wp,@var{option}} to bypass the compiler driver
8024 and pass @var{option} directly through to the preprocessor.  If
8025 @var{option} contains commas, it is split into multiple options at the
8026 commas.  However, many options are modified, translated or interpreted
8027 by the compiler driver before being passed to the preprocessor, and
8028 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
8029 interface is undocumented and subject to change, so whenever possible
8030 you should avoid using @option{-Wp} and let the driver handle the
8031 options instead.
8032
8033 @item -Xpreprocessor @var{option}
8034 @opindex Xpreprocessor
8035 Pass @var{option} as an option to the preprocessor.  You can use this to
8036 supply system-specific preprocessor options which GCC does not know how to
8037 recognize.
8038
8039 If you want to pass an option that takes an argument, you must use
8040 @option{-Xpreprocessor} twice, once for the option and once for the argument.
8041 @end table
8042
8043 @include cppopts.texi
8044
8045 @node Assembler Options
8046 @section Passing Options to the Assembler
8047
8048 @c prevent bad page break with this line
8049 You can pass options to the assembler.
8050
8051 @table @gcctabopt
8052 @item -Wa,@var{option}
8053 @opindex Wa
8054 Pass @var{option} as an option to the assembler.  If @var{option}
8055 contains commas, it is split into multiple options at the commas.
8056
8057 @item -Xassembler @var{option}
8058 @opindex Xassembler
8059 Pass @var{option} as an option to the assembler.  You can use this to
8060 supply system-specific assembler options which GCC does not know how to
8061 recognize.
8062
8063 If you want to pass an option that takes an argument, you must use
8064 @option{-Xassembler} twice, once for the option and once for the argument.
8065
8066 @end table
8067
8068 @node Link Options
8069 @section Options for Linking
8070 @cindex link options
8071 @cindex options, linking
8072
8073 These options come into play when the compiler links object files into
8074 an executable output file.  They are meaningless if the compiler is
8075 not doing a link step.
8076
8077 @table @gcctabopt
8078 @cindex file names
8079 @item @var{object-file-name}
8080 A file name that does not end in a special recognized suffix is
8081 considered to name an object file or library.  (Object files are
8082 distinguished from libraries by the linker according to the file
8083 contents.)  If linking is done, these object files are used as input
8084 to the linker.
8085
8086 @item -c
8087 @itemx -S
8088 @itemx -E
8089 @opindex c
8090 @opindex S
8091 @opindex E
8092 If any of these options is used, then the linker is not run, and
8093 object file names should not be used as arguments.  @xref{Overall
8094 Options}.
8095
8096 @cindex Libraries
8097 @item -l@var{library}
8098 @itemx -l @var{library}
8099 @opindex l
8100 Search the library named @var{library} when linking.  (The second
8101 alternative with the library as a separate argument is only for
8102 POSIX compliance and is not recommended.)
8103
8104 It makes a difference where in the command you write this option; the
8105 linker searches and processes libraries and object files in the order they
8106 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
8107 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
8108 to functions in @samp{z}, those functions may not be loaded.
8109
8110 The linker searches a standard list of directories for the library,
8111 which is actually a file named @file{lib@var{library}.a}.  The linker
8112 then uses this file as if it had been specified precisely by name.
8113
8114 The directories searched include several standard system directories
8115 plus any that you specify with @option{-L}.
8116
8117 Normally the files found this way are library files---archive files
8118 whose members are object files.  The linker handles an archive file by
8119 scanning through it for members which define symbols that have so far
8120 been referenced but not defined.  But if the file that is found is an
8121 ordinary object file, it is linked in the usual fashion.  The only
8122 difference between using an @option{-l} option and specifying a file name
8123 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
8124 and searches several directories.
8125
8126 @item -lobjc
8127 @opindex lobjc
8128 You need this special case of the @option{-l} option in order to
8129 link an Objective-C or Objective-C++ program.
8130
8131 @item -nostartfiles
8132 @opindex nostartfiles
8133 Do not use the standard system startup files when linking.
8134 The standard system libraries are used normally, unless @option{-nostdlib}
8135 or @option{-nodefaultlibs} is used.
8136
8137 @item -nodefaultlibs
8138 @opindex nodefaultlibs
8139 Do not use the standard system libraries when linking.
8140 Only the libraries you specify will be passed to the linker, options
8141 specifying linkage of the system libraries, such as @code{-static-libgcc}
8142 or @code{-shared-libgcc}, will be ignored.
8143 The standard startup files are used normally, unless @option{-nostartfiles}
8144 is used.  The compiler may generate calls to @code{memcmp},
8145 @code{memset}, @code{memcpy} and @code{memmove}.
8146 These entries are usually resolved by entries in
8147 libc.  These entry points should be supplied through some other
8148 mechanism when this option is specified.
8149
8150 @item -nostdlib
8151 @opindex nostdlib
8152 Do not use the standard system startup files or libraries when linking.
8153 No startup files and only the libraries you specify will be passed to
8154 the linker, options specifying linkage of the system libraries, such as
8155 @code{-static-libgcc} or @code{-shared-libgcc}, will be ignored.
8156 The compiler may generate calls to @code{memcmp}, @code{memset},
8157 @code{memcpy} and @code{memmove}.
8158 These entries are usually resolved by entries in
8159 libc.  These entry points should be supplied through some other
8160 mechanism when this option is specified.
8161
8162 @cindex @option{-lgcc}, use with @option{-nostdlib}
8163 @cindex @option{-nostdlib} and unresolved references
8164 @cindex unresolved references and @option{-nostdlib}
8165 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
8166 @cindex @option{-nodefaultlibs} and unresolved references
8167 @cindex unresolved references and @option{-nodefaultlibs}
8168 One of the standard libraries bypassed by @option{-nostdlib} and
8169 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
8170 that GCC uses to overcome shortcomings of particular machines, or special
8171 needs for some languages.
8172 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
8173 Collection (GCC) Internals},
8174 for more discussion of @file{libgcc.a}.)
8175 In most cases, you need @file{libgcc.a} even when you want to avoid
8176 other standard libraries.  In other words, when you specify @option{-nostdlib}
8177 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
8178 This ensures that you have no unresolved references to internal GCC
8179 library subroutines.  (For example, @samp{__main}, used to ensure C++
8180 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
8181 GNU Compiler Collection (GCC) Internals}.)
8182
8183 @item -pie
8184 @opindex pie
8185 Produce a position independent executable on targets which support it.
8186 For predictable results, you must also specify the same set of options
8187 that were used to generate code (@option{-fpie}, @option{-fPIE},
8188 or model suboptions) when you specify this option.
8189
8190 @item -rdynamic
8191 @opindex rdynamic
8192 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
8193 that support it. This instructs the linker to add all symbols, not
8194 only used ones, to the dynamic symbol table. This option is needed
8195 for some uses of @code{dlopen} or to allow obtaining backtraces
8196 from within a program.
8197
8198 @item -s
8199 @opindex s
8200 Remove all symbol table and relocation information from the executable.
8201
8202 @item -static
8203 @opindex static
8204 On systems that support dynamic linking, this prevents linking with the shared
8205 libraries.  On other systems, this option has no effect.
8206
8207 @item -shared
8208 @opindex shared
8209 Produce a shared object which can then be linked with other objects to
8210 form an executable.  Not all systems support this option.  For predictable
8211 results, you must also specify the same set of options that were used to
8212 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
8213 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
8214 needs to build supplementary stub code for constructors to work.  On
8215 multi-libbed systems, @samp{gcc -shared} must select the correct support
8216 libraries to link against.  Failing to supply the correct flags may lead
8217 to subtle defects.  Supplying them in cases where they are not necessary
8218 is innocuous.}
8219
8220 @item -shared-libgcc
8221 @itemx -static-libgcc
8222 @opindex shared-libgcc
8223 @opindex static-libgcc
8224 On systems that provide @file{libgcc} as a shared library, these options
8225 force the use of either the shared or static version respectively.
8226 If no shared version of @file{libgcc} was built when the compiler was
8227 configured, these options have no effect.
8228
8229 There are several situations in which an application should use the
8230 shared @file{libgcc} instead of the static version.  The most common
8231 of these is when the application wishes to throw and catch exceptions
8232 across different shared libraries.  In that case, each of the libraries
8233 as well as the application itself should use the shared @file{libgcc}.
8234
8235 Therefore, the G++ and GCJ drivers automatically add
8236 @option{-shared-libgcc} whenever you build a shared library or a main
8237 executable, because C++ and Java programs typically use exceptions, so
8238 this is the right thing to do.
8239
8240 If, instead, you use the GCC driver to create shared libraries, you may
8241 find that they will not always be linked with the shared @file{libgcc}.
8242 If GCC finds, at its configuration time, that you have a non-GNU linker
8243 or a GNU linker that does not support option @option{--eh-frame-hdr},
8244 it will link the shared version of @file{libgcc} into shared libraries
8245 by default.  Otherwise, it will take advantage of the linker and optimize
8246 away the linking with the shared version of @file{libgcc}, linking with
8247 the static version of libgcc by default.  This allows exceptions to
8248 propagate through such shared libraries, without incurring relocation
8249 costs at library load time.
8250
8251 However, if a library or main executable is supposed to throw or catch
8252 exceptions, you must link it using the G++ or GCJ driver, as appropriate
8253 for the languages used in the program, or using the option
8254 @option{-shared-libgcc}, such that it is linked with the shared
8255 @file{libgcc}.
8256
8257 @item -static-libstdc++
8258 When the @command{g++} program is used to link a C++ program, it will
8259 normally automatically link against @option{libstdc++}.  If
8260 @file{libstdc++} is available as a shared library, and the
8261 @option{-static} option is not used, then this will link against the
8262 shared version of @file{libstdc++}.  That is normally fine.  However, it
8263 is sometimes useful to freeze the version of @file{libstdc++} used by
8264 the program without going all the way to a fully static link.  The
8265 @option{-static-libstdc++} option directs the @command{g++} driver to
8266 link @file{libstdc++} statically, without necessarily linking other
8267 libraries statically.
8268
8269 @item -symbolic
8270 @opindex symbolic
8271 Bind references to global symbols when building a shared object.  Warn
8272 about any unresolved references (unless overridden by the link editor
8273 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
8274 this option.
8275
8276 @item -T @var{script}
8277 @opindex T
8278 @cindex linker script
8279 Use @var{script} as the linker script.  This option is supported by most
8280 systems using the GNU linker.  On some targets, such as bare-board
8281 targets without an operating system, the @option{-T} option may be required 
8282 when linking to avoid references to undefined symbols.
8283
8284 @item -Xlinker @var{option}
8285 @opindex Xlinker
8286 Pass @var{option} as an option to the linker.  You can use this to
8287 supply system-specific linker options which GCC does not know how to
8288 recognize.
8289
8290 If you want to pass an option that takes a separate argument, you must use
8291 @option{-Xlinker} twice, once for the option and once for the argument.
8292 For example, to pass @option{-assert definitions}, you must write
8293 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
8294 @option{-Xlinker "-assert definitions"}, because this passes the entire
8295 string as a single argument, which is not what the linker expects.
8296
8297 When using the GNU linker, it is usually more convenient to pass 
8298 arguments to linker options using the @option{@var{option}=@var{value}}
8299 syntax than as separate arguments.  For example, you can specify
8300 @samp{-Xlinker -Map=output.map} rather than
8301 @samp{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
8302 this syntax for command-line options.
8303
8304 @item -Wl,@var{option}
8305 @opindex Wl
8306 Pass @var{option} as an option to the linker.  If @var{option} contains
8307 commas, it is split into multiple options at the commas.  You can use this
8308 syntax to pass an argument to the option.  
8309 For example, @samp{-Wl,-Map,output.map} passes @samp{-Map output.map} to the
8310 linker.  When using the GNU linker, you can also get the same effect with
8311 @samp{-Wl,-Map=output.map}.
8312
8313 @item -u @var{symbol}
8314 @opindex u
8315 Pretend the symbol @var{symbol} is undefined, to force linking of
8316 library modules to define it.  You can use @option{-u} multiple times with
8317 different symbols to force loading of additional library modules.
8318 @end table
8319
8320 @node Directory Options
8321 @section Options for Directory Search
8322 @cindex directory options
8323 @cindex options, directory search
8324 @cindex search path
8325
8326 These options specify directories to search for header files, for
8327 libraries and for parts of the compiler:
8328
8329 @table @gcctabopt
8330 @item -I@var{dir}
8331 @opindex I
8332 Add the directory @var{dir} to the head of the list of directories to be
8333 searched for header files.  This can be used to override a system header
8334 file, substituting your own version, since these directories are
8335 searched before the system header file directories.  However, you should
8336 not use this option to add directories that contain vendor-supplied
8337 system header files (use @option{-isystem} for that).  If you use more than
8338 one @option{-I} option, the directories are scanned in left-to-right
8339 order; the standard system directories come after.
8340
8341 If a standard system include directory, or a directory specified with
8342 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
8343 option will be ignored.  The directory will still be searched but as a
8344 system directory at its normal position in the system include chain.
8345 This is to ensure that GCC's procedure to fix buggy system headers and
8346 the ordering for the include_next directive are not inadvertently changed.
8347 If you really need to change the search order for system directories,
8348 use the @option{-nostdinc} and/or @option{-isystem} options.
8349
8350 @item -iquote@var{dir}
8351 @opindex iquote
8352 Add the directory @var{dir} to the head of the list of directories to
8353 be searched for header files only for the case of @samp{#include
8354 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
8355 otherwise just like @option{-I}.
8356
8357 @item -L@var{dir}
8358 @opindex L
8359 Add directory @var{dir} to the list of directories to be searched
8360 for @option{-l}.
8361
8362 @item -B@var{prefix}
8363 @opindex B
8364 This option specifies where to find the executables, libraries,
8365 include files, and data files of the compiler itself.
8366
8367 The compiler driver program runs one or more of the subprograms
8368 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
8369 @var{prefix} as a prefix for each program it tries to run, both with and
8370 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
8371
8372 For each subprogram to be run, the compiler driver first tries the
8373 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
8374 was not specified, the driver tries two standard prefixes, which are
8375 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
8376 those results in a file name that is found, the unmodified program
8377 name is searched for using the directories specified in your
8378 @env{PATH} environment variable.
8379
8380 The compiler will check to see if the path provided by the @option{-B}
8381 refers to a directory, and if necessary it will add a directory
8382 separator character at the end of the path.
8383
8384 @option{-B} prefixes that effectively specify directory names also apply
8385 to libraries in the linker, because the compiler translates these
8386 options into @option{-L} options for the linker.  They also apply to
8387 includes files in the preprocessor, because the compiler translates these
8388 options into @option{-isystem} options for the preprocessor.  In this case,
8389 the compiler appends @samp{include} to the prefix.
8390
8391 The run-time support file @file{libgcc.a} can also be searched for using
8392 the @option{-B} prefix, if needed.  If it is not found there, the two
8393 standard prefixes above are tried, and that is all.  The file is left
8394 out of the link if it is not found by those means.
8395
8396 Another way to specify a prefix much like the @option{-B} prefix is to use
8397 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
8398 Variables}.
8399
8400 As a special kludge, if the path provided by @option{-B} is
8401 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
8402 9, then it will be replaced by @file{[dir/]include}.  This is to help
8403 with boot-strapping the compiler.
8404
8405 @item -specs=@var{file}
8406 @opindex specs
8407 Process @var{file} after the compiler reads in the standard @file{specs}
8408 file, in order to override the defaults that the @file{gcc} driver
8409 program uses when determining what switches to pass to @file{cc1},
8410 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
8411 @option{-specs=@var{file}} can be specified on the command line, and they
8412 are processed in order, from left to right.
8413
8414 @item --sysroot=@var{dir}
8415 @opindex sysroot
8416 Use @var{dir} as the logical root directory for headers and libraries.
8417 For example, if the compiler would normally search for headers in
8418 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
8419 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
8420
8421 If you use both this option and the @option{-isysroot} option, then
8422 the @option{--sysroot} option will apply to libraries, but the
8423 @option{-isysroot} option will apply to header files.
8424
8425 The GNU linker (beginning with version 2.16) has the necessary support
8426 for this option.  If your linker does not support this option, the
8427 header file aspect of @option{--sysroot} will still work, but the
8428 library aspect will not.
8429
8430 @item -I-
8431 @opindex I-
8432 This option has been deprecated.  Please use @option{-iquote} instead for
8433 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
8434 Any directories you specify with @option{-I} options before the @option{-I-}
8435 option are searched only for the case of @samp{#include "@var{file}"};
8436 they are not searched for @samp{#include <@var{file}>}.
8437
8438 If additional directories are specified with @option{-I} options after
8439 the @option{-I-}, these directories are searched for all @samp{#include}
8440 directives.  (Ordinarily @emph{all} @option{-I} directories are used
8441 this way.)
8442
8443 In addition, the @option{-I-} option inhibits the use of the current
8444 directory (where the current input file came from) as the first search
8445 directory for @samp{#include "@var{file}"}.  There is no way to
8446 override this effect of @option{-I-}.  With @option{-I.} you can specify
8447 searching the directory which was current when the compiler was
8448 invoked.  That is not exactly the same as what the preprocessor does
8449 by default, but it is often satisfactory.
8450
8451 @option{-I-} does not inhibit the use of the standard system directories
8452 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
8453 independent.
8454 @end table
8455
8456 @c man end
8457
8458 @node Spec Files
8459 @section Specifying subprocesses and the switches to pass to them
8460 @cindex Spec Files
8461
8462 @command{gcc} is a driver program.  It performs its job by invoking a
8463 sequence of other programs to do the work of compiling, assembling and
8464 linking.  GCC interprets its command-line parameters and uses these to
8465 deduce which programs it should invoke, and which command-line options
8466 it ought to place on their command lines.  This behavior is controlled
8467 by @dfn{spec strings}.  In most cases there is one spec string for each
8468 program that GCC can invoke, but a few programs have multiple spec
8469 strings to control their behavior.  The spec strings built into GCC can
8470 be overridden by using the @option{-specs=} command-line switch to specify
8471 a spec file.
8472
8473 @dfn{Spec files} are plaintext files that are used to construct spec
8474 strings.  They consist of a sequence of directives separated by blank
8475 lines.  The type of directive is determined by the first non-whitespace
8476 character on the line and it can be one of the following:
8477
8478 @table @code
8479 @item %@var{command}
8480 Issues a @var{command} to the spec file processor.  The commands that can
8481 appear here are:
8482
8483 @table @code
8484 @item %include <@var{file}>
8485 @cindex %include
8486 Search for @var{file} and insert its text at the current point in the
8487 specs file.
8488
8489 @item %include_noerr <@var{file}>
8490 @cindex %include_noerr
8491 Just like @samp{%include}, but do not generate an error message if the include
8492 file cannot be found.
8493
8494 @item %rename @var{old_name} @var{new_name}
8495 @cindex %rename
8496 Rename the spec string @var{old_name} to @var{new_name}.
8497
8498 @end table
8499
8500 @item *[@var{spec_name}]:
8501 This tells the compiler to create, override or delete the named spec
8502 string.  All lines after this directive up to the next directive or
8503 blank line are considered to be the text for the spec string.  If this
8504 results in an empty string then the spec will be deleted.  (Or, if the
8505 spec did not exist, then nothing will happened.)  Otherwise, if the spec
8506 does not currently exist a new spec will be created.  If the spec does
8507 exist then its contents will be overridden by the text of this
8508 directive, unless the first character of that text is the @samp{+}
8509 character, in which case the text will be appended to the spec.
8510
8511 @item [@var{suffix}]:
8512 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
8513 and up to the next directive or blank line are considered to make up the
8514 spec string for the indicated suffix.  When the compiler encounters an
8515 input file with the named suffix, it will processes the spec string in
8516 order to work out how to compile that file.  For example:
8517
8518 @smallexample
8519 .ZZ:
8520 z-compile -input %i
8521 @end smallexample
8522
8523 This says that any input file whose name ends in @samp{.ZZ} should be
8524 passed to the program @samp{z-compile}, which should be invoked with the
8525 command-line switch @option{-input} and with the result of performing the
8526 @samp{%i} substitution.  (See below.)
8527
8528 As an alternative to providing a spec string, the text that follows a
8529 suffix directive can be one of the following:
8530
8531 @table @code
8532 @item @@@var{language}
8533 This says that the suffix is an alias for a known @var{language}.  This is
8534 similar to using the @option{-x} command-line switch to GCC to specify a
8535 language explicitly.  For example:
8536
8537 @smallexample
8538 .ZZ:
8539 @@c++
8540 @end smallexample
8541
8542 Says that .ZZ files are, in fact, C++ source files.
8543
8544 @item #@var{name}
8545 This causes an error messages saying:
8546
8547 @smallexample
8548 @var{name} compiler not installed on this system.
8549 @end smallexample
8550 @end table
8551
8552 GCC already has an extensive list of suffixes built into it.
8553 This directive will add an entry to the end of the list of suffixes, but
8554 since the list is searched from the end backwards, it is effectively
8555 possible to override earlier entries using this technique.
8556
8557 @end table
8558
8559 GCC has the following spec strings built into it.  Spec files can
8560 override these strings or create their own.  Note that individual
8561 targets can also add their own spec strings to this list.
8562
8563 @smallexample
8564 asm          Options to pass to the assembler
8565 asm_final    Options to pass to the assembler post-processor
8566 cpp          Options to pass to the C preprocessor
8567 cc1          Options to pass to the C compiler
8568 cc1plus      Options to pass to the C++ compiler
8569 endfile      Object files to include at the end of the link
8570 link         Options to pass to the linker
8571 lib          Libraries to include on the command line to the linker
8572 libgcc       Decides which GCC support library to pass to the linker
8573 linker       Sets the name of the linker
8574 predefines   Defines to be passed to the C preprocessor
8575 signed_char  Defines to pass to CPP to say whether @code{char} is signed
8576              by default
8577 startfile    Object files to include at the start of the link
8578 @end smallexample
8579
8580 Here is a small example of a spec file:
8581
8582 @smallexample
8583 %rename lib                 old_lib
8584
8585 *lib:
8586 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
8587 @end smallexample
8588
8589 This example renames the spec called @samp{lib} to @samp{old_lib} and
8590 then overrides the previous definition of @samp{lib} with a new one.
8591 The new definition adds in some extra command-line options before
8592 including the text of the old definition.
8593
8594 @dfn{Spec strings} are a list of command-line options to be passed to their
8595 corresponding program.  In addition, the spec strings can contain
8596 @samp{%}-prefixed sequences to substitute variable text or to
8597 conditionally insert text into the command line.  Using these constructs
8598 it is possible to generate quite complex command lines.
8599
8600 Here is a table of all defined @samp{%}-sequences for spec
8601 strings.  Note that spaces are not generated automatically around the
8602 results of expanding these sequences.  Therefore you can concatenate them
8603 together or combine them with constant text in a single argument.
8604
8605 @table @code
8606 @item %%
8607 Substitute one @samp{%} into the program name or argument.
8608
8609 @item %i
8610 Substitute the name of the input file being processed.
8611
8612 @item %b
8613 Substitute the basename of the input file being processed.
8614 This is the substring up to (and not including) the last period
8615 and not including the directory.
8616
8617 @item %B
8618 This is the same as @samp{%b}, but include the file suffix (text after
8619 the last period).
8620
8621 @item %d
8622 Marks the argument containing or following the @samp{%d} as a
8623 temporary file name, so that that file will be deleted if GCC exits
8624 successfully.  Unlike @samp{%g}, this contributes no text to the
8625 argument.
8626
8627 @item %g@var{suffix}
8628 Substitute a file name that has suffix @var{suffix} and is chosen
8629 once per compilation, and mark the argument in the same way as
8630 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
8631 name is now chosen in a way that is hard to predict even when previously
8632 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
8633 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
8634 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
8635 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
8636 was simply substituted with a file name chosen once per compilation,
8637 without regard to any appended suffix (which was therefore treated
8638 just like ordinary text), making such attacks more likely to succeed.
8639
8640 @item %u@var{suffix}
8641 Like @samp{%g}, but generates a new temporary file name even if
8642 @samp{%u@var{suffix}} was already seen.
8643
8644 @item %U@var{suffix}
8645 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
8646 new one if there is no such last file name.  In the absence of any
8647 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
8648 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
8649 would involve the generation of two distinct file names, one
8650 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
8651 simply substituted with a file name chosen for the previous @samp{%u},
8652 without regard to any appended suffix.
8653
8654 @item %j@var{suffix}
8655 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
8656 writable, and if save-temps is off; otherwise, substitute the name
8657 of a temporary file, just like @samp{%u}.  This temporary file is not
8658 meant for communication between processes, but rather as a junk
8659 disposal mechanism.
8660
8661 @item %|@var{suffix}
8662 @itemx %m@var{suffix}
8663 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
8664 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
8665 all.  These are the two most common ways to instruct a program that it
8666 should read from standard input or write to standard output.  If you
8667 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
8668 construct: see for example @file{f/lang-specs.h}.
8669
8670 @item %.@var{SUFFIX}
8671 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
8672 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
8673 terminated by the next space or %.
8674
8675 @item %w
8676 Marks the argument containing or following the @samp{%w} as the
8677 designated output file of this compilation.  This puts the argument
8678 into the sequence of arguments that @samp{%o} will substitute later.
8679
8680 @item %o
8681 Substitutes the names of all the output files, with spaces
8682 automatically placed around them.  You should write spaces
8683 around the @samp{%o} as well or the results are undefined.
8684 @samp{%o} is for use in the specs for running the linker.
8685 Input files whose names have no recognized suffix are not compiled
8686 at all, but they are included among the output files, so they will
8687 be linked.
8688
8689 @item %O
8690 Substitutes the suffix for object files.  Note that this is
8691 handled specially when it immediately follows @samp{%g, %u, or %U},
8692 because of the need for those to form complete file names.  The
8693 handling is such that @samp{%O} is treated exactly as if it had already
8694 been substituted, except that @samp{%g, %u, and %U} do not currently
8695 support additional @var{suffix} characters following @samp{%O} as they would
8696 following, for example, @samp{.o}.
8697
8698 @item %p
8699 Substitutes the standard macro predefinitions for the
8700 current target machine.  Use this when running @code{cpp}.
8701
8702 @item %P
8703 Like @samp{%p}, but puts @samp{__} before and after the name of each
8704 predefined macro, except for macros that start with @samp{__} or with
8705 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
8706 C@.
8707
8708 @item %I
8709 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
8710 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
8711 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
8712 and @option{-imultilib} as necessary.
8713
8714 @item %s
8715 Current argument is the name of a library or startup file of some sort.
8716 Search for that file in a standard list of directories and substitute
8717 the full name found.
8718
8719 @item %e@var{str}
8720 Print @var{str} as an error message.  @var{str} is terminated by a newline.
8721 Use this when inconsistent options are detected.
8722
8723 @item %(@var{name})
8724 Substitute the contents of spec string @var{name} at this point.
8725
8726 @item %[@var{name}]
8727 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
8728
8729 @item %x@{@var{option}@}
8730 Accumulate an option for @samp{%X}.
8731
8732 @item %X
8733 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
8734 spec string.
8735
8736 @item %Y
8737 Output the accumulated assembler options specified by @option{-Wa}.
8738
8739 @item %Z
8740 Output the accumulated preprocessor options specified by @option{-Wp}.
8741
8742 @item %a
8743 Process the @code{asm} spec.  This is used to compute the
8744 switches to be passed to the assembler.
8745
8746 @item %A
8747 Process the @code{asm_final} spec.  This is a spec string for
8748 passing switches to an assembler post-processor, if such a program is
8749 needed.
8750
8751 @item %l
8752 Process the @code{link} spec.  This is the spec for computing the
8753 command line passed to the linker.  Typically it will make use of the
8754 @samp{%L %G %S %D and %E} sequences.
8755
8756 @item %D
8757 Dump out a @option{-L} option for each directory that GCC believes might
8758 contain startup files.  If the target supports multilibs then the
8759 current multilib directory will be prepended to each of these paths.
8760
8761 @item %L
8762 Process the @code{lib} spec.  This is a spec string for deciding which
8763 libraries should be included on the command line to the linker.
8764
8765 @item %G
8766 Process the @code{libgcc} spec.  This is a spec string for deciding
8767 which GCC support library should be included on the command line to the linker.
8768
8769 @item %S
8770 Process the @code{startfile} spec.  This is a spec for deciding which
8771 object files should be the first ones passed to the linker.  Typically
8772 this might be a file named @file{crt0.o}.
8773
8774 @item %E
8775 Process the @code{endfile} spec.  This is a spec string that specifies
8776 the last object files that will be passed to the linker.
8777
8778 @item %C
8779 Process the @code{cpp} spec.  This is used to construct the arguments
8780 to be passed to the C preprocessor.
8781
8782 @item %1
8783 Process the @code{cc1} spec.  This is used to construct the options to be
8784 passed to the actual C compiler (@samp{cc1}).
8785
8786 @item %2
8787 Process the @code{cc1plus} spec.  This is used to construct the options to be
8788 passed to the actual C++ compiler (@samp{cc1plus}).
8789
8790 @item %*
8791 Substitute the variable part of a matched option.  See below.
8792 Note that each comma in the substituted string is replaced by
8793 a single space.
8794
8795 @item %<@code{S}
8796 Remove all occurrences of @code{-S} from the command line.  Note---this
8797 command is position dependent.  @samp{%} commands in the spec string
8798 before this one will see @code{-S}, @samp{%} commands in the spec string
8799 after this one will not.
8800
8801 @item %:@var{function}(@var{args})
8802 Call the named function @var{function}, passing it @var{args}.
8803 @var{args} is first processed as a nested spec string, then split
8804 into an argument vector in the usual fashion.  The function returns
8805 a string which is processed as if it had appeared literally as part
8806 of the current spec.
8807
8808 The following built-in spec functions are provided:
8809
8810 @table @code
8811 @item @code{getenv}
8812 The @code{getenv} spec function takes two arguments: an environment
8813 variable name and a string.  If the environment variable is not
8814 defined, a fatal error is issued.  Otherwise, the return value is the
8815 value of the environment variable concatenated with the string.  For
8816 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
8817
8818 @smallexample
8819 %:getenv(TOPDIR /include)
8820 @end smallexample
8821
8822 expands to @file{/path/to/top/include}.
8823
8824 @item @code{if-exists}
8825 The @code{if-exists} spec function takes one argument, an absolute
8826 pathname to a file.  If the file exists, @code{if-exists} returns the
8827 pathname.  Here is a small example of its usage:
8828
8829 @smallexample
8830 *startfile:
8831 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
8832 @end smallexample
8833
8834 @item @code{if-exists-else}
8835 The @code{if-exists-else} spec function is similar to the @code{if-exists}
8836 spec function, except that it takes two arguments.  The first argument is
8837 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
8838 returns the pathname.  If it does not exist, it returns the second argument.
8839 This way, @code{if-exists-else} can be used to select one file or another,
8840 based on the existence of the first.  Here is a small example of its usage:
8841
8842 @smallexample
8843 *startfile:
8844 crt0%O%s %:if-exists(crti%O%s) \
8845 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
8846 @end smallexample
8847
8848 @item @code{replace-outfile}
8849 The @code{replace-outfile} spec function takes two arguments.  It looks for the
8850 first argument in the outfiles array and replaces it with the second argument.  Here
8851 is a small example of its usage:
8852
8853 @smallexample
8854 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
8855 @end smallexample
8856
8857 @item @code{print-asm-header}
8858 The @code{print-asm-header} function takes no arguments and simply
8859 prints a banner like:
8860
8861 @smallexample
8862 Assembler options
8863 =================
8864
8865 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
8866 @end smallexample
8867
8868 It is used to separate compiler options from assembler options
8869 in the @option{--target-help} output.
8870 @end table
8871
8872 @item %@{@code{S}@}
8873 Substitutes the @code{-S} switch, if that switch was given to GCC@.
8874 If that switch was not specified, this substitutes nothing.  Note that
8875 the leading dash is omitted when specifying this option, and it is
8876 automatically inserted if the substitution is performed.  Thus the spec
8877 string @samp{%@{foo@}} would match the command-line option @option{-foo}
8878 and would output the command line option @option{-foo}.
8879
8880 @item %W@{@code{S}@}
8881 Like %@{@code{S}@} but mark last argument supplied within as a file to be
8882 deleted on failure.
8883
8884 @item %@{@code{S}*@}
8885 Substitutes all the switches specified to GCC whose names start
8886 with @code{-S}, but which also take an argument.  This is used for
8887 switches like @option{-o}, @option{-D}, @option{-I}, etc.
8888 GCC considers @option{-o foo} as being
8889 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
8890 text, including the space.  Thus two arguments would be generated.
8891
8892 @item %@{@code{S}*&@code{T}*@}
8893 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
8894 (the order of @code{S} and @code{T} in the spec is not significant).
8895 There can be any number of ampersand-separated variables; for each the
8896 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
8897
8898 @item %@{@code{S}:@code{X}@}
8899 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
8900
8901 @item %@{!@code{S}:@code{X}@}
8902 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
8903
8904 @item %@{@code{S}*:@code{X}@}
8905 Substitutes @code{X} if one or more switches whose names start with
8906 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
8907 once, no matter how many such switches appeared.  However, if @code{%*}
8908 appears somewhere in @code{X}, then @code{X} will be substituted once
8909 for each matching switch, with the @code{%*} replaced by the part of
8910 that switch that matched the @code{*}.
8911
8912 @item %@{.@code{S}:@code{X}@}
8913 Substitutes @code{X}, if processing a file with suffix @code{S}.
8914
8915 @item %@{!.@code{S}:@code{X}@}
8916 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
8917
8918 @item %@{,@code{S}:@code{X}@}
8919 Substitutes @code{X}, if processing a file for language @code{S}.
8920
8921 @item %@{!,@code{S}:@code{X}@}
8922 Substitutes @code{X}, if not processing a file for language @code{S}.
8923
8924 @item %@{@code{S}|@code{P}:@code{X}@}
8925 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
8926 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
8927 @code{*} sequences as well, although they have a stronger binding than
8928 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
8929 alternatives must be starred, and only the first matching alternative
8930 is substituted.
8931
8932 For example, a spec string like this:
8933
8934 @smallexample
8935 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
8936 @end smallexample
8937
8938 will output the following command-line options from the following input
8939 command-line options:
8940
8941 @smallexample
8942 fred.c        -foo -baz
8943 jim.d         -bar -boggle
8944 -d fred.c     -foo -baz -boggle
8945 -d jim.d      -bar -baz -boggle
8946 @end smallexample
8947
8948 @item %@{S:X; T:Y; :D@}
8949
8950 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
8951 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
8952 be as many clauses as you need.  This may be combined with @code{.},
8953 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
8954
8955
8956 @end table
8957
8958 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
8959 construct may contain other nested @samp{%} constructs or spaces, or
8960 even newlines.  They are processed as usual, as described above.
8961 Trailing white space in @code{X} is ignored.  White space may also
8962 appear anywhere on the left side of the colon in these constructs,
8963 except between @code{.} or @code{*} and the corresponding word.
8964
8965 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8966 handled specifically in these constructs.  If another value of
8967 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8968 @option{-W} switch is found later in the command line, the earlier
8969 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8970 just one letter, which passes all matching options.
8971
8972 The character @samp{|} at the beginning of the predicate text is used to
8973 indicate that a command should be piped to the following command, but
8974 only if @option{-pipe} is specified.
8975
8976 It is built into GCC which switches take arguments and which do not.
8977 (You might think it would be useful to generalize this to allow each
8978 compiler's spec to say which switches take arguments.  But this cannot
8979 be done in a consistent fashion.  GCC cannot even decide which input
8980 files have been specified without knowing which switches take arguments,
8981 and it must know which input files to compile in order to tell which
8982 compilers to run).
8983
8984 GCC also knows implicitly that arguments starting in @option{-l} are to be
8985 treated as compiler output files, and passed to the linker in their
8986 proper position among the other output files.
8987
8988 @c man begin OPTIONS
8989
8990 @node Target Options
8991 @section Specifying Target Machine and Compiler Version
8992 @cindex target options
8993 @cindex cross compiling
8994 @cindex specifying machine version
8995 @cindex specifying compiler version and target machine
8996 @cindex compiler version, specifying
8997 @cindex target machine, specifying
8998
8999 The usual way to run GCC is to run the executable called @file{gcc}, or
9000 @file{<machine>-gcc} when cross-compiling, or
9001 @file{<machine>-gcc-<version>} to run a version other than the one that
9002 was installed last.  Sometimes this is inconvenient, so GCC provides
9003 options that will switch to another cross-compiler or version.
9004
9005 @table @gcctabopt
9006 @item -b @var{machine}
9007 @opindex b
9008 The argument @var{machine} specifies the target machine for compilation.
9009
9010 The value to use for @var{machine} is the same as was specified as the
9011 machine type when configuring GCC as a cross-compiler.  For
9012 example, if a cross-compiler was configured with @samp{configure
9013 arm-elf}, meaning to compile for an arm processor with elf binaries,
9014 then you would specify @option{-b arm-elf} to run that cross compiler.
9015 Because there are other options beginning with @option{-b}, the
9016 configuration must contain a hyphen, or @option{-b} alone should be one
9017 argument followed by the configuration in the next argument.
9018
9019 @item -V @var{version}
9020 @opindex V
9021 The argument @var{version} specifies which version of GCC to run.
9022 This is useful when multiple versions are installed.  For example,
9023 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
9024 @end table
9025
9026 The @option{-V} and @option{-b} options work by running the
9027 @file{<machine>-gcc-<version>} executable, so there's no real reason to
9028 use them if you can just run that directly.
9029
9030 @node Submodel Options
9031 @section Hardware Models and Configurations
9032 @cindex submodel options
9033 @cindex specifying hardware config
9034 @cindex hardware models and configurations, specifying
9035 @cindex machine dependent options
9036
9037 Earlier we discussed the standard option @option{-b} which chooses among
9038 different installed compilers for completely different target
9039 machines, such as VAX vs.@: 68000 vs.@: 80386.
9040
9041 In addition, each of these target machine types can have its own
9042 special options, starting with @samp{-m}, to choose among various
9043 hardware models or configurations---for example, 68010 vs 68020,
9044 floating coprocessor or none.  A single installed version of the
9045 compiler can compile for any model or configuration, according to the
9046 options specified.
9047
9048 Some configurations of the compiler also support additional special
9049 options, usually for compatibility with other compilers on the same
9050 platform.
9051
9052 @c This list is ordered alphanumerically by subsection name.
9053 @c It should be the same order and spelling as these options are listed
9054 @c in Machine Dependent Options
9055
9056 @menu
9057 * ARC Options::
9058 * ARM Options::
9059 * AVR Options::
9060 * Blackfin Options::
9061 * CRIS Options::
9062 * CRX Options::
9063 * Darwin Options::
9064 * DEC Alpha Options::
9065 * DEC Alpha/VMS Options::
9066 * FR30 Options::
9067 * FRV Options::
9068 * GNU/Linux Options::
9069 * H8/300 Options::
9070 * HPPA Options::
9071 * i386 and x86-64 Options::
9072 * i386 and x86-64 Windows Options::
9073 * IA-64 Options::
9074 * M32C Options::
9075 * M32R/D Options::
9076 * M680x0 Options::
9077 * M68hc1x Options::
9078 * MCore Options::
9079 * MeP Options::
9080 * MIPS Options::
9081 * MMIX Options::
9082 * MN10300 Options::
9083 * PDP-11 Options::
9084 * picoChip Options::
9085 * PowerPC Options::
9086 * RS/6000 and PowerPC Options::
9087 * S/390 and zSeries Options::
9088 * Score Options::
9089 * SH Options::
9090 * SPARC Options::
9091 * SPU Options::
9092 * System V Options::
9093 * V850 Options::
9094 * VAX Options::
9095 * VxWorks Options::
9096 * x86-64 Options::
9097 * Xstormy16 Options::
9098 * Xtensa Options::
9099 * zSeries Options::
9100 @end menu
9101
9102 @node ARC Options
9103 @subsection ARC Options
9104 @cindex ARC Options
9105
9106 These options are defined for ARC implementations:
9107
9108 @table @gcctabopt
9109 @item -EL
9110 @opindex EL
9111 Compile code for little endian mode.  This is the default.
9112
9113 @item -EB
9114 @opindex EB
9115 Compile code for big endian mode.
9116
9117 @item -mmangle-cpu
9118 @opindex mmangle-cpu
9119 Prepend the name of the cpu to all public symbol names.
9120 In multiple-processor systems, there are many ARC variants with different
9121 instruction and register set characteristics.  This flag prevents code
9122 compiled for one cpu to be linked with code compiled for another.
9123 No facility exists for handling variants that are ``almost identical''.
9124 This is an all or nothing option.
9125
9126 @item -mcpu=@var{cpu}
9127 @opindex mcpu
9128 Compile code for ARC variant @var{cpu}.
9129 Which variants are supported depend on the configuration.
9130 All variants support @option{-mcpu=base}, this is the default.
9131
9132 @item -mtext=@var{text-section}
9133 @itemx -mdata=@var{data-section}
9134 @itemx -mrodata=@var{readonly-data-section}
9135 @opindex mtext
9136 @opindex mdata
9137 @opindex mrodata
9138 Put functions, data, and readonly data in @var{text-section},
9139 @var{data-section}, and @var{readonly-data-section} respectively
9140 by default.  This can be overridden with the @code{section} attribute.
9141 @xref{Variable Attributes}.
9142
9143 @item -mfix-cortex-m3-ldrd
9144 @opindex mfix-cortex-m3-ldrd
9145 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
9146 with overlapping destination and base registers are used.  This option avoids
9147 generating these instructions.  This option is enabled by default when
9148 @option{-mcpu=cortex-m3} is specified.
9149
9150 @end table
9151
9152 @node ARM Options
9153 @subsection ARM Options
9154 @cindex ARM options
9155
9156 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
9157 architectures:
9158
9159 @table @gcctabopt
9160 @item -mabi=@var{name}
9161 @opindex mabi
9162 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
9163 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
9164
9165 @item -mapcs-frame
9166 @opindex mapcs-frame
9167 Generate a stack frame that is compliant with the ARM Procedure Call
9168 Standard for all functions, even if this is not strictly necessary for
9169 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
9170 with this option will cause the stack frames not to be generated for
9171 leaf functions.  The default is @option{-mno-apcs-frame}.
9172
9173 @item -mapcs
9174 @opindex mapcs
9175 This is a synonym for @option{-mapcs-frame}.
9176
9177 @ignore
9178 @c not currently implemented
9179 @item -mapcs-stack-check
9180 @opindex mapcs-stack-check
9181 Generate code to check the amount of stack space available upon entry to
9182 every function (that actually uses some stack space).  If there is
9183 insufficient space available then either the function
9184 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
9185 called, depending upon the amount of stack space required.  The run time
9186 system is required to provide these functions.  The default is
9187 @option{-mno-apcs-stack-check}, since this produces smaller code.
9188
9189 @c not currently implemented
9190 @item -mapcs-float
9191 @opindex mapcs-float
9192 Pass floating point arguments using the float point registers.  This is
9193 one of the variants of the APCS@.  This option is recommended if the
9194 target hardware has a floating point unit or if a lot of floating point
9195 arithmetic is going to be performed by the code.  The default is
9196 @option{-mno-apcs-float}, since integer only code is slightly increased in
9197 size if @option{-mapcs-float} is used.
9198
9199 @c not currently implemented
9200 @item -mapcs-reentrant
9201 @opindex mapcs-reentrant
9202 Generate reentrant, position independent code.  The default is
9203 @option{-mno-apcs-reentrant}.
9204 @end ignore
9205
9206 @item -mthumb-interwork
9207 @opindex mthumb-interwork
9208 Generate code which supports calling between the ARM and Thumb
9209 instruction sets.  Without this option the two instruction sets cannot
9210 be reliably used inside one program.  The default is
9211 @option{-mno-thumb-interwork}, since slightly larger code is generated
9212 when @option{-mthumb-interwork} is specified.
9213
9214 @item -mno-sched-prolog
9215 @opindex mno-sched-prolog
9216 Prevent the reordering of instructions in the function prolog, or the
9217 merging of those instruction with the instructions in the function's
9218 body.  This means that all functions will start with a recognizable set
9219 of instructions (or in fact one of a choice from a small set of
9220 different function prologues), and this information can be used to
9221 locate the start if functions inside an executable piece of code.  The
9222 default is @option{-msched-prolog}.
9223
9224 @item -mfloat-abi=@var{name}
9225 @opindex mfloat-abi
9226 Specifies which floating-point ABI to use.  Permissible values
9227 are: @samp{soft}, @samp{softfp} and @samp{hard}.
9228
9229 Specifying @samp{soft} causes GCC to generate output containing 
9230 library calls for floating-point operations.
9231 @samp{softfp} allows the generation of code using hardware floating-point 
9232 instructions, but still uses the soft-float calling conventions.  
9233 @samp{hard} allows generation of floating-point instructions 
9234 and uses FPU-specific calling conventions.
9235
9236 Using @option{-mfloat-abi=hard} with VFP coprocessors is not supported.
9237 Use @option{-mfloat-abi=softfp} with the appropriate @option{-mfpu} option
9238 to allow the compiler to generate code that makes use of the hardware
9239 floating-point capabilities for these CPUs.
9240
9241 The default depends on the specific target configuration.  Note that
9242 the hard-float and soft-float ABIs are not link-compatible; you must
9243 compile your entire program with the same ABI, and link with a
9244 compatible set of libraries.
9245
9246 @item -mhard-float
9247 @opindex mhard-float
9248 Equivalent to @option{-mfloat-abi=hard}.
9249
9250 @item -msoft-float
9251 @opindex msoft-float
9252 Equivalent to @option{-mfloat-abi=soft}.
9253
9254 @item -mlittle-endian
9255 @opindex mlittle-endian
9256 Generate code for a processor running in little-endian mode.  This is
9257 the default for all standard configurations.
9258
9259 @item -mbig-endian
9260 @opindex mbig-endian
9261 Generate code for a processor running in big-endian mode; the default is
9262 to compile code for a little-endian processor.
9263
9264 @item -mwords-little-endian
9265 @opindex mwords-little-endian
9266 This option only applies when generating code for big-endian processors.
9267 Generate code for a little-endian word order but a big-endian byte
9268 order.  That is, a byte order of the form @samp{32107654}.  Note: this
9269 option should only be used if you require compatibility with code for
9270 big-endian ARM processors generated by versions of the compiler prior to
9271 2.8.
9272
9273 @item -mcpu=@var{name}
9274 @opindex mcpu
9275 This specifies the name of the target ARM processor.  GCC uses this name
9276 to determine what kind of instructions it can emit when generating
9277 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
9278 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
9279 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
9280 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
9281 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
9282 @samp{arm720},
9283 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
9284 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
9285 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
9286 @samp{strongarm1110},
9287 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
9288 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
9289 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
9290 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
9291 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
9292 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
9293 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
9294 @samp{cortex-a8}, @samp{cortex-a9},
9295 @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m3},
9296 @samp{cortex-m1},
9297 @samp{cortex-m0},
9298 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
9299
9300 @item -mtune=@var{name}
9301 @opindex mtune
9302 This option is very similar to the @option{-mcpu=} option, except that
9303 instead of specifying the actual target processor type, and hence
9304 restricting which instructions can be used, it specifies that GCC should
9305 tune the performance of the code as if the target were of the type
9306 specified in this option, but still choosing the instructions that it
9307 will generate based on the cpu specified by a @option{-mcpu=} option.
9308 For some ARM implementations better performance can be obtained by using
9309 this option.
9310
9311 @item -march=@var{name}
9312 @opindex march
9313 This specifies the name of the target ARM architecture.  GCC uses this
9314 name to determine what kind of instructions it can emit when generating
9315 assembly code.  This option can be used in conjunction with or instead
9316 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
9317 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
9318 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
9319 @samp{armv6}, @samp{armv6j},
9320 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
9321 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
9322 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
9323
9324 @item -mfpu=@var{name}
9325 @itemx -mfpe=@var{number}
9326 @itemx -mfp=@var{number}
9327 @opindex mfpu
9328 @opindex mfpe
9329 @opindex mfp
9330 This specifies what floating point hardware (or hardware emulation) is
9331 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
9332 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-d16},
9333 @samp{neon}, and @samp{neon-fp16}.  @option{-mfp} and @option{-mfpe}
9334 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
9335 with older versions of GCC@.
9336
9337 If @option{-msoft-float} is specified this specifies the format of
9338 floating point values.
9339
9340 @item -mfp16-format=@var{name}
9341 @opindex mfp16-format
9342 Specify the format of the @code{__fp16} half-precision floating-point type.
9343 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative}; 
9344 the default is @samp{none}, in which case the @code{__fp16} type is not 
9345 defined.  @xref{Half-Precision}, for more information.
9346
9347 @item -mstructure-size-boundary=@var{n}
9348 @opindex mstructure-size-boundary
9349 The size of all structures and unions will be rounded up to a multiple
9350 of the number of bits set by this option.  Permissible values are 8, 32
9351 and 64.  The default value varies for different toolchains.  For the COFF
9352 targeted toolchain the default value is 8.  A value of 64 is only allowed
9353 if the underlying ABI supports it.
9354
9355 Specifying the larger number can produce faster, more efficient code, but
9356 can also increase the size of the program.  Different values are potentially
9357 incompatible.  Code compiled with one value cannot necessarily expect to
9358 work with code or libraries compiled with another value, if they exchange
9359 information using structures or unions.
9360
9361 @item -mabort-on-noreturn
9362 @opindex mabort-on-noreturn
9363 Generate a call to the function @code{abort} at the end of a
9364 @code{noreturn} function.  It will be executed if the function tries to
9365 return.
9366
9367 @item -mlong-calls
9368 @itemx -mno-long-calls
9369 @opindex mlong-calls
9370 @opindex mno-long-calls
9371 Tells the compiler to perform function calls by first loading the
9372 address of the function into a register and then performing a subroutine
9373 call on this register.  This switch is needed if the target function
9374 will lie outside of the 64 megabyte addressing range of the offset based
9375 version of subroutine call instruction.
9376
9377 Even if this switch is enabled, not all function calls will be turned
9378 into long calls.  The heuristic is that static functions, functions
9379 which have the @samp{short-call} attribute, functions that are inside
9380 the scope of a @samp{#pragma no_long_calls} directive and functions whose
9381 definitions have already been compiled within the current compilation
9382 unit, will not be turned into long calls.  The exception to this rule is
9383 that weak function definitions, functions with the @samp{long-call}
9384 attribute or the @samp{section} attribute, and functions that are within
9385 the scope of a @samp{#pragma long_calls} directive, will always be
9386 turned into long calls.
9387
9388 This feature is not enabled by default.  Specifying
9389 @option{-mno-long-calls} will restore the default behavior, as will
9390 placing the function calls within the scope of a @samp{#pragma
9391 long_calls_off} directive.  Note these switches have no effect on how
9392 the compiler generates code to handle function calls via function
9393 pointers.
9394
9395 @item -msingle-pic-base
9396 @opindex msingle-pic-base
9397 Treat the register used for PIC addressing as read-only, rather than
9398 loading it in the prologue for each function.  The run-time system is
9399 responsible for initializing this register with an appropriate value
9400 before execution begins.
9401
9402 @item -mpic-register=@var{reg}
9403 @opindex mpic-register
9404 Specify the register to be used for PIC addressing.  The default is R10
9405 unless stack-checking is enabled, when R9 is used.
9406
9407 @item -mcirrus-fix-invalid-insns
9408 @opindex mcirrus-fix-invalid-insns
9409 @opindex mno-cirrus-fix-invalid-insns
9410 Insert NOPs into the instruction stream to in order to work around
9411 problems with invalid Maverick instruction combinations.  This option
9412 is only valid if the @option{-mcpu=ep9312} option has been used to
9413 enable generation of instructions for the Cirrus Maverick floating
9414 point co-processor.  This option is not enabled by default, since the
9415 problem is only present in older Maverick implementations.  The default
9416 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
9417 switch.
9418
9419 @item -mpoke-function-name
9420 @opindex mpoke-function-name
9421 Write the name of each function into the text section, directly
9422 preceding the function prologue.  The generated code is similar to this:
9423
9424 @smallexample
9425      t0
9426          .ascii "arm_poke_function_name", 0
9427          .align
9428      t1
9429          .word 0xff000000 + (t1 - t0)
9430      arm_poke_function_name
9431          mov     ip, sp
9432          stmfd   sp!, @{fp, ip, lr, pc@}
9433          sub     fp, ip, #4
9434 @end smallexample
9435
9436 When performing a stack backtrace, code can inspect the value of
9437 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
9438 location @code{pc - 12} and the top 8 bits are set, then we know that
9439 there is a function name embedded immediately preceding this location
9440 and has length @code{((pc[-3]) & 0xff000000)}.
9441
9442 @item -mthumb
9443 @opindex mthumb
9444 Generate code for the Thumb instruction set.  The default is to
9445 use the 32-bit ARM instruction set.
9446 This option automatically enables either 16-bit Thumb-1 or
9447 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
9448 and @option{-march=@var{name}} options. This option is not passed to the 
9449 assembler. If you want to force assembler files to be interpreted as Thumb code,
9450 either add a @samp{.thumb} directive to the source or pass the @option{-mthumb} 
9451 option directly to the assembler by prefixing it with @option{-Wa}.
9452
9453 @item -mtpcs-frame
9454 @opindex mtpcs-frame
9455 Generate a stack frame that is compliant with the Thumb Procedure Call
9456 Standard for all non-leaf functions.  (A leaf function is one that does
9457 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
9458
9459 @item -mtpcs-leaf-frame
9460 @opindex mtpcs-leaf-frame
9461 Generate a stack frame that is compliant with the Thumb Procedure Call
9462 Standard for all leaf functions.  (A leaf function is one that does
9463 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
9464
9465 @item -mcallee-super-interworking
9466 @opindex mcallee-super-interworking
9467 Gives all externally visible functions in the file being compiled an ARM
9468 instruction set header which switches to Thumb mode before executing the
9469 rest of the function.  This allows these functions to be called from
9470 non-interworking code. This option is not valid in AAPCS configurations
9471 because interworking is enabled by default.
9472
9473 @item -mcaller-super-interworking
9474 @opindex mcaller-super-interworking
9475 Allows calls via function pointers (including virtual functions) to
9476 execute correctly regardless of whether the target code has been
9477 compiled for interworking or not.  There is a small overhead in the cost
9478 of executing a function pointer if this option is enabled. This option 
9479 is not valid in AAPCS configurations because interworking is enabled
9480 by default.
9481
9482 @item -mtp=@var{name}
9483 @opindex mtp
9484 Specify the access model for the thread local storage pointer.  The valid
9485 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
9486 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
9487 (supported in the arm6k architecture), and @option{auto}, which uses the
9488 best available method for the selected processor.  The default setting is
9489 @option{auto}.
9490
9491 @item -mword-relocations
9492 @opindex mword-relocations
9493 Only generate absolute relocations on word sized values (i.e. R_ARM_ABS32).
9494 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
9495 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
9496 is specified.
9497
9498 @end table
9499
9500 @node AVR Options
9501 @subsection AVR Options
9502 @cindex AVR Options
9503
9504 These options are defined for AVR implementations:
9505
9506 @table @gcctabopt
9507 @item -mmcu=@var{mcu}
9508 @opindex mmcu
9509 Specify ATMEL AVR instruction set or MCU type.
9510
9511 Instruction set avr1 is for the minimal AVR core, not supported by the C
9512 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
9513 attiny11, attiny12, attiny15, attiny28).
9514
9515 Instruction set avr2 (default) is for the classic AVR core with up to
9516 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
9517 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
9518 at90c8534, at90s8535).
9519
9520 Instruction set avr3 is for the classic AVR core with up to 128K program
9521 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
9522
9523 Instruction set avr4 is for the enhanced AVR core with up to 8K program
9524 memory space (MCU types: atmega8, atmega83, atmega85).
9525
9526 Instruction set avr5 is for the enhanced AVR core with up to 128K program
9527 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
9528 atmega64, atmega128, at43usb355, at94k).
9529
9530 @item -msize
9531 @opindex msize
9532 Output instruction sizes to the asm file.
9533
9534 @item -minit-stack=@var{N}
9535 @opindex minit-stack
9536 Specify the initial stack address, which may be a symbol or numeric value,
9537 @samp{__stack} is the default.
9538
9539 @item -mno-interrupts
9540 @opindex mno-interrupts
9541 Generated code is not compatible with hardware interrupts.
9542 Code size will be smaller.
9543
9544 @item -mcall-prologues
9545 @opindex mcall-prologues
9546 Functions prologues/epilogues expanded as call to appropriate
9547 subroutines.  Code size will be smaller.
9548
9549 @item -mtiny-stack
9550 @opindex mtiny-stack
9551 Change only the low 8 bits of the stack pointer.
9552
9553 @item -mint8
9554 @opindex mint8
9555 Assume int to be 8 bit integer.  This affects the sizes of all types: A
9556 char will be 1 byte, an int will be 1 byte, a long will be 2 bytes
9557 and long long will be 4 bytes.  Please note that this option does not
9558 comply to the C standards, but it will provide you with smaller code
9559 size.
9560 @end table
9561
9562 @node Blackfin Options
9563 @subsection Blackfin Options
9564 @cindex Blackfin Options
9565
9566 @table @gcctabopt
9567 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
9568 @opindex mcpu=
9569 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
9570 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
9571 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
9572 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
9573 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
9574 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
9575 @samp{bf561}.
9576 The optional @var{sirevision} specifies the silicon revision of the target
9577 Blackfin processor.  Any workarounds available for the targeted silicon revision
9578 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
9579 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
9580 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
9581 hexadecimal digits representing the major and minor numbers in the silicon
9582 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
9583 is not defined.  If @var{sirevision} is @samp{any}, the
9584 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
9585 If this optional @var{sirevision} is not used, GCC assumes the latest known
9586 silicon revision of the targeted Blackfin processor.
9587
9588 Support for @samp{bf561} is incomplete.  For @samp{bf561},
9589 Only the processor macro is defined.
9590 Without this option, @samp{bf532} is used as the processor by default.
9591 The corresponding predefined processor macros for @var{cpu} is to
9592 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
9593 provided by libgloss to be linked in if @option{-msim} is not given.
9594
9595 @item -msim
9596 @opindex msim
9597 Specifies that the program will be run on the simulator.  This causes
9598 the simulator BSP provided by libgloss to be linked in.  This option
9599 has effect only for @samp{bfin-elf} toolchain.
9600 Certain other options, such as @option{-mid-shared-library} and
9601 @option{-mfdpic}, imply @option{-msim}.
9602
9603 @item -momit-leaf-frame-pointer
9604 @opindex momit-leaf-frame-pointer
9605 Don't keep the frame pointer in a register for leaf functions.  This
9606 avoids the instructions to save, set up and restore frame pointers and
9607 makes an extra register available in leaf functions.  The option
9608 @option{-fomit-frame-pointer} removes the frame pointer for all functions
9609 which might make debugging harder.
9610
9611 @item -mspecld-anomaly
9612 @opindex mspecld-anomaly
9613 When enabled, the compiler will ensure that the generated code does not
9614 contain speculative loads after jump instructions. If this option is used,
9615 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
9616
9617 @item -mno-specld-anomaly
9618 @opindex mno-specld-anomaly
9619 Don't generate extra code to prevent speculative loads from occurring.
9620
9621 @item -mcsync-anomaly
9622 @opindex mcsync-anomaly
9623 When enabled, the compiler will ensure that the generated code does not
9624 contain CSYNC or SSYNC instructions too soon after conditional branches.
9625 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
9626
9627 @item -mno-csync-anomaly
9628 @opindex mno-csync-anomaly
9629 Don't generate extra code to prevent CSYNC or SSYNC instructions from
9630 occurring too soon after a conditional branch.
9631
9632 @item -mlow-64k
9633 @opindex mlow-64k
9634 When enabled, the compiler is free to take advantage of the knowledge that
9635 the entire program fits into the low 64k of memory.
9636
9637 @item -mno-low-64k
9638 @opindex mno-low-64k
9639 Assume that the program is arbitrarily large.  This is the default.
9640
9641 @item -mstack-check-l1
9642 @opindex mstack-check-l1
9643 Do stack checking using information placed into L1 scratchpad memory by the
9644 uClinux kernel.
9645
9646 @item -mid-shared-library
9647 @opindex mid-shared-library
9648 Generate code that supports shared libraries via the library ID method.
9649 This allows for execute in place and shared libraries in an environment
9650 without virtual memory management.  This option implies @option{-fPIC}.
9651 With a @samp{bfin-elf} target, this option implies @option{-msim}.
9652
9653 @item -mno-id-shared-library
9654 @opindex mno-id-shared-library
9655 Generate code that doesn't assume ID based shared libraries are being used.
9656 This is the default.
9657
9658 @item -mleaf-id-shared-library
9659 @opindex mleaf-id-shared-library
9660 Generate code that supports shared libraries via the library ID method,
9661 but assumes that this library or executable won't link against any other
9662 ID shared libraries.  That allows the compiler to use faster code for jumps
9663 and calls.
9664
9665 @item -mno-leaf-id-shared-library
9666 @opindex mno-leaf-id-shared-library
9667 Do not assume that the code being compiled won't link against any ID shared
9668 libraries.  Slower code will be generated for jump and call insns.
9669
9670 @item -mshared-library-id=n
9671 @opindex mshared-library-id
9672 Specified the identification number of the ID based shared library being
9673 compiled.  Specifying a value of 0 will generate more compact code, specifying
9674 other values will force the allocation of that number to the current
9675 library but is no more space or time efficient than omitting this option.
9676
9677 @item -msep-data
9678 @opindex msep-data
9679 Generate code that allows the data segment to be located in a different
9680 area of memory from the text segment.  This allows for execute in place in
9681 an environment without virtual memory management by eliminating relocations
9682 against the text section.
9683
9684 @item -mno-sep-data
9685 @opindex mno-sep-data
9686 Generate code that assumes that the data segment follows the text segment.
9687 This is the default.
9688
9689 @item -mlong-calls
9690 @itemx -mno-long-calls
9691 @opindex mlong-calls
9692 @opindex mno-long-calls
9693 Tells the compiler to perform function calls by first loading the
9694 address of the function into a register and then performing a subroutine
9695 call on this register.  This switch is needed if the target function
9696 will lie outside of the 24 bit addressing range of the offset based
9697 version of subroutine call instruction.
9698
9699 This feature is not enabled by default.  Specifying
9700 @option{-mno-long-calls} will restore the default behavior.  Note these
9701 switches have no effect on how the compiler generates code to handle
9702 function calls via function pointers.
9703
9704 @item -mfast-fp
9705 @opindex mfast-fp
9706 Link with the fast floating-point library. This library relaxes some of
9707 the IEEE floating-point standard's rules for checking inputs against
9708 Not-a-Number (NAN), in the interest of performance.
9709
9710 @item -minline-plt
9711 @opindex minline-plt
9712 Enable inlining of PLT entries in function calls to functions that are
9713 not known to bind locally.  It has no effect without @option{-mfdpic}.
9714
9715 @item -mmulticore
9716 @opindex mmulticore
9717 Build standalone application for multicore Blackfin processor. Proper
9718 start files and link scripts will be used to support multicore.
9719 This option defines @code{__BFIN_MULTICORE}. It can only be used with
9720 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
9721 @option{-mcorea} or @option{-mcoreb}. If it's used without
9722 @option{-mcorea} or @option{-mcoreb}, single application/dual core
9723 programming model is used. In this model, the main function of Core B
9724 should be named as coreb_main. If it's used with @option{-mcorea} or
9725 @option{-mcoreb}, one application per core programming model is used.
9726 If this option is not used, single core application programming
9727 model is used.
9728
9729 @item -mcorea
9730 @opindex mcorea
9731 Build standalone application for Core A of BF561 when using
9732 one application per core programming model. Proper start files
9733 and link scripts will be used to support Core A. This option
9734 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
9735
9736 @item -mcoreb
9737 @opindex mcoreb
9738 Build standalone application for Core B of BF561 when using
9739 one application per core programming model. Proper start files
9740 and link scripts will be used to support Core B. This option
9741 defines @code{__BFIN_COREB}. When this option is used, coreb_main
9742 should be used instead of main. It must be used with
9743 @option{-mmulticore}. 
9744
9745 @item -msdram
9746 @opindex msdram
9747 Build standalone application for SDRAM. Proper start files and
9748 link scripts will be used to put the application into SDRAM.
9749 Loader should initialize SDRAM before loading the application
9750 into SDRAM. This option defines @code{__BFIN_SDRAM}.
9751
9752 @item -micplb
9753 @opindex micplb
9754 Assume that ICPLBs are enabled at runtime.  This has an effect on certain
9755 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
9756 are enabled; for standalone applications the default is off.
9757 @end table
9758
9759 @node CRIS Options
9760 @subsection CRIS Options
9761 @cindex CRIS Options
9762
9763 These options are defined specifically for the CRIS ports.
9764
9765 @table @gcctabopt
9766 @item -march=@var{architecture-type}
9767 @itemx -mcpu=@var{architecture-type}
9768 @opindex march
9769 @opindex mcpu
9770 Generate code for the specified architecture.  The choices for
9771 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
9772 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
9773 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
9774 @samp{v10}.
9775
9776 @item -mtune=@var{architecture-type}
9777 @opindex mtune
9778 Tune to @var{architecture-type} everything applicable about the generated
9779 code, except for the ABI and the set of available instructions.  The
9780 choices for @var{architecture-type} are the same as for
9781 @option{-march=@var{architecture-type}}.
9782
9783 @item -mmax-stack-frame=@var{n}
9784 @opindex mmax-stack-frame
9785 Warn when the stack frame of a function exceeds @var{n} bytes.
9786
9787 @item -metrax4
9788 @itemx -metrax100
9789 @opindex metrax4
9790 @opindex metrax100
9791 The options @option{-metrax4} and @option{-metrax100} are synonyms for
9792 @option{-march=v3} and @option{-march=v8} respectively.
9793
9794 @item -mmul-bug-workaround
9795 @itemx -mno-mul-bug-workaround
9796 @opindex mmul-bug-workaround
9797 @opindex mno-mul-bug-workaround
9798 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
9799 models where it applies.  This option is active by default.
9800
9801 @item -mpdebug
9802 @opindex mpdebug
9803 Enable CRIS-specific verbose debug-related information in the assembly
9804 code.  This option also has the effect to turn off the @samp{#NO_APP}
9805 formatted-code indicator to the assembler at the beginning of the
9806 assembly file.
9807
9808 @item -mcc-init
9809 @opindex mcc-init
9810 Do not use condition-code results from previous instruction; always emit
9811 compare and test instructions before use of condition codes.
9812
9813 @item -mno-side-effects
9814 @opindex mno-side-effects
9815 Do not emit instructions with side-effects in addressing modes other than
9816 post-increment.
9817
9818 @item -mstack-align
9819 @itemx -mno-stack-align
9820 @itemx -mdata-align
9821 @itemx -mno-data-align
9822 @itemx -mconst-align
9823 @itemx -mno-const-align
9824 @opindex mstack-align
9825 @opindex mno-stack-align
9826 @opindex mdata-align
9827 @opindex mno-data-align
9828 @opindex mconst-align
9829 @opindex mno-const-align
9830 These options (no-options) arranges (eliminate arrangements) for the
9831 stack-frame, individual data and constants to be aligned for the maximum
9832 single data access size for the chosen CPU model.  The default is to
9833 arrange for 32-bit alignment.  ABI details such as structure layout are
9834 not affected by these options.
9835
9836 @item -m32-bit
9837 @itemx -m16-bit
9838 @itemx -m8-bit
9839 @opindex m32-bit
9840 @opindex m16-bit
9841 @opindex m8-bit
9842 Similar to the stack- data- and const-align options above, these options
9843 arrange for stack-frame, writable data and constants to all be 32-bit,
9844 16-bit or 8-bit aligned.  The default is 32-bit alignment.
9845
9846 @item -mno-prologue-epilogue
9847 @itemx -mprologue-epilogue
9848 @opindex mno-prologue-epilogue
9849 @opindex mprologue-epilogue
9850 With @option{-mno-prologue-epilogue}, the normal function prologue and
9851 epilogue that sets up the stack-frame are omitted and no return
9852 instructions or return sequences are generated in the code.  Use this
9853 option only together with visual inspection of the compiled code: no
9854 warnings or errors are generated when call-saved registers must be saved,
9855 or storage for local variable needs to be allocated.
9856
9857 @item -mno-gotplt
9858 @itemx -mgotplt
9859 @opindex mno-gotplt
9860 @opindex mgotplt
9861 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
9862 instruction sequences that load addresses for functions from the PLT part
9863 of the GOT rather than (traditional on other architectures) calls to the
9864 PLT@.  The default is @option{-mgotplt}.
9865
9866 @item -melf
9867 @opindex melf
9868 Legacy no-op option only recognized with the cris-axis-elf and
9869 cris-axis-linux-gnu targets.
9870
9871 @item -mlinux
9872 @opindex mlinux
9873 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
9874
9875 @item -sim
9876 @opindex sim
9877 This option, recognized for the cris-axis-elf arranges
9878 to link with input-output functions from a simulator library.  Code,
9879 initialized data and zero-initialized data are allocated consecutively.
9880
9881 @item -sim2
9882 @opindex sim2
9883 Like @option{-sim}, but pass linker options to locate initialized data at
9884 0x40000000 and zero-initialized data at 0x80000000.
9885 @end table
9886
9887 @node CRX Options
9888 @subsection CRX Options
9889 @cindex CRX Options
9890
9891 These options are defined specifically for the CRX ports.
9892
9893 @table @gcctabopt
9894
9895 @item -mmac
9896 @opindex mmac
9897 Enable the use of multiply-accumulate instructions. Disabled by default.
9898
9899 @item -mpush-args
9900 @opindex mpush-args
9901 Push instructions will be used to pass outgoing arguments when functions
9902 are called. Enabled by default.
9903 @end table
9904
9905 @node Darwin Options
9906 @subsection Darwin Options
9907 @cindex Darwin options
9908
9909 These options are defined for all architectures running the Darwin operating
9910 system.
9911
9912 FSF GCC on Darwin does not create ``fat'' object files; it will create
9913 an object file for the single architecture that it was built to
9914 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
9915 @option{-arch} options are used; it does so by running the compiler or
9916 linker multiple times and joining the results together with
9917 @file{lipo}.
9918
9919 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
9920 @samp{i686}) is determined by the flags that specify the ISA
9921 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
9922 @option{-force_cpusubtype_ALL} option can be used to override this.
9923
9924 The Darwin tools vary in their behavior when presented with an ISA
9925 mismatch.  The assembler, @file{as}, will only permit instructions to
9926 be used that are valid for the subtype of the file it is generating,
9927 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
9928 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
9929 and print an error if asked to create a shared library with a less
9930 restrictive subtype than its input files (for instance, trying to put
9931 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
9932 for executables, @file{ld}, will quietly give the executable the most
9933 restrictive subtype of any of its input files.
9934
9935 @table @gcctabopt
9936 @item -F@var{dir}
9937 @opindex F
9938 Add the framework directory @var{dir} to the head of the list of
9939 directories to be searched for header files.  These directories are
9940 interleaved with those specified by @option{-I} options and are
9941 scanned in a left-to-right order.
9942
9943 A framework directory is a directory with frameworks in it.  A
9944 framework is a directory with a @samp{"Headers"} and/or
9945 @samp{"PrivateHeaders"} directory contained directly in it that ends
9946 in @samp{".framework"}.  The name of a framework is the name of this
9947 directory excluding the @samp{".framework"}.  Headers associated with
9948 the framework are found in one of those two directories, with
9949 @samp{"Headers"} being searched first.  A subframework is a framework
9950 directory that is in a framework's @samp{"Frameworks"} directory.
9951 Includes of subframework headers can only appear in a header of a
9952 framework that contains the subframework, or in a sibling subframework
9953 header.  Two subframeworks are siblings if they occur in the same
9954 framework.  A subframework should not have the same name as a
9955 framework, a warning will be issued if this is violated.  Currently a
9956 subframework cannot have subframeworks, in the future, the mechanism
9957 may be extended to support this.  The standard frameworks can be found
9958 in @samp{"/System/Library/Frameworks"} and
9959 @samp{"/Library/Frameworks"}.  An example include looks like
9960 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
9961 the name of the framework and header.h is found in the
9962 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
9963
9964 @item -iframework@var{dir}
9965 @opindex iframework
9966 Like @option{-F} except the directory is a treated as a system
9967 directory.  The main difference between this @option{-iframework} and
9968 @option{-F} is that with @option{-iframework} the compiler does not
9969 warn about constructs contained within header files found via
9970 @var{dir}.  This option is valid only for the C family of languages.
9971
9972 @item -gused
9973 @opindex gused
9974 Emit debugging information for symbols that are used.  For STABS
9975 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
9976 This is by default ON@.
9977
9978 @item -gfull
9979 @opindex gfull
9980 Emit debugging information for all symbols and types.
9981
9982 @item -mmacosx-version-min=@var{version}
9983 The earliest version of MacOS X that this executable will run on
9984 is @var{version}.  Typical values of @var{version} include @code{10.1},
9985 @code{10.2}, and @code{10.3.9}.
9986
9987 If the compiler was built to use the system's headers by default,
9988 then the default for this option is the system version on which the
9989 compiler is running, otherwise the default is to make choices which
9990 are compatible with as many systems and code bases as possible.
9991
9992 @item -mkernel
9993 @opindex mkernel
9994 Enable kernel development mode.  The @option{-mkernel} option sets
9995 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
9996 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
9997 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
9998 applicable.  This mode also sets @option{-mno-altivec},
9999 @option{-msoft-float}, @option{-fno-builtin} and
10000 @option{-mlong-branch} for PowerPC targets.
10001
10002 @item -mone-byte-bool
10003 @opindex mone-byte-bool
10004 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
10005 By default @samp{sizeof(bool)} is @samp{4} when compiling for
10006 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
10007 option has no effect on x86.
10008
10009 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
10010 to generate code that is not binary compatible with code generated
10011 without that switch.  Using this switch may require recompiling all
10012 other modules in a program, including system libraries.  Use this
10013 switch to conform to a non-default data model.
10014
10015 @item -mfix-and-continue
10016 @itemx -ffix-and-continue
10017 @itemx -findirect-data
10018 @opindex mfix-and-continue
10019 @opindex ffix-and-continue
10020 @opindex findirect-data
10021 Generate code suitable for fast turn around development.  Needed to
10022 enable gdb to dynamically load @code{.o} files into already running
10023 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
10024 are provided for backwards compatibility.
10025
10026 @item -all_load
10027 @opindex all_load
10028 Loads all members of static archive libraries.
10029 See man ld(1) for more information.
10030
10031 @item -arch_errors_fatal
10032 @opindex arch_errors_fatal
10033 Cause the errors having to do with files that have the wrong architecture
10034 to be fatal.
10035
10036 @item -bind_at_load
10037 @opindex bind_at_load
10038 Causes the output file to be marked such that the dynamic linker will
10039 bind all undefined references when the file is loaded or launched.
10040
10041 @item -bundle
10042 @opindex bundle
10043 Produce a Mach-o bundle format file.
10044 See man ld(1) for more information.
10045
10046 @item -bundle_loader @var{executable}
10047 @opindex bundle_loader
10048 This option specifies the @var{executable} that will be loading the build
10049 output file being linked.  See man ld(1) for more information.
10050
10051 @item -dynamiclib
10052 @opindex dynamiclib
10053 When passed this option, GCC will produce a dynamic library instead of
10054 an executable when linking, using the Darwin @file{libtool} command.
10055
10056 @item -force_cpusubtype_ALL
10057 @opindex force_cpusubtype_ALL
10058 This causes GCC's output file to have the @var{ALL} subtype, instead of
10059 one controlled by the @option{-mcpu} or @option{-march} option.
10060
10061 @item -allowable_client  @var{client_name}
10062 @itemx -client_name
10063 @itemx -compatibility_version
10064 @itemx -current_version
10065 @itemx -dead_strip
10066 @itemx -dependency-file
10067 @itemx -dylib_file
10068 @itemx -dylinker_install_name
10069 @itemx -dynamic
10070 @itemx -exported_symbols_list
10071 @itemx -filelist
10072 @itemx -flat_namespace
10073 @itemx -force_flat_namespace
10074 @itemx -headerpad_max_install_names
10075 @itemx -image_base
10076 @itemx -init
10077 @itemx -install_name
10078 @itemx -keep_private_externs
10079 @itemx -multi_module
10080 @itemx -multiply_defined
10081 @itemx -multiply_defined_unused
10082 @itemx -noall_load
10083 @itemx -no_dead_strip_inits_and_terms
10084 @itemx -nofixprebinding
10085 @itemx -nomultidefs
10086 @itemx -noprebind
10087 @itemx -noseglinkedit
10088 @itemx -pagezero_size
10089 @itemx -prebind
10090 @itemx -prebind_all_twolevel_modules
10091 @itemx -private_bundle
10092 @itemx -read_only_relocs
10093 @itemx -sectalign
10094 @itemx -sectobjectsymbols
10095 @itemx -whyload
10096 @itemx -seg1addr
10097 @itemx -sectcreate
10098 @itemx -sectobjectsymbols
10099 @itemx -sectorder
10100 @itemx -segaddr
10101 @itemx -segs_read_only_addr
10102 @itemx -segs_read_write_addr
10103 @itemx -seg_addr_table
10104 @itemx -seg_addr_table_filename
10105 @itemx -seglinkedit
10106 @itemx -segprot
10107 @itemx -segs_read_only_addr
10108 @itemx -segs_read_write_addr
10109 @itemx -single_module
10110 @itemx -static
10111 @itemx -sub_library
10112 @itemx -sub_umbrella
10113 @itemx -twolevel_namespace
10114 @itemx -umbrella
10115 @itemx -undefined
10116 @itemx -unexported_symbols_list
10117 @itemx -weak_reference_mismatches
10118 @itemx -whatsloaded
10119 @opindex allowable_client
10120 @opindex client_name
10121 @opindex compatibility_version
10122 @opindex current_version
10123 @opindex dead_strip
10124 @opindex dependency-file
10125 @opindex dylib_file
10126 @opindex dylinker_install_name
10127 @opindex dynamic
10128 @opindex exported_symbols_list
10129 @opindex filelist
10130 @opindex flat_namespace
10131 @opindex force_flat_namespace
10132 @opindex headerpad_max_install_names
10133 @opindex image_base
10134 @opindex init
10135 @opindex install_name
10136 @opindex keep_private_externs
10137 @opindex multi_module
10138 @opindex multiply_defined
10139 @opindex multiply_defined_unused
10140 @opindex noall_load
10141 @opindex no_dead_strip_inits_and_terms
10142 @opindex nofixprebinding
10143 @opindex nomultidefs
10144 @opindex noprebind
10145 @opindex noseglinkedit
10146 @opindex pagezero_size
10147 @opindex prebind
10148 @opindex prebind_all_twolevel_modules
10149 @opindex private_bundle
10150 @opindex read_only_relocs
10151 @opindex sectalign
10152 @opindex sectobjectsymbols
10153 @opindex whyload
10154 @opindex seg1addr
10155 @opindex sectcreate
10156 @opindex sectobjectsymbols
10157 @opindex sectorder
10158 @opindex segaddr
10159 @opindex segs_read_only_addr
10160 @opindex segs_read_write_addr
10161 @opindex seg_addr_table
10162 @opindex seg_addr_table_filename
10163 @opindex seglinkedit
10164 @opindex segprot
10165 @opindex segs_read_only_addr
10166 @opindex segs_read_write_addr
10167 @opindex single_module
10168 @opindex static
10169 @opindex sub_library
10170 @opindex sub_umbrella
10171 @opindex twolevel_namespace
10172 @opindex umbrella
10173 @opindex undefined
10174 @opindex unexported_symbols_list
10175 @opindex weak_reference_mismatches
10176 @opindex whatsloaded
10177 These options are passed to the Darwin linker.  The Darwin linker man page
10178 describes them in detail.
10179 @end table
10180
10181 @node DEC Alpha Options
10182 @subsection DEC Alpha Options
10183
10184 These @samp{-m} options are defined for the DEC Alpha implementations:
10185
10186 @table @gcctabopt
10187 @item -mno-soft-float
10188 @itemx -msoft-float
10189 @opindex mno-soft-float
10190 @opindex msoft-float
10191 Use (do not use) the hardware floating-point instructions for
10192 floating-point operations.  When @option{-msoft-float} is specified,
10193 functions in @file{libgcc.a} will be used to perform floating-point
10194 operations.  Unless they are replaced by routines that emulate the
10195 floating-point operations, or compiled in such a way as to call such
10196 emulations routines, these routines will issue floating-point
10197 operations.   If you are compiling for an Alpha without floating-point
10198 operations, you must ensure that the library is built so as not to call
10199 them.
10200
10201 Note that Alpha implementations without floating-point operations are
10202 required to have floating-point registers.
10203
10204 @item -mfp-reg
10205 @itemx -mno-fp-regs
10206 @opindex mfp-reg
10207 @opindex mno-fp-regs
10208 Generate code that uses (does not use) the floating-point register set.
10209 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
10210 register set is not used, floating point operands are passed in integer
10211 registers as if they were integers and floating-point results are passed
10212 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
10213 so any function with a floating-point argument or return value called by code
10214 compiled with @option{-mno-fp-regs} must also be compiled with that
10215 option.
10216
10217 A typical use of this option is building a kernel that does not use,
10218 and hence need not save and restore, any floating-point registers.
10219
10220 @item -mieee
10221 @opindex mieee
10222 The Alpha architecture implements floating-point hardware optimized for
10223 maximum performance.  It is mostly compliant with the IEEE floating
10224 point standard.  However, for full compliance, software assistance is
10225 required.  This option generates code fully IEEE compliant code
10226 @emph{except} that the @var{inexact-flag} is not maintained (see below).
10227 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
10228 defined during compilation.  The resulting code is less efficient but is
10229 able to correctly support denormalized numbers and exceptional IEEE
10230 values such as not-a-number and plus/minus infinity.  Other Alpha
10231 compilers call this option @option{-ieee_with_no_inexact}.
10232
10233 @item -mieee-with-inexact
10234 @opindex mieee-with-inexact
10235 This is like @option{-mieee} except the generated code also maintains
10236 the IEEE @var{inexact-flag}.  Turning on this option causes the
10237 generated code to implement fully-compliant IEEE math.  In addition to
10238 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
10239 macro.  On some Alpha implementations the resulting code may execute
10240 significantly slower than the code generated by default.  Since there is
10241 very little code that depends on the @var{inexact-flag}, you should
10242 normally not specify this option.  Other Alpha compilers call this
10243 option @option{-ieee_with_inexact}.
10244
10245 @item -mfp-trap-mode=@var{trap-mode}
10246 @opindex mfp-trap-mode
10247 This option controls what floating-point related traps are enabled.
10248 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
10249 The trap mode can be set to one of four values:
10250
10251 @table @samp
10252 @item n
10253 This is the default (normal) setting.  The only traps that are enabled
10254 are the ones that cannot be disabled in software (e.g., division by zero
10255 trap).
10256
10257 @item u
10258 In addition to the traps enabled by @samp{n}, underflow traps are enabled
10259 as well.
10260
10261 @item su
10262 Like @samp{u}, but the instructions are marked to be safe for software
10263 completion (see Alpha architecture manual for details).
10264
10265 @item sui
10266 Like @samp{su}, but inexact traps are enabled as well.
10267 @end table
10268
10269 @item -mfp-rounding-mode=@var{rounding-mode}
10270 @opindex mfp-rounding-mode
10271 Selects the IEEE rounding mode.  Other Alpha compilers call this option
10272 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
10273 of:
10274
10275 @table @samp
10276 @item n
10277 Normal IEEE rounding mode.  Floating point numbers are rounded towards
10278 the nearest machine number or towards the even machine number in case
10279 of a tie.
10280
10281 @item m
10282 Round towards minus infinity.
10283
10284 @item c
10285 Chopped rounding mode.  Floating point numbers are rounded towards zero.
10286
10287 @item d
10288 Dynamic rounding mode.  A field in the floating point control register
10289 (@var{fpcr}, see Alpha architecture reference manual) controls the
10290 rounding mode in effect.  The C library initializes this register for
10291 rounding towards plus infinity.  Thus, unless your program modifies the
10292 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
10293 @end table
10294
10295 @item -mtrap-precision=@var{trap-precision}
10296 @opindex mtrap-precision
10297 In the Alpha architecture, floating point traps are imprecise.  This
10298 means without software assistance it is impossible to recover from a
10299 floating trap and program execution normally needs to be terminated.
10300 GCC can generate code that can assist operating system trap handlers
10301 in determining the exact location that caused a floating point trap.
10302 Depending on the requirements of an application, different levels of
10303 precisions can be selected:
10304
10305 @table @samp
10306 @item p
10307 Program precision.  This option is the default and means a trap handler
10308 can only identify which program caused a floating point exception.
10309
10310 @item f
10311 Function precision.  The trap handler can determine the function that
10312 caused a floating point exception.
10313
10314 @item i
10315 Instruction precision.  The trap handler can determine the exact
10316 instruction that caused a floating point exception.
10317 @end table
10318
10319 Other Alpha compilers provide the equivalent options called
10320 @option{-scope_safe} and @option{-resumption_safe}.
10321
10322 @item -mieee-conformant
10323 @opindex mieee-conformant
10324 This option marks the generated code as IEEE conformant.  You must not
10325 use this option unless you also specify @option{-mtrap-precision=i} and either
10326 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
10327 is to emit the line @samp{.eflag 48} in the function prologue of the
10328 generated assembly file.  Under DEC Unix, this has the effect that
10329 IEEE-conformant math library routines will be linked in.
10330
10331 @item -mbuild-constants
10332 @opindex mbuild-constants
10333 Normally GCC examines a 32- or 64-bit integer constant to
10334 see if it can construct it from smaller constants in two or three
10335 instructions.  If it cannot, it will output the constant as a literal and
10336 generate code to load it from the data segment at runtime.
10337
10338 Use this option to require GCC to construct @emph{all} integer constants
10339 using code, even if it takes more instructions (the maximum is six).
10340
10341 You would typically use this option to build a shared library dynamic
10342 loader.  Itself a shared library, it must relocate itself in memory
10343 before it can find the variables and constants in its own data segment.
10344
10345 @item -malpha-as
10346 @itemx -mgas
10347 @opindex malpha-as
10348 @opindex mgas
10349 Select whether to generate code to be assembled by the vendor-supplied
10350 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
10351
10352 @item -mbwx
10353 @itemx -mno-bwx
10354 @itemx -mcix
10355 @itemx -mno-cix
10356 @itemx -mfix
10357 @itemx -mno-fix
10358 @itemx -mmax
10359 @itemx -mno-max
10360 @opindex mbwx
10361 @opindex mno-bwx
10362 @opindex mcix
10363 @opindex mno-cix
10364 @opindex mfix
10365 @opindex mno-fix
10366 @opindex mmax
10367 @opindex mno-max
10368 Indicate whether GCC should generate code to use the optional BWX,
10369 CIX, FIX and MAX instruction sets.  The default is to use the instruction
10370 sets supported by the CPU type specified via @option{-mcpu=} option or that
10371 of the CPU on which GCC was built if none was specified.
10372
10373 @item -mfloat-vax
10374 @itemx -mfloat-ieee
10375 @opindex mfloat-vax
10376 @opindex mfloat-ieee
10377 Generate code that uses (does not use) VAX F and G floating point
10378 arithmetic instead of IEEE single and double precision.
10379
10380 @item -mexplicit-relocs
10381 @itemx -mno-explicit-relocs
10382 @opindex mexplicit-relocs
10383 @opindex mno-explicit-relocs
10384 Older Alpha assemblers provided no way to generate symbol relocations
10385 except via assembler macros.  Use of these macros does not allow
10386 optimal instruction scheduling.  GNU binutils as of version 2.12
10387 supports a new syntax that allows the compiler to explicitly mark
10388 which relocations should apply to which instructions.  This option
10389 is mostly useful for debugging, as GCC detects the capabilities of
10390 the assembler when it is built and sets the default accordingly.
10391
10392 @item -msmall-data
10393 @itemx -mlarge-data
10394 @opindex msmall-data
10395 @opindex mlarge-data
10396 When @option{-mexplicit-relocs} is in effect, static data is
10397 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
10398 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
10399 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
10400 16-bit relocations off of the @code{$gp} register.  This limits the
10401 size of the small data area to 64KB, but allows the variables to be
10402 directly accessed via a single instruction.
10403
10404 The default is @option{-mlarge-data}.  With this option the data area
10405 is limited to just below 2GB@.  Programs that require more than 2GB of
10406 data must use @code{malloc} or @code{mmap} to allocate the data in the
10407 heap instead of in the program's data segment.
10408
10409 When generating code for shared libraries, @option{-fpic} implies
10410 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
10411
10412 @item -msmall-text
10413 @itemx -mlarge-text
10414 @opindex msmall-text
10415 @opindex mlarge-text
10416 When @option{-msmall-text} is used, the compiler assumes that the
10417 code of the entire program (or shared library) fits in 4MB, and is
10418 thus reachable with a branch instruction.  When @option{-msmall-data}
10419 is used, the compiler can assume that all local symbols share the
10420 same @code{$gp} value, and thus reduce the number of instructions
10421 required for a function call from 4 to 1.
10422
10423 The default is @option{-mlarge-text}.
10424
10425 @item -mcpu=@var{cpu_type}
10426 @opindex mcpu
10427 Set the instruction set and instruction scheduling parameters for
10428 machine type @var{cpu_type}.  You can specify either the @samp{EV}
10429 style name or the corresponding chip number.  GCC supports scheduling
10430 parameters for the EV4, EV5 and EV6 family of processors and will
10431 choose the default values for the instruction set from the processor
10432 you specify.  If you do not specify a processor type, GCC will default
10433 to the processor on which the compiler was built.
10434
10435 Supported values for @var{cpu_type} are
10436
10437 @table @samp
10438 @item ev4
10439 @itemx ev45
10440 @itemx 21064
10441 Schedules as an EV4 and has no instruction set extensions.
10442
10443 @item ev5
10444 @itemx 21164
10445 Schedules as an EV5 and has no instruction set extensions.
10446
10447 @item ev56
10448 @itemx 21164a
10449 Schedules as an EV5 and supports the BWX extension.
10450
10451 @item pca56
10452 @itemx 21164pc
10453 @itemx 21164PC
10454 Schedules as an EV5 and supports the BWX and MAX extensions.
10455
10456 @item ev6
10457 @itemx 21264
10458 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
10459
10460 @item ev67
10461 @itemx 21264a
10462 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
10463 @end table
10464
10465 Native Linux/GNU toolchains also support the value @samp{native},
10466 which selects the best architecture option for the host processor.
10467 @option{-mcpu=native} has no effect if GCC does not recognize
10468 the processor.
10469
10470 @item -mtune=@var{cpu_type}
10471 @opindex mtune
10472 Set only the instruction scheduling parameters for machine type
10473 @var{cpu_type}.  The instruction set is not changed.
10474
10475 Native Linux/GNU toolchains also support the value @samp{native},
10476 which selects the best architecture option for the host processor.
10477 @option{-mtune=native} has no effect if GCC does not recognize
10478 the processor.
10479
10480 @item -mmemory-latency=@var{time}
10481 @opindex mmemory-latency
10482 Sets the latency the scheduler should assume for typical memory
10483 references as seen by the application.  This number is highly
10484 dependent on the memory access patterns used by the application
10485 and the size of the external cache on the machine.
10486
10487 Valid options for @var{time} are
10488
10489 @table @samp
10490 @item @var{number}
10491 A decimal number representing clock cycles.
10492
10493 @item L1
10494 @itemx L2
10495 @itemx L3
10496 @itemx main
10497 The compiler contains estimates of the number of clock cycles for
10498 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
10499 (also called Dcache, Scache, and Bcache), as well as to main memory.
10500 Note that L3 is only valid for EV5.
10501
10502 @end table
10503 @end table
10504
10505 @node DEC Alpha/VMS Options
10506 @subsection DEC Alpha/VMS Options
10507
10508 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
10509
10510 @table @gcctabopt
10511 @item -mvms-return-codes
10512 @opindex mvms-return-codes
10513 Return VMS condition codes from main.  The default is to return POSIX
10514 style condition (e.g.@: error) codes.
10515 @end table
10516
10517 @node FR30 Options
10518 @subsection FR30 Options
10519 @cindex FR30 Options
10520
10521 These options are defined specifically for the FR30 port.
10522
10523 @table @gcctabopt
10524
10525 @item -msmall-model
10526 @opindex msmall-model
10527 Use the small address space model.  This can produce smaller code, but
10528 it does assume that all symbolic values and addresses will fit into a
10529 20-bit range.
10530
10531 @item -mno-lsim
10532 @opindex mno-lsim
10533 Assume that run-time support has been provided and so there is no need
10534 to include the simulator library (@file{libsim.a}) on the linker
10535 command line.
10536
10537 @end table
10538
10539 @node FRV Options
10540 @subsection FRV Options
10541 @cindex FRV Options
10542
10543 @table @gcctabopt
10544 @item -mgpr-32
10545 @opindex mgpr-32
10546
10547 Only use the first 32 general purpose registers.
10548
10549 @item -mgpr-64
10550 @opindex mgpr-64
10551
10552 Use all 64 general purpose registers.
10553
10554 @item -mfpr-32
10555 @opindex mfpr-32
10556
10557 Use only the first 32 floating point registers.
10558
10559 @item -mfpr-64
10560 @opindex mfpr-64
10561
10562 Use all 64 floating point registers
10563
10564 @item -mhard-float
10565 @opindex mhard-float
10566
10567 Use hardware instructions for floating point operations.
10568
10569 @item -msoft-float
10570 @opindex msoft-float
10571
10572 Use library routines for floating point operations.
10573
10574 @item -malloc-cc
10575 @opindex malloc-cc
10576
10577 Dynamically allocate condition code registers.
10578
10579 @item -mfixed-cc
10580 @opindex mfixed-cc
10581
10582 Do not try to dynamically allocate condition code registers, only
10583 use @code{icc0} and @code{fcc0}.
10584
10585 @item -mdword
10586 @opindex mdword
10587
10588 Change ABI to use double word insns.
10589
10590 @item -mno-dword
10591 @opindex mno-dword
10592
10593 Do not use double word instructions.
10594
10595 @item -mdouble
10596 @opindex mdouble
10597
10598 Use floating point double instructions.
10599
10600 @item -mno-double
10601 @opindex mno-double
10602
10603 Do not use floating point double instructions.
10604
10605 @item -mmedia
10606 @opindex mmedia
10607
10608 Use media instructions.
10609
10610 @item -mno-media
10611 @opindex mno-media
10612
10613 Do not use media instructions.
10614
10615 @item -mmuladd
10616 @opindex mmuladd
10617
10618 Use multiply and add/subtract instructions.
10619
10620 @item -mno-muladd
10621 @opindex mno-muladd
10622
10623 Do not use multiply and add/subtract instructions.
10624
10625 @item -mfdpic
10626 @opindex mfdpic
10627
10628 Select the FDPIC ABI, that uses function descriptors to represent
10629 pointers to functions.  Without any PIC/PIE-related options, it
10630 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
10631 assumes GOT entries and small data are within a 12-bit range from the
10632 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
10633 are computed with 32 bits.
10634 With a @samp{bfin-elf} target, this option implies @option{-msim}.
10635
10636 @item -minline-plt
10637 @opindex minline-plt
10638
10639 Enable inlining of PLT entries in function calls to functions that are
10640 not known to bind locally.  It has no effect without @option{-mfdpic}.
10641 It's enabled by default if optimizing for speed and compiling for
10642 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
10643 optimization option such as @option{-O3} or above is present in the
10644 command line.
10645
10646 @item -mTLS
10647 @opindex mTLS
10648
10649 Assume a large TLS segment when generating thread-local code.
10650
10651 @item -mtls
10652 @opindex mtls
10653
10654 Do not assume a large TLS segment when generating thread-local code.
10655
10656 @item -mgprel-ro
10657 @opindex mgprel-ro
10658
10659 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
10660 that is known to be in read-only sections.  It's enabled by default,
10661 except for @option{-fpic} or @option{-fpie}: even though it may help
10662 make the global offset table smaller, it trades 1 instruction for 4.
10663 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
10664 one of which may be shared by multiple symbols, and it avoids the need
10665 for a GOT entry for the referenced symbol, so it's more likely to be a
10666 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
10667
10668 @item -multilib-library-pic
10669 @opindex multilib-library-pic
10670
10671 Link with the (library, not FD) pic libraries.  It's implied by
10672 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
10673 @option{-fpic} without @option{-mfdpic}.  You should never have to use
10674 it explicitly.
10675
10676 @item -mlinked-fp
10677 @opindex mlinked-fp
10678
10679 Follow the EABI requirement of always creating a frame pointer whenever
10680 a stack frame is allocated.  This option is enabled by default and can
10681 be disabled with @option{-mno-linked-fp}.
10682
10683 @item -mlong-calls
10684 @opindex mlong-calls
10685
10686 Use indirect addressing to call functions outside the current
10687 compilation unit.  This allows the functions to be placed anywhere
10688 within the 32-bit address space.
10689
10690 @item -malign-labels
10691 @opindex malign-labels
10692
10693 Try to align labels to an 8-byte boundary by inserting nops into the
10694 previous packet.  This option only has an effect when VLIW packing
10695 is enabled.  It doesn't create new packets; it merely adds nops to
10696 existing ones.
10697
10698 @item -mlibrary-pic
10699 @opindex mlibrary-pic
10700
10701 Generate position-independent EABI code.
10702
10703 @item -macc-4
10704 @opindex macc-4
10705
10706 Use only the first four media accumulator registers.
10707
10708 @item -macc-8
10709 @opindex macc-8
10710
10711 Use all eight media accumulator registers.
10712
10713 @item -mpack
10714 @opindex mpack
10715
10716 Pack VLIW instructions.
10717
10718 @item -mno-pack
10719 @opindex mno-pack
10720
10721 Do not pack VLIW instructions.
10722
10723 @item -mno-eflags
10724 @opindex mno-eflags
10725
10726 Do not mark ABI switches in e_flags.
10727
10728 @item -mcond-move
10729 @opindex mcond-move
10730
10731 Enable the use of conditional-move instructions (default).
10732
10733 This switch is mainly for debugging the compiler and will likely be removed
10734 in a future version.
10735
10736 @item -mno-cond-move
10737 @opindex mno-cond-move
10738
10739 Disable the use of conditional-move instructions.
10740
10741 This switch is mainly for debugging the compiler and will likely be removed
10742 in a future version.
10743
10744 @item -mscc
10745 @opindex mscc
10746
10747 Enable the use of conditional set instructions (default).
10748
10749 This switch is mainly for debugging the compiler and will likely be removed
10750 in a future version.
10751
10752 @item -mno-scc
10753 @opindex mno-scc
10754
10755 Disable the use of conditional set instructions.
10756
10757 This switch is mainly for debugging the compiler and will likely be removed
10758 in a future version.
10759
10760 @item -mcond-exec
10761 @opindex mcond-exec
10762
10763 Enable the use of conditional execution (default).
10764
10765 This switch is mainly for debugging the compiler and will likely be removed
10766 in a future version.
10767
10768 @item -mno-cond-exec
10769 @opindex mno-cond-exec
10770
10771 Disable the use of conditional execution.
10772
10773 This switch is mainly for debugging the compiler and will likely be removed
10774 in a future version.
10775
10776 @item -mvliw-branch
10777 @opindex mvliw-branch
10778
10779 Run a pass to pack branches into VLIW instructions (default).
10780
10781 This switch is mainly for debugging the compiler and will likely be removed
10782 in a future version.
10783
10784 @item -mno-vliw-branch
10785 @opindex mno-vliw-branch
10786
10787 Do not run a pass to pack branches into VLIW instructions.
10788
10789 This switch is mainly for debugging the compiler and will likely be removed
10790 in a future version.
10791
10792 @item -mmulti-cond-exec
10793 @opindex mmulti-cond-exec
10794
10795 Enable optimization of @code{&&} and @code{||} in conditional execution
10796 (default).
10797
10798 This switch is mainly for debugging the compiler and will likely be removed
10799 in a future version.
10800
10801 @item -mno-multi-cond-exec
10802 @opindex mno-multi-cond-exec
10803
10804 Disable optimization of @code{&&} and @code{||} in conditional execution.
10805
10806 This switch is mainly for debugging the compiler and will likely be removed
10807 in a future version.
10808
10809 @item -mnested-cond-exec
10810 @opindex mnested-cond-exec
10811
10812 Enable nested conditional execution optimizations (default).
10813
10814 This switch is mainly for debugging the compiler and will likely be removed
10815 in a future version.
10816
10817 @item -mno-nested-cond-exec
10818 @opindex mno-nested-cond-exec
10819
10820 Disable nested conditional execution optimizations.
10821
10822 This switch is mainly for debugging the compiler and will likely be removed
10823 in a future version.
10824
10825 @item -moptimize-membar
10826 @opindex moptimize-membar
10827
10828 This switch removes redundant @code{membar} instructions from the
10829 compiler generated code.  It is enabled by default.
10830
10831 @item -mno-optimize-membar
10832 @opindex mno-optimize-membar
10833
10834 This switch disables the automatic removal of redundant @code{membar}
10835 instructions from the generated code.
10836
10837 @item -mtomcat-stats
10838 @opindex mtomcat-stats
10839
10840 Cause gas to print out tomcat statistics.
10841
10842 @item -mcpu=@var{cpu}
10843 @opindex mcpu
10844
10845 Select the processor type for which to generate code.  Possible values are
10846 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
10847 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
10848
10849 @end table
10850
10851 @node GNU/Linux Options
10852 @subsection GNU/Linux Options
10853
10854 These @samp{-m} options are defined for GNU/Linux targets:
10855
10856 @table @gcctabopt
10857 @item -mglibc
10858 @opindex mglibc
10859 Use the GNU C library instead of uClibc.  This is the default except
10860 on @samp{*-*-linux-*uclibc*} targets.
10861
10862 @item -muclibc
10863 @opindex muclibc
10864 Use uClibc instead of the GNU C library.  This is the default on
10865 @samp{*-*-linux-*uclibc*} targets.
10866 @end table
10867
10868 @node H8/300 Options
10869 @subsection H8/300 Options
10870
10871 These @samp{-m} options are defined for the H8/300 implementations:
10872
10873 @table @gcctabopt
10874 @item -mrelax
10875 @opindex mrelax
10876 Shorten some address references at link time, when possible; uses the
10877 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
10878 ld, Using ld}, for a fuller description.
10879
10880 @item -mh
10881 @opindex mh
10882 Generate code for the H8/300H@.
10883
10884 @item -ms
10885 @opindex ms
10886 Generate code for the H8S@.
10887
10888 @item -mn
10889 @opindex mn
10890 Generate code for the H8S and H8/300H in the normal mode.  This switch
10891 must be used either with @option{-mh} or @option{-ms}.
10892
10893 @item -ms2600
10894 @opindex ms2600
10895 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
10896
10897 @item -mint32
10898 @opindex mint32
10899 Make @code{int} data 32 bits by default.
10900
10901 @item -malign-300
10902 @opindex malign-300
10903 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
10904 The default for the H8/300H and H8S is to align longs and floats on 4
10905 byte boundaries.
10906 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
10907 This option has no effect on the H8/300.
10908 @end table
10909
10910 @node HPPA Options
10911 @subsection HPPA Options
10912 @cindex HPPA Options
10913
10914 These @samp{-m} options are defined for the HPPA family of computers:
10915
10916 @table @gcctabopt
10917 @item -march=@var{architecture-type}
10918 @opindex march
10919 Generate code for the specified architecture.  The choices for
10920 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
10921 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
10922 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
10923 architecture option for your machine.  Code compiled for lower numbered
10924 architectures will run on higher numbered architectures, but not the
10925 other way around.
10926
10927 @item -mpa-risc-1-0
10928 @itemx -mpa-risc-1-1
10929 @itemx -mpa-risc-2-0
10930 @opindex mpa-risc-1-0
10931 @opindex mpa-risc-1-1
10932 @opindex mpa-risc-2-0
10933 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
10934
10935 @item -mbig-switch
10936 @opindex mbig-switch
10937 Generate code suitable for big switch tables.  Use this option only if
10938 the assembler/linker complain about out of range branches within a switch
10939 table.
10940
10941 @item -mjump-in-delay
10942 @opindex mjump-in-delay
10943 Fill delay slots of function calls with unconditional jump instructions
10944 by modifying the return pointer for the function call to be the target
10945 of the conditional jump.
10946
10947 @item -mdisable-fpregs
10948 @opindex mdisable-fpregs
10949 Prevent floating point registers from being used in any manner.  This is
10950 necessary for compiling kernels which perform lazy context switching of
10951 floating point registers.  If you use this option and attempt to perform
10952 floating point operations, the compiler will abort.
10953
10954 @item -mdisable-indexing
10955 @opindex mdisable-indexing
10956 Prevent the compiler from using indexing address modes.  This avoids some
10957 rather obscure problems when compiling MIG generated code under MACH@.
10958
10959 @item -mno-space-regs
10960 @opindex mno-space-regs
10961 Generate code that assumes the target has no space registers.  This allows
10962 GCC to generate faster indirect calls and use unscaled index address modes.
10963
10964 Such code is suitable for level 0 PA systems and kernels.
10965
10966 @item -mfast-indirect-calls
10967 @opindex mfast-indirect-calls
10968 Generate code that assumes calls never cross space boundaries.  This
10969 allows GCC to emit code which performs faster indirect calls.
10970
10971 This option will not work in the presence of shared libraries or nested
10972 functions.
10973
10974 @item -mfixed-range=@var{register-range}
10975 @opindex mfixed-range
10976 Generate code treating the given register range as fixed registers.
10977 A fixed register is one that the register allocator can not use.  This is
10978 useful when compiling kernel code.  A register range is specified as
10979 two registers separated by a dash.  Multiple register ranges can be
10980 specified separated by a comma.
10981
10982 @item -mlong-load-store
10983 @opindex mlong-load-store
10984 Generate 3-instruction load and store sequences as sometimes required by
10985 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
10986 the HP compilers.
10987
10988 @item -mportable-runtime
10989 @opindex mportable-runtime
10990 Use the portable calling conventions proposed by HP for ELF systems.
10991
10992 @item -mgas
10993 @opindex mgas
10994 Enable the use of assembler directives only GAS understands.
10995
10996 @item -mschedule=@var{cpu-type}
10997 @opindex mschedule
10998 Schedule code according to the constraints for the machine type
10999 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
11000 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
11001 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
11002 proper scheduling option for your machine.  The default scheduling is
11003 @samp{8000}.
11004
11005 @item -mlinker-opt
11006 @opindex mlinker-opt
11007 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
11008 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
11009 linkers in which they give bogus error messages when linking some programs.
11010
11011 @item -msoft-float
11012 @opindex msoft-float
11013 Generate output containing library calls for floating point.
11014 @strong{Warning:} the requisite libraries are not available for all HPPA
11015 targets.  Normally the facilities of the machine's usual C compiler are
11016 used, but this cannot be done directly in cross-compilation.  You must make
11017 your own arrangements to provide suitable library functions for
11018 cross-compilation.
11019
11020 @option{-msoft-float} changes the calling convention in the output file;
11021 therefore, it is only useful if you compile @emph{all} of a program with
11022 this option.  In particular, you need to compile @file{libgcc.a}, the
11023 library that comes with GCC, with @option{-msoft-float} in order for
11024 this to work.
11025
11026 @item -msio
11027 @opindex msio
11028 Generate the predefine, @code{_SIO}, for server IO@.  The default is
11029 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
11030 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
11031 options are available under HP-UX and HI-UX@.
11032
11033 @item -mgnu-ld
11034 @opindex mgnu-ld
11035 Use GNU ld specific options.  This passes @option{-shared} to ld when
11036 building a shared library.  It is the default when GCC is configured,
11037 explicitly or implicitly, with the GNU linker.  This option does not
11038 have any affect on which ld is called, it only changes what parameters
11039 are passed to that ld.  The ld that is called is determined by the
11040 @option{--with-ld} configure option, GCC's program search path, and
11041 finally by the user's @env{PATH}.  The linker used by GCC can be printed
11042 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
11043 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11044
11045 @item -mhp-ld
11046 @opindex mhp-ld
11047 Use HP ld specific options.  This passes @option{-b} to ld when building
11048 a shared library and passes @option{+Accept TypeMismatch} to ld on all
11049 links.  It is the default when GCC is configured, explicitly or
11050 implicitly, with the HP linker.  This option does not have any affect on
11051 which ld is called, it only changes what parameters are passed to that
11052 ld.  The ld that is called is determined by the @option{--with-ld}
11053 configure option, GCC's program search path, and finally by the user's
11054 @env{PATH}.  The linker used by GCC can be printed using @samp{which
11055 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
11056 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
11057
11058 @item -mlong-calls
11059 @opindex mno-long-calls
11060 Generate code that uses long call sequences.  This ensures that a call
11061 is always able to reach linker generated stubs.  The default is to generate
11062 long calls only when the distance from the call site to the beginning
11063 of the function or translation unit, as the case may be, exceeds a
11064 predefined limit set by the branch type being used.  The limits for
11065 normal calls are 7,600,000 and 240,000 bytes, respectively for the
11066 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
11067 240,000 bytes.
11068
11069 Distances are measured from the beginning of functions when using the
11070 @option{-ffunction-sections} option, or when using the @option{-mgas}
11071 and @option{-mno-portable-runtime} options together under HP-UX with
11072 the SOM linker.
11073
11074 It is normally not desirable to use this option as it will degrade
11075 performance.  However, it may be useful in large applications,
11076 particularly when partial linking is used to build the application.
11077
11078 The types of long calls used depends on the capabilities of the
11079 assembler and linker, and the type of code being generated.  The
11080 impact on systems that support long absolute calls, and long pic
11081 symbol-difference or pc-relative calls should be relatively small.
11082 However, an indirect call is used on 32-bit ELF systems in pic code
11083 and it is quite long.
11084
11085 @item -munix=@var{unix-std}
11086 @opindex march
11087 Generate compiler predefines and select a startfile for the specified
11088 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
11089 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
11090 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
11091 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
11092 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
11093 and later.
11094
11095 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
11096 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
11097 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
11098 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
11099 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
11100 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
11101
11102 It is @emph{important} to note that this option changes the interfaces
11103 for various library routines.  It also affects the operational behavior
11104 of the C library.  Thus, @emph{extreme} care is needed in using this
11105 option.
11106
11107 Library code that is intended to operate with more than one UNIX
11108 standard must test, set and restore the variable @var{__xpg4_extended_mask}
11109 as appropriate.  Most GNU software doesn't provide this capability.
11110
11111 @item -nolibdld
11112 @opindex nolibdld
11113 Suppress the generation of link options to search libdld.sl when the
11114 @option{-static} option is specified on HP-UX 10 and later.
11115
11116 @item -static
11117 @opindex static
11118 The HP-UX implementation of setlocale in libc has a dependency on
11119 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
11120 when the @option{-static} option is specified, special link options
11121 are needed to resolve this dependency.
11122
11123 On HP-UX 10 and later, the GCC driver adds the necessary options to
11124 link with libdld.sl when the @option{-static} option is specified.
11125 This causes the resulting binary to be dynamic.  On the 64-bit port,
11126 the linkers generate dynamic binaries by default in any case.  The
11127 @option{-nolibdld} option can be used to prevent the GCC driver from
11128 adding these link options.
11129
11130 @item -threads
11131 @opindex threads
11132 Add support for multithreading with the @dfn{dce thread} library
11133 under HP-UX@.  This option sets flags for both the preprocessor and
11134 linker.
11135 @end table
11136
11137 @node i386 and x86-64 Options
11138 @subsection Intel 386 and AMD x86-64 Options
11139 @cindex i386 Options
11140 @cindex x86-64 Options
11141 @cindex Intel 386 Options
11142 @cindex AMD x86-64 Options
11143
11144 These @samp{-m} options are defined for the i386 and x86-64 family of
11145 computers:
11146
11147 @table @gcctabopt
11148 @item -mtune=@var{cpu-type}
11149 @opindex mtune
11150 Tune to @var{cpu-type} everything applicable about the generated code, except
11151 for the ABI and the set of available instructions.  The choices for
11152 @var{cpu-type} are:
11153 @table @emph
11154 @item generic
11155 Produce code optimized for the most common IA32/AMD64/EM64T processors.
11156 If you know the CPU on which your code will run, then you should use
11157 the corresponding @option{-mtune} option instead of
11158 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
11159 of your application will have, then you should use this option.
11160
11161 As new processors are deployed in the marketplace, the behavior of this
11162 option will change.  Therefore, if you upgrade to a newer version of
11163 GCC, the code generated option will change to reflect the processors
11164 that were most common when that version of GCC was released.
11165
11166 There is no @option{-march=generic} option because @option{-march}
11167 indicates the instruction set the compiler can use, and there is no
11168 generic instruction set applicable to all processors.  In contrast,
11169 @option{-mtune} indicates the processor (or, in this case, collection of
11170 processors) for which the code is optimized.
11171 @item native
11172 This selects the CPU to tune for at compilation time by determining
11173 the processor type of the compiling machine.  Using @option{-mtune=native}
11174 will produce code optimized for the local machine under the constraints
11175 of the selected instruction set.  Using @option{-march=native} will
11176 enable all instruction subsets supported by the local machine (hence
11177 the result might not run on different machines).
11178 @item i386
11179 Original Intel's i386 CPU@.
11180 @item i486
11181 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
11182 @item i586, pentium
11183 Intel Pentium CPU with no MMX support.
11184 @item pentium-mmx
11185 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
11186 @item pentiumpro
11187 Intel PentiumPro CPU@.
11188 @item i686
11189 Same as @code{generic}, but when used as @code{march} option, PentiumPro
11190 instruction set will be used, so the code will run on all i686 family chips.
11191 @item pentium2
11192 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
11193 @item pentium3, pentium3m
11194 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
11195 support.
11196 @item pentium-m
11197 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
11198 support.  Used by Centrino notebooks.
11199 @item pentium4, pentium4m
11200 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
11201 @item prescott
11202 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
11203 set support.
11204 @item nocona
11205 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
11206 SSE2 and SSE3 instruction set support.
11207 @item core2
11208 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
11209 instruction set support.
11210 @item atom
11211 Intel Atom CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
11212 instruction set support.
11213 @item k6
11214 AMD K6 CPU with MMX instruction set support.
11215 @item k6-2, k6-3
11216 Improved versions of AMD K6 CPU with MMX and 3dNOW!@: instruction set support.
11217 @item athlon, athlon-tbird
11218 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and SSE prefetch instructions
11219 support.
11220 @item athlon-4, athlon-xp, athlon-mp
11221 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and full SSE
11222 instruction set support.
11223 @item k8, opteron, athlon64, athlon-fx
11224 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
11225 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW!@: and 64-bit instruction set extensions.)
11226 @item k8-sse3, opteron-sse3, athlon64-sse3
11227 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
11228 @item amdfam10, barcelona
11229 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
11230 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
11231 instruction set extensions.)
11232 @item winchip-c6
11233 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
11234 set support.
11235 @item winchip2
11236 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!@:
11237 instruction set support.
11238 @item c3
11239 Via C3 CPU with MMX and 3dNOW!@: instruction set support.  (No scheduling is
11240 implemented for this chip.)
11241 @item c3-2
11242 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
11243 implemented for this chip.)
11244 @item geode
11245 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
11246 @end table
11247
11248 While picking a specific @var{cpu-type} will schedule things appropriately
11249 for that particular chip, the compiler will not generate any code that
11250 does not run on the i386 without the @option{-march=@var{cpu-type}} option
11251 being used.
11252
11253 @item -march=@var{cpu-type}
11254 @opindex march
11255 Generate instructions for the machine type @var{cpu-type}.  The choices
11256 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
11257 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
11258
11259 @item -mcpu=@var{cpu-type}
11260 @opindex mcpu
11261 A deprecated synonym for @option{-mtune}.
11262
11263 @item -mfpmath=@var{unit}
11264 @opindex mfpmath
11265 Generate floating point arithmetics for selected unit @var{unit}.  The choices
11266 for @var{unit} are:
11267
11268 @table @samp
11269 @item 387
11270 Use the standard 387 floating point coprocessor present majority of chips and
11271 emulated otherwise.  Code compiled with this option will run almost everywhere.
11272 The temporary results are computed in 80bit precision instead of precision
11273 specified by the type resulting in slightly different results compared to most
11274 of other chips.  See @option{-ffloat-store} for more detailed description.
11275
11276 This is the default choice for i386 compiler.
11277
11278 @item sse
11279 Use scalar floating point instructions present in the SSE instruction set.
11280 This instruction set is supported by Pentium3 and newer chips, in the AMD line
11281 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
11282 instruction set supports only single precision arithmetics, thus the double and
11283 extended precision arithmetics is still done using 387.  Later version, present
11284 only in Pentium4 and the future AMD x86-64 chips supports double precision
11285 arithmetics too.
11286
11287 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
11288 or @option{-msse2} switches to enable SSE extensions and make this option
11289 effective.  For the x86-64 compiler, these extensions are enabled by default.
11290
11291 The resulting code should be considerably faster in the majority of cases and avoid
11292 the numerical instability problems of 387 code, but may break some existing
11293 code that expects temporaries to be 80bit.
11294
11295 This is the default choice for the x86-64 compiler.
11296
11297 @item sse,387
11298 @itemx sse+387
11299 @itemx both
11300 Attempt to utilize both instruction sets at once.  This effectively double the
11301 amount of available registers and on chips with separate execution units for
11302 387 and SSE the execution resources too.  Use this option with care, as it is
11303 still experimental, because the GCC register allocator does not model separate
11304 functional units well resulting in instable performance.
11305 @end table
11306
11307 @item -masm=@var{dialect}
11308 @opindex masm=@var{dialect}
11309 Output asm instructions using selected @var{dialect}.  Supported
11310 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
11311 not support @samp{intel}.
11312
11313 @item -mieee-fp
11314 @itemx -mno-ieee-fp
11315 @opindex mieee-fp
11316 @opindex mno-ieee-fp
11317 Control whether or not the compiler uses IEEE floating point
11318 comparisons.  These handle correctly the case where the result of a
11319 comparison is unordered.
11320
11321 @item -msoft-float
11322 @opindex msoft-float
11323 Generate output containing library calls for floating point.
11324 @strong{Warning:} the requisite libraries are not part of GCC@.
11325 Normally the facilities of the machine's usual C compiler are used, but
11326 this can't be done directly in cross-compilation.  You must make your
11327 own arrangements to provide suitable library functions for
11328 cross-compilation.
11329
11330 On machines where a function returns floating point results in the 80387
11331 register stack, some floating point opcodes may be emitted even if
11332 @option{-msoft-float} is used.
11333
11334 @item -mno-fp-ret-in-387
11335 @opindex mno-fp-ret-in-387
11336 Do not use the FPU registers for return values of functions.
11337
11338 The usual calling convention has functions return values of types
11339 @code{float} and @code{double} in an FPU register, even if there
11340 is no FPU@.  The idea is that the operating system should emulate
11341 an FPU@.
11342
11343 The option @option{-mno-fp-ret-in-387} causes such values to be returned
11344 in ordinary CPU registers instead.
11345
11346 @item -mno-fancy-math-387
11347 @opindex mno-fancy-math-387
11348 Some 387 emulators do not support the @code{sin}, @code{cos} and
11349 @code{sqrt} instructions for the 387.  Specify this option to avoid
11350 generating those instructions.  This option is the default on FreeBSD,
11351 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
11352 indicates that the target cpu will always have an FPU and so the
11353 instruction will not need emulation.  As of revision 2.6.1, these
11354 instructions are not generated unless you also use the
11355 @option{-funsafe-math-optimizations} switch.
11356
11357 @item -malign-double
11358 @itemx -mno-align-double
11359 @opindex malign-double
11360 @opindex mno-align-double
11361 Control whether GCC aligns @code{double}, @code{long double}, and
11362 @code{long long} variables on a two word boundary or a one word
11363 boundary.  Aligning @code{double} variables on a two word boundary will
11364 produce code that runs somewhat faster on a @samp{Pentium} at the
11365 expense of more memory.
11366
11367 On x86-64, @option{-malign-double} is enabled by default.
11368
11369 @strong{Warning:} if you use the @option{-malign-double} switch,
11370 structures containing the above types will be aligned differently than
11371 the published application binary interface specifications for the 386
11372 and will not be binary compatible with structures in code compiled
11373 without that switch.
11374
11375 @item -m96bit-long-double
11376 @itemx -m128bit-long-double
11377 @opindex m96bit-long-double
11378 @opindex m128bit-long-double
11379 These switches control the size of @code{long double} type.  The i386
11380 application binary interface specifies the size to be 96 bits,
11381 so @option{-m96bit-long-double} is the default in 32 bit mode.
11382
11383 Modern architectures (Pentium and newer) would prefer @code{long double}
11384 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
11385 conforming to the ABI, this would not be possible.  So specifying a
11386 @option{-m128bit-long-double} will align @code{long double}
11387 to a 16 byte boundary by padding the @code{long double} with an additional
11388 32 bit zero.
11389
11390 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
11391 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
11392
11393 Notice that neither of these options enable any extra precision over the x87
11394 standard of 80 bits for a @code{long double}.
11395
11396 @strong{Warning:} if you override the default value for your target ABI, the
11397 structures and arrays containing @code{long double} variables will change
11398 their size as well as function calling convention for function taking
11399 @code{long double} will be modified.  Hence they will not be binary
11400 compatible with arrays or structures in code compiled without that switch.
11401
11402 @item -mlarge-data-threshold=@var{number}
11403 @opindex mlarge-data-threshold=@var{number}
11404 When @option{-mcmodel=medium} is specified, the data greater than
11405 @var{threshold} are placed in large data section.  This value must be the
11406 same across all object linked into the binary and defaults to 65535.
11407
11408 @item -mrtd
11409 @opindex mrtd
11410 Use a different function-calling convention, in which functions that
11411 take a fixed number of arguments return with the @code{ret} @var{num}
11412 instruction, which pops their arguments while returning.  This saves one
11413 instruction in the caller since there is no need to pop the arguments
11414 there.
11415
11416 You can specify that an individual function is called with this calling
11417 sequence with the function attribute @samp{stdcall}.  You can also
11418 override the @option{-mrtd} option by using the function attribute
11419 @samp{cdecl}.  @xref{Function Attributes}.
11420
11421 @strong{Warning:} this calling convention is incompatible with the one
11422 normally used on Unix, so you cannot use it if you need to call
11423 libraries compiled with the Unix compiler.
11424
11425 Also, you must provide function prototypes for all functions that
11426 take variable numbers of arguments (including @code{printf});
11427 otherwise incorrect code will be generated for calls to those
11428 functions.
11429
11430 In addition, seriously incorrect code will result if you call a
11431 function with too many arguments.  (Normally, extra arguments are
11432 harmlessly ignored.)
11433
11434 @item -mregparm=@var{num}
11435 @opindex mregparm
11436 Control how many registers are used to pass integer arguments.  By
11437 default, no registers are used to pass arguments, and at most 3
11438 registers can be used.  You can control this behavior for a specific
11439 function by using the function attribute @samp{regparm}.
11440 @xref{Function Attributes}.
11441
11442 @strong{Warning:} if you use this switch, and
11443 @var{num} is nonzero, then you must build all modules with the same
11444 value, including any libraries.  This includes the system libraries and
11445 startup modules.
11446
11447 @item -msseregparm
11448 @opindex msseregparm
11449 Use SSE register passing conventions for float and double arguments
11450 and return values.  You can control this behavior for a specific
11451 function by using the function attribute @samp{sseregparm}.
11452 @xref{Function Attributes}.
11453
11454 @strong{Warning:} if you use this switch then you must build all
11455 modules with the same value, including any libraries.  This includes
11456 the system libraries and startup modules.
11457
11458 @item -mpc32
11459 @itemx -mpc64
11460 @itemx -mpc80
11461 @opindex mpc32
11462 @opindex mpc64
11463 @opindex mpc80
11464
11465 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
11466 is specified, the significands of results of floating-point operations are
11467 rounded to 24 bits (single precision); @option{-mpc64} rounds the
11468 significands of results of floating-point operations to 53 bits (double
11469 precision) and @option{-mpc80} rounds the significands of results of
11470 floating-point operations to 64 bits (extended double precision), which is
11471 the default.  When this option is used, floating-point operations in higher
11472 precisions are not available to the programmer without setting the FPU
11473 control word explicitly.
11474
11475 Setting the rounding of floating-point operations to less than the default
11476 80 bits can speed some programs by 2% or more.  Note that some mathematical
11477 libraries assume that extended precision (80 bit) floating-point operations
11478 are enabled by default; routines in such libraries could suffer significant
11479 loss of accuracy, typically through so-called "catastrophic cancellation",
11480 when this option is used to set the precision to less than extended precision. 
11481
11482 @item -mstackrealign
11483 @opindex mstackrealign
11484 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
11485 option will generate an alternate prologue and epilogue that realigns the
11486 runtime stack if necessary.  This supports mixing legacy codes that keep
11487 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
11488 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
11489 applicable to individual functions.
11490
11491 @item -mpreferred-stack-boundary=@var{num}
11492 @opindex mpreferred-stack-boundary
11493 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
11494 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
11495 the default is 4 (16 bytes or 128 bits).
11496
11497 @item -mincoming-stack-boundary=@var{num}
11498 @opindex mincoming-stack-boundary
11499 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
11500 boundary.  If @option{-mincoming-stack-boundary} is not specified,
11501 the one specified by @option{-mpreferred-stack-boundary} will be used.
11502
11503 On Pentium and PentiumPro, @code{double} and @code{long double} values
11504 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
11505 suffer significant run time performance penalties.  On Pentium III, the
11506 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
11507 properly if it is not 16 byte aligned.
11508
11509 To ensure proper alignment of this values on the stack, the stack boundary
11510 must be as aligned as that required by any value stored on the stack.
11511 Further, every function must be generated such that it keeps the stack
11512 aligned.  Thus calling a function compiled with a higher preferred
11513 stack boundary from a function compiled with a lower preferred stack
11514 boundary will most likely misalign the stack.  It is recommended that
11515 libraries that use callbacks always use the default setting.
11516
11517 This extra alignment does consume extra stack space, and generally
11518 increases code size.  Code that is sensitive to stack space usage, such
11519 as embedded systems and operating system kernels, may want to reduce the
11520 preferred alignment to @option{-mpreferred-stack-boundary=2}.
11521
11522 @item -mmmx
11523 @itemx -mno-mmx
11524 @itemx -msse
11525 @itemx -mno-sse
11526 @itemx -msse2
11527 @itemx -mno-sse2
11528 @itemx -msse3
11529 @itemx -mno-sse3
11530 @itemx -mssse3
11531 @itemx -mno-ssse3
11532 @itemx -msse4.1
11533 @itemx -mno-sse4.1
11534 @itemx -msse4.2
11535 @itemx -mno-sse4.2
11536 @itemx -msse4
11537 @itemx -mno-sse4
11538 @itemx -mavx
11539 @itemx -mno-avx
11540 @itemx -maes
11541 @itemx -mno-aes
11542 @itemx -mpclmul
11543 @itemx -mno-pclmul
11544 @itemx -msse4a
11545 @itemx -mno-sse4a
11546 @itemx -msse5
11547 @itemx -mno-sse5
11548 @itemx -m3dnow
11549 @itemx -mno-3dnow
11550 @itemx -mpopcnt
11551 @itemx -mno-popcnt
11552 @itemx -mabm
11553 @itemx -mno-abm
11554 @opindex mmmx
11555 @opindex mno-mmx
11556 @opindex msse
11557 @opindex mno-sse
11558 @opindex m3dnow
11559 @opindex mno-3dnow
11560 These switches enable or disable the use of instructions in the MMX,
11561 SSE, SSE2, SSE3, SSSE3, SSE4.1, AVX, AES, PCLMUL, SSE4A, SSE5, ABM or
11562 3DNow!@: extended instruction sets.
11563 These extensions are also available as built-in functions: see
11564 @ref{X86 Built-in Functions}, for details of the functions enabled and
11565 disabled by these switches.
11566
11567 To have SSE/SSE2 instructions generated automatically from floating-point
11568 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
11569
11570 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
11571 generates new AVX instructions or AVX equivalence for all SSEx instructions
11572 when needed.
11573
11574 These options will enable GCC to use these extended instructions in
11575 generated code, even without @option{-mfpmath=sse}.  Applications which
11576 perform runtime CPU detection must compile separate files for each
11577 supported architecture, using the appropriate flags.  In particular,
11578 the file containing the CPU detection code should be compiled without
11579 these options.
11580
11581 @item -mcld
11582 @opindex mcld
11583 This option instructs GCC to emit a @code{cld} instruction in the prologue
11584 of functions that use string instructions.  String instructions depend on
11585 the DF flag to select between autoincrement or autodecrement mode.  While the
11586 ABI specifies the DF flag to be cleared on function entry, some operating
11587 systems violate this specification by not clearing the DF flag in their
11588 exception dispatchers.  The exception handler can be invoked with the DF flag
11589 set which leads to wrong direction mode, when string instructions are used.
11590 This option can be enabled by default on 32-bit x86 targets by configuring
11591 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
11592 instructions can be suppressed with the @option{-mno-cld} compiler option
11593 in this case.
11594
11595 @item -mcx16
11596 @opindex mcx16
11597 This option will enable GCC to use CMPXCHG16B instruction in generated code.
11598 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
11599 data types.  This is useful for high resolution counters that could be updated
11600 by multiple processors (or cores).  This instruction is generated as part of
11601 atomic built-in functions: see @ref{Atomic Builtins} for details.
11602
11603 @item -msahf
11604 @opindex msahf
11605 This option will enable GCC to use SAHF instruction in generated 64-bit code.
11606 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
11607 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
11608 SAHF are load and store instructions, respectively, for certain status flags.
11609 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
11610 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
11611
11612 @item -mmovbe
11613 @opindex mmovbe
11614 This option will enable GCC to use movbe instruction to implement
11615 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
11616
11617 @item -mcrc32
11618 @opindex mcrc32
11619 This option will enable built-in functions, @code{__builtin_ia32_crc32qi},
11620 @code{__builtin_ia32_crc32hi}. @code{__builtin_ia32_crc32si} and
11621 @code{__builtin_ia32_crc32di} to generate the crc32 machine instruction.
11622
11623 @item -mrecip
11624 @opindex mrecip
11625 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
11626 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Raphson step
11627 to increase precision instead of DIVSS and SQRTSS (and their vectorized
11628 variants) for single precision floating point arguments.  These instructions
11629 are generated only when @option{-funsafe-math-optimizations} is enabled
11630 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
11631 Note that while the throughput of the sequence is higher than the throughput
11632 of the non-reciprocal instruction, the precision of the sequence can be
11633 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
11634
11635 @item -mveclibabi=@var{type}
11636 @opindex mveclibabi
11637 Specifies the ABI type to use for vectorizing intrinsics using an
11638 external library.  Supported types are @code{svml} for the Intel short
11639 vector math library and @code{acml} for the AMD math core library style
11640 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
11641 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
11642 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
11643 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
11644 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
11645 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
11646 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
11647 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
11648 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
11649 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
11650 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
11651 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
11652 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
11653 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
11654 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
11655 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
11656 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
11657 compatible library will have to be specified at link time.
11658
11659 @item -mabi=@var{name}
11660 @opindex mabi
11661 Generate code for the specified calling convention.  Permissible values
11662 are: @samp{sysv} for the ABI used on GNU/Linux and other systems and
11663 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
11664 ABI when targeting Windows.  On all other systems, the default is the
11665 SYSV ABI.  You can control this behavior for a specific function by
11666 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
11667 @xref{Function Attributes}.
11668
11669 @item -mpush-args
11670 @itemx -mno-push-args
11671 @opindex mpush-args
11672 @opindex mno-push-args
11673 Use PUSH operations to store outgoing parameters.  This method is shorter
11674 and usually equally fast as method using SUB/MOV operations and is enabled
11675 by default.  In some cases disabling it may improve performance because of
11676 improved scheduling and reduced dependencies.
11677
11678 @item -maccumulate-outgoing-args
11679 @opindex maccumulate-outgoing-args
11680 If enabled, the maximum amount of space required for outgoing arguments will be
11681 computed in the function prologue.  This is faster on most modern CPUs
11682 because of reduced dependencies, improved scheduling and reduced stack usage
11683 when preferred stack boundary is not equal to 2.  The drawback is a notable
11684 increase in code size.  This switch implies @option{-mno-push-args}.
11685
11686 @item -mthreads
11687 @opindex mthreads
11688 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
11689 on thread-safe exception handling must compile and link all code with the
11690 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
11691 @option{-D_MT}; when linking, it links in a special thread helper library
11692 @option{-lmingwthrd} which cleans up per thread exception handling data.
11693
11694 @item -mno-align-stringops
11695 @opindex mno-align-stringops
11696 Do not align destination of inlined string operations.  This switch reduces
11697 code size and improves performance in case the destination is already aligned,
11698 but GCC doesn't know about it.
11699
11700 @item -minline-all-stringops
11701 @opindex minline-all-stringops
11702 By default GCC inlines string operations only when destination is known to be
11703 aligned at least to 4 byte boundary.  This enables more inlining, increase code
11704 size, but may improve performance of code that depends on fast memcpy, strlen
11705 and memset for short lengths.
11706
11707 @item -minline-stringops-dynamically
11708 @opindex minline-stringops-dynamically
11709 For string operation of unknown size, inline runtime checks so for small
11710 blocks inline code is used, while for large blocks library call is used.
11711
11712 @item -mstringop-strategy=@var{alg}
11713 @opindex mstringop-strategy=@var{alg}
11714 Overwrite internal decision heuristic about particular algorithm to inline
11715 string operation with.  The allowed values are @code{rep_byte},
11716 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
11717 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
11718 expanding inline loop, @code{libcall} for always expanding library call.
11719
11720 @item -momit-leaf-frame-pointer
11721 @opindex momit-leaf-frame-pointer
11722 Don't keep the frame pointer in a register for leaf functions.  This
11723 avoids the instructions to save, set up and restore frame pointers and
11724 makes an extra register available in leaf functions.  The option
11725 @option{-fomit-frame-pointer} removes the frame pointer for all functions
11726 which might make debugging harder.
11727
11728 @item -mtls-direct-seg-refs
11729 @itemx -mno-tls-direct-seg-refs
11730 @opindex mtls-direct-seg-refs
11731 Controls whether TLS variables may be accessed with offsets from the
11732 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
11733 or whether the thread base pointer must be added.  Whether or not this
11734 is legal depends on the operating system, and whether it maps the
11735 segment to cover the entire TLS area.
11736
11737 For systems that use GNU libc, the default is on.
11738
11739 @item -mfused-madd
11740 @itemx -mno-fused-madd
11741 @opindex mfused-madd
11742 Enable automatic generation of fused floating point multiply-add instructions
11743 if the ISA supports such instructions.  The -mfused-madd option is on by
11744 default.  The fused multiply-add instructions have a different
11745 rounding behavior compared to executing a multiply followed by an add.
11746
11747 @item -msse2avx
11748 @itemx -mno-sse2avx
11749 @opindex msse2avx
11750 Specify that the assembler should encode SSE instructions with VEX
11751 prefix.  The option @option{-mavx} turns this on by default.
11752 @end table
11753
11754 These @samp{-m} switches are supported in addition to the above
11755 on AMD x86-64 processors in 64-bit environments.
11756
11757 @table @gcctabopt
11758 @item -m32
11759 @itemx -m64
11760 @opindex m32
11761 @opindex m64
11762 Generate code for a 32-bit or 64-bit environment.
11763 The 32-bit environment sets int, long and pointer to 32 bits and
11764 generates code that runs on any i386 system.
11765 The 64-bit environment sets int to 32 bits and long and pointer
11766 to 64 bits and generates code for AMD's x86-64 architecture. For
11767 darwin only the -m64 option turns off the @option{-fno-pic} and
11768 @option{-mdynamic-no-pic} options.
11769
11770 @item -mno-red-zone
11771 @opindex mno-red-zone
11772 Do not use a so called red zone for x86-64 code.  The red zone is mandated
11773 by the x86-64 ABI, it is a 128-byte area beyond the location of the
11774 stack pointer that will not be modified by signal or interrupt handlers
11775 and therefore can be used for temporary data without adjusting the stack
11776 pointer.  The flag @option{-mno-red-zone} disables this red zone.
11777
11778 @item -mcmodel=small
11779 @opindex mcmodel=small
11780 Generate code for the small code model: the program and its symbols must
11781 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
11782 Programs can be statically or dynamically linked.  This is the default
11783 code model.
11784
11785 @item -mcmodel=kernel
11786 @opindex mcmodel=kernel
11787 Generate code for the kernel code model.  The kernel runs in the
11788 negative 2 GB of the address space.
11789 This model has to be used for Linux kernel code.
11790
11791 @item -mcmodel=medium
11792 @opindex mcmodel=medium
11793 Generate code for the medium model: The program is linked in the lower 2
11794 GB of the address space.  Small symbols are also placed there.  Symbols
11795 with sizes larger than @option{-mlarge-data-threshold} are put into
11796 large data or bss sections and can be located above 2GB.  Programs can
11797 be statically or dynamically linked.
11798
11799 @item -mcmodel=large
11800 @opindex mcmodel=large
11801 Generate code for the large model: This model makes no assumptions
11802 about addresses and sizes of sections.
11803 @end table
11804
11805 @node IA-64 Options
11806 @subsection IA-64 Options
11807 @cindex IA-64 Options
11808
11809 These are the @samp{-m} options defined for the Intel IA-64 architecture.
11810
11811 @table @gcctabopt
11812 @item -mbig-endian
11813 @opindex mbig-endian
11814 Generate code for a big endian target.  This is the default for HP-UX@.
11815
11816 @item -mlittle-endian
11817 @opindex mlittle-endian
11818 Generate code for a little endian target.  This is the default for AIX5
11819 and GNU/Linux.
11820
11821 @item -mgnu-as
11822 @itemx -mno-gnu-as
11823 @opindex mgnu-as
11824 @opindex mno-gnu-as
11825 Generate (or don't) code for the GNU assembler.  This is the default.
11826 @c Also, this is the default if the configure option @option{--with-gnu-as}
11827 @c is used.
11828
11829 @item -mgnu-ld
11830 @itemx -mno-gnu-ld
11831 @opindex mgnu-ld
11832 @opindex mno-gnu-ld
11833 Generate (or don't) code for the GNU linker.  This is the default.
11834 @c Also, this is the default if the configure option @option{--with-gnu-ld}
11835 @c is used.
11836
11837 @item -mno-pic
11838 @opindex mno-pic
11839 Generate code that does not use a global pointer register.  The result
11840 is not position independent code, and violates the IA-64 ABI@.
11841
11842 @item -mvolatile-asm-stop
11843 @itemx -mno-volatile-asm-stop
11844 @opindex mvolatile-asm-stop
11845 @opindex mno-volatile-asm-stop
11846 Generate (or don't) a stop bit immediately before and after volatile asm
11847 statements.
11848
11849 @item -mregister-names
11850 @itemx -mno-register-names
11851 @opindex mregister-names
11852 @opindex mno-register-names
11853 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
11854 the stacked registers.  This may make assembler output more readable.
11855
11856 @item -mno-sdata
11857 @itemx -msdata
11858 @opindex mno-sdata
11859 @opindex msdata
11860 Disable (or enable) optimizations that use the small data section.  This may
11861 be useful for working around optimizer bugs.
11862
11863 @item -mconstant-gp
11864 @opindex mconstant-gp
11865 Generate code that uses a single constant global pointer value.  This is
11866 useful when compiling kernel code.
11867
11868 @item -mauto-pic
11869 @opindex mauto-pic
11870 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
11871 This is useful when compiling firmware code.
11872
11873 @item -minline-float-divide-min-latency
11874 @opindex minline-float-divide-min-latency
11875 Generate code for inline divides of floating point values
11876 using the minimum latency algorithm.
11877
11878 @item -minline-float-divide-max-throughput
11879 @opindex minline-float-divide-max-throughput
11880 Generate code for inline divides of floating point values
11881 using the maximum throughput algorithm.
11882
11883 @item -mno-inline-float-divide
11884 @opindex mno-inline-float-divide
11885 Do not generate inline code for divides of floating point values.
11886
11887 @item -minline-int-divide-min-latency
11888 @opindex minline-int-divide-min-latency
11889 Generate code for inline divides of integer values
11890 using the minimum latency algorithm.
11891
11892 @item -minline-int-divide-max-throughput
11893 @opindex minline-int-divide-max-throughput
11894 Generate code for inline divides of integer values
11895 using the maximum throughput algorithm.
11896
11897 @item -mno-inline-int-divide
11898 @opindex mno-inline-int-divide
11899 Do not generate inline code for divides of integer values.
11900
11901 @item -minline-sqrt-min-latency
11902 @opindex minline-sqrt-min-latency
11903 Generate code for inline square roots
11904 using the minimum latency algorithm.
11905
11906 @item -minline-sqrt-max-throughput
11907 @opindex minline-sqrt-max-throughput
11908 Generate code for inline square roots
11909 using the maximum throughput algorithm.
11910
11911 @item -mno-inline-sqrt
11912 @opindex mno-inline-sqrt
11913 Do not generate inline code for sqrt.
11914
11915 @item -mfused-madd
11916 @itemx -mno-fused-madd
11917 @opindex mfused-madd
11918 @opindex mno-fused-madd
11919 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
11920 instructions.    The default is to use these instructions.
11921
11922 @item -mno-dwarf2-asm
11923 @itemx -mdwarf2-asm
11924 @opindex mno-dwarf2-asm
11925 @opindex mdwarf2-asm
11926 Don't (or do) generate assembler code for the DWARF2 line number debugging
11927 info.  This may be useful when not using the GNU assembler.
11928
11929 @item -mearly-stop-bits
11930 @itemx -mno-early-stop-bits
11931 @opindex mearly-stop-bits
11932 @opindex mno-early-stop-bits
11933 Allow stop bits to be placed earlier than immediately preceding the
11934 instruction that triggered the stop bit.  This can improve instruction
11935 scheduling, but does not always do so.
11936
11937 @item -mfixed-range=@var{register-range}
11938 @opindex mfixed-range
11939 Generate code treating the given register range as fixed registers.
11940 A fixed register is one that the register allocator can not use.  This is
11941 useful when compiling kernel code.  A register range is specified as
11942 two registers separated by a dash.  Multiple register ranges can be
11943 specified separated by a comma.
11944
11945 @item -mtls-size=@var{tls-size}
11946 @opindex mtls-size
11947 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
11948 64.
11949
11950 @item -mtune=@var{cpu-type}
11951 @opindex mtune
11952 Tune the instruction scheduling for a particular CPU, Valid values are
11953 itanium, itanium1, merced, itanium2, and mckinley.
11954
11955 @item -milp32
11956 @itemx -mlp64
11957 @opindex milp32
11958 @opindex mlp64
11959 Generate code for a 32-bit or 64-bit environment.
11960 The 32-bit environment sets int, long and pointer to 32 bits.
11961 The 64-bit environment sets int to 32 bits and long and pointer
11962 to 64 bits.  These are HP-UX specific flags.
11963
11964 @item -mno-sched-br-data-spec
11965 @itemx -msched-br-data-spec
11966 @opindex mno-sched-br-data-spec
11967 @opindex msched-br-data-spec
11968 (Dis/En)able data speculative scheduling before reload.
11969 This will result in generation of the ld.a instructions and
11970 the corresponding check instructions (ld.c / chk.a).
11971 The default is 'disable'.
11972
11973 @item -msched-ar-data-spec
11974 @itemx -mno-sched-ar-data-spec
11975 @opindex msched-ar-data-spec
11976 @opindex mno-sched-ar-data-spec
11977 (En/Dis)able data speculative scheduling after reload.
11978 This will result in generation of the ld.a instructions and
11979 the corresponding check instructions (ld.c / chk.a).
11980 The default is 'enable'.
11981
11982 @item -mno-sched-control-spec
11983 @itemx -msched-control-spec
11984 @opindex mno-sched-control-spec
11985 @opindex msched-control-spec
11986 (Dis/En)able control speculative scheduling.  This feature is
11987 available only during region scheduling (i.e.@: before reload).
11988 This will result in generation of the ld.s instructions and
11989 the corresponding check instructions chk.s .
11990 The default is 'disable'.
11991
11992 @item -msched-br-in-data-spec
11993 @itemx -mno-sched-br-in-data-spec
11994 @opindex msched-br-in-data-spec
11995 @opindex mno-sched-br-in-data-spec
11996 (En/Dis)able speculative scheduling of the instructions that
11997 are dependent on the data speculative loads before reload.
11998 This is effective only with @option{-msched-br-data-spec} enabled.
11999 The default is 'enable'.
12000
12001 @item -msched-ar-in-data-spec
12002 @itemx -mno-sched-ar-in-data-spec
12003 @opindex msched-ar-in-data-spec
12004 @opindex mno-sched-ar-in-data-spec
12005 (En/Dis)able speculative scheduling of the instructions that
12006 are dependent on the data speculative loads after reload.
12007 This is effective only with @option{-msched-ar-data-spec} enabled.
12008 The default is 'enable'.
12009
12010 @item -msched-in-control-spec
12011 @itemx -mno-sched-in-control-spec
12012 @opindex msched-in-control-spec
12013 @opindex mno-sched-in-control-spec
12014 (En/Dis)able speculative scheduling of the instructions that
12015 are dependent on the control speculative loads.
12016 This is effective only with @option{-msched-control-spec} enabled.
12017 The default is 'enable'.
12018
12019 @item -mno-sched-prefer-non-data-spec-insns
12020 @itemx -msched-prefer-non-data-spec-insns
12021 @opindex mno-sched-prefer-non-data-spec-insns
12022 @opindex msched-prefer-non-data-spec-insns
12023 If enabled, data speculative instructions will be chosen for schedule
12024 only if there are no other choices at the moment.  This will make
12025 the use of the data speculation much more conservative.
12026 The default is 'disable'.
12027
12028 @item -mno-sched-prefer-non-control-spec-insns
12029 @itemx -msched-prefer-non-control-spec-insns
12030 @opindex mno-sched-prefer-non-control-spec-insns
12031 @opindex msched-prefer-non-control-spec-insns
12032 If enabled, control speculative instructions will be chosen for schedule
12033 only if there are no other choices at the moment.  This will make
12034 the use of the control speculation much more conservative.
12035 The default is 'disable'.
12036
12037 @item -mno-sched-count-spec-in-critical-path
12038 @itemx -msched-count-spec-in-critical-path
12039 @opindex mno-sched-count-spec-in-critical-path
12040 @opindex msched-count-spec-in-critical-path
12041 If enabled, speculative dependencies will be considered during
12042 computation of the instructions priorities.  This will make the use of the
12043 speculation a bit more conservative.
12044 The default is 'disable'.
12045
12046 @item -msched-spec-ldc
12047 @opindex msched-spec-ldc
12048 Use a simple data speculation check.  This option is on by default.
12049
12050 @item -msched-control-spec-ldc
12051 @opindex msched-spec-ldc
12052 Use a simple check for control speculation.  This option is on by default.
12053
12054 @item -msched-stop-bits-after-every-cycle
12055 @opindex msched-stop-bits-after-every-cycle
12056 Place a stop bit after every cycle when scheduling.  This option is on
12057 by default.
12058
12059 @item -msched-fp-mem-deps-zero-cost
12060 @opindex msched-fp-mem-deps-zero-cost
12061 Assume that floating-point stores and loads are not likely to cause a conflict
12062 when placed into the same instruction group.  This option is disabled by
12063 default.
12064
12065 @item -msel-sched-dont-check-control-spec
12066 @opindex msel-sched-dont-check-control-spec
12067 Generate checks for control speculation in selective scheduling.
12068 This flag is disabled by default.
12069
12070 @item -msched-max-memory-insns=@var{max-insns}
12071 @opindex msched-max-memory-insns
12072 Limit on the number of memory insns per instruction group, giving lower
12073 priority to subsequent memory insns attempting to schedule in the same
12074 instruction group. Frequently useful to prevent cache bank conflicts.
12075 The default value is 1.
12076
12077 @item -msched-max-memory-insns-hard-limit
12078 @opindex msched-max-memory-insns-hard-limit
12079 Disallow more than `msched-max-memory-insns' in instruction group.
12080 Otherwise, limit is `soft' meaning that we would prefer non-memory operations
12081 when limit is reached but may still schedule memory operations.
12082
12083 @end table
12084
12085 @node M32C Options
12086 @subsection M32C Options
12087 @cindex M32C options
12088
12089 @table @gcctabopt
12090 @item -mcpu=@var{name}
12091 @opindex mcpu=
12092 Select the CPU for which code is generated.  @var{name} may be one of
12093 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
12094 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
12095 the M32C/80 series.
12096
12097 @item -msim
12098 @opindex msim
12099 Specifies that the program will be run on the simulator.  This causes
12100 an alternate runtime library to be linked in which supports, for
12101 example, file I/O@.  You must not use this option when generating
12102 programs that will run on real hardware; you must provide your own
12103 runtime library for whatever I/O functions are needed.
12104
12105 @item -memregs=@var{number}
12106 @opindex memregs=
12107 Specifies the number of memory-based pseudo-registers GCC will use
12108 during code generation.  These pseudo-registers will be used like real
12109 registers, so there is a tradeoff between GCC's ability to fit the
12110 code into available registers, and the performance penalty of using
12111 memory instead of registers.  Note that all modules in a program must
12112 be compiled with the same value for this option.  Because of that, you
12113 must not use this option with the default runtime libraries gcc
12114 builds.
12115
12116 @end table
12117
12118 @node M32R/D Options
12119 @subsection M32R/D Options
12120 @cindex M32R/D options
12121
12122 These @option{-m} options are defined for Renesas M32R/D architectures:
12123
12124 @table @gcctabopt
12125 @item -m32r2
12126 @opindex m32r2
12127 Generate code for the M32R/2@.
12128
12129 @item -m32rx
12130 @opindex m32rx
12131 Generate code for the M32R/X@.
12132
12133 @item -m32r
12134 @opindex m32r
12135 Generate code for the M32R@.  This is the default.
12136
12137 @item -mmodel=small
12138 @opindex mmodel=small
12139 Assume all objects live in the lower 16MB of memory (so that their addresses
12140 can be loaded with the @code{ld24} instruction), and assume all subroutines
12141 are reachable with the @code{bl} instruction.
12142 This is the default.
12143
12144 The addressability of a particular object can be set with the
12145 @code{model} attribute.
12146
12147 @item -mmodel=medium
12148 @opindex mmodel=medium
12149 Assume objects may be anywhere in the 32-bit address space (the compiler
12150 will generate @code{seth/add3} instructions to load their addresses), and
12151 assume all subroutines are reachable with the @code{bl} instruction.
12152
12153 @item -mmodel=large
12154 @opindex mmodel=large
12155 Assume objects may be anywhere in the 32-bit address space (the compiler
12156 will generate @code{seth/add3} instructions to load their addresses), and
12157 assume subroutines may not be reachable with the @code{bl} instruction
12158 (the compiler will generate the much slower @code{seth/add3/jl}
12159 instruction sequence).
12160
12161 @item -msdata=none
12162 @opindex msdata=none
12163 Disable use of the small data area.  Variables will be put into
12164 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
12165 @code{section} attribute has been specified).
12166 This is the default.
12167
12168 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
12169 Objects may be explicitly put in the small data area with the
12170 @code{section} attribute using one of these sections.
12171
12172 @item -msdata=sdata
12173 @opindex msdata=sdata
12174 Put small global and static data in the small data area, but do not
12175 generate special code to reference them.
12176
12177 @item -msdata=use
12178 @opindex msdata=use
12179 Put small global and static data in the small data area, and generate
12180 special instructions to reference them.
12181
12182 @item -G @var{num}
12183 @opindex G
12184 @cindex smaller data references
12185 Put global and static objects less than or equal to @var{num} bytes
12186 into the small data or bss sections instead of the normal data or bss
12187 sections.  The default value of @var{num} is 8.
12188 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
12189 for this option to have any effect.
12190
12191 All modules should be compiled with the same @option{-G @var{num}} value.
12192 Compiling with different values of @var{num} may or may not work; if it
12193 doesn't the linker will give an error message---incorrect code will not be
12194 generated.
12195
12196 @item -mdebug
12197 @opindex mdebug
12198 Makes the M32R specific code in the compiler display some statistics
12199 that might help in debugging programs.
12200
12201 @item -malign-loops
12202 @opindex malign-loops
12203 Align all loops to a 32-byte boundary.
12204
12205 @item -mno-align-loops
12206 @opindex mno-align-loops
12207 Do not enforce a 32-byte alignment for loops.  This is the default.
12208
12209 @item -missue-rate=@var{number}
12210 @opindex missue-rate=@var{number}
12211 Issue @var{number} instructions per cycle.  @var{number} can only be 1
12212 or 2.
12213
12214 @item -mbranch-cost=@var{number}
12215 @opindex mbranch-cost=@var{number}
12216 @var{number} can only be 1 or 2.  If it is 1 then branches will be
12217 preferred over conditional code, if it is 2, then the opposite will
12218 apply.
12219
12220 @item -mflush-trap=@var{number}
12221 @opindex mflush-trap=@var{number}
12222 Specifies the trap number to use to flush the cache.  The default is
12223 12.  Valid numbers are between 0 and 15 inclusive.
12224
12225 @item -mno-flush-trap
12226 @opindex mno-flush-trap
12227 Specifies that the cache cannot be flushed by using a trap.
12228
12229 @item -mflush-func=@var{name}
12230 @opindex mflush-func=@var{name}
12231 Specifies the name of the operating system function to call to flush
12232 the cache.  The default is @emph{_flush_cache}, but a function call
12233 will only be used if a trap is not available.
12234
12235 @item -mno-flush-func
12236 @opindex mno-flush-func
12237 Indicates that there is no OS function for flushing the cache.
12238
12239 @end table
12240
12241 @node M680x0 Options
12242 @subsection M680x0 Options
12243 @cindex M680x0 options
12244
12245 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
12246 The default settings depend on which architecture was selected when
12247 the compiler was configured; the defaults for the most common choices
12248 are given below.
12249
12250 @table @gcctabopt
12251 @item -march=@var{arch}
12252 @opindex march
12253 Generate code for a specific M680x0 or ColdFire instruction set
12254 architecture.  Permissible values of @var{arch} for M680x0
12255 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
12256 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
12257 architectures are selected according to Freescale's ISA classification
12258 and the permissible values are: @samp{isaa}, @samp{isaaplus},
12259 @samp{isab} and @samp{isac}.
12260
12261 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
12262 code for a ColdFire target.  The @var{arch} in this macro is one of the
12263 @option{-march} arguments given above.
12264
12265 When used together, @option{-march} and @option{-mtune} select code
12266 that runs on a family of similar processors but that is optimized
12267 for a particular microarchitecture.
12268
12269 @item -mcpu=@var{cpu}
12270 @opindex mcpu
12271 Generate code for a specific M680x0 or ColdFire processor.
12272 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
12273 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
12274 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
12275 below, which also classifies the CPUs into families:
12276
12277 @multitable @columnfractions 0.20 0.80
12278 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
12279 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51cn} @samp{51em} @samp{51qe}
12280 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
12281 @item @samp{5206e} @tab @samp{5206e}
12282 @item @samp{5208} @tab @samp{5207} @samp{5208}
12283 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
12284 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
12285 @item @samp{5216} @tab @samp{5214} @samp{5216}
12286 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
12287 @item @samp{5225} @tab @samp{5224} @samp{5225}
12288 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
12289 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
12290 @item @samp{5249} @tab @samp{5249}
12291 @item @samp{5250} @tab @samp{5250}
12292 @item @samp{5271} @tab @samp{5270} @samp{5271}
12293 @item @samp{5272} @tab @samp{5272}
12294 @item @samp{5275} @tab @samp{5274} @samp{5275}
12295 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
12296 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
12297 @item @samp{5307} @tab @samp{5307}
12298 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
12299 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
12300 @item @samp{5407} @tab @samp{5407}
12301 @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}
12302 @end multitable
12303
12304 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
12305 @var{arch} is compatible with @var{cpu}.  Other combinations of
12306 @option{-mcpu} and @option{-march} are rejected.
12307
12308 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
12309 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
12310 where the value of @var{family} is given by the table above.
12311
12312 @item -mtune=@var{tune}
12313 @opindex mtune
12314 Tune the code for a particular microarchitecture, within the
12315 constraints set by @option{-march} and @option{-mcpu}.
12316 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
12317 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
12318 and @samp{cpu32}.  The ColdFire microarchitectures
12319 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
12320
12321 You can also use @option{-mtune=68020-40} for code that needs
12322 to run relatively well on 68020, 68030 and 68040 targets.
12323 @option{-mtune=68020-60} is similar but includes 68060 targets
12324 as well.  These two options select the same tuning decisions as
12325 @option{-m68020-40} and @option{-m68020-60} respectively.
12326
12327 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
12328 when tuning for 680x0 architecture @var{arch}.  It also defines
12329 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
12330 option is used.  If gcc is tuning for a range of architectures,
12331 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
12332 it defines the macros for every architecture in the range.
12333
12334 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
12335 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
12336 of the arguments given above.
12337
12338 @item -m68000
12339 @itemx -mc68000
12340 @opindex m68000
12341 @opindex mc68000
12342 Generate output for a 68000.  This is the default
12343 when the compiler is configured for 68000-based systems.
12344 It is equivalent to @option{-march=68000}.
12345
12346 Use this option for microcontrollers with a 68000 or EC000 core,
12347 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
12348
12349 @item -m68010
12350 @opindex m68010
12351 Generate output for a 68010.  This is the default
12352 when the compiler is configured for 68010-based systems.
12353 It is equivalent to @option{-march=68010}.
12354
12355 @item -m68020
12356 @itemx -mc68020
12357 @opindex m68020
12358 @opindex mc68020
12359 Generate output for a 68020.  This is the default
12360 when the compiler is configured for 68020-based systems.
12361 It is equivalent to @option{-march=68020}.
12362
12363 @item -m68030
12364 @opindex m68030
12365 Generate output for a 68030.  This is the default when the compiler is
12366 configured for 68030-based systems.  It is equivalent to
12367 @option{-march=68030}.
12368
12369 @item -m68040
12370 @opindex m68040
12371 Generate output for a 68040.  This is the default when the compiler is
12372 configured for 68040-based systems.  It is equivalent to
12373 @option{-march=68040}.
12374
12375 This option inhibits the use of 68881/68882 instructions that have to be
12376 emulated by software on the 68040.  Use this option if your 68040 does not
12377 have code to emulate those instructions.
12378
12379 @item -m68060
12380 @opindex m68060
12381 Generate output for a 68060.  This is the default when the compiler is
12382 configured for 68060-based systems.  It is equivalent to
12383 @option{-march=68060}.
12384
12385 This option inhibits the use of 68020 and 68881/68882 instructions that
12386 have to be emulated by software on the 68060.  Use this option if your 68060
12387 does not have code to emulate those instructions.
12388
12389 @item -mcpu32
12390 @opindex mcpu32
12391 Generate output for a CPU32.  This is the default
12392 when the compiler is configured for CPU32-based systems.
12393 It is equivalent to @option{-march=cpu32}.
12394
12395 Use this option for microcontrollers with a
12396 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
12397 68336, 68340, 68341, 68349 and 68360.
12398
12399 @item -m5200
12400 @opindex m5200
12401 Generate output for a 520X ColdFire CPU@.  This is the default
12402 when the compiler is configured for 520X-based systems.
12403 It is equivalent to @option{-mcpu=5206}, and is now deprecated
12404 in favor of that option.
12405
12406 Use this option for microcontroller with a 5200 core, including
12407 the MCF5202, MCF5203, MCF5204 and MCF5206.
12408
12409 @item -m5206e
12410 @opindex m5206e
12411 Generate output for a 5206e ColdFire CPU@.  The option is now
12412 deprecated in favor of the equivalent @option{-mcpu=5206e}.
12413
12414 @item -m528x
12415 @opindex m528x
12416 Generate output for a member of the ColdFire 528X family.
12417 The option is now deprecated in favor of the equivalent
12418 @option{-mcpu=528x}.
12419
12420 @item -m5307
12421 @opindex m5307
12422 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
12423 in favor of the equivalent @option{-mcpu=5307}.
12424
12425 @item -m5407
12426 @opindex m5407
12427 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
12428 in favor of the equivalent @option{-mcpu=5407}.
12429
12430 @item -mcfv4e
12431 @opindex mcfv4e
12432 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
12433 This includes use of hardware floating point instructions.
12434 The option is equivalent to @option{-mcpu=547x}, and is now
12435 deprecated in favor of that option.
12436
12437 @item -m68020-40
12438 @opindex m68020-40
12439 Generate output for a 68040, without using any of the new instructions.
12440 This results in code which can run relatively efficiently on either a
12441 68020/68881 or a 68030 or a 68040.  The generated code does use the
12442 68881 instructions that are emulated on the 68040.
12443
12444 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
12445
12446 @item -m68020-60
12447 @opindex m68020-60
12448 Generate output for a 68060, without using any of the new instructions.
12449 This results in code which can run relatively efficiently on either a
12450 68020/68881 or a 68030 or a 68040.  The generated code does use the
12451 68881 instructions that are emulated on the 68060.
12452
12453 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
12454
12455 @item -mhard-float
12456 @itemx -m68881
12457 @opindex mhard-float
12458 @opindex m68881
12459 Generate floating-point instructions.  This is the default for 68020
12460 and above, and for ColdFire devices that have an FPU@.  It defines the
12461 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
12462 on ColdFire targets.
12463
12464 @item -msoft-float
12465 @opindex msoft-float
12466 Do not generate floating-point instructions; use library calls instead.
12467 This is the default for 68000, 68010, and 68832 targets.  It is also
12468 the default for ColdFire devices that have no FPU.
12469
12470 @item -mdiv
12471 @itemx -mno-div
12472 @opindex mdiv
12473 @opindex mno-div
12474 Generate (do not generate) ColdFire hardware divide and remainder
12475 instructions.  If @option{-march} is used without @option{-mcpu},
12476 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
12477 architectures.  Otherwise, the default is taken from the target CPU
12478 (either the default CPU, or the one specified by @option{-mcpu}).  For
12479 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
12480 @option{-mcpu=5206e}.
12481
12482 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
12483
12484 @item -mshort
12485 @opindex mshort
12486 Consider type @code{int} to be 16 bits wide, like @code{short int}.
12487 Additionally, parameters passed on the stack are also aligned to a
12488 16-bit boundary even on targets whose API mandates promotion to 32-bit.
12489
12490 @item -mno-short
12491 @opindex mno-short
12492 Do not consider type @code{int} to be 16 bits wide.  This is the default.
12493
12494 @item -mnobitfield
12495 @itemx -mno-bitfield
12496 @opindex mnobitfield
12497 @opindex mno-bitfield
12498 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
12499 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
12500
12501 @item -mbitfield
12502 @opindex mbitfield
12503 Do use the bit-field instructions.  The @option{-m68020} option implies
12504 @option{-mbitfield}.  This is the default if you use a configuration
12505 designed for a 68020.
12506
12507 @item -mrtd
12508 @opindex mrtd
12509 Use a different function-calling convention, in which functions
12510 that take a fixed number of arguments return with the @code{rtd}
12511 instruction, which pops their arguments while returning.  This
12512 saves one instruction in the caller since there is no need to pop
12513 the arguments there.
12514
12515 This calling convention is incompatible with the one normally
12516 used on Unix, so you cannot use it if you need to call libraries
12517 compiled with the Unix compiler.
12518
12519 Also, you must provide function prototypes for all functions that
12520 take variable numbers of arguments (including @code{printf});
12521 otherwise incorrect code will be generated for calls to those
12522 functions.
12523
12524 In addition, seriously incorrect code will result if you call a
12525 function with too many arguments.  (Normally, extra arguments are
12526 harmlessly ignored.)
12527
12528 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
12529 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
12530
12531 @item -mno-rtd
12532 @opindex mno-rtd
12533 Do not use the calling conventions selected by @option{-mrtd}.
12534 This is the default.
12535
12536 @item -malign-int
12537 @itemx -mno-align-int
12538 @opindex malign-int
12539 @opindex mno-align-int
12540 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
12541 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
12542 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
12543 Aligning variables on 32-bit boundaries produces code that runs somewhat
12544 faster on processors with 32-bit busses at the expense of more memory.
12545
12546 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
12547 align structures containing the above types  differently than
12548 most published application binary interface specifications for the m68k.
12549
12550 @item -mpcrel
12551 @opindex mpcrel
12552 Use the pc-relative addressing mode of the 68000 directly, instead of
12553 using a global offset table.  At present, this option implies @option{-fpic},
12554 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
12555 not presently supported with @option{-mpcrel}, though this could be supported for
12556 68020 and higher processors.
12557
12558 @item -mno-strict-align
12559 @itemx -mstrict-align
12560 @opindex mno-strict-align
12561 @opindex mstrict-align
12562 Do not (do) assume that unaligned memory references will be handled by
12563 the system.
12564
12565 @item -msep-data
12566 Generate code that allows the data segment to be located in a different
12567 area of memory from the text segment.  This allows for execute in place in
12568 an environment without virtual memory management.  This option implies
12569 @option{-fPIC}.
12570
12571 @item -mno-sep-data
12572 Generate code that assumes that the data segment follows the text segment.
12573 This is the default.
12574
12575 @item -mid-shared-library
12576 Generate code that supports shared libraries via the library ID method.
12577 This allows for execute in place and shared libraries in an environment
12578 without virtual memory management.  This option implies @option{-fPIC}.
12579
12580 @item -mno-id-shared-library
12581 Generate code that doesn't assume ID based shared libraries are being used.
12582 This is the default.
12583
12584 @item -mshared-library-id=n
12585 Specified the identification number of the ID based shared library being
12586 compiled.  Specifying a value of 0 will generate more compact code, specifying
12587 other values will force the allocation of that number to the current
12588 library but is no more space or time efficient than omitting this option.
12589
12590 @item -mxgot
12591 @itemx -mno-xgot
12592 @opindex mxgot
12593 @opindex mno-xgot
12594 When generating position-independent code for ColdFire, generate code
12595 that works if the GOT has more than 8192 entries.  This code is
12596 larger and slower than code generated without this option.  On M680x0
12597 processors, this option is not needed; @option{-fPIC} suffices.
12598
12599 GCC normally uses a single instruction to load values from the GOT@.
12600 While this is relatively efficient, it only works if the GOT
12601 is smaller than about 64k.  Anything larger causes the linker
12602 to report an error such as:
12603
12604 @cindex relocation truncated to fit (ColdFire)
12605 @smallexample
12606 relocation truncated to fit: R_68K_GOT16O foobar
12607 @end smallexample
12608
12609 If this happens, you should recompile your code with @option{-mxgot}.
12610 It should then work with very large GOTs.  However, code generated with
12611 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
12612 the value of a global symbol.
12613
12614 Note that some linkers, including newer versions of the GNU linker,
12615 can create multiple GOTs and sort GOT entries.  If you have such a linker,
12616 you should only need to use @option{-mxgot} when compiling a single
12617 object file that accesses more than 8192 GOT entries.  Very few do.
12618
12619 These options have no effect unless GCC is generating
12620 position-independent code.
12621
12622 @end table
12623
12624 @node M68hc1x Options
12625 @subsection M68hc1x Options
12626 @cindex M68hc1x options
12627
12628 These are the @samp{-m} options defined for the 68hc11 and 68hc12
12629 microcontrollers.  The default values for these options depends on
12630 which style of microcontroller was selected when the compiler was configured;
12631 the defaults for the most common choices are given below.
12632
12633 @table @gcctabopt
12634 @item -m6811
12635 @itemx -m68hc11
12636 @opindex m6811
12637 @opindex m68hc11
12638 Generate output for a 68HC11.  This is the default
12639 when the compiler is configured for 68HC11-based systems.
12640
12641 @item -m6812
12642 @itemx -m68hc12
12643 @opindex m6812
12644 @opindex m68hc12
12645 Generate output for a 68HC12.  This is the default
12646 when the compiler is configured for 68HC12-based systems.
12647
12648 @item -m68S12
12649 @itemx -m68hcs12
12650 @opindex m68S12
12651 @opindex m68hcs12
12652 Generate output for a 68HCS12.
12653
12654 @item -mauto-incdec
12655 @opindex mauto-incdec
12656 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
12657 addressing modes.
12658
12659 @item -minmax
12660 @itemx -mnominmax
12661 @opindex minmax
12662 @opindex mnominmax
12663 Enable the use of 68HC12 min and max instructions.
12664
12665 @item -mlong-calls
12666 @itemx -mno-long-calls
12667 @opindex mlong-calls
12668 @opindex mno-long-calls
12669 Treat all calls as being far away (near).  If calls are assumed to be
12670 far away, the compiler will use the @code{call} instruction to
12671 call a function and the @code{rtc} instruction for returning.
12672
12673 @item -mshort
12674 @opindex mshort
12675 Consider type @code{int} to be 16 bits wide, like @code{short int}.
12676
12677 @item -msoft-reg-count=@var{count}
12678 @opindex msoft-reg-count
12679 Specify the number of pseudo-soft registers which are used for the
12680 code generation.  The maximum number is 32.  Using more pseudo-soft
12681 register may or may not result in better code depending on the program.
12682 The default is 4 for 68HC11 and 2 for 68HC12.
12683
12684 @end table
12685
12686 @node MCore Options
12687 @subsection MCore Options
12688 @cindex MCore options
12689
12690 These are the @samp{-m} options defined for the Motorola M*Core
12691 processors.
12692
12693 @table @gcctabopt
12694
12695 @item -mhardlit
12696 @itemx -mno-hardlit
12697 @opindex mhardlit
12698 @opindex mno-hardlit
12699 Inline constants into the code stream if it can be done in two
12700 instructions or less.
12701
12702 @item -mdiv
12703 @itemx -mno-div
12704 @opindex mdiv
12705 @opindex mno-div
12706 Use the divide instruction.  (Enabled by default).
12707
12708 @item -mrelax-immediate
12709 @itemx -mno-relax-immediate
12710 @opindex mrelax-immediate
12711 @opindex mno-relax-immediate
12712 Allow arbitrary sized immediates in bit operations.
12713
12714 @item -mwide-bitfields
12715 @itemx -mno-wide-bitfields
12716 @opindex mwide-bitfields
12717 @opindex mno-wide-bitfields
12718 Always treat bit-fields as int-sized.
12719
12720 @item -m4byte-functions
12721 @itemx -mno-4byte-functions
12722 @opindex m4byte-functions
12723 @opindex mno-4byte-functions
12724 Force all functions to be aligned to a four byte boundary.
12725
12726 @item -mcallgraph-data
12727 @itemx -mno-callgraph-data
12728 @opindex mcallgraph-data
12729 @opindex mno-callgraph-data
12730 Emit callgraph information.
12731
12732 @item -mslow-bytes
12733 @itemx -mno-slow-bytes
12734 @opindex mslow-bytes
12735 @opindex mno-slow-bytes
12736 Prefer word access when reading byte quantities.
12737
12738 @item -mlittle-endian
12739 @itemx -mbig-endian
12740 @opindex mlittle-endian
12741 @opindex mbig-endian
12742 Generate code for a little endian target.
12743
12744 @item -m210
12745 @itemx -m340
12746 @opindex m210
12747 @opindex m340
12748 Generate code for the 210 processor.
12749
12750 @item -mno-lsim
12751 @opindex mno-lsim
12752 Assume that run-time support has been provided and so omit the
12753 simulator library (@file{libsim.a)} from the linker command line.
12754
12755 @item -mstack-increment=@var{size}
12756 @opindex mstack-increment
12757 Set the maximum amount for a single stack increment operation.  Large
12758 values can increase the speed of programs which contain functions
12759 that need a large amount of stack space, but they can also trigger a
12760 segmentation fault if the stack is extended too much.  The default
12761 value is 0x1000.
12762
12763 @end table
12764
12765 @node MeP Options
12766 @subsection MeP Options
12767 @cindex MeP options
12768
12769 @table @gcctabopt
12770
12771 @item -mabsdiff
12772 @opindex mabsdiff
12773 Enables the @code{abs} instruction, which is the absolute difference
12774 between two registers.
12775
12776 @item -mall-opts
12777 @opindex mall-opts
12778 Enables all the optional instructions - average, multiply, divide, bit
12779 operations, leading zero, absolute difference, min/max, clip, and
12780 saturation.
12781
12782
12783 @item -maverage
12784 @opindex maverage
12785 Enables the @code{ave} instruction, which computes the average of two
12786 registers.
12787
12788 @item -mbased=@var{n}
12789 @opindex mbased=
12790 Variables of size @var{n} bytes or smaller will be placed in the
12791 @code{.based} section by default.  Based variables use the @code{$tp}
12792 register as a base register, and there is a 128 byte limit to the
12793 @code{.based} section.
12794
12795 @item -mbitops
12796 @opindex mbitops
12797 Enables the bit operation instructions - bit test (@code{btstm}), set
12798 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
12799 test-and-set (@code{tas}).
12800
12801 @item -mc=@var{name}
12802 @opindex mc=
12803 Selects which section constant data will be placed in.  @var{name} may
12804 be @code{tiny}, @code{near}, or @code{far}.
12805
12806 @item -mclip
12807 @opindex mclip
12808 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
12809 useful unless you also provide @code{-mminmax}.
12810
12811 @item -mconfig=@var{name}
12812 @opindex mconfig=
12813 Selects one of the build-in core configurations.  Each MeP chip has
12814 one or more modules in it; each module has a core CPU and a variety of
12815 coprocessors, optional instructions, and peripherals.  The
12816 @code{MeP-Integrator} tool, not part of GCC, provides these
12817 configurations through this option; using this option is the same as
12818 using all the corresponding command line options.  The default
12819 configuration is @code{default}.
12820
12821 @item -mcop
12822 @opindex mcop
12823 Enables the coprocessor instructions.  By default, this is a 32-bit
12824 coprocessor.  Note that the coprocessor is normally enabled via the
12825 @code{-mconfig=} option.
12826
12827 @item -mcop32
12828 @opindex mcop32
12829 Enables the 32-bit coprocessor's instructions.
12830
12831 @item -mcop64
12832 @opindex mcop64
12833 Enables the 64-bit coprocessor's instructions.
12834
12835 @item -mivc2
12836 @opindex mivc2
12837 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
12838
12839 @item -mdc
12840 @opindex mdc
12841 Causes constant variables to be placed in the @code{.near} section.
12842
12843 @item -mdiv
12844 @opindex mdiv
12845 Enables the @code{div} and @code{divu} instructions.
12846
12847 @item -meb
12848 @opindex meb
12849 Generate big-endian code.
12850
12851 @item -mel
12852 @opindex mel
12853 Generate little-endian code.
12854
12855 @item -mio-volatile
12856 @opindex mio-volatile
12857 Tells the compiler that any variable marked with the @code{io}
12858 attribute is to be considered volatile.
12859
12860 @item -ml
12861 @opindex ml
12862 Causes variables to be assigned to the @code{.far} section by default.
12863
12864 @item -mleadz
12865 @opindex mleadz
12866 Enables the @code{leadz} (leading zero) instruction.
12867
12868 @item -mm
12869 @opindex mm
12870 Causes variables to be assigned to the @code{.near} section by default.
12871
12872 @item -mminmax
12873 @opindex mminmax
12874 Enables the @code{min} and @code{max} instructions.
12875
12876 @item -mmult
12877 @opindex mmult
12878 Enables the multiplication and multiply-accumulate instructions.
12879
12880 @item -mno-opts
12881 @opindex mno-opts
12882 Disables all the optional instructions enabled by @code{-mall-opts}.
12883
12884 @item -mrepeat
12885 @opindex mrepeat
12886 Enables the @code{repeat} and @code{erepeat} instructions, used for
12887 low-overhead looping.
12888
12889 @item -ms
12890 @opindex ms
12891 Causes all variables to default to the @code{.tiny} section.  Note
12892 that there is a 65536 byte limit to this section.  Accesses to these
12893 variables use the @code{%gp} base register.
12894
12895 @item -msatur
12896 @opindex msatur
12897 Enables the saturation instructions.  Note that the compiler does not
12898 currently generate these itself, but this option is included for
12899 compatibility with other tools, like @code{as}.
12900
12901 @item -msdram
12902 @opindex msdram
12903 Link the SDRAM-based runtime instead of the default ROM-based runtime.
12904
12905 @item -msim
12906 @opindex msim
12907 Link the simulator runtime libraries.
12908
12909 @item -msimnovec
12910 @opindex msimnovec
12911 Link the simulator runtime libraries, excluding built-in support
12912 for reset and exception vectors and tables.
12913
12914 @item -mtf
12915 @opindex mtf
12916 Causes all functions to default to the @code{.far} section.  Without
12917 this option, functions default to the @code{.near} section.
12918
12919 @item -mtiny=@var{n}
12920 @opindex mtiny=
12921 Variables that are @var{n} bytes or smaller will be allocated to the
12922 @code{.tiny} section.  These variables use the @code{$gp} base
12923 register.  The default for this option is 4, but note that there's a
12924 65536 byte limit to the @code{.tiny} section.
12925
12926 @end table
12927
12928
12929 @node MIPS Options
12930 @subsection MIPS Options
12931 @cindex MIPS options
12932
12933 @table @gcctabopt
12934
12935 @item -EB
12936 @opindex EB
12937 Generate big-endian code.
12938
12939 @item -EL
12940 @opindex EL
12941 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
12942 configurations.
12943
12944 @item -march=@var{arch}
12945 @opindex march
12946 Generate code that will run on @var{arch}, which can be the name of a
12947 generic MIPS ISA, or the name of a particular processor.
12948 The ISA names are:
12949 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
12950 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
12951 The processor names are:
12952 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
12953 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
12954 @samp{5kc}, @samp{5kf},
12955 @samp{20kc},
12956 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
12957 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
12958 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
12959 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
12960 @samp{loongson2e}, @samp{loongson2f},
12961 @samp{m4k},
12962 @samp{octeon},
12963 @samp{orion},
12964 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
12965 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
12966 @samp{rm7000}, @samp{rm9000},
12967 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
12968 @samp{sb1},
12969 @samp{sr71000},
12970 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
12971 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
12972 and @samp{xlr}.
12973 The special value @samp{from-abi} selects the
12974 most compatible architecture for the selected ABI (that is,
12975 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
12976
12977 Native Linux/GNU toolchains also support the value @samp{native},
12978 which selects the best architecture option for the host processor.
12979 @option{-march=native} has no effect if GCC does not recognize
12980 the processor.
12981
12982 In processor names, a final @samp{000} can be abbreviated as @samp{k}
12983 (for example, @samp{-march=r2k}).  Prefixes are optional, and
12984 @samp{vr} may be written @samp{r}.
12985
12986 Names of the form @samp{@var{n}f2_1} refer to processors with
12987 FPUs clocked at half the rate of the core, names of the form
12988 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
12989 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
12990 processors with FPUs clocked a ratio of 3:2 with respect to the core.
12991 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
12992 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
12993 accepted as synonyms for @samp{@var{n}f1_1}.
12994
12995 GCC defines two macros based on the value of this option.  The first
12996 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
12997 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
12998 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
12999 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
13000 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
13001
13002 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
13003 above.  In other words, it will have the full prefix and will not
13004 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
13005 the macro names the resolved architecture (either @samp{"mips1"} or
13006 @samp{"mips3"}).  It names the default architecture when no
13007 @option{-march} option is given.
13008
13009 @item -mtune=@var{arch}
13010 @opindex mtune
13011 Optimize for @var{arch}.  Among other things, this option controls
13012 the way instructions are scheduled, and the perceived cost of arithmetic
13013 operations.  The list of @var{arch} values is the same as for
13014 @option{-march}.
13015
13016 When this option is not used, GCC will optimize for the processor
13017 specified by @option{-march}.  By using @option{-march} and
13018 @option{-mtune} together, it is possible to generate code that will
13019 run on a family of processors, but optimize the code for one
13020 particular member of that family.
13021
13022 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
13023 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
13024 @samp{-march} ones described above.
13025
13026 @item -mips1
13027 @opindex mips1
13028 Equivalent to @samp{-march=mips1}.
13029
13030 @item -mips2
13031 @opindex mips2
13032 Equivalent to @samp{-march=mips2}.
13033
13034 @item -mips3
13035 @opindex mips3
13036 Equivalent to @samp{-march=mips3}.
13037
13038 @item -mips4
13039 @opindex mips4
13040 Equivalent to @samp{-march=mips4}.
13041
13042 @item -mips32
13043 @opindex mips32
13044 Equivalent to @samp{-march=mips32}.
13045
13046 @item -mips32r2
13047 @opindex mips32r2
13048 Equivalent to @samp{-march=mips32r2}.
13049
13050 @item -mips64
13051 @opindex mips64
13052 Equivalent to @samp{-march=mips64}.
13053
13054 @item -mips64r2
13055 @opindex mips64r2
13056 Equivalent to @samp{-march=mips64r2}.
13057
13058 @item -mips16
13059 @itemx -mno-mips16
13060 @opindex mips16
13061 @opindex mno-mips16
13062 Generate (do not generate) MIPS16 code.  If GCC is targetting a
13063 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
13064
13065 MIPS16 code generation can also be controlled on a per-function basis
13066 by means of @code{mips16} and @code{nomips16} attributes.  
13067 @xref{Function Attributes}, for more information.
13068
13069 @item -mflip-mips16
13070 @opindex mflip-mips16
13071 Generate MIPS16 code on alternating functions.  This option is provided
13072 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
13073 not intended for ordinary use in compiling user code.
13074
13075 @item -minterlink-mips16
13076 @itemx -mno-interlink-mips16
13077 @opindex minterlink-mips16
13078 @opindex mno-interlink-mips16
13079 Require (do not require) that non-MIPS16 code be link-compatible with
13080 MIPS16 code.
13081
13082 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
13083 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
13084 therefore disables direct jumps unless GCC knows that the target of the
13085 jump is not MIPS16.
13086
13087 @item -mabi=32
13088 @itemx -mabi=o64
13089 @itemx -mabi=n32
13090 @itemx -mabi=64
13091 @itemx -mabi=eabi
13092 @opindex mabi=32
13093 @opindex mabi=o64
13094 @opindex mabi=n32
13095 @opindex mabi=64
13096 @opindex mabi=eabi
13097 Generate code for the given ABI@.
13098
13099 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
13100 generates 64-bit code when you select a 64-bit architecture, but you
13101 can use @option{-mgp32} to get 32-bit code instead.
13102
13103 For information about the O64 ABI, see
13104 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
13105
13106 GCC supports a variant of the o32 ABI in which floating-point registers
13107 are 64 rather than 32 bits wide.  You can select this combination with
13108 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
13109 and @samp{mfhc1} instructions and is therefore only supported for
13110 MIPS32R2 processors.
13111
13112 The register assignments for arguments and return values remain the
13113 same, but each scalar value is passed in a single 64-bit register
13114 rather than a pair of 32-bit registers.  For example, scalar
13115 floating-point values are returned in @samp{$f0} only, not a
13116 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
13117 remains the same, but all 64 bits are saved.
13118
13119 @item -mabicalls
13120 @itemx -mno-abicalls
13121 @opindex mabicalls
13122 @opindex mno-abicalls
13123 Generate (do not generate) code that is suitable for SVR4-style
13124 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
13125 systems.
13126
13127 @item -mshared
13128 @itemx -mno-shared
13129 Generate (do not generate) code that is fully position-independent,
13130 and that can therefore be linked into shared libraries.  This option
13131 only affects @option{-mabicalls}.
13132
13133 All @option{-mabicalls} code has traditionally been position-independent,
13134 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
13135 as an extension, the GNU toolchain allows executables to use absolute
13136 accesses for locally-binding symbols.  It can also use shorter GP
13137 initialization sequences and generate direct calls to locally-defined
13138 functions.  This mode is selected by @option{-mno-shared}.
13139
13140 @option{-mno-shared} depends on binutils 2.16 or higher and generates
13141 objects that can only be linked by the GNU linker.  However, the option
13142 does not affect the ABI of the final executable; it only affects the ABI
13143 of relocatable objects.  Using @option{-mno-shared} will generally make
13144 executables both smaller and quicker.
13145
13146 @option{-mshared} is the default.
13147
13148 @item -mplt
13149 @itemx -mno-plt
13150 @opindex mplt
13151 @opindex mno-plt
13152 Assume (do not assume) that the static and dynamic linkers
13153 support PLTs and copy relocations.  This option only affects
13154 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
13155 has no effect without @samp{-msym32}.
13156
13157 You can make @option{-mplt} the default by configuring
13158 GCC with @option{--with-mips-plt}.  The default is
13159 @option{-mno-plt} otherwise.
13160
13161 @item -mxgot
13162 @itemx -mno-xgot
13163 @opindex mxgot
13164 @opindex mno-xgot
13165 Lift (do not lift) the usual restrictions on the size of the global
13166 offset table.
13167
13168 GCC normally uses a single instruction to load values from the GOT@.
13169 While this is relatively efficient, it will only work if the GOT
13170 is smaller than about 64k.  Anything larger will cause the linker
13171 to report an error such as:
13172
13173 @cindex relocation truncated to fit (MIPS)
13174 @smallexample
13175 relocation truncated to fit: R_MIPS_GOT16 foobar
13176 @end smallexample
13177
13178 If this happens, you should recompile your code with @option{-mxgot}.
13179 It should then work with very large GOTs, although it will also be
13180 less efficient, since it will take three instructions to fetch the
13181 value of a global symbol.
13182
13183 Note that some linkers can create multiple GOTs.  If you have such a
13184 linker, you should only need to use @option{-mxgot} when a single object
13185 file accesses more than 64k's worth of GOT entries.  Very few do.
13186
13187 These options have no effect unless GCC is generating position
13188 independent code.
13189
13190 @item -mgp32
13191 @opindex mgp32
13192 Assume that general-purpose registers are 32 bits wide.
13193
13194 @item -mgp64
13195 @opindex mgp64
13196 Assume that general-purpose registers are 64 bits wide.
13197
13198 @item -mfp32
13199 @opindex mfp32
13200 Assume that floating-point registers are 32 bits wide.
13201
13202 @item -mfp64
13203 @opindex mfp64
13204 Assume that floating-point registers are 64 bits wide.
13205
13206 @item -mhard-float
13207 @opindex mhard-float
13208 Use floating-point coprocessor instructions.
13209
13210 @item -msoft-float
13211 @opindex msoft-float
13212 Do not use floating-point coprocessor instructions.  Implement
13213 floating-point calculations using library calls instead.
13214
13215 @item -msingle-float
13216 @opindex msingle-float
13217 Assume that the floating-point coprocessor only supports single-precision
13218 operations.
13219
13220 @item -mdouble-float
13221 @opindex mdouble-float
13222 Assume that the floating-point coprocessor supports double-precision
13223 operations.  This is the default.
13224
13225 @item -mllsc
13226 @itemx -mno-llsc
13227 @opindex mllsc
13228 @opindex mno-llsc
13229 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
13230 implement atomic memory built-in functions.  When neither option is
13231 specified, GCC will use the instructions if the target architecture
13232 supports them.
13233
13234 @option{-mllsc} is useful if the runtime environment can emulate the
13235 instructions and @option{-mno-llsc} can be useful when compiling for
13236 nonstandard ISAs.  You can make either option the default by
13237 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
13238 respectively.  @option{--with-llsc} is the default for some
13239 configurations; see the installation documentation for details.
13240
13241 @item -mdsp
13242 @itemx -mno-dsp
13243 @opindex mdsp
13244 @opindex mno-dsp
13245 Use (do not use) revision 1 of the MIPS DSP ASE@.
13246 @xref{MIPS DSP Built-in Functions}.  This option defines the
13247 preprocessor macro @samp{__mips_dsp}.  It also defines
13248 @samp{__mips_dsp_rev} to 1.
13249
13250 @item -mdspr2
13251 @itemx -mno-dspr2
13252 @opindex mdspr2
13253 @opindex mno-dspr2
13254 Use (do not use) revision 2 of the MIPS DSP ASE@.
13255 @xref{MIPS DSP Built-in Functions}.  This option defines the
13256 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
13257 It also defines @samp{__mips_dsp_rev} to 2.
13258
13259 @item -msmartmips
13260 @itemx -mno-smartmips
13261 @opindex msmartmips
13262 @opindex mno-smartmips
13263 Use (do not use) the MIPS SmartMIPS ASE.
13264
13265 @item -mpaired-single
13266 @itemx -mno-paired-single
13267 @opindex mpaired-single
13268 @opindex mno-paired-single
13269 Use (do not use) paired-single floating-point instructions.
13270 @xref{MIPS Paired-Single Support}.  This option requires
13271 hardware floating-point support to be enabled.
13272
13273 @item -mdmx
13274 @itemx -mno-mdmx
13275 @opindex mdmx
13276 @opindex mno-mdmx
13277 Use (do not use) MIPS Digital Media Extension instructions.
13278 This option can only be used when generating 64-bit code and requires
13279 hardware floating-point support to be enabled.
13280
13281 @item -mips3d
13282 @itemx -mno-mips3d
13283 @opindex mips3d
13284 @opindex mno-mips3d
13285 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
13286 The option @option{-mips3d} implies @option{-mpaired-single}.
13287
13288 @item -mmt
13289 @itemx -mno-mt
13290 @opindex mmt
13291 @opindex mno-mt
13292 Use (do not use) MT Multithreading instructions.
13293
13294 @item -mlong64
13295 @opindex mlong64
13296 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
13297 an explanation of the default and the way that the pointer size is
13298 determined.
13299
13300 @item -mlong32
13301 @opindex mlong32
13302 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
13303
13304 The default size of @code{int}s, @code{long}s and pointers depends on
13305 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
13306 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
13307 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
13308 or the same size as integer registers, whichever is smaller.
13309
13310 @item -msym32
13311 @itemx -mno-sym32
13312 @opindex msym32
13313 @opindex mno-sym32
13314 Assume (do not assume) that all symbols have 32-bit values, regardless
13315 of the selected ABI@.  This option is useful in combination with
13316 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
13317 to generate shorter and faster references to symbolic addresses.
13318
13319 @item -G @var{num}
13320 @opindex G
13321 Put definitions of externally-visible data in a small data section
13322 if that data is no bigger than @var{num} bytes.  GCC can then access
13323 the data more efficiently; see @option{-mgpopt} for details.
13324
13325 The default @option{-G} option depends on the configuration.
13326
13327 @item -mlocal-sdata
13328 @itemx -mno-local-sdata
13329 @opindex mlocal-sdata
13330 @opindex mno-local-sdata
13331 Extend (do not extend) the @option{-G} behavior to local data too,
13332 such as to static variables in C@.  @option{-mlocal-sdata} is the
13333 default for all configurations.
13334
13335 If the linker complains that an application is using too much small data,
13336 you might want to try rebuilding the less performance-critical parts with
13337 @option{-mno-local-sdata}.  You might also want to build large
13338 libraries with @option{-mno-local-sdata}, so that the libraries leave
13339 more room for the main program.
13340
13341 @item -mextern-sdata
13342 @itemx -mno-extern-sdata
13343 @opindex mextern-sdata
13344 @opindex mno-extern-sdata
13345 Assume (do not assume) that externally-defined data will be in
13346 a small data section if that data is within the @option{-G} limit.
13347 @option{-mextern-sdata} is the default for all configurations.
13348
13349 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
13350 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
13351 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
13352 is placed in a small data section.  If @var{Var} is defined by another
13353 module, you must either compile that module with a high-enough
13354 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
13355 definition.  If @var{Var} is common, you must link the application
13356 with a high-enough @option{-G} setting.
13357
13358 The easiest way of satisfying these restrictions is to compile
13359 and link every module with the same @option{-G} option.  However,
13360 you may wish to build a library that supports several different
13361 small data limits.  You can do this by compiling the library with
13362 the highest supported @option{-G} setting and additionally using
13363 @option{-mno-extern-sdata} to stop the library from making assumptions
13364 about externally-defined data.
13365
13366 @item -mgpopt
13367 @itemx -mno-gpopt
13368 @opindex mgpopt
13369 @opindex mno-gpopt
13370 Use (do not use) GP-relative accesses for symbols that are known to be
13371 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
13372 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
13373 configurations.
13374
13375 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
13376 might not hold the value of @code{_gp}.  For example, if the code is
13377 part of a library that might be used in a boot monitor, programs that
13378 call boot monitor routines will pass an unknown value in @code{$gp}.
13379 (In such situations, the boot monitor itself would usually be compiled
13380 with @option{-G0}.)
13381
13382 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
13383 @option{-mno-extern-sdata}.
13384
13385 @item -membedded-data
13386 @itemx -mno-embedded-data
13387 @opindex membedded-data
13388 @opindex mno-embedded-data
13389 Allocate variables to the read-only data section first if possible, then
13390 next in the small data section if possible, otherwise in data.  This gives
13391 slightly slower code than the default, but reduces the amount of RAM required
13392 when executing, and thus may be preferred for some embedded systems.
13393
13394 @item -muninit-const-in-rodata
13395 @itemx -mno-uninit-const-in-rodata
13396 @opindex muninit-const-in-rodata
13397 @opindex mno-uninit-const-in-rodata
13398 Put uninitialized @code{const} variables in the read-only data section.
13399 This option is only meaningful in conjunction with @option{-membedded-data}.
13400
13401 @item -mcode-readable=@var{setting}
13402 @opindex mcode-readable
13403 Specify whether GCC may generate code that reads from executable sections.
13404 There are three possible settings:
13405
13406 @table @gcctabopt
13407 @item -mcode-readable=yes
13408 Instructions may freely access executable sections.  This is the
13409 default setting.
13410
13411 @item -mcode-readable=pcrel
13412 MIPS16 PC-relative load instructions can access executable sections,
13413 but other instructions must not do so.  This option is useful on 4KSc
13414 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
13415 It is also useful on processors that can be configured to have a dual
13416 instruction/data SRAM interface and that, like the M4K, automatically
13417 redirect PC-relative loads to the instruction RAM.
13418
13419 @item -mcode-readable=no
13420 Instructions must not access executable sections.  This option can be
13421 useful on targets that are configured to have a dual instruction/data
13422 SRAM interface but that (unlike the M4K) do not automatically redirect
13423 PC-relative loads to the instruction RAM.
13424 @end table
13425
13426 @item -msplit-addresses
13427 @itemx -mno-split-addresses
13428 @opindex msplit-addresses
13429 @opindex mno-split-addresses
13430 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
13431 relocation operators.  This option has been superseded by
13432 @option{-mexplicit-relocs} but is retained for backwards compatibility.
13433
13434 @item -mexplicit-relocs
13435 @itemx -mno-explicit-relocs
13436 @opindex mexplicit-relocs
13437 @opindex mno-explicit-relocs
13438 Use (do not use) assembler relocation operators when dealing with symbolic
13439 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
13440 is to use assembler macros instead.
13441
13442 @option{-mexplicit-relocs} is the default if GCC was configured
13443 to use an assembler that supports relocation operators.
13444
13445 @item -mcheck-zero-division
13446 @itemx -mno-check-zero-division
13447 @opindex mcheck-zero-division
13448 @opindex mno-check-zero-division
13449 Trap (do not trap) on integer division by zero.
13450
13451 The default is @option{-mcheck-zero-division}.
13452
13453 @item -mdivide-traps
13454 @itemx -mdivide-breaks
13455 @opindex mdivide-traps
13456 @opindex mdivide-breaks
13457 MIPS systems check for division by zero by generating either a
13458 conditional trap or a break instruction.  Using traps results in
13459 smaller code, but is only supported on MIPS II and later.  Also, some
13460 versions of the Linux kernel have a bug that prevents trap from
13461 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
13462 allow conditional traps on architectures that support them and
13463 @option{-mdivide-breaks} to force the use of breaks.
13464
13465 The default is usually @option{-mdivide-traps}, but this can be
13466 overridden at configure time using @option{--with-divide=breaks}.
13467 Divide-by-zero checks can be completely disabled using
13468 @option{-mno-check-zero-division}.
13469
13470 @item -mmemcpy
13471 @itemx -mno-memcpy
13472 @opindex mmemcpy
13473 @opindex mno-memcpy
13474 Force (do not force) the use of @code{memcpy()} for non-trivial block
13475 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
13476 most constant-sized copies.
13477
13478 @item -mlong-calls
13479 @itemx -mno-long-calls
13480 @opindex mlong-calls
13481 @opindex mno-long-calls
13482 Disable (do not disable) use of the @code{jal} instruction.  Calling
13483 functions using @code{jal} is more efficient but requires the caller
13484 and callee to be in the same 256 megabyte segment.
13485
13486 This option has no effect on abicalls code.  The default is
13487 @option{-mno-long-calls}.
13488
13489 @item -mmad
13490 @itemx -mno-mad
13491 @opindex mmad
13492 @opindex mno-mad
13493 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
13494 instructions, as provided by the R4650 ISA@.
13495
13496 @item -mfused-madd
13497 @itemx -mno-fused-madd
13498 @opindex mfused-madd
13499 @opindex mno-fused-madd
13500 Enable (disable) use of the floating point multiply-accumulate
13501 instructions, when they are available.  The default is
13502 @option{-mfused-madd}.
13503
13504 When multiply-accumulate instructions are used, the intermediate
13505 product is calculated to infinite precision and is not subject to
13506 the FCSR Flush to Zero bit.  This may be undesirable in some
13507 circumstances.
13508
13509 @item -nocpp
13510 @opindex nocpp
13511 Tell the MIPS assembler to not run its preprocessor over user
13512 assembler files (with a @samp{.s} suffix) when assembling them.
13513
13514 @item -mfix-r4000
13515 @itemx -mno-fix-r4000
13516 @opindex mfix-r4000
13517 @opindex mno-fix-r4000
13518 Work around certain R4000 CPU errata:
13519 @itemize @minus
13520 @item
13521 A double-word or a variable shift may give an incorrect result if executed
13522 immediately after starting an integer division.
13523 @item
13524 A double-word or a variable shift may give an incorrect result if executed
13525 while an integer multiplication is in progress.
13526 @item
13527 An integer division may give an incorrect result if started in a delay slot
13528 of a taken branch or a jump.
13529 @end itemize
13530
13531 @item -mfix-r4400
13532 @itemx -mno-fix-r4400
13533 @opindex mfix-r4400
13534 @opindex mno-fix-r4400
13535 Work around certain R4400 CPU errata:
13536 @itemize @minus
13537 @item
13538 A double-word or a variable shift may give an incorrect result if executed
13539 immediately after starting an integer division.
13540 @end itemize
13541
13542 @item -mfix-r10000
13543 @itemx -mno-fix-r10000
13544 @opindex mfix-r10000
13545 @opindex mno-fix-r10000
13546 Work around certain R10000 errata:
13547 @itemize @minus
13548 @item
13549 @code{ll}/@code{sc} sequences may not behave atomically on revisions
13550 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
13551 @end itemize
13552
13553 This option can only be used if the target architecture supports
13554 branch-likely instructions.  @option{-mfix-r10000} is the default when
13555 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
13556 otherwise.
13557
13558 @item -mfix-vr4120
13559 @itemx -mno-fix-vr4120
13560 @opindex mfix-vr4120
13561 Work around certain VR4120 errata:
13562 @itemize @minus
13563 @item
13564 @code{dmultu} does not always produce the correct result.
13565 @item
13566 @code{div} and @code{ddiv} do not always produce the correct result if one
13567 of the operands is negative.
13568 @end itemize
13569 The workarounds for the division errata rely on special functions in
13570 @file{libgcc.a}.  At present, these functions are only provided by
13571 the @code{mips64vr*-elf} configurations.
13572
13573 Other VR4120 errata require a nop to be inserted between certain pairs of
13574 instructions.  These errata are handled by the assembler, not by GCC itself.
13575
13576 @item -mfix-vr4130
13577 @opindex mfix-vr4130
13578 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
13579 workarounds are implemented by the assembler rather than by GCC,
13580 although GCC will avoid using @code{mflo} and @code{mfhi} if the
13581 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
13582 instructions are available instead.
13583
13584 @item -mfix-sb1
13585 @itemx -mno-fix-sb1
13586 @opindex mfix-sb1
13587 Work around certain SB-1 CPU core errata.
13588 (This flag currently works around the SB-1 revision 2
13589 ``F1'' and ``F2'' floating point errata.)
13590
13591 @item -mr10k-cache-barrier=@var{setting}
13592 @opindex mr10k-cache-barrier
13593 Specify whether GCC should insert cache barriers to avoid the
13594 side-effects of speculation on R10K processors.
13595
13596 In common with many processors, the R10K tries to predict the outcome
13597 of a conditional branch and speculatively executes instructions from
13598 the ``taken'' branch.  It later aborts these instructions if the
13599 predicted outcome was wrong.  However, on the R10K, even aborted
13600 instructions can have side effects.
13601
13602 This problem only affects kernel stores and, depending on the system,
13603 kernel loads.  As an example, a speculatively-executed store may load
13604 the target memory into cache and mark the cache line as dirty, even if
13605 the store itself is later aborted.  If a DMA operation writes to the
13606 same area of memory before the ``dirty'' line is flushed, the cached
13607 data will overwrite the DMA-ed data.  See the R10K processor manual
13608 for a full description, including other potential problems.
13609
13610 One workaround is to insert cache barrier instructions before every memory
13611 access that might be speculatively executed and that might have side
13612 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
13613 controls GCC's implementation of this workaround.  It assumes that
13614 aborted accesses to any byte in the following regions will not have
13615 side effects:
13616
13617 @enumerate
13618 @item
13619 the memory occupied by the current function's stack frame;
13620
13621 @item
13622 the memory occupied by an incoming stack argument;
13623
13624 @item
13625 the memory occupied by an object with a link-time-constant address.
13626 @end enumerate
13627
13628 It is the kernel's responsibility to ensure that speculative
13629 accesses to these regions are indeed safe.
13630
13631 If the input program contains a function declaration such as:
13632
13633 @smallexample
13634 void foo (void);
13635 @end smallexample
13636
13637 then the implementation of @code{foo} must allow @code{j foo} and
13638 @code{jal foo} to be executed speculatively.  GCC honors this
13639 restriction for functions it compiles itself.  It expects non-GCC
13640 functions (such as hand-written assembly code) to do the same.
13641
13642 The option has three forms:
13643
13644 @table @gcctabopt
13645 @item -mr10k-cache-barrier=load-store
13646 Insert a cache barrier before a load or store that might be
13647 speculatively executed and that might have side effects even
13648 if aborted.
13649
13650 @item -mr10k-cache-barrier=store
13651 Insert a cache barrier before a store that might be speculatively
13652 executed and that might have side effects even if aborted.
13653
13654 @item -mr10k-cache-barrier=none
13655 Disable the insertion of cache barriers.  This is the default setting.
13656 @end table
13657
13658 @item -mflush-func=@var{func}
13659 @itemx -mno-flush-func
13660 @opindex mflush-func
13661 Specifies the function to call to flush the I and D caches, or to not
13662 call any such function.  If called, the function must take the same
13663 arguments as the common @code{_flush_func()}, that is, the address of the
13664 memory range for which the cache is being flushed, the size of the
13665 memory range, and the number 3 (to flush both caches).  The default
13666 depends on the target GCC was configured for, but commonly is either
13667 @samp{_flush_func} or @samp{__cpu_flush}.
13668
13669 @item mbranch-cost=@var{num}
13670 @opindex mbranch-cost
13671 Set the cost of branches to roughly @var{num} ``simple'' instructions.
13672 This cost is only a heuristic and is not guaranteed to produce
13673 consistent results across releases.  A zero cost redundantly selects
13674 the default, which is based on the @option{-mtune} setting.
13675
13676 @item -mbranch-likely
13677 @itemx -mno-branch-likely
13678 @opindex mbranch-likely
13679 @opindex mno-branch-likely
13680 Enable or disable use of Branch Likely instructions, regardless of the
13681 default for the selected architecture.  By default, Branch Likely
13682 instructions may be generated if they are supported by the selected
13683 architecture.  An exception is for the MIPS32 and MIPS64 architectures
13684 and processors which implement those architectures; for those, Branch
13685 Likely instructions will not be generated by default because the MIPS32
13686 and MIPS64 architectures specifically deprecate their use.
13687
13688 @item -mfp-exceptions
13689 @itemx -mno-fp-exceptions
13690 @opindex mfp-exceptions
13691 Specifies whether FP exceptions are enabled.  This affects how we schedule
13692 FP instructions for some processors.  The default is that FP exceptions are
13693 enabled.
13694
13695 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
13696 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
13697 FP pipe.
13698
13699 @item -mvr4130-align
13700 @itemx -mno-vr4130-align
13701 @opindex mvr4130-align
13702 The VR4130 pipeline is two-way superscalar, but can only issue two
13703 instructions together if the first one is 8-byte aligned.  When this
13704 option is enabled, GCC will align pairs of instructions that it
13705 thinks should execute in parallel.
13706
13707 This option only has an effect when optimizing for the VR4130.
13708 It normally makes code faster, but at the expense of making it bigger.
13709 It is enabled by default at optimization level @option{-O3}.
13710 @end table
13711
13712 @node MMIX Options
13713 @subsection MMIX Options
13714 @cindex MMIX Options
13715
13716 These options are defined for the MMIX:
13717
13718 @table @gcctabopt
13719 @item -mlibfuncs
13720 @itemx -mno-libfuncs
13721 @opindex mlibfuncs
13722 @opindex mno-libfuncs
13723 Specify that intrinsic library functions are being compiled, passing all
13724 values in registers, no matter the size.
13725
13726 @item -mepsilon
13727 @itemx -mno-epsilon
13728 @opindex mepsilon
13729 @opindex mno-epsilon
13730 Generate floating-point comparison instructions that compare with respect
13731 to the @code{rE} epsilon register.
13732
13733 @item -mabi=mmixware
13734 @itemx -mabi=gnu
13735 @opindex mabi=mmixware
13736 @opindex mabi=gnu
13737 Generate code that passes function parameters and return values that (in
13738 the called function) are seen as registers @code{$0} and up, as opposed to
13739 the GNU ABI which uses global registers @code{$231} and up.
13740
13741 @item -mzero-extend
13742 @itemx -mno-zero-extend
13743 @opindex mzero-extend
13744 @opindex mno-zero-extend
13745 When reading data from memory in sizes shorter than 64 bits, use (do not
13746 use) zero-extending load instructions by default, rather than
13747 sign-extending ones.
13748
13749 @item -mknuthdiv
13750 @itemx -mno-knuthdiv
13751 @opindex mknuthdiv
13752 @opindex mno-knuthdiv
13753 Make the result of a division yielding a remainder have the same sign as
13754 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
13755 remainder follows the sign of the dividend.  Both methods are
13756 arithmetically valid, the latter being almost exclusively used.
13757
13758 @item -mtoplevel-symbols
13759 @itemx -mno-toplevel-symbols
13760 @opindex mtoplevel-symbols
13761 @opindex mno-toplevel-symbols
13762 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
13763 code can be used with the @code{PREFIX} assembly directive.
13764
13765 @item -melf
13766 @opindex melf
13767 Generate an executable in the ELF format, rather than the default
13768 @samp{mmo} format used by the @command{mmix} simulator.
13769
13770 @item -mbranch-predict
13771 @itemx -mno-branch-predict
13772 @opindex mbranch-predict
13773 @opindex mno-branch-predict
13774 Use (do not use) the probable-branch instructions, when static branch
13775 prediction indicates a probable branch.
13776
13777 @item -mbase-addresses
13778 @itemx -mno-base-addresses
13779 @opindex mbase-addresses
13780 @opindex mno-base-addresses
13781 Generate (do not generate) code that uses @emph{base addresses}.  Using a
13782 base address automatically generates a request (handled by the assembler
13783 and the linker) for a constant to be set up in a global register.  The
13784 register is used for one or more base address requests within the range 0
13785 to 255 from the value held in the register.  The generally leads to short
13786 and fast code, but the number of different data items that can be
13787 addressed is limited.  This means that a program that uses lots of static
13788 data may require @option{-mno-base-addresses}.
13789
13790 @item -msingle-exit
13791 @itemx -mno-single-exit
13792 @opindex msingle-exit
13793 @opindex mno-single-exit
13794 Force (do not force) generated code to have a single exit point in each
13795 function.
13796 @end table
13797
13798 @node MN10300 Options
13799 @subsection MN10300 Options
13800 @cindex MN10300 options
13801
13802 These @option{-m} options are defined for Matsushita MN10300 architectures:
13803
13804 @table @gcctabopt
13805 @item -mmult-bug
13806 @opindex mmult-bug
13807 Generate code to avoid bugs in the multiply instructions for the MN10300
13808 processors.  This is the default.
13809
13810 @item -mno-mult-bug
13811 @opindex mno-mult-bug
13812 Do not generate code to avoid bugs in the multiply instructions for the
13813 MN10300 processors.
13814
13815 @item -mam33
13816 @opindex mam33
13817 Generate code which uses features specific to the AM33 processor.
13818
13819 @item -mno-am33
13820 @opindex mno-am33
13821 Do not generate code which uses features specific to the AM33 processor.  This
13822 is the default.
13823
13824 @item -mreturn-pointer-on-d0
13825 @opindex mreturn-pointer-on-d0
13826 When generating a function which returns a pointer, return the pointer
13827 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
13828 only in a0, and attempts to call such functions without a prototype
13829 would result in errors.  Note that this option is on by default; use
13830 @option{-mno-return-pointer-on-d0} to disable it.
13831
13832 @item -mno-crt0
13833 @opindex mno-crt0
13834 Do not link in the C run-time initialization object file.
13835
13836 @item -mrelax
13837 @opindex mrelax
13838 Indicate to the linker that it should perform a relaxation optimization pass
13839 to shorten branches, calls and absolute memory addresses.  This option only
13840 has an effect when used on the command line for the final link step.
13841
13842 This option makes symbolic debugging impossible.
13843 @end table
13844
13845 @node PDP-11 Options
13846 @subsection PDP-11 Options
13847 @cindex PDP-11 Options
13848
13849 These options are defined for the PDP-11:
13850
13851 @table @gcctabopt
13852 @item -mfpu
13853 @opindex mfpu
13854 Use hardware FPP floating point.  This is the default.  (FIS floating
13855 point on the PDP-11/40 is not supported.)
13856
13857 @item -msoft-float
13858 @opindex msoft-float
13859 Do not use hardware floating point.
13860
13861 @item -mac0
13862 @opindex mac0
13863 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
13864
13865 @item -mno-ac0
13866 @opindex mno-ac0
13867 Return floating-point results in memory.  This is the default.
13868
13869 @item -m40
13870 @opindex m40
13871 Generate code for a PDP-11/40.
13872
13873 @item -m45
13874 @opindex m45
13875 Generate code for a PDP-11/45.  This is the default.
13876
13877 @item -m10
13878 @opindex m10
13879 Generate code for a PDP-11/10.
13880
13881 @item -mbcopy-builtin
13882 @opindex mbcopy-builtin
13883 Use inline @code{movmemhi} patterns for copying memory.  This is the
13884 default.
13885
13886 @item -mbcopy
13887 @opindex mbcopy
13888 Do not use inline @code{movmemhi} patterns for copying memory.
13889
13890 @item -mint16
13891 @itemx -mno-int32
13892 @opindex mint16
13893 @opindex mno-int32
13894 Use 16-bit @code{int}.  This is the default.
13895
13896 @item -mint32
13897 @itemx -mno-int16
13898 @opindex mint32
13899 @opindex mno-int16
13900 Use 32-bit @code{int}.
13901
13902 @item -mfloat64
13903 @itemx -mno-float32
13904 @opindex mfloat64
13905 @opindex mno-float32
13906 Use 64-bit @code{float}.  This is the default.
13907
13908 @item -mfloat32
13909 @itemx -mno-float64
13910 @opindex mfloat32
13911 @opindex mno-float64
13912 Use 32-bit @code{float}.
13913
13914 @item -mabshi
13915 @opindex mabshi
13916 Use @code{abshi2} pattern.  This is the default.
13917
13918 @item -mno-abshi
13919 @opindex mno-abshi
13920 Do not use @code{abshi2} pattern.
13921
13922 @item -mbranch-expensive
13923 @opindex mbranch-expensive
13924 Pretend that branches are expensive.  This is for experimenting with
13925 code generation only.
13926
13927 @item -mbranch-cheap
13928 @opindex mbranch-cheap
13929 Do not pretend that branches are expensive.  This is the default.
13930
13931 @item -msplit
13932 @opindex msplit
13933 Generate code for a system with split I&D@.
13934
13935 @item -mno-split
13936 @opindex mno-split
13937 Generate code for a system without split I&D@.  This is the default.
13938
13939 @item -munix-asm
13940 @opindex munix-asm
13941 Use Unix assembler syntax.  This is the default when configured for
13942 @samp{pdp11-*-bsd}.
13943
13944 @item -mdec-asm
13945 @opindex mdec-asm
13946 Use DEC assembler syntax.  This is the default when configured for any
13947 PDP-11 target other than @samp{pdp11-*-bsd}.
13948 @end table
13949
13950 @node picoChip Options
13951 @subsection picoChip Options
13952 @cindex picoChip options
13953
13954 These @samp{-m} options are defined for picoChip implementations:
13955
13956 @table @gcctabopt
13957
13958 @item -mae=@var{ae_type}
13959 @opindex mcpu
13960 Set the instruction set, register set, and instruction scheduling
13961 parameters for array element type @var{ae_type}.  Supported values
13962 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
13963
13964 @option{-mae=ANY} selects a completely generic AE type.  Code
13965 generated with this option will run on any of the other AE types.  The
13966 code will not be as efficient as it would be if compiled for a specific
13967 AE type, and some types of operation (e.g., multiplication) will not
13968 work properly on all types of AE.
13969
13970 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
13971 for compiled code, and is the default.
13972
13973 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
13974 option may suffer from poor performance of byte (char) manipulation,
13975 since the DSP AE does not provide hardware support for byte load/stores.
13976
13977 @item -msymbol-as-address
13978 Enable the compiler to directly use a symbol name as an address in a
13979 load/store instruction, without first loading it into a
13980 register.  Typically, the use of this option will generate larger
13981 programs, which run faster than when the option isn't used.  However, the
13982 results vary from program to program, so it is left as a user option,
13983 rather than being permanently enabled.
13984
13985 @item -mno-inefficient-warnings
13986 Disables warnings about the generation of inefficient code.  These
13987 warnings can be generated, for example, when compiling code which
13988 performs byte-level memory operations on the MAC AE type.  The MAC AE has
13989 no hardware support for byte-level memory operations, so all byte
13990 load/stores must be synthesized from word load/store operations.  This is
13991 inefficient and a warning will be generated indicating to the programmer
13992 that they should rewrite the code to avoid byte operations, or to target
13993 an AE type which has the necessary hardware support.  This option enables
13994 the warning to be turned off.
13995
13996 @end table
13997
13998 @node PowerPC Options
13999 @subsection PowerPC Options
14000 @cindex PowerPC options
14001
14002 These are listed under @xref{RS/6000 and PowerPC Options}.
14003
14004 @node RS/6000 and PowerPC Options
14005 @subsection IBM RS/6000 and PowerPC Options
14006 @cindex RS/6000 and PowerPC Options
14007 @cindex IBM RS/6000 and PowerPC Options
14008
14009 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
14010 @table @gcctabopt
14011 @item -mpower
14012 @itemx -mno-power
14013 @itemx -mpower2
14014 @itemx -mno-power2
14015 @itemx -mpowerpc
14016 @itemx -mno-powerpc
14017 @itemx -mpowerpc-gpopt
14018 @itemx -mno-powerpc-gpopt
14019 @itemx -mpowerpc-gfxopt
14020 @itemx -mno-powerpc-gfxopt
14021 @itemx -mpowerpc64
14022 @itemx -mno-powerpc64
14023 @itemx -mmfcrf
14024 @itemx -mno-mfcrf
14025 @itemx -mpopcntb
14026 @itemx -mno-popcntb
14027 @itemx -mfprnd
14028 @itemx -mno-fprnd
14029 @itemx -mcmpb
14030 @itemx -mno-cmpb
14031 @itemx -mmfpgpr
14032 @itemx -mno-mfpgpr
14033 @itemx -mhard-dfp
14034 @itemx -mno-hard-dfp
14035 @opindex mpower
14036 @opindex mno-power
14037 @opindex mpower2
14038 @opindex mno-power2
14039 @opindex mpowerpc
14040 @opindex mno-powerpc
14041 @opindex mpowerpc-gpopt
14042 @opindex mno-powerpc-gpopt
14043 @opindex mpowerpc-gfxopt
14044 @opindex mno-powerpc-gfxopt
14045 @opindex mpowerpc64
14046 @opindex mno-powerpc64
14047 @opindex mmfcrf
14048 @opindex mno-mfcrf
14049 @opindex mpopcntb
14050 @opindex mno-popcntb
14051 @opindex mfprnd
14052 @opindex mno-fprnd
14053 @opindex mcmpb
14054 @opindex mno-cmpb
14055 @opindex mmfpgpr
14056 @opindex mno-mfpgpr
14057 @opindex mhard-dfp
14058 @opindex mno-hard-dfp
14059 GCC supports two related instruction set architectures for the
14060 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
14061 instructions supported by the @samp{rios} chip set used in the original
14062 RS/6000 systems and the @dfn{PowerPC} instruction set is the
14063 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
14064 the IBM 4xx, 6xx, and follow-on microprocessors.
14065
14066 Neither architecture is a subset of the other.  However there is a
14067 large common subset of instructions supported by both.  An MQ
14068 register is included in processors supporting the POWER architecture.
14069
14070 You use these options to specify which instructions are available on the
14071 processor you are using.  The default value of these options is
14072 determined when configuring GCC@.  Specifying the
14073 @option{-mcpu=@var{cpu_type}} overrides the specification of these
14074 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
14075 rather than the options listed above.
14076
14077 The @option{-mpower} option allows GCC to generate instructions that
14078 are found only in the POWER architecture and to use the MQ register.
14079 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
14080 to generate instructions that are present in the POWER2 architecture but
14081 not the original POWER architecture.
14082
14083 The @option{-mpowerpc} option allows GCC to generate instructions that
14084 are found only in the 32-bit subset of the PowerPC architecture.
14085 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
14086 GCC to use the optional PowerPC architecture instructions in the
14087 General Purpose group, including floating-point square root.  Specifying
14088 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
14089 use the optional PowerPC architecture instructions in the Graphics
14090 group, including floating-point select.
14091
14092 The @option{-mmfcrf} option allows GCC to generate the move from
14093 condition register field instruction implemented on the POWER4
14094 processor and other processors that support the PowerPC V2.01
14095 architecture.
14096 The @option{-mpopcntb} option allows GCC to generate the popcount and
14097 double precision FP reciprocal estimate instruction implemented on the
14098 POWER5 processor and other processors that support the PowerPC V2.02
14099 architecture.
14100 The @option{-mfprnd} option allows GCC to generate the FP round to
14101 integer instructions implemented on the POWER5+ processor and other
14102 processors that support the PowerPC V2.03 architecture.
14103 The @option{-mcmpb} option allows GCC to generate the compare bytes
14104 instruction implemented on the POWER6 processor and other processors
14105 that support the PowerPC V2.05 architecture.
14106 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
14107 general purpose register instructions implemented on the POWER6X
14108 processor and other processors that support the extended PowerPC V2.05
14109 architecture.
14110 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
14111 point instructions implemented on some POWER processors.
14112
14113 The @option{-mpowerpc64} option allows GCC to generate the additional
14114 64-bit instructions that are found in the full PowerPC64 architecture
14115 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
14116 @option{-mno-powerpc64}.
14117
14118 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
14119 will use only the instructions in the common subset of both
14120 architectures plus some special AIX common-mode calls, and will not use
14121 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
14122 permits GCC to use any instruction from either architecture and to
14123 allow use of the MQ register; specify this for the Motorola MPC601.
14124
14125 @item -mnew-mnemonics
14126 @itemx -mold-mnemonics
14127 @opindex mnew-mnemonics
14128 @opindex mold-mnemonics
14129 Select which mnemonics to use in the generated assembler code.  With
14130 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
14131 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
14132 assembler mnemonics defined for the POWER architecture.  Instructions
14133 defined in only one architecture have only one mnemonic; GCC uses that
14134 mnemonic irrespective of which of these options is specified.
14135
14136 GCC defaults to the mnemonics appropriate for the architecture in
14137 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
14138 value of these option.  Unless you are building a cross-compiler, you
14139 should normally not specify either @option{-mnew-mnemonics} or
14140 @option{-mold-mnemonics}, but should instead accept the default.
14141
14142 @item -mcpu=@var{cpu_type}
14143 @opindex mcpu
14144 Set architecture type, register usage, choice of mnemonics, and
14145 instruction scheduling parameters for machine type @var{cpu_type}.
14146 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
14147 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
14148 @samp{505}, @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
14149 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
14150 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
14151 @samp{860}, @samp{970}, @samp{8540}, @samp{e300c2}, @samp{e300c3},
14152 @samp{e500mc}, @samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5},
14153 @samp{power}, @samp{power2}, @samp{power3}, @samp{power4},
14154 @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x}, @samp{power7}
14155 @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
14156 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
14157
14158 @option{-mcpu=common} selects a completely generic processor.  Code
14159 generated under this option will run on any POWER or PowerPC processor.
14160 GCC will use only the instructions in the common subset of both
14161 architectures, and will not use the MQ register.  GCC assumes a generic
14162 processor model for scheduling purposes.
14163
14164 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
14165 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
14166 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
14167 types, with an appropriate, generic processor model assumed for
14168 scheduling purposes.
14169
14170 The other options specify a specific processor.  Code generated under
14171 those options will run best on that processor, and may not run at all on
14172 others.
14173
14174 The @option{-mcpu} options automatically enable or disable the
14175 following options:
14176
14177 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
14178 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
14179 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
14180 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
14181
14182 The particular options set for any particular CPU will vary between
14183 compiler versions, depending on what setting seems to produce optimal
14184 code for that CPU; it doesn't necessarily reflect the actual hardware's
14185 capabilities.  If you wish to set an individual option to a particular
14186 value, you may specify it after the @option{-mcpu} option, like
14187 @samp{-mcpu=970 -mno-altivec}.
14188
14189 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
14190 not enabled or disabled by the @option{-mcpu} option at present because
14191 AIX does not have full support for these options.  You may still
14192 enable or disable them individually if you're sure it'll work in your
14193 environment.
14194
14195 @item -mtune=@var{cpu_type}
14196 @opindex mtune
14197 Set the instruction scheduling parameters for machine type
14198 @var{cpu_type}, but do not set the architecture type, register usage, or
14199 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
14200 values for @var{cpu_type} are used for @option{-mtune} as for
14201 @option{-mcpu}.  If both are specified, the code generated will use the
14202 architecture, registers, and mnemonics set by @option{-mcpu}, but the
14203 scheduling parameters set by @option{-mtune}.
14204
14205 @item -mswdiv
14206 @itemx -mno-swdiv
14207 @opindex mswdiv
14208 @opindex mno-swdiv
14209 Generate code to compute division as reciprocal estimate and iterative
14210 refinement, creating opportunities for increased throughput.  This
14211 feature requires: optional PowerPC Graphics instruction set for single
14212 precision and FRE instruction for double precision, assuming divides
14213 cannot generate user-visible traps, and the domain values not include
14214 Infinities, denormals or zero denominator.
14215
14216 @item -maltivec
14217 @itemx -mno-altivec
14218 @opindex maltivec
14219 @opindex mno-altivec
14220 Generate code that uses (does not use) AltiVec instructions, and also
14221 enable the use of built-in functions that allow more direct access to
14222 the AltiVec instruction set.  You may also need to set
14223 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
14224 enhancements.
14225
14226 @item -mvrsave
14227 @itemx -mno-vrsave
14228 @opindex mvrsave
14229 @opindex mno-vrsave
14230 Generate VRSAVE instructions when generating AltiVec code.
14231
14232 @item -mgen-cell-microcode
14233 @opindex mgen-cell-microcode
14234 Generate Cell microcode instructions
14235
14236 @item -mwarn-cell-microcode
14237 @opindex mwarn-cell-microcode
14238 Warning when a Cell microcode instruction is going to emitted.  An example
14239 of a Cell microcode instruction is a variable shift.
14240
14241 @item -msecure-plt
14242 @opindex msecure-plt
14243 Generate code that allows ld and ld.so to build executables and shared
14244 libraries with non-exec .plt and .got sections.  This is a PowerPC
14245 32-bit SYSV ABI option.
14246
14247 @item -mbss-plt
14248 @opindex mbss-plt
14249 Generate code that uses a BSS .plt section that ld.so fills in, and
14250 requires .plt and .got sections that are both writable and executable.
14251 This is a PowerPC 32-bit SYSV ABI option.
14252
14253 @item -misel
14254 @itemx -mno-isel
14255 @opindex misel
14256 @opindex mno-isel
14257 This switch enables or disables the generation of ISEL instructions.
14258
14259 @item -misel=@var{yes/no}
14260 This switch has been deprecated.  Use @option{-misel} and
14261 @option{-mno-isel} instead.
14262
14263 @item -mspe
14264 @itemx -mno-spe
14265 @opindex mspe
14266 @opindex mno-spe
14267 This switch enables or disables the generation of SPE simd
14268 instructions.
14269
14270 @item -mpaired
14271 @itemx -mno-paired
14272 @opindex mpaired
14273 @opindex mno-paired
14274 This switch enables or disables the generation of PAIRED simd
14275 instructions.
14276
14277 @item -mspe=@var{yes/no}
14278 This option has been deprecated.  Use @option{-mspe} and
14279 @option{-mno-spe} instead.
14280
14281 @item -mfloat-gprs=@var{yes/single/double/no}
14282 @itemx -mfloat-gprs
14283 @opindex mfloat-gprs
14284 This switch enables or disables the generation of floating point
14285 operations on the general purpose registers for architectures that
14286 support it.
14287
14288 The argument @var{yes} or @var{single} enables the use of
14289 single-precision floating point operations.
14290
14291 The argument @var{double} enables the use of single and
14292 double-precision floating point operations.
14293
14294 The argument @var{no} disables floating point operations on the
14295 general purpose registers.
14296
14297 This option is currently only available on the MPC854x.
14298
14299 @item -m32
14300 @itemx -m64
14301 @opindex m32
14302 @opindex m64
14303 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
14304 targets (including GNU/Linux).  The 32-bit environment sets int, long
14305 and pointer to 32 bits and generates code that runs on any PowerPC
14306 variant.  The 64-bit environment sets int to 32 bits and long and
14307 pointer to 64 bits, and generates code for PowerPC64, as for
14308 @option{-mpowerpc64}.
14309
14310 @item -mfull-toc
14311 @itemx -mno-fp-in-toc
14312 @itemx -mno-sum-in-toc
14313 @itemx -mminimal-toc
14314 @opindex mfull-toc
14315 @opindex mno-fp-in-toc
14316 @opindex mno-sum-in-toc
14317 @opindex mminimal-toc
14318 Modify generation of the TOC (Table Of Contents), which is created for
14319 every executable file.  The @option{-mfull-toc} option is selected by
14320 default.  In that case, GCC will allocate at least one TOC entry for
14321 each unique non-automatic variable reference in your program.  GCC
14322 will also place floating-point constants in the TOC@.  However, only
14323 16,384 entries are available in the TOC@.
14324
14325 If you receive a linker error message that saying you have overflowed
14326 the available TOC space, you can reduce the amount of TOC space used
14327 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
14328 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
14329 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
14330 generate code to calculate the sum of an address and a constant at
14331 run-time instead of putting that sum into the TOC@.  You may specify one
14332 or both of these options.  Each causes GCC to produce very slightly
14333 slower and larger code at the expense of conserving TOC space.
14334
14335 If you still run out of space in the TOC even when you specify both of
14336 these options, specify @option{-mminimal-toc} instead.  This option causes
14337 GCC to make only one TOC entry for every file.  When you specify this
14338 option, GCC will produce code that is slower and larger but which
14339 uses extremely little TOC space.  You may wish to use this option
14340 only on files that contain less frequently executed code.
14341
14342 @item -maix64
14343 @itemx -maix32
14344 @opindex maix64
14345 @opindex maix32
14346 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
14347 @code{long} type, and the infrastructure needed to support them.
14348 Specifying @option{-maix64} implies @option{-mpowerpc64} and
14349 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
14350 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
14351
14352 @item -mxl-compat
14353 @itemx -mno-xl-compat
14354 @opindex mxl-compat
14355 @opindex mno-xl-compat
14356 Produce code that conforms more closely to IBM XL compiler semantics
14357 when using AIX-compatible ABI@.  Pass floating-point arguments to
14358 prototyped functions beyond the register save area (RSA) on the stack
14359 in addition to argument FPRs.  Do not assume that most significant
14360 double in 128-bit long double value is properly rounded when comparing
14361 values and converting to double.  Use XL symbol names for long double
14362 support routines.
14363
14364 The AIX calling convention was extended but not initially documented to
14365 handle an obscure K&R C case of calling a function that takes the
14366 address of its arguments with fewer arguments than declared.  IBM XL
14367 compilers access floating point arguments which do not fit in the
14368 RSA from the stack when a subroutine is compiled without
14369 optimization.  Because always storing floating-point arguments on the
14370 stack is inefficient and rarely needed, this option is not enabled by
14371 default and only is necessary when calling subroutines compiled by IBM
14372 XL compilers without optimization.
14373
14374 @item -mpe
14375 @opindex mpe
14376 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
14377 application written to use message passing with special startup code to
14378 enable the application to run.  The system must have PE installed in the
14379 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
14380 must be overridden with the @option{-specs=} option to specify the
14381 appropriate directory location.  The Parallel Environment does not
14382 support threads, so the @option{-mpe} option and the @option{-pthread}
14383 option are incompatible.
14384
14385 @item -malign-natural
14386 @itemx -malign-power
14387 @opindex malign-natural
14388 @opindex malign-power
14389 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
14390 @option{-malign-natural} overrides the ABI-defined alignment of larger
14391 types, such as floating-point doubles, on their natural size-based boundary.
14392 The option @option{-malign-power} instructs GCC to follow the ABI-specified
14393 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
14394
14395 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
14396 is not supported.
14397
14398 @item -msoft-float
14399 @itemx -mhard-float
14400 @opindex msoft-float
14401 @opindex mhard-float
14402 Generate code that does not use (uses) the floating-point register set.
14403 Software floating point emulation is provided if you use the
14404 @option{-msoft-float} option, and pass the option to GCC when linking.
14405
14406 @item -msingle-float
14407 @itemx -mdouble-float
14408 @opindex msingle-float
14409 @opindex mdouble-float
14410 Generate code for single or double-precision floating point operations. 
14411 @option{-mdouble-float} implies @option{-msingle-float}. 
14412
14413 @item -msimple-fpu
14414 @opindex msimple-fpu
14415 Do not generate sqrt and div instructions for hardware floating point unit.
14416
14417 @item -mfpu
14418 @opindex mfpu
14419 Specify type of floating point unit.  Valid values are @var{sp_lite} 
14420 (equivalent to -msingle-float -msimple-fpu), @var{dp_lite} (equivalent
14421 to -mdouble-float -msimple-fpu), @var{sp_full} (equivalent to -msingle-float),
14422 and @var{dp_full} (equivalent to -mdouble-float).
14423
14424 @item -mxilinx-fpu
14425 @opindex mxilinx-fpu
14426 Perform optimizations for floating point unit on Xilinx PPC 405/440.
14427
14428 @item -mmultiple
14429 @itemx -mno-multiple
14430 @opindex mmultiple
14431 @opindex mno-multiple
14432 Generate code that uses (does not use) the load multiple word
14433 instructions and the store multiple word instructions.  These
14434 instructions are generated by default on POWER systems, and not
14435 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
14436 endian PowerPC systems, since those instructions do not work when the
14437 processor is in little endian mode.  The exceptions are PPC740 and
14438 PPC750 which permit the instructions usage in little endian mode.
14439
14440 @item -mstring
14441 @itemx -mno-string
14442 @opindex mstring
14443 @opindex mno-string
14444 Generate code that uses (does not use) the load string instructions
14445 and the store string word instructions to save multiple registers and
14446 do small block moves.  These instructions are generated by default on
14447 POWER systems, and not generated on PowerPC systems.  Do not use
14448 @option{-mstring} on little endian PowerPC systems, since those
14449 instructions do not work when the processor is in little endian mode.
14450 The exceptions are PPC740 and PPC750 which permit the instructions
14451 usage in little endian mode.
14452
14453 @item -mupdate
14454 @itemx -mno-update
14455 @opindex mupdate
14456 @opindex mno-update
14457 Generate code that uses (does not use) the load or store instructions
14458 that update the base register to the address of the calculated memory
14459 location.  These instructions are generated by default.  If you use
14460 @option{-mno-update}, there is a small window between the time that the
14461 stack pointer is updated and the address of the previous frame is
14462 stored, which means code that walks the stack frame across interrupts or
14463 signals may get corrupted data.
14464
14465 @item -mavoid-indexed-addresses
14466 @item -mno-avoid-indexed-addresses
14467 @opindex mavoid-indexed-addresses
14468 @opindex mno-avoid-indexed-addresses
14469 Generate code that tries to avoid (not avoid) the use of indexed load
14470 or store instructions. These instructions can incur a performance
14471 penalty on Power6 processors in certain situations, such as when
14472 stepping through large arrays that cross a 16M boundary.  This option
14473 is enabled by default when targetting Power6 and disabled otherwise.
14474
14475 @item -mfused-madd
14476 @itemx -mno-fused-madd
14477 @opindex mfused-madd
14478 @opindex mno-fused-madd
14479 Generate code that uses (does not use) the floating point multiply and
14480 accumulate instructions.  These instructions are generated by default if
14481 hardware floating is used.
14482
14483 @item -mmulhw
14484 @itemx -mno-mulhw
14485 @opindex mmulhw
14486 @opindex mno-mulhw
14487 Generate code that uses (does not use) the half-word multiply and
14488 multiply-accumulate instructions on the IBM 405, 440 and 464 processors.
14489 These instructions are generated by default when targetting those
14490 processors.
14491
14492 @item -mdlmzb
14493 @itemx -mno-dlmzb
14494 @opindex mdlmzb
14495 @opindex mno-dlmzb
14496 Generate code that uses (does not use) the string-search @samp{dlmzb}
14497 instruction on the IBM 405, 440 and 464 processors.  This instruction is
14498 generated by default when targetting those processors.
14499
14500 @item -mno-bit-align
14501 @itemx -mbit-align
14502 @opindex mno-bit-align
14503 @opindex mbit-align
14504 On System V.4 and embedded PowerPC systems do not (do) force structures
14505 and unions that contain bit-fields to be aligned to the base type of the
14506 bit-field.
14507
14508 For example, by default a structure containing nothing but 8
14509 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
14510 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
14511 the structure would be aligned to a 1 byte boundary and be one byte in
14512 size.
14513
14514 @item -mno-strict-align
14515 @itemx -mstrict-align
14516 @opindex mno-strict-align
14517 @opindex mstrict-align
14518 On System V.4 and embedded PowerPC systems do not (do) assume that
14519 unaligned memory references will be handled by the system.
14520
14521 @item -mrelocatable
14522 @itemx -mno-relocatable
14523 @opindex mrelocatable
14524 @opindex mno-relocatable
14525 On embedded PowerPC systems generate code that allows (does not allow)
14526 the program to be relocated to a different address at runtime.  If you
14527 use @option{-mrelocatable} on any module, all objects linked together must
14528 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
14529
14530 @item -mrelocatable-lib
14531 @itemx -mno-relocatable-lib
14532 @opindex mrelocatable-lib
14533 @opindex mno-relocatable-lib
14534 On embedded PowerPC systems generate code that allows (does not allow)
14535 the program to be relocated to a different address at runtime.  Modules
14536 compiled with @option{-mrelocatable-lib} can be linked with either modules
14537 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
14538 with modules compiled with the @option{-mrelocatable} options.
14539
14540 @item -mno-toc
14541 @itemx -mtoc
14542 @opindex mno-toc
14543 @opindex mtoc
14544 On System V.4 and embedded PowerPC systems do not (do) assume that
14545 register 2 contains a pointer to a global area pointing to the addresses
14546 used in the program.
14547
14548 @item -mlittle
14549 @itemx -mlittle-endian
14550 @opindex mlittle
14551 @opindex mlittle-endian
14552 On System V.4 and embedded PowerPC systems compile code for the
14553 processor in little endian mode.  The @option{-mlittle-endian} option is
14554 the same as @option{-mlittle}.
14555
14556 @item -mbig
14557 @itemx -mbig-endian
14558 @opindex mbig
14559 @opindex mbig-endian
14560 On System V.4 and embedded PowerPC systems compile code for the
14561 processor in big endian mode.  The @option{-mbig-endian} option is
14562 the same as @option{-mbig}.
14563
14564 @item -mdynamic-no-pic
14565 @opindex mdynamic-no-pic
14566 On Darwin and Mac OS X systems, compile code so that it is not
14567 relocatable, but that its external references are relocatable.  The
14568 resulting code is suitable for applications, but not shared
14569 libraries.
14570
14571 @item -mprioritize-restricted-insns=@var{priority}
14572 @opindex mprioritize-restricted-insns
14573 This option controls the priority that is assigned to
14574 dispatch-slot restricted instructions during the second scheduling
14575 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
14576 @var{no/highest/second-highest} priority to dispatch slot restricted
14577 instructions.
14578
14579 @item -msched-costly-dep=@var{dependence_type}
14580 @opindex msched-costly-dep
14581 This option controls which dependences are considered costly
14582 by the target during instruction scheduling.  The argument
14583 @var{dependence_type} takes one of the following values:
14584 @var{no}: no dependence is costly,
14585 @var{all}: all dependences are costly,
14586 @var{true_store_to_load}: a true dependence from store to load is costly,
14587 @var{store_to_load}: any dependence from store to load is costly,
14588 @var{number}: any dependence which latency >= @var{number} is costly.
14589
14590 @item -minsert-sched-nops=@var{scheme}
14591 @opindex minsert-sched-nops
14592 This option controls which nop insertion scheme will be used during
14593 the second scheduling pass.  The argument @var{scheme} takes one of the
14594 following values:
14595 @var{no}: Don't insert nops.
14596 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
14597 according to the scheduler's grouping.
14598 @var{regroup_exact}: Insert nops to force costly dependent insns into
14599 separate groups.  Insert exactly as many nops as needed to force an insn
14600 to a new group, according to the estimated processor grouping.
14601 @var{number}: Insert nops to force costly dependent insns into
14602 separate groups.  Insert @var{number} nops to force an insn to a new group.
14603
14604 @item -mcall-sysv
14605 @opindex mcall-sysv
14606 On System V.4 and embedded PowerPC systems compile code using calling
14607 conventions that adheres to the March 1995 draft of the System V
14608 Application Binary Interface, PowerPC processor supplement.  This is the
14609 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
14610
14611 @item -mcall-sysv-eabi
14612 @itemx -mcall-eabi
14613 @opindex mcall-sysv-eabi
14614 @opindex mcall-eabi
14615 Specify both @option{-mcall-sysv} and @option{-meabi} options.
14616
14617 @item -mcall-sysv-noeabi
14618 @opindex mcall-sysv-noeabi
14619 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
14620
14621 @item -mcall-aixdesc
14622 @opindex m
14623 On System V.4 and embedded PowerPC systems compile code for the AIX
14624 operating system.
14625
14626 @item -mcall-linux
14627 @opindex mcall-linux
14628 On System V.4 and embedded PowerPC systems compile code for the
14629 Linux-based GNU system.
14630
14631 @item -mcall-gnu
14632 @opindex mcall-gnu
14633 On System V.4 and embedded PowerPC systems compile code for the
14634 Hurd-based GNU system.
14635
14636 @item -mcall-freebsd
14637 @opindex mcall-freebsd
14638 On System V.4 and embedded PowerPC systems compile code for the
14639 FreeBSD operating system.
14640
14641 @item -mcall-netbsd
14642 @opindex mcall-netbsd
14643 On System V.4 and embedded PowerPC systems compile code for the
14644 NetBSD operating system.
14645
14646 @item -mcall-openbsd
14647 @opindex mcall-netbsd
14648 On System V.4 and embedded PowerPC systems compile code for the
14649 OpenBSD operating system.
14650
14651 @item -maix-struct-return
14652 @opindex maix-struct-return
14653 Return all structures in memory (as specified by the AIX ABI)@.
14654
14655 @item -msvr4-struct-return
14656 @opindex msvr4-struct-return
14657 Return structures smaller than 8 bytes in registers (as specified by the
14658 SVR4 ABI)@.
14659
14660 @item -mabi=@var{abi-type}
14661 @opindex mabi
14662 Extend the current ABI with a particular extension, or remove such extension.
14663 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
14664 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
14665
14666 @item -mabi=spe
14667 @opindex mabi=spe
14668 Extend the current ABI with SPE ABI extensions.  This does not change
14669 the default ABI, instead it adds the SPE ABI extensions to the current
14670 ABI@.
14671
14672 @item -mabi=no-spe
14673 @opindex mabi=no-spe
14674 Disable Booke SPE ABI extensions for the current ABI@.
14675
14676 @item -mabi=ibmlongdouble
14677 @opindex mabi=ibmlongdouble
14678 Change the current ABI to use IBM extended precision long double.
14679 This is a PowerPC 32-bit SYSV ABI option.
14680
14681 @item -mabi=ieeelongdouble
14682 @opindex mabi=ieeelongdouble
14683 Change the current ABI to use IEEE extended precision long double.
14684 This is a PowerPC 32-bit Linux ABI option.
14685
14686 @item -mprototype
14687 @itemx -mno-prototype
14688 @opindex mprototype
14689 @opindex mno-prototype
14690 On System V.4 and embedded PowerPC systems assume that all calls to
14691 variable argument functions are properly prototyped.  Otherwise, the
14692 compiler must insert an instruction before every non prototyped call to
14693 set or clear bit 6 of the condition code register (@var{CR}) to
14694 indicate whether floating point values were passed in the floating point
14695 registers in case the function takes a variable arguments.  With
14696 @option{-mprototype}, only calls to prototyped variable argument functions
14697 will set or clear the bit.
14698
14699 @item -msim
14700 @opindex msim
14701 On embedded PowerPC systems, assume that the startup module is called
14702 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
14703 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
14704 configurations.
14705
14706 @item -mmvme
14707 @opindex mmvme
14708 On embedded PowerPC systems, assume that the startup module is called
14709 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
14710 @file{libc.a}.
14711
14712 @item -mads
14713 @opindex mads
14714 On embedded PowerPC systems, assume that the startup module is called
14715 @file{crt0.o} and the standard C libraries are @file{libads.a} and
14716 @file{libc.a}.
14717
14718 @item -myellowknife
14719 @opindex myellowknife
14720 On embedded PowerPC systems, assume that the startup module is called
14721 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
14722 @file{libc.a}.
14723
14724 @item -mvxworks
14725 @opindex mvxworks
14726 On System V.4 and embedded PowerPC systems, specify that you are
14727 compiling for a VxWorks system.
14728
14729 @item -memb
14730 @opindex memb
14731 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
14732 header to indicate that @samp{eabi} extended relocations are used.
14733
14734 @item -meabi
14735 @itemx -mno-eabi
14736 @opindex meabi
14737 @opindex mno-eabi
14738 On System V.4 and embedded PowerPC systems do (do not) adhere to the
14739 Embedded Applications Binary Interface (eabi) which is a set of
14740 modifications to the System V.4 specifications.  Selecting @option{-meabi}
14741 means that the stack is aligned to an 8 byte boundary, a function
14742 @code{__eabi} is called to from @code{main} to set up the eabi
14743 environment, and the @option{-msdata} option can use both @code{r2} and
14744 @code{r13} to point to two separate small data areas.  Selecting
14745 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
14746 do not call an initialization function from @code{main}, and the
14747 @option{-msdata} option will only use @code{r13} to point to a single
14748 small data area.  The @option{-meabi} option is on by default if you
14749 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
14750
14751 @item -msdata=eabi
14752 @opindex msdata=eabi
14753 On System V.4 and embedded PowerPC systems, put small initialized
14754 @code{const} global and static data in the @samp{.sdata2} section, which
14755 is pointed to by register @code{r2}.  Put small initialized
14756 non-@code{const} global and static data in the @samp{.sdata} section,
14757 which is pointed to by register @code{r13}.  Put small uninitialized
14758 global and static data in the @samp{.sbss} section, which is adjacent to
14759 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
14760 incompatible with the @option{-mrelocatable} option.  The
14761 @option{-msdata=eabi} option also sets the @option{-memb} option.
14762
14763 @item -msdata=sysv
14764 @opindex msdata=sysv
14765 On System V.4 and embedded PowerPC systems, put small global and static
14766 data in the @samp{.sdata} section, which is pointed to by register
14767 @code{r13}.  Put small uninitialized global and static data in the
14768 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
14769 The @option{-msdata=sysv} option is incompatible with the
14770 @option{-mrelocatable} option.
14771
14772 @item -msdata=default
14773 @itemx -msdata
14774 @opindex msdata=default
14775 @opindex msdata
14776 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
14777 compile code the same as @option{-msdata=eabi}, otherwise compile code the
14778 same as @option{-msdata=sysv}.
14779
14780 @item -msdata=data
14781 @opindex msdata=data
14782 On System V.4 and embedded PowerPC systems, put small global
14783 data in the @samp{.sdata} section.  Put small uninitialized global
14784 data in the @samp{.sbss} section.  Do not use register @code{r13}
14785 to address small data however.  This is the default behavior unless
14786 other @option{-msdata} options are used.
14787
14788 @item -msdata=none
14789 @itemx -mno-sdata
14790 @opindex msdata=none
14791 @opindex mno-sdata
14792 On embedded PowerPC systems, put all initialized global and static data
14793 in the @samp{.data} section, and all uninitialized data in the
14794 @samp{.bss} section.
14795
14796 @item -G @var{num}
14797 @opindex G
14798 @cindex smaller data references (PowerPC)
14799 @cindex .sdata/.sdata2 references (PowerPC)
14800 On embedded PowerPC systems, put global and static items less than or
14801 equal to @var{num} bytes into the small data or bss sections instead of
14802 the normal data or bss section.  By default, @var{num} is 8.  The
14803 @option{-G @var{num}} switch is also passed to the linker.
14804 All modules should be compiled with the same @option{-G @var{num}} value.
14805
14806 @item -mregnames
14807 @itemx -mno-regnames
14808 @opindex mregnames
14809 @opindex mno-regnames
14810 On System V.4 and embedded PowerPC systems do (do not) emit register
14811 names in the assembly language output using symbolic forms.
14812
14813 @item -mlongcall
14814 @itemx -mno-longcall
14815 @opindex mlongcall
14816 @opindex mno-longcall
14817 By default assume that all calls are far away so that a longer more
14818 expensive calling sequence is required.  This is required for calls
14819 further than 32 megabytes (33,554,432 bytes) from the current location.
14820 A short call will be generated if the compiler knows
14821 the call cannot be that far away.  This setting can be overridden by
14822 the @code{shortcall} function attribute, or by @code{#pragma
14823 longcall(0)}.
14824
14825 Some linkers are capable of detecting out-of-range calls and generating
14826 glue code on the fly.  On these systems, long calls are unnecessary and
14827 generate slower code.  As of this writing, the AIX linker can do this,
14828 as can the GNU linker for PowerPC/64.  It is planned to add this feature
14829 to the GNU linker for 32-bit PowerPC systems as well.
14830
14831 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
14832 callee, L42'', plus a ``branch island'' (glue code).  The two target
14833 addresses represent the callee and the ``branch island''.  The
14834 Darwin/PPC linker will prefer the first address and generate a ``bl
14835 callee'' if the PPC ``bl'' instruction will reach the callee directly;
14836 otherwise, the linker will generate ``bl L42'' to call the ``branch
14837 island''.  The ``branch island'' is appended to the body of the
14838 calling function; it computes the full 32-bit address of the callee
14839 and jumps to it.
14840
14841 On Mach-O (Darwin) systems, this option directs the compiler emit to
14842 the glue for every direct call, and the Darwin linker decides whether
14843 to use or discard it.
14844
14845 In the future, we may cause GCC to ignore all longcall specifications
14846 when the linker is known to generate glue.
14847
14848 @item -mtls-markers
14849 @itemx -mno-tls-markers
14850 @opindex mtls-markers
14851 @opindex mno-tls-markers
14852 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
14853 specifying the function argument.  The relocation allows ld to
14854 reliably associate function call with argument setup instructions for
14855 TLS optimization, which in turn allows gcc to better schedule the
14856 sequence.
14857
14858 @item -pthread
14859 @opindex pthread
14860 Adds support for multithreading with the @dfn{pthreads} library.
14861 This option sets flags for both the preprocessor and linker.
14862
14863 @end table
14864
14865 @node S/390 and zSeries Options
14866 @subsection S/390 and zSeries Options
14867 @cindex S/390 and zSeries Options
14868
14869 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
14870
14871 @table @gcctabopt
14872 @item -mhard-float
14873 @itemx -msoft-float
14874 @opindex mhard-float
14875 @opindex msoft-float
14876 Use (do not use) the hardware floating-point instructions and registers
14877 for floating-point operations.  When @option{-msoft-float} is specified,
14878 functions in @file{libgcc.a} will be used to perform floating-point
14879 operations.  When @option{-mhard-float} is specified, the compiler
14880 generates IEEE floating-point instructions.  This is the default.
14881
14882 @item -mhard-dfp
14883 @itemx -mno-hard-dfp
14884 @opindex mhard-dfp
14885 @opindex mno-hard-dfp
14886 Use (do not use) the hardware decimal-floating-point instructions for
14887 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
14888 specified, functions in @file{libgcc.a} will be used to perform
14889 decimal-floating-point operations.  When @option{-mhard-dfp} is
14890 specified, the compiler generates decimal-floating-point hardware
14891 instructions.  This is the default for @option{-march=z9-ec} or higher.
14892
14893 @item -mlong-double-64
14894 @itemx -mlong-double-128
14895 @opindex mlong-double-64
14896 @opindex mlong-double-128
14897 These switches control the size of @code{long double} type. A size
14898 of 64bit makes the @code{long double} type equivalent to the @code{double}
14899 type. This is the default.
14900
14901 @item -mbackchain
14902 @itemx -mno-backchain
14903 @opindex mbackchain
14904 @opindex mno-backchain
14905 Store (do not store) the address of the caller's frame as backchain pointer
14906 into the callee's stack frame.
14907 A backchain may be needed to allow debugging using tools that do not understand
14908 DWARF-2 call frame information.
14909 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
14910 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
14911 the backchain is placed into the topmost word of the 96/160 byte register
14912 save area.
14913
14914 In general, code compiled with @option{-mbackchain} is call-compatible with
14915 code compiled with @option{-mmo-backchain}; however, use of the backchain
14916 for debugging purposes usually requires that the whole binary is built with
14917 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
14918 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
14919 to build a linux kernel use @option{-msoft-float}.
14920
14921 The default is to not maintain the backchain.
14922
14923 @item -mpacked-stack
14924 @itemx -mno-packed-stack
14925 @opindex mpacked-stack
14926 @opindex mno-packed-stack
14927 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
14928 specified, the compiler uses the all fields of the 96/160 byte register save
14929 area only for their default purpose; unused fields still take up stack space.
14930 When @option{-mpacked-stack} is specified, register save slots are densely
14931 packed at the top of the register save area; unused space is reused for other
14932 purposes, allowing for more efficient use of the available stack space.
14933 However, when @option{-mbackchain} is also in effect, the topmost word of
14934 the save area is always used to store the backchain, and the return address
14935 register is always saved two words below the backchain.
14936
14937 As long as the stack frame backchain is not used, code generated with
14938 @option{-mpacked-stack} is call-compatible with code generated with
14939 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
14940 S/390 or zSeries generated code that uses the stack frame backchain at run
14941 time, not just for debugging purposes.  Such code is not call-compatible
14942 with code compiled with @option{-mpacked-stack}.  Also, note that the
14943 combination of @option{-mbackchain},
14944 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
14945 to build a linux kernel use @option{-msoft-float}.
14946
14947 The default is to not use the packed stack layout.
14948
14949 @item -msmall-exec
14950 @itemx -mno-small-exec
14951 @opindex msmall-exec
14952 @opindex mno-small-exec
14953 Generate (or do not generate) code using the @code{bras} instruction
14954 to do subroutine calls.
14955 This only works reliably if the total executable size does not
14956 exceed 64k.  The default is to use the @code{basr} instruction instead,
14957 which does not have this limitation.
14958
14959 @item -m64
14960 @itemx -m31
14961 @opindex m64
14962 @opindex m31
14963 When @option{-m31} is specified, generate code compliant to the
14964 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
14965 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
14966 particular to generate 64-bit instructions.  For the @samp{s390}
14967 targets, the default is @option{-m31}, while the @samp{s390x}
14968 targets default to @option{-m64}.
14969
14970 @item -mzarch
14971 @itemx -mesa
14972 @opindex mzarch
14973 @opindex mesa
14974 When @option{-mzarch} is specified, generate code using the
14975 instructions available on z/Architecture.
14976 When @option{-mesa} is specified, generate code using the
14977 instructions available on ESA/390.  Note that @option{-mesa} is
14978 not possible with @option{-m64}.
14979 When generating code compliant to the GNU/Linux for S/390 ABI,
14980 the default is @option{-mesa}.  When generating code compliant
14981 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
14982
14983 @item -mmvcle
14984 @itemx -mno-mvcle
14985 @opindex mmvcle
14986 @opindex mno-mvcle
14987 Generate (or do not generate) code using the @code{mvcle} instruction
14988 to perform block moves.  When @option{-mno-mvcle} is specified,
14989 use a @code{mvc} loop instead.  This is the default unless optimizing for
14990 size.
14991
14992 @item -mdebug
14993 @itemx -mno-debug
14994 @opindex mdebug
14995 @opindex mno-debug
14996 Print (or do not print) additional debug information when compiling.
14997 The default is to not print debug information.
14998
14999 @item -march=@var{cpu-type}
15000 @opindex march
15001 Generate code that will run on @var{cpu-type}, which is the name of a system
15002 representing a certain processor type.  Possible values for
15003 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
15004 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
15005 When generating code using the instructions available on z/Architecture,
15006 the default is @option{-march=z900}.  Otherwise, the default is
15007 @option{-march=g5}.
15008
15009 @item -mtune=@var{cpu-type}
15010 @opindex mtune
15011 Tune to @var{cpu-type} everything applicable about the generated code,
15012 except for the ABI and the set of available instructions.
15013 The list of @var{cpu-type} values is the same as for @option{-march}.
15014 The default is the value used for @option{-march}.
15015
15016 @item -mtpf-trace
15017 @itemx -mno-tpf-trace
15018 @opindex mtpf-trace
15019 @opindex mno-tpf-trace
15020 Generate code that adds (does not add) in TPF OS specific branches to trace
15021 routines in the operating system.  This option is off by default, even
15022 when compiling for the TPF OS@.
15023
15024 @item -mfused-madd
15025 @itemx -mno-fused-madd
15026 @opindex mfused-madd
15027 @opindex mno-fused-madd
15028 Generate code that uses (does not use) the floating point multiply and
15029 accumulate instructions.  These instructions are generated by default if
15030 hardware floating point is used.
15031
15032 @item -mwarn-framesize=@var{framesize}
15033 @opindex mwarn-framesize
15034 Emit a warning if the current function exceeds the given frame size.  Because
15035 this is a compile time check it doesn't need to be a real problem when the program
15036 runs.  It is intended to identify functions which most probably cause
15037 a stack overflow.  It is useful to be used in an environment with limited stack
15038 size e.g.@: the linux kernel.
15039
15040 @item -mwarn-dynamicstack
15041 @opindex mwarn-dynamicstack
15042 Emit a warning if the function calls alloca or uses dynamically
15043 sized arrays.  This is generally a bad idea with a limited stack size.
15044
15045 @item -mstack-guard=@var{stack-guard}
15046 @itemx -mstack-size=@var{stack-size}
15047 @opindex mstack-guard
15048 @opindex mstack-size
15049 If these options are provided the s390 back end emits additional instructions in
15050 the function prologue which trigger a trap if the stack size is @var{stack-guard}
15051 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
15052 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
15053 the frame size of the compiled function is chosen.
15054 These options are intended to be used to help debugging stack overflow problems.
15055 The additionally emitted code causes only little overhead and hence can also be
15056 used in production like systems without greater performance degradation.  The given
15057 values have to be exact powers of 2 and @var{stack-size} has to be greater than
15058 @var{stack-guard} without exceeding 64k.
15059 In order to be efficient the extra code makes the assumption that the stack starts
15060 at an address aligned to the value given by @var{stack-size}.
15061 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
15062 @end table
15063
15064 @node Score Options
15065 @subsection Score Options
15066 @cindex Score Options
15067
15068 These options are defined for Score implementations:
15069
15070 @table @gcctabopt
15071 @item -meb
15072 @opindex meb
15073 Compile code for big endian mode.  This is the default.
15074
15075 @item -mel
15076 @opindex mel
15077 Compile code for little endian mode. 
15078
15079 @item -mnhwloop
15080 @opindex mnhwloop
15081 Disable generate bcnz instruction.
15082
15083 @item -muls
15084 @opindex muls
15085 Enable generate unaligned load and store instruction.
15086
15087 @item -mmac
15088 @opindex mmac
15089 Enable the use of multiply-accumulate instructions. Disabled by default. 
15090
15091 @item -mscore5
15092 @opindex mscore5
15093 Specify the SCORE5 as the target architecture.
15094
15095 @item -mscore5u
15096 @opindex mscore5u
15097 Specify the SCORE5U of the target architecture.
15098
15099 @item -mscore7
15100 @opindex mscore7
15101 Specify the SCORE7 as the target architecture. This is the default.
15102
15103 @item -mscore7d
15104 @opindex mscore7d
15105 Specify the SCORE7D as the target architecture.
15106 @end table
15107
15108 @node SH Options
15109 @subsection SH Options
15110
15111 These @samp{-m} options are defined for the SH implementations:
15112
15113 @table @gcctabopt
15114 @item -m1
15115 @opindex m1
15116 Generate code for the SH1.
15117
15118 @item -m2
15119 @opindex m2
15120 Generate code for the SH2.
15121
15122 @item -m2e
15123 Generate code for the SH2e.
15124
15125 @item -m2a-nofpu
15126 @opindex m2a-nofpu
15127 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
15128 that the floating-point unit is not used.
15129
15130 @item -m2a-single-only
15131 @opindex m2a-single-only
15132 Generate code for the SH2a-FPU, in such a way that no double-precision
15133 floating point operations are used.
15134
15135 @item -m2a-single
15136 @opindex m2a-single
15137 Generate code for the SH2a-FPU assuming the floating-point unit is in
15138 single-precision mode by default.
15139
15140 @item -m2a
15141 @opindex m2a
15142 Generate code for the SH2a-FPU assuming the floating-point unit is in
15143 double-precision mode by default.
15144
15145 @item -m3
15146 @opindex m3
15147 Generate code for the SH3.
15148
15149 @item -m3e
15150 @opindex m3e
15151 Generate code for the SH3e.
15152
15153 @item -m4-nofpu
15154 @opindex m4-nofpu
15155 Generate code for the SH4 without a floating-point unit.
15156
15157 @item -m4-single-only
15158 @opindex m4-single-only
15159 Generate code for the SH4 with a floating-point unit that only
15160 supports single-precision arithmetic.
15161
15162 @item -m4-single
15163 @opindex m4-single
15164 Generate code for the SH4 assuming the floating-point unit is in
15165 single-precision mode by default.
15166
15167 @item -m4
15168 @opindex m4
15169 Generate code for the SH4.
15170
15171 @item -m4a-nofpu
15172 @opindex m4a-nofpu
15173 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
15174 floating-point unit is not used.
15175
15176 @item -m4a-single-only
15177 @opindex m4a-single-only
15178 Generate code for the SH4a, in such a way that no double-precision
15179 floating point operations are used.
15180
15181 @item -m4a-single
15182 @opindex m4a-single
15183 Generate code for the SH4a assuming the floating-point unit is in
15184 single-precision mode by default.
15185
15186 @item -m4a
15187 @opindex m4a
15188 Generate code for the SH4a.
15189
15190 @item -m4al
15191 @opindex m4al
15192 Same as @option{-m4a-nofpu}, except that it implicitly passes
15193 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
15194 instructions at the moment.
15195
15196 @item -mb
15197 @opindex mb
15198 Compile code for the processor in big endian mode.
15199
15200 @item -ml
15201 @opindex ml
15202 Compile code for the processor in little endian mode.
15203
15204 @item -mdalign
15205 @opindex mdalign
15206 Align doubles at 64-bit boundaries.  Note that this changes the calling
15207 conventions, and thus some functions from the standard C library will
15208 not work unless you recompile it first with @option{-mdalign}.
15209
15210 @item -mrelax
15211 @opindex mrelax
15212 Shorten some address references at link time, when possible; uses the
15213 linker option @option{-relax}.
15214
15215 @item -mbigtable
15216 @opindex mbigtable
15217 Use 32-bit offsets in @code{switch} tables.  The default is to use
15218 16-bit offsets.
15219
15220 @item -mbitops
15221 @opindex mbitops
15222 Enable the use of bit manipulation instructions on SH2A.
15223
15224 @item -mfmovd
15225 @opindex mfmovd
15226 Enable the use of the instruction @code{fmovd}.
15227
15228 @item -mhitachi
15229 @opindex mhitachi
15230 Comply with the calling conventions defined by Renesas.
15231
15232 @item -mrenesas
15233 @opindex mhitachi
15234 Comply with the calling conventions defined by Renesas.
15235
15236 @item -mno-renesas
15237 @opindex mhitachi
15238 Comply with the calling conventions defined for GCC before the Renesas
15239 conventions were available.  This option is the default for all
15240 targets of the SH toolchain except for @samp{sh-symbianelf}.
15241
15242 @item -mnomacsave
15243 @opindex mnomacsave
15244 Mark the @code{MAC} register as call-clobbered, even if
15245 @option{-mhitachi} is given.
15246
15247 @item -mieee
15248 @opindex mieee
15249 Increase IEEE-compliance of floating-point code.
15250 At the moment, this is equivalent to @option{-fno-finite-math-only}.
15251 When generating 16 bit SH opcodes, getting IEEE-conforming results for
15252 comparisons of NANs / infinities incurs extra overhead in every
15253 floating point comparison, therefore the default is set to
15254 @option{-ffinite-math-only}.
15255
15256 @item -minline-ic_invalidate
15257 @opindex minline-ic_invalidate
15258 Inline code to invalidate instruction cache entries after setting up
15259 nested function trampolines.
15260 This option has no effect if -musermode is in effect and the selected
15261 code generation option (e.g. -m4) does not allow the use of the icbi
15262 instruction.
15263 If the selected code generation option does not allow the use of the icbi
15264 instruction, and -musermode is not in effect, the inlined code will
15265 manipulate the instruction cache address array directly with an associative
15266 write.  This not only requires privileged mode, but it will also
15267 fail if the cache line had been mapped via the TLB and has become unmapped.
15268
15269 @item -misize
15270 @opindex misize
15271 Dump instruction size and location in the assembly code.
15272
15273 @item -mpadstruct
15274 @opindex mpadstruct
15275 This option is deprecated.  It pads structures to multiple of 4 bytes,
15276 which is incompatible with the SH ABI@.
15277
15278 @item -mspace
15279 @opindex mspace
15280 Optimize for space instead of speed.  Implied by @option{-Os}.
15281
15282 @item -mprefergot
15283 @opindex mprefergot
15284 When generating position-independent code, emit function calls using
15285 the Global Offset Table instead of the Procedure Linkage Table.
15286
15287 @item -musermode
15288 @opindex musermode
15289 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
15290 if the inlined code would not work in user mode.
15291 This is the default when the target is @code{sh-*-linux*}.
15292
15293 @item -multcost=@var{number}
15294 @opindex multcost=@var{number}
15295 Set the cost to assume for a multiply insn.
15296
15297 @item -mdiv=@var{strategy}
15298 @opindex mdiv=@var{strategy}
15299 Set the division strategy to use for SHmedia code.  @var{strategy} must be
15300 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
15301 inv:call2, inv:fp .
15302 "fp" performs the operation in floating point.  This has a very high latency,
15303 but needs only a few instructions, so it might be a good choice if
15304 your code has enough easily exploitable ILP to allow the compiler to
15305 schedule the floating point instructions together with other instructions.
15306 Division by zero causes a floating point exception.
15307 "inv" uses integer operations to calculate the inverse of the divisor,
15308 and then multiplies the dividend with the inverse.  This strategy allows
15309 cse and hoisting of the inverse calculation.  Division by zero calculates
15310 an unspecified result, but does not trap.
15311 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
15312 have been found, or if the entire operation has been hoisted to the same
15313 place, the last stages of the inverse calculation are intertwined with the
15314 final multiply to reduce the overall latency, at the expense of using a few
15315 more instructions, and thus offering fewer scheduling opportunities with
15316 other code.
15317 "call" calls a library function that usually implements the inv:minlat
15318 strategy.
15319 This gives high code density for m5-*media-nofpu compilations.
15320 "call2" uses a different entry point of the same library function, where it
15321 assumes that a pointer to a lookup table has already been set up, which
15322 exposes the pointer load to cse / code hoisting optimizations.
15323 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
15324 code generation, but if the code stays unoptimized, revert to the "call",
15325 "call2", or "fp" strategies, respectively.  Note that the
15326 potentially-trapping side effect of division by zero is carried by a
15327 separate instruction, so it is possible that all the integer instructions
15328 are hoisted out, but the marker for the side effect stays where it is.
15329 A recombination to fp operations or a call is not possible in that case.
15330 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
15331 that the inverse calculation was nor separated from the multiply, they speed
15332 up division where the dividend fits into 20 bits (plus sign where applicable),
15333 by inserting a test to skip a number of operations in this case; this test
15334 slows down the case of larger dividends.  inv20u assumes the case of a such
15335 a small dividend to be unlikely, and inv20l assumes it to be likely.
15336
15337 @item -mdivsi3_libfunc=@var{name}
15338 @opindex mdivsi3_libfunc=@var{name}
15339 Set the name of the library function used for 32 bit signed division to
15340 @var{name}.  This only affect the name used in the call and inv:call
15341 division strategies, and the compiler will still expect the same
15342 sets of input/output/clobbered registers as if this option was not present.
15343
15344 @item -mfixed-range=@var{register-range}
15345 @opindex mfixed-range
15346 Generate code treating the given register range as fixed registers.
15347 A fixed register is one that the register allocator can not use.  This is
15348 useful when compiling kernel code.  A register range is specified as
15349 two registers separated by a dash.  Multiple register ranges can be
15350 specified separated by a comma.
15351
15352 @item -madjust-unroll
15353 @opindex madjust-unroll
15354 Throttle unrolling to avoid thrashing target registers.
15355 This option only has an effect if the gcc code base supports the
15356 TARGET_ADJUST_UNROLL_MAX target hook.
15357
15358 @item -mindexed-addressing
15359 @opindex mindexed-addressing
15360 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
15361 This is only safe if the hardware and/or OS implement 32 bit wrap-around
15362 semantics for the indexed addressing mode.  The architecture allows the
15363 implementation of processors with 64 bit MMU, which the OS could use to
15364 get 32 bit addressing, but since no current hardware implementation supports
15365 this or any other way to make the indexed addressing mode safe to use in
15366 the 32 bit ABI, the default is -mno-indexed-addressing.
15367
15368 @item -mgettrcost=@var{number}
15369 @opindex mgettrcost=@var{number}
15370 Set the cost assumed for the gettr instruction to @var{number}.
15371 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
15372
15373 @item -mpt-fixed
15374 @opindex mpt-fixed
15375 Assume pt* instructions won't trap.  This will generally generate better
15376 scheduled code, but is unsafe on current hardware.  The current architecture
15377 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
15378 This has the unintentional effect of making it unsafe to schedule ptabs /
15379 ptrel before a branch, or hoist it out of a loop.  For example,
15380 __do_global_ctors, a part of libgcc that runs constructors at program
15381 startup, calls functions in a list which is delimited by @minus{}1.  With the
15382 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
15383 That means that all the constructors will be run a bit quicker, but when
15384 the loop comes to the end of the list, the program crashes because ptabs
15385 loads @minus{}1 into a target register.  Since this option is unsafe for any
15386 hardware implementing the current architecture specification, the default
15387 is -mno-pt-fixed.  Unless the user specifies a specific cost with
15388 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
15389 this deters register allocation using target registers for storing
15390 ordinary integers.
15391
15392 @item -minvalid-symbols
15393 @opindex minvalid-symbols
15394 Assume symbols might be invalid.  Ordinary function symbols generated by
15395 the compiler will always be valid to load with movi/shori/ptabs or
15396 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
15397 to generate symbols that will cause ptabs / ptrel to trap.
15398 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
15399 It will then prevent cross-basic-block cse, hoisting and most scheduling
15400 of symbol loads.  The default is @option{-mno-invalid-symbols}.
15401 @end table
15402
15403 @node SPARC Options
15404 @subsection SPARC Options
15405 @cindex SPARC options
15406
15407 These @samp{-m} options are supported on the SPARC:
15408
15409 @table @gcctabopt
15410 @item -mno-app-regs
15411 @itemx -mapp-regs
15412 @opindex mno-app-regs
15413 @opindex mapp-regs
15414 Specify @option{-mapp-regs} to generate output using the global registers
15415 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
15416 is the default.
15417
15418 To be fully SVR4 ABI compliant at the cost of some performance loss,
15419 specify @option{-mno-app-regs}.  You should compile libraries and system
15420 software with this option.
15421
15422 @item -mfpu
15423 @itemx -mhard-float
15424 @opindex mfpu
15425 @opindex mhard-float
15426 Generate output containing floating point instructions.  This is the
15427 default.
15428
15429 @item -mno-fpu
15430 @itemx -msoft-float
15431 @opindex mno-fpu
15432 @opindex msoft-float
15433 Generate output containing library calls for floating point.
15434 @strong{Warning:} the requisite libraries are not available for all SPARC
15435 targets.  Normally the facilities of the machine's usual C compiler are
15436 used, but this cannot be done directly in cross-compilation.  You must make
15437 your own arrangements to provide suitable library functions for
15438 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
15439 @samp{sparclite-*-*} do provide software floating point support.
15440
15441 @option{-msoft-float} changes the calling convention in the output file;
15442 therefore, it is only useful if you compile @emph{all} of a program with
15443 this option.  In particular, you need to compile @file{libgcc.a}, the
15444 library that comes with GCC, with @option{-msoft-float} in order for
15445 this to work.
15446
15447 @item -mhard-quad-float
15448 @opindex mhard-quad-float
15449 Generate output containing quad-word (long double) floating point
15450 instructions.
15451
15452 @item -msoft-quad-float
15453 @opindex msoft-quad-float
15454 Generate output containing library calls for quad-word (long double)
15455 floating point instructions.  The functions called are those specified
15456 in the SPARC ABI@.  This is the default.
15457
15458 As of this writing, there are no SPARC implementations that have hardware
15459 support for the quad-word floating point instructions.  They all invoke
15460 a trap handler for one of these instructions, and then the trap handler
15461 emulates the effect of the instruction.  Because of the trap handler overhead,
15462 this is much slower than calling the ABI library routines.  Thus the
15463 @option{-msoft-quad-float} option is the default.
15464
15465 @item -mno-unaligned-doubles
15466 @itemx -munaligned-doubles
15467 @opindex mno-unaligned-doubles
15468 @opindex munaligned-doubles
15469 Assume that doubles have 8 byte alignment.  This is the default.
15470
15471 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
15472 alignment only if they are contained in another type, or if they have an
15473 absolute address.  Otherwise, it assumes they have 4 byte alignment.
15474 Specifying this option avoids some rare compatibility problems with code
15475 generated by other compilers.  It is not the default because it results
15476 in a performance loss, especially for floating point code.
15477
15478 @item -mno-faster-structs
15479 @itemx -mfaster-structs
15480 @opindex mno-faster-structs
15481 @opindex mfaster-structs
15482 With @option{-mfaster-structs}, the compiler assumes that structures
15483 should have 8 byte alignment.  This enables the use of pairs of
15484 @code{ldd} and @code{std} instructions for copies in structure
15485 assignment, in place of twice as many @code{ld} and @code{st} pairs.
15486 However, the use of this changed alignment directly violates the SPARC
15487 ABI@.  Thus, it's intended only for use on targets where the developer
15488 acknowledges that their resulting code will not be directly in line with
15489 the rules of the ABI@.
15490
15491 @item -mimpure-text
15492 @opindex mimpure-text
15493 @option{-mimpure-text}, used in addition to @option{-shared}, tells
15494 the compiler to not pass @option{-z text} to the linker when linking a
15495 shared object.  Using this option, you can link position-dependent
15496 code into a shared object.
15497
15498 @option{-mimpure-text} suppresses the ``relocations remain against
15499 allocatable but non-writable sections'' linker error message.
15500 However, the necessary relocations will trigger copy-on-write, and the
15501 shared object is not actually shared across processes.  Instead of
15502 using @option{-mimpure-text}, you should compile all source code with
15503 @option{-fpic} or @option{-fPIC}.
15504
15505 This option is only available on SunOS and Solaris.
15506
15507 @item -mcpu=@var{cpu_type}
15508 @opindex mcpu
15509 Set the instruction set, register set, and instruction scheduling parameters
15510 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
15511 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
15512 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
15513 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
15514 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
15515
15516 Default instruction scheduling parameters are used for values that select
15517 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
15518 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
15519
15520 Here is a list of each supported architecture and their supported
15521 implementations.
15522
15523 @smallexample
15524     v7:             cypress
15525     v8:             supersparc, hypersparc
15526     sparclite:      f930, f934, sparclite86x
15527     sparclet:       tsc701
15528     v9:             ultrasparc, ultrasparc3, niagara, niagara2
15529 @end smallexample
15530
15531 By default (unless configured otherwise), GCC generates code for the V7
15532 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
15533 additionally optimizes it for the Cypress CY7C602 chip, as used in the
15534 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
15535 SPARCStation 1, 2, IPX etc.
15536
15537 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
15538 architecture.  The only difference from V7 code is that the compiler emits
15539 the integer multiply and integer divide instructions which exist in SPARC-V8
15540 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
15541 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
15542 2000 series.
15543
15544 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
15545 the SPARC architecture.  This adds the integer multiply, integer divide step
15546 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
15547 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
15548 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
15549 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
15550 MB86934 chip, which is the more recent SPARClite with FPU@.
15551
15552 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
15553 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
15554 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
15555 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
15556 optimizes it for the TEMIC SPARClet chip.
15557
15558 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
15559 architecture.  This adds 64-bit integer and floating-point move instructions,
15560 3 additional floating-point condition code registers and conditional move
15561 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
15562 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
15563 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
15564 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
15565 @option{-mcpu=niagara}, the compiler additionally optimizes it for
15566 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
15567 additionally optimizes it for Sun UltraSPARC T2 chips.
15568
15569 @item -mtune=@var{cpu_type}
15570 @opindex mtune
15571 Set the instruction scheduling parameters for machine type
15572 @var{cpu_type}, but do not set the instruction set or register set that the
15573 option @option{-mcpu=@var{cpu_type}} would.
15574
15575 The same values for @option{-mcpu=@var{cpu_type}} can be used for
15576 @option{-mtune=@var{cpu_type}}, but the only useful values are those
15577 that select a particular cpu implementation.  Those are @samp{cypress},
15578 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
15579 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
15580 @samp{ultrasparc3}, @samp{niagara}, and @samp{niagara2}.
15581
15582 @item -mv8plus
15583 @itemx -mno-v8plus
15584 @opindex mv8plus
15585 @opindex mno-v8plus
15586 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
15587 difference from the V8 ABI is that the global and out registers are
15588 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
15589 mode for all SPARC-V9 processors.
15590
15591 @item -mvis
15592 @itemx -mno-vis
15593 @opindex mvis
15594 @opindex mno-vis
15595 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
15596 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
15597 @end table
15598
15599 These @samp{-m} options are supported in addition to the above
15600 on SPARC-V9 processors in 64-bit environments:
15601
15602 @table @gcctabopt
15603 @item -mlittle-endian
15604 @opindex mlittle-endian
15605 Generate code for a processor running in little-endian mode.  It is only
15606 available for a few configurations and most notably not on Solaris and Linux.
15607
15608 @item -m32
15609 @itemx -m64
15610 @opindex m32
15611 @opindex m64
15612 Generate code for a 32-bit or 64-bit environment.
15613 The 32-bit environment sets int, long and pointer to 32 bits.
15614 The 64-bit environment sets int to 32 bits and long and pointer
15615 to 64 bits.
15616
15617 @item -mcmodel=medlow
15618 @opindex mcmodel=medlow
15619 Generate code for the Medium/Low code model: 64-bit addresses, programs
15620 must be linked in the low 32 bits of memory.  Programs can be statically
15621 or dynamically linked.
15622
15623 @item -mcmodel=medmid
15624 @opindex mcmodel=medmid
15625 Generate code for the Medium/Middle code model: 64-bit addresses, programs
15626 must be linked in the low 44 bits of memory, the text and data segments must
15627 be less than 2GB in size and the data segment must be located within 2GB of
15628 the text segment.
15629
15630 @item -mcmodel=medany
15631 @opindex mcmodel=medany
15632 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
15633 may be linked anywhere in memory, the text and data segments must be less
15634 than 2GB in size and the data segment must be located within 2GB of the
15635 text segment.
15636
15637 @item -mcmodel=embmedany
15638 @opindex mcmodel=embmedany
15639 Generate code for the Medium/Anywhere code model for embedded systems:
15640 64-bit addresses, the text and data segments must be less than 2GB in
15641 size, both starting anywhere in memory (determined at link time).  The
15642 global register %g4 points to the base of the data segment.  Programs
15643 are statically linked and PIC is not supported.
15644
15645 @item -mstack-bias
15646 @itemx -mno-stack-bias
15647 @opindex mstack-bias
15648 @opindex mno-stack-bias
15649 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
15650 frame pointer if present, are offset by @minus{}2047 which must be added back
15651 when making stack frame references.  This is the default in 64-bit mode.
15652 Otherwise, assume no such offset is present.
15653 @end table
15654
15655 These switches are supported in addition to the above on Solaris:
15656
15657 @table @gcctabopt
15658 @item -threads
15659 @opindex threads
15660 Add support for multithreading using the Solaris threads library.  This
15661 option sets flags for both the preprocessor and linker.  This option does
15662 not affect the thread safety of object code produced by the compiler or
15663 that of libraries supplied with it.
15664
15665 @item -pthreads
15666 @opindex pthreads
15667 Add support for multithreading using the POSIX threads library.  This
15668 option sets flags for both the preprocessor and linker.  This option does
15669 not affect the thread safety of object code produced  by the compiler or
15670 that of libraries supplied with it.
15671
15672 @item -pthread
15673 @opindex pthread
15674 This is a synonym for @option{-pthreads}.
15675 @end table
15676
15677 @node SPU Options
15678 @subsection SPU Options
15679 @cindex SPU options
15680
15681 These @samp{-m} options are supported on the SPU:
15682
15683 @table @gcctabopt
15684 @item -mwarn-reloc
15685 @itemx -merror-reloc
15686 @opindex mwarn-reloc
15687 @opindex merror-reloc
15688
15689 The loader for SPU does not handle dynamic relocations.  By default, GCC
15690 will give an error when it generates code that requires a dynamic
15691 relocation.  @option{-mno-error-reloc} disables the error,
15692 @option{-mwarn-reloc} will generate a warning instead.
15693
15694 @item -msafe-dma
15695 @itemx -munsafe-dma
15696 @opindex msafe-dma
15697 @opindex munsafe-dma
15698
15699 Instructions which initiate or test completion of DMA must not be
15700 reordered with respect to loads and stores of the memory which is being
15701 accessed.  Users typically address this problem using the volatile
15702 keyword, but that can lead to inefficient code in places where the
15703 memory is known to not change.  Rather than mark the memory as volatile
15704 we treat the DMA instructions as potentially effecting all memory.  With
15705 @option{-munsafe-dma} users must use the volatile keyword to protect
15706 memory accesses.
15707
15708 @item -mbranch-hints
15709 @opindex mbranch-hints
15710
15711 By default, GCC will generate a branch hint instruction to avoid
15712 pipeline stalls for always taken or probably taken branches.  A hint
15713 will not be generated closer than 8 instructions away from its branch.
15714 There is little reason to disable them, except for debugging purposes,
15715 or to make an object a little bit smaller.
15716
15717 @item -msmall-mem
15718 @itemx -mlarge-mem
15719 @opindex msmall-mem
15720 @opindex mlarge-mem
15721
15722 By default, GCC generates code assuming that addresses are never larger
15723 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
15724 a full 32 bit address.
15725
15726 @item -mstdmain
15727 @opindex mstdmain
15728
15729 By default, GCC links against startup code that assumes the SPU-style
15730 main function interface (which has an unconventional parameter list).
15731 With @option{-mstdmain}, GCC will link your program against startup
15732 code that assumes a C99-style interface to @code{main}, including a
15733 local copy of @code{argv} strings.
15734
15735 @item -mfixed-range=@var{register-range}
15736 @opindex mfixed-range
15737 Generate code treating the given register range as fixed registers.
15738 A fixed register is one that the register allocator can not use.  This is
15739 useful when compiling kernel code.  A register range is specified as
15740 two registers separated by a dash.  Multiple register ranges can be
15741 specified separated by a comma.
15742
15743 @item -mdual-nops
15744 @itemx -mdual-nops=@var{n}
15745 @opindex mdual-nops
15746 By default, GCC will insert nops to increase dual issue when it expects
15747 it to increase performance.  @var{n} can be a value from 0 to 10.  A
15748 smaller @var{n} will insert fewer nops.  10 is the default, 0 is the
15749 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
15750
15751 @item -mhint-max-nops=@var{n}
15752 @opindex mhint-max-nops
15753 Maximum number of nops to insert for a branch hint.  A branch hint must
15754 be at least 8 instructions away from the branch it is effecting.  GCC
15755 will insert up to @var{n} nops to enforce this, otherwise it will not
15756 generate the branch hint.
15757
15758 @item -mhint-max-distance=@var{n}
15759 @opindex mhint-max-distance
15760 The encoding of the branch hint instruction limits the hint to be within
15761 256 instructions of the branch it is effecting.  By default, GCC makes
15762 sure it is within 125. 
15763
15764 @item -msafe-hints
15765 @opindex msafe-hints
15766 Work around a hardware bug which causes the SPU to stall indefinitely.
15767 By default, GCC will insert the @code{hbrp} instruction to make sure
15768 this stall won't happen.
15769
15770 @end table
15771
15772 @node System V Options
15773 @subsection Options for System V
15774
15775 These additional options are available on System V Release 4 for
15776 compatibility with other compilers on those systems:
15777
15778 @table @gcctabopt
15779 @item -G
15780 @opindex G
15781 Create a shared object.
15782 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
15783
15784 @item -Qy
15785 @opindex Qy
15786 Identify the versions of each tool used by the compiler, in a
15787 @code{.ident} assembler directive in the output.
15788
15789 @item -Qn
15790 @opindex Qn
15791 Refrain from adding @code{.ident} directives to the output file (this is
15792 the default).
15793
15794 @item -YP,@var{dirs}
15795 @opindex YP
15796 Search the directories @var{dirs}, and no others, for libraries
15797 specified with @option{-l}.
15798
15799 @item -Ym,@var{dir}
15800 @opindex Ym
15801 Look in the directory @var{dir} to find the M4 preprocessor.
15802 The assembler uses this option.
15803 @c This is supposed to go with a -Yd for predefined M4 macro files, but
15804 @c the generic assembler that comes with Solaris takes just -Ym.
15805 @end table
15806
15807 @node V850 Options
15808 @subsection V850 Options
15809 @cindex V850 Options
15810
15811 These @samp{-m} options are defined for V850 implementations:
15812
15813 @table @gcctabopt
15814 @item -mlong-calls
15815 @itemx -mno-long-calls
15816 @opindex mlong-calls
15817 @opindex mno-long-calls
15818 Treat all calls as being far away (near).  If calls are assumed to be
15819 far away, the compiler will always load the functions address up into a
15820 register, and call indirect through the pointer.
15821
15822 @item -mno-ep
15823 @itemx -mep
15824 @opindex mno-ep
15825 @opindex mep
15826 Do not optimize (do optimize) basic blocks that use the same index
15827 pointer 4 or more times to copy pointer into the @code{ep} register, and
15828 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
15829 option is on by default if you optimize.
15830
15831 @item -mno-prolog-function
15832 @itemx -mprolog-function
15833 @opindex mno-prolog-function
15834 @opindex mprolog-function
15835 Do not use (do use) external functions to save and restore registers
15836 at the prologue and epilogue of a function.  The external functions
15837 are slower, but use less code space if more than one function saves
15838 the same number of registers.  The @option{-mprolog-function} option
15839 is on by default if you optimize.
15840
15841 @item -mspace
15842 @opindex mspace
15843 Try to make the code as small as possible.  At present, this just turns
15844 on the @option{-mep} and @option{-mprolog-function} options.
15845
15846 @item -mtda=@var{n}
15847 @opindex mtda
15848 Put static or global variables whose size is @var{n} bytes or less into
15849 the tiny data area that register @code{ep} points to.  The tiny data
15850 area can hold up to 256 bytes in total (128 bytes for byte references).
15851
15852 @item -msda=@var{n}
15853 @opindex msda
15854 Put static or global variables whose size is @var{n} bytes or less into
15855 the small data area that register @code{gp} points to.  The small data
15856 area can hold up to 64 kilobytes.
15857
15858 @item -mzda=@var{n}
15859 @opindex mzda
15860 Put static or global variables whose size is @var{n} bytes or less into
15861 the first 32 kilobytes of memory.
15862
15863 @item -mv850
15864 @opindex mv850
15865 Specify that the target processor is the V850.
15866
15867 @item -mbig-switch
15868 @opindex mbig-switch
15869 Generate code suitable for big switch tables.  Use this option only if
15870 the assembler/linker complain about out of range branches within a switch
15871 table.
15872
15873 @item -mapp-regs
15874 @opindex mapp-regs
15875 This option will cause r2 and r5 to be used in the code generated by
15876 the compiler.  This setting is the default.
15877
15878 @item -mno-app-regs
15879 @opindex mno-app-regs
15880 This option will cause r2 and r5 to be treated as fixed registers.
15881
15882 @item -mv850e1
15883 @opindex mv850e1
15884 Specify that the target processor is the V850E1.  The preprocessor
15885 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
15886 this option is used.
15887
15888 @item -mv850e
15889 @opindex mv850e
15890 Specify that the target processor is the V850E@.  The preprocessor
15891 constant @samp{__v850e__} will be defined if this option is used.
15892
15893 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
15894 are defined then a default target processor will be chosen and the
15895 relevant @samp{__v850*__} preprocessor constant will be defined.
15896
15897 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
15898 defined, regardless of which processor variant is the target.
15899
15900 @item -mdisable-callt
15901 @opindex mdisable-callt
15902 This option will suppress generation of the CALLT instruction for the
15903 v850e and v850e1 flavors of the v850 architecture.  The default is
15904 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
15905
15906 @end table
15907
15908 @node VAX Options
15909 @subsection VAX Options
15910 @cindex VAX options
15911
15912 These @samp{-m} options are defined for the VAX:
15913
15914 @table @gcctabopt
15915 @item -munix
15916 @opindex munix
15917 Do not output certain jump instructions (@code{aobleq} and so on)
15918 that the Unix assembler for the VAX cannot handle across long
15919 ranges.
15920
15921 @item -mgnu
15922 @opindex mgnu
15923 Do output those jump instructions, on the assumption that you
15924 will assemble with the GNU assembler.
15925
15926 @item -mg
15927 @opindex mg
15928 Output code for g-format floating point numbers instead of d-format.
15929 @end table
15930
15931 @node VxWorks Options
15932 @subsection VxWorks Options
15933 @cindex VxWorks Options
15934
15935 The options in this section are defined for all VxWorks targets.
15936 Options specific to the target hardware are listed with the other
15937 options for that target.
15938
15939 @table @gcctabopt
15940 @item -mrtp
15941 @opindex mrtp
15942 GCC can generate code for both VxWorks kernels and real time processes
15943 (RTPs).  This option switches from the former to the latter.  It also
15944 defines the preprocessor macro @code{__RTP__}.
15945
15946 @item -non-static
15947 @opindex non-static
15948 Link an RTP executable against shared libraries rather than static
15949 libraries.  The options @option{-static} and @option{-shared} can
15950 also be used for RTPs (@pxref{Link Options}); @option{-static}
15951 is the default.
15952
15953 @item -Bstatic
15954 @itemx -Bdynamic
15955 @opindex Bstatic
15956 @opindex Bdynamic
15957 These options are passed down to the linker.  They are defined for
15958 compatibility with Diab.
15959
15960 @item -Xbind-lazy
15961 @opindex Xbind-lazy
15962 Enable lazy binding of function calls.  This option is equivalent to
15963 @option{-Wl,-z,now} and is defined for compatibility with Diab.
15964
15965 @item -Xbind-now
15966 @opindex Xbind-now
15967 Disable lazy binding of function calls.  This option is the default and
15968 is defined for compatibility with Diab.
15969 @end table
15970
15971 @node x86-64 Options
15972 @subsection x86-64 Options
15973 @cindex x86-64 options
15974
15975 These are listed under @xref{i386 and x86-64 Options}.
15976
15977 @node i386 and x86-64 Windows Options
15978 @subsection i386 and x86-64 Windows Options
15979 @cindex i386 and x86-64 Windows Options
15980
15981 These additional options are available for Windows targets:
15982
15983 @table @gcctabopt
15984 @item -mconsole
15985 @opindex mconsole
15986 This option is available for Cygwin and MinGW targets.  It
15987 specifies that a console application is to be generated, by
15988 instructing the linker to set the PE header subsystem type
15989 required for console applications.
15990 This is the default behavior for Cygwin and MinGW targets.
15991
15992 @item -mcygwin
15993 @opindex mcygwin
15994 This option is available for Cygwin targets.  It specifies that
15995 the Cygwin internal interface is to be used for predefined
15996 preprocessor macros, C runtime libraries and related linker
15997 paths and options.  For Cygwin targets this is the default behavior.
15998 This option is deprecated and will be removed in a future release.
15999
16000 @item -mno-cygwin
16001 @opindex mno-cygwin
16002 This option is available for Cygwin targets.  It specifies that
16003 the MinGW internal interface is to be used instead of Cygwin's, by
16004 setting MinGW-related predefined macros and linker paths and default
16005 library options.
16006 This option is deprecated and will be removed in a future release.
16007
16008 @item -mdll
16009 @opindex mdll
16010 This option is available for Cygwin and MinGW targets.  It
16011 specifies that a DLL - a dynamic link library - is to be
16012 generated, enabling the selection of the required runtime
16013 startup object and entry point.
16014
16015 @item -mnop-fun-dllimport
16016 @opindex mnop-fun-dllimport
16017 This option is available for Cygwin and MinGW targets.  It
16018 specifies that the dllimport attribute should be ignored.
16019
16020 @item -mthread
16021 @opindex mthread
16022 This option is available for MinGW targets. It specifies
16023 that MinGW-specific thread support is to be used.
16024
16025 @item -municode
16026 @opindex municode
16027 This option is available for mingw-w64 targets.  It specifies
16028 that the UNICODE macro is getting pre-defined and that the
16029 unicode capable runtime startup code is choosen.
16030
16031 @item -mwin32
16032 @opindex mwin32
16033 This option is available for Cygwin and MinGW targets.  It
16034 specifies that the typical Windows pre-defined macros are to
16035 be set in the pre-processor, but does not influence the choice
16036 of runtime library/startup code.
16037
16038 @item -mwindows
16039 @opindex mwindows
16040 This option is available for Cygwin and MinGW targets.  It
16041 specifies that a GUI application is to be generated by
16042 instructing the linker to set the PE header subsystem type
16043 appropriately.
16044
16045 @item -mpe-aligned-commons
16046 @opindex mpe-aligned-commons
16047 This option is available for Cygwin and MinGW targets.  It
16048 specifies that the GNU extension to the PE file format that 
16049 permits the correct alignment of COMMON variables should be
16050 used when generating code.  It will be enabled by default if
16051 GCC detects that the target assembler found during configuration
16052 supports the feature.
16053 @end table
16054
16055 See also under @ref{i386 and x86-64 Options} for standard options.
16056
16057 @node Xstormy16 Options
16058 @subsection Xstormy16 Options
16059 @cindex Xstormy16 Options
16060
16061 These options are defined for Xstormy16:
16062
16063 @table @gcctabopt
16064 @item -msim
16065 @opindex msim
16066 Choose startup files and linker script suitable for the simulator.
16067 @end table
16068
16069 @node Xtensa Options
16070 @subsection Xtensa Options
16071 @cindex Xtensa Options
16072
16073 These options are supported for Xtensa targets:
16074
16075 @table @gcctabopt
16076 @item -mconst16
16077 @itemx -mno-const16
16078 @opindex mconst16
16079 @opindex mno-const16
16080 Enable or disable use of @code{CONST16} instructions for loading
16081 constant values.  The @code{CONST16} instruction is currently not a
16082 standard option from Tensilica.  When enabled, @code{CONST16}
16083 instructions are always used in place of the standard @code{L32R}
16084 instructions.  The use of @code{CONST16} is enabled by default only if
16085 the @code{L32R} instruction is not available.
16086
16087 @item -mfused-madd
16088 @itemx -mno-fused-madd
16089 @opindex mfused-madd
16090 @opindex mno-fused-madd
16091 Enable or disable use of fused multiply/add and multiply/subtract
16092 instructions in the floating-point option.  This has no effect if the
16093 floating-point option is not also enabled.  Disabling fused multiply/add
16094 and multiply/subtract instructions forces the compiler to use separate
16095 instructions for the multiply and add/subtract operations.  This may be
16096 desirable in some cases where strict IEEE 754-compliant results are
16097 required: the fused multiply add/subtract instructions do not round the
16098 intermediate result, thereby producing results with @emph{more} bits of
16099 precision than specified by the IEEE standard.  Disabling fused multiply
16100 add/subtract instructions also ensures that the program output is not
16101 sensitive to the compiler's ability to combine multiply and add/subtract
16102 operations.
16103
16104 @item -mserialize-volatile
16105 @itemx -mno-serialize-volatile
16106 @opindex mserialize-volatile
16107 @opindex mno-serialize-volatile
16108 When this option is enabled, GCC inserts @code{MEMW} instructions before
16109 @code{volatile} memory references to guarantee sequential consistency.
16110 The default is @option{-mserialize-volatile}.  Use
16111 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
16112
16113 @item -mtext-section-literals
16114 @itemx -mno-text-section-literals
16115 @opindex mtext-section-literals
16116 @opindex mno-text-section-literals
16117 Control the treatment of literal pools.  The default is
16118 @option{-mno-text-section-literals}, which places literals in a separate
16119 section in the output file.  This allows the literal pool to be placed
16120 in a data RAM/ROM, and it also allows the linker to combine literal
16121 pools from separate object files to remove redundant literals and
16122 improve code size.  With @option{-mtext-section-literals}, the literals
16123 are interspersed in the text section in order to keep them as close as
16124 possible to their references.  This may be necessary for large assembly
16125 files.
16126
16127 @item -mtarget-align
16128 @itemx -mno-target-align
16129 @opindex mtarget-align
16130 @opindex mno-target-align
16131 When this option is enabled, GCC instructs the assembler to
16132 automatically align instructions to reduce branch penalties at the
16133 expense of some code density.  The assembler attempts to widen density
16134 instructions to align branch targets and the instructions following call
16135 instructions.  If there are not enough preceding safe density
16136 instructions to align a target, no widening will be performed.  The
16137 default is @option{-mtarget-align}.  These options do not affect the
16138 treatment of auto-aligned instructions like @code{LOOP}, which the
16139 assembler will always align, either by widening density instructions or
16140 by inserting no-op instructions.
16141
16142 @item -mlongcalls
16143 @itemx -mno-longcalls
16144 @opindex mlongcalls
16145 @opindex mno-longcalls
16146 When this option is enabled, GCC instructs the assembler to translate
16147 direct calls to indirect calls unless it can determine that the target
16148 of a direct call is in the range allowed by the call instruction.  This
16149 translation typically occurs for calls to functions in other source
16150 files.  Specifically, the assembler translates a direct @code{CALL}
16151 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
16152 The default is @option{-mno-longcalls}.  This option should be used in
16153 programs where the call target can potentially be out of range.  This
16154 option is implemented in the assembler, not the compiler, so the
16155 assembly code generated by GCC will still show direct call
16156 instructions---look at the disassembled object code to see the actual
16157 instructions.  Note that the assembler will use an indirect call for
16158 every cross-file call, not just those that really will be out of range.
16159 @end table
16160
16161 @node zSeries Options
16162 @subsection zSeries Options
16163 @cindex zSeries options
16164
16165 These are listed under @xref{S/390 and zSeries Options}.
16166
16167 @node Code Gen Options
16168 @section Options for Code Generation Conventions
16169 @cindex code generation conventions
16170 @cindex options, code generation
16171 @cindex run-time options
16172
16173 These machine-independent options control the interface conventions
16174 used in code generation.
16175
16176 Most of them have both positive and negative forms; the negative form
16177 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
16178 one of the forms is listed---the one which is not the default.  You
16179 can figure out the other form by either removing @samp{no-} or adding
16180 it.
16181
16182 @table @gcctabopt
16183 @item -fbounds-check
16184 @opindex fbounds-check
16185 For front-ends that support it, generate additional code to check that
16186 indices used to access arrays are within the declared range.  This is
16187 currently only supported by the Java and Fortran front-ends, where
16188 this option defaults to true and false respectively.
16189
16190 @item -ftrapv
16191 @opindex ftrapv
16192 This option generates traps for signed overflow on addition, subtraction,
16193 multiplication operations.
16194
16195 @item -fwrapv
16196 @opindex fwrapv
16197 This option instructs the compiler to assume that signed arithmetic
16198 overflow of addition, subtraction and multiplication wraps around
16199 using twos-complement representation.  This flag enables some optimizations
16200 and disables others.  This option is enabled by default for the Java
16201 front-end, as required by the Java language specification.
16202
16203 @item -fexceptions
16204 @opindex fexceptions
16205 Enable exception handling.  Generates extra code needed to propagate
16206 exceptions.  For some targets, this implies GCC will generate frame
16207 unwind information for all functions, which can produce significant data
16208 size overhead, although it does not affect execution.  If you do not
16209 specify this option, GCC will enable it by default for languages like
16210 C++ which normally require exception handling, and disable it for
16211 languages like C that do not normally require it.  However, you may need
16212 to enable this option when compiling C code that needs to interoperate
16213 properly with exception handlers written in C++.  You may also wish to
16214 disable this option if you are compiling older C++ programs that don't
16215 use exception handling.
16216
16217 @item -fnon-call-exceptions
16218 @opindex fnon-call-exceptions
16219 Generate code that allows trapping instructions to throw exceptions.
16220 Note that this requires platform-specific runtime support that does
16221 not exist everywhere.  Moreover, it only allows @emph{trapping}
16222 instructions to throw exceptions, i.e.@: memory references or floating
16223 point instructions.  It does not allow exceptions to be thrown from
16224 arbitrary signal handlers such as @code{SIGALRM}.
16225
16226 @item -funwind-tables
16227 @opindex funwind-tables
16228 Similar to @option{-fexceptions}, except that it will just generate any needed
16229 static data, but will not affect the generated code in any other way.
16230 You will normally not enable this option; instead, a language processor
16231 that needs this handling would enable it on your behalf.
16232
16233 @item -fasynchronous-unwind-tables
16234 @opindex fasynchronous-unwind-tables
16235 Generate unwind table in dwarf2 format, if supported by target machine.  The
16236 table is exact at each instruction boundary, so it can be used for stack
16237 unwinding from asynchronous events (such as debugger or garbage collector).
16238
16239 @item -fpcc-struct-return
16240 @opindex fpcc-struct-return
16241 Return ``short'' @code{struct} and @code{union} values in memory like
16242 longer ones, rather than in registers.  This convention is less
16243 efficient, but it has the advantage of allowing intercallability between
16244 GCC-compiled files and files compiled with other compilers, particularly
16245 the Portable C Compiler (pcc).
16246
16247 The precise convention for returning structures in memory depends
16248 on the target configuration macros.
16249
16250 Short structures and unions are those whose size and alignment match
16251 that of some integer type.
16252
16253 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
16254 switch is not binary compatible with code compiled with the
16255 @option{-freg-struct-return} switch.
16256 Use it to conform to a non-default application binary interface.
16257
16258 @item -freg-struct-return
16259 @opindex freg-struct-return
16260 Return @code{struct} and @code{union} values in registers when possible.
16261 This is more efficient for small structures than
16262 @option{-fpcc-struct-return}.
16263
16264 If you specify neither @option{-fpcc-struct-return} nor
16265 @option{-freg-struct-return}, GCC defaults to whichever convention is
16266 standard for the target.  If there is no standard convention, GCC
16267 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
16268 the principal compiler.  In those cases, we can choose the standard, and
16269 we chose the more efficient register return alternative.
16270
16271 @strong{Warning:} code compiled with the @option{-freg-struct-return}
16272 switch is not binary compatible with code compiled with the
16273 @option{-fpcc-struct-return} switch.
16274 Use it to conform to a non-default application binary interface.
16275
16276 @item -fshort-enums
16277 @opindex fshort-enums
16278 Allocate to an @code{enum} type only as many bytes as it needs for the
16279 declared range of possible values.  Specifically, the @code{enum} type
16280 will be equivalent to the smallest integer type which has enough room.
16281
16282 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
16283 code that is not binary compatible with code generated without that switch.
16284 Use it to conform to a non-default application binary interface.
16285
16286 @item -fshort-double
16287 @opindex fshort-double
16288 Use the same size for @code{double} as for @code{float}.
16289
16290 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
16291 code that is not binary compatible with code generated without that switch.
16292 Use it to conform to a non-default application binary interface.
16293
16294 @item -fshort-wchar
16295 @opindex fshort-wchar
16296 Override the underlying type for @samp{wchar_t} to be @samp{short
16297 unsigned int} instead of the default for the target.  This option is
16298 useful for building programs to run under WINE@.
16299
16300 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
16301 code that is not binary compatible with code generated without that switch.
16302 Use it to conform to a non-default application binary interface.
16303
16304 @item -fno-common
16305 @opindex fno-common
16306 In C code, controls the placement of uninitialized global variables.
16307 Unix C compilers have traditionally permitted multiple definitions of
16308 such variables in different compilation units by placing the variables
16309 in a common block.  
16310 This is the behavior specified by @option{-fcommon}, and is the default 
16311 for GCC on most targets.  
16312 On the other hand, this behavior is not required by ISO C, and on some
16313 targets may carry a speed or code size penalty on variable references.
16314 The @option{-fno-common} option specifies that the compiler should place 
16315 uninitialized global variables in the data section of the object file,
16316 rather than generating them as common blocks.
16317 This has the effect that if the same variable is declared 
16318 (without @code{extern}) in two different compilations,
16319 you will get a multiple-definition error when you link them.
16320 In this case, you must compile with @option{-fcommon} instead.  
16321 Compiling with @option{-fno-common} is useful on targets for which 
16322 it provides better performance, or if you wish to verify that the
16323 program will work on other systems which always treat uninitialized
16324 variable declarations this way.
16325
16326 @item -fno-ident
16327 @opindex fno-ident
16328 Ignore the @samp{#ident} directive.
16329
16330 @item -finhibit-size-directive
16331 @opindex finhibit-size-directive
16332 Don't output a @code{.size} assembler directive, or anything else that
16333 would cause trouble if the function is split in the middle, and the
16334 two halves are placed at locations far apart in memory.  This option is
16335 used when compiling @file{crtstuff.c}; you should not need to use it
16336 for anything else.
16337
16338 @item -fverbose-asm
16339 @opindex fverbose-asm
16340 Put extra commentary information in the generated assembly code to
16341 make it more readable.  This option is generally only of use to those
16342 who actually need to read the generated assembly code (perhaps while
16343 debugging the compiler itself).
16344
16345 @option{-fno-verbose-asm}, the default, causes the
16346 extra information to be omitted and is useful when comparing two assembler
16347 files.
16348
16349 @item -frecord-gcc-switches
16350 @opindex frecord-gcc-switches
16351 This switch causes the command line that was used to invoke the
16352 compiler to be recorded into the object file that is being created.
16353 This switch is only implemented on some targets and the exact format
16354 of the recording is target and binary file format dependent, but it
16355 usually takes the form of a section containing ASCII text.  This
16356 switch is related to the @option{-fverbose-asm} switch, but that
16357 switch only records information in the assembler output file as
16358 comments, so it never reaches the object file.
16359
16360 @item -fpic
16361 @opindex fpic
16362 @cindex global offset table
16363 @cindex PIC
16364 Generate position-independent code (PIC) suitable for use in a shared
16365 library, if supported for the target machine.  Such code accesses all
16366 constant addresses through a global offset table (GOT)@.  The dynamic
16367 loader resolves the GOT entries when the program starts (the dynamic
16368 loader is not part of GCC; it is part of the operating system).  If
16369 the GOT size for the linked executable exceeds a machine-specific
16370 maximum size, you get an error message from the linker indicating that
16371 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
16372 instead.  (These maximums are 8k on the SPARC and 32k
16373 on the m68k and RS/6000.  The 386 has no such limit.)
16374
16375 Position-independent code requires special support, and therefore works
16376 only on certain machines.  For the 386, GCC supports PIC for System V
16377 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
16378 position-independent.
16379
16380 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
16381 are defined to 1.
16382
16383 @item -fPIC
16384 @opindex fPIC
16385 If supported for the target machine, emit position-independent code,
16386 suitable for dynamic linking and avoiding any limit on the size of the
16387 global offset table.  This option makes a difference on the m68k,
16388 PowerPC and SPARC@.
16389
16390 Position-independent code requires special support, and therefore works
16391 only on certain machines.
16392
16393 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
16394 are defined to 2.
16395
16396 @item -fpie
16397 @itemx -fPIE
16398 @opindex fpie
16399 @opindex fPIE
16400 These options are similar to @option{-fpic} and @option{-fPIC}, but
16401 generated position independent code can be only linked into executables.
16402 Usually these options are used when @option{-pie} GCC option will be
16403 used during linking.
16404
16405 @option{-fpie} and @option{-fPIE} both define the macros
16406 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
16407 for @option{-fpie} and 2 for @option{-fPIE}.
16408
16409 @item -fno-jump-tables
16410 @opindex fno-jump-tables
16411 Do not use jump tables for switch statements even where it would be
16412 more efficient than other code generation strategies.  This option is
16413 of use in conjunction with @option{-fpic} or @option{-fPIC} for
16414 building code which forms part of a dynamic linker and cannot
16415 reference the address of a jump table.  On some targets, jump tables
16416 do not require a GOT and this option is not needed.
16417
16418 @item -ffixed-@var{reg}
16419 @opindex ffixed
16420 Treat the register named @var{reg} as a fixed register; generated code
16421 should never refer to it (except perhaps as a stack pointer, frame
16422 pointer or in some other fixed role).
16423
16424 @var{reg} must be the name of a register.  The register names accepted
16425 are machine-specific and are defined in the @code{REGISTER_NAMES}
16426 macro in the machine description macro file.
16427
16428 This flag does not have a negative form, because it specifies a
16429 three-way choice.
16430
16431 @item -fcall-used-@var{reg}
16432 @opindex fcall-used
16433 Treat the register named @var{reg} as an allocable register that is
16434 clobbered by function calls.  It may be allocated for temporaries or
16435 variables that do not live across a call.  Functions compiled this way
16436 will not save and restore the register @var{reg}.
16437
16438 It is an error to used this flag with the frame pointer or stack pointer.
16439 Use of this flag for other registers that have fixed pervasive roles in
16440 the machine's execution model will produce disastrous results.
16441
16442 This flag does not have a negative form, because it specifies a
16443 three-way choice.
16444
16445 @item -fcall-saved-@var{reg}
16446 @opindex fcall-saved
16447 Treat the register named @var{reg} as an allocable register saved by
16448 functions.  It may be allocated even for temporaries or variables that
16449 live across a call.  Functions compiled this way will save and restore
16450 the register @var{reg} if they use it.
16451
16452 It is an error to used this flag with the frame pointer or stack pointer.
16453 Use of this flag for other registers that have fixed pervasive roles in
16454 the machine's execution model will produce disastrous results.
16455
16456 A different sort of disaster will result from the use of this flag for
16457 a register in which function values may be returned.
16458
16459 This flag does not have a negative form, because it specifies a
16460 three-way choice.
16461
16462 @item -fpack-struct[=@var{n}]
16463 @opindex fpack-struct
16464 Without a value specified, pack all structure members together without
16465 holes.  When a value is specified (which must be a small power of two), pack
16466 structure members according to this value, representing the maximum
16467 alignment (that is, objects with default alignment requirements larger than
16468 this will be output potentially unaligned at the next fitting location.
16469
16470 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
16471 code that is not binary compatible with code generated without that switch.
16472 Additionally, it makes the code suboptimal.
16473 Use it to conform to a non-default application binary interface.
16474
16475 @item -finstrument-functions
16476 @opindex finstrument-functions
16477 Generate instrumentation calls for entry and exit to functions.  Just
16478 after function entry and just before function exit, the following
16479 profiling functions will be called with the address of the current
16480 function and its call site.  (On some platforms,
16481 @code{__builtin_return_address} does not work beyond the current
16482 function, so the call site information may not be available to the
16483 profiling functions otherwise.)
16484
16485 @smallexample
16486 void __cyg_profile_func_enter (void *this_fn,
16487                                void *call_site);
16488 void __cyg_profile_func_exit  (void *this_fn,
16489                                void *call_site);
16490 @end smallexample
16491
16492 The first argument is the address of the start of the current function,
16493 which may be looked up exactly in the symbol table.
16494
16495 This instrumentation is also done for functions expanded inline in other
16496 functions.  The profiling calls will indicate where, conceptually, the
16497 inline function is entered and exited.  This means that addressable
16498 versions of such functions must be available.  If all your uses of a
16499 function are expanded inline, this may mean an additional expansion of
16500 code size.  If you use @samp{extern inline} in your C code, an
16501 addressable version of such functions must be provided.  (This is
16502 normally the case anyways, but if you get lucky and the optimizer always
16503 expands the functions inline, you might have gotten away without
16504 providing static copies.)
16505
16506 A function may be given the attribute @code{no_instrument_function}, in
16507 which case this instrumentation will not be done.  This can be used, for
16508 example, for the profiling functions listed above, high-priority
16509 interrupt routines, and any functions from which the profiling functions
16510 cannot safely be called (perhaps signal handlers, if the profiling
16511 routines generate output or allocate memory).
16512
16513 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
16514 @opindex finstrument-functions-exclude-file-list
16515
16516 Set the list of functions that are excluded from instrumentation (see
16517 the description of @code{-finstrument-functions}).  If the file that
16518 contains a function definition matches with one of @var{file}, then
16519 that function is not instrumented.  The match is done on substrings:
16520 if the @var{file} parameter is a substring of the file name, it is
16521 considered to be a match.
16522
16523 For example,
16524 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
16525 will exclude any inline function defined in files whose pathnames
16526 contain @code{/bits/stl} or @code{include/sys}.
16527
16528 If, for some reason, you want to include letter @code{','} in one of
16529 @var{sym}, write @code{'\,'}. For example,
16530 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
16531 (note the single quote surrounding the option).
16532
16533 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
16534 @opindex finstrument-functions-exclude-function-list
16535
16536 This is similar to @code{-finstrument-functions-exclude-file-list},
16537 but this option sets the list of function names to be excluded from
16538 instrumentation.  The function name to be matched is its user-visible
16539 name, such as @code{vector<int> blah(const vector<int> &)}, not the
16540 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
16541 match is done on substrings: if the @var{sym} parameter is a substring
16542 of the function name, it is considered to be a match.  For C99 and C++
16543 extended identifiers, the function name must be given in UTF-8, not
16544 using universal character names.
16545
16546 @item -fstack-check
16547 @opindex fstack-check
16548 Generate code to verify that you do not go beyond the boundary of the
16549 stack.  You should specify this flag if you are running in an
16550 environment with multiple threads, but only rarely need to specify it in
16551 a single-threaded environment since stack overflow is automatically
16552 detected on nearly all systems if there is only one stack.
16553
16554 Note that this switch does not actually cause checking to be done; the
16555 operating system or the language runtime must do that.  The switch causes
16556 generation of code to ensure that they see the stack being extended.
16557
16558 You can additionally specify a string parameter: @code{no} means no
16559 checking, @code{generic} means force the use of old-style checking,
16560 @code{specific} means use the best checking method and is equivalent
16561 to bare @option{-fstack-check}.
16562
16563 Old-style checking is a generic mechanism that requires no specific
16564 target support in the compiler but comes with the following drawbacks:
16565
16566 @enumerate
16567 @item
16568 Modified allocation strategy for large objects: they will always be
16569 allocated dynamically if their size exceeds a fixed threshold.
16570
16571 @item
16572 Fixed limit on the size of the static frame of functions: when it is
16573 topped by a particular function, stack checking is not reliable and
16574 a warning is issued by the compiler.
16575
16576 @item
16577 Inefficiency: because of both the modified allocation strategy and the
16578 generic implementation, the performances of the code are hampered.
16579 @end enumerate
16580
16581 Note that old-style stack checking is also the fallback method for
16582 @code{specific} if no target support has been added in the compiler.
16583
16584 @item -fstack-limit-register=@var{reg}
16585 @itemx -fstack-limit-symbol=@var{sym}
16586 @itemx -fno-stack-limit
16587 @opindex fstack-limit-register
16588 @opindex fstack-limit-symbol
16589 @opindex fno-stack-limit
16590 Generate code to ensure that the stack does not grow beyond a certain value,
16591 either the value of a register or the address of a symbol.  If the stack
16592 would grow beyond the value, a signal is raised.  For most targets,
16593 the signal is raised before the stack overruns the boundary, so
16594 it is possible to catch the signal without taking special precautions.
16595
16596 For instance, if the stack starts at absolute address @samp{0x80000000}
16597 and grows downwards, you can use the flags
16598 @option{-fstack-limit-symbol=__stack_limit} and
16599 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
16600 of 128KB@.  Note that this may only work with the GNU linker.
16601
16602 @cindex aliasing of parameters
16603 @cindex parameters, aliased
16604 @item -fargument-alias
16605 @itemx -fargument-noalias
16606 @itemx -fargument-noalias-global
16607 @itemx -fargument-noalias-anything
16608 @opindex fargument-alias
16609 @opindex fargument-noalias
16610 @opindex fargument-noalias-global
16611 @opindex fargument-noalias-anything
16612 Specify the possible relationships among parameters and between
16613 parameters and global data.
16614
16615 @option{-fargument-alias} specifies that arguments (parameters) may
16616 alias each other and may alias global storage.@*
16617 @option{-fargument-noalias} specifies that arguments do not alias
16618 each other, but may alias global storage.@*
16619 @option{-fargument-noalias-global} specifies that arguments do not
16620 alias each other and do not alias global storage.
16621 @option{-fargument-noalias-anything} specifies that arguments do not
16622 alias any other storage.
16623
16624 Each language will automatically use whatever option is required by
16625 the language standard.  You should not need to use these options yourself.
16626
16627 @item -fleading-underscore
16628 @opindex fleading-underscore
16629 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
16630 change the way C symbols are represented in the object file.  One use
16631 is to help link with legacy assembly code.
16632
16633 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
16634 generate code that is not binary compatible with code generated without that
16635 switch.  Use it to conform to a non-default application binary interface.
16636 Not all targets provide complete support for this switch.
16637
16638 @item -ftls-model=@var{model}
16639 @opindex ftls-model
16640 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
16641 The @var{model} argument should be one of @code{global-dynamic},
16642 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
16643
16644 The default without @option{-fpic} is @code{initial-exec}; with
16645 @option{-fpic} the default is @code{global-dynamic}.
16646
16647 @item -fvisibility=@var{default|internal|hidden|protected}
16648 @opindex fvisibility
16649 Set the default ELF image symbol visibility to the specified option---all
16650 symbols will be marked with this unless overridden within the code.
16651 Using this feature can very substantially improve linking and
16652 load times of shared object libraries, produce more optimized
16653 code, provide near-perfect API export and prevent symbol clashes.
16654 It is @strong{strongly} recommended that you use this in any shared objects
16655 you distribute.
16656
16657 Despite the nomenclature, @code{default} always means public ie;
16658 available to be linked against from outside the shared object.
16659 @code{protected} and @code{internal} are pretty useless in real-world
16660 usage so the only other commonly used option will be @code{hidden}.
16661 The default if @option{-fvisibility} isn't specified is
16662 @code{default}, i.e., make every
16663 symbol public---this causes the same behavior as previous versions of
16664 GCC@.
16665
16666 A good explanation of the benefits offered by ensuring ELF
16667 symbols have the correct visibility is given by ``How To Write
16668 Shared Libraries'' by Ulrich Drepper (which can be found at
16669 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
16670 solution made possible by this option to marking things hidden when
16671 the default is public is to make the default hidden and mark things
16672 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
16673 and @code{__attribute__ ((visibility("default")))} instead of
16674 @code{__declspec(dllexport)} you get almost identical semantics with
16675 identical syntax.  This is a great boon to those working with
16676 cross-platform projects.
16677
16678 For those adding visibility support to existing code, you may find
16679 @samp{#pragma GCC visibility} of use.  This works by you enclosing
16680 the declarations you wish to set visibility for with (for example)
16681 @samp{#pragma GCC visibility push(hidden)} and
16682 @samp{#pragma GCC visibility pop}.
16683 Bear in mind that symbol visibility should be viewed @strong{as
16684 part of the API interface contract} and thus all new code should
16685 always specify visibility when it is not the default ie; declarations
16686 only for use within the local DSO should @strong{always} be marked explicitly
16687 as hidden as so to avoid PLT indirection overheads---making this
16688 abundantly clear also aids readability and self-documentation of the code.
16689 Note that due to ISO C++ specification requirements, operator new and
16690 operator delete must always be of default visibility.
16691
16692 Be aware that headers from outside your project, in particular system
16693 headers and headers from any other library you use, may not be
16694 expecting to be compiled with visibility other than the default.  You
16695 may need to explicitly say @samp{#pragma GCC visibility push(default)}
16696 before including any such headers.
16697
16698 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
16699 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
16700 no modifications.  However, this means that calls to @samp{extern}
16701 functions with no explicit visibility will use the PLT, so it is more
16702 effective to use @samp{__attribute ((visibility))} and/or
16703 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
16704 declarations should be treated as hidden.
16705
16706 Note that @samp{-fvisibility} does affect C++ vague linkage
16707 entities. This means that, for instance, an exception class that will
16708 be thrown between DSOs must be explicitly marked with default
16709 visibility so that the @samp{type_info} nodes will be unified between
16710 the DSOs.
16711
16712 An overview of these techniques, their benefits and how to use them
16713 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
16714
16715 @end table
16716
16717 @c man end
16718
16719 @node Environment Variables
16720 @section Environment Variables Affecting GCC
16721 @cindex environment variables
16722
16723 @c man begin ENVIRONMENT
16724 This section describes several environment variables that affect how GCC
16725 operates.  Some of them work by specifying directories or prefixes to use
16726 when searching for various kinds of files.  Some are used to specify other
16727 aspects of the compilation environment.
16728
16729 Note that you can also specify places to search using options such as
16730 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
16731 take precedence over places specified using environment variables, which
16732 in turn take precedence over those specified by the configuration of GCC@.
16733 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
16734 GNU Compiler Collection (GCC) Internals}.
16735
16736 @table @env
16737 @item LANG
16738 @itemx LC_CTYPE
16739 @c @itemx LC_COLLATE
16740 @itemx LC_MESSAGES
16741 @c @itemx LC_MONETARY
16742 @c @itemx LC_NUMERIC
16743 @c @itemx LC_TIME
16744 @itemx LC_ALL
16745 @findex LANG
16746 @findex LC_CTYPE
16747 @c @findex LC_COLLATE
16748 @findex LC_MESSAGES
16749 @c @findex LC_MONETARY
16750 @c @findex LC_NUMERIC
16751 @c @findex LC_TIME
16752 @findex LC_ALL
16753 @cindex locale
16754 These environment variables control the way that GCC uses
16755 localization information that allow GCC to work with different
16756 national conventions.  GCC inspects the locale categories
16757 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
16758 so.  These locale categories can be set to any value supported by your
16759 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
16760 Kingdom encoded in UTF-8.
16761
16762 The @env{LC_CTYPE} environment variable specifies character
16763 classification.  GCC uses it to determine the character boundaries in
16764 a string; this is needed for some multibyte encodings that contain quote
16765 and escape characters that would otherwise be interpreted as a string
16766 end or escape.
16767
16768 The @env{LC_MESSAGES} environment variable specifies the language to
16769 use in diagnostic messages.
16770
16771 If the @env{LC_ALL} environment variable is set, it overrides the value
16772 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
16773 and @env{LC_MESSAGES} default to the value of the @env{LANG}
16774 environment variable.  If none of these variables are set, GCC
16775 defaults to traditional C English behavior.
16776
16777 @item TMPDIR
16778 @findex TMPDIR
16779 If @env{TMPDIR} is set, it specifies the directory to use for temporary
16780 files.  GCC uses temporary files to hold the output of one stage of
16781 compilation which is to be used as input to the next stage: for example,
16782 the output of the preprocessor, which is the input to the compiler
16783 proper.
16784
16785 @item GCC_EXEC_PREFIX
16786 @findex GCC_EXEC_PREFIX
16787 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
16788 names of the subprograms executed by the compiler.  No slash is added
16789 when this prefix is combined with the name of a subprogram, but you can
16790 specify a prefix that ends with a slash if you wish.
16791
16792 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
16793 an appropriate prefix to use based on the pathname it was invoked with.
16794
16795 If GCC cannot find the subprogram using the specified prefix, it
16796 tries looking in the usual places for the subprogram.
16797
16798 The default value of @env{GCC_EXEC_PREFIX} is
16799 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
16800 the installed compiler. In many cases @var{prefix} is the value
16801 of @code{prefix} when you ran the @file{configure} script.
16802
16803 Other prefixes specified with @option{-B} take precedence over this prefix.
16804
16805 This prefix is also used for finding files such as @file{crt0.o} that are
16806 used for linking.
16807
16808 In addition, the prefix is used in an unusual way in finding the
16809 directories to search for header files.  For each of the standard
16810 directories whose name normally begins with @samp{/usr/local/lib/gcc}
16811 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
16812 replacing that beginning with the specified prefix to produce an
16813 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
16814 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
16815 These alternate directories are searched first; the standard directories
16816 come next. If a standard directory begins with the configured
16817 @var{prefix} then the value of @var{prefix} is replaced by
16818 @env{GCC_EXEC_PREFIX} when looking for header files.
16819
16820 @item COMPILER_PATH
16821 @findex COMPILER_PATH
16822 The value of @env{COMPILER_PATH} is a colon-separated list of
16823 directories, much like @env{PATH}.  GCC tries the directories thus
16824 specified when searching for subprograms, if it can't find the
16825 subprograms using @env{GCC_EXEC_PREFIX}.
16826
16827 @item LIBRARY_PATH
16828 @findex LIBRARY_PATH
16829 The value of @env{LIBRARY_PATH} is a colon-separated list of
16830 directories, much like @env{PATH}.  When configured as a native compiler,
16831 GCC tries the directories thus specified when searching for special
16832 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
16833 using GCC also uses these directories when searching for ordinary
16834 libraries for the @option{-l} option (but directories specified with
16835 @option{-L} come first).
16836
16837 @item LANG
16838 @findex LANG
16839 @cindex locale definition
16840 This variable is used to pass locale information to the compiler.  One way in
16841 which this information is used is to determine the character set to be used
16842 when character literals, string literals and comments are parsed in C and C++.
16843 When the compiler is configured to allow multibyte characters,
16844 the following values for @env{LANG} are recognized:
16845
16846 @table @samp
16847 @item C-JIS
16848 Recognize JIS characters.
16849 @item C-SJIS
16850 Recognize SJIS characters.
16851 @item C-EUCJP
16852 Recognize EUCJP characters.
16853 @end table
16854
16855 If @env{LANG} is not defined, or if it has some other value, then the
16856 compiler will use mblen and mbtowc as defined by the default locale to
16857 recognize and translate multibyte characters.
16858 @end table
16859
16860 @noindent
16861 Some additional environments variables affect the behavior of the
16862 preprocessor.
16863
16864 @include cppenv.texi
16865
16866 @c man end
16867
16868 @node Precompiled Headers
16869 @section Using Precompiled Headers
16870 @cindex precompiled headers
16871 @cindex speed of compilation
16872
16873 Often large projects have many header files that are included in every
16874 source file.  The time the compiler takes to process these header files
16875 over and over again can account for nearly all of the time required to
16876 build the project.  To make builds faster, GCC allows users to
16877 `precompile' a header file; then, if builds can use the precompiled
16878 header file they will be much faster.
16879
16880 To create a precompiled header file, simply compile it as you would any
16881 other file, if necessary using the @option{-x} option to make the driver
16882 treat it as a C or C++ header file.  You will probably want to use a
16883 tool like @command{make} to keep the precompiled header up-to-date when
16884 the headers it contains change.
16885
16886 A precompiled header file will be searched for when @code{#include} is
16887 seen in the compilation.  As it searches for the included file
16888 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
16889 compiler looks for a precompiled header in each directory just before it
16890 looks for the include file in that directory.  The name searched for is
16891 the name specified in the @code{#include} with @samp{.gch} appended.  If
16892 the precompiled header file can't be used, it is ignored.
16893
16894 For instance, if you have @code{#include "all.h"}, and you have
16895 @file{all.h.gch} in the same directory as @file{all.h}, then the
16896 precompiled header file will be used if possible, and the original
16897 header will be used otherwise.
16898
16899 Alternatively, you might decide to put the precompiled header file in a
16900 directory and use @option{-I} to ensure that directory is searched
16901 before (or instead of) the directory containing the original header.
16902 Then, if you want to check that the precompiled header file is always
16903 used, you can put a file of the same name as the original header in this
16904 directory containing an @code{#error} command.
16905
16906 This also works with @option{-include}.  So yet another way to use
16907 precompiled headers, good for projects not designed with precompiled
16908 header files in mind, is to simply take most of the header files used by
16909 a project, include them from another header file, precompile that header
16910 file, and @option{-include} the precompiled header.  If the header files
16911 have guards against multiple inclusion, they will be skipped because
16912 they've already been included (in the precompiled header).
16913
16914 If you need to precompile the same header file for different
16915 languages, targets, or compiler options, you can instead make a
16916 @emph{directory} named like @file{all.h.gch}, and put each precompiled
16917 header in the directory, perhaps using @option{-o}.  It doesn't matter
16918 what you call the files in the directory, every precompiled header in
16919 the directory will be considered.  The first precompiled header
16920 encountered in the directory that is valid for this compilation will
16921 be used; they're searched in no particular order.
16922
16923 There are many other possibilities, limited only by your imagination,
16924 good sense, and the constraints of your build system.
16925
16926 A precompiled header file can be used only when these conditions apply:
16927
16928 @itemize
16929 @item
16930 Only one precompiled header can be used in a particular compilation.
16931
16932 @item
16933 A precompiled header can't be used once the first C token is seen.  You
16934 can have preprocessor directives before a precompiled header; you can
16935 even include a precompiled header from inside another header, so long as
16936 there are no C tokens before the @code{#include}.
16937
16938 @item
16939 The precompiled header file must be produced for the same language as
16940 the current compilation.  You can't use a C precompiled header for a C++
16941 compilation.
16942
16943 @item
16944 The precompiled header file must have been produced by the same compiler
16945 binary as the current compilation is using.
16946
16947 @item
16948 Any macros defined before the precompiled header is included must
16949 either be defined in the same way as when the precompiled header was
16950 generated, or must not affect the precompiled header, which usually
16951 means that they don't appear in the precompiled header at all.
16952
16953 The @option{-D} option is one way to define a macro before a
16954 precompiled header is included; using a @code{#define} can also do it.
16955 There are also some options that define macros implicitly, like
16956 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
16957 defined this way.
16958
16959 @item If debugging information is output when using the precompiled
16960 header, using @option{-g} or similar, the same kind of debugging information
16961 must have been output when building the precompiled header.  However,
16962 a precompiled header built using @option{-g} can be used in a compilation
16963 when no debugging information is being output.
16964
16965 @item The same @option{-m} options must generally be used when building
16966 and using the precompiled header.  @xref{Submodel Options},
16967 for any cases where this rule is relaxed.
16968
16969 @item Each of the following options must be the same when building and using
16970 the precompiled header:
16971
16972 @gccoptlist{-fexceptions}
16973
16974 @item
16975 Some other command-line options starting with @option{-f},
16976 @option{-p}, or @option{-O} must be defined in the same way as when
16977 the precompiled header was generated.  At present, it's not clear
16978 which options are safe to change and which are not; the safest choice
16979 is to use exactly the same options when generating and using the
16980 precompiled header.  The following are known to be safe:
16981
16982 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
16983 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
16984 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
16985 -pedantic-errors}
16986
16987 @end itemize
16988
16989 For all of these except the last, the compiler will automatically
16990 ignore the precompiled header if the conditions aren't met.  If you
16991 find an option combination that doesn't work and doesn't cause the
16992 precompiled header to be ignored, please consider filing a bug report,
16993 see @ref{Bugs}.
16994
16995 If you do use differing options when generating and using the
16996 precompiled header, the actual behavior will be a mixture of the
16997 behavior for the options.  For instance, if you use @option{-g} to
16998 generate the precompiled header but not when using it, you may or may
16999 not get debugging information for routines in the precompiled header.