invoke.texi (-fipa-cp): Enabled by default at -O2/-Os/-O3
[platform/upstream/gcc.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
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
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{-dr} is very different from @w{@samp{-d
101 -r}}.
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 * Running Protoize::    Automatically adding or removing function prototypes.
152 @end menu
153
154 @c man begin OPTIONS
155
156 @node Option Summary
157 @section Option Summary
158
159 Here is a summary of all the options, grouped by type.  Explanations are
160 in the following sections.
161
162 @table @emph
163 @item Overall Options
164 @xref{Overall Options,,Options Controlling the Kind of Output}.
165 @gccoptlist{-c  -S  -E  -o @var{file}  -combine  -pipe  -pass-exit-codes  @gol
166 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{]}  --target-help  @gol
167 --version -wrapper@@@var{file}}
168
169 @item C Language Options
170 @xref{C Dialect Options,,Options Controlling C Dialect}.
171 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
172 -aux-info @var{filename} @gol
173 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
174 -fhosted  -ffreestanding -fopenmp -fms-extensions @gol
175 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
176 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
177 -fsigned-bitfields  -fsigned-char @gol
178 -funsigned-bitfields  -funsigned-char}
179
180 @item C++ Language Options
181 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
182 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
183 -fconserve-space  -ffriend-injection @gol
184 -fno-elide-constructors @gol
185 -fno-enforce-eh-specs @gol
186 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
187 -fno-implicit-templates @gol
188 -fno-implicit-inline-templates @gol
189 -fno-implement-inlines  -fms-extensions @gol
190 -fno-nonansi-builtins  -fno-operator-names @gol
191 -fno-optional-diags  -fpermissive @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 -Wc++-compat -Wc++0x-compat -Wcast-align  -Wcast-qual  @gol
232 -Wchar-subscripts -Wclobbered  -Wcomment @gol
233 -Wconversion  -Wcoverage-mismatch  -Wno-deprecated  @gol
234 -Wno-deprecated-declarations -Wdisabled-optimization  @gol
235 -Wdisallowed-function-list=@var{sym},@var{sym},@dots{} @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} -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  -Wpadded @gol
252 -Wparentheses  -Wpointer-arith  -Wno-pointer-to-int-cast @gol
253 -Wredundant-decls @gol
254 -Wreturn-type  -Wsequence-point  -Wshadow @gol
255 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
256 -Wstrict-aliasing -Wstrict-aliasing=n @gol
257 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
258 -Wswitch  -Wswitch-default  -Wswitch-enum @gol
259 -Wsystem-headers  -Wtrigraphs  -Wtype-limits  -Wundef  -Wuninitialized @gol
260 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
261 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
262 -Wunused-value  -Wunused-variable @gol
263 -Wvariadic-macros -Wvla @gol
264 -Wvolatile-register-var  -Wwrite-strings}
265
266 @item C and Objective-C-only Warning Options
267 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
268 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
269 -Wold-style-declaration  -Wold-style-definition @gol
270 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
271 -Wdeclaration-after-statement -Wpointer-sign}
272
273 @item Debugging Options
274 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
275 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
276 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
277 -fdump-noaddr -fdump-unnumbered @gol
278 -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
279 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
280 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
281 -fdump-statistics @gol
282 -fdump-tree-all @gol
283 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
284 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
285 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
286 -fdump-tree-ch @gol
287 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
288 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
293 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
294 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
295 -fdump-tree-nrv -fdump-tree-vect @gol
296 -fdump-tree-sink @gol
297 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
298 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
299 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
300 -ftree-vectorizer-verbose=@var{n} @gol
301 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
302 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
303 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
304 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
305 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
306 -ftest-coverage  -ftime-report -fvar-tracking @gol
307 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
308 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
309 -fno-merge-debug-strings -fdebug-prefix-map=@var{old}=@var{new} @gol
310 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
311 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
312 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
313 -print-multi-directory  -print-multi-lib @gol
314 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
315 -print-sysroot -print-sysroot-headers-suffix @gol
316 -save-temps  -time}
317
318 @item Optimization Options
319 @xref{Optimize Options,,Options that Control Optimization}.
320 @gccoptlist{
321 -falign-functions[=@var{n}] -falign-jumps[=@var{n}] @gol
322 -falign-labels[=@var{n}] -falign-loops[=@var{n}] -fassociative-math @gol
323 -fauto-inc-dec -fbranch-probabilities -fbranch-target-load-optimize @gol
324 -fbranch-target-load-optimize2 -fbtr-bb-exclusive -fcaller-saves @gol
325 -fcheck-data-deps -fcprop-registers -fcrossjumping -fcse-follow-jumps @gol
326 -fcse-skip-blocks -fcx-fortran-rules -fcx-limited-range @gol
327 -fdata-sections -fdce -fdce @gol
328 -fdelayed-branch -fdelete-null-pointer-checks -fdse -fdse @gol
329 -fearly-inlining -fexpensive-optimizations -ffast-math @gol
330 -ffinite-math-only -ffloat-store -fforward-propagate @gol
331 -ffunction-sections -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm @gol
332 -fgcse-sm -fif-conversion -fif-conversion2 -findirect-inlining @gol
333 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
334 -finline-small-functions -fipa-cp -fipa-cp-clone -fipa-marix-reorg -fipa-pta @gol 
335 -fipa-pure-const -fipa-reference -fipa-struct-reorg @gol
336 -fipa-type-escape -fira -fira-algorithm=@var{algorithm} @gol
337 -fira-coalesce -fno-ira-share-save-slots @gol
338 -fno-ira-share-spill-slots -fira-verbose=@var{n} @gol
339 -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
340 -fmerge-all-constants -fmerge-constants -fmodulo-sched @gol
341 -fmodulo-sched-allow-regmoves -fmove-loop-invariants -fmudflap @gol
342 -fmudflapir -fmudflapth -fno-branch-count-reg -fno-default-inline @gol
343 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
344 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
345 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
346 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
347 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
348 -fpeel-loops -fpredictive-commoning -fprefetch-loop-arrays @gol
349 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
350 -fprofile-generate=@var{path} @gol
351 -fprofile-use -fprofile-use=@var{path} -fprofile-values @gol
352 -freciprocal-math -fregmove -frename-registers -freorder-blocks @gol
353 -freorder-blocks-and-partition -freorder-functions @gol
354 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
355 -frounding-math -frtl-abstract-sequences -fsched2-use-superblocks @gol
356 -fsched2-use-traces -fsched-spec-load -fsched-spec-load-dangerous @gol
357 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
358 -fschedule-insns -fschedule-insns2 -fsection-anchors -fsee @gol
359 -fsignaling-nans -fsingle-precision-constant -fsplit-ivs-in-unroller @gol
360 -fsplit-wide-types -fstack-protector -fstack-protector-all @gol
361 -fstrict-aliasing -fstrict-overflow -fthread-jumps -ftracer @gol
362 -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copy-prop @gol
363 -ftree-copyrename -ftree-dce @gol
364 -ftree-dominator-opts -ftree-dse -ftree-fre -ftree-loop-im @gol
365 -ftree-loop-distribution @gol
366 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
367 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-reassoc @gol
368 -ftree-sink -ftree-sra -ftree-store-ccp -ftree-switch-conversion @gol
369 -ftree-ter -ftree-vect-loop-version -ftree-vectorize -ftree-vrp @gol
370 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
371 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
372 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
373 -fwhole-program @gol
374 --param @var{name}=@var{value}
375 -O  -O0  -O1  -O2  -O3  -Os}
376
377 @item Preprocessor Options
378 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
379 @gccoptlist{-A@var{question}=@var{answer} @gol
380 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
381 -C  -dD  -dI  -dM  -dN @gol
382 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
383 -idirafter @var{dir} @gol
384 -include @var{file}  -imacros @var{file} @gol
385 -iprefix @var{file}  -iwithprefix @var{dir} @gol
386 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
387 -imultilib @var{dir} -isysroot @var{dir} @gol
388 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
389 -P  -fworking-directory  -remap @gol
390 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
391 -Xpreprocessor @var{option}}
392
393 @item Assembler Option
394 @xref{Assembler Options,,Passing Options to the Assembler}.
395 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
396
397 @item Linker Options
398 @xref{Link Options,,Options for Linking}.
399 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
400 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
401 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
402 -Wl,@var{option}  -Xlinker @var{option} @gol
403 -u @var{symbol}}
404
405 @item Directory Options
406 @xref{Directory Options,,Options for Directory Search}.
407 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
408 -specs=@var{file}  -I- --sysroot=@var{dir}}
409
410 @item Target Options
411 @c I wrote this xref this way to avoid overfull hbox. -- rms
412 @xref{Target Options}.
413 @gccoptlist{-V @var{version}  -b @var{machine}}
414
415 @item Machine Dependent Options
416 @xref{Submodel Options,,Hardware Models and Configurations}.
417 @c This list is ordered alphanumerically by subsection name.
418 @c Try and put the significant identifier (CPU or system) first,
419 @c so users have a clue at guessing where the ones they want will be.
420
421 @emph{ARC Options}
422 @gccoptlist{-EB  -EL @gol
423 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
424 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
425
426 @emph{ARM Options}
427 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
428 -mabi=@var{name} @gol
429 -mapcs-stack-check  -mno-apcs-stack-check @gol
430 -mapcs-float  -mno-apcs-float @gol
431 -mapcs-reentrant  -mno-apcs-reentrant @gol
432 -msched-prolog  -mno-sched-prolog @gol
433 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
434 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
435 -mthumb-interwork  -mno-thumb-interwork @gol
436 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
437 -mstructure-size-boundary=@var{n} @gol
438 -mabort-on-noreturn @gol
439 -mlong-calls  -mno-long-calls @gol
440 -msingle-pic-base  -mno-single-pic-base @gol
441 -mpic-register=@var{reg} @gol
442 -mnop-fun-dllimport @gol
443 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
444 -mpoke-function-name @gol
445 -mthumb  -marm @gol
446 -mtpcs-frame  -mtpcs-leaf-frame @gol
447 -mcaller-super-interworking  -mcallee-super-interworking @gol
448 -mtp=@var{name}}
449
450 @emph{AVR Options}
451 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
452 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
453
454 @emph{Blackfin Options}
455 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
456 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
457 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
458 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
459 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
460 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
461 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
462 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram}
463
464 @emph{CRIS Options}
465 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
466 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
467 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
468 -mstack-align  -mdata-align  -mconst-align @gol
469 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
470 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
471 -mmul-bug-workaround  -mno-mul-bug-workaround}
472
473 @emph{CRX Options}
474 @gccoptlist{-mmac -mpush-args}
475
476 @emph{Darwin Options}
477 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
478 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
479 -client_name  -compatibility_version  -current_version @gol
480 -dead_strip @gol
481 -dependency-file  -dylib_file  -dylinker_install_name @gol
482 -dynamic  -dynamiclib  -exported_symbols_list @gol
483 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
484 -force_flat_namespace  -headerpad_max_install_names @gol
485 -iframework @gol
486 -image_base  -init  -install_name  -keep_private_externs @gol
487 -multi_module  -multiply_defined  -multiply_defined_unused @gol
488 -noall_load   -no_dead_strip_inits_and_terms @gol
489 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
490 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
491 -private_bundle  -read_only_relocs  -sectalign @gol
492 -sectobjectsymbols  -whyload  -seg1addr @gol
493 -sectcreate  -sectobjectsymbols  -sectorder @gol
494 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
495 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
496 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
497 -single_module  -static  -sub_library  -sub_umbrella @gol
498 -twolevel_namespace  -umbrella  -undefined @gol
499 -unexported_symbols_list  -weak_reference_mismatches @gol
500 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
501 -mkernel -mone-byte-bool}
502
503 @emph{DEC Alpha Options}
504 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
505 -mieee  -mieee-with-inexact  -mieee-conformant @gol
506 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
507 -mtrap-precision=@var{mode}  -mbuild-constants @gol
508 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
509 -mbwx  -mmax  -mfix  -mcix @gol
510 -mfloat-vax  -mfloat-ieee @gol
511 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
512 -msmall-text  -mlarge-text @gol
513 -mmemory-latency=@var{time}}
514
515 @emph{DEC Alpha/VMS Options}
516 @gccoptlist{-mvms-return-codes}
517
518 @emph{FRV Options}
519 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
520 -mhard-float  -msoft-float @gol
521 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
522 -mdouble  -mno-double @gol
523 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
524 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
525 -mlinked-fp  -mlong-calls  -malign-labels @gol
526 -mlibrary-pic  -macc-4  -macc-8 @gol
527 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
528 -moptimize-membar -mno-optimize-membar @gol
529 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
530 -mvliw-branch  -mno-vliw-branch @gol
531 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
532 -mno-nested-cond-exec  -mtomcat-stats @gol
533 -mTLS -mtls @gol
534 -mcpu=@var{cpu}}
535
536 @emph{GNU/Linux Options}
537 @gccoptlist{-muclibc}
538
539 @emph{H8/300 Options}
540 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
541
542 @emph{HPPA Options}
543 @gccoptlist{-march=@var{architecture-type} @gol
544 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
545 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
546 -mfixed-range=@var{register-range} @gol
547 -mjump-in-delay -mlinker-opt -mlong-calls @gol
548 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
549 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
550 -mno-jump-in-delay  -mno-long-load-store @gol
551 -mno-portable-runtime  -mno-soft-float @gol
552 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
553 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
554 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
555 -munix=@var{unix-std}  -nolibdld  -static  -threads}
556
557 @emph{i386 and x86-64 Options}
558 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
559 -mfpmath=@var{unit} @gol
560 -masm=@var{dialect}  -mno-fancy-math-387 @gol
561 -mno-fp-ret-in-387  -msoft-float @gol
562 -mno-wide-multiply  -mrtd  -malign-double @gol
563 -mpreferred-stack-boundary=@var{num}
564 -mincoming-stack-boundary=@var{num}
565 -mcld -mcx16 -msahf -mrecip @gol
566 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 -mavx @gol
567 -maes -mpclmul @gol
568 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
569 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
570 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
571 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
572 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
573 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
574 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
575 -mcmodel=@var{code-model} @gol
576 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
577 -mfused-madd -mno-fused-madd}
578
579 @emph{IA-64 Options}
580 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
581 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
582 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
583 -minline-float-divide-max-throughput @gol
584 -minline-int-divide-min-latency @gol
585 -minline-int-divide-max-throughput  @gol
586 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
587 -mno-dwarf2-asm -mearly-stop-bits @gol
588 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
589 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
590 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
591 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
592 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
593 -mno-sched-prefer-non-data-spec-insns @gol
594 -mno-sched-prefer-non-control-spec-insns @gol
595 -mno-sched-count-spec-in-critical-path}
596
597 @emph{M32R/D Options}
598 @gccoptlist{-m32r2 -m32rx -m32r @gol
599 -mdebug @gol
600 -malign-loops -mno-align-loops @gol
601 -missue-rate=@var{number} @gol
602 -mbranch-cost=@var{number} @gol
603 -mmodel=@var{code-size-model-type} @gol
604 -msdata=@var{sdata-type} @gol
605 -mno-flush-func -mflush-func=@var{name} @gol
606 -mno-flush-trap -mflush-trap=@var{number} @gol
607 -G @var{num}}
608
609 @emph{M32C Options}
610 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
611
612 @emph{M680x0 Options}
613 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
614 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
615 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
616 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
617 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
618 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
619 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
620 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
621 -mxgot -mno-xgot}
622
623 @emph{M68hc1x Options}
624 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
625 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
626 -msoft-reg-count=@var{count}}
627
628 @emph{MCore Options}
629 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
630 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
631 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
632 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
633 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
634
635 @emph{MIPS Options}
636 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
637 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2 @gol
638 -mips64  -mips64r2 @gol
639 -mips16  -mno-mips16  -mflip-mips16 @gol
640 -minterlink-mips16  -mno-interlink-mips16 @gol
641 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
642 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
643 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
644 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
645 -msmartmips  -mno-smartmips @gol
646 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
647 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
648 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
649 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
650 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
651 -membedded-data  -mno-embedded-data @gol
652 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
653 -mcode-readable=@var{setting} @gol
654 -msplit-addresses  -mno-split-addresses @gol
655 -mexplicit-relocs  -mno-explicit-relocs @gol
656 -mcheck-zero-division  -mno-check-zero-division @gol
657 -mdivide-traps  -mdivide-breaks @gol
658 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
659 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
660 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
661 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
662 -mfix-sb1  -mno-fix-sb1 @gol
663 -mflush-func=@var{func}  -mno-flush-func @gol
664 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
665 -mfp-exceptions -mno-fp-exceptions @gol
666 -mvr4130-align -mno-vr4130-align}
667
668 @emph{MMIX Options}
669 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
670 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
671 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
672 -mno-base-addresses  -msingle-exit  -mno-single-exit}
673
674 @emph{MN10300 Options}
675 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
676 -mam33  -mno-am33 @gol
677 -mam33-2  -mno-am33-2 @gol
678 -mreturn-pointer-on-d0 @gol
679 -mno-crt0  -mrelax}
680
681 @emph{PDP-11 Options}
682 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
683 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
684 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
685 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
686 -mbranch-expensive  -mbranch-cheap @gol
687 -msplit  -mno-split  -munix-asm  -mdec-asm}
688
689 @emph{PowerPC Options}
690 See RS/6000 and PowerPC Options.
691
692 @emph{RS/6000 and PowerPC Options}
693 @gccoptlist{-mcpu=@var{cpu-type} @gol
694 -mtune=@var{cpu-type} @gol
695 -mpower  -mno-power  -mpower2  -mno-power2 @gol
696 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
697 -maltivec  -mno-altivec @gol
698 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
699 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
700 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
701 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
702 -mnew-mnemonics  -mold-mnemonics @gol
703 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
704 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
705 -malign-power  -malign-natural @gol
706 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
707 -mstring  -mno-string  -mupdate  -mno-update @gol
708 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
709 -mstrict-align  -mno-strict-align  -mrelocatable @gol
710 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
711 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
712 -mdynamic-no-pic  -maltivec  -mswdiv @gol
713 -mprioritize-restricted-insns=@var{priority} @gol
714 -msched-costly-dep=@var{dependence_type} @gol
715 -minsert-sched-nops=@var{scheme} @gol
716 -mcall-sysv  -mcall-netbsd @gol
717 -maix-struct-return  -msvr4-struct-return @gol
718 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
719 -misel -mno-isel @gol
720 -misel=yes  -misel=no @gol
721 -mspe -mno-spe @gol
722 -mspe=yes  -mspe=no @gol
723 -mpaired @gol
724 -mvrsave -mno-vrsave @gol
725 -mmulhw -mno-mulhw @gol
726 -mdlmzb -mno-dlmzb @gol
727 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
728 -mprototype  -mno-prototype @gol
729 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
730 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread}
731
732 @emph{S/390 and zSeries Options}
733 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
734 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
735 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
736 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
737 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
738 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
739 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
740
741 @emph{Score Options}
742 @gccoptlist{-meb -mel @gol
743 -mnhwloop @gol
744 -muls @gol
745 -mmac @gol
746 -mscore5 -mscore5u -mscore7 -mscore7d}
747
748 @emph{SH Options}
749 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
750 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
751 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
752 -m5-64media  -m5-64media-nofpu @gol
753 -m5-32media  -m5-32media-nofpu @gol
754 -m5-compact  -m5-compact-nofpu @gol
755 -mb  -ml  -mdalign  -mrelax @gol
756 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
757 -mieee  -mbitops  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
758 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
759 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
760 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
761 -minvalid-symbols}
762
763 @emph{SPARC Options}
764 @gccoptlist{-mcpu=@var{cpu-type} @gol
765 -mtune=@var{cpu-type} @gol
766 -mcmodel=@var{code-model} @gol
767 -m32  -m64  -mapp-regs  -mno-app-regs @gol
768 -mfaster-structs  -mno-faster-structs @gol
769 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
770 -mhard-quad-float  -msoft-quad-float @gol
771 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
772 -mstack-bias  -mno-stack-bias @gol
773 -munaligned-doubles  -mno-unaligned-doubles @gol
774 -mv8plus  -mno-v8plus  -mvis  -mno-vis
775 -threads -pthreads -pthread}
776
777 @emph{SPU Options}
778 @gccoptlist{-mwarn-reloc -merror-reloc @gol
779 -msafe-dma -munsafe-dma @gol
780 -mbranch-hints @gol
781 -msmall-mem -mlarge-mem -mstdmain @gol
782 -mfixed-range=@var{register-range}}
783
784 @emph{System V Options}
785 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
786
787 @emph{V850 Options}
788 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
789 -mprolog-function  -mno-prolog-function  -mspace @gol
790 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
791 -mapp-regs  -mno-app-regs @gol
792 -mdisable-callt  -mno-disable-callt @gol
793 -mv850e1 @gol
794 -mv850e @gol
795 -mv850  -mbig-switch}
796
797 @emph{VAX Options}
798 @gccoptlist{-mg  -mgnu  -munix}
799
800 @emph{VxWorks Options}
801 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
802 -Xbind-lazy  -Xbind-now}
803
804 @emph{x86-64 Options}
805 See i386 and x86-64 Options.
806
807 @emph{Xstormy16 Options}
808 @gccoptlist{-msim}
809
810 @emph{Xtensa Options}
811 @gccoptlist{-mconst16 -mno-const16 @gol
812 -mfused-madd  -mno-fused-madd @gol
813 -mserialize-volatile  -mno-serialize-volatile @gol
814 -mtext-section-literals  -mno-text-section-literals @gol
815 -mtarget-align  -mno-target-align @gol
816 -mlongcalls  -mno-longcalls}
817
818 @emph{zSeries Options}
819 See S/390 and zSeries Options.
820
821 @item Code Generation Options
822 @xref{Code Gen Options,,Options for Code Generation Conventions}.
823 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
824 -ffixed-@var{reg}  -fexceptions @gol
825 -fnon-call-exceptions  -funwind-tables @gol
826 -fasynchronous-unwind-tables @gol
827 -finhibit-size-directive  -finstrument-functions @gol
828 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
829 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
830 -fno-common  -fno-ident @gol
831 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
832 -fno-jump-tables @gol
833 -frecord-gcc-switches @gol
834 -freg-struct-return  -fshort-enums @gol
835 -fshort-double  -fshort-wchar @gol
836 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
837 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
838 -fno-stack-limit  -fargument-alias  -fargument-noalias @gol
839 -fargument-noalias-global  -fargument-noalias-anything @gol
840 -fleading-underscore  -ftls-model=@var{model} @gol
841 -ftrapv  -fwrapv  -fbounds-check @gol
842 -fvisibility}
843 @end table
844
845 @menu
846 * Overall Options::     Controlling the kind of output:
847                         an executable, object files, assembler files,
848                         or preprocessed source.
849 * C Dialect Options::   Controlling the variant of C language compiled.
850 * C++ Dialect Options:: Variations on C++.
851 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
852                         and Objective-C++.
853 * Language Independent Options:: Controlling how diagnostics should be
854                         formatted.
855 * Warning Options::     How picky should the compiler be?
856 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
857 * Optimize Options::    How much optimization?
858 * Preprocessor Options:: Controlling header files and macro definitions.
859                          Also, getting dependency information for Make.
860 * Assembler Options::   Passing options to the assembler.
861 * Link Options::        Specifying libraries and so on.
862 * Directory Options::   Where to find header files and libraries.
863                         Where to find the compiler executable files.
864 * Spec Files::          How to pass switches to sub-processes.
865 * Target Options::      Running a cross-compiler, or an old version of GCC.
866 @end menu
867
868 @node Overall Options
869 @section Options Controlling the Kind of Output
870
871 Compilation can involve up to four stages: preprocessing, compilation
872 proper, assembly and linking, always in that order.  GCC is capable of
873 preprocessing and compiling several files either into several
874 assembler input files, or into one assembler input file; then each
875 assembler input file produces an object file, and linking combines all
876 the object files (those newly compiled, and those specified as input)
877 into an executable file.
878
879 @cindex file name suffix
880 For any given input file, the file name suffix determines what kind of
881 compilation is done:
882
883 @table @gcctabopt
884 @item @var{file}.c
885 C source code which must be preprocessed.
886
887 @item @var{file}.i
888 C source code which should not be preprocessed.
889
890 @item @var{file}.ii
891 C++ source code which should not be preprocessed.
892
893 @item @var{file}.m
894 Objective-C source code.  Note that you must link with the @file{libobjc}
895 library to make an Objective-C program work.
896
897 @item @var{file}.mi
898 Objective-C source code which should not be preprocessed.
899
900 @item @var{file}.mm
901 @itemx @var{file}.M
902 Objective-C++ source code.  Note that you must link with the @file{libobjc}
903 library to make an Objective-C++ program work.  Note that @samp{.M} refers
904 to a literal capital M@.
905
906 @item @var{file}.mii
907 Objective-C++ source code which should not be preprocessed.
908
909 @item @var{file}.h
910 C, C++, Objective-C or Objective-C++ header file to be turned into a
911 precompiled header.
912
913 @item @var{file}.cc
914 @itemx @var{file}.cp
915 @itemx @var{file}.cxx
916 @itemx @var{file}.cpp
917 @itemx @var{file}.CPP
918 @itemx @var{file}.c++
919 @itemx @var{file}.C
920 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
921 the last two letters must both be literally @samp{x}.  Likewise,
922 @samp{.C} refers to a literal capital C@.
923
924 @item @var{file}.mm
925 @itemx @var{file}.M
926 Objective-C++ source code which must be preprocessed.
927
928 @item @var{file}.mii
929 Objective-C++ source code which should not be preprocessed.
930
931 @item @var{file}.hh
932 @itemx @var{file}.H
933 @itemx @var{file}.hp
934 @itemx @var{file}.hxx
935 @itemx @var{file}.hpp
936 @itemx @var{file}.HPP
937 @itemx @var{file}.h++
938 @itemx @var{file}.tcc
939 C++ header file to be turned into a precompiled header.
940
941 @item @var{file}.f
942 @itemx @var{file}.for
943 @itemx @var{file}.ftn
944 Fixed form Fortran source code which should not be preprocessed.
945
946 @item @var{file}.F
947 @itemx @var{file}.FOR
948 @itemx @var{file}.fpp
949 @itemx @var{file}.FPP
950 @itemx @var{file}.FTN
951 Fixed form Fortran source code which must be preprocessed (with the traditional
952 preprocessor).
953
954 @item @var{file}.f90
955 @itemx @var{file}.f95
956 @itemx @var{file}.f03
957 @itemx @var{file}.f08
958 Free form Fortran source code which should not be preprocessed.
959
960 @item @var{file}.F90
961 @itemx @var{file}.F95
962 @itemx @var{file}.F03
963 @itemx @var{file}.F08
964 Free form Fortran source code which must be preprocessed (with the
965 traditional preprocessor).
966
967 @c FIXME: Descriptions of Java file types.
968 @c @var{file}.java
969 @c @var{file}.class
970 @c @var{file}.zip
971 @c @var{file}.jar
972
973 @item @var{file}.ads
974 Ada source code file which contains a library unit declaration (a
975 declaration of a package, subprogram, or generic, or a generic
976 instantiation), or a library unit renaming declaration (a package,
977 generic, or subprogram renaming declaration).  Such files are also
978 called @dfn{specs}.
979
980 @item @var{file}.adb
981 Ada source code file containing a library unit body (a subprogram or
982 package body).  Such files are also called @dfn{bodies}.
983
984 @c GCC also knows about some suffixes for languages not yet included:
985 @c Pascal:
986 @c @var{file}.p
987 @c @var{file}.pas
988 @c Ratfor:
989 @c @var{file}.r
990
991 @item @var{file}.s
992 Assembler code.
993
994 @item @var{file}.S
995 @itemx @var{file}.sx
996 Assembler code which must be preprocessed.
997
998 @item @var{other}
999 An object file to be fed straight into linking.
1000 Any file name with no recognized suffix is treated this way.
1001 @end table
1002
1003 @opindex x
1004 You can specify the input language explicitly with the @option{-x} option:
1005
1006 @table @gcctabopt
1007 @item -x @var{language}
1008 Specify explicitly the @var{language} for the following input files
1009 (rather than letting the compiler choose a default based on the file
1010 name suffix).  This option applies to all following input files until
1011 the next @option{-x} option.  Possible values for @var{language} are:
1012 @smallexample
1013 c  c-header  c-cpp-output
1014 c++  c++-header  c++-cpp-output
1015 objective-c  objective-c-header  objective-c-cpp-output
1016 objective-c++ objective-c++-header objective-c++-cpp-output
1017 assembler  assembler-with-cpp
1018 ada
1019 f77  f77-cpp-input f95  f95-cpp-input
1020 java
1021 @end smallexample
1022
1023 @item -x none
1024 Turn off any specification of a language, so that subsequent files are
1025 handled according to their file name suffixes (as they are if @option{-x}
1026 has not been used at all).
1027
1028 @item -pass-exit-codes
1029 @opindex pass-exit-codes
1030 Normally the @command{gcc} program will exit with the code of 1 if any
1031 phase of the compiler returns a non-success return code.  If you specify
1032 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1033 numerically highest error produced by any phase that returned an error
1034 indication.  The C, C++, and Fortran frontends return 4, if an internal
1035 compiler error is encountered.
1036 @end table
1037
1038 If you only want some of the stages of compilation, you can use
1039 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1040 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1041 @command{gcc} is to stop.  Note that some combinations (for example,
1042 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1043
1044 @table @gcctabopt
1045 @item -c
1046 @opindex c
1047 Compile or assemble the source files, but do not link.  The linking
1048 stage simply is not done.  The ultimate output is in the form of an
1049 object file for each source file.
1050
1051 By default, the object file name for a source file is made by replacing
1052 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1053
1054 Unrecognized input files, not requiring compilation or assembly, are
1055 ignored.
1056
1057 @item -S
1058 @opindex S
1059 Stop after the stage of compilation proper; do not assemble.  The output
1060 is in the form of an assembler code file for each non-assembler input
1061 file specified.
1062
1063 By default, the assembler file name for a source file is made by
1064 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1065
1066 Input files that don't require compilation are ignored.
1067
1068 @item -E
1069 @opindex E
1070 Stop after the preprocessing stage; do not run the compiler proper.  The
1071 output is in the form of preprocessed source code, which is sent to the
1072 standard output.
1073
1074 Input files which don't require preprocessing are ignored.
1075
1076 @cindex output file option
1077 @item -o @var{file}
1078 @opindex o
1079 Place output in file @var{file}.  This applies regardless to whatever
1080 sort of output is being produced, whether it be an executable file,
1081 an object file, an assembler file or preprocessed C code.
1082
1083 If @option{-o} is not specified, the default is to put an executable
1084 file in @file{a.out}, the object file for
1085 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1086 assembler file in @file{@var{source}.s}, a precompiled header file in
1087 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1088 standard output.
1089
1090 @item -v
1091 @opindex v
1092 Print (on standard error output) the commands executed to run the stages
1093 of compilation.  Also print the version number of the compiler driver
1094 program and of the preprocessor and the compiler proper.
1095
1096 @item -###
1097 @opindex ###
1098 Like @option{-v} except the commands are not executed and all command
1099 arguments are quoted.  This is useful for shell scripts to capture the
1100 driver-generated command lines.
1101
1102 @item -pipe
1103 @opindex pipe
1104 Use pipes rather than temporary files for communication between the
1105 various stages of compilation.  This fails to work on some systems where
1106 the assembler is unable to read from a pipe; but the GNU assembler has
1107 no trouble.
1108
1109 @item -combine
1110 @opindex combine
1111 If you are compiling multiple source files, this option tells the driver
1112 to pass all the source files to the compiler at once (for those
1113 languages for which the compiler can handle this).  This will allow
1114 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1115 language for which this is supported is C@.  If you pass source files for
1116 multiple languages to the driver, using this option, the driver will invoke
1117 the compiler(s) that support IMA once each, passing each compiler all the
1118 source files appropriate for it.  For those languages that do not support
1119 IMA this option will be ignored, and the compiler will be invoked once for
1120 each source file in that language.  If you use this option in conjunction
1121 with @option{-save-temps}, the compiler will generate multiple
1122 pre-processed files
1123 (one for each source file), but only one (combined) @file{.o} or
1124 @file{.s} file.
1125
1126 @item --help
1127 @opindex help
1128 Print (on the standard output) a description of the command line options
1129 understood by @command{gcc}.  If the @option{-v} option is also specified
1130 then @option{--help} will also be passed on to the various processes
1131 invoked by @command{gcc}, so that they can display the command line options
1132 they accept.  If the @option{-Wextra} option has also been specified
1133 (prior to the @option{--help} option), then command line options which
1134 have no documentation associated with them will also be displayed.
1135
1136 @item --target-help
1137 @opindex target-help
1138 Print (on the standard output) a description of target-specific command
1139 line options for each tool.  For some targets extra target-specific
1140 information may also be printed.
1141
1142 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1143 Print (on the standard output) a description of the command line
1144 options understood by the compiler that fit into a specific class.
1145 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1146 @samp{params}, or @var{language}:
1147
1148 @table @asis
1149 @item @samp{optimizers}
1150 This will display all of the optimization options supported by the
1151 compiler.
1152
1153 @item @samp{warnings}
1154 This will display all of the options controlling warning messages
1155 produced by the compiler.
1156
1157 @item @samp{target}
1158 This will display target-specific options.  Unlike the
1159 @option{--target-help} option however, target-specific options of the
1160 linker and assembler will not be displayed.  This is because those
1161 tools do not currently support the extended @option{--help=} syntax.
1162
1163 @item @samp{params}
1164 This will display the values recognized by the @option{--param}
1165 option.
1166
1167 @item @var{language}
1168 This will display the options supported for @var{language}, where 
1169 @var{language} is the name of one of the languages supported in this 
1170 version of GCC.
1171
1172 @item @samp{common}
1173 This will display the options that are common to all languages.
1174 @end table
1175
1176 It is possible to further refine the output of the @option{--help=}
1177 option by adding a comma separated list of qualifiers after the
1178 class.  These can be any from the following list:
1179
1180 @table @asis
1181 @item @samp{undocumented}
1182 Display only those options which are undocumented.
1183
1184 @item @samp{joined}
1185 Display options which take an argument that appears after an equal
1186 sign in the same continuous piece of text, such as:
1187 @samp{--help=target}.
1188
1189 @item @samp{separate}
1190 Display options which take an argument that appears as a separate word
1191 following the original option, such as: @samp{-o output-file}.
1192 @end table
1193
1194 Thus for example to display all the undocumented target-specific
1195 switches supported by the compiler the following can be used:
1196
1197 @smallexample
1198 --help=target,undocumented
1199 @end smallexample
1200
1201 The sense of a qualifier can be inverted by prefixing it with the
1202 @var{^} character, so for example to display all binary warning
1203 options (i.e., ones that are either on or off and that do not take an
1204 argument), which have a description the following can be used:
1205
1206 @smallexample
1207 --help=warnings,^joined,^undocumented
1208 @end smallexample
1209
1210 A class can also be used as a qualifier, although this usually
1211 restricts the output by so much that there is nothing to display.  One
1212 case where it does work however is when one of the classes is
1213 @var{target}.  So for example to display all the target-specific
1214 optimization options the following can be used:
1215
1216 @smallexample
1217 --help=target,optimizers
1218 @end smallexample
1219
1220 The @option{--help=} option can be repeated on the command line.  Each
1221 successive use will display its requested class of options, skipping
1222 those that have already been displayed.
1223
1224 If the @option{-Q} option appears on the command line before the
1225 @option{--help=} option, then the descriptive text displayed by
1226 @option{--help=} is changed.  Instead of describing the displayed
1227 options, an indication is given as to whether the option is enabled,
1228 disabled or set to a specific value (assuming that the compiler
1229 knows this at the point where the @option{--help=} option is used).
1230
1231 Here is a truncated example from the ARM port of @command{gcc}:
1232
1233 @smallexample
1234   % gcc -Q -mabi=2 --help=target -c
1235   The following options are target specific:
1236   -mabi=                                2
1237   -mabort-on-noreturn                   [disabled]
1238   -mapcs                                [disabled]
1239 @end smallexample
1240
1241 The output is sensitive to the effects of previous command line
1242 options, so for example it is possible to find out which optimizations
1243 are enabled at @option{-O2} by using:
1244
1245 @smallexample
1246 -O2 --help=optimizers
1247 @end smallexample
1248
1249 Alternatively you can discover which binary optimizations are enabled
1250 by @option{-O3} by using:
1251
1252 @smallexample
1253 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1254 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1255 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1256 @end smallexample
1257
1258 @item --version
1259 @opindex version
1260 Display the version number and copyrights of the invoked GCC@.
1261
1262 @item -wrapper
1263 @opindex wrapper
1264 Invoke all subcommands under a wrapper program. It takes a single
1265 comma separated list as an argument, which will be used to invoke
1266 the wrapper:
1267
1268 @smallexample
1269 gcc -c t.c -wrapper gdb,--args
1270 @end smallexample
1271
1272 This will invoke all subprograms of gcc under "gdb --args",
1273 thus cc1 invocation will be "gdb --args cc1 ...".
1274
1275 @include @value{srcdir}/../libiberty/at-file.texi
1276 @end table
1277
1278 @node Invoking G++
1279 @section Compiling C++ Programs
1280
1281 @cindex suffixes for C++ source
1282 @cindex C++ source file suffixes
1283 C++ source files conventionally use one of the suffixes @samp{.C},
1284 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1285 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1286 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1287 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1288 files with these names and compiles them as C++ programs even if you
1289 call the compiler the same way as for compiling C programs (usually
1290 with the name @command{gcc}).
1291
1292 @findex g++
1293 @findex c++
1294 However, the use of @command{gcc} does not add the C++ library.
1295 @command{g++} is a program that calls GCC and treats @samp{.c},
1296 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1297 files unless @option{-x} is used, and automatically specifies linking
1298 against the C++ library.  This program is also useful when
1299 precompiling a C header file with a @samp{.h} extension for use in C++
1300 compilations.  On many systems, @command{g++} is also installed with
1301 the name @command{c++}.
1302
1303 @cindex invoking @command{g++}
1304 When you compile C++ programs, you may specify many of the same
1305 command-line options that you use for compiling programs in any
1306 language; or command-line options meaningful for C and related
1307 languages; or options that are meaningful only for C++ programs.
1308 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1309 explanations of options for languages related to C@.
1310 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1311 explanations of options that are meaningful only for C++ programs.
1312
1313 @node C Dialect Options
1314 @section Options Controlling C Dialect
1315 @cindex dialect options
1316 @cindex language dialect options
1317 @cindex options, dialect
1318
1319 The following options control the dialect of C (or languages derived
1320 from C, such as C++, Objective-C and Objective-C++) that the compiler
1321 accepts:
1322
1323 @table @gcctabopt
1324 @cindex ANSI support
1325 @cindex ISO support
1326 @item -ansi
1327 @opindex ansi
1328 In C mode, this is equivalent to @samp{-std=c89}. In C++ mode, it is
1329 equivalent to @samp{-std=c++98}.
1330
1331 This turns off certain features of GCC that are incompatible with ISO
1332 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1333 such as the @code{asm} and @code{typeof} keywords, and
1334 predefined macros such as @code{unix} and @code{vax} that identify the
1335 type of system you are using.  It also enables the undesirable and
1336 rarely used ISO trigraph feature.  For the C compiler,
1337 it disables recognition of C++ style @samp{//} comments as well as
1338 the @code{inline} keyword.
1339
1340 The alternate keywords @code{__asm__}, @code{__extension__},
1341 @code{__inline__} and @code{__typeof__} continue to work despite
1342 @option{-ansi}.  You would not want to use them in an ISO C program, of
1343 course, but it is useful to put them in header files that might be included
1344 in compilations done with @option{-ansi}.  Alternate predefined macros
1345 such as @code{__unix__} and @code{__vax__} are also available, with or
1346 without @option{-ansi}.
1347
1348 The @option{-ansi} option does not cause non-ISO programs to be
1349 rejected gratuitously.  For that, @option{-pedantic} is required in
1350 addition to @option{-ansi}.  @xref{Warning Options}.
1351
1352 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1353 option is used.  Some header files may notice this macro and refrain
1354 from declaring certain functions or defining certain macros that the
1355 ISO standard doesn't call for; this is to avoid interfering with any
1356 programs that might use these names for other things.
1357
1358 Functions that would normally be built in but do not have semantics
1359 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1360 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1361 built-in functions provided by GCC}, for details of the functions
1362 affected.
1363
1364 @item -std=
1365 @opindex std
1366 Determine the language standard. @xref{Standards,,Language Standards
1367 Supported by GCC}, for details of these standard versions.  This option
1368 is currently only supported when compiling C or C++. 
1369
1370 The compiler can accept several base standards, such as @samp{c89} or
1371 @samp{c++98}, and GNU dialects of those standards, such as
1372 @samp{gnu89} or @samp{gnu++98}.  By specifing a base standard, the
1373 compiler will accept all programs following that standard and those
1374 using GNU extensions that do not contradict it.  For example,
1375 @samp{-std=c89} turns off certain features of GCC that are
1376 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1377 keywords, but not other GNU extensions that do not have a meaning in
1378 ISO C90, such as omitting the middle term of a @code{?:}
1379 expression. On the other hand, by specifing a GNU dialect of a
1380 standard, all features the compiler support are enabled, even when
1381 those features change the meaning of the base standard and some
1382 strict-conforming programs may be rejected.  The particular standard
1383 is used by @option{-pedantic} to identify which features are GNU
1384 extensions given that version of the standard. For example
1385 @samp{-std=gnu89 -pedantic} would warn about C++ style @samp{//}
1386 comments, while @samp{-std=gnu99 -pedantic} would not.
1387
1388 A value for this option must be provided; possible values are
1389
1390 @table @samp
1391 @item c89
1392 @itemx iso9899:1990
1393 Support all ISO C90 programs (certain GNU extensions that conflict
1394 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1395
1396 @item iso9899:199409
1397 ISO C90 as modified in amendment 1.
1398
1399 @item c99
1400 @itemx c9x
1401 @itemx iso9899:1999
1402 @itemx iso9899:199x
1403 ISO C99.  Note that this standard is not yet fully supported; see
1404 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1405 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1406
1407 @item gnu89
1408 GNU dialect of ISO C90 (including some C99 features). This
1409 is the default for C code.
1410
1411 @item gnu99
1412 @itemx gnu9x
1413 GNU dialect of ISO C99.  When ISO C99 is fully implemented in GCC,
1414 this will become the default.  The name @samp{gnu9x} is deprecated.
1415
1416 @item c++98
1417 The 1998 ISO C++ standard plus amendments. Same as @option{-ansi} for
1418 C++ code.
1419
1420 @item gnu++98
1421 GNU dialect of @option{-std=c++98}.  This is the default for
1422 C++ code.
1423
1424 @item c++0x
1425 The working draft of the upcoming ISO C++0x standard. This option
1426 enables experimental features that are likely to be included in
1427 C++0x. The working draft is constantly changing, and any feature that is
1428 enabled by this flag may be removed from future versions of GCC if it is
1429 not part of the C++0x standard.
1430
1431 @item gnu++0x
1432 GNU dialect of @option{-std=c++0x}. This option enables
1433 experimental features that may be removed in future versions of GCC.
1434 @end table
1435
1436 @item -fgnu89-inline
1437 @opindex fgnu89-inline
1438 The option @option{-fgnu89-inline} tells GCC to use the traditional
1439 GNU semantics for @code{inline} functions when in C99 mode.
1440 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1441 is accepted and ignored by GCC versions 4.1.3 up to but not including
1442 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1443 C99 mode.  Using this option is roughly equivalent to adding the
1444 @code{gnu_inline} function attribute to all inline functions
1445 (@pxref{Function Attributes}).
1446
1447 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1448 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1449 specifies the default behavior).  This option was first supported in
1450 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1451
1452 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1453 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1454 in effect for @code{inline} functions.  @xref{Common Predefined
1455 Macros,,,cpp,The C Preprocessor}.
1456
1457 @item -aux-info @var{filename}
1458 @opindex aux-info
1459 Output to the given filename prototyped declarations for all functions
1460 declared and/or defined in a translation unit, including those in header
1461 files.  This option is silently ignored in any language other than C@.
1462
1463 Besides declarations, the file indicates, in comments, the origin of
1464 each declaration (source file and line), whether the declaration was
1465 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1466 @samp{O} for old, respectively, in the first character after the line
1467 number and the colon), and whether it came from a declaration or a
1468 definition (@samp{C} or @samp{F}, respectively, in the following
1469 character).  In the case of function definitions, a K&R-style list of
1470 arguments followed by their declarations is also provided, inside
1471 comments, after the declaration.
1472
1473 @item -fno-asm
1474 @opindex fno-asm
1475 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1476 keyword, so that code can use these words as identifiers.  You can use
1477 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1478 instead.  @option{-ansi} implies @option{-fno-asm}.
1479
1480 In C++, this switch only affects the @code{typeof} keyword, since
1481 @code{asm} and @code{inline} are standard keywords.  You may want to
1482 use the @option{-fno-gnu-keywords} flag instead, which has the same
1483 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1484 switch only affects the @code{asm} and @code{typeof} keywords, since
1485 @code{inline} is a standard keyword in ISO C99.
1486
1487 @item -fno-builtin
1488 @itemx -fno-builtin-@var{function}
1489 @opindex fno-builtin
1490 @cindex built-in functions
1491 Don't recognize built-in functions that do not begin with
1492 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1493 functions provided by GCC}, for details of the functions affected,
1494 including those which are not built-in functions when @option{-ansi} or
1495 @option{-std} options for strict ISO C conformance are used because they
1496 do not have an ISO standard meaning.
1497
1498 GCC normally generates special code to handle certain built-in functions
1499 more efficiently; for instance, calls to @code{alloca} may become single
1500 instructions that adjust the stack directly, and calls to @code{memcpy}
1501 may become inline copy loops.  The resulting code is often both smaller
1502 and faster, but since the function calls no longer appear as such, you
1503 cannot set a breakpoint on those calls, nor can you change the behavior
1504 of the functions by linking with a different library.  In addition,
1505 when a function is recognized as a built-in function, GCC may use
1506 information about that function to warn about problems with calls to
1507 that function, or to generate more efficient code, even if the
1508 resulting code still contains calls to that function.  For example,
1509 warnings are given with @option{-Wformat} for bad calls to
1510 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1511 known not to modify global memory.
1512
1513 With the @option{-fno-builtin-@var{function}} option
1514 only the built-in function @var{function} is
1515 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1516 function is named this is not built-in in this version of GCC, this
1517 option is ignored.  There is no corresponding
1518 @option{-fbuiltin-@var{function}} option; if you wish to enable
1519 built-in functions selectively when using @option{-fno-builtin} or
1520 @option{-ffreestanding}, you may define macros such as:
1521
1522 @smallexample
1523 #define abs(n)          __builtin_abs ((n))
1524 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1525 @end smallexample
1526
1527 @item -fhosted
1528 @opindex fhosted
1529 @cindex hosted environment
1530
1531 Assert that compilation takes place in a hosted environment.  This implies
1532 @option{-fbuiltin}.  A hosted environment is one in which the
1533 entire standard library is available, and in which @code{main} has a return
1534 type of @code{int}.  Examples are nearly everything except a kernel.
1535 This is equivalent to @option{-fno-freestanding}.
1536
1537 @item -ffreestanding
1538 @opindex ffreestanding
1539 @cindex hosted environment
1540
1541 Assert that compilation takes place in a freestanding environment.  This
1542 implies @option{-fno-builtin}.  A freestanding environment
1543 is one in which the standard library may not exist, and program startup may
1544 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1545 This is equivalent to @option{-fno-hosted}.
1546
1547 @xref{Standards,,Language Standards Supported by GCC}, for details of
1548 freestanding and hosted environments.
1549
1550 @item -fopenmp
1551 @opindex fopenmp
1552 @cindex openmp parallel
1553 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1554 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1555 compiler generates parallel code according to the OpenMP Application
1556 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.  This option
1557 implies @option{-pthread}, and thus is only supported on targets that
1558 have support for @option{-pthread}.
1559
1560 @item -fms-extensions
1561 @opindex fms-extensions
1562 Accept some non-standard constructs used in Microsoft header files.
1563
1564 Some cases of unnamed fields in structures and unions are only
1565 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1566 fields within structs/unions}, for details.
1567
1568 @item -trigraphs
1569 @opindex trigraphs
1570 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1571 options for strict ISO C conformance) implies @option{-trigraphs}.
1572
1573 @item -no-integrated-cpp
1574 @opindex no-integrated-cpp
1575 Performs a compilation in two passes: preprocessing and compiling.  This
1576 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1577 @option{-B} option.  The user supplied compilation step can then add in
1578 an additional preprocessing step after normal preprocessing but before
1579 compiling.  The default is to use the integrated cpp (internal cpp)
1580
1581 The semantics of this option will change if "cc1", "cc1plus", and
1582 "cc1obj" are merged.
1583
1584 @cindex traditional C language
1585 @cindex C language, traditional
1586 @item -traditional
1587 @itemx -traditional-cpp
1588 @opindex traditional-cpp
1589 @opindex traditional
1590 Formerly, these options caused GCC to attempt to emulate a pre-standard
1591 C compiler.  They are now only supported with the @option{-E} switch.
1592 The preprocessor continues to support a pre-standard mode.  See the GNU
1593 CPP manual for details.
1594
1595 @item -fcond-mismatch
1596 @opindex fcond-mismatch
1597 Allow conditional expressions with mismatched types in the second and
1598 third arguments.  The value of such an expression is void.  This option
1599 is not supported for C++.
1600
1601 @item -flax-vector-conversions
1602 @opindex flax-vector-conversions
1603 Allow implicit conversions between vectors with differing numbers of
1604 elements and/or incompatible element types.  This option should not be
1605 used for new code.
1606
1607 @item -funsigned-char
1608 @opindex funsigned-char
1609 Let the type @code{char} be unsigned, like @code{unsigned char}.
1610
1611 Each kind of machine has a default for what @code{char} should
1612 be.  It is either like @code{unsigned char} by default or like
1613 @code{signed char} by default.
1614
1615 Ideally, a portable program should always use @code{signed char} or
1616 @code{unsigned char} when it depends on the signedness of an object.
1617 But many programs have been written to use plain @code{char} and
1618 expect it to be signed, or expect it to be unsigned, depending on the
1619 machines they were written for.  This option, and its inverse, let you
1620 make such a program work with the opposite default.
1621
1622 The type @code{char} is always a distinct type from each of
1623 @code{signed char} or @code{unsigned char}, even though its behavior
1624 is always just like one of those two.
1625
1626 @item -fsigned-char
1627 @opindex fsigned-char
1628 Let the type @code{char} be signed, like @code{signed char}.
1629
1630 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1631 the negative form of @option{-funsigned-char}.  Likewise, the option
1632 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1633
1634 @item -fsigned-bitfields
1635 @itemx -funsigned-bitfields
1636 @itemx -fno-signed-bitfields
1637 @itemx -fno-unsigned-bitfields
1638 @opindex fsigned-bitfields
1639 @opindex funsigned-bitfields
1640 @opindex fno-signed-bitfields
1641 @opindex fno-unsigned-bitfields
1642 These options control whether a bit-field is signed or unsigned, when the
1643 declaration does not use either @code{signed} or @code{unsigned}.  By
1644 default, such a bit-field is signed, because this is consistent: the
1645 basic integer types such as @code{int} are signed types.
1646 @end table
1647
1648 @node C++ Dialect Options
1649 @section Options Controlling C++ Dialect
1650
1651 @cindex compiler options, C++
1652 @cindex C++ options, command line
1653 @cindex options, C++
1654 This section describes the command-line options that are only meaningful
1655 for C++ programs; but you can also use most of the GNU compiler options
1656 regardless of what language your program is in.  For example, you
1657 might compile a file @code{firstClass.C} like this:
1658
1659 @smallexample
1660 g++ -g -frepo -O -c firstClass.C
1661 @end smallexample
1662
1663 @noindent
1664 In this example, only @option{-frepo} is an option meant
1665 only for C++ programs; you can use the other options with any
1666 language supported by GCC@.
1667
1668 Here is a list of options that are @emph{only} for compiling C++ programs:
1669
1670 @table @gcctabopt
1671
1672 @item -fabi-version=@var{n}
1673 @opindex fabi-version
1674 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1675 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1676 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1677 the version that conforms most closely to the C++ ABI specification.
1678 Therefore, the ABI obtained using version 0 will change as ABI bugs
1679 are fixed.
1680
1681 The default is version 2.
1682
1683 @item -fno-access-control
1684 @opindex fno-access-control
1685 Turn off all access checking.  This switch is mainly useful for working
1686 around bugs in the access control code.
1687
1688 @item -fcheck-new
1689 @opindex fcheck-new
1690 Check that the pointer returned by @code{operator new} is non-null
1691 before attempting to modify the storage allocated.  This check is
1692 normally unnecessary because the C++ standard specifies that
1693 @code{operator new} will only return @code{0} if it is declared
1694 @samp{throw()}, in which case the compiler will always check the
1695 return value even without this option.  In all other cases, when
1696 @code{operator new} has a non-empty exception specification, memory
1697 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1698 @samp{new (nothrow)}.
1699
1700 @item -fconserve-space
1701 @opindex fconserve-space
1702 Put uninitialized or runtime-initialized global variables into the
1703 common segment, as C does.  This saves space in the executable at the
1704 cost of not diagnosing duplicate definitions.  If you compile with this
1705 flag and your program mysteriously crashes after @code{main()} has
1706 completed, you may have an object that is being destroyed twice because
1707 two definitions were merged.
1708
1709 This option is no longer useful on most targets, now that support has
1710 been added for putting variables into BSS without making them common.
1711
1712 @item -ffriend-injection
1713 @opindex ffriend-injection
1714 Inject friend functions into the enclosing namespace, so that they are
1715 visible outside the scope of the class in which they are declared.
1716 Friend functions were documented to work this way in the old Annotated
1717 C++ Reference Manual, and versions of G++ before 4.1 always worked
1718 that way.  However, in ISO C++ a friend function which is not declared
1719 in an enclosing scope can only be found using argument dependent
1720 lookup.  This option causes friends to be injected as they were in
1721 earlier releases.
1722
1723 This option is for compatibility, and may be removed in a future
1724 release of G++.
1725
1726 @item -fno-elide-constructors
1727 @opindex fno-elide-constructors
1728 The C++ standard allows an implementation to omit creating a temporary
1729 which is only used to initialize another object of the same type.
1730 Specifying this option disables that optimization, and forces G++ to
1731 call the copy constructor in all cases.
1732
1733 @item -fno-enforce-eh-specs
1734 @opindex fno-enforce-eh-specs
1735 Don't generate code to check for violation of exception specifications
1736 at runtime.  This option violates the C++ standard, but may be useful
1737 for reducing code size in production builds, much like defining
1738 @samp{NDEBUG}.  This does not give user code permission to throw
1739 exceptions in violation of the exception specifications; the compiler
1740 will still optimize based on the specifications, so throwing an
1741 unexpected exception will result in undefined behavior.
1742
1743 @item -ffor-scope
1744 @itemx -fno-for-scope
1745 @opindex ffor-scope
1746 @opindex fno-for-scope
1747 If @option{-ffor-scope} is specified, the scope of variables declared in
1748 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1749 as specified by the C++ standard.
1750 If @option{-fno-for-scope} is specified, the scope of variables declared in
1751 a @i{for-init-statement} extends to the end of the enclosing scope,
1752 as was the case in old versions of G++, and other (traditional)
1753 implementations of C++.
1754
1755 The default if neither flag is given to follow the standard,
1756 but to allow and give a warning for old-style code that would
1757 otherwise be invalid, or have different behavior.
1758
1759 @item -fno-gnu-keywords
1760 @opindex fno-gnu-keywords
1761 Do not recognize @code{typeof} as a keyword, so that code can use this
1762 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1763 @option{-ansi} implies @option{-fno-gnu-keywords}.
1764
1765 @item -fno-implicit-templates
1766 @opindex fno-implicit-templates
1767 Never emit code for non-inline templates which are instantiated
1768 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1769 @xref{Template Instantiation}, for more information.
1770
1771 @item -fno-implicit-inline-templates
1772 @opindex fno-implicit-inline-templates
1773 Don't emit code for implicit instantiations of inline templates, either.
1774 The default is to handle inlines differently so that compiles with and
1775 without optimization will need the same set of explicit instantiations.
1776
1777 @item -fno-implement-inlines
1778 @opindex fno-implement-inlines
1779 To save space, do not emit out-of-line copies of inline functions
1780 controlled by @samp{#pragma implementation}.  This will cause linker
1781 errors if these functions are not inlined everywhere they are called.
1782
1783 @item -fms-extensions
1784 @opindex fms-extensions
1785 Disable pedantic warnings about constructs used in MFC, such as implicit
1786 int and getting a pointer to member function via non-standard syntax.
1787
1788 @item -fno-nonansi-builtins
1789 @opindex fno-nonansi-builtins
1790 Disable built-in declarations of functions that are not mandated by
1791 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1792 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1793
1794 @item -fno-operator-names
1795 @opindex fno-operator-names
1796 Do not treat the operator name keywords @code{and}, @code{bitand},
1797 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1798 synonyms as keywords.
1799
1800 @item -fno-optional-diags
1801 @opindex fno-optional-diags
1802 Disable diagnostics that the standard says a compiler does not need to
1803 issue.  Currently, the only such diagnostic issued by G++ is the one for
1804 a name having multiple meanings within a class.
1805
1806 @item -fpermissive
1807 @opindex fpermissive
1808 Downgrade some diagnostics about nonconformant code from errors to
1809 warnings.  Thus, using @option{-fpermissive} will allow some
1810 nonconforming code to compile.
1811
1812 @item -frepo
1813 @opindex frepo
1814 Enable automatic template instantiation at link time.  This option also
1815 implies @option{-fno-implicit-templates}.  @xref{Template
1816 Instantiation}, for more information.
1817
1818 @item -fno-rtti
1819 @opindex fno-rtti
1820 Disable generation of information about every class with virtual
1821 functions for use by the C++ runtime type identification features
1822 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1823 of the language, you can save some space by using this flag.  Note that
1824 exception handling uses the same information, but it will generate it as
1825 needed. The @samp{dynamic_cast} operator can still be used for casts that
1826 do not require runtime type information, i.e.@: casts to @code{void *} or to
1827 unambiguous base classes.
1828
1829 @item -fstats
1830 @opindex fstats
1831 Emit statistics about front-end processing at the end of the compilation.
1832 This information is generally only useful to the G++ development team.
1833
1834 @item -ftemplate-depth-@var{n}
1835 @opindex ftemplate-depth
1836 Set the maximum instantiation depth for template classes to @var{n}.
1837 A limit on the template instantiation depth is needed to detect
1838 endless recursions during template class instantiation.  ANSI/ISO C++
1839 conforming programs must not rely on a maximum depth greater than 17.
1840
1841 @item -fno-threadsafe-statics
1842 @opindex fno-threadsafe-statics
1843 Do not emit the extra code to use the routines specified in the C++
1844 ABI for thread-safe initialization of local statics.  You can use this
1845 option to reduce code size slightly in code that doesn't need to be
1846 thread-safe.
1847
1848 @item -fuse-cxa-atexit
1849 @opindex fuse-cxa-atexit
1850 Register destructors for objects with static storage duration with the
1851 @code{__cxa_atexit} function rather than the @code{atexit} function.
1852 This option is required for fully standards-compliant handling of static
1853 destructors, but will only work if your C library supports
1854 @code{__cxa_atexit}.
1855
1856 @item -fno-use-cxa-get-exception-ptr
1857 @opindex fno-use-cxa-get-exception-ptr
1858 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1859 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1860 if the runtime routine is not available.
1861
1862 @item -fvisibility-inlines-hidden
1863 @opindex fvisibility-inlines-hidden
1864 This switch declares that the user does not attempt to compare
1865 pointers to inline methods where the addresses of the two functions
1866 were taken in different shared objects.
1867
1868 The effect of this is that GCC may, effectively, mark inline methods with
1869 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1870 appear in the export table of a DSO and do not require a PLT indirection
1871 when used within the DSO@.  Enabling this option can have a dramatic effect
1872 on load and link times of a DSO as it massively reduces the size of the
1873 dynamic export table when the library makes heavy use of templates.
1874
1875 The behavior of this switch is not quite the same as marking the
1876 methods as hidden directly, because it does not affect static variables
1877 local to the function or cause the compiler to deduce that
1878 the function is defined in only one shared object.
1879
1880 You may mark a method as having a visibility explicitly to negate the
1881 effect of the switch for that method.  For example, if you do want to
1882 compare pointers to a particular inline method, you might mark it as
1883 having default visibility.  Marking the enclosing class with explicit
1884 visibility will have no effect.
1885
1886 Explicitly instantiated inline methods are unaffected by this option
1887 as their linkage might otherwise cross a shared library boundary.
1888 @xref{Template Instantiation}.
1889
1890 @item -fvisibility-ms-compat
1891 @opindex fvisibility-ms-compat
1892 This flag attempts to use visibility settings to make GCC's C++
1893 linkage model compatible with that of Microsoft Visual Studio.
1894
1895 The flag makes these changes to GCC's linkage model:
1896
1897 @enumerate
1898 @item
1899 It sets the default visibility to @code{hidden}, like
1900 @option{-fvisibility=hidden}.
1901
1902 @item
1903 Types, but not their members, are not hidden by default.
1904
1905 @item
1906 The One Definition Rule is relaxed for types without explicit
1907 visibility specifications which are defined in more than one different
1908 shared object: those declarations are permitted if they would have
1909 been permitted when this option was not used.
1910 @end enumerate
1911
1912 In new code it is better to use @option{-fvisibility=hidden} and
1913 export those classes which are intended to be externally visible.
1914 Unfortunately it is possible for code to rely, perhaps accidentally,
1915 on the Visual Studio behavior.
1916
1917 Among the consequences of these changes are that static data members
1918 of the same type with the same name but defined in different shared
1919 objects will be different, so changing one will not change the other;
1920 and that pointers to function members defined in different shared
1921 objects may not compare equal.  When this flag is given, it is a
1922 violation of the ODR to define types with the same name differently.
1923
1924 @item -fno-weak
1925 @opindex fno-weak
1926 Do not use weak symbol support, even if it is provided by the linker.
1927 By default, G++ will use weak symbols if they are available.  This
1928 option exists only for testing, and should not be used by end-users;
1929 it will result in inferior code and has no benefits.  This option may
1930 be removed in a future release of G++.
1931
1932 @item -nostdinc++
1933 @opindex nostdinc++
1934 Do not search for header files in the standard directories specific to
1935 C++, but do still search the other standard directories.  (This option
1936 is used when building the C++ library.)
1937 @end table
1938
1939 In addition, these optimization, warning, and code generation options
1940 have meanings only for C++ programs:
1941
1942 @table @gcctabopt
1943 @item -fno-default-inline
1944 @opindex fno-default-inline
1945 Do not assume @samp{inline} for functions defined inside a class scope.
1946 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1947 functions will have linkage like inline functions; they just won't be
1948 inlined by default.
1949
1950 @item -Wabi @r{(C++ and Objective-C++ only)}
1951 @opindex Wabi
1952 @opindex Wno-abi
1953 Warn when G++ generates code that is probably not compatible with the
1954 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1955 all such cases, there are probably some cases that are not warned about,
1956 even though G++ is generating incompatible code.  There may also be
1957 cases where warnings are emitted even though the code that is generated
1958 will be compatible.
1959
1960 You should rewrite your code to avoid these warnings if you are
1961 concerned about the fact that code generated by G++ may not be binary
1962 compatible with code generated by other compilers.
1963
1964 The known incompatibilities at this point include:
1965
1966 @itemize @bullet
1967
1968 @item
1969 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1970 pack data into the same byte as a base class.  For example:
1971
1972 @smallexample
1973 struct A @{ virtual void f(); int f1 : 1; @};
1974 struct B : public A @{ int f2 : 1; @};
1975 @end smallexample
1976
1977 @noindent
1978 In this case, G++ will place @code{B::f2} into the same byte
1979 as@code{A::f1}; other compilers will not.  You can avoid this problem
1980 by explicitly padding @code{A} so that its size is a multiple of the
1981 byte size on your platform; that will cause G++ and other compilers to
1982 layout @code{B} identically.
1983
1984 @item
1985 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1986 tail padding when laying out virtual bases.  For example:
1987
1988 @smallexample
1989 struct A @{ virtual void f(); char c1; @};
1990 struct B @{ B(); char c2; @};
1991 struct C : public A, public virtual B @{@};
1992 @end smallexample
1993
1994 @noindent
1995 In this case, G++ will not place @code{B} into the tail-padding for
1996 @code{A}; other compilers will.  You can avoid this problem by
1997 explicitly padding @code{A} so that its size is a multiple of its
1998 alignment (ignoring virtual base classes); that will cause G++ and other
1999 compilers to layout @code{C} identically.
2000
2001 @item
2002 Incorrect handling of bit-fields with declared widths greater than that
2003 of their underlying types, when the bit-fields appear in a union.  For
2004 example:
2005
2006 @smallexample
2007 union U @{ int i : 4096; @};
2008 @end smallexample
2009
2010 @noindent
2011 Assuming that an @code{int} does not have 4096 bits, G++ will make the
2012 union too small by the number of bits in an @code{int}.
2013
2014 @item
2015 Empty classes can be placed at incorrect offsets.  For example:
2016
2017 @smallexample
2018 struct A @{@};
2019
2020 struct B @{
2021   A a;
2022   virtual void f ();
2023 @};
2024
2025 struct C : public B, public A @{@};
2026 @end smallexample
2027
2028 @noindent
2029 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
2030 it should be placed at offset zero.  G++ mistakenly believes that the
2031 @code{A} data member of @code{B} is already at offset zero.
2032
2033 @item
2034 Names of template functions whose types involve @code{typename} or
2035 template template parameters can be mangled incorrectly.
2036
2037 @smallexample
2038 template <typename Q>
2039 void f(typename Q::X) @{@}
2040
2041 template <template <typename> class Q>
2042 void f(typename Q<int>::X) @{@}
2043 @end smallexample
2044
2045 @noindent
2046 Instantiations of these templates may be mangled incorrectly.
2047
2048 @end itemize
2049
2050 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2051 @opindex Wctor-dtor-privacy
2052 @opindex Wno-ctor-dtor-privacy
2053 Warn when a class seems unusable because all the constructors or
2054 destructors in that class are private, and it has neither friends nor
2055 public static member functions.
2056
2057 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2058 @opindex Wnon-virtual-dtor
2059 @opindex Wno-non-virtual-dtor
2060 Warn when a class has virtual functions and accessible non-virtual
2061 destructor, in which case it would be possible but unsafe to delete
2062 an instance of a derived class through a pointer to the base class.
2063 This warning is also enabled if -Weffc++ is specified.
2064
2065 @item -Wreorder @r{(C++ and Objective-C++ only)}
2066 @opindex Wreorder
2067 @opindex Wno-reorder
2068 @cindex reordering, warning
2069 @cindex warning for reordering of member initializers
2070 Warn when the order of member initializers given in the code does not
2071 match the order in which they must be executed.  For instance:
2072
2073 @smallexample
2074 struct A @{
2075   int i;
2076   int j;
2077   A(): j (0), i (1) @{ @}
2078 @};
2079 @end smallexample
2080
2081 The compiler will rearrange the member initializers for @samp{i}
2082 and @samp{j} to match the declaration order of the members, emitting
2083 a warning to that effect.  This warning is enabled by @option{-Wall}.
2084 @end table
2085
2086 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2087
2088 @table @gcctabopt
2089 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2090 @opindex Weffc++
2091 @opindex Wno-effc++
2092 Warn about violations of the following style guidelines from Scott Meyers'
2093 @cite{Effective C++} book:
2094
2095 @itemize @bullet
2096 @item
2097 Item 11:  Define a copy constructor and an assignment operator for classes
2098 with dynamically allocated memory.
2099
2100 @item
2101 Item 12:  Prefer initialization to assignment in constructors.
2102
2103 @item
2104 Item 14:  Make destructors virtual in base classes.
2105
2106 @item
2107 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2108
2109 @item
2110 Item 23:  Don't try to return a reference when you must return an object.
2111
2112 @end itemize
2113
2114 Also warn about violations of the following style guidelines from
2115 Scott Meyers' @cite{More Effective C++} book:
2116
2117 @itemize @bullet
2118 @item
2119 Item 6:  Distinguish between prefix and postfix forms of increment and
2120 decrement operators.
2121
2122 @item
2123 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2124
2125 @end itemize
2126
2127 When selecting this option, be aware that the standard library
2128 headers do not obey all of these guidelines; use @samp{grep -v}
2129 to filter out those warnings.
2130
2131 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2132 @opindex Wstrict-null-sentinel
2133 @opindex Wno-strict-null-sentinel
2134 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2135 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2136 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2137 it is guaranteed to of the same size as a pointer.  But this use is
2138 not portable across different compilers.
2139
2140 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2141 @opindex Wno-non-template-friend
2142 @opindex Wnon-template-friend
2143 Disable warnings when non-templatized friend functions are declared
2144 within a template.  Since the advent of explicit template specification
2145 support in G++, if the name of the friend is an unqualified-id (i.e.,
2146 @samp{friend foo(int)}), the C++ language specification demands that the
2147 friend declare or define an ordinary, nontemplate function.  (Section
2148 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2149 could be interpreted as a particular specialization of a templatized
2150 function.  Because this non-conforming behavior is no longer the default
2151 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2152 check existing code for potential trouble spots and is on by default.
2153 This new compiler behavior can be turned off with
2154 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2155 but disables the helpful warning.
2156
2157 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2158 @opindex Wold-style-cast
2159 @opindex Wno-old-style-cast
2160 Warn if an old-style (C-style) cast to a non-void type is used within
2161 a C++ program.  The new-style casts (@samp{dynamic_cast},
2162 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2163 less vulnerable to unintended effects and much easier to search for.
2164
2165 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2166 @opindex Woverloaded-virtual
2167 @opindex Wno-overloaded-virtual
2168 @cindex overloaded virtual fn, warning
2169 @cindex warning for overloaded virtual fn
2170 Warn when a function declaration hides virtual functions from a
2171 base class.  For example, in:
2172
2173 @smallexample
2174 struct A @{
2175   virtual void f();
2176 @};
2177
2178 struct B: public A @{
2179   void f(int);
2180 @};
2181 @end smallexample
2182
2183 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2184 like:
2185
2186 @smallexample
2187 B* b;
2188 b->f();
2189 @end smallexample
2190
2191 will fail to compile.
2192
2193 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2194 @opindex Wno-pmf-conversions
2195 @opindex Wpmf-conversions
2196 Disable the diagnostic for converting a bound pointer to member function
2197 to a plain pointer.
2198
2199 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2200 @opindex Wsign-promo
2201 @opindex Wno-sign-promo
2202 Warn when overload resolution chooses a promotion from unsigned or
2203 enumerated type to a signed type, over a conversion to an unsigned type of
2204 the same size.  Previous versions of G++ would try to preserve
2205 unsignedness, but the standard mandates the current behavior.
2206
2207 @smallexample
2208 struct A @{
2209   operator int ();
2210   A& operator = (int);
2211 @};
2212
2213 main ()
2214 @{
2215   A a,b;
2216   a = b;
2217 @}
2218 @end smallexample
2219
2220 In this example, G++ will synthesize a default @samp{A& operator =
2221 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2222 @end table
2223
2224 @node Objective-C and Objective-C++ Dialect Options
2225 @section Options Controlling Objective-C and Objective-C++ Dialects
2226
2227 @cindex compiler options, Objective-C and Objective-C++
2228 @cindex Objective-C and Objective-C++ options, command line
2229 @cindex options, Objective-C and Objective-C++
2230 (NOTE: This manual does not describe the Objective-C and Objective-C++
2231 languages themselves.  See @xref{Standards,,Language Standards
2232 Supported by GCC}, for references.)
2233
2234 This section describes the command-line options that are only meaningful
2235 for Objective-C and Objective-C++ programs, but you can also use most of
2236 the language-independent GNU compiler options.
2237 For example, you might compile a file @code{some_class.m} like this:
2238
2239 @smallexample
2240 gcc -g -fgnu-runtime -O -c some_class.m
2241 @end smallexample
2242
2243 @noindent
2244 In this example, @option{-fgnu-runtime} is an option meant only for
2245 Objective-C and Objective-C++ programs; you can use the other options with
2246 any language supported by GCC@.
2247
2248 Note that since Objective-C is an extension of the C language, Objective-C
2249 compilations may also use options specific to the C front-end (e.g.,
2250 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2251 C++-specific options (e.g., @option{-Wabi}).
2252
2253 Here is a list of options that are @emph{only} for compiling Objective-C
2254 and Objective-C++ programs:
2255
2256 @table @gcctabopt
2257 @item -fconstant-string-class=@var{class-name}
2258 @opindex fconstant-string-class
2259 Use @var{class-name} as the name of the class to instantiate for each
2260 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2261 class name is @code{NXConstantString} if the GNU runtime is being used, and
2262 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2263 @option{-fconstant-cfstrings} option, if also present, will override the
2264 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2265 to be laid out as constant CoreFoundation strings.
2266
2267 @item -fgnu-runtime
2268 @opindex fgnu-runtime
2269 Generate object code compatible with the standard GNU Objective-C
2270 runtime.  This is the default for most types of systems.
2271
2272 @item -fnext-runtime
2273 @opindex fnext-runtime
2274 Generate output compatible with the NeXT runtime.  This is the default
2275 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2276 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2277 used.
2278
2279 @item -fno-nil-receivers
2280 @opindex fno-nil-receivers
2281 Assume that all Objective-C message dispatches (e.g.,
2282 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2283 is not @code{nil}.  This allows for more efficient entry points in the runtime
2284 to be used.  Currently, this option is only available in conjunction with
2285 the NeXT runtime on Mac OS X 10.3 and later.
2286
2287 @item -fobjc-call-cxx-cdtors
2288 @opindex fobjc-call-cxx-cdtors
2289 For each Objective-C class, check if any of its instance variables is a
2290 C++ object with a non-trivial default constructor.  If so, synthesize a
2291 special @code{- (id) .cxx_construct} instance method that will run
2292 non-trivial default constructors on any such instance variables, in order,
2293 and then return @code{self}.  Similarly, check if any instance variable
2294 is a C++ object with a non-trivial destructor, and if so, synthesize a
2295 special @code{- (void) .cxx_destruct} method that will run
2296 all such default destructors, in reverse order.
2297
2298 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2299 thusly generated will only operate on instance variables declared in the
2300 current Objective-C class, and not those inherited from superclasses.  It
2301 is the responsibility of the Objective-C runtime to invoke all such methods
2302 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2303 will be invoked by the runtime immediately after a new object
2304 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2305 be invoked immediately before the runtime deallocates an object instance.
2306
2307 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2308 support for invoking the @code{- (id) .cxx_construct} and
2309 @code{- (void) .cxx_destruct} methods.
2310
2311 @item -fobjc-direct-dispatch
2312 @opindex fobjc-direct-dispatch
2313 Allow fast jumps to the message dispatcher.  On Darwin this is
2314 accomplished via the comm page.
2315
2316 @item -fobjc-exceptions
2317 @opindex fobjc-exceptions
2318 Enable syntactic support for structured exception handling in Objective-C,
2319 similar to what is offered by C++ and Java.  This option is
2320 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2321 earlier.
2322
2323 @smallexample
2324   @@try @{
2325     @dots{}
2326        @@throw expr;
2327     @dots{}
2328   @}
2329   @@catch (AnObjCClass *exc) @{
2330     @dots{}
2331       @@throw expr;
2332     @dots{}
2333       @@throw;
2334     @dots{}
2335   @}
2336   @@catch (AnotherClass *exc) @{
2337     @dots{}
2338   @}
2339   @@catch (id allOthers) @{
2340     @dots{}
2341   @}
2342   @@finally @{
2343     @dots{}
2344       @@throw expr;
2345     @dots{}
2346   @}
2347 @end smallexample
2348
2349 The @code{@@throw} statement may appear anywhere in an Objective-C or
2350 Objective-C++ program; when used inside of a @code{@@catch} block, the
2351 @code{@@throw} may appear without an argument (as shown above), in which case
2352 the object caught by the @code{@@catch} will be rethrown.
2353
2354 Note that only (pointers to) Objective-C objects may be thrown and
2355 caught using this scheme.  When an object is thrown, it will be caught
2356 by the nearest @code{@@catch} clause capable of handling objects of that type,
2357 analogously to how @code{catch} blocks work in C++ and Java.  A
2358 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2359 any and all Objective-C exceptions not caught by previous @code{@@catch}
2360 clauses (if any).
2361
2362 The @code{@@finally} clause, if present, will be executed upon exit from the
2363 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2364 regardless of whether any exceptions are thrown, caught or rethrown
2365 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2366 of the @code{finally} clause in Java.
2367
2368 There are several caveats to using the new exception mechanism:
2369
2370 @itemize @bullet
2371 @item
2372 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2373 idioms provided by the @code{NSException} class, the new
2374 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2375 systems, due to additional functionality needed in the (NeXT) Objective-C
2376 runtime.
2377
2378 @item
2379 As mentioned above, the new exceptions do not support handling
2380 types other than Objective-C objects.   Furthermore, when used from
2381 Objective-C++, the Objective-C exception model does not interoperate with C++
2382 exceptions at this time.  This means you cannot @code{@@throw} an exception
2383 from Objective-C and @code{catch} it in C++, or vice versa
2384 (i.e., @code{throw @dots{} @@catch}).
2385 @end itemize
2386
2387 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2388 blocks for thread-safe execution:
2389
2390 @smallexample
2391   @@synchronized (ObjCClass *guard) @{
2392     @dots{}
2393   @}
2394 @end smallexample
2395
2396 Upon entering the @code{@@synchronized} block, a thread of execution shall
2397 first check whether a lock has been placed on the corresponding @code{guard}
2398 object by another thread.  If it has, the current thread shall wait until
2399 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2400 the current thread will place its own lock on it, execute the code contained in
2401 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2402 making @code{guard} available to other threads).
2403
2404 Unlike Java, Objective-C does not allow for entire methods to be marked
2405 @code{@@synchronized}.  Note that throwing exceptions out of
2406 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2407 to be unlocked properly.
2408
2409 @item -fobjc-gc
2410 @opindex fobjc-gc
2411 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2412
2413 @item -freplace-objc-classes
2414 @opindex freplace-objc-classes
2415 Emit a special marker instructing @command{ld(1)} not to statically link in
2416 the resulting object file, and allow @command{dyld(1)} to load it in at
2417 run time instead.  This is used in conjunction with the Fix-and-Continue
2418 debugging mode, where the object file in question may be recompiled and
2419 dynamically reloaded in the course of program execution, without the need
2420 to restart the program itself.  Currently, Fix-and-Continue functionality
2421 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2422 and later.
2423
2424 @item -fzero-link
2425 @opindex fzero-link
2426 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2427 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2428 compile time) with static class references that get initialized at load time,
2429 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2430 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2431 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2432 for individual class implementations to be modified during program execution.
2433
2434 @item -gen-decls
2435 @opindex gen-decls
2436 Dump interface declarations for all classes seen in the source file to a
2437 file named @file{@var{sourcename}.decl}.
2438
2439 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
2440 @opindex Wassign-intercept
2441 @opindex Wno-assign-intercept
2442 Warn whenever an Objective-C assignment is being intercepted by the
2443 garbage collector.
2444
2445 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
2446 @opindex Wno-protocol
2447 @opindex Wprotocol
2448 If a class is declared to implement a protocol, a warning is issued for
2449 every method in the protocol that is not implemented by the class.  The
2450 default behavior is to issue a warning for every method not explicitly
2451 implemented in the class, even if a method implementation is inherited
2452 from the superclass.  If you use the @option{-Wno-protocol} option, then
2453 methods inherited from the superclass are considered to be implemented,
2454 and no warning is issued for them.
2455
2456 @item -Wselector @r{(Objective-C and Objective-C++ only)}
2457 @opindex Wselector
2458 @opindex Wno-selector
2459 Warn if multiple methods of different types for the same selector are
2460 found during compilation.  The check is performed on the list of methods
2461 in the final stage of compilation.  Additionally, a check is performed
2462 for each selector appearing in a @code{@@selector(@dots{})}
2463 expression, and a corresponding method for that selector has been found
2464 during compilation.  Because these checks scan the method table only at
2465 the end of compilation, these warnings are not produced if the final
2466 stage of compilation is not reached, for example because an error is
2467 found during compilation, or because the @option{-fsyntax-only} option is
2468 being used.
2469
2470 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
2471 @opindex Wstrict-selector-match
2472 @opindex Wno-strict-selector-match
2473 Warn if multiple methods with differing argument and/or return types are
2474 found for a given selector when attempting to send a message using this
2475 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2476 is off (which is the default behavior), the compiler will omit such warnings
2477 if any differences found are confined to types which share the same size
2478 and alignment.
2479
2480 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
2481 @opindex Wundeclared-selector
2482 @opindex Wno-undeclared-selector
2483 Warn if a @code{@@selector(@dots{})} expression referring to an
2484 undeclared selector is found.  A selector is considered undeclared if no
2485 method with that name has been declared before the
2486 @code{@@selector(@dots{})} expression, either explicitly in an
2487 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2488 an @code{@@implementation} section.  This option always performs its
2489 checks as soon as a @code{@@selector(@dots{})} expression is found,
2490 while @option{-Wselector} only performs its checks in the final stage of
2491 compilation.  This also enforces the coding style convention
2492 that methods and selectors must be declared before being used.
2493
2494 @item -print-objc-runtime-info
2495 @opindex print-objc-runtime-info
2496 Generate C header describing the largest structure that is passed by
2497 value, if any.
2498
2499 @end table
2500
2501 @node Language Independent Options
2502 @section Options to Control Diagnostic Messages Formatting
2503 @cindex options to control diagnostics formatting
2504 @cindex diagnostic messages
2505 @cindex message formatting
2506
2507 Traditionally, diagnostic messages have been formatted irrespective of
2508 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2509 below can be used to control the diagnostic messages formatting
2510 algorithm, e.g.@: how many characters per line, how often source location
2511 information should be reported.  Right now, only the C++ front end can
2512 honor these options.  However it is expected, in the near future, that
2513 the remaining front ends would be able to digest them correctly.
2514
2515 @table @gcctabopt
2516 @item -fmessage-length=@var{n}
2517 @opindex fmessage-length
2518 Try to format error messages so that they fit on lines of about @var{n}
2519 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2520 the front ends supported by GCC@.  If @var{n} is zero, then no
2521 line-wrapping will be done; each error message will appear on a single
2522 line.
2523
2524 @opindex fdiagnostics-show-location
2525 @item -fdiagnostics-show-location=once
2526 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2527 reporter to emit @emph{once} source location information; that is, in
2528 case the message is too long to fit on a single physical line and has to
2529 be wrapped, the source location won't be emitted (as prefix) again,
2530 over and over, in subsequent continuation lines.  This is the default
2531 behavior.
2532
2533 @item -fdiagnostics-show-location=every-line
2534 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2535 messages reporter to emit the same source location information (as
2536 prefix) for physical lines that result from the process of breaking
2537 a message which is too long to fit on a single line.
2538
2539 @item -fdiagnostics-show-option
2540 @opindex fdiagnostics-show-option
2541 This option instructs the diagnostic machinery to add text to each
2542 diagnostic emitted, which indicates which command line option directly
2543 controls that diagnostic, when such an option is known to the
2544 diagnostic machinery.
2545
2546 @item -Wcoverage-mismatch
2547 @opindex Wcoverage-mismatch
2548 Warn if feedback profiles do not match when using the
2549 @option{-fprofile-use} option.
2550 If a source file was changed between @option{-fprofile-gen} and
2551 @option{-fprofile-use}, the files with the profile feedback can fail
2552 to match the source file and GCC can not use the profile feedback
2553 information.  By default, GCC emits an error message in this case.
2554 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2555 error.  GCC does not use appropriate feedback profiles, so using this
2556 option can result in poorly optimized code.  This option is useful
2557 only in the case of very minor changes such as bug fixes to an
2558 existing code-base.
2559
2560 @end table
2561
2562 @node Warning Options
2563 @section Options to Request or Suppress Warnings
2564 @cindex options to control warnings
2565 @cindex warning messages
2566 @cindex messages, warning
2567 @cindex suppressing warnings
2568
2569 Warnings are diagnostic messages that report constructions which
2570 are not inherently erroneous but which are risky or suggest there
2571 may have been an error.
2572
2573 The following language-independent options do not enable specific
2574 warnings but control the kinds of diagnostics produced by GCC.
2575
2576 @table @gcctabopt
2577 @cindex syntax checking
2578 @item -fsyntax-only
2579 @opindex fsyntax-only
2580 Check the code for syntax errors, but don't do anything beyond that.
2581
2582 @item -w
2583 @opindex w
2584 Inhibit all warning messages.
2585
2586 @item -Werror
2587 @opindex Werror
2588 @opindex Wno-error
2589 Make all warnings into errors.
2590
2591 @item -Werror=
2592 @opindex Werror=
2593 @opindex Wno-error=
2594 Make the specified warning into an error.  The specifier for a warning
2595 is appended, for example @option{-Werror=switch} turns the warnings
2596 controlled by @option{-Wswitch} into errors.  This switch takes a
2597 negative form, to be used to negate @option{-Werror} for specific
2598 warnings, for example @option{-Wno-error=switch} makes
2599 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2600 is in effect.  You can use the @option{-fdiagnostics-show-option}
2601 option to have each controllable warning amended with the option which
2602 controls it, to determine what to use with this option.
2603
2604 Note that specifying @option{-Werror=}@var{foo} automatically implies
2605 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2606 imply anything.
2607
2608 @item -Wfatal-errors
2609 @opindex Wfatal-errors
2610 @opindex Wno-fatal-errors
2611 This option causes the compiler to abort compilation on the first error
2612 occurred rather than trying to keep going and printing further error
2613 messages.
2614
2615 @end table
2616
2617 You can request many specific warnings with options beginning
2618 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2619 implicit declarations.  Each of these specific warning options also
2620 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2621 example, @option{-Wno-implicit}.  This manual lists only one of the
2622 two forms, whichever is not the default.  For further,
2623 language-specific options also refer to @ref{C++ Dialect Options} and
2624 @ref{Objective-C and Objective-C++ Dialect Options}.
2625
2626 @table @gcctabopt
2627 @item -pedantic
2628 @opindex pedantic
2629 Issue all the warnings demanded by strict ISO C and ISO C++;
2630 reject all programs that use forbidden extensions, and some other
2631 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2632 version of the ISO C standard specified by any @option{-std} option used.
2633
2634 Valid ISO C and ISO C++ programs should compile properly with or without
2635 this option (though a rare few will require @option{-ansi} or a
2636 @option{-std} option specifying the required version of ISO C)@.  However,
2637 without this option, certain GNU extensions and traditional C and C++
2638 features are supported as well.  With this option, they are rejected.
2639
2640 @option{-pedantic} does not cause warning messages for use of the
2641 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2642 warnings are also disabled in the expression that follows
2643 @code{__extension__}.  However, only system header files should use
2644 these escape routes; application programs should avoid them.
2645 @xref{Alternate Keywords}.
2646
2647 Some users try to use @option{-pedantic} to check programs for strict ISO
2648 C conformance.  They soon find that it does not do quite what they want:
2649 it finds some non-ISO practices, but not all---only those for which
2650 ISO C @emph{requires} a diagnostic, and some others for which
2651 diagnostics have been added.
2652
2653 A feature to report any failure to conform to ISO C might be useful in
2654 some instances, but would require considerable additional work and would
2655 be quite different from @option{-pedantic}.  We don't have plans to
2656 support such a feature in the near future.
2657
2658 Where the standard specified with @option{-std} represents a GNU
2659 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2660 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2661 extended dialect is based.  Warnings from @option{-pedantic} are given
2662 where they are required by the base standard.  (It would not make sense
2663 for such warnings to be given only for features not in the specified GNU
2664 C dialect, since by definition the GNU dialects of C include all
2665 features the compiler supports with the given option, and there would be
2666 nothing to warn about.)
2667
2668 @item -pedantic-errors
2669 @opindex pedantic-errors
2670 Like @option{-pedantic}, except that errors are produced rather than
2671 warnings.
2672
2673 @item -Wall
2674 @opindex Wall
2675 @opindex Wno-all
2676 This enables all the warnings about constructions that some users
2677 consider questionable, and that are easy to avoid (or modify to
2678 prevent the warning), even in conjunction with macros.  This also
2679 enables some language-specific warnings described in @ref{C++ Dialect
2680 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2681
2682 @option{-Wall} turns on the following warning flags:
2683
2684 @gccoptlist{-Waddress   @gol
2685 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2686 -Wc++0x-compat  @gol
2687 -Wchar-subscripts  @gol
2688 -Wimplicit-int  @gol
2689 -Wimplicit-function-declaration  @gol
2690 -Wcomment  @gol
2691 -Wformat   @gol
2692 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2693 -Wmissing-braces  @gol
2694 -Wnonnull  @gol
2695 -Wparentheses  @gol
2696 -Wpointer-sign  @gol
2697 -Wreorder   @gol
2698 -Wreturn-type  @gol
2699 -Wsequence-point  @gol
2700 -Wsign-compare @r{(only in C++)}  @gol
2701 -Wstrict-aliasing  @gol
2702 -Wstrict-overflow=1  @gol
2703 -Wswitch  @gol
2704 -Wtrigraphs  @gol
2705 -Wuninitialized  @gol
2706 -Wunknown-pragmas  @gol
2707 -Wunused-function  @gol
2708 -Wunused-label     @gol
2709 -Wunused-value     @gol
2710 -Wunused-variable  @gol
2711 -Wvolatile-register-var @gol
2712 }
2713
2714 Note that some warning flags are not implied by @option{-Wall}.  Some of
2715 them warn about constructions that users generally do not consider
2716 questionable, but which occasionally you might wish to check for;
2717 others warn about constructions that are necessary or hard to avoid in
2718 some cases, and there is no simple way to modify the code to suppress
2719 the warning. Some of them are enabled by @option{-Wextra} but many of
2720 them must be enabled individually.
2721
2722 @item -Wextra
2723 @opindex W
2724 @opindex Wextra
2725 @opindex Wno-extra
2726 This enables some extra warning flags that are not enabled by
2727 @option{-Wall}. (This option used to be called @option{-W}.  The older
2728 name is still supported, but the newer name is more descriptive.)
2729
2730 @gccoptlist{-Wclobbered  @gol
2731 -Wempty-body  @gol
2732 -Wignored-qualifiers @gol
2733 -Wmissing-field-initializers  @gol
2734 -Wmissing-parameter-type @r{(C only)}  @gol
2735 -Wold-style-declaration @r{(C only)}  @gol
2736 -Woverride-init  @gol
2737 -Wsign-compare  @gol
2738 -Wtype-limits  @gol
2739 -Wuninitialized  @gol
2740 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2741 }
2742
2743 The option @option{-Wextra} also prints warning messages for the
2744 following cases:
2745
2746 @itemize @bullet
2747
2748 @item
2749 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2750 @samp{>}, or @samp{>=}.
2751
2752 @item 
2753 (C++ only) An enumerator and a non-enumerator both appear in a
2754 conditional expression.
2755
2756 @item 
2757 (C++ only) Ambiguous virtual bases.
2758
2759 @item 
2760 (C++ only) Subscripting an array which has been declared @samp{register}.
2761
2762 @item 
2763 (C++ only) Taking the address of a variable which has been declared
2764 @samp{register}.
2765
2766 @item 
2767 (C++ only) A base class is not initialized in a derived class' copy
2768 constructor.
2769
2770 @end itemize
2771
2772 @item -Wchar-subscripts
2773 @opindex Wchar-subscripts
2774 @opindex Wno-char-subscripts
2775 Warn if an array subscript has type @code{char}.  This is a common cause
2776 of error, as programmers often forget that this type is signed on some
2777 machines.
2778 This warning is enabled by @option{-Wall}.
2779
2780 @item -Wcomment
2781 @opindex Wcomment
2782 @opindex Wno-comment
2783 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2784 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2785 This warning is enabled by @option{-Wall}.
2786
2787 @item -Wformat
2788 @opindex Wformat
2789 @opindex Wno-format
2790 @opindex ffreestanding
2791 @opindex fno-builtin
2792 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2793 the arguments supplied have types appropriate to the format string
2794 specified, and that the conversions specified in the format string make
2795 sense.  This includes standard functions, and others specified by format
2796 attributes (@pxref{Function Attributes}), in the @code{printf},
2797 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2798 not in the C standard) families (or other target-specific families).
2799 Which functions are checked without format attributes having been
2800 specified depends on the standard version selected, and such checks of
2801 functions without the attribute specified are disabled by
2802 @option{-ffreestanding} or @option{-fno-builtin}.
2803
2804 The formats are checked against the format features supported by GNU
2805 libc version 2.2.  These include all ISO C90 and C99 features, as well
2806 as features from the Single Unix Specification and some BSD and GNU
2807 extensions.  Other library implementations may not support all these
2808 features; GCC does not support warning about features that go beyond a
2809 particular library's limitations.  However, if @option{-pedantic} is used
2810 with @option{-Wformat}, warnings will be given about format features not
2811 in the selected standard version (but not for @code{strfmon} formats,
2812 since those are not in any version of the C standard).  @xref{C Dialect
2813 Options,,Options Controlling C Dialect}.
2814
2815 Since @option{-Wformat} also checks for null format arguments for
2816 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2817
2818 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2819 aspects of format checking, the options @option{-Wformat-y2k},
2820 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2821 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2822 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2823
2824 @item -Wformat-y2k
2825 @opindex Wformat-y2k
2826 @opindex Wno-format-y2k
2827 If @option{-Wformat} is specified, also warn about @code{strftime}
2828 formats which may yield only a two-digit year.
2829
2830 @item -Wno-format-contains-nul
2831 @opindex Wno-format-contains-nul
2832 @opindex Wformat-contains-nul
2833 If @option{-Wformat} is specified, do not warn about format strings that
2834 contain NUL bytes.
2835
2836 @item -Wno-format-extra-args
2837 @opindex Wno-format-extra-args
2838 @opindex Wformat-extra-args
2839 If @option{-Wformat} is specified, do not warn about excess arguments to a
2840 @code{printf} or @code{scanf} format function.  The C standard specifies
2841 that such arguments are ignored.
2842
2843 Where the unused arguments lie between used arguments that are
2844 specified with @samp{$} operand number specifications, normally
2845 warnings are still given, since the implementation could not know what
2846 type to pass to @code{va_arg} to skip the unused arguments.  However,
2847 in the case of @code{scanf} formats, this option will suppress the
2848 warning if the unused arguments are all pointers, since the Single
2849 Unix Specification says that such unused arguments are allowed.
2850
2851 @item -Wno-format-zero-length @r{(C and Objective-C only)}
2852 @opindex Wno-format-zero-length
2853 @opindex Wformat-zero-length
2854 If @option{-Wformat} is specified, do not warn about zero-length formats.
2855 The C standard specifies that zero-length formats are allowed.
2856
2857 @item -Wformat-nonliteral
2858 @opindex Wformat-nonliteral
2859 @opindex Wno-format-nonliteral
2860 If @option{-Wformat} is specified, also warn if the format string is not a
2861 string literal and so cannot be checked, unless the format function
2862 takes its format arguments as a @code{va_list}.
2863
2864 @item -Wformat-security
2865 @opindex Wformat-security
2866 @opindex Wno-format-security
2867 If @option{-Wformat} is specified, also warn about uses of format
2868 functions that represent possible security problems.  At present, this
2869 warns about calls to @code{printf} and @code{scanf} functions where the
2870 format string is not a string literal and there are no format arguments,
2871 as in @code{printf (foo);}.  This may be a security hole if the format
2872 string came from untrusted input and contains @samp{%n}.  (This is
2873 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2874 in future warnings may be added to @option{-Wformat-security} that are not
2875 included in @option{-Wformat-nonliteral}.)
2876
2877 @item -Wformat=2
2878 @opindex Wformat=2
2879 @opindex Wno-format=2
2880 Enable @option{-Wformat} plus format checks not included in
2881 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2882 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2883
2884 @item -Wnonnull @r{(C and Objective-C only)}
2885 @opindex Wnonnull
2886 @opindex Wno-nonnull
2887 Warn about passing a null pointer for arguments marked as
2888 requiring a non-null value by the @code{nonnull} function attribute.
2889
2890 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2891 can be disabled with the @option{-Wno-nonnull} option.
2892
2893 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2894 @opindex Winit-self
2895 @opindex Wno-init-self
2896 Warn about uninitialized variables which are initialized with themselves.
2897 Note this option can only be used with the @option{-Wuninitialized} option.
2898
2899 For example, GCC will warn about @code{i} being uninitialized in the
2900 following snippet only when @option{-Winit-self} has been specified:
2901 @smallexample
2902 @group
2903 int f()
2904 @{
2905   int i = i;
2906   return i;
2907 @}
2908 @end group
2909 @end smallexample
2910
2911 @item -Wimplicit-int @r{(C and Objective-C only)}
2912 @opindex Wimplicit-int
2913 @opindex Wno-implicit-int
2914 Warn when a declaration does not specify a type.
2915 This warning is enabled by @option{-Wall}.
2916
2917 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
2918 @opindex Wimplicit-function-declaration
2919 @opindex Wno-implicit-function-declaration
2920 Give a warning whenever a function is used before being declared. In
2921 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2922 enabled by default and it is made into an error by
2923 @option{-pedantic-errors}. This warning is also enabled by
2924 @option{-Wall}.
2925
2926 @item -Wimplicit
2927 @opindex Wimplicit
2928 @opindex Wno-implicit
2929 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2930 This warning is enabled by @option{-Wall}.
2931
2932 @item -Wignored-qualifiers @r{(C and C++ only)}
2933 @opindex Wignored-qualifiers
2934 @opindex Wno-ignored-qualifiers
2935 Warn if the return type of a function has a type qualifier
2936 such as @code{const}.  For ISO C such a type qualifier has no effect,
2937 since the value returned by a function is not an lvalue.
2938 For C++, the warning is only emitted for scalar types or @code{void}.
2939 ISO C prohibits qualified @code{void} return types on function
2940 definitions, so such return types always receive a warning
2941 even without this option.
2942
2943 This warning is also enabled by @option{-Wextra}.
2944
2945 @item -Wmain
2946 @opindex Wmain
2947 @opindex Wno-main
2948 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
2949 a function with external linkage, returning int, taking either zero
2950 arguments, two, or three arguments of appropriate types.  This warning
2951 is enabled by default in C++ and is enabled by either @option{-Wall}
2952 or @option{-pedantic}.
2953
2954 @item -Wmissing-braces
2955 @opindex Wmissing-braces
2956 @opindex Wno-missing-braces
2957 Warn if an aggregate or union initializer is not fully bracketed.  In
2958 the following example, the initializer for @samp{a} is not fully
2959 bracketed, but that for @samp{b} is fully bracketed.
2960
2961 @smallexample
2962 int a[2][2] = @{ 0, 1, 2, 3 @};
2963 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2964 @end smallexample
2965
2966 This warning is enabled by @option{-Wall}.
2967
2968 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2969 @opindex Wmissing-include-dirs
2970 @opindex Wno-missing-include-dirs
2971 Warn if a user-supplied include directory does not exist.
2972
2973 @item -Wparentheses
2974 @opindex Wparentheses
2975 @opindex Wno-parentheses
2976 Warn if parentheses are omitted in certain contexts, such
2977 as when there is an assignment in a context where a truth value
2978 is expected, or when operators are nested whose precedence people
2979 often get confused about.
2980
2981 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2982 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2983 interpretation from that of ordinary mathematical notation.
2984
2985 Also warn about constructions where there may be confusion to which
2986 @code{if} statement an @code{else} branch belongs.  Here is an example of
2987 such a case:
2988
2989 @smallexample
2990 @group
2991 @{
2992   if (a)
2993     if (b)
2994       foo ();
2995   else
2996     bar ();
2997 @}
2998 @end group
2999 @end smallexample
3000
3001 In C/C++, every @code{else} branch belongs to the innermost possible
3002 @code{if} statement, which in this example is @code{if (b)}.  This is
3003 often not what the programmer expected, as illustrated in the above
3004 example by indentation the programmer chose.  When there is the
3005 potential for this confusion, GCC will issue a warning when this flag
3006 is specified.  To eliminate the warning, add explicit braces around
3007 the innermost @code{if} statement so there is no way the @code{else}
3008 could belong to the enclosing @code{if}.  The resulting code would
3009 look like this:
3010
3011 @smallexample
3012 @group
3013 @{
3014   if (a)
3015     @{
3016       if (b)
3017         foo ();
3018       else
3019         bar ();
3020     @}
3021 @}
3022 @end group
3023 @end smallexample
3024
3025 This warning is enabled by @option{-Wall}.
3026
3027 @item -Wsequence-point
3028 @opindex Wsequence-point
3029 @opindex Wno-sequence-point
3030 Warn about code that may have undefined semantics because of violations
3031 of sequence point rules in the C and C++ standards.
3032
3033 The C and C++ standards defines the order in which expressions in a C/C++
3034 program are evaluated in terms of @dfn{sequence points}, which represent
3035 a partial ordering between the execution of parts of the program: those
3036 executed before the sequence point, and those executed after it.  These
3037 occur after the evaluation of a full expression (one which is not part
3038 of a larger expression), after the evaluation of the first operand of a
3039 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3040 function is called (but after the evaluation of its arguments and the
3041 expression denoting the called function), and in certain other places.
3042 Other than as expressed by the sequence point rules, the order of
3043 evaluation of subexpressions of an expression is not specified.  All
3044 these rules describe only a partial order rather than a total order,
3045 since, for example, if two functions are called within one expression
3046 with no sequence point between them, the order in which the functions
3047 are called is not specified.  However, the standards committee have
3048 ruled that function calls do not overlap.
3049
3050 It is not specified when between sequence points modifications to the
3051 values of objects take effect.  Programs whose behavior depends on this
3052 have undefined behavior; the C and C++ standards specify that ``Between
3053 the previous and next sequence point an object shall have its stored
3054 value modified at most once by the evaluation of an expression.
3055 Furthermore, the prior value shall be read only to determine the value
3056 to be stored.''.  If a program breaks these rules, the results on any
3057 particular implementation are entirely unpredictable.
3058
3059 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3060 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3061 diagnosed by this option, and it may give an occasional false positive
3062 result, but in general it has been found fairly effective at detecting
3063 this sort of problem in programs.
3064
3065 The standard is worded confusingly, therefore there is some debate
3066 over the precise meaning of the sequence point rules in subtle cases.
3067 Links to discussions of the problem, including proposed formal
3068 definitions, may be found on the GCC readings page, at
3069 @w{@uref{http://gcc.gnu.org/readings.html}}.
3070
3071 This warning is enabled by @option{-Wall} for C and C++.
3072
3073 @item -Wreturn-type
3074 @opindex Wreturn-type
3075 @opindex Wno-return-type
3076 Warn whenever a function is defined with a return-type that defaults
3077 to @code{int}.  Also warn about any @code{return} statement with no
3078 return-value in a function whose return-type is not @code{void}
3079 (falling off the end of the function body is considered returning
3080 without a value), and about a @code{return} statement with a
3081 expression in a function whose return-type is @code{void}.
3082
3083 For C++, a function without return type always produces a diagnostic
3084 message, even when @option{-Wno-return-type} is specified.  The only
3085 exceptions are @samp{main} and functions defined in system headers.
3086
3087 This warning is enabled by @option{-Wall}.
3088
3089 @item -Wswitch
3090 @opindex Wswitch
3091 @opindex Wno-switch
3092 Warn whenever a @code{switch} statement has an index of enumerated type
3093 and lacks a @code{case} for one or more of the named codes of that
3094 enumeration.  (The presence of a @code{default} label prevents this
3095 warning.)  @code{case} labels outside the enumeration range also
3096 provoke warnings when this option is used.
3097 This warning is enabled by @option{-Wall}.
3098
3099 @item -Wswitch-default
3100 @opindex Wswitch-default
3101 @opindex Wno-switch-default
3102 Warn whenever a @code{switch} statement does not have a @code{default}
3103 case.
3104
3105 @item -Wswitch-enum
3106 @opindex Wswitch-enum
3107 @opindex Wno-switch-enum
3108 Warn whenever a @code{switch} statement has an index of enumerated type
3109 and lacks a @code{case} for one or more of the named codes of that
3110 enumeration.  @code{case} labels outside the enumeration range also
3111 provoke warnings when this option is used.
3112
3113 @item -Wtrigraphs
3114 @opindex Wtrigraphs
3115 @opindex Wno-trigraphs
3116 Warn if any trigraphs are encountered that might change the meaning of
3117 the program (trigraphs within comments are not warned about).
3118 This warning is enabled by @option{-Wall}.
3119
3120 @item -Wunused-function
3121 @opindex Wunused-function
3122 @opindex Wno-unused-function
3123 Warn whenever a static function is declared but not defined or a
3124 non-inline static function is unused.
3125 This warning is enabled by @option{-Wall}.
3126
3127 @item -Wunused-label
3128 @opindex Wunused-label
3129 @opindex Wno-unused-label
3130 Warn whenever a label is declared but not used.
3131 This warning is enabled by @option{-Wall}.
3132
3133 To suppress this warning use the @samp{unused} attribute
3134 (@pxref{Variable Attributes}).
3135
3136 @item -Wunused-parameter
3137 @opindex Wunused-parameter
3138 @opindex Wno-unused-parameter
3139 Warn whenever a function parameter is unused aside from its declaration.
3140
3141 To suppress this warning use the @samp{unused} attribute
3142 (@pxref{Variable Attributes}).
3143
3144 @item -Wunused-variable
3145 @opindex Wunused-variable
3146 @opindex Wno-unused-variable
3147 Warn whenever a local variable or non-constant static variable is unused
3148 aside from its declaration.
3149 This warning is enabled by @option{-Wall}.
3150
3151 To suppress this warning use the @samp{unused} attribute
3152 (@pxref{Variable Attributes}).
3153
3154 @item -Wunused-value
3155 @opindex Wunused-value
3156 @opindex Wno-unused-value
3157 Warn whenever a statement computes a result that is explicitly not
3158 used. To suppress this warning cast the unused expression to
3159 @samp{void}. This includes an expression-statement or the left-hand
3160 side of a comma expression that contains no side effects. For example,
3161 an expression such as @samp{x[i,j]} will cause a warning, while
3162 @samp{x[(void)i,j]} will not.
3163
3164 This warning is enabled by @option{-Wall}.
3165
3166 @item -Wunused
3167 @opindex Wunused
3168 @opindex Wno-unused
3169 All the above @option{-Wunused} options combined.
3170
3171 In order to get a warning about an unused function parameter, you must
3172 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3173 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3174
3175 @item -Wuninitialized
3176 @opindex Wuninitialized
3177 @opindex Wno-uninitialized
3178 Warn if an automatic variable is used without first being initialized
3179 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3180 warn if a non-static reference or non-static @samp{const} member
3181 appears in a class without constructors.
3182
3183 If you want to warn about code which uses the uninitialized value of the
3184 variable in its own initializer, use the @option{-Winit-self} option.
3185
3186 These warnings occur for individual uninitialized or clobbered
3187 elements of structure, union or array variables as well as for
3188 variables which are uninitialized or clobbered as a whole.  They do
3189 not occur for variables or elements declared @code{volatile}.  Because
3190 these warnings depend on optimization, the exact variables or elements
3191 for which there are warnings will depend on the precise optimization
3192 options and version of GCC used.
3193
3194 Note that there may be no warning about a variable that is used only
3195 to compute a value that itself is never used, because such
3196 computations may be deleted by data flow analysis before the warnings
3197 are printed.
3198
3199 These warnings are made optional because GCC is not smart
3200 enough to see all the reasons why the code might be correct
3201 despite appearing to have an error.  Here is one example of how
3202 this can happen:
3203
3204 @smallexample
3205 @group
3206 @{
3207   int x;
3208   switch (y)
3209     @{
3210     case 1: x = 1;
3211       break;
3212     case 2: x = 4;
3213       break;
3214     case 3: x = 5;
3215     @}
3216   foo (x);
3217 @}
3218 @end group
3219 @end smallexample
3220
3221 @noindent
3222 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3223 always initialized, but GCC doesn't know this.  Here is
3224 another common case:
3225
3226 @smallexample
3227 @{
3228   int save_y;
3229   if (change_y) save_y = y, y = new_y;
3230   @dots{}
3231   if (change_y) y = save_y;
3232 @}
3233 @end smallexample
3234
3235 @noindent
3236 This has no bug because @code{save_y} is used only if it is set.
3237
3238 @cindex @code{longjmp} warnings
3239 This option also warns when a non-volatile automatic variable might be
3240 changed by a call to @code{longjmp}.  These warnings as well are possible
3241 only in optimizing compilation.
3242
3243 The compiler sees only the calls to @code{setjmp}.  It cannot know
3244 where @code{longjmp} will be called; in fact, a signal handler could
3245 call it at any point in the code.  As a result, you may get a warning
3246 even when there is in fact no problem because @code{longjmp} cannot
3247 in fact be called at the place which would cause a problem.
3248
3249 Some spurious warnings can be avoided if you declare all the functions
3250 you use that never return as @code{noreturn}.  @xref{Function
3251 Attributes}.
3252
3253 This warning is enabled by @option{-Wall} or @option{-Wextra}.
3254
3255 @item -Wunknown-pragmas
3256 @opindex Wunknown-pragmas
3257 @opindex Wno-unknown-pragmas
3258 @cindex warning for unknown pragmas
3259 @cindex unknown pragmas, warning
3260 @cindex pragmas, warning of unknown
3261 Warn when a #pragma directive is encountered which is not understood by
3262 GCC@.  If this command line option is used, warnings will even be issued
3263 for unknown pragmas in system header files.  This is not the case if
3264 the warnings were only enabled by the @option{-Wall} command line option.
3265
3266 @item -Wno-pragmas
3267 @opindex Wno-pragmas
3268 @opindex Wpragmas
3269 Do not warn about misuses of pragmas, such as incorrect parameters,
3270 invalid syntax, or conflicts between pragmas.  See also
3271 @samp{-Wunknown-pragmas}.
3272
3273 @item -Wstrict-aliasing
3274 @opindex Wstrict-aliasing
3275 @opindex Wno-strict-aliasing
3276 This option is only active when @option{-fstrict-aliasing} is active.
3277 It warns about code which might break the strict aliasing rules that the
3278 compiler is using for optimization.  The warning does not catch all
3279 cases, but does attempt to catch the more common pitfalls.  It is
3280 included in @option{-Wall}.
3281 It is equivalent to @option{-Wstrict-aliasing=3}
3282
3283 @item -Wstrict-aliasing=n
3284 @opindex Wstrict-aliasing=n
3285 @opindex Wno-strict-aliasing=n
3286 This option is only active when @option{-fstrict-aliasing} is active.
3287 It warns about code which might break the strict aliasing rules that the
3288 compiler is using for optimization.
3289 Higher levels correspond to higher accuracy (fewer false positives).
3290 Higher levels also correspond to more effort, similar to the way -O works.
3291 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3292 with n=3.
3293
3294 Level 1: Most aggressive, quick, least accurate.
3295 Possibly useful when higher levels
3296 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3297 false negatives.  However, it has many false positives.
3298 Warns for all pointer conversions between possibly incompatible types, 
3299 even if never dereferenced.  Runs in the frontend only.
3300
3301 Level 2: Aggressive, quick, not too precise.
3302 May still have many false positives (not as many as level 1 though),
3303 and few false negatives (but possibly more than level 1).
3304 Unlike level 1, it only warns when an address is taken.  Warns about
3305 incomplete types.  Runs in the frontend only.
3306
3307 Level 3 (default for @option{-Wstrict-aliasing}): 
3308 Should have very few false positives and few false 
3309 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3310 Takes care of the common punn+dereference pattern in the frontend:
3311 @code{*(int*)&some_float}.
3312 If optimization is enabled, it also runs in the backend, where it deals 
3313 with multiple statement cases using flow-sensitive points-to information.
3314 Only warns when the converted pointer is dereferenced.
3315 Does not warn about incomplete types.
3316
3317 @item -Wstrict-overflow
3318 @itemx -Wstrict-overflow=@var{n}
3319 @opindex Wstrict-overflow
3320 @opindex Wno-strict-overflow
3321 This option is only active when @option{-fstrict-overflow} is active.
3322 It warns about cases where the compiler optimizes based on the
3323 assumption that signed overflow does not occur.  Note that it does not
3324 warn about all cases where the code might overflow: it only warns
3325 about cases where the compiler implements some optimization.  Thus
3326 this warning depends on the optimization level.
3327
3328 An optimization which assumes that signed overflow does not occur is
3329 perfectly safe if the values of the variables involved are such that
3330 overflow never does, in fact, occur.  Therefore this warning can
3331 easily give a false positive: a warning about code which is not
3332 actually a problem.  To help focus on important issues, several
3333 warning levels are defined.  No warnings are issued for the use of
3334 undefined signed overflow when estimating how many iterations a loop
3335 will require, in particular when determining whether a loop will be
3336 executed at all.
3337
3338 @table @gcctabopt
3339 @item -Wstrict-overflow=1
3340 Warn about cases which are both questionable and easy to avoid.  For
3341 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3342 compiler will simplify this to @code{1}.  This level of
3343 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3344 are not, and must be explicitly requested.
3345
3346 @item -Wstrict-overflow=2
3347 Also warn about other cases where a comparison is simplified to a
3348 constant.  For example: @code{abs (x) >= 0}.  This can only be
3349 simplified when @option{-fstrict-overflow} is in effect, because
3350 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3351 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3352 @option{-Wstrict-overflow=2}.
3353
3354 @item -Wstrict-overflow=3
3355 Also warn about other cases where a comparison is simplified.  For
3356 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3357
3358 @item -Wstrict-overflow=4
3359 Also warn about other simplifications not covered by the above cases.
3360 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3361
3362 @item -Wstrict-overflow=5
3363 Also warn about cases where the compiler reduces the magnitude of a
3364 constant involved in a comparison.  For example: @code{x + 2 > y} will
3365 be simplified to @code{x + 1 >= y}.  This is reported only at the
3366 highest warning level because this simplification applies to many
3367 comparisons, so this warning level will give a very large number of
3368 false positives.
3369 @end table
3370
3371 @item -Warray-bounds
3372 @opindex Wno-array-bounds
3373 @opindex Warray-bounds
3374 This option is only active when @option{-ftree-vrp} is active
3375 (default for -O2 and above). It warns about subscripts to arrays
3376 that are always out of bounds. This warning is enabled by @option{-Wall}.
3377
3378 @item -Wno-div-by-zero
3379 @opindex Wno-div-by-zero
3380 @opindex Wdiv-by-zero
3381 Do not warn about compile-time integer division by zero.  Floating point
3382 division by zero is not warned about, as it can be a legitimate way of
3383 obtaining infinities and NaNs.
3384
3385 @item -Wsystem-headers
3386 @opindex Wsystem-headers
3387 @opindex Wno-system-headers
3388 @cindex warnings from system headers
3389 @cindex system headers, warnings from
3390 Print warning messages for constructs found in system header files.
3391 Warnings from system headers are normally suppressed, on the assumption
3392 that they usually do not indicate real problems and would only make the
3393 compiler output harder to read.  Using this command line option tells
3394 GCC to emit warnings from system headers as if they occurred in user
3395 code.  However, note that using @option{-Wall} in conjunction with this
3396 option will @emph{not} warn about unknown pragmas in system
3397 headers---for that, @option{-Wunknown-pragmas} must also be used.
3398
3399 @item -Wfloat-equal
3400 @opindex Wfloat-equal
3401 @opindex Wno-float-equal
3402 Warn if floating point values are used in equality comparisons.
3403
3404 The idea behind this is that sometimes it is convenient (for the
3405 programmer) to consider floating-point values as approximations to
3406 infinitely precise real numbers.  If you are doing this, then you need
3407 to compute (by analyzing the code, or in some other way) the maximum or
3408 likely maximum error that the computation introduces, and allow for it
3409 when performing comparisons (and when producing output, but that's a
3410 different problem).  In particular, instead of testing for equality, you
3411 would check to see whether the two values have ranges that overlap; and
3412 this is done with the relational operators, so equality comparisons are
3413 probably mistaken.
3414
3415 @item -Wtraditional @r{(C and Objective-C only)}
3416 @opindex Wtraditional
3417 @opindex Wno-traditional
3418 Warn about certain constructs that behave differently in traditional and
3419 ISO C@.  Also warn about ISO C constructs that have no traditional C
3420 equivalent, and/or problematic constructs which should be avoided.
3421
3422 @itemize @bullet
3423 @item
3424 Macro parameters that appear within string literals in the macro body.
3425 In traditional C macro replacement takes place within string literals,
3426 but does not in ISO C@.
3427
3428 @item
3429 In traditional C, some preprocessor directives did not exist.
3430 Traditional preprocessors would only consider a line to be a directive
3431 if the @samp{#} appeared in column 1 on the line.  Therefore
3432 @option{-Wtraditional} warns about directives that traditional C
3433 understands but would ignore because the @samp{#} does not appear as the
3434 first character on the line.  It also suggests you hide directives like
3435 @samp{#pragma} not understood by traditional C by indenting them.  Some
3436 traditional implementations would not recognize @samp{#elif}, so it
3437 suggests avoiding it altogether.
3438
3439 @item
3440 A function-like macro that appears without arguments.
3441
3442 @item
3443 The unary plus operator.
3444
3445 @item
3446 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3447 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3448 constants.)  Note, these suffixes appear in macros defined in the system
3449 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3450 Use of these macros in user code might normally lead to spurious
3451 warnings, however GCC's integrated preprocessor has enough context to
3452 avoid warning in these cases.
3453
3454 @item
3455 A function declared external in one block and then used after the end of
3456 the block.
3457
3458 @item
3459 A @code{switch} statement has an operand of type @code{long}.
3460
3461 @item
3462 A non-@code{static} function declaration follows a @code{static} one.
3463 This construct is not accepted by some traditional C compilers.
3464
3465 @item
3466 The ISO type of an integer constant has a different width or
3467 signedness from its traditional type.  This warning is only issued if
3468 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3469 typically represent bit patterns, are not warned about.
3470
3471 @item
3472 Usage of ISO string concatenation is detected.
3473
3474 @item
3475 Initialization of automatic aggregates.
3476
3477 @item
3478 Identifier conflicts with labels.  Traditional C lacks a separate
3479 namespace for labels.
3480
3481 @item
3482 Initialization of unions.  If the initializer is zero, the warning is
3483 omitted.  This is done under the assumption that the zero initializer in
3484 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3485 initializer warnings and relies on default initialization to zero in the
3486 traditional C case.
3487
3488 @item
3489 Conversions by prototypes between fixed/floating point values and vice
3490 versa.  The absence of these prototypes when compiling with traditional
3491 C would cause serious problems.  This is a subset of the possible
3492 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3493
3494 @item
3495 Use of ISO C style function definitions.  This warning intentionally is
3496 @emph{not} issued for prototype declarations or variadic functions
3497 because these ISO C features will appear in your code when using
3498 libiberty's traditional C compatibility macros, @code{PARAMS} and
3499 @code{VPARAMS}.  This warning is also bypassed for nested functions
3500 because that feature is already a GCC extension and thus not relevant to
3501 traditional C compatibility.
3502 @end itemize
3503
3504 @item -Wtraditional-conversion @r{(C and Objective-C only)}
3505 @opindex Wtraditional-conversion
3506 @opindex Wno-traditional-conversion
3507 Warn if a prototype causes a type conversion that is different from what
3508 would happen to the same argument in the absence of a prototype.  This
3509 includes conversions of fixed point to floating and vice versa, and
3510 conversions changing the width or signedness of a fixed point argument
3511 except when the same as the default promotion.
3512
3513 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
3514 @opindex Wdeclaration-after-statement
3515 @opindex Wno-declaration-after-statement
3516 Warn when a declaration is found after a statement in a block.  This
3517 construct, known from C++, was introduced with ISO C99 and is by default
3518 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3519 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3520
3521 @item -Wundef
3522 @opindex Wundef
3523 @opindex Wno-undef
3524 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3525
3526 @item -Wno-endif-labels
3527 @opindex Wno-endif-labels
3528 @opindex Wendif-labels
3529 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3530
3531 @item -Wshadow
3532 @opindex Wshadow
3533 @opindex Wno-shadow
3534 Warn whenever a local variable shadows another local variable, parameter or
3535 global variable or whenever a built-in function is shadowed.
3536
3537 @item -Wlarger-than=@var{len}
3538 @opindex Wlarger-than=@var{len}
3539 @opindex Wlarger-than-@var{len}
3540 Warn whenever an object of larger than @var{len} bytes is defined.
3541
3542 @item -Wframe-larger-than=@var{len}
3543 @opindex Wframe-larger-than
3544 Warn if the size of a function frame is larger than @var{len} bytes.
3545 The computation done to determine the stack frame size is approximate
3546 and not conservative.
3547 The actual requirements may be somewhat greater than @var{len}
3548 even if you do not get a warning.  In addition, any space allocated
3549 via @code{alloca}, variable-length arrays, or related constructs
3550 is not included by the compiler when determining
3551 whether or not to issue a warning.
3552
3553 @item -Wunsafe-loop-optimizations
3554 @opindex Wunsafe-loop-optimizations
3555 @opindex Wno-unsafe-loop-optimizations
3556 Warn if the loop cannot be optimized because the compiler could not
3557 assume anything on the bounds of the loop indices.  With
3558 @option{-funsafe-loop-optimizations} warn if the compiler made
3559 such assumptions.
3560
3561 @item -Wpointer-arith
3562 @opindex Wpointer-arith
3563 @opindex Wno-pointer-arith
3564 Warn about anything that depends on the ``size of'' a function type or
3565 of @code{void}.  GNU C assigns these types a size of 1, for
3566 convenience in calculations with @code{void *} pointers and pointers
3567 to functions.  In C++, warn also when an arithmetic operation involves
3568 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3569
3570 @item -Wtype-limits
3571 @opindex Wtype-limits
3572 @opindex Wno-type-limits
3573 Warn if a comparison is always true or always false due to the limited
3574 range of the data type, but do not warn for constant expressions.  For
3575 example, warn if an unsigned variable is compared against zero with
3576 @samp{<} or @samp{>=}.  This warning is also enabled by
3577 @option{-Wextra}.
3578
3579 @item -Wbad-function-cast @r{(C and Objective-C only)}
3580 @opindex Wbad-function-cast
3581 @opindex Wno-bad-function-cast
3582 Warn whenever a function call is cast to a non-matching type.
3583 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3584
3585 @item -Wc++-compat @r{(C and Objective-C only)}
3586 Warn about ISO C constructs that are outside of the common subset of
3587 ISO C and ISO C++, e.g.@: request for implicit conversion from
3588 @code{void *} to a pointer to non-@code{void} type.
3589
3590 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3591 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3592 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3593 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3594
3595 @item -Wcast-qual
3596 @opindex Wcast-qual
3597 @opindex Wno-cast-qual
3598 Warn whenever a pointer is cast so as to remove a type qualifier from
3599 the target type.  For example, warn if a @code{const char *} is cast
3600 to an ordinary @code{char *}.
3601
3602 @item -Wcast-align
3603 @opindex Wcast-align
3604 @opindex Wno-cast-align
3605 Warn whenever a pointer is cast such that the required alignment of the
3606 target is increased.  For example, warn if a @code{char *} is cast to
3607 an @code{int *} on machines where integers can only be accessed at
3608 two- or four-byte boundaries.
3609
3610 @item -Wwrite-strings
3611 @opindex Wwrite-strings
3612 @opindex Wno-write-strings
3613 When compiling C, give string constants the type @code{const
3614 char[@var{length}]} so that copying the address of one into a
3615 non-@code{const} @code{char *} pointer will get a warning.  These
3616 warnings will help you find at compile time code that can try to write
3617 into a string constant, but only if you have been very careful about
3618 using @code{const} in declarations and prototypes.  Otherwise, it will
3619 just be a nuisance. This is why we did not make @option{-Wall} request
3620 these warnings.
3621
3622 When compiling C++, warn about the deprecated conversion from string
3623 literals to @code{char *}.  This warning is enabled by default for C++
3624 programs.
3625
3626 @item -Wclobbered
3627 @opindex Wclobbered
3628 @opindex Wno-clobbered
3629 Warn for variables that might be changed by @samp{longjmp} or
3630 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3631
3632 @item -Wconversion
3633 @opindex Wconversion
3634 @opindex Wno-conversion
3635 Warn for implicit conversions that may alter a value. This includes
3636 conversions between real and integer, like @code{abs (x)} when
3637 @code{x} is @code{double}; conversions between signed and unsigned,
3638 like @code{unsigned ui = -1}; and conversions to smaller types, like
3639 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3640 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3641 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3642 conversions between signed and unsigned integers can be disabled by
3643 using @option{-Wno-sign-conversion}.
3644
3645 For C++, also warn for conversions between @code{NULL} and non-pointer
3646 types; confusing overload resolution for user-defined conversions; and
3647 conversions that will never use a type conversion operator:
3648 conversions to @code{void}, the same type, a base class or a reference
3649 to them. Warnings about conversions between signed and unsigned
3650 integers are disabled by default in C++ unless
3651 @option{-Wsign-conversion} is explicitly enabled.
3652
3653 @item -Wempty-body
3654 @opindex Wempty-body
3655 @opindex Wno-empty-body
3656 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3657 while} statement.  Additionally, in C++, warn when an empty body occurs
3658 in a @samp{while} or @samp{for} statement with no whitespacing before
3659 the semicolon.  This warning is also enabled by @option{-Wextra}.
3660
3661 @item -Wenum-compare @r{(C++ and Objective-C++ only)}
3662 @opindex Wenum-compare
3663 @opindex Wno-enum-compare
3664 Warn about a comparison between values of different enum types. This
3665 warning is enabled by default.
3666
3667 @item -Wsign-compare
3668 @opindex Wsign-compare
3669 @opindex Wno-sign-compare
3670 @cindex warning for comparison of signed and unsigned values
3671 @cindex comparison of signed and unsigned values, warning
3672 @cindex signed and unsigned values, comparison warning
3673 Warn when a comparison between signed and unsigned values could produce
3674 an incorrect result when the signed value is converted to unsigned.
3675 This warning is also enabled by @option{-Wextra}; to get the other warnings
3676 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3677
3678 @item -Wsign-conversion
3679 @opindex Wsign-conversion
3680 @opindex Wno-sign-conversion
3681 Warn for implicit conversions that may change the sign of an integer
3682 value, like assigning a signed integer expression to an unsigned
3683 integer variable. An explicit cast silences the warning. In C, this
3684 option is enabled also by @option{-Wconversion}.
3685
3686 @item -Waddress
3687 @opindex Waddress
3688 @opindex Wno-address
3689 Warn about suspicious uses of memory addresses. These include using
3690 the address of a function in a conditional expression, such as
3691 @code{void func(void); if (func)}, and comparisons against the memory
3692 address of a string literal, such as @code{if (x == "abc")}.  Such
3693 uses typically indicate a programmer error: the address of a function
3694 always evaluates to true, so their use in a conditional usually
3695 indicate that the programmer forgot the parentheses in a function
3696 call; and comparisons against string literals result in unspecified
3697 behavior and are not portable in C, so they usually indicate that the
3698 programmer intended to use @code{strcmp}.  This warning is enabled by
3699 @option{-Wall}.
3700
3701 @item -Wlogical-op
3702 @opindex Wlogical-op
3703 @opindex Wno-logical-op
3704 Warn about suspicious uses of logical operators in expressions.
3705 This includes using logical operators in contexts where a
3706 bit-wise operator is likely to be expected.
3707
3708 @item -Waggregate-return
3709 @opindex Waggregate-return
3710 @opindex Wno-aggregate-return
3711 Warn if any functions that return structures or unions are defined or
3712 called.  (In languages where you can return an array, this also elicits
3713 a warning.)
3714
3715 @item -Wno-attributes
3716 @opindex Wno-attributes
3717 @opindex Wattributes
3718 Do not warn if an unexpected @code{__attribute__} is used, such as
3719 unrecognized attributes, function attributes applied to variables,
3720 etc.  This will not stop errors for incorrect use of supported
3721 attributes.
3722
3723 @item -Wstrict-prototypes @r{(C and Objective-C only)}
3724 @opindex Wstrict-prototypes
3725 @opindex Wno-strict-prototypes
3726 Warn if a function is declared or defined without specifying the
3727 argument types.  (An old-style function definition is permitted without
3728 a warning if preceded by a declaration which specifies the argument
3729 types.)
3730
3731 @item -Wold-style-declaration @r{(C and Objective-C only)}
3732 @opindex Wold-style-declaration
3733 @opindex Wno-old-style-declaration
3734 Warn for obsolescent usages, according to the C Standard, in a
3735 declaration. For example, warn if storage-class specifiers like
3736 @code{static} are not the first things in a declaration.  This warning
3737 is also enabled by @option{-Wextra}.
3738
3739 @item -Wold-style-definition @r{(C and Objective-C only)}
3740 @opindex Wold-style-definition
3741 @opindex Wno-old-style-definition
3742 Warn if an old-style function definition is used.  A warning is given
3743 even if there is a previous prototype.
3744
3745 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
3746 @opindex Wmissing-parameter-type
3747 @opindex Wno-missing-parameter-type
3748 A function parameter is declared without a type specifier in K&R-style
3749 functions:
3750
3751 @smallexample
3752 void foo(bar) @{ @}
3753 @end smallexample
3754
3755 This warning is also enabled by @option{-Wextra}.
3756
3757 @item -Wmissing-prototypes @r{(C and Objective-C only)}
3758 @opindex Wmissing-prototypes
3759 @opindex Wno-missing-prototypes
3760 Warn if a global function is defined without a previous prototype
3761 declaration.  This warning is issued even if the definition itself
3762 provides a prototype.  The aim is to detect global functions that fail
3763 to be declared in header files.
3764
3765 @item -Wmissing-declarations
3766 @opindex Wmissing-declarations
3767 @opindex Wno-missing-declarations
3768 Warn if a global function is defined without a previous declaration.
3769 Do so even if the definition itself provides a prototype.
3770 Use this option to detect global functions that are not declared in
3771 header files.  In C++, no warnings are issued for function templates,
3772 or for inline functions, or for functions in anonymous namespaces.
3773
3774 @item -Wmissing-field-initializers
3775 @opindex Wmissing-field-initializers
3776 @opindex Wno-missing-field-initializers
3777 @opindex W
3778 @opindex Wextra
3779 @opindex Wno-extra
3780 Warn if a structure's initializer has some fields missing.  For
3781 example, the following code would cause such a warning, because
3782 @code{x.h} is implicitly zero:
3783
3784 @smallexample
3785 struct s @{ int f, g, h; @};
3786 struct s x = @{ 3, 4 @};
3787 @end smallexample
3788
3789 This option does not warn about designated initializers, so the following
3790 modification would not trigger a warning:
3791
3792 @smallexample
3793 struct s @{ int f, g, h; @};
3794 struct s x = @{ .f = 3, .g = 4 @};
3795 @end smallexample
3796
3797 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3798 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3799
3800 @item -Wmissing-noreturn
3801 @opindex Wmissing-noreturn
3802 @opindex Wno-missing-noreturn
3803 Warn about functions which might be candidates for attribute @code{noreturn}.
3804 Note these are only possible candidates, not absolute ones.  Care should
3805 be taken to manually verify functions actually do not ever return before
3806 adding the @code{noreturn} attribute, otherwise subtle code generation
3807 bugs could be introduced.  You will not get a warning for @code{main} in
3808 hosted C environments.
3809
3810 @item -Wmissing-format-attribute
3811 @opindex Wmissing-format-attribute
3812 @opindex Wno-missing-format-attribute
3813 @opindex Wformat
3814 @opindex Wno-format
3815 Warn about function pointers which might be candidates for @code{format}
3816 attributes.  Note these are only possible candidates, not absolute ones.
3817 GCC will guess that function pointers with @code{format} attributes that
3818 are used in assignment, initialization, parameter passing or return
3819 statements should have a corresponding @code{format} attribute in the
3820 resulting type.  I.e.@: the left-hand side of the assignment or
3821 initialization, the type of the parameter variable, or the return type
3822 of the containing function respectively should also have a @code{format}
3823 attribute to avoid the warning.
3824
3825 GCC will also warn about function definitions which might be
3826 candidates for @code{format} attributes.  Again, these are only
3827 possible candidates.  GCC will guess that @code{format} attributes
3828 might be appropriate for any function that calls a function like
3829 @code{vprintf} or @code{vscanf}, but this might not always be the
3830 case, and some functions for which @code{format} attributes are
3831 appropriate may not be detected.
3832
3833 @item -Wno-multichar
3834 @opindex Wno-multichar
3835 @opindex Wmultichar
3836 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3837 Usually they indicate a typo in the user's code, as they have
3838 implementation-defined values, and should not be used in portable code.
3839
3840 @item -Wnormalized=<none|id|nfc|nfkc>
3841 @opindex Wnormalized=
3842 @cindex NFC
3843 @cindex NFKC
3844 @cindex character set, input normalization
3845 In ISO C and ISO C++, two identifiers are different if they are
3846 different sequences of characters.  However, sometimes when characters
3847 outside the basic ASCII character set are used, you can have two
3848 different character sequences that look the same.  To avoid confusion,
3849 the ISO 10646 standard sets out some @dfn{normalization rules} which
3850 when applied ensure that two sequences that look the same are turned into
3851 the same sequence.  GCC can warn you if you are using identifiers which
3852 have not been normalized; this option controls that warning.
3853
3854 There are four levels of warning that GCC supports.  The default is
3855 @option{-Wnormalized=nfc}, which warns about any identifier which is
3856 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3857 recommended form for most uses.
3858
3859 Unfortunately, there are some characters which ISO C and ISO C++ allow
3860 in identifiers that when turned into NFC aren't allowable as
3861 identifiers.  That is, there's no way to use these symbols in portable
3862 ISO C or C++ and have all your identifiers in NFC@.
3863 @option{-Wnormalized=id} suppresses the warning for these characters.
3864 It is hoped that future versions of the standards involved will correct
3865 this, which is why this option is not the default.
3866
3867 You can switch the warning off for all characters by writing
3868 @option{-Wnormalized=none}.  You would only want to do this if you
3869 were using some other normalization scheme (like ``D''), because
3870 otherwise you can easily create bugs that are literally impossible to see.
3871
3872 Some characters in ISO 10646 have distinct meanings but look identical
3873 in some fonts or display methodologies, especially once formatting has
3874 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3875 LETTER N'', will display just like a regular @code{n} which has been
3876 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3877 normalization scheme to convert all these into a standard form as
3878 well, and GCC will warn if your code is not in NFKC if you use
3879 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3880 about every identifier that contains the letter O because it might be
3881 confused with the digit 0, and so is not the default, but may be
3882 useful as a local coding convention if the programming environment is
3883 unable to be fixed to display these characters distinctly.
3884
3885 @item -Wno-deprecated
3886 @opindex Wno-deprecated
3887 @opindex Wdeprecated
3888 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
3889
3890 @item -Wno-deprecated-declarations
3891 @opindex Wno-deprecated-declarations
3892 @opindex Wdeprecated-declarations
3893 Do not warn about uses of functions (@pxref{Function Attributes}),
3894 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3895 Attributes}) marked as deprecated by using the @code{deprecated}
3896 attribute.
3897
3898 @item -Wno-overflow
3899 @opindex Wno-overflow
3900 @opindex Woverflow
3901 Do not warn about compile-time overflow in constant expressions.
3902
3903 @item -Woverride-init @r{(C and Objective-C only)}
3904 @opindex Woverride-init
3905 @opindex Wno-override-init
3906 @opindex W
3907 @opindex Wextra
3908 @opindex Wno-extra
3909 Warn if an initialized field without side effects is overridden when
3910 using designated initializers (@pxref{Designated Inits, , Designated
3911 Initializers}).
3912
3913 This warning is included in @option{-Wextra}.  To get other
3914 @option{-Wextra} warnings without this one, use @samp{-Wextra
3915 -Wno-override-init}.
3916
3917 @item -Wpacked
3918 @opindex Wpacked
3919 @opindex Wno-packed
3920 Warn if a structure is given the packed attribute, but the packed
3921 attribute has no effect on the layout or size of the structure.
3922 Such structures may be mis-aligned for little benefit.  For
3923 instance, in this code, the variable @code{f.x} in @code{struct bar}
3924 will be misaligned even though @code{struct bar} does not itself
3925 have the packed attribute:
3926
3927 @smallexample
3928 @group
3929 struct foo @{
3930   int x;
3931   char a, b, c, d;
3932 @} __attribute__((packed));
3933 struct bar @{
3934   char z;
3935   struct foo f;
3936 @};
3937 @end group
3938 @end smallexample
3939
3940 @item -Wpadded
3941 @opindex Wpadded
3942 @opindex Wno-padded
3943 Warn if padding is included in a structure, either to align an element
3944 of the structure or to align the whole structure.  Sometimes when this
3945 happens it is possible to rearrange the fields of the structure to
3946 reduce the padding and so make the structure smaller.
3947
3948 @item -Wredundant-decls
3949 @opindex Wredundant-decls
3950 @opindex Wno-redundant-decls
3951 Warn if anything is declared more than once in the same scope, even in
3952 cases where multiple declaration is valid and changes nothing.
3953
3954 @item -Wnested-externs @r{(C and Objective-C only)}
3955 @opindex Wnested-externs
3956 @opindex Wno-nested-externs
3957 Warn if an @code{extern} declaration is encountered within a function.
3958
3959 @item -Wunreachable-code
3960 @opindex Wunreachable-code
3961 @opindex Wno-unreachable-code
3962 Warn if the compiler detects that code will never be executed.
3963
3964 This option is intended to warn when the compiler detects that at
3965 least a whole line of source code will never be executed, because
3966 some condition is never satisfied or because it is after a
3967 procedure that never returns.
3968
3969 It is possible for this option to produce a warning even though there
3970 are circumstances under which part of the affected line can be executed,
3971 so care should be taken when removing apparently-unreachable code.
3972
3973 For instance, when a function is inlined, a warning may mean that the
3974 line is unreachable in only one inlined copy of the function.
3975
3976 This option is not made part of @option{-Wall} because in a debugging
3977 version of a program there is often substantial code which checks
3978 correct functioning of the program and is, hopefully, unreachable
3979 because the program does work.  Another common use of unreachable
3980 code is to provide behavior which is selectable at compile-time.
3981
3982 @item -Winline
3983 @opindex Winline
3984 @opindex Wno-inline
3985 Warn if a function can not be inlined and it was declared as inline.
3986 Even with this option, the compiler will not warn about failures to
3987 inline functions declared in system headers.
3988
3989 The compiler uses a variety of heuristics to determine whether or not
3990 to inline a function.  For example, the compiler takes into account
3991 the size of the function being inlined and the amount of inlining
3992 that has already been done in the current function.  Therefore,
3993 seemingly insignificant changes in the source program can cause the
3994 warnings produced by @option{-Winline} to appear or disappear.
3995
3996 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
3997 @opindex Wno-invalid-offsetof
3998 @opindex Winvalid-offsetof
3999 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
4000 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
4001 to a non-POD type is undefined.  In existing C++ implementations,
4002 however, @samp{offsetof} typically gives meaningful results even when
4003 applied to certain kinds of non-POD types. (Such as a simple
4004 @samp{struct} that fails to be a POD type only by virtue of having a
4005 constructor.)  This flag is for users who are aware that they are
4006 writing nonportable code and who have deliberately chosen to ignore the
4007 warning about it.
4008
4009 The restrictions on @samp{offsetof} may be relaxed in a future version
4010 of the C++ standard.
4011
4012 @item -Wno-int-to-pointer-cast @r{(C and Objective-C only)}
4013 @opindex Wno-int-to-pointer-cast
4014 @opindex Wint-to-pointer-cast
4015 Suppress warnings from casts to pointer type of an integer of a
4016 different size.
4017
4018 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
4019 @opindex Wno-pointer-to-int-cast
4020 @opindex Wpointer-to-int-cast
4021 Suppress warnings from casts from a pointer to an integer type of a
4022 different size.
4023
4024 @item -Winvalid-pch
4025 @opindex Winvalid-pch
4026 @opindex Wno-invalid-pch
4027 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
4028 the search path but can't be used.
4029
4030 @item -Wlong-long
4031 @opindex Wlong-long
4032 @opindex Wno-long-long
4033 Warn if @samp{long long} type is used.  This is default.  To inhibit
4034 the warning messages, use @option{-Wno-long-long}.  Flags
4035 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
4036 only when @option{-pedantic} flag is used.
4037
4038 @item -Wvariadic-macros
4039 @opindex Wvariadic-macros
4040 @opindex Wno-variadic-macros
4041 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
4042 alternate syntax when in pedantic ISO C99 mode.  This is default.
4043 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
4044
4045 @item -Wvla
4046 @opindex Wvla
4047 @opindex Wno-vla
4048 Warn if variable length array is used in the code.
4049 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
4050 the variable length array.
4051
4052 @item -Wvolatile-register-var
4053 @opindex Wvolatile-register-var
4054 @opindex Wno-volatile-register-var
4055 Warn if a register variable is declared volatile.  The volatile
4056 modifier does not inhibit all optimizations that may eliminate reads
4057 and/or writes to register variables.  This warning is enabled by
4058 @option{-Wall}.
4059
4060 @item -Wdisabled-optimization
4061 @opindex Wdisabled-optimization
4062 @opindex Wno-disabled-optimization
4063 Warn if a requested optimization pass is disabled.  This warning does
4064 not generally indicate that there is anything wrong with your code; it
4065 merely indicates that GCC's optimizers were unable to handle the code
4066 effectively.  Often, the problem is that your code is too big or too
4067 complex; GCC will refuse to optimize programs when the optimization
4068 itself is likely to take inordinate amounts of time.
4069
4070 @item -Wpointer-sign @r{(C and Objective-C only)}
4071 @opindex Wpointer-sign
4072 @opindex Wno-pointer-sign
4073 Warn for pointer argument passing or assignment with different signedness.
4074 This option is only supported for C and Objective-C@.  It is implied by
4075 @option{-Wall} and by @option{-pedantic}, which can be disabled with
4076 @option{-Wno-pointer-sign}.
4077
4078 @item -Wstack-protector
4079 @opindex Wstack-protector
4080 @opindex Wno-stack-protector
4081 This option is only active when @option{-fstack-protector} is active.  It
4082 warns about functions that will not be protected against stack smashing.
4083
4084 @item -Wno-mudflap
4085 @opindex Wno-mudflap
4086 Suppress warnings about constructs that cannot be instrumented by
4087 @option{-fmudflap}.
4088
4089 @item -Woverlength-strings
4090 @opindex Woverlength-strings
4091 @opindex Wno-overlength-strings
4092 Warn about string constants which are longer than the ``minimum
4093 maximum'' length specified in the C standard.  Modern compilers
4094 generally allow string constants which are much longer than the
4095 standard's minimum limit, but very portable programs should avoid
4096 using longer strings.
4097
4098 The limit applies @emph{after} string constant concatenation, and does
4099 not count the trailing NUL@.  In C89, the limit was 509 characters; in
4100 C99, it was raised to 4095.  C++98 does not specify a normative
4101 minimum maximum, so we do not diagnose overlength strings in C++@.
4102
4103 This option is implied by @option{-pedantic}, and can be disabled with
4104 @option{-Wno-overlength-strings}.
4105
4106 @item -Wdisallowed-function-list=@var{sym},@var{sym},@dots{}
4107 @opindex Wdisallowed-function-list
4108
4109 If any of @var{sym} is called, GCC will issue a warning. This can be useful
4110 in enforcing coding conventions that ban calls to certain functions, for
4111 example, @code{alloca}, @code{malloc}, etc.
4112 @end table
4113
4114 @node Debugging Options
4115 @section Options for Debugging Your Program or GCC
4116 @cindex options, debugging
4117 @cindex debugging information options
4118
4119 GCC has various special options that are used for debugging
4120 either your program or GCC:
4121
4122 @table @gcctabopt
4123 @item -g
4124 @opindex g
4125 Produce debugging information in the operating system's native format
4126 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
4127 information.
4128
4129 On most systems that use stabs format, @option{-g} enables use of extra
4130 debugging information that only GDB can use; this extra information
4131 makes debugging work better in GDB but will probably make other debuggers
4132 crash or
4133 refuse to read the program.  If you want to control for certain whether
4134 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
4135 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4136
4137 GCC allows you to use @option{-g} with
4138 @option{-O}.  The shortcuts taken by optimized code may occasionally
4139 produce surprising results: some variables you declared may not exist
4140 at all; flow of control may briefly move where you did not expect it;
4141 some statements may not be executed because they compute constant
4142 results or their values were already at hand; some statements may
4143 execute in different places because they were moved out of loops.
4144
4145 Nevertheless it proves possible to debug optimized output.  This makes
4146 it reasonable to use the optimizer for programs that might have bugs.
4147
4148 The following options are useful when GCC is generated with the
4149 capability for more than one debugging format.
4150
4151 @item -ggdb
4152 @opindex ggdb
4153 Produce debugging information for use by GDB@.  This means to use the
4154 most expressive format available (DWARF 2, stabs, or the native format
4155 if neither of those are supported), including GDB extensions if at all
4156 possible.
4157
4158 @item -gstabs
4159 @opindex gstabs
4160 Produce debugging information in stabs format (if that is supported),
4161 without GDB extensions.  This is the format used by DBX on most BSD
4162 systems.  On MIPS, Alpha and System V Release 4 systems this option
4163 produces stabs debugging output which is not understood by DBX or SDB@.
4164 On System V Release 4 systems this option requires the GNU assembler.
4165
4166 @item -feliminate-unused-debug-symbols
4167 @opindex feliminate-unused-debug-symbols
4168 Produce debugging information in stabs format (if that is supported),
4169 for only symbols that are actually used.
4170
4171 @item -femit-class-debug-always
4172 Instead of emitting debugging information for a C++ class in only one
4173 object file, emit it in all object files using the class.  This option
4174 should be used only with debuggers that are unable to handle the way GCC
4175 normally emits debugging information for classes because using this
4176 option will increase the size of debugging information by as much as a
4177 factor of two.
4178
4179 @item -gstabs+
4180 @opindex gstabs+
4181 Produce debugging information in stabs format (if that is supported),
4182 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4183 use of these extensions is likely to make other debuggers crash or
4184 refuse to read the program.
4185
4186 @item -gcoff
4187 @opindex gcoff
4188 Produce debugging information in COFF format (if that is supported).
4189 This is the format used by SDB on most System V systems prior to
4190 System V Release 4.
4191
4192 @item -gxcoff
4193 @opindex gxcoff
4194 Produce debugging information in XCOFF format (if that is supported).
4195 This is the format used by the DBX debugger on IBM RS/6000 systems.
4196
4197 @item -gxcoff+
4198 @opindex gxcoff+
4199 Produce debugging information in XCOFF format (if that is supported),
4200 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4201 use of these extensions is likely to make other debuggers crash or
4202 refuse to read the program, and may cause assemblers other than the GNU
4203 assembler (GAS) to fail with an error.
4204
4205 @item -gdwarf-2
4206 @opindex gdwarf-2
4207 Produce debugging information in DWARF version 2 format (if that is
4208 supported).  This is the format used by DBX on IRIX 6.  With this
4209 option, GCC uses features of DWARF version 3 when they are useful;
4210 version 3 is upward compatible with version 2, but may still cause
4211 problems for older debuggers.
4212
4213 @item -gvms
4214 @opindex gvms
4215 Produce debugging information in VMS debug format (if that is
4216 supported).  This is the format used by DEBUG on VMS systems.
4217
4218 @item -g@var{level}
4219 @itemx -ggdb@var{level}
4220 @itemx -gstabs@var{level}
4221 @itemx -gcoff@var{level}
4222 @itemx -gxcoff@var{level}
4223 @itemx -gvms@var{level}
4224 Request debugging information and also use @var{level} to specify how
4225 much information.  The default level is 2.
4226
4227 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4228 @option{-g}.
4229
4230 Level 1 produces minimal information, enough for making backtraces in
4231 parts of the program that you don't plan to debug.  This includes
4232 descriptions of functions and external variables, but no information
4233 about local variables and no line numbers.
4234
4235 Level 3 includes extra information, such as all the macro definitions
4236 present in the program.  Some debuggers support macro expansion when
4237 you use @option{-g3}.
4238
4239 @option{-gdwarf-2} does not accept a concatenated debug level, because
4240 GCC used to support an option @option{-gdwarf} that meant to generate
4241 debug information in version 1 of the DWARF format (which is very
4242 different from version 2), and it would have been too confusing.  That
4243 debug format is long obsolete, but the option cannot be changed now.
4244 Instead use an additional @option{-g@var{level}} option to change the
4245 debug level for DWARF2.
4246
4247 @item -feliminate-dwarf2-dups
4248 @opindex feliminate-dwarf2-dups
4249 Compress DWARF2 debugging information by eliminating duplicated
4250 information about each symbol.  This option only makes sense when
4251 generating DWARF2 debugging information with @option{-gdwarf-2}.
4252
4253 @item -femit-struct-debug-baseonly
4254 Emit debug information for struct-like types
4255 only when the base name of the compilation source file
4256 matches the base name of file in which the struct was defined.
4257
4258 This option substantially reduces the size of debugging information,
4259 but at significant potential loss in type information to the debugger.
4260 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4261 See @option{-femit-struct-debug-detailed} for more detailed control.
4262
4263 This option works only with DWARF 2.
4264
4265 @item -femit-struct-debug-reduced
4266 Emit debug information for struct-like types
4267 only when the base name of the compilation source file
4268 matches the base name of file in which the type was defined,
4269 unless the struct is a template or defined in a system header.
4270
4271 This option significantly reduces the size of debugging information,
4272 with some potential loss in type information to the debugger.
4273 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4274 See @option{-femit-struct-debug-detailed} for more detailed control.
4275
4276 This option works only with DWARF 2.
4277
4278 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4279 Specify the struct-like types
4280 for which the compiler will generate debug information.
4281 The intent is to reduce duplicate struct debug information
4282 between different object files within the same program.
4283
4284 This option is a detailed version of
4285 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4286 which will serve for most needs.
4287
4288 A specification has the syntax
4289 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4290
4291 The optional first word limits the specification to
4292 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4293 A struct type is used directly when it is the type of a variable, member.
4294 Indirect uses arise through pointers to structs.
4295 That is, when use of an incomplete struct would be legal, the use is indirect.
4296 An example is
4297 @samp{struct one direct; struct two * indirect;}.
4298
4299 The optional second word limits the specification to
4300 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4301 Generic structs are a bit complicated to explain.
4302 For C++, these are non-explicit specializations of template classes,
4303 or non-template classes within the above.
4304 Other programming languages have generics,
4305 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4306
4307 The third word specifies the source files for those
4308 structs for which the compiler will emit debug information.
4309 The values @samp{none} and @samp{any} have the normal meaning.
4310 The value @samp{base} means that
4311 the base of name of the file in which the type declaration appears
4312 must match the base of the name of the main compilation file.
4313 In practice, this means that
4314 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4315 but types declared in other header will not.
4316 The value @samp{sys} means those types satisfying @samp{base}
4317 or declared in system or compiler headers.
4318
4319 You may need to experiment to determine the best settings for your application.
4320
4321 The default is @samp{-femit-struct-debug-detailed=all}.
4322
4323 This option works only with DWARF 2.
4324
4325 @item -fno-merge-debug-strings
4326 @opindex fmerge-debug-strings
4327 @opindex fno-merge-debug-strings
4328 Direct the linker to merge together strings which are identical in
4329 different object files.  This is not supported by all assemblers or
4330 linker.  This decreases the size of the debug information in the
4331 output file at the cost of increasing link processing time.  This is
4332 on by default.
4333
4334 @item -fdebug-prefix-map=@var{old}=@var{new}
4335 @opindex fdebug-prefix-map
4336 When compiling files in directory @file{@var{old}}, record debugging
4337 information describing them as in @file{@var{new}} instead.
4338
4339 @cindex @command{prof}
4340 @item -p
4341 @opindex p
4342 Generate extra code to write profile information suitable for the
4343 analysis program @command{prof}.  You must use this option when compiling
4344 the source files you want data about, and you must also use it when
4345 linking.
4346
4347 @cindex @command{gprof}
4348 @item -pg
4349 @opindex pg
4350 Generate extra code to write profile information suitable for the
4351 analysis program @command{gprof}.  You must use this option when compiling
4352 the source files you want data about, and you must also use it when
4353 linking.
4354
4355 @item -Q
4356 @opindex Q
4357 Makes the compiler print out each function name as it is compiled, and
4358 print some statistics about each pass when it finishes.
4359
4360 @item -ftime-report
4361 @opindex ftime-report
4362 Makes the compiler print some statistics about the time consumed by each
4363 pass when it finishes.
4364
4365 @item -fmem-report
4366 @opindex fmem-report
4367 Makes the compiler print some statistics about permanent memory
4368 allocation when it finishes.
4369
4370 @item -fpre-ipa-mem-report
4371 @opindex fpre-ipa-mem-report
4372 @item -fpost-ipa-mem-report
4373 @opindex fpost-ipa-mem-report
4374 Makes the compiler print some statistics about permanent memory
4375 allocation before or after interprocedural optimization.
4376
4377 @item -fprofile-arcs
4378 @opindex fprofile-arcs
4379 Add code so that program flow @dfn{arcs} are instrumented.  During
4380 execution the program records how many times each branch and call is
4381 executed and how many times it is taken or returns.  When the compiled
4382 program exits it saves this data to a file called
4383 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4384 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4385 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4386 @var{auxname} is generated from the name of the output file, if
4387 explicitly specified and it is not the final executable, otherwise it is
4388 the basename of the source file.  In both cases any suffix is removed
4389 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4390 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4391 @xref{Cross-profiling}.
4392
4393 @cindex @command{gcov}
4394 @item --coverage
4395 @opindex coverage
4396
4397 This option is used to compile and link code instrumented for coverage
4398 analysis.  The option is a synonym for @option{-fprofile-arcs}
4399 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4400 linking).  See the documentation for those options for more details.
4401
4402 @itemize
4403
4404 @item
4405 Compile the source files with @option{-fprofile-arcs} plus optimization
4406 and code generation options.  For test coverage analysis, use the
4407 additional @option{-ftest-coverage} option.  You do not need to profile
4408 every source file in a program.
4409
4410 @item
4411 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4412 (the latter implies the former).
4413
4414 @item
4415 Run the program on a representative workload to generate the arc profile
4416 information.  This may be repeated any number of times.  You can run
4417 concurrent instances of your program, and provided that the file system
4418 supports locking, the data files will be correctly updated.  Also
4419 @code{fork} calls are detected and correctly handled (double counting
4420 will not happen).
4421
4422 @item
4423 For profile-directed optimizations, compile the source files again with
4424 the same optimization and code generation options plus
4425 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4426 Control Optimization}).
4427
4428 @item
4429 For test coverage analysis, use @command{gcov} to produce human readable
4430 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4431 @command{gcov} documentation for further information.
4432
4433 @end itemize
4434
4435 With @option{-fprofile-arcs}, for each function of your program GCC
4436 creates a program flow graph, then finds a spanning tree for the graph.
4437 Only arcs that are not on the spanning tree have to be instrumented: the
4438 compiler adds code to count the number of times that these arcs are
4439 executed.  When an arc is the only exit or only entrance to a block, the
4440 instrumentation code can be added to the block; otherwise, a new basic
4441 block must be created to hold the instrumentation code.
4442
4443 @need 2000
4444 @item -ftest-coverage
4445 @opindex ftest-coverage
4446 Produce a notes file that the @command{gcov} code-coverage utility
4447 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4448 show program coverage.  Each source file's note file is called
4449 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4450 above for a description of @var{auxname} and instructions on how to
4451 generate test coverage data.  Coverage data will match the source files
4452 more closely, if you do not optimize.
4453
4454 @item -fdbg-cnt-list
4455 @opindex fdbg-cnt-list
4456 Print the name and the counter upperbound for all debug counters.
4457
4458 @item -fdbg-cnt=@var{counter-value-list}
4459 @opindex fdbg-cnt
4460 Set the internal debug counter upperbound. @var{counter-value-list} 
4461 is a comma-separated list of @var{name}:@var{value} pairs
4462 which sets the upperbound of each debug counter @var{name} to @var{value}.
4463 All debug counters have the initial upperbound of @var{UINT_MAX},
4464 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4465 e.g. With -fdbg-cnt=dce:10,tail_call:0
4466 dbg_cnt(dce) will return true only for first 10 invocations
4467 and dbg_cnt(tail_call) will return false always.
4468
4469 @item -d@var{letters}
4470 @itemx -fdump-rtl-@var{pass}
4471 @opindex d
4472 Says to make debugging dumps during compilation at times specified by
4473 @var{letters}.    This is used for debugging the RTL-based passes of the
4474 compiler.  The file names for most of the dumps are made by appending a
4475 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4476 from the name of the output file, if explicitly specified and it is not
4477 an executable, otherwise it is the basename of the source file. These
4478 switches may have different effects when @option{-E} is used for
4479 preprocessing.
4480
4481 Most debug dumps can be enabled either passing a letter to the @option{-d}
4482 option, or with a long @option{-fdump-rtl} switch; here are the possible
4483 letters for use in @var{letters} and @var{pass}, and their meanings:
4484
4485 @table @gcctabopt
4486 @item -dA
4487 @opindex dA
4488 Annotate the assembler output with miscellaneous debugging information.
4489
4490 @item -fdump-rtl-bbro
4491 @opindex fdump-rtl-bbro
4492 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4493
4494 @item -fdump-rtl-combine
4495 @opindex fdump-rtl-combine
4496 Dump after the RTL instruction combination pass, to the file
4497 @file{@var{file}.129r.combine}.
4498
4499 @item -fdump-rtl-ce1
4500 @itemx -fdump-rtl-ce2
4501 @opindex fdump-rtl-ce1
4502 @opindex fdump-rtl-ce2
4503 @option{-fdump-rtl-ce1} enable dumping after the
4504 first if conversion, to the file @file{@var{file}.117r.ce1}. 
4505 @option{-fdump-rtl-ce2} enable dumping after the second if
4506 conversion, to the file @file{@var{file}.130r.ce2}.
4507
4508 @item -fdump-rtl-btl
4509 @itemx -fdump-rtl-dbr
4510 @opindex fdump-rtl-btl
4511 @opindex fdump-rtl-dbr
4512 @option{-fdump-rtl-btl} enable dumping after branch
4513 target load optimization, to @file{@var{file}.31.btl}.  
4514 @option{-fdump-rtl-dbr} enable dumping after delayed branch
4515 scheduling, to @file{@var{file}.36.dbr}.
4516
4517 @item -dD
4518 @opindex dD
4519 Dump all macro definitions, at the end of preprocessing, in addition to
4520 normal output.
4521
4522 @item -fdump-rtl-ce3
4523 @opindex fdump-rtl-ce3
4524 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4525
4526 @item -fdump-rtl-cfg
4527 @itemx -fdump-rtl-life
4528 @opindex fdump-rtl-cfg
4529 @opindex fdump-rtl-life
4530 @option{-fdump-rtl-cfg} enable dumping after control
4531 and data flow analysis, to @file{@var{file}.116r.cfg}.  
4532 @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4533 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4534
4535 @item -fdump-rtl-greg
4536 @opindex fdump-rtl-greg
4537 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4538
4539 @item -fdump-rtl-gcse
4540 @itemx -fdump-rtl-bypass
4541 @opindex fdump-rtl-gcse
4542 @opindex fdump-rtl-bypass
4543 @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4544 @file{@var{file}.114r.gcse}.  @option{-fdump-rtl-bypass}
4545 enable dumping after jump bypassing and control flow optimizations, to
4546 @file{@var{file}.115r.bypass}.
4547
4548 @item -fdump-rtl-eh
4549 @opindex fdump-rtl-eh
4550 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4551
4552 @item -fdump-rtl-sibling
4553 @opindex fdump-rtl-sibling
4554 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4555
4556 @item -fdump-rtl-jump
4557 @opindex fdump-rtl-jump
4558 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4559
4560 @item -fdump-rtl-stack
4561 @opindex fdump-rtl-stack
4562 Dump after conversion from GCC's "flat register file" registers to the
4563 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4564
4565 @item -fdump-rtl-lreg
4566 @opindex fdump-rtl-lreg
4567 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4568
4569 @item -fdump-rtl-loop2
4570 @opindex fdump-rtl-loop2
4571 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4572 loop optimization pass, to @file{@var{file}.119r.loop2},
4573 @file{@var{file}.120r.loop2_init},
4574 @file{@var{file}.121r.loop2_invariant}, and
4575 @file{@var{file}.125r.loop2_done}.
4576
4577 @item -fdump-rtl-sms
4578 @opindex fdump-rtl-sms
4579 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4580
4581 @item -fdump-rtl-mach
4582 @opindex fdump-rtl-mach
4583 Dump after performing the machine dependent reorganization pass, to
4584 @file{@var{file}.155r.mach} if that pass exists.
4585
4586 @item -fdump-rtl-rnreg
4587 @opindex fdump-rtl-rnreg
4588 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4589
4590 @item -fdump-rtl-regmove
4591 @opindex fdump-rtl-regmove
4592 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4593
4594 @item -fdump-rtl-postreload
4595 @opindex fdump-rtl-postreload
4596 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4597
4598 @item -fdump-rtl-expand
4599 @opindex fdump-rtl-expand
4600 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4601
4602 @item -fdump-rtl-sched2
4603 @opindex fdump-rtl-sched2
4604 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4605
4606 @item -fdump-rtl-cse
4607 @opindex fdump-rtl-cse
4608 Dump after CSE (including the jump optimization that sometimes follows
4609 CSE), to @file{@var{file}.113r.cse}.
4610
4611 @item -fdump-rtl-sched1
4612 @opindex fdump-rtl-sched1
4613 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4614
4615 @item -fdump-rtl-cse2
4616 @opindex fdump-rtl-cse2
4617 Dump after the second CSE pass (including the jump optimization that
4618 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4619
4620 @item -fdump-rtl-tracer
4621 @opindex fdump-rtl-tracer
4622 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4623
4624 @item -fdump-rtl-vpt
4625 @itemx -fdump-rtl-vartrack
4626 @opindex fdump-rtl-vpt
4627 @opindex fdump-rtl-vartrack
4628 @option{-fdump-rtl-vpt} enable dumping after the value
4629 profile transformations, to @file{@var{file}.10.vpt}.
4630 @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4631 to @file{@var{file}.154r.vartrack}.
4632
4633 @item -fdump-rtl-flow2
4634 @opindex fdump-rtl-flow2
4635 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4636
4637 @item -fdump-rtl-peephole2
4638 @opindex fdump-rtl-peephole2
4639 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4640
4641 @item -fdump-rtl-web
4642 @opindex fdump-rtl-web
4643 Dump after live range splitting, to @file{@var{file}.126r.web}.
4644
4645 @item -fdump-rtl-all
4646 @opindex fdump-rtl-all
4647 Produce all the dumps listed above.
4648
4649 @item -dH
4650 @opindex dH
4651 Produce a core dump whenever an error occurs.
4652
4653 @item -dm
4654 @opindex dm
4655 Print statistics on memory usage, at the end of the run, to
4656 standard error.
4657
4658 @item -dp
4659 @opindex dp
4660 Annotate the assembler output with a comment indicating which
4661 pattern and alternative was used.  The length of each instruction is
4662 also printed.
4663
4664 @item -dP
4665 @opindex dP
4666 Dump the RTL in the assembler output as a comment before each instruction.
4667 Also turns on @option{-dp} annotation.
4668
4669 @item -dv
4670 @opindex dv
4671 For each of the other indicated dump files (either with @option{-d} or
4672 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4673 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4674
4675 @item -dx
4676 @opindex dx
4677 Just generate RTL for a function instead of compiling it.  Usually used
4678 with @samp{r} (@option{-fdump-rtl-expand}).
4679
4680 @item -dy
4681 @opindex dy
4682 Dump debugging information during parsing, to standard error.
4683 @end table
4684
4685 @item -fdump-noaddr
4686 @opindex fdump-noaddr
4687 When doing debugging dumps (see @option{-d} option above), suppress
4688 address output.  This makes it more feasible to use diff on debugging
4689 dumps for compiler invocations with different compiler binaries and/or
4690 different text / bss / data / heap / stack / dso start locations.
4691
4692 @item -fdump-unnumbered
4693 @opindex fdump-unnumbered
4694 When doing debugging dumps (see @option{-d} option above), suppress instruction
4695 numbers and address output.  This makes it more feasible to
4696 use diff on debugging dumps for compiler invocations with different
4697 options, in particular with and without @option{-g}.
4698
4699 @item -fdump-translation-unit @r{(C++ only)}
4700 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4701 @opindex fdump-translation-unit
4702 Dump a representation of the tree structure for the entire translation
4703 unit to a file.  The file name is made by appending @file{.tu} to the
4704 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4705 controls the details of the dump as described for the
4706 @option{-fdump-tree} options.
4707
4708 @item -fdump-class-hierarchy @r{(C++ only)}
4709 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4710 @opindex fdump-class-hierarchy
4711 Dump a representation of each class's hierarchy and virtual function
4712 table layout to a file.  The file name is made by appending @file{.class}
4713 to the source file name.  If the @samp{-@var{options}} form is used,
4714 @var{options} controls the details of the dump as described for the
4715 @option{-fdump-tree} options.
4716
4717 @item -fdump-ipa-@var{switch}
4718 @opindex fdump-ipa
4719 Control the dumping at various stages of inter-procedural analysis
4720 language tree to a file.  The file name is generated by appending a switch
4721 specific suffix to the source file name.  The following dumps are possible:
4722
4723 @table @samp
4724 @item all
4725 Enables all inter-procedural analysis dumps.
4726
4727 @item cgraph
4728 Dumps information about call-graph optimization, unused function removal,
4729 and inlining decisions.
4730
4731 @item inline
4732 Dump after function inlining.
4733
4734 @end table
4735
4736 @item -fdump-statistics-@var{option}
4737 @opindex -fdump-statistics
4738 Enable and control dumping of pass statistics in a separate file.  The
4739 file name is generated by appending a suffix ending in @samp{.statistics}
4740 to the source file name.  If the @samp{-@var{option}} form is used,
4741 @samp{-stats} will cause counters to be summed over the whole compilation unit
4742 while @samp{-details} will dump every event as the passes generate them.
4743 The default with no option is to sum counters for each function compiled.
4744
4745 @item -fdump-tree-@var{switch}
4746 @itemx -fdump-tree-@var{switch}-@var{options}
4747 @opindex fdump-tree
4748 Control the dumping at various stages of processing the intermediate
4749 language tree to a file.  The file name is generated by appending a switch
4750 specific suffix to the source file name.  If the @samp{-@var{options}}
4751 form is used, @var{options} is a list of @samp{-} separated options that
4752 control the details of the dump.  Not all options are applicable to all
4753 dumps, those which are not meaningful will be ignored.  The following
4754 options are available
4755
4756 @table @samp
4757 @item address
4758 Print the address of each node.  Usually this is not meaningful as it
4759 changes according to the environment and source file.  Its primary use
4760 is for tying up a dump file with a debug environment.
4761 @item slim
4762 Inhibit dumping of members of a scope or body of a function merely
4763 because that scope has been reached.  Only dump such items when they
4764 are directly reachable by some other path.  When dumping pretty-printed
4765 trees, this option inhibits dumping the bodies of control structures.
4766 @item raw
4767 Print a raw representation of the tree.  By default, trees are
4768 pretty-printed into a C-like representation.
4769 @item details
4770 Enable more detailed dumps (not honored by every dump option).
4771 @item stats
4772 Enable dumping various statistics about the pass (not honored by every dump
4773 option).
4774 @item blocks
4775 Enable showing basic block boundaries (disabled in raw dumps).
4776 @item vops
4777 Enable showing virtual operands for every statement.
4778 @item lineno
4779 Enable showing line numbers for statements.
4780 @item uid
4781 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4782 @item verbose
4783 Enable showing the tree dump for each statement.
4784 @item all
4785 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
4786 and @option{lineno}.
4787 @end table
4788
4789 The following tree dumps are possible:
4790 @table @samp
4791
4792 @item original
4793 Dump before any tree based optimization, to @file{@var{file}.original}.
4794
4795 @item optimized
4796 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4797
4798 @item gimple
4799 @opindex fdump-tree-gimple
4800 Dump each function before and after the gimplification pass to a file.  The
4801 file name is made by appending @file{.gimple} to the source file name.
4802
4803 @item cfg
4804 @opindex fdump-tree-cfg
4805 Dump the control flow graph of each function to a file.  The file name is
4806 made by appending @file{.cfg} to the source file name.
4807
4808 @item vcg
4809 @opindex fdump-tree-vcg
4810 Dump the control flow graph of each function to a file in VCG format.  The
4811 file name is made by appending @file{.vcg} to the source file name.  Note
4812 that if the file contains more than one function, the generated file cannot
4813 be used directly by VCG@.  You will need to cut and paste each function's
4814 graph into its own separate file first.
4815
4816 @item ch
4817 @opindex fdump-tree-ch
4818 Dump each function after copying loop headers.  The file name is made by
4819 appending @file{.ch} to the source file name.
4820
4821 @item ssa
4822 @opindex fdump-tree-ssa
4823 Dump SSA related information to a file.  The file name is made by appending
4824 @file{.ssa} to the source file name.
4825
4826 @item alias
4827 @opindex fdump-tree-alias
4828 Dump aliasing information for each function.  The file name is made by
4829 appending @file{.alias} to the source file name.
4830
4831 @item ccp
4832 @opindex fdump-tree-ccp
4833 Dump each function after CCP@.  The file name is made by appending
4834 @file{.ccp} to the source file name.
4835
4836 @item storeccp
4837 @opindex fdump-tree-storeccp
4838 Dump each function after STORE-CCP@.  The file name is made by appending
4839 @file{.storeccp} to the source file name.
4840
4841 @item pre
4842 @opindex fdump-tree-pre
4843 Dump trees after partial redundancy elimination.  The file name is made
4844 by appending @file{.pre} to the source file name.
4845
4846 @item fre
4847 @opindex fdump-tree-fre
4848 Dump trees after full redundancy elimination.  The file name is made
4849 by appending @file{.fre} to the source file name.
4850
4851 @item copyprop
4852 @opindex fdump-tree-copyprop
4853 Dump trees after copy propagation.  The file name is made
4854 by appending @file{.copyprop} to the source file name.
4855
4856 @item store_copyprop
4857 @opindex fdump-tree-store_copyprop
4858 Dump trees after store copy-propagation.  The file name is made
4859 by appending @file{.store_copyprop} to the source file name.
4860
4861 @item dce
4862 @opindex fdump-tree-dce
4863 Dump each function after dead code elimination.  The file name is made by
4864 appending @file{.dce} to the source file name.
4865
4866 @item mudflap
4867 @opindex fdump-tree-mudflap
4868 Dump each function after adding mudflap instrumentation.  The file name is
4869 made by appending @file{.mudflap} to the source file name.
4870
4871 @item sra
4872 @opindex fdump-tree-sra
4873 Dump each function after performing scalar replacement of aggregates.  The
4874 file name is made by appending @file{.sra} to the source file name.
4875
4876 @item sink
4877 @opindex fdump-tree-sink
4878 Dump each function after performing code sinking.  The file name is made
4879 by appending @file{.sink} to the source file name.
4880
4881 @item dom
4882 @opindex fdump-tree-dom
4883 Dump each function after applying dominator tree optimizations.  The file
4884 name is made by appending @file{.dom} to the source file name.
4885
4886 @item dse
4887 @opindex fdump-tree-dse
4888 Dump each function after applying dead store elimination.  The file
4889 name is made by appending @file{.dse} to the source file name.
4890
4891 @item phiopt
4892 @opindex fdump-tree-phiopt
4893 Dump each function after optimizing PHI nodes into straightline code.  The file
4894 name is made by appending @file{.phiopt} to the source file name.
4895
4896 @item forwprop
4897 @opindex fdump-tree-forwprop
4898 Dump each function after forward propagating single use variables.  The file
4899 name is made by appending @file{.forwprop} to the source file name.
4900
4901 @item copyrename
4902 @opindex fdump-tree-copyrename
4903 Dump each function after applying the copy rename optimization.  The file
4904 name is made by appending @file{.copyrename} to the source file name.
4905
4906 @item nrv
4907 @opindex fdump-tree-nrv
4908 Dump each function after applying the named return value optimization on
4909 generic trees.  The file name is made by appending @file{.nrv} to the source
4910 file name.
4911
4912 @item vect
4913 @opindex fdump-tree-vect
4914 Dump each function after applying vectorization of loops.  The file name is
4915 made by appending @file{.vect} to the source file name.
4916
4917 @item vrp
4918 @opindex fdump-tree-vrp
4919 Dump each function after Value Range Propagation (VRP).  The file name
4920 is made by appending @file{.vrp} to the source file name.
4921
4922 @item all
4923 @opindex fdump-tree-all
4924 Enable all the available tree dumps with the flags provided in this option.
4925 @end table
4926
4927 @item -ftree-vectorizer-verbose=@var{n}
4928 @opindex ftree-vectorizer-verbose
4929 This option controls the amount of debugging output the vectorizer prints.
4930 This information is written to standard error, unless
4931 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4932 in which case it is output to the usual dump listing file, @file{.vect}.
4933 For @var{n}=0 no diagnostic information is reported.
4934 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4935 and the total number of loops that got vectorized.
4936 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4937 the first analysis phase (vect_analyze_loop_form) - i.e.@: countable,
4938 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4939 level that @option{-fdump-tree-vect-stats} uses.
4940 Higher verbosity levels mean either more information dumped for each
4941 reported loop, or same amount of information reported for more loops:
4942 If @var{n}=3, alignment related information is added to the reports.
4943 If @var{n}=4, data-references related information (e.g.@: memory dependences,
4944 memory access-patterns) is added to the reports.
4945 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4946 that did not pass the first analysis phase (i.e., may not be countable, or
4947 may have complicated control-flow).
4948 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4949 For @var{n}=7, all the information the vectorizer generates during its
4950 analysis and transformation is reported.  This is the same verbosity level
4951 that @option{-fdump-tree-vect-details} uses.
4952
4953 @item -frandom-seed=@var{string}
4954 @opindex frandom-string
4955 This option provides a seed that GCC uses when it would otherwise use
4956 random numbers.  It is used to generate certain symbol names
4957 that have to be different in every compiled file.  It is also used to
4958 place unique stamps in coverage data files and the object files that
4959 produce them.  You can use the @option{-frandom-seed} option to produce
4960 reproducibly identical object files.
4961
4962 The @var{string} should be different for every file you compile.
4963
4964 @item -fsched-verbose=@var{n}
4965 @opindex fsched-verbose
4966 On targets that use instruction scheduling, this option controls the
4967 amount of debugging output the scheduler prints.  This information is
4968 written to standard error, unless @option{-dS} or @option{-dR} is
4969 specified, in which case it is output to the usual dump
4970 listing file, @file{.sched} or @file{.sched2} respectively.  However
4971 for @var{n} greater than nine, the output is always printed to standard
4972 error.
4973
4974 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4975 same information as @option{-dRS}.  For @var{n} greater than one, it
4976 also output basic block probabilities, detailed ready list information
4977 and unit/insn info.  For @var{n} greater than two, it includes RTL
4978 at abort point, control-flow and regions info.  And for @var{n} over
4979 four, @option{-fsched-verbose} also includes dependence info.
4980
4981 @item -save-temps
4982 @opindex save-temps
4983 Store the usual ``temporary'' intermediate files permanently; place them
4984 in the current directory and name them based on the source file.  Thus,
4985 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4986 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4987 preprocessed @file{foo.i} output file even though the compiler now
4988 normally uses an integrated preprocessor.
4989
4990 When used in combination with the @option{-x} command line option,
4991 @option{-save-temps} is sensible enough to avoid over writing an
4992 input source file with the same extension as an intermediate file.
4993 The corresponding intermediate file may be obtained by renaming the
4994 source file before using @option{-save-temps}.
4995
4996 @item -time
4997 @opindex time
4998 Report the CPU time taken by each subprocess in the compilation
4999 sequence.  For C source files, this is the compiler proper and assembler
5000 (plus the linker if linking is done).  The output looks like this:
5001
5002 @smallexample
5003 # cc1 0.12 0.01
5004 # as 0.00 0.01
5005 @end smallexample
5006
5007 The first number on each line is the ``user time'', that is time spent
5008 executing the program itself.  The second number is ``system time'',
5009 time spent executing operating system routines on behalf of the program.
5010 Both numbers are in seconds.
5011
5012 @item -fvar-tracking
5013 @opindex fvar-tracking
5014 Run variable tracking pass.  It computes where variables are stored at each
5015 position in code.  Better debugging information is then generated
5016 (if the debugging information format supports this information).
5017
5018 It is enabled by default when compiling with optimization (@option{-Os},
5019 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
5020 the debug info format supports it.
5021
5022 @item -print-file-name=@var{library}
5023 @opindex print-file-name
5024 Print the full absolute name of the library file @var{library} that
5025 would be used when linking---and don't do anything else.  With this
5026 option, GCC does not compile or link anything; it just prints the
5027 file name.
5028
5029 @item -print-multi-directory
5030 @opindex print-multi-directory
5031 Print the directory name corresponding to the multilib selected by any
5032 other switches present in the command line.  This directory is supposed
5033 to exist in @env{GCC_EXEC_PREFIX}.
5034
5035 @item -print-multi-lib
5036 @opindex print-multi-lib
5037 Print the mapping from multilib directory names to compiler switches
5038 that enable them.  The directory name is separated from the switches by
5039 @samp{;}, and each switch starts with an @samp{@@} instead of the
5040 @samp{-}, without spaces between multiple switches.  This is supposed to
5041 ease shell-processing.
5042
5043 @item -print-prog-name=@var{program}
5044 @opindex print-prog-name
5045 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
5046
5047 @item -print-libgcc-file-name
5048 @opindex print-libgcc-file-name
5049 Same as @option{-print-file-name=libgcc.a}.
5050
5051 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
5052 but you do want to link with @file{libgcc.a}.  You can do
5053
5054 @smallexample
5055 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
5056 @end smallexample
5057
5058 @item -print-search-dirs
5059 @opindex print-search-dirs
5060 Print the name of the configured installation directory and a list of
5061 program and library directories @command{gcc} will search---and don't do anything else.
5062
5063 This is useful when @command{gcc} prints the error message
5064 @samp{installation problem, cannot exec cpp0: No such file or directory}.
5065 To resolve this you either need to put @file{cpp0} and the other compiler
5066 components where @command{gcc} expects to find them, or you can set the environment
5067 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
5068 Don't forget the trailing @samp{/}.
5069 @xref{Environment Variables}.
5070
5071 @item -print-sysroot
5072 @opindex print-sysroot
5073 Print the target sysroot directory that will be used during
5074 compilation.  This is the target sysroot specified either at configure
5075 time or or using the @option{--sysroot} option, possibly with an extra
5076 suffix that depends on compilation options.  If no target sysroot is
5077 specified, the option prints nothing.
5078
5079 @item -print-sysroot-headers-suffix
5080 @opindex print-sysroot-headers-suffix
5081 Print the suffix added to the target sysroot when searching for
5082 headers, or give an error if the compiler is not configured with such
5083 a suffix---and don't do anything else.
5084
5085 @item -dumpmachine
5086 @opindex dumpmachine
5087 Print the compiler's target machine (for example,
5088 @samp{i686-pc-linux-gnu})---and don't do anything else.
5089
5090 @item -dumpversion
5091 @opindex dumpversion
5092 Print the compiler version (for example, @samp{3.0})---and don't do
5093 anything else.
5094
5095 @item -dumpspecs
5096 @opindex dumpspecs
5097 Print the compiler's built-in specs---and don't do anything else.  (This
5098 is used when GCC itself is being built.)  @xref{Spec Files}.
5099
5100 @item -feliminate-unused-debug-types
5101 @opindex feliminate-unused-debug-types
5102 Normally, when producing DWARF2 output, GCC will emit debugging
5103 information for all types declared in a compilation
5104 unit, regardless of whether or not they are actually used
5105 in that compilation unit.  Sometimes this is useful, such as
5106 if, in the debugger, you want to cast a value to a type that is
5107 not actually used in your program (but is declared).  More often,
5108 however, this results in a significant amount of wasted space.
5109 With this option, GCC will avoid producing debug symbol output
5110 for types that are nowhere used in the source file being compiled.
5111 @end table
5112
5113 @node Optimize Options
5114 @section Options That Control Optimization
5115 @cindex optimize options
5116 @cindex options, optimization
5117
5118 These options control various sorts of optimizations.
5119
5120 Without any optimization option, the compiler's goal is to reduce the
5121 cost of compilation and to make debugging produce the expected
5122 results.  Statements are independent: if you stop the program with a
5123 breakpoint between statements, you can then assign a new value to any
5124 variable or change the program counter to any other statement in the
5125 function and get exactly the results you would expect from the source
5126 code.
5127
5128 Turning on optimization flags makes the compiler attempt to improve
5129 the performance and/or code size at the expense of compilation time
5130 and possibly the ability to debug the program.
5131
5132 The compiler performs optimization based on the knowledge it has of the
5133 program.  Compiling multiple files at once to a single output file mode allows
5134 the compiler to use information gained from all of the files when compiling
5135 each of them.
5136
5137 Not all optimizations are controlled directly by a flag.  Only
5138 optimizations that have a flag are listed.
5139
5140 @table @gcctabopt
5141 @item -O
5142 @itemx -O1
5143 @opindex O
5144 @opindex O1
5145 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5146 more memory for a large function.
5147
5148 With @option{-O}, the compiler tries to reduce code size and execution
5149 time, without performing any optimizations that take a great deal of
5150 compilation time.
5151
5152 @option{-O} turns on the following optimization flags:
5153 @gccoptlist{
5154 -fauto-inc-dec @gol
5155 -fcprop-registers @gol
5156 -fdce @gol
5157 -fdefer-pop @gol
5158 -fdelayed-branch @gol
5159 -fdse @gol
5160 -fguess-branch-probability @gol
5161 -fif-conversion2 @gol
5162 -fif-conversion @gol
5163 -finline-small-functions @gol
5164 -fipa-pure-const @gol
5165 -fipa-reference @gol
5166 -fmerge-constants
5167 -fsplit-wide-types @gol
5168 -ftree-builtin-call-dce @gol
5169 -ftree-ccp @gol
5170 -ftree-ch @gol
5171 -ftree-copyrename @gol
5172 -ftree-dce @gol
5173 -ftree-dominator-opts @gol
5174 -ftree-dse @gol
5175 -ftree-fre @gol
5176 -ftree-sra @gol
5177 -ftree-ter @gol
5178 -funit-at-a-time}
5179
5180 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5181 where doing so does not interfere with debugging.
5182
5183 @item -O2
5184 @opindex O2
5185 Optimize even more.  GCC performs nearly all supported optimizations
5186 that do not involve a space-speed tradeoff.  The compiler does not
5187 perform loop unrolling or function inlining when you specify @option{-O2}.
5188 As compared to @option{-O}, this option increases both compilation time
5189 and the performance of the generated code.
5190
5191 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5192 also turns on the following optimization flags:
5193 @gccoptlist{-fthread-jumps @gol
5194 -falign-functions  -falign-jumps @gol
5195 -falign-loops  -falign-labels @gol
5196 -fcaller-saves @gol
5197 -fcrossjumping @gol
5198 -fcse-follow-jumps  -fcse-skip-blocks @gol
5199 -fdelete-null-pointer-checks @gol
5200 -fexpensive-optimizations @gol
5201 -fgcse  -fgcse-lm  @gol
5202 -findirect-inlining @gol
5203 -foptimize-sibling-calls @gol
5204 -fpeephole2 @gol
5205 -fregmove @gol
5206 -freorder-blocks  -freorder-functions @gol
5207 -frerun-cse-after-loop  @gol
5208 -fsched-interblock  -fsched-spec @gol
5209 -fschedule-insns  -fschedule-insns2 @gol
5210 -fstrict-aliasing -fstrict-overflow @gol
5211 -ftree-switch-conversion @gol
5212 -ftree-pre @gol
5213 -ftree-vrp}
5214
5215 Please note the warning under @option{-fgcse} about
5216 invoking @option{-O2} on programs that use computed gotos.
5217
5218 @item -O3
5219 @opindex O3
5220 Optimize yet more.  @option{-O3} turns on all optimizations specified
5221 by @option{-O2} and also turns on the @option{-finline-functions},
5222 @option{-funswitch-loops}, @option{-fpredictive-commoning},
5223 @option{-fgcse-after-reload} and @option{-ftree-vectorize} options.
5224
5225 @item -O0
5226 @opindex O0
5227 Reduce compilation time and make debugging produce the expected
5228 results.  This is the default.
5229
5230 @item -Os
5231 @opindex Os
5232 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5233 do not typically increase code size.  It also performs further
5234 optimizations designed to reduce code size.
5235
5236 @option{-Os} disables the following optimization flags:
5237 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5238 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5239 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5240
5241 If you use multiple @option{-O} options, with or without level numbers,
5242 the last such option is the one that is effective.
5243 @end table
5244
5245 Options of the form @option{-f@var{flag}} specify machine-independent
5246 flags.  Most flags have both positive and negative forms; the negative
5247 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5248 below, only one of the forms is listed---the one you typically will
5249 use.  You can figure out the other form by either removing @samp{no-}
5250 or adding it.
5251
5252 The following options control specific optimizations.  They are either
5253 activated by @option{-O} options or are related to ones that are.  You
5254 can use the following flags in the rare cases when ``fine-tuning'' of
5255 optimizations to be performed is desired.
5256
5257 @table @gcctabopt
5258 @item -fno-default-inline
5259 @opindex fno-default-inline
5260 Do not make member functions inline by default merely because they are
5261 defined inside the class scope (C++ only).  Otherwise, when you specify
5262 @w{@option{-O}}, member functions defined inside class scope are compiled
5263 inline by default; i.e., you don't need to add @samp{inline} in front of
5264 the member function name.
5265
5266 @item -fno-defer-pop
5267 @opindex fno-defer-pop
5268 Always pop the arguments to each function call as soon as that function
5269 returns.  For machines which must pop arguments after a function call,
5270 the compiler normally lets arguments accumulate on the stack for several
5271 function calls and pops them all at once.
5272
5273 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5274
5275 @item -fforward-propagate
5276 @opindex fforward-propagate
5277 Perform a forward propagation pass on RTL@.  The pass tries to combine two
5278 instructions and checks if the result can be simplified.  If loop unrolling
5279 is active, two passes are performed and the second is scheduled after
5280 loop unrolling.
5281
5282 This option is enabled by default at optimization levels @option{-O2},
5283 @option{-O3}, @option{-Os}.
5284
5285 @item -fomit-frame-pointer
5286 @opindex fomit-frame-pointer
5287 Don't keep the frame pointer in a register for functions that
5288 don't need one.  This avoids the instructions to save, set up and
5289 restore frame pointers; it also makes an extra register available
5290 in many functions.  @strong{It also makes debugging impossible on
5291 some machines.}
5292
5293 On some machines, such as the VAX, this flag has no effect, because
5294 the standard calling sequence automatically handles the frame pointer
5295 and nothing is saved by pretending it doesn't exist.  The
5296 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5297 whether a target machine supports this flag.  @xref{Registers,,Register
5298 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5299
5300 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5301
5302 @item -foptimize-sibling-calls
5303 @opindex foptimize-sibling-calls
5304 Optimize sibling and tail recursive calls.
5305
5306 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5307
5308 @item -fno-inline
5309 @opindex fno-inline
5310 Don't pay attention to the @code{inline} keyword.  Normally this option
5311 is used to keep the compiler from expanding any functions inline.
5312 Note that if you are not optimizing, no functions can be expanded inline.
5313
5314 @item -finline-small-functions
5315 @opindex finline-small-functions
5316 Integrate functions into their callers when their body is smaller than expected
5317 function call code (so overall size of program gets smaller).  The compiler
5318 heuristically decides which functions are simple enough to be worth integrating
5319 in this way.
5320
5321 Enabled at level @option{-O2}.
5322
5323 @item -findirect-inlining
5324 @opindex findirect-inlining
5325 Inline also indirect calls that are discovered to be known at compile
5326 time thanks to previous inlining.  This option has any effect only
5327 when inlining itself is turned on by the @option{-finline-functions}
5328 or @option{-finline-small-functions} options.
5329
5330 Enabled at level @option{-O2}.
5331
5332 @item -finline-functions
5333 @opindex finline-functions
5334 Integrate all simple functions into their callers.  The compiler
5335 heuristically decides which functions are simple enough to be worth
5336 integrating in this way.
5337
5338 If all calls to a given function are integrated, and the function is
5339 declared @code{static}, then the function is normally not output as
5340 assembler code in its own right.
5341
5342 Enabled at level @option{-O3}.
5343
5344 @item -finline-functions-called-once
5345 @opindex finline-functions-called-once
5346 Consider all @code{static} functions called once for inlining into their
5347 caller even if they are not marked @code{inline}.  If a call to a given
5348 function is integrated, then the function is not output as assembler code
5349 in its own right.
5350
5351 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
5352
5353 @item -fearly-inlining
5354 @opindex fearly-inlining
5355 Inline functions marked by @code{always_inline} and functions whose body seems
5356 smaller than the function call overhead early before doing
5357 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5358 makes profiling significantly cheaper and usually inlining faster on programs
5359 having large chains of nested wrapper functions.
5360
5361 Enabled by default.
5362
5363 @item -finline-limit=@var{n}
5364 @opindex finline-limit
5365 By default, GCC limits the size of functions that can be inlined.  This flag
5366 allows coarse control of this limit.  @var{n} is the size of functions that
5367 can be inlined in number of pseudo instructions.
5368
5369 Inlining is actually controlled by a number of parameters, which may be
5370 specified individually by using @option{--param @var{name}=@var{value}}.
5371 The @option{-finline-limit=@var{n}} option sets some of these parameters
5372 as follows:
5373
5374 @table @gcctabopt
5375 @item max-inline-insns-single
5376 is set to @var{n}/2.
5377 @item max-inline-insns-auto
5378 is set to @var{n}/2.
5379 @end table
5380
5381 See below for a documentation of the individual
5382 parameters controlling inlining and for the defaults of these parameters.
5383
5384 @emph{Note:} there may be no value to @option{-finline-limit} that results
5385 in default behavior.
5386
5387 @emph{Note:} pseudo instruction represents, in this particular context, an
5388 abstract measurement of function's size.  In no way does it represent a count
5389 of assembly instructions and as such its exact meaning might change from one
5390 release to an another.
5391
5392 @item -fkeep-inline-functions
5393 @opindex fkeep-inline-functions
5394 In C, emit @code{static} functions that are declared @code{inline}
5395 into the object file, even if the function has been inlined into all
5396 of its callers.  This switch does not affect functions using the
5397 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5398 inline functions into the object file.
5399
5400 @item -fkeep-static-consts
5401 @opindex fkeep-static-consts
5402 Emit variables declared @code{static const} when optimization isn't turned
5403 on, even if the variables aren't referenced.
5404
5405 GCC enables this option by default.  If you want to force the compiler to
5406 check if the variable was referenced, regardless of whether or not
5407 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5408
5409 @item -fmerge-constants
5410 @opindex fmerge-constants
5411 Attempt to merge identical constants (string constants and floating point
5412 constants) across compilation units.
5413
5414 This option is the default for optimized compilation if the assembler and
5415 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5416 behavior.
5417
5418 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5419
5420 @item -fmerge-all-constants
5421 @opindex fmerge-all-constants
5422 Attempt to merge identical constants and identical variables.
5423
5424 This option implies @option{-fmerge-constants}.  In addition to
5425 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5426 arrays or initialized constant variables with integral or floating point
5427 types.  Languages like C or C++ require each non-automatic variable to
5428 have distinct location, so using this option will result in non-conforming
5429 behavior.
5430
5431 @item -fmodulo-sched
5432 @opindex fmodulo-sched
5433 Perform swing modulo scheduling immediately before the first scheduling
5434 pass.  This pass looks at innermost loops and reorders their
5435 instructions by overlapping different iterations.
5436
5437 @item -fmodulo-sched-allow-regmoves
5438 @opindex fmodulo-sched-allow-regmoves
5439 Perform more aggressive SMS based modulo scheduling with register moves
5440 allowed.  By setting this flag certain anti-dependences edges will be
5441 deleted which will trigger the generation of reg-moves based on the
5442 life-range analysis.  This option is effective only with
5443 @option{-fmodulo-sched} enabled.
5444
5445 @item -fno-branch-count-reg
5446 @opindex fno-branch-count-reg
5447 Do not use ``decrement and branch'' instructions on a count register,
5448 but instead generate a sequence of instructions that decrement a
5449 register, compare it against zero, then branch based upon the result.
5450 This option is only meaningful on architectures that support such
5451 instructions, which include x86, PowerPC, IA-64 and S/390.
5452
5453 The default is @option{-fbranch-count-reg}.
5454
5455 @item -fno-function-cse
5456 @opindex fno-function-cse
5457 Do not put function addresses in registers; make each instruction that
5458 calls a constant function contain the function's address explicitly.
5459
5460 This option results in less efficient code, but some strange hacks
5461 that alter the assembler output may be confused by the optimizations
5462 performed when this option is not used.
5463
5464 The default is @option{-ffunction-cse}
5465
5466 @item -fno-zero-initialized-in-bss
5467 @opindex fno-zero-initialized-in-bss
5468 If the target supports a BSS section, GCC by default puts variables that
5469 are initialized to zero into BSS@.  This can save space in the resulting
5470 code.
5471
5472 This option turns off this behavior because some programs explicitly
5473 rely on variables going to the data section.  E.g., so that the
5474 resulting executable can find the beginning of that section and/or make
5475 assumptions based on that.
5476
5477 The default is @option{-fzero-initialized-in-bss}.
5478
5479 @item -fmudflap -fmudflapth -fmudflapir
5480 @opindex fmudflap
5481 @opindex fmudflapth
5482 @opindex fmudflapir
5483 @cindex bounds checking
5484 @cindex mudflap
5485 For front-ends that support it (C and C++), instrument all risky
5486 pointer/array dereferencing operations, some standard library
5487 string/heap functions, and some other associated constructs with
5488 range/validity tests.  Modules so instrumented should be immune to
5489 buffer overflows, invalid heap use, and some other classes of C/C++
5490 programming errors.  The instrumentation relies on a separate runtime
5491 library (@file{libmudflap}), which will be linked into a program if
5492 @option{-fmudflap} is given at link time.  Run-time behavior of the
5493 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5494 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5495 for its options.
5496
5497 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5498 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5499 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5500 instrumentation should ignore pointer reads.  This produces less
5501 instrumentation (and therefore faster execution) and still provides
5502 some protection against outright memory corrupting writes, but allows
5503 erroneously read data to propagate within a program.
5504
5505 @item -fthread-jumps
5506 @opindex fthread-jumps
5507 Perform optimizations where we check to see if a jump branches to a
5508 location where another comparison subsumed by the first is found.  If
5509 so, the first branch is redirected to either the destination of the
5510 second branch or a point immediately following it, depending on whether
5511 the condition is known to be true or false.
5512
5513 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5514
5515 @item -fsplit-wide-types
5516 @opindex fsplit-wide-types
5517 When using a type that occupies multiple registers, such as @code{long
5518 long} on a 32-bit system, split the registers apart and allocate them
5519 independently.  This normally generates better code for those types,
5520 but may make debugging more difficult.
5521
5522 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5523 @option{-Os}.
5524
5525 @item -fcse-follow-jumps
5526 @opindex fcse-follow-jumps
5527 In common subexpression elimination (CSE), scan through jump instructions
5528 when the target of the jump is not reached by any other path.  For
5529 example, when CSE encounters an @code{if} statement with an
5530 @code{else} clause, CSE will follow the jump when the condition
5531 tested is false.
5532
5533 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5534
5535 @item -fcse-skip-blocks
5536 @opindex fcse-skip-blocks
5537 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5538 follow jumps which conditionally skip over blocks.  When CSE
5539 encounters a simple @code{if} statement with no else clause,
5540 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5541 body of the @code{if}.
5542
5543 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5544
5545 @item -frerun-cse-after-loop
5546 @opindex frerun-cse-after-loop
5547 Re-run common subexpression elimination after loop optimizations has been
5548 performed.
5549
5550 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5551
5552 @item -fgcse
5553 @opindex fgcse
5554 Perform a global common subexpression elimination pass.
5555 This pass also performs global constant and copy propagation.
5556
5557 @emph{Note:} When compiling a program using computed gotos, a GCC
5558 extension, you may get better runtime performance if you disable
5559 the global common subexpression elimination pass by adding
5560 @option{-fno-gcse} to the command line.
5561
5562 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5563
5564 @item -fgcse-lm
5565 @opindex fgcse-lm
5566 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5567 attempt to move loads which are only killed by stores into themselves.  This
5568 allows a loop containing a load/store sequence to be changed to a load outside
5569 the loop, and a copy/store within the loop.
5570
5571 Enabled by default when gcse is enabled.
5572
5573 @item -fgcse-sm
5574 @opindex fgcse-sm
5575 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5576 global common subexpression elimination.  This pass will attempt to move
5577 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5578 loops containing a load/store sequence can be changed to a load before
5579 the loop and a store after the loop.
5580
5581 Not enabled at any optimization level.
5582
5583 @item -fgcse-las
5584 @opindex fgcse-las
5585 When @option{-fgcse-las} is enabled, the global common subexpression
5586 elimination pass eliminates redundant loads that come after stores to the
5587 same memory location (both partial and full redundancies).
5588
5589 Not enabled at any optimization level.
5590
5591 @item -fgcse-after-reload
5592 @opindex fgcse-after-reload
5593 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5594 pass is performed after reload.  The purpose of this pass is to cleanup
5595 redundant spilling.
5596
5597 @item -funsafe-loop-optimizations
5598 @opindex funsafe-loop-optimizations
5599 If given, the loop optimizer will assume that loop indices do not
5600 overflow, and that the loops with nontrivial exit condition are not
5601 infinite.  This enables a wider range of loop optimizations even if
5602 the loop optimizer itself cannot prove that these assumptions are valid.
5603 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5604 if it finds this kind of loop.
5605
5606 @item -fcrossjumping
5607 @opindex fcrossjumping
5608 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5609 resulting code may or may not perform better than without cross-jumping.
5610
5611 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5612
5613 @item -fauto-inc-dec
5614 @opindex fauto-inc-dec
5615 Combine increments or decrements of addresses with memory accesses.
5616 This pass is always skipped on architectures that do not have
5617 instructions to support this.  Enabled by default at @option{-O} and
5618 higher on architectures that support this.
5619
5620 @item -fdce
5621 @opindex fdce
5622 Perform dead code elimination (DCE) on RTL@.
5623 Enabled by default at @option{-O} and higher.
5624
5625 @item -fdse
5626 @opindex fdse
5627 Perform dead store elimination (DSE) on RTL@.
5628 Enabled by default at @option{-O} and higher.
5629
5630 @item -fif-conversion
5631 @opindex fif-conversion
5632 Attempt to transform conditional jumps into branch-less equivalents.  This
5633 include use of conditional moves, min, max, set flags and abs instructions, and
5634 some tricks doable by standard arithmetics.  The use of conditional execution
5635 on chips where it is available is controlled by @code{if-conversion2}.
5636
5637 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5638
5639 @item -fif-conversion2
5640 @opindex fif-conversion2
5641 Use conditional execution (where available) to transform conditional jumps into
5642 branch-less equivalents.
5643
5644 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5645
5646 @item -fdelete-null-pointer-checks
5647 @opindex fdelete-null-pointer-checks
5648 Use global dataflow analysis to identify and eliminate useless checks
5649 for null pointers.  The compiler assumes that dereferencing a null
5650 pointer would have halted the program.  If a pointer is checked after
5651 it has already been dereferenced, it cannot be null.
5652
5653 In some environments, this assumption is not true, and programs can
5654 safely dereference null pointers.  Use
5655 @option{-fno-delete-null-pointer-checks} to disable this optimization
5656 for programs which depend on that behavior.
5657
5658 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5659
5660 @item -fexpensive-optimizations
5661 @opindex fexpensive-optimizations
5662 Perform a number of minor optimizations that are relatively expensive.
5663
5664 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5665
5666 @item -foptimize-register-move
5667 @itemx -fregmove
5668 @opindex foptimize-register-move
5669 @opindex fregmove
5670 Attempt to reassign register numbers in move instructions and as
5671 operands of other simple instructions in order to maximize the amount of
5672 register tying.  This is especially helpful on machines with two-operand
5673 instructions.
5674
5675 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5676 optimization.
5677
5678 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5679
5680 @item -fira
5681 @opindex fira
5682 Use the integrated register allocator (@acronym{IRA}) for register
5683 allocation.  It is a default if @acronym{IRA} has been ported for the
5684 target.
5685
5686 @item -fira-algorithm=@var{algorithm}
5687 Use specified algorithm for the integrated register allocator.  The
5688 @var{algorithm} argument should be one of @code{regional}, @code{CB},
5689 or @code{mixed}.  The second algorithm specifies Chaitin-Briggs
5690 coloring, the first one specifies regional coloring based on
5691 Chaitin-Briggs coloring, and the third one which is the default
5692 specifies a mix of Chaitin-Briggs and regional algorithms where loops
5693 with small register pressure are ignored.  The first algorithm can
5694 give best result for machines with small size and irregular register
5695 set, the second one is faster and generates decent code and the
5696 smallest size code, and the mixed algorithm usually give the best
5697 results in most cases and for most architectures.
5698
5699 @item -fira-coalesce
5700 @opindex fira-coalesce
5701 Do optimistic register coalescing.  This option might be profitable for
5702 architectures with big regular register files.
5703
5704 @item -fno-ira-share-save-slots
5705 @opindex fno-ira-share-save-slots
5706 Switch off sharing stack slots used for saving call used hard
5707 registers living through a call.  Each hard register will get a
5708 separate stack slot and as a result function stack frame will be
5709 bigger.
5710
5711 @item -fno-ira-share-spill-slots
5712 @opindex fno-ira-share-spill-slots
5713 Switch off sharing stack slots allocated for pseudo-registers.  Each
5714 pseudo-register which did not get a hard register will get a separate
5715 stack slot and as a result function stack frame will be bigger.
5716
5717 @item -fira-verbose=@var{n}
5718 @opindex fira-verbose
5719 Set up how verbose dump file for the integrated register allocator
5720 will be.  Default value is 5.  If the value is greater or equal to 10,
5721 the dump file will be stderr as if the value were @var{n} minus 10.
5722
5723 @item -fdelayed-branch
5724 @opindex fdelayed-branch
5725 If supported for the target machine, attempt to reorder instructions
5726 to exploit instruction slots available after delayed branch
5727 instructions.
5728
5729 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5730
5731 @item -fschedule-insns
5732 @opindex fschedule-insns
5733 If supported for the target machine, attempt to reorder instructions to
5734 eliminate execution stalls due to required data being unavailable.  This
5735 helps machines that have slow floating point or memory load instructions
5736 by allowing other instructions to be issued until the result of the load
5737 or floating point instruction is required.
5738
5739 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5740
5741 @item -fschedule-insns2
5742 @opindex fschedule-insns2
5743 Similar to @option{-fschedule-insns}, but requests an additional pass of
5744 instruction scheduling after register allocation has been done.  This is
5745 especially useful on machines with a relatively small number of
5746 registers and where memory load instructions take more than one cycle.
5747
5748 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5749
5750 @item -fno-sched-interblock
5751 @opindex fno-sched-interblock
5752 Don't schedule instructions across basic blocks.  This is normally
5753 enabled by default when scheduling before register allocation, i.e.@:
5754 with @option{-fschedule-insns} or at @option{-O2} or higher.
5755
5756 @item -fno-sched-spec
5757 @opindex fno-sched-spec
5758 Don't allow speculative motion of non-load instructions.  This is normally
5759 enabled by default when scheduling before register allocation, i.e.@:
5760 with @option{-fschedule-insns} or at @option{-O2} or higher.
5761
5762 @item -fsched-spec-load
5763 @opindex fsched-spec-load
5764 Allow speculative motion of some load instructions.  This only makes
5765 sense when scheduling before register allocation, i.e.@: with
5766 @option{-fschedule-insns} or at @option{-O2} or higher.
5767
5768 @item -fsched-spec-load-dangerous
5769 @opindex fsched-spec-load-dangerous
5770 Allow speculative motion of more load instructions.  This only makes
5771 sense when scheduling before register allocation, i.e.@: with
5772 @option{-fschedule-insns} or at @option{-O2} or higher.
5773
5774 @item -fsched-stalled-insns
5775 @itemx -fsched-stalled-insns=@var{n}
5776 @opindex fsched-stalled-insns
5777 Define how many insns (if any) can be moved prematurely from the queue
5778 of stalled insns into the ready list, during the second scheduling pass.
5779 @option{-fno-sched-stalled-insns} means that no insns will be moved
5780 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
5781 on how many queued insns can be moved prematurely.
5782 @option{-fsched-stalled-insns} without a value is equivalent to
5783 @option{-fsched-stalled-insns=1}.
5784
5785 @item -fsched-stalled-insns-dep
5786 @itemx -fsched-stalled-insns-dep=@var{n}
5787 @opindex fsched-stalled-insns-dep
5788 Define how many insn groups (cycles) will be examined for a dependency
5789 on a stalled insn that is candidate for premature removal from the queue
5790 of stalled insns.  This has an effect only during the second scheduling pass,
5791 and only if @option{-fsched-stalled-insns} is used.
5792 @option{-fno-sched-stalled-insns-dep} is equivalent to
5793 @option{-fsched-stalled-insns-dep=0}.
5794 @option{-fsched-stalled-insns-dep} without a value is equivalent to
5795 @option{-fsched-stalled-insns-dep=1}.
5796
5797 @item -fsched2-use-superblocks
5798 @opindex fsched2-use-superblocks
5799 When scheduling after register allocation, do use superblock scheduling
5800 algorithm.  Superblock scheduling allows motion across basic block boundaries
5801 resulting on faster schedules.  This option is experimental, as not all machine
5802 descriptions used by GCC model the CPU closely enough to avoid unreliable
5803 results from the algorithm.
5804
5805 This only makes sense when scheduling after register allocation, i.e.@: with
5806 @option{-fschedule-insns2} or at @option{-O2} or higher.
5807
5808 @item -fsched2-use-traces
5809 @opindex fsched2-use-traces
5810 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5811 allocation and additionally perform code duplication in order to increase the
5812 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5813 trace formation.
5814
5815 This mode should produce faster but significantly longer programs.  Also
5816 without @option{-fbranch-probabilities} the traces constructed may not
5817 match the reality and hurt the performance.  This only makes
5818 sense when scheduling after register allocation, i.e.@: with
5819 @option{-fschedule-insns2} or at @option{-O2} or higher.
5820
5821 @item -fsee
5822 @opindex fsee
5823 Eliminate redundant sign extension instructions and move the non-redundant
5824 ones to optimal placement using lazy code motion (LCM).
5825
5826 @item -freschedule-modulo-scheduled-loops
5827 @opindex freschedule-modulo-scheduled-loops
5828 The modulo scheduling comes before the traditional scheduling, if a loop
5829 was modulo scheduled we may want to prevent the later scheduling passes
5830 from changing its schedule, we use this option to control that.
5831
5832 @item -fcaller-saves
5833 @opindex fcaller-saves
5834 Enable values to be allocated in registers that will be clobbered by
5835 function calls, by emitting extra instructions to save and restore the
5836 registers around such calls.  Such allocation is done only when it
5837 seems to result in better code than would otherwise be produced.
5838
5839 This option is always enabled by default on certain machines, usually
5840 those which have no call-preserved registers to use instead.
5841
5842 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5843
5844 @item -ftree-reassoc
5845 @opindex ftree-reassoc
5846 Perform reassociation on trees.  This flag is enabled by default
5847 at @option{-O} and higher.
5848
5849 @item -ftree-pre
5850 @opindex ftree-pre
5851 Perform partial redundancy elimination (PRE) on trees.  This flag is
5852 enabled by default at @option{-O2} and @option{-O3}.
5853
5854 @item -ftree-fre
5855 @opindex ftree-fre
5856 Perform full redundancy elimination (FRE) on trees.  The difference
5857 between FRE and PRE is that FRE only considers expressions
5858 that are computed on all paths leading to the redundant computation.
5859 This analysis is faster than PRE, though it exposes fewer redundancies.
5860 This flag is enabled by default at @option{-O} and higher.
5861
5862 @item -ftree-copy-prop
5863 @opindex ftree-copy-prop
5864 Perform copy propagation on trees.  This pass eliminates unnecessary
5865 copy operations.  This flag is enabled by default at @option{-O} and
5866 higher.
5867
5868 @item -fipa-pure-const
5869 @opindex fipa-pure-const
5870 Discover which functions are pure or constant.
5871 Enabled by default at @option{-O} and higher.
5872
5873 @item -fipa-reference
5874 @opindex fipa-reference
5875 Discover which static variables do not escape cannot escape the
5876 compilation unit.
5877 Enabled by default at @option{-O} and higher.
5878
5879 @item -fipa-struct-reorg
5880 @opindex fipa-struct-reorg
5881 Perform structure reorganization optimization, that change C-like structures 
5882 layout in order to better utilize spatial locality.  This transformation is 
5883 affective for programs containing arrays of structures.  Available in two 
5884 compilation modes: profile-based (enabled with @option{-fprofile-generate})
5885 or static (which uses built-in heuristics).  Require @option{-fipa-type-escape}
5886 to provide the safety of this transformation.  It works only in whole program
5887 mode, so it requires @option{-fwhole-program} and @option{-combine} to be
5888 enabled.  Structures considered @samp{cold} by this transformation are not
5889 affected (see @option{--param struct-reorg-cold-struct-ratio=@var{value}}).
5890
5891 With this flag, the program debug info reflects a new structure layout.
5892
5893 @item -fipa-pta
5894 @opindex fipa-pta
5895 Perform interprocedural pointer analysis.  This option is experimental
5896 and does not affect generated code.
5897
5898 @item -fipa-cp
5899 @opindex fipa-cp
5900 Perform interprocedural constant propagation.
5901 This optimization analyzes the program to determine when values passed
5902 to functions are constants and then optimizes accordingly.  
5903 This optimization can substantially increase performance
5904 if the application has constants passed to functions.
5905 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
5906
5907 @item -fipa-cp-clone
5908 @opindex fipa-cp-clone
5909 Perform function cloning to make interprocedural constant propagation stronger.
5910 When enabled, interprocedural constant propagation will perform function cloning
5911 when externally visible function can be called with constant arguments.
5912 Because this optimization can create multiple copies of functions,
5913 it may significantly increase code size
5914 (see @option{--param ipcp-unit-growth=@var{value}}).
5915 This flag is enabled by default at @option{-O3}.
5916
5917 @item -fipa-matrix-reorg
5918 @opindex fipa-matrix-reorg
5919 Perform matrix flattening and transposing.
5920 Matrix flattening tries to replace a m-dimensional matrix 
5921 with its equivalent n-dimensional matrix, where n < m.
5922 This reduces the level of indirection needed for accessing the elements
5923 of the matrix. The second optimization is matrix transposing that
5924 attemps to change the order of the matrix's dimensions in order to 
5925 improve cache locality.
5926 Both optimizations need fwhole-program flag. 
5927 Transposing is enabled only if profiling information is avaliable.
5928
5929
5930 @item -ftree-sink
5931 @opindex ftree-sink
5932 Perform forward store motion  on trees.  This flag is
5933 enabled by default at @option{-O} and higher.
5934
5935 @item -ftree-ccp
5936 @opindex ftree-ccp
5937 Perform sparse conditional constant propagation (CCP) on trees.  This
5938 pass only operates on local scalar variables and is enabled by default
5939 at @option{-O} and higher.
5940
5941 @item -ftree-store-ccp
5942 @opindex ftree-store-ccp
5943 Perform sparse conditional constant propagation (CCP) on trees.  This
5944 pass operates on both local scalar variables and memory stores and
5945 loads (global variables, structures, arrays, etc).  This flag is
5946 enabled by default at @option{-O2} and higher.
5947
5948 @item -ftree-switch-conversion
5949 Perform conversion of simple initializations in a switch to
5950 initializations from a scalar array.  This flag is enabled by default
5951 at @option{-O2} and higher.
5952
5953 @item -ftree-dce
5954 @opindex ftree-dce
5955 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5956 default at @option{-O} and higher.
5957
5958 @item -ftree-builtin-call-dce
5959 @opindex ftree-builtin-call-dce
5960 Perform conditional dead code elimination (DCE) for calls to builtin functions 
5961 that may set @code{errno} but are otherwise side-effect free.  This flag is 
5962 enabled by default at @option{-O2} and higher if @option{-Os} is not also 
5963 specified.
5964
5965 @item -ftree-dominator-opts
5966 @opindex ftree-dominator-opts
5967 Perform a variety of simple scalar cleanups (constant/copy
5968 propagation, redundancy elimination, range propagation and expression
5969 simplification) based on a dominator tree traversal.  This also
5970 performs jump threading (to reduce jumps to jumps). This flag is
5971 enabled by default at @option{-O} and higher.
5972
5973 @item -ftree-dse
5974 @opindex ftree-dse
5975 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5976 a memory location which will later be overwritten by another store without
5977 any intervening loads.  In this case the earlier store can be deleted.  This
5978 flag is enabled by default at @option{-O} and higher.
5979
5980 @item -ftree-ch
5981 @opindex ftree-ch
5982 Perform loop header copying on trees.  This is beneficial since it increases
5983 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5984 is enabled by default at @option{-O} and higher.  It is not enabled
5985 for @option{-Os}, since it usually increases code size.
5986
5987 @item -ftree-loop-optimize
5988 @opindex ftree-loop-optimize
5989 Perform loop optimizations on trees.  This flag is enabled by default
5990 at @option{-O} and higher.
5991
5992 @item -ftree-loop-linear
5993 @opindex ftree-loop-linear
5994 Perform linear loop transformations on tree.  This flag can improve cache
5995 performance and allow further loop optimizations to take place.
5996
5997 @item -fcheck-data-deps
5998 @opindex fcheck-data-deps
5999 Compare the results of several data dependence analyzers.  This option
6000 is used for debugging the data dependence analyzers.
6001
6002 @item -ftree-loop-distribution
6003 Perform loop distribution.  This flag can improve cache performance on
6004 big loop bodies and allow further loop optimizations, like
6005 parallelization or vectorization, to take place.  For example, the loop
6006 @smallexample
6007 DO I = 1, N
6008   A(I) = B(I) + C
6009   D(I) = E(I) * F
6010 ENDDO
6011 @end smallexample
6012 is transformed to
6013 @smallexample
6014 DO I = 1, N
6015    A(I) = B(I) + C
6016 ENDDO
6017 DO I = 1, N
6018    D(I) = E(I) * F
6019 ENDDO
6020 @end smallexample
6021
6022 @item -ftree-loop-im
6023 @opindex ftree-loop-im
6024 Perform loop invariant motion on trees.  This pass moves only invariants that
6025 would be hard to handle at RTL level (function calls, operations that expand to
6026 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
6027 operands of conditions that are invariant out of the loop, so that we can use
6028 just trivial invariantness analysis in loop unswitching.  The pass also includes
6029 store motion.
6030
6031 @item -ftree-loop-ivcanon
6032 @opindex ftree-loop-ivcanon
6033 Create a canonical counter for number of iterations in the loop for that
6034 determining number of iterations requires complicated analysis.  Later
6035 optimizations then may determine the number easily.  Useful especially
6036 in connection with unrolling.
6037
6038 @item -fivopts
6039 @opindex fivopts
6040 Perform induction variable optimizations (strength reduction, induction
6041 variable merging and induction variable elimination) on trees.
6042
6043 @item -ftree-parallelize-loops=n
6044 @opindex ftree-parallelize-loops
6045 Parallelize loops, i.e., split their iteration space to run in n threads.
6046 This is only possible for loops whose iterations are independent
6047 and can be arbitrarily reordered.  The optimization is only
6048 profitable on multiprocessor machines, for loops that are CPU-intensive,
6049 rather than constrained e.g.@: by memory bandwidth.  This option
6050 implies @option{-pthread}, and thus is only supported on targets
6051 that have support for @option{-pthread}.
6052
6053 @item -ftree-sra
6054 @opindex ftree-sra
6055 Perform scalar replacement of aggregates.  This pass replaces structure
6056 references with scalars to prevent committing structures to memory too
6057 early.  This flag is enabled by default at @option{-O} and higher.
6058
6059 @item -ftree-copyrename
6060 @opindex ftree-copyrename
6061 Perform copy renaming on trees.  This pass attempts to rename compiler
6062 temporaries to other variables at copy locations, usually resulting in
6063 variable names which more closely resemble the original variables.  This flag
6064 is enabled by default at @option{-O} and higher.
6065
6066 @item -ftree-ter
6067 @opindex ftree-ter
6068 Perform temporary expression replacement during the SSA->normal phase.  Single
6069 use/single def temporaries are replaced at their use location with their
6070 defining expression.  This results in non-GIMPLE code, but gives the expanders
6071 much more complex trees to work on resulting in better RTL generation.  This is
6072 enabled by default at @option{-O} and higher.
6073
6074 @item -ftree-vectorize
6075 @opindex ftree-vectorize
6076 Perform loop vectorization on trees. This flag is enabled by default at
6077 @option{-O3}.
6078
6079 @item -ftree-vect-loop-version
6080 @opindex ftree-vect-loop-version
6081 Perform loop versioning when doing loop vectorization on trees.  When a loop
6082 appears to be vectorizable except that data alignment or data dependence cannot
6083 be determined at compile time then vectorized and non-vectorized versions of
6084 the loop are generated along with runtime checks for alignment or dependence
6085 to control which version is executed.  This option is enabled by default
6086 except at level @option{-Os} where it is disabled.
6087
6088 @item -fvect-cost-model
6089 @opindex fvect-cost-model
6090 Enable cost model for vectorization.
6091
6092 @item -ftree-vrp
6093 @opindex ftree-vrp
6094 Perform Value Range Propagation on trees.  This is similar to the
6095 constant propagation pass, but instead of values, ranges of values are
6096 propagated.  This allows the optimizers to remove unnecessary range
6097 checks like array bound checks and null pointer checks.  This is
6098 enabled by default at @option{-O2} and higher.  Null pointer check
6099 elimination is only done if @option{-fdelete-null-pointer-checks} is
6100 enabled.
6101
6102 @item -ftracer
6103 @opindex ftracer
6104 Perform tail duplication to enlarge superblock size.  This transformation
6105 simplifies the control flow of the function allowing other optimizations to do
6106 better job.
6107
6108 @item -funroll-loops
6109 @opindex funroll-loops
6110 Unroll loops whose number of iterations can be determined at compile
6111 time or upon entry to the loop.  @option{-funroll-loops} implies
6112 @option{-frerun-cse-after-loop}.  This option makes code larger,
6113 and may or may not make it run faster.
6114
6115 @item -funroll-all-loops
6116 @opindex funroll-all-loops
6117 Unroll all loops, even if their number of iterations is uncertain when
6118 the loop is entered.  This usually makes programs run more slowly.
6119 @option{-funroll-all-loops} implies the same options as
6120 @option{-funroll-loops},
6121
6122 @item -fsplit-ivs-in-unroller
6123 @opindex fsplit-ivs-in-unroller
6124 Enables expressing of values of induction variables in later iterations
6125 of the unrolled loop using the value in the first iteration.  This breaks
6126 long dependency chains, thus improving efficiency of the scheduling passes.
6127
6128 Combination of @option{-fweb} and CSE is often sufficient to obtain the
6129 same effect.  However in cases the loop body is more complicated than
6130 a single basic block, this is not reliable.  It also does not work at all
6131 on some of the architectures due to restrictions in the CSE pass.
6132
6133 This optimization is enabled by default.
6134
6135 @item -fvariable-expansion-in-unroller
6136 @opindex fvariable-expansion-in-unroller
6137 With this option, the compiler will create multiple copies of some
6138 local variables when unrolling a loop which can result in superior code.
6139
6140 @item -fpredictive-commoning
6141 @opindex fpredictive-commoning
6142 Perform predictive commoning optimization, i.e., reusing computations
6143 (especially memory loads and stores) performed in previous
6144 iterations of loops.
6145
6146 This option is enabled at level @option{-O3}.
6147
6148 @item -fprefetch-loop-arrays
6149 @opindex fprefetch-loop-arrays
6150 If supported by the target machine, generate instructions to prefetch
6151 memory to improve the performance of loops that access large arrays.
6152
6153 This option may generate better or worse code; results are highly
6154 dependent on the structure of loops within the source code.
6155
6156 Disabled at level @option{-Os}.
6157
6158 @item -fno-peephole
6159 @itemx -fno-peephole2
6160 @opindex fno-peephole
6161 @opindex fno-peephole2
6162 Disable any machine-specific peephole optimizations.  The difference
6163 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
6164 are implemented in the compiler; some targets use one, some use the
6165 other, a few use both.
6166
6167 @option{-fpeephole} is enabled by default.
6168 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6169
6170 @item -fno-guess-branch-probability
6171 @opindex fno-guess-branch-probability
6172 Do not guess branch probabilities using heuristics.
6173
6174 GCC will use heuristics to guess branch probabilities if they are
6175 not provided by profiling feedback (@option{-fprofile-arcs}).  These
6176 heuristics are based on the control flow graph.  If some branch probabilities
6177 are specified by @samp{__builtin_expect}, then the heuristics will be
6178 used to guess branch probabilities for the rest of the control flow graph,
6179 taking the @samp{__builtin_expect} info into account.  The interactions
6180 between the heuristics and @samp{__builtin_expect} can be complex, and in
6181 some cases, it may be useful to disable the heuristics so that the effects
6182 of @samp{__builtin_expect} are easier to understand.
6183
6184 The default is @option{-fguess-branch-probability} at levels
6185 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6186
6187 @item -freorder-blocks
6188 @opindex freorder-blocks
6189 Reorder basic blocks in the compiled function in order to reduce number of
6190 taken branches and improve code locality.
6191
6192 Enabled at levels @option{-O2}, @option{-O3}.
6193
6194 @item -freorder-blocks-and-partition
6195 @opindex freorder-blocks-and-partition
6196 In addition to reordering basic blocks in the compiled function, in order
6197 to reduce number of taken branches, partitions hot and cold basic blocks
6198 into separate sections of the assembly and .o files, to improve
6199 paging and cache locality performance.
6200
6201 This optimization is automatically turned off in the presence of
6202 exception handling, for linkonce sections, for functions with a user-defined
6203 section attribute and on any architecture that does not support named
6204 sections.
6205
6206 @item -freorder-functions
6207 @opindex freorder-functions
6208 Reorder functions in the object file in order to
6209 improve code locality.  This is implemented by using special
6210 subsections @code{.text.hot} for most frequently executed functions and
6211 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
6212 the linker so object file format must support named sections and linker must
6213 place them in a reasonable way.
6214
6215 Also profile feedback must be available in to make this option effective.  See
6216 @option{-fprofile-arcs} for details.
6217
6218 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6219
6220 @item -fstrict-aliasing
6221 @opindex fstrict-aliasing
6222 Allows the compiler to assume the strictest aliasing rules applicable to
6223 the language being compiled.  For C (and C++), this activates
6224 optimizations based on the type of expressions.  In particular, an
6225 object of one type is assumed never to reside at the same address as an
6226 object of a different type, unless the types are almost the same.  For
6227 example, an @code{unsigned int} can alias an @code{int}, but not a
6228 @code{void*} or a @code{double}.  A character type may alias any other
6229 type.
6230
6231 @anchor{Type-punning}Pay special attention to code like this:
6232 @smallexample
6233 union a_union @{
6234   int i;
6235   double d;
6236 @};
6237
6238 int f() @{
6239   a_union t;
6240   t.d = 3.0;
6241   return t.i;
6242 @}
6243 @end smallexample
6244 The practice of reading from a different union member than the one most
6245 recently written to (called ``type-punning'') is common.  Even with
6246 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
6247 is accessed through the union type.  So, the code above will work as
6248 expected.  @xref{Structures unions enumerations and bit-fields
6249 implementation}.  However, this code might not:
6250 @smallexample
6251 int f() @{
6252   a_union t;
6253   int* ip;
6254   t.d = 3.0;
6255   ip = &t.i;
6256   return *ip;
6257 @}
6258 @end smallexample
6259
6260 Similarly, access by taking the address, casting the resulting pointer
6261 and dereferencing the result has undefined behavior, even if the cast
6262 uses a union type, e.g.:
6263 @smallexample
6264 int f() @{
6265   double d = 3.0;
6266   return ((union a_union *) &d)->i;
6267 @}
6268 @end smallexample
6269
6270 The @option{-fstrict-aliasing} option is enabled at levels
6271 @option{-O2}, @option{-O3}, @option{-Os}.
6272
6273 @item -fstrict-overflow
6274 @opindex fstrict-overflow
6275 Allow the compiler to assume strict signed overflow rules, depending
6276 on the language being compiled.  For C (and C++) this means that
6277 overflow when doing arithmetic with signed numbers is undefined, which
6278 means that the compiler may assume that it will not happen.  This
6279 permits various optimizations.  For example, the compiler will assume
6280 that an expression like @code{i + 10 > i} will always be true for
6281 signed @code{i}.  This assumption is only valid if signed overflow is
6282 undefined, as the expression is false if @code{i + 10} overflows when
6283 using twos complement arithmetic.  When this option is in effect any
6284 attempt to determine whether an operation on signed numbers will
6285 overflow must be written carefully to not actually involve overflow.
6286
6287 This option also allows the compiler to assume strict pointer
6288 semantics: given a pointer to an object, if adding an offset to that
6289 pointer does not produce a pointer to the same object, the addition is
6290 undefined.  This permits the compiler to conclude that @code{p + u >
6291 p} is always true for a pointer @code{p} and unsigned integer
6292 @code{u}.  This assumption is only valid because pointer wraparound is
6293 undefined, as the expression is false if @code{p + u} overflows using
6294 twos complement arithmetic.
6295
6296 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
6297 that integer signed overflow is fully defined: it wraps.  When
6298 @option{-fwrapv} is used, there is no difference between
6299 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
6300 integers.  With @option{-fwrapv} certain types of overflow are
6301 permitted.  For example, if the compiler gets an overflow when doing
6302 arithmetic on constants, the overflowed value can still be used with
6303 @option{-fwrapv}, but not otherwise.
6304
6305 The @option{-fstrict-overflow} option is enabled at levels
6306 @option{-O2}, @option{-O3}, @option{-Os}.
6307
6308 @item -falign-functions
6309 @itemx -falign-functions=@var{n}
6310 @opindex falign-functions
6311 Align the start of functions to the next power-of-two greater than
6312 @var{n}, skipping up to @var{n} bytes.  For instance,
6313 @option{-falign-functions=32} aligns functions to the next 32-byte
6314 boundary, but @option{-falign-functions=24} would align to the next
6315 32-byte boundary only if this can be done by skipping 23 bytes or less.
6316
6317 @option{-fno-align-functions} and @option{-falign-functions=1} are
6318 equivalent and mean that functions will not be aligned.
6319
6320 Some assemblers only support this flag when @var{n} is a power of two;
6321 in that case, it is rounded up.
6322
6323 If @var{n} is not specified or is zero, use a machine-dependent default.
6324
6325 Enabled at levels @option{-O2}, @option{-O3}.
6326
6327 @item -falign-labels
6328 @itemx -falign-labels=@var{n}
6329 @opindex falign-labels
6330 Align all branch targets to a power-of-two boundary, skipping up to
6331 @var{n} bytes like @option{-falign-functions}.  This option can easily
6332 make code slower, because it must insert dummy operations for when the
6333 branch target is reached in the usual flow of the code.
6334
6335 @option{-fno-align-labels} and @option{-falign-labels=1} are
6336 equivalent and mean that labels will not be aligned.
6337
6338 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6339 are greater than this value, then their values are used instead.
6340
6341 If @var{n} is not specified or is zero, use a machine-dependent default
6342 which is very likely to be @samp{1}, meaning no alignment.
6343
6344 Enabled at levels @option{-O2}, @option{-O3}.
6345
6346 @item -falign-loops
6347 @itemx -falign-loops=@var{n}
6348 @opindex falign-loops
6349 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6350 like @option{-falign-functions}.  The hope is that the loop will be
6351 executed many times, which will make up for any execution of the dummy
6352 operations.
6353
6354 @option{-fno-align-loops} and @option{-falign-loops=1} are
6355 equivalent and mean that loops will not be aligned.
6356
6357 If @var{n} is not specified or is zero, use a machine-dependent default.
6358
6359 Enabled at levels @option{-O2}, @option{-O3}.
6360
6361 @item -falign-jumps
6362 @itemx -falign-jumps=@var{n}
6363 @opindex falign-jumps
6364 Align branch targets to a power-of-two boundary, for branch targets
6365 where the targets can only be reached by jumping, skipping up to @var{n}
6366 bytes like @option{-falign-functions}.  In this case, no dummy operations
6367 need be executed.
6368
6369 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6370 equivalent and mean that loops will not be aligned.
6371
6372 If @var{n} is not specified or is zero, use a machine-dependent default.
6373
6374 Enabled at levels @option{-O2}, @option{-O3}.
6375
6376 @item -funit-at-a-time
6377 @opindex funit-at-a-time
6378 This option is left for compatibility reasons. @option{-funit-at-a-time}
6379 has no effect, while @option{-fno-unit-at-a-time} implies
6380 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
6381
6382 Enabled by default.
6383
6384 @item -fno-toplevel-reorder
6385 @opindex fno-toplevel-reorder
6386 Do not reorder top-level functions, variables, and @code{asm}
6387 statements.  Output them in the same order that they appear in the
6388 input file.  When this option is used, unreferenced static variables
6389 will not be removed.  This option is intended to support existing code
6390 which relies on a particular ordering.  For new code, it is better to
6391 use attributes.
6392
6393 Enabled at level @option{-O0}.  When disabled explicitly, it also imply
6394 @option{-fno-section-anchors} that is otherwise enabled at @option{-O0} on some
6395 targets.
6396
6397 @item -fweb
6398 @opindex fweb
6399 Constructs webs as commonly used for register allocation purposes and assign
6400 each web individual pseudo register.  This allows the register allocation pass
6401 to operate on pseudos directly, but also strengthens several other optimization
6402 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6403 however, make debugging impossible, since variables will no longer stay in a
6404 ``home register''.
6405
6406 Enabled by default with @option{-funroll-loops}.
6407
6408 @item -fwhole-program
6409 @opindex fwhole-program
6410 Assume that the current compilation unit represents whole program being
6411 compiled.  All public functions and variables with the exception of @code{main}
6412 and those merged by attribute @code{externally_visible} become static functions
6413 and in a affect gets more aggressively optimized by interprocedural optimizers.
6414 While this option is equivalent to proper use of @code{static} keyword for
6415 programs consisting of single file, in combination with option
6416 @option{--combine} this flag can be used to compile most of smaller scale C
6417 programs since the functions and variables become local for the whole combined
6418 compilation unit, not for the single source file itself.
6419
6420 This option is not supported for Fortran programs.
6421
6422 @item -fcprop-registers
6423 @opindex fcprop-registers
6424 After register allocation and post-register allocation instruction splitting,
6425 we perform a copy-propagation pass to try to reduce scheduling dependencies
6426 and occasionally eliminate the copy.
6427
6428 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6429
6430 @item -fprofile-correction
6431 @opindex fprofile-correction
6432 Profiles collected using an instrumented binary for multi-threaded programs may
6433 be inconsistent due to missed counter updates. When this option is specified,
6434 GCC will use heuristics to correct or smooth out such inconsistencies. By
6435 default, GCC will emit an error message when an inconsistent profile is detected.
6436
6437 @item -fprofile-dir=@var{path}
6438 @opindex fprofile-dir
6439
6440 Set the directory to search the profile data files in to @var{path}.
6441 This option affects only the profile data generated by
6442 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
6443 and used by @option{-fprofile-use} and @option{-fbranch-probabilities} 
6444 and its related options.
6445 By default, GCC will use the current directory as @var{path}
6446 thus the profile data file will appear in the same directory as the object file.
6447
6448 @item -fprofile-generate
6449 @itemx -fprofile-generate=@var{path}
6450 @opindex fprofile-generate
6451
6452 Enable options usually used for instrumenting application to produce
6453 profile useful for later recompilation with profile feedback based
6454 optimization.  You must use @option{-fprofile-generate} both when
6455 compiling and when linking your program.
6456
6457 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6458
6459 If @var{path} is specified, GCC will look at the @var{path} to find
6460 the profile feeedback data files. See @option{-fprofile-dir}.
6461
6462 @item -fprofile-use
6463 @itemx -fprofile-use=@var{path}
6464 @opindex fprofile-use
6465 Enable profile feedback directed optimizations, and optimizations
6466 generally profitable only with profile feedback available.
6467
6468 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6469 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6470
6471 By default, GCC emits an error message if the feedback profiles do not
6472 match the source code.  This error can be turned into a warning by using
6473 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6474 code.
6475
6476 If @var{path} is specified, GCC will look at the @var{path} to find
6477 the profile feedback data files. See @option{-fprofile-dir}.
6478 @end table
6479
6480 The following options control compiler behavior regarding floating
6481 point arithmetic.  These options trade off between speed and
6482 correctness.  All must be specifically enabled.
6483
6484 @table @gcctabopt
6485 @item -ffloat-store
6486 @opindex ffloat-store
6487 Do not store floating point variables in registers, and inhibit other
6488 options that might change whether a floating point value is taken from a
6489 register or memory.
6490
6491 @cindex floating point precision
6492 This option prevents undesirable excess precision on machines such as
6493 the 68000 where the floating registers (of the 68881) keep more
6494 precision than a @code{double} is supposed to have.  Similarly for the
6495 x86 architecture.  For most programs, the excess precision does only
6496 good, but a few programs rely on the precise definition of IEEE floating
6497 point.  Use @option{-ffloat-store} for such programs, after modifying
6498 them to store all pertinent intermediate computations into variables.
6499
6500 @item -ffast-math
6501 @opindex ffast-math
6502 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
6503 @option{-ffinite-math-only}, @option{-fno-rounding-math},
6504 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
6505
6506 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6507
6508 This option is not turned on by any @option{-O} option since
6509 it can result in incorrect output for programs which depend on
6510 an exact implementation of IEEE or ISO rules/specifications for
6511 math functions. It may, however, yield faster code for programs
6512 that do not require the guarantees of these specifications.
6513
6514 @item -fno-math-errno
6515 @opindex fno-math-errno
6516 Do not set ERRNO after calling math functions that are executed
6517 with a single instruction, e.g., sqrt.  A program that relies on
6518 IEEE exceptions for math error handling may want to use this flag
6519 for speed while maintaining IEEE arithmetic compatibility.
6520
6521 This option is not turned on by any @option{-O} option since
6522 it can result in incorrect output for programs which depend on
6523 an exact implementation of IEEE or ISO rules/specifications for
6524 math functions. It may, however, yield faster code for programs
6525 that do not require the guarantees of these specifications.
6526
6527 The default is @option{-fmath-errno}.
6528
6529 On Darwin systems, the math library never sets @code{errno}.  There is
6530 therefore no reason for the compiler to consider the possibility that
6531 it might, and @option{-fno-math-errno} is the default.
6532
6533 @item -funsafe-math-optimizations
6534 @opindex funsafe-math-optimizations
6535
6536 Allow optimizations for floating-point arithmetic that (a) assume
6537 that arguments and results are valid and (b) may violate IEEE or
6538 ANSI standards.  When used at link-time, it may include libraries
6539 or startup files that change the default FPU control word or other
6540 similar optimizations.
6541
6542 This option is not turned on by any @option{-O} option since
6543 it can result in incorrect output for programs which depend on
6544 an exact implementation of IEEE or ISO rules/specifications for
6545 math functions. It may, however, yield faster code for programs
6546 that do not require the guarantees of these specifications.
6547 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
6548 @option{-fassociative-math} and @option{-freciprocal-math}.
6549
6550 The default is @option{-fno-unsafe-math-optimizations}.
6551
6552 @item -fassociative-math
6553 @opindex fassociative-math
6554
6555 Allow re-association of operands in series of floating-point operations.
6556 This violates the ISO C and C++ language standard by possibly changing
6557 computation result.  NOTE: re-ordering may change the sign of zero as
6558 well as ignore NaNs and inhibit or create underflow or overflow (and
6559 thus cannot be used on a code which relies on rounding behavior like
6560 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6561 and thus may not be used when ordered comparisons are required.
6562 This option requires that both @option{-fno-signed-zeros} and
6563 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
6564 much sense with @option{-frounding-math}.
6565
6566 The default is @option{-fno-associative-math}.
6567
6568 @item -freciprocal-math
6569 @opindex freciprocal-math
6570
6571 Allow the reciprocal of a value to be used instead of dividing by
6572 the value if this enables optimizations.  For example @code{x / y}
6573 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6574 is subject to common subexpression elimination.  Note that this loses
6575 precision and increases the number of flops operating on the value.
6576
6577 The default is @option{-fno-reciprocal-math}.
6578
6579 @item -ffinite-math-only
6580 @opindex ffinite-math-only
6581 Allow optimizations for floating-point arithmetic that assume
6582 that arguments and results are not NaNs or +-Infs.
6583
6584 This option is not turned on by any @option{-O} option since
6585 it can result in incorrect output for programs which depend on
6586 an exact implementation of IEEE or ISO rules/specifications for
6587 math functions. It may, however, yield faster code for programs
6588 that do not require the guarantees of these specifications.
6589
6590 The default is @option{-fno-finite-math-only}.
6591
6592 @item -fno-signed-zeros
6593 @opindex fno-signed-zeros
6594 Allow optimizations for floating point arithmetic that ignore the
6595 signedness of zero.  IEEE arithmetic specifies the behavior of
6596 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6597 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6598 This option implies that the sign of a zero result isn't significant.
6599
6600 The default is @option{-fsigned-zeros}.
6601
6602 @item -fno-trapping-math
6603 @opindex fno-trapping-math
6604 Compile code assuming that floating-point operations cannot generate
6605 user-visible traps.  These traps include division by zero, overflow,
6606 underflow, inexact result and invalid operation.  This option requires
6607 that @option{-fno-signaling-nans} be in effect.  Setting this option may
6608 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
6609
6610 This option should never be turned on by any @option{-O} option since
6611 it can result in incorrect output for programs which depend on
6612 an exact implementation of IEEE or ISO rules/specifications for
6613 math functions.
6614
6615 The default is @option{-ftrapping-math}.
6616
6617 @item -frounding-math
6618 @opindex frounding-math
6619 Disable transformations and optimizations that assume default floating
6620 point rounding behavior.  This is round-to-zero for all floating point
6621 to integer conversions, and round-to-nearest for all other arithmetic
6622 truncations.  This option should be specified for programs that change
6623 the FP rounding mode dynamically, or that may be executed with a
6624 non-default rounding mode.  This option disables constant folding of
6625 floating point expressions at compile-time (which may be affected by
6626 rounding mode) and arithmetic transformations that are unsafe in the
6627 presence of sign-dependent rounding modes.
6628
6629 The default is @option{-fno-rounding-math}.
6630
6631 This option is experimental and does not currently guarantee to
6632 disable all GCC optimizations that are affected by rounding mode.
6633 Future versions of GCC may provide finer control of this setting
6634 using C99's @code{FENV_ACCESS} pragma.  This command line option
6635 will be used to specify the default state for @code{FENV_ACCESS}.
6636
6637 @item -frtl-abstract-sequences
6638 @opindex frtl-abstract-sequences
6639 It is a size optimization method. This option is to find identical
6640 sequences of code, which can be turned into pseudo-procedures  and
6641 then  replace  all  occurrences with  calls to  the  newly created
6642 subroutine. It is kind of an opposite of @option{-finline-functions}.
6643 This optimization runs at RTL level.
6644
6645 @item -fsignaling-nans
6646 @opindex fsignaling-nans
6647 Compile code assuming that IEEE signaling NaNs may generate user-visible
6648 traps during floating-point operations.  Setting this option disables
6649 optimizations that may change the number of exceptions visible with
6650 signaling NaNs.  This option implies @option{-ftrapping-math}.
6651
6652 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6653 be defined.
6654
6655 The default is @option{-fno-signaling-nans}.
6656
6657 This option is experimental and does not currently guarantee to
6658 disable all GCC optimizations that affect signaling NaN behavior.
6659
6660 @item -fsingle-precision-constant
6661 @opindex fsingle-precision-constant
6662 Treat floating point constant as single precision constant instead of
6663 implicitly converting it to double precision constant.
6664
6665 @item -fcx-limited-range
6666 @opindex fcx-limited-range
6667 When enabled, this option states that a range reduction step is not
6668 needed when performing complex division.  Also, there is no checking
6669 whether the result of a complex multiplication or division is @code{NaN
6670 + I*NaN}, with an attempt to rescue the situation in that case.  The
6671 default is @option{-fno-cx-limited-range}, but is enabled by
6672 @option{-ffast-math}.
6673
6674 This option controls the default setting of the ISO C99
6675 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6676 all languages.
6677
6678 @item -fcx-fortran-rules
6679 @opindex fcx-fortran-rules
6680 Complex multiplication and division follow Fortran rules.  Range
6681 reduction is done as part of complex division, but there is no checking
6682 whether the result of a complex multiplication or division is @code{NaN
6683 + I*NaN}, with an attempt to rescue the situation in that case.
6684
6685 The default is @option{-fno-cx-fortran-rules}.
6686
6687 @end table
6688
6689 The following options control optimizations that may improve
6690 performance, but are not enabled by any @option{-O} options.  This
6691 section includes experimental options that may produce broken code.
6692
6693 @table @gcctabopt
6694 @item -fbranch-probabilities
6695 @opindex fbranch-probabilities
6696 After running a program compiled with @option{-fprofile-arcs}
6697 (@pxref{Debugging Options,, Options for Debugging Your Program or
6698 @command{gcc}}), you can compile it a second time using
6699 @option{-fbranch-probabilities}, to improve optimizations based on
6700 the number of times each branch was taken.  When the program
6701 compiled with @option{-fprofile-arcs} exits it saves arc execution
6702 counts to a file called @file{@var{sourcename}.gcda} for each source
6703 file.  The information in this data file is very dependent on the
6704 structure of the generated code, so you must use the same source code
6705 and the same optimization options for both compilations.
6706
6707 With @option{-fbranch-probabilities}, GCC puts a
6708 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6709 These can be used to improve optimization.  Currently, they are only
6710 used in one place: in @file{reorg.c}, instead of guessing which path a
6711 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6712 exactly determine which path is taken more often.
6713
6714 @item -fprofile-values
6715 @opindex fprofile-values
6716 If combined with @option{-fprofile-arcs}, it adds code so that some
6717 data about values of expressions in the program is gathered.
6718
6719 With @option{-fbranch-probabilities}, it reads back the data gathered
6720 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6721 notes to instructions for their later usage in optimizations.
6722
6723 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6724
6725 @item -fvpt
6726 @opindex fvpt
6727 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6728 a code to gather information about values of expressions.
6729
6730 With @option{-fbranch-probabilities}, it reads back the data gathered
6731 and actually performs the optimizations based on them.
6732 Currently the optimizations include specialization of division operation
6733 using the knowledge about the value of the denominator.
6734
6735 @item -frename-registers
6736 @opindex frename-registers
6737 Attempt to avoid false dependencies in scheduled code by making use
6738 of registers left over after register allocation.  This optimization
6739 will most benefit processors with lots of registers.  Depending on the
6740 debug information format adopted by the target, however, it can
6741 make debugging impossible, since variables will no longer stay in
6742 a ``home register''.
6743
6744 Enabled by default with @option{-funroll-loops}.
6745
6746 @item -ftracer
6747 @opindex ftracer
6748 Perform tail duplication to enlarge superblock size.  This transformation
6749 simplifies the control flow of the function allowing other optimizations to do
6750 better job.
6751
6752 Enabled with @option{-fprofile-use}.
6753
6754 @item -funroll-loops
6755 @opindex funroll-loops
6756 Unroll loops whose number of iterations can be determined at compile time or
6757 upon entry to the loop.  @option{-funroll-loops} implies
6758 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6759 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6760 small constant number of iterations).  This option makes code larger, and may
6761 or may not make it run faster.
6762
6763 Enabled with @option{-fprofile-use}.
6764
6765 @item -funroll-all-loops
6766 @opindex funroll-all-loops
6767 Unroll all loops, even if their number of iterations is uncertain when
6768 the loop is entered.  This usually makes programs run more slowly.
6769 @option{-funroll-all-loops} implies the same options as
6770 @option{-funroll-loops}.
6771
6772 @item -fpeel-loops
6773 @opindex fpeel-loops
6774 Peels the loops for that there is enough information that they do not
6775 roll much (from profile feedback).  It also turns on complete loop peeling
6776 (i.e.@: complete removal of loops with small constant number of iterations).
6777
6778 Enabled with @option{-fprofile-use}.
6779
6780 @item -fmove-loop-invariants
6781 @opindex fmove-loop-invariants
6782 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6783 at level @option{-O1}
6784
6785 @item -funswitch-loops
6786 @opindex funswitch-loops
6787 Move branches with loop invariant conditions out of the loop, with duplicates
6788 of the loop on both branches (modified according to result of the condition).
6789
6790 @item -ffunction-sections
6791 @itemx -fdata-sections
6792 @opindex ffunction-sections
6793 @opindex fdata-sections
6794 Place each function or data item into its own section in the output
6795 file if the target supports arbitrary sections.  The name of the
6796 function or the name of the data item determines the section's name
6797 in the output file.
6798
6799 Use these options on systems where the linker can perform optimizations
6800 to improve locality of reference in the instruction space.  Most systems
6801 using the ELF object format and SPARC processors running Solaris 2 have
6802 linkers with such optimizations.  AIX may have these optimizations in
6803 the future.
6804
6805 Only use these options when there are significant benefits from doing
6806 so.  When you specify these options, the assembler and linker will
6807 create larger object and executable files and will also be slower.
6808 You will not be able to use @code{gprof} on all systems if you
6809 specify this option and you may have problems with debugging if
6810 you specify both this option and @option{-g}.
6811
6812 @item -fbranch-target-load-optimize
6813 @opindex fbranch-target-load-optimize
6814 Perform branch target register load optimization before prologue / epilogue
6815 threading.
6816 The use of target registers can typically be exposed only during reload,
6817 thus hoisting loads out of loops and doing inter-block scheduling needs
6818 a separate optimization pass.
6819
6820 @item -fbranch-target-load-optimize2
6821 @opindex fbranch-target-load-optimize2
6822 Perform branch target register load optimization after prologue / epilogue
6823 threading.
6824
6825 @item -fbtr-bb-exclusive
6826 @opindex fbtr-bb-exclusive
6827 When performing branch target register load optimization, don't reuse
6828 branch target registers in within any basic block.
6829
6830 @item -fstack-protector
6831 @opindex fstack-protector
6832 Emit extra code to check for buffer overflows, such as stack smashing
6833 attacks.  This is done by adding a guard variable to functions with
6834 vulnerable objects.  This includes functions that call alloca, and
6835 functions with buffers larger than 8 bytes.  The guards are initialized
6836 when a function is entered and then checked when the function exits.
6837 If a guard check fails, an error message is printed and the program exits.
6838
6839 @item -fstack-protector-all
6840 @opindex fstack-protector-all
6841 Like @option{-fstack-protector} except that all functions are protected.
6842
6843 @item -fsection-anchors
6844 @opindex fsection-anchors
6845 Try to reduce the number of symbolic address calculations by using
6846 shared ``anchor'' symbols to address nearby objects.  This transformation
6847 can help to reduce the number of GOT entries and GOT accesses on some
6848 targets.
6849
6850 For example, the implementation of the following function @code{foo}:
6851
6852 @smallexample
6853 static int a, b, c;
6854 int foo (void) @{ return a + b + c; @}
6855 @end smallexample
6856
6857 would usually calculate the addresses of all three variables, but if you
6858 compile it with @option{-fsection-anchors}, it will access the variables
6859 from a common anchor point instead.  The effect is similar to the
6860 following pseudocode (which isn't valid C):
6861
6862 @smallexample
6863 int foo (void)
6864 @{
6865   register int *xr = &x;
6866   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6867 @}
6868 @end smallexample
6869
6870 Not all targets support this option.
6871
6872 @item --param @var{name}=@var{value}
6873 @opindex param
6874 In some places, GCC uses various constants to control the amount of
6875 optimization that is done.  For example, GCC will not inline functions
6876 that contain more that a certain number of instructions.  You can
6877 control some of these constants on the command-line using the
6878 @option{--param} option.
6879
6880 The names of specific parameters, and the meaning of the values, are
6881 tied to the internals of the compiler, and are subject to change
6882 without notice in future releases.
6883
6884 In each case, the @var{value} is an integer.  The allowable choices for
6885 @var{name} are given in the following table:
6886
6887 @table @gcctabopt
6888 @item sra-max-structure-size
6889 The maximum structure size, in bytes, at which the scalar replacement
6890 of aggregates (SRA) optimization will perform block copies.  The
6891 default value, 0, implies that GCC will select the most appropriate
6892 size itself.
6893
6894 @item sra-field-structure-ratio
6895 The threshold ratio (as a percentage) between instantiated fields and
6896 the complete structure size.  We say that if the ratio of the number
6897 of bytes in instantiated fields to the number of bytes in the complete
6898 structure exceeds this parameter, then block copies are not used.  The
6899 default is 75.
6900
6901 @item struct-reorg-cold-struct-ratio
6902 The threshold ratio (as a percentage) between a structure frequency
6903 and the frequency of the hottest structure in the program.  This parameter
6904 is used by struct-reorg optimization enabled by @option{-fipa-struct-reorg}.
6905 We say that if the ratio of a structure frequency, calculated by profiling, 
6906 to the hottest structure frequency in the program is less than this 
6907 parameter, then structure reorganization is not applied to this structure.
6908 The default is 10.
6909
6910 @item max-crossjump-edges
6911 The maximum number of incoming edges to consider for crossjumping.
6912 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6913 the number of edges incoming to each block.  Increasing values mean
6914 more aggressive optimization, making the compile time increase with
6915 probably small improvement in executable size.
6916
6917 @item min-crossjump-insns
6918 The minimum number of instructions which must be matched at the end
6919 of two blocks before crossjumping will be performed on them.  This
6920 value is ignored in the case where all instructions in the block being
6921 crossjumped from are matched.  The default value is 5.
6922
6923 @item max-grow-copy-bb-insns
6924 The maximum code size expansion factor when copying basic blocks
6925 instead of jumping.  The expansion is relative to a jump instruction.
6926 The default value is 8.
6927
6928 @item max-goto-duplication-insns
6929 The maximum number of instructions to duplicate to a block that jumps
6930 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6931 passes, GCC factors computed gotos early in the compilation process,
6932 and unfactors them as late as possible.  Only computed jumps at the
6933 end of a basic blocks with no more than max-goto-duplication-insns are
6934 unfactored.  The default value is 8.
6935
6936 @item max-delay-slot-insn-search
6937 The maximum number of instructions to consider when looking for an
6938 instruction to fill a delay slot.  If more than this arbitrary number of
6939 instructions is searched, the time savings from filling the delay slot
6940 will be minimal so stop searching.  Increasing values mean more
6941 aggressive optimization, making the compile time increase with probably
6942 small improvement in executable run time.
6943
6944 @item max-delay-slot-live-search
6945 When trying to fill delay slots, the maximum number of instructions to
6946 consider when searching for a block with valid live register
6947 information.  Increasing this arbitrarily chosen value means more
6948 aggressive optimization, increasing the compile time.  This parameter
6949 should be removed when the delay slot code is rewritten to maintain the
6950 control-flow graph.
6951
6952 @item max-gcse-memory
6953 The approximate maximum amount of memory that will be allocated in
6954 order to perform the global common subexpression elimination
6955 optimization.  If more memory than specified is required, the
6956 optimization will not be done.
6957
6958 @item max-gcse-passes
6959 The maximum number of passes of GCSE to run.  The default is 1.
6960
6961 @item max-pending-list-length
6962 The maximum number of pending dependencies scheduling will allow
6963 before flushing the current state and starting over.  Large functions
6964 with few branches or calls can create excessively large lists which
6965 needlessly consume memory and resources.
6966
6967 @item max-inline-insns-single
6968 Several parameters control the tree inliner used in gcc.
6969 This number sets the maximum number of instructions (counted in GCC's
6970 internal representation) in a single function that the tree inliner
6971 will consider for inlining.  This only affects functions declared
6972 inline and methods implemented in a class declaration (C++).
6973 The default value is 450.
6974
6975 @item max-inline-insns-auto
6976 When you use @option{-finline-functions} (included in @option{-O3}),
6977 a lot of functions that would otherwise not be considered for inlining
6978 by the compiler will be investigated.  To those functions, a different
6979 (more restrictive) limit compared to functions declared inline can
6980 be applied.
6981 The default value is 90.
6982
6983 @item large-function-insns
6984 The limit specifying really large functions.  For functions larger than this
6985 limit after inlining inlining is constrained by
6986 @option{--param large-function-growth}.  This parameter is useful primarily
6987 to avoid extreme compilation time caused by non-linear algorithms used by the
6988 backend.
6989 The default value is 2700.
6990
6991 @item large-function-growth
6992 Specifies maximal growth of large function caused by inlining in percents.
6993 The default value is 100 which limits large function growth to 2.0 times
6994 the original size.
6995
6996 @item large-unit-insns
6997 The limit specifying large translation unit.  Growth caused by inlining of
6998 units larger than this limit is limited by @option{--param inline-unit-growth}.
6999 For small units this might be too tight (consider unit consisting of function A
7000 that is inline and B that just calls A three time.  If B is small relative to
7001 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
7002 large units consisting of small inlineable functions however the overall unit
7003 growth limit is needed to avoid exponential explosion of code size.  Thus for
7004 smaller units, the size is increased to @option{--param large-unit-insns}
7005 before applying @option{--param inline-unit-growth}.  The default is 10000
7006
7007 @item inline-unit-growth
7008 Specifies maximal overall growth of the compilation unit caused by inlining.
7009 The default value is 30 which limits unit growth to 1.3 times the original
7010 size.
7011
7012 @item ipcp-unit-growth
7013 Specifies maximal overall growth of the compilation unit caused by
7014 interprocedural constant propagation.  The default value is 10 which limits
7015 unit growth to 1.1 times the original size.
7016
7017 @item large-stack-frame
7018 The limit specifying large stack frames.  While inlining the algorithm is trying
7019 to not grow past this limit too much.  Default value is 256 bytes.
7020
7021 @item large-stack-frame-growth
7022 Specifies maximal growth of large stack frames caused by inlining in percents.
7023 The default value is 1000 which limits large stack frame growth to 11 times
7024 the original size.
7025
7026 @item max-inline-insns-recursive
7027 @itemx max-inline-insns-recursive-auto
7028 Specifies maximum number of instructions out-of-line copy of self recursive inline
7029 function can grow into by performing recursive inlining.
7030
7031 For functions declared inline @option{--param max-inline-insns-recursive} is
7032 taken into account.  For function not declared inline, recursive inlining
7033 happens only when @option{-finline-functions} (included in @option{-O3}) is
7034 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
7035 default value is 450.
7036
7037 @item max-inline-recursive-depth
7038 @itemx max-inline-recursive-depth-auto
7039 Specifies maximum recursion depth used by the recursive inlining.
7040
7041 For functions declared inline @option{--param max-inline-recursive-depth} is
7042 taken into account.  For function not declared inline, recursive inlining
7043 happens only when @option{-finline-functions} (included in @option{-O3}) is
7044 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
7045 default value is 8.
7046
7047 @item min-inline-recursive-probability
7048 Recursive inlining is profitable only for function having deep recursion
7049 in average and can hurt for function having little recursion depth by
7050 increasing the prologue size or complexity of function body to other
7051 optimizers.
7052
7053 When profile feedback is available (see @option{-fprofile-generate}) the actual
7054 recursion depth can be guessed from probability that function will recurse via
7055 given call expression.  This parameter limits inlining only to call expression
7056 whose probability exceeds given threshold (in percents).  The default value is
7057 10.
7058
7059 @item inline-call-cost
7060 Specify cost of call instruction relative to simple arithmetics operations
7061 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
7062 functions and at the same time increases size of leaf function that is believed to
7063 reduce function size by being inlined.  In effect it increases amount of
7064 inlining for code having large abstraction penalty (many functions that just
7065 pass the arguments to other functions) and decrease inlining for code with low
7066 abstraction penalty.  The default value is 12.
7067
7068 @item min-vect-loop-bound
7069 The minimum number of iterations under which a loop will not get vectorized
7070 when @option{-ftree-vectorize} is used.  The number of iterations after
7071 vectorization needs to be greater than the value specified by this option
7072 to allow vectorization.  The default value is 0.
7073
7074 @item max-unrolled-insns
7075 The maximum number of instructions that a loop should have if that loop
7076 is unrolled, and if the loop is unrolled, it determines how many times
7077 the loop code is unrolled.
7078
7079 @item max-average-unrolled-insns
7080 The maximum number of instructions biased by probabilities of their execution
7081 that a loop should have if that loop is unrolled, and if the loop is unrolled,
7082 it determines how many times the loop code is unrolled.
7083
7084 @item max-unroll-times
7085 The maximum number of unrollings of a single loop.
7086
7087 @item max-peeled-insns
7088 The maximum number of instructions that a loop should have if that loop
7089 is peeled, and if the loop is peeled, it determines how many times
7090 the loop code is peeled.
7091
7092 @item max-peel-times
7093 The maximum number of peelings of a single loop.
7094
7095 @item max-completely-peeled-insns
7096 The maximum number of insns of a completely peeled loop.
7097
7098 @item max-completely-peel-times
7099 The maximum number of iterations of a loop to be suitable for complete peeling.
7100
7101 @item max-unswitch-insns
7102 The maximum number of insns of an unswitched loop.
7103
7104 @item max-unswitch-level
7105 The maximum number of branches unswitched in a single loop.
7106
7107 @item lim-expensive
7108 The minimum cost of an expensive expression in the loop invariant motion.
7109
7110 @item iv-consider-all-candidates-bound
7111 Bound on number of candidates for induction variables below that
7112 all candidates are considered for each use in induction variable
7113 optimizations.  Only the most relevant candidates are considered
7114 if there are more candidates, to avoid quadratic time complexity.
7115
7116 @item iv-max-considered-uses
7117 The induction variable optimizations give up on loops that contain more
7118 induction variable uses.
7119
7120 @item iv-always-prune-cand-set-bound
7121 If number of candidates in the set is smaller than this value,
7122 we always try to remove unnecessary ivs from the set during its
7123 optimization when a new iv is added to the set.
7124
7125 @item scev-max-expr-size
7126 Bound on size of expressions used in the scalar evolutions analyzer.
7127 Large expressions slow the analyzer.
7128
7129 @item omega-max-vars
7130 The maximum number of variables in an Omega constraint system.
7131 The default value is 128.
7132
7133 @item omega-max-geqs
7134 The maximum number of inequalities in an Omega constraint system.
7135 The default value is 256.
7136
7137 @item omega-max-eqs
7138 The maximum number of equalities in an Omega constraint system.
7139 The default value is 128.
7140
7141 @item omega-max-wild-cards
7142 The maximum number of wildcard variables that the Omega solver will
7143 be able to insert.  The default value is 18.
7144
7145 @item omega-hash-table-size
7146 The size of the hash table in the Omega solver.  The default value is
7147 550.
7148
7149 @item omega-max-keys
7150 The maximal number of keys used by the Omega solver.  The default
7151 value is 500.
7152
7153 @item omega-eliminate-redundant-constraints
7154 When set to 1, use expensive methods to eliminate all redundant
7155 constraints.  The default value is 0.
7156
7157 @item vect-max-version-for-alignment-checks
7158 The maximum number of runtime checks that can be performed when
7159 doing loop versioning for alignment in the vectorizer.  See option
7160 ftree-vect-loop-version for more information.
7161
7162 @item vect-max-version-for-alias-checks
7163 The maximum number of runtime checks that can be performed when
7164 doing loop versioning for alias in the vectorizer.  See option
7165 ftree-vect-loop-version for more information.
7166
7167 @item max-iterations-to-track
7168
7169 The maximum number of iterations of a loop the brute force algorithm
7170 for analysis of # of iterations of the loop tries to evaluate.
7171
7172 @item hot-bb-count-fraction
7173 Select fraction of the maximal count of repetitions of basic block in program
7174 given basic block needs to have to be considered hot.
7175
7176 @item hot-bb-frequency-fraction
7177 Select fraction of the maximal frequency of executions of basic block in
7178 function given basic block needs to have to be considered hot
7179
7180 @item max-predicted-iterations
7181 The maximum number of loop iterations we predict statically.  This is useful
7182 in cases where function contain single loop with known bound and other loop
7183 with unknown.  We predict the known number of iterations correctly, while
7184 the unknown number of iterations average to roughly 10.  This means that the
7185 loop without bounds would appear artificially cold relative to the other one.
7186
7187 @item align-threshold
7188
7189 Select fraction of the maximal frequency of executions of basic block in
7190 function given basic block will get aligned.
7191
7192 @item align-loop-iterations
7193
7194 A loop expected to iterate at lest the selected number of iterations will get
7195 aligned.
7196
7197 @item tracer-dynamic-coverage
7198 @itemx tracer-dynamic-coverage-feedback
7199
7200 This value is used to limit superblock formation once the given percentage of
7201 executed instructions is covered.  This limits unnecessary code size
7202 expansion.
7203
7204 The @option{tracer-dynamic-coverage-feedback} is used only when profile
7205 feedback is available.  The real profiles (as opposed to statically estimated
7206 ones) are much less balanced allowing the threshold to be larger value.
7207
7208 @item tracer-max-code-growth
7209 Stop tail duplication once code growth has reached given percentage.  This is
7210 rather hokey argument, as most of the duplicates will be eliminated later in
7211 cross jumping, so it may be set to much higher values than is the desired code
7212 growth.
7213
7214 @item tracer-min-branch-ratio
7215
7216 Stop reverse growth when the reverse probability of best edge is less than this
7217 threshold (in percent).
7218
7219 @item tracer-min-branch-ratio
7220 @itemx tracer-min-branch-ratio-feedback
7221
7222 Stop forward growth if the best edge do have probability lower than this
7223 threshold.
7224
7225 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
7226 compilation for profile feedback and one for compilation without.  The value
7227 for compilation with profile feedback needs to be more conservative (higher) in
7228 order to make tracer effective.
7229
7230 @item max-cse-path-length
7231
7232 Maximum number of basic blocks on path that cse considers.  The default is 10.
7233
7234 @item max-cse-insns
7235 The maximum instructions CSE process before flushing. The default is 1000.
7236
7237 @item max-aliased-vops
7238
7239 Maximum number of virtual operands per function allowed to represent
7240 aliases before triggering the alias partitioning heuristic.  Alias
7241 partitioning reduces compile times and memory consumption needed for
7242 aliasing at the expense of precision loss in alias information.  The
7243 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
7244 for -O3.
7245
7246 Notice that if a function contains more memory statements than the
7247 value of this parameter, it is not really possible to achieve this
7248 reduction.  In this case, the compiler will use the number of memory
7249 statements as the value for @option{max-aliased-vops}.
7250
7251 @item avg-aliased-vops
7252
7253 Average number of virtual operands per statement allowed to represent
7254 aliases before triggering the alias partitioning heuristic.  This
7255 works in conjunction with @option{max-aliased-vops}.  If a function
7256 contains more than @option{max-aliased-vops} virtual operators, then
7257 memory symbols will be grouped into memory partitions until either the
7258 total number of virtual operators is below @option{max-aliased-vops}
7259 or the average number of virtual operators per memory statement is
7260 below @option{avg-aliased-vops}.  The default value for this parameter
7261 is 1 for -O1 and -O2, and 3 for -O3.
7262
7263 @item ggc-min-expand
7264
7265 GCC uses a garbage collector to manage its own memory allocation.  This
7266 parameter specifies the minimum percentage by which the garbage
7267 collector's heap should be allowed to expand between collections.
7268 Tuning this may improve compilation speed; it has no effect on code
7269 generation.
7270
7271 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
7272 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
7273 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
7274 GCC is not able to calculate RAM on a particular platform, the lower
7275 bound of 30% is used.  Setting this parameter and
7276 @option{ggc-min-heapsize} to zero causes a full collection to occur at
7277 every opportunity.  This is extremely slow, but can be useful for
7278 debugging.
7279
7280 @item ggc-min-heapsize
7281
7282 Minimum size of the garbage collector's heap before it begins bothering
7283 to collect garbage.  The first collection occurs after the heap expands
7284 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
7285 tuning this may improve compilation speed, and has no effect on code
7286 generation.
7287
7288 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
7289 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
7290 with a lower bound of 4096 (four megabytes) and an upper bound of
7291 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
7292 particular platform, the lower bound is used.  Setting this parameter
7293 very large effectively disables garbage collection.  Setting this
7294 parameter and @option{ggc-min-expand} to zero causes a full collection
7295 to occur at every opportunity.
7296
7297 @item max-reload-search-insns
7298 The maximum number of instruction reload should look backward for equivalent
7299 register.  Increasing values mean more aggressive optimization, making the
7300 compile time increase with probably slightly better performance.  The default
7301 value is 100.
7302
7303 @item max-cselib-memory-locations
7304 The maximum number of memory locations cselib should take into account.
7305 Increasing values mean more aggressive optimization, making the compile time
7306 increase with probably slightly better performance.  The default value is 500.
7307
7308 @item reorder-blocks-duplicate
7309 @itemx reorder-blocks-duplicate-feedback
7310
7311 Used by basic block reordering pass to decide whether to use unconditional
7312 branch or duplicate the code on its destination.  Code is duplicated when its
7313 estimated size is smaller than this value multiplied by the estimated size of
7314 unconditional jump in the hot spots of the program.
7315
7316 The @option{reorder-block-duplicate-feedback} is used only when profile
7317 feedback is available and may be set to higher values than
7318 @option{reorder-block-duplicate} since information about the hot spots is more
7319 accurate.
7320
7321 @item max-sched-ready-insns
7322 The maximum number of instructions ready to be issued the scheduler should
7323 consider at any given time during the first scheduling pass.  Increasing
7324 values mean more thorough searches, making the compilation time increase
7325 with probably little benefit.  The default value is 100.
7326
7327 @item max-sched-region-blocks
7328 The maximum number of blocks in a region to be considered for
7329 interblock scheduling.  The default value is 10.
7330
7331 @item max-sched-region-insns
7332 The maximum number of insns in a region to be considered for
7333 interblock scheduling.  The default value is 100.
7334
7335 @item min-spec-prob
7336 The minimum probability (in percents) of reaching a source block
7337 for interblock speculative scheduling.  The default value is 40.
7338
7339 @item max-sched-extend-regions-iters
7340 The maximum number of iterations through CFG to extend regions.
7341 0 - disable region extension,
7342 N - do at most N iterations.
7343 The default value is 0.
7344
7345 @item max-sched-insn-conflict-delay
7346 The maximum conflict delay for an insn to be considered for speculative motion.
7347 The default value is 3.
7348
7349 @item sched-spec-prob-cutoff
7350 The minimal probability of speculation success (in percents), so that
7351 speculative insn will be scheduled.
7352 The default value is 40.
7353
7354 @item max-last-value-rtl
7355
7356 The maximum size measured as number of RTLs that can be recorded in an expression
7357 in combiner for a pseudo register as last known value of that register.  The default
7358 is 10000.
7359
7360 @item integer-share-limit
7361 Small integer constants can use a shared data structure, reducing the
7362 compiler's memory usage and increasing its speed.  This sets the maximum
7363 value of a shared integer constant.  The default value is 256.
7364
7365 @item min-virtual-mappings
7366 Specifies the minimum number of virtual mappings in the incremental
7367 SSA updater that should be registered to trigger the virtual mappings
7368 heuristic defined by virtual-mappings-ratio.  The default value is
7369 100.
7370
7371 @item virtual-mappings-ratio
7372 If the number of virtual mappings is virtual-mappings-ratio bigger
7373 than the number of virtual symbols to be updated, then the incremental
7374 SSA updater switches to a full update for those symbols.  The default
7375 ratio is 3.
7376
7377 @item ssp-buffer-size
7378 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
7379 protection when @option{-fstack-protection} is used.
7380
7381 @item max-jump-thread-duplication-stmts
7382 Maximum number of statements allowed in a block that needs to be
7383 duplicated when threading jumps.
7384
7385 @item max-fields-for-field-sensitive
7386 Maximum number of fields in a structure we will treat in
7387 a field sensitive manner during pointer analysis.  The default is zero
7388 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
7389
7390 @item prefetch-latency
7391 Estimate on average number of instructions that are executed before
7392 prefetch finishes.  The distance we prefetch ahead is proportional
7393 to this constant.  Increasing this number may also lead to less
7394 streams being prefetched (see @option{simultaneous-prefetches}).
7395
7396 @item simultaneous-prefetches
7397 Maximum number of prefetches that can run at the same time.
7398
7399 @item l1-cache-line-size
7400 The size of cache line in L1 cache, in bytes.
7401
7402 @item l1-cache-size
7403 The size of L1 cache, in kilobytes.
7404
7405 @item l2-cache-size
7406 The size of L2 cache, in kilobytes.
7407
7408 @item use-canonical-types
7409 Whether the compiler should use the ``canonical'' type system.  By
7410 default, this should always be 1, which uses a more efficient internal
7411 mechanism for comparing types in C++ and Objective-C++.  However, if
7412 bugs in the canonical type system are causing compilation failures,
7413 set this value to 0 to disable canonical types.
7414
7415 @item switch-conversion-max-branch-ratio
7416 Switch initialization conversion will refuse to create arrays that are
7417 bigger than @option{switch-conversion-max-branch-ratio} times the number of
7418 branches in the switch.
7419
7420 @item max-partial-antic-length
7421 Maximum length of the partial antic set computed during the tree
7422 partial redundancy elimination optimization (@option{-ftree-pre}) when
7423 optimizing at @option{-O3} and above.  For some sorts of source code
7424 the enhanced partial redundancy elimination optimization can run away,
7425 consuming all of the memory available on the host machine.  This
7426 parameter sets a limit on the length of the sets that are computed,
7427 which prevents the runaway behaviour.  Setting a value of 0 for
7428 this paramter will allow an unlimited set length.
7429
7430 @item sccvn-max-scc-size
7431 Maximum size of a strongly connected component (SCC) during SCCVN
7432 processing.  If this limit is hit, SCCVN processing for the whole
7433 function will not be done and optimizations depending on it will
7434 be disabled.  The default maximum SCC size is 10000.
7435
7436 @item ira-max-loops-num
7437 IRA uses a regional register allocation by default.  If a function
7438 contains loops more than number given by the parameter, non-regional
7439 register allocator will be used even when option
7440 @option{-fira-algorithm} is given.  The default value of the parameter
7441 is 20.
7442
7443 @end table
7444 @end table
7445
7446 @node Preprocessor Options
7447 @section Options Controlling the Preprocessor
7448 @cindex preprocessor options
7449 @cindex options, preprocessor
7450
7451 These options control the C preprocessor, which is run on each C source
7452 file before actual compilation.
7453
7454 If you use the @option{-E} option, nothing is done except preprocessing.
7455 Some of these options make sense only together with @option{-E} because
7456 they cause the preprocessor output to be unsuitable for actual
7457 compilation.
7458
7459 @table @gcctabopt
7460 @opindex Wp
7461 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7462 and pass @var{option} directly through to the preprocessor.  If
7463 @var{option} contains commas, it is split into multiple options at the
7464 commas.  However, many options are modified, translated or interpreted
7465 by the compiler driver before being passed to the preprocessor, and
7466 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7467 interface is undocumented and subject to change, so whenever possible
7468 you should avoid using @option{-Wp} and let the driver handle the
7469 options instead.
7470
7471 @item -Xpreprocessor @var{option}
7472 @opindex preprocessor
7473 Pass @var{option} as an option to the preprocessor.  You can use this to
7474 supply system-specific preprocessor options which GCC does not know how to
7475 recognize.
7476
7477 If you want to pass an option that takes an argument, you must use
7478 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7479 @end table
7480
7481 @include cppopts.texi
7482
7483 @node Assembler Options
7484 @section Passing Options to the Assembler
7485
7486 @c prevent bad page break with this line
7487 You can pass options to the assembler.
7488
7489 @table @gcctabopt
7490 @item -Wa,@var{option}
7491 @opindex Wa
7492 Pass @var{option} as an option to the assembler.  If @var{option}
7493 contains commas, it is split into multiple options at the commas.
7494
7495 @item -Xassembler @var{option}
7496 @opindex Xassembler
7497 Pass @var{option} as an option to the assembler.  You can use this to
7498 supply system-specific assembler options which GCC does not know how to
7499 recognize.
7500
7501 If you want to pass an option that takes an argument, you must use
7502 @option{-Xassembler} twice, once for the option and once for the argument.
7503
7504 @end table
7505
7506 @node Link Options
7507 @section Options for Linking
7508 @cindex link options
7509 @cindex options, linking
7510
7511 These options come into play when the compiler links object files into
7512 an executable output file.  They are meaningless if the compiler is
7513 not doing a link step.
7514
7515 @table @gcctabopt
7516 @cindex file names
7517 @item @var{object-file-name}
7518 A file name that does not end in a special recognized suffix is
7519 considered to name an object file or library.  (Object files are
7520 distinguished from libraries by the linker according to the file
7521 contents.)  If linking is done, these object files are used as input
7522 to the linker.
7523
7524 @item -c
7525 @itemx -S
7526 @itemx -E
7527 @opindex c
7528 @opindex S
7529 @opindex E
7530 If any of these options is used, then the linker is not run, and
7531 object file names should not be used as arguments.  @xref{Overall
7532 Options}.
7533
7534 @cindex Libraries
7535 @item -l@var{library}
7536 @itemx -l @var{library}
7537 @opindex l
7538 Search the library named @var{library} when linking.  (The second
7539 alternative with the library as a separate argument is only for
7540 POSIX compliance and is not recommended.)
7541
7542 It makes a difference where in the command you write this option; the
7543 linker searches and processes libraries and object files in the order they
7544 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7545 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7546 to functions in @samp{z}, those functions may not be loaded.
7547
7548 The linker searches a standard list of directories for the library,
7549 which is actually a file named @file{lib@var{library}.a}.  The linker
7550 then uses this file as if it had been specified precisely by name.
7551
7552 The directories searched include several standard system directories
7553 plus any that you specify with @option{-L}.
7554
7555 Normally the files found this way are library files---archive files
7556 whose members are object files.  The linker handles an archive file by
7557 scanning through it for members which define symbols that have so far
7558 been referenced but not defined.  But if the file that is found is an
7559 ordinary object file, it is linked in the usual fashion.  The only
7560 difference between using an @option{-l} option and specifying a file name
7561 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7562 and searches several directories.
7563
7564 @item -lobjc
7565 @opindex lobjc
7566 You need this special case of the @option{-l} option in order to
7567 link an Objective-C or Objective-C++ program.
7568
7569 @item -nostartfiles
7570 @opindex nostartfiles
7571 Do not use the standard system startup files when linking.
7572 The standard system libraries are used normally, unless @option{-nostdlib}
7573 or @option{-nodefaultlibs} is used.
7574
7575 @item -nodefaultlibs
7576 @opindex nodefaultlibs
7577 Do not use the standard system libraries when linking.
7578 Only the libraries you specify will be passed to the linker.
7579 The standard startup files are used normally, unless @option{-nostartfiles}
7580 is used.  The compiler may generate calls to @code{memcmp},
7581 @code{memset}, @code{memcpy} and @code{memmove}.
7582 These entries are usually resolved by entries in
7583 libc.  These entry points should be supplied through some other
7584 mechanism when this option is specified.
7585
7586 @item -nostdlib
7587 @opindex nostdlib
7588 Do not use the standard system startup files or libraries when linking.
7589 No startup files and only the libraries you specify will be passed to
7590 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7591 @code{memcpy} and @code{memmove}.
7592 These entries are usually resolved by entries in
7593 libc.  These entry points should be supplied through some other
7594 mechanism when this option is specified.
7595
7596 @cindex @option{-lgcc}, use with @option{-nostdlib}
7597 @cindex @option{-nostdlib} and unresolved references
7598 @cindex unresolved references and @option{-nostdlib}
7599 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7600 @cindex @option{-nodefaultlibs} and unresolved references
7601 @cindex unresolved references and @option{-nodefaultlibs}
7602 One of the standard libraries bypassed by @option{-nostdlib} and
7603 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7604 that GCC uses to overcome shortcomings of particular machines, or special
7605 needs for some languages.
7606 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7607 Collection (GCC) Internals},
7608 for more discussion of @file{libgcc.a}.)
7609 In most cases, you need @file{libgcc.a} even when you want to avoid
7610 other standard libraries.  In other words, when you specify @option{-nostdlib}
7611 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7612 This ensures that you have no unresolved references to internal GCC
7613 library subroutines.  (For example, @samp{__main}, used to ensure C++
7614 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7615 GNU Compiler Collection (GCC) Internals}.)
7616
7617 @item -pie
7618 @opindex pie
7619 Produce a position independent executable on targets which support it.
7620 For predictable results, you must also specify the same set of options
7621 that were used to generate code (@option{-fpie}, @option{-fPIE},
7622 or model suboptions) when you specify this option.
7623
7624 @item -rdynamic
7625 @opindex rdynamic
7626 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7627 that support it. This instructs the linker to add all symbols, not
7628 only used ones, to the dynamic symbol table. This option is needed
7629 for some uses of @code{dlopen} or to allow obtaining backtraces
7630 from within a program.
7631
7632 @item -s
7633 @opindex s
7634 Remove all symbol table and relocation information from the executable.
7635
7636 @item -static
7637 @opindex static
7638 On systems that support dynamic linking, this prevents linking with the shared
7639 libraries.  On other systems, this option has no effect.
7640
7641 @item -shared
7642 @opindex shared
7643 Produce a shared object which can then be linked with other objects to
7644 form an executable.  Not all systems support this option.  For predictable
7645 results, you must also specify the same set of options that were used to
7646 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7647 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7648 needs to build supplementary stub code for constructors to work.  On
7649 multi-libbed systems, @samp{gcc -shared} must select the correct support
7650 libraries to link against.  Failing to supply the correct flags may lead
7651 to subtle defects.  Supplying them in cases where they are not necessary
7652 is innocuous.}
7653
7654 @item -shared-libgcc
7655 @itemx -static-libgcc
7656 @opindex shared-libgcc
7657 @opindex static-libgcc
7658 On systems that provide @file{libgcc} as a shared library, these options
7659 force the use of either the shared or static version respectively.
7660 If no shared version of @file{libgcc} was built when the compiler was
7661 configured, these options have no effect.
7662
7663 There are several situations in which an application should use the
7664 shared @file{libgcc} instead of the static version.  The most common
7665 of these is when the application wishes to throw and catch exceptions
7666 across different shared libraries.  In that case, each of the libraries
7667 as well as the application itself should use the shared @file{libgcc}.
7668
7669 Therefore, the G++ and GCJ drivers automatically add
7670 @option{-shared-libgcc} whenever you build a shared library or a main
7671 executable, because C++ and Java programs typically use exceptions, so
7672 this is the right thing to do.
7673
7674 If, instead, you use the GCC driver to create shared libraries, you may
7675 find that they will not always be linked with the shared @file{libgcc}.
7676 If GCC finds, at its configuration time, that you have a non-GNU linker
7677 or a GNU linker that does not support option @option{--eh-frame-hdr},
7678 it will link the shared version of @file{libgcc} into shared libraries
7679 by default.  Otherwise, it will take advantage of the linker and optimize
7680 away the linking with the shared version of @file{libgcc}, linking with
7681 the static version of libgcc by default.  This allows exceptions to
7682 propagate through such shared libraries, without incurring relocation
7683 costs at library load time.
7684
7685 However, if a library or main executable is supposed to throw or catch
7686 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7687 for the languages used in the program, or using the option
7688 @option{-shared-libgcc}, such that it is linked with the shared
7689 @file{libgcc}.
7690
7691 @item -symbolic
7692 @opindex symbolic
7693 Bind references to global symbols when building a shared object.  Warn
7694 about any unresolved references (unless overridden by the link editor
7695 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7696 this option.
7697
7698 @item -Xlinker @var{option}
7699 @opindex Xlinker
7700 Pass @var{option} as an option to the linker.  You can use this to
7701 supply system-specific linker options which GCC does not know how to
7702 recognize.
7703
7704 If you want to pass an option that takes an argument, you must use
7705 @option{-Xlinker} twice, once for the option and once for the argument.
7706 For example, to pass @option{-assert definitions}, you must write
7707 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7708 @option{-Xlinker "-assert definitions"}, because this passes the entire
7709 string as a single argument, which is not what the linker expects.
7710
7711 @item -Wl,@var{option}
7712 @opindex Wl
7713 Pass @var{option} as an option to the linker.  If @var{option} contains
7714 commas, it is split into multiple options at the commas.
7715
7716 @item -u @var{symbol}
7717 @opindex u
7718 Pretend the symbol @var{symbol} is undefined, to force linking of
7719 library modules to define it.  You can use @option{-u} multiple times with
7720 different symbols to force loading of additional library modules.
7721 @end table
7722
7723 @node Directory Options
7724 @section Options for Directory Search
7725 @cindex directory options
7726 @cindex options, directory search
7727 @cindex search path
7728
7729 These options specify directories to search for header files, for
7730 libraries and for parts of the compiler:
7731
7732 @table @gcctabopt
7733 @item -I@var{dir}
7734 @opindex I
7735 Add the directory @var{dir} to the head of the list of directories to be
7736 searched for header files.  This can be used to override a system header
7737 file, substituting your own version, since these directories are
7738 searched before the system header file directories.  However, you should
7739 not use this option to add directories that contain vendor-supplied
7740 system header files (use @option{-isystem} for that).  If you use more than
7741 one @option{-I} option, the directories are scanned in left-to-right
7742 order; the standard system directories come after.
7743
7744 If a standard system include directory, or a directory specified with
7745 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7746 option will be ignored.  The directory will still be searched but as a
7747 system directory at its normal position in the system include chain.
7748 This is to ensure that GCC's procedure to fix buggy system headers and
7749 the ordering for the include_next directive are not inadvertently changed.
7750 If you really need to change the search order for system directories,
7751 use the @option{-nostdinc} and/or @option{-isystem} options.
7752
7753 @item -iquote@var{dir}
7754 @opindex iquote
7755 Add the directory @var{dir} to the head of the list of directories to
7756 be searched for header files only for the case of @samp{#include
7757 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7758 otherwise just like @option{-I}.
7759
7760 @item -L@var{dir}
7761 @opindex L
7762 Add directory @var{dir} to the list of directories to be searched
7763 for @option{-l}.
7764
7765 @item -B@var{prefix}
7766 @opindex B
7767 This option specifies where to find the executables, libraries,
7768 include files, and data files of the compiler itself.
7769
7770 The compiler driver program runs one or more of the subprograms
7771 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7772 @var{prefix} as a prefix for each program it tries to run, both with and
7773 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7774
7775 For each subprogram to be run, the compiler driver first tries the
7776 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7777 was not specified, the driver tries two standard prefixes, which are
7778 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7779 those results in a file name that is found, the unmodified program
7780 name is searched for using the directories specified in your
7781 @env{PATH} environment variable.
7782
7783 The compiler will check to see if the path provided by the @option{-B}
7784 refers to a directory, and if necessary it will add a directory
7785 separator character at the end of the path.
7786
7787 @option{-B} prefixes that effectively specify directory names also apply
7788 to libraries in the linker, because the compiler translates these
7789 options into @option{-L} options for the linker.  They also apply to
7790 includes files in the preprocessor, because the compiler translates these
7791 options into @option{-isystem} options for the preprocessor.  In this case,
7792 the compiler appends @samp{include} to the prefix.
7793
7794 The run-time support file @file{libgcc.a} can also be searched for using
7795 the @option{-B} prefix, if needed.  If it is not found there, the two
7796 standard prefixes above are tried, and that is all.  The file is left
7797 out of the link if it is not found by those means.
7798
7799 Another way to specify a prefix much like the @option{-B} prefix is to use
7800 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7801 Variables}.
7802
7803 As a special kludge, if the path provided by @option{-B} is
7804 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7805 9, then it will be replaced by @file{[dir/]include}.  This is to help
7806 with boot-strapping the compiler.
7807
7808 @item -specs=@var{file}
7809 @opindex specs
7810 Process @var{file} after the compiler reads in the standard @file{specs}
7811 file, in order to override the defaults that the @file{gcc} driver
7812 program uses when determining what switches to pass to @file{cc1},
7813 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7814 @option{-specs=@var{file}} can be specified on the command line, and they
7815 are processed in order, from left to right.
7816
7817 @item --sysroot=@var{dir}
7818 @opindex sysroot
7819 Use @var{dir} as the logical root directory for headers and libraries.
7820 For example, if the compiler would normally search for headers in
7821 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7822 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7823
7824 If you use both this option and the @option{-isysroot} option, then
7825 the @option{--sysroot} option will apply to libraries, but the
7826 @option{-isysroot} option will apply to header files.
7827
7828 The GNU linker (beginning with version 2.16) has the necessary support
7829 for this option.  If your linker does not support this option, the
7830 header file aspect of @option{--sysroot} will still work, but the
7831 library aspect will not.
7832
7833 @item -I-
7834 @opindex I-
7835 This option has been deprecated.  Please use @option{-iquote} instead for
7836 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7837 Any directories you specify with @option{-I} options before the @option{-I-}
7838 option are searched only for the case of @samp{#include "@var{file}"};
7839 they are not searched for @samp{#include <@var{file}>}.
7840
7841 If additional directories are specified with @option{-I} options after
7842 the @option{-I-}, these directories are searched for all @samp{#include}
7843 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7844 this way.)
7845
7846 In addition, the @option{-I-} option inhibits the use of the current
7847 directory (where the current input file came from) as the first search
7848 directory for @samp{#include "@var{file}"}.  There is no way to
7849 override this effect of @option{-I-}.  With @option{-I.} you can specify
7850 searching the directory which was current when the compiler was
7851 invoked.  That is not exactly the same as what the preprocessor does
7852 by default, but it is often satisfactory.
7853
7854 @option{-I-} does not inhibit the use of the standard system directories
7855 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7856 independent.
7857 @end table
7858
7859 @c man end
7860
7861 @node Spec Files
7862 @section Specifying subprocesses and the switches to pass to them
7863 @cindex Spec Files
7864
7865 @command{gcc} is a driver program.  It performs its job by invoking a
7866 sequence of other programs to do the work of compiling, assembling and
7867 linking.  GCC interprets its command-line parameters and uses these to
7868 deduce which programs it should invoke, and which command-line options
7869 it ought to place on their command lines.  This behavior is controlled
7870 by @dfn{spec strings}.  In most cases there is one spec string for each
7871 program that GCC can invoke, but a few programs have multiple spec
7872 strings to control their behavior.  The spec strings built into GCC can
7873 be overridden by using the @option{-specs=} command-line switch to specify
7874 a spec file.
7875
7876 @dfn{Spec files} are plaintext files that are used to construct spec
7877 strings.  They consist of a sequence of directives separated by blank
7878 lines.  The type of directive is determined by the first non-whitespace
7879 character on the line and it can be one of the following:
7880
7881 @table @code
7882 @item %@var{command}
7883 Issues a @var{command} to the spec file processor.  The commands that can
7884 appear here are:
7885
7886 @table @code
7887 @item %include <@var{file}>
7888 @cindex %include
7889 Search for @var{file} and insert its text at the current point in the
7890 specs file.
7891
7892 @item %include_noerr <@var{file}>
7893 @cindex %include_noerr
7894 Just like @samp{%include}, but do not generate an error message if the include
7895 file cannot be found.
7896
7897 @item %rename @var{old_name} @var{new_name}
7898 @cindex %rename
7899 Rename the spec string @var{old_name} to @var{new_name}.
7900
7901 @end table
7902
7903 @item *[@var{spec_name}]:
7904 This tells the compiler to create, override or delete the named spec
7905 string.  All lines after this directive up to the next directive or
7906 blank line are considered to be the text for the spec string.  If this
7907 results in an empty string then the spec will be deleted.  (Or, if the
7908 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7909 does not currently exist a new spec will be created.  If the spec does
7910 exist then its contents will be overridden by the text of this
7911 directive, unless the first character of that text is the @samp{+}
7912 character, in which case the text will be appended to the spec.
7913
7914 @item [@var{suffix}]:
7915 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7916 and up to the next directive or blank line are considered to make up the
7917 spec string for the indicated suffix.  When the compiler encounters an
7918 input file with the named suffix, it will processes the spec string in
7919 order to work out how to compile that file.  For example:
7920
7921 @smallexample
7922 .ZZ:
7923 z-compile -input %i
7924 @end smallexample
7925
7926 This says that any input file whose name ends in @samp{.ZZ} should be
7927 passed to the program @samp{z-compile}, which should be invoked with the
7928 command-line switch @option{-input} and with the result of performing the
7929 @samp{%i} substitution.  (See below.)
7930
7931 As an alternative to providing a spec string, the text that follows a
7932 suffix directive can be one of the following:
7933
7934 @table @code
7935 @item @@@var{language}
7936 This says that the suffix is an alias for a known @var{language}.  This is
7937 similar to using the @option{-x} command-line switch to GCC to specify a
7938 language explicitly.  For example:
7939
7940 @smallexample
7941 .ZZ:
7942 @@c++
7943 @end smallexample
7944
7945 Says that .ZZ files are, in fact, C++ source files.
7946
7947 @item #@var{name}
7948 This causes an error messages saying:
7949
7950 @smallexample
7951 @var{name} compiler not installed on this system.
7952 @end smallexample
7953 @end table
7954
7955 GCC already has an extensive list of suffixes built into it.
7956 This directive will add an entry to the end of the list of suffixes, but
7957 since the list is searched from the end backwards, it is effectively
7958 possible to override earlier entries using this technique.
7959
7960 @end table
7961
7962 GCC has the following spec strings built into it.  Spec files can
7963 override these strings or create their own.  Note that individual
7964 targets can also add their own spec strings to this list.
7965
7966 @smallexample
7967 asm          Options to pass to the assembler
7968 asm_final    Options to pass to the assembler post-processor
7969 cpp          Options to pass to the C preprocessor
7970 cc1          Options to pass to the C compiler
7971 cc1plus      Options to pass to the C++ compiler
7972 endfile      Object files to include at the end of the link
7973 link         Options to pass to the linker
7974 lib          Libraries to include on the command line to the linker
7975 libgcc       Decides which GCC support library to pass to the linker
7976 linker       Sets the name of the linker
7977 predefines   Defines to be passed to the C preprocessor
7978 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7979              by default
7980 startfile    Object files to include at the start of the link
7981 @end smallexample
7982
7983 Here is a small example of a spec file:
7984
7985 @smallexample
7986 %rename lib                 old_lib
7987
7988 *lib:
7989 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7990 @end smallexample
7991
7992 This example renames the spec called @samp{lib} to @samp{old_lib} and
7993 then overrides the previous definition of @samp{lib} with a new one.
7994 The new definition adds in some extra command-line options before
7995 including the text of the old definition.
7996
7997 @dfn{Spec strings} are a list of command-line options to be passed to their
7998 corresponding program.  In addition, the spec strings can contain
7999 @samp{%}-prefixed sequences to substitute variable text or to
8000 conditionally insert text into the command line.  Using these constructs
8001 it is possible to generate quite complex command lines.
8002
8003 Here is a table of all defined @samp{%}-sequences for spec
8004 strings.  Note that spaces are not generated automatically around the
8005 results of expanding these sequences.  Therefore you can concatenate them
8006 together or combine them with constant text in a single argument.
8007
8008 @table @code
8009 @item %%
8010 Substitute one @samp{%} into the program name or argument.
8011
8012 @item %i
8013 Substitute the name of the input file being processed.
8014
8015 @item %b
8016 Substitute the basename of the input file being processed.
8017 This is the substring up to (and not including) the last period
8018 and not including the directory.
8019
8020 @item %B
8021 This is the same as @samp{%b}, but include the file suffix (text after
8022 the last period).
8023
8024 @item %d
8025 Marks the argument containing or following the @samp{%d} as a
8026 temporary file name, so that that file will be deleted if GCC exits
8027 successfully.  Unlike @samp{%g}, this contributes no text to the
8028 argument.
8029
8030 @item %g@var{suffix}
8031 Substitute a file name that has suffix @var{suffix} and is chosen
8032 once per compilation, and mark the argument in the same way as
8033 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
8034 name is now chosen in a way that is hard to predict even when previously
8035 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
8036 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
8037 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
8038 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
8039 was simply substituted with a file name chosen once per compilation,
8040 without regard to any appended suffix (which was therefore treated
8041 just like ordinary text), making such attacks more likely to succeed.
8042
8043 @item %u@var{suffix}
8044 Like @samp{%g}, but generates a new temporary file name even if
8045 @samp{%u@var{suffix}} was already seen.
8046
8047 @item %U@var{suffix}
8048 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
8049 new one if there is no such last file name.  In the absence of any
8050 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
8051 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
8052 would involve the generation of two distinct file names, one
8053 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
8054 simply substituted with a file name chosen for the previous @samp{%u},
8055 without regard to any appended suffix.
8056
8057 @item %j@var{suffix}
8058 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
8059 writable, and if save-temps is off; otherwise, substitute the name
8060 of a temporary file, just like @samp{%u}.  This temporary file is not
8061 meant for communication between processes, but rather as a junk
8062 disposal mechanism.
8063
8064 @item %|@var{suffix}
8065 @itemx %m@var{suffix}
8066 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
8067 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
8068 all.  These are the two most common ways to instruct a program that it
8069 should read from standard input or write to standard output.  If you
8070 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
8071 construct: see for example @file{f/lang-specs.h}.
8072
8073 @item %.@var{SUFFIX}
8074 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
8075 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
8076 terminated by the next space or %.
8077
8078 @item %w
8079 Marks the argument containing or following the @samp{%w} as the
8080 designated output file of this compilation.  This puts the argument
8081 into the sequence of arguments that @samp{%o} will substitute later.
8082
8083 @item %o
8084 Substitutes the names of all the output files, with spaces
8085 automatically placed around them.  You should write spaces
8086 around the @samp{%o} as well or the results are undefined.
8087 @samp{%o} is for use in the specs for running the linker.
8088 Input files whose names have no recognized suffix are not compiled
8089 at all, but they are included among the output files, so they will
8090 be linked.
8091
8092 @item %O
8093 Substitutes the suffix for object files.  Note that this is
8094 handled specially when it immediately follows @samp{%g, %u, or %U},
8095 because of the need for those to form complete file names.  The
8096 handling is such that @samp{%O} is treated exactly as if it had already
8097 been substituted, except that @samp{%g, %u, and %U} do not currently
8098 support additional @var{suffix} characters following @samp{%O} as they would
8099 following, for example, @samp{.o}.
8100
8101 @item %p
8102 Substitutes the standard macro predefinitions for the
8103 current target machine.  Use this when running @code{cpp}.
8104
8105 @item %P
8106 Like @samp{%p}, but puts @samp{__} before and after the name of each
8107 predefined macro, except for macros that start with @samp{__} or with
8108 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
8109 C@.
8110
8111 @item %I
8112 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
8113 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
8114 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
8115 and @option{-imultilib} as necessary.
8116
8117 @item %s
8118 Current argument is the name of a library or startup file of some sort.
8119 Search for that file in a standard list of directories and substitute
8120 the full name found.
8121
8122 @item %e@var{str}
8123 Print @var{str} as an error message.  @var{str} is terminated by a newline.
8124 Use this when inconsistent options are detected.
8125
8126 @item %(@var{name})
8127 Substitute the contents of spec string @var{name} at this point.
8128
8129 @item %[@var{name}]
8130 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
8131
8132 @item %x@{@var{option}@}
8133 Accumulate an option for @samp{%X}.
8134
8135 @item %X
8136 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
8137 spec string.
8138
8139 @item %Y
8140 Output the accumulated assembler options specified by @option{-Wa}.
8141
8142 @item %Z
8143 Output the accumulated preprocessor options specified by @option{-Wp}.
8144
8145 @item %a
8146 Process the @code{asm} spec.  This is used to compute the
8147 switches to be passed to the assembler.
8148
8149 @item %A
8150 Process the @code{asm_final} spec.  This is a spec string for
8151 passing switches to an assembler post-processor, if such a program is
8152 needed.
8153
8154 @item %l
8155 Process the @code{link} spec.  This is the spec for computing the
8156 command line passed to the linker.  Typically it will make use of the
8157 @samp{%L %G %S %D and %E} sequences.
8158
8159 @item %D
8160 Dump out a @option{-L} option for each directory that GCC believes might
8161 contain startup files.  If the target supports multilibs then the
8162 current multilib directory will be prepended to each of these paths.
8163
8164 @item %L
8165 Process the @code{lib} spec.  This is a spec string for deciding which
8166 libraries should be included on the command line to the linker.
8167
8168 @item %G
8169 Process the @code{libgcc} spec.  This is a spec string for deciding
8170 which GCC support library should be included on the command line to the linker.
8171
8172 @item %S
8173 Process the @code{startfile} spec.  This is a spec for deciding which
8174 object files should be the first ones passed to the linker.  Typically
8175 this might be a file named @file{crt0.o}.
8176
8177 @item %E
8178 Process the @code{endfile} spec.  This is a spec string that specifies
8179 the last object files that will be passed to the linker.
8180
8181 @item %C
8182 Process the @code{cpp} spec.  This is used to construct the arguments
8183 to be passed to the C preprocessor.
8184
8185 @item %1
8186 Process the @code{cc1} spec.  This is used to construct the options to be
8187 passed to the actual C compiler (@samp{cc1}).
8188
8189 @item %2
8190 Process the @code{cc1plus} spec.  This is used to construct the options to be
8191 passed to the actual C++ compiler (@samp{cc1plus}).
8192
8193 @item %*
8194 Substitute the variable part of a matched option.  See below.
8195 Note that each comma in the substituted string is replaced by
8196 a single space.
8197
8198 @item %<@code{S}
8199 Remove all occurrences of @code{-S} from the command line.  Note---this
8200 command is position dependent.  @samp{%} commands in the spec string
8201 before this one will see @code{-S}, @samp{%} commands in the spec string
8202 after this one will not.
8203
8204 @item %:@var{function}(@var{args})
8205 Call the named function @var{function}, passing it @var{args}.
8206 @var{args} is first processed as a nested spec string, then split
8207 into an argument vector in the usual fashion.  The function returns
8208 a string which is processed as if it had appeared literally as part
8209 of the current spec.
8210
8211 The following built-in spec functions are provided:
8212
8213 @table @code
8214 @item @code{getenv}
8215 The @code{getenv} spec function takes two arguments: an environment
8216 variable name and a string.  If the environment variable is not
8217 defined, a fatal error is issued.  Otherwise, the return value is the
8218 value of the environment variable concatenated with the string.  For
8219 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
8220
8221 @smallexample
8222 %:getenv(TOPDIR /include)
8223 @end smallexample
8224
8225 expands to @file{/path/to/top/include}.
8226
8227 @item @code{if-exists}
8228 The @code{if-exists} spec function takes one argument, an absolute
8229 pathname to a file.  If the file exists, @code{if-exists} returns the
8230 pathname.  Here is a small example of its usage:
8231
8232 @smallexample
8233 *startfile:
8234 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
8235 @end smallexample
8236
8237 @item @code{if-exists-else}
8238 The @code{if-exists-else} spec function is similar to the @code{if-exists}
8239 spec function, except that it takes two arguments.  The first argument is
8240 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
8241 returns the pathname.  If it does not exist, it returns the second argument.
8242 This way, @code{if-exists-else} can be used to select one file or another,
8243 based on the existence of the first.  Here is a small example of its usage:
8244
8245 @smallexample
8246 *startfile:
8247 crt0%O%s %:if-exists(crti%O%s) \
8248 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
8249 @end smallexample
8250
8251 @item @code{replace-outfile}
8252 The @code{replace-outfile} spec function takes two arguments.  It looks for the
8253 first argument in the outfiles array and replaces it with the second argument.  Here
8254 is a small example of its usage:
8255
8256 @smallexample
8257 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
8258 @end smallexample
8259
8260 @item @code{print-asm-header}
8261 The @code{print-asm-header} function takes no arguments and simply
8262 prints a banner like:
8263
8264 @smallexample
8265 Assembler options
8266 =================
8267
8268 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
8269 @end smallexample
8270
8271 It is used to separate compiler options from assembler options
8272 in the @option{--target-help} output.
8273 @end table
8274
8275 @item %@{@code{S}@}
8276 Substitutes the @code{-S} switch, if that switch was given to GCC@.
8277 If that switch was not specified, this substitutes nothing.  Note that
8278 the leading dash is omitted when specifying this option, and it is
8279 automatically inserted if the substitution is performed.  Thus the spec
8280 string @samp{%@{foo@}} would match the command-line option @option{-foo}
8281 and would output the command line option @option{-foo}.
8282
8283 @item %W@{@code{S}@}
8284 Like %@{@code{S}@} but mark last argument supplied within as a file to be
8285 deleted on failure.
8286
8287 @item %@{@code{S}*@}
8288 Substitutes all the switches specified to GCC whose names start
8289 with @code{-S}, but which also take an argument.  This is used for
8290 switches like @option{-o}, @option{-D}, @option{-I}, etc.
8291 GCC considers @option{-o foo} as being
8292 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
8293 text, including the space.  Thus two arguments would be generated.
8294
8295 @item %@{@code{S}*&@code{T}*@}
8296 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
8297 (the order of @code{S} and @code{T} in the spec is not significant).
8298 There can be any number of ampersand-separated variables; for each the
8299 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
8300
8301 @item %@{@code{S}:@code{X}@}
8302 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
8303
8304 @item %@{!@code{S}:@code{X}@}
8305 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
8306
8307 @item %@{@code{S}*:@code{X}@}
8308 Substitutes @code{X} if one or more switches whose names start with
8309 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
8310 once, no matter how many such switches appeared.  However, if @code{%*}
8311 appears somewhere in @code{X}, then @code{X} will be substituted once
8312 for each matching switch, with the @code{%*} replaced by the part of
8313 that switch that matched the @code{*}.
8314
8315 @item %@{.@code{S}:@code{X}@}
8316 Substitutes @code{X}, if processing a file with suffix @code{S}.
8317
8318 @item %@{!.@code{S}:@code{X}@}
8319 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
8320
8321 @item %@{,@code{S}:@code{X}@}
8322 Substitutes @code{X}, if processing a file for language @code{S}.
8323
8324 @item %@{!,@code{S}:@code{X}@}
8325 Substitutes @code{X}, if not processing a file for language @code{S}.
8326
8327 @item %@{@code{S}|@code{P}:@code{X}@}
8328 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
8329 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
8330 @code{*} sequences as well, although they have a stronger binding than
8331 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
8332 alternatives must be starred, and only the first matching alternative
8333 is substituted.
8334
8335 For example, a spec string like this:
8336
8337 @smallexample
8338 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
8339 @end smallexample
8340
8341 will output the following command-line options from the following input
8342 command-line options:
8343
8344 @smallexample
8345 fred.c        -foo -baz
8346 jim.d         -bar -boggle
8347 -d fred.c     -foo -baz -boggle
8348 -d jim.d      -bar -baz -boggle
8349 @end smallexample
8350
8351 @item %@{S:X; T:Y; :D@}
8352
8353 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
8354 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
8355 be as many clauses as you need.  This may be combined with @code{.},
8356 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
8357
8358
8359 @end table
8360
8361 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
8362 construct may contain other nested @samp{%} constructs or spaces, or
8363 even newlines.  They are processed as usual, as described above.
8364 Trailing white space in @code{X} is ignored.  White space may also
8365 appear anywhere on the left side of the colon in these constructs,
8366 except between @code{.} or @code{*} and the corresponding word.
8367
8368 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8369 handled specifically in these constructs.  If another value of
8370 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8371 @option{-W} switch is found later in the command line, the earlier
8372 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8373 just one letter, which passes all matching options.
8374
8375 The character @samp{|} at the beginning of the predicate text is used to
8376 indicate that a command should be piped to the following command, but
8377 only if @option{-pipe} is specified.
8378
8379 It is built into GCC which switches take arguments and which do not.
8380 (You might think it would be useful to generalize this to allow each
8381 compiler's spec to say which switches take arguments.  But this cannot
8382 be done in a consistent fashion.  GCC cannot even decide which input
8383 files have been specified without knowing which switches take arguments,
8384 and it must know which input files to compile in order to tell which
8385 compilers to run).
8386
8387 GCC also knows implicitly that arguments starting in @option{-l} are to be
8388 treated as compiler output files, and passed to the linker in their
8389 proper position among the other output files.
8390
8391 @c man begin OPTIONS
8392
8393 @node Target Options
8394 @section Specifying Target Machine and Compiler Version
8395 @cindex target options
8396 @cindex cross compiling
8397 @cindex specifying machine version
8398 @cindex specifying compiler version and target machine
8399 @cindex compiler version, specifying
8400 @cindex target machine, specifying
8401
8402 The usual way to run GCC is to run the executable called @file{gcc}, or
8403 @file{<machine>-gcc} when cross-compiling, or
8404 @file{<machine>-gcc-<version>} to run a version other than the one that
8405 was installed last.  Sometimes this is inconvenient, so GCC provides
8406 options that will switch to another cross-compiler or version.
8407
8408 @table @gcctabopt
8409 @item -b @var{machine}
8410 @opindex b
8411 The argument @var{machine} specifies the target machine for compilation.
8412
8413 The value to use for @var{machine} is the same as was specified as the
8414 machine type when configuring GCC as a cross-compiler.  For
8415 example, if a cross-compiler was configured with @samp{configure
8416 arm-elf}, meaning to compile for an arm processor with elf binaries,
8417 then you would specify @option{-b arm-elf} to run that cross compiler.
8418 Because there are other options beginning with @option{-b}, the
8419 configuration must contain a hyphen.
8420
8421 @item -V @var{version}
8422 @opindex V
8423 The argument @var{version} specifies which version of GCC to run.
8424 This is useful when multiple versions are installed.  For example,
8425 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8426 @end table
8427
8428 The @option{-V} and @option{-b} options work by running the
8429 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8430 use them if you can just run that directly.
8431
8432 @node Submodel Options
8433 @section Hardware Models and Configurations
8434 @cindex submodel options
8435 @cindex specifying hardware config
8436 @cindex hardware models and configurations, specifying
8437 @cindex machine dependent options
8438
8439 Earlier we discussed the standard option @option{-b} which chooses among
8440 different installed compilers for completely different target
8441 machines, such as VAX vs.@: 68000 vs.@: 80386.
8442
8443 In addition, each of these target machine types can have its own
8444 special options, starting with @samp{-m}, to choose among various
8445 hardware models or configurations---for example, 68010 vs 68020,
8446 floating coprocessor or none.  A single installed version of the
8447 compiler can compile for any model or configuration, according to the
8448 options specified.
8449
8450 Some configurations of the compiler also support additional special
8451 options, usually for compatibility with other compilers on the same
8452 platform.
8453
8454 @c This list is ordered alphanumerically by subsection name.
8455 @c It should be the same order and spelling as these options are listed
8456 @c in Machine Dependent Options
8457
8458 @menu
8459 * ARC Options::
8460 * ARM Options::
8461 * AVR Options::
8462 * Blackfin Options::
8463 * CRIS Options::
8464 * CRX Options::
8465 * Darwin Options::
8466 * DEC Alpha Options::
8467 * DEC Alpha/VMS Options::
8468 * FRV Options::
8469 * GNU/Linux Options::
8470 * H8/300 Options::
8471 * HPPA Options::
8472 * i386 and x86-64 Options::
8473 * IA-64 Options::
8474 * M32C Options::
8475 * M32R/D Options::
8476 * M680x0 Options::
8477 * M68hc1x Options::
8478 * MCore Options::
8479 * MIPS Options::
8480 * MMIX Options::
8481 * MN10300 Options::
8482 * PDP-11 Options::
8483 * PowerPC Options::
8484 * RS/6000 and PowerPC Options::
8485 * S/390 and zSeries Options::
8486 * Score Options::
8487 * SH Options::
8488 * SPARC Options::
8489 * SPU Options::
8490 * System V Options::
8491 * V850 Options::
8492 * VAX Options::
8493 * VxWorks Options::
8494 * x86-64 Options::
8495 * Xstormy16 Options::
8496 * Xtensa Options::
8497 * zSeries Options::
8498 @end menu
8499
8500 @node ARC Options
8501 @subsection ARC Options
8502 @cindex ARC Options
8503
8504 These options are defined for ARC implementations:
8505
8506 @table @gcctabopt
8507 @item -EL
8508 @opindex EL
8509 Compile code for little endian mode.  This is the default.
8510
8511 @item -EB
8512 @opindex EB
8513 Compile code for big endian mode.
8514
8515 @item -mmangle-cpu
8516 @opindex mmangle-cpu
8517 Prepend the name of the cpu to all public symbol names.
8518 In multiple-processor systems, there are many ARC variants with different
8519 instruction and register set characteristics.  This flag prevents code
8520 compiled for one cpu to be linked with code compiled for another.
8521 No facility exists for handling variants that are ``almost identical''.
8522 This is an all or nothing option.
8523
8524 @item -mcpu=@var{cpu}
8525 @opindex mcpu
8526 Compile code for ARC variant @var{cpu}.
8527 Which variants are supported depend on the configuration.
8528 All variants support @option{-mcpu=base}, this is the default.
8529
8530 @item -mtext=@var{text-section}
8531 @itemx -mdata=@var{data-section}
8532 @itemx -mrodata=@var{readonly-data-section}
8533 @opindex mtext
8534 @opindex mdata
8535 @opindex mrodata
8536 Put functions, data, and readonly data in @var{text-section},
8537 @var{data-section}, and @var{readonly-data-section} respectively
8538 by default.  This can be overridden with the @code{section} attribute.
8539 @xref{Variable Attributes}.
8540
8541 @end table
8542
8543 @node ARM Options
8544 @subsection ARM Options
8545 @cindex ARM options
8546
8547 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8548 architectures:
8549
8550 @table @gcctabopt
8551 @item -mabi=@var{name}
8552 @opindex mabi
8553 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8554 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8555
8556 @item -mapcs-frame
8557 @opindex mapcs-frame
8558 Generate a stack frame that is compliant with the ARM Procedure Call
8559 Standard for all functions, even if this is not strictly necessary for
8560 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8561 with this option will cause the stack frames not to be generated for
8562 leaf functions.  The default is @option{-mno-apcs-frame}.
8563
8564 @item -mapcs
8565 @opindex mapcs
8566 This is a synonym for @option{-mapcs-frame}.
8567
8568 @ignore
8569 @c not currently implemented
8570 @item -mapcs-stack-check
8571 @opindex mapcs-stack-check
8572 Generate code to check the amount of stack space available upon entry to
8573 every function (that actually uses some stack space).  If there is
8574 insufficient space available then either the function
8575 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8576 called, depending upon the amount of stack space required.  The run time
8577 system is required to provide these functions.  The default is
8578 @option{-mno-apcs-stack-check}, since this produces smaller code.
8579
8580 @c not currently implemented
8581 @item -mapcs-float
8582 @opindex mapcs-float
8583 Pass floating point arguments using the float point registers.  This is
8584 one of the variants of the APCS@.  This option is recommended if the
8585 target hardware has a floating point unit or if a lot of floating point
8586 arithmetic is going to be performed by the code.  The default is
8587 @option{-mno-apcs-float}, since integer only code is slightly increased in
8588 size if @option{-mapcs-float} is used.
8589
8590 @c not currently implemented
8591 @item -mapcs-reentrant
8592 @opindex mapcs-reentrant
8593 Generate reentrant, position independent code.  The default is
8594 @option{-mno-apcs-reentrant}.
8595 @end ignore
8596
8597 @item -mthumb-interwork
8598 @opindex mthumb-interwork
8599 Generate code which supports calling between the ARM and Thumb
8600 instruction sets.  Without this option the two instruction sets cannot
8601 be reliably used inside one program.  The default is
8602 @option{-mno-thumb-interwork}, since slightly larger code is generated
8603 when @option{-mthumb-interwork} is specified.
8604
8605 @item -mno-sched-prolog
8606 @opindex mno-sched-prolog
8607 Prevent the reordering of instructions in the function prolog, or the
8608 merging of those instruction with the instructions in the function's
8609 body.  This means that all functions will start with a recognizable set
8610 of instructions (or in fact one of a choice from a small set of
8611 different function prologues), and this information can be used to
8612 locate the start if functions inside an executable piece of code.  The
8613 default is @option{-msched-prolog}.
8614
8615 @item -mhard-float
8616 @opindex mhard-float
8617 Generate output containing floating point instructions.  This is the
8618 default.
8619
8620 @item -msoft-float
8621 @opindex msoft-float
8622 Generate output containing library calls for floating point.
8623 @strong{Warning:} the requisite libraries are not available for all ARM
8624 targets.  Normally the facilities of the machine's usual C compiler are
8625 used, but this cannot be done directly in cross-compilation.  You must make
8626 your own arrangements to provide suitable library functions for
8627 cross-compilation.
8628
8629 @option{-msoft-float} changes the calling convention in the output file;
8630 therefore, it is only useful if you compile @emph{all} of a program with
8631 this option.  In particular, you need to compile @file{libgcc.a}, the
8632 library that comes with GCC, with @option{-msoft-float} in order for
8633 this to work.
8634
8635 @item -mfloat-abi=@var{name}
8636 @opindex mfloat-abi
8637 Specifies which ABI to use for floating point values.  Permissible values
8638 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8639
8640 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8641 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8642 of floating point instructions, but still uses the soft-float calling
8643 conventions.
8644
8645 @item -mlittle-endian
8646 @opindex mlittle-endian
8647 Generate code for a processor running in little-endian mode.  This is
8648 the default for all standard configurations.
8649
8650 @item -mbig-endian
8651 @opindex mbig-endian
8652 Generate code for a processor running in big-endian mode; the default is
8653 to compile code for a little-endian processor.
8654
8655 @item -mwords-little-endian
8656 @opindex mwords-little-endian
8657 This option only applies when generating code for big-endian processors.
8658 Generate code for a little-endian word order but a big-endian byte
8659 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8660 option should only be used if you require compatibility with code for
8661 big-endian ARM processors generated by versions of the compiler prior to
8662 2.8.
8663
8664 @item -mcpu=@var{name}
8665 @opindex mcpu
8666 This specifies the name of the target ARM processor.  GCC uses this name
8667 to determine what kind of instructions it can emit when generating
8668 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8669 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8670 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8671 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8672 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8673 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8674 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8675 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8676 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8677 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8678 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8679 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8680 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8681 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8682 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m3},
8683 @samp{cortex-m1},
8684 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8685
8686 @item -mtune=@var{name}
8687 @opindex mtune
8688 This option is very similar to the @option{-mcpu=} option, except that
8689 instead of specifying the actual target processor type, and hence
8690 restricting which instructions can be used, it specifies that GCC should
8691 tune the performance of the code as if the target were of the type
8692 specified in this option, but still choosing the instructions that it
8693 will generate based on the cpu specified by a @option{-mcpu=} option.
8694 For some ARM implementations better performance can be obtained by using
8695 this option.
8696
8697 @item -march=@var{name}
8698 @opindex march
8699 This specifies the name of the target ARM architecture.  GCC uses this
8700 name to determine what kind of instructions it can emit when generating
8701 assembly code.  This option can be used in conjunction with or instead
8702 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8703 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8704 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8705 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
8706 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
8707 @samp{iwmmxt}, @samp{ep9312}.
8708
8709 @item -mfpu=@var{name}
8710 @itemx -mfpe=@var{number}
8711 @itemx -mfp=@var{number}
8712 @opindex mfpu
8713 @opindex mfpe
8714 @opindex mfp
8715 This specifies what floating point hardware (or hardware emulation) is
8716 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8717 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-d16} and
8718 @samp{neon}.  @option{-mfp} and @option{-mfpe}
8719 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8720 with older versions of GCC@.
8721
8722 If @option{-msoft-float} is specified this specifies the format of
8723 floating point values.
8724
8725 @item -mstructure-size-boundary=@var{n}
8726 @opindex mstructure-size-boundary
8727 The size of all structures and unions will be rounded up to a multiple
8728 of the number of bits set by this option.  Permissible values are 8, 32
8729 and 64.  The default value varies for different toolchains.  For the COFF
8730 targeted toolchain the default value is 8.  A value of 64 is only allowed
8731 if the underlying ABI supports it.
8732
8733 Specifying the larger number can produce faster, more efficient code, but
8734 can also increase the size of the program.  Different values are potentially
8735 incompatible.  Code compiled with one value cannot necessarily expect to
8736 work with code or libraries compiled with another value, if they exchange
8737 information using structures or unions.
8738
8739 @item -mabort-on-noreturn
8740 @opindex mabort-on-noreturn
8741 Generate a call to the function @code{abort} at the end of a
8742 @code{noreturn} function.  It will be executed if the function tries to
8743 return.
8744
8745 @item -mlong-calls
8746 @itemx -mno-long-calls
8747 @opindex mlong-calls
8748 @opindex mno-long-calls
8749 Tells the compiler to perform function calls by first loading the
8750 address of the function into a register and then performing a subroutine
8751 call on this register.  This switch is needed if the target function
8752 will lie outside of the 64 megabyte addressing range of the offset based
8753 version of subroutine call instruction.
8754
8755 Even if this switch is enabled, not all function calls will be turned
8756 into long calls.  The heuristic is that static functions, functions
8757 which have the @samp{short-call} attribute, functions that are inside
8758 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8759 definitions have already been compiled within the current compilation
8760 unit, will not be turned into long calls.  The exception to this rule is
8761 that weak function definitions, functions with the @samp{long-call}
8762 attribute or the @samp{section} attribute, and functions that are within
8763 the scope of a @samp{#pragma long_calls} directive, will always be
8764 turned into long calls.
8765
8766 This feature is not enabled by default.  Specifying
8767 @option{-mno-long-calls} will restore the default behavior, as will
8768 placing the function calls within the scope of a @samp{#pragma
8769 long_calls_off} directive.  Note these switches have no effect on how
8770 the compiler generates code to handle function calls via function
8771 pointers.
8772
8773 @item -mnop-fun-dllimport
8774 @opindex mnop-fun-dllimport
8775 Disable support for the @code{dllimport} attribute.
8776
8777 @item -msingle-pic-base
8778 @opindex msingle-pic-base
8779 Treat the register used for PIC addressing as read-only, rather than
8780 loading it in the prologue for each function.  The run-time system is
8781 responsible for initializing this register with an appropriate value
8782 before execution begins.
8783
8784 @item -mpic-register=@var{reg}
8785 @opindex mpic-register
8786 Specify the register to be used for PIC addressing.  The default is R10
8787 unless stack-checking is enabled, when R9 is used.
8788
8789 @item -mcirrus-fix-invalid-insns
8790 @opindex mcirrus-fix-invalid-insns
8791 @opindex mno-cirrus-fix-invalid-insns
8792 Insert NOPs into the instruction stream to in order to work around
8793 problems with invalid Maverick instruction combinations.  This option
8794 is only valid if the @option{-mcpu=ep9312} option has been used to
8795 enable generation of instructions for the Cirrus Maverick floating
8796 point co-processor.  This option is not enabled by default, since the
8797 problem is only present in older Maverick implementations.  The default
8798 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8799 switch.
8800
8801 @item -mpoke-function-name
8802 @opindex mpoke-function-name
8803 Write the name of each function into the text section, directly
8804 preceding the function prologue.  The generated code is similar to this:
8805
8806 @smallexample
8807      t0
8808          .ascii "arm_poke_function_name", 0
8809          .align
8810      t1
8811          .word 0xff000000 + (t1 - t0)
8812      arm_poke_function_name
8813          mov     ip, sp
8814          stmfd   sp!, @{fp, ip, lr, pc@}
8815          sub     fp, ip, #4
8816 @end smallexample
8817
8818 When performing a stack backtrace, code can inspect the value of
8819 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8820 location @code{pc - 12} and the top 8 bits are set, then we know that
8821 there is a function name embedded immediately preceding this location
8822 and has length @code{((pc[-3]) & 0xff000000)}.
8823
8824 @item -mthumb
8825 @opindex mthumb
8826 Generate code for the Thumb instruction set.  The default is to
8827 use the 32-bit ARM instruction set.
8828 This option automatically enables either 16-bit Thumb-1 or
8829 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8830 and @option{-march=@var{name}} options.
8831
8832 @item -mtpcs-frame
8833 @opindex mtpcs-frame
8834 Generate a stack frame that is compliant with the Thumb Procedure Call
8835 Standard for all non-leaf functions.  (A leaf function is one that does
8836 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8837
8838 @item -mtpcs-leaf-frame
8839 @opindex mtpcs-leaf-frame
8840 Generate a stack frame that is compliant with the Thumb Procedure Call
8841 Standard for all leaf functions.  (A leaf function is one that does
8842 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8843
8844 @item -mcallee-super-interworking
8845 @opindex mcallee-super-interworking
8846 Gives all externally visible functions in the file being compiled an ARM
8847 instruction set header which switches to Thumb mode before executing the
8848 rest of the function.  This allows these functions to be called from
8849 non-interworking code.
8850
8851 @item -mcaller-super-interworking
8852 @opindex mcaller-super-interworking
8853 Allows calls via function pointers (including virtual functions) to
8854 execute correctly regardless of whether the target code has been
8855 compiled for interworking or not.  There is a small overhead in the cost
8856 of executing a function pointer if this option is enabled.
8857
8858 @item -mtp=@var{name}
8859 @opindex mtp
8860 Specify the access model for the thread local storage pointer.  The valid
8861 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8862 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8863 (supported in the arm6k architecture), and @option{auto}, which uses the
8864 best available method for the selected processor.  The default setting is
8865 @option{auto}.
8866
8867 @end table
8868
8869 @node AVR Options
8870 @subsection AVR Options
8871 @cindex AVR Options
8872
8873 These options are defined for AVR implementations:
8874
8875 @table @gcctabopt
8876 @item -mmcu=@var{mcu}
8877 @opindex mmcu
8878 Specify ATMEL AVR instruction set or MCU type.
8879
8880 Instruction set avr1 is for the minimal AVR core, not supported by the C
8881 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8882 attiny11, attiny12, attiny15, attiny28).
8883
8884 Instruction set avr2 (default) is for the classic AVR core with up to
8885 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8886 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8887 at90c8534, at90s8535).
8888
8889 Instruction set avr3 is for the classic AVR core with up to 128K program
8890 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8891
8892 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8893 memory space (MCU types: atmega8, atmega83, atmega85).
8894
8895 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8896 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8897 atmega64, atmega128, at43usb355, at94k).
8898
8899 @item -msize
8900 @opindex msize
8901 Output instruction sizes to the asm file.
8902
8903 @item -minit-stack=@var{N}
8904 @opindex minit-stack
8905 Specify the initial stack address, which may be a symbol or numeric value,
8906 @samp{__stack} is the default.
8907
8908 @item -mno-interrupts
8909 @opindex mno-interrupts
8910 Generated code is not compatible with hardware interrupts.
8911 Code size will be smaller.
8912
8913 @item -mcall-prologues
8914 @opindex mcall-prologues
8915 Functions prologues/epilogues expanded as call to appropriate
8916 subroutines.  Code size will be smaller.
8917
8918 @item -mno-tablejump
8919 @opindex mno-tablejump
8920 Do not generate tablejump insns which sometimes increase code size.
8921
8922 @item -mtiny-stack
8923 @opindex mtiny-stack
8924 Change only the low 8 bits of the stack pointer.
8925
8926 @item -mint8
8927 @opindex mint8
8928 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8929 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8930 and long long will be 4 bytes.  Please note that this option does not
8931 comply to the C standards, but it will provide you with smaller code
8932 size.
8933 @end table
8934
8935 @node Blackfin Options
8936 @subsection Blackfin Options
8937 @cindex Blackfin Options
8938
8939 @table @gcctabopt
8940 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8941 @opindex mcpu=
8942 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8943 can be one of @samp{bf522}, @samp{bf523}, @samp{bf524},
8944 @samp{bf525}, @samp{bf526}, @samp{bf527},
8945 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8946 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8947 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
8948 @samp{bf561}.
8949 The optional @var{sirevision} specifies the silicon revision of the target
8950 Blackfin processor.  Any workarounds available for the targeted silicon revision
8951 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8952 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8953 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8954 hexadecimal digits representing the major and minor numbers in the silicon
8955 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8956 is not defined.  If @var{sirevision} is @samp{any}, the
8957 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8958 If this optional @var{sirevision} is not used, GCC assumes the latest known
8959 silicon revision of the targeted Blackfin processor.
8960
8961 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8962 Only the processor macro is defined.
8963 Without this option, @samp{bf532} is used as the processor by default.
8964 The corresponding predefined processor macros for @var{cpu} is to
8965 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8966 provided by libgloss to be linked in if @option{-msim} is not given.
8967
8968 @item -msim
8969 @opindex msim
8970 Specifies that the program will be run on the simulator.  This causes
8971 the simulator BSP provided by libgloss to be linked in.  This option
8972 has effect only for @samp{bfin-elf} toolchain.
8973 Certain other options, such as @option{-mid-shared-library} and
8974 @option{-mfdpic}, imply @option{-msim}.
8975
8976 @item -momit-leaf-frame-pointer
8977 @opindex momit-leaf-frame-pointer
8978 Don't keep the frame pointer in a register for leaf functions.  This
8979 avoids the instructions to save, set up and restore frame pointers and
8980 makes an extra register available in leaf functions.  The option
8981 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8982 which might make debugging harder.
8983
8984 @item -mspecld-anomaly
8985 @opindex mspecld-anomaly
8986 When enabled, the compiler will ensure that the generated code does not
8987 contain speculative loads after jump instructions. If this option is used,
8988 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8989
8990 @item -mno-specld-anomaly
8991 @opindex mno-specld-anomaly
8992 Don't generate extra code to prevent speculative loads from occurring.
8993
8994 @item -mcsync-anomaly
8995 @opindex mcsync-anomaly
8996 When enabled, the compiler will ensure that the generated code does not
8997 contain CSYNC or SSYNC instructions too soon after conditional branches.
8998 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8999
9000 @item -mno-csync-anomaly
9001 @opindex mno-csync-anomaly
9002 Don't generate extra code to prevent CSYNC or SSYNC instructions from
9003 occurring too soon after a conditional branch.
9004
9005 @item -mlow-64k
9006 @opindex mlow-64k
9007 When enabled, the compiler is free to take advantage of the knowledge that
9008 the entire program fits into the low 64k of memory.
9009
9010 @item -mno-low-64k
9011 @opindex mno-low-64k
9012 Assume that the program is arbitrarily large.  This is the default.
9013
9014 @item -mstack-check-l1
9015 @opindex mstack-check-l1
9016 Do stack checking using information placed into L1 scratchpad memory by the
9017 uClinux kernel.
9018
9019 @item -mid-shared-library
9020 @opindex mid-shared-library
9021 Generate code that supports shared libraries via the library ID method.
9022 This allows for execute in place and shared libraries in an environment
9023 without virtual memory management.  This option implies @option{-fPIC}.
9024 With a @samp{bfin-elf} target, this option implies @option{-msim}.
9025
9026 @item -mno-id-shared-library
9027 @opindex mno-id-shared-library
9028 Generate code that doesn't assume ID based shared libraries are being used.
9029 This is the default.
9030
9031 @item -mleaf-id-shared-library
9032 @opindex mleaf-id-shared-library
9033 Generate code that supports shared libraries via the library ID method,
9034 but assumes that this library or executable won't link against any other
9035 ID shared libraries.  That allows the compiler to use faster code for jumps
9036 and calls.
9037
9038 @item -mno-leaf-id-shared-library
9039 @opindex mno-leaf-id-shared-library
9040 Do not assume that the code being compiled won't link against any ID shared
9041 libraries.  Slower code will be generated for jump and call insns.
9042
9043 @item -mshared-library-id=n
9044 @opindex mshared-library-id
9045 Specified the identification number of the ID based shared library being
9046 compiled.  Specifying a value of 0 will generate more compact code, specifying
9047 other values will force the allocation of that number to the current
9048 library but is no more space or time efficient than omitting this option.
9049
9050 @item -msep-data
9051 @opindex msep-data
9052 Generate code that allows the data segment to be located in a different
9053 area of memory from the text segment.  This allows for execute in place in
9054 an environment without virtual memory management by eliminating relocations
9055 against the text section.
9056
9057 @item -mno-sep-data
9058 @opindex mno-sep-data
9059 Generate code that assumes that the data segment follows the text segment.
9060 This is the default.
9061
9062 @item -mlong-calls
9063 @itemx -mno-long-calls
9064 @opindex mlong-calls
9065 @opindex mno-long-calls
9066 Tells the compiler to perform function calls by first loading the
9067 address of the function into a register and then performing a subroutine
9068 call on this register.  This switch is needed if the target function
9069 will lie outside of the 24 bit addressing range of the offset based
9070 version of subroutine call instruction.
9071
9072 This feature is not enabled by default.  Specifying
9073 @option{-mno-long-calls} will restore the default behavior.  Note these
9074 switches have no effect on how the compiler generates code to handle
9075 function calls via function pointers.
9076
9077 @item -mfast-fp
9078 @opindex mfast-fp
9079 Link with the fast floating-point library. This library relaxes some of
9080 the IEEE floating-point standard's rules for checking inputs against
9081 Not-a-Number (NAN), in the interest of performance.
9082
9083 @item -minline-plt
9084 @opindex minline-plt
9085 Enable inlining of PLT entries in function calls to functions that are
9086 not known to bind locally.  It has no effect without @option{-mfdpic}.
9087
9088 @item -mmulticore
9089 @opindex mmulticore
9090 Build standalone application for multicore Blackfin processor. Proper
9091 start files and link scripts will be used to support multicore.
9092 This option defines @code{__BFIN_MULTICORE}. It can only be used with
9093 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
9094 @option{-mcorea} or @option{-mcoreb}. If it's used without
9095 @option{-mcorea} or @option{-mcoreb}, single application/dual core
9096 programming model is used. In this model, the main function of Core B
9097 should be named as coreb_main. If it's used with @option{-mcorea} or
9098 @option{-mcoreb}, one application per core programming model is used.
9099 If this option is not used, single core application programming
9100 model is used.
9101
9102 @item -mcorea
9103 @opindex mcorea
9104 Build standalone application for Core A of BF561 when using
9105 one application per core programming model. Proper start files
9106 and link scripts will be used to support Core A. This option
9107 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
9108
9109 @item -mcoreb
9110 @opindex mcoreb
9111 Build standalone application for Core B of BF561 when using
9112 one application per core programming model. Proper start files
9113 and link scripts will be used to support Core B. This option
9114 defines @code{__BFIN_COREB}. When this option is used, coreb_main
9115 should be used instead of main. It must be used with
9116 @option{-mmulticore}. 
9117
9118 @item -msdram
9119 @opindex msdram
9120 Build standalone application for SDRAM. Proper start files and
9121 link scripts will be used to put the application into SDRAM.
9122 Loader should initialize SDRAM before loading the application
9123 into SDRAM. This option defines @code{__BFIN_SDRAM}.
9124 @end table
9125
9126 @node CRIS Options
9127 @subsection CRIS Options
9128 @cindex CRIS Options
9129
9130 These options are defined specifically for the CRIS ports.
9131
9132 @table @gcctabopt
9133 @item -march=@var{architecture-type}
9134 @itemx -mcpu=@var{architecture-type}
9135 @opindex march
9136 @opindex mcpu
9137 Generate code for the specified architecture.  The choices for
9138 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
9139 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
9140 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
9141 @samp{v10}.
9142
9143 @item -mtune=@var{architecture-type}
9144 @opindex mtune
9145 Tune to @var{architecture-type} everything applicable about the generated
9146 code, except for the ABI and the set of available instructions.  The
9147 choices for @var{architecture-type} are the same as for
9148 @option{-march=@var{architecture-type}}.
9149
9150 @item -mmax-stack-frame=@var{n}
9151 @opindex mmax-stack-frame
9152 Warn when the stack frame of a function exceeds @var{n} bytes.
9153
9154 @item -metrax4
9155 @itemx -metrax100
9156 @opindex metrax4
9157 @opindex metrax100
9158 The options @option{-metrax4} and @option{-metrax100} are synonyms for
9159 @option{-march=v3} and @option{-march=v8} respectively.
9160
9161 @item -mmul-bug-workaround
9162 @itemx -mno-mul-bug-workaround
9163 @opindex mmul-bug-workaround
9164 @opindex mno-mul-bug-workaround
9165 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
9166 models where it applies.  This option is active by default.
9167
9168 @item -mpdebug
9169 @opindex mpdebug
9170 Enable CRIS-specific verbose debug-related information in the assembly
9171 code.  This option also has the effect to turn off the @samp{#NO_APP}
9172 formatted-code indicator to the assembler at the beginning of the
9173 assembly file.
9174
9175 @item -mcc-init
9176 @opindex mcc-init
9177 Do not use condition-code results from previous instruction; always emit
9178 compare and test instructions before use of condition codes.
9179
9180 @item -mno-side-effects
9181 @opindex mno-side-effects
9182 Do not emit instructions with side-effects in addressing modes other than
9183 post-increment.
9184
9185 @item -mstack-align
9186 @itemx -mno-stack-align
9187 @itemx -mdata-align
9188 @itemx -mno-data-align
9189 @itemx -mconst-align
9190 @itemx -mno-const-align
9191 @opindex mstack-align
9192 @opindex mno-stack-align
9193 @opindex mdata-align
9194 @opindex mno-data-align
9195 @opindex mconst-align
9196 @opindex mno-const-align
9197 These options (no-options) arranges (eliminate arrangements) for the
9198 stack-frame, individual data and constants to be aligned for the maximum
9199 single data access size for the chosen CPU model.  The default is to
9200 arrange for 32-bit alignment.  ABI details such as structure layout are
9201 not affected by these options.
9202
9203 @item -m32-bit
9204 @itemx -m16-bit
9205 @itemx -m8-bit
9206 @opindex m32-bit
9207 @opindex m16-bit
9208 @opindex m8-bit
9209 Similar to the stack- data- and const-align options above, these options
9210 arrange for stack-frame, writable data and constants to all be 32-bit,
9211 16-bit or 8-bit aligned.  The default is 32-bit alignment.
9212
9213 @item -mno-prologue-epilogue
9214 @itemx -mprologue-epilogue
9215 @opindex mno-prologue-epilogue
9216 @opindex mprologue-epilogue
9217 With @option{-mno-prologue-epilogue}, the normal function prologue and
9218 epilogue that sets up the stack-frame are omitted and no return
9219 instructions or return sequences are generated in the code.  Use this
9220 option only together with visual inspection of the compiled code: no
9221 warnings or errors are generated when call-saved registers must be saved,
9222 or storage for local variable needs to be allocated.
9223
9224 @item -mno-gotplt
9225 @itemx -mgotplt
9226 @opindex mno-gotplt
9227 @opindex mgotplt
9228 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
9229 instruction sequences that load addresses for functions from the PLT part
9230 of the GOT rather than (traditional on other architectures) calls to the
9231 PLT@.  The default is @option{-mgotplt}.
9232
9233 @item -melf
9234 @opindex melf
9235 Legacy no-op option only recognized with the cris-axis-elf and
9236 cris-axis-linux-gnu targets.
9237
9238 @item -mlinux
9239 @opindex mlinux
9240 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
9241
9242 @item -sim
9243 @opindex sim
9244 This option, recognized for the cris-axis-elf arranges
9245 to link with input-output functions from a simulator library.  Code,
9246 initialized data and zero-initialized data are allocated consecutively.
9247
9248 @item -sim2
9249 @opindex sim2
9250 Like @option{-sim}, but pass linker options to locate initialized data at
9251 0x40000000 and zero-initialized data at 0x80000000.
9252 @end table
9253
9254 @node CRX Options
9255 @subsection CRX Options
9256 @cindex CRX Options
9257
9258 These options are defined specifically for the CRX ports.
9259
9260 @table @gcctabopt
9261
9262 @item -mmac
9263 @opindex mmac
9264 Enable the use of multiply-accumulate instructions. Disabled by default.
9265
9266 @item -mpush-args
9267 @opindex mpush-args
9268 Push instructions will be used to pass outgoing arguments when functions
9269 are called. Enabled by default.
9270 @end table
9271
9272 @node Darwin Options
9273 @subsection Darwin Options
9274 @cindex Darwin options
9275
9276 These options are defined for all architectures running the Darwin operating
9277 system.
9278
9279 FSF GCC on Darwin does not create ``fat'' object files; it will create
9280 an object file for the single architecture that it was built to
9281 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
9282 @option{-arch} options are used; it does so by running the compiler or
9283 linker multiple times and joining the results together with
9284 @file{lipo}.
9285
9286 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
9287 @samp{i686}) is determined by the flags that specify the ISA
9288 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
9289 @option{-force_cpusubtype_ALL} option can be used to override this.
9290
9291 The Darwin tools vary in their behavior when presented with an ISA
9292 mismatch.  The assembler, @file{as}, will only permit instructions to
9293 be used that are valid for the subtype of the file it is generating,
9294 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
9295 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
9296 and print an error if asked to create a shared library with a less
9297 restrictive subtype than its input files (for instance, trying to put
9298 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
9299 for executables, @file{ld}, will quietly give the executable the most
9300 restrictive subtype of any of its input files.
9301
9302 @table @gcctabopt
9303 @item -F@var{dir}
9304 @opindex F
9305 Add the framework directory @var{dir} to the head of the list of
9306 directories to be searched for header files.  These directories are
9307 interleaved with those specified by @option{-I} options and are
9308 scanned in a left-to-right order.
9309
9310 A framework directory is a directory with frameworks in it.  A
9311 framework is a directory with a @samp{"Headers"} and/or
9312 @samp{"PrivateHeaders"} directory contained directly in it that ends
9313 in @samp{".framework"}.  The name of a framework is the name of this
9314 directory excluding the @samp{".framework"}.  Headers associated with
9315 the framework are found in one of those two directories, with
9316 @samp{"Headers"} being searched first.  A subframework is a framework
9317 directory that is in a framework's @samp{"Frameworks"} directory.
9318 Includes of subframework headers can only appear in a header of a
9319 framework that contains the subframework, or in a sibling subframework
9320 header.  Two subframeworks are siblings if they occur in the same
9321 framework.  A subframework should not have the same name as a
9322 framework, a warning will be issued if this is violated.  Currently a
9323 subframework cannot have subframeworks, in the future, the mechanism
9324 may be extended to support this.  The standard frameworks can be found
9325 in @samp{"/System/Library/Frameworks"} and
9326 @samp{"/Library/Frameworks"}.  An example include looks like
9327 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
9328 the name of the framework and header.h is found in the
9329 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
9330
9331 @item -iframework@var{dir}
9332 @opindex iframework
9333 Like @option{-F} except the directory is a treated as a system
9334 directory.  The main difference between this @option{-iframework} and
9335 @option{-F} is that with @option{-iframework} the compiler does not
9336 warn about constructs contained within header files found via
9337 @var{dir}.  This option is valid only for the C family of languages.
9338
9339 @item -gused
9340 @opindex gused
9341 Emit debugging information for symbols that are used.  For STABS
9342 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
9343 This is by default ON@.
9344
9345 @item -gfull
9346 @opindex gfull
9347 Emit debugging information for all symbols and types.
9348
9349 @item -mmacosx-version-min=@var{version}
9350 The earliest version of MacOS X that this executable will run on
9351 is @var{version}.  Typical values of @var{version} include @code{10.1},
9352 @code{10.2}, and @code{10.3.9}.
9353
9354 If the compiler was built to use the system's headers by default,
9355 then the default for this option is the system version on which the
9356 compiler is running, otherwise the default is to make choices which
9357 are compatible with as many systems and code bases as possible.
9358
9359 @item -mkernel
9360 @opindex mkernel
9361 Enable kernel development mode.  The @option{-mkernel} option sets
9362 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
9363 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
9364 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
9365 applicable.  This mode also sets @option{-mno-altivec},
9366 @option{-msoft-float}, @option{-fno-builtin} and
9367 @option{-mlong-branch} for PowerPC targets.
9368
9369 @item -mone-byte-bool
9370 @opindex mone-byte-bool
9371 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
9372 By default @samp{sizeof(bool)} is @samp{4} when compiling for
9373 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
9374 option has no effect on x86.
9375
9376 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
9377 to generate code that is not binary compatible with code generated
9378 without that switch.  Using this switch may require recompiling all
9379 other modules in a program, including system libraries.  Use this
9380 switch to conform to a non-default data model.
9381
9382 @item -mfix-and-continue
9383 @itemx -ffix-and-continue
9384 @itemx -findirect-data
9385 @opindex mfix-and-continue
9386 @opindex ffix-and-continue
9387 @opindex findirect-data
9388 Generate code suitable for fast turn around development.  Needed to
9389 enable gdb to dynamically load @code{.o} files into already running
9390 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
9391 are provided for backwards compatibility.
9392
9393 @item -all_load
9394 @opindex all_load
9395 Loads all members of static archive libraries.
9396 See man ld(1) for more information.
9397
9398 @item -arch_errors_fatal
9399 @opindex arch_errors_fatal
9400 Cause the errors having to do with files that have the wrong architecture
9401 to be fatal.
9402
9403 @item -bind_at_load
9404 @opindex bind_at_load
9405 Causes the output file to be marked such that the dynamic linker will
9406 bind all undefined references when the file is loaded or launched.
9407
9408 @item -bundle
9409 @opindex bundle
9410 Produce a Mach-o bundle format file.
9411 See man ld(1) for more information.
9412
9413 @item -bundle_loader @var{executable}
9414 @opindex bundle_loader
9415 This option specifies the @var{executable} that will be loading the build
9416 output file being linked.  See man ld(1) for more information.
9417
9418 @item -dynamiclib
9419 @opindex dynamiclib
9420 When passed this option, GCC will produce a dynamic library instead of
9421 an executable when linking, using the Darwin @file{libtool} command.
9422
9423 @item -force_cpusubtype_ALL
9424 @opindex force_cpusubtype_ALL
9425 This causes GCC's output file to have the @var{ALL} subtype, instead of
9426 one controlled by the @option{-mcpu} or @option{-march} option.
9427
9428 @item -allowable_client  @var{client_name}
9429 @itemx -client_name
9430 @itemx -compatibility_version
9431 @itemx -current_version
9432 @itemx -dead_strip
9433 @itemx -dependency-file
9434 @itemx -dylib_file
9435 @itemx -dylinker_install_name
9436 @itemx -dynamic
9437 @itemx -exported_symbols_list
9438 @itemx -filelist
9439 @itemx -flat_namespace
9440 @itemx -force_flat_namespace
9441 @itemx -headerpad_max_install_names
9442 @itemx -image_base
9443 @itemx -init
9444 @itemx -install_name
9445 @itemx -keep_private_externs
9446 @itemx -multi_module
9447 @itemx -multiply_defined
9448 @itemx -multiply_defined_unused
9449 @itemx -noall_load
9450 @itemx -no_dead_strip_inits_and_terms
9451 @itemx -nofixprebinding
9452 @itemx -nomultidefs
9453 @itemx -noprebind
9454 @itemx -noseglinkedit
9455 @itemx -pagezero_size
9456 @itemx -prebind
9457 @itemx -prebind_all_twolevel_modules
9458 @itemx -private_bundle
9459 @itemx -read_only_relocs
9460 @itemx -sectalign
9461 @itemx -sectobjectsymbols
9462 @itemx -whyload
9463 @itemx -seg1addr
9464 @itemx -sectcreate
9465 @itemx -sectobjectsymbols
9466 @itemx -sectorder
9467 @itemx -segaddr
9468 @itemx -segs_read_only_addr
9469 @itemx -segs_read_write_addr
9470 @itemx -seg_addr_table
9471 @itemx -seg_addr_table_filename
9472 @itemx -seglinkedit
9473 @itemx -segprot
9474 @itemx -segs_read_only_addr
9475 @itemx -segs_read_write_addr
9476 @itemx -single_module
9477 @itemx -static
9478 @itemx -sub_library
9479 @itemx -sub_umbrella
9480 @itemx -twolevel_namespace
9481 @itemx -umbrella
9482 @itemx -undefined
9483 @itemx -unexported_symbols_list
9484 @itemx -weak_reference_mismatches
9485 @itemx -whatsloaded
9486 @opindex allowable_client
9487 @opindex client_name
9488 @opindex compatibility_version
9489 @opindex current_version
9490 @opindex dead_strip
9491 @opindex dependency-file
9492 @opindex dylib_file
9493 @opindex dylinker_install_name
9494 @opindex dynamic
9495 @opindex exported_symbols_list
9496 @opindex filelist
9497 @opindex flat_namespace
9498 @opindex force_flat_namespace
9499 @opindex headerpad_max_install_names
9500 @opindex image_base
9501 @opindex init
9502 @opindex install_name
9503 @opindex keep_private_externs
9504 @opindex multi_module
9505 @opindex multiply_defined
9506 @opindex multiply_defined_unused
9507 @opindex noall_load
9508 @opindex no_dead_strip_inits_and_terms
9509 @opindex nofixprebinding
9510 @opindex nomultidefs
9511 @opindex noprebind
9512 @opindex noseglinkedit
9513 @opindex pagezero_size
9514 @opindex prebind
9515 @opindex prebind_all_twolevel_modules
9516 @opindex private_bundle
9517 @opindex read_only_relocs
9518 @opindex sectalign
9519 @opindex sectobjectsymbols
9520 @opindex whyload
9521 @opindex seg1addr
9522 @opindex sectcreate
9523 @opindex sectobjectsymbols
9524 @opindex sectorder
9525 @opindex segaddr
9526 @opindex segs_read_only_addr
9527 @opindex segs_read_write_addr
9528 @opindex seg_addr_table
9529 @opindex seg_addr_table_filename
9530 @opindex seglinkedit
9531 @opindex segprot
9532 @opindex segs_read_only_addr
9533 @opindex segs_read_write_addr
9534 @opindex single_module
9535 @opindex static
9536 @opindex sub_library
9537 @opindex sub_umbrella
9538 @opindex twolevel_namespace
9539 @opindex umbrella
9540 @opindex undefined
9541 @opindex unexported_symbols_list
9542 @opindex weak_reference_mismatches
9543 @opindex whatsloaded
9544 These options are passed to the Darwin linker.  The Darwin linker man page
9545 describes them in detail.
9546 @end table
9547
9548 @node DEC Alpha Options
9549 @subsection DEC Alpha Options
9550
9551 These @samp{-m} options are defined for the DEC Alpha implementations:
9552
9553 @table @gcctabopt
9554 @item -mno-soft-float
9555 @itemx -msoft-float
9556 @opindex mno-soft-float
9557 @opindex msoft-float
9558 Use (do not use) the hardware floating-point instructions for
9559 floating-point operations.  When @option{-msoft-float} is specified,
9560 functions in @file{libgcc.a} will be used to perform floating-point
9561 operations.  Unless they are replaced by routines that emulate the
9562 floating-point operations, or compiled in such a way as to call such
9563 emulations routines, these routines will issue floating-point
9564 operations.   If you are compiling for an Alpha without floating-point
9565 operations, you must ensure that the library is built so as not to call
9566 them.
9567
9568 Note that Alpha implementations without floating-point operations are
9569 required to have floating-point registers.
9570
9571 @item -mfp-reg
9572 @itemx -mno-fp-regs
9573 @opindex mfp-reg
9574 @opindex mno-fp-regs
9575 Generate code that uses (does not use) the floating-point register set.
9576 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9577 register set is not used, floating point operands are passed in integer
9578 registers as if they were integers and floating-point results are passed
9579 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9580 so any function with a floating-point argument or return value called by code
9581 compiled with @option{-mno-fp-regs} must also be compiled with that
9582 option.
9583
9584 A typical use of this option is building a kernel that does not use,
9585 and hence need not save and restore, any floating-point registers.
9586
9587 @item -mieee
9588 @opindex mieee
9589 The Alpha architecture implements floating-point hardware optimized for
9590 maximum performance.  It is mostly compliant with the IEEE floating
9591 point standard.  However, for full compliance, software assistance is
9592 required.  This option generates code fully IEEE compliant code
9593 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9594 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9595 defined during compilation.  The resulting code is less efficient but is
9596 able to correctly support denormalized numbers and exceptional IEEE
9597 values such as not-a-number and plus/minus infinity.  Other Alpha
9598 compilers call this option @option{-ieee_with_no_inexact}.
9599
9600 @item -mieee-with-inexact
9601 @opindex mieee-with-inexact
9602 This is like @option{-mieee} except the generated code also maintains
9603 the IEEE @var{inexact-flag}.  Turning on this option causes the
9604 generated code to implement fully-compliant IEEE math.  In addition to
9605 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9606 macro.  On some Alpha implementations the resulting code may execute
9607 significantly slower than the code generated by default.  Since there is
9608 very little code that depends on the @var{inexact-flag}, you should
9609 normally not specify this option.  Other Alpha compilers call this
9610 option @option{-ieee_with_inexact}.
9611
9612 @item -mfp-trap-mode=@var{trap-mode}
9613 @opindex mfp-trap-mode
9614 This option controls what floating-point related traps are enabled.
9615 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9616 The trap mode can be set to one of four values:
9617
9618 @table @samp
9619 @item n
9620 This is the default (normal) setting.  The only traps that are enabled
9621 are the ones that cannot be disabled in software (e.g., division by zero
9622 trap).
9623
9624 @item u
9625 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9626 as well.
9627
9628 @item su
9629 Like @samp{u}, but the instructions are marked to be safe for software
9630 completion (see Alpha architecture manual for details).
9631
9632 @item sui
9633 Like @samp{su}, but inexact traps are enabled as well.
9634 @end table
9635
9636 @item -mfp-rounding-mode=@var{rounding-mode}
9637 @opindex mfp-rounding-mode
9638 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9639 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9640 of:
9641
9642 @table @samp
9643 @item n
9644 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9645 the nearest machine number or towards the even machine number in case
9646 of a tie.
9647
9648 @item m
9649 Round towards minus infinity.
9650
9651 @item c
9652 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9653
9654 @item d
9655 Dynamic rounding mode.  A field in the floating point control register
9656 (@var{fpcr}, see Alpha architecture reference manual) controls the
9657 rounding mode in effect.  The C library initializes this register for
9658 rounding towards plus infinity.  Thus, unless your program modifies the
9659 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9660 @end table
9661
9662 @item -mtrap-precision=@var{trap-precision}
9663 @opindex mtrap-precision
9664 In the Alpha architecture, floating point traps are imprecise.  This
9665 means without software assistance it is impossible to recover from a
9666 floating trap and program execution normally needs to be terminated.
9667 GCC can generate code that can assist operating system trap handlers
9668 in determining the exact location that caused a floating point trap.
9669 Depending on the requirements of an application, different levels of
9670 precisions can be selected:
9671
9672 @table @samp
9673 @item p
9674 Program precision.  This option is the default and means a trap handler
9675 can only identify which program caused a floating point exception.
9676
9677 @item f
9678 Function precision.  The trap handler can determine the function that
9679 caused a floating point exception.
9680
9681 @item i
9682 Instruction precision.  The trap handler can determine the exact
9683 instruction that caused a floating point exception.
9684 @end table
9685
9686 Other Alpha compilers provide the equivalent options called
9687 @option{-scope_safe} and @option{-resumption_safe}.
9688
9689 @item -mieee-conformant
9690 @opindex mieee-conformant
9691 This option marks the generated code as IEEE conformant.  You must not
9692 use this option unless you also specify @option{-mtrap-precision=i} and either
9693 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9694 is to emit the line @samp{.eflag 48} in the function prologue of the
9695 generated assembly file.  Under DEC Unix, this has the effect that
9696 IEEE-conformant math library routines will be linked in.
9697
9698 @item -mbuild-constants
9699 @opindex mbuild-constants
9700 Normally GCC examines a 32- or 64-bit integer constant to
9701 see if it can construct it from smaller constants in two or three
9702 instructions.  If it cannot, it will output the constant as a literal and
9703 generate code to load it from the data segment at runtime.
9704
9705 Use this option to require GCC to construct @emph{all} integer constants
9706 using code, even if it takes more instructions (the maximum is six).
9707
9708 You would typically use this option to build a shared library dynamic
9709 loader.  Itself a shared library, it must relocate itself in memory
9710 before it can find the variables and constants in its own data segment.
9711
9712 @item -malpha-as
9713 @itemx -mgas
9714 @opindex malpha-as
9715 @opindex mgas
9716 Select whether to generate code to be assembled by the vendor-supplied
9717 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9718
9719 @item -mbwx
9720 @itemx -mno-bwx
9721 @itemx -mcix
9722 @itemx -mno-cix
9723 @itemx -mfix
9724 @itemx -mno-fix
9725 @itemx -mmax
9726 @itemx -mno-max
9727 @opindex mbwx
9728 @opindex mno-bwx
9729 @opindex mcix
9730 @opindex mno-cix
9731 @opindex mfix
9732 @opindex mno-fix
9733 @opindex mmax
9734 @opindex mno-max
9735 Indicate whether GCC should generate code to use the optional BWX,
9736 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9737 sets supported by the CPU type specified via @option{-mcpu=} option or that
9738 of the CPU on which GCC was built if none was specified.
9739
9740 @item -mfloat-vax
9741 @itemx -mfloat-ieee
9742 @opindex mfloat-vax
9743 @opindex mfloat-ieee
9744 Generate code that uses (does not use) VAX F and G floating point
9745 arithmetic instead of IEEE single and double precision.
9746
9747 @item -mexplicit-relocs
9748 @itemx -mno-explicit-relocs
9749 @opindex mexplicit-relocs
9750 @opindex mno-explicit-relocs
9751 Older Alpha assemblers provided no way to generate symbol relocations
9752 except via assembler macros.  Use of these macros does not allow
9753 optimal instruction scheduling.  GNU binutils as of version 2.12
9754 supports a new syntax that allows the compiler to explicitly mark
9755 which relocations should apply to which instructions.  This option
9756 is mostly useful for debugging, as GCC detects the capabilities of
9757 the assembler when it is built and sets the default accordingly.
9758
9759 @item -msmall-data
9760 @itemx -mlarge-data
9761 @opindex msmall-data
9762 @opindex mlarge-data
9763 When @option{-mexplicit-relocs} is in effect, static data is
9764 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9765 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9766 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9767 16-bit relocations off of the @code{$gp} register.  This limits the
9768 size of the small data area to 64KB, but allows the variables to be
9769 directly accessed via a single instruction.
9770
9771 The default is @option{-mlarge-data}.  With this option the data area
9772 is limited to just below 2GB@.  Programs that require more than 2GB of
9773 data must use @code{malloc} or @code{mmap} to allocate the data in the
9774 heap instead of in the program's data segment.
9775
9776 When generating code for shared libraries, @option{-fpic} implies
9777 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9778
9779 @item -msmall-text
9780 @itemx -mlarge-text
9781 @opindex msmall-text
9782 @opindex mlarge-text
9783 When @option{-msmall-text} is used, the compiler assumes that the
9784 code of the entire program (or shared library) fits in 4MB, and is
9785 thus reachable with a branch instruction.  When @option{-msmall-data}
9786 is used, the compiler can assume that all local symbols share the
9787 same @code{$gp} value, and thus reduce the number of instructions
9788 required for a function call from 4 to 1.
9789
9790 The default is @option{-mlarge-text}.
9791
9792 @item -mcpu=@var{cpu_type}
9793 @opindex mcpu
9794 Set the instruction set and instruction scheduling parameters for
9795 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9796 style name or the corresponding chip number.  GCC supports scheduling
9797 parameters for the EV4, EV5 and EV6 family of processors and will
9798 choose the default values for the instruction set from the processor
9799 you specify.  If you do not specify a processor type, GCC will default
9800 to the processor on which the compiler was built.
9801
9802 Supported values for @var{cpu_type} are
9803
9804 @table @samp
9805 @item ev4
9806 @itemx ev45
9807 @itemx 21064
9808 Schedules as an EV4 and has no instruction set extensions.
9809
9810 @item ev5
9811 @itemx 21164
9812 Schedules as an EV5 and has no instruction set extensions.
9813
9814 @item ev56
9815 @itemx 21164a
9816 Schedules as an EV5 and supports the BWX extension.
9817
9818 @item pca56
9819 @itemx 21164pc
9820 @itemx 21164PC
9821 Schedules as an EV5 and supports the BWX and MAX extensions.
9822
9823 @item ev6
9824 @itemx 21264
9825 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9826
9827 @item ev67
9828 @itemx 21264a
9829 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9830 @end table
9831
9832 @item -mtune=@var{cpu_type}
9833 @opindex mtune
9834 Set only the instruction scheduling parameters for machine type
9835 @var{cpu_type}.  The instruction set is not changed.
9836
9837 @item -mmemory-latency=@var{time}
9838 @opindex mmemory-latency
9839 Sets the latency the scheduler should assume for typical memory
9840 references as seen by the application.  This number is highly
9841 dependent on the memory access patterns used by the application
9842 and the size of the external cache on the machine.
9843
9844 Valid options for @var{time} are
9845
9846 @table @samp
9847 @item @var{number}
9848 A decimal number representing clock cycles.
9849
9850 @item L1
9851 @itemx L2
9852 @itemx L3
9853 @itemx main
9854 The compiler contains estimates of the number of clock cycles for
9855 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9856 (also called Dcache, Scache, and Bcache), as well as to main memory.
9857 Note that L3 is only valid for EV5.
9858
9859 @end table
9860 @end table
9861
9862 @node DEC Alpha/VMS Options
9863 @subsection DEC Alpha/VMS Options
9864
9865 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9866
9867 @table @gcctabopt
9868 @item -mvms-return-codes
9869 @opindex mvms-return-codes
9870 Return VMS condition codes from main.  The default is to return POSIX
9871 style condition (e.g.@: error) codes.
9872 @end table
9873
9874 @node FRV Options
9875 @subsection FRV Options
9876 @cindex FRV Options
9877
9878 @table @gcctabopt
9879 @item -mgpr-32
9880 @opindex mgpr-32
9881
9882 Only use the first 32 general purpose registers.
9883
9884 @item -mgpr-64
9885 @opindex mgpr-64
9886
9887 Use all 64 general purpose registers.
9888
9889 @item -mfpr-32
9890 @opindex mfpr-32
9891
9892 Use only the first 32 floating point registers.
9893
9894 @item -mfpr-64
9895 @opindex mfpr-64
9896
9897 Use all 64 floating point registers
9898
9899 @item -mhard-float
9900 @opindex mhard-float
9901
9902 Use hardware instructions for floating point operations.
9903
9904 @item -msoft-float
9905 @opindex msoft-float
9906
9907 Use library routines for floating point operations.
9908
9909 @item -malloc-cc
9910 @opindex malloc-cc
9911
9912 Dynamically allocate condition code registers.
9913
9914 @item -mfixed-cc
9915 @opindex mfixed-cc
9916
9917 Do not try to dynamically allocate condition code registers, only
9918 use @code{icc0} and @code{fcc0}.
9919
9920 @item -mdword
9921 @opindex mdword
9922
9923 Change ABI to use double word insns.
9924
9925 @item -mno-dword
9926 @opindex mno-dword
9927
9928 Do not use double word instructions.
9929
9930 @item -mdouble
9931 @opindex mdouble
9932
9933 Use floating point double instructions.
9934
9935 @item -mno-double
9936 @opindex mno-double
9937
9938 Do not use floating point double instructions.
9939
9940 @item -mmedia
9941 @opindex mmedia
9942
9943 Use media instructions.
9944
9945 @item -mno-media
9946 @opindex mno-media
9947
9948 Do not use media instructions.
9949
9950 @item -mmuladd
9951 @opindex mmuladd
9952
9953 Use multiply and add/subtract instructions.
9954
9955 @item -mno-muladd
9956 @opindex mno-muladd
9957
9958 Do not use multiply and add/subtract instructions.
9959
9960 @item -mfdpic
9961 @opindex mfdpic
9962
9963 Select the FDPIC ABI, that uses function descriptors to represent
9964 pointers to functions.  Without any PIC/PIE-related options, it
9965 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9966 assumes GOT entries and small data are within a 12-bit range from the
9967 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9968 are computed with 32 bits.
9969 With a @samp{bfin-elf} target, this option implies @option{-msim}.
9970
9971 @item -minline-plt
9972 @opindex minline-plt
9973
9974 Enable inlining of PLT entries in function calls to functions that are
9975 not known to bind locally.  It has no effect without @option{-mfdpic}.
9976 It's enabled by default if optimizing for speed and compiling for
9977 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9978 optimization option such as @option{-O3} or above is present in the
9979 command line.
9980
9981 @item -mTLS
9982 @opindex TLS
9983
9984 Assume a large TLS segment when generating thread-local code.
9985
9986 @item -mtls
9987 @opindex tls
9988
9989 Do not assume a large TLS segment when generating thread-local code.
9990
9991 @item -mgprel-ro
9992 @opindex mgprel-ro
9993
9994 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9995 that is known to be in read-only sections.  It's enabled by default,
9996 except for @option{-fpic} or @option{-fpie}: even though it may help
9997 make the global offset table smaller, it trades 1 instruction for 4.
9998 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9999 one of which may be shared by multiple symbols, and it avoids the need
10000 for a GOT entry for the referenced symbol, so it's more likely to be a
10001 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
10002
10003 @item -multilib-library-pic
10004 @opindex multilib-library-pic
10005
10006 Link with the (library, not FD) pic libraries.  It's implied by
10007 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
10008 @option{-fpic} without @option{-mfdpic}.  You should never have to use
10009 it explicitly.
10010
10011 @item -mlinked-fp
10012 @opindex mlinked-fp
10013
10014 Follow the EABI requirement of always creating a frame pointer whenever
10015 a stack frame is allocated.  This option is enabled by default and can
10016 be disabled with @option{-mno-linked-fp}.
10017
10018 @item -mlong-calls
10019 @opindex mlong-calls
10020
10021 Use indirect addressing to call functions outside the current
10022 compilation unit.  This allows the functions to be placed anywhere
10023 within the 32-bit address space.
10024
10025 @item -malign-labels
10026 @opindex malign-labels
10027
10028 Try to align labels to an 8-byte boundary by inserting nops into the
10029 previous packet.  This option only has an effect when VLIW packing
10030 is enabled.  It doesn't create new packets; it merely adds nops to
10031 existing ones.
10032
10033 @item -mlibrary-pic
10034 @opindex mlibrary-pic
10035
10036 Generate position-independent EABI code.
10037
10038 @item -macc-4
10039 @opindex macc-4
10040
10041 Use only the first four media accumulator registers.
10042
10043 @item -macc-8
10044 @opindex macc-8
10045
10046 Use all eight media accumulator registers.
10047
10048 @item -mpack
10049 @opindex mpack
10050
10051 Pack VLIW instructions.
10052
10053 @item -mno-pack
10054 @opindex mno-pack
10055
10056 Do not pack VLIW instructions.
10057
10058 @item -mno-eflags
10059 @opindex mno-eflags
10060
10061 Do not mark ABI switches in e_flags.
10062
10063 @item -mcond-move
10064 @opindex mcond-move
10065
10066 Enable the use of conditional-move instructions (default).
10067
10068 This switch is mainly for debugging the compiler and will likely be removed
10069 in a future version.
10070
10071 @item -mno-cond-move
10072 @opindex mno-cond-move
10073
10074 Disable the use of conditional-move instructions.
10075
10076 This switch is mainly for debugging the compiler and will likely be removed
10077 in a future version.
10078
10079 @item -mscc
10080 @opindex mscc
10081
10082 Enable the use of conditional set instructions (default).
10083
10084 This switch is mainly for debugging the compiler and will likely be removed
10085 in a future version.
10086
10087 @item -mno-scc
10088 @opindex mno-scc
10089
10090 Disable the use of conditional set instructions.
10091
10092 This switch is mainly for debugging the compiler and will likely be removed
10093 in a future version.
10094
10095 @item -mcond-exec
10096 @opindex mcond-exec
10097
10098 Enable the use of conditional execution (default).
10099
10100 This switch is mainly for debugging the compiler and will likely be removed
10101 in a future version.
10102
10103 @item -mno-cond-exec
10104 @opindex mno-cond-exec
10105
10106 Disable the use of conditional execution.
10107
10108 This switch is mainly for debugging the compiler and will likely be removed
10109 in a future version.
10110
10111 @item -mvliw-branch
10112 @opindex mvliw-branch
10113
10114 Run a pass to pack branches into VLIW instructions (default).
10115
10116 This switch is mainly for debugging the compiler and will likely be removed
10117 in a future version.
10118
10119 @item -mno-vliw-branch
10120 @opindex mno-vliw-branch
10121
10122 Do not run a pass to pack branches into VLIW instructions.
10123
10124 This switch is mainly for debugging the compiler and will likely be removed
10125 in a future version.
10126
10127 @item -mmulti-cond-exec
10128 @opindex mmulti-cond-exec
10129
10130 Enable optimization of @code{&&} and @code{||} in conditional execution
10131 (default).
10132
10133 This switch is mainly for debugging the compiler and will likely be removed
10134 in a future version.
10135
10136 @item -mno-multi-cond-exec
10137 @opindex mno-multi-cond-exec
10138
10139 Disable optimization of @code{&&} and @code{||} in conditional execution.
10140
10141 This switch is mainly for debugging the compiler and will likely be removed
10142 in a future version.
10143
10144 @item -mnested-cond-exec
10145 @opindex mnested-cond-exec
10146
10147 Enable nested conditional execution optimizations (default).
10148
10149 This switch is mainly for debugging the compiler and will likely be removed
10150 in a future version.
10151
10152 @item -mno-nested-cond-exec
10153 @opindex mno-nested-cond-exec
10154
10155 Disable nested conditional execution optimizations.
10156
10157 This switch is mainly for debugging the compiler and will likely be removed
10158 in a future version.
10159
10160 @item -moptimize-membar
10161 @opindex moptimize-membar
10162
10163 This switch removes redundant @code{membar} instructions from the
10164 compiler generated code.  It is enabled by default.
10165
10166 @item -mno-optimize-membar
10167 @opindex mno-optimize-membar
10168
10169 This switch disables the automatic removal of redundant @code{membar}
10170 instructions from the generated code.
10171
10172 @item -mtomcat-stats
10173 @opindex mtomcat-stats
10174
10175 Cause gas to print out tomcat statistics.
10176
10177 @item -mcpu=@var{cpu}
10178 @opindex mcpu
10179
10180 Select the processor type for which to generate code.  Possible values are
10181 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
10182 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
10183
10184 @end table
10185
10186 @node GNU/Linux Options
10187 @subsection GNU/Linux Options
10188
10189 These @samp{-m} options are defined for GNU/Linux targets:
10190
10191 @table @gcctabopt
10192 @item -mglibc
10193 @opindex mglibc
10194 Use the GNU C library instead of uClibc.  This is the default except
10195 on @samp{*-*-linux-*uclibc*} targets.
10196
10197 @item -muclibc
10198 @opindex muclibc
10199 Use uClibc instead of the GNU C library.  This is the default on
10200 @samp{*-*-linux-*uclibc*} targets.
10201 @end table
10202
10203 @node H8/300 Options
10204 @subsection H8/300 Options
10205
10206 These @samp{-m} options are defined for the H8/300 implementations:
10207
10208 @table @gcctabopt
10209 @item -mrelax
10210 @opindex mrelax
10211 Shorten some address references at link time, when possible; uses the
10212 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
10213 ld, Using ld}, for a fuller description.
10214
10215 @item -mh
10216 @opindex mh
10217 Generate code for the H8/300H@.
10218
10219 @item -ms
10220 @opindex ms
10221 Generate code for the H8S@.
10222
10223 @item -mn
10224 @opindex mn
10225 Generate code for the H8S and H8/300H in the normal mode.  This switch
10226 must be used either with @option{-mh} or @option{-ms}.
10227
10228 @item -ms2600
10229 @opindex ms2600
10230 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
10231
10232 @item -mint32
10233 @opindex mint32
10234 Make @code{int} data 32 bits by default.
10235
10236 @item -malign-300
10237 @opindex malign-300
10238 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
10239 The default for the H8/300H and H8S is to align longs and floats on 4
10240 byte boundaries.
10241 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
10242 This option has no effect on the H8/300.
10243 @end table
10244
10245 @node HPPA Options
10246 @subsection HPPA Options
10247 @cindex HPPA Options
10248
10249 These @samp{-m} options are defined for the HPPA family of computers:
10250
10251 @table @gcctabopt
10252 @item -march=@var{architecture-type}
10253 @opindex march
10254 Generate code for the specified architecture.  The choices for
10255 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
10256 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
10257 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
10258 architecture option for your machine.  Code compiled for lower numbered
10259 architectures will run on higher numbered architectures, but not the
10260 other way around.
10261
10262 @item -mpa-risc-1-0
10263 @itemx -mpa-risc-1-1
10264 @itemx -mpa-risc-2-0
10265 @opindex mpa-risc-1-0
10266 @opindex mpa-risc-1-1
10267 @opindex mpa-risc-2-0
10268 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
10269
10270 @item -mbig-switch
10271 @opindex mbig-switch
10272 Generate code suitable for big switch tables.  Use this option only if
10273 the assembler/linker complain about out of range branches within a switch
10274 table.
10275
10276 @item -mjump-in-delay
10277 @opindex mjump-in-delay
10278 Fill delay slots of function calls with unconditional jump instructions
10279 by modifying the return pointer for the function call to be the target
10280 of the conditional jump.
10281
10282 @item -mdisable-fpregs
10283 @opindex mdisable-fpregs
10284 Prevent floating point registers from being used in any manner.  This is
10285 necessary for compiling kernels which perform lazy context switching of
10286 floating point registers.  If you use this option and attempt to perform
10287 floating point operations, the compiler will abort.
10288
10289 @item -mdisable-indexing
10290 @opindex mdisable-indexing
10291 Prevent the compiler from using indexing address modes.  This avoids some
10292 rather obscure problems when compiling MIG generated code under MACH@.
10293
10294 @item -mno-space-regs
10295 @opindex mno-space-regs
10296 Generate code that assumes the target has no space registers.  This allows
10297 GCC to generate faster indirect calls and use unscaled index address modes.
10298
10299 Such code is suitable for level 0 PA systems and kernels.
10300
10301 @item -mfast-indirect-calls
10302 @opindex mfast-indirect-calls
10303 Generate code that assumes calls never cross space boundaries.  This
10304 allows GCC to emit code which performs faster indirect calls.
10305
10306 This option will not work in the presence of shared libraries or nested
10307 functions.
10308
10309 @item -mfixed-range=@var{register-range}
10310 @opindex mfixed-range
10311 Generate code treating the given register range as fixed registers.
10312 A fixed register is one that the register allocator can not use.  This is
10313 useful when compiling kernel code.  A register range is specified as
10314 two registers separated by a dash.  Multiple register ranges can be
10315 specified separated by a comma.
10316
10317 @item -mlong-load-store
10318 @opindex mlong-load-store
10319 Generate 3-instruction load and store sequences as sometimes required by
10320 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
10321 the HP compilers.
10322
10323 @item -mportable-runtime
10324 @opindex mportable-runtime
10325 Use the portable calling conventions proposed by HP for ELF systems.
10326
10327 @item -mgas
10328 @opindex mgas
10329 Enable the use of assembler directives only GAS understands.
10330
10331 @item -mschedule=@var{cpu-type}
10332 @opindex mschedule
10333 Schedule code according to the constraints for the machine type
10334 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
10335 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
10336 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
10337 proper scheduling option for your machine.  The default scheduling is
10338 @samp{8000}.
10339
10340 @item -mlinker-opt
10341 @opindex mlinker-opt
10342 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
10343 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
10344 linkers in which they give bogus error messages when linking some programs.
10345
10346 @item -msoft-float
10347 @opindex msoft-float
10348 Generate output containing library calls for floating point.
10349 @strong{Warning:} the requisite libraries are not available for all HPPA
10350 targets.  Normally the facilities of the machine's usual C compiler are
10351 used, but this cannot be done directly in cross-compilation.  You must make
10352 your own arrangements to provide suitable library functions for
10353 cross-compilation.
10354
10355 @option{-msoft-float} changes the calling convention in the output file;
10356 therefore, it is only useful if you compile @emph{all} of a program with
10357 this option.  In particular, you need to compile @file{libgcc.a}, the
10358 library that comes with GCC, with @option{-msoft-float} in order for
10359 this to work.
10360
10361 @item -msio
10362 @opindex msio
10363 Generate the predefine, @code{_SIO}, for server IO@.  The default is
10364 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
10365 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
10366 options are available under HP-UX and HI-UX@.
10367
10368 @item -mgnu-ld
10369 @opindex gnu-ld
10370 Use GNU ld specific options.  This passes @option{-shared} to ld when
10371 building a shared library.  It is the default when GCC is configured,
10372 explicitly or implicitly, with the GNU linker.  This option does not
10373 have any affect on which ld is called, it only changes what parameters
10374 are passed to that ld.  The ld that is called is determined by the
10375 @option{--with-ld} configure option, GCC's program search path, and
10376 finally by the user's @env{PATH}.  The linker used by GCC can be printed
10377 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
10378 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
10379
10380 @item -mhp-ld
10381 @opindex hp-ld
10382 Use HP ld specific options.  This passes @option{-b} to ld when building
10383 a shared library and passes @option{+Accept TypeMismatch} to ld on all
10384 links.  It is the default when GCC is configured, explicitly or
10385 implicitly, with the HP linker.  This option does not have any affect on
10386 which ld is called, it only changes what parameters are passed to that
10387 ld.  The ld that is called is determined by the @option{--with-ld}
10388 configure option, GCC's program search path, and finally by the user's
10389 @env{PATH}.  The linker used by GCC can be printed using @samp{which
10390 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
10391 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
10392
10393 @item -mlong-calls
10394 @opindex mno-long-calls
10395 Generate code that uses long call sequences.  This ensures that a call
10396 is always able to reach linker generated stubs.  The default is to generate
10397 long calls only when the distance from the call site to the beginning
10398 of the function or translation unit, as the case may be, exceeds a
10399 predefined limit set by the branch type being used.  The limits for
10400 normal calls are 7,600,000 and 240,000 bytes, respectively for the
10401 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
10402 240,000 bytes.
10403
10404 Distances are measured from the beginning of functions when using the
10405 @option{-ffunction-sections} option, or when using the @option{-mgas}
10406 and @option{-mno-portable-runtime} options together under HP-UX with
10407 the SOM linker.
10408
10409 It is normally not desirable to use this option as it will degrade
10410 performance.  However, it may be useful in large applications,
10411 particularly when partial linking is used to build the application.
10412
10413 The types of long calls used depends on the capabilities of the
10414 assembler and linker, and the type of code being generated.  The
10415 impact on systems that support long absolute calls, and long pic
10416 symbol-difference or pc-relative calls should be relatively small.
10417 However, an indirect call is used on 32-bit ELF systems in pic code
10418 and it is quite long.
10419
10420 @item -munix=@var{unix-std}
10421 @opindex march
10422 Generate compiler predefines and select a startfile for the specified
10423 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10424 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10425 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10426 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10427 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10428 and later.
10429
10430 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10431 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10432 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10433 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10434 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10435 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10436
10437 It is @emph{important} to note that this option changes the interfaces
10438 for various library routines.  It also affects the operational behavior
10439 of the C library.  Thus, @emph{extreme} care is needed in using this
10440 option.
10441
10442 Library code that is intended to operate with more than one UNIX
10443 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10444 as appropriate.  Most GNU software doesn't provide this capability.
10445
10446 @item -nolibdld
10447 @opindex nolibdld
10448 Suppress the generation of link options to search libdld.sl when the
10449 @option{-static} option is specified on HP-UX 10 and later.
10450
10451 @item -static
10452 @opindex static
10453 The HP-UX implementation of setlocale in libc has a dependency on
10454 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10455 when the @option{-static} option is specified, special link options
10456 are needed to resolve this dependency.
10457
10458 On HP-UX 10 and later, the GCC driver adds the necessary options to
10459 link with libdld.sl when the @option{-static} option is specified.
10460 This causes the resulting binary to be dynamic.  On the 64-bit port,
10461 the linkers generate dynamic binaries by default in any case.  The
10462 @option{-nolibdld} option can be used to prevent the GCC driver from
10463 adding these link options.
10464
10465 @item -threads
10466 @opindex threads
10467 Add support for multithreading with the @dfn{dce thread} library
10468 under HP-UX@.  This option sets flags for both the preprocessor and
10469 linker.
10470 @end table
10471
10472 @node i386 and x86-64 Options
10473 @subsection Intel 386 and AMD x86-64 Options
10474 @cindex i386 Options
10475 @cindex x86-64 Options
10476 @cindex Intel 386 Options
10477 @cindex AMD x86-64 Options
10478
10479 These @samp{-m} options are defined for the i386 and x86-64 family of
10480 computers:
10481
10482 @table @gcctabopt
10483 @item -mtune=@var{cpu-type}
10484 @opindex mtune
10485 Tune to @var{cpu-type} everything applicable about the generated code, except
10486 for the ABI and the set of available instructions.  The choices for
10487 @var{cpu-type} are:
10488 @table @emph
10489 @item generic
10490 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10491 If you know the CPU on which your code will run, then you should use
10492 the corresponding @option{-mtune} option instead of
10493 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10494 of your application will have, then you should use this option.
10495
10496 As new processors are deployed in the marketplace, the behavior of this
10497 option will change.  Therefore, if you upgrade to a newer version of
10498 GCC, the code generated option will change to reflect the processors
10499 that were most common when that version of GCC was released.
10500
10501 There is no @option{-march=generic} option because @option{-march}
10502 indicates the instruction set the compiler can use, and there is no
10503 generic instruction set applicable to all processors.  In contrast,
10504 @option{-mtune} indicates the processor (or, in this case, collection of
10505 processors) for which the code is optimized.
10506 @item native
10507 This selects the CPU to tune for at compilation time by determining
10508 the processor type of the compiling machine.  Using @option{-mtune=native}
10509 will produce code optimized for the local machine under the constraints
10510 of the selected instruction set.  Using @option{-march=native} will
10511 enable all instruction subsets supported by the local machine (hence
10512 the result might not run on different machines).
10513 @item i386
10514 Original Intel's i386 CPU@.
10515 @item i486
10516 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10517 @item i586, pentium
10518 Intel Pentium CPU with no MMX support.
10519 @item pentium-mmx
10520 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10521 @item pentiumpro
10522 Intel PentiumPro CPU@.
10523 @item i686
10524 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10525 instruction set will be used, so the code will run on all i686 family chips.
10526 @item pentium2
10527 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10528 @item pentium3, pentium3m
10529 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10530 support.
10531 @item pentium-m
10532 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10533 support.  Used by Centrino notebooks.
10534 @item pentium4, pentium4m
10535 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10536 @item prescott
10537 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10538 set support.
10539 @item nocona
10540 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10541 SSE2 and SSE3 instruction set support.
10542 @item core2
10543 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10544 instruction set support.
10545 @item k6
10546 AMD K6 CPU with MMX instruction set support.
10547 @item k6-2, k6-3
10548 Improved versions of AMD K6 CPU with MMX and 3dNOW!@: instruction set support.
10549 @item athlon, athlon-tbird
10550 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and SSE prefetch instructions
10551 support.
10552 @item athlon-4, athlon-xp, athlon-mp
10553 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and full SSE
10554 instruction set support.
10555 @item k8, opteron, athlon64, athlon-fx
10556 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10557 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW!@: and 64-bit instruction set extensions.)
10558 @item k8-sse3, opteron-sse3, athlon64-sse3
10559 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10560 @item amdfam10, barcelona
10561 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10562 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10563 instruction set extensions.)
10564 @item winchip-c6
10565 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10566 set support.
10567 @item winchip2
10568 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!@:
10569 instruction set support.
10570 @item c3
10571 Via C3 CPU with MMX and 3dNOW!@: instruction set support.  (No scheduling is
10572 implemented for this chip.)
10573 @item c3-2
10574 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10575 implemented for this chip.)
10576 @item geode
10577 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10578 @end table
10579
10580 While picking a specific @var{cpu-type} will schedule things appropriately
10581 for that particular chip, the compiler will not generate any code that
10582 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10583 being used.
10584
10585 @item -march=@var{cpu-type}
10586 @opindex march
10587 Generate instructions for the machine type @var{cpu-type}.  The choices
10588 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10589 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10590
10591 @item -mcpu=@var{cpu-type}
10592 @opindex mcpu
10593 A deprecated synonym for @option{-mtune}.
10594
10595 @item -mfpmath=@var{unit}
10596 @opindex march
10597 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10598 for @var{unit} are:
10599
10600 @table @samp
10601 @item 387
10602 Use the standard 387 floating point coprocessor present majority of chips and
10603 emulated otherwise.  Code compiled with this option will run almost everywhere.
10604 The temporary results are computed in 80bit precision instead of precision
10605 specified by the type resulting in slightly different results compared to most
10606 of other chips.  See @option{-ffloat-store} for more detailed description.
10607
10608 This is the default choice for i386 compiler.
10609
10610 @item sse
10611 Use scalar floating point instructions present in the SSE instruction set.
10612 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10613 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10614 instruction set supports only single precision arithmetics, thus the double and
10615 extended precision arithmetics is still done using 387.  Later version, present
10616 only in Pentium4 and the future AMD x86-64 chips supports double precision
10617 arithmetics too.
10618
10619 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10620 or @option{-msse2} switches to enable SSE extensions and make this option
10621 effective.  For the x86-64 compiler, these extensions are enabled by default.
10622
10623 The resulting code should be considerably faster in the majority of cases and avoid
10624 the numerical instability problems of 387 code, but may break some existing
10625 code that expects temporaries to be 80bit.
10626
10627 This is the default choice for the x86-64 compiler.
10628
10629 @item sse,387
10630 @itemx sse+387
10631 @itemx both
10632 Attempt to utilize both instruction sets at once.  This effectively double the
10633 amount of available registers and on chips with separate execution units for
10634 387 and SSE the execution resources too.  Use this option with care, as it is
10635 still experimental, because the GCC register allocator does not model separate
10636 functional units well resulting in instable performance.
10637 @end table
10638
10639 @item -masm=@var{dialect}
10640 @opindex masm=@var{dialect}
10641 Output asm instructions using selected @var{dialect}.  Supported
10642 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10643 not support @samp{intel}.
10644
10645 @item -mieee-fp
10646 @itemx -mno-ieee-fp
10647 @opindex mieee-fp
10648 @opindex mno-ieee-fp
10649 Control whether or not the compiler uses IEEE floating point
10650 comparisons.  These handle correctly the case where the result of a
10651 comparison is unordered.
10652
10653 @item -msoft-float
10654 @opindex msoft-float
10655 Generate output containing library calls for floating point.
10656 @strong{Warning:} the requisite libraries are not part of GCC@.
10657 Normally the facilities of the machine's usual C compiler are used, but
10658 this can't be done directly in cross-compilation.  You must make your
10659 own arrangements to provide suitable library functions for
10660 cross-compilation.
10661
10662 On machines where a function returns floating point results in the 80387
10663 register stack, some floating point opcodes may be emitted even if
10664 @option{-msoft-float} is used.
10665
10666 @item -mno-fp-ret-in-387
10667 @opindex mno-fp-ret-in-387
10668 Do not use the FPU registers for return values of functions.
10669
10670 The usual calling convention has functions return values of types
10671 @code{float} and @code{double} in an FPU register, even if there
10672 is no FPU@.  The idea is that the operating system should emulate
10673 an FPU@.
10674
10675 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10676 in ordinary CPU registers instead.
10677
10678 @item -mno-fancy-math-387
10679 @opindex mno-fancy-math-387
10680 Some 387 emulators do not support the @code{sin}, @code{cos} and
10681 @code{sqrt} instructions for the 387.  Specify this option to avoid
10682 generating those instructions.  This option is the default on FreeBSD,
10683 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10684 indicates that the target cpu will always have an FPU and so the
10685 instruction will not need emulation.  As of revision 2.6.1, these
10686 instructions are not generated unless you also use the
10687 @option{-funsafe-math-optimizations} switch.
10688
10689 @item -malign-double
10690 @itemx -mno-align-double
10691 @opindex malign-double
10692 @opindex mno-align-double
10693 Control whether GCC aligns @code{double}, @code{long double}, and
10694 @code{long long} variables on a two word boundary or a one word
10695 boundary.  Aligning @code{double} variables on a two word boundary will
10696 produce code that runs somewhat faster on a @samp{Pentium} at the
10697 expense of more memory.
10698
10699 On x86-64, @option{-malign-double} is enabled by default.
10700
10701 @strong{Warning:} if you use the @option{-malign-double} switch,
10702 structures containing the above types will be aligned differently than
10703 the published application binary interface specifications for the 386
10704 and will not be binary compatible with structures in code compiled
10705 without that switch.
10706
10707 @item -m96bit-long-double
10708 @itemx -m128bit-long-double
10709 @opindex m96bit-long-double
10710 @opindex m128bit-long-double
10711 These switches control the size of @code{long double} type.  The i386
10712 application binary interface specifies the size to be 96 bits,
10713 so @option{-m96bit-long-double} is the default in 32 bit mode.
10714
10715 Modern architectures (Pentium and newer) would prefer @code{long double}
10716 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10717 conforming to the ABI, this would not be possible.  So specifying a
10718 @option{-m128bit-long-double} will align @code{long double}
10719 to a 16 byte boundary by padding the @code{long double} with an additional
10720 32 bit zero.
10721
10722 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10723 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10724
10725 Notice that neither of these options enable any extra precision over the x87
10726 standard of 80 bits for a @code{long double}.
10727
10728 @strong{Warning:} if you override the default value for your target ABI, the
10729 structures and arrays containing @code{long double} variables will change
10730 their size as well as function calling convention for function taking
10731 @code{long double} will be modified.  Hence they will not be binary
10732 compatible with arrays or structures in code compiled without that switch.
10733
10734 @item -mmlarge-data-threshold=@var{number}
10735 @opindex mlarge-data-threshold=@var{number}
10736 When @option{-mcmodel=medium} is specified, the data greater than
10737 @var{threshold} are placed in large data section.  This value must be the
10738 same across all object linked into the binary and defaults to 65535.
10739
10740 @item -mrtd
10741 @opindex mrtd
10742 Use a different function-calling convention, in which functions that
10743 take a fixed number of arguments return with the @code{ret} @var{num}
10744 instruction, which pops their arguments while returning.  This saves one
10745 instruction in the caller since there is no need to pop the arguments
10746 there.
10747
10748 You can specify that an individual function is called with this calling
10749 sequence with the function attribute @samp{stdcall}.  You can also
10750 override the @option{-mrtd} option by using the function attribute
10751 @samp{cdecl}.  @xref{Function Attributes}.
10752
10753 @strong{Warning:} this calling convention is incompatible with the one
10754 normally used on Unix, so you cannot use it if you need to call
10755 libraries compiled with the Unix compiler.
10756
10757 Also, you must provide function prototypes for all functions that
10758 take variable numbers of arguments (including @code{printf});
10759 otherwise incorrect code will be generated for calls to those
10760 functions.
10761
10762 In addition, seriously incorrect code will result if you call a
10763 function with too many arguments.  (Normally, extra arguments are
10764 harmlessly ignored.)
10765
10766 @item -mregparm=@var{num}
10767 @opindex mregparm
10768 Control how many registers are used to pass integer arguments.  By
10769 default, no registers are used to pass arguments, and at most 3
10770 registers can be used.  You can control this behavior for a specific
10771 function by using the function attribute @samp{regparm}.
10772 @xref{Function Attributes}.
10773
10774 @strong{Warning:} if you use this switch, and
10775 @var{num} is nonzero, then you must build all modules with the same
10776 value, including any libraries.  This includes the system libraries and
10777 startup modules.
10778
10779 @item -msseregparm
10780 @opindex msseregparm
10781 Use SSE register passing conventions for float and double arguments
10782 and return values.  You can control this behavior for a specific
10783 function by using the function attribute @samp{sseregparm}.
10784 @xref{Function Attributes}.
10785
10786 @strong{Warning:} if you use this switch then you must build all
10787 modules with the same value, including any libraries.  This includes
10788 the system libraries and startup modules.
10789
10790 @item -mpc32
10791 @itemx -mpc64
10792 @itemx -mpc80
10793 @opindex mpc32
10794 @opindex mpc64
10795 @opindex mpc80
10796
10797 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10798 is specified, the significands of results of floating-point operations are
10799 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10800 significands of results of floating-point operations to 53 bits (double
10801 precision) and @option{-mpc80} rounds the significands of results of
10802 floating-point operations to 64 bits (extended double precision), which is
10803 the default.  When this option is used, floating-point operations in higher
10804 precisions are not available to the programmer without setting the FPU
10805 control word explicitly.
10806
10807 Setting the rounding of floating-point operations to less than the default
10808 80 bits can speed some programs by 2% or more.  Note that some mathematical
10809 libraries assume that extended precision (80 bit) floating-point operations
10810 are enabled by default; routines in such libraries could suffer significant
10811 loss of accuracy, typically through so-called "catastrophic cancellation",
10812 when this option is used to set the precision to less than extended precision. 
10813
10814 @item -mstackrealign
10815 @opindex mstackrealign
10816 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
10817 option will generate an alternate prologue and epilogue that realigns the
10818 runtime stack if necessary.  This supports mixing legacy codes that keep
10819 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
10820 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
10821 applicable to individual functions.
10822
10823 @item -mpreferred-stack-boundary=@var{num}
10824 @opindex mpreferred-stack-boundary
10825 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10826 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10827 the default is 4 (16 bytes or 128 bits).
10828
10829 @item -mincoming-stack-boundary=@var{num}
10830 @opindex mincoming-stack-boundary
10831 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
10832 boundary.  If @option{-mincoming-stack-boundary} is not specified,
10833 the one specified by @option{-mpreferred-stack-boundary} will be used.
10834
10835 On Pentium and PentiumPro, @code{double} and @code{long double} values
10836 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10837 suffer significant run time performance penalties.  On Pentium III, the
10838 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10839 properly if it is not 16 byte aligned.
10840
10841 To ensure proper alignment of this values on the stack, the stack boundary
10842 must be as aligned as that required by any value stored on the stack.
10843 Further, every function must be generated such that it keeps the stack
10844 aligned.  Thus calling a function compiled with a higher preferred
10845 stack boundary from a function compiled with a lower preferred stack
10846 boundary will most likely misalign the stack.  It is recommended that
10847 libraries that use callbacks always use the default setting.
10848
10849 This extra alignment does consume extra stack space, and generally
10850 increases code size.  Code that is sensitive to stack space usage, such
10851 as embedded systems and operating system kernels, may want to reduce the
10852 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10853
10854 @item -mmmx
10855 @itemx -mno-mmx
10856 @itemx -msse
10857 @itemx -mno-sse
10858 @itemx -msse2
10859 @itemx -mno-sse2
10860 @itemx -msse3
10861 @itemx -mno-sse3
10862 @itemx -mssse3
10863 @itemx -mno-ssse3
10864 @itemx -msse4.1
10865 @itemx -mno-sse4.1
10866 @itemx -msse4.2
10867 @itemx -mno-sse4.2
10868 @itemx -msse4
10869 @itemx -mno-sse4
10870 @itemx -mavx
10871 @itemx -mno-avx
10872 @itemx -maes
10873 @itemx -mno-aes
10874 @itemx -mpclmul
10875 @itemx -mno-pclmul
10876 @itemx -msse4a
10877 @itemx -mno-sse4a
10878 @itemx -msse5
10879 @itemx -mno-sse5
10880 @itemx -m3dnow
10881 @itemx -mno-3dnow
10882 @itemx -mpopcnt
10883 @itemx -mno-popcnt
10884 @itemx -mabm
10885 @itemx -mno-abm
10886 @opindex mmmx
10887 @opindex mno-mmx
10888 @opindex msse
10889 @opindex mno-sse
10890 @opindex m3dnow
10891 @opindex mno-3dnow
10892 These switches enable or disable the use of instructions in the MMX,
10893 SSE, SSE2, SSE3, SSSE3, SSE4.1, AVX, AES, PCLMUL, SSE4A, SSE5, ABM or
10894 3DNow!@: extended instruction sets.
10895 These extensions are also available as built-in functions: see
10896 @ref{X86 Built-in Functions}, for details of the functions enabled and
10897 disabled by these switches.
10898
10899 To have SSE/SSE2 instructions generated automatically from floating-point
10900 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10901
10902 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
10903 generates new AVX instructions or AVX equivalence for all SSEx instructions
10904 when needed.
10905
10906 These options will enable GCC to use these extended instructions in
10907 generated code, even without @option{-mfpmath=sse}.  Applications which
10908 perform runtime CPU detection must compile separate files for each
10909 supported architecture, using the appropriate flags.  In particular,
10910 the file containing the CPU detection code should be compiled without
10911 these options.
10912
10913 @item -mcld
10914 @opindex mcld
10915 This option instructs GCC to emit a @code{cld} instruction in the prologue
10916 of functions that use string instructions.  String instructions depend on
10917 the DF flag to select between autoincrement or autodecrement mode.  While the
10918 ABI specifies the DF flag to be cleared on function entry, some operating
10919 systems violate this specification by not clearing the DF flag in their
10920 exception dispatchers.  The exception handler can be invoked with the DF flag
10921 set which leads to wrong direction mode, when string instructions are used.
10922 This option can be enabled by default on 32-bit x86 targets by configuring
10923 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
10924 instructions can be suppressed with the @option{-mno-cld} compiler option
10925 in this case.
10926
10927 @item -mcx16
10928 @opindex mcx16
10929 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10930 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10931 data types.  This is useful for high resolution counters that could be updated
10932 by multiple processors (or cores).  This instruction is generated as part of
10933 atomic built-in functions: see @ref{Atomic Builtins} for details.
10934
10935 @item -msahf
10936 @opindex msahf
10937 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10938 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10939 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10940 SAHF are load and store instructions, respectively, for certain status flags.
10941 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10942 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10943
10944 @item -mrecip
10945 @opindex mrecip
10946 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10947 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Rhapson step
10948 to increase precision instead of DIVSS and SQRTSS (and their vectorized
10949 variants) for single precision floating point arguments.  These instructions
10950 are generated only when @option{-funsafe-math-optimizations} is enabled
10951 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
10952 Note that while the throughput of the sequence is higher than the throughput
10953 of the non-reciprocal instruction, the precision of the sequence can be
10954 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
10955
10956 @item -mveclibabi=@var{type}
10957 @opindex mveclibabi
10958 Specifies the ABI type to use for vectorizing intrinsics using an
10959 external library.  Supported types are @code{svml} for the Intel short
10960 vector math library and @code{acml} for the AMD math core library style
10961 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
10962 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
10963 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
10964 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
10965 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
10966 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
10967 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
10968 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
10969 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
10970 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
10971 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
10972 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
10973 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
10974 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
10975 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
10976 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
10977 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
10978 compatible library will have to be specified at link time.
10979
10980 @item -mpush-args
10981 @itemx -mno-push-args
10982 @opindex mpush-args
10983 @opindex mno-push-args
10984 Use PUSH operations to store outgoing parameters.  This method is shorter
10985 and usually equally fast as method using SUB/MOV operations and is enabled
10986 by default.  In some cases disabling it may improve performance because of
10987 improved scheduling and reduced dependencies.
10988
10989 @item -maccumulate-outgoing-args
10990 @opindex maccumulate-outgoing-args
10991 If enabled, the maximum amount of space required for outgoing arguments will be
10992 computed in the function prologue.  This is faster on most modern CPUs
10993 because of reduced dependencies, improved scheduling and reduced stack usage
10994 when preferred stack boundary is not equal to 2.  The drawback is a notable
10995 increase in code size.  This switch implies @option{-mno-push-args}.
10996
10997 @item -mthreads
10998 @opindex mthreads
10999 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
11000 on thread-safe exception handling must compile and link all code with the
11001 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
11002 @option{-D_MT}; when linking, it links in a special thread helper library
11003 @option{-lmingwthrd} which cleans up per thread exception handling data.
11004
11005 @item -mno-align-stringops
11006 @opindex mno-align-stringops
11007 Do not align destination of inlined string operations.  This switch reduces
11008 code size and improves performance in case the destination is already aligned,
11009 but GCC doesn't know about it.
11010
11011 @item -minline-all-stringops
11012 @opindex minline-all-stringops
11013 By default GCC inlines string operations only when destination is known to be
11014 aligned at least to 4 byte boundary.  This enables more inlining, increase code
11015 size, but may improve performance of code that depends on fast memcpy, strlen
11016 and memset for short lengths.
11017
11018 @item -minline-stringops-dynamically
11019 @opindex minline-stringops-dynamically
11020 For string operation of unknown size, inline runtime checks so for small
11021 blocks inline code is used, while for large blocks library call is used.
11022
11023 @item -mstringop-strategy=@var{alg}
11024 @opindex mstringop-strategy=@var{alg}
11025 Overwrite internal decision heuristic about particular algorithm to inline
11026 string operation with.  The allowed values are @code{rep_byte},
11027 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
11028 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
11029 expanding inline loop, @code{libcall} for always expanding library call.
11030
11031 @item -momit-leaf-frame-pointer
11032 @opindex momit-leaf-frame-pointer
11033 Don't keep the frame pointer in a register for leaf functions.  This
11034 avoids the instructions to save, set up and restore frame pointers and
11035 makes an extra register available in leaf functions.  The option
11036 @option{-fomit-frame-pointer} removes the frame pointer for all functions
11037 which might make debugging harder.
11038
11039 @item -mtls-direct-seg-refs
11040 @itemx -mno-tls-direct-seg-refs
11041 @opindex mtls-direct-seg-refs
11042 Controls whether TLS variables may be accessed with offsets from the
11043 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
11044 or whether the thread base pointer must be added.  Whether or not this
11045 is legal depends on the operating system, and whether it maps the
11046 segment to cover the entire TLS area.
11047
11048 For systems that use GNU libc, the default is on.
11049
11050 @item -mfused-madd
11051 @itemx -mno-fused-madd
11052 @opindex mfused-madd
11053 Enable automatic generation of fused floating point multiply-add instructions
11054 if the ISA supports such instructions.  The -mfused-madd option is on by
11055 default.  The fused multiply-add instructions have a different
11056 rounding behavior compared to executing a multiply followed by an add.
11057 @end table
11058
11059 These @samp{-m} switches are supported in addition to the above
11060 on AMD x86-64 processors in 64-bit environments.
11061
11062 @table @gcctabopt
11063 @item -m32
11064 @itemx -m64
11065 @opindex m32
11066 @opindex m64
11067 Generate code for a 32-bit or 64-bit environment.
11068 The 32-bit environment sets int, long and pointer to 32 bits and
11069 generates code that runs on any i386 system.
11070 The 64-bit environment sets int to 32 bits and long and pointer
11071 to 64 bits and generates code for AMD's x86-64 architecture. For
11072 darwin only the -m64 option turns off the @option{-fno-pic} and
11073 @option{-mdynamic-no-pic} options.
11074
11075 @item -mno-red-zone
11076 @opindex no-red-zone
11077 Do not use a so called red zone for x86-64 code.  The red zone is mandated
11078 by the x86-64 ABI, it is a 128-byte area beyond the location of the
11079 stack pointer that will not be modified by signal or interrupt handlers
11080 and therefore can be used for temporary data without adjusting the stack
11081 pointer.  The flag @option{-mno-red-zone} disables this red zone.
11082
11083 @item -mcmodel=small
11084 @opindex mcmodel=small
11085 Generate code for the small code model: the program and its symbols must
11086 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
11087 Programs can be statically or dynamically linked.  This is the default
11088 code model.
11089
11090 @item -mcmodel=kernel
11091 @opindex mcmodel=kernel
11092 Generate code for the kernel code model.  The kernel runs in the
11093 negative 2 GB of the address space.
11094 This model has to be used for Linux kernel code.
11095
11096 @item -mcmodel=medium
11097 @opindex mcmodel=medium
11098 Generate code for the medium model: The program is linked in the lower 2
11099 GB of the address space but symbols can be located anywhere in the
11100 address space.  Programs can be statically or dynamically linked, but
11101 building of shared libraries are not supported with the medium model.
11102
11103 @item -mcmodel=large
11104 @opindex mcmodel=large
11105 Generate code for the large model: This model makes no assumptions
11106 about addresses and sizes of sections.
11107 @end table
11108
11109 @node IA-64 Options
11110 @subsection IA-64 Options
11111 @cindex IA-64 Options
11112
11113 These are the @samp{-m} options defined for the Intel IA-64 architecture.
11114
11115 @table @gcctabopt
11116 @item -mbig-endian
11117 @opindex mbig-endian
11118 Generate code for a big endian target.  This is the default for HP-UX@.
11119
11120 @item -mlittle-endian
11121 @opindex mlittle-endian
11122 Generate code for a little endian target.  This is the default for AIX5
11123 and GNU/Linux.
11124
11125 @item -mgnu-as
11126 @itemx -mno-gnu-as
11127 @opindex mgnu-as
11128 @opindex mno-gnu-as
11129 Generate (or don't) code for the GNU assembler.  This is the default.
11130 @c Also, this is the default if the configure option @option{--with-gnu-as}
11131 @c is used.
11132
11133 @item -mgnu-ld
11134 @itemx -mno-gnu-ld
11135 @opindex mgnu-ld
11136 @opindex mno-gnu-ld
11137 Generate (or don't) code for the GNU linker.  This is the default.
11138 @c Also, this is the default if the configure option @option{--with-gnu-ld}
11139 @c is used.
11140
11141 @item -mno-pic
11142 @opindex mno-pic
11143 Generate code that does not use a global pointer register.  The result
11144 is not position independent code, and violates the IA-64 ABI@.
11145
11146 @item -mvolatile-asm-stop
11147 @itemx -mno-volatile-asm-stop
11148 @opindex mvolatile-asm-stop
11149 @opindex mno-volatile-asm-stop
11150 Generate (or don't) a stop bit immediately before and after volatile asm
11151 statements.
11152
11153 @item -mregister-names
11154 @itemx -mno-register-names
11155 @opindex mregister-names
11156 @opindex mno-register-names
11157 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
11158 the stacked registers.  This may make assembler output more readable.
11159
11160 @item -mno-sdata
11161 @itemx -msdata
11162 @opindex mno-sdata
11163 @opindex msdata
11164 Disable (or enable) optimizations that use the small data section.  This may
11165 be useful for working around optimizer bugs.
11166
11167 @item -mconstant-gp
11168 @opindex mconstant-gp
11169 Generate code that uses a single constant global pointer value.  This is
11170 useful when compiling kernel code.
11171
11172 @item -mauto-pic
11173 @opindex mauto-pic
11174 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
11175 This is useful when compiling firmware code.
11176
11177 @item -minline-float-divide-min-latency
11178 @opindex minline-float-divide-min-latency
11179 Generate code for inline divides of floating point values
11180 using the minimum latency algorithm.
11181
11182 @item -minline-float-divide-max-throughput
11183 @opindex minline-float-divide-max-throughput
11184 Generate code for inline divides of floating point values
11185 using the maximum throughput algorithm.
11186
11187 @item -minline-int-divide-min-latency
11188 @opindex minline-int-divide-min-latency
11189 Generate code for inline divides of integer values
11190 using the minimum latency algorithm.
11191
11192 @item -minline-int-divide-max-throughput
11193 @opindex minline-int-divide-max-throughput
11194 Generate code for inline divides of integer values
11195 using the maximum throughput algorithm.
11196
11197 @item -minline-sqrt-min-latency
11198 @opindex minline-sqrt-min-latency
11199 Generate code for inline square roots
11200 using the minimum latency algorithm.
11201
11202 @item -minline-sqrt-max-throughput
11203 @opindex minline-sqrt-max-throughput
11204 Generate code for inline square roots
11205 using the maximum throughput algorithm.
11206
11207 @item -mno-dwarf2-asm
11208 @itemx -mdwarf2-asm
11209 @opindex mno-dwarf2-asm
11210 @opindex mdwarf2-asm
11211 Don't (or do) generate assembler code for the DWARF2 line number debugging
11212 info.  This may be useful when not using the GNU assembler.
11213
11214 @item -mearly-stop-bits
11215 @itemx -mno-early-stop-bits
11216 @opindex mearly-stop-bits
11217 @opindex mno-early-stop-bits
11218 Allow stop bits to be placed earlier than immediately preceding the
11219 instruction that triggered the stop bit.  This can improve instruction
11220 scheduling, but does not always do so.
11221
11222 @item -mfixed-range=@var{register-range}
11223 @opindex mfixed-range
11224 Generate code treating the given register range as fixed registers.
11225 A fixed register is one that the register allocator can not use.  This is
11226 useful when compiling kernel code.  A register range is specified as
11227 two registers separated by a dash.  Multiple register ranges can be
11228 specified separated by a comma.
11229
11230 @item -mtls-size=@var{tls-size}
11231 @opindex mtls-size
11232 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
11233 64.
11234
11235 @item -mtune=@var{cpu-type}
11236 @opindex mtune
11237 Tune the instruction scheduling for a particular CPU, Valid values are
11238 itanium, itanium1, merced, itanium2, and mckinley.
11239
11240 @item -mt
11241 @itemx -pthread
11242 @opindex mt
11243 @opindex pthread
11244 Add support for multithreading using the POSIX threads library.  This
11245 option sets flags for both the preprocessor and linker.  It does
11246 not affect the thread safety of object code produced by the compiler or
11247 that of libraries supplied with it.  These are HP-UX specific flags.
11248
11249 @item -milp32
11250 @itemx -mlp64
11251 @opindex milp32
11252 @opindex mlp64
11253 Generate code for a 32-bit or 64-bit environment.
11254 The 32-bit environment sets int, long and pointer to 32 bits.
11255 The 64-bit environment sets int to 32 bits and long and pointer
11256 to 64 bits.  These are HP-UX specific flags.
11257
11258 @item -mno-sched-br-data-spec
11259 @itemx -msched-br-data-spec
11260 @opindex mno-sched-br-data-spec
11261 @opindex msched-br-data-spec
11262 (Dis/En)able data speculative scheduling before reload.
11263 This will result in generation of the ld.a instructions and
11264 the corresponding check instructions (ld.c / chk.a).
11265 The default is 'disable'.
11266
11267 @item -msched-ar-data-spec
11268 @itemx -mno-sched-ar-data-spec
11269 @opindex msched-ar-data-spec
11270 @opindex mno-sched-ar-data-spec
11271 (En/Dis)able data speculative scheduling after reload.
11272 This will result in generation of the ld.a instructions and
11273 the corresponding check instructions (ld.c / chk.a).
11274 The default is 'enable'.
11275
11276 @item -mno-sched-control-spec
11277 @itemx -msched-control-spec
11278 @opindex mno-sched-control-spec
11279 @opindex msched-control-spec
11280 (Dis/En)able control speculative scheduling.  This feature is
11281 available only during region scheduling (i.e.@: before reload).
11282 This will result in generation of the ld.s instructions and
11283 the corresponding check instructions chk.s .
11284 The default is 'disable'.
11285
11286 @item -msched-br-in-data-spec
11287 @itemx -mno-sched-br-in-data-spec
11288 @opindex msched-br-in-data-spec
11289 @opindex mno-sched-br-in-data-spec
11290 (En/Dis)able speculative scheduling of the instructions that
11291 are dependent on the data speculative loads before reload.
11292 This is effective only with @option{-msched-br-data-spec} enabled.
11293 The default is 'enable'.
11294
11295 @item -msched-ar-in-data-spec
11296 @itemx -mno-sched-ar-in-data-spec
11297 @opindex msched-ar-in-data-spec
11298 @opindex mno-sched-ar-in-data-spec
11299 (En/Dis)able speculative scheduling of the instructions that
11300 are dependent on the data speculative loads after reload.
11301 This is effective only with @option{-msched-ar-data-spec} enabled.
11302 The default is 'enable'.
11303
11304 @item -msched-in-control-spec
11305 @itemx -mno-sched-in-control-spec
11306 @opindex msched-in-control-spec
11307 @opindex mno-sched-in-control-spec
11308 (En/Dis)able speculative scheduling of the instructions that
11309 are dependent on the control speculative loads.
11310 This is effective only with @option{-msched-control-spec} enabled.
11311 The default is 'enable'.
11312
11313 @item -msched-ldc
11314 @itemx -mno-sched-ldc
11315 @opindex msched-ldc
11316 @opindex mno-sched-ldc
11317 (En/Dis)able use of simple data speculation checks ld.c .
11318 If disabled, only chk.a instructions will be emitted to check
11319 data speculative loads.
11320 The default is 'enable'.
11321
11322 @item -mno-sched-control-ldc
11323 @itemx -msched-control-ldc
11324 @opindex mno-sched-control-ldc
11325 @opindex msched-control-ldc
11326 (Dis/En)able use of ld.c instructions to check control speculative loads.
11327 If enabled, in case of control speculative load with no speculatively
11328 scheduled dependent instructions this load will be emitted as ld.sa and
11329 ld.c will be used to check it.
11330 The default is 'disable'.
11331
11332 @item -mno-sched-spec-verbose
11333 @itemx -msched-spec-verbose
11334 @opindex mno-sched-spec-verbose
11335 @opindex msched-spec-verbose
11336 (Dis/En)able printing of the information about speculative motions.
11337
11338 @item -mno-sched-prefer-non-data-spec-insns
11339 @itemx -msched-prefer-non-data-spec-insns
11340 @opindex mno-sched-prefer-non-data-spec-insns
11341 @opindex msched-prefer-non-data-spec-insns
11342 If enabled, data speculative instructions will be chosen for schedule
11343 only if there are no other choices at the moment.  This will make
11344 the use of the data speculation much more conservative.
11345 The default is 'disable'.
11346
11347 @item -mno-sched-prefer-non-control-spec-insns
11348 @itemx -msched-prefer-non-control-spec-insns
11349 @opindex mno-sched-prefer-non-control-spec-insns
11350 @opindex msched-prefer-non-control-spec-insns
11351 If enabled, control speculative instructions will be chosen for schedule
11352 only if there are no other choices at the moment.  This will make
11353 the use of the control speculation much more conservative.
11354 The default is 'disable'.
11355
11356 @item -mno-sched-count-spec-in-critical-path
11357 @itemx -msched-count-spec-in-critical-path
11358 @opindex mno-sched-count-spec-in-critical-path
11359 @opindex msched-count-spec-in-critical-path
11360 If enabled, speculative dependencies will be considered during
11361 computation of the instructions priorities.  This will make the use of the
11362 speculation a bit more conservative.
11363 The default is 'disable'.
11364
11365 @end table
11366
11367 @node M32C Options
11368 @subsection M32C Options
11369 @cindex M32C options
11370
11371 @table @gcctabopt
11372 @item -mcpu=@var{name}
11373 @opindex mcpu=
11374 Select the CPU for which code is generated.  @var{name} may be one of
11375 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
11376 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
11377 the M32C/80 series.
11378
11379 @item -msim
11380 @opindex msim
11381 Specifies that the program will be run on the simulator.  This causes
11382 an alternate runtime library to be linked in which supports, for
11383 example, file I/O@.  You must not use this option when generating
11384 programs that will run on real hardware; you must provide your own
11385 runtime library for whatever I/O functions are needed.
11386
11387 @item -memregs=@var{number}
11388 @opindex memregs=
11389 Specifies the number of memory-based pseudo-registers GCC will use
11390 during code generation.  These pseudo-registers will be used like real
11391 registers, so there is a tradeoff between GCC's ability to fit the
11392 code into available registers, and the performance penalty of using
11393 memory instead of registers.  Note that all modules in a program must
11394 be compiled with the same value for this option.  Because of that, you
11395 must not use this option with the default runtime libraries gcc
11396 builds.
11397
11398 @end table
11399
11400 @node M32R/D Options
11401 @subsection M32R/D Options
11402 @cindex M32R/D options
11403
11404 These @option{-m} options are defined for Renesas M32R/D architectures:
11405
11406 @table @gcctabopt
11407 @item -m32r2
11408 @opindex m32r2
11409 Generate code for the M32R/2@.
11410
11411 @item -m32rx
11412 @opindex m32rx
11413 Generate code for the M32R/X@.
11414
11415 @item -m32r
11416 @opindex m32r
11417 Generate code for the M32R@.  This is the default.
11418
11419 @item -mmodel=small
11420 @opindex mmodel=small
11421 Assume all objects live in the lower 16MB of memory (so that their addresses
11422 can be loaded with the @code{ld24} instruction), and assume all subroutines
11423 are reachable with the @code{bl} instruction.
11424 This is the default.
11425
11426 The addressability of a particular object can be set with the
11427 @code{model} attribute.
11428
11429 @item -mmodel=medium
11430 @opindex mmodel=medium
11431 Assume objects may be anywhere in the 32-bit address space (the compiler
11432 will generate @code{seth/add3} instructions to load their addresses), and
11433 assume all subroutines are reachable with the @code{bl} instruction.
11434
11435 @item -mmodel=large
11436 @opindex mmodel=large
11437 Assume objects may be anywhere in the 32-bit address space (the compiler
11438 will generate @code{seth/add3} instructions to load their addresses), and
11439 assume subroutines may not be reachable with the @code{bl} instruction
11440 (the compiler will generate the much slower @code{seth/add3/jl}
11441 instruction sequence).
11442
11443 @item -msdata=none
11444 @opindex msdata=none
11445 Disable use of the small data area.  Variables will be put into
11446 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11447 @code{section} attribute has been specified).
11448 This is the default.
11449
11450 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11451 Objects may be explicitly put in the small data area with the
11452 @code{section} attribute using one of these sections.
11453
11454 @item -msdata=sdata
11455 @opindex msdata=sdata
11456 Put small global and static data in the small data area, but do not
11457 generate special code to reference them.
11458
11459 @item -msdata=use
11460 @opindex msdata=use
11461 Put small global and static data in the small data area, and generate
11462 special instructions to reference them.
11463
11464 @item -G @var{num}
11465 @opindex G
11466 @cindex smaller data references
11467 Put global and static objects less than or equal to @var{num} bytes
11468 into the small data or bss sections instead of the normal data or bss
11469 sections.  The default value of @var{num} is 8.
11470 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11471 for this option to have any effect.
11472
11473 All modules should be compiled with the same @option{-G @var{num}} value.
11474 Compiling with different values of @var{num} may or may not work; if it
11475 doesn't the linker will give an error message---incorrect code will not be
11476 generated.
11477
11478 @item -mdebug
11479 @opindex mdebug
11480 Makes the M32R specific code in the compiler display some statistics
11481 that might help in debugging programs.
11482
11483 @item -malign-loops
11484 @opindex malign-loops
11485 Align all loops to a 32-byte boundary.
11486
11487 @item -mno-align-loops
11488 @opindex mno-align-loops
11489 Do not enforce a 32-byte alignment for loops.  This is the default.
11490
11491 @item -missue-rate=@var{number}
11492 @opindex missue-rate=@var{number}
11493 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11494 or 2.
11495
11496 @item -mbranch-cost=@var{number}
11497 @opindex mbranch-cost=@var{number}
11498 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11499 preferred over conditional code, if it is 2, then the opposite will
11500 apply.
11501
11502 @item -mflush-trap=@var{number}
11503 @opindex mflush-trap=@var{number}
11504 Specifies the trap number to use to flush the cache.  The default is
11505 12.  Valid numbers are between 0 and 15 inclusive.
11506
11507 @item -mno-flush-trap
11508 @opindex mno-flush-trap
11509 Specifies that the cache cannot be flushed by using a trap.
11510
11511 @item -mflush-func=@var{name}
11512 @opindex mflush-func=@var{name}
11513 Specifies the name of the operating system function to call to flush
11514 the cache.  The default is @emph{_flush_cache}, but a function call
11515 will only be used if a trap is not available.
11516
11517 @item -mno-flush-func
11518 @opindex mno-flush-func
11519 Indicates that there is no OS function for flushing the cache.
11520
11521 @end table
11522
11523 @node M680x0 Options
11524 @subsection M680x0 Options
11525 @cindex M680x0 options
11526
11527 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11528 The default settings depend on which architecture was selected when
11529 the compiler was configured; the defaults for the most common choices
11530 are given below.
11531
11532 @table @gcctabopt
11533 @item -march=@var{arch}
11534 @opindex march
11535 Generate code for a specific M680x0 or ColdFire instruction set
11536 architecture.  Permissible values of @var{arch} for M680x0
11537 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11538 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11539 architectures are selected according to Freescale's ISA classification
11540 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11541 @samp{isab} and @samp{isac}.
11542
11543 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11544 code for a ColdFire target.  The @var{arch} in this macro is one of the
11545 @option{-march} arguments given above.
11546
11547 When used together, @option{-march} and @option{-mtune} select code
11548 that runs on a family of similar processors but that is optimized
11549 for a particular microarchitecture.
11550
11551 @item -mcpu=@var{cpu}
11552 @opindex mcpu
11553 Generate code for a specific M680x0 or ColdFire processor.
11554 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11555 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11556 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11557 below, which also classifies the CPUs into families:
11558
11559 @multitable @columnfractions 0.20 0.80
11560 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11561 @item @samp{51qe} @tab @samp{51qe}
11562 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11563 @item @samp{5206e} @tab @samp{5206e}
11564 @item @samp{5208} @tab @samp{5207} @samp{5208}
11565 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11566 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11567 @item @samp{5216} @tab @samp{5214} @samp{5216}
11568 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11569 @item @samp{5225} @tab @samp{5224} @samp{5225}
11570 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11571 @item @samp{5249} @tab @samp{5249}
11572 @item @samp{5250} @tab @samp{5250}
11573 @item @samp{5271} @tab @samp{5270} @samp{5271}
11574 @item @samp{5272} @tab @samp{5272}
11575 @item @samp{5275} @tab @samp{5274} @samp{5275}
11576 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11577 @item @samp{5307} @tab @samp{5307}
11578 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11579 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11580 @item @samp{5407} @tab @samp{5407}
11581 @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}
11582 @end multitable
11583
11584 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11585 @var{arch} is compatible with @var{cpu}.  Other combinations of
11586 @option{-mcpu} and @option{-march} are rejected.
11587
11588 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11589 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11590 where the value of @var{family} is given by the table above.
11591
11592 @item -mtune=@var{tune}
11593 @opindex mtune
11594 Tune the code for a particular microarchitecture, within the
11595 constraints set by @option{-march} and @option{-mcpu}.
11596 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11597 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11598 and @samp{cpu32}.  The ColdFire microarchitectures
11599 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11600
11601 You can also use @option{-mtune=68020-40} for code that needs
11602 to run relatively well on 68020, 68030 and 68040 targets.
11603 @option{-mtune=68020-60} is similar but includes 68060 targets
11604 as well.  These two options select the same tuning decisions as
11605 @option{-m68020-40} and @option{-m68020-60} respectively.
11606
11607 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11608 when tuning for 680x0 architecture @var{arch}.  It also defines
11609 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11610 option is used.  If gcc is tuning for a range of architectures,
11611 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11612 it defines the macros for every architecture in the range.
11613
11614 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11615 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11616 of the arguments given above.
11617
11618 @item -m68000
11619 @itemx -mc68000
11620 @opindex m68000
11621 @opindex mc68000
11622 Generate output for a 68000.  This is the default
11623 when the compiler is configured for 68000-based systems.
11624 It is equivalent to @option{-march=68000}.
11625
11626 Use this option for microcontrollers with a 68000 or EC000 core,
11627 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11628
11629 @item -m68010
11630 @opindex m68010
11631 Generate output for a 68010.  This is the default
11632 when the compiler is configured for 68010-based systems.
11633 It is equivalent to @option{-march=68010}.
11634
11635 @item -m68020
11636 @itemx -mc68020
11637 @opindex m68020
11638 @opindex mc68020
11639 Generate output for a 68020.  This is the default
11640 when the compiler is configured for 68020-based systems.
11641 It is equivalent to @option{-march=68020}.
11642
11643 @item -m68030
11644 @opindex m68030
11645 Generate output for a 68030.  This is the default when the compiler is
11646 configured for 68030-based systems.  It is equivalent to
11647 @option{-march=68030}.
11648
11649 @item -m68040
11650 @opindex m68040
11651 Generate output for a 68040.  This is the default when the compiler is
11652 configured for 68040-based systems.  It is equivalent to
11653 @option{-march=68040}.
11654
11655 This option inhibits the use of 68881/68882 instructions that have to be
11656 emulated by software on the 68040.  Use this option if your 68040 does not
11657 have code to emulate those instructions.
11658
11659 @item -m68060
11660 @opindex m68060
11661 Generate output for a 68060.  This is the default when the compiler is
11662 configured for 68060-based systems.  It is equivalent to
11663 @option{-march=68060}.
11664
11665 This option inhibits the use of 68020 and 68881/68882 instructions that
11666 have to be emulated by software on the 68060.  Use this option if your 68060
11667 does not have code to emulate those instructions.
11668
11669 @item -mcpu32
11670 @opindex mcpu32
11671 Generate output for a CPU32.  This is the default
11672 when the compiler is configured for CPU32-based systems.
11673 It is equivalent to @option{-march=cpu32}.
11674
11675 Use this option for microcontrollers with a
11676 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11677 68336, 68340, 68341, 68349 and 68360.
11678
11679 @item -m5200
11680 @opindex m5200
11681 Generate output for a 520X ColdFire CPU@.  This is the default
11682 when the compiler is configured for 520X-based systems.
11683 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11684 in favor of that option.
11685
11686 Use this option for microcontroller with a 5200 core, including
11687 the MCF5202, MCF5203, MCF5204 and MCF5206.
11688
11689 @item -m5206e
11690 @opindex m5206e
11691 Generate output for a 5206e ColdFire CPU@.  The option is now
11692 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11693
11694 @item -m528x
11695 @opindex m528x
11696 Generate output for a member of the ColdFire 528X family.
11697 The option is now deprecated in favor of the equivalent
11698 @option{-mcpu=528x}.
11699
11700 @item -m5307
11701 @opindex m5307
11702 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
11703 in favor of the equivalent @option{-mcpu=5307}.
11704
11705 @item -m5407
11706 @opindex m5407
11707 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
11708 in favor of the equivalent @option{-mcpu=5407}.
11709
11710 @item -mcfv4e
11711 @opindex mcfv4e
11712 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11713 This includes use of hardware floating point instructions.
11714 The option is equivalent to @option{-mcpu=547x}, and is now
11715 deprecated in favor of that option.
11716
11717 @item -m68020-40
11718 @opindex m68020-40
11719 Generate output for a 68040, without using any of the new instructions.
11720 This results in code which can run relatively efficiently on either a
11721 68020/68881 or a 68030 or a 68040.  The generated code does use the
11722 68881 instructions that are emulated on the 68040.
11723
11724 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11725
11726 @item -m68020-60
11727 @opindex m68020-60
11728 Generate output for a 68060, without using any of the new instructions.
11729 This results in code which can run relatively efficiently on either a
11730 68020/68881 or a 68030 or a 68040.  The generated code does use the
11731 68881 instructions that are emulated on the 68060.
11732
11733 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11734
11735 @item -mhard-float
11736 @itemx -m68881
11737 @opindex mhard-float
11738 @opindex m68881
11739 Generate floating-point instructions.  This is the default for 68020
11740 and above, and for ColdFire devices that have an FPU@.  It defines the
11741 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11742 on ColdFire targets.
11743
11744 @item -msoft-float
11745 @opindex msoft-float
11746 Do not generate floating-point instructions; use library calls instead.
11747 This is the default for 68000, 68010, and 68832 targets.  It is also
11748 the default for ColdFire devices that have no FPU.
11749
11750 @item -mdiv
11751 @itemx -mno-div
11752 @opindex mdiv
11753 @opindex mno-div
11754 Generate (do not generate) ColdFire hardware divide and remainder
11755 instructions.  If @option{-march} is used without @option{-mcpu},
11756 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11757 architectures.  Otherwise, the default is taken from the target CPU
11758 (either the default CPU, or the one specified by @option{-mcpu}).  For
11759 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11760 @option{-mcpu=5206e}.
11761
11762 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11763
11764 @item -mshort
11765 @opindex mshort
11766 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11767 Additionally, parameters passed on the stack are also aligned to a
11768 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11769
11770 @item -mno-short
11771 @opindex mno-short
11772 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11773
11774 @item -mnobitfield
11775 @itemx -mno-bitfield
11776 @opindex mnobitfield
11777 @opindex mno-bitfield
11778 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11779 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11780
11781 @item -mbitfield
11782 @opindex mbitfield
11783 Do use the bit-field instructions.  The @option{-m68020} option implies
11784 @option{-mbitfield}.  This is the default if you use a configuration
11785 designed for a 68020.
11786
11787 @item -mrtd
11788 @opindex mrtd
11789 Use a different function-calling convention, in which functions
11790 that take a fixed number of arguments return with the @code{rtd}
11791 instruction, which pops their arguments while returning.  This
11792 saves one instruction in the caller since there is no need to pop
11793 the arguments there.
11794
11795 This calling convention is incompatible with the one normally
11796 used on Unix, so you cannot use it if you need to call libraries
11797 compiled with the Unix compiler.
11798
11799 Also, you must provide function prototypes for all functions that
11800 take variable numbers of arguments (including @code{printf});
11801 otherwise incorrect code will be generated for calls to those
11802 functions.
11803
11804 In addition, seriously incorrect code will result if you call a
11805 function with too many arguments.  (Normally, extra arguments are
11806 harmlessly ignored.)
11807
11808 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11809 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11810
11811 @item -mno-rtd
11812 @opindex mno-rtd
11813 Do not use the calling conventions selected by @option{-mrtd}.
11814 This is the default.
11815
11816 @item -malign-int
11817 @itemx -mno-align-int
11818 @opindex malign-int
11819 @opindex mno-align-int
11820 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11821 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11822 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11823 Aligning variables on 32-bit boundaries produces code that runs somewhat
11824 faster on processors with 32-bit busses at the expense of more memory.
11825
11826 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11827 align structures containing the above types  differently than
11828 most published application binary interface specifications for the m68k.
11829
11830 @item -mpcrel
11831 @opindex mpcrel
11832 Use the pc-relative addressing mode of the 68000 directly, instead of
11833 using a global offset table.  At present, this option implies @option{-fpic},
11834 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11835 not presently supported with @option{-mpcrel}, though this could be supported for
11836 68020 and higher processors.
11837
11838 @item -mno-strict-align
11839 @itemx -mstrict-align
11840 @opindex mno-strict-align
11841 @opindex mstrict-align
11842 Do not (do) assume that unaligned memory references will be handled by
11843 the system.
11844
11845 @item -msep-data
11846 Generate code that allows the data segment to be located in a different
11847 area of memory from the text segment.  This allows for execute in place in
11848 an environment without virtual memory management.  This option implies
11849 @option{-fPIC}.
11850
11851 @item -mno-sep-data
11852 Generate code that assumes that the data segment follows the text segment.
11853 This is the default.
11854
11855 @item -mid-shared-library
11856 Generate code that supports shared libraries via the library ID method.
11857 This allows for execute in place and shared libraries in an environment
11858 without virtual memory management.  This option implies @option{-fPIC}.
11859
11860 @item -mno-id-shared-library
11861 Generate code that doesn't assume ID based shared libraries are being used.
11862 This is the default.
11863
11864 @item -mshared-library-id=n
11865 Specified the identification number of the ID based shared library being
11866 compiled.  Specifying a value of 0 will generate more compact code, specifying
11867 other values will force the allocation of that number to the current
11868 library but is no more space or time efficient than omitting this option.
11869
11870 @item -mxgot
11871 @itemx -mno-xgot
11872 @opindex mxgot
11873 @opindex mno-xgot
11874 When generating position-independent code for ColdFire, generate code
11875 that works if the GOT has more than 8192 entries.  This code is
11876 larger and slower than code generated without this option.  On M680x0
11877 processors, this option is not needed; @option{-fPIC} suffices.
11878
11879 GCC normally uses a single instruction to load values from the GOT@.
11880 While this is relatively efficient, it only works if the GOT
11881 is smaller than about 64k.  Anything larger causes the linker
11882 to report an error such as:
11883
11884 @cindex relocation truncated to fit (ColdFire)
11885 @smallexample
11886 relocation truncated to fit: R_68K_GOT16O foobar
11887 @end smallexample
11888
11889 If this happens, you should recompile your code with @option{-mxgot}.
11890 It should then work with very large GOTs.  However, code generated with
11891 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
11892 the value of a global symbol.
11893
11894 Note that some linkers, including newer versions of the GNU linker,
11895 can create multiple GOTs and sort GOT entries.  If you have such a linker,
11896 you should only need to use @option{-mxgot} when compiling a single
11897 object file that accesses more than 8192 GOT entries.  Very few do.
11898
11899 These options have no effect unless GCC is generating
11900 position-independent code.
11901
11902 @end table
11903
11904 @node M68hc1x Options
11905 @subsection M68hc1x Options
11906 @cindex M68hc1x options
11907
11908 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11909 microcontrollers.  The default values for these options depends on
11910 which style of microcontroller was selected when the compiler was configured;
11911 the defaults for the most common choices are given below.
11912
11913 @table @gcctabopt
11914 @item -m6811
11915 @itemx -m68hc11
11916 @opindex m6811
11917 @opindex m68hc11
11918 Generate output for a 68HC11.  This is the default
11919 when the compiler is configured for 68HC11-based systems.
11920
11921 @item -m6812
11922 @itemx -m68hc12
11923 @opindex m6812
11924 @opindex m68hc12
11925 Generate output for a 68HC12.  This is the default
11926 when the compiler is configured for 68HC12-based systems.
11927
11928 @item -m68S12
11929 @itemx -m68hcs12
11930 @opindex m68S12
11931 @opindex m68hcs12
11932 Generate output for a 68HCS12.
11933
11934 @item -mauto-incdec
11935 @opindex mauto-incdec
11936 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11937 addressing modes.
11938
11939 @item -minmax
11940 @itemx -nominmax
11941 @opindex minmax
11942 @opindex mnominmax
11943 Enable the use of 68HC12 min and max instructions.
11944
11945 @item -mlong-calls
11946 @itemx -mno-long-calls
11947 @opindex mlong-calls
11948 @opindex mno-long-calls
11949 Treat all calls as being far away (near).  If calls are assumed to be
11950 far away, the compiler will use the @code{call} instruction to
11951 call a function and the @code{rtc} instruction for returning.
11952
11953 @item -mshort
11954 @opindex mshort
11955 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11956
11957 @item -msoft-reg-count=@var{count}
11958 @opindex msoft-reg-count
11959 Specify the number of pseudo-soft registers which are used for the
11960 code generation.  The maximum number is 32.  Using more pseudo-soft
11961 register may or may not result in better code depending on the program.
11962 The default is 4 for 68HC11 and 2 for 68HC12.
11963
11964 @end table
11965
11966 @node MCore Options
11967 @subsection MCore Options
11968 @cindex MCore options
11969
11970 These are the @samp{-m} options defined for the Motorola M*Core
11971 processors.
11972
11973 @table @gcctabopt
11974
11975 @item -mhardlit
11976 @itemx -mno-hardlit
11977 @opindex mhardlit
11978 @opindex mno-hardlit
11979 Inline constants into the code stream if it can be done in two
11980 instructions or less.
11981
11982 @item -mdiv
11983 @itemx -mno-div
11984 @opindex mdiv
11985 @opindex mno-div
11986 Use the divide instruction.  (Enabled by default).
11987
11988 @item -mrelax-immediate
11989 @itemx -mno-relax-immediate
11990 @opindex mrelax-immediate
11991 @opindex mno-relax-immediate
11992 Allow arbitrary sized immediates in bit operations.
11993
11994 @item -mwide-bitfields
11995 @itemx -mno-wide-bitfields
11996 @opindex mwide-bitfields
11997 @opindex mno-wide-bitfields
11998 Always treat bit-fields as int-sized.
11999
12000 @item -m4byte-functions
12001 @itemx -mno-4byte-functions
12002 @opindex m4byte-functions
12003 @opindex mno-4byte-functions
12004 Force all functions to be aligned to a four byte boundary.
12005
12006 @item -mcallgraph-data
12007 @itemx -mno-callgraph-data
12008 @opindex mcallgraph-data
12009 @opindex mno-callgraph-data
12010 Emit callgraph information.
12011
12012 @item -mslow-bytes
12013 @itemx -mno-slow-bytes
12014 @opindex mslow-bytes
12015 @opindex mno-slow-bytes
12016 Prefer word access when reading byte quantities.
12017
12018 @item -mlittle-endian
12019 @itemx -mbig-endian
12020 @opindex mlittle-endian
12021 @opindex mbig-endian
12022 Generate code for a little endian target.
12023
12024 @item -m210
12025 @itemx -m340
12026 @opindex m210
12027 @opindex m340
12028 Generate code for the 210 processor.
12029 @end table
12030
12031 @node MIPS Options
12032 @subsection MIPS Options
12033 @cindex MIPS options
12034
12035 @table @gcctabopt
12036
12037 @item -EB
12038 @opindex EB
12039 Generate big-endian code.
12040
12041 @item -EL
12042 @opindex EL
12043 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
12044 configurations.
12045
12046 @item -march=@var{arch}
12047 @opindex march
12048 Generate code that will run on @var{arch}, which can be the name of a
12049 generic MIPS ISA, or the name of a particular processor.
12050 The ISA names are:
12051 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
12052 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
12053 The processor names are:
12054 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
12055 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
12056 @samp{5kc}, @samp{5kf},
12057 @samp{20kc},
12058 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
12059 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
12060 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
12061 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
12062 @samp{loongson2e}, @samp{loongson2f},
12063 @samp{m4k},
12064 @samp{octeon},
12065 @samp{orion},
12066 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
12067 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
12068 @samp{rm7000}, @samp{rm9000},
12069 @samp{sb1},
12070 @samp{sr71000},
12071 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
12072 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
12073 and @samp{xlr}.
12074 The special value @samp{from-abi} selects the
12075 most compatible architecture for the selected ABI (that is,
12076 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
12077
12078 Native Linux/GNU toolchains also support the value @samp{native},
12079 which selects the best architecture option for the host processor.
12080 @option{-march=native} has no effect if GCC does not recognize
12081 the processor.
12082
12083 In processor names, a final @samp{000} can be abbreviated as @samp{k}
12084 (for example, @samp{-march=r2k}).  Prefixes are optional, and
12085 @samp{vr} may be written @samp{r}.
12086
12087 Names of the form @samp{@var{n}f2_1} refer to processors with
12088 FPUs clocked at half the rate of the core, names of the form
12089 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
12090 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
12091 processors with FPUs clocked a ratio of 3:2 with respect to the core.
12092 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
12093 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
12094 accepted as synonyms for @samp{@var{n}f1_1}.
12095
12096 GCC defines two macros based on the value of this option.  The first
12097 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
12098 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
12099 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
12100 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
12101 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
12102
12103 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
12104 above.  In other words, it will have the full prefix and will not
12105 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
12106 the macro names the resolved architecture (either @samp{"mips1"} or
12107 @samp{"mips3"}).  It names the default architecture when no
12108 @option{-march} option is given.
12109
12110 @item -mtune=@var{arch}
12111 @opindex mtune
12112 Optimize for @var{arch}.  Among other things, this option controls
12113 the way instructions are scheduled, and the perceived cost of arithmetic
12114 operations.  The list of @var{arch} values is the same as for
12115 @option{-march}.
12116
12117 When this option is not used, GCC will optimize for the processor
12118 specified by @option{-march}.  By using @option{-march} and
12119 @option{-mtune} together, it is possible to generate code that will
12120 run on a family of processors, but optimize the code for one
12121 particular member of that family.
12122
12123 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
12124 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
12125 @samp{-march} ones described above.
12126
12127 @item -mips1
12128 @opindex mips1
12129 Equivalent to @samp{-march=mips1}.
12130
12131 @item -mips2
12132 @opindex mips2
12133 Equivalent to @samp{-march=mips2}.
12134
12135 @item -mips3
12136 @opindex mips3
12137 Equivalent to @samp{-march=mips3}.
12138
12139 @item -mips4
12140 @opindex mips4
12141 Equivalent to @samp{-march=mips4}.
12142
12143 @item -mips32
12144 @opindex mips32
12145 Equivalent to @samp{-march=mips32}.
12146
12147 @item -mips32r2
12148 @opindex mips32r2
12149 Equivalent to @samp{-march=mips32r2}.
12150
12151 @item -mips64
12152 @opindex mips64
12153 Equivalent to @samp{-march=mips64}.
12154
12155 @item -mips64r2
12156 @opindex mips64r2
12157 Equivalent to @samp{-march=mips64r2}.
12158
12159 @item -mips16
12160 @itemx -mno-mips16
12161 @opindex mips16
12162 @opindex mno-mips16
12163 Generate (do not generate) MIPS16 code.  If GCC is targetting a
12164 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
12165
12166 MIPS16 code generation can also be controlled on a per-function basis
12167 by means of @code{mips16} and @code{nomips16} attributes.  
12168 @xref{Function Attributes}, for more information.
12169
12170 @item -mflip-mips16
12171 @opindex mflip-mips16
12172 Generate MIPS16 code on alternating functions.  This option is provided
12173 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
12174 not intended for ordinary use in compiling user code.
12175
12176 @item -minterlink-mips16
12177 @itemx -mno-interlink-mips16
12178 @opindex minterlink-mips16
12179 @opindex mno-interlink-mips16
12180 Require (do not require) that non-MIPS16 code be link-compatible with
12181 MIPS16 code.
12182
12183 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
12184 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
12185 therefore disables direct jumps unless GCC knows that the target of the
12186 jump is not MIPS16.
12187
12188 @item -mabi=32
12189 @itemx -mabi=o64
12190 @itemx -mabi=n32
12191 @itemx -mabi=64
12192 @itemx -mabi=eabi
12193 @opindex mabi=32
12194 @opindex mabi=o64
12195 @opindex mabi=n32
12196 @opindex mabi=64
12197 @opindex mabi=eabi
12198 Generate code for the given ABI@.
12199
12200 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
12201 generates 64-bit code when you select a 64-bit architecture, but you
12202 can use @option{-mgp32} to get 32-bit code instead.
12203
12204 For information about the O64 ABI, see
12205 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
12206
12207 GCC supports a variant of the o32 ABI in which floating-point registers
12208 are 64 rather than 32 bits wide.  You can select this combination with
12209 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
12210 and @samp{mfhc1} instructions and is therefore only supported for
12211 MIPS32R2 processors.
12212
12213 The register assignments for arguments and return values remain the
12214 same, but each scalar value is passed in a single 64-bit register
12215 rather than a pair of 32-bit registers.  For example, scalar
12216 floating-point values are returned in @samp{$f0} only, not a
12217 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
12218 remains the same, but all 64 bits are saved.
12219
12220 @item -mabicalls
12221 @itemx -mno-abicalls
12222 @opindex mabicalls
12223 @opindex mno-abicalls
12224 Generate (do not generate) code that is suitable for SVR4-style
12225 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
12226 systems.
12227
12228 @item -mshared
12229 @itemx -mno-shared
12230 Generate (do not generate) code that is fully position-independent,
12231 and that can therefore be linked into shared libraries.  This option
12232 only affects @option{-mabicalls}.
12233
12234 All @option{-mabicalls} code has traditionally been position-independent,
12235 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
12236 as an extension, the GNU toolchain allows executables to use absolute
12237 accesses for locally-binding symbols.  It can also use shorter GP
12238 initialization sequences and generate direct calls to locally-defined
12239 functions.  This mode is selected by @option{-mno-shared}.
12240
12241 @option{-mno-shared} depends on binutils 2.16 or higher and generates
12242 objects that can only be linked by the GNU linker.  However, the option
12243 does not affect the ABI of the final executable; it only affects the ABI
12244 of relocatable objects.  Using @option{-mno-shared} will generally make
12245 executables both smaller and quicker.
12246
12247 @option{-mshared} is the default.
12248
12249 @item -mplt
12250 @itemx -mno-plt
12251 @opindex mplt
12252 @opindex mno-plt
12253 Assume (do not assume) that the static and dynamic linkers
12254 support PLTs and copy relocations.  This option only affects
12255 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
12256 has no effect without @samp{-msym32}.
12257
12258 You can make @option{-mplt} the default by configuring
12259 GCC with @option{--with-mips-plt}.  The default is
12260 @option{-mno-plt} otherwise.
12261
12262 @item -mxgot
12263 @itemx -mno-xgot
12264 @opindex mxgot
12265 @opindex mno-xgot
12266 Lift (do not lift) the usual restrictions on the size of the global
12267 offset table.
12268
12269 GCC normally uses a single instruction to load values from the GOT@.
12270 While this is relatively efficient, it will only work if the GOT
12271 is smaller than about 64k.  Anything larger will cause the linker
12272 to report an error such as:
12273
12274 @cindex relocation truncated to fit (MIPS)
12275 @smallexample
12276 relocation truncated to fit: R_MIPS_GOT16 foobar
12277 @end smallexample
12278
12279 If this happens, you should recompile your code with @option{-mxgot}.
12280 It should then work with very large GOTs, although it will also be
12281 less efficient, since it will take three instructions to fetch the
12282 value of a global symbol.
12283
12284 Note that some linkers can create multiple GOTs.  If you have such a
12285 linker, you should only need to use @option{-mxgot} when a single object
12286 file accesses more than 64k's worth of GOT entries.  Very few do.
12287
12288 These options have no effect unless GCC is generating position
12289 independent code.
12290
12291 @item -mgp32
12292 @opindex mgp32
12293 Assume that general-purpose registers are 32 bits wide.
12294
12295 @item -mgp64
12296 @opindex mgp64
12297 Assume that general-purpose registers are 64 bits wide.
12298
12299 @item -mfp32
12300 @opindex mfp32
12301 Assume that floating-point registers are 32 bits wide.
12302
12303 @item -mfp64
12304 @opindex mfp64
12305 Assume that floating-point registers are 64 bits wide.
12306
12307 @item -mhard-float
12308 @opindex mhard-float
12309 Use floating-point coprocessor instructions.
12310
12311 @item -msoft-float
12312 @opindex msoft-float
12313 Do not use floating-point coprocessor instructions.  Implement
12314 floating-point calculations using library calls instead.
12315
12316 @item -msingle-float
12317 @opindex msingle-float
12318 Assume that the floating-point coprocessor only supports single-precision
12319 operations.
12320
12321 @item -mdouble-float
12322 @opindex mdouble-float
12323 Assume that the floating-point coprocessor supports double-precision
12324 operations.  This is the default.
12325
12326 @item -mllsc
12327 @itemx -mno-llsc
12328 @opindex mllsc
12329 @opindex mno-llsc
12330 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
12331 implement atomic memory built-in functions.  When neither option is
12332 specified, GCC will use the instructions if the target architecture
12333 supports them.
12334
12335 @option{-mllsc} is useful if the runtime environment can emulate the
12336 instructions and @option{-mno-llsc} can be useful when compiling for
12337 nonstandard ISAs.  You can make either option the default by
12338 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
12339 respectively.  @option{--with-llsc} is the default for some
12340 configurations; see the installation documentation for details.
12341
12342 @item -mdsp
12343 @itemx -mno-dsp
12344 @opindex mdsp
12345 @opindex mno-dsp
12346 Use (do not use) revision 1 of the MIPS DSP ASE@.
12347 @xref{MIPS DSP Built-in Functions}.  This option defines the
12348 preprocessor macro @samp{__mips_dsp}.  It also defines
12349 @samp{__mips_dsp_rev} to 1.
12350
12351 @item -mdspr2
12352 @itemx -mno-dspr2
12353 @opindex mdspr2
12354 @opindex mno-dspr2
12355 Use (do not use) revision 2 of the MIPS DSP ASE@.
12356 @xref{MIPS DSP Built-in Functions}.  This option defines the
12357 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
12358 It also defines @samp{__mips_dsp_rev} to 2.
12359
12360 @item -msmartmips
12361 @itemx -mno-smartmips
12362 @opindex msmartmips
12363 @opindex mno-smartmips
12364 Use (do not use) the MIPS SmartMIPS ASE.
12365
12366 @item -mpaired-single
12367 @itemx -mno-paired-single
12368 @opindex mpaired-single
12369 @opindex mno-paired-single
12370 Use (do not use) paired-single floating-point instructions.
12371 @xref{MIPS Paired-Single Support}.  This option requires
12372 hardware floating-point support to be enabled.
12373
12374 @item -mdmx
12375 @itemx -mno-mdmx
12376 @opindex mdmx
12377 @opindex mno-mdmx
12378 Use (do not use) MIPS Digital Media Extension instructions.
12379 This option can only be used when generating 64-bit code and requires
12380 hardware floating-point support to be enabled.
12381
12382 @item -mips3d
12383 @itemx -mno-mips3d
12384 @opindex mips3d
12385 @opindex mno-mips3d
12386 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
12387 The option @option{-mips3d} implies @option{-mpaired-single}.
12388
12389 @item -mmt
12390 @itemx -mno-mt
12391 @opindex mmt
12392 @opindex mno-mt
12393 Use (do not use) MT Multithreading instructions.
12394
12395 @item -mlong64
12396 @opindex mlong64
12397 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
12398 an explanation of the default and the way that the pointer size is
12399 determined.
12400
12401 @item -mlong32
12402 @opindex mlong32
12403 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
12404
12405 The default size of @code{int}s, @code{long}s and pointers depends on
12406 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
12407 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
12408 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
12409 or the same size as integer registers, whichever is smaller.
12410
12411 @item -msym32
12412 @itemx -mno-sym32
12413 @opindex msym32
12414 @opindex mno-sym32
12415 Assume (do not assume) that all symbols have 32-bit values, regardless
12416 of the selected ABI@.  This option is useful in combination with
12417 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
12418 to generate shorter and faster references to symbolic addresses.
12419
12420 @item -G @var{num}
12421 @opindex G
12422 Put definitions of externally-visible data in a small data section
12423 if that data is no bigger than @var{num} bytes.  GCC can then access
12424 the data more efficiently; see @option{-mgpopt} for details.
12425
12426 The default @option{-G} option depends on the configuration.
12427
12428 @item -mlocal-sdata
12429 @itemx -mno-local-sdata
12430 @opindex mlocal-sdata
12431 @opindex mno-local-sdata
12432 Extend (do not extend) the @option{-G} behavior to local data too,
12433 such as to static variables in C@.  @option{-mlocal-sdata} is the
12434 default for all configurations.
12435
12436 If the linker complains that an application is using too much small data,
12437 you might want to try rebuilding the less performance-critical parts with
12438 @option{-mno-local-sdata}.  You might also want to build large
12439 libraries with @option{-mno-local-sdata}, so that the libraries leave
12440 more room for the main program.
12441
12442 @item -mextern-sdata
12443 @itemx -mno-extern-sdata
12444 @opindex mextern-sdata
12445 @opindex mno-extern-sdata
12446 Assume (do not assume) that externally-defined data will be in
12447 a small data section if that data is within the @option{-G} limit.
12448 @option{-mextern-sdata} is the default for all configurations.
12449
12450 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
12451 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
12452 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
12453 is placed in a small data section.  If @var{Var} is defined by another
12454 module, you must either compile that module with a high-enough
12455 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
12456 definition.  If @var{Var} is common, you must link the application
12457 with a high-enough @option{-G} setting.
12458
12459 The easiest way of satisfying these restrictions is to compile
12460 and link every module with the same @option{-G} option.  However,
12461 you may wish to build a library that supports several different
12462 small data limits.  You can do this by compiling the library with
12463 the highest supported @option{-G} setting and additionally using
12464 @option{-mno-extern-sdata} to stop the library from making assumptions
12465 about externally-defined data.
12466
12467 @item -mgpopt
12468 @itemx -mno-gpopt
12469 @opindex mgpopt
12470 @opindex mno-gpopt
12471 Use (do not use) GP-relative accesses for symbols that are known to be
12472 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
12473 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
12474 configurations.
12475
12476 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
12477 might not hold the value of @code{_gp}.  For example, if the code is
12478 part of a library that might be used in a boot monitor, programs that
12479 call boot monitor routines will pass an unknown value in @code{$gp}.
12480 (In such situations, the boot monitor itself would usually be compiled
12481 with @option{-G0}.)
12482
12483 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
12484 @option{-mno-extern-sdata}.
12485
12486 @item -membedded-data
12487 @itemx -mno-embedded-data
12488 @opindex membedded-data
12489 @opindex mno-embedded-data
12490 Allocate variables to the read-only data section first if possible, then
12491 next in the small data section if possible, otherwise in data.  This gives
12492 slightly slower code than the default, but reduces the amount of RAM required
12493 when executing, and thus may be preferred for some embedded systems.
12494
12495 @item -muninit-const-in-rodata
12496 @itemx -mno-uninit-const-in-rodata
12497 @opindex muninit-const-in-rodata
12498 @opindex mno-uninit-const-in-rodata
12499 Put uninitialized @code{const} variables in the read-only data section.
12500 This option is only meaningful in conjunction with @option{-membedded-data}.
12501
12502 @item -mcode-readable=@var{setting}
12503 @opindex mcode-readable
12504 Specify whether GCC may generate code that reads from executable sections.
12505 There are three possible settings:
12506
12507 @table @gcctabopt
12508 @item -mcode-readable=yes
12509 Instructions may freely access executable sections.  This is the
12510 default setting.
12511
12512 @item -mcode-readable=pcrel
12513 MIPS16 PC-relative load instructions can access executable sections,
12514 but other instructions must not do so.  This option is useful on 4KSc
12515 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12516 It is also useful on processors that can be configured to have a dual
12517 instruction/data SRAM interface and that, like the M4K, automatically
12518 redirect PC-relative loads to the instruction RAM.
12519
12520 @item -mcode-readable=no
12521 Instructions must not access executable sections.  This option can be
12522 useful on targets that are configured to have a dual instruction/data
12523 SRAM interface but that (unlike the M4K) do not automatically redirect
12524 PC-relative loads to the instruction RAM.
12525 @end table
12526
12527 @item -msplit-addresses
12528 @itemx -mno-split-addresses
12529 @opindex msplit-addresses
12530 @opindex mno-split-addresses
12531 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12532 relocation operators.  This option has been superseded by
12533 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12534
12535 @item -mexplicit-relocs
12536 @itemx -mno-explicit-relocs
12537 @opindex mexplicit-relocs
12538 @opindex mno-explicit-relocs
12539 Use (do not use) assembler relocation operators when dealing with symbolic
12540 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12541 is to use assembler macros instead.
12542
12543 @option{-mexplicit-relocs} is the default if GCC was configured
12544 to use an assembler that supports relocation operators.
12545
12546 @item -mcheck-zero-division
12547 @itemx -mno-check-zero-division
12548 @opindex mcheck-zero-division
12549 @opindex mno-check-zero-division
12550 Trap (do not trap) on integer division by zero.
12551
12552 The default is @option{-mcheck-zero-division}.
12553
12554 @item -mdivide-traps
12555 @itemx -mdivide-breaks
12556 @opindex mdivide-traps
12557 @opindex mdivide-breaks
12558 MIPS systems check for division by zero by generating either a
12559 conditional trap or a break instruction.  Using traps results in
12560 smaller code, but is only supported on MIPS II and later.  Also, some
12561 versions of the Linux kernel have a bug that prevents trap from
12562 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12563 allow conditional traps on architectures that support them and
12564 @option{-mdivide-breaks} to force the use of breaks.
12565
12566 The default is usually @option{-mdivide-traps}, but this can be
12567 overridden at configure time using @option{--with-divide=breaks}.
12568 Divide-by-zero checks can be completely disabled using
12569 @option{-mno-check-zero-division}.
12570
12571 @item -mmemcpy
12572 @itemx -mno-memcpy
12573 @opindex mmemcpy
12574 @opindex mno-memcpy
12575 Force (do not force) the use of @code{memcpy()} for non-trivial block
12576 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12577 most constant-sized copies.
12578
12579 @item -mlong-calls
12580 @itemx -mno-long-calls
12581 @opindex mlong-calls
12582 @opindex mno-long-calls
12583 Disable (do not disable) use of the @code{jal} instruction.  Calling
12584 functions using @code{jal} is more efficient but requires the caller
12585 and callee to be in the same 256 megabyte segment.
12586
12587 This option has no effect on abicalls code.  The default is
12588 @option{-mno-long-calls}.
12589
12590 @item -mmad
12591 @itemx -mno-mad
12592 @opindex mmad
12593 @opindex mno-mad
12594 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12595 instructions, as provided by the R4650 ISA@.
12596
12597 @item -mfused-madd
12598 @itemx -mno-fused-madd
12599 @opindex mfused-madd
12600 @opindex mno-fused-madd
12601 Enable (disable) use of the floating point multiply-accumulate
12602 instructions, when they are available.  The default is
12603 @option{-mfused-madd}.
12604
12605 When multiply-accumulate instructions are used, the intermediate
12606 product is calculated to infinite precision and is not subject to
12607 the FCSR Flush to Zero bit.  This may be undesirable in some
12608 circumstances.
12609
12610 @item -nocpp
12611 @opindex nocpp
12612 Tell the MIPS assembler to not run its preprocessor over user
12613 assembler files (with a @samp{.s} suffix) when assembling them.
12614
12615 @item -mfix-r4000
12616 @itemx -mno-fix-r4000
12617 @opindex mfix-r4000
12618 @opindex mno-fix-r4000
12619 Work around certain R4000 CPU errata:
12620 @itemize @minus
12621 @item
12622 A double-word or a variable shift may give an incorrect result if executed
12623 immediately after starting an integer division.
12624 @item
12625 A double-word or a variable shift may give an incorrect result if executed
12626 while an integer multiplication is in progress.
12627 @item
12628 An integer division may give an incorrect result if started in a delay slot
12629 of a taken branch or a jump.
12630 @end itemize
12631
12632 @item -mfix-r4400
12633 @itemx -mno-fix-r4400
12634 @opindex mfix-r4400
12635 @opindex mno-fix-r4400
12636 Work around certain R4400 CPU errata:
12637 @itemize @minus
12638 @item
12639 A double-word or a variable shift may give an incorrect result if executed
12640 immediately after starting an integer division.
12641 @end itemize
12642
12643 @item -mfix-vr4120
12644 @itemx -mno-fix-vr4120
12645 @opindex mfix-vr4120
12646 Work around certain VR4120 errata:
12647 @itemize @minus
12648 @item
12649 @code{dmultu} does not always produce the correct result.
12650 @item
12651 @code{div} and @code{ddiv} do not always produce the correct result if one
12652 of the operands is negative.
12653 @end itemize
12654 The workarounds for the division errata rely on special functions in
12655 @file{libgcc.a}.  At present, these functions are only provided by
12656 the @code{mips64vr*-elf} configurations.
12657
12658 Other VR4120 errata require a nop to be inserted between certain pairs of
12659 instructions.  These errata are handled by the assembler, not by GCC itself.
12660
12661 @item -mfix-vr4130
12662 @opindex mfix-vr4130
12663 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12664 workarounds are implemented by the assembler rather than by GCC,
12665 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12666 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12667 instructions are available instead.
12668
12669 @item -mfix-sb1
12670 @itemx -mno-fix-sb1
12671 @opindex mfix-sb1
12672 Work around certain SB-1 CPU core errata.
12673 (This flag currently works around the SB-1 revision 2
12674 ``F1'' and ``F2'' floating point errata.)
12675
12676 @item -mflush-func=@var{func}
12677 @itemx -mno-flush-func
12678 @opindex mflush-func
12679 Specifies the function to call to flush the I and D caches, or to not
12680 call any such function.  If called, the function must take the same
12681 arguments as the common @code{_flush_func()}, that is, the address of the
12682 memory range for which the cache is being flushed, the size of the
12683 memory range, and the number 3 (to flush both caches).  The default
12684 depends on the target GCC was configured for, but commonly is either
12685 @samp{_flush_func} or @samp{__cpu_flush}.
12686
12687 @item mbranch-cost=@var{num}
12688 @opindex mbranch-cost
12689 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12690 This cost is only a heuristic and is not guaranteed to produce
12691 consistent results across releases.  A zero cost redundantly selects
12692 the default, which is based on the @option{-mtune} setting.
12693
12694 @item -mbranch-likely
12695 @itemx -mno-branch-likely
12696 @opindex mbranch-likely
12697 @opindex mno-branch-likely
12698 Enable or disable use of Branch Likely instructions, regardless of the
12699 default for the selected architecture.  By default, Branch Likely
12700 instructions may be generated if they are supported by the selected
12701 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12702 and processors which implement those architectures; for those, Branch
12703 Likely instructions will not be generated by default because the MIPS32
12704 and MIPS64 architectures specifically deprecate their use.
12705
12706 @item -mfp-exceptions
12707 @itemx -mno-fp-exceptions
12708 @opindex mfp-exceptions
12709 Specifies whether FP exceptions are enabled.  This affects how we schedule
12710 FP instructions for some processors.  The default is that FP exceptions are
12711 enabled.
12712
12713 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12714 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12715 FP pipe.
12716
12717 @item -mvr4130-align
12718 @itemx -mno-vr4130-align
12719 @opindex mvr4130-align
12720 The VR4130 pipeline is two-way superscalar, but can only issue two
12721 instructions together if the first one is 8-byte aligned.  When this
12722 option is enabled, GCC will align pairs of instructions that it
12723 thinks should execute in parallel.
12724
12725 This option only has an effect when optimizing for the VR4130.
12726 It normally makes code faster, but at the expense of making it bigger.
12727 It is enabled by default at optimization level @option{-O3}.
12728 @end table
12729
12730 @node MMIX Options
12731 @subsection MMIX Options
12732 @cindex MMIX Options
12733
12734 These options are defined for the MMIX:
12735
12736 @table @gcctabopt
12737 @item -mlibfuncs
12738 @itemx -mno-libfuncs
12739 @opindex mlibfuncs
12740 @opindex mno-libfuncs
12741 Specify that intrinsic library functions are being compiled, passing all
12742 values in registers, no matter the size.
12743
12744 @item -mepsilon
12745 @itemx -mno-epsilon
12746 @opindex mepsilon
12747 @opindex mno-epsilon
12748 Generate floating-point comparison instructions that compare with respect
12749 to the @code{rE} epsilon register.
12750
12751 @item -mabi=mmixware
12752 @itemx -mabi=gnu
12753 @opindex mabi-mmixware
12754 @opindex mabi=gnu
12755 Generate code that passes function parameters and return values that (in
12756 the called function) are seen as registers @code{$0} and up, as opposed to
12757 the GNU ABI which uses global registers @code{$231} and up.
12758
12759 @item -mzero-extend
12760 @itemx -mno-zero-extend
12761 @opindex mzero-extend
12762 @opindex mno-zero-extend
12763 When reading data from memory in sizes shorter than 64 bits, use (do not
12764 use) zero-extending load instructions by default, rather than
12765 sign-extending ones.
12766
12767 @item -mknuthdiv
12768 @itemx -mno-knuthdiv
12769 @opindex mknuthdiv
12770 @opindex mno-knuthdiv
12771 Make the result of a division yielding a remainder have the same sign as
12772 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12773 remainder follows the sign of the dividend.  Both methods are
12774 arithmetically valid, the latter being almost exclusively used.
12775
12776 @item -mtoplevel-symbols
12777 @itemx -mno-toplevel-symbols
12778 @opindex mtoplevel-symbols
12779 @opindex mno-toplevel-symbols
12780 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12781 code can be used with the @code{PREFIX} assembly directive.
12782
12783 @item -melf
12784 @opindex melf
12785 Generate an executable in the ELF format, rather than the default
12786 @samp{mmo} format used by the @command{mmix} simulator.
12787
12788 @item -mbranch-predict
12789 @itemx -mno-branch-predict
12790 @opindex mbranch-predict
12791 @opindex mno-branch-predict
12792 Use (do not use) the probable-branch instructions, when static branch
12793 prediction indicates a probable branch.
12794
12795 @item -mbase-addresses
12796 @itemx -mno-base-addresses
12797 @opindex mbase-addresses
12798 @opindex mno-base-addresses
12799 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12800 base address automatically generates a request (handled by the assembler
12801 and the linker) for a constant to be set up in a global register.  The
12802 register is used for one or more base address requests within the range 0
12803 to 255 from the value held in the register.  The generally leads to short
12804 and fast code, but the number of different data items that can be
12805 addressed is limited.  This means that a program that uses lots of static
12806 data may require @option{-mno-base-addresses}.
12807
12808 @item -msingle-exit
12809 @itemx -mno-single-exit
12810 @opindex msingle-exit
12811 @opindex mno-single-exit
12812 Force (do not force) generated code to have a single exit point in each
12813 function.
12814 @end table
12815
12816 @node MN10300 Options
12817 @subsection MN10300 Options
12818 @cindex MN10300 options
12819
12820 These @option{-m} options are defined for Matsushita MN10300 architectures:
12821
12822 @table @gcctabopt
12823 @item -mmult-bug
12824 @opindex mmult-bug
12825 Generate code to avoid bugs in the multiply instructions for the MN10300
12826 processors.  This is the default.
12827
12828 @item -mno-mult-bug
12829 @opindex mno-mult-bug
12830 Do not generate code to avoid bugs in the multiply instructions for the
12831 MN10300 processors.
12832
12833 @item -mam33
12834 @opindex mam33
12835 Generate code which uses features specific to the AM33 processor.
12836
12837 @item -mno-am33
12838 @opindex mno-am33
12839 Do not generate code which uses features specific to the AM33 processor.  This
12840 is the default.
12841
12842 @item -mreturn-pointer-on-d0
12843 @opindex mreturn-pointer-on-d0
12844 When generating a function which returns a pointer, return the pointer
12845 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12846 only in a0, and attempts to call such functions without a prototype
12847 would result in errors.  Note that this option is on by default; use
12848 @option{-mno-return-pointer-on-d0} to disable it.
12849
12850 @item -mno-crt0
12851 @opindex mno-crt0
12852 Do not link in the C run-time initialization object file.
12853
12854 @item -mrelax
12855 @opindex mrelax
12856 Indicate to the linker that it should perform a relaxation optimization pass
12857 to shorten branches, calls and absolute memory addresses.  This option only
12858 has an effect when used on the command line for the final link step.
12859
12860 This option makes symbolic debugging impossible.
12861 @end table
12862
12863 @node PDP-11 Options
12864 @subsection PDP-11 Options
12865 @cindex PDP-11 Options
12866
12867 These options are defined for the PDP-11:
12868
12869 @table @gcctabopt
12870 @item -mfpu
12871 @opindex mfpu
12872 Use hardware FPP floating point.  This is the default.  (FIS floating
12873 point on the PDP-11/40 is not supported.)
12874
12875 @item -msoft-float
12876 @opindex msoft-float
12877 Do not use hardware floating point.
12878
12879 @item -mac0
12880 @opindex mac0
12881 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12882
12883 @item -mno-ac0
12884 @opindex mno-ac0
12885 Return floating-point results in memory.  This is the default.
12886
12887 @item -m40
12888 @opindex m40
12889 Generate code for a PDP-11/40.
12890
12891 @item -m45
12892 @opindex m45
12893 Generate code for a PDP-11/45.  This is the default.
12894
12895 @item -m10
12896 @opindex m10
12897 Generate code for a PDP-11/10.
12898
12899 @item -mbcopy-builtin
12900 @opindex bcopy-builtin
12901 Use inline @code{movmemhi} patterns for copying memory.  This is the
12902 default.
12903
12904 @item -mbcopy
12905 @opindex mbcopy
12906 Do not use inline @code{movmemhi} patterns for copying memory.
12907
12908 @item -mint16
12909 @itemx -mno-int32
12910 @opindex mint16
12911 @opindex mno-int32
12912 Use 16-bit @code{int}.  This is the default.
12913
12914 @item -mint32
12915 @itemx -mno-int16
12916 @opindex mint32
12917 @opindex mno-int16
12918 Use 32-bit @code{int}.
12919
12920 @item -mfloat64
12921 @itemx -mno-float32
12922 @opindex mfloat64
12923 @opindex mno-float32
12924 Use 64-bit @code{float}.  This is the default.
12925
12926 @item -mfloat32
12927 @itemx -mno-float64
12928 @opindex mfloat32
12929 @opindex mno-float64
12930 Use 32-bit @code{float}.
12931
12932 @item -mabshi
12933 @opindex mabshi
12934 Use @code{abshi2} pattern.  This is the default.
12935
12936 @item -mno-abshi
12937 @opindex mno-abshi
12938 Do not use @code{abshi2} pattern.
12939
12940 @item -mbranch-expensive
12941 @opindex mbranch-expensive
12942 Pretend that branches are expensive.  This is for experimenting with
12943 code generation only.
12944
12945 @item -mbranch-cheap
12946 @opindex mbranch-cheap
12947 Do not pretend that branches are expensive.  This is the default.
12948
12949 @item -msplit
12950 @opindex msplit
12951 Generate code for a system with split I&D@.
12952
12953 @item -mno-split
12954 @opindex mno-split
12955 Generate code for a system without split I&D@.  This is the default.
12956
12957 @item -munix-asm
12958 @opindex munix-asm
12959 Use Unix assembler syntax.  This is the default when configured for
12960 @samp{pdp11-*-bsd}.
12961
12962 @item -mdec-asm
12963 @opindex mdec-asm
12964 Use DEC assembler syntax.  This is the default when configured for any
12965 PDP-11 target other than @samp{pdp11-*-bsd}.
12966 @end table
12967
12968 @node PowerPC Options
12969 @subsection PowerPC Options
12970 @cindex PowerPC options
12971
12972 These are listed under @xref{RS/6000 and PowerPC Options}.
12973
12974 @node RS/6000 and PowerPC Options
12975 @subsection IBM RS/6000 and PowerPC Options
12976 @cindex RS/6000 and PowerPC Options
12977 @cindex IBM RS/6000 and PowerPC Options
12978
12979 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12980 @table @gcctabopt
12981 @item -mpower
12982 @itemx -mno-power
12983 @itemx -mpower2
12984 @itemx -mno-power2
12985 @itemx -mpowerpc
12986 @itemx -mno-powerpc
12987 @itemx -mpowerpc-gpopt
12988 @itemx -mno-powerpc-gpopt
12989 @itemx -mpowerpc-gfxopt
12990 @itemx -mno-powerpc-gfxopt
12991 @itemx -mpowerpc64
12992 @itemx -mno-powerpc64
12993 @itemx -mmfcrf
12994 @itemx -mno-mfcrf
12995 @itemx -mpopcntb
12996 @itemx -mno-popcntb
12997 @itemx -mfprnd
12998 @itemx -mno-fprnd
12999 @itemx -mcmpb
13000 @itemx -mno-cmpb
13001 @itemx -mmfpgpr
13002 @itemx -mno-mfpgpr
13003 @itemx -mhard-dfp
13004 @itemx -mno-hard-dfp
13005 @opindex mpower
13006 @opindex mno-power
13007 @opindex mpower2
13008 @opindex mno-power2
13009 @opindex mpowerpc
13010 @opindex mno-powerpc
13011 @opindex mpowerpc-gpopt
13012 @opindex mno-powerpc-gpopt
13013 @opindex mpowerpc-gfxopt
13014 @opindex mno-powerpc-gfxopt
13015 @opindex mpowerpc64
13016 @opindex mno-powerpc64
13017 @opindex mmfcrf
13018 @opindex mno-mfcrf
13019 @opindex mpopcntb
13020 @opindex mno-popcntb
13021 @opindex mfprnd
13022 @opindex mno-fprnd
13023 @opindex mcmpb
13024 @opindex mno-cmpb
13025 @opindex mmfpgpr
13026 @opindex mno-mfpgpr
13027 @opindex mhard-dfp
13028 @opindex mno-hard-dfp
13029 GCC supports two related instruction set architectures for the
13030 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
13031 instructions supported by the @samp{rios} chip set used in the original
13032 RS/6000 systems and the @dfn{PowerPC} instruction set is the
13033 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
13034 the IBM 4xx, 6xx, and follow-on microprocessors.
13035
13036 Neither architecture is a subset of the other.  However there is a
13037 large common subset of instructions supported by both.  An MQ
13038 register is included in processors supporting the POWER architecture.
13039
13040 You use these options to specify which instructions are available on the
13041 processor you are using.  The default value of these options is
13042 determined when configuring GCC@.  Specifying the
13043 @option{-mcpu=@var{cpu_type}} overrides the specification of these
13044 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
13045 rather than the options listed above.
13046
13047 The @option{-mpower} option allows GCC to generate instructions that
13048 are found only in the POWER architecture and to use the MQ register.
13049 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
13050 to generate instructions that are present in the POWER2 architecture but
13051 not the original POWER architecture.
13052
13053 The @option{-mpowerpc} option allows GCC to generate instructions that
13054 are found only in the 32-bit subset of the PowerPC architecture.
13055 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
13056 GCC to use the optional PowerPC architecture instructions in the
13057 General Purpose group, including floating-point square root.  Specifying
13058 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
13059 use the optional PowerPC architecture instructions in the Graphics
13060 group, including floating-point select.
13061
13062 The @option{-mmfcrf} option allows GCC to generate the move from
13063 condition register field instruction implemented on the POWER4
13064 processor and other processors that support the PowerPC V2.01
13065 architecture.
13066 The @option{-mpopcntb} option allows GCC to generate the popcount and
13067 double precision FP reciprocal estimate instruction implemented on the
13068 POWER5 processor and other processors that support the PowerPC V2.02
13069 architecture.
13070 The @option{-mfprnd} option allows GCC to generate the FP round to
13071 integer instructions implemented on the POWER5+ processor and other
13072 processors that support the PowerPC V2.03 architecture.
13073 The @option{-mcmpb} option allows GCC to generate the compare bytes
13074 instruction implemented on the POWER6 processor and other processors
13075 that support the PowerPC V2.05 architecture.
13076 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
13077 general purpose register instructions implemented on the POWER6X
13078 processor and other processors that support the extended PowerPC V2.05
13079 architecture.
13080 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
13081 point instructions implemented on some POWER processors.
13082
13083 The @option{-mpowerpc64} option allows GCC to generate the additional
13084 64-bit instructions that are found in the full PowerPC64 architecture
13085 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
13086 @option{-mno-powerpc64}.
13087
13088 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
13089 will use only the instructions in the common subset of both
13090 architectures plus some special AIX common-mode calls, and will not use
13091 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
13092 permits GCC to use any instruction from either architecture and to
13093 allow use of the MQ register; specify this for the Motorola MPC601.
13094
13095 @item -mnew-mnemonics
13096 @itemx -mold-mnemonics
13097 @opindex mnew-mnemonics
13098 @opindex mold-mnemonics
13099 Select which mnemonics to use in the generated assembler code.  With
13100 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
13101 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
13102 assembler mnemonics defined for the POWER architecture.  Instructions
13103 defined in only one architecture have only one mnemonic; GCC uses that
13104 mnemonic irrespective of which of these options is specified.
13105
13106 GCC defaults to the mnemonics appropriate for the architecture in
13107 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
13108 value of these option.  Unless you are building a cross-compiler, you
13109 should normally not specify either @option{-mnew-mnemonics} or
13110 @option{-mold-mnemonics}, but should instead accept the default.
13111
13112 @item -mcpu=@var{cpu_type}
13113 @opindex mcpu
13114 Set architecture type, register usage, choice of mnemonics, and
13115 instruction scheduling parameters for machine type @var{cpu_type}.
13116 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
13117 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
13118 @samp{505}, @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
13119 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
13120 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
13121 @samp{860}, @samp{970}, @samp{8540}, @samp{e300c2}, @samp{e300c3},
13122 @samp{e500mc}, @samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5},
13123 @samp{power}, @samp{power2}, @samp{power3}, @samp{power4},
13124 @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x}, @samp{power7}
13125 @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
13126 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
13127
13128 @option{-mcpu=common} selects a completely generic processor.  Code
13129 generated under this option will run on any POWER or PowerPC processor.
13130 GCC will use only the instructions in the common subset of both
13131 architectures, and will not use the MQ register.  GCC assumes a generic
13132 processor model for scheduling purposes.
13133
13134 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
13135 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
13136 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
13137 types, with an appropriate, generic processor model assumed for
13138 scheduling purposes.
13139
13140 The other options specify a specific processor.  Code generated under
13141 those options will run best on that processor, and may not run at all on
13142 others.
13143
13144 The @option{-mcpu} options automatically enable or disable the
13145 following options:
13146
13147 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
13148 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
13149 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
13150
13151 The particular options set for any particular CPU will vary between
13152 compiler versions, depending on what setting seems to produce optimal
13153 code for that CPU; it doesn't necessarily reflect the actual hardware's
13154 capabilities.  If you wish to set an individual option to a particular
13155 value, you may specify it after the @option{-mcpu} option, like
13156 @samp{-mcpu=970 -mno-altivec}.
13157
13158 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
13159 not enabled or disabled by the @option{-mcpu} option at present because
13160 AIX does not have full support for these options.  You may still
13161 enable or disable them individually if you're sure it'll work in your
13162 environment.
13163
13164 @item -mtune=@var{cpu_type}
13165 @opindex mtune
13166 Set the instruction scheduling parameters for machine type
13167 @var{cpu_type}, but do not set the architecture type, register usage, or
13168 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
13169 values for @var{cpu_type} are used for @option{-mtune} as for
13170 @option{-mcpu}.  If both are specified, the code generated will use the
13171 architecture, registers, and mnemonics set by @option{-mcpu}, but the
13172 scheduling parameters set by @option{-mtune}.
13173
13174 @item -mswdiv
13175 @itemx -mno-swdiv
13176 @opindex mswdiv
13177 @opindex mno-swdiv
13178 Generate code to compute division as reciprocal estimate and iterative
13179 refinement, creating opportunities for increased throughput.  This
13180 feature requires: optional PowerPC Graphics instruction set for single
13181 precision and FRE instruction for double precision, assuming divides
13182 cannot generate user-visible traps, and the domain values not include
13183 Infinities, denormals or zero denominator.
13184
13185 @item -maltivec
13186 @itemx -mno-altivec
13187 @opindex maltivec
13188 @opindex mno-altivec
13189 Generate code that uses (does not use) AltiVec instructions, and also
13190 enable the use of built-in functions that allow more direct access to
13191 the AltiVec instruction set.  You may also need to set
13192 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
13193 enhancements.
13194
13195 @item -mvrsave
13196 @itemx -mno-vrsave
13197 @opindex mvrsave
13198 @opindex mno-vrsave
13199 Generate VRSAVE instructions when generating AltiVec code.
13200
13201 @item -msecure-plt
13202 @opindex msecure-plt
13203 Generate code that allows ld and ld.so to build executables and shared
13204 libraries with non-exec .plt and .got sections.  This is a PowerPC
13205 32-bit SYSV ABI option.
13206
13207 @item -mbss-plt
13208 @opindex mbss-plt
13209 Generate code that uses a BSS .plt section that ld.so fills in, and
13210 requires .plt and .got sections that are both writable and executable.
13211 This is a PowerPC 32-bit SYSV ABI option.
13212
13213 @item -misel
13214 @itemx -mno-isel
13215 @opindex misel
13216 @opindex mno-isel
13217 This switch enables or disables the generation of ISEL instructions.
13218
13219 @item -misel=@var{yes/no}
13220 This switch has been deprecated.  Use @option{-misel} and
13221 @option{-mno-isel} instead.
13222
13223 @item -mspe
13224 @itemx -mno-spe
13225 @opindex mspe
13226 @opindex mno-spe
13227 This switch enables or disables the generation of SPE simd
13228 instructions.
13229
13230 @item -mpaired
13231 @itemx -mno-paired
13232 @opindex mpaired
13233 @opindex mno-paired
13234 This switch enables or disables the generation of PAIRED simd
13235 instructions.
13236
13237 @item -mspe=@var{yes/no}
13238 This option has been deprecated.  Use @option{-mspe} and
13239 @option{-mno-spe} instead.
13240
13241 @item -mfloat-gprs=@var{yes/single/double/no}
13242 @itemx -mfloat-gprs
13243 @opindex mfloat-gprs
13244 This switch enables or disables the generation of floating point
13245 operations on the general purpose registers for architectures that
13246 support it.
13247
13248 The argument @var{yes} or @var{single} enables the use of
13249 single-precision floating point operations.
13250
13251 The argument @var{double} enables the use of single and
13252 double-precision floating point operations.
13253
13254 The argument @var{no} disables floating point operations on the
13255 general purpose registers.
13256
13257 This option is currently only available on the MPC854x.
13258
13259 @item -m32
13260 @itemx -m64
13261 @opindex m32
13262 @opindex m64
13263 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
13264 targets (including GNU/Linux).  The 32-bit environment sets int, long
13265 and pointer to 32 bits and generates code that runs on any PowerPC
13266 variant.  The 64-bit environment sets int to 32 bits and long and
13267 pointer to 64 bits, and generates code for PowerPC64, as for
13268 @option{-mpowerpc64}.
13269
13270 @item -mfull-toc
13271 @itemx -mno-fp-in-toc
13272 @itemx -mno-sum-in-toc
13273 @itemx -mminimal-toc
13274 @opindex mfull-toc
13275 @opindex mno-fp-in-toc
13276 @opindex mno-sum-in-toc
13277 @opindex mminimal-toc
13278 Modify generation of the TOC (Table Of Contents), which is created for
13279 every executable file.  The @option{-mfull-toc} option is selected by
13280 default.  In that case, GCC will allocate at least one TOC entry for
13281 each unique non-automatic variable reference in your program.  GCC
13282 will also place floating-point constants in the TOC@.  However, only
13283 16,384 entries are available in the TOC@.
13284
13285 If you receive a linker error message that saying you have overflowed
13286 the available TOC space, you can reduce the amount of TOC space used
13287 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
13288 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
13289 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
13290 generate code to calculate the sum of an address and a constant at
13291 run-time instead of putting that sum into the TOC@.  You may specify one
13292 or both of these options.  Each causes GCC to produce very slightly
13293 slower and larger code at the expense of conserving TOC space.
13294
13295 If you still run out of space in the TOC even when you specify both of
13296 these options, specify @option{-mminimal-toc} instead.  This option causes
13297 GCC to make only one TOC entry for every file.  When you specify this
13298 option, GCC will produce code that is slower and larger but which
13299 uses extremely little TOC space.  You may wish to use this option
13300 only on files that contain less frequently executed code.
13301
13302 @item -maix64
13303 @itemx -maix32
13304 @opindex maix64
13305 @opindex maix32
13306 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
13307 @code{long} type, and the infrastructure needed to support them.
13308 Specifying @option{-maix64} implies @option{-mpowerpc64} and
13309 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
13310 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
13311
13312 @item -mxl-compat
13313 @itemx -mno-xl-compat
13314 @opindex mxl-compat
13315 @opindex mno-xl-compat
13316 Produce code that conforms more closely to IBM XL compiler semantics
13317 when using AIX-compatible ABI@.  Pass floating-point arguments to
13318 prototyped functions beyond the register save area (RSA) on the stack
13319 in addition to argument FPRs.  Do not assume that most significant
13320 double in 128-bit long double value is properly rounded when comparing
13321 values and converting to double.  Use XL symbol names for long double
13322 support routines.
13323
13324 The AIX calling convention was extended but not initially documented to
13325 handle an obscure K&R C case of calling a function that takes the
13326 address of its arguments with fewer arguments than declared.  IBM XL
13327 compilers access floating point arguments which do not fit in the
13328 RSA from the stack when a subroutine is compiled without
13329 optimization.  Because always storing floating-point arguments on the
13330 stack is inefficient and rarely needed, this option is not enabled by
13331 default and only is necessary when calling subroutines compiled by IBM
13332 XL compilers without optimization.
13333
13334 @item -mpe
13335 @opindex mpe
13336 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
13337 application written to use message passing with special startup code to
13338 enable the application to run.  The system must have PE installed in the
13339 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
13340 must be overridden with the @option{-specs=} option to specify the
13341 appropriate directory location.  The Parallel Environment does not
13342 support threads, so the @option{-mpe} option and the @option{-pthread}
13343 option are incompatible.
13344
13345 @item -malign-natural
13346 @itemx -malign-power
13347 @opindex malign-natural
13348 @opindex malign-power
13349 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
13350 @option{-malign-natural} overrides the ABI-defined alignment of larger
13351 types, such as floating-point doubles, on their natural size-based boundary.
13352 The option @option{-malign-power} instructs GCC to follow the ABI-specified
13353 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
13354
13355 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
13356 is not supported.
13357
13358 @item -msoft-float
13359 @itemx -mhard-float
13360 @opindex msoft-float
13361 @opindex mhard-float
13362 Generate code that does not use (uses) the floating-point register set.
13363 Software floating point emulation is provided if you use the
13364 @option{-msoft-float} option, and pass the option to GCC when linking.
13365
13366 @item -mmultiple
13367 @itemx -mno-multiple
13368 @opindex mmultiple
13369 @opindex mno-multiple
13370 Generate code that uses (does not use) the load multiple word
13371 instructions and the store multiple word instructions.  These
13372 instructions are generated by default on POWER systems, and not
13373 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
13374 endian PowerPC systems, since those instructions do not work when the
13375 processor is in little endian mode.  The exceptions are PPC740 and
13376 PPC750 which permit the instructions usage in little endian mode.
13377
13378 @item -mstring
13379 @itemx -mno-string
13380 @opindex mstring
13381 @opindex mno-string
13382 Generate code that uses (does not use) the load string instructions
13383 and the store string word instructions to save multiple registers and
13384 do small block moves.  These instructions are generated by default on
13385 POWER systems, and not generated on PowerPC systems.  Do not use
13386 @option{-mstring} on little endian PowerPC systems, since those
13387 instructions do not work when the processor is in little endian mode.
13388 The exceptions are PPC740 and PPC750 which permit the instructions
13389 usage in little endian mode.
13390
13391 @item -mupdate
13392 @itemx -mno-update
13393 @opindex mupdate
13394 @opindex mno-update
13395 Generate code that uses (does not use) the load or store instructions
13396 that update the base register to the address of the calculated memory
13397 location.  These instructions are generated by default.  If you use
13398 @option{-mno-update}, there is a small window between the time that the
13399 stack pointer is updated and the address of the previous frame is
13400 stored, which means code that walks the stack frame across interrupts or
13401 signals may get corrupted data.
13402
13403 @item -mfused-madd
13404 @itemx -mno-fused-madd
13405 @opindex mfused-madd
13406 @opindex mno-fused-madd
13407 Generate code that uses (does not use) the floating point multiply and
13408 accumulate instructions.  These instructions are generated by default if
13409 hardware floating is used.
13410
13411 @item -mmulhw
13412 @itemx -mno-mulhw
13413 @opindex mmulhw
13414 @opindex mno-mulhw
13415 Generate code that uses (does not use) the half-word multiply and
13416 multiply-accumulate instructions on the IBM 405, 440 and 464 processors.
13417 These instructions are generated by default when targetting those
13418 processors.
13419
13420 @item -mdlmzb
13421 @itemx -mno-dlmzb
13422 @opindex mdlmzb
13423 @opindex mno-dlmzb
13424 Generate code that uses (does not use) the string-search @samp{dlmzb}
13425 instruction on the IBM 405, 440 and 464 processors.  This instruction is
13426 generated by default when targetting those processors.
13427
13428 @item -mno-bit-align
13429 @itemx -mbit-align
13430 @opindex mno-bit-align
13431 @opindex mbit-align
13432 On System V.4 and embedded PowerPC systems do not (do) force structures
13433 and unions that contain bit-fields to be aligned to the base type of the
13434 bit-field.
13435
13436 For example, by default a structure containing nothing but 8
13437 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
13438 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
13439 the structure would be aligned to a 1 byte boundary and be one byte in
13440 size.
13441
13442 @item -mno-strict-align
13443 @itemx -mstrict-align
13444 @opindex mno-strict-align
13445 @opindex mstrict-align
13446 On System V.4 and embedded PowerPC systems do not (do) assume that
13447 unaligned memory references will be handled by the system.
13448
13449 @item -mrelocatable
13450 @itemx -mno-relocatable
13451 @opindex mrelocatable
13452 @opindex mno-relocatable
13453 On embedded PowerPC systems generate code that allows (does not allow)
13454 the program to be relocated to a different address at runtime.  If you
13455 use @option{-mrelocatable} on any module, all objects linked together must
13456 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
13457
13458 @item -mrelocatable-lib
13459 @itemx -mno-relocatable-lib
13460 @opindex mrelocatable-lib
13461 @opindex mno-relocatable-lib
13462 On embedded PowerPC systems generate code that allows (does not allow)
13463 the program to be relocated to a different address at runtime.  Modules
13464 compiled with @option{-mrelocatable-lib} can be linked with either modules
13465 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
13466 with modules compiled with the @option{-mrelocatable} options.
13467
13468 @item -mno-toc
13469 @itemx -mtoc
13470 @opindex mno-toc
13471 @opindex mtoc
13472 On System V.4 and embedded PowerPC systems do not (do) assume that
13473 register 2 contains a pointer to a global area pointing to the addresses
13474 used in the program.
13475
13476 @item -mlittle
13477 @itemx -mlittle-endian
13478 @opindex mlittle
13479 @opindex mlittle-endian
13480 On System V.4 and embedded PowerPC systems compile code for the
13481 processor in little endian mode.  The @option{-mlittle-endian} option is
13482 the same as @option{-mlittle}.
13483
13484 @item -mbig
13485 @itemx -mbig-endian
13486 @opindex mbig
13487 @opindex mbig-endian
13488 On System V.4 and embedded PowerPC systems compile code for the
13489 processor in big endian mode.  The @option{-mbig-endian} option is
13490 the same as @option{-mbig}.
13491
13492 @item -mdynamic-no-pic
13493 @opindex mdynamic-no-pic
13494 On Darwin and Mac OS X systems, compile code so that it is not
13495 relocatable, but that its external references are relocatable.  The
13496 resulting code is suitable for applications, but not shared
13497 libraries.
13498
13499 @item -mprioritize-restricted-insns=@var{priority}
13500 @opindex mprioritize-restricted-insns
13501 This option controls the priority that is assigned to
13502 dispatch-slot restricted instructions during the second scheduling
13503 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13504 @var{no/highest/second-highest} priority to dispatch slot restricted
13505 instructions.
13506
13507 @item -msched-costly-dep=@var{dependence_type}
13508 @opindex msched-costly-dep
13509 This option controls which dependences are considered costly
13510 by the target during instruction scheduling.  The argument
13511 @var{dependence_type} takes one of the following values:
13512 @var{no}: no dependence is costly,
13513 @var{all}: all dependences are costly,
13514 @var{true_store_to_load}: a true dependence from store to load is costly,
13515 @var{store_to_load}: any dependence from store to load is costly,
13516 @var{number}: any dependence which latency >= @var{number} is costly.
13517
13518 @item -minsert-sched-nops=@var{scheme}
13519 @opindex minsert-sched-nops
13520 This option controls which nop insertion scheme will be used during
13521 the second scheduling pass.  The argument @var{scheme} takes one of the
13522 following values:
13523 @var{no}: Don't insert nops.
13524 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13525 according to the scheduler's grouping.
13526 @var{regroup_exact}: Insert nops to force costly dependent insns into
13527 separate groups.  Insert exactly as many nops as needed to force an insn
13528 to a new group, according to the estimated processor grouping.
13529 @var{number}: Insert nops to force costly dependent insns into
13530 separate groups.  Insert @var{number} nops to force an insn to a new group.
13531
13532 @item -mcall-sysv
13533 @opindex mcall-sysv
13534 On System V.4 and embedded PowerPC systems compile code using calling
13535 conventions that adheres to the March 1995 draft of the System V
13536 Application Binary Interface, PowerPC processor supplement.  This is the
13537 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13538
13539 @item -mcall-sysv-eabi
13540 @opindex mcall-sysv-eabi
13541 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13542
13543 @item -mcall-sysv-noeabi
13544 @opindex mcall-sysv-noeabi
13545 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13546
13547 @item -mcall-solaris
13548 @opindex mcall-solaris
13549 On System V.4 and embedded PowerPC systems compile code for the Solaris
13550 operating system.
13551
13552 @item -mcall-linux
13553 @opindex mcall-linux
13554 On System V.4 and embedded PowerPC systems compile code for the
13555 Linux-based GNU system.
13556
13557 @item -mcall-gnu
13558 @opindex mcall-gnu
13559 On System V.4 and embedded PowerPC systems compile code for the
13560 Hurd-based GNU system.
13561
13562 @item -mcall-netbsd
13563 @opindex mcall-netbsd
13564 On System V.4 and embedded PowerPC systems compile code for the
13565 NetBSD operating system.
13566
13567 @item -maix-struct-return
13568 @opindex maix-struct-return
13569 Return all structures in memory (as specified by the AIX ABI)@.
13570
13571 @item -msvr4-struct-return
13572 @opindex msvr4-struct-return
13573 Return structures smaller than 8 bytes in registers (as specified by the
13574 SVR4 ABI)@.
13575
13576 @item -mabi=@var{abi-type}
13577 @opindex mabi
13578 Extend the current ABI with a particular extension, or remove such extension.
13579 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13580 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13581
13582 @item -mabi=spe
13583 @opindex mabi=spe
13584 Extend the current ABI with SPE ABI extensions.  This does not change
13585 the default ABI, instead it adds the SPE ABI extensions to the current
13586 ABI@.
13587
13588 @item -mabi=no-spe
13589 @opindex mabi=no-spe
13590 Disable Booke SPE ABI extensions for the current ABI@.
13591
13592 @item -mabi=ibmlongdouble
13593 @opindex mabi=ibmlongdouble
13594 Change the current ABI to use IBM extended precision long double.
13595 This is a PowerPC 32-bit SYSV ABI option.
13596
13597 @item -mabi=ieeelongdouble
13598 @opindex mabi=ieeelongdouble
13599 Change the current ABI to use IEEE extended precision long double.
13600 This is a PowerPC 32-bit Linux ABI option.
13601
13602 @item -mprototype
13603 @itemx -mno-prototype
13604 @opindex mprototype
13605 @opindex mno-prototype
13606 On System V.4 and embedded PowerPC systems assume that all calls to
13607 variable argument functions are properly prototyped.  Otherwise, the
13608 compiler must insert an instruction before every non prototyped call to
13609 set or clear bit 6 of the condition code register (@var{CR}) to
13610 indicate whether floating point values were passed in the floating point
13611 registers in case the function takes a variable arguments.  With
13612 @option{-mprototype}, only calls to prototyped variable argument functions
13613 will set or clear the bit.
13614
13615 @item -msim
13616 @opindex msim
13617 On embedded PowerPC systems, assume that the startup module is called
13618 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13619 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
13620 configurations.
13621
13622 @item -mmvme
13623 @opindex mmvme
13624 On embedded PowerPC systems, assume that the startup module is called
13625 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13626 @file{libc.a}.
13627
13628 @item -mads
13629 @opindex mads
13630 On embedded PowerPC systems, assume that the startup module is called
13631 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13632 @file{libc.a}.
13633
13634 @item -myellowknife
13635 @opindex myellowknife
13636 On embedded PowerPC systems, assume that the startup module is called
13637 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13638 @file{libc.a}.
13639
13640 @item -mvxworks
13641 @opindex mvxworks
13642 On System V.4 and embedded PowerPC systems, specify that you are
13643 compiling for a VxWorks system.
13644
13645 @item -memb
13646 @opindex memb
13647 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13648 header to indicate that @samp{eabi} extended relocations are used.
13649
13650 @item -meabi
13651 @itemx -mno-eabi
13652 @opindex meabi
13653 @opindex mno-eabi
13654 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13655 Embedded Applications Binary Interface (eabi) which is a set of
13656 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13657 means that the stack is aligned to an 8 byte boundary, a function
13658 @code{__eabi} is called to from @code{main} to set up the eabi
13659 environment, and the @option{-msdata} option can use both @code{r2} and
13660 @code{r13} to point to two separate small data areas.  Selecting
13661 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13662 do not call an initialization function from @code{main}, and the
13663 @option{-msdata} option will only use @code{r13} to point to a single
13664 small data area.  The @option{-meabi} option is on by default if you
13665 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13666
13667 @item -msdata=eabi
13668 @opindex msdata=eabi
13669 On System V.4 and embedded PowerPC systems, put small initialized
13670 @code{const} global and static data in the @samp{.sdata2} section, which
13671 is pointed to by register @code{r2}.  Put small initialized
13672 non-@code{const} global and static data in the @samp{.sdata} section,
13673 which is pointed to by register @code{r13}.  Put small uninitialized
13674 global and static data in the @samp{.sbss} section, which is adjacent to
13675 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13676 incompatible with the @option{-mrelocatable} option.  The
13677 @option{-msdata=eabi} option also sets the @option{-memb} option.
13678
13679 @item -msdata=sysv
13680 @opindex msdata=sysv
13681 On System V.4 and embedded PowerPC systems, put small global and static
13682 data in the @samp{.sdata} section, which is pointed to by register
13683 @code{r13}.  Put small uninitialized global and static data in the
13684 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13685 The @option{-msdata=sysv} option is incompatible with the
13686 @option{-mrelocatable} option.
13687
13688 @item -msdata=default
13689 @itemx -msdata
13690 @opindex msdata=default
13691 @opindex msdata
13692 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13693 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13694 same as @option{-msdata=sysv}.
13695
13696 @item -msdata-data
13697 @opindex msdata-data
13698 On System V.4 and embedded PowerPC systems, put small global
13699 data in the @samp{.sdata} section.  Put small uninitialized global
13700 data in the @samp{.sbss} section.  Do not use register @code{r13}
13701 to address small data however.  This is the default behavior unless
13702 other @option{-msdata} options are used.
13703
13704 @item -msdata=none
13705 @itemx -mno-sdata
13706 @opindex msdata=none
13707 @opindex mno-sdata
13708 On embedded PowerPC systems, put all initialized global and static data
13709 in the @samp{.data} section, and all uninitialized data in the
13710 @samp{.bss} section.
13711
13712 @item -G @var{num}
13713 @opindex G
13714 @cindex smaller data references (PowerPC)
13715 @cindex .sdata/.sdata2 references (PowerPC)
13716 On embedded PowerPC systems, put global and static items less than or
13717 equal to @var{num} bytes into the small data or bss sections instead of
13718 the normal data or bss section.  By default, @var{num} is 8.  The
13719 @option{-G @var{num}} switch is also passed to the linker.
13720 All modules should be compiled with the same @option{-G @var{num}} value.
13721
13722 @item -mregnames
13723 @itemx -mno-regnames
13724 @opindex mregnames
13725 @opindex mno-regnames
13726 On System V.4 and embedded PowerPC systems do (do not) emit register
13727 names in the assembly language output using symbolic forms.
13728
13729 @item -mlongcall
13730 @itemx -mno-longcall
13731 @opindex mlongcall
13732 @opindex mno-longcall
13733 By default assume that all calls are far away so that a longer more
13734 expensive calling sequence is required.  This is required for calls
13735 further than 32 megabytes (33,554,432 bytes) from the current location.
13736 A short call will be generated if the compiler knows
13737 the call cannot be that far away.  This setting can be overridden by
13738 the @code{shortcall} function attribute, or by @code{#pragma
13739 longcall(0)}.
13740
13741 Some linkers are capable of detecting out-of-range calls and generating
13742 glue code on the fly.  On these systems, long calls are unnecessary and
13743 generate slower code.  As of this writing, the AIX linker can do this,
13744 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13745 to the GNU linker for 32-bit PowerPC systems as well.
13746
13747 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13748 callee, L42'', plus a ``branch island'' (glue code).  The two target
13749 addresses represent the callee and the ``branch island''.  The
13750 Darwin/PPC linker will prefer the first address and generate a ``bl
13751 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13752 otherwise, the linker will generate ``bl L42'' to call the ``branch
13753 island''.  The ``branch island'' is appended to the body of the
13754 calling function; it computes the full 32-bit address of the callee
13755 and jumps to it.
13756
13757 On Mach-O (Darwin) systems, this option directs the compiler emit to
13758 the glue for every direct call, and the Darwin linker decides whether
13759 to use or discard it.
13760
13761 In the future, we may cause GCC to ignore all longcall specifications
13762 when the linker is known to generate glue.
13763
13764 @item -pthread
13765 @opindex pthread
13766 Adds support for multithreading with the @dfn{pthreads} library.
13767 This option sets flags for both the preprocessor and linker.
13768
13769 @end table
13770
13771 @node S/390 and zSeries Options
13772 @subsection S/390 and zSeries Options
13773 @cindex S/390 and zSeries Options
13774
13775 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13776
13777 @table @gcctabopt
13778 @item -mhard-float
13779 @itemx -msoft-float
13780 @opindex mhard-float
13781 @opindex msoft-float
13782 Use (do not use) the hardware floating-point instructions and registers
13783 for floating-point operations.  When @option{-msoft-float} is specified,
13784 functions in @file{libgcc.a} will be used to perform floating-point
13785 operations.  When @option{-mhard-float} is specified, the compiler
13786 generates IEEE floating-point instructions.  This is the default.
13787
13788 @item -mlong-double-64
13789 @itemx -mlong-double-128
13790 @opindex mlong-double-64
13791 @opindex mlong-double-128
13792 These switches control the size of @code{long double} type. A size
13793 of 64bit makes the @code{long double} type equivalent to the @code{double}
13794 type. This is the default.
13795
13796 @item -mbackchain
13797 @itemx -mno-backchain
13798 @opindex mbackchain
13799 @opindex mno-backchain
13800 Store (do not store) the address of the caller's frame as backchain pointer
13801 into the callee's stack frame.
13802 A backchain may be needed to allow debugging using tools that do not understand
13803 DWARF-2 call frame information.
13804 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13805 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13806 the backchain is placed into the topmost word of the 96/160 byte register
13807 save area.
13808
13809 In general, code compiled with @option{-mbackchain} is call-compatible with
13810 code compiled with @option{-mmo-backchain}; however, use of the backchain
13811 for debugging purposes usually requires that the whole binary is built with
13812 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13813 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13814 to build a linux kernel use @option{-msoft-float}.
13815
13816 The default is to not maintain the backchain.
13817
13818 @item -mpacked-stack
13819 @itemx -mno-packed-stack
13820 @opindex mpacked-stack
13821 @opindex mno-packed-stack
13822 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13823 specified, the compiler uses the all fields of the 96/160 byte register save
13824 area only for their default purpose; unused fields still take up stack space.
13825 When @option{-mpacked-stack} is specified, register save slots are densely
13826 packed at the top of the register save area; unused space is reused for other
13827 purposes, allowing for more efficient use of the available stack space.
13828 However, when @option{-mbackchain} is also in effect, the topmost word of
13829 the save area is always used to store the backchain, and the return address
13830 register is always saved two words below the backchain.
13831
13832 As long as the stack frame backchain is not used, code generated with
13833 @option{-mpacked-stack} is call-compatible with code generated with
13834 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13835 S/390 or zSeries generated code that uses the stack frame backchain at run
13836 time, not just for debugging purposes.  Such code is not call-compatible
13837 with code compiled with @option{-mpacked-stack}.  Also, note that the
13838 combination of @option{-mbackchain},
13839 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13840 to build a linux kernel use @option{-msoft-float}.
13841
13842 The default is to not use the packed stack layout.
13843
13844 @item -msmall-exec
13845 @itemx -mno-small-exec
13846 @opindex msmall-exec
13847 @opindex mno-small-exec
13848 Generate (or do not generate) code using the @code{bras} instruction
13849 to do subroutine calls.
13850 This only works reliably if the total executable size does not
13851 exceed 64k.  The default is to use the @code{basr} instruction instead,
13852 which does not have this limitation.
13853
13854 @item -m64
13855 @itemx -m31
13856 @opindex m64
13857 @opindex m31
13858 When @option{-m31} is specified, generate code compliant to the
13859 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13860 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13861 particular to generate 64-bit instructions.  For the @samp{s390}
13862 targets, the default is @option{-m31}, while the @samp{s390x}
13863 targets default to @option{-m64}.
13864
13865 @item -mzarch
13866 @itemx -mesa
13867 @opindex mzarch
13868 @opindex mesa
13869 When @option{-mzarch} is specified, generate code using the
13870 instructions available on z/Architecture.
13871 When @option{-mesa} is specified, generate code using the
13872 instructions available on ESA/390.  Note that @option{-mesa} is
13873 not possible with @option{-m64}.
13874 When generating code compliant to the GNU/Linux for S/390 ABI,
13875 the default is @option{-mesa}.  When generating code compliant
13876 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13877
13878 @item -mmvcle
13879 @itemx -mno-mvcle
13880 @opindex mmvcle
13881 @opindex mno-mvcle
13882 Generate (or do not generate) code using the @code{mvcle} instruction
13883 to perform block moves.  When @option{-mno-mvcle} is specified,
13884 use a @code{mvc} loop instead.  This is the default unless optimizing for
13885 size.
13886
13887 @item -mdebug
13888 @itemx -mno-debug
13889 @opindex mdebug
13890 @opindex mno-debug
13891 Print (or do not print) additional debug information when compiling.
13892 The default is to not print debug information.
13893
13894 @item -march=@var{cpu-type}
13895 @opindex march
13896 Generate code that will run on @var{cpu-type}, which is the name of a system
13897 representing a certain processor type.  Possible values for
13898 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13899 When generating code using the instructions available on z/Architecture,
13900 the default is @option{-march=z900}.  Otherwise, the default is
13901 @option{-march=g5}.
13902
13903 @item -mtune=@var{cpu-type}
13904 @opindex mtune
13905 Tune to @var{cpu-type} everything applicable about the generated code,
13906 except for the ABI and the set of available instructions.
13907 The list of @var{cpu-type} values is the same as for @option{-march}.
13908 The default is the value used for @option{-march}.
13909
13910 @item -mtpf-trace
13911 @itemx -mno-tpf-trace
13912 @opindex mtpf-trace
13913 @opindex mno-tpf-trace
13914 Generate code that adds (does not add) in TPF OS specific branches to trace
13915 routines in the operating system.  This option is off by default, even
13916 when compiling for the TPF OS@.
13917
13918 @item -mfused-madd
13919 @itemx -mno-fused-madd
13920 @opindex mfused-madd
13921 @opindex mno-fused-madd
13922 Generate code that uses (does not use) the floating point multiply and
13923 accumulate instructions.  These instructions are generated by default if
13924 hardware floating point is used.
13925
13926 @item -mwarn-framesize=@var{framesize}
13927 @opindex mwarn-framesize
13928 Emit a warning if the current function exceeds the given frame size.  Because
13929 this is a compile time check it doesn't need to be a real problem when the program
13930 runs.  It is intended to identify functions which most probably cause
13931 a stack overflow.  It is useful to be used in an environment with limited stack
13932 size e.g.@: the linux kernel.
13933
13934 @item -mwarn-dynamicstack
13935 @opindex mwarn-dynamicstack
13936 Emit a warning if the function calls alloca or uses dynamically
13937 sized arrays.  This is generally a bad idea with a limited stack size.
13938
13939 @item -mstack-guard=@var{stack-guard}
13940 @itemx -mstack-size=@var{stack-size}
13941 @opindex mstack-guard
13942 @opindex mstack-size
13943 If these options are provided the s390 back end emits additional instructions in
13944 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13945 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13946 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13947 the frame size of the compiled function is chosen.
13948 These options are intended to be used to help debugging stack overflow problems.
13949 The additionally emitted code causes only little overhead and hence can also be
13950 used in production like systems without greater performance degradation.  The given
13951 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13952 @var{stack-guard} without exceeding 64k.
13953 In order to be efficient the extra code makes the assumption that the stack starts
13954 at an address aligned to the value given by @var{stack-size}.
13955 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13956 @end table
13957
13958 @node Score Options
13959 @subsection Score Options
13960 @cindex Score Options
13961
13962 These options are defined for Score implementations:
13963
13964 @table @gcctabopt
13965 @item -meb
13966 @opindex meb
13967 Compile code for big endian mode.  This is the default.
13968
13969 @item -mel
13970 @opindex mel
13971 Compile code for little endian mode. 
13972
13973 @item -mnhwloop
13974 @opindex mnhwloop
13975 Disable generate bcnz instruction.
13976
13977 @item -muls
13978 @opindex muls
13979 Enable generate unaligned load and store instruction.
13980
13981 @item -mmac
13982 @opindex mmac
13983 Enable the use of multiply-accumulate instructions. Disabled by default. 
13984
13985 @item -mscore5
13986 @opindex mscore5
13987 Specify the SCORE5 as the target architecture.
13988
13989 @item -mscore5u
13990 @opindex mscore5u
13991 Specify the SCORE5U of the target architecture.
13992
13993 @item -mscore7
13994 @opindex mscore7
13995 Specify the SCORE7 as the target architecture. This is the default.
13996
13997 @item -mscore7d
13998 @opindex mscore7d
13999 Specify the SCORE7D as the target architecture.
14000 @end table
14001
14002 @node SH Options
14003 @subsection SH Options
14004
14005 These @samp{-m} options are defined for the SH implementations:
14006
14007 @table @gcctabopt
14008 @item -m1
14009 @opindex m1
14010 Generate code for the SH1.
14011
14012 @item -m2
14013 @opindex m2
14014 Generate code for the SH2.
14015
14016 @item -m2e
14017 Generate code for the SH2e.
14018
14019 @item -m3
14020 @opindex m3
14021 Generate code for the SH3.
14022
14023 @item -m3e
14024 @opindex m3e
14025 Generate code for the SH3e.
14026
14027 @item -m4-nofpu
14028 @opindex m4-nofpu
14029 Generate code for the SH4 without a floating-point unit.
14030
14031 @item -m4-single-only
14032 @opindex m4-single-only
14033 Generate code for the SH4 with a floating-point unit that only
14034 supports single-precision arithmetic.
14035
14036 @item -m4-single
14037 @opindex m4-single
14038 Generate code for the SH4 assuming the floating-point unit is in
14039 single-precision mode by default.
14040
14041 @item -m4
14042 @opindex m4
14043 Generate code for the SH4.
14044
14045 @item -m4a-nofpu
14046 @opindex m4a-nofpu
14047 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
14048 floating-point unit is not used.
14049
14050 @item -m4a-single-only
14051 @opindex m4a-single-only
14052 Generate code for the SH4a, in such a way that no double-precision
14053 floating point operations are used.
14054
14055 @item -m4a-single
14056 @opindex m4a-single
14057 Generate code for the SH4a assuming the floating-point unit is in
14058 single-precision mode by default.
14059
14060 @item -m4a
14061 @opindex m4a
14062 Generate code for the SH4a.
14063
14064 @item -m4al
14065 @opindex m4al
14066 Same as @option{-m4a-nofpu}, except that it implicitly passes
14067 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
14068 instructions at the moment.
14069
14070 @item -mb
14071 @opindex mb
14072 Compile code for the processor in big endian mode.
14073
14074 @item -ml
14075 @opindex ml
14076 Compile code for the processor in little endian mode.
14077
14078 @item -mdalign
14079 @opindex mdalign
14080 Align doubles at 64-bit boundaries.  Note that this changes the calling
14081 conventions, and thus some functions from the standard C library will
14082 not work unless you recompile it first with @option{-mdalign}.
14083
14084 @item -mrelax
14085 @opindex mrelax
14086 Shorten some address references at link time, when possible; uses the
14087 linker option @option{-relax}.
14088
14089 @item -mbigtable
14090 @opindex mbigtable
14091 Use 32-bit offsets in @code{switch} tables.  The default is to use
14092 16-bit offsets.
14093
14094 @item -mbitops
14095 @opindex mbitops
14096 Enable the use of bit manipulation instructions on SH2A.
14097
14098 @item -mfmovd
14099 @opindex mfmovd
14100 Enable the use of the instruction @code{fmovd}.
14101
14102 @item -mhitachi
14103 @opindex mhitachi
14104 Comply with the calling conventions defined by Renesas.
14105
14106 @item -mrenesas
14107 @opindex mhitachi
14108 Comply with the calling conventions defined by Renesas.
14109
14110 @item -mno-renesas
14111 @opindex mhitachi
14112 Comply with the calling conventions defined for GCC before the Renesas
14113 conventions were available.  This option is the default for all
14114 targets of the SH toolchain except for @samp{sh-symbianelf}.
14115
14116 @item -mnomacsave
14117 @opindex mnomacsave
14118 Mark the @code{MAC} register as call-clobbered, even if
14119 @option{-mhitachi} is given.
14120
14121 @item -mieee
14122 @opindex mieee
14123 Increase IEEE-compliance of floating-point code.
14124 At the moment, this is equivalent to @option{-fno-finite-math-only}.
14125 When generating 16 bit SH opcodes, getting IEEE-conforming results for
14126 comparisons of NANs / infinities incurs extra overhead in every
14127 floating point comparison, therefore the default is set to
14128 @option{-ffinite-math-only}.
14129
14130 @item -minline-ic_invalidate
14131 @opindex minline-ic_invalidate
14132 Inline code to invalidate instruction cache entries after setting up
14133 nested function trampolines.
14134 This option has no effect if -musermode is in effect and the selected
14135 code generation option (e.g. -m4) does not allow the use of the icbi
14136 instruction.
14137 If the selected code generation option does not allow the use of the icbi
14138 instruction, and -musermode is not in effect, the inlined code will
14139 manipulate the instruction cache address array directly with an associative
14140 write.  This not only requires privileged mode, but it will also
14141 fail if the cache line had been mapped via the TLB and has become unmapped.
14142
14143 @item -misize
14144 @opindex misize
14145 Dump instruction size and location in the assembly code.
14146
14147 @item -mpadstruct
14148 @opindex mpadstruct
14149 This option is deprecated.  It pads structures to multiple of 4 bytes,
14150 which is incompatible with the SH ABI@.
14151
14152 @item -mspace
14153 @opindex mspace
14154 Optimize for space instead of speed.  Implied by @option{-Os}.
14155
14156 @item -mprefergot
14157 @opindex mprefergot
14158 When generating position-independent code, emit function calls using
14159 the Global Offset Table instead of the Procedure Linkage Table.
14160
14161 @item -musermode
14162 @opindex musermode
14163 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
14164 if the inlined code would not work in user mode.
14165 This is the default when the target is @code{sh-*-linux*}.
14166
14167 @item -multcost=@var{number}
14168 @opindex multcost=@var{number}
14169 Set the cost to assume for a multiply insn.
14170
14171 @item -mdiv=@var{strategy}
14172 @opindex mdiv=@var{strategy}
14173 Set the division strategy to use for SHmedia code.  @var{strategy} must be
14174 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
14175 inv:call2, inv:fp .
14176 "fp" performs the operation in floating point.  This has a very high latency,
14177 but needs only a few instructions, so it might be a good choice if
14178 your code has enough easily exploitable ILP to allow the compiler to
14179 schedule the floating point instructions together with other instructions.
14180 Division by zero causes a floating point exception.
14181 "inv" uses integer operations to calculate the inverse of the divisor,
14182 and then multiplies the dividend with the inverse.  This strategy allows
14183 cse and hoisting of the inverse calculation.  Division by zero calculates
14184 an unspecified result, but does not trap.
14185 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
14186 have been found, or if the entire operation has been hoisted to the same
14187 place, the last stages of the inverse calculation are intertwined with the
14188 final multiply to reduce the overall latency, at the expense of using a few
14189 more instructions, and thus offering fewer scheduling opportunities with
14190 other code.
14191 "call" calls a library function that usually implements the inv:minlat
14192 strategy.
14193 This gives high code density for m5-*media-nofpu compilations.
14194 "call2" uses a different entry point of the same library function, where it
14195 assumes that a pointer to a lookup table has already been set up, which
14196 exposes the pointer load to cse / code hoisting optimizations.
14197 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
14198 code generation, but if the code stays unoptimized, revert to the "call",
14199 "call2", or "fp" strategies, respectively.  Note that the
14200 potentially-trapping side effect of division by zero is carried by a
14201 separate instruction, so it is possible that all the integer instructions
14202 are hoisted out, but the marker for the side effect stays where it is.
14203 A recombination to fp operations or a call is not possible in that case.
14204 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
14205 that the inverse calculation was nor separated from the multiply, they speed
14206 up division where the dividend fits into 20 bits (plus sign where applicable),
14207 by inserting a test to skip a number of operations in this case; this test
14208 slows down the case of larger dividends.  inv20u assumes the case of a such
14209 a small dividend to be unlikely, and inv20l assumes it to be likely.
14210
14211 @item -mdivsi3_libfunc=@var{name}
14212 @opindex mdivsi3_libfunc=@var{name}
14213 Set the name of the library function used for 32 bit signed division to
14214 @var{name}.  This only affect the name used in the call and inv:call
14215 division strategies, and the compiler will still expect the same
14216 sets of input/output/clobbered registers as if this option was not present.
14217
14218 @item -mfixed-range=@var{register-range}
14219 @opindex mfixed-range
14220 Generate code treating the given register range as fixed registers.
14221 A fixed register is one that the register allocator can not use.  This is
14222 useful when compiling kernel code.  A register range is specified as
14223 two registers separated by a dash.  Multiple register ranges can be
14224 specified separated by a comma.
14225
14226 @item -madjust-unroll
14227 @opindex madjust-unroll
14228 Throttle unrolling to avoid thrashing target registers.
14229 This option only has an effect if the gcc code base supports the
14230 TARGET_ADJUST_UNROLL_MAX target hook.
14231
14232 @item -mindexed-addressing
14233 @opindex mindexed-addressing
14234 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
14235 This is only safe if the hardware and/or OS implement 32 bit wrap-around
14236 semantics for the indexed addressing mode.  The architecture allows the
14237 implementation of processors with 64 bit MMU, which the OS could use to
14238 get 32 bit addressing, but since no current hardware implementation supports
14239 this or any other way to make the indexed addressing mode safe to use in
14240 the 32 bit ABI, the default is -mno-indexed-addressing.
14241
14242 @item -mgettrcost=@var{number}
14243 @opindex mgettrcost=@var{number}
14244 Set the cost assumed for the gettr instruction to @var{number}.
14245 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
14246
14247 @item -mpt-fixed
14248 @opindex mpt-fixed
14249 Assume pt* instructions won't trap.  This will generally generate better
14250 scheduled code, but is unsafe on current hardware.  The current architecture
14251 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
14252 This has the unintentional effect of making it unsafe to schedule ptabs /
14253 ptrel before a branch, or hoist it out of a loop.  For example,
14254 __do_global_ctors, a part of libgcc that runs constructors at program
14255 startup, calls functions in a list which is delimited by @minus{}1.  With the
14256 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
14257 That means that all the constructors will be run a bit quicker, but when
14258 the loop comes to the end of the list, the program crashes because ptabs
14259 loads @minus{}1 into a target register.  Since this option is unsafe for any
14260 hardware implementing the current architecture specification, the default
14261 is -mno-pt-fixed.  Unless the user specifies a specific cost with
14262 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
14263 this deters register allocation using target registers for storing
14264 ordinary integers.
14265
14266 @item -minvalid-symbols
14267 @opindex minvalid-symbols
14268 Assume symbols might be invalid.  Ordinary function symbols generated by
14269 the compiler will always be valid to load with movi/shori/ptabs or
14270 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
14271 to generate symbols that will cause ptabs / ptrel to trap.
14272 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
14273 It will then prevent cross-basic-block cse, hoisting and most scheduling
14274 of symbol loads.  The default is @option{-mno-invalid-symbols}.
14275 @end table
14276
14277 @node SPARC Options
14278 @subsection SPARC Options
14279 @cindex SPARC options
14280
14281 These @samp{-m} options are supported on the SPARC:
14282
14283 @table @gcctabopt
14284 @item -mno-app-regs
14285 @itemx -mapp-regs
14286 @opindex mno-app-regs
14287 @opindex mapp-regs
14288 Specify @option{-mapp-regs} to generate output using the global registers
14289 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
14290 is the default.
14291
14292 To be fully SVR4 ABI compliant at the cost of some performance loss,
14293 specify @option{-mno-app-regs}.  You should compile libraries and system
14294 software with this option.
14295
14296 @item -mfpu
14297 @itemx -mhard-float
14298 @opindex mfpu
14299 @opindex mhard-float
14300 Generate output containing floating point instructions.  This is the
14301 default.
14302
14303 @item -mno-fpu
14304 @itemx -msoft-float
14305 @opindex mno-fpu
14306 @opindex msoft-float
14307 Generate output containing library calls for floating point.
14308 @strong{Warning:} the requisite libraries are not available for all SPARC
14309 targets.  Normally the facilities of the machine's usual C compiler are
14310 used, but this cannot be done directly in cross-compilation.  You must make
14311 your own arrangements to provide suitable library functions for
14312 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
14313 @samp{sparclite-*-*} do provide software floating point support.
14314
14315 @option{-msoft-float} changes the calling convention in the output file;
14316 therefore, it is only useful if you compile @emph{all} of a program with
14317 this option.  In particular, you need to compile @file{libgcc.a}, the
14318 library that comes with GCC, with @option{-msoft-float} in order for
14319 this to work.
14320
14321 @item -mhard-quad-float
14322 @opindex mhard-quad-float
14323 Generate output containing quad-word (long double) floating point
14324 instructions.
14325
14326 @item -msoft-quad-float
14327 @opindex msoft-quad-float
14328 Generate output containing library calls for quad-word (long double)
14329 floating point instructions.  The functions called are those specified
14330 in the SPARC ABI@.  This is the default.
14331
14332 As of this writing, there are no SPARC implementations that have hardware
14333 support for the quad-word floating point instructions.  They all invoke
14334 a trap handler for one of these instructions, and then the trap handler
14335 emulates the effect of the instruction.  Because of the trap handler overhead,
14336 this is much slower than calling the ABI library routines.  Thus the
14337 @option{-msoft-quad-float} option is the default.
14338
14339 @item -mno-unaligned-doubles
14340 @itemx -munaligned-doubles
14341 @opindex mno-unaligned-doubles
14342 @opindex munaligned-doubles
14343 Assume that doubles have 8 byte alignment.  This is the default.
14344
14345 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
14346 alignment only if they are contained in another type, or if they have an
14347 absolute address.  Otherwise, it assumes they have 4 byte alignment.
14348 Specifying this option avoids some rare compatibility problems with code
14349 generated by other compilers.  It is not the default because it results
14350 in a performance loss, especially for floating point code.
14351
14352 @item -mno-faster-structs
14353 @itemx -mfaster-structs
14354 @opindex mno-faster-structs
14355 @opindex mfaster-structs
14356 With @option{-mfaster-structs}, the compiler assumes that structures
14357 should have 8 byte alignment.  This enables the use of pairs of
14358 @code{ldd} and @code{std} instructions for copies in structure
14359 assignment, in place of twice as many @code{ld} and @code{st} pairs.
14360 However, the use of this changed alignment directly violates the SPARC
14361 ABI@.  Thus, it's intended only for use on targets where the developer
14362 acknowledges that their resulting code will not be directly in line with
14363 the rules of the ABI@.
14364
14365 @item -mimpure-text
14366 @opindex mimpure-text
14367 @option{-mimpure-text}, used in addition to @option{-shared}, tells
14368 the compiler to not pass @option{-z text} to the linker when linking a
14369 shared object.  Using this option, you can link position-dependent
14370 code into a shared object.
14371
14372 @option{-mimpure-text} suppresses the ``relocations remain against
14373 allocatable but non-writable sections'' linker error message.
14374 However, the necessary relocations will trigger copy-on-write, and the
14375 shared object is not actually shared across processes.  Instead of
14376 using @option{-mimpure-text}, you should compile all source code with
14377 @option{-fpic} or @option{-fPIC}.
14378
14379 This option is only available on SunOS and Solaris.
14380
14381 @item -mcpu=@var{cpu_type}
14382 @opindex mcpu
14383 Set the instruction set, register set, and instruction scheduling parameters
14384 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
14385 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
14386 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
14387 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
14388 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
14389
14390 Default instruction scheduling parameters are used for values that select
14391 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
14392 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
14393
14394 Here is a list of each supported architecture and their supported
14395 implementations.
14396
14397 @smallexample
14398     v7:             cypress
14399     v8:             supersparc, hypersparc
14400     sparclite:      f930, f934, sparclite86x
14401     sparclet:       tsc701
14402     v9:             ultrasparc, ultrasparc3, niagara, niagara2
14403 @end smallexample
14404
14405 By default (unless configured otherwise), GCC generates code for the V7
14406 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
14407 additionally optimizes it for the Cypress CY7C602 chip, as used in the
14408 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
14409 SPARCStation 1, 2, IPX etc.
14410
14411 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
14412 architecture.  The only difference from V7 code is that the compiler emits
14413 the integer multiply and integer divide instructions which exist in SPARC-V8
14414 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
14415 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
14416 2000 series.
14417
14418 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
14419 the SPARC architecture.  This adds the integer multiply, integer divide step
14420 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
14421 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
14422 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
14423 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
14424 MB86934 chip, which is the more recent SPARClite with FPU@.
14425
14426 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
14427 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
14428 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
14429 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
14430 optimizes it for the TEMIC SPARClet chip.
14431
14432 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
14433 architecture.  This adds 64-bit integer and floating-point move instructions,
14434 3 additional floating-point condition code registers and conditional move
14435 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
14436 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
14437 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
14438 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
14439 @option{-mcpu=niagara}, the compiler additionally optimizes it for
14440 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
14441 additionally optimizes it for Sun UltraSPARC T2 chips.
14442
14443 @item -mtune=@var{cpu_type}
14444 @opindex mtune
14445 Set the instruction scheduling parameters for machine type
14446 @var{cpu_type}, but do not set the instruction set or register set that the
14447 option @option{-mcpu=@var{cpu_type}} would.
14448
14449 The same values for @option{-mcpu=@var{cpu_type}} can be used for
14450 @option{-mtune=@var{cpu_type}}, but the only useful values are those
14451 that select a particular cpu implementation.  Those are @samp{cypress},
14452 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
14453 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
14454 @samp{ultrasparc3}, @samp{niagara}, and @samp{niagara2}.
14455
14456 @item -mv8plus
14457 @itemx -mno-v8plus
14458 @opindex mv8plus
14459 @opindex mno-v8plus
14460 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
14461 difference from the V8 ABI is that the global and out registers are
14462 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
14463 mode for all SPARC-V9 processors.
14464
14465 @item -mvis
14466 @itemx -mno-vis
14467 @opindex mvis
14468 @opindex mno-vis
14469 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
14470 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
14471 @end table
14472
14473 These @samp{-m} options are supported in addition to the above
14474 on SPARC-V9 processors in 64-bit environments:
14475
14476 @table @gcctabopt
14477 @item -mlittle-endian
14478 @opindex mlittle-endian
14479 Generate code for a processor running in little-endian mode.  It is only
14480 available for a few configurations and most notably not on Solaris and Linux.
14481
14482 @item -m32
14483 @itemx -m64
14484 @opindex m32
14485 @opindex m64
14486 Generate code for a 32-bit or 64-bit environment.
14487 The 32-bit environment sets int, long and pointer to 32 bits.
14488 The 64-bit environment sets int to 32 bits and long and pointer
14489 to 64 bits.
14490
14491 @item -mcmodel=medlow
14492 @opindex mcmodel=medlow
14493 Generate code for the Medium/Low code model: 64-bit addresses, programs
14494 must be linked in the low 32 bits of memory.  Programs can be statically
14495 or dynamically linked.
14496
14497 @item -mcmodel=medmid
14498 @opindex mcmodel=medmid
14499 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14500 must be linked in the low 44 bits of memory, the text and data segments must
14501 be less than 2GB in size and the data segment must be located within 2GB of
14502 the text segment.
14503
14504 @item -mcmodel=medany
14505 @opindex mcmodel=medany
14506 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14507 may be linked anywhere in memory, the text and data segments must be less
14508 than 2GB in size and the data segment must be located within 2GB of the
14509 text segment.
14510
14511 @item -mcmodel=embmedany
14512 @opindex mcmodel=embmedany
14513 Generate code for the Medium/Anywhere code model for embedded systems:
14514 64-bit addresses, the text and data segments must be less than 2GB in
14515 size, both starting anywhere in memory (determined at link time).  The
14516 global register %g4 points to the base of the data segment.  Programs
14517 are statically linked and PIC is not supported.
14518
14519 @item -mstack-bias
14520 @itemx -mno-stack-bias
14521 @opindex mstack-bias
14522 @opindex mno-stack-bias
14523 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14524 frame pointer if present, are offset by @minus{}2047 which must be added back
14525 when making stack frame references.  This is the default in 64-bit mode.
14526 Otherwise, assume no such offset is present.
14527 @end table
14528
14529 These switches are supported in addition to the above on Solaris:
14530
14531 @table @gcctabopt
14532 @item -threads
14533 @opindex threads
14534 Add support for multithreading using the Solaris threads library.  This
14535 option sets flags for both the preprocessor and linker.  This option does
14536 not affect the thread safety of object code produced by the compiler or
14537 that of libraries supplied with it.
14538
14539 @item -pthreads
14540 @opindex pthreads
14541 Add support for multithreading using the POSIX threads library.  This
14542 option sets flags for both the preprocessor and linker.  This option does
14543 not affect the thread safety of object code produced  by the compiler or
14544 that of libraries supplied with it.
14545
14546 @item -pthread
14547 @opindex pthread
14548 This is a synonym for @option{-pthreads}.
14549 @end table
14550
14551 @node SPU Options
14552 @subsection SPU Options
14553 @cindex SPU options
14554
14555 These @samp{-m} options are supported on the SPU:
14556
14557 @table @gcctabopt
14558 @item -mwarn-reloc
14559 @itemx -merror-reloc
14560 @opindex mwarn-reloc
14561 @opindex merror-reloc
14562
14563 The loader for SPU does not handle dynamic relocations.  By default, GCC
14564 will give an error when it generates code that requires a dynamic
14565 relocation.  @option{-mno-error-reloc} disables the error,
14566 @option{-mwarn-reloc} will generate a warning instead.
14567
14568 @item -msafe-dma
14569 @itemx -munsafe-dma
14570 @opindex msafe-dma
14571 @opindex munsafe-dma
14572
14573 Instructions which initiate or test completion of DMA must not be
14574 reordered with respect to loads and stores of the memory which is being
14575 accessed.  Users typically address this problem using the volatile
14576 keyword, but that can lead to inefficient code in places where the
14577 memory is known to not change.  Rather than mark the memory as volatile
14578 we treat the DMA instructions as potentially effecting all memory.  With
14579 @option{-munsafe-dma} users must use the volatile keyword to protect
14580 memory accesses.
14581
14582 @item -mbranch-hints
14583 @opindex mbranch-hints
14584
14585 By default, GCC will generate a branch hint instruction to avoid
14586 pipeline stalls for always taken or probably taken branches.  A hint
14587 will not be generated closer than 8 instructions away from its branch.
14588 There is little reason to disable them, except for debugging purposes,
14589 or to make an object a little bit smaller.
14590
14591 @item -msmall-mem
14592 @itemx -mlarge-mem
14593 @opindex msmall-mem
14594 @opindex mlarge-mem
14595
14596 By default, GCC generates code assuming that addresses are never larger
14597 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14598 a full 32 bit address.
14599
14600 @item -mstdmain
14601 @opindex mstdmain
14602
14603 By default, GCC links against startup code that assumes the SPU-style
14604 main function interface (which has an unconventional parameter list).
14605 With @option{-mstdmain}, GCC will link your program against startup
14606 code that assumes a C99-style interface to @code{main}, including a
14607 local copy of @code{argv} strings.
14608
14609 @item -mfixed-range=@var{register-range}
14610 @opindex mfixed-range
14611 Generate code treating the given register range as fixed registers.
14612 A fixed register is one that the register allocator can not use.  This is
14613 useful when compiling kernel code.  A register range is specified as
14614 two registers separated by a dash.  Multiple register ranges can be
14615 specified separated by a comma.
14616
14617 @end table
14618
14619 @node System V Options
14620 @subsection Options for System V
14621
14622 These additional options are available on System V Release 4 for
14623 compatibility with other compilers on those systems:
14624
14625 @table @gcctabopt
14626 @item -G
14627 @opindex G
14628 Create a shared object.
14629 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14630
14631 @item -Qy
14632 @opindex Qy
14633 Identify the versions of each tool used by the compiler, in a
14634 @code{.ident} assembler directive in the output.
14635
14636 @item -Qn
14637 @opindex Qn
14638 Refrain from adding @code{.ident} directives to the output file (this is
14639 the default).
14640
14641 @item -YP,@var{dirs}
14642 @opindex YP
14643 Search the directories @var{dirs}, and no others, for libraries
14644 specified with @option{-l}.
14645
14646 @item -Ym,@var{dir}
14647 @opindex Ym
14648 Look in the directory @var{dir} to find the M4 preprocessor.
14649 The assembler uses this option.
14650 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14651 @c the generic assembler that comes with Solaris takes just -Ym.
14652 @end table
14653
14654 @node V850 Options
14655 @subsection V850 Options
14656 @cindex V850 Options
14657
14658 These @samp{-m} options are defined for V850 implementations:
14659
14660 @table @gcctabopt
14661 @item -mlong-calls
14662 @itemx -mno-long-calls
14663 @opindex mlong-calls
14664 @opindex mno-long-calls
14665 Treat all calls as being far away (near).  If calls are assumed to be
14666 far away, the compiler will always load the functions address up into a
14667 register, and call indirect through the pointer.
14668
14669 @item -mno-ep
14670 @itemx -mep
14671 @opindex mno-ep
14672 @opindex mep
14673 Do not optimize (do optimize) basic blocks that use the same index
14674 pointer 4 or more times to copy pointer into the @code{ep} register, and
14675 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14676 option is on by default if you optimize.
14677
14678 @item -mno-prolog-function
14679 @itemx -mprolog-function
14680 @opindex mno-prolog-function
14681 @opindex mprolog-function
14682 Do not use (do use) external functions to save and restore registers
14683 at the prologue and epilogue of a function.  The external functions
14684 are slower, but use less code space if more than one function saves
14685 the same number of registers.  The @option{-mprolog-function} option
14686 is on by default if you optimize.
14687
14688 @item -mspace
14689 @opindex mspace
14690 Try to make the code as small as possible.  At present, this just turns
14691 on the @option{-mep} and @option{-mprolog-function} options.
14692
14693 @item -mtda=@var{n}
14694 @opindex mtda
14695 Put static or global variables whose size is @var{n} bytes or less into
14696 the tiny data area that register @code{ep} points to.  The tiny data
14697 area can hold up to 256 bytes in total (128 bytes for byte references).
14698
14699 @item -msda=@var{n}
14700 @opindex msda
14701 Put static or global variables whose size is @var{n} bytes or less into
14702 the small data area that register @code{gp} points to.  The small data
14703 area can hold up to 64 kilobytes.
14704
14705 @item -mzda=@var{n}
14706 @opindex mzda
14707 Put static or global variables whose size is @var{n} bytes or less into
14708 the first 32 kilobytes of memory.
14709
14710 @item -mv850
14711 @opindex mv850
14712 Specify that the target processor is the V850.
14713
14714 @item -mbig-switch
14715 @opindex mbig-switch
14716 Generate code suitable for big switch tables.  Use this option only if
14717 the assembler/linker complain about out of range branches within a switch
14718 table.
14719
14720 @item -mapp-regs
14721 @opindex mapp-regs
14722 This option will cause r2 and r5 to be used in the code generated by
14723 the compiler.  This setting is the default.
14724
14725 @item -mno-app-regs
14726 @opindex mno-app-regs
14727 This option will cause r2 and r5 to be treated as fixed registers.
14728
14729 @item -mv850e1
14730 @opindex mv850e1
14731 Specify that the target processor is the V850E1.  The preprocessor
14732 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14733 this option is used.
14734
14735 @item -mv850e
14736 @opindex mv850e
14737 Specify that the target processor is the V850E@.  The preprocessor
14738 constant @samp{__v850e__} will be defined if this option is used.
14739
14740 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14741 are defined then a default target processor will be chosen and the
14742 relevant @samp{__v850*__} preprocessor constant will be defined.
14743
14744 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14745 defined, regardless of which processor variant is the target.
14746
14747 @item -mdisable-callt
14748 @opindex mdisable-callt
14749 This option will suppress generation of the CALLT instruction for the
14750 v850e and v850e1 flavors of the v850 architecture.  The default is
14751 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14752
14753 @end table
14754
14755 @node VAX Options
14756 @subsection VAX Options
14757 @cindex VAX options
14758
14759 These @samp{-m} options are defined for the VAX:
14760
14761 @table @gcctabopt
14762 @item -munix
14763 @opindex munix
14764 Do not output certain jump instructions (@code{aobleq} and so on)
14765 that the Unix assembler for the VAX cannot handle across long
14766 ranges.
14767
14768 @item -mgnu
14769 @opindex mgnu
14770 Do output those jump instructions, on the assumption that you
14771 will assemble with the GNU assembler.
14772
14773 @item -mg
14774 @opindex mg
14775 Output code for g-format floating point numbers instead of d-format.
14776 @end table
14777
14778 @node VxWorks Options
14779 @subsection VxWorks Options
14780 @cindex VxWorks Options
14781
14782 The options in this section are defined for all VxWorks targets.
14783 Options specific to the target hardware are listed with the other
14784 options for that target.
14785
14786 @table @gcctabopt
14787 @item -mrtp
14788 @opindex mrtp
14789 GCC can generate code for both VxWorks kernels and real time processes
14790 (RTPs).  This option switches from the former to the latter.  It also
14791 defines the preprocessor macro @code{__RTP__}.
14792
14793 @item -non-static
14794 @opindex non-static
14795 Link an RTP executable against shared libraries rather than static
14796 libraries.  The options @option{-static} and @option{-shared} can
14797 also be used for RTPs (@pxref{Link Options}); @option{-static}
14798 is the default.
14799
14800 @item -Bstatic
14801 @itemx -Bdynamic
14802 @opindex Bstatic
14803 @opindex Bdynamic
14804 These options are passed down to the linker.  They are defined for
14805 compatibility with Diab.
14806
14807 @item -Xbind-lazy
14808 @opindex Xbind-lazy
14809 Enable lazy binding of function calls.  This option is equivalent to
14810 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14811
14812 @item -Xbind-now
14813 @opindex Xbind-now
14814 Disable lazy binding of function calls.  This option is the default and
14815 is defined for compatibility with Diab.
14816 @end table
14817
14818 @node x86-64 Options
14819 @subsection x86-64 Options
14820 @cindex x86-64 options
14821
14822 These are listed under @xref{i386 and x86-64 Options}.
14823
14824 @node Xstormy16 Options
14825 @subsection Xstormy16 Options
14826 @cindex Xstormy16 Options
14827
14828 These options are defined for Xstormy16:
14829
14830 @table @gcctabopt
14831 @item -msim
14832 @opindex msim
14833 Choose startup files and linker script suitable for the simulator.
14834 @end table
14835
14836 @node Xtensa Options
14837 @subsection Xtensa Options
14838 @cindex Xtensa Options
14839
14840 These options are supported for Xtensa targets:
14841
14842 @table @gcctabopt
14843 @item -mconst16
14844 @itemx -mno-const16
14845 @opindex mconst16
14846 @opindex mno-const16
14847 Enable or disable use of @code{CONST16} instructions for loading
14848 constant values.  The @code{CONST16} instruction is currently not a
14849 standard option from Tensilica.  When enabled, @code{CONST16}
14850 instructions are always used in place of the standard @code{L32R}
14851 instructions.  The use of @code{CONST16} is enabled by default only if
14852 the @code{L32R} instruction is not available.
14853
14854 @item -mfused-madd
14855 @itemx -mno-fused-madd
14856 @opindex mfused-madd
14857 @opindex mno-fused-madd
14858 Enable or disable use of fused multiply/add and multiply/subtract
14859 instructions in the floating-point option.  This has no effect if the
14860 floating-point option is not also enabled.  Disabling fused multiply/add
14861 and multiply/subtract instructions forces the compiler to use separate
14862 instructions for the multiply and add/subtract operations.  This may be
14863 desirable in some cases where strict IEEE 754-compliant results are
14864 required: the fused multiply add/subtract instructions do not round the
14865 intermediate result, thereby producing results with @emph{more} bits of
14866 precision than specified by the IEEE standard.  Disabling fused multiply
14867 add/subtract instructions also ensures that the program output is not
14868 sensitive to the compiler's ability to combine multiply and add/subtract
14869 operations.
14870
14871 @item -mserialize-volatile
14872 @itemx -mno-serialize-volatile
14873 @opindex mserialize-volatile
14874 @opindex mno-serialize-volatile
14875 When this option is enabled, GCC inserts @code{MEMW} instructions before
14876 @code{volatile} memory references to guarantee sequential consistency.
14877 The default is @option{-mserialize-volatile}.  Use
14878 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
14879
14880 @item -mtext-section-literals
14881 @itemx -mno-text-section-literals
14882 @opindex mtext-section-literals
14883 @opindex mno-text-section-literals
14884 Control the treatment of literal pools.  The default is
14885 @option{-mno-text-section-literals}, which places literals in a separate
14886 section in the output file.  This allows the literal pool to be placed
14887 in a data RAM/ROM, and it also allows the linker to combine literal
14888 pools from separate object files to remove redundant literals and
14889 improve code size.  With @option{-mtext-section-literals}, the literals
14890 are interspersed in the text section in order to keep them as close as
14891 possible to their references.  This may be necessary for large assembly
14892 files.
14893
14894 @item -mtarget-align
14895 @itemx -mno-target-align
14896 @opindex mtarget-align
14897 @opindex mno-target-align
14898 When this option is enabled, GCC instructs the assembler to
14899 automatically align instructions to reduce branch penalties at the
14900 expense of some code density.  The assembler attempts to widen density
14901 instructions to align branch targets and the instructions following call
14902 instructions.  If there are not enough preceding safe density
14903 instructions to align a target, no widening will be performed.  The
14904 default is @option{-mtarget-align}.  These options do not affect the
14905 treatment of auto-aligned instructions like @code{LOOP}, which the
14906 assembler will always align, either by widening density instructions or
14907 by inserting no-op instructions.
14908
14909 @item -mlongcalls
14910 @itemx -mno-longcalls
14911 @opindex mlongcalls
14912 @opindex mno-longcalls
14913 When this option is enabled, GCC instructs the assembler to translate
14914 direct calls to indirect calls unless it can determine that the target
14915 of a direct call is in the range allowed by the call instruction.  This
14916 translation typically occurs for calls to functions in other source
14917 files.  Specifically, the assembler translates a direct @code{CALL}
14918 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14919 The default is @option{-mno-longcalls}.  This option should be used in
14920 programs where the call target can potentially be out of range.  This
14921 option is implemented in the assembler, not the compiler, so the
14922 assembly code generated by GCC will still show direct call
14923 instructions---look at the disassembled object code to see the actual
14924 instructions.  Note that the assembler will use an indirect call for
14925 every cross-file call, not just those that really will be out of range.
14926 @end table
14927
14928 @node zSeries Options
14929 @subsection zSeries Options
14930 @cindex zSeries options
14931
14932 These are listed under @xref{S/390 and zSeries Options}.
14933
14934 @node Code Gen Options
14935 @section Options for Code Generation Conventions
14936 @cindex code generation conventions
14937 @cindex options, code generation
14938 @cindex run-time options
14939
14940 These machine-independent options control the interface conventions
14941 used in code generation.
14942
14943 Most of them have both positive and negative forms; the negative form
14944 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14945 one of the forms is listed---the one which is not the default.  You
14946 can figure out the other form by either removing @samp{no-} or adding
14947 it.
14948
14949 @table @gcctabopt
14950 @item -fbounds-check
14951 @opindex fbounds-check
14952 For front-ends that support it, generate additional code to check that
14953 indices used to access arrays are within the declared range.  This is
14954 currently only supported by the Java and Fortran front-ends, where
14955 this option defaults to true and false respectively.
14956
14957 @item -ftrapv
14958 @opindex ftrapv
14959 This option generates traps for signed overflow on addition, subtraction,
14960 multiplication operations.
14961
14962 @item -fwrapv
14963 @opindex fwrapv
14964 This option instructs the compiler to assume that signed arithmetic
14965 overflow of addition, subtraction and multiplication wraps around
14966 using twos-complement representation.  This flag enables some optimizations
14967 and disables others.  This option is enabled by default for the Java
14968 front-end, as required by the Java language specification.
14969
14970 @item -fexceptions
14971 @opindex fexceptions
14972 Enable exception handling.  Generates extra code needed to propagate
14973 exceptions.  For some targets, this implies GCC will generate frame
14974 unwind information for all functions, which can produce significant data
14975 size overhead, although it does not affect execution.  If you do not
14976 specify this option, GCC will enable it by default for languages like
14977 C++ which normally require exception handling, and disable it for
14978 languages like C that do not normally require it.  However, you may need
14979 to enable this option when compiling C code that needs to interoperate
14980 properly with exception handlers written in C++.  You may also wish to
14981 disable this option if you are compiling older C++ programs that don't
14982 use exception handling.
14983
14984 @item -fnon-call-exceptions
14985 @opindex fnon-call-exceptions
14986 Generate code that allows trapping instructions to throw exceptions.
14987 Note that this requires platform-specific runtime support that does
14988 not exist everywhere.  Moreover, it only allows @emph{trapping}
14989 instructions to throw exceptions, i.e.@: memory references or floating
14990 point instructions.  It does not allow exceptions to be thrown from
14991 arbitrary signal handlers such as @code{SIGALRM}.
14992
14993 @item -funwind-tables
14994 @opindex funwind-tables
14995 Similar to @option{-fexceptions}, except that it will just generate any needed
14996 static data, but will not affect the generated code in any other way.
14997 You will normally not enable this option; instead, a language processor
14998 that needs this handling would enable it on your behalf.
14999
15000 @item -fasynchronous-unwind-tables
15001 @opindex fasynchronous-unwind-tables
15002 Generate unwind table in dwarf2 format, if supported by target machine.  The
15003 table is exact at each instruction boundary, so it can be used for stack
15004 unwinding from asynchronous events (such as debugger or garbage collector).
15005
15006 @item -fpcc-struct-return
15007 @opindex fpcc-struct-return
15008 Return ``short'' @code{struct} and @code{union} values in memory like
15009 longer ones, rather than in registers.  This convention is less
15010 efficient, but it has the advantage of allowing intercallability between
15011 GCC-compiled files and files compiled with other compilers, particularly
15012 the Portable C Compiler (pcc).
15013
15014 The precise convention for returning structures in memory depends
15015 on the target configuration macros.
15016
15017 Short structures and unions are those whose size and alignment match
15018 that of some integer type.
15019
15020 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
15021 switch is not binary compatible with code compiled with the
15022 @option{-freg-struct-return} switch.
15023 Use it to conform to a non-default application binary interface.
15024
15025 @item -freg-struct-return
15026 @opindex freg-struct-return
15027 Return @code{struct} and @code{union} values in registers when possible.
15028 This is more efficient for small structures than
15029 @option{-fpcc-struct-return}.
15030
15031 If you specify neither @option{-fpcc-struct-return} nor
15032 @option{-freg-struct-return}, GCC defaults to whichever convention is
15033 standard for the target.  If there is no standard convention, GCC
15034 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
15035 the principal compiler.  In those cases, we can choose the standard, and
15036 we chose the more efficient register return alternative.
15037
15038 @strong{Warning:} code compiled with the @option{-freg-struct-return}
15039 switch is not binary compatible with code compiled with the
15040 @option{-fpcc-struct-return} switch.
15041 Use it to conform to a non-default application binary interface.
15042
15043 @item -fshort-enums
15044 @opindex fshort-enums
15045 Allocate to an @code{enum} type only as many bytes as it needs for the
15046 declared range of possible values.  Specifically, the @code{enum} type
15047 will be equivalent to the smallest integer type which has enough room.
15048
15049 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
15050 code that is not binary compatible with code generated without that switch.
15051 Use it to conform to a non-default application binary interface.
15052
15053 @item -fshort-double
15054 @opindex fshort-double
15055 Use the same size for @code{double} as for @code{float}.
15056
15057 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
15058 code that is not binary compatible with code generated without that switch.
15059 Use it to conform to a non-default application binary interface.
15060
15061 @item -fshort-wchar
15062 @opindex fshort-wchar
15063 Override the underlying type for @samp{wchar_t} to be @samp{short
15064 unsigned int} instead of the default for the target.  This option is
15065 useful for building programs to run under WINE@.
15066
15067 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
15068 code that is not binary compatible with code generated without that switch.
15069 Use it to conform to a non-default application binary interface.
15070
15071 @item -fno-common
15072 @opindex fno-common
15073 In C, allocate even uninitialized global variables in the data section of the
15074 object file, rather than generating them as common blocks.  This has the
15075 effect that if the same variable is declared (without @code{extern}) in
15076 two different compilations, you will get an error when you link them.
15077 The only reason this might be useful is if you wish to verify that the
15078 program will work on other systems which always work this way.
15079
15080 @item -fno-ident
15081 @opindex fno-ident
15082 Ignore the @samp{#ident} directive.
15083
15084 @item -finhibit-size-directive
15085 @opindex finhibit-size-directive
15086 Don't output a @code{.size} assembler directive, or anything else that
15087 would cause trouble if the function is split in the middle, and the
15088 two halves are placed at locations far apart in memory.  This option is
15089 used when compiling @file{crtstuff.c}; you should not need to use it
15090 for anything else.
15091
15092 @item -fverbose-asm
15093 @opindex fverbose-asm
15094 Put extra commentary information in the generated assembly code to
15095 make it more readable.  This option is generally only of use to those
15096 who actually need to read the generated assembly code (perhaps while
15097 debugging the compiler itself).
15098
15099 @option{-fno-verbose-asm}, the default, causes the
15100 extra information to be omitted and is useful when comparing two assembler
15101 files.
15102
15103 @item -frecord-gcc-switches
15104 @opindex frecord-gcc-switches
15105 This switch causes the command line that was used to invoke the
15106 compiler to be recorded into the object file that is being created.
15107 This switch is only implemented on some targets and the exact format
15108 of the recording is target and binary file format dependent, but it
15109 usually takes the form of a section containing ASCII text.  This
15110 switch is related to the @option{-fverbose-asm} switch, but that
15111 switch only records information in the assembler output file as
15112 comments, so it never reaches the object file.
15113
15114 @item -fpic
15115 @opindex fpic
15116 @cindex global offset table
15117 @cindex PIC
15118 Generate position-independent code (PIC) suitable for use in a shared
15119 library, if supported for the target machine.  Such code accesses all
15120 constant addresses through a global offset table (GOT)@.  The dynamic
15121 loader resolves the GOT entries when the program starts (the dynamic
15122 loader is not part of GCC; it is part of the operating system).  If
15123 the GOT size for the linked executable exceeds a machine-specific
15124 maximum size, you get an error message from the linker indicating that
15125 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
15126 instead.  (These maximums are 8k on the SPARC and 32k
15127 on the m68k and RS/6000.  The 386 has no such limit.)
15128
15129 Position-independent code requires special support, and therefore works
15130 only on certain machines.  For the 386, GCC supports PIC for System V
15131 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
15132 position-independent.
15133
15134 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
15135 are defined to 1.
15136
15137 @item -fPIC
15138 @opindex fPIC
15139 If supported for the target machine, emit position-independent code,
15140 suitable for dynamic linking and avoiding any limit on the size of the
15141 global offset table.  This option makes a difference on the m68k,
15142 PowerPC and SPARC@.
15143
15144 Position-independent code requires special support, and therefore works
15145 only on certain machines.
15146
15147 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
15148 are defined to 2.
15149
15150 @item -fpie
15151 @itemx -fPIE
15152 @opindex fpie
15153 @opindex fPIE
15154 These options are similar to @option{-fpic} and @option{-fPIC}, but
15155 generated position independent code can be only linked into executables.
15156 Usually these options are used when @option{-pie} GCC option will be
15157 used during linking.
15158
15159 @option{-fpie} and @option{-fPIE} both define the macros
15160 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
15161 for @option{-fpie} and 2 for @option{-fPIE}.
15162
15163 @item -fno-jump-tables
15164 @opindex fno-jump-tables
15165 Do not use jump tables for switch statements even where it would be
15166 more efficient than other code generation strategies.  This option is
15167 of use in conjunction with @option{-fpic} or @option{-fPIC} for
15168 building code which forms part of a dynamic linker and cannot
15169 reference the address of a jump table.  On some targets, jump tables
15170 do not require a GOT and this option is not needed.
15171
15172 @item -ffixed-@var{reg}
15173 @opindex ffixed
15174 Treat the register named @var{reg} as a fixed register; generated code
15175 should never refer to it (except perhaps as a stack pointer, frame
15176 pointer or in some other fixed role).
15177
15178 @var{reg} must be the name of a register.  The register names accepted
15179 are machine-specific and are defined in the @code{REGISTER_NAMES}
15180 macro in the machine description macro file.
15181
15182 This flag does not have a negative form, because it specifies a
15183 three-way choice.
15184
15185 @item -fcall-used-@var{reg}
15186 @opindex fcall-used
15187 Treat the register named @var{reg} as an allocable register that is
15188 clobbered by function calls.  It may be allocated for temporaries or
15189 variables that do not live across a call.  Functions compiled this way
15190 will not save and restore the register @var{reg}.
15191
15192 It is an error to used this flag with the frame pointer or stack pointer.
15193 Use of this flag for other registers that have fixed pervasive roles in
15194 the machine's execution model will produce disastrous results.
15195
15196 This flag does not have a negative form, because it specifies a
15197 three-way choice.
15198
15199 @item -fcall-saved-@var{reg}
15200 @opindex fcall-saved
15201 Treat the register named @var{reg} as an allocable register saved by
15202 functions.  It may be allocated even for temporaries or variables that
15203 live across a call.  Functions compiled this way will save and restore
15204 the register @var{reg} if they use it.
15205
15206 It is an error to used this flag with the frame pointer or stack pointer.
15207 Use of this flag for other registers that have fixed pervasive roles in
15208 the machine's execution model will produce disastrous results.
15209
15210 A different sort of disaster will result from the use of this flag for
15211 a register in which function values may be returned.
15212
15213 This flag does not have a negative form, because it specifies a
15214 three-way choice.
15215
15216 @item -fpack-struct[=@var{n}]
15217 @opindex fpack-struct
15218 Without a value specified, pack all structure members together without
15219 holes.  When a value is specified (which must be a small power of two), pack
15220 structure members according to this value, representing the maximum
15221 alignment (that is, objects with default alignment requirements larger than
15222 this will be output potentially unaligned at the next fitting location.
15223
15224 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
15225 code that is not binary compatible with code generated without that switch.
15226 Additionally, it makes the code suboptimal.
15227 Use it to conform to a non-default application binary interface.
15228
15229 @item -finstrument-functions
15230 @opindex finstrument-functions
15231 Generate instrumentation calls for entry and exit to functions.  Just
15232 after function entry and just before function exit, the following
15233 profiling functions will be called with the address of the current
15234 function and its call site.  (On some platforms,
15235 @code{__builtin_return_address} does not work beyond the current
15236 function, so the call site information may not be available to the
15237 profiling functions otherwise.)
15238
15239 @smallexample
15240 void __cyg_profile_func_enter (void *this_fn,
15241                                void *call_site);
15242 void __cyg_profile_func_exit  (void *this_fn,
15243                                void *call_site);
15244 @end smallexample
15245
15246 The first argument is the address of the start of the current function,
15247 which may be looked up exactly in the symbol table.
15248
15249 This instrumentation is also done for functions expanded inline in other
15250 functions.  The profiling calls will indicate where, conceptually, the
15251 inline function is entered and exited.  This means that addressable
15252 versions of such functions must be available.  If all your uses of a
15253 function are expanded inline, this may mean an additional expansion of
15254 code size.  If you use @samp{extern inline} in your C code, an
15255 addressable version of such functions must be provided.  (This is
15256 normally the case anyways, but if you get lucky and the optimizer always
15257 expands the functions inline, you might have gotten away without
15258 providing static copies.)
15259
15260 A function may be given the attribute @code{no_instrument_function}, in
15261 which case this instrumentation will not be done.  This can be used, for
15262 example, for the profiling functions listed above, high-priority
15263 interrupt routines, and any functions from which the profiling functions
15264 cannot safely be called (perhaps signal handlers, if the profiling
15265 routines generate output or allocate memory).
15266
15267 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
15268 @opindex finstrument-functions-exclude-file-list
15269
15270 Set the list of functions that are excluded from instrumentation (see
15271 the description of @code{-finstrument-functions}).  If the file that
15272 contains a function definition matches with one of @var{file}, then
15273 that function is not instrumented.  The match is done on substrings:
15274 if the @var{file} parameter is a substring of the file name, it is
15275 considered to be a match.
15276
15277 For example,
15278 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
15279 will exclude any inline function defined in files whose pathnames
15280 contain @code{/bits/stl} or @code{include/sys}.
15281
15282 If, for some reason, you want to include letter @code{','} in one of
15283 @var{sym}, write @code{'\,'}. For example,
15284 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
15285 (note the single quote surrounding the option).
15286
15287 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
15288 @opindex finstrument-functions-exclude-function-list
15289
15290 This is similar to @code{-finstrument-functions-exclude-file-list},
15291 but this option sets the list of function names to be excluded from
15292 instrumentation.  The function name to be matched is its user-visible
15293 name, such as @code{vector<int> blah(const vector<int> &)}, not the
15294 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
15295 match is done on substrings: if the @var{sym} parameter is a substring
15296 of the function name, it is considered to be a match.
15297
15298 @item -fstack-check
15299 @opindex fstack-check
15300 Generate code to verify that you do not go beyond the boundary of the
15301 stack.  You should specify this flag if you are running in an
15302 environment with multiple threads, but only rarely need to specify it in
15303 a single-threaded environment since stack overflow is automatically
15304 detected on nearly all systems if there is only one stack.
15305
15306 Note that this switch does not actually cause checking to be done; the
15307 operating system or the language runtime must do that.  The switch causes
15308 generation of code to ensure that they see the stack being extended.
15309
15310 You can additionally specify a string parameter: @code{no} means no
15311 checking, @code{generic} means force the use of old-style checking,
15312 @code{specific} means use the best checking method and is equivalent
15313 to bare @option{-fstack-check}.
15314
15315 Old-style checking is a generic mechanism that requires no specific
15316 target support in the compiler but comes with the following drawbacks:
15317
15318 @enumerate
15319 @item
15320 Modified allocation strategy for large objects: they will always be
15321 allocated dynamically if their size exceeds a fixed threshold.
15322
15323 @item
15324 Fixed limit on the size of the static frame of functions: when it is
15325 topped by a particular function, stack checking is not reliable and
15326 a warning is issued by the compiler.
15327
15328 @item
15329 Inefficiency: because of both the modified allocation strategy and the
15330 generic implementation, the performances of the code are hampered.
15331 @end enumerate
15332
15333 Note that old-style stack checking is also the fallback method for
15334 @code{specific} if no target support has been added in the compiler.
15335
15336 @item -fstack-limit-register=@var{reg}
15337 @itemx -fstack-limit-symbol=@var{sym}
15338 @itemx -fno-stack-limit
15339 @opindex fstack-limit-register
15340 @opindex fstack-limit-symbol
15341 @opindex fno-stack-limit
15342 Generate code to ensure that the stack does not grow beyond a certain value,
15343 either the value of a register or the address of a symbol.  If the stack
15344 would grow beyond the value, a signal is raised.  For most targets,
15345 the signal is raised before the stack overruns the boundary, so
15346 it is possible to catch the signal without taking special precautions.
15347
15348 For instance, if the stack starts at absolute address @samp{0x80000000}
15349 and grows downwards, you can use the flags
15350 @option{-fstack-limit-symbol=__stack_limit} and
15351 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
15352 of 128KB@.  Note that this may only work with the GNU linker.
15353
15354 @cindex aliasing of parameters
15355 @cindex parameters, aliased
15356 @item -fargument-alias
15357 @itemx -fargument-noalias
15358 @itemx -fargument-noalias-global
15359 @itemx -fargument-noalias-anything
15360 @opindex fargument-alias
15361 @opindex fargument-noalias
15362 @opindex fargument-noalias-global
15363 @opindex fargument-noalias-anything
15364 Specify the possible relationships among parameters and between
15365 parameters and global data.
15366
15367 @option{-fargument-alias} specifies that arguments (parameters) may
15368 alias each other and may alias global storage.@*
15369 @option{-fargument-noalias} specifies that arguments do not alias
15370 each other, but may alias global storage.@*
15371 @option{-fargument-noalias-global} specifies that arguments do not
15372 alias each other and do not alias global storage.
15373 @option{-fargument-noalias-anything} specifies that arguments do not
15374 alias any other storage.
15375
15376 Each language will automatically use whatever option is required by
15377 the language standard.  You should not need to use these options yourself.
15378
15379 @item -fleading-underscore
15380 @opindex fleading-underscore
15381 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15382 change the way C symbols are represented in the object file.  One use
15383 is to help link with legacy assembly code.
15384
15385 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15386 generate code that is not binary compatible with code generated without that
15387 switch.  Use it to conform to a non-default application binary interface.
15388 Not all targets provide complete support for this switch.
15389
15390 @item -ftls-model=@var{model}
15391 @opindex ftls-model
15392 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15393 The @var{model} argument should be one of @code{global-dynamic},
15394 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15395
15396 The default without @option{-fpic} is @code{initial-exec}; with
15397 @option{-fpic} the default is @code{global-dynamic}.
15398
15399 @item -fvisibility=@var{default|internal|hidden|protected}
15400 @opindex fvisibility
15401 Set the default ELF image symbol visibility to the specified option---all
15402 symbols will be marked with this unless overridden within the code.
15403 Using this feature can very substantially improve linking and
15404 load times of shared object libraries, produce more optimized
15405 code, provide near-perfect API export and prevent symbol clashes.
15406 It is @strong{strongly} recommended that you use this in any shared objects
15407 you distribute.
15408
15409 Despite the nomenclature, @code{default} always means public ie;
15410 available to be linked against from outside the shared object.
15411 @code{protected} and @code{internal} are pretty useless in real-world
15412 usage so the only other commonly used option will be @code{hidden}.
15413 The default if @option{-fvisibility} isn't specified is
15414 @code{default}, i.e., make every
15415 symbol public---this causes the same behavior as previous versions of
15416 GCC@.
15417
15418 A good explanation of the benefits offered by ensuring ELF
15419 symbols have the correct visibility is given by ``How To Write
15420 Shared Libraries'' by Ulrich Drepper (which can be found at
15421 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15422 solution made possible by this option to marking things hidden when
15423 the default is public is to make the default hidden and mark things
15424 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15425 and @code{__attribute__ ((visibility("default")))} instead of
15426 @code{__declspec(dllexport)} you get almost identical semantics with
15427 identical syntax.  This is a great boon to those working with
15428 cross-platform projects.
15429
15430 For those adding visibility support to existing code, you may find
15431 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15432 the declarations you wish to set visibility for with (for example)
15433 @samp{#pragma GCC visibility push(hidden)} and
15434 @samp{#pragma GCC visibility pop}.
15435 Bear in mind that symbol visibility should be viewed @strong{as
15436 part of the API interface contract} and thus all new code should
15437 always specify visibility when it is not the default ie; declarations
15438 only for use within the local DSO should @strong{always} be marked explicitly
15439 as hidden as so to avoid PLT indirection overheads---making this
15440 abundantly clear also aids readability and self-documentation of the code.
15441 Note that due to ISO C++ specification requirements, operator new and
15442 operator delete must always be of default visibility.
15443
15444 Be aware that headers from outside your project, in particular system
15445 headers and headers from any other library you use, may not be
15446 expecting to be compiled with visibility other than the default.  You
15447 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15448 before including any such headers.
15449
15450 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15451 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15452 no modifications.  However, this means that calls to @samp{extern}
15453 functions with no explicit visibility will use the PLT, so it is more
15454 effective to use @samp{__attribute ((visibility))} and/or
15455 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15456 declarations should be treated as hidden.
15457
15458 Note that @samp{-fvisibility} does affect C++ vague linkage
15459 entities. This means that, for instance, an exception class that will
15460 be thrown between DSOs must be explicitly marked with default
15461 visibility so that the @samp{type_info} nodes will be unified between
15462 the DSOs.
15463
15464 An overview of these techniques, their benefits and how to use them
15465 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15466
15467 @end table
15468
15469 @c man end
15470
15471 @node Environment Variables
15472 @section Environment Variables Affecting GCC
15473 @cindex environment variables
15474
15475 @c man begin ENVIRONMENT
15476 This section describes several environment variables that affect how GCC
15477 operates.  Some of them work by specifying directories or prefixes to use
15478 when searching for various kinds of files.  Some are used to specify other
15479 aspects of the compilation environment.
15480
15481 Note that you can also specify places to search using options such as
15482 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15483 take precedence over places specified using environment variables, which
15484 in turn take precedence over those specified by the configuration of GCC@.
15485 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15486 GNU Compiler Collection (GCC) Internals}.
15487
15488 @table @env
15489 @item LANG
15490 @itemx LC_CTYPE
15491 @c @itemx LC_COLLATE
15492 @itemx LC_MESSAGES
15493 @c @itemx LC_MONETARY
15494 @c @itemx LC_NUMERIC
15495 @c @itemx LC_TIME
15496 @itemx LC_ALL
15497 @findex LANG
15498 @findex LC_CTYPE
15499 @c @findex LC_COLLATE
15500 @findex LC_MESSAGES
15501 @c @findex LC_MONETARY
15502 @c @findex LC_NUMERIC
15503 @c @findex LC_TIME
15504 @findex LC_ALL
15505 @cindex locale
15506 These environment variables control the way that GCC uses
15507 localization information that allow GCC to work with different
15508 national conventions.  GCC inspects the locale categories
15509 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15510 so.  These locale categories can be set to any value supported by your
15511 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15512 Kingdom encoded in UTF-8.
15513
15514 The @env{LC_CTYPE} environment variable specifies character
15515 classification.  GCC uses it to determine the character boundaries in
15516 a string; this is needed for some multibyte encodings that contain quote
15517 and escape characters that would otherwise be interpreted as a string
15518 end or escape.
15519
15520 The @env{LC_MESSAGES} environment variable specifies the language to
15521 use in diagnostic messages.
15522
15523 If the @env{LC_ALL} environment variable is set, it overrides the value
15524 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15525 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15526 environment variable.  If none of these variables are set, GCC
15527 defaults to traditional C English behavior.
15528
15529 @item TMPDIR
15530 @findex TMPDIR
15531 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15532 files.  GCC uses temporary files to hold the output of one stage of
15533 compilation which is to be used as input to the next stage: for example,
15534 the output of the preprocessor, which is the input to the compiler
15535 proper.
15536
15537 @item GCC_EXEC_PREFIX
15538 @findex GCC_EXEC_PREFIX
15539 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15540 names of the subprograms executed by the compiler.  No slash is added
15541 when this prefix is combined with the name of a subprogram, but you can
15542 specify a prefix that ends with a slash if you wish.
15543
15544 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15545 an appropriate prefix to use based on the pathname it was invoked with.
15546
15547 If GCC cannot find the subprogram using the specified prefix, it
15548 tries looking in the usual places for the subprogram.
15549
15550 The default value of @env{GCC_EXEC_PREFIX} is
15551 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15552 the installed compiler. In many cases @var{prefix} is the value
15553 of @code{prefix} when you ran the @file{configure} script.
15554
15555 Other prefixes specified with @option{-B} take precedence over this prefix.
15556
15557 This prefix is also used for finding files such as @file{crt0.o} that are
15558 used for linking.
15559
15560 In addition, the prefix is used in an unusual way in finding the
15561 directories to search for header files.  For each of the standard
15562 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15563 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15564 replacing that beginning with the specified prefix to produce an
15565 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15566 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15567 These alternate directories are searched first; the standard directories
15568 come next. If a standard directory begins with the configured
15569 @var{prefix} then the value of @var{prefix} is replaced by
15570 @env{GCC_EXEC_PREFIX} when looking for header files.
15571
15572 @item COMPILER_PATH
15573 @findex COMPILER_PATH
15574 The value of @env{COMPILER_PATH} is a colon-separated list of
15575 directories, much like @env{PATH}.  GCC tries the directories thus
15576 specified when searching for subprograms, if it can't find the
15577 subprograms using @env{GCC_EXEC_PREFIX}.
15578
15579 @item LIBRARY_PATH
15580 @findex LIBRARY_PATH
15581 The value of @env{LIBRARY_PATH} is a colon-separated list of
15582 directories, much like @env{PATH}.  When configured as a native compiler,
15583 GCC tries the directories thus specified when searching for special
15584 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15585 using GCC also uses these directories when searching for ordinary
15586 libraries for the @option{-l} option (but directories specified with
15587 @option{-L} come first).
15588
15589 @item LANG
15590 @findex LANG
15591 @cindex locale definition
15592 This variable is used to pass locale information to the compiler.  One way in
15593 which this information is used is to determine the character set to be used
15594 when character literals, string literals and comments are parsed in C and C++.
15595 When the compiler is configured to allow multibyte characters,
15596 the following values for @env{LANG} are recognized:
15597
15598 @table @samp
15599 @item C-JIS
15600 Recognize JIS characters.
15601 @item C-SJIS
15602 Recognize SJIS characters.
15603 @item C-EUCJP
15604 Recognize EUCJP characters.
15605 @end table
15606
15607 If @env{LANG} is not defined, or if it has some other value, then the
15608 compiler will use mblen and mbtowc as defined by the default locale to
15609 recognize and translate multibyte characters.
15610 @end table
15611
15612 @noindent
15613 Some additional environments variables affect the behavior of the
15614 preprocessor.
15615
15616 @include cppenv.texi
15617
15618 @c man end
15619
15620 @node Precompiled Headers
15621 @section Using Precompiled Headers
15622 @cindex precompiled headers
15623 @cindex speed of compilation
15624
15625 Often large projects have many header files that are included in every
15626 source file.  The time the compiler takes to process these header files
15627 over and over again can account for nearly all of the time required to
15628 build the project.  To make builds faster, GCC allows users to
15629 `precompile' a header file; then, if builds can use the precompiled
15630 header file they will be much faster.
15631
15632 To create a precompiled header file, simply compile it as you would any
15633 other file, if necessary using the @option{-x} option to make the driver
15634 treat it as a C or C++ header file.  You will probably want to use a
15635 tool like @command{make} to keep the precompiled header up-to-date when
15636 the headers it contains change.
15637
15638 A precompiled header file will be searched for when @code{#include} is
15639 seen in the compilation.  As it searches for the included file
15640 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15641 compiler looks for a precompiled header in each directory just before it
15642 looks for the include file in that directory.  The name searched for is
15643 the name specified in the @code{#include} with @samp{.gch} appended.  If
15644 the precompiled header file can't be used, it is ignored.
15645
15646 For instance, if you have @code{#include "all.h"}, and you have
15647 @file{all.h.gch} in the same directory as @file{all.h}, then the
15648 precompiled header file will be used if possible, and the original
15649 header will be used otherwise.
15650
15651 Alternatively, you might decide to put the precompiled header file in a
15652 directory and use @option{-I} to ensure that directory is searched
15653 before (or instead of) the directory containing the original header.
15654 Then, if you want to check that the precompiled header file is always
15655 used, you can put a file of the same name as the original header in this
15656 directory containing an @code{#error} command.
15657
15658 This also works with @option{-include}.  So yet another way to use
15659 precompiled headers, good for projects not designed with precompiled
15660 header files in mind, is to simply take most of the header files used by
15661 a project, include them from another header file, precompile that header
15662 file, and @option{-include} the precompiled header.  If the header files
15663 have guards against multiple inclusion, they will be skipped because
15664 they've already been included (in the precompiled header).
15665
15666 If you need to precompile the same header file for different
15667 languages, targets, or compiler options, you can instead make a
15668 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15669 header in the directory, perhaps using @option{-o}.  It doesn't matter
15670 what you call the files in the directory, every precompiled header in
15671 the directory will be considered.  The first precompiled header
15672 encountered in the directory that is valid for this compilation will
15673 be used; they're searched in no particular order.
15674
15675 There are many other possibilities, limited only by your imagination,
15676 good sense, and the constraints of your build system.
15677
15678 A precompiled header file can be used only when these conditions apply:
15679
15680 @itemize
15681 @item
15682 Only one precompiled header can be used in a particular compilation.
15683
15684 @item
15685 A precompiled header can't be used once the first C token is seen.  You
15686 can have preprocessor directives before a precompiled header; you can
15687 even include a precompiled header from inside another header, so long as
15688 there are no C tokens before the @code{#include}.
15689
15690 @item
15691 The precompiled header file must be produced for the same language as
15692 the current compilation.  You can't use a C precompiled header for a C++
15693 compilation.
15694
15695 @item
15696 The precompiled header file must have been produced by the same compiler
15697 binary as the current compilation is using.
15698
15699 @item
15700 Any macros defined before the precompiled header is included must
15701 either be defined in the same way as when the precompiled header was
15702 generated, or must not affect the precompiled header, which usually
15703 means that they don't appear in the precompiled header at all.
15704
15705 The @option{-D} option is one way to define a macro before a
15706 precompiled header is included; using a @code{#define} can also do it.
15707 There are also some options that define macros implicitly, like
15708 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15709 defined this way.
15710
15711 @item If debugging information is output when using the precompiled
15712 header, using @option{-g} or similar, the same kind of debugging information
15713 must have been output when building the precompiled header.  However,
15714 a precompiled header built using @option{-g} can be used in a compilation
15715 when no debugging information is being output.
15716
15717 @item The same @option{-m} options must generally be used when building
15718 and using the precompiled header.  @xref{Submodel Options},
15719 for any cases where this rule is relaxed.
15720
15721 @item Each of the following options must be the same when building and using
15722 the precompiled header:
15723
15724 @gccoptlist{-fexceptions}
15725
15726 @item
15727 Some other command-line options starting with @option{-f},
15728 @option{-p}, or @option{-O} must be defined in the same way as when
15729 the precompiled header was generated.  At present, it's not clear
15730 which options are safe to change and which are not; the safest choice
15731 is to use exactly the same options when generating and using the
15732 precompiled header.  The following are known to be safe:
15733
15734 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15735 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15736 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15737 -pedantic-errors}
15738
15739 @end itemize
15740
15741 For all of these except the last, the compiler will automatically
15742 ignore the precompiled header if the conditions aren't met.  If you
15743 find an option combination that doesn't work and doesn't cause the
15744 precompiled header to be ignored, please consider filing a bug report,
15745 see @ref{Bugs}.
15746
15747 If you do use differing options when generating and using the
15748 precompiled header, the actual behavior will be a mixture of the
15749 behavior for the options.  For instance, if you use @option{-g} to
15750 generate the precompiled header but not when using it, you may or may
15751 not get debugging information for routines in the precompiled header.
15752
15753 @node Running Protoize
15754 @section Running Protoize
15755
15756 The program @code{protoize} is an optional part of GCC@.  You can use
15757 it to add prototypes to a program, thus converting the program to ISO
15758 C in one respect.  The companion program @code{unprotoize} does the
15759 reverse: it removes argument types from any prototypes that are found.
15760
15761 When you run these programs, you must specify a set of source files as
15762 command line arguments.  The conversion programs start out by compiling
15763 these files to see what functions they define.  The information gathered
15764 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15765
15766 After scanning comes actual conversion.  The specified files are all
15767 eligible to be converted; any files they include (whether sources or
15768 just headers) are eligible as well.
15769
15770 But not all the eligible files are converted.  By default,
15771 @code{protoize} and @code{unprotoize} convert only source and header
15772 files in the current directory.  You can specify additional directories
15773 whose files should be converted with the @option{-d @var{directory}}
15774 option.  You can also specify particular files to exclude with the
15775 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15776 directory name matches one of the specified directory names, and its
15777 name within the directory has not been excluded.
15778
15779 Basic conversion with @code{protoize} consists of rewriting most
15780 function definitions and function declarations to specify the types of
15781 the arguments.  The only ones not rewritten are those for varargs
15782 functions.
15783
15784 @code{protoize} optionally inserts prototype declarations at the
15785 beginning of the source file, to make them available for any calls that
15786 precede the function's definition.  Or it can insert prototype
15787 declarations with block scope in the blocks where undeclared functions
15788 are called.
15789
15790 Basic conversion with @code{unprotoize} consists of rewriting most
15791 function declarations to remove any argument types, and rewriting
15792 function definitions to the old-style pre-ISO form.
15793
15794 Both conversion programs print a warning for any function declaration or
15795 definition that they can't convert.  You can suppress these warnings
15796 with @option{-q}.
15797
15798 The output from @code{protoize} or @code{unprotoize} replaces the
15799 original source file.  The original file is renamed to a name ending
15800 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15801 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15802 for DOS) file already exists, then the source file is simply discarded.
15803
15804 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15805 scan the program and collect information about the functions it uses.
15806 So neither of these programs will work until GCC is installed.
15807
15808 Here is a table of the options you can use with @code{protoize} and
15809 @code{unprotoize}.  Each option works with both programs unless
15810 otherwise stated.
15811
15812 @table @code
15813 @item -B @var{directory}
15814 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15815 usual directory (normally @file{/usr/local/lib}).  This file contains
15816 prototype information about standard system functions.  This option
15817 applies only to @code{protoize}.
15818
15819 @item -c @var{compilation-options}
15820 Use @var{compilation-options} as the options when running @command{gcc} to
15821 produce the @samp{.X} files.  The special option @option{-aux-info} is
15822 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15823
15824 Note that the compilation options must be given as a single argument to
15825 @code{protoize} or @code{unprotoize}.  If you want to specify several
15826 @command{gcc} options, you must quote the entire set of compilation options
15827 to make them a single word in the shell.
15828
15829 There are certain @command{gcc} arguments that you cannot use, because they
15830 would produce the wrong kind of output.  These include @option{-g},
15831 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15832 the @var{compilation-options}, they are ignored.
15833
15834 @item -C
15835 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15836 systems) instead of @samp{.c}.  This is convenient if you are converting
15837 a C program to C++.  This option applies only to @code{protoize}.
15838
15839 @item -g
15840 Add explicit global declarations.  This means inserting explicit
15841 declarations at the beginning of each source file for each function
15842 that is called in the file and was not declared.  These declarations
15843 precede the first function definition that contains a call to an
15844 undeclared function.  This option applies only to @code{protoize}.
15845
15846 @item -i @var{string}
15847 Indent old-style parameter declarations with the string @var{string}.
15848 This option applies only to @code{protoize}.
15849
15850 @code{unprotoize} converts prototyped function definitions to old-style
15851 function definitions, where the arguments are declared between the
15852 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15853 uses five spaces as the indentation.  If you want to indent with just
15854 one space instead, use @option{-i " "}.
15855
15856 @item -k
15857 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15858 is finished.
15859
15860 @item -l
15861 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15862 a prototype declaration for each function in each block which calls the
15863 function without any declaration.  This option applies only to
15864 @code{protoize}.
15865
15866 @item -n
15867 Make no real changes.  This mode just prints information about the conversions
15868 that would have been done without @option{-n}.
15869
15870 @item -N
15871 Make no @samp{.save} files.  The original files are simply deleted.
15872 Use this option with caution.
15873
15874 @item -p @var{program}
15875 Use the program @var{program} as the compiler.  Normally, the name
15876 @file{gcc} is used.
15877
15878 @item -q
15879 Work quietly.  Most warnings are suppressed.
15880
15881 @item -v
15882 Print the version number, just like @option{-v} for @command{gcc}.
15883 @end table
15884
15885 If you need special compiler options to compile one of your program's
15886 source files, then you should generate that file's @samp{.X} file
15887 specially, by running @command{gcc} on that source file with the
15888 appropriate options and the option @option{-aux-info}.  Then run
15889 @code{protoize} on the entire set of files.  @code{protoize} will use
15890 the existing @samp{.X} file because it is newer than the source file.
15891 For example:
15892
15893 @smallexample
15894 gcc -Dfoo=bar file1.c -aux-info file1.X
15895 protoize *.c
15896 @end smallexample
15897
15898 @noindent
15899 You need to include the special files along with the rest in the
15900 @code{protoize} command, even though their @samp{.X} files already
15901 exist, because otherwise they won't get converted.
15902
15903 @xref{Protoize Caveats}, for more information on how to use
15904 @code{protoize} successfully.