config.gcc (mips64*-*-linux*): Handle mips64octeon*-*-linux*.
[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  -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
278 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
279 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
280 -fdump-statistics @gol
281 -fdump-tree-all @gol
282 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
283 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
284 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
285 -fdump-tree-ch @gol
286 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
287 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
288 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
293 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
294 -fdump-tree-nrv -fdump-tree-vect @gol
295 -fdump-tree-sink @gol
296 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
298 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
299 -ftree-vectorizer-verbose=@var{n} @gol
300 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
301 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
302 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
303 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
304 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
305 -ftest-coverage  -ftime-report -fvar-tracking @gol
306 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
307 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
308 -fno-merge-debug-strings -fdebug-prefix-map=@var{old}=@var{new} @gol
309 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
310 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
311 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
312 -print-multi-directory  -print-multi-lib @gol
313 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
314 -print-sysroot -print-sysroot-headers-suffix @gol
315 -save-temps  -time}
316
317 @item Optimization Options
318 @xref{Optimize Options,,Options that Control Optimization}.
319 @gccoptlist{
320 -falign-functions[=@var{n}] -falign-jumps[=@var{n}] @gol
321 -falign-labels[=@var{n}] -falign-loops[=@var{n}] -fassociative-math @gol
322 -fauto-inc-dec -fbranch-probabilities -fbranch-target-load-optimize @gol
323 -fbranch-target-load-optimize2 -fbtr-bb-exclusive -fcaller-saves @gol
324 -fcheck-data-deps -fcprop-registers -fcrossjumping -fcse-follow-jumps @gol
325 -fcse-skip-blocks -fcx-fortran-rules -fcx-limited-range @gol
326 -fdata-sections -fdce -fdce @gol
327 -fdelayed-branch -fdelete-null-pointer-checks -fdse -fdse @gol
328 -fearly-inlining -fexpensive-optimizations -ffast-math @gol
329 -ffinite-math-only -ffloat-store -fforward-propagate @gol
330 -ffunction-sections -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm @gol
331 -fgcse-sm -fif-conversion -fif-conversion2 -findirect-inlining @gol
332 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
333 -finline-small-functions -fipa-cp -fipa-cp-clone -fipa-marix-reorg -fipa-pta @gol 
334 -fipa-pure-const -fipa-reference -fipa-struct-reorg @gol
335 -fipa-type-escape -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
336 -fmerge-all-constants -fmerge-constants -fmodulo-sched @gol
337 -fmodulo-sched-allow-regmoves -fmove-loop-invariants -fmudflap @gol
338 -fmudflapir -fmudflapth -fno-branch-count-reg -fno-default-inline @gol
339 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
340 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
341 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
342 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
343 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
344 -fpeel-loops -fpredictive-commoning -fprefetch-loop-arrays @gol
345 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
346 -fprofile-generate=@var{path} @gol
347 -fprofile-use -fprofile-use=@var{path} -fprofile-values @gol
348 -freciprocal-math -fregmove -frename-registers -freorder-blocks @gol
349 -freorder-blocks-and-partition -freorder-functions @gol
350 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
351 -frounding-math -frtl-abstract-sequences -fsched2-use-superblocks @gol
352 -fsched2-use-traces -fsched-spec-load -fsched-spec-load-dangerous @gol
353 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
354 -fschedule-insns -fschedule-insns2 -fsection-anchors -fsee @gol
355 -fsignaling-nans -fsingle-precision-constant -fsplit-ivs-in-unroller @gol
356 -fsplit-wide-types -fstack-protector -fstack-protector-all @gol
357 -fstrict-aliasing -fstrict-overflow -fthread-jumps -ftracer @gol
358 -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copy-prop @gol
359 -ftree-copyrename -ftree-dce @gol
360 -ftree-dominator-opts -ftree-dse -ftree-fre -ftree-loop-im @gol
361 -ftree-loop-distribution @gol
362 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
363 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-reassoc @gol
364 -ftree-sink -ftree-sra -ftree-store-ccp -ftree-switch-conversion @gol
365 -ftree-ter -ftree-vect-loop-version -ftree-vectorize -ftree-vrp @gol
366 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
367 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
368 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
369 -fwhole-program @gol
370 --param @var{name}=@var{value}
371 -O  -O0  -O1  -O2  -O3  -Os}
372
373 @item Preprocessor Options
374 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
375 @gccoptlist{-A@var{question}=@var{answer} @gol
376 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
377 -C  -dD  -dI  -dM  -dN @gol
378 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
379 -idirafter @var{dir} @gol
380 -include @var{file}  -imacros @var{file} @gol
381 -iprefix @var{file}  -iwithprefix @var{dir} @gol
382 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
383 -imultilib @var{dir} -isysroot @var{dir} @gol
384 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
385 -P  -fworking-directory  -remap @gol
386 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
387 -Xpreprocessor @var{option}}
388
389 @item Assembler Option
390 @xref{Assembler Options,,Passing Options to the Assembler}.
391 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
392
393 @item Linker Options
394 @xref{Link Options,,Options for Linking}.
395 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
396 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
397 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
398 -Wl,@var{option}  -Xlinker @var{option} @gol
399 -u @var{symbol}}
400
401 @item Directory Options
402 @xref{Directory Options,,Options for Directory Search}.
403 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
404 -specs=@var{file}  -I- --sysroot=@var{dir}}
405
406 @item Target Options
407 @c I wrote this xref this way to avoid overfull hbox. -- rms
408 @xref{Target Options}.
409 @gccoptlist{-V @var{version}  -b @var{machine}}
410
411 @item Machine Dependent Options
412 @xref{Submodel Options,,Hardware Models and Configurations}.
413 @c This list is ordered alphanumerically by subsection name.
414 @c Try and put the significant identifier (CPU or system) first,
415 @c so users have a clue at guessing where the ones they want will be.
416
417 @emph{ARC Options}
418 @gccoptlist{-EB  -EL @gol
419 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
420 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
421
422 @emph{ARM Options}
423 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
424 -mabi=@var{name} @gol
425 -mapcs-stack-check  -mno-apcs-stack-check @gol
426 -mapcs-float  -mno-apcs-float @gol
427 -mapcs-reentrant  -mno-apcs-reentrant @gol
428 -msched-prolog  -mno-sched-prolog @gol
429 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
430 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
431 -mthumb-interwork  -mno-thumb-interwork @gol
432 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
433 -mstructure-size-boundary=@var{n} @gol
434 -mabort-on-noreturn @gol
435 -mlong-calls  -mno-long-calls @gol
436 -msingle-pic-base  -mno-single-pic-base @gol
437 -mpic-register=@var{reg} @gol
438 -mnop-fun-dllimport @gol
439 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
440 -mpoke-function-name @gol
441 -mthumb  -marm @gol
442 -mtpcs-frame  -mtpcs-leaf-frame @gol
443 -mcaller-super-interworking  -mcallee-super-interworking @gol
444 -mtp=@var{name}}
445
446 @emph{AVR Options}
447 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
448 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
449
450 @emph{Blackfin Options}
451 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
452 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
453 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
454 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
455 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
456 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
457 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
458 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram}
459
460 @emph{CRIS Options}
461 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
462 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
463 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
464 -mstack-align  -mdata-align  -mconst-align @gol
465 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
466 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
467 -mmul-bug-workaround  -mno-mul-bug-workaround}
468
469 @emph{CRX Options}
470 @gccoptlist{-mmac -mpush-args}
471
472 @emph{Darwin Options}
473 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
474 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
475 -client_name  -compatibility_version  -current_version @gol
476 -dead_strip @gol
477 -dependency-file  -dylib_file  -dylinker_install_name @gol
478 -dynamic  -dynamiclib  -exported_symbols_list @gol
479 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
480 -force_flat_namespace  -headerpad_max_install_names @gol
481 -iframework @gol
482 -image_base  -init  -install_name  -keep_private_externs @gol
483 -multi_module  -multiply_defined  -multiply_defined_unused @gol
484 -noall_load   -no_dead_strip_inits_and_terms @gol
485 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
486 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
487 -private_bundle  -read_only_relocs  -sectalign @gol
488 -sectobjectsymbols  -whyload  -seg1addr @gol
489 -sectcreate  -sectobjectsymbols  -sectorder @gol
490 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
491 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
492 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
493 -single_module  -static  -sub_library  -sub_umbrella @gol
494 -twolevel_namespace  -umbrella  -undefined @gol
495 -unexported_symbols_list  -weak_reference_mismatches @gol
496 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
497 -mkernel -mone-byte-bool}
498
499 @emph{DEC Alpha Options}
500 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
501 -mieee  -mieee-with-inexact  -mieee-conformant @gol
502 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
503 -mtrap-precision=@var{mode}  -mbuild-constants @gol
504 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
505 -mbwx  -mmax  -mfix  -mcix @gol
506 -mfloat-vax  -mfloat-ieee @gol
507 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
508 -msmall-text  -mlarge-text @gol
509 -mmemory-latency=@var{time}}
510
511 @emph{DEC Alpha/VMS Options}
512 @gccoptlist{-mvms-return-codes}
513
514 @emph{FRV Options}
515 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
516 -mhard-float  -msoft-float @gol
517 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
518 -mdouble  -mno-double @gol
519 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
520 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
521 -mlinked-fp  -mlong-calls  -malign-labels @gol
522 -mlibrary-pic  -macc-4  -macc-8 @gol
523 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
524 -moptimize-membar -mno-optimize-membar @gol
525 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
526 -mvliw-branch  -mno-vliw-branch @gol
527 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
528 -mno-nested-cond-exec  -mtomcat-stats @gol
529 -mTLS -mtls @gol
530 -mcpu=@var{cpu}}
531
532 @emph{GNU/Linux Options}
533 @gccoptlist{-muclibc}
534
535 @emph{H8/300 Options}
536 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
537
538 @emph{HPPA Options}
539 @gccoptlist{-march=@var{architecture-type} @gol
540 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
541 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
542 -mfixed-range=@var{register-range} @gol
543 -mjump-in-delay -mlinker-opt -mlong-calls @gol
544 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
545 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
546 -mno-jump-in-delay  -mno-long-load-store @gol
547 -mno-portable-runtime  -mno-soft-float @gol
548 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
549 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
550 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
551 -munix=@var{unix-std}  -nolibdld  -static  -threads}
552
553 @emph{i386 and x86-64 Options}
554 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
555 -mfpmath=@var{unit} @gol
556 -masm=@var{dialect}  -mno-fancy-math-387 @gol
557 -mno-fp-ret-in-387  -msoft-float @gol
558 -mno-wide-multiply  -mrtd  -malign-double @gol
559 -mpreferred-stack-boundary=@var{num}
560 -mincoming-stack-boundary=@var{num}
561 -mcld -mcx16 -msahf -mrecip @gol
562 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 @gol
563 -maes -mpclmul @gol
564 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
565 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
566 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
567 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
568 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
569 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
570 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
571 -mcmodel=@var{code-model} @gol
572 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
573 -mfused-madd -mno-fused-madd}
574
575 @emph{IA-64 Options}
576 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
577 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
578 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
579 -minline-float-divide-max-throughput @gol
580 -minline-int-divide-min-latency @gol
581 -minline-int-divide-max-throughput  @gol
582 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
583 -mno-dwarf2-asm -mearly-stop-bits @gol
584 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
585 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
586 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
587 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
588 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
589 -mno-sched-prefer-non-data-spec-insns @gol
590 -mno-sched-prefer-non-control-spec-insns @gol
591 -mno-sched-count-spec-in-critical-path}
592
593 @emph{M32R/D Options}
594 @gccoptlist{-m32r2 -m32rx -m32r @gol
595 -mdebug @gol
596 -malign-loops -mno-align-loops @gol
597 -missue-rate=@var{number} @gol
598 -mbranch-cost=@var{number} @gol
599 -mmodel=@var{code-size-model-type} @gol
600 -msdata=@var{sdata-type} @gol
601 -mno-flush-func -mflush-func=@var{name} @gol
602 -mno-flush-trap -mflush-trap=@var{number} @gol
603 -G @var{num}}
604
605 @emph{M32C Options}
606 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
607
608 @emph{M680x0 Options}
609 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
610 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
611 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
612 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
613 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
614 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
615 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
616 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
617 -mxgot -mno-xgot}
618
619 @emph{M68hc1x Options}
620 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
621 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
622 -msoft-reg-count=@var{count}}
623
624 @emph{MCore Options}
625 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
626 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
627 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
628 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
629 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
630
631 @emph{MIPS Options}
632 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
633 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2 @gol
634 -mips64  -mips64r2 @gol
635 -mips16  -mno-mips16  -mflip-mips16 @gol
636 -minterlink-mips16  -mno-interlink-mips16 @gol
637 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
638 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
639 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
640 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
641 -msmartmips  -mno-smartmips @gol
642 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
643 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
644 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
645 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
646 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
647 -membedded-data  -mno-embedded-data @gol
648 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
649 -mcode-readable=@var{setting} @gol
650 -msplit-addresses  -mno-split-addresses @gol
651 -mexplicit-relocs  -mno-explicit-relocs @gol
652 -mcheck-zero-division  -mno-check-zero-division @gol
653 -mdivide-traps  -mdivide-breaks @gol
654 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
655 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
656 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
657 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
658 -mfix-sb1  -mno-fix-sb1 @gol
659 -mflush-func=@var{func}  -mno-flush-func @gol
660 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
661 -mfp-exceptions -mno-fp-exceptions @gol
662 -mvr4130-align -mno-vr4130-align}
663
664 @emph{MMIX Options}
665 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
666 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
667 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
668 -mno-base-addresses  -msingle-exit  -mno-single-exit}
669
670 @emph{MN10300 Options}
671 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
672 -mam33  -mno-am33 @gol
673 -mam33-2  -mno-am33-2 @gol
674 -mreturn-pointer-on-d0 @gol
675 -mno-crt0  -mrelax}
676
677 @emph{PDP-11 Options}
678 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
679 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
680 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
681 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
682 -mbranch-expensive  -mbranch-cheap @gol
683 -msplit  -mno-split  -munix-asm  -mdec-asm}
684
685 @emph{PowerPC Options}
686 See RS/6000 and PowerPC Options.
687
688 @emph{RS/6000 and PowerPC Options}
689 @gccoptlist{-mcpu=@var{cpu-type} @gol
690 -mtune=@var{cpu-type} @gol
691 -mpower  -mno-power  -mpower2  -mno-power2 @gol
692 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
693 -maltivec  -mno-altivec @gol
694 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
695 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
696 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
697 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
698 -mnew-mnemonics  -mold-mnemonics @gol
699 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
700 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
701 -malign-power  -malign-natural @gol
702 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
703 -mstring  -mno-string  -mupdate  -mno-update @gol
704 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
705 -mstrict-align  -mno-strict-align  -mrelocatable @gol
706 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
707 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
708 -mdynamic-no-pic  -maltivec  -mswdiv @gol
709 -mprioritize-restricted-insns=@var{priority} @gol
710 -msched-costly-dep=@var{dependence_type} @gol
711 -minsert-sched-nops=@var{scheme} @gol
712 -mcall-sysv  -mcall-netbsd @gol
713 -maix-struct-return  -msvr4-struct-return @gol
714 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
715 -misel -mno-isel @gol
716 -misel=yes  -misel=no @gol
717 -mspe -mno-spe @gol
718 -mspe=yes  -mspe=no @gol
719 -mpaired @gol
720 -mvrsave -mno-vrsave @gol
721 -mmulhw -mno-mulhw @gol
722 -mdlmzb -mno-dlmzb @gol
723 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
724 -mprototype  -mno-prototype @gol
725 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
726 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread}
727
728 @emph{S/390 and zSeries Options}
729 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
730 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
731 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
732 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
733 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
734 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
735 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
736
737 @emph{Score Options}
738 @gccoptlist{-meb -mel @gol
739 -mnhwloop @gol
740 -muls @gol
741 -mmac @gol
742 -mscore5 -mscore5u -mscore7 -mscore7d}
743
744 @emph{SH Options}
745 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
746 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
747 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
748 -m5-64media  -m5-64media-nofpu @gol
749 -m5-32media  -m5-32media-nofpu @gol
750 -m5-compact  -m5-compact-nofpu @gol
751 -mb  -ml  -mdalign  -mrelax @gol
752 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
753 -mieee  -mbitops  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
754 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
755 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
756 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
757 -minvalid-symbols}
758
759 @emph{SPARC Options}
760 @gccoptlist{-mcpu=@var{cpu-type} @gol
761 -mtune=@var{cpu-type} @gol
762 -mcmodel=@var{code-model} @gol
763 -m32  -m64  -mapp-regs  -mno-app-regs @gol
764 -mfaster-structs  -mno-faster-structs @gol
765 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
766 -mhard-quad-float  -msoft-quad-float @gol
767 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
768 -mstack-bias  -mno-stack-bias @gol
769 -munaligned-doubles  -mno-unaligned-doubles @gol
770 -mv8plus  -mno-v8plus  -mvis  -mno-vis
771 -threads -pthreads -pthread}
772
773 @emph{SPU Options}
774 @gccoptlist{-mwarn-reloc -merror-reloc @gol
775 -msafe-dma -munsafe-dma @gol
776 -mbranch-hints @gol
777 -msmall-mem -mlarge-mem -mstdmain @gol
778 -mfixed-range=@var{register-range}}
779
780 @emph{System V Options}
781 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
782
783 @emph{V850 Options}
784 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
785 -mprolog-function  -mno-prolog-function  -mspace @gol
786 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
787 -mapp-regs  -mno-app-regs @gol
788 -mdisable-callt  -mno-disable-callt @gol
789 -mv850e1 @gol
790 -mv850e @gol
791 -mv850  -mbig-switch}
792
793 @emph{VAX Options}
794 @gccoptlist{-mg  -mgnu  -munix}
795
796 @emph{VxWorks Options}
797 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
798 -Xbind-lazy  -Xbind-now}
799
800 @emph{x86-64 Options}
801 See i386 and x86-64 Options.
802
803 @emph{Xstormy16 Options}
804 @gccoptlist{-msim}
805
806 @emph{Xtensa Options}
807 @gccoptlist{-mconst16 -mno-const16 @gol
808 -mfused-madd  -mno-fused-madd @gol
809 -mserialize-volatile  -mno-serialize-volatile @gol
810 -mtext-section-literals  -mno-text-section-literals @gol
811 -mtarget-align  -mno-target-align @gol
812 -mlongcalls  -mno-longcalls}
813
814 @emph{zSeries Options}
815 See S/390 and zSeries Options.
816
817 @item Code Generation Options
818 @xref{Code Gen Options,,Options for Code Generation Conventions}.
819 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
820 -ffixed-@var{reg}  -fexceptions @gol
821 -fnon-call-exceptions  -funwind-tables @gol
822 -fasynchronous-unwind-tables @gol
823 -finhibit-size-directive  -finstrument-functions @gol
824 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
825 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
826 -fno-common  -fno-ident @gol
827 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
828 -fno-jump-tables @gol
829 -frecord-gcc-switches @gol
830 -freg-struct-return  -fshort-enums @gol
831 -fshort-double  -fshort-wchar @gol
832 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
833 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
834 -fno-stack-limit  -fargument-alias  -fargument-noalias @gol
835 -fargument-noalias-global  -fargument-noalias-anything @gol
836 -fleading-underscore  -ftls-model=@var{model} @gol
837 -ftrapv  -fwrapv  -fbounds-check @gol
838 -fvisibility}
839 @end table
840
841 @menu
842 * Overall Options::     Controlling the kind of output:
843                         an executable, object files, assembler files,
844                         or preprocessed source.
845 * C Dialect Options::   Controlling the variant of C language compiled.
846 * C++ Dialect Options:: Variations on C++.
847 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
848                         and Objective-C++.
849 * Language Independent Options:: Controlling how diagnostics should be
850                         formatted.
851 * Warning Options::     How picky should the compiler be?
852 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
853 * Optimize Options::    How much optimization?
854 * Preprocessor Options:: Controlling header files and macro definitions.
855                          Also, getting dependency information for Make.
856 * Assembler Options::   Passing options to the assembler.
857 * Link Options::        Specifying libraries and so on.
858 * Directory Options::   Where to find header files and libraries.
859                         Where to find the compiler executable files.
860 * Spec Files::          How to pass switches to sub-processes.
861 * Target Options::      Running a cross-compiler, or an old version of GCC.
862 @end menu
863
864 @node Overall Options
865 @section Options Controlling the Kind of Output
866
867 Compilation can involve up to four stages: preprocessing, compilation
868 proper, assembly and linking, always in that order.  GCC is capable of
869 preprocessing and compiling several files either into several
870 assembler input files, or into one assembler input file; then each
871 assembler input file produces an object file, and linking combines all
872 the object files (those newly compiled, and those specified as input)
873 into an executable file.
874
875 @cindex file name suffix
876 For any given input file, the file name suffix determines what kind of
877 compilation is done:
878
879 @table @gcctabopt
880 @item @var{file}.c
881 C source code which must be preprocessed.
882
883 @item @var{file}.i
884 C source code which should not be preprocessed.
885
886 @item @var{file}.ii
887 C++ source code which should not be preprocessed.
888
889 @item @var{file}.m
890 Objective-C source code.  Note that you must link with the @file{libobjc}
891 library to make an Objective-C program work.
892
893 @item @var{file}.mi
894 Objective-C source code which should not be preprocessed.
895
896 @item @var{file}.mm
897 @itemx @var{file}.M
898 Objective-C++ source code.  Note that you must link with the @file{libobjc}
899 library to make an Objective-C++ program work.  Note that @samp{.M} refers
900 to a literal capital M@.
901
902 @item @var{file}.mii
903 Objective-C++ source code which should not be preprocessed.
904
905 @item @var{file}.h
906 C, C++, Objective-C or Objective-C++ header file to be turned into a
907 precompiled header.
908
909 @item @var{file}.cc
910 @itemx @var{file}.cp
911 @itemx @var{file}.cxx
912 @itemx @var{file}.cpp
913 @itemx @var{file}.CPP
914 @itemx @var{file}.c++
915 @itemx @var{file}.C
916 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
917 the last two letters must both be literally @samp{x}.  Likewise,
918 @samp{.C} refers to a literal capital C@.
919
920 @item @var{file}.mm
921 @itemx @var{file}.M
922 Objective-C++ source code which must be preprocessed.
923
924 @item @var{file}.mii
925 Objective-C++ source code which should not be preprocessed.
926
927 @item @var{file}.hh
928 @itemx @var{file}.H
929 @itemx @var{file}.hp
930 @itemx @var{file}.hxx
931 @itemx @var{file}.hpp
932 @itemx @var{file}.HPP
933 @itemx @var{file}.h++
934 @itemx @var{file}.tcc
935 C++ header file to be turned into a precompiled header.
936
937 @item @var{file}.f
938 @itemx @var{file}.for
939 @itemx @var{file}.ftn
940 Fixed form Fortran source code which should not be preprocessed.
941
942 @item @var{file}.F
943 @itemx @var{file}.FOR
944 @itemx @var{file}.fpp
945 @itemx @var{file}.FPP
946 @itemx @var{file}.FTN
947 Fixed form Fortran source code which must be preprocessed (with the traditional
948 preprocessor).
949
950 @item @var{file}.f90
951 @itemx @var{file}.f95
952 @itemx @var{file}.f03
953 @itemx @var{file}.f08
954 Free form Fortran source code which should not be preprocessed.
955
956 @item @var{file}.F90
957 @itemx @var{file}.F95
958 @itemx @var{file}.F03
959 @itemx @var{file}.F08
960 Free form Fortran source code which must be preprocessed (with the
961 traditional preprocessor).
962
963 @c FIXME: Descriptions of Java file types.
964 @c @var{file}.java
965 @c @var{file}.class
966 @c @var{file}.zip
967 @c @var{file}.jar
968
969 @item @var{file}.ads
970 Ada source code file which contains a library unit declaration (a
971 declaration of a package, subprogram, or generic, or a generic
972 instantiation), or a library unit renaming declaration (a package,
973 generic, or subprogram renaming declaration).  Such files are also
974 called @dfn{specs}.
975
976 @item @var{file}.adb
977 Ada source code file containing a library unit body (a subprogram or
978 package body).  Such files are also called @dfn{bodies}.
979
980 @c GCC also knows about some suffixes for languages not yet included:
981 @c Pascal:
982 @c @var{file}.p
983 @c @var{file}.pas
984 @c Ratfor:
985 @c @var{file}.r
986
987 @item @var{file}.s
988 Assembler code.
989
990 @item @var{file}.S
991 @itemx @var{file}.sx
992 Assembler code which must be preprocessed.
993
994 @item @var{other}
995 An object file to be fed straight into linking.
996 Any file name with no recognized suffix is treated this way.
997 @end table
998
999 @opindex x
1000 You can specify the input language explicitly with the @option{-x} option:
1001
1002 @table @gcctabopt
1003 @item -x @var{language}
1004 Specify explicitly the @var{language} for the following input files
1005 (rather than letting the compiler choose a default based on the file
1006 name suffix).  This option applies to all following input files until
1007 the next @option{-x} option.  Possible values for @var{language} are:
1008 @smallexample
1009 c  c-header  c-cpp-output
1010 c++  c++-header  c++-cpp-output
1011 objective-c  objective-c-header  objective-c-cpp-output
1012 objective-c++ objective-c++-header objective-c++-cpp-output
1013 assembler  assembler-with-cpp
1014 ada
1015 f77  f77-cpp-input f95  f95-cpp-input
1016 java
1017 @end smallexample
1018
1019 @item -x none
1020 Turn off any specification of a language, so that subsequent files are
1021 handled according to their file name suffixes (as they are if @option{-x}
1022 has not been used at all).
1023
1024 @item -pass-exit-codes
1025 @opindex pass-exit-codes
1026 Normally the @command{gcc} program will exit with the code of 1 if any
1027 phase of the compiler returns a non-success return code.  If you specify
1028 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1029 numerically highest error produced by any phase that returned an error
1030 indication.  The C, C++, and Fortran frontends return 4, if an internal
1031 compiler error is encountered.
1032 @end table
1033
1034 If you only want some of the stages of compilation, you can use
1035 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1036 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1037 @command{gcc} is to stop.  Note that some combinations (for example,
1038 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1039
1040 @table @gcctabopt
1041 @item -c
1042 @opindex c
1043 Compile or assemble the source files, but do not link.  The linking
1044 stage simply is not done.  The ultimate output is in the form of an
1045 object file for each source file.
1046
1047 By default, the object file name for a source file is made by replacing
1048 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1049
1050 Unrecognized input files, not requiring compilation or assembly, are
1051 ignored.
1052
1053 @item -S
1054 @opindex S
1055 Stop after the stage of compilation proper; do not assemble.  The output
1056 is in the form of an assembler code file for each non-assembler input
1057 file specified.
1058
1059 By default, the assembler file name for a source file is made by
1060 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1061
1062 Input files that don't require compilation are ignored.
1063
1064 @item -E
1065 @opindex E
1066 Stop after the preprocessing stage; do not run the compiler proper.  The
1067 output is in the form of preprocessed source code, which is sent to the
1068 standard output.
1069
1070 Input files which don't require preprocessing are ignored.
1071
1072 @cindex output file option
1073 @item -o @var{file}
1074 @opindex o
1075 Place output in file @var{file}.  This applies regardless to whatever
1076 sort of output is being produced, whether it be an executable file,
1077 an object file, an assembler file or preprocessed C code.
1078
1079 If @option{-o} is not specified, the default is to put an executable
1080 file in @file{a.out}, the object file for
1081 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1082 assembler file in @file{@var{source}.s}, a precompiled header file in
1083 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1084 standard output.
1085
1086 @item -v
1087 @opindex v
1088 Print (on standard error output) the commands executed to run the stages
1089 of compilation.  Also print the version number of the compiler driver
1090 program and of the preprocessor and the compiler proper.
1091
1092 @item -###
1093 @opindex ###
1094 Like @option{-v} except the commands are not executed and all command
1095 arguments are quoted.  This is useful for shell scripts to capture the
1096 driver-generated command lines.
1097
1098 @item -pipe
1099 @opindex pipe
1100 Use pipes rather than temporary files for communication between the
1101 various stages of compilation.  This fails to work on some systems where
1102 the assembler is unable to read from a pipe; but the GNU assembler has
1103 no trouble.
1104
1105 @item -combine
1106 @opindex combine
1107 If you are compiling multiple source files, this option tells the driver
1108 to pass all the source files to the compiler at once (for those
1109 languages for which the compiler can handle this).  This will allow
1110 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1111 language for which this is supported is C@.  If you pass source files for
1112 multiple languages to the driver, using this option, the driver will invoke
1113 the compiler(s) that support IMA once each, passing each compiler all the
1114 source files appropriate for it.  For those languages that do not support
1115 IMA this option will be ignored, and the compiler will be invoked once for
1116 each source file in that language.  If you use this option in conjunction
1117 with @option{-save-temps}, the compiler will generate multiple
1118 pre-processed files
1119 (one for each source file), but only one (combined) @file{.o} or
1120 @file{.s} file.
1121
1122 @item --help
1123 @opindex help
1124 Print (on the standard output) a description of the command line options
1125 understood by @command{gcc}.  If the @option{-v} option is also specified
1126 then @option{--help} will also be passed on to the various processes
1127 invoked by @command{gcc}, so that they can display the command line options
1128 they accept.  If the @option{-Wextra} option has also been specified
1129 (prior to the @option{--help} option), then command line options which
1130 have no documentation associated with them will also be displayed.
1131
1132 @item --target-help
1133 @opindex target-help
1134 Print (on the standard output) a description of target-specific command
1135 line options for each tool.  For some targets extra target-specific
1136 information may also be printed.
1137
1138 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1139 Print (on the standard output) a description of the command line
1140 options understood by the compiler that fit into a specific class.
1141 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1142 @samp{params}, or @var{language}:
1143
1144 @table @asis
1145 @item @samp{optimizers}
1146 This will display all of the optimization options supported by the
1147 compiler.
1148
1149 @item @samp{warnings}
1150 This will display all of the options controlling warning messages
1151 produced by the compiler.
1152
1153 @item @samp{target}
1154 This will display target-specific options.  Unlike the
1155 @option{--target-help} option however, target-specific options of the
1156 linker and assembler will not be displayed.  This is because those
1157 tools do not currently support the extended @option{--help=} syntax.
1158
1159 @item @samp{params}
1160 This will display the values recognized by the @option{--param}
1161 option.
1162
1163 @item @var{language}
1164 This will display the options supported for @var{language}, where 
1165 @var{language} is the name of one of the languages supported in this 
1166 version of GCC.
1167
1168 @item @samp{common}
1169 This will display the options that are common to all languages.
1170 @end table
1171
1172 It is possible to further refine the output of the @option{--help=}
1173 option by adding a comma separated list of qualifiers after the
1174 class.  These can be any from the following list:
1175
1176 @table @asis
1177 @item @samp{undocumented}
1178 Display only those options which are undocumented.
1179
1180 @item @samp{joined}
1181 Display options which take an argument that appears after an equal
1182 sign in the same continuous piece of text, such as:
1183 @samp{--help=target}.
1184
1185 @item @samp{separate}
1186 Display options which take an argument that appears as a separate word
1187 following the original option, such as: @samp{-o output-file}.
1188 @end table
1189
1190 Thus for example to display all the undocumented target-specific
1191 switches supported by the compiler the following can be used:
1192
1193 @smallexample
1194 --help=target,undocumented
1195 @end smallexample
1196
1197 The sense of a qualifier can be inverted by prefixing it with the
1198 @var{^} character, so for example to display all binary warning
1199 options (i.e., ones that are either on or off and that do not take an
1200 argument), which have a description the following can be used:
1201
1202 @smallexample
1203 --help=warnings,^joined,^undocumented
1204 @end smallexample
1205
1206 A class can also be used as a qualifier, although this usually
1207 restricts the output by so much that there is nothing to display.  One
1208 case where it does work however is when one of the classes is
1209 @var{target}.  So for example to display all the target-specific
1210 optimization options the following can be used:
1211
1212 @smallexample
1213 --help=target,optimizers
1214 @end smallexample
1215
1216 The @option{--help=} option can be repeated on the command line.  Each
1217 successive use will display its requested class of options, skipping
1218 those that have already been displayed.
1219
1220 If the @option{-Q} option appears on the command line before the
1221 @option{--help=} option, then the descriptive text displayed by
1222 @option{--help=} is changed.  Instead of describing the displayed
1223 options, an indication is given as to whether the option is enabled,
1224 disabled or set to a specific value (assuming that the compiler
1225 knows this at the point where the @option{--help=} option is used).
1226
1227 Here is a truncated example from the ARM port of @command{gcc}:
1228
1229 @smallexample
1230   % gcc -Q -mabi=2 --help=target -c
1231   The following options are target specific:
1232   -mabi=                                2
1233   -mabort-on-noreturn                   [disabled]
1234   -mapcs                                [disabled]
1235 @end smallexample
1236
1237 The output is sensitive to the effects of previous command line
1238 options, so for example it is possible to find out which optimizations
1239 are enabled at @option{-O2} by using:
1240
1241 @smallexample
1242 -O2 --help=optimizers
1243 @end smallexample
1244
1245 Alternatively you can discover which binary optimizations are enabled
1246 by @option{-O3} by using:
1247
1248 @smallexample
1249 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1250 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1251 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1252 @end smallexample
1253
1254 @item --version
1255 @opindex version
1256 Display the version number and copyrights of the invoked GCC@.
1257
1258 @item -wrapper
1259 @opindex wrapper
1260 Invoke all subcommands under a wrapper program. It takes a single
1261 comma separated list as an argument, which will be used to invoke
1262 the wrapper:
1263
1264 @smallexample
1265 gcc -c t.c -wrapper gdb,--args
1266 @end smallexample
1267
1268 This will invoke all subprograms of gcc under "gdb --args",
1269 thus cc1 invocation will be "gdb --args cc1 ...".
1270
1271 @include @value{srcdir}/../libiberty/at-file.texi
1272 @end table
1273
1274 @node Invoking G++
1275 @section Compiling C++ Programs
1276
1277 @cindex suffixes for C++ source
1278 @cindex C++ source file suffixes
1279 C++ source files conventionally use one of the suffixes @samp{.C},
1280 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1281 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1282 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1283 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1284 files with these names and compiles them as C++ programs even if you
1285 call the compiler the same way as for compiling C programs (usually
1286 with the name @command{gcc}).
1287
1288 @findex g++
1289 @findex c++
1290 However, the use of @command{gcc} does not add the C++ library.
1291 @command{g++} is a program that calls GCC and treats @samp{.c},
1292 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1293 files unless @option{-x} is used, and automatically specifies linking
1294 against the C++ library.  This program is also useful when
1295 precompiling a C header file with a @samp{.h} extension for use in C++
1296 compilations.  On many systems, @command{g++} is also installed with
1297 the name @command{c++}.
1298
1299 @cindex invoking @command{g++}
1300 When you compile C++ programs, you may specify many of the same
1301 command-line options that you use for compiling programs in any
1302 language; or command-line options meaningful for C and related
1303 languages; or options that are meaningful only for C++ programs.
1304 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1305 explanations of options for languages related to C@.
1306 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1307 explanations of options that are meaningful only for C++ programs.
1308
1309 @node C Dialect Options
1310 @section Options Controlling C Dialect
1311 @cindex dialect options
1312 @cindex language dialect options
1313 @cindex options, dialect
1314
1315 The following options control the dialect of C (or languages derived
1316 from C, such as C++, Objective-C and Objective-C++) that the compiler
1317 accepts:
1318
1319 @table @gcctabopt
1320 @cindex ANSI support
1321 @cindex ISO support
1322 @item -ansi
1323 @opindex ansi
1324 In C mode, this is equivalent to @samp{-std=c89}. In C++ mode, it is
1325 equivalent to @samp{-std=c++98}.
1326
1327 This turns off certain features of GCC that are incompatible with ISO
1328 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1329 such as the @code{asm} and @code{typeof} keywords, and
1330 predefined macros such as @code{unix} and @code{vax} that identify the
1331 type of system you are using.  It also enables the undesirable and
1332 rarely used ISO trigraph feature.  For the C compiler,
1333 it disables recognition of C++ style @samp{//} comments as well as
1334 the @code{inline} keyword.
1335
1336 The alternate keywords @code{__asm__}, @code{__extension__},
1337 @code{__inline__} and @code{__typeof__} continue to work despite
1338 @option{-ansi}.  You would not want to use them in an ISO C program, of
1339 course, but it is useful to put them in header files that might be included
1340 in compilations done with @option{-ansi}.  Alternate predefined macros
1341 such as @code{__unix__} and @code{__vax__} are also available, with or
1342 without @option{-ansi}.
1343
1344 The @option{-ansi} option does not cause non-ISO programs to be
1345 rejected gratuitously.  For that, @option{-pedantic} is required in
1346 addition to @option{-ansi}.  @xref{Warning Options}.
1347
1348 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1349 option is used.  Some header files may notice this macro and refrain
1350 from declaring certain functions or defining certain macros that the
1351 ISO standard doesn't call for; this is to avoid interfering with any
1352 programs that might use these names for other things.
1353
1354 Functions that would normally be built in but do not have semantics
1355 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1356 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1357 built-in functions provided by GCC}, for details of the functions
1358 affected.
1359
1360 @item -std=
1361 @opindex std
1362 Determine the language standard. @xref{Standards,,Language Standards
1363 Supported by GCC}, for details of these standard versions.  This option
1364 is currently only supported when compiling C or C++. 
1365
1366 The compiler can accept several base standards, such as @samp{c89} or
1367 @samp{c++98}, and GNU dialects of those standards, such as
1368 @samp{gnu89} or @samp{gnu++98}.  By specifing a base standard, the
1369 compiler will accept all programs following that standard and those
1370 using GNU extensions that do not contradict it.  For example,
1371 @samp{-std=c89} turns off certain features of GCC that are
1372 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1373 keywords, but not other GNU extensions that do not have a meaning in
1374 ISO C90, such as omitting the middle term of a @code{?:}
1375 expression. On the other hand, by specifing a GNU dialect of a
1376 standard, all features the compiler support are enabled, even when
1377 those features change the meaning of the base standard and some
1378 strict-conforming programs may be rejected.  The particular standard
1379 is used by @option{-pedantic} to identify which features are GNU
1380 extensions given that version of the standard. For example
1381 @samp{-std=gnu89 -pedantic} would warn about C++ style @samp{//}
1382 comments, while @samp{-std=gnu99 -pedantic} would not.
1383
1384 A value for this option must be provided; possible values are
1385
1386 @table @samp
1387 @item c89
1388 @itemx iso9899:1990
1389 Support all ISO C90 programs (certain GNU extensions that conflict
1390 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1391
1392 @item iso9899:199409
1393 ISO C90 as modified in amendment 1.
1394
1395 @item c99
1396 @itemx c9x
1397 @itemx iso9899:1999
1398 @itemx iso9899:199x
1399 ISO C99.  Note that this standard is not yet fully supported; see
1400 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1401 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1402
1403 @item gnu89
1404 GNU dialect of ISO C90 (including some C99 features). This
1405 is the default for C code.
1406
1407 @item gnu99
1408 @itemx gnu9x
1409 GNU dialect of ISO C99.  When ISO C99 is fully implemented in GCC,
1410 this will become the default.  The name @samp{gnu9x} is deprecated.
1411
1412 @item c++98
1413 The 1998 ISO C++ standard plus amendments. Same as @option{-ansi} for
1414 C++ code.
1415
1416 @item gnu++98
1417 GNU dialect of @option{-std=c++98}.  This is the default for
1418 C++ code.
1419
1420 @item c++0x
1421 The working draft of the upcoming ISO C++0x standard. This option
1422 enables experimental features that are likely to be included in
1423 C++0x. The working draft is constantly changing, and any feature that is
1424 enabled by this flag may be removed from future versions of GCC if it is
1425 not part of the C++0x standard.
1426
1427 @item gnu++0x
1428 GNU dialect of @option{-std=c++0x}. This option enables
1429 experimental features that may be removed in future versions of GCC.
1430 @end table
1431
1432 @item -fgnu89-inline
1433 @opindex fgnu89-inline
1434 The option @option{-fgnu89-inline} tells GCC to use the traditional
1435 GNU semantics for @code{inline} functions when in C99 mode.
1436 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1437 is accepted and ignored by GCC versions 4.1.3 up to but not including
1438 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1439 C99 mode.  Using this option is roughly equivalent to adding the
1440 @code{gnu_inline} function attribute to all inline functions
1441 (@pxref{Function Attributes}).
1442
1443 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1444 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1445 specifies the default behavior).  This option was first supported in
1446 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1447
1448 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1449 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1450 in effect for @code{inline} functions.  @xref{Common Predefined
1451 Macros,,,cpp,The C Preprocessor}.
1452
1453 @item -aux-info @var{filename}
1454 @opindex aux-info
1455 Output to the given filename prototyped declarations for all functions
1456 declared and/or defined in a translation unit, including those in header
1457 files.  This option is silently ignored in any language other than C@.
1458
1459 Besides declarations, the file indicates, in comments, the origin of
1460 each declaration (source file and line), whether the declaration was
1461 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1462 @samp{O} for old, respectively, in the first character after the line
1463 number and the colon), and whether it came from a declaration or a
1464 definition (@samp{C} or @samp{F}, respectively, in the following
1465 character).  In the case of function definitions, a K&R-style list of
1466 arguments followed by their declarations is also provided, inside
1467 comments, after the declaration.
1468
1469 @item -fno-asm
1470 @opindex fno-asm
1471 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1472 keyword, so that code can use these words as identifiers.  You can use
1473 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1474 instead.  @option{-ansi} implies @option{-fno-asm}.
1475
1476 In C++, this switch only affects the @code{typeof} keyword, since
1477 @code{asm} and @code{inline} are standard keywords.  You may want to
1478 use the @option{-fno-gnu-keywords} flag instead, which has the same
1479 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1480 switch only affects the @code{asm} and @code{typeof} keywords, since
1481 @code{inline} is a standard keyword in ISO C99.
1482
1483 @item -fno-builtin
1484 @itemx -fno-builtin-@var{function}
1485 @opindex fno-builtin
1486 @cindex built-in functions
1487 Don't recognize built-in functions that do not begin with
1488 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1489 functions provided by GCC}, for details of the functions affected,
1490 including those which are not built-in functions when @option{-ansi} or
1491 @option{-std} options for strict ISO C conformance are used because they
1492 do not have an ISO standard meaning.
1493
1494 GCC normally generates special code to handle certain built-in functions
1495 more efficiently; for instance, calls to @code{alloca} may become single
1496 instructions that adjust the stack directly, and calls to @code{memcpy}
1497 may become inline copy loops.  The resulting code is often both smaller
1498 and faster, but since the function calls no longer appear as such, you
1499 cannot set a breakpoint on those calls, nor can you change the behavior
1500 of the functions by linking with a different library.  In addition,
1501 when a function is recognized as a built-in function, GCC may use
1502 information about that function to warn about problems with calls to
1503 that function, or to generate more efficient code, even if the
1504 resulting code still contains calls to that function.  For example,
1505 warnings are given with @option{-Wformat} for bad calls to
1506 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1507 known not to modify global memory.
1508
1509 With the @option{-fno-builtin-@var{function}} option
1510 only the built-in function @var{function} is
1511 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1512 function is named this is not built-in in this version of GCC, this
1513 option is ignored.  There is no corresponding
1514 @option{-fbuiltin-@var{function}} option; if you wish to enable
1515 built-in functions selectively when using @option{-fno-builtin} or
1516 @option{-ffreestanding}, you may define macros such as:
1517
1518 @smallexample
1519 #define abs(n)          __builtin_abs ((n))
1520 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1521 @end smallexample
1522
1523 @item -fhosted
1524 @opindex fhosted
1525 @cindex hosted environment
1526
1527 Assert that compilation takes place in a hosted environment.  This implies
1528 @option{-fbuiltin}.  A hosted environment is one in which the
1529 entire standard library is available, and in which @code{main} has a return
1530 type of @code{int}.  Examples are nearly everything except a kernel.
1531 This is equivalent to @option{-fno-freestanding}.
1532
1533 @item -ffreestanding
1534 @opindex ffreestanding
1535 @cindex hosted environment
1536
1537 Assert that compilation takes place in a freestanding environment.  This
1538 implies @option{-fno-builtin}.  A freestanding environment
1539 is one in which the standard library may not exist, and program startup may
1540 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1541 This is equivalent to @option{-fno-hosted}.
1542
1543 @xref{Standards,,Language Standards Supported by GCC}, for details of
1544 freestanding and hosted environments.
1545
1546 @item -fopenmp
1547 @opindex fopenmp
1548 @cindex openmp parallel
1549 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1550 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1551 compiler generates parallel code according to the OpenMP Application
1552 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.  This option
1553 implies @option{-pthread}, and thus is only supported on targets that
1554 have support for @option{-pthread}.
1555
1556 @item -fms-extensions
1557 @opindex fms-extensions
1558 Accept some non-standard constructs used in Microsoft header files.
1559
1560 Some cases of unnamed fields in structures and unions are only
1561 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1562 fields within structs/unions}, for details.
1563
1564 @item -trigraphs
1565 @opindex trigraphs
1566 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1567 options for strict ISO C conformance) implies @option{-trigraphs}.
1568
1569 @item -no-integrated-cpp
1570 @opindex no-integrated-cpp
1571 Performs a compilation in two passes: preprocessing and compiling.  This
1572 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1573 @option{-B} option.  The user supplied compilation step can then add in
1574 an additional preprocessing step after normal preprocessing but before
1575 compiling.  The default is to use the integrated cpp (internal cpp)
1576
1577 The semantics of this option will change if "cc1", "cc1plus", and
1578 "cc1obj" are merged.
1579
1580 @cindex traditional C language
1581 @cindex C language, traditional
1582 @item -traditional
1583 @itemx -traditional-cpp
1584 @opindex traditional-cpp
1585 @opindex traditional
1586 Formerly, these options caused GCC to attempt to emulate a pre-standard
1587 C compiler.  They are now only supported with the @option{-E} switch.
1588 The preprocessor continues to support a pre-standard mode.  See the GNU
1589 CPP manual for details.
1590
1591 @item -fcond-mismatch
1592 @opindex fcond-mismatch
1593 Allow conditional expressions with mismatched types in the second and
1594 third arguments.  The value of such an expression is void.  This option
1595 is not supported for C++.
1596
1597 @item -flax-vector-conversions
1598 @opindex flax-vector-conversions
1599 Allow implicit conversions between vectors with differing numbers of
1600 elements and/or incompatible element types.  This option should not be
1601 used for new code.
1602
1603 @item -funsigned-char
1604 @opindex funsigned-char
1605 Let the type @code{char} be unsigned, like @code{unsigned char}.
1606
1607 Each kind of machine has a default for what @code{char} should
1608 be.  It is either like @code{unsigned char} by default or like
1609 @code{signed char} by default.
1610
1611 Ideally, a portable program should always use @code{signed char} or
1612 @code{unsigned char} when it depends on the signedness of an object.
1613 But many programs have been written to use plain @code{char} and
1614 expect it to be signed, or expect it to be unsigned, depending on the
1615 machines they were written for.  This option, and its inverse, let you
1616 make such a program work with the opposite default.
1617
1618 The type @code{char} is always a distinct type from each of
1619 @code{signed char} or @code{unsigned char}, even though its behavior
1620 is always just like one of those two.
1621
1622 @item -fsigned-char
1623 @opindex fsigned-char
1624 Let the type @code{char} be signed, like @code{signed char}.
1625
1626 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1627 the negative form of @option{-funsigned-char}.  Likewise, the option
1628 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1629
1630 @item -fsigned-bitfields
1631 @itemx -funsigned-bitfields
1632 @itemx -fno-signed-bitfields
1633 @itemx -fno-unsigned-bitfields
1634 @opindex fsigned-bitfields
1635 @opindex funsigned-bitfields
1636 @opindex fno-signed-bitfields
1637 @opindex fno-unsigned-bitfields
1638 These options control whether a bit-field is signed or unsigned, when the
1639 declaration does not use either @code{signed} or @code{unsigned}.  By
1640 default, such a bit-field is signed, because this is consistent: the
1641 basic integer types such as @code{int} are signed types.
1642 @end table
1643
1644 @node C++ Dialect Options
1645 @section Options Controlling C++ Dialect
1646
1647 @cindex compiler options, C++
1648 @cindex C++ options, command line
1649 @cindex options, C++
1650 This section describes the command-line options that are only meaningful
1651 for C++ programs; but you can also use most of the GNU compiler options
1652 regardless of what language your program is in.  For example, you
1653 might compile a file @code{firstClass.C} like this:
1654
1655 @smallexample
1656 g++ -g -frepo -O -c firstClass.C
1657 @end smallexample
1658
1659 @noindent
1660 In this example, only @option{-frepo} is an option meant
1661 only for C++ programs; you can use the other options with any
1662 language supported by GCC@.
1663
1664 Here is a list of options that are @emph{only} for compiling C++ programs:
1665
1666 @table @gcctabopt
1667
1668 @item -fabi-version=@var{n}
1669 @opindex fabi-version
1670 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1671 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1672 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1673 the version that conforms most closely to the C++ ABI specification.
1674 Therefore, the ABI obtained using version 0 will change as ABI bugs
1675 are fixed.
1676
1677 The default is version 2.
1678
1679 @item -fno-access-control
1680 @opindex fno-access-control
1681 Turn off all access checking.  This switch is mainly useful for working
1682 around bugs in the access control code.
1683
1684 @item -fcheck-new
1685 @opindex fcheck-new
1686 Check that the pointer returned by @code{operator new} is non-null
1687 before attempting to modify the storage allocated.  This check is
1688 normally unnecessary because the C++ standard specifies that
1689 @code{operator new} will only return @code{0} if it is declared
1690 @samp{throw()}, in which case the compiler will always check the
1691 return value even without this option.  In all other cases, when
1692 @code{operator new} has a non-empty exception specification, memory
1693 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1694 @samp{new (nothrow)}.
1695
1696 @item -fconserve-space
1697 @opindex fconserve-space
1698 Put uninitialized or runtime-initialized global variables into the
1699 common segment, as C does.  This saves space in the executable at the
1700 cost of not diagnosing duplicate definitions.  If you compile with this
1701 flag and your program mysteriously crashes after @code{main()} has
1702 completed, you may have an object that is being destroyed twice because
1703 two definitions were merged.
1704
1705 This option is no longer useful on most targets, now that support has
1706 been added for putting variables into BSS without making them common.
1707
1708 @item -ffriend-injection
1709 @opindex ffriend-injection
1710 Inject friend functions into the enclosing namespace, so that they are
1711 visible outside the scope of the class in which they are declared.
1712 Friend functions were documented to work this way in the old Annotated
1713 C++ Reference Manual, and versions of G++ before 4.1 always worked
1714 that way.  However, in ISO C++ a friend function which is not declared
1715 in an enclosing scope can only be found using argument dependent
1716 lookup.  This option causes friends to be injected as they were in
1717 earlier releases.
1718
1719 This option is for compatibility, and may be removed in a future
1720 release of G++.
1721
1722 @item -fno-elide-constructors
1723 @opindex fno-elide-constructors
1724 The C++ standard allows an implementation to omit creating a temporary
1725 which is only used to initialize another object of the same type.
1726 Specifying this option disables that optimization, and forces G++ to
1727 call the copy constructor in all cases.
1728
1729 @item -fno-enforce-eh-specs
1730 @opindex fno-enforce-eh-specs
1731 Don't generate code to check for violation of exception specifications
1732 at runtime.  This option violates the C++ standard, but may be useful
1733 for reducing code size in production builds, much like defining
1734 @samp{NDEBUG}.  This does not give user code permission to throw
1735 exceptions in violation of the exception specifications; the compiler
1736 will still optimize based on the specifications, so throwing an
1737 unexpected exception will result in undefined behavior.
1738
1739 @item -ffor-scope
1740 @itemx -fno-for-scope
1741 @opindex ffor-scope
1742 @opindex fno-for-scope
1743 If @option{-ffor-scope} is specified, the scope of variables declared in
1744 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1745 as specified by the C++ standard.
1746 If @option{-fno-for-scope} is specified, the scope of variables declared in
1747 a @i{for-init-statement} extends to the end of the enclosing scope,
1748 as was the case in old versions of G++, and other (traditional)
1749 implementations of C++.
1750
1751 The default if neither flag is given to follow the standard,
1752 but to allow and give a warning for old-style code that would
1753 otherwise be invalid, or have different behavior.
1754
1755 @item -fno-gnu-keywords
1756 @opindex fno-gnu-keywords
1757 Do not recognize @code{typeof} as a keyword, so that code can use this
1758 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1759 @option{-ansi} implies @option{-fno-gnu-keywords}.
1760
1761 @item -fno-implicit-templates
1762 @opindex fno-implicit-templates
1763 Never emit code for non-inline templates which are instantiated
1764 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1765 @xref{Template Instantiation}, for more information.
1766
1767 @item -fno-implicit-inline-templates
1768 @opindex fno-implicit-inline-templates
1769 Don't emit code for implicit instantiations of inline templates, either.
1770 The default is to handle inlines differently so that compiles with and
1771 without optimization will need the same set of explicit instantiations.
1772
1773 @item -fno-implement-inlines
1774 @opindex fno-implement-inlines
1775 To save space, do not emit out-of-line copies of inline functions
1776 controlled by @samp{#pragma implementation}.  This will cause linker
1777 errors if these functions are not inlined everywhere they are called.
1778
1779 @item -fms-extensions
1780 @opindex fms-extensions
1781 Disable pedantic warnings about constructs used in MFC, such as implicit
1782 int and getting a pointer to member function via non-standard syntax.
1783
1784 @item -fno-nonansi-builtins
1785 @opindex fno-nonansi-builtins
1786 Disable built-in declarations of functions that are not mandated by
1787 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1788 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1789
1790 @item -fno-operator-names
1791 @opindex fno-operator-names
1792 Do not treat the operator name keywords @code{and}, @code{bitand},
1793 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1794 synonyms as keywords.
1795
1796 @item -fno-optional-diags
1797 @opindex fno-optional-diags
1798 Disable diagnostics that the standard says a compiler does not need to
1799 issue.  Currently, the only such diagnostic issued by G++ is the one for
1800 a name having multiple meanings within a class.
1801
1802 @item -fpermissive
1803 @opindex fpermissive
1804 Downgrade some diagnostics about nonconformant code from errors to
1805 warnings.  Thus, using @option{-fpermissive} will allow some
1806 nonconforming code to compile.
1807
1808 @item -frepo
1809 @opindex frepo
1810 Enable automatic template instantiation at link time.  This option also
1811 implies @option{-fno-implicit-templates}.  @xref{Template
1812 Instantiation}, for more information.
1813
1814 @item -fno-rtti
1815 @opindex fno-rtti
1816 Disable generation of information about every class with virtual
1817 functions for use by the C++ runtime type identification features
1818 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1819 of the language, you can save some space by using this flag.  Note that
1820 exception handling uses the same information, but it will generate it as
1821 needed. The @samp{dynamic_cast} operator can still be used for casts that
1822 do not require runtime type information, i.e.@: casts to @code{void *} or to
1823 unambiguous base classes.
1824
1825 @item -fstats
1826 @opindex fstats
1827 Emit statistics about front-end processing at the end of the compilation.
1828 This information is generally only useful to the G++ development team.
1829
1830 @item -ftemplate-depth-@var{n}
1831 @opindex ftemplate-depth
1832 Set the maximum instantiation depth for template classes to @var{n}.
1833 A limit on the template instantiation depth is needed to detect
1834 endless recursions during template class instantiation.  ANSI/ISO C++
1835 conforming programs must not rely on a maximum depth greater than 17.
1836
1837 @item -fno-threadsafe-statics
1838 @opindex fno-threadsafe-statics
1839 Do not emit the extra code to use the routines specified in the C++
1840 ABI for thread-safe initialization of local statics.  You can use this
1841 option to reduce code size slightly in code that doesn't need to be
1842 thread-safe.
1843
1844 @item -fuse-cxa-atexit
1845 @opindex fuse-cxa-atexit
1846 Register destructors for objects with static storage duration with the
1847 @code{__cxa_atexit} function rather than the @code{atexit} function.
1848 This option is required for fully standards-compliant handling of static
1849 destructors, but will only work if your C library supports
1850 @code{__cxa_atexit}.
1851
1852 @item -fno-use-cxa-get-exception-ptr
1853 @opindex fno-use-cxa-get-exception-ptr
1854 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1855 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1856 if the runtime routine is not available.
1857
1858 @item -fvisibility-inlines-hidden
1859 @opindex fvisibility-inlines-hidden
1860 This switch declares that the user does not attempt to compare
1861 pointers to inline methods where the addresses of the two functions
1862 were taken in different shared objects.
1863
1864 The effect of this is that GCC may, effectively, mark inline methods with
1865 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1866 appear in the export table of a DSO and do not require a PLT indirection
1867 when used within the DSO@.  Enabling this option can have a dramatic effect
1868 on load and link times of a DSO as it massively reduces the size of the
1869 dynamic export table when the library makes heavy use of templates.
1870
1871 The behavior of this switch is not quite the same as marking the
1872 methods as hidden directly, because it does not affect static variables
1873 local to the function or cause the compiler to deduce that
1874 the function is defined in only one shared object.
1875
1876 You may mark a method as having a visibility explicitly to negate the
1877 effect of the switch for that method.  For example, if you do want to
1878 compare pointers to a particular inline method, you might mark it as
1879 having default visibility.  Marking the enclosing class with explicit
1880 visibility will have no effect.
1881
1882 Explicitly instantiated inline methods are unaffected by this option
1883 as their linkage might otherwise cross a shared library boundary.
1884 @xref{Template Instantiation}.
1885
1886 @item -fvisibility-ms-compat
1887 @opindex fvisibility-ms-compat
1888 This flag attempts to use visibility settings to make GCC's C++
1889 linkage model compatible with that of Microsoft Visual Studio.
1890
1891 The flag makes these changes to GCC's linkage model:
1892
1893 @enumerate
1894 @item
1895 It sets the default visibility to @code{hidden}, like
1896 @option{-fvisibility=hidden}.
1897
1898 @item
1899 Types, but not their members, are not hidden by default.
1900
1901 @item
1902 The One Definition Rule is relaxed for types without explicit
1903 visibility specifications which are defined in more than one different
1904 shared object: those declarations are permitted if they would have
1905 been permitted when this option was not used.
1906 @end enumerate
1907
1908 In new code it is better to use @option{-fvisibility=hidden} and
1909 export those classes which are intended to be externally visible.
1910 Unfortunately it is possible for code to rely, perhaps accidentally,
1911 on the Visual Studio behavior.
1912
1913 Among the consequences of these changes are that static data members
1914 of the same type with the same name but defined in different shared
1915 objects will be different, so changing one will not change the other;
1916 and that pointers to function members defined in different shared
1917 objects may not compare equal.  When this flag is given, it is a
1918 violation of the ODR to define types with the same name differently.
1919
1920 @item -fno-weak
1921 @opindex fno-weak
1922 Do not use weak symbol support, even if it is provided by the linker.
1923 By default, G++ will use weak symbols if they are available.  This
1924 option exists only for testing, and should not be used by end-users;
1925 it will result in inferior code and has no benefits.  This option may
1926 be removed in a future release of G++.
1927
1928 @item -nostdinc++
1929 @opindex nostdinc++
1930 Do not search for header files in the standard directories specific to
1931 C++, but do still search the other standard directories.  (This option
1932 is used when building the C++ library.)
1933 @end table
1934
1935 In addition, these optimization, warning, and code generation options
1936 have meanings only for C++ programs:
1937
1938 @table @gcctabopt
1939 @item -fno-default-inline
1940 @opindex fno-default-inline
1941 Do not assume @samp{inline} for functions defined inside a class scope.
1942 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1943 functions will have linkage like inline functions; they just won't be
1944 inlined by default.
1945
1946 @item -Wabi @r{(C++ and Objective-C++ only)}
1947 @opindex Wabi
1948 @opindex Wno-abi
1949 Warn when G++ generates code that is probably not compatible with the
1950 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1951 all such cases, there are probably some cases that are not warned about,
1952 even though G++ is generating incompatible code.  There may also be
1953 cases where warnings are emitted even though the code that is generated
1954 will be compatible.
1955
1956 You should rewrite your code to avoid these warnings if you are
1957 concerned about the fact that code generated by G++ may not be binary
1958 compatible with code generated by other compilers.
1959
1960 The known incompatibilities at this point include:
1961
1962 @itemize @bullet
1963
1964 @item
1965 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1966 pack data into the same byte as a base class.  For example:
1967
1968 @smallexample
1969 struct A @{ virtual void f(); int f1 : 1; @};
1970 struct B : public A @{ int f2 : 1; @};
1971 @end smallexample
1972
1973 @noindent
1974 In this case, G++ will place @code{B::f2} into the same byte
1975 as@code{A::f1}; other compilers will not.  You can avoid this problem
1976 by explicitly padding @code{A} so that its size is a multiple of the
1977 byte size on your platform; that will cause G++ and other compilers to
1978 layout @code{B} identically.
1979
1980 @item
1981 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1982 tail padding when laying out virtual bases.  For example:
1983
1984 @smallexample
1985 struct A @{ virtual void f(); char c1; @};
1986 struct B @{ B(); char c2; @};
1987 struct C : public A, public virtual B @{@};
1988 @end smallexample
1989
1990 @noindent
1991 In this case, G++ will not place @code{B} into the tail-padding for
1992 @code{A}; other compilers will.  You can avoid this problem by
1993 explicitly padding @code{A} so that its size is a multiple of its
1994 alignment (ignoring virtual base classes); that will cause G++ and other
1995 compilers to layout @code{C} identically.
1996
1997 @item
1998 Incorrect handling of bit-fields with declared widths greater than that
1999 of their underlying types, when the bit-fields appear in a union.  For
2000 example:
2001
2002 @smallexample
2003 union U @{ int i : 4096; @};
2004 @end smallexample
2005
2006 @noindent
2007 Assuming that an @code{int} does not have 4096 bits, G++ will make the
2008 union too small by the number of bits in an @code{int}.
2009
2010 @item
2011 Empty classes can be placed at incorrect offsets.  For example:
2012
2013 @smallexample
2014 struct A @{@};
2015
2016 struct B @{
2017   A a;
2018   virtual void f ();
2019 @};
2020
2021 struct C : public B, public A @{@};
2022 @end smallexample
2023
2024 @noindent
2025 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
2026 it should be placed at offset zero.  G++ mistakenly believes that the
2027 @code{A} data member of @code{B} is already at offset zero.
2028
2029 @item
2030 Names of template functions whose types involve @code{typename} or
2031 template template parameters can be mangled incorrectly.
2032
2033 @smallexample
2034 template <typename Q>
2035 void f(typename Q::X) @{@}
2036
2037 template <template <typename> class Q>
2038 void f(typename Q<int>::X) @{@}
2039 @end smallexample
2040
2041 @noindent
2042 Instantiations of these templates may be mangled incorrectly.
2043
2044 @end itemize
2045
2046 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2047 @opindex Wctor-dtor-privacy
2048 @opindex Wno-ctor-dtor-privacy
2049 Warn when a class seems unusable because all the constructors or
2050 destructors in that class are private, and it has neither friends nor
2051 public static member functions.
2052
2053 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2054 @opindex Wnon-virtual-dtor
2055 @opindex Wno-non-virtual-dtor
2056 Warn when a class has virtual functions and accessible non-virtual
2057 destructor, in which case it would be possible but unsafe to delete
2058 an instance of a derived class through a pointer to the base class.
2059 This warning is also enabled if -Weffc++ is specified.
2060
2061 @item -Wreorder @r{(C++ and Objective-C++ only)}
2062 @opindex Wreorder
2063 @opindex Wno-reorder
2064 @cindex reordering, warning
2065 @cindex warning for reordering of member initializers
2066 Warn when the order of member initializers given in the code does not
2067 match the order in which they must be executed.  For instance:
2068
2069 @smallexample
2070 struct A @{
2071   int i;
2072   int j;
2073   A(): j (0), i (1) @{ @}
2074 @};
2075 @end smallexample
2076
2077 The compiler will rearrange the member initializers for @samp{i}
2078 and @samp{j} to match the declaration order of the members, emitting
2079 a warning to that effect.  This warning is enabled by @option{-Wall}.
2080 @end table
2081
2082 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2083
2084 @table @gcctabopt
2085 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2086 @opindex Weffc++
2087 @opindex Wno-effc++
2088 Warn about violations of the following style guidelines from Scott Meyers'
2089 @cite{Effective C++} book:
2090
2091 @itemize @bullet
2092 @item
2093 Item 11:  Define a copy constructor and an assignment operator for classes
2094 with dynamically allocated memory.
2095
2096 @item
2097 Item 12:  Prefer initialization to assignment in constructors.
2098
2099 @item
2100 Item 14:  Make destructors virtual in base classes.
2101
2102 @item
2103 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2104
2105 @item
2106 Item 23:  Don't try to return a reference when you must return an object.
2107
2108 @end itemize
2109
2110 Also warn about violations of the following style guidelines from
2111 Scott Meyers' @cite{More Effective C++} book:
2112
2113 @itemize @bullet
2114 @item
2115 Item 6:  Distinguish between prefix and postfix forms of increment and
2116 decrement operators.
2117
2118 @item
2119 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2120
2121 @end itemize
2122
2123 When selecting this option, be aware that the standard library
2124 headers do not obey all of these guidelines; use @samp{grep -v}
2125 to filter out those warnings.
2126
2127 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2128 @opindex Wstrict-null-sentinel
2129 @opindex Wno-strict-null-sentinel
2130 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2131 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2132 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2133 it is guaranteed to of the same size as a pointer.  But this use is
2134 not portable across different compilers.
2135
2136 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2137 @opindex Wno-non-template-friend
2138 @opindex Wnon-template-friend
2139 Disable warnings when non-templatized friend functions are declared
2140 within a template.  Since the advent of explicit template specification
2141 support in G++, if the name of the friend is an unqualified-id (i.e.,
2142 @samp{friend foo(int)}), the C++ language specification demands that the
2143 friend declare or define an ordinary, nontemplate function.  (Section
2144 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2145 could be interpreted as a particular specialization of a templatized
2146 function.  Because this non-conforming behavior is no longer the default
2147 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2148 check existing code for potential trouble spots and is on by default.
2149 This new compiler behavior can be turned off with
2150 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2151 but disables the helpful warning.
2152
2153 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2154 @opindex Wold-style-cast
2155 @opindex Wno-old-style-cast
2156 Warn if an old-style (C-style) cast to a non-void type is used within
2157 a C++ program.  The new-style casts (@samp{dynamic_cast},
2158 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2159 less vulnerable to unintended effects and much easier to search for.
2160
2161 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2162 @opindex Woverloaded-virtual
2163 @opindex Wno-overloaded-virtual
2164 @cindex overloaded virtual fn, warning
2165 @cindex warning for overloaded virtual fn
2166 Warn when a function declaration hides virtual functions from a
2167 base class.  For example, in:
2168
2169 @smallexample
2170 struct A @{
2171   virtual void f();
2172 @};
2173
2174 struct B: public A @{
2175   void f(int);
2176 @};
2177 @end smallexample
2178
2179 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2180 like:
2181
2182 @smallexample
2183 B* b;
2184 b->f();
2185 @end smallexample
2186
2187 will fail to compile.
2188
2189 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2190 @opindex Wno-pmf-conversions
2191 @opindex Wpmf-conversions
2192 Disable the diagnostic for converting a bound pointer to member function
2193 to a plain pointer.
2194
2195 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2196 @opindex Wsign-promo
2197 @opindex Wno-sign-promo
2198 Warn when overload resolution chooses a promotion from unsigned or
2199 enumerated type to a signed type, over a conversion to an unsigned type of
2200 the same size.  Previous versions of G++ would try to preserve
2201 unsignedness, but the standard mandates the current behavior.
2202
2203 @smallexample
2204 struct A @{
2205   operator int ();
2206   A& operator = (int);
2207 @};
2208
2209 main ()
2210 @{
2211   A a,b;
2212   a = b;
2213 @}
2214 @end smallexample
2215
2216 In this example, G++ will synthesize a default @samp{A& operator =
2217 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2218 @end table
2219
2220 @node Objective-C and Objective-C++ Dialect Options
2221 @section Options Controlling Objective-C and Objective-C++ Dialects
2222
2223 @cindex compiler options, Objective-C and Objective-C++
2224 @cindex Objective-C and Objective-C++ options, command line
2225 @cindex options, Objective-C and Objective-C++
2226 (NOTE: This manual does not describe the Objective-C and Objective-C++
2227 languages themselves.  See @xref{Standards,,Language Standards
2228 Supported by GCC}, for references.)
2229
2230 This section describes the command-line options that are only meaningful
2231 for Objective-C and Objective-C++ programs, but you can also use most of
2232 the language-independent GNU compiler options.
2233 For example, you might compile a file @code{some_class.m} like this:
2234
2235 @smallexample
2236 gcc -g -fgnu-runtime -O -c some_class.m
2237 @end smallexample
2238
2239 @noindent
2240 In this example, @option{-fgnu-runtime} is an option meant only for
2241 Objective-C and Objective-C++ programs; you can use the other options with
2242 any language supported by GCC@.
2243
2244 Note that since Objective-C is an extension of the C language, Objective-C
2245 compilations may also use options specific to the C front-end (e.g.,
2246 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2247 C++-specific options (e.g., @option{-Wabi}).
2248
2249 Here is a list of options that are @emph{only} for compiling Objective-C
2250 and Objective-C++ programs:
2251
2252 @table @gcctabopt
2253 @item -fconstant-string-class=@var{class-name}
2254 @opindex fconstant-string-class
2255 Use @var{class-name} as the name of the class to instantiate for each
2256 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2257 class name is @code{NXConstantString} if the GNU runtime is being used, and
2258 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2259 @option{-fconstant-cfstrings} option, if also present, will override the
2260 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2261 to be laid out as constant CoreFoundation strings.
2262
2263 @item -fgnu-runtime
2264 @opindex fgnu-runtime
2265 Generate object code compatible with the standard GNU Objective-C
2266 runtime.  This is the default for most types of systems.
2267
2268 @item -fnext-runtime
2269 @opindex fnext-runtime
2270 Generate output compatible with the NeXT runtime.  This is the default
2271 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2272 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2273 used.
2274
2275 @item -fno-nil-receivers
2276 @opindex fno-nil-receivers
2277 Assume that all Objective-C message dispatches (e.g.,
2278 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2279 is not @code{nil}.  This allows for more efficient entry points in the runtime
2280 to be used.  Currently, this option is only available in conjunction with
2281 the NeXT runtime on Mac OS X 10.3 and later.
2282
2283 @item -fobjc-call-cxx-cdtors
2284 @opindex fobjc-call-cxx-cdtors
2285 For each Objective-C class, check if any of its instance variables is a
2286 C++ object with a non-trivial default constructor.  If so, synthesize a
2287 special @code{- (id) .cxx_construct} instance method that will run
2288 non-trivial default constructors on any such instance variables, in order,
2289 and then return @code{self}.  Similarly, check if any instance variable
2290 is a C++ object with a non-trivial destructor, and if so, synthesize a
2291 special @code{- (void) .cxx_destruct} method that will run
2292 all such default destructors, in reverse order.
2293
2294 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2295 thusly generated will only operate on instance variables declared in the
2296 current Objective-C class, and not those inherited from superclasses.  It
2297 is the responsibility of the Objective-C runtime to invoke all such methods
2298 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2299 will be invoked by the runtime immediately after a new object
2300 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2301 be invoked immediately before the runtime deallocates an object instance.
2302
2303 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2304 support for invoking the @code{- (id) .cxx_construct} and
2305 @code{- (void) .cxx_destruct} methods.
2306
2307 @item -fobjc-direct-dispatch
2308 @opindex fobjc-direct-dispatch
2309 Allow fast jumps to the message dispatcher.  On Darwin this is
2310 accomplished via the comm page.
2311
2312 @item -fobjc-exceptions
2313 @opindex fobjc-exceptions
2314 Enable syntactic support for structured exception handling in Objective-C,
2315 similar to what is offered by C++ and Java.  This option is
2316 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2317 earlier.
2318
2319 @smallexample
2320   @@try @{
2321     @dots{}
2322        @@throw expr;
2323     @dots{}
2324   @}
2325   @@catch (AnObjCClass *exc) @{
2326     @dots{}
2327       @@throw expr;
2328     @dots{}
2329       @@throw;
2330     @dots{}
2331   @}
2332   @@catch (AnotherClass *exc) @{
2333     @dots{}
2334   @}
2335   @@catch (id allOthers) @{
2336     @dots{}
2337   @}
2338   @@finally @{
2339     @dots{}
2340       @@throw expr;
2341     @dots{}
2342   @}
2343 @end smallexample
2344
2345 The @code{@@throw} statement may appear anywhere in an Objective-C or
2346 Objective-C++ program; when used inside of a @code{@@catch} block, the
2347 @code{@@throw} may appear without an argument (as shown above), in which case
2348 the object caught by the @code{@@catch} will be rethrown.
2349
2350 Note that only (pointers to) Objective-C objects may be thrown and
2351 caught using this scheme.  When an object is thrown, it will be caught
2352 by the nearest @code{@@catch} clause capable of handling objects of that type,
2353 analogously to how @code{catch} blocks work in C++ and Java.  A
2354 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2355 any and all Objective-C exceptions not caught by previous @code{@@catch}
2356 clauses (if any).
2357
2358 The @code{@@finally} clause, if present, will be executed upon exit from the
2359 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2360 regardless of whether any exceptions are thrown, caught or rethrown
2361 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2362 of the @code{finally} clause in Java.
2363
2364 There are several caveats to using the new exception mechanism:
2365
2366 @itemize @bullet
2367 @item
2368 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2369 idioms provided by the @code{NSException} class, the new
2370 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2371 systems, due to additional functionality needed in the (NeXT) Objective-C
2372 runtime.
2373
2374 @item
2375 As mentioned above, the new exceptions do not support handling
2376 types other than Objective-C objects.   Furthermore, when used from
2377 Objective-C++, the Objective-C exception model does not interoperate with C++
2378 exceptions at this time.  This means you cannot @code{@@throw} an exception
2379 from Objective-C and @code{catch} it in C++, or vice versa
2380 (i.e., @code{throw @dots{} @@catch}).
2381 @end itemize
2382
2383 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2384 blocks for thread-safe execution:
2385
2386 @smallexample
2387   @@synchronized (ObjCClass *guard) @{
2388     @dots{}
2389   @}
2390 @end smallexample
2391
2392 Upon entering the @code{@@synchronized} block, a thread of execution shall
2393 first check whether a lock has been placed on the corresponding @code{guard}
2394 object by another thread.  If it has, the current thread shall wait until
2395 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2396 the current thread will place its own lock on it, execute the code contained in
2397 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2398 making @code{guard} available to other threads).
2399
2400 Unlike Java, Objective-C does not allow for entire methods to be marked
2401 @code{@@synchronized}.  Note that throwing exceptions out of
2402 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2403 to be unlocked properly.
2404
2405 @item -fobjc-gc
2406 @opindex fobjc-gc
2407 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2408
2409 @item -freplace-objc-classes
2410 @opindex freplace-objc-classes
2411 Emit a special marker instructing @command{ld(1)} not to statically link in
2412 the resulting object file, and allow @command{dyld(1)} to load it in at
2413 run time instead.  This is used in conjunction with the Fix-and-Continue
2414 debugging mode, where the object file in question may be recompiled and
2415 dynamically reloaded in the course of program execution, without the need
2416 to restart the program itself.  Currently, Fix-and-Continue functionality
2417 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2418 and later.
2419
2420 @item -fzero-link
2421 @opindex fzero-link
2422 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2423 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2424 compile time) with static class references that get initialized at load time,
2425 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2426 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2427 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2428 for individual class implementations to be modified during program execution.
2429
2430 @item -gen-decls
2431 @opindex gen-decls
2432 Dump interface declarations for all classes seen in the source file to a
2433 file named @file{@var{sourcename}.decl}.
2434
2435 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
2436 @opindex Wassign-intercept
2437 @opindex Wno-assign-intercept
2438 Warn whenever an Objective-C assignment is being intercepted by the
2439 garbage collector.
2440
2441 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
2442 @opindex Wno-protocol
2443 @opindex Wprotocol
2444 If a class is declared to implement a protocol, a warning is issued for
2445 every method in the protocol that is not implemented by the class.  The
2446 default behavior is to issue a warning for every method not explicitly
2447 implemented in the class, even if a method implementation is inherited
2448 from the superclass.  If you use the @option{-Wno-protocol} option, then
2449 methods inherited from the superclass are considered to be implemented,
2450 and no warning is issued for them.
2451
2452 @item -Wselector @r{(Objective-C and Objective-C++ only)}
2453 @opindex Wselector
2454 @opindex Wno-selector
2455 Warn if multiple methods of different types for the same selector are
2456 found during compilation.  The check is performed on the list of methods
2457 in the final stage of compilation.  Additionally, a check is performed
2458 for each selector appearing in a @code{@@selector(@dots{})}
2459 expression, and a corresponding method for that selector has been found
2460 during compilation.  Because these checks scan the method table only at
2461 the end of compilation, these warnings are not produced if the final
2462 stage of compilation is not reached, for example because an error is
2463 found during compilation, or because the @option{-fsyntax-only} option is
2464 being used.
2465
2466 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
2467 @opindex Wstrict-selector-match
2468 @opindex Wno-strict-selector-match
2469 Warn if multiple methods with differing argument and/or return types are
2470 found for a given selector when attempting to send a message using this
2471 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2472 is off (which is the default behavior), the compiler will omit such warnings
2473 if any differences found are confined to types which share the same size
2474 and alignment.
2475
2476 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
2477 @opindex Wundeclared-selector
2478 @opindex Wno-undeclared-selector
2479 Warn if a @code{@@selector(@dots{})} expression referring to an
2480 undeclared selector is found.  A selector is considered undeclared if no
2481 method with that name has been declared before the
2482 @code{@@selector(@dots{})} expression, either explicitly in an
2483 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2484 an @code{@@implementation} section.  This option always performs its
2485 checks as soon as a @code{@@selector(@dots{})} expression is found,
2486 while @option{-Wselector} only performs its checks in the final stage of
2487 compilation.  This also enforces the coding style convention
2488 that methods and selectors must be declared before being used.
2489
2490 @item -print-objc-runtime-info
2491 @opindex print-objc-runtime-info
2492 Generate C header describing the largest structure that is passed by
2493 value, if any.
2494
2495 @end table
2496
2497 @node Language Independent Options
2498 @section Options to Control Diagnostic Messages Formatting
2499 @cindex options to control diagnostics formatting
2500 @cindex diagnostic messages
2501 @cindex message formatting
2502
2503 Traditionally, diagnostic messages have been formatted irrespective of
2504 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2505 below can be used to control the diagnostic messages formatting
2506 algorithm, e.g.@: how many characters per line, how often source location
2507 information should be reported.  Right now, only the C++ front end can
2508 honor these options.  However it is expected, in the near future, that
2509 the remaining front ends would be able to digest them correctly.
2510
2511 @table @gcctabopt
2512 @item -fmessage-length=@var{n}
2513 @opindex fmessage-length
2514 Try to format error messages so that they fit on lines of about @var{n}
2515 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2516 the front ends supported by GCC@.  If @var{n} is zero, then no
2517 line-wrapping will be done; each error message will appear on a single
2518 line.
2519
2520 @opindex fdiagnostics-show-location
2521 @item -fdiagnostics-show-location=once
2522 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2523 reporter to emit @emph{once} source location information; that is, in
2524 case the message is too long to fit on a single physical line and has to
2525 be wrapped, the source location won't be emitted (as prefix) again,
2526 over and over, in subsequent continuation lines.  This is the default
2527 behavior.
2528
2529 @item -fdiagnostics-show-location=every-line
2530 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2531 messages reporter to emit the same source location information (as
2532 prefix) for physical lines that result from the process of breaking
2533 a message which is too long to fit on a single line.
2534
2535 @item -fdiagnostics-show-option
2536 @opindex fdiagnostics-show-option
2537 This option instructs the diagnostic machinery to add text to each
2538 diagnostic emitted, which indicates which command line option directly
2539 controls that diagnostic, when such an option is known to the
2540 diagnostic machinery.
2541
2542 @item -Wcoverage-mismatch
2543 @opindex Wcoverage-mismatch
2544 Warn if feedback profiles do not match when using the
2545 @option{-fprofile-use} option.
2546 If a source file was changed between @option{-fprofile-gen} and
2547 @option{-fprofile-use}, the files with the profile feedback can fail
2548 to match the source file and GCC can not use the profile feedback
2549 information.  By default, GCC emits an error message in this case.
2550 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2551 error.  GCC does not use appropriate feedback profiles, so using this
2552 option can result in poorly optimized code.  This option is useful
2553 only in the case of very minor changes such as bug fixes to an
2554 existing code-base.
2555
2556 @end table
2557
2558 @node Warning Options
2559 @section Options to Request or Suppress Warnings
2560 @cindex options to control warnings
2561 @cindex warning messages
2562 @cindex messages, warning
2563 @cindex suppressing warnings
2564
2565 Warnings are diagnostic messages that report constructions which
2566 are not inherently erroneous but which are risky or suggest there
2567 may have been an error.
2568
2569 The following language-independent options do not enable specific
2570 warnings but control the kinds of diagnostics produced by GCC.
2571
2572 @table @gcctabopt
2573 @cindex syntax checking
2574 @item -fsyntax-only
2575 @opindex fsyntax-only
2576 Check the code for syntax errors, but don't do anything beyond that.
2577
2578 @item -w
2579 @opindex w
2580 Inhibit all warning messages.
2581
2582 @item -Werror
2583 @opindex Werror
2584 @opindex Wno-error
2585 Make all warnings into errors.
2586
2587 @item -Werror=
2588 @opindex Werror=
2589 @opindex Wno-error=
2590 Make the specified warning into an error.  The specifier for a warning
2591 is appended, for example @option{-Werror=switch} turns the warnings
2592 controlled by @option{-Wswitch} into errors.  This switch takes a
2593 negative form, to be used to negate @option{-Werror} for specific
2594 warnings, for example @option{-Wno-error=switch} makes
2595 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2596 is in effect.  You can use the @option{-fdiagnostics-show-option}
2597 option to have each controllable warning amended with the option which
2598 controls it, to determine what to use with this option.
2599
2600 Note that specifying @option{-Werror=}@var{foo} automatically implies
2601 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2602 imply anything.
2603
2604 @item -Wfatal-errors
2605 @opindex Wfatal-errors
2606 @opindex Wno-fatal-errors
2607 This option causes the compiler to abort compilation on the first error
2608 occurred rather than trying to keep going and printing further error
2609 messages.
2610
2611 @end table
2612
2613 You can request many specific warnings with options beginning
2614 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2615 implicit declarations.  Each of these specific warning options also
2616 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2617 example, @option{-Wno-implicit}.  This manual lists only one of the
2618 two forms, whichever is not the default.  For further,
2619 language-specific options also refer to @ref{C++ Dialect Options} and
2620 @ref{Objective-C and Objective-C++ Dialect Options}.
2621
2622 @table @gcctabopt
2623 @item -pedantic
2624 @opindex pedantic
2625 Issue all the warnings demanded by strict ISO C and ISO C++;
2626 reject all programs that use forbidden extensions, and some other
2627 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2628 version of the ISO C standard specified by any @option{-std} option used.
2629
2630 Valid ISO C and ISO C++ programs should compile properly with or without
2631 this option (though a rare few will require @option{-ansi} or a
2632 @option{-std} option specifying the required version of ISO C)@.  However,
2633 without this option, certain GNU extensions and traditional C and C++
2634 features are supported as well.  With this option, they are rejected.
2635
2636 @option{-pedantic} does not cause warning messages for use of the
2637 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2638 warnings are also disabled in the expression that follows
2639 @code{__extension__}.  However, only system header files should use
2640 these escape routes; application programs should avoid them.
2641 @xref{Alternate Keywords}.
2642
2643 Some users try to use @option{-pedantic} to check programs for strict ISO
2644 C conformance.  They soon find that it does not do quite what they want:
2645 it finds some non-ISO practices, but not all---only those for which
2646 ISO C @emph{requires} a diagnostic, and some others for which
2647 diagnostics have been added.
2648
2649 A feature to report any failure to conform to ISO C might be useful in
2650 some instances, but would require considerable additional work and would
2651 be quite different from @option{-pedantic}.  We don't have plans to
2652 support such a feature in the near future.
2653
2654 Where the standard specified with @option{-std} represents a GNU
2655 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2656 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2657 extended dialect is based.  Warnings from @option{-pedantic} are given
2658 where they are required by the base standard.  (It would not make sense
2659 for such warnings to be given only for features not in the specified GNU
2660 C dialect, since by definition the GNU dialects of C include all
2661 features the compiler supports with the given option, and there would be
2662 nothing to warn about.)
2663
2664 @item -pedantic-errors
2665 @opindex pedantic-errors
2666 Like @option{-pedantic}, except that errors are produced rather than
2667 warnings.
2668
2669 @item -Wall
2670 @opindex Wall
2671 @opindex Wno-all
2672 This enables all the warnings about constructions that some users
2673 consider questionable, and that are easy to avoid (or modify to
2674 prevent the warning), even in conjunction with macros.  This also
2675 enables some language-specific warnings described in @ref{C++ Dialect
2676 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2677
2678 @option{-Wall} turns on the following warning flags:
2679
2680 @gccoptlist{-Waddress   @gol
2681 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2682 -Wc++0x-compat  @gol
2683 -Wchar-subscripts  @gol
2684 -Wimplicit-int  @gol
2685 -Wimplicit-function-declaration  @gol
2686 -Wcomment  @gol
2687 -Wformat   @gol
2688 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2689 -Wmissing-braces  @gol
2690 -Wnonnull  @gol
2691 -Wparentheses  @gol
2692 -Wpointer-sign  @gol
2693 -Wreorder   @gol
2694 -Wreturn-type  @gol
2695 -Wsequence-point  @gol
2696 -Wsign-compare @r{(only in C++)}  @gol
2697 -Wstrict-aliasing  @gol
2698 -Wstrict-overflow=1  @gol
2699 -Wswitch  @gol
2700 -Wtrigraphs  @gol
2701 -Wuninitialized  @gol
2702 -Wunknown-pragmas  @gol
2703 -Wunused-function  @gol
2704 -Wunused-label     @gol
2705 -Wunused-value     @gol
2706 -Wunused-variable  @gol
2707 -Wvolatile-register-var @gol
2708 }
2709
2710 Note that some warning flags are not implied by @option{-Wall}.  Some of
2711 them warn about constructions that users generally do not consider
2712 questionable, but which occasionally you might wish to check for;
2713 others warn about constructions that are necessary or hard to avoid in
2714 some cases, and there is no simple way to modify the code to suppress
2715 the warning. Some of them are enabled by @option{-Wextra} but many of
2716 them must be enabled individually.
2717
2718 @item -Wextra
2719 @opindex W
2720 @opindex Wextra
2721 @opindex Wno-extra
2722 This enables some extra warning flags that are not enabled by
2723 @option{-Wall}. (This option used to be called @option{-W}.  The older
2724 name is still supported, but the newer name is more descriptive.)
2725
2726 @gccoptlist{-Wclobbered  @gol
2727 -Wempty-body  @gol
2728 -Wignored-qualifiers @gol
2729 -Wmissing-field-initializers  @gol
2730 -Wmissing-parameter-type @r{(C only)}  @gol
2731 -Wold-style-declaration @r{(C only)}  @gol
2732 -Woverride-init  @gol
2733 -Wsign-compare  @gol
2734 -Wtype-limits  @gol
2735 -Wuninitialized  @gol
2736 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2737 }
2738
2739 The option @option{-Wextra} also prints warning messages for the
2740 following cases:
2741
2742 @itemize @bullet
2743
2744 @item
2745 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2746 @samp{>}, or @samp{>=}.
2747
2748 @item 
2749 (C++ only) An enumerator and a non-enumerator both appear in a
2750 conditional expression.
2751
2752 @item 
2753 (C++ only) Ambiguous virtual bases.
2754
2755 @item 
2756 (C++ only) Subscripting an array which has been declared @samp{register}.
2757
2758 @item 
2759 (C++ only) Taking the address of a variable which has been declared
2760 @samp{register}.
2761
2762 @item 
2763 (C++ only) A base class is not initialized in a derived class' copy
2764 constructor.
2765
2766 @end itemize
2767
2768 @item -Wchar-subscripts
2769 @opindex Wchar-subscripts
2770 @opindex Wno-char-subscripts
2771 Warn if an array subscript has type @code{char}.  This is a common cause
2772 of error, as programmers often forget that this type is signed on some
2773 machines.
2774 This warning is enabled by @option{-Wall}.
2775
2776 @item -Wcomment
2777 @opindex Wcomment
2778 @opindex Wno-comment
2779 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2780 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2781 This warning is enabled by @option{-Wall}.
2782
2783 @item -Wformat
2784 @opindex Wformat
2785 @opindex Wno-format
2786 @opindex ffreestanding
2787 @opindex fno-builtin
2788 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2789 the arguments supplied have types appropriate to the format string
2790 specified, and that the conversions specified in the format string make
2791 sense.  This includes standard functions, and others specified by format
2792 attributes (@pxref{Function Attributes}), in the @code{printf},
2793 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2794 not in the C standard) families (or other target-specific families).
2795 Which functions are checked without format attributes having been
2796 specified depends on the standard version selected, and such checks of
2797 functions without the attribute specified are disabled by
2798 @option{-ffreestanding} or @option{-fno-builtin}.
2799
2800 The formats are checked against the format features supported by GNU
2801 libc version 2.2.  These include all ISO C90 and C99 features, as well
2802 as features from the Single Unix Specification and some BSD and GNU
2803 extensions.  Other library implementations may not support all these
2804 features; GCC does not support warning about features that go beyond a
2805 particular library's limitations.  However, if @option{-pedantic} is used
2806 with @option{-Wformat}, warnings will be given about format features not
2807 in the selected standard version (but not for @code{strfmon} formats,
2808 since those are not in any version of the C standard).  @xref{C Dialect
2809 Options,,Options Controlling C Dialect}.
2810
2811 Since @option{-Wformat} also checks for null format arguments for
2812 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2813
2814 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2815 aspects of format checking, the options @option{-Wformat-y2k},
2816 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2817 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2818 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2819
2820 @item -Wformat-y2k
2821 @opindex Wformat-y2k
2822 @opindex Wno-format-y2k
2823 If @option{-Wformat} is specified, also warn about @code{strftime}
2824 formats which may yield only a two-digit year.
2825
2826 @item -Wno-format-contains-nul
2827 @opindex Wno-format-contains-nul
2828 @opindex Wformat-contains-nul
2829 If @option{-Wformat} is specified, do not warn about format strings that
2830 contain NUL bytes.
2831
2832 @item -Wno-format-extra-args
2833 @opindex Wno-format-extra-args
2834 @opindex Wformat-extra-args
2835 If @option{-Wformat} is specified, do not warn about excess arguments to a
2836 @code{printf} or @code{scanf} format function.  The C standard specifies
2837 that such arguments are ignored.
2838
2839 Where the unused arguments lie between used arguments that are
2840 specified with @samp{$} operand number specifications, normally
2841 warnings are still given, since the implementation could not know what
2842 type to pass to @code{va_arg} to skip the unused arguments.  However,
2843 in the case of @code{scanf} formats, this option will suppress the
2844 warning if the unused arguments are all pointers, since the Single
2845 Unix Specification says that such unused arguments are allowed.
2846
2847 @item -Wno-format-zero-length @r{(C and Objective-C only)}
2848 @opindex Wno-format-zero-length
2849 @opindex Wformat-zero-length
2850 If @option{-Wformat} is specified, do not warn about zero-length formats.
2851 The C standard specifies that zero-length formats are allowed.
2852
2853 @item -Wformat-nonliteral
2854 @opindex Wformat-nonliteral
2855 @opindex Wno-format-nonliteral
2856 If @option{-Wformat} is specified, also warn if the format string is not a
2857 string literal and so cannot be checked, unless the format function
2858 takes its format arguments as a @code{va_list}.
2859
2860 @item -Wformat-security
2861 @opindex Wformat-security
2862 @opindex Wno-format-security
2863 If @option{-Wformat} is specified, also warn about uses of format
2864 functions that represent possible security problems.  At present, this
2865 warns about calls to @code{printf} and @code{scanf} functions where the
2866 format string is not a string literal and there are no format arguments,
2867 as in @code{printf (foo);}.  This may be a security hole if the format
2868 string came from untrusted input and contains @samp{%n}.  (This is
2869 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2870 in future warnings may be added to @option{-Wformat-security} that are not
2871 included in @option{-Wformat-nonliteral}.)
2872
2873 @item -Wformat=2
2874 @opindex Wformat=2
2875 @opindex Wno-format=2
2876 Enable @option{-Wformat} plus format checks not included in
2877 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2878 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2879
2880 @item -Wnonnull @r{(C and Objective-C only)}
2881 @opindex Wnonnull
2882 @opindex Wno-nonnull
2883 Warn about passing a null pointer for arguments marked as
2884 requiring a non-null value by the @code{nonnull} function attribute.
2885
2886 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2887 can be disabled with the @option{-Wno-nonnull} option.
2888
2889 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2890 @opindex Winit-self
2891 @opindex Wno-init-self
2892 Warn about uninitialized variables which are initialized with themselves.
2893 Note this option can only be used with the @option{-Wuninitialized} option.
2894
2895 For example, GCC will warn about @code{i} being uninitialized in the
2896 following snippet only when @option{-Winit-self} has been specified:
2897 @smallexample
2898 @group
2899 int f()
2900 @{
2901   int i = i;
2902   return i;
2903 @}
2904 @end group
2905 @end smallexample
2906
2907 @item -Wimplicit-int @r{(C and Objective-C only)}
2908 @opindex Wimplicit-int
2909 @opindex Wno-implicit-int
2910 Warn when a declaration does not specify a type.
2911 This warning is enabled by @option{-Wall}.
2912
2913 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
2914 @opindex Wimplicit-function-declaration
2915 @opindex Wno-implicit-function-declaration
2916 Give a warning whenever a function is used before being declared. In
2917 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2918 enabled by default and it is made into an error by
2919 @option{-pedantic-errors}. This warning is also enabled by
2920 @option{-Wall}.
2921
2922 @item -Wimplicit
2923 @opindex Wimplicit
2924 @opindex Wno-implicit
2925 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2926 This warning is enabled by @option{-Wall}.
2927
2928 @item -Wignored-qualifiers @r{(C and C++ only)}
2929 @opindex Wignored-qualifiers
2930 @opindex Wno-ignored-qualifiers
2931 Warn if the return type of a function has a type qualifier
2932 such as @code{const}.  For ISO C such a type qualifier has no effect,
2933 since the value returned by a function is not an lvalue.
2934 For C++, the warning is only emitted for scalar types or @code{void}.
2935 ISO C prohibits qualified @code{void} return types on function
2936 definitions, so such return types always receive a warning
2937 even without this option.
2938
2939 This warning is also enabled by @option{-Wextra}.
2940
2941 @item -Wmain
2942 @opindex Wmain
2943 @opindex Wno-main
2944 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
2945 a function with external linkage, returning int, taking either zero
2946 arguments, two, or three arguments of appropriate types.  This warning
2947 is enabled by default in C++ and is enabled by either @option{-Wall}
2948 or @option{-pedantic}.
2949
2950 @item -Wmissing-braces
2951 @opindex Wmissing-braces
2952 @opindex Wno-missing-braces
2953 Warn if an aggregate or union initializer is not fully bracketed.  In
2954 the following example, the initializer for @samp{a} is not fully
2955 bracketed, but that for @samp{b} is fully bracketed.
2956
2957 @smallexample
2958 int a[2][2] = @{ 0, 1, 2, 3 @};
2959 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2960 @end smallexample
2961
2962 This warning is enabled by @option{-Wall}.
2963
2964 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2965 @opindex Wmissing-include-dirs
2966 @opindex Wno-missing-include-dirs
2967 Warn if a user-supplied include directory does not exist.
2968
2969 @item -Wparentheses
2970 @opindex Wparentheses
2971 @opindex Wno-parentheses
2972 Warn if parentheses are omitted in certain contexts, such
2973 as when there is an assignment in a context where a truth value
2974 is expected, or when operators are nested whose precedence people
2975 often get confused about.
2976
2977 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2978 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2979 interpretation from that of ordinary mathematical notation.
2980
2981 Also warn about constructions where there may be confusion to which
2982 @code{if} statement an @code{else} branch belongs.  Here is an example of
2983 such a case:
2984
2985 @smallexample
2986 @group
2987 @{
2988   if (a)
2989     if (b)
2990       foo ();
2991   else
2992     bar ();
2993 @}
2994 @end group
2995 @end smallexample
2996
2997 In C/C++, every @code{else} branch belongs to the innermost possible
2998 @code{if} statement, which in this example is @code{if (b)}.  This is
2999 often not what the programmer expected, as illustrated in the above
3000 example by indentation the programmer chose.  When there is the
3001 potential for this confusion, GCC will issue a warning when this flag
3002 is specified.  To eliminate the warning, add explicit braces around
3003 the innermost @code{if} statement so there is no way the @code{else}
3004 could belong to the enclosing @code{if}.  The resulting code would
3005 look like this:
3006
3007 @smallexample
3008 @group
3009 @{
3010   if (a)
3011     @{
3012       if (b)
3013         foo ();
3014       else
3015         bar ();
3016     @}
3017 @}
3018 @end group
3019 @end smallexample
3020
3021 This warning is enabled by @option{-Wall}.
3022
3023 @item -Wsequence-point
3024 @opindex Wsequence-point
3025 @opindex Wno-sequence-point
3026 Warn about code that may have undefined semantics because of violations
3027 of sequence point rules in the C and C++ standards.
3028
3029 The C and C++ standards defines the order in which expressions in a C/C++
3030 program are evaluated in terms of @dfn{sequence points}, which represent
3031 a partial ordering between the execution of parts of the program: those
3032 executed before the sequence point, and those executed after it.  These
3033 occur after the evaluation of a full expression (one which is not part
3034 of a larger expression), after the evaluation of the first operand of a
3035 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3036 function is called (but after the evaluation of its arguments and the
3037 expression denoting the called function), and in certain other places.
3038 Other than as expressed by the sequence point rules, the order of
3039 evaluation of subexpressions of an expression is not specified.  All
3040 these rules describe only a partial order rather than a total order,
3041 since, for example, if two functions are called within one expression
3042 with no sequence point between them, the order in which the functions
3043 are called is not specified.  However, the standards committee have
3044 ruled that function calls do not overlap.
3045
3046 It is not specified when between sequence points modifications to the
3047 values of objects take effect.  Programs whose behavior depends on this
3048 have undefined behavior; the C and C++ standards specify that ``Between
3049 the previous and next sequence point an object shall have its stored
3050 value modified at most once by the evaluation of an expression.
3051 Furthermore, the prior value shall be read only to determine the value
3052 to be stored.''.  If a program breaks these rules, the results on any
3053 particular implementation are entirely unpredictable.
3054
3055 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3056 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3057 diagnosed by this option, and it may give an occasional false positive
3058 result, but in general it has been found fairly effective at detecting
3059 this sort of problem in programs.
3060
3061 The standard is worded confusingly, therefore there is some debate
3062 over the precise meaning of the sequence point rules in subtle cases.
3063 Links to discussions of the problem, including proposed formal
3064 definitions, may be found on the GCC readings page, at
3065 @w{@uref{http://gcc.gnu.org/readings.html}}.
3066
3067 This warning is enabled by @option{-Wall} for C and C++.
3068
3069 @item -Wreturn-type
3070 @opindex Wreturn-type
3071 @opindex Wno-return-type
3072 Warn whenever a function is defined with a return-type that defaults
3073 to @code{int}.  Also warn about any @code{return} statement with no
3074 return-value in a function whose return-type is not @code{void}
3075 (falling off the end of the function body is considered returning
3076 without a value), and about a @code{return} statement with a
3077 expression in a function whose return-type is @code{void}.
3078
3079 For C++, a function without return type always produces a diagnostic
3080 message, even when @option{-Wno-return-type} is specified.  The only
3081 exceptions are @samp{main} and functions defined in system headers.
3082
3083 This warning is enabled by @option{-Wall}.
3084
3085 @item -Wswitch
3086 @opindex Wswitch
3087 @opindex Wno-switch
3088 Warn whenever a @code{switch} statement has an index of enumerated type
3089 and lacks a @code{case} for one or more of the named codes of that
3090 enumeration.  (The presence of a @code{default} label prevents this
3091 warning.)  @code{case} labels outside the enumeration range also
3092 provoke warnings when this option is used.
3093 This warning is enabled by @option{-Wall}.
3094
3095 @item -Wswitch-default
3096 @opindex Wswitch-default
3097 @opindex Wno-switch-default
3098 Warn whenever a @code{switch} statement does not have a @code{default}
3099 case.
3100
3101 @item -Wswitch-enum
3102 @opindex Wswitch-enum
3103 @opindex Wno-switch-enum
3104 Warn whenever a @code{switch} statement has an index of enumerated type
3105 and lacks a @code{case} for one or more of the named codes of that
3106 enumeration.  @code{case} labels outside the enumeration range also
3107 provoke warnings when this option is used.
3108
3109 @item -Wtrigraphs
3110 @opindex Wtrigraphs
3111 @opindex Wno-trigraphs
3112 Warn if any trigraphs are encountered that might change the meaning of
3113 the program (trigraphs within comments are not warned about).
3114 This warning is enabled by @option{-Wall}.
3115
3116 @item -Wunused-function
3117 @opindex Wunused-function
3118 @opindex Wno-unused-function
3119 Warn whenever a static function is declared but not defined or a
3120 non-inline static function is unused.
3121 This warning is enabled by @option{-Wall}.
3122
3123 @item -Wunused-label
3124 @opindex Wunused-label
3125 @opindex Wno-unused-label
3126 Warn whenever a label is declared but not used.
3127 This warning is enabled by @option{-Wall}.
3128
3129 To suppress this warning use the @samp{unused} attribute
3130 (@pxref{Variable Attributes}).
3131
3132 @item -Wunused-parameter
3133 @opindex Wunused-parameter
3134 @opindex Wno-unused-parameter
3135 Warn whenever a function parameter is unused aside from its declaration.
3136
3137 To suppress this warning use the @samp{unused} attribute
3138 (@pxref{Variable Attributes}).
3139
3140 @item -Wunused-variable
3141 @opindex Wunused-variable
3142 @opindex Wno-unused-variable
3143 Warn whenever a local variable or non-constant static variable is unused
3144 aside from its declaration.
3145 This warning is enabled by @option{-Wall}.
3146
3147 To suppress this warning use the @samp{unused} attribute
3148 (@pxref{Variable Attributes}).
3149
3150 @item -Wunused-value
3151 @opindex Wunused-value
3152 @opindex Wno-unused-value
3153 Warn whenever a statement computes a result that is explicitly not
3154 used. To suppress this warning cast the unused expression to
3155 @samp{void}. This includes an expression-statement or the left-hand
3156 side of a comma expression that contains no side effects. For example,
3157 an expression such as @samp{x[i,j]} will cause a warning, while
3158 @samp{x[(void)i,j]} will not.
3159
3160 This warning is enabled by @option{-Wall}.
3161
3162 @item -Wunused
3163 @opindex Wunused
3164 @opindex Wno-unused
3165 All the above @option{-Wunused} options combined.
3166
3167 In order to get a warning about an unused function parameter, you must
3168 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3169 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3170
3171 @item -Wuninitialized
3172 @opindex Wuninitialized
3173 @opindex Wno-uninitialized
3174 Warn if an automatic variable is used without first being initialized
3175 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3176 warn if a non-static reference or non-static @samp{const} member
3177 appears in a class without constructors.
3178
3179 If you want to warn about code which uses the uninitialized value of the
3180 variable in its own initializer, use the @option{-Winit-self} option.
3181
3182 These warnings occur for individual uninitialized or clobbered
3183 elements of structure, union or array variables as well as for
3184 variables which are uninitialized or clobbered as a whole.  They do
3185 not occur for variables or elements declared @code{volatile}.  Because
3186 these warnings depend on optimization, the exact variables or elements
3187 for which there are warnings will depend on the precise optimization
3188 options and version of GCC used.
3189
3190 Note that there may be no warning about a variable that is used only
3191 to compute a value that itself is never used, because such
3192 computations may be deleted by data flow analysis before the warnings
3193 are printed.
3194
3195 These warnings are made optional because GCC is not smart
3196 enough to see all the reasons why the code might be correct
3197 despite appearing to have an error.  Here is one example of how
3198 this can happen:
3199
3200 @smallexample
3201 @group
3202 @{
3203   int x;
3204   switch (y)
3205     @{
3206     case 1: x = 1;
3207       break;
3208     case 2: x = 4;
3209       break;
3210     case 3: x = 5;
3211     @}
3212   foo (x);
3213 @}
3214 @end group
3215 @end smallexample
3216
3217 @noindent
3218 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3219 always initialized, but GCC doesn't know this.  Here is
3220 another common case:
3221
3222 @smallexample
3223 @{
3224   int save_y;
3225   if (change_y) save_y = y, y = new_y;
3226   @dots{}
3227   if (change_y) y = save_y;
3228 @}
3229 @end smallexample
3230
3231 @noindent
3232 This has no bug because @code{save_y} is used only if it is set.
3233
3234 @cindex @code{longjmp} warnings
3235 This option also warns when a non-volatile automatic variable might be
3236 changed by a call to @code{longjmp}.  These warnings as well are possible
3237 only in optimizing compilation.
3238
3239 The compiler sees only the calls to @code{setjmp}.  It cannot know
3240 where @code{longjmp} will be called; in fact, a signal handler could
3241 call it at any point in the code.  As a result, you may get a warning
3242 even when there is in fact no problem because @code{longjmp} cannot
3243 in fact be called at the place which would cause a problem.
3244
3245 Some spurious warnings can be avoided if you declare all the functions
3246 you use that never return as @code{noreturn}.  @xref{Function
3247 Attributes}.
3248
3249 This warning is enabled by @option{-Wall} or @option{-Wextra}.
3250
3251 @item -Wunknown-pragmas
3252 @opindex Wunknown-pragmas
3253 @opindex Wno-unknown-pragmas
3254 @cindex warning for unknown pragmas
3255 @cindex unknown pragmas, warning
3256 @cindex pragmas, warning of unknown
3257 Warn when a #pragma directive is encountered which is not understood by
3258 GCC@.  If this command line option is used, warnings will even be issued
3259 for unknown pragmas in system header files.  This is not the case if
3260 the warnings were only enabled by the @option{-Wall} command line option.
3261
3262 @item -Wno-pragmas
3263 @opindex Wno-pragmas
3264 @opindex Wpragmas
3265 Do not warn about misuses of pragmas, such as incorrect parameters,
3266 invalid syntax, or conflicts between pragmas.  See also
3267 @samp{-Wunknown-pragmas}.
3268
3269 @item -Wstrict-aliasing
3270 @opindex Wstrict-aliasing
3271 @opindex Wno-strict-aliasing
3272 This option is only active when @option{-fstrict-aliasing} is active.
3273 It warns about code which might break the strict aliasing rules that the
3274 compiler is using for optimization.  The warning does not catch all
3275 cases, but does attempt to catch the more common pitfalls.  It is
3276 included in @option{-Wall}.
3277 It is equivalent to @option{-Wstrict-aliasing=3}
3278
3279 @item -Wstrict-aliasing=n
3280 @opindex Wstrict-aliasing=n
3281 @opindex Wno-strict-aliasing=n
3282 This option is only active when @option{-fstrict-aliasing} is active.
3283 It warns about code which might break the strict aliasing rules that the
3284 compiler is using for optimization.
3285 Higher levels correspond to higher accuracy (fewer false positives).
3286 Higher levels also correspond to more effort, similar to the way -O works.
3287 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3288 with n=3.
3289
3290 Level 1: Most aggressive, quick, least accurate.
3291 Possibly useful when higher levels
3292 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3293 false negatives.  However, it has many false positives.
3294 Warns for all pointer conversions between possibly incompatible types, 
3295 even if never dereferenced.  Runs in the frontend only.
3296
3297 Level 2: Aggressive, quick, not too precise.
3298 May still have many false positives (not as many as level 1 though),
3299 and few false negatives (but possibly more than level 1).
3300 Unlike level 1, it only warns when an address is taken.  Warns about
3301 incomplete types.  Runs in the frontend only.
3302
3303 Level 3 (default for @option{-Wstrict-aliasing}): 
3304 Should have very few false positives and few false 
3305 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3306 Takes care of the common punn+dereference pattern in the frontend:
3307 @code{*(int*)&some_float}.
3308 If optimization is enabled, it also runs in the backend, where it deals 
3309 with multiple statement cases using flow-sensitive points-to information.
3310 Only warns when the converted pointer is dereferenced.
3311 Does not warn about incomplete types.
3312
3313 @item -Wstrict-overflow
3314 @itemx -Wstrict-overflow=@var{n}
3315 @opindex Wstrict-overflow
3316 @opindex Wno-strict-overflow
3317 This option is only active when @option{-fstrict-overflow} is active.
3318 It warns about cases where the compiler optimizes based on the
3319 assumption that signed overflow does not occur.  Note that it does not
3320 warn about all cases where the code might overflow: it only warns
3321 about cases where the compiler implements some optimization.  Thus
3322 this warning depends on the optimization level.
3323
3324 An optimization which assumes that signed overflow does not occur is
3325 perfectly safe if the values of the variables involved are such that
3326 overflow never does, in fact, occur.  Therefore this warning can
3327 easily give a false positive: a warning about code which is not
3328 actually a problem.  To help focus on important issues, several
3329 warning levels are defined.  No warnings are issued for the use of
3330 undefined signed overflow when estimating how many iterations a loop
3331 will require, in particular when determining whether a loop will be
3332 executed at all.
3333
3334 @table @gcctabopt
3335 @item -Wstrict-overflow=1
3336 Warn about cases which are both questionable and easy to avoid.  For
3337 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3338 compiler will simplify this to @code{1}.  This level of
3339 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3340 are not, and must be explicitly requested.
3341
3342 @item -Wstrict-overflow=2
3343 Also warn about other cases where a comparison is simplified to a
3344 constant.  For example: @code{abs (x) >= 0}.  This can only be
3345 simplified when @option{-fstrict-overflow} is in effect, because
3346 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3347 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3348 @option{-Wstrict-overflow=2}.
3349
3350 @item -Wstrict-overflow=3
3351 Also warn about other cases where a comparison is simplified.  For
3352 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3353
3354 @item -Wstrict-overflow=4
3355 Also warn about other simplifications not covered by the above cases.
3356 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3357
3358 @item -Wstrict-overflow=5
3359 Also warn about cases where the compiler reduces the magnitude of a
3360 constant involved in a comparison.  For example: @code{x + 2 > y} will
3361 be simplified to @code{x + 1 >= y}.  This is reported only at the
3362 highest warning level because this simplification applies to many
3363 comparisons, so this warning level will give a very large number of
3364 false positives.
3365 @end table
3366
3367 @item -Warray-bounds
3368 @opindex Wno-array-bounds
3369 @opindex Warray-bounds
3370 This option is only active when @option{-ftree-vrp} is active
3371 (default for -O2 and above). It warns about subscripts to arrays
3372 that are always out of bounds. This warning is enabled by @option{-Wall}.
3373
3374 @item -Wno-div-by-zero
3375 @opindex Wno-div-by-zero
3376 @opindex Wdiv-by-zero
3377 Do not warn about compile-time integer division by zero.  Floating point
3378 division by zero is not warned about, as it can be a legitimate way of
3379 obtaining infinities and NaNs.
3380
3381 @item -Wsystem-headers
3382 @opindex Wsystem-headers
3383 @opindex Wno-system-headers
3384 @cindex warnings from system headers
3385 @cindex system headers, warnings from
3386 Print warning messages for constructs found in system header files.
3387 Warnings from system headers are normally suppressed, on the assumption
3388 that they usually do not indicate real problems and would only make the
3389 compiler output harder to read.  Using this command line option tells
3390 GCC to emit warnings from system headers as if they occurred in user
3391 code.  However, note that using @option{-Wall} in conjunction with this
3392 option will @emph{not} warn about unknown pragmas in system
3393 headers---for that, @option{-Wunknown-pragmas} must also be used.
3394
3395 @item -Wfloat-equal
3396 @opindex Wfloat-equal
3397 @opindex Wno-float-equal
3398 Warn if floating point values are used in equality comparisons.
3399
3400 The idea behind this is that sometimes it is convenient (for the
3401 programmer) to consider floating-point values as approximations to
3402 infinitely precise real numbers.  If you are doing this, then you need
3403 to compute (by analyzing the code, or in some other way) the maximum or
3404 likely maximum error that the computation introduces, and allow for it
3405 when performing comparisons (and when producing output, but that's a
3406 different problem).  In particular, instead of testing for equality, you
3407 would check to see whether the two values have ranges that overlap; and
3408 this is done with the relational operators, so equality comparisons are
3409 probably mistaken.
3410
3411 @item -Wtraditional @r{(C and Objective-C only)}
3412 @opindex Wtraditional
3413 @opindex Wno-traditional
3414 Warn about certain constructs that behave differently in traditional and
3415 ISO C@.  Also warn about ISO C constructs that have no traditional C
3416 equivalent, and/or problematic constructs which should be avoided.
3417
3418 @itemize @bullet
3419 @item
3420 Macro parameters that appear within string literals in the macro body.
3421 In traditional C macro replacement takes place within string literals,
3422 but does not in ISO C@.
3423
3424 @item
3425 In traditional C, some preprocessor directives did not exist.
3426 Traditional preprocessors would only consider a line to be a directive
3427 if the @samp{#} appeared in column 1 on the line.  Therefore
3428 @option{-Wtraditional} warns about directives that traditional C
3429 understands but would ignore because the @samp{#} does not appear as the
3430 first character on the line.  It also suggests you hide directives like
3431 @samp{#pragma} not understood by traditional C by indenting them.  Some
3432 traditional implementations would not recognize @samp{#elif}, so it
3433 suggests avoiding it altogether.
3434
3435 @item
3436 A function-like macro that appears without arguments.
3437
3438 @item
3439 The unary plus operator.
3440
3441 @item
3442 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3443 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3444 constants.)  Note, these suffixes appear in macros defined in the system
3445 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3446 Use of these macros in user code might normally lead to spurious
3447 warnings, however GCC's integrated preprocessor has enough context to
3448 avoid warning in these cases.
3449
3450 @item
3451 A function declared external in one block and then used after the end of
3452 the block.
3453
3454 @item
3455 A @code{switch} statement has an operand of type @code{long}.
3456
3457 @item
3458 A non-@code{static} function declaration follows a @code{static} one.
3459 This construct is not accepted by some traditional C compilers.
3460
3461 @item
3462 The ISO type of an integer constant has a different width or
3463 signedness from its traditional type.  This warning is only issued if
3464 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3465 typically represent bit patterns, are not warned about.
3466
3467 @item
3468 Usage of ISO string concatenation is detected.
3469
3470 @item
3471 Initialization of automatic aggregates.
3472
3473 @item
3474 Identifier conflicts with labels.  Traditional C lacks a separate
3475 namespace for labels.
3476
3477 @item
3478 Initialization of unions.  If the initializer is zero, the warning is
3479 omitted.  This is done under the assumption that the zero initializer in
3480 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3481 initializer warnings and relies on default initialization to zero in the
3482 traditional C case.
3483
3484 @item
3485 Conversions by prototypes between fixed/floating point values and vice
3486 versa.  The absence of these prototypes when compiling with traditional
3487 C would cause serious problems.  This is a subset of the possible
3488 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3489
3490 @item
3491 Use of ISO C style function definitions.  This warning intentionally is
3492 @emph{not} issued for prototype declarations or variadic functions
3493 because these ISO C features will appear in your code when using
3494 libiberty's traditional C compatibility macros, @code{PARAMS} and
3495 @code{VPARAMS}.  This warning is also bypassed for nested functions
3496 because that feature is already a GCC extension and thus not relevant to
3497 traditional C compatibility.
3498 @end itemize
3499
3500 @item -Wtraditional-conversion @r{(C and Objective-C only)}
3501 @opindex Wtraditional-conversion
3502 @opindex Wno-traditional-conversion
3503 Warn if a prototype causes a type conversion that is different from what
3504 would happen to the same argument in the absence of a prototype.  This
3505 includes conversions of fixed point to floating and vice versa, and
3506 conversions changing the width or signedness of a fixed point argument
3507 except when the same as the default promotion.
3508
3509 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
3510 @opindex Wdeclaration-after-statement
3511 @opindex Wno-declaration-after-statement
3512 Warn when a declaration is found after a statement in a block.  This
3513 construct, known from C++, was introduced with ISO C99 and is by default
3514 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3515 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3516
3517 @item -Wundef
3518 @opindex Wundef
3519 @opindex Wno-undef
3520 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3521
3522 @item -Wno-endif-labels
3523 @opindex Wno-endif-labels
3524 @opindex Wendif-labels
3525 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3526
3527 @item -Wshadow
3528 @opindex Wshadow
3529 @opindex Wno-shadow
3530 Warn whenever a local variable shadows another local variable, parameter or
3531 global variable or whenever a built-in function is shadowed.
3532
3533 @item -Wlarger-than=@var{len}
3534 @opindex Wlarger-than=@var{len}
3535 @opindex Wlarger-than-@var{len}
3536 Warn whenever an object of larger than @var{len} bytes is defined.
3537
3538 @item -Wframe-larger-than=@var{len}
3539 @opindex Wframe-larger-than
3540 Warn if the size of a function frame is larger than @var{len} bytes.
3541 The computation done to determine the stack frame size is approximate
3542 and not conservative.
3543 The actual requirements may be somewhat greater than @var{len}
3544 even if you do not get a warning.  In addition, any space allocated
3545 via @code{alloca}, variable-length arrays, or related constructs
3546 is not included by the compiler when determining
3547 whether or not to issue a warning.
3548
3549 @item -Wunsafe-loop-optimizations
3550 @opindex Wunsafe-loop-optimizations
3551 @opindex Wno-unsafe-loop-optimizations
3552 Warn if the loop cannot be optimized because the compiler could not
3553 assume anything on the bounds of the loop indices.  With
3554 @option{-funsafe-loop-optimizations} warn if the compiler made
3555 such assumptions.
3556
3557 @item -Wpointer-arith
3558 @opindex Wpointer-arith
3559 @opindex Wno-pointer-arith
3560 Warn about anything that depends on the ``size of'' a function type or
3561 of @code{void}.  GNU C assigns these types a size of 1, for
3562 convenience in calculations with @code{void *} pointers and pointers
3563 to functions.  In C++, warn also when an arithmetic operation involves
3564 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3565
3566 @item -Wtype-limits
3567 @opindex Wtype-limits
3568 @opindex Wno-type-limits
3569 Warn if a comparison is always true or always false due to the limited
3570 range of the data type, but do not warn for constant expressions.  For
3571 example, warn if an unsigned variable is compared against zero with
3572 @samp{<} or @samp{>=}.  This warning is also enabled by
3573 @option{-Wextra}.
3574
3575 @item -Wbad-function-cast @r{(C and Objective-C only)}
3576 @opindex Wbad-function-cast
3577 @opindex Wno-bad-function-cast
3578 Warn whenever a function call is cast to a non-matching type.
3579 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3580
3581 @item -Wc++-compat @r{(C and Objective-C only)}
3582 Warn about ISO C constructs that are outside of the common subset of
3583 ISO C and ISO C++, e.g.@: request for implicit conversion from
3584 @code{void *} to a pointer to non-@code{void} type.
3585
3586 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3587 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3588 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3589 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3590
3591 @item -Wcast-qual
3592 @opindex Wcast-qual
3593 @opindex Wno-cast-qual
3594 Warn whenever a pointer is cast so as to remove a type qualifier from
3595 the target type.  For example, warn if a @code{const char *} is cast
3596 to an ordinary @code{char *}.
3597
3598 @item -Wcast-align
3599 @opindex Wcast-align
3600 @opindex Wno-cast-align
3601 Warn whenever a pointer is cast such that the required alignment of the
3602 target is increased.  For example, warn if a @code{char *} is cast to
3603 an @code{int *} on machines where integers can only be accessed at
3604 two- or four-byte boundaries.
3605
3606 @item -Wwrite-strings
3607 @opindex Wwrite-strings
3608 @opindex Wno-write-strings
3609 When compiling C, give string constants the type @code{const
3610 char[@var{length}]} so that copying the address of one into a
3611 non-@code{const} @code{char *} pointer will get a warning.  These
3612 warnings will help you find at compile time code that can try to write
3613 into a string constant, but only if you have been very careful about
3614 using @code{const} in declarations and prototypes.  Otherwise, it will
3615 just be a nuisance. This is why we did not make @option{-Wall} request
3616 these warnings.
3617
3618 When compiling C++, warn about the deprecated conversion from string
3619 literals to @code{char *}.  This warning is enabled by default for C++
3620 programs.
3621
3622 @item -Wclobbered
3623 @opindex Wclobbered
3624 @opindex Wno-clobbered
3625 Warn for variables that might be changed by @samp{longjmp} or
3626 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3627
3628 @item -Wconversion
3629 @opindex Wconversion
3630 @opindex Wno-conversion
3631 Warn for implicit conversions that may alter a value. This includes
3632 conversions between real and integer, like @code{abs (x)} when
3633 @code{x} is @code{double}; conversions between signed and unsigned,
3634 like @code{unsigned ui = -1}; and conversions to smaller types, like
3635 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3636 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3637 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3638 conversions between signed and unsigned integers can be disabled by
3639 using @option{-Wno-sign-conversion}.
3640
3641 For C++, also warn for conversions between @code{NULL} and non-pointer
3642 types; confusing overload resolution for user-defined conversions; and
3643 conversions that will never use a type conversion operator:
3644 conversions to @code{void}, the same type, a base class or a reference
3645 to them. Warnings about conversions between signed and unsigned
3646 integers are disabled by default in C++ unless
3647 @option{-Wsign-conversion} is explicitly enabled.
3648
3649 @item -Wempty-body
3650 @opindex Wempty-body
3651 @opindex Wno-empty-body
3652 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3653 while} statement.  Additionally, in C++, warn when an empty body occurs
3654 in a @samp{while} or @samp{for} statement with no whitespacing before
3655 the semicolon.  This warning is also enabled by @option{-Wextra}.
3656
3657 @item -Wenum-compare @r{(C++ and Objective-C++ only)}
3658 @opindex Wenum-compare
3659 @opindex Wno-enum-compare
3660 Warn about a comparison between values of different enum types. This
3661 warning is enabled by default.
3662
3663 @item -Wsign-compare
3664 @opindex Wsign-compare
3665 @opindex Wno-sign-compare
3666 @cindex warning for comparison of signed and unsigned values
3667 @cindex comparison of signed and unsigned values, warning
3668 @cindex signed and unsigned values, comparison warning
3669 Warn when a comparison between signed and unsigned values could produce
3670 an incorrect result when the signed value is converted to unsigned.
3671 This warning is also enabled by @option{-Wextra}; to get the other warnings
3672 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3673
3674 @item -Wsign-conversion
3675 @opindex Wsign-conversion
3676 @opindex Wno-sign-conversion
3677 Warn for implicit conversions that may change the sign of an integer
3678 value, like assigning a signed integer expression to an unsigned
3679 integer variable. An explicit cast silences the warning. In C, this
3680 option is enabled also by @option{-Wconversion}.
3681
3682 @item -Waddress
3683 @opindex Waddress
3684 @opindex Wno-address
3685 Warn about suspicious uses of memory addresses. These include using
3686 the address of a function in a conditional expression, such as
3687 @code{void func(void); if (func)}, and comparisons against the memory
3688 address of a string literal, such as @code{if (x == "abc")}.  Such
3689 uses typically indicate a programmer error: the address of a function
3690 always evaluates to true, so their use in a conditional usually
3691 indicate that the programmer forgot the parentheses in a function
3692 call; and comparisons against string literals result in unspecified
3693 behavior and are not portable in C, so they usually indicate that the
3694 programmer intended to use @code{strcmp}.  This warning is enabled by
3695 @option{-Wall}.
3696
3697 @item -Wlogical-op
3698 @opindex Wlogical-op
3699 @opindex Wno-logical-op
3700 Warn about suspicious uses of logical operators in expressions.
3701 This includes using logical operators in contexts where a
3702 bit-wise operator is likely to be expected.
3703
3704 @item -Waggregate-return
3705 @opindex Waggregate-return
3706 @opindex Wno-aggregate-return
3707 Warn if any functions that return structures or unions are defined or
3708 called.  (In languages where you can return an array, this also elicits
3709 a warning.)
3710
3711 @item -Wno-attributes
3712 @opindex Wno-attributes
3713 @opindex Wattributes
3714 Do not warn if an unexpected @code{__attribute__} is used, such as
3715 unrecognized attributes, function attributes applied to variables,
3716 etc.  This will not stop errors for incorrect use of supported
3717 attributes.
3718
3719 @item -Wstrict-prototypes @r{(C and Objective-C only)}
3720 @opindex Wstrict-prototypes
3721 @opindex Wno-strict-prototypes
3722 Warn if a function is declared or defined without specifying the
3723 argument types.  (An old-style function definition is permitted without
3724 a warning if preceded by a declaration which specifies the argument
3725 types.)
3726
3727 @item -Wold-style-declaration @r{(C and Objective-C only)}
3728 @opindex Wold-style-declaration
3729 @opindex Wno-old-style-declaration
3730 Warn for obsolescent usages, according to the C Standard, in a
3731 declaration. For example, warn if storage-class specifiers like
3732 @code{static} are not the first things in a declaration.  This warning
3733 is also enabled by @option{-Wextra}.
3734
3735 @item -Wold-style-definition @r{(C and Objective-C only)}
3736 @opindex Wold-style-definition
3737 @opindex Wno-old-style-definition
3738 Warn if an old-style function definition is used.  A warning is given
3739 even if there is a previous prototype.
3740
3741 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
3742 @opindex Wmissing-parameter-type
3743 @opindex Wno-missing-parameter-type
3744 A function parameter is declared without a type specifier in K&R-style
3745 functions:
3746
3747 @smallexample
3748 void foo(bar) @{ @}
3749 @end smallexample
3750
3751 This warning is also enabled by @option{-Wextra}.
3752
3753 @item -Wmissing-prototypes @r{(C and Objective-C only)}
3754 @opindex Wmissing-prototypes
3755 @opindex Wno-missing-prototypes
3756 Warn if a global function is defined without a previous prototype
3757 declaration.  This warning is issued even if the definition itself
3758 provides a prototype.  The aim is to detect global functions that fail
3759 to be declared in header files.
3760
3761 @item -Wmissing-declarations
3762 @opindex Wmissing-declarations
3763 @opindex Wno-missing-declarations
3764 Warn if a global function is defined without a previous declaration.
3765 Do so even if the definition itself provides a prototype.
3766 Use this option to detect global functions that are not declared in
3767 header files.  In C++, no warnings are issued for function templates,
3768 or for inline functions, or for functions in anonymous namespaces.
3769
3770 @item -Wmissing-field-initializers
3771 @opindex Wmissing-field-initializers
3772 @opindex Wno-missing-field-initializers
3773 @opindex W
3774 @opindex Wextra
3775 @opindex Wno-extra
3776 Warn if a structure's initializer has some fields missing.  For
3777 example, the following code would cause such a warning, because
3778 @code{x.h} is implicitly zero:
3779
3780 @smallexample
3781 struct s @{ int f, g, h; @};
3782 struct s x = @{ 3, 4 @};
3783 @end smallexample
3784
3785 This option does not warn about designated initializers, so the following
3786 modification would not trigger a warning:
3787
3788 @smallexample
3789 struct s @{ int f, g, h; @};
3790 struct s x = @{ .f = 3, .g = 4 @};
3791 @end smallexample
3792
3793 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3794 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3795
3796 @item -Wmissing-noreturn
3797 @opindex Wmissing-noreturn
3798 @opindex Wno-missing-noreturn
3799 Warn about functions which might be candidates for attribute @code{noreturn}.
3800 Note these are only possible candidates, not absolute ones.  Care should
3801 be taken to manually verify functions actually do not ever return before
3802 adding the @code{noreturn} attribute, otherwise subtle code generation
3803 bugs could be introduced.  You will not get a warning for @code{main} in
3804 hosted C environments.
3805
3806 @item -Wmissing-format-attribute
3807 @opindex Wmissing-format-attribute
3808 @opindex Wno-missing-format-attribute
3809 @opindex Wformat
3810 @opindex Wno-format
3811 Warn about function pointers which might be candidates for @code{format}
3812 attributes.  Note these are only possible candidates, not absolute ones.
3813 GCC will guess that function pointers with @code{format} attributes that
3814 are used in assignment, initialization, parameter passing or return
3815 statements should have a corresponding @code{format} attribute in the
3816 resulting type.  I.e.@: the left-hand side of the assignment or
3817 initialization, the type of the parameter variable, or the return type
3818 of the containing function respectively should also have a @code{format}
3819 attribute to avoid the warning.
3820
3821 GCC will also warn about function definitions which might be
3822 candidates for @code{format} attributes.  Again, these are only
3823 possible candidates.  GCC will guess that @code{format} attributes
3824 might be appropriate for any function that calls a function like
3825 @code{vprintf} or @code{vscanf}, but this might not always be the
3826 case, and some functions for which @code{format} attributes are
3827 appropriate may not be detected.
3828
3829 @item -Wno-multichar
3830 @opindex Wno-multichar
3831 @opindex Wmultichar
3832 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3833 Usually they indicate a typo in the user's code, as they have
3834 implementation-defined values, and should not be used in portable code.
3835
3836 @item -Wnormalized=<none|id|nfc|nfkc>
3837 @opindex Wnormalized=
3838 @cindex NFC
3839 @cindex NFKC
3840 @cindex character set, input normalization
3841 In ISO C and ISO C++, two identifiers are different if they are
3842 different sequences of characters.  However, sometimes when characters
3843 outside the basic ASCII character set are used, you can have two
3844 different character sequences that look the same.  To avoid confusion,
3845 the ISO 10646 standard sets out some @dfn{normalization rules} which
3846 when applied ensure that two sequences that look the same are turned into
3847 the same sequence.  GCC can warn you if you are using identifiers which
3848 have not been normalized; this option controls that warning.
3849
3850 There are four levels of warning that GCC supports.  The default is
3851 @option{-Wnormalized=nfc}, which warns about any identifier which is
3852 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3853 recommended form for most uses.
3854
3855 Unfortunately, there are some characters which ISO C and ISO C++ allow
3856 in identifiers that when turned into NFC aren't allowable as
3857 identifiers.  That is, there's no way to use these symbols in portable
3858 ISO C or C++ and have all your identifiers in NFC@.
3859 @option{-Wnormalized=id} suppresses the warning for these characters.
3860 It is hoped that future versions of the standards involved will correct
3861 this, which is why this option is not the default.
3862
3863 You can switch the warning off for all characters by writing
3864 @option{-Wnormalized=none}.  You would only want to do this if you
3865 were using some other normalization scheme (like ``D''), because
3866 otherwise you can easily create bugs that are literally impossible to see.
3867
3868 Some characters in ISO 10646 have distinct meanings but look identical
3869 in some fonts or display methodologies, especially once formatting has
3870 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3871 LETTER N'', will display just like a regular @code{n} which has been
3872 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3873 normalization scheme to convert all these into a standard form as
3874 well, and GCC will warn if your code is not in NFKC if you use
3875 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3876 about every identifier that contains the letter O because it might be
3877 confused with the digit 0, and so is not the default, but may be
3878 useful as a local coding convention if the programming environment is
3879 unable to be fixed to display these characters distinctly.
3880
3881 @item -Wno-deprecated
3882 @opindex Wno-deprecated
3883 @opindex Wdeprecated
3884 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
3885
3886 @item -Wno-deprecated-declarations
3887 @opindex Wno-deprecated-declarations
3888 @opindex Wdeprecated-declarations
3889 Do not warn about uses of functions (@pxref{Function Attributes}),
3890 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3891 Attributes}) marked as deprecated by using the @code{deprecated}
3892 attribute.
3893
3894 @item -Wno-overflow
3895 @opindex Wno-overflow
3896 @opindex Woverflow
3897 Do not warn about compile-time overflow in constant expressions.
3898
3899 @item -Woverride-init @r{(C and Objective-C only)}
3900 @opindex Woverride-init
3901 @opindex Wno-override-init
3902 @opindex W
3903 @opindex Wextra
3904 @opindex Wno-extra
3905 Warn if an initialized field without side effects is overridden when
3906 using designated initializers (@pxref{Designated Inits, , Designated
3907 Initializers}).
3908
3909 This warning is included in @option{-Wextra}.  To get other
3910 @option{-Wextra} warnings without this one, use @samp{-Wextra
3911 -Wno-override-init}.
3912
3913 @item -Wpacked
3914 @opindex Wpacked
3915 @opindex Wno-packed
3916 Warn if a structure is given the packed attribute, but the packed
3917 attribute has no effect on the layout or size of the structure.
3918 Such structures may be mis-aligned for little benefit.  For
3919 instance, in this code, the variable @code{f.x} in @code{struct bar}
3920 will be misaligned even though @code{struct bar} does not itself
3921 have the packed attribute:
3922
3923 @smallexample
3924 @group
3925 struct foo @{
3926   int x;
3927   char a, b, c, d;
3928 @} __attribute__((packed));
3929 struct bar @{
3930   char z;
3931   struct foo f;
3932 @};
3933 @end group
3934 @end smallexample
3935
3936 @item -Wpadded
3937 @opindex Wpadded
3938 @opindex Wno-padded
3939 Warn if padding is included in a structure, either to align an element
3940 of the structure or to align the whole structure.  Sometimes when this
3941 happens it is possible to rearrange the fields of the structure to
3942 reduce the padding and so make the structure smaller.
3943
3944 @item -Wredundant-decls
3945 @opindex Wredundant-decls
3946 @opindex Wno-redundant-decls
3947 Warn if anything is declared more than once in the same scope, even in
3948 cases where multiple declaration is valid and changes nothing.
3949
3950 @item -Wnested-externs @r{(C and Objective-C only)}
3951 @opindex Wnested-externs
3952 @opindex Wno-nested-externs
3953 Warn if an @code{extern} declaration is encountered within a function.
3954
3955 @item -Wunreachable-code
3956 @opindex Wunreachable-code
3957 @opindex Wno-unreachable-code
3958 Warn if the compiler detects that code will never be executed.
3959
3960 This option is intended to warn when the compiler detects that at
3961 least a whole line of source code will never be executed, because
3962 some condition is never satisfied or because it is after a
3963 procedure that never returns.
3964
3965 It is possible for this option to produce a warning even though there
3966 are circumstances under which part of the affected line can be executed,
3967 so care should be taken when removing apparently-unreachable code.
3968
3969 For instance, when a function is inlined, a warning may mean that the
3970 line is unreachable in only one inlined copy of the function.
3971
3972 This option is not made part of @option{-Wall} because in a debugging
3973 version of a program there is often substantial code which checks
3974 correct functioning of the program and is, hopefully, unreachable
3975 because the program does work.  Another common use of unreachable
3976 code is to provide behavior which is selectable at compile-time.
3977
3978 @item -Winline
3979 @opindex Winline
3980 @opindex Wno-inline
3981 Warn if a function can not be inlined and it was declared as inline.
3982 Even with this option, the compiler will not warn about failures to
3983 inline functions declared in system headers.
3984
3985 The compiler uses a variety of heuristics to determine whether or not
3986 to inline a function.  For example, the compiler takes into account
3987 the size of the function being inlined and the amount of inlining
3988 that has already been done in the current function.  Therefore,
3989 seemingly insignificant changes in the source program can cause the
3990 warnings produced by @option{-Winline} to appear or disappear.
3991
3992 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
3993 @opindex Wno-invalid-offsetof
3994 @opindex Winvalid-offsetof
3995 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3996 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3997 to a non-POD type is undefined.  In existing C++ implementations,
3998 however, @samp{offsetof} typically gives meaningful results even when
3999 applied to certain kinds of non-POD types. (Such as a simple
4000 @samp{struct} that fails to be a POD type only by virtue of having a
4001 constructor.)  This flag is for users who are aware that they are
4002 writing nonportable code and who have deliberately chosen to ignore the
4003 warning about it.
4004
4005 The restrictions on @samp{offsetof} may be relaxed in a future version
4006 of the C++ standard.
4007
4008 @item -Wno-int-to-pointer-cast @r{(C and Objective-C only)}
4009 @opindex Wno-int-to-pointer-cast
4010 @opindex Wint-to-pointer-cast
4011 Suppress warnings from casts to pointer type of an integer of a
4012 different size.
4013
4014 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
4015 @opindex Wno-pointer-to-int-cast
4016 @opindex Wpointer-to-int-cast
4017 Suppress warnings from casts from a pointer to an integer type of a
4018 different size.
4019
4020 @item -Winvalid-pch
4021 @opindex Winvalid-pch
4022 @opindex Wno-invalid-pch
4023 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
4024 the search path but can't be used.
4025
4026 @item -Wlong-long
4027 @opindex Wlong-long
4028 @opindex Wno-long-long
4029 Warn if @samp{long long} type is used.  This is default.  To inhibit
4030 the warning messages, use @option{-Wno-long-long}.  Flags
4031 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
4032 only when @option{-pedantic} flag is used.
4033
4034 @item -Wvariadic-macros
4035 @opindex Wvariadic-macros
4036 @opindex Wno-variadic-macros
4037 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
4038 alternate syntax when in pedantic ISO C99 mode.  This is default.
4039 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
4040
4041 @item -Wvla
4042 @opindex Wvla
4043 @opindex Wno-vla
4044 Warn if variable length array is used in the code.
4045 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
4046 the variable length array.
4047
4048 @item -Wvolatile-register-var
4049 @opindex Wvolatile-register-var
4050 @opindex Wno-volatile-register-var
4051 Warn if a register variable is declared volatile.  The volatile
4052 modifier does not inhibit all optimizations that may eliminate reads
4053 and/or writes to register variables.  This warning is enabled by
4054 @option{-Wall}.
4055
4056 @item -Wdisabled-optimization
4057 @opindex Wdisabled-optimization
4058 @opindex Wno-disabled-optimization
4059 Warn if a requested optimization pass is disabled.  This warning does
4060 not generally indicate that there is anything wrong with your code; it
4061 merely indicates that GCC's optimizers were unable to handle the code
4062 effectively.  Often, the problem is that your code is too big or too
4063 complex; GCC will refuse to optimize programs when the optimization
4064 itself is likely to take inordinate amounts of time.
4065
4066 @item -Wpointer-sign @r{(C and Objective-C only)}
4067 @opindex Wpointer-sign
4068 @opindex Wno-pointer-sign
4069 Warn for pointer argument passing or assignment with different signedness.
4070 This option is only supported for C and Objective-C@.  It is implied by
4071 @option{-Wall} and by @option{-pedantic}, which can be disabled with
4072 @option{-Wno-pointer-sign}.
4073
4074 @item -Wstack-protector
4075 @opindex Wstack-protector
4076 @opindex Wno-stack-protector
4077 This option is only active when @option{-fstack-protector} is active.  It
4078 warns about functions that will not be protected against stack smashing.
4079
4080 @item -Wno-mudflap
4081 @opindex Wno-mudflap
4082 Suppress warnings about constructs that cannot be instrumented by
4083 @option{-fmudflap}.
4084
4085 @item -Woverlength-strings
4086 @opindex Woverlength-strings
4087 @opindex Wno-overlength-strings
4088 Warn about string constants which are longer than the ``minimum
4089 maximum'' length specified in the C standard.  Modern compilers
4090 generally allow string constants which are much longer than the
4091 standard's minimum limit, but very portable programs should avoid
4092 using longer strings.
4093
4094 The limit applies @emph{after} string constant concatenation, and does
4095 not count the trailing NUL@.  In C89, the limit was 509 characters; in
4096 C99, it was raised to 4095.  C++98 does not specify a normative
4097 minimum maximum, so we do not diagnose overlength strings in C++@.
4098
4099 This option is implied by @option{-pedantic}, and can be disabled with
4100 @option{-Wno-overlength-strings}.
4101
4102 @item -Wdisallowed-function-list=@var{sym},@var{sym},@dots{}
4103 @opindex Wdisallowed-function-list
4104
4105 If any of @var{sym} is called, GCC will issue a warning. This can be useful
4106 in enforcing coding conventions that ban calls to certain functions, for
4107 example, @code{alloca}, @code{malloc}, etc.
4108 @end table
4109
4110 @node Debugging Options
4111 @section Options for Debugging Your Program or GCC
4112 @cindex options, debugging
4113 @cindex debugging information options
4114
4115 GCC has various special options that are used for debugging
4116 either your program or GCC:
4117
4118 @table @gcctabopt
4119 @item -g
4120 @opindex g
4121 Produce debugging information in the operating system's native format
4122 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
4123 information.
4124
4125 On most systems that use stabs format, @option{-g} enables use of extra
4126 debugging information that only GDB can use; this extra information
4127 makes debugging work better in GDB but will probably make other debuggers
4128 crash or
4129 refuse to read the program.  If you want to control for certain whether
4130 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
4131 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4132
4133 GCC allows you to use @option{-g} with
4134 @option{-O}.  The shortcuts taken by optimized code may occasionally
4135 produce surprising results: some variables you declared may not exist
4136 at all; flow of control may briefly move where you did not expect it;
4137 some statements may not be executed because they compute constant
4138 results or their values were already at hand; some statements may
4139 execute in different places because they were moved out of loops.
4140
4141 Nevertheless it proves possible to debug optimized output.  This makes
4142 it reasonable to use the optimizer for programs that might have bugs.
4143
4144 The following options are useful when GCC is generated with the
4145 capability for more than one debugging format.
4146
4147 @item -ggdb
4148 @opindex ggdb
4149 Produce debugging information for use by GDB@.  This means to use the
4150 most expressive format available (DWARF 2, stabs, or the native format
4151 if neither of those are supported), including GDB extensions if at all
4152 possible.
4153
4154 @item -gstabs
4155 @opindex gstabs
4156 Produce debugging information in stabs format (if that is supported),
4157 without GDB extensions.  This is the format used by DBX on most BSD
4158 systems.  On MIPS, Alpha and System V Release 4 systems this option
4159 produces stabs debugging output which is not understood by DBX or SDB@.
4160 On System V Release 4 systems this option requires the GNU assembler.
4161
4162 @item -feliminate-unused-debug-symbols
4163 @opindex feliminate-unused-debug-symbols
4164 Produce debugging information in stabs format (if that is supported),
4165 for only symbols that are actually used.
4166
4167 @item -femit-class-debug-always
4168 Instead of emitting debugging information for a C++ class in only one
4169 object file, emit it in all object files using the class.  This option
4170 should be used only with debuggers that are unable to handle the way GCC
4171 normally emits debugging information for classes because using this
4172 option will increase the size of debugging information by as much as a
4173 factor of two.
4174
4175 @item -gstabs+
4176 @opindex gstabs+
4177 Produce debugging information in stabs format (if that is supported),
4178 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4179 use of these extensions is likely to make other debuggers crash or
4180 refuse to read the program.
4181
4182 @item -gcoff
4183 @opindex gcoff
4184 Produce debugging information in COFF format (if that is supported).
4185 This is the format used by SDB on most System V systems prior to
4186 System V Release 4.
4187
4188 @item -gxcoff
4189 @opindex gxcoff
4190 Produce debugging information in XCOFF format (if that is supported).
4191 This is the format used by the DBX debugger on IBM RS/6000 systems.
4192
4193 @item -gxcoff+
4194 @opindex gxcoff+
4195 Produce debugging information in XCOFF format (if that is supported),
4196 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4197 use of these extensions is likely to make other debuggers crash or
4198 refuse to read the program, and may cause assemblers other than the GNU
4199 assembler (GAS) to fail with an error.
4200
4201 @item -gdwarf-2
4202 @opindex gdwarf-2
4203 Produce debugging information in DWARF version 2 format (if that is
4204 supported).  This is the format used by DBX on IRIX 6.  With this
4205 option, GCC uses features of DWARF version 3 when they are useful;
4206 version 3 is upward compatible with version 2, but may still cause
4207 problems for older debuggers.
4208
4209 @item -gvms
4210 @opindex gvms
4211 Produce debugging information in VMS debug format (if that is
4212 supported).  This is the format used by DEBUG on VMS systems.
4213
4214 @item -g@var{level}
4215 @itemx -ggdb@var{level}
4216 @itemx -gstabs@var{level}
4217 @itemx -gcoff@var{level}
4218 @itemx -gxcoff@var{level}
4219 @itemx -gvms@var{level}
4220 Request debugging information and also use @var{level} to specify how
4221 much information.  The default level is 2.
4222
4223 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4224 @option{-g}.
4225
4226 Level 1 produces minimal information, enough for making backtraces in
4227 parts of the program that you don't plan to debug.  This includes
4228 descriptions of functions and external variables, but no information
4229 about local variables and no line numbers.
4230
4231 Level 3 includes extra information, such as all the macro definitions
4232 present in the program.  Some debuggers support macro expansion when
4233 you use @option{-g3}.
4234
4235 @option{-gdwarf-2} does not accept a concatenated debug level, because
4236 GCC used to support an option @option{-gdwarf} that meant to generate
4237 debug information in version 1 of the DWARF format (which is very
4238 different from version 2), and it would have been too confusing.  That
4239 debug format is long obsolete, but the option cannot be changed now.
4240 Instead use an additional @option{-g@var{level}} option to change the
4241 debug level for DWARF2.
4242
4243 @item -feliminate-dwarf2-dups
4244 @opindex feliminate-dwarf2-dups
4245 Compress DWARF2 debugging information by eliminating duplicated
4246 information about each symbol.  This option only makes sense when
4247 generating DWARF2 debugging information with @option{-gdwarf-2}.
4248
4249 @item -femit-struct-debug-baseonly
4250 Emit debug information for struct-like types
4251 only when the base name of the compilation source file
4252 matches the base name of file in which the struct was defined.
4253
4254 This option substantially reduces the size of debugging information,
4255 but at significant potential loss in type information to the debugger.
4256 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4257 See @option{-femit-struct-debug-detailed} for more detailed control.
4258
4259 This option works only with DWARF 2.
4260
4261 @item -femit-struct-debug-reduced
4262 Emit debug information for struct-like types
4263 only when the base name of the compilation source file
4264 matches the base name of file in which the type was defined,
4265 unless the struct is a template or defined in a system header.
4266
4267 This option significantly reduces the size of debugging information,
4268 with some potential loss in type information to the debugger.
4269 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4270 See @option{-femit-struct-debug-detailed} for more detailed control.
4271
4272 This option works only with DWARF 2.
4273
4274 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4275 Specify the struct-like types
4276 for which the compiler will generate debug information.
4277 The intent is to reduce duplicate struct debug information
4278 between different object files within the same program.
4279
4280 This option is a detailed version of
4281 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4282 which will serve for most needs.
4283
4284 A specification has the syntax
4285 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4286
4287 The optional first word limits the specification to
4288 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4289 A struct type is used directly when it is the type of a variable, member.
4290 Indirect uses arise through pointers to structs.
4291 That is, when use of an incomplete struct would be legal, the use is indirect.
4292 An example is
4293 @samp{struct one direct; struct two * indirect;}.
4294
4295 The optional second word limits the specification to
4296 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4297 Generic structs are a bit complicated to explain.
4298 For C++, these are non-explicit specializations of template classes,
4299 or non-template classes within the above.
4300 Other programming languages have generics,
4301 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4302
4303 The third word specifies the source files for those
4304 structs for which the compiler will emit debug information.
4305 The values @samp{none} and @samp{any} have the normal meaning.
4306 The value @samp{base} means that
4307 the base of name of the file in which the type declaration appears
4308 must match the base of the name of the main compilation file.
4309 In practice, this means that
4310 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4311 but types declared in other header will not.
4312 The value @samp{sys} means those types satisfying @samp{base}
4313 or declared in system or compiler headers.
4314
4315 You may need to experiment to determine the best settings for your application.
4316
4317 The default is @samp{-femit-struct-debug-detailed=all}.
4318
4319 This option works only with DWARF 2.
4320
4321 @item -fno-merge-debug-strings
4322 @opindex fmerge-debug-strings
4323 @opindex fno-merge-debug-strings
4324 Direct the linker to merge together strings which are identical in
4325 different object files.  This is not supported by all assemblers or
4326 linker.  This decreases the size of the debug information in the
4327 output file at the cost of increasing link processing time.  This is
4328 on by default.
4329
4330 @item -fdebug-prefix-map=@var{old}=@var{new}
4331 @opindex fdebug-prefix-map
4332 When compiling files in directory @file{@var{old}}, record debugging
4333 information describing them as in @file{@var{new}} instead.
4334
4335 @cindex @command{prof}
4336 @item -p
4337 @opindex p
4338 Generate extra code to write profile information suitable for the
4339 analysis program @command{prof}.  You must use this option when compiling
4340 the source files you want data about, and you must also use it when
4341 linking.
4342
4343 @cindex @command{gprof}
4344 @item -pg
4345 @opindex pg
4346 Generate extra code to write profile information suitable for the
4347 analysis program @command{gprof}.  You must use this option when compiling
4348 the source files you want data about, and you must also use it when
4349 linking.
4350
4351 @item -Q
4352 @opindex Q
4353 Makes the compiler print out each function name as it is compiled, and
4354 print some statistics about each pass when it finishes.
4355
4356 @item -ftime-report
4357 @opindex ftime-report
4358 Makes the compiler print some statistics about the time consumed by each
4359 pass when it finishes.
4360
4361 @item -fmem-report
4362 @opindex fmem-report
4363 Makes the compiler print some statistics about permanent memory
4364 allocation when it finishes.
4365
4366 @item -fpre-ipa-mem-report
4367 @opindex fpre-ipa-mem-report
4368 @item -fpost-ipa-mem-report
4369 @opindex fpost-ipa-mem-report
4370 Makes the compiler print some statistics about permanent memory
4371 allocation before or after interprocedural optimization.
4372
4373 @item -fprofile-arcs
4374 @opindex fprofile-arcs
4375 Add code so that program flow @dfn{arcs} are instrumented.  During
4376 execution the program records how many times each branch and call is
4377 executed and how many times it is taken or returns.  When the compiled
4378 program exits it saves this data to a file called
4379 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4380 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4381 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4382 @var{auxname} is generated from the name of the output file, if
4383 explicitly specified and it is not the final executable, otherwise it is
4384 the basename of the source file.  In both cases any suffix is removed
4385 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4386 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4387 @xref{Cross-profiling}.
4388
4389 @cindex @command{gcov}
4390 @item --coverage
4391 @opindex coverage
4392
4393 This option is used to compile and link code instrumented for coverage
4394 analysis.  The option is a synonym for @option{-fprofile-arcs}
4395 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4396 linking).  See the documentation for those options for more details.
4397
4398 @itemize
4399
4400 @item
4401 Compile the source files with @option{-fprofile-arcs} plus optimization
4402 and code generation options.  For test coverage analysis, use the
4403 additional @option{-ftest-coverage} option.  You do not need to profile
4404 every source file in a program.
4405
4406 @item
4407 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4408 (the latter implies the former).
4409
4410 @item
4411 Run the program on a representative workload to generate the arc profile
4412 information.  This may be repeated any number of times.  You can run
4413 concurrent instances of your program, and provided that the file system
4414 supports locking, the data files will be correctly updated.  Also
4415 @code{fork} calls are detected and correctly handled (double counting
4416 will not happen).
4417
4418 @item
4419 For profile-directed optimizations, compile the source files again with
4420 the same optimization and code generation options plus
4421 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4422 Control Optimization}).
4423
4424 @item
4425 For test coverage analysis, use @command{gcov} to produce human readable
4426 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4427 @command{gcov} documentation for further information.
4428
4429 @end itemize
4430
4431 With @option{-fprofile-arcs}, for each function of your program GCC
4432 creates a program flow graph, then finds a spanning tree for the graph.
4433 Only arcs that are not on the spanning tree have to be instrumented: the
4434 compiler adds code to count the number of times that these arcs are
4435 executed.  When an arc is the only exit or only entrance to a block, the
4436 instrumentation code can be added to the block; otherwise, a new basic
4437 block must be created to hold the instrumentation code.
4438
4439 @need 2000
4440 @item -ftest-coverage
4441 @opindex ftest-coverage
4442 Produce a notes file that the @command{gcov} code-coverage utility
4443 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4444 show program coverage.  Each source file's note file is called
4445 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4446 above for a description of @var{auxname} and instructions on how to
4447 generate test coverage data.  Coverage data will match the source files
4448 more closely, if you do not optimize.
4449
4450 @item -fdbg-cnt-list
4451 @opindex fdbg-cnt-list
4452 Print the name and the counter upperbound for all debug counters.
4453
4454 @item -fdbg-cnt=@var{counter-value-list}
4455 @opindex fdbg-cnt
4456 Set the internal debug counter upperbound. @var{counter-value-list} 
4457 is a comma-separated list of @var{name}:@var{value} pairs
4458 which sets the upperbound of each debug counter @var{name} to @var{value}.
4459 All debug counters have the initial upperbound of @var{UINT_MAX},
4460 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4461 e.g. With -fdbg-cnt=dce:10,tail_call:0
4462 dbg_cnt(dce) will return true only for first 10 invocations
4463 and dbg_cnt(tail_call) will return false always.
4464
4465 @item -d@var{letters}
4466 @itemx -fdump-rtl-@var{pass}
4467 @opindex d
4468 Says to make debugging dumps during compilation at times specified by
4469 @var{letters}.    This is used for debugging the RTL-based passes of the
4470 compiler.  The file names for most of the dumps are made by appending a
4471 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4472 from the name of the output file, if explicitly specified and it is not
4473 an executable, otherwise it is the basename of the source file. These
4474 switches may have different effects when @option{-E} is used for
4475 preprocessing.
4476
4477 Most debug dumps can be enabled either passing a letter to the @option{-d}
4478 option, or with a long @option{-fdump-rtl} switch; here are the possible
4479 letters for use in @var{letters} and @var{pass}, and their meanings:
4480
4481 @table @gcctabopt
4482 @item -dA
4483 @opindex dA
4484 Annotate the assembler output with miscellaneous debugging information.
4485
4486 @item -fdump-rtl-bbro
4487 @opindex fdump-rtl-bbro
4488 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4489
4490 @item -fdump-rtl-combine
4491 @opindex fdump-rtl-combine
4492 Dump after the RTL instruction combination pass, to the file
4493 @file{@var{file}.129r.combine}.
4494
4495 @item -fdump-rtl-ce1
4496 @itemx -fdump-rtl-ce2
4497 @opindex fdump-rtl-ce1
4498 @opindex fdump-rtl-ce2
4499 @option{-fdump-rtl-ce1} enable dumping after the
4500 first if conversion, to the file @file{@var{file}.117r.ce1}. 
4501 @option{-fdump-rtl-ce2} enable dumping after the second if
4502 conversion, to the file @file{@var{file}.130r.ce2}.
4503
4504 @item -fdump-rtl-btl
4505 @itemx -fdump-rtl-dbr
4506 @opindex fdump-rtl-btl
4507 @opindex fdump-rtl-dbr
4508 @option{-fdump-rtl-btl} enable dumping after branch
4509 target load optimization, to @file{@var{file}.31.btl}.  
4510 @option{-fdump-rtl-dbr} enable dumping after delayed branch
4511 scheduling, to @file{@var{file}.36.dbr}.
4512
4513 @item -dD
4514 @opindex dD
4515 Dump all macro definitions, at the end of preprocessing, in addition to
4516 normal output.
4517
4518 @item -fdump-rtl-ce3
4519 @opindex fdump-rtl-ce3
4520 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4521
4522 @item -fdump-rtl-cfg
4523 @itemx -fdump-rtl-life
4524 @opindex fdump-rtl-cfg
4525 @opindex fdump-rtl-life
4526 @option{-fdump-rtl-cfg} enable dumping after control
4527 and data flow analysis, to @file{@var{file}.116r.cfg}.  
4528 @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4529 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4530
4531 @item -fdump-rtl-greg
4532 @opindex fdump-rtl-greg
4533 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4534
4535 @item -fdump-rtl-gcse
4536 @itemx -fdump-rtl-bypass
4537 @opindex fdump-rtl-gcse
4538 @opindex fdump-rtl-bypass
4539 @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4540 @file{@var{file}.114r.gcse}.  @option{-fdump-rtl-bypass}
4541 enable dumping after jump bypassing and control flow optimizations, to
4542 @file{@var{file}.115r.bypass}.
4543
4544 @item -fdump-rtl-eh
4545 @opindex fdump-rtl-eh
4546 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4547
4548 @item -fdump-rtl-sibling
4549 @opindex fdump-rtl-sibling
4550 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4551
4552 @item -fdump-rtl-jump
4553 @opindex fdump-rtl-jump
4554 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4555
4556 @item -fdump-rtl-stack
4557 @opindex fdump-rtl-stack
4558 Dump after conversion from GCC's "flat register file" registers to the
4559 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4560
4561 @item -fdump-rtl-lreg
4562 @opindex fdump-rtl-lreg
4563 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4564
4565 @item -fdump-rtl-loop2
4566 @opindex fdump-rtl-loop2
4567 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4568 loop optimization pass, to @file{@var{file}.119r.loop2},
4569 @file{@var{file}.120r.loop2_init},
4570 @file{@var{file}.121r.loop2_invariant}, and
4571 @file{@var{file}.125r.loop2_done}.
4572
4573 @item -fdump-rtl-sms
4574 @opindex fdump-rtl-sms
4575 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4576
4577 @item -fdump-rtl-mach
4578 @opindex fdump-rtl-mach
4579 Dump after performing the machine dependent reorganization pass, to
4580 @file{@var{file}.155r.mach} if that pass exists.
4581
4582 @item -fdump-rtl-rnreg
4583 @opindex fdump-rtl-rnreg
4584 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4585
4586 @item -fdump-rtl-regmove
4587 @opindex fdump-rtl-regmove
4588 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4589
4590 @item -fdump-rtl-postreload
4591 @opindex fdump-rtl-postreload
4592 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4593
4594 @item -fdump-rtl-expand
4595 @opindex fdump-rtl-expand
4596 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4597
4598 @item -fdump-rtl-sched2
4599 @opindex fdump-rtl-sched2
4600 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4601
4602 @item -fdump-rtl-cse
4603 @opindex fdump-rtl-cse
4604 Dump after CSE (including the jump optimization that sometimes follows
4605 CSE), to @file{@var{file}.113r.cse}.
4606
4607 @item -fdump-rtl-sched1
4608 @opindex fdump-rtl-sched1
4609 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4610
4611 @item -fdump-rtl-cse2
4612 @opindex fdump-rtl-cse2
4613 Dump after the second CSE pass (including the jump optimization that
4614 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4615
4616 @item -fdump-rtl-tracer
4617 @opindex fdump-rtl-tracer
4618 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4619
4620 @item -fdump-rtl-vpt
4621 @itemx -fdump-rtl-vartrack
4622 @opindex fdump-rtl-vpt
4623 @opindex fdump-rtl-vartrack
4624 @option{-fdump-rtl-vpt} enable dumping after the value
4625 profile transformations, to @file{@var{file}.10.vpt}.
4626 @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4627 to @file{@var{file}.154r.vartrack}.
4628
4629 @item -fdump-rtl-flow2
4630 @opindex fdump-rtl-flow2
4631 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4632
4633 @item -fdump-rtl-peephole2
4634 @opindex fdump-rtl-peephole2
4635 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4636
4637 @item -fdump-rtl-web
4638 @opindex fdump-rtl-web
4639 Dump after live range splitting, to @file{@var{file}.126r.web}.
4640
4641 @item -fdump-rtl-all
4642 @opindex fdump-rtl-all
4643 Produce all the dumps listed above.
4644
4645 @item -dH
4646 @opindex dH
4647 Produce a core dump whenever an error occurs.
4648
4649 @item -dm
4650 @opindex dm
4651 Print statistics on memory usage, at the end of the run, to
4652 standard error.
4653
4654 @item -dp
4655 @opindex dp
4656 Annotate the assembler output with a comment indicating which
4657 pattern and alternative was used.  The length of each instruction is
4658 also printed.
4659
4660 @item -dP
4661 @opindex dP
4662 Dump the RTL in the assembler output as a comment before each instruction.
4663 Also turns on @option{-dp} annotation.
4664
4665 @item -dv
4666 @opindex dv
4667 For each of the other indicated dump files (either with @option{-d} or
4668 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4669 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4670
4671 @item -dx
4672 @opindex dx
4673 Just generate RTL for a function instead of compiling it.  Usually used
4674 with @samp{r} (@option{-fdump-rtl-expand}).
4675
4676 @item -dy
4677 @opindex dy
4678 Dump debugging information during parsing, to standard error.
4679 @end table
4680
4681 @item -fdump-noaddr
4682 @opindex fdump-noaddr
4683 When doing debugging dumps (see @option{-d} option above), suppress
4684 address output.  This makes it more feasible to use diff on debugging
4685 dumps for compiler invocations with different compiler binaries and/or
4686 different text / bss / data / heap / stack / dso start locations.
4687
4688 @item -fdump-unnumbered
4689 @opindex fdump-unnumbered
4690 When doing debugging dumps (see @option{-d} option above), suppress instruction
4691 numbers and address output.  This makes it more feasible to
4692 use diff on debugging dumps for compiler invocations with different
4693 options, in particular with and without @option{-g}.
4694
4695 @item -fdump-translation-unit @r{(C++ only)}
4696 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4697 @opindex fdump-translation-unit
4698 Dump a representation of the tree structure for the entire translation
4699 unit to a file.  The file name is made by appending @file{.tu} to the
4700 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4701 controls the details of the dump as described for the
4702 @option{-fdump-tree} options.
4703
4704 @item -fdump-class-hierarchy @r{(C++ only)}
4705 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4706 @opindex fdump-class-hierarchy
4707 Dump a representation of each class's hierarchy and virtual function
4708 table layout to a file.  The file name is made by appending @file{.class}
4709 to the source file name.  If the @samp{-@var{options}} form is used,
4710 @var{options} controls the details of the dump as described for the
4711 @option{-fdump-tree} options.
4712
4713 @item -fdump-ipa-@var{switch}
4714 @opindex fdump-ipa
4715 Control the dumping at various stages of inter-procedural analysis
4716 language tree to a file.  The file name is generated by appending a switch
4717 specific suffix to the source file name.  The following dumps are possible:
4718
4719 @table @samp
4720 @item all
4721 Enables all inter-procedural analysis dumps.
4722
4723 @item cgraph
4724 Dumps information about call-graph optimization, unused function removal,
4725 and inlining decisions.
4726
4727 @item inline
4728 Dump after function inlining.
4729
4730 @end table
4731
4732 @item -fdump-statistics-@var{option}
4733 @opindex -fdump-statistics
4734 Enable and control dumping of pass statistics in a separate file.  The
4735 file name is generated by appending a suffix ending in @samp{.statistics}
4736 to the source file name.  If the @samp{-@var{option}} form is used,
4737 @samp{-stats} will cause counters to be summed over the whole compilation unit
4738 while @samp{-details} will dump every event as the passes generate them.
4739 The default with no option is to sum counters for each function compiled.
4740
4741 @item -fdump-tree-@var{switch}
4742 @itemx -fdump-tree-@var{switch}-@var{options}
4743 @opindex fdump-tree
4744 Control the dumping at various stages of processing the intermediate
4745 language tree to a file.  The file name is generated by appending a switch
4746 specific suffix to the source file name.  If the @samp{-@var{options}}
4747 form is used, @var{options} is a list of @samp{-} separated options that
4748 control the details of the dump.  Not all options are applicable to all
4749 dumps, those which are not meaningful will be ignored.  The following
4750 options are available
4751
4752 @table @samp
4753 @item address
4754 Print the address of each node.  Usually this is not meaningful as it
4755 changes according to the environment and source file.  Its primary use
4756 is for tying up a dump file with a debug environment.
4757 @item slim
4758 Inhibit dumping of members of a scope or body of a function merely
4759 because that scope has been reached.  Only dump such items when they
4760 are directly reachable by some other path.  When dumping pretty-printed
4761 trees, this option inhibits dumping the bodies of control structures.
4762 @item raw
4763 Print a raw representation of the tree.  By default, trees are
4764 pretty-printed into a C-like representation.
4765 @item details
4766 Enable more detailed dumps (not honored by every dump option).
4767 @item stats
4768 Enable dumping various statistics about the pass (not honored by every dump
4769 option).
4770 @item blocks
4771 Enable showing basic block boundaries (disabled in raw dumps).
4772 @item vops
4773 Enable showing virtual operands for every statement.
4774 @item lineno
4775 Enable showing line numbers for statements.
4776 @item uid
4777 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4778 @item verbose
4779 Enable showing the tree dump for each statement.
4780 @item all
4781 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
4782 and @option{lineno}.
4783 @end table
4784
4785 The following tree dumps are possible:
4786 @table @samp
4787
4788 @item original
4789 Dump before any tree based optimization, to @file{@var{file}.original}.
4790
4791 @item optimized
4792 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4793
4794 @item gimple
4795 @opindex fdump-tree-gimple
4796 Dump each function before and after the gimplification pass to a file.  The
4797 file name is made by appending @file{.gimple} to the source file name.
4798
4799 @item cfg
4800 @opindex fdump-tree-cfg
4801 Dump the control flow graph of each function to a file.  The file name is
4802 made by appending @file{.cfg} to the source file name.
4803
4804 @item vcg
4805 @opindex fdump-tree-vcg
4806 Dump the control flow graph of each function to a file in VCG format.  The
4807 file name is made by appending @file{.vcg} to the source file name.  Note
4808 that if the file contains more than one function, the generated file cannot
4809 be used directly by VCG@.  You will need to cut and paste each function's
4810 graph into its own separate file first.
4811
4812 @item ch
4813 @opindex fdump-tree-ch
4814 Dump each function after copying loop headers.  The file name is made by
4815 appending @file{.ch} to the source file name.
4816
4817 @item ssa
4818 @opindex fdump-tree-ssa
4819 Dump SSA related information to a file.  The file name is made by appending
4820 @file{.ssa} to the source file name.
4821
4822 @item alias
4823 @opindex fdump-tree-alias
4824 Dump aliasing information for each function.  The file name is made by
4825 appending @file{.alias} to the source file name.
4826
4827 @item ccp
4828 @opindex fdump-tree-ccp
4829 Dump each function after CCP@.  The file name is made by appending
4830 @file{.ccp} to the source file name.
4831
4832 @item storeccp
4833 @opindex fdump-tree-storeccp
4834 Dump each function after STORE-CCP@.  The file name is made by appending
4835 @file{.storeccp} to the source file name.
4836
4837 @item pre
4838 @opindex fdump-tree-pre
4839 Dump trees after partial redundancy elimination.  The file name is made
4840 by appending @file{.pre} to the source file name.
4841
4842 @item fre
4843 @opindex fdump-tree-fre
4844 Dump trees after full redundancy elimination.  The file name is made
4845 by appending @file{.fre} to the source file name.
4846
4847 @item copyprop
4848 @opindex fdump-tree-copyprop
4849 Dump trees after copy propagation.  The file name is made
4850 by appending @file{.copyprop} to the source file name.
4851
4852 @item store_copyprop
4853 @opindex fdump-tree-store_copyprop
4854 Dump trees after store copy-propagation.  The file name is made
4855 by appending @file{.store_copyprop} to the source file name.
4856
4857 @item dce
4858 @opindex fdump-tree-dce
4859 Dump each function after dead code elimination.  The file name is made by
4860 appending @file{.dce} to the source file name.
4861
4862 @item mudflap
4863 @opindex fdump-tree-mudflap
4864 Dump each function after adding mudflap instrumentation.  The file name is
4865 made by appending @file{.mudflap} to the source file name.
4866
4867 @item sra
4868 @opindex fdump-tree-sra
4869 Dump each function after performing scalar replacement of aggregates.  The
4870 file name is made by appending @file{.sra} to the source file name.
4871
4872 @item sink
4873 @opindex fdump-tree-sink
4874 Dump each function after performing code sinking.  The file name is made
4875 by appending @file{.sink} to the source file name.
4876
4877 @item dom
4878 @opindex fdump-tree-dom
4879 Dump each function after applying dominator tree optimizations.  The file
4880 name is made by appending @file{.dom} to the source file name.
4881
4882 @item dse
4883 @opindex fdump-tree-dse
4884 Dump each function after applying dead store elimination.  The file
4885 name is made by appending @file{.dse} to the source file name.
4886
4887 @item phiopt
4888 @opindex fdump-tree-phiopt
4889 Dump each function after optimizing PHI nodes into straightline code.  The file
4890 name is made by appending @file{.phiopt} to the source file name.
4891
4892 @item forwprop
4893 @opindex fdump-tree-forwprop
4894 Dump each function after forward propagating single use variables.  The file
4895 name is made by appending @file{.forwprop} to the source file name.
4896
4897 @item copyrename
4898 @opindex fdump-tree-copyrename
4899 Dump each function after applying the copy rename optimization.  The file
4900 name is made by appending @file{.copyrename} to the source file name.
4901
4902 @item nrv
4903 @opindex fdump-tree-nrv
4904 Dump each function after applying the named return value optimization on
4905 generic trees.  The file name is made by appending @file{.nrv} to the source
4906 file name.
4907
4908 @item vect
4909 @opindex fdump-tree-vect
4910 Dump each function after applying vectorization of loops.  The file name is
4911 made by appending @file{.vect} to the source file name.
4912
4913 @item vrp
4914 @opindex fdump-tree-vrp
4915 Dump each function after Value Range Propagation (VRP).  The file name
4916 is made by appending @file{.vrp} to the source file name.
4917
4918 @item all
4919 @opindex fdump-tree-all
4920 Enable all the available tree dumps with the flags provided in this option.
4921 @end table
4922
4923 @item -ftree-vectorizer-verbose=@var{n}
4924 @opindex ftree-vectorizer-verbose
4925 This option controls the amount of debugging output the vectorizer prints.
4926 This information is written to standard error, unless
4927 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4928 in which case it is output to the usual dump listing file, @file{.vect}.
4929 For @var{n}=0 no diagnostic information is reported.
4930 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4931 and the total number of loops that got vectorized.
4932 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4933 the first analysis phase (vect_analyze_loop_form) - i.e.@: countable,
4934 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4935 level that @option{-fdump-tree-vect-stats} uses.
4936 Higher verbosity levels mean either more information dumped for each
4937 reported loop, or same amount of information reported for more loops:
4938 If @var{n}=3, alignment related information is added to the reports.
4939 If @var{n}=4, data-references related information (e.g.@: memory dependences,
4940 memory access-patterns) is added to the reports.
4941 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4942 that did not pass the first analysis phase (i.e., may not be countable, or
4943 may have complicated control-flow).
4944 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4945 For @var{n}=7, all the information the vectorizer generates during its
4946 analysis and transformation is reported.  This is the same verbosity level
4947 that @option{-fdump-tree-vect-details} uses.
4948
4949 @item -frandom-seed=@var{string}
4950 @opindex frandom-string
4951 This option provides a seed that GCC uses when it would otherwise use
4952 random numbers.  It is used to generate certain symbol names
4953 that have to be different in every compiled file.  It is also used to
4954 place unique stamps in coverage data files and the object files that
4955 produce them.  You can use the @option{-frandom-seed} option to produce
4956 reproducibly identical object files.
4957
4958 The @var{string} should be different for every file you compile.
4959
4960 @item -fsched-verbose=@var{n}
4961 @opindex fsched-verbose
4962 On targets that use instruction scheduling, this option controls the
4963 amount of debugging output the scheduler prints.  This information is
4964 written to standard error, unless @option{-dS} or @option{-dR} is
4965 specified, in which case it is output to the usual dump
4966 listing file, @file{.sched} or @file{.sched2} respectively.  However
4967 for @var{n} greater than nine, the output is always printed to standard
4968 error.
4969
4970 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4971 same information as @option{-dRS}.  For @var{n} greater than one, it
4972 also output basic block probabilities, detailed ready list information
4973 and unit/insn info.  For @var{n} greater than two, it includes RTL
4974 at abort point, control-flow and regions info.  And for @var{n} over
4975 four, @option{-fsched-verbose} also includes dependence info.
4976
4977 @item -save-temps
4978 @opindex save-temps
4979 Store the usual ``temporary'' intermediate files permanently; place them
4980 in the current directory and name them based on the source file.  Thus,
4981 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4982 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4983 preprocessed @file{foo.i} output file even though the compiler now
4984 normally uses an integrated preprocessor.
4985
4986 When used in combination with the @option{-x} command line option,
4987 @option{-save-temps} is sensible enough to avoid over writing an
4988 input source file with the same extension as an intermediate file.
4989 The corresponding intermediate file may be obtained by renaming the
4990 source file before using @option{-save-temps}.
4991
4992 @item -time
4993 @opindex time
4994 Report the CPU time taken by each subprocess in the compilation
4995 sequence.  For C source files, this is the compiler proper and assembler
4996 (plus the linker if linking is done).  The output looks like this:
4997
4998 @smallexample
4999 # cc1 0.12 0.01
5000 # as 0.00 0.01
5001 @end smallexample
5002
5003 The first number on each line is the ``user time'', that is time spent
5004 executing the program itself.  The second number is ``system time'',
5005 time spent executing operating system routines on behalf of the program.
5006 Both numbers are in seconds.
5007
5008 @item -fvar-tracking
5009 @opindex fvar-tracking
5010 Run variable tracking pass.  It computes where variables are stored at each
5011 position in code.  Better debugging information is then generated
5012 (if the debugging information format supports this information).
5013
5014 It is enabled by default when compiling with optimization (@option{-Os},
5015 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
5016 the debug info format supports it.
5017
5018 @item -print-file-name=@var{library}
5019 @opindex print-file-name
5020 Print the full absolute name of the library file @var{library} that
5021 would be used when linking---and don't do anything else.  With this
5022 option, GCC does not compile or link anything; it just prints the
5023 file name.
5024
5025 @item -print-multi-directory
5026 @opindex print-multi-directory
5027 Print the directory name corresponding to the multilib selected by any
5028 other switches present in the command line.  This directory is supposed
5029 to exist in @env{GCC_EXEC_PREFIX}.
5030
5031 @item -print-multi-lib
5032 @opindex print-multi-lib
5033 Print the mapping from multilib directory names to compiler switches
5034 that enable them.  The directory name is separated from the switches by
5035 @samp{;}, and each switch starts with an @samp{@@} instead of the
5036 @samp{-}, without spaces between multiple switches.  This is supposed to
5037 ease shell-processing.
5038
5039 @item -print-prog-name=@var{program}
5040 @opindex print-prog-name
5041 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
5042
5043 @item -print-libgcc-file-name
5044 @opindex print-libgcc-file-name
5045 Same as @option{-print-file-name=libgcc.a}.
5046
5047 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
5048 but you do want to link with @file{libgcc.a}.  You can do
5049
5050 @smallexample
5051 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
5052 @end smallexample
5053
5054 @item -print-search-dirs
5055 @opindex print-search-dirs
5056 Print the name of the configured installation directory and a list of
5057 program and library directories @command{gcc} will search---and don't do anything else.
5058
5059 This is useful when @command{gcc} prints the error message
5060 @samp{installation problem, cannot exec cpp0: No such file or directory}.
5061 To resolve this you either need to put @file{cpp0} and the other compiler
5062 components where @command{gcc} expects to find them, or you can set the environment
5063 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
5064 Don't forget the trailing @samp{/}.
5065 @xref{Environment Variables}.
5066
5067 @item -print-sysroot
5068 @opindex print-sysroot
5069 Print the target sysroot directory that will be used during
5070 compilation.  This is the target sysroot specified either at configure
5071 time or or using the @option{--sysroot} option, possibly with an extra
5072 suffix that depends on compilation options.  If no target sysroot is
5073 specified, the option prints nothing.
5074
5075 @item -print-sysroot-headers-suffix
5076 @opindex print-sysroot-headers-suffix
5077 Print the suffix added to the target sysroot when searching for
5078 headers, or give an error if the compiler is not configured with such
5079 a suffix---and don't do anything else.
5080
5081 @item -dumpmachine
5082 @opindex dumpmachine
5083 Print the compiler's target machine (for example,
5084 @samp{i686-pc-linux-gnu})---and don't do anything else.
5085
5086 @item -dumpversion
5087 @opindex dumpversion
5088 Print the compiler version (for example, @samp{3.0})---and don't do
5089 anything else.
5090
5091 @item -dumpspecs
5092 @opindex dumpspecs
5093 Print the compiler's built-in specs---and don't do anything else.  (This
5094 is used when GCC itself is being built.)  @xref{Spec Files}.
5095
5096 @item -feliminate-unused-debug-types
5097 @opindex feliminate-unused-debug-types
5098 Normally, when producing DWARF2 output, GCC will emit debugging
5099 information for all types declared in a compilation
5100 unit, regardless of whether or not they are actually used
5101 in that compilation unit.  Sometimes this is useful, such as
5102 if, in the debugger, you want to cast a value to a type that is
5103 not actually used in your program (but is declared).  More often,
5104 however, this results in a significant amount of wasted space.
5105 With this option, GCC will avoid producing debug symbol output
5106 for types that are nowhere used in the source file being compiled.
5107 @end table
5108
5109 @node Optimize Options
5110 @section Options That Control Optimization
5111 @cindex optimize options
5112 @cindex options, optimization
5113
5114 These options control various sorts of optimizations.
5115
5116 Without any optimization option, the compiler's goal is to reduce the
5117 cost of compilation and to make debugging produce the expected
5118 results.  Statements are independent: if you stop the program with a
5119 breakpoint between statements, you can then assign a new value to any
5120 variable or change the program counter to any other statement in the
5121 function and get exactly the results you would expect from the source
5122 code.
5123
5124 Turning on optimization flags makes the compiler attempt to improve
5125 the performance and/or code size at the expense of compilation time
5126 and possibly the ability to debug the program.
5127
5128 The compiler performs optimization based on the knowledge it has of the
5129 program.  Compiling multiple files at once to a single output file mode allows
5130 the compiler to use information gained from all of the files when compiling
5131 each of them.
5132
5133 Not all optimizations are controlled directly by a flag.  Only
5134 optimizations that have a flag are listed.
5135
5136 @table @gcctabopt
5137 @item -O
5138 @itemx -O1
5139 @opindex O
5140 @opindex O1
5141 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5142 more memory for a large function.
5143
5144 With @option{-O}, the compiler tries to reduce code size and execution
5145 time, without performing any optimizations that take a great deal of
5146 compilation time.
5147
5148 @option{-O} turns on the following optimization flags:
5149 @gccoptlist{
5150 -fauto-inc-dec @gol
5151 -fcprop-registers @gol
5152 -fdce @gol
5153 -fdefer-pop @gol
5154 -fdelayed-branch @gol
5155 -fdse @gol
5156 -fguess-branch-probability @gol
5157 -fif-conversion2 @gol
5158 -fif-conversion @gol
5159 -finline-small-functions @gol
5160 -fipa-pure-const @gol
5161 -fipa-reference @gol
5162 -fmerge-constants
5163 -fsplit-wide-types @gol
5164 -ftree-builtin-call-dce @gol
5165 -ftree-ccp @gol
5166 -ftree-ch @gol
5167 -ftree-copyrename @gol
5168 -ftree-dce @gol
5169 -ftree-dominator-opts @gol
5170 -ftree-dse @gol
5171 -ftree-fre @gol
5172 -ftree-sra @gol
5173 -ftree-ter @gol
5174 -funit-at-a-time}
5175
5176 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5177 where doing so does not interfere with debugging.
5178
5179 @item -O2
5180 @opindex O2
5181 Optimize even more.  GCC performs nearly all supported optimizations
5182 that do not involve a space-speed tradeoff.  The compiler does not
5183 perform loop unrolling or function inlining when you specify @option{-O2}.
5184 As compared to @option{-O}, this option increases both compilation time
5185 and the performance of the generated code.
5186
5187 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5188 also turns on the following optimization flags:
5189 @gccoptlist{-fthread-jumps @gol
5190 -falign-functions  -falign-jumps @gol
5191 -falign-loops  -falign-labels @gol
5192 -fcaller-saves @gol
5193 -fcrossjumping @gol
5194 -fcse-follow-jumps  -fcse-skip-blocks @gol
5195 -fdelete-null-pointer-checks @gol
5196 -fexpensive-optimizations @gol
5197 -fgcse  -fgcse-lm  @gol
5198 -findirect-inlining @gol
5199 -foptimize-sibling-calls @gol
5200 -fpeephole2 @gol
5201 -fregmove @gol
5202 -freorder-blocks  -freorder-functions @gol
5203 -frerun-cse-after-loop  @gol
5204 -fsched-interblock  -fsched-spec @gol
5205 -fschedule-insns  -fschedule-insns2 @gol
5206 -fstrict-aliasing -fstrict-overflow @gol
5207 -ftree-switch-conversion @gol
5208 -ftree-pre @gol
5209 -ftree-vrp}
5210
5211 Please note the warning under @option{-fgcse} about
5212 invoking @option{-O2} on programs that use computed gotos.
5213
5214 @item -O3
5215 @opindex O3
5216 Optimize yet more.  @option{-O3} turns on all optimizations specified
5217 by @option{-O2} and also turns on the @option{-finline-functions},
5218 @option{-funswitch-loops}, @option{-fpredictive-commoning},
5219 @option{-fgcse-after-reload} and @option{-ftree-vectorize} options.
5220
5221 @item -O0
5222 @opindex O0
5223 Reduce compilation time and make debugging produce the expected
5224 results.  This is the default.
5225
5226 @item -Os
5227 @opindex Os
5228 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5229 do not typically increase code size.  It also performs further
5230 optimizations designed to reduce code size.
5231
5232 @option{-Os} disables the following optimization flags:
5233 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5234 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5235 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5236
5237 If you use multiple @option{-O} options, with or without level numbers,
5238 the last such option is the one that is effective.
5239 @end table
5240
5241 Options of the form @option{-f@var{flag}} specify machine-independent
5242 flags.  Most flags have both positive and negative forms; the negative
5243 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5244 below, only one of the forms is listed---the one you typically will
5245 use.  You can figure out the other form by either removing @samp{no-}
5246 or adding it.
5247
5248 The following options control specific optimizations.  They are either
5249 activated by @option{-O} options or are related to ones that are.  You
5250 can use the following flags in the rare cases when ``fine-tuning'' of
5251 optimizations to be performed is desired.
5252
5253 @table @gcctabopt
5254 @item -fno-default-inline
5255 @opindex fno-default-inline
5256 Do not make member functions inline by default merely because they are
5257 defined inside the class scope (C++ only).  Otherwise, when you specify
5258 @w{@option{-O}}, member functions defined inside class scope are compiled
5259 inline by default; i.e., you don't need to add @samp{inline} in front of
5260 the member function name.
5261
5262 @item -fno-defer-pop
5263 @opindex fno-defer-pop
5264 Always pop the arguments to each function call as soon as that function
5265 returns.  For machines which must pop arguments after a function call,
5266 the compiler normally lets arguments accumulate on the stack for several
5267 function calls and pops them all at once.
5268
5269 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5270
5271 @item -fforward-propagate
5272 @opindex fforward-propagate
5273 Perform a forward propagation pass on RTL@.  The pass tries to combine two
5274 instructions and checks if the result can be simplified.  If loop unrolling
5275 is active, two passes are performed and the second is scheduled after
5276 loop unrolling.
5277
5278 This option is enabled by default at optimization levels @option{-O2},
5279 @option{-O3}, @option{-Os}.
5280
5281 @item -fomit-frame-pointer
5282 @opindex fomit-frame-pointer
5283 Don't keep the frame pointer in a register for functions that
5284 don't need one.  This avoids the instructions to save, set up and
5285 restore frame pointers; it also makes an extra register available
5286 in many functions.  @strong{It also makes debugging impossible on
5287 some machines.}
5288
5289 On some machines, such as the VAX, this flag has no effect, because
5290 the standard calling sequence automatically handles the frame pointer
5291 and nothing is saved by pretending it doesn't exist.  The
5292 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5293 whether a target machine supports this flag.  @xref{Registers,,Register
5294 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5295
5296 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5297
5298 @item -foptimize-sibling-calls
5299 @opindex foptimize-sibling-calls
5300 Optimize sibling and tail recursive calls.
5301
5302 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5303
5304 @item -fno-inline
5305 @opindex fno-inline
5306 Don't pay attention to the @code{inline} keyword.  Normally this option
5307 is used to keep the compiler from expanding any functions inline.
5308 Note that if you are not optimizing, no functions can be expanded inline.
5309
5310 @item -finline-small-functions
5311 @opindex finline-small-functions
5312 Integrate functions into their callers when their body is smaller than expected
5313 function call code (so overall size of program gets smaller).  The compiler
5314 heuristically decides which functions are simple enough to be worth integrating
5315 in this way.
5316
5317 Enabled at level @option{-O2}.
5318
5319 @item -findirect-inlining
5320 @opindex findirect-inlining
5321 Inline also indirect calls that are discovered to be known at compile
5322 time thanks to previous inlining.  This option has any effect only
5323 when inlining itself is turned on by the @option{-finline-functions}
5324 or @option{-finline-small-functions} options.
5325
5326 Enabled at level @option{-O2}.
5327
5328 @item -finline-functions
5329 @opindex finline-functions
5330 Integrate all simple functions into their callers.  The compiler
5331 heuristically decides which functions are simple enough to be worth
5332 integrating in this way.
5333
5334 If all calls to a given function are integrated, and the function is
5335 declared @code{static}, then the function is normally not output as
5336 assembler code in its own right.
5337
5338 Enabled at level @option{-O3}.
5339
5340 @item -finline-functions-called-once
5341 @opindex finline-functions-called-once
5342 Consider all @code{static} functions called once for inlining into their
5343 caller even if they are not marked @code{inline}.  If a call to a given
5344 function is integrated, then the function is not output as assembler code
5345 in its own right.
5346
5347 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
5348
5349 @item -fearly-inlining
5350 @opindex fearly-inlining
5351 Inline functions marked by @code{always_inline} and functions whose body seems
5352 smaller than the function call overhead early before doing
5353 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5354 makes profiling significantly cheaper and usually inlining faster on programs
5355 having large chains of nested wrapper functions.
5356
5357 Enabled by default.
5358
5359 @item -finline-limit=@var{n}
5360 @opindex finline-limit
5361 By default, GCC limits the size of functions that can be inlined.  This flag
5362 allows coarse control of this limit.  @var{n} is the size of functions that
5363 can be inlined in number of pseudo instructions.
5364
5365 Inlining is actually controlled by a number of parameters, which may be
5366 specified individually by using @option{--param @var{name}=@var{value}}.
5367 The @option{-finline-limit=@var{n}} option sets some of these parameters
5368 as follows:
5369
5370 @table @gcctabopt
5371 @item max-inline-insns-single
5372 is set to @var{n}/2.
5373 @item max-inline-insns-auto
5374 is set to @var{n}/2.
5375 @end table
5376
5377 See below for a documentation of the individual
5378 parameters controlling inlining and for the defaults of these parameters.
5379
5380 @emph{Note:} there may be no value to @option{-finline-limit} that results
5381 in default behavior.
5382
5383 @emph{Note:} pseudo instruction represents, in this particular context, an
5384 abstract measurement of function's size.  In no way does it represent a count
5385 of assembly instructions and as such its exact meaning might change from one
5386 release to an another.
5387
5388 @item -fkeep-inline-functions
5389 @opindex fkeep-inline-functions
5390 In C, emit @code{static} functions that are declared @code{inline}
5391 into the object file, even if the function has been inlined into all
5392 of its callers.  This switch does not affect functions using the
5393 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5394 inline functions into the object file.
5395
5396 @item -fkeep-static-consts
5397 @opindex fkeep-static-consts
5398 Emit variables declared @code{static const} when optimization isn't turned
5399 on, even if the variables aren't referenced.
5400
5401 GCC enables this option by default.  If you want to force the compiler to
5402 check if the variable was referenced, regardless of whether or not
5403 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5404
5405 @item -fmerge-constants
5406 @opindex fmerge-constants
5407 Attempt to merge identical constants (string constants and floating point
5408 constants) across compilation units.
5409
5410 This option is the default for optimized compilation if the assembler and
5411 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5412 behavior.
5413
5414 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5415
5416 @item -fmerge-all-constants
5417 @opindex fmerge-all-constants
5418 Attempt to merge identical constants and identical variables.
5419
5420 This option implies @option{-fmerge-constants}.  In addition to
5421 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5422 arrays or initialized constant variables with integral or floating point
5423 types.  Languages like C or C++ require each non-automatic variable to
5424 have distinct location, so using this option will result in non-conforming
5425 behavior.
5426
5427 @item -fmodulo-sched
5428 @opindex fmodulo-sched
5429 Perform swing modulo scheduling immediately before the first scheduling
5430 pass.  This pass looks at innermost loops and reorders their
5431 instructions by overlapping different iterations.
5432
5433 @item -fmodulo-sched-allow-regmoves
5434 @opindex fmodulo-sched-allow-regmoves
5435 Perform more aggressive SMS based modulo scheduling with register moves
5436 allowed.  By setting this flag certain anti-dependences edges will be
5437 deleted which will trigger the generation of reg-moves based on the
5438 life-range analysis.  This option is effective only with
5439 @option{-fmodulo-sched} enabled.
5440
5441 @item -fno-branch-count-reg
5442 @opindex fno-branch-count-reg
5443 Do not use ``decrement and branch'' instructions on a count register,
5444 but instead generate a sequence of instructions that decrement a
5445 register, compare it against zero, then branch based upon the result.
5446 This option is only meaningful on architectures that support such
5447 instructions, which include x86, PowerPC, IA-64 and S/390.
5448
5449 The default is @option{-fbranch-count-reg}.
5450
5451 @item -fno-function-cse
5452 @opindex fno-function-cse
5453 Do not put function addresses in registers; make each instruction that
5454 calls a constant function contain the function's address explicitly.
5455
5456 This option results in less efficient code, but some strange hacks
5457 that alter the assembler output may be confused by the optimizations
5458 performed when this option is not used.
5459
5460 The default is @option{-ffunction-cse}
5461
5462 @item -fno-zero-initialized-in-bss
5463 @opindex fno-zero-initialized-in-bss
5464 If the target supports a BSS section, GCC by default puts variables that
5465 are initialized to zero into BSS@.  This can save space in the resulting
5466 code.
5467
5468 This option turns off this behavior because some programs explicitly
5469 rely on variables going to the data section.  E.g., so that the
5470 resulting executable can find the beginning of that section and/or make
5471 assumptions based on that.
5472
5473 The default is @option{-fzero-initialized-in-bss}.
5474
5475 @item -fmudflap -fmudflapth -fmudflapir
5476 @opindex fmudflap
5477 @opindex fmudflapth
5478 @opindex fmudflapir
5479 @cindex bounds checking
5480 @cindex mudflap
5481 For front-ends that support it (C and C++), instrument all risky
5482 pointer/array dereferencing operations, some standard library
5483 string/heap functions, and some other associated constructs with
5484 range/validity tests.  Modules so instrumented should be immune to
5485 buffer overflows, invalid heap use, and some other classes of C/C++
5486 programming errors.  The instrumentation relies on a separate runtime
5487 library (@file{libmudflap}), which will be linked into a program if
5488 @option{-fmudflap} is given at link time.  Run-time behavior of the
5489 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5490 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5491 for its options.
5492
5493 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5494 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5495 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5496 instrumentation should ignore pointer reads.  This produces less
5497 instrumentation (and therefore faster execution) and still provides
5498 some protection against outright memory corrupting writes, but allows
5499 erroneously read data to propagate within a program.
5500
5501 @item -fthread-jumps
5502 @opindex fthread-jumps
5503 Perform optimizations where we check to see if a jump branches to a
5504 location where another comparison subsumed by the first is found.  If
5505 so, the first branch is redirected to either the destination of the
5506 second branch or a point immediately following it, depending on whether
5507 the condition is known to be true or false.
5508
5509 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5510
5511 @item -fsplit-wide-types
5512 @opindex fsplit-wide-types
5513 When using a type that occupies multiple registers, such as @code{long
5514 long} on a 32-bit system, split the registers apart and allocate them
5515 independently.  This normally generates better code for those types,
5516 but may make debugging more difficult.
5517
5518 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5519 @option{-Os}.
5520
5521 @item -fcse-follow-jumps
5522 @opindex fcse-follow-jumps
5523 In common subexpression elimination (CSE), scan through jump instructions
5524 when the target of the jump is not reached by any other path.  For
5525 example, when CSE encounters an @code{if} statement with an
5526 @code{else} clause, CSE will follow the jump when the condition
5527 tested is false.
5528
5529 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5530
5531 @item -fcse-skip-blocks
5532 @opindex fcse-skip-blocks
5533 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5534 follow jumps which conditionally skip over blocks.  When CSE
5535 encounters a simple @code{if} statement with no else clause,
5536 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5537 body of the @code{if}.
5538
5539 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5540
5541 @item -frerun-cse-after-loop
5542 @opindex frerun-cse-after-loop
5543 Re-run common subexpression elimination after loop optimizations has been
5544 performed.
5545
5546 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5547
5548 @item -fgcse
5549 @opindex fgcse
5550 Perform a global common subexpression elimination pass.
5551 This pass also performs global constant and copy propagation.
5552
5553 @emph{Note:} When compiling a program using computed gotos, a GCC
5554 extension, you may get better runtime performance if you disable
5555 the global common subexpression elimination pass by adding
5556 @option{-fno-gcse} to the command line.
5557
5558 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5559
5560 @item -fgcse-lm
5561 @opindex fgcse-lm
5562 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5563 attempt to move loads which are only killed by stores into themselves.  This
5564 allows a loop containing a load/store sequence to be changed to a load outside
5565 the loop, and a copy/store within the loop.
5566
5567 Enabled by default when gcse is enabled.
5568
5569 @item -fgcse-sm
5570 @opindex fgcse-sm
5571 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5572 global common subexpression elimination.  This pass will attempt to move
5573 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5574 loops containing a load/store sequence can be changed to a load before
5575 the loop and a store after the loop.
5576
5577 Not enabled at any optimization level.
5578
5579 @item -fgcse-las
5580 @opindex fgcse-las
5581 When @option{-fgcse-las} is enabled, the global common subexpression
5582 elimination pass eliminates redundant loads that come after stores to the
5583 same memory location (both partial and full redundancies).
5584
5585 Not enabled at any optimization level.
5586
5587 @item -fgcse-after-reload
5588 @opindex fgcse-after-reload
5589 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5590 pass is performed after reload.  The purpose of this pass is to cleanup
5591 redundant spilling.
5592
5593 @item -funsafe-loop-optimizations
5594 @opindex funsafe-loop-optimizations
5595 If given, the loop optimizer will assume that loop indices do not
5596 overflow, and that the loops with nontrivial exit condition are not
5597 infinite.  This enables a wider range of loop optimizations even if
5598 the loop optimizer itself cannot prove that these assumptions are valid.
5599 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5600 if it finds this kind of loop.
5601
5602 @item -fcrossjumping
5603 @opindex fcrossjumping
5604 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5605 resulting code may or may not perform better than without cross-jumping.
5606
5607 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5608
5609 @item -fauto-inc-dec
5610 @opindex fauto-inc-dec
5611 Combine increments or decrements of addresses with memory accesses.
5612 This pass is always skipped on architectures that do not have
5613 instructions to support this.  Enabled by default at @option{-O} and
5614 higher on architectures that support this.
5615
5616 @item -fdce
5617 @opindex fdce
5618 Perform dead code elimination (DCE) on RTL@.
5619 Enabled by default at @option{-O} and higher.
5620
5621 @item -fdse
5622 @opindex fdse
5623 Perform dead store elimination (DSE) on RTL@.
5624 Enabled by default at @option{-O} and higher.
5625
5626 @item -fif-conversion
5627 @opindex fif-conversion
5628 Attempt to transform conditional jumps into branch-less equivalents.  This
5629 include use of conditional moves, min, max, set flags and abs instructions, and
5630 some tricks doable by standard arithmetics.  The use of conditional execution
5631 on chips where it is available is controlled by @code{if-conversion2}.
5632
5633 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5634
5635 @item -fif-conversion2
5636 @opindex fif-conversion2
5637 Use conditional execution (where available) to transform conditional jumps into
5638 branch-less equivalents.
5639
5640 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5641
5642 @item -fdelete-null-pointer-checks
5643 @opindex fdelete-null-pointer-checks
5644 Use global dataflow analysis to identify and eliminate useless checks
5645 for null pointers.  The compiler assumes that dereferencing a null
5646 pointer would have halted the program.  If a pointer is checked after
5647 it has already been dereferenced, it cannot be null.
5648
5649 In some environments, this assumption is not true, and programs can
5650 safely dereference null pointers.  Use
5651 @option{-fno-delete-null-pointer-checks} to disable this optimization
5652 for programs which depend on that behavior.
5653
5654 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5655
5656 @item -fexpensive-optimizations
5657 @opindex fexpensive-optimizations
5658 Perform a number of minor optimizations that are relatively expensive.
5659
5660 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5661
5662 @item -foptimize-register-move
5663 @itemx -fregmove
5664 @opindex foptimize-register-move
5665 @opindex fregmove
5666 Attempt to reassign register numbers in move instructions and as
5667 operands of other simple instructions in order to maximize the amount of
5668 register tying.  This is especially helpful on machines with two-operand
5669 instructions.
5670
5671 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5672 optimization.
5673
5674 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5675
5676 @item -fdelayed-branch
5677 @opindex fdelayed-branch
5678 If supported for the target machine, attempt to reorder instructions
5679 to exploit instruction slots available after delayed branch
5680 instructions.
5681
5682 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5683
5684 @item -fschedule-insns
5685 @opindex fschedule-insns
5686 If supported for the target machine, attempt to reorder instructions to
5687 eliminate execution stalls due to required data being unavailable.  This
5688 helps machines that have slow floating point or memory load instructions
5689 by allowing other instructions to be issued until the result of the load
5690 or floating point instruction is required.
5691
5692 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5693
5694 @item -fschedule-insns2
5695 @opindex fschedule-insns2
5696 Similar to @option{-fschedule-insns}, but requests an additional pass of
5697 instruction scheduling after register allocation has been done.  This is
5698 especially useful on machines with a relatively small number of
5699 registers and where memory load instructions take more than one cycle.
5700
5701 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5702
5703 @item -fno-sched-interblock
5704 @opindex fno-sched-interblock
5705 Don't schedule instructions across basic blocks.  This is normally
5706 enabled by default when scheduling before register allocation, i.e.@:
5707 with @option{-fschedule-insns} or at @option{-O2} or higher.
5708
5709 @item -fno-sched-spec
5710 @opindex fno-sched-spec
5711 Don't allow speculative motion of non-load instructions.  This is normally
5712 enabled by default when scheduling before register allocation, i.e.@:
5713 with @option{-fschedule-insns} or at @option{-O2} or higher.
5714
5715 @item -fsched-spec-load
5716 @opindex fsched-spec-load
5717 Allow speculative motion of some load instructions.  This only makes
5718 sense when scheduling before register allocation, i.e.@: with
5719 @option{-fschedule-insns} or at @option{-O2} or higher.
5720
5721 @item -fsched-spec-load-dangerous
5722 @opindex fsched-spec-load-dangerous
5723 Allow speculative motion of more load instructions.  This only makes
5724 sense when scheduling before register allocation, i.e.@: with
5725 @option{-fschedule-insns} or at @option{-O2} or higher.
5726
5727 @item -fsched-stalled-insns
5728 @itemx -fsched-stalled-insns=@var{n}
5729 @opindex fsched-stalled-insns
5730 Define how many insns (if any) can be moved prematurely from the queue
5731 of stalled insns into the ready list, during the second scheduling pass.
5732 @option{-fno-sched-stalled-insns} means that no insns will be moved
5733 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
5734 on how many queued insns can be moved prematurely.
5735 @option{-fsched-stalled-insns} without a value is equivalent to
5736 @option{-fsched-stalled-insns=1}.
5737
5738 @item -fsched-stalled-insns-dep
5739 @itemx -fsched-stalled-insns-dep=@var{n}
5740 @opindex fsched-stalled-insns-dep
5741 Define how many insn groups (cycles) will be examined for a dependency
5742 on a stalled insn that is candidate for premature removal from the queue
5743 of stalled insns.  This has an effect only during the second scheduling pass,
5744 and only if @option{-fsched-stalled-insns} is used.
5745 @option{-fno-sched-stalled-insns-dep} is equivalent to
5746 @option{-fsched-stalled-insns-dep=0}.
5747 @option{-fsched-stalled-insns-dep} without a value is equivalent to
5748 @option{-fsched-stalled-insns-dep=1}.
5749
5750 @item -fsched2-use-superblocks
5751 @opindex fsched2-use-superblocks
5752 When scheduling after register allocation, do use superblock scheduling
5753 algorithm.  Superblock scheduling allows motion across basic block boundaries
5754 resulting on faster schedules.  This option is experimental, as not all machine
5755 descriptions used by GCC model the CPU closely enough to avoid unreliable
5756 results from the algorithm.
5757
5758 This only makes sense when scheduling after register allocation, i.e.@: with
5759 @option{-fschedule-insns2} or at @option{-O2} or higher.
5760
5761 @item -fsched2-use-traces
5762 @opindex fsched2-use-traces
5763 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5764 allocation and additionally perform code duplication in order to increase the
5765 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5766 trace formation.
5767
5768 This mode should produce faster but significantly longer programs.  Also
5769 without @option{-fbranch-probabilities} the traces constructed may not
5770 match the reality and hurt the performance.  This only makes
5771 sense when scheduling after register allocation, i.e.@: with
5772 @option{-fschedule-insns2} or at @option{-O2} or higher.
5773
5774 @item -fsee
5775 @opindex fsee
5776 Eliminate redundant sign extension instructions and move the non-redundant
5777 ones to optimal placement using lazy code motion (LCM).
5778
5779 @item -freschedule-modulo-scheduled-loops
5780 @opindex freschedule-modulo-scheduled-loops
5781 The modulo scheduling comes before the traditional scheduling, if a loop
5782 was modulo scheduled we may want to prevent the later scheduling passes
5783 from changing its schedule, we use this option to control that.
5784
5785 @item -fcaller-saves
5786 @opindex fcaller-saves
5787 Enable values to be allocated in registers that will be clobbered by
5788 function calls, by emitting extra instructions to save and restore the
5789 registers around such calls.  Such allocation is done only when it
5790 seems to result in better code than would otherwise be produced.
5791
5792 This option is always enabled by default on certain machines, usually
5793 those which have no call-preserved registers to use instead.
5794
5795 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5796
5797 @item -ftree-reassoc
5798 @opindex ftree-reassoc
5799 Perform reassociation on trees.  This flag is enabled by default
5800 at @option{-O} and higher.
5801
5802 @item -ftree-pre
5803 @opindex ftree-pre
5804 Perform partial redundancy elimination (PRE) on trees.  This flag is
5805 enabled by default at @option{-O2} and @option{-O3}.
5806
5807 @item -ftree-fre
5808 @opindex ftree-fre
5809 Perform full redundancy elimination (FRE) on trees.  The difference
5810 between FRE and PRE is that FRE only considers expressions
5811 that are computed on all paths leading to the redundant computation.
5812 This analysis is faster than PRE, though it exposes fewer redundancies.
5813 This flag is enabled by default at @option{-O} and higher.
5814
5815 @item -ftree-copy-prop
5816 @opindex ftree-copy-prop
5817 Perform copy propagation on trees.  This pass eliminates unnecessary
5818 copy operations.  This flag is enabled by default at @option{-O} and
5819 higher.
5820
5821 @item -fipa-pure-const
5822 @opindex fipa-pure-const
5823 Discover which functions are pure or constant.
5824 Enabled by default at @option{-O} and higher.
5825
5826 @item -fipa-reference
5827 @opindex fipa-reference
5828 Discover which static variables do not escape cannot escape the
5829 compilation unit.
5830 Enabled by default at @option{-O} and higher.
5831
5832 @item -fipa-struct-reorg
5833 @opindex fipa-struct-reorg
5834 Perform structure reorganization optimization, that change C-like structures 
5835 layout in order to better utilize spatial locality.  This transformation is 
5836 affective for programs containing arrays of structures.  Available in two 
5837 compilation modes: profile-based (enabled with @option{-fprofile-generate})
5838 or static (which uses built-in heuristics).  Require @option{-fipa-type-escape}
5839 to provide the safety of this transformation.  It works only in whole program
5840 mode, so it requires @option{-fwhole-program} and @option{-combine} to be
5841 enabled.  Structures considered @samp{cold} by this transformation are not
5842 affected (see @option{--param struct-reorg-cold-struct-ratio=@var{value}}).
5843
5844 With this flag, the program debug info reflects a new structure layout.
5845
5846 @item -fipa-pta
5847 @opindex fipa-pta
5848 Perform interprocedural pointer analysis.  This option is experimental
5849 and does not affect generated code.
5850
5851 @item -fipa-cp
5852 @opindex fipa-cp
5853 Perform interprocedural constant propagation.
5854 This optimization analyzes the program to determine when values passed
5855 to functions are constants and then optimizes accordingly.  
5856 This optimization can substantially increase performance
5857 if the application has constants passed to functions.
5858
5859 @item -fipa-cp-clone
5860 @opindex fipa-cp-clone
5861 Perform function cloning to make interprocedural constant propagation stronger.
5862 When enabled, interprocedural constant propagation will perform function cloning
5863 when externally visible function can be called with constant arguments.
5864 Because this optimization can create multiple copies of functions,
5865 it may significantly increase code size
5866 (see @option{--param ipcp-unit-growth=@var{value}}).
5867
5868 @item -fipa-matrix-reorg
5869 @opindex fipa-matrix-reorg
5870 Perform matrix flattening and transposing.
5871 Matrix flattening tries to replace a m-dimensional matrix 
5872 with its equivalent n-dimensional matrix, where n < m.
5873 This reduces the level of indirection needed for accessing the elements
5874 of the matrix. The second optimization is matrix transposing that
5875 attemps to change the order of the matrix's dimensions in order to 
5876 improve cache locality.
5877 Both optimizations need fwhole-program flag. 
5878 Transposing is enabled only if profiling information is avaliable.
5879
5880
5881 @item -ftree-sink
5882 @opindex ftree-sink
5883 Perform forward store motion  on trees.  This flag is
5884 enabled by default at @option{-O} and higher.
5885
5886 @item -ftree-ccp
5887 @opindex ftree-ccp
5888 Perform sparse conditional constant propagation (CCP) on trees.  This
5889 pass only operates on local scalar variables and is enabled by default
5890 at @option{-O} and higher.
5891
5892 @item -ftree-store-ccp
5893 @opindex ftree-store-ccp
5894 Perform sparse conditional constant propagation (CCP) on trees.  This
5895 pass operates on both local scalar variables and memory stores and
5896 loads (global variables, structures, arrays, etc).  This flag is
5897 enabled by default at @option{-O2} and higher.
5898
5899 @item -ftree-switch-conversion
5900 Perform conversion of simple initializations in a switch to
5901 initializations from a scalar array.  This flag is enabled by default
5902 at @option{-O2} and higher.
5903
5904 @item -ftree-dce
5905 @opindex ftree-dce
5906 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5907 default at @option{-O} and higher.
5908
5909 @item -ftree-builtin-call-dce
5910 @opindex ftree-builtin-call-dce
5911 Perform conditional dead code elimination (DCE) for calls to builtin functions 
5912 that may set @code{errno} but are otherwise side-effect free.  This flag is 
5913 enabled by default at @option{-O2} and higher if @option{-Os} is not also 
5914 specified.
5915
5916 @item -ftree-dominator-opts
5917 @opindex ftree-dominator-opts
5918 Perform a variety of simple scalar cleanups (constant/copy
5919 propagation, redundancy elimination, range propagation and expression
5920 simplification) based on a dominator tree traversal.  This also
5921 performs jump threading (to reduce jumps to jumps). This flag is
5922 enabled by default at @option{-O} and higher.
5923
5924 @item -ftree-dse
5925 @opindex ftree-dse
5926 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5927 a memory location which will later be overwritten by another store without
5928 any intervening loads.  In this case the earlier store can be deleted.  This
5929 flag is enabled by default at @option{-O} and higher.
5930
5931 @item -ftree-ch
5932 @opindex ftree-ch
5933 Perform loop header copying on trees.  This is beneficial since it increases
5934 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5935 is enabled by default at @option{-O} and higher.  It is not enabled
5936 for @option{-Os}, since it usually increases code size.
5937
5938 @item -ftree-loop-optimize
5939 @opindex ftree-loop-optimize
5940 Perform loop optimizations on trees.  This flag is enabled by default
5941 at @option{-O} and higher.
5942
5943 @item -ftree-loop-linear
5944 @opindex ftree-loop-linear
5945 Perform linear loop transformations on tree.  This flag can improve cache
5946 performance and allow further loop optimizations to take place.
5947
5948 @item -fcheck-data-deps
5949 @opindex fcheck-data-deps
5950 Compare the results of several data dependence analyzers.  This option
5951 is used for debugging the data dependence analyzers.
5952
5953 @item -ftree-loop-distribution
5954 Perform loop distribution.  This flag can improve cache performance on
5955 big loop bodies and allow further loop optimizations, like
5956 parallelization or vectorization, to take place.  For example, the loop
5957 @smallexample
5958 DO I = 1, N
5959   A(I) = B(I) + C
5960   D(I) = E(I) * F
5961 ENDDO
5962 @end smallexample
5963 is transformed to
5964 @smallexample
5965 DO I = 1, N
5966    A(I) = B(I) + C
5967 ENDDO
5968 DO I = 1, N
5969    D(I) = E(I) * F
5970 ENDDO
5971 @end smallexample
5972
5973 @item -ftree-loop-im
5974 @opindex ftree-loop-im
5975 Perform loop invariant motion on trees.  This pass moves only invariants that
5976 would be hard to handle at RTL level (function calls, operations that expand to
5977 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5978 operands of conditions that are invariant out of the loop, so that we can use
5979 just trivial invariantness analysis in loop unswitching.  The pass also includes
5980 store motion.
5981
5982 @item -ftree-loop-ivcanon
5983 @opindex ftree-loop-ivcanon
5984 Create a canonical counter for number of iterations in the loop for that
5985 determining number of iterations requires complicated analysis.  Later
5986 optimizations then may determine the number easily.  Useful especially
5987 in connection with unrolling.
5988
5989 @item -fivopts
5990 @opindex fivopts
5991 Perform induction variable optimizations (strength reduction, induction
5992 variable merging and induction variable elimination) on trees.
5993
5994 @item -ftree-parallelize-loops=n
5995 @opindex ftree-parallelize-loops
5996 Parallelize loops, i.e., split their iteration space to run in n threads.
5997 This is only possible for loops whose iterations are independent
5998 and can be arbitrarily reordered.  The optimization is only
5999 profitable on multiprocessor machines, for loops that are CPU-intensive,
6000 rather than constrained e.g.@: by memory bandwidth.  This option
6001 implies @option{-pthread}, and thus is only supported on targets
6002 that have support for @option{-pthread}.
6003
6004 @item -ftree-sra
6005 @opindex ftree-sra
6006 Perform scalar replacement of aggregates.  This pass replaces structure
6007 references with scalars to prevent committing structures to memory too
6008 early.  This flag is enabled by default at @option{-O} and higher.
6009
6010 @item -ftree-copyrename
6011 @opindex ftree-copyrename
6012 Perform copy renaming on trees.  This pass attempts to rename compiler
6013 temporaries to other variables at copy locations, usually resulting in
6014 variable names which more closely resemble the original variables.  This flag
6015 is enabled by default at @option{-O} and higher.
6016
6017 @item -ftree-ter
6018 @opindex ftree-ter
6019 Perform temporary expression replacement during the SSA->normal phase.  Single
6020 use/single def temporaries are replaced at their use location with their
6021 defining expression.  This results in non-GIMPLE code, but gives the expanders
6022 much more complex trees to work on resulting in better RTL generation.  This is
6023 enabled by default at @option{-O} and higher.
6024
6025 @item -ftree-vectorize
6026 @opindex ftree-vectorize
6027 Perform loop vectorization on trees. This flag is enabled by default at
6028 @option{-O3}.
6029
6030 @item -ftree-vect-loop-version
6031 @opindex ftree-vect-loop-version
6032 Perform loop versioning when doing loop vectorization on trees.  When a loop
6033 appears to be vectorizable except that data alignment or data dependence cannot
6034 be determined at compile time then vectorized and non-vectorized versions of
6035 the loop are generated along with runtime checks for alignment or dependence
6036 to control which version is executed.  This option is enabled by default
6037 except at level @option{-Os} where it is disabled.
6038
6039 @item -fvect-cost-model
6040 @opindex fvect-cost-model
6041 Enable cost model for vectorization.
6042
6043 @item -ftree-vrp
6044 @opindex ftree-vrp
6045 Perform Value Range Propagation on trees.  This is similar to the
6046 constant propagation pass, but instead of values, ranges of values are
6047 propagated.  This allows the optimizers to remove unnecessary range
6048 checks like array bound checks and null pointer checks.  This is
6049 enabled by default at @option{-O2} and higher.  Null pointer check
6050 elimination is only done if @option{-fdelete-null-pointer-checks} is
6051 enabled.
6052
6053 @item -ftracer
6054 @opindex ftracer
6055 Perform tail duplication to enlarge superblock size.  This transformation
6056 simplifies the control flow of the function allowing other optimizations to do
6057 better job.
6058
6059 @item -funroll-loops
6060 @opindex funroll-loops
6061 Unroll loops whose number of iterations can be determined at compile
6062 time or upon entry to the loop.  @option{-funroll-loops} implies
6063 @option{-frerun-cse-after-loop}.  This option makes code larger,
6064 and may or may not make it run faster.
6065
6066 @item -funroll-all-loops
6067 @opindex funroll-all-loops
6068 Unroll all loops, even if their number of iterations is uncertain when
6069 the loop is entered.  This usually makes programs run more slowly.
6070 @option{-funroll-all-loops} implies the same options as
6071 @option{-funroll-loops},
6072
6073 @item -fsplit-ivs-in-unroller
6074 @opindex fsplit-ivs-in-unroller
6075 Enables expressing of values of induction variables in later iterations
6076 of the unrolled loop using the value in the first iteration.  This breaks
6077 long dependency chains, thus improving efficiency of the scheduling passes.
6078
6079 Combination of @option{-fweb} and CSE is often sufficient to obtain the
6080 same effect.  However in cases the loop body is more complicated than
6081 a single basic block, this is not reliable.  It also does not work at all
6082 on some of the architectures due to restrictions in the CSE pass.
6083
6084 This optimization is enabled by default.
6085
6086 @item -fvariable-expansion-in-unroller
6087 @opindex fvariable-expansion-in-unroller
6088 With this option, the compiler will create multiple copies of some
6089 local variables when unrolling a loop which can result in superior code.
6090
6091 @item -fpredictive-commoning
6092 @opindex fpredictive-commoning
6093 Perform predictive commoning optimization, i.e., reusing computations
6094 (especially memory loads and stores) performed in previous
6095 iterations of loops.
6096
6097 This option is enabled at level @option{-O3}.
6098
6099 @item -fprefetch-loop-arrays
6100 @opindex fprefetch-loop-arrays
6101 If supported by the target machine, generate instructions to prefetch
6102 memory to improve the performance of loops that access large arrays.
6103
6104 This option may generate better or worse code; results are highly
6105 dependent on the structure of loops within the source code.
6106
6107 Disabled at level @option{-Os}.
6108
6109 @item -fno-peephole
6110 @itemx -fno-peephole2
6111 @opindex fno-peephole
6112 @opindex fno-peephole2
6113 Disable any machine-specific peephole optimizations.  The difference
6114 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
6115 are implemented in the compiler; some targets use one, some use the
6116 other, a few use both.
6117
6118 @option{-fpeephole} is enabled by default.
6119 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6120
6121 @item -fno-guess-branch-probability
6122 @opindex fno-guess-branch-probability
6123 Do not guess branch probabilities using heuristics.
6124
6125 GCC will use heuristics to guess branch probabilities if they are
6126 not provided by profiling feedback (@option{-fprofile-arcs}).  These
6127 heuristics are based on the control flow graph.  If some branch probabilities
6128 are specified by @samp{__builtin_expect}, then the heuristics will be
6129 used to guess branch probabilities for the rest of the control flow graph,
6130 taking the @samp{__builtin_expect} info into account.  The interactions
6131 between the heuristics and @samp{__builtin_expect} can be complex, and in
6132 some cases, it may be useful to disable the heuristics so that the effects
6133 of @samp{__builtin_expect} are easier to understand.
6134
6135 The default is @option{-fguess-branch-probability} at levels
6136 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6137
6138 @item -freorder-blocks
6139 @opindex freorder-blocks
6140 Reorder basic blocks in the compiled function in order to reduce number of
6141 taken branches and improve code locality.
6142
6143 Enabled at levels @option{-O2}, @option{-O3}.
6144
6145 @item -freorder-blocks-and-partition
6146 @opindex freorder-blocks-and-partition
6147 In addition to reordering basic blocks in the compiled function, in order
6148 to reduce number of taken branches, partitions hot and cold basic blocks
6149 into separate sections of the assembly and .o files, to improve
6150 paging and cache locality performance.
6151
6152 This optimization is automatically turned off in the presence of
6153 exception handling, for linkonce sections, for functions with a user-defined
6154 section attribute and on any architecture that does not support named
6155 sections.
6156
6157 @item -freorder-functions
6158 @opindex freorder-functions
6159 Reorder functions in the object file in order to
6160 improve code locality.  This is implemented by using special
6161 subsections @code{.text.hot} for most frequently executed functions and
6162 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
6163 the linker so object file format must support named sections and linker must
6164 place them in a reasonable way.
6165
6166 Also profile feedback must be available in to make this option effective.  See
6167 @option{-fprofile-arcs} for details.
6168
6169 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6170
6171 @item -fstrict-aliasing
6172 @opindex fstrict-aliasing
6173 Allows the compiler to assume the strictest aliasing rules applicable to
6174 the language being compiled.  For C (and C++), this activates
6175 optimizations based on the type of expressions.  In particular, an
6176 object of one type is assumed never to reside at the same address as an
6177 object of a different type, unless the types are almost the same.  For
6178 example, an @code{unsigned int} can alias an @code{int}, but not a
6179 @code{void*} or a @code{double}.  A character type may alias any other
6180 type.
6181
6182 @anchor{Type-punning}Pay special attention to code like this:
6183 @smallexample
6184 union a_union @{
6185   int i;
6186   double d;
6187 @};
6188
6189 int f() @{
6190   a_union t;
6191   t.d = 3.0;
6192   return t.i;
6193 @}
6194 @end smallexample
6195 The practice of reading from a different union member than the one most
6196 recently written to (called ``type-punning'') is common.  Even with
6197 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
6198 is accessed through the union type.  So, the code above will work as
6199 expected.  @xref{Structures unions enumerations and bit-fields
6200 implementation}.  However, this code might not:
6201 @smallexample
6202 int f() @{
6203   a_union t;
6204   int* ip;
6205   t.d = 3.0;
6206   ip = &t.i;
6207   return *ip;
6208 @}
6209 @end smallexample
6210
6211 Similarly, access by taking the address, casting the resulting pointer
6212 and dereferencing the result has undefined behavior, even if the cast
6213 uses a union type, e.g.:
6214 @smallexample
6215 int f() @{
6216   double d = 3.0;
6217   return ((union a_union *) &d)->i;
6218 @}
6219 @end smallexample
6220
6221 The @option{-fstrict-aliasing} option is enabled at levels
6222 @option{-O2}, @option{-O3}, @option{-Os}.
6223
6224 @item -fstrict-overflow
6225 @opindex fstrict-overflow
6226 Allow the compiler to assume strict signed overflow rules, depending
6227 on the language being compiled.  For C (and C++) this means that
6228 overflow when doing arithmetic with signed numbers is undefined, which
6229 means that the compiler may assume that it will not happen.  This
6230 permits various optimizations.  For example, the compiler will assume
6231 that an expression like @code{i + 10 > i} will always be true for
6232 signed @code{i}.  This assumption is only valid if signed overflow is
6233 undefined, as the expression is false if @code{i + 10} overflows when
6234 using twos complement arithmetic.  When this option is in effect any
6235 attempt to determine whether an operation on signed numbers will
6236 overflow must be written carefully to not actually involve overflow.
6237
6238 This option also allows the compiler to assume strict pointer
6239 semantics: given a pointer to an object, if adding an offset to that
6240 pointer does not produce a pointer to the same object, the addition is
6241 undefined.  This permits the compiler to conclude that @code{p + u >
6242 p} is always true for a pointer @code{p} and unsigned integer
6243 @code{u}.  This assumption is only valid because pointer wraparound is
6244 undefined, as the expression is false if @code{p + u} overflows using
6245 twos complement arithmetic.
6246
6247 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
6248 that integer signed overflow is fully defined: it wraps.  When
6249 @option{-fwrapv} is used, there is no difference between
6250 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
6251 integers.  With @option{-fwrapv} certain types of overflow are
6252 permitted.  For example, if the compiler gets an overflow when doing
6253 arithmetic on constants, the overflowed value can still be used with
6254 @option{-fwrapv}, but not otherwise.
6255
6256 The @option{-fstrict-overflow} option is enabled at levels
6257 @option{-O2}, @option{-O3}, @option{-Os}.
6258
6259 @item -falign-functions
6260 @itemx -falign-functions=@var{n}
6261 @opindex falign-functions
6262 Align the start of functions to the next power-of-two greater than
6263 @var{n}, skipping up to @var{n} bytes.  For instance,
6264 @option{-falign-functions=32} aligns functions to the next 32-byte
6265 boundary, but @option{-falign-functions=24} would align to the next
6266 32-byte boundary only if this can be done by skipping 23 bytes or less.
6267
6268 @option{-fno-align-functions} and @option{-falign-functions=1} are
6269 equivalent and mean that functions will not be aligned.
6270
6271 Some assemblers only support this flag when @var{n} is a power of two;
6272 in that case, it is rounded up.
6273
6274 If @var{n} is not specified or is zero, use a machine-dependent default.
6275
6276 Enabled at levels @option{-O2}, @option{-O3}.
6277
6278 @item -falign-labels
6279 @itemx -falign-labels=@var{n}
6280 @opindex falign-labels
6281 Align all branch targets to a power-of-two boundary, skipping up to
6282 @var{n} bytes like @option{-falign-functions}.  This option can easily
6283 make code slower, because it must insert dummy operations for when the
6284 branch target is reached in the usual flow of the code.
6285
6286 @option{-fno-align-labels} and @option{-falign-labels=1} are
6287 equivalent and mean that labels will not be aligned.
6288
6289 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6290 are greater than this value, then their values are used instead.
6291
6292 If @var{n} is not specified or is zero, use a machine-dependent default
6293 which is very likely to be @samp{1}, meaning no alignment.
6294
6295 Enabled at levels @option{-O2}, @option{-O3}.
6296
6297 @item -falign-loops
6298 @itemx -falign-loops=@var{n}
6299 @opindex falign-loops
6300 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6301 like @option{-falign-functions}.  The hope is that the loop will be
6302 executed many times, which will make up for any execution of the dummy
6303 operations.
6304
6305 @option{-fno-align-loops} and @option{-falign-loops=1} are
6306 equivalent and mean that loops will not be aligned.
6307
6308 If @var{n} is not specified or is zero, use a machine-dependent default.
6309
6310 Enabled at levels @option{-O2}, @option{-O3}.
6311
6312 @item -falign-jumps
6313 @itemx -falign-jumps=@var{n}
6314 @opindex falign-jumps
6315 Align branch targets to a power-of-two boundary, for branch targets
6316 where the targets can only be reached by jumping, skipping up to @var{n}
6317 bytes like @option{-falign-functions}.  In this case, no dummy operations
6318 need be executed.
6319
6320 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6321 equivalent and mean that loops will not be aligned.
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 -funit-at-a-time
6328 @opindex funit-at-a-time
6329 This option is left for compatibility reasons. @option{-funit-at-a-time}
6330 has no effect, while @option{-fno-unit-at-a-time} implies
6331 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
6332
6333 Enabled by default.
6334
6335 @item -fno-toplevel-reorder
6336 @opindex fno-toplevel-reorder
6337 Do not reorder top-level functions, variables, and @code{asm}
6338 statements.  Output them in the same order that they appear in the
6339 input file.  When this option is used, unreferenced static variables
6340 will not be removed.  This option is intended to support existing code
6341 which relies on a particular ordering.  For new code, it is better to
6342 use attributes.
6343
6344 Enabled at level @option{-O0}.  When disabled explicitly, it also imply
6345 @option{-fno-section-anchors} that is otherwise enabled at @option{-O0} on some
6346 targets.
6347
6348 @item -fweb
6349 @opindex fweb
6350 Constructs webs as commonly used for register allocation purposes and assign
6351 each web individual pseudo register.  This allows the register allocation pass
6352 to operate on pseudos directly, but also strengthens several other optimization
6353 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6354 however, make debugging impossible, since variables will no longer stay in a
6355 ``home register''.
6356
6357 Enabled by default with @option{-funroll-loops}.
6358
6359 @item -fwhole-program
6360 @opindex fwhole-program
6361 Assume that the current compilation unit represents whole program being
6362 compiled.  All public functions and variables with the exception of @code{main}
6363 and those merged by attribute @code{externally_visible} become static functions
6364 and in a affect gets more aggressively optimized by interprocedural optimizers.
6365 While this option is equivalent to proper use of @code{static} keyword for
6366 programs consisting of single file, in combination with option
6367 @option{--combine} this flag can be used to compile most of smaller scale C
6368 programs since the functions and variables become local for the whole combined
6369 compilation unit, not for the single source file itself.
6370
6371 This option is not supported for Fortran programs.
6372
6373 @item -fcprop-registers
6374 @opindex fcprop-registers
6375 After register allocation and post-register allocation instruction splitting,
6376 we perform a copy-propagation pass to try to reduce scheduling dependencies
6377 and occasionally eliminate the copy.
6378
6379 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6380
6381 @item -fprofile-correction
6382 @opindex fprofile-correction
6383 Profiles collected using an instrumented binary for multi-threaded programs may
6384 be inconsistent due to missed counter updates. When this option is specified,
6385 GCC will use heuristics to correct or smooth out such inconsistencies. By
6386 default, GCC will emit an error message when an inconsistent profile is detected.
6387
6388 @item -fprofile-dir=@var{path}
6389 @opindex fprofile-dir
6390
6391 Set the directory to search the profile data files in to @var{path}.
6392 This option affects only the profile data generated by
6393 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
6394 and used by @option{-fprofile-use} and @option{-fbranch-probabilities} 
6395 and its related options.
6396 By default, GCC will use the current directory as @var{path}
6397 thus the profile data file will appear in the same directory as the object file.
6398
6399 @item -fprofile-generate
6400 @itemx -fprofile-generate=@var{path}
6401 @opindex fprofile-generate
6402
6403 Enable options usually used for instrumenting application to produce
6404 profile useful for later recompilation with profile feedback based
6405 optimization.  You must use @option{-fprofile-generate} both when
6406 compiling and when linking your program.
6407
6408 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6409
6410 If @var{path} is specified, GCC will look at the @var{path} to find
6411 the profile feeedback data files. See @option{-fprofile-dir}.
6412
6413 @item -fprofile-use
6414 @itemx -fprofile-use=@var{path}
6415 @opindex fprofile-use
6416 Enable profile feedback directed optimizations, and optimizations
6417 generally profitable only with profile feedback available.
6418
6419 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6420 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6421
6422 By default, GCC emits an error message if the feedback profiles do not
6423 match the source code.  This error can be turned into a warning by using
6424 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6425 code.
6426
6427 If @var{path} is specified, GCC will look at the @var{path} to find
6428 the profile feedback data files. See @option{-fprofile-dir}.
6429 @end table
6430
6431 The following options control compiler behavior regarding floating
6432 point arithmetic.  These options trade off between speed and
6433 correctness.  All must be specifically enabled.
6434
6435 @table @gcctabopt
6436 @item -ffloat-store
6437 @opindex ffloat-store
6438 Do not store floating point variables in registers, and inhibit other
6439 options that might change whether a floating point value is taken from a
6440 register or memory.
6441
6442 @cindex floating point precision
6443 This option prevents undesirable excess precision on machines such as
6444 the 68000 where the floating registers (of the 68881) keep more
6445 precision than a @code{double} is supposed to have.  Similarly for the
6446 x86 architecture.  For most programs, the excess precision does only
6447 good, but a few programs rely on the precise definition of IEEE floating
6448 point.  Use @option{-ffloat-store} for such programs, after modifying
6449 them to store all pertinent intermediate computations into variables.
6450
6451 @item -ffast-math
6452 @opindex ffast-math
6453 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
6454 @option{-ffinite-math-only}, @option{-fno-rounding-math},
6455 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
6456
6457 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6458
6459 This option is not turned on by any @option{-O} option since
6460 it can result in incorrect output for programs which depend on
6461 an exact implementation of IEEE or ISO rules/specifications for
6462 math functions. It may, however, yield faster code for programs
6463 that do not require the guarantees of these specifications.
6464
6465 @item -fno-math-errno
6466 @opindex fno-math-errno
6467 Do not set ERRNO after calling math functions that are executed
6468 with a single instruction, e.g., sqrt.  A program that relies on
6469 IEEE exceptions for math error handling may want to use this flag
6470 for speed while maintaining IEEE arithmetic compatibility.
6471
6472 This option is not turned on by any @option{-O} option since
6473 it can result in incorrect output for programs which depend on
6474 an exact implementation of IEEE or ISO rules/specifications for
6475 math functions. It may, however, yield faster code for programs
6476 that do not require the guarantees of these specifications.
6477
6478 The default is @option{-fmath-errno}.
6479
6480 On Darwin systems, the math library never sets @code{errno}.  There is
6481 therefore no reason for the compiler to consider the possibility that
6482 it might, and @option{-fno-math-errno} is the default.
6483
6484 @item -funsafe-math-optimizations
6485 @opindex funsafe-math-optimizations
6486
6487 Allow optimizations for floating-point arithmetic that (a) assume
6488 that arguments and results are valid and (b) may violate IEEE or
6489 ANSI standards.  When used at link-time, it may include libraries
6490 or startup files that change the default FPU control word or other
6491 similar optimizations.
6492
6493 This option is not turned on by any @option{-O} option since
6494 it can result in incorrect output for programs which depend on
6495 an exact implementation of IEEE or ISO rules/specifications for
6496 math functions. It may, however, yield faster code for programs
6497 that do not require the guarantees of these specifications.
6498 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
6499 @option{-fassociative-math} and @option{-freciprocal-math}.
6500
6501 The default is @option{-fno-unsafe-math-optimizations}.
6502
6503 @item -fassociative-math
6504 @opindex fassociative-math
6505
6506 Allow re-association of operands in series of floating-point operations.
6507 This violates the ISO C and C++ language standard by possibly changing
6508 computation result.  NOTE: re-ordering may change the sign of zero as
6509 well as ignore NaNs and inhibit or create underflow or overflow (and
6510 thus cannot be used on a code which relies on rounding behavior like
6511 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6512 and thus may not be used when ordered comparisons are required.
6513 This option requires that both @option{-fno-signed-zeros} and
6514 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
6515 much sense with @option{-frounding-math}.
6516
6517 The default is @option{-fno-associative-math}.
6518
6519 @item -freciprocal-math
6520 @opindex freciprocal-math
6521
6522 Allow the reciprocal of a value to be used instead of dividing by
6523 the value if this enables optimizations.  For example @code{x / y}
6524 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6525 is subject to common subexpression elimination.  Note that this loses
6526 precision and increases the number of flops operating on the value.
6527
6528 The default is @option{-fno-reciprocal-math}.
6529
6530 @item -ffinite-math-only
6531 @opindex ffinite-math-only
6532 Allow optimizations for floating-point arithmetic that assume
6533 that arguments and results are not NaNs or +-Infs.
6534
6535 This option is not turned on by any @option{-O} option since
6536 it can result in incorrect output for programs which depend on
6537 an exact implementation of IEEE or ISO rules/specifications for
6538 math functions. It may, however, yield faster code for programs
6539 that do not require the guarantees of these specifications.
6540
6541 The default is @option{-fno-finite-math-only}.
6542
6543 @item -fno-signed-zeros
6544 @opindex fno-signed-zeros
6545 Allow optimizations for floating point arithmetic that ignore the
6546 signedness of zero.  IEEE arithmetic specifies the behavior of
6547 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6548 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6549 This option implies that the sign of a zero result isn't significant.
6550
6551 The default is @option{-fsigned-zeros}.
6552
6553 @item -fno-trapping-math
6554 @opindex fno-trapping-math
6555 Compile code assuming that floating-point operations cannot generate
6556 user-visible traps.  These traps include division by zero, overflow,
6557 underflow, inexact result and invalid operation.  This option requires
6558 that @option{-fno-signaling-nans} be in effect.  Setting this option may
6559 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
6560
6561 This option should never be turned on by any @option{-O} option since
6562 it can result in incorrect output for programs which depend on
6563 an exact implementation of IEEE or ISO rules/specifications for
6564 math functions.
6565
6566 The default is @option{-ftrapping-math}.
6567
6568 @item -frounding-math
6569 @opindex frounding-math
6570 Disable transformations and optimizations that assume default floating
6571 point rounding behavior.  This is round-to-zero for all floating point
6572 to integer conversions, and round-to-nearest for all other arithmetic
6573 truncations.  This option should be specified for programs that change
6574 the FP rounding mode dynamically, or that may be executed with a
6575 non-default rounding mode.  This option disables constant folding of
6576 floating point expressions at compile-time (which may be affected by
6577 rounding mode) and arithmetic transformations that are unsafe in the
6578 presence of sign-dependent rounding modes.
6579
6580 The default is @option{-fno-rounding-math}.
6581
6582 This option is experimental and does not currently guarantee to
6583 disable all GCC optimizations that are affected by rounding mode.
6584 Future versions of GCC may provide finer control of this setting
6585 using C99's @code{FENV_ACCESS} pragma.  This command line option
6586 will be used to specify the default state for @code{FENV_ACCESS}.
6587
6588 @item -frtl-abstract-sequences
6589 @opindex frtl-abstract-sequences
6590 It is a size optimization method. This option is to find identical
6591 sequences of code, which can be turned into pseudo-procedures  and
6592 then  replace  all  occurrences with  calls to  the  newly created
6593 subroutine. It is kind of an opposite of @option{-finline-functions}.
6594 This optimization runs at RTL level.
6595
6596 @item -fsignaling-nans
6597 @opindex fsignaling-nans
6598 Compile code assuming that IEEE signaling NaNs may generate user-visible
6599 traps during floating-point operations.  Setting this option disables
6600 optimizations that may change the number of exceptions visible with
6601 signaling NaNs.  This option implies @option{-ftrapping-math}.
6602
6603 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6604 be defined.
6605
6606 The default is @option{-fno-signaling-nans}.
6607
6608 This option is experimental and does not currently guarantee to
6609 disable all GCC optimizations that affect signaling NaN behavior.
6610
6611 @item -fsingle-precision-constant
6612 @opindex fsingle-precision-constant
6613 Treat floating point constant as single precision constant instead of
6614 implicitly converting it to double precision constant.
6615
6616 @item -fcx-limited-range
6617 @opindex fcx-limited-range
6618 When enabled, this option states that a range reduction step is not
6619 needed when performing complex division.  Also, there is no checking
6620 whether the result of a complex multiplication or division is @code{NaN
6621 + I*NaN}, with an attempt to rescue the situation in that case.  The
6622 default is @option{-fno-cx-limited-range}, but is enabled by
6623 @option{-ffast-math}.
6624
6625 This option controls the default setting of the ISO C99
6626 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6627 all languages.
6628
6629 @item -fcx-fortran-rules
6630 @opindex fcx-fortran-rules
6631 Complex multiplication and division follow Fortran rules.  Range
6632 reduction is done as part of complex division, but there is no checking
6633 whether the result of a complex multiplication or division is @code{NaN
6634 + I*NaN}, with an attempt to rescue the situation in that case.
6635
6636 The default is @option{-fno-cx-fortran-rules}.
6637
6638 @end table
6639
6640 The following options control optimizations that may improve
6641 performance, but are not enabled by any @option{-O} options.  This
6642 section includes experimental options that may produce broken code.
6643
6644 @table @gcctabopt
6645 @item -fbranch-probabilities
6646 @opindex fbranch-probabilities
6647 After running a program compiled with @option{-fprofile-arcs}
6648 (@pxref{Debugging Options,, Options for Debugging Your Program or
6649 @command{gcc}}), you can compile it a second time using
6650 @option{-fbranch-probabilities}, to improve optimizations based on
6651 the number of times each branch was taken.  When the program
6652 compiled with @option{-fprofile-arcs} exits it saves arc execution
6653 counts to a file called @file{@var{sourcename}.gcda} for each source
6654 file.  The information in this data file is very dependent on the
6655 structure of the generated code, so you must use the same source code
6656 and the same optimization options for both compilations.
6657
6658 With @option{-fbranch-probabilities}, GCC puts a
6659 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6660 These can be used to improve optimization.  Currently, they are only
6661 used in one place: in @file{reorg.c}, instead of guessing which path a
6662 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6663 exactly determine which path is taken more often.
6664
6665 @item -fprofile-values
6666 @opindex fprofile-values
6667 If combined with @option{-fprofile-arcs}, it adds code so that some
6668 data about values of expressions in the program is gathered.
6669
6670 With @option{-fbranch-probabilities}, it reads back the data gathered
6671 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6672 notes to instructions for their later usage in optimizations.
6673
6674 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6675
6676 @item -fvpt
6677 @opindex fvpt
6678 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6679 a code to gather information about values of expressions.
6680
6681 With @option{-fbranch-probabilities}, it reads back the data gathered
6682 and actually performs the optimizations based on them.
6683 Currently the optimizations include specialization of division operation
6684 using the knowledge about the value of the denominator.
6685
6686 @item -frename-registers
6687 @opindex frename-registers
6688 Attempt to avoid false dependencies in scheduled code by making use
6689 of registers left over after register allocation.  This optimization
6690 will most benefit processors with lots of registers.  Depending on the
6691 debug information format adopted by the target, however, it can
6692 make debugging impossible, since variables will no longer stay in
6693 a ``home register''.
6694
6695 Enabled by default with @option{-funroll-loops}.
6696
6697 @item -ftracer
6698 @opindex ftracer
6699 Perform tail duplication to enlarge superblock size.  This transformation
6700 simplifies the control flow of the function allowing other optimizations to do
6701 better job.
6702
6703 Enabled with @option{-fprofile-use}.
6704
6705 @item -funroll-loops
6706 @opindex funroll-loops
6707 Unroll loops whose number of iterations can be determined at compile time or
6708 upon entry to the loop.  @option{-funroll-loops} implies
6709 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6710 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6711 small constant number of iterations).  This option makes code larger, and may
6712 or may not make it run faster.
6713
6714 Enabled with @option{-fprofile-use}.
6715
6716 @item -funroll-all-loops
6717 @opindex funroll-all-loops
6718 Unroll all loops, even if their number of iterations is uncertain when
6719 the loop is entered.  This usually makes programs run more slowly.
6720 @option{-funroll-all-loops} implies the same options as
6721 @option{-funroll-loops}.
6722
6723 @item -fpeel-loops
6724 @opindex fpeel-loops
6725 Peels the loops for that there is enough information that they do not
6726 roll much (from profile feedback).  It also turns on complete loop peeling
6727 (i.e.@: complete removal of loops with small constant number of iterations).
6728
6729 Enabled with @option{-fprofile-use}.
6730
6731 @item -fmove-loop-invariants
6732 @opindex fmove-loop-invariants
6733 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6734 at level @option{-O1}
6735
6736 @item -funswitch-loops
6737 @opindex funswitch-loops
6738 Move branches with loop invariant conditions out of the loop, with duplicates
6739 of the loop on both branches (modified according to result of the condition).
6740
6741 @item -ffunction-sections
6742 @itemx -fdata-sections
6743 @opindex ffunction-sections
6744 @opindex fdata-sections
6745 Place each function or data item into its own section in the output
6746 file if the target supports arbitrary sections.  The name of the
6747 function or the name of the data item determines the section's name
6748 in the output file.
6749
6750 Use these options on systems where the linker can perform optimizations
6751 to improve locality of reference in the instruction space.  Most systems
6752 using the ELF object format and SPARC processors running Solaris 2 have
6753 linkers with such optimizations.  AIX may have these optimizations in
6754 the future.
6755
6756 Only use these options when there are significant benefits from doing
6757 so.  When you specify these options, the assembler and linker will
6758 create larger object and executable files and will also be slower.
6759 You will not be able to use @code{gprof} on all systems if you
6760 specify this option and you may have problems with debugging if
6761 you specify both this option and @option{-g}.
6762
6763 @item -fbranch-target-load-optimize
6764 @opindex fbranch-target-load-optimize
6765 Perform branch target register load optimization before prologue / epilogue
6766 threading.
6767 The use of target registers can typically be exposed only during reload,
6768 thus hoisting loads out of loops and doing inter-block scheduling needs
6769 a separate optimization pass.
6770
6771 @item -fbranch-target-load-optimize2
6772 @opindex fbranch-target-load-optimize2
6773 Perform branch target register load optimization after prologue / epilogue
6774 threading.
6775
6776 @item -fbtr-bb-exclusive
6777 @opindex fbtr-bb-exclusive
6778 When performing branch target register load optimization, don't reuse
6779 branch target registers in within any basic block.
6780
6781 @item -fstack-protector
6782 @opindex fstack-protector
6783 Emit extra code to check for buffer overflows, such as stack smashing
6784 attacks.  This is done by adding a guard variable to functions with
6785 vulnerable objects.  This includes functions that call alloca, and
6786 functions with buffers larger than 8 bytes.  The guards are initialized
6787 when a function is entered and then checked when the function exits.
6788 If a guard check fails, an error message is printed and the program exits.
6789
6790 @item -fstack-protector-all
6791 @opindex fstack-protector-all
6792 Like @option{-fstack-protector} except that all functions are protected.
6793
6794 @item -fsection-anchors
6795 @opindex fsection-anchors
6796 Try to reduce the number of symbolic address calculations by using
6797 shared ``anchor'' symbols to address nearby objects.  This transformation
6798 can help to reduce the number of GOT entries and GOT accesses on some
6799 targets.
6800
6801 For example, the implementation of the following function @code{foo}:
6802
6803 @smallexample
6804 static int a, b, c;
6805 int foo (void) @{ return a + b + c; @}
6806 @end smallexample
6807
6808 would usually calculate the addresses of all three variables, but if you
6809 compile it with @option{-fsection-anchors}, it will access the variables
6810 from a common anchor point instead.  The effect is similar to the
6811 following pseudocode (which isn't valid C):
6812
6813 @smallexample
6814 int foo (void)
6815 @{
6816   register int *xr = &x;
6817   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6818 @}
6819 @end smallexample
6820
6821 Not all targets support this option.
6822
6823 @item --param @var{name}=@var{value}
6824 @opindex param
6825 In some places, GCC uses various constants to control the amount of
6826 optimization that is done.  For example, GCC will not inline functions
6827 that contain more that a certain number of instructions.  You can
6828 control some of these constants on the command-line using the
6829 @option{--param} option.
6830
6831 The names of specific parameters, and the meaning of the values, are
6832 tied to the internals of the compiler, and are subject to change
6833 without notice in future releases.
6834
6835 In each case, the @var{value} is an integer.  The allowable choices for
6836 @var{name} are given in the following table:
6837
6838 @table @gcctabopt
6839 @item sra-max-structure-size
6840 The maximum structure size, in bytes, at which the scalar replacement
6841 of aggregates (SRA) optimization will perform block copies.  The
6842 default value, 0, implies that GCC will select the most appropriate
6843 size itself.
6844
6845 @item sra-field-structure-ratio
6846 The threshold ratio (as a percentage) between instantiated fields and
6847 the complete structure size.  We say that if the ratio of the number
6848 of bytes in instantiated fields to the number of bytes in the complete
6849 structure exceeds this parameter, then block copies are not used.  The
6850 default is 75.
6851
6852 @item struct-reorg-cold-struct-ratio
6853 The threshold ratio (as a percentage) between a structure frequency
6854 and the frequency of the hottest structure in the program.  This parameter
6855 is used by struct-reorg optimization enabled by @option{-fipa-struct-reorg}.
6856 We say that if the ratio of a structure frequency, calculated by profiling, 
6857 to the hottest structure frequency in the program is less than this 
6858 parameter, then structure reorganization is not applied to this structure.
6859 The default is 10.
6860
6861 @item max-crossjump-edges
6862 The maximum number of incoming edges to consider for crossjumping.
6863 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6864 the number of edges incoming to each block.  Increasing values mean
6865 more aggressive optimization, making the compile time increase with
6866 probably small improvement in executable size.
6867
6868 @item min-crossjump-insns
6869 The minimum number of instructions which must be matched at the end
6870 of two blocks before crossjumping will be performed on them.  This
6871 value is ignored in the case where all instructions in the block being
6872 crossjumped from are matched.  The default value is 5.
6873
6874 @item max-grow-copy-bb-insns
6875 The maximum code size expansion factor when copying basic blocks
6876 instead of jumping.  The expansion is relative to a jump instruction.
6877 The default value is 8.
6878
6879 @item max-goto-duplication-insns
6880 The maximum number of instructions to duplicate to a block that jumps
6881 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6882 passes, GCC factors computed gotos early in the compilation process,
6883 and unfactors them as late as possible.  Only computed jumps at the
6884 end of a basic blocks with no more than max-goto-duplication-insns are
6885 unfactored.  The default value is 8.
6886
6887 @item max-delay-slot-insn-search
6888 The maximum number of instructions to consider when looking for an
6889 instruction to fill a delay slot.  If more than this arbitrary number of
6890 instructions is searched, the time savings from filling the delay slot
6891 will be minimal so stop searching.  Increasing values mean more
6892 aggressive optimization, making the compile time increase with probably
6893 small improvement in executable run time.
6894
6895 @item max-delay-slot-live-search
6896 When trying to fill delay slots, the maximum number of instructions to
6897 consider when searching for a block with valid live register
6898 information.  Increasing this arbitrarily chosen value means more
6899 aggressive optimization, increasing the compile time.  This parameter
6900 should be removed when the delay slot code is rewritten to maintain the
6901 control-flow graph.
6902
6903 @item max-gcse-memory
6904 The approximate maximum amount of memory that will be allocated in
6905 order to perform the global common subexpression elimination
6906 optimization.  If more memory than specified is required, the
6907 optimization will not be done.
6908
6909 @item max-gcse-passes
6910 The maximum number of passes of GCSE to run.  The default is 1.
6911
6912 @item max-pending-list-length
6913 The maximum number of pending dependencies scheduling will allow
6914 before flushing the current state and starting over.  Large functions
6915 with few branches or calls can create excessively large lists which
6916 needlessly consume memory and resources.
6917
6918 @item max-inline-insns-single
6919 Several parameters control the tree inliner used in gcc.
6920 This number sets the maximum number of instructions (counted in GCC's
6921 internal representation) in a single function that the tree inliner
6922 will consider for inlining.  This only affects functions declared
6923 inline and methods implemented in a class declaration (C++).
6924 The default value is 450.
6925
6926 @item max-inline-insns-auto
6927 When you use @option{-finline-functions} (included in @option{-O3}),
6928 a lot of functions that would otherwise not be considered for inlining
6929 by the compiler will be investigated.  To those functions, a different
6930 (more restrictive) limit compared to functions declared inline can
6931 be applied.
6932 The default value is 90.
6933
6934 @item large-function-insns
6935 The limit specifying really large functions.  For functions larger than this
6936 limit after inlining inlining is constrained by
6937 @option{--param large-function-growth}.  This parameter is useful primarily
6938 to avoid extreme compilation time caused by non-linear algorithms used by the
6939 backend.
6940 The default value is 2700.
6941
6942 @item large-function-growth
6943 Specifies maximal growth of large function caused by inlining in percents.
6944 The default value is 100 which limits large function growth to 2.0 times
6945 the original size.
6946
6947 @item large-unit-insns
6948 The limit specifying large translation unit.  Growth caused by inlining of
6949 units larger than this limit is limited by @option{--param inline-unit-growth}.
6950 For small units this might be too tight (consider unit consisting of function A
6951 that is inline and B that just calls A three time.  If B is small relative to
6952 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6953 large units consisting of small inlineable functions however the overall unit
6954 growth limit is needed to avoid exponential explosion of code size.  Thus for
6955 smaller units, the size is increased to @option{--param large-unit-insns}
6956 before applying @option{--param inline-unit-growth}.  The default is 10000
6957
6958 @item inline-unit-growth
6959 Specifies maximal overall growth of the compilation unit caused by inlining.
6960 The default value is 30 which limits unit growth to 1.3 times the original
6961 size.
6962
6963 @item ipcp-unit-growth
6964 Specifies maximal overall growth of the compilation unit caused by
6965 interprocedural constant propagation.  The default value is 10 which limits
6966 unit growth to 1.1 times the original size.
6967
6968 @item large-stack-frame
6969 The limit specifying large stack frames.  While inlining the algorithm is trying
6970 to not grow past this limit too much.  Default value is 256 bytes.
6971
6972 @item large-stack-frame-growth
6973 Specifies maximal growth of large stack frames caused by inlining in percents.
6974 The default value is 1000 which limits large stack frame growth to 11 times
6975 the original size.
6976
6977 @item max-inline-insns-recursive
6978 @itemx max-inline-insns-recursive-auto
6979 Specifies maximum number of instructions out-of-line copy of self recursive inline
6980 function can grow into by performing recursive inlining.
6981
6982 For functions declared inline @option{--param max-inline-insns-recursive} is
6983 taken into account.  For function not declared inline, recursive inlining
6984 happens only when @option{-finline-functions} (included in @option{-O3}) is
6985 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6986 default value is 450.
6987
6988 @item max-inline-recursive-depth
6989 @itemx max-inline-recursive-depth-auto
6990 Specifies maximum recursion depth used by the recursive inlining.
6991
6992 For functions declared inline @option{--param max-inline-recursive-depth} is
6993 taken into account.  For function not declared inline, recursive inlining
6994 happens only when @option{-finline-functions} (included in @option{-O3}) is
6995 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6996 default value is 8.
6997
6998 @item min-inline-recursive-probability
6999 Recursive inlining is profitable only for function having deep recursion
7000 in average and can hurt for function having little recursion depth by
7001 increasing the prologue size or complexity of function body to other
7002 optimizers.
7003
7004 When profile feedback is available (see @option{-fprofile-generate}) the actual
7005 recursion depth can be guessed from probability that function will recurse via
7006 given call expression.  This parameter limits inlining only to call expression
7007 whose probability exceeds given threshold (in percents).  The default value is
7008 10.
7009
7010 @item inline-call-cost
7011 Specify cost of call instruction relative to simple arithmetics operations
7012 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
7013 functions and at the same time increases size of leaf function that is believed to
7014 reduce function size by being inlined.  In effect it increases amount of
7015 inlining for code having large abstraction penalty (many functions that just
7016 pass the arguments to other functions) and decrease inlining for code with low
7017 abstraction penalty.  The default value is 12.
7018
7019 @item min-vect-loop-bound
7020 The minimum number of iterations under which a loop will not get vectorized
7021 when @option{-ftree-vectorize} is used.  The number of iterations after
7022 vectorization needs to be greater than the value specified by this option
7023 to allow vectorization.  The default value is 0.
7024
7025 @item max-unrolled-insns
7026 The maximum number of instructions that a loop should have if that loop
7027 is unrolled, and if the loop is unrolled, it determines how many times
7028 the loop code is unrolled.
7029
7030 @item max-average-unrolled-insns
7031 The maximum number of instructions biased by probabilities of their execution
7032 that a loop should have if that loop is unrolled, and if the loop is unrolled,
7033 it determines how many times the loop code is unrolled.
7034
7035 @item max-unroll-times
7036 The maximum number of unrollings of a single loop.
7037
7038 @item max-peeled-insns
7039 The maximum number of instructions that a loop should have if that loop
7040 is peeled, and if the loop is peeled, it determines how many times
7041 the loop code is peeled.
7042
7043 @item max-peel-times
7044 The maximum number of peelings of a single loop.
7045
7046 @item max-completely-peeled-insns
7047 The maximum number of insns of a completely peeled loop.
7048
7049 @item max-completely-peel-times
7050 The maximum number of iterations of a loop to be suitable for complete peeling.
7051
7052 @item max-unswitch-insns
7053 The maximum number of insns of an unswitched loop.
7054
7055 @item max-unswitch-level
7056 The maximum number of branches unswitched in a single loop.
7057
7058 @item lim-expensive
7059 The minimum cost of an expensive expression in the loop invariant motion.
7060
7061 @item iv-consider-all-candidates-bound
7062 Bound on number of candidates for induction variables below that
7063 all candidates are considered for each use in induction variable
7064 optimizations.  Only the most relevant candidates are considered
7065 if there are more candidates, to avoid quadratic time complexity.
7066
7067 @item iv-max-considered-uses
7068 The induction variable optimizations give up on loops that contain more
7069 induction variable uses.
7070
7071 @item iv-always-prune-cand-set-bound
7072 If number of candidates in the set is smaller than this value,
7073 we always try to remove unnecessary ivs from the set during its
7074 optimization when a new iv is added to the set.
7075
7076 @item scev-max-expr-size
7077 Bound on size of expressions used in the scalar evolutions analyzer.
7078 Large expressions slow the analyzer.
7079
7080 @item omega-max-vars
7081 The maximum number of variables in an Omega constraint system.
7082 The default value is 128.
7083
7084 @item omega-max-geqs
7085 The maximum number of inequalities in an Omega constraint system.
7086 The default value is 256.
7087
7088 @item omega-max-eqs
7089 The maximum number of equalities in an Omega constraint system.
7090 The default value is 128.
7091
7092 @item omega-max-wild-cards
7093 The maximum number of wildcard variables that the Omega solver will
7094 be able to insert.  The default value is 18.
7095
7096 @item omega-hash-table-size
7097 The size of the hash table in the Omega solver.  The default value is
7098 550.
7099
7100 @item omega-max-keys
7101 The maximal number of keys used by the Omega solver.  The default
7102 value is 500.
7103
7104 @item omega-eliminate-redundant-constraints
7105 When set to 1, use expensive methods to eliminate all redundant
7106 constraints.  The default value is 0.
7107
7108 @item vect-max-version-for-alignment-checks
7109 The maximum number of runtime checks that can be performed when
7110 doing loop versioning for alignment in the vectorizer.  See option
7111 ftree-vect-loop-version for more information.
7112
7113 @item vect-max-version-for-alias-checks
7114 The maximum number of runtime checks that can be performed when
7115 doing loop versioning for alias in the vectorizer.  See option
7116 ftree-vect-loop-version for more information.
7117
7118 @item max-iterations-to-track
7119
7120 The maximum number of iterations of a loop the brute force algorithm
7121 for analysis of # of iterations of the loop tries to evaluate.
7122
7123 @item hot-bb-count-fraction
7124 Select fraction of the maximal count of repetitions of basic block in program
7125 given basic block needs to have to be considered hot.
7126
7127 @item hot-bb-frequency-fraction
7128 Select fraction of the maximal frequency of executions of basic block in
7129 function given basic block needs to have to be considered hot
7130
7131 @item max-predicted-iterations
7132 The maximum number of loop iterations we predict statically.  This is useful
7133 in cases where function contain single loop with known bound and other loop
7134 with unknown.  We predict the known number of iterations correctly, while
7135 the unknown number of iterations average to roughly 10.  This means that the
7136 loop without bounds would appear artificially cold relative to the other one.
7137
7138 @item align-threshold
7139
7140 Select fraction of the maximal frequency of executions of basic block in
7141 function given basic block will get aligned.
7142
7143 @item align-loop-iterations
7144
7145 A loop expected to iterate at lest the selected number of iterations will get
7146 aligned.
7147
7148 @item tracer-dynamic-coverage
7149 @itemx tracer-dynamic-coverage-feedback
7150
7151 This value is used to limit superblock formation once the given percentage of
7152 executed instructions is covered.  This limits unnecessary code size
7153 expansion.
7154
7155 The @option{tracer-dynamic-coverage-feedback} is used only when profile
7156 feedback is available.  The real profiles (as opposed to statically estimated
7157 ones) are much less balanced allowing the threshold to be larger value.
7158
7159 @item tracer-max-code-growth
7160 Stop tail duplication once code growth has reached given percentage.  This is
7161 rather hokey argument, as most of the duplicates will be eliminated later in
7162 cross jumping, so it may be set to much higher values than is the desired code
7163 growth.
7164
7165 @item tracer-min-branch-ratio
7166
7167 Stop reverse growth when the reverse probability of best edge is less than this
7168 threshold (in percent).
7169
7170 @item tracer-min-branch-ratio
7171 @itemx tracer-min-branch-ratio-feedback
7172
7173 Stop forward growth if the best edge do have probability lower than this
7174 threshold.
7175
7176 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
7177 compilation for profile feedback and one for compilation without.  The value
7178 for compilation with profile feedback needs to be more conservative (higher) in
7179 order to make tracer effective.
7180
7181 @item max-cse-path-length
7182
7183 Maximum number of basic blocks on path that cse considers.  The default is 10.
7184
7185 @item max-cse-insns
7186 The maximum instructions CSE process before flushing. The default is 1000.
7187
7188 @item max-aliased-vops
7189
7190 Maximum number of virtual operands per function allowed to represent
7191 aliases before triggering the alias partitioning heuristic.  Alias
7192 partitioning reduces compile times and memory consumption needed for
7193 aliasing at the expense of precision loss in alias information.  The
7194 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
7195 for -O3.
7196
7197 Notice that if a function contains more memory statements than the
7198 value of this parameter, it is not really possible to achieve this
7199 reduction.  In this case, the compiler will use the number of memory
7200 statements as the value for @option{max-aliased-vops}.
7201
7202 @item avg-aliased-vops
7203
7204 Average number of virtual operands per statement allowed to represent
7205 aliases before triggering the alias partitioning heuristic.  This
7206 works in conjunction with @option{max-aliased-vops}.  If a function
7207 contains more than @option{max-aliased-vops} virtual operators, then
7208 memory symbols will be grouped into memory partitions until either the
7209 total number of virtual operators is below @option{max-aliased-vops}
7210 or the average number of virtual operators per memory statement is
7211 below @option{avg-aliased-vops}.  The default value for this parameter
7212 is 1 for -O1 and -O2, and 3 for -O3.
7213
7214 @item ggc-min-expand
7215
7216 GCC uses a garbage collector to manage its own memory allocation.  This
7217 parameter specifies the minimum percentage by which the garbage
7218 collector's heap should be allowed to expand between collections.
7219 Tuning this may improve compilation speed; it has no effect on code
7220 generation.
7221
7222 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
7223 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
7224 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
7225 GCC is not able to calculate RAM on a particular platform, the lower
7226 bound of 30% is used.  Setting this parameter and
7227 @option{ggc-min-heapsize} to zero causes a full collection to occur at
7228 every opportunity.  This is extremely slow, but can be useful for
7229 debugging.
7230
7231 @item ggc-min-heapsize
7232
7233 Minimum size of the garbage collector's heap before it begins bothering
7234 to collect garbage.  The first collection occurs after the heap expands
7235 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
7236 tuning this may improve compilation speed, and has no effect on code
7237 generation.
7238
7239 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
7240 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
7241 with a lower bound of 4096 (four megabytes) and an upper bound of
7242 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
7243 particular platform, the lower bound is used.  Setting this parameter
7244 very large effectively disables garbage collection.  Setting this
7245 parameter and @option{ggc-min-expand} to zero causes a full collection
7246 to occur at every opportunity.
7247
7248 @item max-reload-search-insns
7249 The maximum number of instruction reload should look backward for equivalent
7250 register.  Increasing values mean more aggressive optimization, making the
7251 compile time increase with probably slightly better performance.  The default
7252 value is 100.
7253
7254 @item max-cselib-memory-locations
7255 The maximum number of memory locations cselib should take into account.
7256 Increasing values mean more aggressive optimization, making the compile time
7257 increase with probably slightly better performance.  The default value is 500.
7258
7259 @item reorder-blocks-duplicate
7260 @itemx reorder-blocks-duplicate-feedback
7261
7262 Used by basic block reordering pass to decide whether to use unconditional
7263 branch or duplicate the code on its destination.  Code is duplicated when its
7264 estimated size is smaller than this value multiplied by the estimated size of
7265 unconditional jump in the hot spots of the program.
7266
7267 The @option{reorder-block-duplicate-feedback} is used only when profile
7268 feedback is available and may be set to higher values than
7269 @option{reorder-block-duplicate} since information about the hot spots is more
7270 accurate.
7271
7272 @item max-sched-ready-insns
7273 The maximum number of instructions ready to be issued the scheduler should
7274 consider at any given time during the first scheduling pass.  Increasing
7275 values mean more thorough searches, making the compilation time increase
7276 with probably little benefit.  The default value is 100.
7277
7278 @item max-sched-region-blocks
7279 The maximum number of blocks in a region to be considered for
7280 interblock scheduling.  The default value is 10.
7281
7282 @item max-sched-region-insns
7283 The maximum number of insns in a region to be considered for
7284 interblock scheduling.  The default value is 100.
7285
7286 @item min-spec-prob
7287 The minimum probability (in percents) of reaching a source block
7288 for interblock speculative scheduling.  The default value is 40.
7289
7290 @item max-sched-extend-regions-iters
7291 The maximum number of iterations through CFG to extend regions.
7292 0 - disable region extension,
7293 N - do at most N iterations.
7294 The default value is 0.
7295
7296 @item max-sched-insn-conflict-delay
7297 The maximum conflict delay for an insn to be considered for speculative motion.
7298 The default value is 3.
7299
7300 @item sched-spec-prob-cutoff
7301 The minimal probability of speculation success (in percents), so that
7302 speculative insn will be scheduled.
7303 The default value is 40.
7304
7305 @item max-last-value-rtl
7306
7307 The maximum size measured as number of RTLs that can be recorded in an expression
7308 in combiner for a pseudo register as last known value of that register.  The default
7309 is 10000.
7310
7311 @item integer-share-limit
7312 Small integer constants can use a shared data structure, reducing the
7313 compiler's memory usage and increasing its speed.  This sets the maximum
7314 value of a shared integer constant.  The default value is 256.
7315
7316 @item min-virtual-mappings
7317 Specifies the minimum number of virtual mappings in the incremental
7318 SSA updater that should be registered to trigger the virtual mappings
7319 heuristic defined by virtual-mappings-ratio.  The default value is
7320 100.
7321
7322 @item virtual-mappings-ratio
7323 If the number of virtual mappings is virtual-mappings-ratio bigger
7324 than the number of virtual symbols to be updated, then the incremental
7325 SSA updater switches to a full update for those symbols.  The default
7326 ratio is 3.
7327
7328 @item ssp-buffer-size
7329 The minimum size of buffers (i.e.@: arrays) that will receive stack smashing
7330 protection when @option{-fstack-protection} is used.
7331
7332 @item max-jump-thread-duplication-stmts
7333 Maximum number of statements allowed in a block that needs to be
7334 duplicated when threading jumps.
7335
7336 @item max-fields-for-field-sensitive
7337 Maximum number of fields in a structure we will treat in
7338 a field sensitive manner during pointer analysis.  The default is zero
7339 for -O0, and -O1 and 100 for -Os, -O2, and -O3.
7340
7341 @item prefetch-latency
7342 Estimate on average number of instructions that are executed before
7343 prefetch finishes.  The distance we prefetch ahead is proportional
7344 to this constant.  Increasing this number may also lead to less
7345 streams being prefetched (see @option{simultaneous-prefetches}).
7346
7347 @item simultaneous-prefetches
7348 Maximum number of prefetches that can run at the same time.
7349
7350 @item l1-cache-line-size
7351 The size of cache line in L1 cache, in bytes.
7352
7353 @item l1-cache-size
7354 The size of L1 cache, in kilobytes.
7355
7356 @item l2-cache-size
7357 The size of L2 cache, in kilobytes.
7358
7359 @item use-canonical-types
7360 Whether the compiler should use the ``canonical'' type system.  By
7361 default, this should always be 1, which uses a more efficient internal
7362 mechanism for comparing types in C++ and Objective-C++.  However, if
7363 bugs in the canonical type system are causing compilation failures,
7364 set this value to 0 to disable canonical types.
7365
7366 @item switch-conversion-max-branch-ratio
7367 Switch initialization conversion will refuse to create arrays that are
7368 bigger than @option{switch-conversion-max-branch-ratio} times the number of
7369 branches in the switch.
7370
7371 @item max-partial-antic-length
7372 Maximum length of the partial antic set computed during the tree
7373 partial redundancy elimination optimization (@option{-ftree-pre}) when
7374 optimizing at @option{-O3} and above.  For some sorts of source code
7375 the enhanced partial redundancy elimination optimization can run away,
7376 consuming all of the memory available on the host machine.  This
7377 parameter sets a limit on the length of the sets that are computed,
7378 which prevents the runaway behaviour.  Setting a value of 0 for
7379 this paramter will allow an unlimited set length.
7380
7381 @item sccvn-max-scc-size
7382 Maximum size of a strongly connected component (SCC) during SCCVN
7383 processing.  If this limit is hit, SCCVN processing for the whole
7384 function will not be done and optimizations depending on it will
7385 be disabled.  The default maximum SCC size is 10000.
7386
7387 @end table
7388 @end table
7389
7390 @node Preprocessor Options
7391 @section Options Controlling the Preprocessor
7392 @cindex preprocessor options
7393 @cindex options, preprocessor
7394
7395 These options control the C preprocessor, which is run on each C source
7396 file before actual compilation.
7397
7398 If you use the @option{-E} option, nothing is done except preprocessing.
7399 Some of these options make sense only together with @option{-E} because
7400 they cause the preprocessor output to be unsuitable for actual
7401 compilation.
7402
7403 @table @gcctabopt
7404 @opindex Wp
7405 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7406 and pass @var{option} directly through to the preprocessor.  If
7407 @var{option} contains commas, it is split into multiple options at the
7408 commas.  However, many options are modified, translated or interpreted
7409 by the compiler driver before being passed to the preprocessor, and
7410 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7411 interface is undocumented and subject to change, so whenever possible
7412 you should avoid using @option{-Wp} and let the driver handle the
7413 options instead.
7414
7415 @item -Xpreprocessor @var{option}
7416 @opindex preprocessor
7417 Pass @var{option} as an option to the preprocessor.  You can use this to
7418 supply system-specific preprocessor options which GCC does not know how to
7419 recognize.
7420
7421 If you want to pass an option that takes an argument, you must use
7422 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7423 @end table
7424
7425 @include cppopts.texi
7426
7427 @node Assembler Options
7428 @section Passing Options to the Assembler
7429
7430 @c prevent bad page break with this line
7431 You can pass options to the assembler.
7432
7433 @table @gcctabopt
7434 @item -Wa,@var{option}
7435 @opindex Wa
7436 Pass @var{option} as an option to the assembler.  If @var{option}
7437 contains commas, it is split into multiple options at the commas.
7438
7439 @item -Xassembler @var{option}
7440 @opindex Xassembler
7441 Pass @var{option} as an option to the assembler.  You can use this to
7442 supply system-specific assembler options which GCC does not know how to
7443 recognize.
7444
7445 If you want to pass an option that takes an argument, you must use
7446 @option{-Xassembler} twice, once for the option and once for the argument.
7447
7448 @end table
7449
7450 @node Link Options
7451 @section Options for Linking
7452 @cindex link options
7453 @cindex options, linking
7454
7455 These options come into play when the compiler links object files into
7456 an executable output file.  They are meaningless if the compiler is
7457 not doing a link step.
7458
7459 @table @gcctabopt
7460 @cindex file names
7461 @item @var{object-file-name}
7462 A file name that does not end in a special recognized suffix is
7463 considered to name an object file or library.  (Object files are
7464 distinguished from libraries by the linker according to the file
7465 contents.)  If linking is done, these object files are used as input
7466 to the linker.
7467
7468 @item -c
7469 @itemx -S
7470 @itemx -E
7471 @opindex c
7472 @opindex S
7473 @opindex E
7474 If any of these options is used, then the linker is not run, and
7475 object file names should not be used as arguments.  @xref{Overall
7476 Options}.
7477
7478 @cindex Libraries
7479 @item -l@var{library}
7480 @itemx -l @var{library}
7481 @opindex l
7482 Search the library named @var{library} when linking.  (The second
7483 alternative with the library as a separate argument is only for
7484 POSIX compliance and is not recommended.)
7485
7486 It makes a difference where in the command you write this option; the
7487 linker searches and processes libraries and object files in the order they
7488 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7489 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7490 to functions in @samp{z}, those functions may not be loaded.
7491
7492 The linker searches a standard list of directories for the library,
7493 which is actually a file named @file{lib@var{library}.a}.  The linker
7494 then uses this file as if it had been specified precisely by name.
7495
7496 The directories searched include several standard system directories
7497 plus any that you specify with @option{-L}.
7498
7499 Normally the files found this way are library files---archive files
7500 whose members are object files.  The linker handles an archive file by
7501 scanning through it for members which define symbols that have so far
7502 been referenced but not defined.  But if the file that is found is an
7503 ordinary object file, it is linked in the usual fashion.  The only
7504 difference between using an @option{-l} option and specifying a file name
7505 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7506 and searches several directories.
7507
7508 @item -lobjc
7509 @opindex lobjc
7510 You need this special case of the @option{-l} option in order to
7511 link an Objective-C or Objective-C++ program.
7512
7513 @item -nostartfiles
7514 @opindex nostartfiles
7515 Do not use the standard system startup files when linking.
7516 The standard system libraries are used normally, unless @option{-nostdlib}
7517 or @option{-nodefaultlibs} is used.
7518
7519 @item -nodefaultlibs
7520 @opindex nodefaultlibs
7521 Do not use the standard system libraries when linking.
7522 Only the libraries you specify will be passed to the linker.
7523 The standard startup files are used normally, unless @option{-nostartfiles}
7524 is used.  The compiler may generate calls to @code{memcmp},
7525 @code{memset}, @code{memcpy} and @code{memmove}.
7526 These entries are usually resolved by entries in
7527 libc.  These entry points should be supplied through some other
7528 mechanism when this option is specified.
7529
7530 @item -nostdlib
7531 @opindex nostdlib
7532 Do not use the standard system startup files or libraries when linking.
7533 No startup files and only the libraries you specify will be passed to
7534 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7535 @code{memcpy} and @code{memmove}.
7536 These entries are usually resolved by entries in
7537 libc.  These entry points should be supplied through some other
7538 mechanism when this option is specified.
7539
7540 @cindex @option{-lgcc}, use with @option{-nostdlib}
7541 @cindex @option{-nostdlib} and unresolved references
7542 @cindex unresolved references and @option{-nostdlib}
7543 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7544 @cindex @option{-nodefaultlibs} and unresolved references
7545 @cindex unresolved references and @option{-nodefaultlibs}
7546 One of the standard libraries bypassed by @option{-nostdlib} and
7547 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7548 that GCC uses to overcome shortcomings of particular machines, or special
7549 needs for some languages.
7550 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7551 Collection (GCC) Internals},
7552 for more discussion of @file{libgcc.a}.)
7553 In most cases, you need @file{libgcc.a} even when you want to avoid
7554 other standard libraries.  In other words, when you specify @option{-nostdlib}
7555 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7556 This ensures that you have no unresolved references to internal GCC
7557 library subroutines.  (For example, @samp{__main}, used to ensure C++
7558 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7559 GNU Compiler Collection (GCC) Internals}.)
7560
7561 @item -pie
7562 @opindex pie
7563 Produce a position independent executable on targets which support it.
7564 For predictable results, you must also specify the same set of options
7565 that were used to generate code (@option{-fpie}, @option{-fPIE},
7566 or model suboptions) when you specify this option.
7567
7568 @item -rdynamic
7569 @opindex rdynamic
7570 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7571 that support it. This instructs the linker to add all symbols, not
7572 only used ones, to the dynamic symbol table. This option is needed
7573 for some uses of @code{dlopen} or to allow obtaining backtraces
7574 from within a program.
7575
7576 @item -s
7577 @opindex s
7578 Remove all symbol table and relocation information from the executable.
7579
7580 @item -static
7581 @opindex static
7582 On systems that support dynamic linking, this prevents linking with the shared
7583 libraries.  On other systems, this option has no effect.
7584
7585 @item -shared
7586 @opindex shared
7587 Produce a shared object which can then be linked with other objects to
7588 form an executable.  Not all systems support this option.  For predictable
7589 results, you must also specify the same set of options that were used to
7590 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7591 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7592 needs to build supplementary stub code for constructors to work.  On
7593 multi-libbed systems, @samp{gcc -shared} must select the correct support
7594 libraries to link against.  Failing to supply the correct flags may lead
7595 to subtle defects.  Supplying them in cases where they are not necessary
7596 is innocuous.}
7597
7598 @item -shared-libgcc
7599 @itemx -static-libgcc
7600 @opindex shared-libgcc
7601 @opindex static-libgcc
7602 On systems that provide @file{libgcc} as a shared library, these options
7603 force the use of either the shared or static version respectively.
7604 If no shared version of @file{libgcc} was built when the compiler was
7605 configured, these options have no effect.
7606
7607 There are several situations in which an application should use the
7608 shared @file{libgcc} instead of the static version.  The most common
7609 of these is when the application wishes to throw and catch exceptions
7610 across different shared libraries.  In that case, each of the libraries
7611 as well as the application itself should use the shared @file{libgcc}.
7612
7613 Therefore, the G++ and GCJ drivers automatically add
7614 @option{-shared-libgcc} whenever you build a shared library or a main
7615 executable, because C++ and Java programs typically use exceptions, so
7616 this is the right thing to do.
7617
7618 If, instead, you use the GCC driver to create shared libraries, you may
7619 find that they will not always be linked with the shared @file{libgcc}.
7620 If GCC finds, at its configuration time, that you have a non-GNU linker
7621 or a GNU linker that does not support option @option{--eh-frame-hdr},
7622 it will link the shared version of @file{libgcc} into shared libraries
7623 by default.  Otherwise, it will take advantage of the linker and optimize
7624 away the linking with the shared version of @file{libgcc}, linking with
7625 the static version of libgcc by default.  This allows exceptions to
7626 propagate through such shared libraries, without incurring relocation
7627 costs at library load time.
7628
7629 However, if a library or main executable is supposed to throw or catch
7630 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7631 for the languages used in the program, or using the option
7632 @option{-shared-libgcc}, such that it is linked with the shared
7633 @file{libgcc}.
7634
7635 @item -symbolic
7636 @opindex symbolic
7637 Bind references to global symbols when building a shared object.  Warn
7638 about any unresolved references (unless overridden by the link editor
7639 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7640 this option.
7641
7642 @item -Xlinker @var{option}
7643 @opindex Xlinker
7644 Pass @var{option} as an option to the linker.  You can use this to
7645 supply system-specific linker options which GCC does not know how to
7646 recognize.
7647
7648 If you want to pass an option that takes an argument, you must use
7649 @option{-Xlinker} twice, once for the option and once for the argument.
7650 For example, to pass @option{-assert definitions}, you must write
7651 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7652 @option{-Xlinker "-assert definitions"}, because this passes the entire
7653 string as a single argument, which is not what the linker expects.
7654
7655 @item -Wl,@var{option}
7656 @opindex Wl
7657 Pass @var{option} as an option to the linker.  If @var{option} contains
7658 commas, it is split into multiple options at the commas.
7659
7660 @item -u @var{symbol}
7661 @opindex u
7662 Pretend the symbol @var{symbol} is undefined, to force linking of
7663 library modules to define it.  You can use @option{-u} multiple times with
7664 different symbols to force loading of additional library modules.
7665 @end table
7666
7667 @node Directory Options
7668 @section Options for Directory Search
7669 @cindex directory options
7670 @cindex options, directory search
7671 @cindex search path
7672
7673 These options specify directories to search for header files, for
7674 libraries and for parts of the compiler:
7675
7676 @table @gcctabopt
7677 @item -I@var{dir}
7678 @opindex I
7679 Add the directory @var{dir} to the head of the list of directories to be
7680 searched for header files.  This can be used to override a system header
7681 file, substituting your own version, since these directories are
7682 searched before the system header file directories.  However, you should
7683 not use this option to add directories that contain vendor-supplied
7684 system header files (use @option{-isystem} for that).  If you use more than
7685 one @option{-I} option, the directories are scanned in left-to-right
7686 order; the standard system directories come after.
7687
7688 If a standard system include directory, or a directory specified with
7689 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7690 option will be ignored.  The directory will still be searched but as a
7691 system directory at its normal position in the system include chain.
7692 This is to ensure that GCC's procedure to fix buggy system headers and
7693 the ordering for the include_next directive are not inadvertently changed.
7694 If you really need to change the search order for system directories,
7695 use the @option{-nostdinc} and/or @option{-isystem} options.
7696
7697 @item -iquote@var{dir}
7698 @opindex iquote
7699 Add the directory @var{dir} to the head of the list of directories to
7700 be searched for header files only for the case of @samp{#include
7701 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7702 otherwise just like @option{-I}.
7703
7704 @item -L@var{dir}
7705 @opindex L
7706 Add directory @var{dir} to the list of directories to be searched
7707 for @option{-l}.
7708
7709 @item -B@var{prefix}
7710 @opindex B
7711 This option specifies where to find the executables, libraries,
7712 include files, and data files of the compiler itself.
7713
7714 The compiler driver program runs one or more of the subprograms
7715 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7716 @var{prefix} as a prefix for each program it tries to run, both with and
7717 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7718
7719 For each subprogram to be run, the compiler driver first tries the
7720 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7721 was not specified, the driver tries two standard prefixes, which are
7722 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7723 those results in a file name that is found, the unmodified program
7724 name is searched for using the directories specified in your
7725 @env{PATH} environment variable.
7726
7727 The compiler will check to see if the path provided by the @option{-B}
7728 refers to a directory, and if necessary it will add a directory
7729 separator character at the end of the path.
7730
7731 @option{-B} prefixes that effectively specify directory names also apply
7732 to libraries in the linker, because the compiler translates these
7733 options into @option{-L} options for the linker.  They also apply to
7734 includes files in the preprocessor, because the compiler translates these
7735 options into @option{-isystem} options for the preprocessor.  In this case,
7736 the compiler appends @samp{include} to the prefix.
7737
7738 The run-time support file @file{libgcc.a} can also be searched for using
7739 the @option{-B} prefix, if needed.  If it is not found there, the two
7740 standard prefixes above are tried, and that is all.  The file is left
7741 out of the link if it is not found by those means.
7742
7743 Another way to specify a prefix much like the @option{-B} prefix is to use
7744 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7745 Variables}.
7746
7747 As a special kludge, if the path provided by @option{-B} is
7748 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7749 9, then it will be replaced by @file{[dir/]include}.  This is to help
7750 with boot-strapping the compiler.
7751
7752 @item -specs=@var{file}
7753 @opindex specs
7754 Process @var{file} after the compiler reads in the standard @file{specs}
7755 file, in order to override the defaults that the @file{gcc} driver
7756 program uses when determining what switches to pass to @file{cc1},
7757 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7758 @option{-specs=@var{file}} can be specified on the command line, and they
7759 are processed in order, from left to right.
7760
7761 @item --sysroot=@var{dir}
7762 @opindex sysroot
7763 Use @var{dir} as the logical root directory for headers and libraries.
7764 For example, if the compiler would normally search for headers in
7765 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7766 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7767
7768 If you use both this option and the @option{-isysroot} option, then
7769 the @option{--sysroot} option will apply to libraries, but the
7770 @option{-isysroot} option will apply to header files.
7771
7772 The GNU linker (beginning with version 2.16) has the necessary support
7773 for this option.  If your linker does not support this option, the
7774 header file aspect of @option{--sysroot} will still work, but the
7775 library aspect will not.
7776
7777 @item -I-
7778 @opindex I-
7779 This option has been deprecated.  Please use @option{-iquote} instead for
7780 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7781 Any directories you specify with @option{-I} options before the @option{-I-}
7782 option are searched only for the case of @samp{#include "@var{file}"};
7783 they are not searched for @samp{#include <@var{file}>}.
7784
7785 If additional directories are specified with @option{-I} options after
7786 the @option{-I-}, these directories are searched for all @samp{#include}
7787 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7788 this way.)
7789
7790 In addition, the @option{-I-} option inhibits the use of the current
7791 directory (where the current input file came from) as the first search
7792 directory for @samp{#include "@var{file}"}.  There is no way to
7793 override this effect of @option{-I-}.  With @option{-I.} you can specify
7794 searching the directory which was current when the compiler was
7795 invoked.  That is not exactly the same as what the preprocessor does
7796 by default, but it is often satisfactory.
7797
7798 @option{-I-} does not inhibit the use of the standard system directories
7799 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7800 independent.
7801 @end table
7802
7803 @c man end
7804
7805 @node Spec Files
7806 @section Specifying subprocesses and the switches to pass to them
7807 @cindex Spec Files
7808
7809 @command{gcc} is a driver program.  It performs its job by invoking a
7810 sequence of other programs to do the work of compiling, assembling and
7811 linking.  GCC interprets its command-line parameters and uses these to
7812 deduce which programs it should invoke, and which command-line options
7813 it ought to place on their command lines.  This behavior is controlled
7814 by @dfn{spec strings}.  In most cases there is one spec string for each
7815 program that GCC can invoke, but a few programs have multiple spec
7816 strings to control their behavior.  The spec strings built into GCC can
7817 be overridden by using the @option{-specs=} command-line switch to specify
7818 a spec file.
7819
7820 @dfn{Spec files} are plaintext files that are used to construct spec
7821 strings.  They consist of a sequence of directives separated by blank
7822 lines.  The type of directive is determined by the first non-whitespace
7823 character on the line and it can be one of the following:
7824
7825 @table @code
7826 @item %@var{command}
7827 Issues a @var{command} to the spec file processor.  The commands that can
7828 appear here are:
7829
7830 @table @code
7831 @item %include <@var{file}>
7832 @cindex %include
7833 Search for @var{file} and insert its text at the current point in the
7834 specs file.
7835
7836 @item %include_noerr <@var{file}>
7837 @cindex %include_noerr
7838 Just like @samp{%include}, but do not generate an error message if the include
7839 file cannot be found.
7840
7841 @item %rename @var{old_name} @var{new_name}
7842 @cindex %rename
7843 Rename the spec string @var{old_name} to @var{new_name}.
7844
7845 @end table
7846
7847 @item *[@var{spec_name}]:
7848 This tells the compiler to create, override or delete the named spec
7849 string.  All lines after this directive up to the next directive or
7850 blank line are considered to be the text for the spec string.  If this
7851 results in an empty string then the spec will be deleted.  (Or, if the
7852 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7853 does not currently exist a new spec will be created.  If the spec does
7854 exist then its contents will be overridden by the text of this
7855 directive, unless the first character of that text is the @samp{+}
7856 character, in which case the text will be appended to the spec.
7857
7858 @item [@var{suffix}]:
7859 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7860 and up to the next directive or blank line are considered to make up the
7861 spec string for the indicated suffix.  When the compiler encounters an
7862 input file with the named suffix, it will processes the spec string in
7863 order to work out how to compile that file.  For example:
7864
7865 @smallexample
7866 .ZZ:
7867 z-compile -input %i
7868 @end smallexample
7869
7870 This says that any input file whose name ends in @samp{.ZZ} should be
7871 passed to the program @samp{z-compile}, which should be invoked with the
7872 command-line switch @option{-input} and with the result of performing the
7873 @samp{%i} substitution.  (See below.)
7874
7875 As an alternative to providing a spec string, the text that follows a
7876 suffix directive can be one of the following:
7877
7878 @table @code
7879 @item @@@var{language}
7880 This says that the suffix is an alias for a known @var{language}.  This is
7881 similar to using the @option{-x} command-line switch to GCC to specify a
7882 language explicitly.  For example:
7883
7884 @smallexample
7885 .ZZ:
7886 @@c++
7887 @end smallexample
7888
7889 Says that .ZZ files are, in fact, C++ source files.
7890
7891 @item #@var{name}
7892 This causes an error messages saying:
7893
7894 @smallexample
7895 @var{name} compiler not installed on this system.
7896 @end smallexample
7897 @end table
7898
7899 GCC already has an extensive list of suffixes built into it.
7900 This directive will add an entry to the end of the list of suffixes, but
7901 since the list is searched from the end backwards, it is effectively
7902 possible to override earlier entries using this technique.
7903
7904 @end table
7905
7906 GCC has the following spec strings built into it.  Spec files can
7907 override these strings or create their own.  Note that individual
7908 targets can also add their own spec strings to this list.
7909
7910 @smallexample
7911 asm          Options to pass to the assembler
7912 asm_final    Options to pass to the assembler post-processor
7913 cpp          Options to pass to the C preprocessor
7914 cc1          Options to pass to the C compiler
7915 cc1plus      Options to pass to the C++ compiler
7916 endfile      Object files to include at the end of the link
7917 link         Options to pass to the linker
7918 lib          Libraries to include on the command line to the linker
7919 libgcc       Decides which GCC support library to pass to the linker
7920 linker       Sets the name of the linker
7921 predefines   Defines to be passed to the C preprocessor
7922 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7923              by default
7924 startfile    Object files to include at the start of the link
7925 @end smallexample
7926
7927 Here is a small example of a spec file:
7928
7929 @smallexample
7930 %rename lib                 old_lib
7931
7932 *lib:
7933 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7934 @end smallexample
7935
7936 This example renames the spec called @samp{lib} to @samp{old_lib} and
7937 then overrides the previous definition of @samp{lib} with a new one.
7938 The new definition adds in some extra command-line options before
7939 including the text of the old definition.
7940
7941 @dfn{Spec strings} are a list of command-line options to be passed to their
7942 corresponding program.  In addition, the spec strings can contain
7943 @samp{%}-prefixed sequences to substitute variable text or to
7944 conditionally insert text into the command line.  Using these constructs
7945 it is possible to generate quite complex command lines.
7946
7947 Here is a table of all defined @samp{%}-sequences for spec
7948 strings.  Note that spaces are not generated automatically around the
7949 results of expanding these sequences.  Therefore you can concatenate them
7950 together or combine them with constant text in a single argument.
7951
7952 @table @code
7953 @item %%
7954 Substitute one @samp{%} into the program name or argument.
7955
7956 @item %i
7957 Substitute the name of the input file being processed.
7958
7959 @item %b
7960 Substitute the basename of the input file being processed.
7961 This is the substring up to (and not including) the last period
7962 and not including the directory.
7963
7964 @item %B
7965 This is the same as @samp{%b}, but include the file suffix (text after
7966 the last period).
7967
7968 @item %d
7969 Marks the argument containing or following the @samp{%d} as a
7970 temporary file name, so that that file will be deleted if GCC exits
7971 successfully.  Unlike @samp{%g}, this contributes no text to the
7972 argument.
7973
7974 @item %g@var{suffix}
7975 Substitute a file name that has suffix @var{suffix} and is chosen
7976 once per compilation, and mark the argument in the same way as
7977 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
7978 name is now chosen in a way that is hard to predict even when previously
7979 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
7980 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
7981 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
7982 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
7983 was simply substituted with a file name chosen once per compilation,
7984 without regard to any appended suffix (which was therefore treated
7985 just like ordinary text), making such attacks more likely to succeed.
7986
7987 @item %u@var{suffix}
7988 Like @samp{%g}, but generates a new temporary file name even if
7989 @samp{%u@var{suffix}} was already seen.
7990
7991 @item %U@var{suffix}
7992 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
7993 new one if there is no such last file name.  In the absence of any
7994 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
7995 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
7996 would involve the generation of two distinct file names, one
7997 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
7998 simply substituted with a file name chosen for the previous @samp{%u},
7999 without regard to any appended suffix.
8000
8001 @item %j@var{suffix}
8002 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
8003 writable, and if save-temps is off; otherwise, substitute the name
8004 of a temporary file, just like @samp{%u}.  This temporary file is not
8005 meant for communication between processes, but rather as a junk
8006 disposal mechanism.
8007
8008 @item %|@var{suffix}
8009 @itemx %m@var{suffix}
8010 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
8011 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
8012 all.  These are the two most common ways to instruct a program that it
8013 should read from standard input or write to standard output.  If you
8014 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
8015 construct: see for example @file{f/lang-specs.h}.
8016
8017 @item %.@var{SUFFIX}
8018 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
8019 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
8020 terminated by the next space or %.
8021
8022 @item %w
8023 Marks the argument containing or following the @samp{%w} as the
8024 designated output file of this compilation.  This puts the argument
8025 into the sequence of arguments that @samp{%o} will substitute later.
8026
8027 @item %o
8028 Substitutes the names of all the output files, with spaces
8029 automatically placed around them.  You should write spaces
8030 around the @samp{%o} as well or the results are undefined.
8031 @samp{%o} is for use in the specs for running the linker.
8032 Input files whose names have no recognized suffix are not compiled
8033 at all, but they are included among the output files, so they will
8034 be linked.
8035
8036 @item %O
8037 Substitutes the suffix for object files.  Note that this is
8038 handled specially when it immediately follows @samp{%g, %u, or %U},
8039 because of the need for those to form complete file names.  The
8040 handling is such that @samp{%O} is treated exactly as if it had already
8041 been substituted, except that @samp{%g, %u, and %U} do not currently
8042 support additional @var{suffix} characters following @samp{%O} as they would
8043 following, for example, @samp{.o}.
8044
8045 @item %p
8046 Substitutes the standard macro predefinitions for the
8047 current target machine.  Use this when running @code{cpp}.
8048
8049 @item %P
8050 Like @samp{%p}, but puts @samp{__} before and after the name of each
8051 predefined macro, except for macros that start with @samp{__} or with
8052 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
8053 C@.
8054
8055 @item %I
8056 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
8057 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
8058 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
8059 and @option{-imultilib} as necessary.
8060
8061 @item %s
8062 Current argument is the name of a library or startup file of some sort.
8063 Search for that file in a standard list of directories and substitute
8064 the full name found.
8065
8066 @item %e@var{str}
8067 Print @var{str} as an error message.  @var{str} is terminated by a newline.
8068 Use this when inconsistent options are detected.
8069
8070 @item %(@var{name})
8071 Substitute the contents of spec string @var{name} at this point.
8072
8073 @item %[@var{name}]
8074 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
8075
8076 @item %x@{@var{option}@}
8077 Accumulate an option for @samp{%X}.
8078
8079 @item %X
8080 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
8081 spec string.
8082
8083 @item %Y
8084 Output the accumulated assembler options specified by @option{-Wa}.
8085
8086 @item %Z
8087 Output the accumulated preprocessor options specified by @option{-Wp}.
8088
8089 @item %a
8090 Process the @code{asm} spec.  This is used to compute the
8091 switches to be passed to the assembler.
8092
8093 @item %A
8094 Process the @code{asm_final} spec.  This is a spec string for
8095 passing switches to an assembler post-processor, if such a program is
8096 needed.
8097
8098 @item %l
8099 Process the @code{link} spec.  This is the spec for computing the
8100 command line passed to the linker.  Typically it will make use of the
8101 @samp{%L %G %S %D and %E} sequences.
8102
8103 @item %D
8104 Dump out a @option{-L} option for each directory that GCC believes might
8105 contain startup files.  If the target supports multilibs then the
8106 current multilib directory will be prepended to each of these paths.
8107
8108 @item %L
8109 Process the @code{lib} spec.  This is a spec string for deciding which
8110 libraries should be included on the command line to the linker.
8111
8112 @item %G
8113 Process the @code{libgcc} spec.  This is a spec string for deciding
8114 which GCC support library should be included on the command line to the linker.
8115
8116 @item %S
8117 Process the @code{startfile} spec.  This is a spec for deciding which
8118 object files should be the first ones passed to the linker.  Typically
8119 this might be a file named @file{crt0.o}.
8120
8121 @item %E
8122 Process the @code{endfile} spec.  This is a spec string that specifies
8123 the last object files that will be passed to the linker.
8124
8125 @item %C
8126 Process the @code{cpp} spec.  This is used to construct the arguments
8127 to be passed to the C preprocessor.
8128
8129 @item %1
8130 Process the @code{cc1} spec.  This is used to construct the options to be
8131 passed to the actual C compiler (@samp{cc1}).
8132
8133 @item %2
8134 Process the @code{cc1plus} spec.  This is used to construct the options to be
8135 passed to the actual C++ compiler (@samp{cc1plus}).
8136
8137 @item %*
8138 Substitute the variable part of a matched option.  See below.
8139 Note that each comma in the substituted string is replaced by
8140 a single space.
8141
8142 @item %<@code{S}
8143 Remove all occurrences of @code{-S} from the command line.  Note---this
8144 command is position dependent.  @samp{%} commands in the spec string
8145 before this one will see @code{-S}, @samp{%} commands in the spec string
8146 after this one will not.
8147
8148 @item %:@var{function}(@var{args})
8149 Call the named function @var{function}, passing it @var{args}.
8150 @var{args} is first processed as a nested spec string, then split
8151 into an argument vector in the usual fashion.  The function returns
8152 a string which is processed as if it had appeared literally as part
8153 of the current spec.
8154
8155 The following built-in spec functions are provided:
8156
8157 @table @code
8158 @item @code{getenv}
8159 The @code{getenv} spec function takes two arguments: an environment
8160 variable name and a string.  If the environment variable is not
8161 defined, a fatal error is issued.  Otherwise, the return value is the
8162 value of the environment variable concatenated with the string.  For
8163 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
8164
8165 @smallexample
8166 %:getenv(TOPDIR /include)
8167 @end smallexample
8168
8169 expands to @file{/path/to/top/include}.
8170
8171 @item @code{if-exists}
8172 The @code{if-exists} spec function takes one argument, an absolute
8173 pathname to a file.  If the file exists, @code{if-exists} returns the
8174 pathname.  Here is a small example of its usage:
8175
8176 @smallexample
8177 *startfile:
8178 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
8179 @end smallexample
8180
8181 @item @code{if-exists-else}
8182 The @code{if-exists-else} spec function is similar to the @code{if-exists}
8183 spec function, except that it takes two arguments.  The first argument is
8184 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
8185 returns the pathname.  If it does not exist, it returns the second argument.
8186 This way, @code{if-exists-else} can be used to select one file or another,
8187 based on the existence of the first.  Here is a small example of its usage:
8188
8189 @smallexample
8190 *startfile:
8191 crt0%O%s %:if-exists(crti%O%s) \
8192 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
8193 @end smallexample
8194
8195 @item @code{replace-outfile}
8196 The @code{replace-outfile} spec function takes two arguments.  It looks for the
8197 first argument in the outfiles array and replaces it with the second argument.  Here
8198 is a small example of its usage:
8199
8200 @smallexample
8201 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
8202 @end smallexample
8203
8204 @item @code{print-asm-header}
8205 The @code{print-asm-header} function takes no arguments and simply
8206 prints a banner like:
8207
8208 @smallexample
8209 Assembler options
8210 =================
8211
8212 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
8213 @end smallexample
8214
8215 It is used to separate compiler options from assembler options
8216 in the @option{--target-help} output.
8217 @end table
8218
8219 @item %@{@code{S}@}
8220 Substitutes the @code{-S} switch, if that switch was given to GCC@.
8221 If that switch was not specified, this substitutes nothing.  Note that
8222 the leading dash is omitted when specifying this option, and it is
8223 automatically inserted if the substitution is performed.  Thus the spec
8224 string @samp{%@{foo@}} would match the command-line option @option{-foo}
8225 and would output the command line option @option{-foo}.
8226
8227 @item %W@{@code{S}@}
8228 Like %@{@code{S}@} but mark last argument supplied within as a file to be
8229 deleted on failure.
8230
8231 @item %@{@code{S}*@}
8232 Substitutes all the switches specified to GCC whose names start
8233 with @code{-S}, but which also take an argument.  This is used for
8234 switches like @option{-o}, @option{-D}, @option{-I}, etc.
8235 GCC considers @option{-o foo} as being
8236 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
8237 text, including the space.  Thus two arguments would be generated.
8238
8239 @item %@{@code{S}*&@code{T}*@}
8240 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
8241 (the order of @code{S} and @code{T} in the spec is not significant).
8242 There can be any number of ampersand-separated variables; for each the
8243 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
8244
8245 @item %@{@code{S}:@code{X}@}
8246 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
8247
8248 @item %@{!@code{S}:@code{X}@}
8249 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
8250
8251 @item %@{@code{S}*:@code{X}@}
8252 Substitutes @code{X} if one or more switches whose names start with
8253 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
8254 once, no matter how many such switches appeared.  However, if @code{%*}
8255 appears somewhere in @code{X}, then @code{X} will be substituted once
8256 for each matching switch, with the @code{%*} replaced by the part of
8257 that switch that matched the @code{*}.
8258
8259 @item %@{.@code{S}:@code{X}@}
8260 Substitutes @code{X}, if processing a file with suffix @code{S}.
8261
8262 @item %@{!.@code{S}:@code{X}@}
8263 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
8264
8265 @item %@{,@code{S}:@code{X}@}
8266 Substitutes @code{X}, if processing a file for language @code{S}.
8267
8268 @item %@{!,@code{S}:@code{X}@}
8269 Substitutes @code{X}, if not processing a file for language @code{S}.
8270
8271 @item %@{@code{S}|@code{P}:@code{X}@}
8272 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
8273 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
8274 @code{*} sequences as well, although they have a stronger binding than
8275 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
8276 alternatives must be starred, and only the first matching alternative
8277 is substituted.
8278
8279 For example, a spec string like this:
8280
8281 @smallexample
8282 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
8283 @end smallexample
8284
8285 will output the following command-line options from the following input
8286 command-line options:
8287
8288 @smallexample
8289 fred.c        -foo -baz
8290 jim.d         -bar -boggle
8291 -d fred.c     -foo -baz -boggle
8292 -d jim.d      -bar -baz -boggle
8293 @end smallexample
8294
8295 @item %@{S:X; T:Y; :D@}
8296
8297 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
8298 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
8299 be as many clauses as you need.  This may be combined with @code{.},
8300 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
8301
8302
8303 @end table
8304
8305 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
8306 construct may contain other nested @samp{%} constructs or spaces, or
8307 even newlines.  They are processed as usual, as described above.
8308 Trailing white space in @code{X} is ignored.  White space may also
8309 appear anywhere on the left side of the colon in these constructs,
8310 except between @code{.} or @code{*} and the corresponding word.
8311
8312 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8313 handled specifically in these constructs.  If another value of
8314 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8315 @option{-W} switch is found later in the command line, the earlier
8316 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8317 just one letter, which passes all matching options.
8318
8319 The character @samp{|} at the beginning of the predicate text is used to
8320 indicate that a command should be piped to the following command, but
8321 only if @option{-pipe} is specified.
8322
8323 It is built into GCC which switches take arguments and which do not.
8324 (You might think it would be useful to generalize this to allow each
8325 compiler's spec to say which switches take arguments.  But this cannot
8326 be done in a consistent fashion.  GCC cannot even decide which input
8327 files have been specified without knowing which switches take arguments,
8328 and it must know which input files to compile in order to tell which
8329 compilers to run).
8330
8331 GCC also knows implicitly that arguments starting in @option{-l} are to be
8332 treated as compiler output files, and passed to the linker in their
8333 proper position among the other output files.
8334
8335 @c man begin OPTIONS
8336
8337 @node Target Options
8338 @section Specifying Target Machine and Compiler Version
8339 @cindex target options
8340 @cindex cross compiling
8341 @cindex specifying machine version
8342 @cindex specifying compiler version and target machine
8343 @cindex compiler version, specifying
8344 @cindex target machine, specifying
8345
8346 The usual way to run GCC is to run the executable called @file{gcc}, or
8347 @file{<machine>-gcc} when cross-compiling, or
8348 @file{<machine>-gcc-<version>} to run a version other than the one that
8349 was installed last.  Sometimes this is inconvenient, so GCC provides
8350 options that will switch to another cross-compiler or version.
8351
8352 @table @gcctabopt
8353 @item -b @var{machine}
8354 @opindex b
8355 The argument @var{machine} specifies the target machine for compilation.
8356
8357 The value to use for @var{machine} is the same as was specified as the
8358 machine type when configuring GCC as a cross-compiler.  For
8359 example, if a cross-compiler was configured with @samp{configure
8360 arm-elf}, meaning to compile for an arm processor with elf binaries,
8361 then you would specify @option{-b arm-elf} to run that cross compiler.
8362 Because there are other options beginning with @option{-b}, the
8363 configuration must contain a hyphen.
8364
8365 @item -V @var{version}
8366 @opindex V
8367 The argument @var{version} specifies which version of GCC to run.
8368 This is useful when multiple versions are installed.  For example,
8369 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8370 @end table
8371
8372 The @option{-V} and @option{-b} options work by running the
8373 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8374 use them if you can just run that directly.
8375
8376 @node Submodel Options
8377 @section Hardware Models and Configurations
8378 @cindex submodel options
8379 @cindex specifying hardware config
8380 @cindex hardware models and configurations, specifying
8381 @cindex machine dependent options
8382
8383 Earlier we discussed the standard option @option{-b} which chooses among
8384 different installed compilers for completely different target
8385 machines, such as VAX vs.@: 68000 vs.@: 80386.
8386
8387 In addition, each of these target machine types can have its own
8388 special options, starting with @samp{-m}, to choose among various
8389 hardware models or configurations---for example, 68010 vs 68020,
8390 floating coprocessor or none.  A single installed version of the
8391 compiler can compile for any model or configuration, according to the
8392 options specified.
8393
8394 Some configurations of the compiler also support additional special
8395 options, usually for compatibility with other compilers on the same
8396 platform.
8397
8398 @c This list is ordered alphanumerically by subsection name.
8399 @c It should be the same order and spelling as these options are listed
8400 @c in Machine Dependent Options
8401
8402 @menu
8403 * ARC Options::
8404 * ARM Options::
8405 * AVR Options::
8406 * Blackfin Options::
8407 * CRIS Options::
8408 * CRX Options::
8409 * Darwin Options::
8410 * DEC Alpha Options::
8411 * DEC Alpha/VMS Options::
8412 * FRV Options::
8413 * GNU/Linux Options::
8414 * H8/300 Options::
8415 * HPPA Options::
8416 * i386 and x86-64 Options::
8417 * IA-64 Options::
8418 * M32C Options::
8419 * M32R/D Options::
8420 * M680x0 Options::
8421 * M68hc1x Options::
8422 * MCore Options::
8423 * MIPS Options::
8424 * MMIX Options::
8425 * MN10300 Options::
8426 * PDP-11 Options::
8427 * PowerPC Options::
8428 * RS/6000 and PowerPC Options::
8429 * S/390 and zSeries Options::
8430 * Score Options::
8431 * SH Options::
8432 * SPARC Options::
8433 * SPU Options::
8434 * System V Options::
8435 * V850 Options::
8436 * VAX Options::
8437 * VxWorks Options::
8438 * x86-64 Options::
8439 * Xstormy16 Options::
8440 * Xtensa Options::
8441 * zSeries Options::
8442 @end menu
8443
8444 @node ARC Options
8445 @subsection ARC Options
8446 @cindex ARC Options
8447
8448 These options are defined for ARC implementations:
8449
8450 @table @gcctabopt
8451 @item -EL
8452 @opindex EL
8453 Compile code for little endian mode.  This is the default.
8454
8455 @item -EB
8456 @opindex EB
8457 Compile code for big endian mode.
8458
8459 @item -mmangle-cpu
8460 @opindex mmangle-cpu
8461 Prepend the name of the cpu to all public symbol names.
8462 In multiple-processor systems, there are many ARC variants with different
8463 instruction and register set characteristics.  This flag prevents code
8464 compiled for one cpu to be linked with code compiled for another.
8465 No facility exists for handling variants that are ``almost identical''.
8466 This is an all or nothing option.
8467
8468 @item -mcpu=@var{cpu}
8469 @opindex mcpu
8470 Compile code for ARC variant @var{cpu}.
8471 Which variants are supported depend on the configuration.
8472 All variants support @option{-mcpu=base}, this is the default.
8473
8474 @item -mtext=@var{text-section}
8475 @itemx -mdata=@var{data-section}
8476 @itemx -mrodata=@var{readonly-data-section}
8477 @opindex mtext
8478 @opindex mdata
8479 @opindex mrodata
8480 Put functions, data, and readonly data in @var{text-section},
8481 @var{data-section}, and @var{readonly-data-section} respectively
8482 by default.  This can be overridden with the @code{section} attribute.
8483 @xref{Variable Attributes}.
8484
8485 @end table
8486
8487 @node ARM Options
8488 @subsection ARM Options
8489 @cindex ARM options
8490
8491 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8492 architectures:
8493
8494 @table @gcctabopt
8495 @item -mabi=@var{name}
8496 @opindex mabi
8497 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8498 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8499
8500 @item -mapcs-frame
8501 @opindex mapcs-frame
8502 Generate a stack frame that is compliant with the ARM Procedure Call
8503 Standard for all functions, even if this is not strictly necessary for
8504 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8505 with this option will cause the stack frames not to be generated for
8506 leaf functions.  The default is @option{-mno-apcs-frame}.
8507
8508 @item -mapcs
8509 @opindex mapcs
8510 This is a synonym for @option{-mapcs-frame}.
8511
8512 @ignore
8513 @c not currently implemented
8514 @item -mapcs-stack-check
8515 @opindex mapcs-stack-check
8516 Generate code to check the amount of stack space available upon entry to
8517 every function (that actually uses some stack space).  If there is
8518 insufficient space available then either the function
8519 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8520 called, depending upon the amount of stack space required.  The run time
8521 system is required to provide these functions.  The default is
8522 @option{-mno-apcs-stack-check}, since this produces smaller code.
8523
8524 @c not currently implemented
8525 @item -mapcs-float
8526 @opindex mapcs-float
8527 Pass floating point arguments using the float point registers.  This is
8528 one of the variants of the APCS@.  This option is recommended if the
8529 target hardware has a floating point unit or if a lot of floating point
8530 arithmetic is going to be performed by the code.  The default is
8531 @option{-mno-apcs-float}, since integer only code is slightly increased in
8532 size if @option{-mapcs-float} is used.
8533
8534 @c not currently implemented
8535 @item -mapcs-reentrant
8536 @opindex mapcs-reentrant
8537 Generate reentrant, position independent code.  The default is
8538 @option{-mno-apcs-reentrant}.
8539 @end ignore
8540
8541 @item -mthumb-interwork
8542 @opindex mthumb-interwork
8543 Generate code which supports calling between the ARM and Thumb
8544 instruction sets.  Without this option the two instruction sets cannot
8545 be reliably used inside one program.  The default is
8546 @option{-mno-thumb-interwork}, since slightly larger code is generated
8547 when @option{-mthumb-interwork} is specified.
8548
8549 @item -mno-sched-prolog
8550 @opindex mno-sched-prolog
8551 Prevent the reordering of instructions in the function prolog, or the
8552 merging of those instruction with the instructions in the function's
8553 body.  This means that all functions will start with a recognizable set
8554 of instructions (or in fact one of a choice from a small set of
8555 different function prologues), and this information can be used to
8556 locate the start if functions inside an executable piece of code.  The
8557 default is @option{-msched-prolog}.
8558
8559 @item -mhard-float
8560 @opindex mhard-float
8561 Generate output containing floating point instructions.  This is the
8562 default.
8563
8564 @item -msoft-float
8565 @opindex msoft-float
8566 Generate output containing library calls for floating point.
8567 @strong{Warning:} the requisite libraries are not available for all ARM
8568 targets.  Normally the facilities of the machine's usual C compiler are
8569 used, but this cannot be done directly in cross-compilation.  You must make
8570 your own arrangements to provide suitable library functions for
8571 cross-compilation.
8572
8573 @option{-msoft-float} changes the calling convention in the output file;
8574 therefore, it is only useful if you compile @emph{all} of a program with
8575 this option.  In particular, you need to compile @file{libgcc.a}, the
8576 library that comes with GCC, with @option{-msoft-float} in order for
8577 this to work.
8578
8579 @item -mfloat-abi=@var{name}
8580 @opindex mfloat-abi
8581 Specifies which ABI to use for floating point values.  Permissible values
8582 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8583
8584 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8585 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8586 of floating point instructions, but still uses the soft-float calling
8587 conventions.
8588
8589 @item -mlittle-endian
8590 @opindex mlittle-endian
8591 Generate code for a processor running in little-endian mode.  This is
8592 the default for all standard configurations.
8593
8594 @item -mbig-endian
8595 @opindex mbig-endian
8596 Generate code for a processor running in big-endian mode; the default is
8597 to compile code for a little-endian processor.
8598
8599 @item -mwords-little-endian
8600 @opindex mwords-little-endian
8601 This option only applies when generating code for big-endian processors.
8602 Generate code for a little-endian word order but a big-endian byte
8603 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8604 option should only be used if you require compatibility with code for
8605 big-endian ARM processors generated by versions of the compiler prior to
8606 2.8.
8607
8608 @item -mcpu=@var{name}
8609 @opindex mcpu
8610 This specifies the name of the target ARM processor.  GCC uses this name
8611 to determine what kind of instructions it can emit when generating
8612 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8613 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8614 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8615 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8616 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8617 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8618 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8619 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8620 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8621 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8622 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8623 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8624 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8625 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8626 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-r4f}, @samp{cortex-m3},
8627 @samp{cortex-m1},
8628 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8629
8630 @item -mtune=@var{name}
8631 @opindex mtune
8632 This option is very similar to the @option{-mcpu=} option, except that
8633 instead of specifying the actual target processor type, and hence
8634 restricting which instructions can be used, it specifies that GCC should
8635 tune the performance of the code as if the target were of the type
8636 specified in this option, but still choosing the instructions that it
8637 will generate based on the cpu specified by a @option{-mcpu=} option.
8638 For some ARM implementations better performance can be obtained by using
8639 this option.
8640
8641 @item -march=@var{name}
8642 @opindex march
8643 This specifies the name of the target ARM architecture.  GCC uses this
8644 name to determine what kind of instructions it can emit when generating
8645 assembly code.  This option can be used in conjunction with or instead
8646 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8647 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8648 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8649 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
8650 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m},
8651 @samp{iwmmxt}, @samp{ep9312}.
8652
8653 @item -mfpu=@var{name}
8654 @itemx -mfpe=@var{number}
8655 @itemx -mfp=@var{number}
8656 @opindex mfpu
8657 @opindex mfpe
8658 @opindex mfp
8659 This specifies what floating point hardware (or hardware emulation) is
8660 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8661 @samp{fpe3}, @samp{maverick}, @samp{vfp}, @samp{vfpv3}, @samp{vfpv3-d16} and
8662 @samp{neon}.  @option{-mfp} and @option{-mfpe}
8663 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8664 with older versions of GCC@.
8665
8666 If @option{-msoft-float} is specified this specifies the format of
8667 floating point values.
8668
8669 @item -mstructure-size-boundary=@var{n}
8670 @opindex mstructure-size-boundary
8671 The size of all structures and unions will be rounded up to a multiple
8672 of the number of bits set by this option.  Permissible values are 8, 32
8673 and 64.  The default value varies for different toolchains.  For the COFF
8674 targeted toolchain the default value is 8.  A value of 64 is only allowed
8675 if the underlying ABI supports it.
8676
8677 Specifying the larger number can produce faster, more efficient code, but
8678 can also increase the size of the program.  Different values are potentially
8679 incompatible.  Code compiled with one value cannot necessarily expect to
8680 work with code or libraries compiled with another value, if they exchange
8681 information using structures or unions.
8682
8683 @item -mabort-on-noreturn
8684 @opindex mabort-on-noreturn
8685 Generate a call to the function @code{abort} at the end of a
8686 @code{noreturn} function.  It will be executed if the function tries to
8687 return.
8688
8689 @item -mlong-calls
8690 @itemx -mno-long-calls
8691 @opindex mlong-calls
8692 @opindex mno-long-calls
8693 Tells the compiler to perform function calls by first loading the
8694 address of the function into a register and then performing a subroutine
8695 call on this register.  This switch is needed if the target function
8696 will lie outside of the 64 megabyte addressing range of the offset based
8697 version of subroutine call instruction.
8698
8699 Even if this switch is enabled, not all function calls will be turned
8700 into long calls.  The heuristic is that static functions, functions
8701 which have the @samp{short-call} attribute, functions that are inside
8702 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8703 definitions have already been compiled within the current compilation
8704 unit, will not be turned into long calls.  The exception to this rule is
8705 that weak function definitions, functions with the @samp{long-call}
8706 attribute or the @samp{section} attribute, and functions that are within
8707 the scope of a @samp{#pragma long_calls} directive, will always be
8708 turned into long calls.
8709
8710 This feature is not enabled by default.  Specifying
8711 @option{-mno-long-calls} will restore the default behavior, as will
8712 placing the function calls within the scope of a @samp{#pragma
8713 long_calls_off} directive.  Note these switches have no effect on how
8714 the compiler generates code to handle function calls via function
8715 pointers.
8716
8717 @item -mnop-fun-dllimport
8718 @opindex mnop-fun-dllimport
8719 Disable support for the @code{dllimport} attribute.
8720
8721 @item -msingle-pic-base
8722 @opindex msingle-pic-base
8723 Treat the register used for PIC addressing as read-only, rather than
8724 loading it in the prologue for each function.  The run-time system is
8725 responsible for initializing this register with an appropriate value
8726 before execution begins.
8727
8728 @item -mpic-register=@var{reg}
8729 @opindex mpic-register
8730 Specify the register to be used for PIC addressing.  The default is R10
8731 unless stack-checking is enabled, when R9 is used.
8732
8733 @item -mcirrus-fix-invalid-insns
8734 @opindex mcirrus-fix-invalid-insns
8735 @opindex mno-cirrus-fix-invalid-insns
8736 Insert NOPs into the instruction stream to in order to work around
8737 problems with invalid Maverick instruction combinations.  This option
8738 is only valid if the @option{-mcpu=ep9312} option has been used to
8739 enable generation of instructions for the Cirrus Maverick floating
8740 point co-processor.  This option is not enabled by default, since the
8741 problem is only present in older Maverick implementations.  The default
8742 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8743 switch.
8744
8745 @item -mpoke-function-name
8746 @opindex mpoke-function-name
8747 Write the name of each function into the text section, directly
8748 preceding the function prologue.  The generated code is similar to this:
8749
8750 @smallexample
8751      t0
8752          .ascii "arm_poke_function_name", 0
8753          .align
8754      t1
8755          .word 0xff000000 + (t1 - t0)
8756      arm_poke_function_name
8757          mov     ip, sp
8758          stmfd   sp!, @{fp, ip, lr, pc@}
8759          sub     fp, ip, #4
8760 @end smallexample
8761
8762 When performing a stack backtrace, code can inspect the value of
8763 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8764 location @code{pc - 12} and the top 8 bits are set, then we know that
8765 there is a function name embedded immediately preceding this location
8766 and has length @code{((pc[-3]) & 0xff000000)}.
8767
8768 @item -mthumb
8769 @opindex mthumb
8770 Generate code for the Thumb instruction set.  The default is to
8771 use the 32-bit ARM instruction set.
8772 This option automatically enables either 16-bit Thumb-1 or
8773 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8774 and @option{-march=@var{name}} options.
8775
8776 @item -mtpcs-frame
8777 @opindex mtpcs-frame
8778 Generate a stack frame that is compliant with the Thumb Procedure Call
8779 Standard for all non-leaf functions.  (A leaf function is one that does
8780 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8781
8782 @item -mtpcs-leaf-frame
8783 @opindex mtpcs-leaf-frame
8784 Generate a stack frame that is compliant with the Thumb Procedure Call
8785 Standard for all leaf functions.  (A leaf function is one that does
8786 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8787
8788 @item -mcallee-super-interworking
8789 @opindex mcallee-super-interworking
8790 Gives all externally visible functions in the file being compiled an ARM
8791 instruction set header which switches to Thumb mode before executing the
8792 rest of the function.  This allows these functions to be called from
8793 non-interworking code.
8794
8795 @item -mcaller-super-interworking
8796 @opindex mcaller-super-interworking
8797 Allows calls via function pointers (including virtual functions) to
8798 execute correctly regardless of whether the target code has been
8799 compiled for interworking or not.  There is a small overhead in the cost
8800 of executing a function pointer if this option is enabled.
8801
8802 @item -mtp=@var{name}
8803 @opindex mtp
8804 Specify the access model for the thread local storage pointer.  The valid
8805 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8806 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8807 (supported in the arm6k architecture), and @option{auto}, which uses the
8808 best available method for the selected processor.  The default setting is
8809 @option{auto}.
8810
8811 @end table
8812
8813 @node AVR Options
8814 @subsection AVR Options
8815 @cindex AVR Options
8816
8817 These options are defined for AVR implementations:
8818
8819 @table @gcctabopt
8820 @item -mmcu=@var{mcu}
8821 @opindex mmcu
8822 Specify ATMEL AVR instruction set or MCU type.
8823
8824 Instruction set avr1 is for the minimal AVR core, not supported by the C
8825 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8826 attiny11, attiny12, attiny15, attiny28).
8827
8828 Instruction set avr2 (default) is for the classic AVR core with up to
8829 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8830 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8831 at90c8534, at90s8535).
8832
8833 Instruction set avr3 is for the classic AVR core with up to 128K program
8834 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8835
8836 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8837 memory space (MCU types: atmega8, atmega83, atmega85).
8838
8839 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8840 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8841 atmega64, atmega128, at43usb355, at94k).
8842
8843 @item -msize
8844 @opindex msize
8845 Output instruction sizes to the asm file.
8846
8847 @item -minit-stack=@var{N}
8848 @opindex minit-stack
8849 Specify the initial stack address, which may be a symbol or numeric value,
8850 @samp{__stack} is the default.
8851
8852 @item -mno-interrupts
8853 @opindex mno-interrupts
8854 Generated code is not compatible with hardware interrupts.
8855 Code size will be smaller.
8856
8857 @item -mcall-prologues
8858 @opindex mcall-prologues
8859 Functions prologues/epilogues expanded as call to appropriate
8860 subroutines.  Code size will be smaller.
8861
8862 @item -mno-tablejump
8863 @opindex mno-tablejump
8864 Do not generate tablejump insns which sometimes increase code size.
8865
8866 @item -mtiny-stack
8867 @opindex mtiny-stack
8868 Change only the low 8 bits of the stack pointer.
8869
8870 @item -mint8
8871 @opindex mint8
8872 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8873 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8874 and long long will be 4 bytes.  Please note that this option does not
8875 comply to the C standards, but it will provide you with smaller code
8876 size.
8877 @end table
8878
8879 @node Blackfin Options
8880 @subsection Blackfin Options
8881 @cindex Blackfin Options
8882
8883 @table @gcctabopt
8884 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8885 @opindex mcpu=
8886 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8887 can be one of @samp{bf522}, @samp{bf523}, @samp{bf524},
8888 @samp{bf525}, @samp{bf526}, @samp{bf527},
8889 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8890 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8891 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
8892 @samp{bf561}.
8893 The optional @var{sirevision} specifies the silicon revision of the target
8894 Blackfin processor.  Any workarounds available for the targeted silicon revision
8895 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8896 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8897 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8898 hexadecimal digits representing the major and minor numbers in the silicon
8899 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8900 is not defined.  If @var{sirevision} is @samp{any}, the
8901 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8902 If this optional @var{sirevision} is not used, GCC assumes the latest known
8903 silicon revision of the targeted Blackfin processor.
8904
8905 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8906 Only the processor macro is defined.
8907 Without this option, @samp{bf532} is used as the processor by default.
8908 The corresponding predefined processor macros for @var{cpu} is to
8909 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8910 provided by libgloss to be linked in if @option{-msim} is not given.
8911
8912 @item -msim
8913 @opindex msim
8914 Specifies that the program will be run on the simulator.  This causes
8915 the simulator BSP provided by libgloss to be linked in.  This option
8916 has effect only for @samp{bfin-elf} toolchain.
8917 Certain other options, such as @option{-mid-shared-library} and
8918 @option{-mfdpic}, imply @option{-msim}.
8919
8920 @item -momit-leaf-frame-pointer
8921 @opindex momit-leaf-frame-pointer
8922 Don't keep the frame pointer in a register for leaf functions.  This
8923 avoids the instructions to save, set up and restore frame pointers and
8924 makes an extra register available in leaf functions.  The option
8925 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8926 which might make debugging harder.
8927
8928 @item -mspecld-anomaly
8929 @opindex mspecld-anomaly
8930 When enabled, the compiler will ensure that the generated code does not
8931 contain speculative loads after jump instructions. If this option is used,
8932 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8933
8934 @item -mno-specld-anomaly
8935 @opindex mno-specld-anomaly
8936 Don't generate extra code to prevent speculative loads from occurring.
8937
8938 @item -mcsync-anomaly
8939 @opindex mcsync-anomaly
8940 When enabled, the compiler will ensure that the generated code does not
8941 contain CSYNC or SSYNC instructions too soon after conditional branches.
8942 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8943
8944 @item -mno-csync-anomaly
8945 @opindex mno-csync-anomaly
8946 Don't generate extra code to prevent CSYNC or SSYNC instructions from
8947 occurring too soon after a conditional branch.
8948
8949 @item -mlow-64k
8950 @opindex mlow-64k
8951 When enabled, the compiler is free to take advantage of the knowledge that
8952 the entire program fits into the low 64k of memory.
8953
8954 @item -mno-low-64k
8955 @opindex mno-low-64k
8956 Assume that the program is arbitrarily large.  This is the default.
8957
8958 @item -mstack-check-l1
8959 @opindex mstack-check-l1
8960 Do stack checking using information placed into L1 scratchpad memory by the
8961 uClinux kernel.
8962
8963 @item -mid-shared-library
8964 @opindex mid-shared-library
8965 Generate code that supports shared libraries via the library ID method.
8966 This allows for execute in place and shared libraries in an environment
8967 without virtual memory management.  This option implies @option{-fPIC}.
8968 With a @samp{bfin-elf} target, this option implies @option{-msim}.
8969
8970 @item -mno-id-shared-library
8971 @opindex mno-id-shared-library
8972 Generate code that doesn't assume ID based shared libraries are being used.
8973 This is the default.
8974
8975 @item -mleaf-id-shared-library
8976 @opindex mleaf-id-shared-library
8977 Generate code that supports shared libraries via the library ID method,
8978 but assumes that this library or executable won't link against any other
8979 ID shared libraries.  That allows the compiler to use faster code for jumps
8980 and calls.
8981
8982 @item -mno-leaf-id-shared-library
8983 @opindex mno-leaf-id-shared-library
8984 Do not assume that the code being compiled won't link against any ID shared
8985 libraries.  Slower code will be generated for jump and call insns.
8986
8987 @item -mshared-library-id=n
8988 @opindex mshared-library-id
8989 Specified the identification number of the ID based shared library being
8990 compiled.  Specifying a value of 0 will generate more compact code, specifying
8991 other values will force the allocation of that number to the current
8992 library but is no more space or time efficient than omitting this option.
8993
8994 @item -msep-data
8995 @opindex msep-data
8996 Generate code that allows the data segment to be located in a different
8997 area of memory from the text segment.  This allows for execute in place in
8998 an environment without virtual memory management by eliminating relocations
8999 against the text section.
9000
9001 @item -mno-sep-data
9002 @opindex mno-sep-data
9003 Generate code that assumes that the data segment follows the text segment.
9004 This is the default.
9005
9006 @item -mlong-calls
9007 @itemx -mno-long-calls
9008 @opindex mlong-calls
9009 @opindex mno-long-calls
9010 Tells the compiler to perform function calls by first loading the
9011 address of the function into a register and then performing a subroutine
9012 call on this register.  This switch is needed if the target function
9013 will lie outside of the 24 bit addressing range of the offset based
9014 version of subroutine call instruction.
9015
9016 This feature is not enabled by default.  Specifying
9017 @option{-mno-long-calls} will restore the default behavior.  Note these
9018 switches have no effect on how the compiler generates code to handle
9019 function calls via function pointers.
9020
9021 @item -mfast-fp
9022 @opindex mfast-fp
9023 Link with the fast floating-point library. This library relaxes some of
9024 the IEEE floating-point standard's rules for checking inputs against
9025 Not-a-Number (NAN), in the interest of performance.
9026
9027 @item -minline-plt
9028 @opindex minline-plt
9029 Enable inlining of PLT entries in function calls to functions that are
9030 not known to bind locally.  It has no effect without @option{-mfdpic}.
9031
9032 @item -mmulticore
9033 @opindex mmulticore
9034 Build standalone application for multicore Blackfin processor. Proper
9035 start files and link scripts will be used to support multicore.
9036 This option defines @code{__BFIN_MULTICORE}. It can only be used with
9037 @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. It can be used with
9038 @option{-mcorea} or @option{-mcoreb}. If it's used without
9039 @option{-mcorea} or @option{-mcoreb}, single application/dual core
9040 programming model is used. In this model, the main function of Core B
9041 should be named as coreb_main. If it's used with @option{-mcorea} or
9042 @option{-mcoreb}, one application per core programming model is used.
9043 If this option is not used, single core application programming
9044 model is used.
9045
9046 @item -mcorea
9047 @opindex mcorea
9048 Build standalone application for Core A of BF561 when using
9049 one application per core programming model. Proper start files
9050 and link scripts will be used to support Core A. This option
9051 defines @code{__BFIN_COREA}. It must be used with @option{-mmulticore}.
9052
9053 @item -mcoreb
9054 @opindex mcoreb
9055 Build standalone application for Core B of BF561 when using
9056 one application per core programming model. Proper start files
9057 and link scripts will be used to support Core B. This option
9058 defines @code{__BFIN_COREB}. When this option is used, coreb_main
9059 should be used instead of main. It must be used with
9060 @option{-mmulticore}. 
9061
9062 @item -msdram
9063 @opindex msdram
9064 Build standalone application for SDRAM. Proper start files and
9065 link scripts will be used to put the application into SDRAM.
9066 Loader should initialize SDRAM before loading the application
9067 into SDRAM. This option defines @code{__BFIN_SDRAM}.
9068 @end table
9069
9070 @node CRIS Options
9071 @subsection CRIS Options
9072 @cindex CRIS Options
9073
9074 These options are defined specifically for the CRIS ports.
9075
9076 @table @gcctabopt
9077 @item -march=@var{architecture-type}
9078 @itemx -mcpu=@var{architecture-type}
9079 @opindex march
9080 @opindex mcpu
9081 Generate code for the specified architecture.  The choices for
9082 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
9083 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
9084 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
9085 @samp{v10}.
9086
9087 @item -mtune=@var{architecture-type}
9088 @opindex mtune
9089 Tune to @var{architecture-type} everything applicable about the generated
9090 code, except for the ABI and the set of available instructions.  The
9091 choices for @var{architecture-type} are the same as for
9092 @option{-march=@var{architecture-type}}.
9093
9094 @item -mmax-stack-frame=@var{n}
9095 @opindex mmax-stack-frame
9096 Warn when the stack frame of a function exceeds @var{n} bytes.
9097
9098 @item -metrax4
9099 @itemx -metrax100
9100 @opindex metrax4
9101 @opindex metrax100
9102 The options @option{-metrax4} and @option{-metrax100} are synonyms for
9103 @option{-march=v3} and @option{-march=v8} respectively.
9104
9105 @item -mmul-bug-workaround
9106 @itemx -mno-mul-bug-workaround
9107 @opindex mmul-bug-workaround
9108 @opindex mno-mul-bug-workaround
9109 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
9110 models where it applies.  This option is active by default.
9111
9112 @item -mpdebug
9113 @opindex mpdebug
9114 Enable CRIS-specific verbose debug-related information in the assembly
9115 code.  This option also has the effect to turn off the @samp{#NO_APP}
9116 formatted-code indicator to the assembler at the beginning of the
9117 assembly file.
9118
9119 @item -mcc-init
9120 @opindex mcc-init
9121 Do not use condition-code results from previous instruction; always emit
9122 compare and test instructions before use of condition codes.
9123
9124 @item -mno-side-effects
9125 @opindex mno-side-effects
9126 Do not emit instructions with side-effects in addressing modes other than
9127 post-increment.
9128
9129 @item -mstack-align
9130 @itemx -mno-stack-align
9131 @itemx -mdata-align
9132 @itemx -mno-data-align
9133 @itemx -mconst-align
9134 @itemx -mno-const-align
9135 @opindex mstack-align
9136 @opindex mno-stack-align
9137 @opindex mdata-align
9138 @opindex mno-data-align
9139 @opindex mconst-align
9140 @opindex mno-const-align
9141 These options (no-options) arranges (eliminate arrangements) for the
9142 stack-frame, individual data and constants to be aligned for the maximum
9143 single data access size for the chosen CPU model.  The default is to
9144 arrange for 32-bit alignment.  ABI details such as structure layout are
9145 not affected by these options.
9146
9147 @item -m32-bit
9148 @itemx -m16-bit
9149 @itemx -m8-bit
9150 @opindex m32-bit
9151 @opindex m16-bit
9152 @opindex m8-bit
9153 Similar to the stack- data- and const-align options above, these options
9154 arrange for stack-frame, writable data and constants to all be 32-bit,
9155 16-bit or 8-bit aligned.  The default is 32-bit alignment.
9156
9157 @item -mno-prologue-epilogue
9158 @itemx -mprologue-epilogue
9159 @opindex mno-prologue-epilogue
9160 @opindex mprologue-epilogue
9161 With @option{-mno-prologue-epilogue}, the normal function prologue and
9162 epilogue that sets up the stack-frame are omitted and no return
9163 instructions or return sequences are generated in the code.  Use this
9164 option only together with visual inspection of the compiled code: no
9165 warnings or errors are generated when call-saved registers must be saved,
9166 or storage for local variable needs to be allocated.
9167
9168 @item -mno-gotplt
9169 @itemx -mgotplt
9170 @opindex mno-gotplt
9171 @opindex mgotplt
9172 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
9173 instruction sequences that load addresses for functions from the PLT part
9174 of the GOT rather than (traditional on other architectures) calls to the
9175 PLT@.  The default is @option{-mgotplt}.
9176
9177 @item -melf
9178 @opindex melf
9179 Legacy no-op option only recognized with the cris-axis-elf and
9180 cris-axis-linux-gnu targets.
9181
9182 @item -mlinux
9183 @opindex mlinux
9184 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
9185
9186 @item -sim
9187 @opindex sim
9188 This option, recognized for the cris-axis-elf arranges
9189 to link with input-output functions from a simulator library.  Code,
9190 initialized data and zero-initialized data are allocated consecutively.
9191
9192 @item -sim2
9193 @opindex sim2
9194 Like @option{-sim}, but pass linker options to locate initialized data at
9195 0x40000000 and zero-initialized data at 0x80000000.
9196 @end table
9197
9198 @node CRX Options
9199 @subsection CRX Options
9200 @cindex CRX Options
9201
9202 These options are defined specifically for the CRX ports.
9203
9204 @table @gcctabopt
9205
9206 @item -mmac
9207 @opindex mmac
9208 Enable the use of multiply-accumulate instructions. Disabled by default.
9209
9210 @item -mpush-args
9211 @opindex mpush-args
9212 Push instructions will be used to pass outgoing arguments when functions
9213 are called. Enabled by default.
9214 @end table
9215
9216 @node Darwin Options
9217 @subsection Darwin Options
9218 @cindex Darwin options
9219
9220 These options are defined for all architectures running the Darwin operating
9221 system.
9222
9223 FSF GCC on Darwin does not create ``fat'' object files; it will create
9224 an object file for the single architecture that it was built to
9225 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
9226 @option{-arch} options are used; it does so by running the compiler or
9227 linker multiple times and joining the results together with
9228 @file{lipo}.
9229
9230 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
9231 @samp{i686}) is determined by the flags that specify the ISA
9232 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
9233 @option{-force_cpusubtype_ALL} option can be used to override this.
9234
9235 The Darwin tools vary in their behavior when presented with an ISA
9236 mismatch.  The assembler, @file{as}, will only permit instructions to
9237 be used that are valid for the subtype of the file it is generating,
9238 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
9239 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
9240 and print an error if asked to create a shared library with a less
9241 restrictive subtype than its input files (for instance, trying to put
9242 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
9243 for executables, @file{ld}, will quietly give the executable the most
9244 restrictive subtype of any of its input files.
9245
9246 @table @gcctabopt
9247 @item -F@var{dir}
9248 @opindex F
9249 Add the framework directory @var{dir} to the head of the list of
9250 directories to be searched for header files.  These directories are
9251 interleaved with those specified by @option{-I} options and are
9252 scanned in a left-to-right order.
9253
9254 A framework directory is a directory with frameworks in it.  A
9255 framework is a directory with a @samp{"Headers"} and/or
9256 @samp{"PrivateHeaders"} directory contained directly in it that ends
9257 in @samp{".framework"}.  The name of a framework is the name of this
9258 directory excluding the @samp{".framework"}.  Headers associated with
9259 the framework are found in one of those two directories, with
9260 @samp{"Headers"} being searched first.  A subframework is a framework
9261 directory that is in a framework's @samp{"Frameworks"} directory.
9262 Includes of subframework headers can only appear in a header of a
9263 framework that contains the subframework, or in a sibling subframework
9264 header.  Two subframeworks are siblings if they occur in the same
9265 framework.  A subframework should not have the same name as a
9266 framework, a warning will be issued if this is violated.  Currently a
9267 subframework cannot have subframeworks, in the future, the mechanism
9268 may be extended to support this.  The standard frameworks can be found
9269 in @samp{"/System/Library/Frameworks"} and
9270 @samp{"/Library/Frameworks"}.  An example include looks like
9271 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
9272 the name of the framework and header.h is found in the
9273 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
9274
9275 @item -iframework@var{dir}
9276 @opindex iframework
9277 Like @option{-F} except the directory is a treated as a system
9278 directory.  The main difference between this @option{-iframework} and
9279 @option{-F} is that with @option{-iframework} the compiler does not
9280 warn about constructs contained within header files found via
9281 @var{dir}.  This option is valid only for the C family of languages.
9282
9283 @item -gused
9284 @opindex gused
9285 Emit debugging information for symbols that are used.  For STABS
9286 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
9287 This is by default ON@.
9288
9289 @item -gfull
9290 @opindex gfull
9291 Emit debugging information for all symbols and types.
9292
9293 @item -mmacosx-version-min=@var{version}
9294 The earliest version of MacOS X that this executable will run on
9295 is @var{version}.  Typical values of @var{version} include @code{10.1},
9296 @code{10.2}, and @code{10.3.9}.
9297
9298 If the compiler was built to use the system's headers by default,
9299 then the default for this option is the system version on which the
9300 compiler is running, otherwise the default is to make choices which
9301 are compatible with as many systems and code bases as possible.
9302
9303 @item -mkernel
9304 @opindex mkernel
9305 Enable kernel development mode.  The @option{-mkernel} option sets
9306 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
9307 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
9308 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
9309 applicable.  This mode also sets @option{-mno-altivec},
9310 @option{-msoft-float}, @option{-fno-builtin} and
9311 @option{-mlong-branch} for PowerPC targets.
9312
9313 @item -mone-byte-bool
9314 @opindex mone-byte-bool
9315 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
9316 By default @samp{sizeof(bool)} is @samp{4} when compiling for
9317 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
9318 option has no effect on x86.
9319
9320 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
9321 to generate code that is not binary compatible with code generated
9322 without that switch.  Using this switch may require recompiling all
9323 other modules in a program, including system libraries.  Use this
9324 switch to conform to a non-default data model.
9325
9326 @item -mfix-and-continue
9327 @itemx -ffix-and-continue
9328 @itemx -findirect-data
9329 @opindex mfix-and-continue
9330 @opindex ffix-and-continue
9331 @opindex findirect-data
9332 Generate code suitable for fast turn around development.  Needed to
9333 enable gdb to dynamically load @code{.o} files into already running
9334 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
9335 are provided for backwards compatibility.
9336
9337 @item -all_load
9338 @opindex all_load
9339 Loads all members of static archive libraries.
9340 See man ld(1) for more information.
9341
9342 @item -arch_errors_fatal
9343 @opindex arch_errors_fatal
9344 Cause the errors having to do with files that have the wrong architecture
9345 to be fatal.
9346
9347 @item -bind_at_load
9348 @opindex bind_at_load
9349 Causes the output file to be marked such that the dynamic linker will
9350 bind all undefined references when the file is loaded or launched.
9351
9352 @item -bundle
9353 @opindex bundle
9354 Produce a Mach-o bundle format file.
9355 See man ld(1) for more information.
9356
9357 @item -bundle_loader @var{executable}
9358 @opindex bundle_loader
9359 This option specifies the @var{executable} that will be loading the build
9360 output file being linked.  See man ld(1) for more information.
9361
9362 @item -dynamiclib
9363 @opindex dynamiclib
9364 When passed this option, GCC will produce a dynamic library instead of
9365 an executable when linking, using the Darwin @file{libtool} command.
9366
9367 @item -force_cpusubtype_ALL
9368 @opindex force_cpusubtype_ALL
9369 This causes GCC's output file to have the @var{ALL} subtype, instead of
9370 one controlled by the @option{-mcpu} or @option{-march} option.
9371
9372 @item -allowable_client  @var{client_name}
9373 @itemx -client_name
9374 @itemx -compatibility_version
9375 @itemx -current_version
9376 @itemx -dead_strip
9377 @itemx -dependency-file
9378 @itemx -dylib_file
9379 @itemx -dylinker_install_name
9380 @itemx -dynamic
9381 @itemx -exported_symbols_list
9382 @itemx -filelist
9383 @itemx -flat_namespace
9384 @itemx -force_flat_namespace
9385 @itemx -headerpad_max_install_names
9386 @itemx -image_base
9387 @itemx -init
9388 @itemx -install_name
9389 @itemx -keep_private_externs
9390 @itemx -multi_module
9391 @itemx -multiply_defined
9392 @itemx -multiply_defined_unused
9393 @itemx -noall_load
9394 @itemx -no_dead_strip_inits_and_terms
9395 @itemx -nofixprebinding
9396 @itemx -nomultidefs
9397 @itemx -noprebind
9398 @itemx -noseglinkedit
9399 @itemx -pagezero_size
9400 @itemx -prebind
9401 @itemx -prebind_all_twolevel_modules
9402 @itemx -private_bundle
9403 @itemx -read_only_relocs
9404 @itemx -sectalign
9405 @itemx -sectobjectsymbols
9406 @itemx -whyload
9407 @itemx -seg1addr
9408 @itemx -sectcreate
9409 @itemx -sectobjectsymbols
9410 @itemx -sectorder
9411 @itemx -segaddr
9412 @itemx -segs_read_only_addr
9413 @itemx -segs_read_write_addr
9414 @itemx -seg_addr_table
9415 @itemx -seg_addr_table_filename
9416 @itemx -seglinkedit
9417 @itemx -segprot
9418 @itemx -segs_read_only_addr
9419 @itemx -segs_read_write_addr
9420 @itemx -single_module
9421 @itemx -static
9422 @itemx -sub_library
9423 @itemx -sub_umbrella
9424 @itemx -twolevel_namespace
9425 @itemx -umbrella
9426 @itemx -undefined
9427 @itemx -unexported_symbols_list
9428 @itemx -weak_reference_mismatches
9429 @itemx -whatsloaded
9430 @opindex allowable_client
9431 @opindex client_name
9432 @opindex compatibility_version
9433 @opindex current_version
9434 @opindex dead_strip
9435 @opindex dependency-file
9436 @opindex dylib_file
9437 @opindex dylinker_install_name
9438 @opindex dynamic
9439 @opindex exported_symbols_list
9440 @opindex filelist
9441 @opindex flat_namespace
9442 @opindex force_flat_namespace
9443 @opindex headerpad_max_install_names
9444 @opindex image_base
9445 @opindex init
9446 @opindex install_name
9447 @opindex keep_private_externs
9448 @opindex multi_module
9449 @opindex multiply_defined
9450 @opindex multiply_defined_unused
9451 @opindex noall_load
9452 @opindex no_dead_strip_inits_and_terms
9453 @opindex nofixprebinding
9454 @opindex nomultidefs
9455 @opindex noprebind
9456 @opindex noseglinkedit
9457 @opindex pagezero_size
9458 @opindex prebind
9459 @opindex prebind_all_twolevel_modules
9460 @opindex private_bundle
9461 @opindex read_only_relocs
9462 @opindex sectalign
9463 @opindex sectobjectsymbols
9464 @opindex whyload
9465 @opindex seg1addr
9466 @opindex sectcreate
9467 @opindex sectobjectsymbols
9468 @opindex sectorder
9469 @opindex segaddr
9470 @opindex segs_read_only_addr
9471 @opindex segs_read_write_addr
9472 @opindex seg_addr_table
9473 @opindex seg_addr_table_filename
9474 @opindex seglinkedit
9475 @opindex segprot
9476 @opindex segs_read_only_addr
9477 @opindex segs_read_write_addr
9478 @opindex single_module
9479 @opindex static
9480 @opindex sub_library
9481 @opindex sub_umbrella
9482 @opindex twolevel_namespace
9483 @opindex umbrella
9484 @opindex undefined
9485 @opindex unexported_symbols_list
9486 @opindex weak_reference_mismatches
9487 @opindex whatsloaded
9488 These options are passed to the Darwin linker.  The Darwin linker man page
9489 describes them in detail.
9490 @end table
9491
9492 @node DEC Alpha Options
9493 @subsection DEC Alpha Options
9494
9495 These @samp{-m} options are defined for the DEC Alpha implementations:
9496
9497 @table @gcctabopt
9498 @item -mno-soft-float
9499 @itemx -msoft-float
9500 @opindex mno-soft-float
9501 @opindex msoft-float
9502 Use (do not use) the hardware floating-point instructions for
9503 floating-point operations.  When @option{-msoft-float} is specified,
9504 functions in @file{libgcc.a} will be used to perform floating-point
9505 operations.  Unless they are replaced by routines that emulate the
9506 floating-point operations, or compiled in such a way as to call such
9507 emulations routines, these routines will issue floating-point
9508 operations.   If you are compiling for an Alpha without floating-point
9509 operations, you must ensure that the library is built so as not to call
9510 them.
9511
9512 Note that Alpha implementations without floating-point operations are
9513 required to have floating-point registers.
9514
9515 @item -mfp-reg
9516 @itemx -mno-fp-regs
9517 @opindex mfp-reg
9518 @opindex mno-fp-regs
9519 Generate code that uses (does not use) the floating-point register set.
9520 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9521 register set is not used, floating point operands are passed in integer
9522 registers as if they were integers and floating-point results are passed
9523 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9524 so any function with a floating-point argument or return value called by code
9525 compiled with @option{-mno-fp-regs} must also be compiled with that
9526 option.
9527
9528 A typical use of this option is building a kernel that does not use,
9529 and hence need not save and restore, any floating-point registers.
9530
9531 @item -mieee
9532 @opindex mieee
9533 The Alpha architecture implements floating-point hardware optimized for
9534 maximum performance.  It is mostly compliant with the IEEE floating
9535 point standard.  However, for full compliance, software assistance is
9536 required.  This option generates code fully IEEE compliant code
9537 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9538 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9539 defined during compilation.  The resulting code is less efficient but is
9540 able to correctly support denormalized numbers and exceptional IEEE
9541 values such as not-a-number and plus/minus infinity.  Other Alpha
9542 compilers call this option @option{-ieee_with_no_inexact}.
9543
9544 @item -mieee-with-inexact
9545 @opindex mieee-with-inexact
9546 This is like @option{-mieee} except the generated code also maintains
9547 the IEEE @var{inexact-flag}.  Turning on this option causes the
9548 generated code to implement fully-compliant IEEE math.  In addition to
9549 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9550 macro.  On some Alpha implementations the resulting code may execute
9551 significantly slower than the code generated by default.  Since there is
9552 very little code that depends on the @var{inexact-flag}, you should
9553 normally not specify this option.  Other Alpha compilers call this
9554 option @option{-ieee_with_inexact}.
9555
9556 @item -mfp-trap-mode=@var{trap-mode}
9557 @opindex mfp-trap-mode
9558 This option controls what floating-point related traps are enabled.
9559 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9560 The trap mode can be set to one of four values:
9561
9562 @table @samp
9563 @item n
9564 This is the default (normal) setting.  The only traps that are enabled
9565 are the ones that cannot be disabled in software (e.g., division by zero
9566 trap).
9567
9568 @item u
9569 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9570 as well.
9571
9572 @item su
9573 Like @samp{u}, but the instructions are marked to be safe for software
9574 completion (see Alpha architecture manual for details).
9575
9576 @item sui
9577 Like @samp{su}, but inexact traps are enabled as well.
9578 @end table
9579
9580 @item -mfp-rounding-mode=@var{rounding-mode}
9581 @opindex mfp-rounding-mode
9582 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9583 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9584 of:
9585
9586 @table @samp
9587 @item n
9588 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9589 the nearest machine number or towards the even machine number in case
9590 of a tie.
9591
9592 @item m
9593 Round towards minus infinity.
9594
9595 @item c
9596 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9597
9598 @item d
9599 Dynamic rounding mode.  A field in the floating point control register
9600 (@var{fpcr}, see Alpha architecture reference manual) controls the
9601 rounding mode in effect.  The C library initializes this register for
9602 rounding towards plus infinity.  Thus, unless your program modifies the
9603 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9604 @end table
9605
9606 @item -mtrap-precision=@var{trap-precision}
9607 @opindex mtrap-precision
9608 In the Alpha architecture, floating point traps are imprecise.  This
9609 means without software assistance it is impossible to recover from a
9610 floating trap and program execution normally needs to be terminated.
9611 GCC can generate code that can assist operating system trap handlers
9612 in determining the exact location that caused a floating point trap.
9613 Depending on the requirements of an application, different levels of
9614 precisions can be selected:
9615
9616 @table @samp
9617 @item p
9618 Program precision.  This option is the default and means a trap handler
9619 can only identify which program caused a floating point exception.
9620
9621 @item f
9622 Function precision.  The trap handler can determine the function that
9623 caused a floating point exception.
9624
9625 @item i
9626 Instruction precision.  The trap handler can determine the exact
9627 instruction that caused a floating point exception.
9628 @end table
9629
9630 Other Alpha compilers provide the equivalent options called
9631 @option{-scope_safe} and @option{-resumption_safe}.
9632
9633 @item -mieee-conformant
9634 @opindex mieee-conformant
9635 This option marks the generated code as IEEE conformant.  You must not
9636 use this option unless you also specify @option{-mtrap-precision=i} and either
9637 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9638 is to emit the line @samp{.eflag 48} in the function prologue of the
9639 generated assembly file.  Under DEC Unix, this has the effect that
9640 IEEE-conformant math library routines will be linked in.
9641
9642 @item -mbuild-constants
9643 @opindex mbuild-constants
9644 Normally GCC examines a 32- or 64-bit integer constant to
9645 see if it can construct it from smaller constants in two or three
9646 instructions.  If it cannot, it will output the constant as a literal and
9647 generate code to load it from the data segment at runtime.
9648
9649 Use this option to require GCC to construct @emph{all} integer constants
9650 using code, even if it takes more instructions (the maximum is six).
9651
9652 You would typically use this option to build a shared library dynamic
9653 loader.  Itself a shared library, it must relocate itself in memory
9654 before it can find the variables and constants in its own data segment.
9655
9656 @item -malpha-as
9657 @itemx -mgas
9658 @opindex malpha-as
9659 @opindex mgas
9660 Select whether to generate code to be assembled by the vendor-supplied
9661 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9662
9663 @item -mbwx
9664 @itemx -mno-bwx
9665 @itemx -mcix
9666 @itemx -mno-cix
9667 @itemx -mfix
9668 @itemx -mno-fix
9669 @itemx -mmax
9670 @itemx -mno-max
9671 @opindex mbwx
9672 @opindex mno-bwx
9673 @opindex mcix
9674 @opindex mno-cix
9675 @opindex mfix
9676 @opindex mno-fix
9677 @opindex mmax
9678 @opindex mno-max
9679 Indicate whether GCC should generate code to use the optional BWX,
9680 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9681 sets supported by the CPU type specified via @option{-mcpu=} option or that
9682 of the CPU on which GCC was built if none was specified.
9683
9684 @item -mfloat-vax
9685 @itemx -mfloat-ieee
9686 @opindex mfloat-vax
9687 @opindex mfloat-ieee
9688 Generate code that uses (does not use) VAX F and G floating point
9689 arithmetic instead of IEEE single and double precision.
9690
9691 @item -mexplicit-relocs
9692 @itemx -mno-explicit-relocs
9693 @opindex mexplicit-relocs
9694 @opindex mno-explicit-relocs
9695 Older Alpha assemblers provided no way to generate symbol relocations
9696 except via assembler macros.  Use of these macros does not allow
9697 optimal instruction scheduling.  GNU binutils as of version 2.12
9698 supports a new syntax that allows the compiler to explicitly mark
9699 which relocations should apply to which instructions.  This option
9700 is mostly useful for debugging, as GCC detects the capabilities of
9701 the assembler when it is built and sets the default accordingly.
9702
9703 @item -msmall-data
9704 @itemx -mlarge-data
9705 @opindex msmall-data
9706 @opindex mlarge-data
9707 When @option{-mexplicit-relocs} is in effect, static data is
9708 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9709 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9710 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9711 16-bit relocations off of the @code{$gp} register.  This limits the
9712 size of the small data area to 64KB, but allows the variables to be
9713 directly accessed via a single instruction.
9714
9715 The default is @option{-mlarge-data}.  With this option the data area
9716 is limited to just below 2GB@.  Programs that require more than 2GB of
9717 data must use @code{malloc} or @code{mmap} to allocate the data in the
9718 heap instead of in the program's data segment.
9719
9720 When generating code for shared libraries, @option{-fpic} implies
9721 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9722
9723 @item -msmall-text
9724 @itemx -mlarge-text
9725 @opindex msmall-text
9726 @opindex mlarge-text
9727 When @option{-msmall-text} is used, the compiler assumes that the
9728 code of the entire program (or shared library) fits in 4MB, and is
9729 thus reachable with a branch instruction.  When @option{-msmall-data}
9730 is used, the compiler can assume that all local symbols share the
9731 same @code{$gp} value, and thus reduce the number of instructions
9732 required for a function call from 4 to 1.
9733
9734 The default is @option{-mlarge-text}.
9735
9736 @item -mcpu=@var{cpu_type}
9737 @opindex mcpu
9738 Set the instruction set and instruction scheduling parameters for
9739 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9740 style name or the corresponding chip number.  GCC supports scheduling
9741 parameters for the EV4, EV5 and EV6 family of processors and will
9742 choose the default values for the instruction set from the processor
9743 you specify.  If you do not specify a processor type, GCC will default
9744 to the processor on which the compiler was built.
9745
9746 Supported values for @var{cpu_type} are
9747
9748 @table @samp
9749 @item ev4
9750 @itemx ev45
9751 @itemx 21064
9752 Schedules as an EV4 and has no instruction set extensions.
9753
9754 @item ev5
9755 @itemx 21164
9756 Schedules as an EV5 and has no instruction set extensions.
9757
9758 @item ev56
9759 @itemx 21164a
9760 Schedules as an EV5 and supports the BWX extension.
9761
9762 @item pca56
9763 @itemx 21164pc
9764 @itemx 21164PC
9765 Schedules as an EV5 and supports the BWX and MAX extensions.
9766
9767 @item ev6
9768 @itemx 21264
9769 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9770
9771 @item ev67
9772 @itemx 21264a
9773 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9774 @end table
9775
9776 @item -mtune=@var{cpu_type}
9777 @opindex mtune
9778 Set only the instruction scheduling parameters for machine type
9779 @var{cpu_type}.  The instruction set is not changed.
9780
9781 @item -mmemory-latency=@var{time}
9782 @opindex mmemory-latency
9783 Sets the latency the scheduler should assume for typical memory
9784 references as seen by the application.  This number is highly
9785 dependent on the memory access patterns used by the application
9786 and the size of the external cache on the machine.
9787
9788 Valid options for @var{time} are
9789
9790 @table @samp
9791 @item @var{number}
9792 A decimal number representing clock cycles.
9793
9794 @item L1
9795 @itemx L2
9796 @itemx L3
9797 @itemx main
9798 The compiler contains estimates of the number of clock cycles for
9799 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9800 (also called Dcache, Scache, and Bcache), as well as to main memory.
9801 Note that L3 is only valid for EV5.
9802
9803 @end table
9804 @end table
9805
9806 @node DEC Alpha/VMS Options
9807 @subsection DEC Alpha/VMS Options
9808
9809 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9810
9811 @table @gcctabopt
9812 @item -mvms-return-codes
9813 @opindex mvms-return-codes
9814 Return VMS condition codes from main.  The default is to return POSIX
9815 style condition (e.g.@: error) codes.
9816 @end table
9817
9818 @node FRV Options
9819 @subsection FRV Options
9820 @cindex FRV Options
9821
9822 @table @gcctabopt
9823 @item -mgpr-32
9824 @opindex mgpr-32
9825
9826 Only use the first 32 general purpose registers.
9827
9828 @item -mgpr-64
9829 @opindex mgpr-64
9830
9831 Use all 64 general purpose registers.
9832
9833 @item -mfpr-32
9834 @opindex mfpr-32
9835
9836 Use only the first 32 floating point registers.
9837
9838 @item -mfpr-64
9839 @opindex mfpr-64
9840
9841 Use all 64 floating point registers
9842
9843 @item -mhard-float
9844 @opindex mhard-float
9845
9846 Use hardware instructions for floating point operations.
9847
9848 @item -msoft-float
9849 @opindex msoft-float
9850
9851 Use library routines for floating point operations.
9852
9853 @item -malloc-cc
9854 @opindex malloc-cc
9855
9856 Dynamically allocate condition code registers.
9857
9858 @item -mfixed-cc
9859 @opindex mfixed-cc
9860
9861 Do not try to dynamically allocate condition code registers, only
9862 use @code{icc0} and @code{fcc0}.
9863
9864 @item -mdword
9865 @opindex mdword
9866
9867 Change ABI to use double word insns.
9868
9869 @item -mno-dword
9870 @opindex mno-dword
9871
9872 Do not use double word instructions.
9873
9874 @item -mdouble
9875 @opindex mdouble
9876
9877 Use floating point double instructions.
9878
9879 @item -mno-double
9880 @opindex mno-double
9881
9882 Do not use floating point double instructions.
9883
9884 @item -mmedia
9885 @opindex mmedia
9886
9887 Use media instructions.
9888
9889 @item -mno-media
9890 @opindex mno-media
9891
9892 Do not use media instructions.
9893
9894 @item -mmuladd
9895 @opindex mmuladd
9896
9897 Use multiply and add/subtract instructions.
9898
9899 @item -mno-muladd
9900 @opindex mno-muladd
9901
9902 Do not use multiply and add/subtract instructions.
9903
9904 @item -mfdpic
9905 @opindex mfdpic
9906
9907 Select the FDPIC ABI, that uses function descriptors to represent
9908 pointers to functions.  Without any PIC/PIE-related options, it
9909 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9910 assumes GOT entries and small data are within a 12-bit range from the
9911 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9912 are computed with 32 bits.
9913 With a @samp{bfin-elf} target, this option implies @option{-msim}.
9914
9915 @item -minline-plt
9916 @opindex minline-plt
9917
9918 Enable inlining of PLT entries in function calls to functions that are
9919 not known to bind locally.  It has no effect without @option{-mfdpic}.
9920 It's enabled by default if optimizing for speed and compiling for
9921 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9922 optimization option such as @option{-O3} or above is present in the
9923 command line.
9924
9925 @item -mTLS
9926 @opindex TLS
9927
9928 Assume a large TLS segment when generating thread-local code.
9929
9930 @item -mtls
9931 @opindex tls
9932
9933 Do not assume a large TLS segment when generating thread-local code.
9934
9935 @item -mgprel-ro
9936 @opindex mgprel-ro
9937
9938 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9939 that is known to be in read-only sections.  It's enabled by default,
9940 except for @option{-fpic} or @option{-fpie}: even though it may help
9941 make the global offset table smaller, it trades 1 instruction for 4.
9942 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9943 one of which may be shared by multiple symbols, and it avoids the need
9944 for a GOT entry for the referenced symbol, so it's more likely to be a
9945 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
9946
9947 @item -multilib-library-pic
9948 @opindex multilib-library-pic
9949
9950 Link with the (library, not FD) pic libraries.  It's implied by
9951 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
9952 @option{-fpic} without @option{-mfdpic}.  You should never have to use
9953 it explicitly.
9954
9955 @item -mlinked-fp
9956 @opindex mlinked-fp
9957
9958 Follow the EABI requirement of always creating a frame pointer whenever
9959 a stack frame is allocated.  This option is enabled by default and can
9960 be disabled with @option{-mno-linked-fp}.
9961
9962 @item -mlong-calls
9963 @opindex mlong-calls
9964
9965 Use indirect addressing to call functions outside the current
9966 compilation unit.  This allows the functions to be placed anywhere
9967 within the 32-bit address space.
9968
9969 @item -malign-labels
9970 @opindex malign-labels
9971
9972 Try to align labels to an 8-byte boundary by inserting nops into the
9973 previous packet.  This option only has an effect when VLIW packing
9974 is enabled.  It doesn't create new packets; it merely adds nops to
9975 existing ones.
9976
9977 @item -mlibrary-pic
9978 @opindex mlibrary-pic
9979
9980 Generate position-independent EABI code.
9981
9982 @item -macc-4
9983 @opindex macc-4
9984
9985 Use only the first four media accumulator registers.
9986
9987 @item -macc-8
9988 @opindex macc-8
9989
9990 Use all eight media accumulator registers.
9991
9992 @item -mpack
9993 @opindex mpack
9994
9995 Pack VLIW instructions.
9996
9997 @item -mno-pack
9998 @opindex mno-pack
9999
10000 Do not pack VLIW instructions.
10001
10002 @item -mno-eflags
10003 @opindex mno-eflags
10004
10005 Do not mark ABI switches in e_flags.
10006
10007 @item -mcond-move
10008 @opindex mcond-move
10009
10010 Enable the use of conditional-move instructions (default).
10011
10012 This switch is mainly for debugging the compiler and will likely be removed
10013 in a future version.
10014
10015 @item -mno-cond-move
10016 @opindex mno-cond-move
10017
10018 Disable the use of conditional-move instructions.
10019
10020 This switch is mainly for debugging the compiler and will likely be removed
10021 in a future version.
10022
10023 @item -mscc
10024 @opindex mscc
10025
10026 Enable the use of conditional set instructions (default).
10027
10028 This switch is mainly for debugging the compiler and will likely be removed
10029 in a future version.
10030
10031 @item -mno-scc
10032 @opindex mno-scc
10033
10034 Disable the use of conditional set instructions.
10035
10036 This switch is mainly for debugging the compiler and will likely be removed
10037 in a future version.
10038
10039 @item -mcond-exec
10040 @opindex mcond-exec
10041
10042 Enable the use of conditional execution (default).
10043
10044 This switch is mainly for debugging the compiler and will likely be removed
10045 in a future version.
10046
10047 @item -mno-cond-exec
10048 @opindex mno-cond-exec
10049
10050 Disable the use of conditional execution.
10051
10052 This switch is mainly for debugging the compiler and will likely be removed
10053 in a future version.
10054
10055 @item -mvliw-branch
10056 @opindex mvliw-branch
10057
10058 Run a pass to pack branches into VLIW instructions (default).
10059
10060 This switch is mainly for debugging the compiler and will likely be removed
10061 in a future version.
10062
10063 @item -mno-vliw-branch
10064 @opindex mno-vliw-branch
10065
10066 Do not run a pass to pack branches into VLIW instructions.
10067
10068 This switch is mainly for debugging the compiler and will likely be removed
10069 in a future version.
10070
10071 @item -mmulti-cond-exec
10072 @opindex mmulti-cond-exec
10073
10074 Enable optimization of @code{&&} and @code{||} in conditional execution
10075 (default).
10076
10077 This switch is mainly for debugging the compiler and will likely be removed
10078 in a future version.
10079
10080 @item -mno-multi-cond-exec
10081 @opindex mno-multi-cond-exec
10082
10083 Disable optimization of @code{&&} and @code{||} in conditional execution.
10084
10085 This switch is mainly for debugging the compiler and will likely be removed
10086 in a future version.
10087
10088 @item -mnested-cond-exec
10089 @opindex mnested-cond-exec
10090
10091 Enable nested conditional execution optimizations (default).
10092
10093 This switch is mainly for debugging the compiler and will likely be removed
10094 in a future version.
10095
10096 @item -mno-nested-cond-exec
10097 @opindex mno-nested-cond-exec
10098
10099 Disable nested conditional execution optimizations.
10100
10101 This switch is mainly for debugging the compiler and will likely be removed
10102 in a future version.
10103
10104 @item -moptimize-membar
10105 @opindex moptimize-membar
10106
10107 This switch removes redundant @code{membar} instructions from the
10108 compiler generated code.  It is enabled by default.
10109
10110 @item -mno-optimize-membar
10111 @opindex mno-optimize-membar
10112
10113 This switch disables the automatic removal of redundant @code{membar}
10114 instructions from the generated code.
10115
10116 @item -mtomcat-stats
10117 @opindex mtomcat-stats
10118
10119 Cause gas to print out tomcat statistics.
10120
10121 @item -mcpu=@var{cpu}
10122 @opindex mcpu
10123
10124 Select the processor type for which to generate code.  Possible values are
10125 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
10126 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
10127
10128 @end table
10129
10130 @node GNU/Linux Options
10131 @subsection GNU/Linux Options
10132
10133 These @samp{-m} options are defined for GNU/Linux targets:
10134
10135 @table @gcctabopt
10136 @item -mglibc
10137 @opindex mglibc
10138 Use the GNU C library instead of uClibc.  This is the default except
10139 on @samp{*-*-linux-*uclibc*} targets.
10140
10141 @item -muclibc
10142 @opindex muclibc
10143 Use uClibc instead of the GNU C library.  This is the default on
10144 @samp{*-*-linux-*uclibc*} targets.
10145 @end table
10146
10147 @node H8/300 Options
10148 @subsection H8/300 Options
10149
10150 These @samp{-m} options are defined for the H8/300 implementations:
10151
10152 @table @gcctabopt
10153 @item -mrelax
10154 @opindex mrelax
10155 Shorten some address references at link time, when possible; uses the
10156 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
10157 ld, Using ld}, for a fuller description.
10158
10159 @item -mh
10160 @opindex mh
10161 Generate code for the H8/300H@.
10162
10163 @item -ms
10164 @opindex ms
10165 Generate code for the H8S@.
10166
10167 @item -mn
10168 @opindex mn
10169 Generate code for the H8S and H8/300H in the normal mode.  This switch
10170 must be used either with @option{-mh} or @option{-ms}.
10171
10172 @item -ms2600
10173 @opindex ms2600
10174 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
10175
10176 @item -mint32
10177 @opindex mint32
10178 Make @code{int} data 32 bits by default.
10179
10180 @item -malign-300
10181 @opindex malign-300
10182 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
10183 The default for the H8/300H and H8S is to align longs and floats on 4
10184 byte boundaries.
10185 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
10186 This option has no effect on the H8/300.
10187 @end table
10188
10189 @node HPPA Options
10190 @subsection HPPA Options
10191 @cindex HPPA Options
10192
10193 These @samp{-m} options are defined for the HPPA family of computers:
10194
10195 @table @gcctabopt
10196 @item -march=@var{architecture-type}
10197 @opindex march
10198 Generate code for the specified architecture.  The choices for
10199 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
10200 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
10201 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
10202 architecture option for your machine.  Code compiled for lower numbered
10203 architectures will run on higher numbered architectures, but not the
10204 other way around.
10205
10206 @item -mpa-risc-1-0
10207 @itemx -mpa-risc-1-1
10208 @itemx -mpa-risc-2-0
10209 @opindex mpa-risc-1-0
10210 @opindex mpa-risc-1-1
10211 @opindex mpa-risc-2-0
10212 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
10213
10214 @item -mbig-switch
10215 @opindex mbig-switch
10216 Generate code suitable for big switch tables.  Use this option only if
10217 the assembler/linker complain about out of range branches within a switch
10218 table.
10219
10220 @item -mjump-in-delay
10221 @opindex mjump-in-delay
10222 Fill delay slots of function calls with unconditional jump instructions
10223 by modifying the return pointer for the function call to be the target
10224 of the conditional jump.
10225
10226 @item -mdisable-fpregs
10227 @opindex mdisable-fpregs
10228 Prevent floating point registers from being used in any manner.  This is
10229 necessary for compiling kernels which perform lazy context switching of
10230 floating point registers.  If you use this option and attempt to perform
10231 floating point operations, the compiler will abort.
10232
10233 @item -mdisable-indexing
10234 @opindex mdisable-indexing
10235 Prevent the compiler from using indexing address modes.  This avoids some
10236 rather obscure problems when compiling MIG generated code under MACH@.
10237
10238 @item -mno-space-regs
10239 @opindex mno-space-regs
10240 Generate code that assumes the target has no space registers.  This allows
10241 GCC to generate faster indirect calls and use unscaled index address modes.
10242
10243 Such code is suitable for level 0 PA systems and kernels.
10244
10245 @item -mfast-indirect-calls
10246 @opindex mfast-indirect-calls
10247 Generate code that assumes calls never cross space boundaries.  This
10248 allows GCC to emit code which performs faster indirect calls.
10249
10250 This option will not work in the presence of shared libraries or nested
10251 functions.
10252
10253 @item -mfixed-range=@var{register-range}
10254 @opindex mfixed-range
10255 Generate code treating the given register range as fixed registers.
10256 A fixed register is one that the register allocator can not use.  This is
10257 useful when compiling kernel code.  A register range is specified as
10258 two registers separated by a dash.  Multiple register ranges can be
10259 specified separated by a comma.
10260
10261 @item -mlong-load-store
10262 @opindex mlong-load-store
10263 Generate 3-instruction load and store sequences as sometimes required by
10264 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
10265 the HP compilers.
10266
10267 @item -mportable-runtime
10268 @opindex mportable-runtime
10269 Use the portable calling conventions proposed by HP for ELF systems.
10270
10271 @item -mgas
10272 @opindex mgas
10273 Enable the use of assembler directives only GAS understands.
10274
10275 @item -mschedule=@var{cpu-type}
10276 @opindex mschedule
10277 Schedule code according to the constraints for the machine type
10278 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
10279 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
10280 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
10281 proper scheduling option for your machine.  The default scheduling is
10282 @samp{8000}.
10283
10284 @item -mlinker-opt
10285 @opindex mlinker-opt
10286 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
10287 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
10288 linkers in which they give bogus error messages when linking some programs.
10289
10290 @item -msoft-float
10291 @opindex msoft-float
10292 Generate output containing library calls for floating point.
10293 @strong{Warning:} the requisite libraries are not available for all HPPA
10294 targets.  Normally the facilities of the machine's usual C compiler are
10295 used, but this cannot be done directly in cross-compilation.  You must make
10296 your own arrangements to provide suitable library functions for
10297 cross-compilation.
10298
10299 @option{-msoft-float} changes the calling convention in the output file;
10300 therefore, it is only useful if you compile @emph{all} of a program with
10301 this option.  In particular, you need to compile @file{libgcc.a}, the
10302 library that comes with GCC, with @option{-msoft-float} in order for
10303 this to work.
10304
10305 @item -msio
10306 @opindex msio
10307 Generate the predefine, @code{_SIO}, for server IO@.  The default is
10308 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
10309 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
10310 options are available under HP-UX and HI-UX@.
10311
10312 @item -mgnu-ld
10313 @opindex gnu-ld
10314 Use GNU ld specific options.  This passes @option{-shared} to ld when
10315 building a shared library.  It is the default when GCC is configured,
10316 explicitly or implicitly, with the GNU linker.  This option does not
10317 have any affect on which ld is called, it only changes what parameters
10318 are passed to that ld.  The ld that is called is determined by the
10319 @option{--with-ld} configure option, GCC's program search path, and
10320 finally by the user's @env{PATH}.  The linker used by GCC can be printed
10321 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
10322 on the 64 bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
10323
10324 @item -mhp-ld
10325 @opindex hp-ld
10326 Use HP ld specific options.  This passes @option{-b} to ld when building
10327 a shared library and passes @option{+Accept TypeMismatch} to ld on all
10328 links.  It is the default when GCC is configured, explicitly or
10329 implicitly, with the HP linker.  This option does not have any affect on
10330 which ld is called, it only changes what parameters are passed to that
10331 ld.  The ld that is called is determined by the @option{--with-ld}
10332 configure option, GCC's program search path, and finally by the user's
10333 @env{PATH}.  The linker used by GCC can be printed using @samp{which
10334 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
10335 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
10336
10337 @item -mlong-calls
10338 @opindex mno-long-calls
10339 Generate code that uses long call sequences.  This ensures that a call
10340 is always able to reach linker generated stubs.  The default is to generate
10341 long calls only when the distance from the call site to the beginning
10342 of the function or translation unit, as the case may be, exceeds a
10343 predefined limit set by the branch type being used.  The limits for
10344 normal calls are 7,600,000 and 240,000 bytes, respectively for the
10345 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
10346 240,000 bytes.
10347
10348 Distances are measured from the beginning of functions when using the
10349 @option{-ffunction-sections} option, or when using the @option{-mgas}
10350 and @option{-mno-portable-runtime} options together under HP-UX with
10351 the SOM linker.
10352
10353 It is normally not desirable to use this option as it will degrade
10354 performance.  However, it may be useful in large applications,
10355 particularly when partial linking is used to build the application.
10356
10357 The types of long calls used depends on the capabilities of the
10358 assembler and linker, and the type of code being generated.  The
10359 impact on systems that support long absolute calls, and long pic
10360 symbol-difference or pc-relative calls should be relatively small.
10361 However, an indirect call is used on 32-bit ELF systems in pic code
10362 and it is quite long.
10363
10364 @item -munix=@var{unix-std}
10365 @opindex march
10366 Generate compiler predefines and select a startfile for the specified
10367 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10368 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10369 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10370 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10371 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10372 and later.
10373
10374 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10375 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10376 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10377 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10378 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10379 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10380
10381 It is @emph{important} to note that this option changes the interfaces
10382 for various library routines.  It also affects the operational behavior
10383 of the C library.  Thus, @emph{extreme} care is needed in using this
10384 option.
10385
10386 Library code that is intended to operate with more than one UNIX
10387 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10388 as appropriate.  Most GNU software doesn't provide this capability.
10389
10390 @item -nolibdld
10391 @opindex nolibdld
10392 Suppress the generation of link options to search libdld.sl when the
10393 @option{-static} option is specified on HP-UX 10 and later.
10394
10395 @item -static
10396 @opindex static
10397 The HP-UX implementation of setlocale in libc has a dependency on
10398 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10399 when the @option{-static} option is specified, special link options
10400 are needed to resolve this dependency.
10401
10402 On HP-UX 10 and later, the GCC driver adds the necessary options to
10403 link with libdld.sl when the @option{-static} option is specified.
10404 This causes the resulting binary to be dynamic.  On the 64-bit port,
10405 the linkers generate dynamic binaries by default in any case.  The
10406 @option{-nolibdld} option can be used to prevent the GCC driver from
10407 adding these link options.
10408
10409 @item -threads
10410 @opindex threads
10411 Add support for multithreading with the @dfn{dce thread} library
10412 under HP-UX@.  This option sets flags for both the preprocessor and
10413 linker.
10414 @end table
10415
10416 @node i386 and x86-64 Options
10417 @subsection Intel 386 and AMD x86-64 Options
10418 @cindex i386 Options
10419 @cindex x86-64 Options
10420 @cindex Intel 386 Options
10421 @cindex AMD x86-64 Options
10422
10423 These @samp{-m} options are defined for the i386 and x86-64 family of
10424 computers:
10425
10426 @table @gcctabopt
10427 @item -mtune=@var{cpu-type}
10428 @opindex mtune
10429 Tune to @var{cpu-type} everything applicable about the generated code, except
10430 for the ABI and the set of available instructions.  The choices for
10431 @var{cpu-type} are:
10432 @table @emph
10433 @item generic
10434 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10435 If you know the CPU on which your code will run, then you should use
10436 the corresponding @option{-mtune} option instead of
10437 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10438 of your application will have, then you should use this option.
10439
10440 As new processors are deployed in the marketplace, the behavior of this
10441 option will change.  Therefore, if you upgrade to a newer version of
10442 GCC, the code generated option will change to reflect the processors
10443 that were most common when that version of GCC was released.
10444
10445 There is no @option{-march=generic} option because @option{-march}
10446 indicates the instruction set the compiler can use, and there is no
10447 generic instruction set applicable to all processors.  In contrast,
10448 @option{-mtune} indicates the processor (or, in this case, collection of
10449 processors) for which the code is optimized.
10450 @item native
10451 This selects the CPU to tune for at compilation time by determining
10452 the processor type of the compiling machine.  Using @option{-mtune=native}
10453 will produce code optimized for the local machine under the constraints
10454 of the selected instruction set.  Using @option{-march=native} will
10455 enable all instruction subsets supported by the local machine (hence
10456 the result might not run on different machines).
10457 @item i386
10458 Original Intel's i386 CPU@.
10459 @item i486
10460 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10461 @item i586, pentium
10462 Intel Pentium CPU with no MMX support.
10463 @item pentium-mmx
10464 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10465 @item pentiumpro
10466 Intel PentiumPro CPU@.
10467 @item i686
10468 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10469 instruction set will be used, so the code will run on all i686 family chips.
10470 @item pentium2
10471 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10472 @item pentium3, pentium3m
10473 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10474 support.
10475 @item pentium-m
10476 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10477 support.  Used by Centrino notebooks.
10478 @item pentium4, pentium4m
10479 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10480 @item prescott
10481 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10482 set support.
10483 @item nocona
10484 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10485 SSE2 and SSE3 instruction set support.
10486 @item core2
10487 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10488 instruction set support.
10489 @item k6
10490 AMD K6 CPU with MMX instruction set support.
10491 @item k6-2, k6-3
10492 Improved versions of AMD K6 CPU with MMX and 3dNOW!@: instruction set support.
10493 @item athlon, athlon-tbird
10494 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and SSE prefetch instructions
10495 support.
10496 @item athlon-4, athlon-xp, athlon-mp
10497 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW!@: and full SSE
10498 instruction set support.
10499 @item k8, opteron, athlon64, athlon-fx
10500 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10501 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW!@: and 64-bit instruction set extensions.)
10502 @item k8-sse3, opteron-sse3, athlon64-sse3
10503 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10504 @item amdfam10, barcelona
10505 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10506 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10507 instruction set extensions.)
10508 @item winchip-c6
10509 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10510 set support.
10511 @item winchip2
10512 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!@:
10513 instruction set support.
10514 @item c3
10515 Via C3 CPU with MMX and 3dNOW!@: instruction set support.  (No scheduling is
10516 implemented for this chip.)
10517 @item c3-2
10518 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10519 implemented for this chip.)
10520 @item geode
10521 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10522 @end table
10523
10524 While picking a specific @var{cpu-type} will schedule things appropriately
10525 for that particular chip, the compiler will not generate any code that
10526 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10527 being used.
10528
10529 @item -march=@var{cpu-type}
10530 @opindex march
10531 Generate instructions for the machine type @var{cpu-type}.  The choices
10532 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10533 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10534
10535 @item -mcpu=@var{cpu-type}
10536 @opindex mcpu
10537 A deprecated synonym for @option{-mtune}.
10538
10539 @item -mfpmath=@var{unit}
10540 @opindex march
10541 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10542 for @var{unit} are:
10543
10544 @table @samp
10545 @item 387
10546 Use the standard 387 floating point coprocessor present majority of chips and
10547 emulated otherwise.  Code compiled with this option will run almost everywhere.
10548 The temporary results are computed in 80bit precision instead of precision
10549 specified by the type resulting in slightly different results compared to most
10550 of other chips.  See @option{-ffloat-store} for more detailed description.
10551
10552 This is the default choice for i386 compiler.
10553
10554 @item sse
10555 Use scalar floating point instructions present in the SSE instruction set.
10556 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10557 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10558 instruction set supports only single precision arithmetics, thus the double and
10559 extended precision arithmetics is still done using 387.  Later version, present
10560 only in Pentium4 and the future AMD x86-64 chips supports double precision
10561 arithmetics too.
10562
10563 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10564 or @option{-msse2} switches to enable SSE extensions and make this option
10565 effective.  For the x86-64 compiler, these extensions are enabled by default.
10566
10567 The resulting code should be considerably faster in the majority of cases and avoid
10568 the numerical instability problems of 387 code, but may break some existing
10569 code that expects temporaries to be 80bit.
10570
10571 This is the default choice for the x86-64 compiler.
10572
10573 @item sse,387
10574 @itemx sse+387
10575 @itemx both
10576 Attempt to utilize both instruction sets at once.  This effectively double the
10577 amount of available registers and on chips with separate execution units for
10578 387 and SSE the execution resources too.  Use this option with care, as it is
10579 still experimental, because the GCC register allocator does not model separate
10580 functional units well resulting in instable performance.
10581 @end table
10582
10583 @item -masm=@var{dialect}
10584 @opindex masm=@var{dialect}
10585 Output asm instructions using selected @var{dialect}.  Supported
10586 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10587 not support @samp{intel}.
10588
10589 @item -mieee-fp
10590 @itemx -mno-ieee-fp
10591 @opindex mieee-fp
10592 @opindex mno-ieee-fp
10593 Control whether or not the compiler uses IEEE floating point
10594 comparisons.  These handle correctly the case where the result of a
10595 comparison is unordered.
10596
10597 @item -msoft-float
10598 @opindex msoft-float
10599 Generate output containing library calls for floating point.
10600 @strong{Warning:} the requisite libraries are not part of GCC@.
10601 Normally the facilities of the machine's usual C compiler are used, but
10602 this can't be done directly in cross-compilation.  You must make your
10603 own arrangements to provide suitable library functions for
10604 cross-compilation.
10605
10606 On machines where a function returns floating point results in the 80387
10607 register stack, some floating point opcodes may be emitted even if
10608 @option{-msoft-float} is used.
10609
10610 @item -mno-fp-ret-in-387
10611 @opindex mno-fp-ret-in-387
10612 Do not use the FPU registers for return values of functions.
10613
10614 The usual calling convention has functions return values of types
10615 @code{float} and @code{double} in an FPU register, even if there
10616 is no FPU@.  The idea is that the operating system should emulate
10617 an FPU@.
10618
10619 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10620 in ordinary CPU registers instead.
10621
10622 @item -mno-fancy-math-387
10623 @opindex mno-fancy-math-387
10624 Some 387 emulators do not support the @code{sin}, @code{cos} and
10625 @code{sqrt} instructions for the 387.  Specify this option to avoid
10626 generating those instructions.  This option is the default on FreeBSD,
10627 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10628 indicates that the target cpu will always have an FPU and so the
10629 instruction will not need emulation.  As of revision 2.6.1, these
10630 instructions are not generated unless you also use the
10631 @option{-funsafe-math-optimizations} switch.
10632
10633 @item -malign-double
10634 @itemx -mno-align-double
10635 @opindex malign-double
10636 @opindex mno-align-double
10637 Control whether GCC aligns @code{double}, @code{long double}, and
10638 @code{long long} variables on a two word boundary or a one word
10639 boundary.  Aligning @code{double} variables on a two word boundary will
10640 produce code that runs somewhat faster on a @samp{Pentium} at the
10641 expense of more memory.
10642
10643 On x86-64, @option{-malign-double} is enabled by default.
10644
10645 @strong{Warning:} if you use the @option{-malign-double} switch,
10646 structures containing the above types will be aligned differently than
10647 the published application binary interface specifications for the 386
10648 and will not be binary compatible with structures in code compiled
10649 without that switch.
10650
10651 @item -m96bit-long-double
10652 @itemx -m128bit-long-double
10653 @opindex m96bit-long-double
10654 @opindex m128bit-long-double
10655 These switches control the size of @code{long double} type.  The i386
10656 application binary interface specifies the size to be 96 bits,
10657 so @option{-m96bit-long-double} is the default in 32 bit mode.
10658
10659 Modern architectures (Pentium and newer) would prefer @code{long double}
10660 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10661 conforming to the ABI, this would not be possible.  So specifying a
10662 @option{-m128bit-long-double} will align @code{long double}
10663 to a 16 byte boundary by padding the @code{long double} with an additional
10664 32 bit zero.
10665
10666 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10667 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10668
10669 Notice that neither of these options enable any extra precision over the x87
10670 standard of 80 bits for a @code{long double}.
10671
10672 @strong{Warning:} if you override the default value for your target ABI, the
10673 structures and arrays containing @code{long double} variables will change
10674 their size as well as function calling convention for function taking
10675 @code{long double} will be modified.  Hence they will not be binary
10676 compatible with arrays or structures in code compiled without that switch.
10677
10678 @item -mmlarge-data-threshold=@var{number}
10679 @opindex mlarge-data-threshold=@var{number}
10680 When @option{-mcmodel=medium} is specified, the data greater than
10681 @var{threshold} are placed in large data section.  This value must be the
10682 same across all object linked into the binary and defaults to 65535.
10683
10684 @item -mrtd
10685 @opindex mrtd
10686 Use a different function-calling convention, in which functions that
10687 take a fixed number of arguments return with the @code{ret} @var{num}
10688 instruction, which pops their arguments while returning.  This saves one
10689 instruction in the caller since there is no need to pop the arguments
10690 there.
10691
10692 You can specify that an individual function is called with this calling
10693 sequence with the function attribute @samp{stdcall}.  You can also
10694 override the @option{-mrtd} option by using the function attribute
10695 @samp{cdecl}.  @xref{Function Attributes}.
10696
10697 @strong{Warning:} this calling convention is incompatible with the one
10698 normally used on Unix, so you cannot use it if you need to call
10699 libraries compiled with the Unix compiler.
10700
10701 Also, you must provide function prototypes for all functions that
10702 take variable numbers of arguments (including @code{printf});
10703 otherwise incorrect code will be generated for calls to those
10704 functions.
10705
10706 In addition, seriously incorrect code will result if you call a
10707 function with too many arguments.  (Normally, extra arguments are
10708 harmlessly ignored.)
10709
10710 @item -mregparm=@var{num}
10711 @opindex mregparm
10712 Control how many registers are used to pass integer arguments.  By
10713 default, no registers are used to pass arguments, and at most 3
10714 registers can be used.  You can control this behavior for a specific
10715 function by using the function attribute @samp{regparm}.
10716 @xref{Function Attributes}.
10717
10718 @strong{Warning:} if you use this switch, and
10719 @var{num} is nonzero, then you must build all modules with the same
10720 value, including any libraries.  This includes the system libraries and
10721 startup modules.
10722
10723 @item -msseregparm
10724 @opindex msseregparm
10725 Use SSE register passing conventions for float and double arguments
10726 and return values.  You can control this behavior for a specific
10727 function by using the function attribute @samp{sseregparm}.
10728 @xref{Function Attributes}.
10729
10730 @strong{Warning:} if you use this switch then you must build all
10731 modules with the same value, including any libraries.  This includes
10732 the system libraries and startup modules.
10733
10734 @item -mpc32
10735 @itemx -mpc64
10736 @itemx -mpc80
10737 @opindex mpc32
10738 @opindex mpc64
10739 @opindex mpc80
10740
10741 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10742 is specified, the significands of results of floating-point operations are
10743 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10744 significands of results of floating-point operations to 53 bits (double
10745 precision) and @option{-mpc80} rounds the significands of results of
10746 floating-point operations to 64 bits (extended double precision), which is
10747 the default.  When this option is used, floating-point operations in higher
10748 precisions are not available to the programmer without setting the FPU
10749 control word explicitly.
10750
10751 Setting the rounding of floating-point operations to less than the default
10752 80 bits can speed some programs by 2% or more.  Note that some mathematical
10753 libraries assume that extended precision (80 bit) floating-point operations
10754 are enabled by default; routines in such libraries could suffer significant
10755 loss of accuracy, typically through so-called "catastrophic cancellation",
10756 when this option is used to set the precision to less than extended precision. 
10757
10758 @item -mstackrealign
10759 @opindex mstackrealign
10760 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
10761 option will generate an alternate prologue and epilogue that realigns the
10762 runtime stack if necessary.  This supports mixing legacy codes that keep
10763 a 4-byte aligned stack with modern codes that keep a 16-byte stack for
10764 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
10765 applicable to individual functions.
10766
10767 @item -mpreferred-stack-boundary=@var{num}
10768 @opindex mpreferred-stack-boundary
10769 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10770 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10771 the default is 4 (16 bytes or 128 bits).
10772
10773 @item -mincoming-stack-boundary=@var{num}
10774 @opindex mincoming-stack-boundary
10775 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
10776 boundary.  If @option{-mincoming-stack-boundary} is not specified,
10777 the one specified by @option{-mpreferred-stack-boundary} will be used.
10778
10779 On Pentium and PentiumPro, @code{double} and @code{long double} values
10780 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10781 suffer significant run time performance penalties.  On Pentium III, the
10782 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10783 properly if it is not 16 byte aligned.
10784
10785 To ensure proper alignment of this values on the stack, the stack boundary
10786 must be as aligned as that required by any value stored on the stack.
10787 Further, every function must be generated such that it keeps the stack
10788 aligned.  Thus calling a function compiled with a higher preferred
10789 stack boundary from a function compiled with a lower preferred stack
10790 boundary will most likely misalign the stack.  It is recommended that
10791 libraries that use callbacks always use the default setting.
10792
10793 This extra alignment does consume extra stack space, and generally
10794 increases code size.  Code that is sensitive to stack space usage, such
10795 as embedded systems and operating system kernels, may want to reduce the
10796 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10797
10798 @item -mmmx
10799 @itemx -mno-mmx
10800 @itemx -msse
10801 @itemx -mno-sse
10802 @itemx -msse2
10803 @itemx -mno-sse2
10804 @itemx -msse3
10805 @itemx -mno-sse3
10806 @itemx -mssse3
10807 @itemx -mno-ssse3
10808 @itemx -msse4.1
10809 @itemx -mno-sse4.1
10810 @itemx -msse4.2
10811 @itemx -mno-sse4.2
10812 @itemx -msse4
10813 @itemx -mno-sse4
10814 @itemx -maes
10815 @itemx -mno-aes
10816 @itemx -mpclmul
10817 @itemx -mno-pclmul
10818 @itemx -msse4a
10819 @itemx -mno-sse4a
10820 @itemx -msse5
10821 @itemx -mno-sse5
10822 @itemx -m3dnow
10823 @itemx -mno-3dnow
10824 @itemx -mpopcnt
10825 @itemx -mno-popcnt
10826 @itemx -mabm
10827 @itemx -mno-abm
10828 @opindex mmmx
10829 @opindex mno-mmx
10830 @opindex msse
10831 @opindex mno-sse
10832 @opindex m3dnow
10833 @opindex mno-3dnow
10834 These switches enable or disable the use of instructions in the MMX,
10835 SSE, SSE2, SSE3, SSSE3, SSE4.1, AES, PCLMUL, SSE4A, SSE5, ABM or
10836 3DNow!@: extended instruction sets.
10837 These extensions are also available as built-in functions: see
10838 @ref{X86 Built-in Functions}, for details of the functions enabled and
10839 disabled by these switches.
10840
10841 To have SSE/SSE2 instructions generated automatically from floating-point
10842 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10843
10844 These options will enable GCC to use these extended instructions in
10845 generated code, even without @option{-mfpmath=sse}.  Applications which
10846 perform runtime CPU detection must compile separate files for each
10847 supported architecture, using the appropriate flags.  In particular,
10848 the file containing the CPU detection code should be compiled without
10849 these options.
10850
10851 @item -mcld
10852 @opindex mcld
10853 This option instructs GCC to emit a @code{cld} instruction in the prologue
10854 of functions that use string instructions.  String instructions depend on
10855 the DF flag to select between autoincrement or autodecrement mode.  While the
10856 ABI specifies the DF flag to be cleared on function entry, some operating
10857 systems violate this specification by not clearing the DF flag in their
10858 exception dispatchers.  The exception handler can be invoked with the DF flag
10859 set which leads to wrong direction mode, when string instructions are used.
10860 This option can be enabled by default on 32-bit x86 targets by configuring
10861 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
10862 instructions can be suppressed with the @option{-mno-cld} compiler option
10863 in this case.
10864
10865 @item -mcx16
10866 @opindex mcx16
10867 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10868 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10869 data types.  This is useful for high resolution counters that could be updated
10870 by multiple processors (or cores).  This instruction is generated as part of
10871 atomic built-in functions: see @ref{Atomic Builtins} for details.
10872
10873 @item -msahf
10874 @opindex msahf
10875 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10876 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10877 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10878 SAHF are load and store instructions, respectively, for certain status flags.
10879 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10880 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10881
10882 @item -mrecip
10883 @opindex mrecip
10884 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10885 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Rhapson step
10886 to increase precision instead of DIVSS and SQRTSS (and their vectorized
10887 variants) for single precision floating point arguments.  These instructions
10888 are generated only when @option{-funsafe-math-optimizations} is enabled
10889 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
10890 Note that while the throughput of the sequence is higher than the throughput
10891 of the non-reciprocal instruction, the precision of the sequence can be
10892 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
10893
10894 @item -mveclibabi=@var{type}
10895 @opindex mveclibabi
10896 Specifies the ABI type to use for vectorizing intrinsics using an
10897 external library.  Supported types are @code{svml} for the Intel short
10898 vector math library and @code{acml} for the AMD math core library style
10899 of interfacing.  GCC will currently emit calls to @code{vmldExp2},
10900 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
10901 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
10902 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
10903 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
10904 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
10905 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
10906 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
10907 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
10908 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
10909 function type when @option{-mveclibabi=svml} is used and @code{__vrd2_sin},
10910 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
10911 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
10912 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
10913 @code{__vrs4_log10f} and @code{__vrs4_powf} for corresponding function type
10914 when @option{-mveclibabi=acml} is used. Both @option{-ftree-vectorize} and
10915 @option{-funsafe-math-optimizations} have to be enabled. A SVML or ACML ABI
10916 compatible library will have to be specified at link time.
10917
10918 @item -mpush-args
10919 @itemx -mno-push-args
10920 @opindex mpush-args
10921 @opindex mno-push-args
10922 Use PUSH operations to store outgoing parameters.  This method is shorter
10923 and usually equally fast as method using SUB/MOV operations and is enabled
10924 by default.  In some cases disabling it may improve performance because of
10925 improved scheduling and reduced dependencies.
10926
10927 @item -maccumulate-outgoing-args
10928 @opindex maccumulate-outgoing-args
10929 If enabled, the maximum amount of space required for outgoing arguments will be
10930 computed in the function prologue.  This is faster on most modern CPUs
10931 because of reduced dependencies, improved scheduling and reduced stack usage
10932 when preferred stack boundary is not equal to 2.  The drawback is a notable
10933 increase in code size.  This switch implies @option{-mno-push-args}.
10934
10935 @item -mthreads
10936 @opindex mthreads
10937 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
10938 on thread-safe exception handling must compile and link all code with the
10939 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
10940 @option{-D_MT}; when linking, it links in a special thread helper library
10941 @option{-lmingwthrd} which cleans up per thread exception handling data.
10942
10943 @item -mno-align-stringops
10944 @opindex mno-align-stringops
10945 Do not align destination of inlined string operations.  This switch reduces
10946 code size and improves performance in case the destination is already aligned,
10947 but GCC doesn't know about it.
10948
10949 @item -minline-all-stringops
10950 @opindex minline-all-stringops
10951 By default GCC inlines string operations only when destination is known to be
10952 aligned at least to 4 byte boundary.  This enables more inlining, increase code
10953 size, but may improve performance of code that depends on fast memcpy, strlen
10954 and memset for short lengths.
10955
10956 @item -minline-stringops-dynamically
10957 @opindex minline-stringops-dynamically
10958 For string operation of unknown size, inline runtime checks so for small
10959 blocks inline code is used, while for large blocks library call is used.
10960
10961 @item -mstringop-strategy=@var{alg}
10962 @opindex mstringop-strategy=@var{alg}
10963 Overwrite internal decision heuristic about particular algorithm to inline
10964 string operation with.  The allowed values are @code{rep_byte},
10965 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
10966 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
10967 expanding inline loop, @code{libcall} for always expanding library call.
10968
10969 @item -momit-leaf-frame-pointer
10970 @opindex momit-leaf-frame-pointer
10971 Don't keep the frame pointer in a register for leaf functions.  This
10972 avoids the instructions to save, set up and restore frame pointers and
10973 makes an extra register available in leaf functions.  The option
10974 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10975 which might make debugging harder.
10976
10977 @item -mtls-direct-seg-refs
10978 @itemx -mno-tls-direct-seg-refs
10979 @opindex mtls-direct-seg-refs
10980 Controls whether TLS variables may be accessed with offsets from the
10981 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
10982 or whether the thread base pointer must be added.  Whether or not this
10983 is legal depends on the operating system, and whether it maps the
10984 segment to cover the entire TLS area.
10985
10986 For systems that use GNU libc, the default is on.
10987
10988 @item -mfused-madd
10989 @itemx -mno-fused-madd
10990 @opindex mfused-madd
10991 Enable automatic generation of fused floating point multiply-add instructions
10992 if the ISA supports such instructions.  The -mfused-madd option is on by
10993 default.  The fused multiply-add instructions have a different
10994 rounding behavior compared to executing a multiply followed by an add.
10995 @end table
10996
10997 These @samp{-m} switches are supported in addition to the above
10998 on AMD x86-64 processors in 64-bit environments.
10999
11000 @table @gcctabopt
11001 @item -m32
11002 @itemx -m64
11003 @opindex m32
11004 @opindex m64
11005 Generate code for a 32-bit or 64-bit environment.
11006 The 32-bit environment sets int, long and pointer to 32 bits and
11007 generates code that runs on any i386 system.
11008 The 64-bit environment sets int to 32 bits and long and pointer
11009 to 64 bits and generates code for AMD's x86-64 architecture. For
11010 darwin only the -m64 option turns off the @option{-fno-pic} and
11011 @option{-mdynamic-no-pic} options.
11012
11013 @item -mno-red-zone
11014 @opindex no-red-zone
11015 Do not use a so called red zone for x86-64 code.  The red zone is mandated
11016 by the x86-64 ABI, it is a 128-byte area beyond the location of the
11017 stack pointer that will not be modified by signal or interrupt handlers
11018 and therefore can be used for temporary data without adjusting the stack
11019 pointer.  The flag @option{-mno-red-zone} disables this red zone.
11020
11021 @item -mcmodel=small
11022 @opindex mcmodel=small
11023 Generate code for the small code model: the program and its symbols must
11024 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
11025 Programs can be statically or dynamically linked.  This is the default
11026 code model.
11027
11028 @item -mcmodel=kernel
11029 @opindex mcmodel=kernel
11030 Generate code for the kernel code model.  The kernel runs in the
11031 negative 2 GB of the address space.
11032 This model has to be used for Linux kernel code.
11033
11034 @item -mcmodel=medium
11035 @opindex mcmodel=medium
11036 Generate code for the medium model: The program is linked in the lower 2
11037 GB of the address space but symbols can be located anywhere in the
11038 address space.  Programs can be statically or dynamically linked, but
11039 building of shared libraries are not supported with the medium model.
11040
11041 @item -mcmodel=large
11042 @opindex mcmodel=large
11043 Generate code for the large model: This model makes no assumptions
11044 about addresses and sizes of sections.
11045 @end table
11046
11047 @node IA-64 Options
11048 @subsection IA-64 Options
11049 @cindex IA-64 Options
11050
11051 These are the @samp{-m} options defined for the Intel IA-64 architecture.
11052
11053 @table @gcctabopt
11054 @item -mbig-endian
11055 @opindex mbig-endian
11056 Generate code for a big endian target.  This is the default for HP-UX@.
11057
11058 @item -mlittle-endian
11059 @opindex mlittle-endian
11060 Generate code for a little endian target.  This is the default for AIX5
11061 and GNU/Linux.
11062
11063 @item -mgnu-as
11064 @itemx -mno-gnu-as
11065 @opindex mgnu-as
11066 @opindex mno-gnu-as
11067 Generate (or don't) code for the GNU assembler.  This is the default.
11068 @c Also, this is the default if the configure option @option{--with-gnu-as}
11069 @c is used.
11070
11071 @item -mgnu-ld
11072 @itemx -mno-gnu-ld
11073 @opindex mgnu-ld
11074 @opindex mno-gnu-ld
11075 Generate (or don't) code for the GNU linker.  This is the default.
11076 @c Also, this is the default if the configure option @option{--with-gnu-ld}
11077 @c is used.
11078
11079 @item -mno-pic
11080 @opindex mno-pic
11081 Generate code that does not use a global pointer register.  The result
11082 is not position independent code, and violates the IA-64 ABI@.
11083
11084 @item -mvolatile-asm-stop
11085 @itemx -mno-volatile-asm-stop
11086 @opindex mvolatile-asm-stop
11087 @opindex mno-volatile-asm-stop
11088 Generate (or don't) a stop bit immediately before and after volatile asm
11089 statements.
11090
11091 @item -mregister-names
11092 @itemx -mno-register-names
11093 @opindex mregister-names
11094 @opindex mno-register-names
11095 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
11096 the stacked registers.  This may make assembler output more readable.
11097
11098 @item -mno-sdata
11099 @itemx -msdata
11100 @opindex mno-sdata
11101 @opindex msdata
11102 Disable (or enable) optimizations that use the small data section.  This may
11103 be useful for working around optimizer bugs.
11104
11105 @item -mconstant-gp
11106 @opindex mconstant-gp
11107 Generate code that uses a single constant global pointer value.  This is
11108 useful when compiling kernel code.
11109
11110 @item -mauto-pic
11111 @opindex mauto-pic
11112 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
11113 This is useful when compiling firmware code.
11114
11115 @item -minline-float-divide-min-latency
11116 @opindex minline-float-divide-min-latency
11117 Generate code for inline divides of floating point values
11118 using the minimum latency algorithm.
11119
11120 @item -minline-float-divide-max-throughput
11121 @opindex minline-float-divide-max-throughput
11122 Generate code for inline divides of floating point values
11123 using the maximum throughput algorithm.
11124
11125 @item -minline-int-divide-min-latency
11126 @opindex minline-int-divide-min-latency
11127 Generate code for inline divides of integer values
11128 using the minimum latency algorithm.
11129
11130 @item -minline-int-divide-max-throughput
11131 @opindex minline-int-divide-max-throughput
11132 Generate code for inline divides of integer values
11133 using the maximum throughput algorithm.
11134
11135 @item -minline-sqrt-min-latency
11136 @opindex minline-sqrt-min-latency
11137 Generate code for inline square roots
11138 using the minimum latency algorithm.
11139
11140 @item -minline-sqrt-max-throughput
11141 @opindex minline-sqrt-max-throughput
11142 Generate code for inline square roots
11143 using the maximum throughput algorithm.
11144
11145 @item -mno-dwarf2-asm
11146 @itemx -mdwarf2-asm
11147 @opindex mno-dwarf2-asm
11148 @opindex mdwarf2-asm
11149 Don't (or do) generate assembler code for the DWARF2 line number debugging
11150 info.  This may be useful when not using the GNU assembler.
11151
11152 @item -mearly-stop-bits
11153 @itemx -mno-early-stop-bits
11154 @opindex mearly-stop-bits
11155 @opindex mno-early-stop-bits
11156 Allow stop bits to be placed earlier than immediately preceding the
11157 instruction that triggered the stop bit.  This can improve instruction
11158 scheduling, but does not always do so.
11159
11160 @item -mfixed-range=@var{register-range}
11161 @opindex mfixed-range
11162 Generate code treating the given register range as fixed registers.
11163 A fixed register is one that the register allocator can not use.  This is
11164 useful when compiling kernel code.  A register range is specified as
11165 two registers separated by a dash.  Multiple register ranges can be
11166 specified separated by a comma.
11167
11168 @item -mtls-size=@var{tls-size}
11169 @opindex mtls-size
11170 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
11171 64.
11172
11173 @item -mtune=@var{cpu-type}
11174 @opindex mtune
11175 Tune the instruction scheduling for a particular CPU, Valid values are
11176 itanium, itanium1, merced, itanium2, and mckinley.
11177
11178 @item -mt
11179 @itemx -pthread
11180 @opindex mt
11181 @opindex pthread
11182 Add support for multithreading using the POSIX threads library.  This
11183 option sets flags for both the preprocessor and linker.  It does
11184 not affect the thread safety of object code produced by the compiler or
11185 that of libraries supplied with it.  These are HP-UX specific flags.
11186
11187 @item -milp32
11188 @itemx -mlp64
11189 @opindex milp32
11190 @opindex mlp64
11191 Generate code for a 32-bit or 64-bit environment.
11192 The 32-bit environment sets int, long and pointer to 32 bits.
11193 The 64-bit environment sets int to 32 bits and long and pointer
11194 to 64 bits.  These are HP-UX specific flags.
11195
11196 @item -mno-sched-br-data-spec
11197 @itemx -msched-br-data-spec
11198 @opindex mno-sched-br-data-spec
11199 @opindex msched-br-data-spec
11200 (Dis/En)able data speculative scheduling before reload.
11201 This will result in generation of the ld.a instructions and
11202 the corresponding check instructions (ld.c / chk.a).
11203 The default is 'disable'.
11204
11205 @item -msched-ar-data-spec
11206 @itemx -mno-sched-ar-data-spec
11207 @opindex msched-ar-data-spec
11208 @opindex mno-sched-ar-data-spec
11209 (En/Dis)able data speculative scheduling after reload.
11210 This will result in generation of the ld.a instructions and
11211 the corresponding check instructions (ld.c / chk.a).
11212 The default is 'enable'.
11213
11214 @item -mno-sched-control-spec
11215 @itemx -msched-control-spec
11216 @opindex mno-sched-control-spec
11217 @opindex msched-control-spec
11218 (Dis/En)able control speculative scheduling.  This feature is
11219 available only during region scheduling (i.e.@: before reload).
11220 This will result in generation of the ld.s instructions and
11221 the corresponding check instructions chk.s .
11222 The default is 'disable'.
11223
11224 @item -msched-br-in-data-spec
11225 @itemx -mno-sched-br-in-data-spec
11226 @opindex msched-br-in-data-spec
11227 @opindex mno-sched-br-in-data-spec
11228 (En/Dis)able speculative scheduling of the instructions that
11229 are dependent on the data speculative loads before reload.
11230 This is effective only with @option{-msched-br-data-spec} enabled.
11231 The default is 'enable'.
11232
11233 @item -msched-ar-in-data-spec
11234 @itemx -mno-sched-ar-in-data-spec
11235 @opindex msched-ar-in-data-spec
11236 @opindex mno-sched-ar-in-data-spec
11237 (En/Dis)able speculative scheduling of the instructions that
11238 are dependent on the data speculative loads after reload.
11239 This is effective only with @option{-msched-ar-data-spec} enabled.
11240 The default is 'enable'.
11241
11242 @item -msched-in-control-spec
11243 @itemx -mno-sched-in-control-spec
11244 @opindex msched-in-control-spec
11245 @opindex mno-sched-in-control-spec
11246 (En/Dis)able speculative scheduling of the instructions that
11247 are dependent on the control speculative loads.
11248 This is effective only with @option{-msched-control-spec} enabled.
11249 The default is 'enable'.
11250
11251 @item -msched-ldc
11252 @itemx -mno-sched-ldc
11253 @opindex msched-ldc
11254 @opindex mno-sched-ldc
11255 (En/Dis)able use of simple data speculation checks ld.c .
11256 If disabled, only chk.a instructions will be emitted to check
11257 data speculative loads.
11258 The default is 'enable'.
11259
11260 @item -mno-sched-control-ldc
11261 @itemx -msched-control-ldc
11262 @opindex mno-sched-control-ldc
11263 @opindex msched-control-ldc
11264 (Dis/En)able use of ld.c instructions to check control speculative loads.
11265 If enabled, in case of control speculative load with no speculatively
11266 scheduled dependent instructions this load will be emitted as ld.sa and
11267 ld.c will be used to check it.
11268 The default is 'disable'.
11269
11270 @item -mno-sched-spec-verbose
11271 @itemx -msched-spec-verbose
11272 @opindex mno-sched-spec-verbose
11273 @opindex msched-spec-verbose
11274 (Dis/En)able printing of the information about speculative motions.
11275
11276 @item -mno-sched-prefer-non-data-spec-insns
11277 @itemx -msched-prefer-non-data-spec-insns
11278 @opindex mno-sched-prefer-non-data-spec-insns
11279 @opindex msched-prefer-non-data-spec-insns
11280 If enabled, data speculative instructions will be chosen for schedule
11281 only if there are no other choices at the moment.  This will make
11282 the use of the data speculation much more conservative.
11283 The default is 'disable'.
11284
11285 @item -mno-sched-prefer-non-control-spec-insns
11286 @itemx -msched-prefer-non-control-spec-insns
11287 @opindex mno-sched-prefer-non-control-spec-insns
11288 @opindex msched-prefer-non-control-spec-insns
11289 If enabled, control speculative instructions will be chosen for schedule
11290 only if there are no other choices at the moment.  This will make
11291 the use of the control speculation much more conservative.
11292 The default is 'disable'.
11293
11294 @item -mno-sched-count-spec-in-critical-path
11295 @itemx -msched-count-spec-in-critical-path
11296 @opindex mno-sched-count-spec-in-critical-path
11297 @opindex msched-count-spec-in-critical-path
11298 If enabled, speculative dependencies will be considered during
11299 computation of the instructions priorities.  This will make the use of the
11300 speculation a bit more conservative.
11301 The default is 'disable'.
11302
11303 @end table
11304
11305 @node M32C Options
11306 @subsection M32C Options
11307 @cindex M32C options
11308
11309 @table @gcctabopt
11310 @item -mcpu=@var{name}
11311 @opindex mcpu=
11312 Select the CPU for which code is generated.  @var{name} may be one of
11313 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
11314 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
11315 the M32C/80 series.
11316
11317 @item -msim
11318 @opindex msim
11319 Specifies that the program will be run on the simulator.  This causes
11320 an alternate runtime library to be linked in which supports, for
11321 example, file I/O@.  You must not use this option when generating
11322 programs that will run on real hardware; you must provide your own
11323 runtime library for whatever I/O functions are needed.
11324
11325 @item -memregs=@var{number}
11326 @opindex memregs=
11327 Specifies the number of memory-based pseudo-registers GCC will use
11328 during code generation.  These pseudo-registers will be used like real
11329 registers, so there is a tradeoff between GCC's ability to fit the
11330 code into available registers, and the performance penalty of using
11331 memory instead of registers.  Note that all modules in a program must
11332 be compiled with the same value for this option.  Because of that, you
11333 must not use this option with the default runtime libraries gcc
11334 builds.
11335
11336 @end table
11337
11338 @node M32R/D Options
11339 @subsection M32R/D Options
11340 @cindex M32R/D options
11341
11342 These @option{-m} options are defined for Renesas M32R/D architectures:
11343
11344 @table @gcctabopt
11345 @item -m32r2
11346 @opindex m32r2
11347 Generate code for the M32R/2@.
11348
11349 @item -m32rx
11350 @opindex m32rx
11351 Generate code for the M32R/X@.
11352
11353 @item -m32r
11354 @opindex m32r
11355 Generate code for the M32R@.  This is the default.
11356
11357 @item -mmodel=small
11358 @opindex mmodel=small
11359 Assume all objects live in the lower 16MB of memory (so that their addresses
11360 can be loaded with the @code{ld24} instruction), and assume all subroutines
11361 are reachable with the @code{bl} instruction.
11362 This is the default.
11363
11364 The addressability of a particular object can be set with the
11365 @code{model} attribute.
11366
11367 @item -mmodel=medium
11368 @opindex mmodel=medium
11369 Assume objects may be anywhere in the 32-bit address space (the compiler
11370 will generate @code{seth/add3} instructions to load their addresses), and
11371 assume all subroutines are reachable with the @code{bl} instruction.
11372
11373 @item -mmodel=large
11374 @opindex mmodel=large
11375 Assume objects may be anywhere in the 32-bit address space (the compiler
11376 will generate @code{seth/add3} instructions to load their addresses), and
11377 assume subroutines may not be reachable with the @code{bl} instruction
11378 (the compiler will generate the much slower @code{seth/add3/jl}
11379 instruction sequence).
11380
11381 @item -msdata=none
11382 @opindex msdata=none
11383 Disable use of the small data area.  Variables will be put into
11384 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11385 @code{section} attribute has been specified).
11386 This is the default.
11387
11388 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11389 Objects may be explicitly put in the small data area with the
11390 @code{section} attribute using one of these sections.
11391
11392 @item -msdata=sdata
11393 @opindex msdata=sdata
11394 Put small global and static data in the small data area, but do not
11395 generate special code to reference them.
11396
11397 @item -msdata=use
11398 @opindex msdata=use
11399 Put small global and static data in the small data area, and generate
11400 special instructions to reference them.
11401
11402 @item -G @var{num}
11403 @opindex G
11404 @cindex smaller data references
11405 Put global and static objects less than or equal to @var{num} bytes
11406 into the small data or bss sections instead of the normal data or bss
11407 sections.  The default value of @var{num} is 8.
11408 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11409 for this option to have any effect.
11410
11411 All modules should be compiled with the same @option{-G @var{num}} value.
11412 Compiling with different values of @var{num} may or may not work; if it
11413 doesn't the linker will give an error message---incorrect code will not be
11414 generated.
11415
11416 @item -mdebug
11417 @opindex mdebug
11418 Makes the M32R specific code in the compiler display some statistics
11419 that might help in debugging programs.
11420
11421 @item -malign-loops
11422 @opindex malign-loops
11423 Align all loops to a 32-byte boundary.
11424
11425 @item -mno-align-loops
11426 @opindex mno-align-loops
11427 Do not enforce a 32-byte alignment for loops.  This is the default.
11428
11429 @item -missue-rate=@var{number}
11430 @opindex missue-rate=@var{number}
11431 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11432 or 2.
11433
11434 @item -mbranch-cost=@var{number}
11435 @opindex mbranch-cost=@var{number}
11436 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11437 preferred over conditional code, if it is 2, then the opposite will
11438 apply.
11439
11440 @item -mflush-trap=@var{number}
11441 @opindex mflush-trap=@var{number}
11442 Specifies the trap number to use to flush the cache.  The default is
11443 12.  Valid numbers are between 0 and 15 inclusive.
11444
11445 @item -mno-flush-trap
11446 @opindex mno-flush-trap
11447 Specifies that the cache cannot be flushed by using a trap.
11448
11449 @item -mflush-func=@var{name}
11450 @opindex mflush-func=@var{name}
11451 Specifies the name of the operating system function to call to flush
11452 the cache.  The default is @emph{_flush_cache}, but a function call
11453 will only be used if a trap is not available.
11454
11455 @item -mno-flush-func
11456 @opindex mno-flush-func
11457 Indicates that there is no OS function for flushing the cache.
11458
11459 @end table
11460
11461 @node M680x0 Options
11462 @subsection M680x0 Options
11463 @cindex M680x0 options
11464
11465 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11466 The default settings depend on which architecture was selected when
11467 the compiler was configured; the defaults for the most common choices
11468 are given below.
11469
11470 @table @gcctabopt
11471 @item -march=@var{arch}
11472 @opindex march
11473 Generate code for a specific M680x0 or ColdFire instruction set
11474 architecture.  Permissible values of @var{arch} for M680x0
11475 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11476 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11477 architectures are selected according to Freescale's ISA classification
11478 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11479 @samp{isab} and @samp{isac}.
11480
11481 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11482 code for a ColdFire target.  The @var{arch} in this macro is one of the
11483 @option{-march} arguments given above.
11484
11485 When used together, @option{-march} and @option{-mtune} select code
11486 that runs on a family of similar processors but that is optimized
11487 for a particular microarchitecture.
11488
11489 @item -mcpu=@var{cpu}
11490 @opindex mcpu
11491 Generate code for a specific M680x0 or ColdFire processor.
11492 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11493 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11494 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11495 below, which also classifies the CPUs into families:
11496
11497 @multitable @columnfractions 0.20 0.80
11498 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11499 @item @samp{51qe} @tab @samp{51qe}
11500 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11501 @item @samp{5206e} @tab @samp{5206e}
11502 @item @samp{5208} @tab @samp{5207} @samp{5208}
11503 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11504 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11505 @item @samp{5216} @tab @samp{5214} @samp{5216}
11506 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11507 @item @samp{5225} @tab @samp{5224} @samp{5225}
11508 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11509 @item @samp{5249} @tab @samp{5249}
11510 @item @samp{5250} @tab @samp{5250}
11511 @item @samp{5271} @tab @samp{5270} @samp{5271}
11512 @item @samp{5272} @tab @samp{5272}
11513 @item @samp{5275} @tab @samp{5274} @samp{5275}
11514 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11515 @item @samp{5307} @tab @samp{5307}
11516 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11517 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11518 @item @samp{5407} @tab @samp{5407}
11519 @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}
11520 @end multitable
11521
11522 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11523 @var{arch} is compatible with @var{cpu}.  Other combinations of
11524 @option{-mcpu} and @option{-march} are rejected.
11525
11526 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11527 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11528 where the value of @var{family} is given by the table above.
11529
11530 @item -mtune=@var{tune}
11531 @opindex mtune
11532 Tune the code for a particular microarchitecture, within the
11533 constraints set by @option{-march} and @option{-mcpu}.
11534 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11535 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11536 and @samp{cpu32}.  The ColdFire microarchitectures
11537 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11538
11539 You can also use @option{-mtune=68020-40} for code that needs
11540 to run relatively well on 68020, 68030 and 68040 targets.
11541 @option{-mtune=68020-60} is similar but includes 68060 targets
11542 as well.  These two options select the same tuning decisions as
11543 @option{-m68020-40} and @option{-m68020-60} respectively.
11544
11545 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11546 when tuning for 680x0 architecture @var{arch}.  It also defines
11547 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11548 option is used.  If gcc is tuning for a range of architectures,
11549 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11550 it defines the macros for every architecture in the range.
11551
11552 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11553 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11554 of the arguments given above.
11555
11556 @item -m68000
11557 @itemx -mc68000
11558 @opindex m68000
11559 @opindex mc68000
11560 Generate output for a 68000.  This is the default
11561 when the compiler is configured for 68000-based systems.
11562 It is equivalent to @option{-march=68000}.
11563
11564 Use this option for microcontrollers with a 68000 or EC000 core,
11565 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11566
11567 @item -m68010
11568 @opindex m68010
11569 Generate output for a 68010.  This is the default
11570 when the compiler is configured for 68010-based systems.
11571 It is equivalent to @option{-march=68010}.
11572
11573 @item -m68020
11574 @itemx -mc68020
11575 @opindex m68020
11576 @opindex mc68020
11577 Generate output for a 68020.  This is the default
11578 when the compiler is configured for 68020-based systems.
11579 It is equivalent to @option{-march=68020}.
11580
11581 @item -m68030
11582 @opindex m68030
11583 Generate output for a 68030.  This is the default when the compiler is
11584 configured for 68030-based systems.  It is equivalent to
11585 @option{-march=68030}.
11586
11587 @item -m68040
11588 @opindex m68040
11589 Generate output for a 68040.  This is the default when the compiler is
11590 configured for 68040-based systems.  It is equivalent to
11591 @option{-march=68040}.
11592
11593 This option inhibits the use of 68881/68882 instructions that have to be
11594 emulated by software on the 68040.  Use this option if your 68040 does not
11595 have code to emulate those instructions.
11596
11597 @item -m68060
11598 @opindex m68060
11599 Generate output for a 68060.  This is the default when the compiler is
11600 configured for 68060-based systems.  It is equivalent to
11601 @option{-march=68060}.
11602
11603 This option inhibits the use of 68020 and 68881/68882 instructions that
11604 have to be emulated by software on the 68060.  Use this option if your 68060
11605 does not have code to emulate those instructions.
11606
11607 @item -mcpu32
11608 @opindex mcpu32
11609 Generate output for a CPU32.  This is the default
11610 when the compiler is configured for CPU32-based systems.
11611 It is equivalent to @option{-march=cpu32}.
11612
11613 Use this option for microcontrollers with a
11614 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11615 68336, 68340, 68341, 68349 and 68360.
11616
11617 @item -m5200
11618 @opindex m5200
11619 Generate output for a 520X ColdFire CPU@.  This is the default
11620 when the compiler is configured for 520X-based systems.
11621 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11622 in favor of that option.
11623
11624 Use this option for microcontroller with a 5200 core, including
11625 the MCF5202, MCF5203, MCF5204 and MCF5206.
11626
11627 @item -m5206e
11628 @opindex m5206e
11629 Generate output for a 5206e ColdFire CPU@.  The option is now
11630 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11631
11632 @item -m528x
11633 @opindex m528x
11634 Generate output for a member of the ColdFire 528X family.
11635 The option is now deprecated in favor of the equivalent
11636 @option{-mcpu=528x}.
11637
11638 @item -m5307
11639 @opindex m5307
11640 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
11641 in favor of the equivalent @option{-mcpu=5307}.
11642
11643 @item -m5407
11644 @opindex m5407
11645 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
11646 in favor of the equivalent @option{-mcpu=5407}.
11647
11648 @item -mcfv4e
11649 @opindex mcfv4e
11650 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11651 This includes use of hardware floating point instructions.
11652 The option is equivalent to @option{-mcpu=547x}, and is now
11653 deprecated in favor of that option.
11654
11655 @item -m68020-40
11656 @opindex m68020-40
11657 Generate output for a 68040, without using any of the new instructions.
11658 This results in code which can run relatively efficiently on either a
11659 68020/68881 or a 68030 or a 68040.  The generated code does use the
11660 68881 instructions that are emulated on the 68040.
11661
11662 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11663
11664 @item -m68020-60
11665 @opindex m68020-60
11666 Generate output for a 68060, without using any of the new instructions.
11667 This results in code which can run relatively efficiently on either a
11668 68020/68881 or a 68030 or a 68040.  The generated code does use the
11669 68881 instructions that are emulated on the 68060.
11670
11671 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11672
11673 @item -mhard-float
11674 @itemx -m68881
11675 @opindex mhard-float
11676 @opindex m68881
11677 Generate floating-point instructions.  This is the default for 68020
11678 and above, and for ColdFire devices that have an FPU@.  It defines the
11679 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11680 on ColdFire targets.
11681
11682 @item -msoft-float
11683 @opindex msoft-float
11684 Do not generate floating-point instructions; use library calls instead.
11685 This is the default for 68000, 68010, and 68832 targets.  It is also
11686 the default for ColdFire devices that have no FPU.
11687
11688 @item -mdiv
11689 @itemx -mno-div
11690 @opindex mdiv
11691 @opindex mno-div
11692 Generate (do not generate) ColdFire hardware divide and remainder
11693 instructions.  If @option{-march} is used without @option{-mcpu},
11694 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11695 architectures.  Otherwise, the default is taken from the target CPU
11696 (either the default CPU, or the one specified by @option{-mcpu}).  For
11697 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11698 @option{-mcpu=5206e}.
11699
11700 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11701
11702 @item -mshort
11703 @opindex mshort
11704 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11705 Additionally, parameters passed on the stack are also aligned to a
11706 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11707
11708 @item -mno-short
11709 @opindex mno-short
11710 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11711
11712 @item -mnobitfield
11713 @itemx -mno-bitfield
11714 @opindex mnobitfield
11715 @opindex mno-bitfield
11716 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11717 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11718
11719 @item -mbitfield
11720 @opindex mbitfield
11721 Do use the bit-field instructions.  The @option{-m68020} option implies
11722 @option{-mbitfield}.  This is the default if you use a configuration
11723 designed for a 68020.
11724
11725 @item -mrtd
11726 @opindex mrtd
11727 Use a different function-calling convention, in which functions
11728 that take a fixed number of arguments return with the @code{rtd}
11729 instruction, which pops their arguments while returning.  This
11730 saves one instruction in the caller since there is no need to pop
11731 the arguments there.
11732
11733 This calling convention is incompatible with the one normally
11734 used on Unix, so you cannot use it if you need to call libraries
11735 compiled with the Unix compiler.
11736
11737 Also, you must provide function prototypes for all functions that
11738 take variable numbers of arguments (including @code{printf});
11739 otherwise incorrect code will be generated for calls to those
11740 functions.
11741
11742 In addition, seriously incorrect code will result if you call a
11743 function with too many arguments.  (Normally, extra arguments are
11744 harmlessly ignored.)
11745
11746 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11747 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11748
11749 @item -mno-rtd
11750 @opindex mno-rtd
11751 Do not use the calling conventions selected by @option{-mrtd}.
11752 This is the default.
11753
11754 @item -malign-int
11755 @itemx -mno-align-int
11756 @opindex malign-int
11757 @opindex mno-align-int
11758 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11759 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11760 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11761 Aligning variables on 32-bit boundaries produces code that runs somewhat
11762 faster on processors with 32-bit busses at the expense of more memory.
11763
11764 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11765 align structures containing the above types  differently than
11766 most published application binary interface specifications for the m68k.
11767
11768 @item -mpcrel
11769 @opindex mpcrel
11770 Use the pc-relative addressing mode of the 68000 directly, instead of
11771 using a global offset table.  At present, this option implies @option{-fpic},
11772 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11773 not presently supported with @option{-mpcrel}, though this could be supported for
11774 68020 and higher processors.
11775
11776 @item -mno-strict-align
11777 @itemx -mstrict-align
11778 @opindex mno-strict-align
11779 @opindex mstrict-align
11780 Do not (do) assume that unaligned memory references will be handled by
11781 the system.
11782
11783 @item -msep-data
11784 Generate code that allows the data segment to be located in a different
11785 area of memory from the text segment.  This allows for execute in place in
11786 an environment without virtual memory management.  This option implies
11787 @option{-fPIC}.
11788
11789 @item -mno-sep-data
11790 Generate code that assumes that the data segment follows the text segment.
11791 This is the default.
11792
11793 @item -mid-shared-library
11794 Generate code that supports shared libraries via the library ID method.
11795 This allows for execute in place and shared libraries in an environment
11796 without virtual memory management.  This option implies @option{-fPIC}.
11797
11798 @item -mno-id-shared-library
11799 Generate code that doesn't assume ID based shared libraries are being used.
11800 This is the default.
11801
11802 @item -mshared-library-id=n
11803 Specified the identification number of the ID based shared library being
11804 compiled.  Specifying a value of 0 will generate more compact code, specifying
11805 other values will force the allocation of that number to the current
11806 library but is no more space or time efficient than omitting this option.
11807
11808 @item -mxgot
11809 @itemx -mno-xgot
11810 @opindex mxgot
11811 @opindex mno-xgot
11812 When generating position-independent code for ColdFire, generate code
11813 that works if the GOT has more than 8192 entries.  This code is
11814 larger and slower than code generated without this option.  On M680x0
11815 processors, this option is not needed; @option{-fPIC} suffices.
11816
11817 GCC normally uses a single instruction to load values from the GOT@.
11818 While this is relatively efficient, it only works if the GOT
11819 is smaller than about 64k.  Anything larger causes the linker
11820 to report an error such as:
11821
11822 @cindex relocation truncated to fit (ColdFire)
11823 @smallexample
11824 relocation truncated to fit: R_68K_GOT16O foobar
11825 @end smallexample
11826
11827 If this happens, you should recompile your code with @option{-mxgot}.
11828 It should then work with very large GOTs.  However, code generated with
11829 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
11830 the value of a global symbol.
11831
11832 Note that some linkers, including newer versions of the GNU linker,
11833 can create multiple GOTs and sort GOT entries.  If you have such a linker,
11834 you should only need to use @option{-mxgot} when compiling a single
11835 object file that accesses more than 8192 GOT entries.  Very few do.
11836
11837 These options have no effect unless GCC is generating
11838 position-independent code.
11839
11840 @end table
11841
11842 @node M68hc1x Options
11843 @subsection M68hc1x Options
11844 @cindex M68hc1x options
11845
11846 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11847 microcontrollers.  The default values for these options depends on
11848 which style of microcontroller was selected when the compiler was configured;
11849 the defaults for the most common choices are given below.
11850
11851 @table @gcctabopt
11852 @item -m6811
11853 @itemx -m68hc11
11854 @opindex m6811
11855 @opindex m68hc11
11856 Generate output for a 68HC11.  This is the default
11857 when the compiler is configured for 68HC11-based systems.
11858
11859 @item -m6812
11860 @itemx -m68hc12
11861 @opindex m6812
11862 @opindex m68hc12
11863 Generate output for a 68HC12.  This is the default
11864 when the compiler is configured for 68HC12-based systems.
11865
11866 @item -m68S12
11867 @itemx -m68hcs12
11868 @opindex m68S12
11869 @opindex m68hcs12
11870 Generate output for a 68HCS12.
11871
11872 @item -mauto-incdec
11873 @opindex mauto-incdec
11874 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11875 addressing modes.
11876
11877 @item -minmax
11878 @itemx -nominmax
11879 @opindex minmax
11880 @opindex mnominmax
11881 Enable the use of 68HC12 min and max instructions.
11882
11883 @item -mlong-calls
11884 @itemx -mno-long-calls
11885 @opindex mlong-calls
11886 @opindex mno-long-calls
11887 Treat all calls as being far away (near).  If calls are assumed to be
11888 far away, the compiler will use the @code{call} instruction to
11889 call a function and the @code{rtc} instruction for returning.
11890
11891 @item -mshort
11892 @opindex mshort
11893 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11894
11895 @item -msoft-reg-count=@var{count}
11896 @opindex msoft-reg-count
11897 Specify the number of pseudo-soft registers which are used for the
11898 code generation.  The maximum number is 32.  Using more pseudo-soft
11899 register may or may not result in better code depending on the program.
11900 The default is 4 for 68HC11 and 2 for 68HC12.
11901
11902 @end table
11903
11904 @node MCore Options
11905 @subsection MCore Options
11906 @cindex MCore options
11907
11908 These are the @samp{-m} options defined for the Motorola M*Core
11909 processors.
11910
11911 @table @gcctabopt
11912
11913 @item -mhardlit
11914 @itemx -mno-hardlit
11915 @opindex mhardlit
11916 @opindex mno-hardlit
11917 Inline constants into the code stream if it can be done in two
11918 instructions or less.
11919
11920 @item -mdiv
11921 @itemx -mno-div
11922 @opindex mdiv
11923 @opindex mno-div
11924 Use the divide instruction.  (Enabled by default).
11925
11926 @item -mrelax-immediate
11927 @itemx -mno-relax-immediate
11928 @opindex mrelax-immediate
11929 @opindex mno-relax-immediate
11930 Allow arbitrary sized immediates in bit operations.
11931
11932 @item -mwide-bitfields
11933 @itemx -mno-wide-bitfields
11934 @opindex mwide-bitfields
11935 @opindex mno-wide-bitfields
11936 Always treat bit-fields as int-sized.
11937
11938 @item -m4byte-functions
11939 @itemx -mno-4byte-functions
11940 @opindex m4byte-functions
11941 @opindex mno-4byte-functions
11942 Force all functions to be aligned to a four byte boundary.
11943
11944 @item -mcallgraph-data
11945 @itemx -mno-callgraph-data
11946 @opindex mcallgraph-data
11947 @opindex mno-callgraph-data
11948 Emit callgraph information.
11949
11950 @item -mslow-bytes
11951 @itemx -mno-slow-bytes
11952 @opindex mslow-bytes
11953 @opindex mno-slow-bytes
11954 Prefer word access when reading byte quantities.
11955
11956 @item -mlittle-endian
11957 @itemx -mbig-endian
11958 @opindex mlittle-endian
11959 @opindex mbig-endian
11960 Generate code for a little endian target.
11961
11962 @item -m210
11963 @itemx -m340
11964 @opindex m210
11965 @opindex m340
11966 Generate code for the 210 processor.
11967 @end table
11968
11969 @node MIPS Options
11970 @subsection MIPS Options
11971 @cindex MIPS options
11972
11973 @table @gcctabopt
11974
11975 @item -EB
11976 @opindex EB
11977 Generate big-endian code.
11978
11979 @item -EL
11980 @opindex EL
11981 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
11982 configurations.
11983
11984 @item -march=@var{arch}
11985 @opindex march
11986 Generate code that will run on @var{arch}, which can be the name of a
11987 generic MIPS ISA, or the name of a particular processor.
11988 The ISA names are:
11989 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
11990 @samp{mips32}, @samp{mips32r2}, @samp{mips64} and @samp{mips64r2}.
11991 The processor names are:
11992 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
11993 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
11994 @samp{5kc}, @samp{5kf},
11995 @samp{20kc},
11996 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
11997 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
11998 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
11999 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
12000 @samp{loongson2e}, @samp{loongson2f},
12001 @samp{m4k},
12002 @samp{octeon},
12003 @samp{orion},
12004 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
12005 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
12006 @samp{rm7000}, @samp{rm9000},
12007 @samp{sb1},
12008 @samp{sr71000},
12009 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
12010 @samp{vr5000}, @samp{vr5400}, @samp{vr5500}
12011 and @samp{xlr}.
12012 The special value @samp{from-abi} selects the
12013 most compatible architecture for the selected ABI (that is,
12014 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
12015
12016 Native Linux/GNU toolchains also support the value @samp{native},
12017 which selects the best architecture option for the host processor.
12018 @option{-march=native} has no effect if GCC does not recognize
12019 the processor.
12020
12021 In processor names, a final @samp{000} can be abbreviated as @samp{k}
12022 (for example, @samp{-march=r2k}).  Prefixes are optional, and
12023 @samp{vr} may be written @samp{r}.
12024
12025 Names of the form @samp{@var{n}f2_1} refer to processors with
12026 FPUs clocked at half the rate of the core, names of the form
12027 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
12028 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
12029 processors with FPUs clocked a ratio of 3:2 with respect to the core.
12030 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
12031 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
12032 accepted as synonyms for @samp{@var{n}f1_1}.
12033
12034 GCC defines two macros based on the value of this option.  The first
12035 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
12036 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
12037 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
12038 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
12039 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
12040
12041 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
12042 above.  In other words, it will have the full prefix and will not
12043 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
12044 the macro names the resolved architecture (either @samp{"mips1"} or
12045 @samp{"mips3"}).  It names the default architecture when no
12046 @option{-march} option is given.
12047
12048 @item -mtune=@var{arch}
12049 @opindex mtune
12050 Optimize for @var{arch}.  Among other things, this option controls
12051 the way instructions are scheduled, and the perceived cost of arithmetic
12052 operations.  The list of @var{arch} values is the same as for
12053 @option{-march}.
12054
12055 When this option is not used, GCC will optimize for the processor
12056 specified by @option{-march}.  By using @option{-march} and
12057 @option{-mtune} together, it is possible to generate code that will
12058 run on a family of processors, but optimize the code for one
12059 particular member of that family.
12060
12061 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
12062 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
12063 @samp{-march} ones described above.
12064
12065 @item -mips1
12066 @opindex mips1
12067 Equivalent to @samp{-march=mips1}.
12068
12069 @item -mips2
12070 @opindex mips2
12071 Equivalent to @samp{-march=mips2}.
12072
12073 @item -mips3
12074 @opindex mips3
12075 Equivalent to @samp{-march=mips3}.
12076
12077 @item -mips4
12078 @opindex mips4
12079 Equivalent to @samp{-march=mips4}.
12080
12081 @item -mips32
12082 @opindex mips32
12083 Equivalent to @samp{-march=mips32}.
12084
12085 @item -mips32r2
12086 @opindex mips32r2
12087 Equivalent to @samp{-march=mips32r2}.
12088
12089 @item -mips64
12090 @opindex mips64
12091 Equivalent to @samp{-march=mips64}.
12092
12093 @item -mips64r2
12094 @opindex mips64r2
12095 Equivalent to @samp{-march=mips64r2}.
12096
12097 @item -mips16
12098 @itemx -mno-mips16
12099 @opindex mips16
12100 @opindex mno-mips16
12101 Generate (do not generate) MIPS16 code.  If GCC is targetting a
12102 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
12103
12104 MIPS16 code generation can also be controlled on a per-function basis
12105 by means of @code{mips16} and @code{nomips16} attributes.  
12106 @xref{Function Attributes}, for more information.
12107
12108 @item -mflip-mips16
12109 @opindex mflip-mips16
12110 Generate MIPS16 code on alternating functions.  This option is provided
12111 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
12112 not intended for ordinary use in compiling user code.
12113
12114 @item -minterlink-mips16
12115 @itemx -mno-interlink-mips16
12116 @opindex minterlink-mips16
12117 @opindex mno-interlink-mips16
12118 Require (do not require) that non-MIPS16 code be link-compatible with
12119 MIPS16 code.
12120
12121 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
12122 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
12123 therefore disables direct jumps unless GCC knows that the target of the
12124 jump is not MIPS16.
12125
12126 @item -mabi=32
12127 @itemx -mabi=o64
12128 @itemx -mabi=n32
12129 @itemx -mabi=64
12130 @itemx -mabi=eabi
12131 @opindex mabi=32
12132 @opindex mabi=o64
12133 @opindex mabi=n32
12134 @opindex mabi=64
12135 @opindex mabi=eabi
12136 Generate code for the given ABI@.
12137
12138 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
12139 generates 64-bit code when you select a 64-bit architecture, but you
12140 can use @option{-mgp32} to get 32-bit code instead.
12141
12142 For information about the O64 ABI, see
12143 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
12144
12145 GCC supports a variant of the o32 ABI in which floating-point registers
12146 are 64 rather than 32 bits wide.  You can select this combination with
12147 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
12148 and @samp{mfhc1} instructions and is therefore only supported for
12149 MIPS32R2 processors.
12150
12151 The register assignments for arguments and return values remain the
12152 same, but each scalar value is passed in a single 64-bit register
12153 rather than a pair of 32-bit registers.  For example, scalar
12154 floating-point values are returned in @samp{$f0} only, not a
12155 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
12156 remains the same, but all 64 bits are saved.
12157
12158 @item -mabicalls
12159 @itemx -mno-abicalls
12160 @opindex mabicalls
12161 @opindex mno-abicalls
12162 Generate (do not generate) code that is suitable for SVR4-style
12163 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
12164 systems.
12165
12166 @item -mshared
12167 @itemx -mno-shared
12168 Generate (do not generate) code that is fully position-independent,
12169 and that can therefore be linked into shared libraries.  This option
12170 only affects @option{-mabicalls}.
12171
12172 All @option{-mabicalls} code has traditionally been position-independent,
12173 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
12174 as an extension, the GNU toolchain allows executables to use absolute
12175 accesses for locally-binding symbols.  It can also use shorter GP
12176 initialization sequences and generate direct calls to locally-defined
12177 functions.  This mode is selected by @option{-mno-shared}.
12178
12179 @option{-mno-shared} depends on binutils 2.16 or higher and generates
12180 objects that can only be linked by the GNU linker.  However, the option
12181 does not affect the ABI of the final executable; it only affects the ABI
12182 of relocatable objects.  Using @option{-mno-shared} will generally make
12183 executables both smaller and quicker.
12184
12185 @option{-mshared} is the default.
12186
12187 @item -mplt
12188 @itemx -mno-plt
12189 @opindex mplt
12190 @opindex mno-plt
12191 Assume (do not assume) that the static and dynamic linkers
12192 support PLTs and copy relocations.  This option only affects
12193 @samp{-mno-shared -mabicalls}.  For the n64 ABI, this option
12194 has no effect without @samp{-msym32}.
12195
12196 You can make @option{-mplt} the default by configuring
12197 GCC with @option{--with-mips-plt}.  The default is
12198 @option{-mno-plt} otherwise.
12199
12200 @item -mxgot
12201 @itemx -mno-xgot
12202 @opindex mxgot
12203 @opindex mno-xgot
12204 Lift (do not lift) the usual restrictions on the size of the global
12205 offset table.
12206
12207 GCC normally uses a single instruction to load values from the GOT@.
12208 While this is relatively efficient, it will only work if the GOT
12209 is smaller than about 64k.  Anything larger will cause the linker
12210 to report an error such as:
12211
12212 @cindex relocation truncated to fit (MIPS)
12213 @smallexample
12214 relocation truncated to fit: R_MIPS_GOT16 foobar
12215 @end smallexample
12216
12217 If this happens, you should recompile your code with @option{-mxgot}.
12218 It should then work with very large GOTs, although it will also be
12219 less efficient, since it will take three instructions to fetch the
12220 value of a global symbol.
12221
12222 Note that some linkers can create multiple GOTs.  If you have such a
12223 linker, you should only need to use @option{-mxgot} when a single object
12224 file accesses more than 64k's worth of GOT entries.  Very few do.
12225
12226 These options have no effect unless GCC is generating position
12227 independent code.
12228
12229 @item -mgp32
12230 @opindex mgp32
12231 Assume that general-purpose registers are 32 bits wide.
12232
12233 @item -mgp64
12234 @opindex mgp64
12235 Assume that general-purpose registers are 64 bits wide.
12236
12237 @item -mfp32
12238 @opindex mfp32
12239 Assume that floating-point registers are 32 bits wide.
12240
12241 @item -mfp64
12242 @opindex mfp64
12243 Assume that floating-point registers are 64 bits wide.
12244
12245 @item -mhard-float
12246 @opindex mhard-float
12247 Use floating-point coprocessor instructions.
12248
12249 @item -msoft-float
12250 @opindex msoft-float
12251 Do not use floating-point coprocessor instructions.  Implement
12252 floating-point calculations using library calls instead.
12253
12254 @item -msingle-float
12255 @opindex msingle-float
12256 Assume that the floating-point coprocessor only supports single-precision
12257 operations.
12258
12259 @item -mdouble-float
12260 @opindex mdouble-float
12261 Assume that the floating-point coprocessor supports double-precision
12262 operations.  This is the default.
12263
12264 @item -mllsc
12265 @itemx -mno-llsc
12266 @opindex mllsc
12267 @opindex mno-llsc
12268 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
12269 implement atomic memory built-in functions.  When neither option is
12270 specified, GCC will use the instructions if the target architecture
12271 supports them.
12272
12273 @option{-mllsc} is useful if the runtime environment can emulate the
12274 instructions and @option{-mno-llsc} can be useful when compiling for
12275 nonstandard ISAs.  You can make either option the default by
12276 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
12277 respectively.  @option{--with-llsc} is the default for some
12278 configurations; see the installation documentation for details.
12279
12280 @item -mdsp
12281 @itemx -mno-dsp
12282 @opindex mdsp
12283 @opindex mno-dsp
12284 Use (do not use) revision 1 of the MIPS DSP ASE@.
12285 @xref{MIPS DSP Built-in Functions}.  This option defines the
12286 preprocessor macro @samp{__mips_dsp}.  It also defines
12287 @samp{__mips_dsp_rev} to 1.
12288
12289 @item -mdspr2
12290 @itemx -mno-dspr2
12291 @opindex mdspr2
12292 @opindex mno-dspr2
12293 Use (do not use) revision 2 of the MIPS DSP ASE@.
12294 @xref{MIPS DSP Built-in Functions}.  This option defines the
12295 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
12296 It also defines @samp{__mips_dsp_rev} to 2.
12297
12298 @item -msmartmips
12299 @itemx -mno-smartmips
12300 @opindex msmartmips
12301 @opindex mno-smartmips
12302 Use (do not use) the MIPS SmartMIPS ASE.
12303
12304 @item -mpaired-single
12305 @itemx -mno-paired-single
12306 @opindex mpaired-single
12307 @opindex mno-paired-single
12308 Use (do not use) paired-single floating-point instructions.
12309 @xref{MIPS Paired-Single Support}.  This option requires
12310 hardware floating-point support to be enabled.
12311
12312 @item -mdmx
12313 @itemx -mno-mdmx
12314 @opindex mdmx
12315 @opindex mno-mdmx
12316 Use (do not use) MIPS Digital Media Extension instructions.
12317 This option can only be used when generating 64-bit code and requires
12318 hardware floating-point support to be enabled.
12319
12320 @item -mips3d
12321 @itemx -mno-mips3d
12322 @opindex mips3d
12323 @opindex mno-mips3d
12324 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
12325 The option @option{-mips3d} implies @option{-mpaired-single}.
12326
12327 @item -mmt
12328 @itemx -mno-mt
12329 @opindex mmt
12330 @opindex mno-mt
12331 Use (do not use) MT Multithreading instructions.
12332
12333 @item -mlong64
12334 @opindex mlong64
12335 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
12336 an explanation of the default and the way that the pointer size is
12337 determined.
12338
12339 @item -mlong32
12340 @opindex mlong32
12341 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
12342
12343 The default size of @code{int}s, @code{long}s and pointers depends on
12344 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
12345 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
12346 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
12347 or the same size as integer registers, whichever is smaller.
12348
12349 @item -msym32
12350 @itemx -mno-sym32
12351 @opindex msym32
12352 @opindex mno-sym32
12353 Assume (do not assume) that all symbols have 32-bit values, regardless
12354 of the selected ABI@.  This option is useful in combination with
12355 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
12356 to generate shorter and faster references to symbolic addresses.
12357
12358 @item -G @var{num}
12359 @opindex G
12360 Put definitions of externally-visible data in a small data section
12361 if that data is no bigger than @var{num} bytes.  GCC can then access
12362 the data more efficiently; see @option{-mgpopt} for details.
12363
12364 The default @option{-G} option depends on the configuration.
12365
12366 @item -mlocal-sdata
12367 @itemx -mno-local-sdata
12368 @opindex mlocal-sdata
12369 @opindex mno-local-sdata
12370 Extend (do not extend) the @option{-G} behavior to local data too,
12371 such as to static variables in C@.  @option{-mlocal-sdata} is the
12372 default for all configurations.
12373
12374 If the linker complains that an application is using too much small data,
12375 you might want to try rebuilding the less performance-critical parts with
12376 @option{-mno-local-sdata}.  You might also want to build large
12377 libraries with @option{-mno-local-sdata}, so that the libraries leave
12378 more room for the main program.
12379
12380 @item -mextern-sdata
12381 @itemx -mno-extern-sdata
12382 @opindex mextern-sdata
12383 @opindex mno-extern-sdata
12384 Assume (do not assume) that externally-defined data will be in
12385 a small data section if that data is within the @option{-G} limit.
12386 @option{-mextern-sdata} is the default for all configurations.
12387
12388 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
12389 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
12390 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
12391 is placed in a small data section.  If @var{Var} is defined by another
12392 module, you must either compile that module with a high-enough
12393 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
12394 definition.  If @var{Var} is common, you must link the application
12395 with a high-enough @option{-G} setting.
12396
12397 The easiest way of satisfying these restrictions is to compile
12398 and link every module with the same @option{-G} option.  However,
12399 you may wish to build a library that supports several different
12400 small data limits.  You can do this by compiling the library with
12401 the highest supported @option{-G} setting and additionally using
12402 @option{-mno-extern-sdata} to stop the library from making assumptions
12403 about externally-defined data.
12404
12405 @item -mgpopt
12406 @itemx -mno-gpopt
12407 @opindex mgpopt
12408 @opindex mno-gpopt
12409 Use (do not use) GP-relative accesses for symbols that are known to be
12410 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
12411 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
12412 configurations.
12413
12414 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
12415 might not hold the value of @code{_gp}.  For example, if the code is
12416 part of a library that might be used in a boot monitor, programs that
12417 call boot monitor routines will pass an unknown value in @code{$gp}.
12418 (In such situations, the boot monitor itself would usually be compiled
12419 with @option{-G0}.)
12420
12421 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
12422 @option{-mno-extern-sdata}.
12423
12424 @item -membedded-data
12425 @itemx -mno-embedded-data
12426 @opindex membedded-data
12427 @opindex mno-embedded-data
12428 Allocate variables to the read-only data section first if possible, then
12429 next in the small data section if possible, otherwise in data.  This gives
12430 slightly slower code than the default, but reduces the amount of RAM required
12431 when executing, and thus may be preferred for some embedded systems.
12432
12433 @item -muninit-const-in-rodata
12434 @itemx -mno-uninit-const-in-rodata
12435 @opindex muninit-const-in-rodata
12436 @opindex mno-uninit-const-in-rodata
12437 Put uninitialized @code{const} variables in the read-only data section.
12438 This option is only meaningful in conjunction with @option{-membedded-data}.
12439
12440 @item -mcode-readable=@var{setting}
12441 @opindex mcode-readable
12442 Specify whether GCC may generate code that reads from executable sections.
12443 There are three possible settings:
12444
12445 @table @gcctabopt
12446 @item -mcode-readable=yes
12447 Instructions may freely access executable sections.  This is the
12448 default setting.
12449
12450 @item -mcode-readable=pcrel
12451 MIPS16 PC-relative load instructions can access executable sections,
12452 but other instructions must not do so.  This option is useful on 4KSc
12453 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12454 It is also useful on processors that can be configured to have a dual
12455 instruction/data SRAM interface and that, like the M4K, automatically
12456 redirect PC-relative loads to the instruction RAM.
12457
12458 @item -mcode-readable=no
12459 Instructions must not access executable sections.  This option can be
12460 useful on targets that are configured to have a dual instruction/data
12461 SRAM interface but that (unlike the M4K) do not automatically redirect
12462 PC-relative loads to the instruction RAM.
12463 @end table
12464
12465 @item -msplit-addresses
12466 @itemx -mno-split-addresses
12467 @opindex msplit-addresses
12468 @opindex mno-split-addresses
12469 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12470 relocation operators.  This option has been superseded by
12471 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12472
12473 @item -mexplicit-relocs
12474 @itemx -mno-explicit-relocs
12475 @opindex mexplicit-relocs
12476 @opindex mno-explicit-relocs
12477 Use (do not use) assembler relocation operators when dealing with symbolic
12478 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12479 is to use assembler macros instead.
12480
12481 @option{-mexplicit-relocs} is the default if GCC was configured
12482 to use an assembler that supports relocation operators.
12483
12484 @item -mcheck-zero-division
12485 @itemx -mno-check-zero-division
12486 @opindex mcheck-zero-division
12487 @opindex mno-check-zero-division
12488 Trap (do not trap) on integer division by zero.
12489
12490 The default is @option{-mcheck-zero-division}.
12491
12492 @item -mdivide-traps
12493 @itemx -mdivide-breaks
12494 @opindex mdivide-traps
12495 @opindex mdivide-breaks
12496 MIPS systems check for division by zero by generating either a
12497 conditional trap or a break instruction.  Using traps results in
12498 smaller code, but is only supported on MIPS II and later.  Also, some
12499 versions of the Linux kernel have a bug that prevents trap from
12500 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12501 allow conditional traps on architectures that support them and
12502 @option{-mdivide-breaks} to force the use of breaks.
12503
12504 The default is usually @option{-mdivide-traps}, but this can be
12505 overridden at configure time using @option{--with-divide=breaks}.
12506 Divide-by-zero checks can be completely disabled using
12507 @option{-mno-check-zero-division}.
12508
12509 @item -mmemcpy
12510 @itemx -mno-memcpy
12511 @opindex mmemcpy
12512 @opindex mno-memcpy
12513 Force (do not force) the use of @code{memcpy()} for non-trivial block
12514 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12515 most constant-sized copies.
12516
12517 @item -mlong-calls
12518 @itemx -mno-long-calls
12519 @opindex mlong-calls
12520 @opindex mno-long-calls
12521 Disable (do not disable) use of the @code{jal} instruction.  Calling
12522 functions using @code{jal} is more efficient but requires the caller
12523 and callee to be in the same 256 megabyte segment.
12524
12525 This option has no effect on abicalls code.  The default is
12526 @option{-mno-long-calls}.
12527
12528 @item -mmad
12529 @itemx -mno-mad
12530 @opindex mmad
12531 @opindex mno-mad
12532 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12533 instructions, as provided by the R4650 ISA@.
12534
12535 @item -mfused-madd
12536 @itemx -mno-fused-madd
12537 @opindex mfused-madd
12538 @opindex mno-fused-madd
12539 Enable (disable) use of the floating point multiply-accumulate
12540 instructions, when they are available.  The default is
12541 @option{-mfused-madd}.
12542
12543 When multiply-accumulate instructions are used, the intermediate
12544 product is calculated to infinite precision and is not subject to
12545 the FCSR Flush to Zero bit.  This may be undesirable in some
12546 circumstances.
12547
12548 @item -nocpp
12549 @opindex nocpp
12550 Tell the MIPS assembler to not run its preprocessor over user
12551 assembler files (with a @samp{.s} suffix) when assembling them.
12552
12553 @item -mfix-r4000
12554 @itemx -mno-fix-r4000
12555 @opindex mfix-r4000
12556 @opindex mno-fix-r4000
12557 Work around certain R4000 CPU errata:
12558 @itemize @minus
12559 @item
12560 A double-word or a variable shift may give an incorrect result if executed
12561 immediately after starting an integer division.
12562 @item
12563 A double-word or a variable shift may give an incorrect result if executed
12564 while an integer multiplication is in progress.
12565 @item
12566 An integer division may give an incorrect result if started in a delay slot
12567 of a taken branch or a jump.
12568 @end itemize
12569
12570 @item -mfix-r4400
12571 @itemx -mno-fix-r4400
12572 @opindex mfix-r4400
12573 @opindex mno-fix-r4400
12574 Work around certain R4400 CPU errata:
12575 @itemize @minus
12576 @item
12577 A double-word or a variable shift may give an incorrect result if executed
12578 immediately after starting an integer division.
12579 @end itemize
12580
12581 @item -mfix-vr4120
12582 @itemx -mno-fix-vr4120
12583 @opindex mfix-vr4120
12584 Work around certain VR4120 errata:
12585 @itemize @minus
12586 @item
12587 @code{dmultu} does not always produce the correct result.
12588 @item
12589 @code{div} and @code{ddiv} do not always produce the correct result if one
12590 of the operands is negative.
12591 @end itemize
12592 The workarounds for the division errata rely on special functions in
12593 @file{libgcc.a}.  At present, these functions are only provided by
12594 the @code{mips64vr*-elf} configurations.
12595
12596 Other VR4120 errata require a nop to be inserted between certain pairs of
12597 instructions.  These errata are handled by the assembler, not by GCC itself.
12598
12599 @item -mfix-vr4130
12600 @opindex mfix-vr4130
12601 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12602 workarounds are implemented by the assembler rather than by GCC,
12603 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12604 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12605 instructions are available instead.
12606
12607 @item -mfix-sb1
12608 @itemx -mno-fix-sb1
12609 @opindex mfix-sb1
12610 Work around certain SB-1 CPU core errata.
12611 (This flag currently works around the SB-1 revision 2
12612 ``F1'' and ``F2'' floating point errata.)
12613
12614 @item -mflush-func=@var{func}
12615 @itemx -mno-flush-func
12616 @opindex mflush-func
12617 Specifies the function to call to flush the I and D caches, or to not
12618 call any such function.  If called, the function must take the same
12619 arguments as the common @code{_flush_func()}, that is, the address of the
12620 memory range for which the cache is being flushed, the size of the
12621 memory range, and the number 3 (to flush both caches).  The default
12622 depends on the target GCC was configured for, but commonly is either
12623 @samp{_flush_func} or @samp{__cpu_flush}.
12624
12625 @item mbranch-cost=@var{num}
12626 @opindex mbranch-cost
12627 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12628 This cost is only a heuristic and is not guaranteed to produce
12629 consistent results across releases.  A zero cost redundantly selects
12630 the default, which is based on the @option{-mtune} setting.
12631
12632 @item -mbranch-likely
12633 @itemx -mno-branch-likely
12634 @opindex mbranch-likely
12635 @opindex mno-branch-likely
12636 Enable or disable use of Branch Likely instructions, regardless of the
12637 default for the selected architecture.  By default, Branch Likely
12638 instructions may be generated if they are supported by the selected
12639 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12640 and processors which implement those architectures; for those, Branch
12641 Likely instructions will not be generated by default because the MIPS32
12642 and MIPS64 architectures specifically deprecate their use.
12643
12644 @item -mfp-exceptions
12645 @itemx -mno-fp-exceptions
12646 @opindex mfp-exceptions
12647 Specifies whether FP exceptions are enabled.  This affects how we schedule
12648 FP instructions for some processors.  The default is that FP exceptions are
12649 enabled.
12650
12651 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12652 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12653 FP pipe.
12654
12655 @item -mvr4130-align
12656 @itemx -mno-vr4130-align
12657 @opindex mvr4130-align
12658 The VR4130 pipeline is two-way superscalar, but can only issue two
12659 instructions together if the first one is 8-byte aligned.  When this
12660 option is enabled, GCC will align pairs of instructions that it
12661 thinks should execute in parallel.
12662
12663 This option only has an effect when optimizing for the VR4130.
12664 It normally makes code faster, but at the expense of making it bigger.
12665 It is enabled by default at optimization level @option{-O3}.
12666 @end table
12667
12668 @node MMIX Options
12669 @subsection MMIX Options
12670 @cindex MMIX Options
12671
12672 These options are defined for the MMIX:
12673
12674 @table @gcctabopt
12675 @item -mlibfuncs
12676 @itemx -mno-libfuncs
12677 @opindex mlibfuncs
12678 @opindex mno-libfuncs
12679 Specify that intrinsic library functions are being compiled, passing all
12680 values in registers, no matter the size.
12681
12682 @item -mepsilon
12683 @itemx -mno-epsilon
12684 @opindex mepsilon
12685 @opindex mno-epsilon
12686 Generate floating-point comparison instructions that compare with respect
12687 to the @code{rE} epsilon register.
12688
12689 @item -mabi=mmixware
12690 @itemx -mabi=gnu
12691 @opindex mabi-mmixware
12692 @opindex mabi=gnu
12693 Generate code that passes function parameters and return values that (in
12694 the called function) are seen as registers @code{$0} and up, as opposed to
12695 the GNU ABI which uses global registers @code{$231} and up.
12696
12697 @item -mzero-extend
12698 @itemx -mno-zero-extend
12699 @opindex mzero-extend
12700 @opindex mno-zero-extend
12701 When reading data from memory in sizes shorter than 64 bits, use (do not
12702 use) zero-extending load instructions by default, rather than
12703 sign-extending ones.
12704
12705 @item -mknuthdiv
12706 @itemx -mno-knuthdiv
12707 @opindex mknuthdiv
12708 @opindex mno-knuthdiv
12709 Make the result of a division yielding a remainder have the same sign as
12710 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12711 remainder follows the sign of the dividend.  Both methods are
12712 arithmetically valid, the latter being almost exclusively used.
12713
12714 @item -mtoplevel-symbols
12715 @itemx -mno-toplevel-symbols
12716 @opindex mtoplevel-symbols
12717 @opindex mno-toplevel-symbols
12718 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12719 code can be used with the @code{PREFIX} assembly directive.
12720
12721 @item -melf
12722 @opindex melf
12723 Generate an executable in the ELF format, rather than the default
12724 @samp{mmo} format used by the @command{mmix} simulator.
12725
12726 @item -mbranch-predict
12727 @itemx -mno-branch-predict
12728 @opindex mbranch-predict
12729 @opindex mno-branch-predict
12730 Use (do not use) the probable-branch instructions, when static branch
12731 prediction indicates a probable branch.
12732
12733 @item -mbase-addresses
12734 @itemx -mno-base-addresses
12735 @opindex mbase-addresses
12736 @opindex mno-base-addresses
12737 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12738 base address automatically generates a request (handled by the assembler
12739 and the linker) for a constant to be set up in a global register.  The
12740 register is used for one or more base address requests within the range 0
12741 to 255 from the value held in the register.  The generally leads to short
12742 and fast code, but the number of different data items that can be
12743 addressed is limited.  This means that a program that uses lots of static
12744 data may require @option{-mno-base-addresses}.
12745
12746 @item -msingle-exit
12747 @itemx -mno-single-exit
12748 @opindex msingle-exit
12749 @opindex mno-single-exit
12750 Force (do not force) generated code to have a single exit point in each
12751 function.
12752 @end table
12753
12754 @node MN10300 Options
12755 @subsection MN10300 Options
12756 @cindex MN10300 options
12757
12758 These @option{-m} options are defined for Matsushita MN10300 architectures:
12759
12760 @table @gcctabopt
12761 @item -mmult-bug
12762 @opindex mmult-bug
12763 Generate code to avoid bugs in the multiply instructions for the MN10300
12764 processors.  This is the default.
12765
12766 @item -mno-mult-bug
12767 @opindex mno-mult-bug
12768 Do not generate code to avoid bugs in the multiply instructions for the
12769 MN10300 processors.
12770
12771 @item -mam33
12772 @opindex mam33
12773 Generate code which uses features specific to the AM33 processor.
12774
12775 @item -mno-am33
12776 @opindex mno-am33
12777 Do not generate code which uses features specific to the AM33 processor.  This
12778 is the default.
12779
12780 @item -mreturn-pointer-on-d0
12781 @opindex mreturn-pointer-on-d0
12782 When generating a function which returns a pointer, return the pointer
12783 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12784 only in a0, and attempts to call such functions without a prototype
12785 would result in errors.  Note that this option is on by default; use
12786 @option{-mno-return-pointer-on-d0} to disable it.
12787
12788 @item -mno-crt0
12789 @opindex mno-crt0
12790 Do not link in the C run-time initialization object file.
12791
12792 @item -mrelax
12793 @opindex mrelax
12794 Indicate to the linker that it should perform a relaxation optimization pass
12795 to shorten branches, calls and absolute memory addresses.  This option only
12796 has an effect when used on the command line for the final link step.
12797
12798 This option makes symbolic debugging impossible.
12799 @end table
12800
12801 @node PDP-11 Options
12802 @subsection PDP-11 Options
12803 @cindex PDP-11 Options
12804
12805 These options are defined for the PDP-11:
12806
12807 @table @gcctabopt
12808 @item -mfpu
12809 @opindex mfpu
12810 Use hardware FPP floating point.  This is the default.  (FIS floating
12811 point on the PDP-11/40 is not supported.)
12812
12813 @item -msoft-float
12814 @opindex msoft-float
12815 Do not use hardware floating point.
12816
12817 @item -mac0
12818 @opindex mac0
12819 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12820
12821 @item -mno-ac0
12822 @opindex mno-ac0
12823 Return floating-point results in memory.  This is the default.
12824
12825 @item -m40
12826 @opindex m40
12827 Generate code for a PDP-11/40.
12828
12829 @item -m45
12830 @opindex m45
12831 Generate code for a PDP-11/45.  This is the default.
12832
12833 @item -m10
12834 @opindex m10
12835 Generate code for a PDP-11/10.
12836
12837 @item -mbcopy-builtin
12838 @opindex bcopy-builtin
12839 Use inline @code{movmemhi} patterns for copying memory.  This is the
12840 default.
12841
12842 @item -mbcopy
12843 @opindex mbcopy
12844 Do not use inline @code{movmemhi} patterns for copying memory.
12845
12846 @item -mint16
12847 @itemx -mno-int32
12848 @opindex mint16
12849 @opindex mno-int32
12850 Use 16-bit @code{int}.  This is the default.
12851
12852 @item -mint32
12853 @itemx -mno-int16
12854 @opindex mint32
12855 @opindex mno-int16
12856 Use 32-bit @code{int}.
12857
12858 @item -mfloat64
12859 @itemx -mno-float32
12860 @opindex mfloat64
12861 @opindex mno-float32
12862 Use 64-bit @code{float}.  This is the default.
12863
12864 @item -mfloat32
12865 @itemx -mno-float64
12866 @opindex mfloat32
12867 @opindex mno-float64
12868 Use 32-bit @code{float}.
12869
12870 @item -mabshi
12871 @opindex mabshi
12872 Use @code{abshi2} pattern.  This is the default.
12873
12874 @item -mno-abshi
12875 @opindex mno-abshi
12876 Do not use @code{abshi2} pattern.
12877
12878 @item -mbranch-expensive
12879 @opindex mbranch-expensive
12880 Pretend that branches are expensive.  This is for experimenting with
12881 code generation only.
12882
12883 @item -mbranch-cheap
12884 @opindex mbranch-cheap
12885 Do not pretend that branches are expensive.  This is the default.
12886
12887 @item -msplit
12888 @opindex msplit
12889 Generate code for a system with split I&D@.
12890
12891 @item -mno-split
12892 @opindex mno-split
12893 Generate code for a system without split I&D@.  This is the default.
12894
12895 @item -munix-asm
12896 @opindex munix-asm
12897 Use Unix assembler syntax.  This is the default when configured for
12898 @samp{pdp11-*-bsd}.
12899
12900 @item -mdec-asm
12901 @opindex mdec-asm
12902 Use DEC assembler syntax.  This is the default when configured for any
12903 PDP-11 target other than @samp{pdp11-*-bsd}.
12904 @end table
12905
12906 @node PowerPC Options
12907 @subsection PowerPC Options
12908 @cindex PowerPC options
12909
12910 These are listed under @xref{RS/6000 and PowerPC Options}.
12911
12912 @node RS/6000 and PowerPC Options
12913 @subsection IBM RS/6000 and PowerPC Options
12914 @cindex RS/6000 and PowerPC Options
12915 @cindex IBM RS/6000 and PowerPC Options
12916
12917 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12918 @table @gcctabopt
12919 @item -mpower
12920 @itemx -mno-power
12921 @itemx -mpower2
12922 @itemx -mno-power2
12923 @itemx -mpowerpc
12924 @itemx -mno-powerpc
12925 @itemx -mpowerpc-gpopt
12926 @itemx -mno-powerpc-gpopt
12927 @itemx -mpowerpc-gfxopt
12928 @itemx -mno-powerpc-gfxopt
12929 @itemx -mpowerpc64
12930 @itemx -mno-powerpc64
12931 @itemx -mmfcrf
12932 @itemx -mno-mfcrf
12933 @itemx -mpopcntb
12934 @itemx -mno-popcntb
12935 @itemx -mfprnd
12936 @itemx -mno-fprnd
12937 @itemx -mcmpb
12938 @itemx -mno-cmpb
12939 @itemx -mmfpgpr
12940 @itemx -mno-mfpgpr
12941 @itemx -mhard-dfp
12942 @itemx -mno-hard-dfp
12943 @opindex mpower
12944 @opindex mno-power
12945 @opindex mpower2
12946 @opindex mno-power2
12947 @opindex mpowerpc
12948 @opindex mno-powerpc
12949 @opindex mpowerpc-gpopt
12950 @opindex mno-powerpc-gpopt
12951 @opindex mpowerpc-gfxopt
12952 @opindex mno-powerpc-gfxopt
12953 @opindex mpowerpc64
12954 @opindex mno-powerpc64
12955 @opindex mmfcrf
12956 @opindex mno-mfcrf
12957 @opindex mpopcntb
12958 @opindex mno-popcntb
12959 @opindex mfprnd
12960 @opindex mno-fprnd
12961 @opindex mcmpb
12962 @opindex mno-cmpb
12963 @opindex mmfpgpr
12964 @opindex mno-mfpgpr
12965 @opindex mhard-dfp
12966 @opindex mno-hard-dfp
12967 GCC supports two related instruction set architectures for the
12968 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
12969 instructions supported by the @samp{rios} chip set used in the original
12970 RS/6000 systems and the @dfn{PowerPC} instruction set is the
12971 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
12972 the IBM 4xx, 6xx, and follow-on microprocessors.
12973
12974 Neither architecture is a subset of the other.  However there is a
12975 large common subset of instructions supported by both.  An MQ
12976 register is included in processors supporting the POWER architecture.
12977
12978 You use these options to specify which instructions are available on the
12979 processor you are using.  The default value of these options is
12980 determined when configuring GCC@.  Specifying the
12981 @option{-mcpu=@var{cpu_type}} overrides the specification of these
12982 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
12983 rather than the options listed above.
12984
12985 The @option{-mpower} option allows GCC to generate instructions that
12986 are found only in the POWER architecture and to use the MQ register.
12987 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
12988 to generate instructions that are present in the POWER2 architecture but
12989 not the original POWER architecture.
12990
12991 The @option{-mpowerpc} option allows GCC to generate instructions that
12992 are found only in the 32-bit subset of the PowerPC architecture.
12993 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
12994 GCC to use the optional PowerPC architecture instructions in the
12995 General Purpose group, including floating-point square root.  Specifying
12996 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
12997 use the optional PowerPC architecture instructions in the Graphics
12998 group, including floating-point select.
12999
13000 The @option{-mmfcrf} option allows GCC to generate the move from
13001 condition register field instruction implemented on the POWER4
13002 processor and other processors that support the PowerPC V2.01
13003 architecture.
13004 The @option{-mpopcntb} option allows GCC to generate the popcount and
13005 double precision FP reciprocal estimate instruction implemented on the
13006 POWER5 processor and other processors that support the PowerPC V2.02
13007 architecture.
13008 The @option{-mfprnd} option allows GCC to generate the FP round to
13009 integer instructions implemented on the POWER5+ processor and other
13010 processors that support the PowerPC V2.03 architecture.
13011 The @option{-mcmpb} option allows GCC to generate the compare bytes
13012 instruction implemented on the POWER6 processor and other processors
13013 that support the PowerPC V2.05 architecture.
13014 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
13015 general purpose register instructions implemented on the POWER6X
13016 processor and other processors that support the extended PowerPC V2.05
13017 architecture.
13018 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
13019 point instructions implemented on some POWER processors.
13020
13021 The @option{-mpowerpc64} option allows GCC to generate the additional
13022 64-bit instructions that are found in the full PowerPC64 architecture
13023 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
13024 @option{-mno-powerpc64}.
13025
13026 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
13027 will use only the instructions in the common subset of both
13028 architectures plus some special AIX common-mode calls, and will not use
13029 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
13030 permits GCC to use any instruction from either architecture and to
13031 allow use of the MQ register; specify this for the Motorola MPC601.
13032
13033 @item -mnew-mnemonics
13034 @itemx -mold-mnemonics
13035 @opindex mnew-mnemonics
13036 @opindex mold-mnemonics
13037 Select which mnemonics to use in the generated assembler code.  With
13038 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
13039 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
13040 assembler mnemonics defined for the POWER architecture.  Instructions
13041 defined in only one architecture have only one mnemonic; GCC uses that
13042 mnemonic irrespective of which of these options is specified.
13043
13044 GCC defaults to the mnemonics appropriate for the architecture in
13045 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
13046 value of these option.  Unless you are building a cross-compiler, you
13047 should normally not specify either @option{-mnew-mnemonics} or
13048 @option{-mold-mnemonics}, but should instead accept the default.
13049
13050 @item -mcpu=@var{cpu_type}
13051 @opindex mcpu
13052 Set architecture type, register usage, choice of mnemonics, and
13053 instruction scheduling parameters for machine type @var{cpu_type}.
13054 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
13055 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
13056 @samp{505}, @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
13057 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
13058 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
13059 @samp{860}, @samp{970}, @samp{8540}, @samp{e300c2}, @samp{e300c3},
13060 @samp{e500mc}, @samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5},
13061 @samp{power}, @samp{power2}, @samp{power3}, @samp{power4},
13062 @samp{power5}, @samp{power5+}, @samp{power6}, @samp{power6x}, @samp{power7}
13063 @samp{common}, @samp{powerpc}, @samp{powerpc64}, @samp{rios},
13064 @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
13065
13066 @option{-mcpu=common} selects a completely generic processor.  Code
13067 generated under this option will run on any POWER or PowerPC processor.
13068 GCC will use only the instructions in the common subset of both
13069 architectures, and will not use the MQ register.  GCC assumes a generic
13070 processor model for scheduling purposes.
13071
13072 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
13073 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
13074 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
13075 types, with an appropriate, generic processor model assumed for
13076 scheduling purposes.
13077
13078 The other options specify a specific processor.  Code generated under
13079 those options will run best on that processor, and may not run at all on
13080 others.
13081
13082 The @option{-mcpu} options automatically enable or disable the
13083 following options:
13084
13085 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
13086 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
13087 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
13088
13089 The particular options set for any particular CPU will vary between
13090 compiler versions, depending on what setting seems to produce optimal
13091 code for that CPU; it doesn't necessarily reflect the actual hardware's
13092 capabilities.  If you wish to set an individual option to a particular
13093 value, you may specify it after the @option{-mcpu} option, like
13094 @samp{-mcpu=970 -mno-altivec}.
13095
13096 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
13097 not enabled or disabled by the @option{-mcpu} option at present because
13098 AIX does not have full support for these options.  You may still
13099 enable or disable them individually if you're sure it'll work in your
13100 environment.
13101
13102 @item -mtune=@var{cpu_type}
13103 @opindex mtune
13104 Set the instruction scheduling parameters for machine type
13105 @var{cpu_type}, but do not set the architecture type, register usage, or
13106 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
13107 values for @var{cpu_type} are used for @option{-mtune} as for
13108 @option{-mcpu}.  If both are specified, the code generated will use the
13109 architecture, registers, and mnemonics set by @option{-mcpu}, but the
13110 scheduling parameters set by @option{-mtune}.
13111
13112 @item -mswdiv
13113 @itemx -mno-swdiv
13114 @opindex mswdiv
13115 @opindex mno-swdiv
13116 Generate code to compute division as reciprocal estimate and iterative
13117 refinement, creating opportunities for increased throughput.  This
13118 feature requires: optional PowerPC Graphics instruction set for single
13119 precision and FRE instruction for double precision, assuming divides
13120 cannot generate user-visible traps, and the domain values not include
13121 Infinities, denormals or zero denominator.
13122
13123 @item -maltivec
13124 @itemx -mno-altivec
13125 @opindex maltivec
13126 @opindex mno-altivec
13127 Generate code that uses (does not use) AltiVec instructions, and also
13128 enable the use of built-in functions that allow more direct access to
13129 the AltiVec instruction set.  You may also need to set
13130 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
13131 enhancements.
13132
13133 @item -mvrsave
13134 @itemx -mno-vrsave
13135 @opindex mvrsave
13136 @opindex mno-vrsave
13137 Generate VRSAVE instructions when generating AltiVec code.
13138
13139 @item -msecure-plt
13140 @opindex msecure-plt
13141 Generate code that allows ld and ld.so to build executables and shared
13142 libraries with non-exec .plt and .got sections.  This is a PowerPC
13143 32-bit SYSV ABI option.
13144
13145 @item -mbss-plt
13146 @opindex mbss-plt
13147 Generate code that uses a BSS .plt section that ld.so fills in, and
13148 requires .plt and .got sections that are both writable and executable.
13149 This is a PowerPC 32-bit SYSV ABI option.
13150
13151 @item -misel
13152 @itemx -mno-isel
13153 @opindex misel
13154 @opindex mno-isel
13155 This switch enables or disables the generation of ISEL instructions.
13156
13157 @item -misel=@var{yes/no}
13158 This switch has been deprecated.  Use @option{-misel} and
13159 @option{-mno-isel} instead.
13160
13161 @item -mspe
13162 @itemx -mno-spe
13163 @opindex mspe
13164 @opindex mno-spe
13165 This switch enables or disables the generation of SPE simd
13166 instructions.
13167
13168 @item -mpaired
13169 @itemx -mno-paired
13170 @opindex mpaired
13171 @opindex mno-paired
13172 This switch enables or disables the generation of PAIRED simd
13173 instructions.
13174
13175 @item -mspe=@var{yes/no}
13176 This option has been deprecated.  Use @option{-mspe} and
13177 @option{-mno-spe} instead.
13178
13179 @item -mfloat-gprs=@var{yes/single/double/no}
13180 @itemx -mfloat-gprs
13181 @opindex mfloat-gprs
13182 This switch enables or disables the generation of floating point
13183 operations on the general purpose registers for architectures that
13184 support it.
13185
13186 The argument @var{yes} or @var{single} enables the use of
13187 single-precision floating point operations.
13188
13189 The argument @var{double} enables the use of single and
13190 double-precision floating point operations.
13191
13192 The argument @var{no} disables floating point operations on the
13193 general purpose registers.
13194
13195 This option is currently only available on the MPC854x.
13196
13197 @item -m32
13198 @itemx -m64
13199 @opindex m32
13200 @opindex m64
13201 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
13202 targets (including GNU/Linux).  The 32-bit environment sets int, long
13203 and pointer to 32 bits and generates code that runs on any PowerPC
13204 variant.  The 64-bit environment sets int to 32 bits and long and
13205 pointer to 64 bits, and generates code for PowerPC64, as for
13206 @option{-mpowerpc64}.
13207
13208 @item -mfull-toc
13209 @itemx -mno-fp-in-toc
13210 @itemx -mno-sum-in-toc
13211 @itemx -mminimal-toc
13212 @opindex mfull-toc
13213 @opindex mno-fp-in-toc
13214 @opindex mno-sum-in-toc
13215 @opindex mminimal-toc
13216 Modify generation of the TOC (Table Of Contents), which is created for
13217 every executable file.  The @option{-mfull-toc} option is selected by
13218 default.  In that case, GCC will allocate at least one TOC entry for
13219 each unique non-automatic variable reference in your program.  GCC
13220 will also place floating-point constants in the TOC@.  However, only
13221 16,384 entries are available in the TOC@.
13222
13223 If you receive a linker error message that saying you have overflowed
13224 the available TOC space, you can reduce the amount of TOC space used
13225 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
13226 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
13227 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
13228 generate code to calculate the sum of an address and a constant at
13229 run-time instead of putting that sum into the TOC@.  You may specify one
13230 or both of these options.  Each causes GCC to produce very slightly
13231 slower and larger code at the expense of conserving TOC space.
13232
13233 If you still run out of space in the TOC even when you specify both of
13234 these options, specify @option{-mminimal-toc} instead.  This option causes
13235 GCC to make only one TOC entry for every file.  When you specify this
13236 option, GCC will produce code that is slower and larger but which
13237 uses extremely little TOC space.  You may wish to use this option
13238 only on files that contain less frequently executed code.
13239
13240 @item -maix64
13241 @itemx -maix32
13242 @opindex maix64
13243 @opindex maix32
13244 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
13245 @code{long} type, and the infrastructure needed to support them.
13246 Specifying @option{-maix64} implies @option{-mpowerpc64} and
13247 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
13248 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
13249
13250 @item -mxl-compat
13251 @itemx -mno-xl-compat
13252 @opindex mxl-compat
13253 @opindex mno-xl-compat
13254 Produce code that conforms more closely to IBM XL compiler semantics
13255 when using AIX-compatible ABI@.  Pass floating-point arguments to
13256 prototyped functions beyond the register save area (RSA) on the stack
13257 in addition to argument FPRs.  Do not assume that most significant
13258 double in 128-bit long double value is properly rounded when comparing
13259 values and converting to double.  Use XL symbol names for long double
13260 support routines.
13261
13262 The AIX calling convention was extended but not initially documented to
13263 handle an obscure K&R C case of calling a function that takes the
13264 address of its arguments with fewer arguments than declared.  IBM XL
13265 compilers access floating point arguments which do not fit in the
13266 RSA from the stack when a subroutine is compiled without
13267 optimization.  Because always storing floating-point arguments on the
13268 stack is inefficient and rarely needed, this option is not enabled by
13269 default and only is necessary when calling subroutines compiled by IBM
13270 XL compilers without optimization.
13271
13272 @item -mpe
13273 @opindex mpe
13274 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
13275 application written to use message passing with special startup code to
13276 enable the application to run.  The system must have PE installed in the
13277 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
13278 must be overridden with the @option{-specs=} option to specify the
13279 appropriate directory location.  The Parallel Environment does not
13280 support threads, so the @option{-mpe} option and the @option{-pthread}
13281 option are incompatible.
13282
13283 @item -malign-natural
13284 @itemx -malign-power
13285 @opindex malign-natural
13286 @opindex malign-power
13287 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
13288 @option{-malign-natural} overrides the ABI-defined alignment of larger
13289 types, such as floating-point doubles, on their natural size-based boundary.
13290 The option @option{-malign-power} instructs GCC to follow the ABI-specified
13291 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
13292
13293 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
13294 is not supported.
13295
13296 @item -msoft-float
13297 @itemx -mhard-float
13298 @opindex msoft-float
13299 @opindex mhard-float
13300 Generate code that does not use (uses) the floating-point register set.
13301 Software floating point emulation is provided if you use the
13302 @option{-msoft-float} option, and pass the option to GCC when linking.
13303
13304 @item -mmultiple
13305 @itemx -mno-multiple
13306 @opindex mmultiple
13307 @opindex mno-multiple
13308 Generate code that uses (does not use) the load multiple word
13309 instructions and the store multiple word instructions.  These
13310 instructions are generated by default on POWER systems, and not
13311 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
13312 endian PowerPC systems, since those instructions do not work when the
13313 processor is in little endian mode.  The exceptions are PPC740 and
13314 PPC750 which permit the instructions usage in little endian mode.
13315
13316 @item -mstring
13317 @itemx -mno-string
13318 @opindex mstring
13319 @opindex mno-string
13320 Generate code that uses (does not use) the load string instructions
13321 and the store string word instructions to save multiple registers and
13322 do small block moves.  These instructions are generated by default on
13323 POWER systems, and not generated on PowerPC systems.  Do not use
13324 @option{-mstring} on little endian PowerPC systems, since those
13325 instructions do not work when the processor is in little endian mode.
13326 The exceptions are PPC740 and PPC750 which permit the instructions
13327 usage in little endian mode.
13328
13329 @item -mupdate
13330 @itemx -mno-update
13331 @opindex mupdate
13332 @opindex mno-update
13333 Generate code that uses (does not use) the load or store instructions
13334 that update the base register to the address of the calculated memory
13335 location.  These instructions are generated by default.  If you use
13336 @option{-mno-update}, there is a small window between the time that the
13337 stack pointer is updated and the address of the previous frame is
13338 stored, which means code that walks the stack frame across interrupts or
13339 signals may get corrupted data.
13340
13341 @item -mfused-madd
13342 @itemx -mno-fused-madd
13343 @opindex mfused-madd
13344 @opindex mno-fused-madd
13345 Generate code that uses (does not use) the floating point multiply and
13346 accumulate instructions.  These instructions are generated by default if
13347 hardware floating is used.
13348
13349 @item -mmulhw
13350 @itemx -mno-mulhw
13351 @opindex mmulhw
13352 @opindex mno-mulhw
13353 Generate code that uses (does not use) the half-word multiply and
13354 multiply-accumulate instructions on the IBM 405, 440 and 464 processors.
13355 These instructions are generated by default when targetting those
13356 processors.
13357
13358 @item -mdlmzb
13359 @itemx -mno-dlmzb
13360 @opindex mdlmzb
13361 @opindex mno-dlmzb
13362 Generate code that uses (does not use) the string-search @samp{dlmzb}
13363 instruction on the IBM 405, 440 and 464 processors.  This instruction is
13364 generated by default when targetting those processors.
13365
13366 @item -mno-bit-align
13367 @itemx -mbit-align
13368 @opindex mno-bit-align
13369 @opindex mbit-align
13370 On System V.4 and embedded PowerPC systems do not (do) force structures
13371 and unions that contain bit-fields to be aligned to the base type of the
13372 bit-field.
13373
13374 For example, by default a structure containing nothing but 8
13375 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
13376 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
13377 the structure would be aligned to a 1 byte boundary and be one byte in
13378 size.
13379
13380 @item -mno-strict-align
13381 @itemx -mstrict-align
13382 @opindex mno-strict-align
13383 @opindex mstrict-align
13384 On System V.4 and embedded PowerPC systems do not (do) assume that
13385 unaligned memory references will be handled by the system.
13386
13387 @item -mrelocatable
13388 @itemx -mno-relocatable
13389 @opindex mrelocatable
13390 @opindex mno-relocatable
13391 On embedded PowerPC systems generate code that allows (does not allow)
13392 the program to be relocated to a different address at runtime.  If you
13393 use @option{-mrelocatable} on any module, all objects linked together must
13394 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
13395
13396 @item -mrelocatable-lib
13397 @itemx -mno-relocatable-lib
13398 @opindex mrelocatable-lib
13399 @opindex mno-relocatable-lib
13400 On embedded PowerPC systems generate code that allows (does not allow)
13401 the program to be relocated to a different address at runtime.  Modules
13402 compiled with @option{-mrelocatable-lib} can be linked with either modules
13403 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
13404 with modules compiled with the @option{-mrelocatable} options.
13405
13406 @item -mno-toc
13407 @itemx -mtoc
13408 @opindex mno-toc
13409 @opindex mtoc
13410 On System V.4 and embedded PowerPC systems do not (do) assume that
13411 register 2 contains a pointer to a global area pointing to the addresses
13412 used in the program.
13413
13414 @item -mlittle
13415 @itemx -mlittle-endian
13416 @opindex mlittle
13417 @opindex mlittle-endian
13418 On System V.4 and embedded PowerPC systems compile code for the
13419 processor in little endian mode.  The @option{-mlittle-endian} option is
13420 the same as @option{-mlittle}.
13421
13422 @item -mbig
13423 @itemx -mbig-endian
13424 @opindex mbig
13425 @opindex mbig-endian
13426 On System V.4 and embedded PowerPC systems compile code for the
13427 processor in big endian mode.  The @option{-mbig-endian} option is
13428 the same as @option{-mbig}.
13429
13430 @item -mdynamic-no-pic
13431 @opindex mdynamic-no-pic
13432 On Darwin and Mac OS X systems, compile code so that it is not
13433 relocatable, but that its external references are relocatable.  The
13434 resulting code is suitable for applications, but not shared
13435 libraries.
13436
13437 @item -mprioritize-restricted-insns=@var{priority}
13438 @opindex mprioritize-restricted-insns
13439 This option controls the priority that is assigned to
13440 dispatch-slot restricted instructions during the second scheduling
13441 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13442 @var{no/highest/second-highest} priority to dispatch slot restricted
13443 instructions.
13444
13445 @item -msched-costly-dep=@var{dependence_type}
13446 @opindex msched-costly-dep
13447 This option controls which dependences are considered costly
13448 by the target during instruction scheduling.  The argument
13449 @var{dependence_type} takes one of the following values:
13450 @var{no}: no dependence is costly,
13451 @var{all}: all dependences are costly,
13452 @var{true_store_to_load}: a true dependence from store to load is costly,
13453 @var{store_to_load}: any dependence from store to load is costly,
13454 @var{number}: any dependence which latency >= @var{number} is costly.
13455
13456 @item -minsert-sched-nops=@var{scheme}
13457 @opindex minsert-sched-nops
13458 This option controls which nop insertion scheme will be used during
13459 the second scheduling pass.  The argument @var{scheme} takes one of the
13460 following values:
13461 @var{no}: Don't insert nops.
13462 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13463 according to the scheduler's grouping.
13464 @var{regroup_exact}: Insert nops to force costly dependent insns into
13465 separate groups.  Insert exactly as many nops as needed to force an insn
13466 to a new group, according to the estimated processor grouping.
13467 @var{number}: Insert nops to force costly dependent insns into
13468 separate groups.  Insert @var{number} nops to force an insn to a new group.
13469
13470 @item -mcall-sysv
13471 @opindex mcall-sysv
13472 On System V.4 and embedded PowerPC systems compile code using calling
13473 conventions that adheres to the March 1995 draft of the System V
13474 Application Binary Interface, PowerPC processor supplement.  This is the
13475 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13476
13477 @item -mcall-sysv-eabi
13478 @opindex mcall-sysv-eabi
13479 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13480
13481 @item -mcall-sysv-noeabi
13482 @opindex mcall-sysv-noeabi
13483 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13484
13485 @item -mcall-solaris
13486 @opindex mcall-solaris
13487 On System V.4 and embedded PowerPC systems compile code for the Solaris
13488 operating system.
13489
13490 @item -mcall-linux
13491 @opindex mcall-linux
13492 On System V.4 and embedded PowerPC systems compile code for the
13493 Linux-based GNU system.
13494
13495 @item -mcall-gnu
13496 @opindex mcall-gnu
13497 On System V.4 and embedded PowerPC systems compile code for the
13498 Hurd-based GNU system.
13499
13500 @item -mcall-netbsd
13501 @opindex mcall-netbsd
13502 On System V.4 and embedded PowerPC systems compile code for the
13503 NetBSD operating system.
13504
13505 @item -maix-struct-return
13506 @opindex maix-struct-return
13507 Return all structures in memory (as specified by the AIX ABI)@.
13508
13509 @item -msvr4-struct-return
13510 @opindex msvr4-struct-return
13511 Return structures smaller than 8 bytes in registers (as specified by the
13512 SVR4 ABI)@.
13513
13514 @item -mabi=@var{abi-type}
13515 @opindex mabi
13516 Extend the current ABI with a particular extension, or remove such extension.
13517 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13518 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13519
13520 @item -mabi=spe
13521 @opindex mabi=spe
13522 Extend the current ABI with SPE ABI extensions.  This does not change
13523 the default ABI, instead it adds the SPE ABI extensions to the current
13524 ABI@.
13525
13526 @item -mabi=no-spe
13527 @opindex mabi=no-spe
13528 Disable Booke SPE ABI extensions for the current ABI@.
13529
13530 @item -mabi=ibmlongdouble
13531 @opindex mabi=ibmlongdouble
13532 Change the current ABI to use IBM extended precision long double.
13533 This is a PowerPC 32-bit SYSV ABI option.
13534
13535 @item -mabi=ieeelongdouble
13536 @opindex mabi=ieeelongdouble
13537 Change the current ABI to use IEEE extended precision long double.
13538 This is a PowerPC 32-bit Linux ABI option.
13539
13540 @item -mprototype
13541 @itemx -mno-prototype
13542 @opindex mprototype
13543 @opindex mno-prototype
13544 On System V.4 and embedded PowerPC systems assume that all calls to
13545 variable argument functions are properly prototyped.  Otherwise, the
13546 compiler must insert an instruction before every non prototyped call to
13547 set or clear bit 6 of the condition code register (@var{CR}) to
13548 indicate whether floating point values were passed in the floating point
13549 registers in case the function takes a variable arguments.  With
13550 @option{-mprototype}, only calls to prototyped variable argument functions
13551 will set or clear the bit.
13552
13553 @item -msim
13554 @opindex msim
13555 On embedded PowerPC systems, assume that the startup module is called
13556 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13557 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
13558 configurations.
13559
13560 @item -mmvme
13561 @opindex mmvme
13562 On embedded PowerPC systems, assume that the startup module is called
13563 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13564 @file{libc.a}.
13565
13566 @item -mads
13567 @opindex mads
13568 On embedded PowerPC systems, assume that the startup module is called
13569 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13570 @file{libc.a}.
13571
13572 @item -myellowknife
13573 @opindex myellowknife
13574 On embedded PowerPC systems, assume that the startup module is called
13575 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13576 @file{libc.a}.
13577
13578 @item -mvxworks
13579 @opindex mvxworks
13580 On System V.4 and embedded PowerPC systems, specify that you are
13581 compiling for a VxWorks system.
13582
13583 @item -memb
13584 @opindex memb
13585 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13586 header to indicate that @samp{eabi} extended relocations are used.
13587
13588 @item -meabi
13589 @itemx -mno-eabi
13590 @opindex meabi
13591 @opindex mno-eabi
13592 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13593 Embedded Applications Binary Interface (eabi) which is a set of
13594 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13595 means that the stack is aligned to an 8 byte boundary, a function
13596 @code{__eabi} is called to from @code{main} to set up the eabi
13597 environment, and the @option{-msdata} option can use both @code{r2} and
13598 @code{r13} to point to two separate small data areas.  Selecting
13599 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13600 do not call an initialization function from @code{main}, and the
13601 @option{-msdata} option will only use @code{r13} to point to a single
13602 small data area.  The @option{-meabi} option is on by default if you
13603 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13604
13605 @item -msdata=eabi
13606 @opindex msdata=eabi
13607 On System V.4 and embedded PowerPC systems, put small initialized
13608 @code{const} global and static data in the @samp{.sdata2} section, which
13609 is pointed to by register @code{r2}.  Put small initialized
13610 non-@code{const} global and static data in the @samp{.sdata} section,
13611 which is pointed to by register @code{r13}.  Put small uninitialized
13612 global and static data in the @samp{.sbss} section, which is adjacent to
13613 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13614 incompatible with the @option{-mrelocatable} option.  The
13615 @option{-msdata=eabi} option also sets the @option{-memb} option.
13616
13617 @item -msdata=sysv
13618 @opindex msdata=sysv
13619 On System V.4 and embedded PowerPC systems, put small global and static
13620 data in the @samp{.sdata} section, which is pointed to by register
13621 @code{r13}.  Put small uninitialized global and static data in the
13622 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13623 The @option{-msdata=sysv} option is incompatible with the
13624 @option{-mrelocatable} option.
13625
13626 @item -msdata=default
13627 @itemx -msdata
13628 @opindex msdata=default
13629 @opindex msdata
13630 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13631 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13632 same as @option{-msdata=sysv}.
13633
13634 @item -msdata-data
13635 @opindex msdata-data
13636 On System V.4 and embedded PowerPC systems, put small global
13637 data in the @samp{.sdata} section.  Put small uninitialized global
13638 data in the @samp{.sbss} section.  Do not use register @code{r13}
13639 to address small data however.  This is the default behavior unless
13640 other @option{-msdata} options are used.
13641
13642 @item -msdata=none
13643 @itemx -mno-sdata
13644 @opindex msdata=none
13645 @opindex mno-sdata
13646 On embedded PowerPC systems, put all initialized global and static data
13647 in the @samp{.data} section, and all uninitialized data in the
13648 @samp{.bss} section.
13649
13650 @item -G @var{num}
13651 @opindex G
13652 @cindex smaller data references (PowerPC)
13653 @cindex .sdata/.sdata2 references (PowerPC)
13654 On embedded PowerPC systems, put global and static items less than or
13655 equal to @var{num} bytes into the small data or bss sections instead of
13656 the normal data or bss section.  By default, @var{num} is 8.  The
13657 @option{-G @var{num}} switch is also passed to the linker.
13658 All modules should be compiled with the same @option{-G @var{num}} value.
13659
13660 @item -mregnames
13661 @itemx -mno-regnames
13662 @opindex mregnames
13663 @opindex mno-regnames
13664 On System V.4 and embedded PowerPC systems do (do not) emit register
13665 names in the assembly language output using symbolic forms.
13666
13667 @item -mlongcall
13668 @itemx -mno-longcall
13669 @opindex mlongcall
13670 @opindex mno-longcall
13671 By default assume that all calls are far away so that a longer more
13672 expensive calling sequence is required.  This is required for calls
13673 further than 32 megabytes (33,554,432 bytes) from the current location.
13674 A short call will be generated if the compiler knows
13675 the call cannot be that far away.  This setting can be overridden by
13676 the @code{shortcall} function attribute, or by @code{#pragma
13677 longcall(0)}.
13678
13679 Some linkers are capable of detecting out-of-range calls and generating
13680 glue code on the fly.  On these systems, long calls are unnecessary and
13681 generate slower code.  As of this writing, the AIX linker can do this,
13682 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13683 to the GNU linker for 32-bit PowerPC systems as well.
13684
13685 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13686 callee, L42'', plus a ``branch island'' (glue code).  The two target
13687 addresses represent the callee and the ``branch island''.  The
13688 Darwin/PPC linker will prefer the first address and generate a ``bl
13689 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13690 otherwise, the linker will generate ``bl L42'' to call the ``branch
13691 island''.  The ``branch island'' is appended to the body of the
13692 calling function; it computes the full 32-bit address of the callee
13693 and jumps to it.
13694
13695 On Mach-O (Darwin) systems, this option directs the compiler emit to
13696 the glue for every direct call, and the Darwin linker decides whether
13697 to use or discard it.
13698
13699 In the future, we may cause GCC to ignore all longcall specifications
13700 when the linker is known to generate glue.
13701
13702 @item -pthread
13703 @opindex pthread
13704 Adds support for multithreading with the @dfn{pthreads} library.
13705 This option sets flags for both the preprocessor and linker.
13706
13707 @end table
13708
13709 @node S/390 and zSeries Options
13710 @subsection S/390 and zSeries Options
13711 @cindex S/390 and zSeries Options
13712
13713 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13714
13715 @table @gcctabopt
13716 @item -mhard-float
13717 @itemx -msoft-float
13718 @opindex mhard-float
13719 @opindex msoft-float
13720 Use (do not use) the hardware floating-point instructions and registers
13721 for floating-point operations.  When @option{-msoft-float} is specified,
13722 functions in @file{libgcc.a} will be used to perform floating-point
13723 operations.  When @option{-mhard-float} is specified, the compiler
13724 generates IEEE floating-point instructions.  This is the default.
13725
13726 @item -mlong-double-64
13727 @itemx -mlong-double-128
13728 @opindex mlong-double-64
13729 @opindex mlong-double-128
13730 These switches control the size of @code{long double} type. A size
13731 of 64bit makes the @code{long double} type equivalent to the @code{double}
13732 type. This is the default.
13733
13734 @item -mbackchain
13735 @itemx -mno-backchain
13736 @opindex mbackchain
13737 @opindex mno-backchain
13738 Store (do not store) the address of the caller's frame as backchain pointer
13739 into the callee's stack frame.
13740 A backchain may be needed to allow debugging using tools that do not understand
13741 DWARF-2 call frame information.
13742 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13743 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13744 the backchain is placed into the topmost word of the 96/160 byte register
13745 save area.
13746
13747 In general, code compiled with @option{-mbackchain} is call-compatible with
13748 code compiled with @option{-mmo-backchain}; however, use of the backchain
13749 for debugging purposes usually requires that the whole binary is built with
13750 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13751 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13752 to build a linux kernel use @option{-msoft-float}.
13753
13754 The default is to not maintain the backchain.
13755
13756 @item -mpacked-stack
13757 @itemx -mno-packed-stack
13758 @opindex mpacked-stack
13759 @opindex mno-packed-stack
13760 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13761 specified, the compiler uses the all fields of the 96/160 byte register save
13762 area only for their default purpose; unused fields still take up stack space.
13763 When @option{-mpacked-stack} is specified, register save slots are densely
13764 packed at the top of the register save area; unused space is reused for other
13765 purposes, allowing for more efficient use of the available stack space.
13766 However, when @option{-mbackchain} is also in effect, the topmost word of
13767 the save area is always used to store the backchain, and the return address
13768 register is always saved two words below the backchain.
13769
13770 As long as the stack frame backchain is not used, code generated with
13771 @option{-mpacked-stack} is call-compatible with code generated with
13772 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13773 S/390 or zSeries generated code that uses the stack frame backchain at run
13774 time, not just for debugging purposes.  Such code is not call-compatible
13775 with code compiled with @option{-mpacked-stack}.  Also, note that the
13776 combination of @option{-mbackchain},
13777 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13778 to build a linux kernel use @option{-msoft-float}.
13779
13780 The default is to not use the packed stack layout.
13781
13782 @item -msmall-exec
13783 @itemx -mno-small-exec
13784 @opindex msmall-exec
13785 @opindex mno-small-exec
13786 Generate (or do not generate) code using the @code{bras} instruction
13787 to do subroutine calls.
13788 This only works reliably if the total executable size does not
13789 exceed 64k.  The default is to use the @code{basr} instruction instead,
13790 which does not have this limitation.
13791
13792 @item -m64
13793 @itemx -m31
13794 @opindex m64
13795 @opindex m31
13796 When @option{-m31} is specified, generate code compliant to the
13797 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13798 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13799 particular to generate 64-bit instructions.  For the @samp{s390}
13800 targets, the default is @option{-m31}, while the @samp{s390x}
13801 targets default to @option{-m64}.
13802
13803 @item -mzarch
13804 @itemx -mesa
13805 @opindex mzarch
13806 @opindex mesa
13807 When @option{-mzarch} is specified, generate code using the
13808 instructions available on z/Architecture.
13809 When @option{-mesa} is specified, generate code using the
13810 instructions available on ESA/390.  Note that @option{-mesa} is
13811 not possible with @option{-m64}.
13812 When generating code compliant to the GNU/Linux for S/390 ABI,
13813 the default is @option{-mesa}.  When generating code compliant
13814 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13815
13816 @item -mmvcle
13817 @itemx -mno-mvcle
13818 @opindex mmvcle
13819 @opindex mno-mvcle
13820 Generate (or do not generate) code using the @code{mvcle} instruction
13821 to perform block moves.  When @option{-mno-mvcle} is specified,
13822 use a @code{mvc} loop instead.  This is the default unless optimizing for
13823 size.
13824
13825 @item -mdebug
13826 @itemx -mno-debug
13827 @opindex mdebug
13828 @opindex mno-debug
13829 Print (or do not print) additional debug information when compiling.
13830 The default is to not print debug information.
13831
13832 @item -march=@var{cpu-type}
13833 @opindex march
13834 Generate code that will run on @var{cpu-type}, which is the name of a system
13835 representing a certain processor type.  Possible values for
13836 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13837 When generating code using the instructions available on z/Architecture,
13838 the default is @option{-march=z900}.  Otherwise, the default is
13839 @option{-march=g5}.
13840
13841 @item -mtune=@var{cpu-type}
13842 @opindex mtune
13843 Tune to @var{cpu-type} everything applicable about the generated code,
13844 except for the ABI and the set of available instructions.
13845 The list of @var{cpu-type} values is the same as for @option{-march}.
13846 The default is the value used for @option{-march}.
13847
13848 @item -mtpf-trace
13849 @itemx -mno-tpf-trace
13850 @opindex mtpf-trace
13851 @opindex mno-tpf-trace
13852 Generate code that adds (does not add) in TPF OS specific branches to trace
13853 routines in the operating system.  This option is off by default, even
13854 when compiling for the TPF OS@.
13855
13856 @item -mfused-madd
13857 @itemx -mno-fused-madd
13858 @opindex mfused-madd
13859 @opindex mno-fused-madd
13860 Generate code that uses (does not use) the floating point multiply and
13861 accumulate instructions.  These instructions are generated by default if
13862 hardware floating point is used.
13863
13864 @item -mwarn-framesize=@var{framesize}
13865 @opindex mwarn-framesize
13866 Emit a warning if the current function exceeds the given frame size.  Because
13867 this is a compile time check it doesn't need to be a real problem when the program
13868 runs.  It is intended to identify functions which most probably cause
13869 a stack overflow.  It is useful to be used in an environment with limited stack
13870 size e.g.@: the linux kernel.
13871
13872 @item -mwarn-dynamicstack
13873 @opindex mwarn-dynamicstack
13874 Emit a warning if the function calls alloca or uses dynamically
13875 sized arrays.  This is generally a bad idea with a limited stack size.
13876
13877 @item -mstack-guard=@var{stack-guard}
13878 @itemx -mstack-size=@var{stack-size}
13879 @opindex mstack-guard
13880 @opindex mstack-size
13881 If these options are provided the s390 back end emits additional instructions in
13882 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13883 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13884 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13885 the frame size of the compiled function is chosen.
13886 These options are intended to be used to help debugging stack overflow problems.
13887 The additionally emitted code causes only little overhead and hence can also be
13888 used in production like systems without greater performance degradation.  The given
13889 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13890 @var{stack-guard} without exceeding 64k.
13891 In order to be efficient the extra code makes the assumption that the stack starts
13892 at an address aligned to the value given by @var{stack-size}.
13893 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13894 @end table
13895
13896 @node Score Options
13897 @subsection Score Options
13898 @cindex Score Options
13899
13900 These options are defined for Score implementations:
13901
13902 @table @gcctabopt
13903 @item -meb
13904 @opindex meb
13905 Compile code for big endian mode.  This is the default.
13906
13907 @item -mel
13908 @opindex mel
13909 Compile code for little endian mode. 
13910
13911 @item -mnhwloop
13912 @opindex mnhwloop
13913 Disable generate bcnz instruction.
13914
13915 @item -muls
13916 @opindex muls
13917 Enable generate unaligned load and store instruction.
13918
13919 @item -mmac
13920 @opindex mmac
13921 Enable the use of multiply-accumulate instructions. Disabled by default. 
13922
13923 @item -mscore5
13924 @opindex mscore5
13925 Specify the SCORE5 as the target architecture.
13926
13927 @item -mscore5u
13928 @opindex mscore5u
13929 Specify the SCORE5U of the target architecture.
13930
13931 @item -mscore7
13932 @opindex mscore7
13933 Specify the SCORE7 as the target architecture. This is the default.
13934
13935 @item -mscore7d
13936 @opindex mscore7d
13937 Specify the SCORE7D as the target architecture.
13938 @end table
13939
13940 @node SH Options
13941 @subsection SH Options
13942
13943 These @samp{-m} options are defined for the SH implementations:
13944
13945 @table @gcctabopt
13946 @item -m1
13947 @opindex m1
13948 Generate code for the SH1.
13949
13950 @item -m2
13951 @opindex m2
13952 Generate code for the SH2.
13953
13954 @item -m2e
13955 Generate code for the SH2e.
13956
13957 @item -m3
13958 @opindex m3
13959 Generate code for the SH3.
13960
13961 @item -m3e
13962 @opindex m3e
13963 Generate code for the SH3e.
13964
13965 @item -m4-nofpu
13966 @opindex m4-nofpu
13967 Generate code for the SH4 without a floating-point unit.
13968
13969 @item -m4-single-only
13970 @opindex m4-single-only
13971 Generate code for the SH4 with a floating-point unit that only
13972 supports single-precision arithmetic.
13973
13974 @item -m4-single
13975 @opindex m4-single
13976 Generate code for the SH4 assuming the floating-point unit is in
13977 single-precision mode by default.
13978
13979 @item -m4
13980 @opindex m4
13981 Generate code for the SH4.
13982
13983 @item -m4a-nofpu
13984 @opindex m4a-nofpu
13985 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
13986 floating-point unit is not used.
13987
13988 @item -m4a-single-only
13989 @opindex m4a-single-only
13990 Generate code for the SH4a, in such a way that no double-precision
13991 floating point operations are used.
13992
13993 @item -m4a-single
13994 @opindex m4a-single
13995 Generate code for the SH4a assuming the floating-point unit is in
13996 single-precision mode by default.
13997
13998 @item -m4a
13999 @opindex m4a
14000 Generate code for the SH4a.
14001
14002 @item -m4al
14003 @opindex m4al
14004 Same as @option{-m4a-nofpu}, except that it implicitly passes
14005 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
14006 instructions at the moment.
14007
14008 @item -mb
14009 @opindex mb
14010 Compile code for the processor in big endian mode.
14011
14012 @item -ml
14013 @opindex ml
14014 Compile code for the processor in little endian mode.
14015
14016 @item -mdalign
14017 @opindex mdalign
14018 Align doubles at 64-bit boundaries.  Note that this changes the calling
14019 conventions, and thus some functions from the standard C library will
14020 not work unless you recompile it first with @option{-mdalign}.
14021
14022 @item -mrelax
14023 @opindex mrelax
14024 Shorten some address references at link time, when possible; uses the
14025 linker option @option{-relax}.
14026
14027 @item -mbigtable
14028 @opindex mbigtable
14029 Use 32-bit offsets in @code{switch} tables.  The default is to use
14030 16-bit offsets.
14031
14032 @item -mbitops
14033 @opindex mbitops
14034 Enable the use of bit manipulation instructions on SH2A.
14035
14036 @item -mfmovd
14037 @opindex mfmovd
14038 Enable the use of the instruction @code{fmovd}.
14039
14040 @item -mhitachi
14041 @opindex mhitachi
14042 Comply with the calling conventions defined by Renesas.
14043
14044 @item -mrenesas
14045 @opindex mhitachi
14046 Comply with the calling conventions defined by Renesas.
14047
14048 @item -mno-renesas
14049 @opindex mhitachi
14050 Comply with the calling conventions defined for GCC before the Renesas
14051 conventions were available.  This option is the default for all
14052 targets of the SH toolchain except for @samp{sh-symbianelf}.
14053
14054 @item -mnomacsave
14055 @opindex mnomacsave
14056 Mark the @code{MAC} register as call-clobbered, even if
14057 @option{-mhitachi} is given.
14058
14059 @item -mieee
14060 @opindex mieee
14061 Increase IEEE-compliance of floating-point code.
14062 At the moment, this is equivalent to @option{-fno-finite-math-only}.
14063 When generating 16 bit SH opcodes, getting IEEE-conforming results for
14064 comparisons of NANs / infinities incurs extra overhead in every
14065 floating point comparison, therefore the default is set to
14066 @option{-ffinite-math-only}.
14067
14068 @item -minline-ic_invalidate
14069 @opindex minline-ic_invalidate
14070 Inline code to invalidate instruction cache entries after setting up
14071 nested function trampolines.
14072 This option has no effect if -musermode is in effect and the selected
14073 code generation option (e.g. -m4) does not allow the use of the icbi
14074 instruction.
14075 If the selected code generation option does not allow the use of the icbi
14076 instruction, and -musermode is not in effect, the inlined code will
14077 manipulate the instruction cache address array directly with an associative
14078 write.  This not only requires privileged mode, but it will also
14079 fail if the cache line had been mapped via the TLB and has become unmapped.
14080
14081 @item -misize
14082 @opindex misize
14083 Dump instruction size and location in the assembly code.
14084
14085 @item -mpadstruct
14086 @opindex mpadstruct
14087 This option is deprecated.  It pads structures to multiple of 4 bytes,
14088 which is incompatible with the SH ABI@.
14089
14090 @item -mspace
14091 @opindex mspace
14092 Optimize for space instead of speed.  Implied by @option{-Os}.
14093
14094 @item -mprefergot
14095 @opindex mprefergot
14096 When generating position-independent code, emit function calls using
14097 the Global Offset Table instead of the Procedure Linkage Table.
14098
14099 @item -musermode
14100 @opindex musermode
14101 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
14102 if the inlined code would not work in user mode.
14103 This is the default when the target is @code{sh-*-linux*}.
14104
14105 @item -multcost=@var{number}
14106 @opindex multcost=@var{number}
14107 Set the cost to assume for a multiply insn.
14108
14109 @item -mdiv=@var{strategy}
14110 @opindex mdiv=@var{strategy}
14111 Set the division strategy to use for SHmedia code.  @var{strategy} must be
14112 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
14113 inv:call2, inv:fp .
14114 "fp" performs the operation in floating point.  This has a very high latency,
14115 but needs only a few instructions, so it might be a good choice if
14116 your code has enough easily exploitable ILP to allow the compiler to
14117 schedule the floating point instructions together with other instructions.
14118 Division by zero causes a floating point exception.
14119 "inv" uses integer operations to calculate the inverse of the divisor,
14120 and then multiplies the dividend with the inverse.  This strategy allows
14121 cse and hoisting of the inverse calculation.  Division by zero calculates
14122 an unspecified result, but does not trap.
14123 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
14124 have been found, or if the entire operation has been hoisted to the same
14125 place, the last stages of the inverse calculation are intertwined with the
14126 final multiply to reduce the overall latency, at the expense of using a few
14127 more instructions, and thus offering fewer scheduling opportunities with
14128 other code.
14129 "call" calls a library function that usually implements the inv:minlat
14130 strategy.
14131 This gives high code density for m5-*media-nofpu compilations.
14132 "call2" uses a different entry point of the same library function, where it
14133 assumes that a pointer to a lookup table has already been set up, which
14134 exposes the pointer load to cse / code hoisting optimizations.
14135 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
14136 code generation, but if the code stays unoptimized, revert to the "call",
14137 "call2", or "fp" strategies, respectively.  Note that the
14138 potentially-trapping side effect of division by zero is carried by a
14139 separate instruction, so it is possible that all the integer instructions
14140 are hoisted out, but the marker for the side effect stays where it is.
14141 A recombination to fp operations or a call is not possible in that case.
14142 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
14143 that the inverse calculation was nor separated from the multiply, they speed
14144 up division where the dividend fits into 20 bits (plus sign where applicable),
14145 by inserting a test to skip a number of operations in this case; this test
14146 slows down the case of larger dividends.  inv20u assumes the case of a such
14147 a small dividend to be unlikely, and inv20l assumes it to be likely.
14148
14149 @item -mdivsi3_libfunc=@var{name}
14150 @opindex mdivsi3_libfunc=@var{name}
14151 Set the name of the library function used for 32 bit signed division to
14152 @var{name}.  This only affect the name used in the call and inv:call
14153 division strategies, and the compiler will still expect the same
14154 sets of input/output/clobbered registers as if this option was not present.
14155
14156 @item -mfixed-range=@var{register-range}
14157 @opindex mfixed-range
14158 Generate code treating the given register range as fixed registers.
14159 A fixed register is one that the register allocator can not use.  This is
14160 useful when compiling kernel code.  A register range is specified as
14161 two registers separated by a dash.  Multiple register ranges can be
14162 specified separated by a comma.
14163
14164 @item -madjust-unroll
14165 @opindex madjust-unroll
14166 Throttle unrolling to avoid thrashing target registers.
14167 This option only has an effect if the gcc code base supports the
14168 TARGET_ADJUST_UNROLL_MAX target hook.
14169
14170 @item -mindexed-addressing
14171 @opindex mindexed-addressing
14172 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
14173 This is only safe if the hardware and/or OS implement 32 bit wrap-around
14174 semantics for the indexed addressing mode.  The architecture allows the
14175 implementation of processors with 64 bit MMU, which the OS could use to
14176 get 32 bit addressing, but since no current hardware implementation supports
14177 this or any other way to make the indexed addressing mode safe to use in
14178 the 32 bit ABI, the default is -mno-indexed-addressing.
14179
14180 @item -mgettrcost=@var{number}
14181 @opindex mgettrcost=@var{number}
14182 Set the cost assumed for the gettr instruction to @var{number}.
14183 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
14184
14185 @item -mpt-fixed
14186 @opindex mpt-fixed
14187 Assume pt* instructions won't trap.  This will generally generate better
14188 scheduled code, but is unsafe on current hardware.  The current architecture
14189 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
14190 This has the unintentional effect of making it unsafe to schedule ptabs /
14191 ptrel before a branch, or hoist it out of a loop.  For example,
14192 __do_global_ctors, a part of libgcc that runs constructors at program
14193 startup, calls functions in a list which is delimited by @minus{}1.  With the
14194 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
14195 That means that all the constructors will be run a bit quicker, but when
14196 the loop comes to the end of the list, the program crashes because ptabs
14197 loads @minus{}1 into a target register.  Since this option is unsafe for any
14198 hardware implementing the current architecture specification, the default
14199 is -mno-pt-fixed.  Unless the user specifies a specific cost with
14200 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
14201 this deters register allocation using target registers for storing
14202 ordinary integers.
14203
14204 @item -minvalid-symbols
14205 @opindex minvalid-symbols
14206 Assume symbols might be invalid.  Ordinary function symbols generated by
14207 the compiler will always be valid to load with movi/shori/ptabs or
14208 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
14209 to generate symbols that will cause ptabs / ptrel to trap.
14210 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
14211 It will then prevent cross-basic-block cse, hoisting and most scheduling
14212 of symbol loads.  The default is @option{-mno-invalid-symbols}.
14213 @end table
14214
14215 @node SPARC Options
14216 @subsection SPARC Options
14217 @cindex SPARC options
14218
14219 These @samp{-m} options are supported on the SPARC:
14220
14221 @table @gcctabopt
14222 @item -mno-app-regs
14223 @itemx -mapp-regs
14224 @opindex mno-app-regs
14225 @opindex mapp-regs
14226 Specify @option{-mapp-regs} to generate output using the global registers
14227 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
14228 is the default.
14229
14230 To be fully SVR4 ABI compliant at the cost of some performance loss,
14231 specify @option{-mno-app-regs}.  You should compile libraries and system
14232 software with this option.
14233
14234 @item -mfpu
14235 @itemx -mhard-float
14236 @opindex mfpu
14237 @opindex mhard-float
14238 Generate output containing floating point instructions.  This is the
14239 default.
14240
14241 @item -mno-fpu
14242 @itemx -msoft-float
14243 @opindex mno-fpu
14244 @opindex msoft-float
14245 Generate output containing library calls for floating point.
14246 @strong{Warning:} the requisite libraries are not available for all SPARC
14247 targets.  Normally the facilities of the machine's usual C compiler are
14248 used, but this cannot be done directly in cross-compilation.  You must make
14249 your own arrangements to provide suitable library functions for
14250 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
14251 @samp{sparclite-*-*} do provide software floating point support.
14252
14253 @option{-msoft-float} changes the calling convention in the output file;
14254 therefore, it is only useful if you compile @emph{all} of a program with
14255 this option.  In particular, you need to compile @file{libgcc.a}, the
14256 library that comes with GCC, with @option{-msoft-float} in order for
14257 this to work.
14258
14259 @item -mhard-quad-float
14260 @opindex mhard-quad-float
14261 Generate output containing quad-word (long double) floating point
14262 instructions.
14263
14264 @item -msoft-quad-float
14265 @opindex msoft-quad-float
14266 Generate output containing library calls for quad-word (long double)
14267 floating point instructions.  The functions called are those specified
14268 in the SPARC ABI@.  This is the default.
14269
14270 As of this writing, there are no SPARC implementations that have hardware
14271 support for the quad-word floating point instructions.  They all invoke
14272 a trap handler for one of these instructions, and then the trap handler
14273 emulates the effect of the instruction.  Because of the trap handler overhead,
14274 this is much slower than calling the ABI library routines.  Thus the
14275 @option{-msoft-quad-float} option is the default.
14276
14277 @item -mno-unaligned-doubles
14278 @itemx -munaligned-doubles
14279 @opindex mno-unaligned-doubles
14280 @opindex munaligned-doubles
14281 Assume that doubles have 8 byte alignment.  This is the default.
14282
14283 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
14284 alignment only if they are contained in another type, or if they have an
14285 absolute address.  Otherwise, it assumes they have 4 byte alignment.
14286 Specifying this option avoids some rare compatibility problems with code
14287 generated by other compilers.  It is not the default because it results
14288 in a performance loss, especially for floating point code.
14289
14290 @item -mno-faster-structs
14291 @itemx -mfaster-structs
14292 @opindex mno-faster-structs
14293 @opindex mfaster-structs
14294 With @option{-mfaster-structs}, the compiler assumes that structures
14295 should have 8 byte alignment.  This enables the use of pairs of
14296 @code{ldd} and @code{std} instructions for copies in structure
14297 assignment, in place of twice as many @code{ld} and @code{st} pairs.
14298 However, the use of this changed alignment directly violates the SPARC
14299 ABI@.  Thus, it's intended only for use on targets where the developer
14300 acknowledges that their resulting code will not be directly in line with
14301 the rules of the ABI@.
14302
14303 @item -mimpure-text
14304 @opindex mimpure-text
14305 @option{-mimpure-text}, used in addition to @option{-shared}, tells
14306 the compiler to not pass @option{-z text} to the linker when linking a
14307 shared object.  Using this option, you can link position-dependent
14308 code into a shared object.
14309
14310 @option{-mimpure-text} suppresses the ``relocations remain against
14311 allocatable but non-writable sections'' linker error message.
14312 However, the necessary relocations will trigger copy-on-write, and the
14313 shared object is not actually shared across processes.  Instead of
14314 using @option{-mimpure-text}, you should compile all source code with
14315 @option{-fpic} or @option{-fPIC}.
14316
14317 This option is only available on SunOS and Solaris.
14318
14319 @item -mcpu=@var{cpu_type}
14320 @opindex mcpu
14321 Set the instruction set, register set, and instruction scheduling parameters
14322 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
14323 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
14324 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
14325 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
14326 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
14327
14328 Default instruction scheduling parameters are used for values that select
14329 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
14330 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
14331
14332 Here is a list of each supported architecture and their supported
14333 implementations.
14334
14335 @smallexample
14336     v7:             cypress
14337     v8:             supersparc, hypersparc
14338     sparclite:      f930, f934, sparclite86x
14339     sparclet:       tsc701
14340     v9:             ultrasparc, ultrasparc3, niagara, niagara2
14341 @end smallexample
14342
14343 By default (unless configured otherwise), GCC generates code for the V7
14344 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
14345 additionally optimizes it for the Cypress CY7C602 chip, as used in the
14346 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
14347 SPARCStation 1, 2, IPX etc.
14348
14349 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
14350 architecture.  The only difference from V7 code is that the compiler emits
14351 the integer multiply and integer divide instructions which exist in SPARC-V8
14352 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
14353 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
14354 2000 series.
14355
14356 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
14357 the SPARC architecture.  This adds the integer multiply, integer divide step
14358 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
14359 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
14360 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
14361 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
14362 MB86934 chip, which is the more recent SPARClite with FPU@.
14363
14364 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
14365 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
14366 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
14367 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
14368 optimizes it for the TEMIC SPARClet chip.
14369
14370 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
14371 architecture.  This adds 64-bit integer and floating-point move instructions,
14372 3 additional floating-point condition code registers and conditional move
14373 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
14374 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
14375 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
14376 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
14377 @option{-mcpu=niagara}, the compiler additionally optimizes it for
14378 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
14379 additionally optimizes it for Sun UltraSPARC T2 chips.
14380
14381 @item -mtune=@var{cpu_type}
14382 @opindex mtune
14383 Set the instruction scheduling parameters for machine type
14384 @var{cpu_type}, but do not set the instruction set or register set that the
14385 option @option{-mcpu=@var{cpu_type}} would.
14386
14387 The same values for @option{-mcpu=@var{cpu_type}} can be used for
14388 @option{-mtune=@var{cpu_type}}, but the only useful values are those
14389 that select a particular cpu implementation.  Those are @samp{cypress},
14390 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
14391 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
14392 @samp{ultrasparc3}, @samp{niagara}, and @samp{niagara2}.
14393
14394 @item -mv8plus
14395 @itemx -mno-v8plus
14396 @opindex mv8plus
14397 @opindex mno-v8plus
14398 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
14399 difference from the V8 ABI is that the global and out registers are
14400 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
14401 mode for all SPARC-V9 processors.
14402
14403 @item -mvis
14404 @itemx -mno-vis
14405 @opindex mvis
14406 @opindex mno-vis
14407 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
14408 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
14409 @end table
14410
14411 These @samp{-m} options are supported in addition to the above
14412 on SPARC-V9 processors in 64-bit environments:
14413
14414 @table @gcctabopt
14415 @item -mlittle-endian
14416 @opindex mlittle-endian
14417 Generate code for a processor running in little-endian mode.  It is only
14418 available for a few configurations and most notably not on Solaris and Linux.
14419
14420 @item -m32
14421 @itemx -m64
14422 @opindex m32
14423 @opindex m64
14424 Generate code for a 32-bit or 64-bit environment.
14425 The 32-bit environment sets int, long and pointer to 32 bits.
14426 The 64-bit environment sets int to 32 bits and long and pointer
14427 to 64 bits.
14428
14429 @item -mcmodel=medlow
14430 @opindex mcmodel=medlow
14431 Generate code for the Medium/Low code model: 64-bit addresses, programs
14432 must be linked in the low 32 bits of memory.  Programs can be statically
14433 or dynamically linked.
14434
14435 @item -mcmodel=medmid
14436 @opindex mcmodel=medmid
14437 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14438 must be linked in the low 44 bits of memory, the text and data segments must
14439 be less than 2GB in size and the data segment must be located within 2GB of
14440 the text segment.
14441
14442 @item -mcmodel=medany
14443 @opindex mcmodel=medany
14444 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14445 may be linked anywhere in memory, the text and data segments must be less
14446 than 2GB in size and the data segment must be located within 2GB of the
14447 text segment.
14448
14449 @item -mcmodel=embmedany
14450 @opindex mcmodel=embmedany
14451 Generate code for the Medium/Anywhere code model for embedded systems:
14452 64-bit addresses, the text and data segments must be less than 2GB in
14453 size, both starting anywhere in memory (determined at link time).  The
14454 global register %g4 points to the base of the data segment.  Programs
14455 are statically linked and PIC is not supported.
14456
14457 @item -mstack-bias
14458 @itemx -mno-stack-bias
14459 @opindex mstack-bias
14460 @opindex mno-stack-bias
14461 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14462 frame pointer if present, are offset by @minus{}2047 which must be added back
14463 when making stack frame references.  This is the default in 64-bit mode.
14464 Otherwise, assume no such offset is present.
14465 @end table
14466
14467 These switches are supported in addition to the above on Solaris:
14468
14469 @table @gcctabopt
14470 @item -threads
14471 @opindex threads
14472 Add support for multithreading using the Solaris threads library.  This
14473 option sets flags for both the preprocessor and linker.  This option does
14474 not affect the thread safety of object code produced by the compiler or
14475 that of libraries supplied with it.
14476
14477 @item -pthreads
14478 @opindex pthreads
14479 Add support for multithreading using the POSIX threads library.  This
14480 option sets flags for both the preprocessor and linker.  This option does
14481 not affect the thread safety of object code produced  by the compiler or
14482 that of libraries supplied with it.
14483
14484 @item -pthread
14485 @opindex pthread
14486 This is a synonym for @option{-pthreads}.
14487 @end table
14488
14489 @node SPU Options
14490 @subsection SPU Options
14491 @cindex SPU options
14492
14493 These @samp{-m} options are supported on the SPU:
14494
14495 @table @gcctabopt
14496 @item -mwarn-reloc
14497 @itemx -merror-reloc
14498 @opindex mwarn-reloc
14499 @opindex merror-reloc
14500
14501 The loader for SPU does not handle dynamic relocations.  By default, GCC
14502 will give an error when it generates code that requires a dynamic
14503 relocation.  @option{-mno-error-reloc} disables the error,
14504 @option{-mwarn-reloc} will generate a warning instead.
14505
14506 @item -msafe-dma
14507 @itemx -munsafe-dma
14508 @opindex msafe-dma
14509 @opindex munsafe-dma
14510
14511 Instructions which initiate or test completion of DMA must not be
14512 reordered with respect to loads and stores of the memory which is being
14513 accessed.  Users typically address this problem using the volatile
14514 keyword, but that can lead to inefficient code in places where the
14515 memory is known to not change.  Rather than mark the memory as volatile
14516 we treat the DMA instructions as potentially effecting all memory.  With
14517 @option{-munsafe-dma} users must use the volatile keyword to protect
14518 memory accesses.
14519
14520 @item -mbranch-hints
14521 @opindex mbranch-hints
14522
14523 By default, GCC will generate a branch hint instruction to avoid
14524 pipeline stalls for always taken or probably taken branches.  A hint
14525 will not be generated closer than 8 instructions away from its branch.
14526 There is little reason to disable them, except for debugging purposes,
14527 or to make an object a little bit smaller.
14528
14529 @item -msmall-mem
14530 @itemx -mlarge-mem
14531 @opindex msmall-mem
14532 @opindex mlarge-mem
14533
14534 By default, GCC generates code assuming that addresses are never larger
14535 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14536 a full 32 bit address.
14537
14538 @item -mstdmain
14539 @opindex mstdmain
14540
14541 By default, GCC links against startup code that assumes the SPU-style
14542 main function interface (which has an unconventional parameter list).
14543 With @option{-mstdmain}, GCC will link your program against startup
14544 code that assumes a C99-style interface to @code{main}, including a
14545 local copy of @code{argv} strings.
14546
14547 @item -mfixed-range=@var{register-range}
14548 @opindex mfixed-range
14549 Generate code treating the given register range as fixed registers.
14550 A fixed register is one that the register allocator can not use.  This is
14551 useful when compiling kernel code.  A register range is specified as
14552 two registers separated by a dash.  Multiple register ranges can be
14553 specified separated by a comma.
14554
14555 @end table
14556
14557 @node System V Options
14558 @subsection Options for System V
14559
14560 These additional options are available on System V Release 4 for
14561 compatibility with other compilers on those systems:
14562
14563 @table @gcctabopt
14564 @item -G
14565 @opindex G
14566 Create a shared object.
14567 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14568
14569 @item -Qy
14570 @opindex Qy
14571 Identify the versions of each tool used by the compiler, in a
14572 @code{.ident} assembler directive in the output.
14573
14574 @item -Qn
14575 @opindex Qn
14576 Refrain from adding @code{.ident} directives to the output file (this is
14577 the default).
14578
14579 @item -YP,@var{dirs}
14580 @opindex YP
14581 Search the directories @var{dirs}, and no others, for libraries
14582 specified with @option{-l}.
14583
14584 @item -Ym,@var{dir}
14585 @opindex Ym
14586 Look in the directory @var{dir} to find the M4 preprocessor.
14587 The assembler uses this option.
14588 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14589 @c the generic assembler that comes with Solaris takes just -Ym.
14590 @end table
14591
14592 @node V850 Options
14593 @subsection V850 Options
14594 @cindex V850 Options
14595
14596 These @samp{-m} options are defined for V850 implementations:
14597
14598 @table @gcctabopt
14599 @item -mlong-calls
14600 @itemx -mno-long-calls
14601 @opindex mlong-calls
14602 @opindex mno-long-calls
14603 Treat all calls as being far away (near).  If calls are assumed to be
14604 far away, the compiler will always load the functions address up into a
14605 register, and call indirect through the pointer.
14606
14607 @item -mno-ep
14608 @itemx -mep
14609 @opindex mno-ep
14610 @opindex mep
14611 Do not optimize (do optimize) basic blocks that use the same index
14612 pointer 4 or more times to copy pointer into the @code{ep} register, and
14613 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14614 option is on by default if you optimize.
14615
14616 @item -mno-prolog-function
14617 @itemx -mprolog-function
14618 @opindex mno-prolog-function
14619 @opindex mprolog-function
14620 Do not use (do use) external functions to save and restore registers
14621 at the prologue and epilogue of a function.  The external functions
14622 are slower, but use less code space if more than one function saves
14623 the same number of registers.  The @option{-mprolog-function} option
14624 is on by default if you optimize.
14625
14626 @item -mspace
14627 @opindex mspace
14628 Try to make the code as small as possible.  At present, this just turns
14629 on the @option{-mep} and @option{-mprolog-function} options.
14630
14631 @item -mtda=@var{n}
14632 @opindex mtda
14633 Put static or global variables whose size is @var{n} bytes or less into
14634 the tiny data area that register @code{ep} points to.  The tiny data
14635 area can hold up to 256 bytes in total (128 bytes for byte references).
14636
14637 @item -msda=@var{n}
14638 @opindex msda
14639 Put static or global variables whose size is @var{n} bytes or less into
14640 the small data area that register @code{gp} points to.  The small data
14641 area can hold up to 64 kilobytes.
14642
14643 @item -mzda=@var{n}
14644 @opindex mzda
14645 Put static or global variables whose size is @var{n} bytes or less into
14646 the first 32 kilobytes of memory.
14647
14648 @item -mv850
14649 @opindex mv850
14650 Specify that the target processor is the V850.
14651
14652 @item -mbig-switch
14653 @opindex mbig-switch
14654 Generate code suitable for big switch tables.  Use this option only if
14655 the assembler/linker complain about out of range branches within a switch
14656 table.
14657
14658 @item -mapp-regs
14659 @opindex mapp-regs
14660 This option will cause r2 and r5 to be used in the code generated by
14661 the compiler.  This setting is the default.
14662
14663 @item -mno-app-regs
14664 @opindex mno-app-regs
14665 This option will cause r2 and r5 to be treated as fixed registers.
14666
14667 @item -mv850e1
14668 @opindex mv850e1
14669 Specify that the target processor is the V850E1.  The preprocessor
14670 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14671 this option is used.
14672
14673 @item -mv850e
14674 @opindex mv850e
14675 Specify that the target processor is the V850E@.  The preprocessor
14676 constant @samp{__v850e__} will be defined if this option is used.
14677
14678 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14679 are defined then a default target processor will be chosen and the
14680 relevant @samp{__v850*__} preprocessor constant will be defined.
14681
14682 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14683 defined, regardless of which processor variant is the target.
14684
14685 @item -mdisable-callt
14686 @opindex mdisable-callt
14687 This option will suppress generation of the CALLT instruction for the
14688 v850e and v850e1 flavors of the v850 architecture.  The default is
14689 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14690
14691 @end table
14692
14693 @node VAX Options
14694 @subsection VAX Options
14695 @cindex VAX options
14696
14697 These @samp{-m} options are defined for the VAX:
14698
14699 @table @gcctabopt
14700 @item -munix
14701 @opindex munix
14702 Do not output certain jump instructions (@code{aobleq} and so on)
14703 that the Unix assembler for the VAX cannot handle across long
14704 ranges.
14705
14706 @item -mgnu
14707 @opindex mgnu
14708 Do output those jump instructions, on the assumption that you
14709 will assemble with the GNU assembler.
14710
14711 @item -mg
14712 @opindex mg
14713 Output code for g-format floating point numbers instead of d-format.
14714 @end table
14715
14716 @node VxWorks Options
14717 @subsection VxWorks Options
14718 @cindex VxWorks Options
14719
14720 The options in this section are defined for all VxWorks targets.
14721 Options specific to the target hardware are listed with the other
14722 options for that target.
14723
14724 @table @gcctabopt
14725 @item -mrtp
14726 @opindex mrtp
14727 GCC can generate code for both VxWorks kernels and real time processes
14728 (RTPs).  This option switches from the former to the latter.  It also
14729 defines the preprocessor macro @code{__RTP__}.
14730
14731 @item -non-static
14732 @opindex non-static
14733 Link an RTP executable against shared libraries rather than static
14734 libraries.  The options @option{-static} and @option{-shared} can
14735 also be used for RTPs (@pxref{Link Options}); @option{-static}
14736 is the default.
14737
14738 @item -Bstatic
14739 @itemx -Bdynamic
14740 @opindex Bstatic
14741 @opindex Bdynamic
14742 These options are passed down to the linker.  They are defined for
14743 compatibility with Diab.
14744
14745 @item -Xbind-lazy
14746 @opindex Xbind-lazy
14747 Enable lazy binding of function calls.  This option is equivalent to
14748 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14749
14750 @item -Xbind-now
14751 @opindex Xbind-now
14752 Disable lazy binding of function calls.  This option is the default and
14753 is defined for compatibility with Diab.
14754 @end table
14755
14756 @node x86-64 Options
14757 @subsection x86-64 Options
14758 @cindex x86-64 options
14759
14760 These are listed under @xref{i386 and x86-64 Options}.
14761
14762 @node Xstormy16 Options
14763 @subsection Xstormy16 Options
14764 @cindex Xstormy16 Options
14765
14766 These options are defined for Xstormy16:
14767
14768 @table @gcctabopt
14769 @item -msim
14770 @opindex msim
14771 Choose startup files and linker script suitable for the simulator.
14772 @end table
14773
14774 @node Xtensa Options
14775 @subsection Xtensa Options
14776 @cindex Xtensa Options
14777
14778 These options are supported for Xtensa targets:
14779
14780 @table @gcctabopt
14781 @item -mconst16
14782 @itemx -mno-const16
14783 @opindex mconst16
14784 @opindex mno-const16
14785 Enable or disable use of @code{CONST16} instructions for loading
14786 constant values.  The @code{CONST16} instruction is currently not a
14787 standard option from Tensilica.  When enabled, @code{CONST16}
14788 instructions are always used in place of the standard @code{L32R}
14789 instructions.  The use of @code{CONST16} is enabled by default only if
14790 the @code{L32R} instruction is not available.
14791
14792 @item -mfused-madd
14793 @itemx -mno-fused-madd
14794 @opindex mfused-madd
14795 @opindex mno-fused-madd
14796 Enable or disable use of fused multiply/add and multiply/subtract
14797 instructions in the floating-point option.  This has no effect if the
14798 floating-point option is not also enabled.  Disabling fused multiply/add
14799 and multiply/subtract instructions forces the compiler to use separate
14800 instructions for the multiply and add/subtract operations.  This may be
14801 desirable in some cases where strict IEEE 754-compliant results are
14802 required: the fused multiply add/subtract instructions do not round the
14803 intermediate result, thereby producing results with @emph{more} bits of
14804 precision than specified by the IEEE standard.  Disabling fused multiply
14805 add/subtract instructions also ensures that the program output is not
14806 sensitive to the compiler's ability to combine multiply and add/subtract
14807 operations.
14808
14809 @item -mserialize-volatile
14810 @itemx -mno-serialize-volatile
14811 @opindex mserialize-volatile
14812 @opindex mno-serialize-volatile
14813 When this option is enabled, GCC inserts @code{MEMW} instructions before
14814 @code{volatile} memory references to guarantee sequential consistency.
14815 The default is @option{-mserialize-volatile}.  Use
14816 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
14817
14818 @item -mtext-section-literals
14819 @itemx -mno-text-section-literals
14820 @opindex mtext-section-literals
14821 @opindex mno-text-section-literals
14822 Control the treatment of literal pools.  The default is
14823 @option{-mno-text-section-literals}, which places literals in a separate
14824 section in the output file.  This allows the literal pool to be placed
14825 in a data RAM/ROM, and it also allows the linker to combine literal
14826 pools from separate object files to remove redundant literals and
14827 improve code size.  With @option{-mtext-section-literals}, the literals
14828 are interspersed in the text section in order to keep them as close as
14829 possible to their references.  This may be necessary for large assembly
14830 files.
14831
14832 @item -mtarget-align
14833 @itemx -mno-target-align
14834 @opindex mtarget-align
14835 @opindex mno-target-align
14836 When this option is enabled, GCC instructs the assembler to
14837 automatically align instructions to reduce branch penalties at the
14838 expense of some code density.  The assembler attempts to widen density
14839 instructions to align branch targets and the instructions following call
14840 instructions.  If there are not enough preceding safe density
14841 instructions to align a target, no widening will be performed.  The
14842 default is @option{-mtarget-align}.  These options do not affect the
14843 treatment of auto-aligned instructions like @code{LOOP}, which the
14844 assembler will always align, either by widening density instructions or
14845 by inserting no-op instructions.
14846
14847 @item -mlongcalls
14848 @itemx -mno-longcalls
14849 @opindex mlongcalls
14850 @opindex mno-longcalls
14851 When this option is enabled, GCC instructs the assembler to translate
14852 direct calls to indirect calls unless it can determine that the target
14853 of a direct call is in the range allowed by the call instruction.  This
14854 translation typically occurs for calls to functions in other source
14855 files.  Specifically, the assembler translates a direct @code{CALL}
14856 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14857 The default is @option{-mno-longcalls}.  This option should be used in
14858 programs where the call target can potentially be out of range.  This
14859 option is implemented in the assembler, not the compiler, so the
14860 assembly code generated by GCC will still show direct call
14861 instructions---look at the disassembled object code to see the actual
14862 instructions.  Note that the assembler will use an indirect call for
14863 every cross-file call, not just those that really will be out of range.
14864 @end table
14865
14866 @node zSeries Options
14867 @subsection zSeries Options
14868 @cindex zSeries options
14869
14870 These are listed under @xref{S/390 and zSeries Options}.
14871
14872 @node Code Gen Options
14873 @section Options for Code Generation Conventions
14874 @cindex code generation conventions
14875 @cindex options, code generation
14876 @cindex run-time options
14877
14878 These machine-independent options control the interface conventions
14879 used in code generation.
14880
14881 Most of them have both positive and negative forms; the negative form
14882 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14883 one of the forms is listed---the one which is not the default.  You
14884 can figure out the other form by either removing @samp{no-} or adding
14885 it.
14886
14887 @table @gcctabopt
14888 @item -fbounds-check
14889 @opindex fbounds-check
14890 For front-ends that support it, generate additional code to check that
14891 indices used to access arrays are within the declared range.  This is
14892 currently only supported by the Java and Fortran front-ends, where
14893 this option defaults to true and false respectively.
14894
14895 @item -ftrapv
14896 @opindex ftrapv
14897 This option generates traps for signed overflow on addition, subtraction,
14898 multiplication operations.
14899
14900 @item -fwrapv
14901 @opindex fwrapv
14902 This option instructs the compiler to assume that signed arithmetic
14903 overflow of addition, subtraction and multiplication wraps around
14904 using twos-complement representation.  This flag enables some optimizations
14905 and disables others.  This option is enabled by default for the Java
14906 front-end, as required by the Java language specification.
14907
14908 @item -fexceptions
14909 @opindex fexceptions
14910 Enable exception handling.  Generates extra code needed to propagate
14911 exceptions.  For some targets, this implies GCC will generate frame
14912 unwind information for all functions, which can produce significant data
14913 size overhead, although it does not affect execution.  If you do not
14914 specify this option, GCC will enable it by default for languages like
14915 C++ which normally require exception handling, and disable it for
14916 languages like C that do not normally require it.  However, you may need
14917 to enable this option when compiling C code that needs to interoperate
14918 properly with exception handlers written in C++.  You may also wish to
14919 disable this option if you are compiling older C++ programs that don't
14920 use exception handling.
14921
14922 @item -fnon-call-exceptions
14923 @opindex fnon-call-exceptions
14924 Generate code that allows trapping instructions to throw exceptions.
14925 Note that this requires platform-specific runtime support that does
14926 not exist everywhere.  Moreover, it only allows @emph{trapping}
14927 instructions to throw exceptions, i.e.@: memory references or floating
14928 point instructions.  It does not allow exceptions to be thrown from
14929 arbitrary signal handlers such as @code{SIGALRM}.
14930
14931 @item -funwind-tables
14932 @opindex funwind-tables
14933 Similar to @option{-fexceptions}, except that it will just generate any needed
14934 static data, but will not affect the generated code in any other way.
14935 You will normally not enable this option; instead, a language processor
14936 that needs this handling would enable it on your behalf.
14937
14938 @item -fasynchronous-unwind-tables
14939 @opindex fasynchronous-unwind-tables
14940 Generate unwind table in dwarf2 format, if supported by target machine.  The
14941 table is exact at each instruction boundary, so it can be used for stack
14942 unwinding from asynchronous events (such as debugger or garbage collector).
14943
14944 @item -fpcc-struct-return
14945 @opindex fpcc-struct-return
14946 Return ``short'' @code{struct} and @code{union} values in memory like
14947 longer ones, rather than in registers.  This convention is less
14948 efficient, but it has the advantage of allowing intercallability between
14949 GCC-compiled files and files compiled with other compilers, particularly
14950 the Portable C Compiler (pcc).
14951
14952 The precise convention for returning structures in memory depends
14953 on the target configuration macros.
14954
14955 Short structures and unions are those whose size and alignment match
14956 that of some integer type.
14957
14958 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
14959 switch is not binary compatible with code compiled with the
14960 @option{-freg-struct-return} switch.
14961 Use it to conform to a non-default application binary interface.
14962
14963 @item -freg-struct-return
14964 @opindex freg-struct-return
14965 Return @code{struct} and @code{union} values in registers when possible.
14966 This is more efficient for small structures than
14967 @option{-fpcc-struct-return}.
14968
14969 If you specify neither @option{-fpcc-struct-return} nor
14970 @option{-freg-struct-return}, GCC defaults to whichever convention is
14971 standard for the target.  If there is no standard convention, GCC
14972 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
14973 the principal compiler.  In those cases, we can choose the standard, and
14974 we chose the more efficient register return alternative.
14975
14976 @strong{Warning:} code compiled with the @option{-freg-struct-return}
14977 switch is not binary compatible with code compiled with the
14978 @option{-fpcc-struct-return} switch.
14979 Use it to conform to a non-default application binary interface.
14980
14981 @item -fshort-enums
14982 @opindex fshort-enums
14983 Allocate to an @code{enum} type only as many bytes as it needs for the
14984 declared range of possible values.  Specifically, the @code{enum} type
14985 will be equivalent to the smallest integer type which has enough room.
14986
14987 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
14988 code that is not binary compatible with code generated without that switch.
14989 Use it to conform to a non-default application binary interface.
14990
14991 @item -fshort-double
14992 @opindex fshort-double
14993 Use the same size for @code{double} as for @code{float}.
14994
14995 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
14996 code that is not binary compatible with code generated without that switch.
14997 Use it to conform to a non-default application binary interface.
14998
14999 @item -fshort-wchar
15000 @opindex fshort-wchar
15001 Override the underlying type for @samp{wchar_t} to be @samp{short
15002 unsigned int} instead of the default for the target.  This option is
15003 useful for building programs to run under WINE@.
15004
15005 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
15006 code that is not binary compatible with code generated without that switch.
15007 Use it to conform to a non-default application binary interface.
15008
15009 @item -fno-common
15010 @opindex fno-common
15011 In C, allocate even uninitialized global variables in the data section of the
15012 object file, rather than generating them as common blocks.  This has the
15013 effect that if the same variable is declared (without @code{extern}) in
15014 two different compilations, you will get an error when you link them.
15015 The only reason this might be useful is if you wish to verify that the
15016 program will work on other systems which always work this way.
15017
15018 @item -fno-ident
15019 @opindex fno-ident
15020 Ignore the @samp{#ident} directive.
15021
15022 @item -finhibit-size-directive
15023 @opindex finhibit-size-directive
15024 Don't output a @code{.size} assembler directive, or anything else that
15025 would cause trouble if the function is split in the middle, and the
15026 two halves are placed at locations far apart in memory.  This option is
15027 used when compiling @file{crtstuff.c}; you should not need to use it
15028 for anything else.
15029
15030 @item -fverbose-asm
15031 @opindex fverbose-asm
15032 Put extra commentary information in the generated assembly code to
15033 make it more readable.  This option is generally only of use to those
15034 who actually need to read the generated assembly code (perhaps while
15035 debugging the compiler itself).
15036
15037 @option{-fno-verbose-asm}, the default, causes the
15038 extra information to be omitted and is useful when comparing two assembler
15039 files.
15040
15041 @item -frecord-gcc-switches
15042 @opindex frecord-gcc-switches
15043 This switch causes the command line that was used to invoke the
15044 compiler to be recorded into the object file that is being created.
15045 This switch is only implemented on some targets and the exact format
15046 of the recording is target and binary file format dependent, but it
15047 usually takes the form of a section containing ASCII text.  This
15048 switch is related to the @option{-fverbose-asm} switch, but that
15049 switch only records information in the assembler output file as
15050 comments, so it never reaches the object file.
15051
15052 @item -fpic
15053 @opindex fpic
15054 @cindex global offset table
15055 @cindex PIC
15056 Generate position-independent code (PIC) suitable for use in a shared
15057 library, if supported for the target machine.  Such code accesses all
15058 constant addresses through a global offset table (GOT)@.  The dynamic
15059 loader resolves the GOT entries when the program starts (the dynamic
15060 loader is not part of GCC; it is part of the operating system).  If
15061 the GOT size for the linked executable exceeds a machine-specific
15062 maximum size, you get an error message from the linker indicating that
15063 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
15064 instead.  (These maximums are 8k on the SPARC and 32k
15065 on the m68k and RS/6000.  The 386 has no such limit.)
15066
15067 Position-independent code requires special support, and therefore works
15068 only on certain machines.  For the 386, GCC supports PIC for System V
15069 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
15070 position-independent.
15071
15072 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
15073 are defined to 1.
15074
15075 @item -fPIC
15076 @opindex fPIC
15077 If supported for the target machine, emit position-independent code,
15078 suitable for dynamic linking and avoiding any limit on the size of the
15079 global offset table.  This option makes a difference on the m68k,
15080 PowerPC and SPARC@.
15081
15082 Position-independent code requires special support, and therefore works
15083 only on certain machines.
15084
15085 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
15086 are defined to 2.
15087
15088 @item -fpie
15089 @itemx -fPIE
15090 @opindex fpie
15091 @opindex fPIE
15092 These options are similar to @option{-fpic} and @option{-fPIC}, but
15093 generated position independent code can be only linked into executables.
15094 Usually these options are used when @option{-pie} GCC option will be
15095 used during linking.
15096
15097 @option{-fpie} and @option{-fPIE} both define the macros
15098 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
15099 for @option{-fpie} and 2 for @option{-fPIE}.
15100
15101 @item -fno-jump-tables
15102 @opindex fno-jump-tables
15103 Do not use jump tables for switch statements even where it would be
15104 more efficient than other code generation strategies.  This option is
15105 of use in conjunction with @option{-fpic} or @option{-fPIC} for
15106 building code which forms part of a dynamic linker and cannot
15107 reference the address of a jump table.  On some targets, jump tables
15108 do not require a GOT and this option is not needed.
15109
15110 @item -ffixed-@var{reg}
15111 @opindex ffixed
15112 Treat the register named @var{reg} as a fixed register; generated code
15113 should never refer to it (except perhaps as a stack pointer, frame
15114 pointer or in some other fixed role).
15115
15116 @var{reg} must be the name of a register.  The register names accepted
15117 are machine-specific and are defined in the @code{REGISTER_NAMES}
15118 macro in the machine description macro file.
15119
15120 This flag does not have a negative form, because it specifies a
15121 three-way choice.
15122
15123 @item -fcall-used-@var{reg}
15124 @opindex fcall-used
15125 Treat the register named @var{reg} as an allocable register that is
15126 clobbered by function calls.  It may be allocated for temporaries or
15127 variables that do not live across a call.  Functions compiled this way
15128 will not save and restore the register @var{reg}.
15129
15130 It is an error to used this flag with the frame pointer or stack pointer.
15131 Use of this flag for other registers that have fixed pervasive roles in
15132 the machine's execution model will produce disastrous results.
15133
15134 This flag does not have a negative form, because it specifies a
15135 three-way choice.
15136
15137 @item -fcall-saved-@var{reg}
15138 @opindex fcall-saved
15139 Treat the register named @var{reg} as an allocable register saved by
15140 functions.  It may be allocated even for temporaries or variables that
15141 live across a call.  Functions compiled this way will save and restore
15142 the register @var{reg} if they use it.
15143
15144 It is an error to used this flag with the frame pointer or stack pointer.
15145 Use of this flag for other registers that have fixed pervasive roles in
15146 the machine's execution model will produce disastrous results.
15147
15148 A different sort of disaster will result from the use of this flag for
15149 a register in which function values may be returned.
15150
15151 This flag does not have a negative form, because it specifies a
15152 three-way choice.
15153
15154 @item -fpack-struct[=@var{n}]
15155 @opindex fpack-struct
15156 Without a value specified, pack all structure members together without
15157 holes.  When a value is specified (which must be a small power of two), pack
15158 structure members according to this value, representing the maximum
15159 alignment (that is, objects with default alignment requirements larger than
15160 this will be output potentially unaligned at the next fitting location.
15161
15162 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
15163 code that is not binary compatible with code generated without that switch.
15164 Additionally, it makes the code suboptimal.
15165 Use it to conform to a non-default application binary interface.
15166
15167 @item -finstrument-functions
15168 @opindex finstrument-functions
15169 Generate instrumentation calls for entry and exit to functions.  Just
15170 after function entry and just before function exit, the following
15171 profiling functions will be called with the address of the current
15172 function and its call site.  (On some platforms,
15173 @code{__builtin_return_address} does not work beyond the current
15174 function, so the call site information may not be available to the
15175 profiling functions otherwise.)
15176
15177 @smallexample
15178 void __cyg_profile_func_enter (void *this_fn,
15179                                void *call_site);
15180 void __cyg_profile_func_exit  (void *this_fn,
15181                                void *call_site);
15182 @end smallexample
15183
15184 The first argument is the address of the start of the current function,
15185 which may be looked up exactly in the symbol table.
15186
15187 This instrumentation is also done for functions expanded inline in other
15188 functions.  The profiling calls will indicate where, conceptually, the
15189 inline function is entered and exited.  This means that addressable
15190 versions of such functions must be available.  If all your uses of a
15191 function are expanded inline, this may mean an additional expansion of
15192 code size.  If you use @samp{extern inline} in your C code, an
15193 addressable version of such functions must be provided.  (This is
15194 normally the case anyways, but if you get lucky and the optimizer always
15195 expands the functions inline, you might have gotten away without
15196 providing static copies.)
15197
15198 A function may be given the attribute @code{no_instrument_function}, in
15199 which case this instrumentation will not be done.  This can be used, for
15200 example, for the profiling functions listed above, high-priority
15201 interrupt routines, and any functions from which the profiling functions
15202 cannot safely be called (perhaps signal handlers, if the profiling
15203 routines generate output or allocate memory).
15204
15205 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
15206 @opindex finstrument-functions-exclude-file-list
15207
15208 Set the list of functions that are excluded from instrumentation (see
15209 the description of @code{-finstrument-functions}).  If the file that
15210 contains a function definition matches with one of @var{file}, then
15211 that function is not instrumented.  The match is done on substrings:
15212 if the @var{file} parameter is a substring of the file name, it is
15213 considered to be a match.
15214
15215 For example,
15216 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
15217 will exclude any inline function defined in files whose pathnames
15218 contain @code{/bits/stl} or @code{include/sys}.
15219
15220 If, for some reason, you want to include letter @code{','} in one of
15221 @var{sym}, write @code{'\,'}. For example,
15222 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
15223 (note the single quote surrounding the option).
15224
15225 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
15226 @opindex finstrument-functions-exclude-function-list
15227
15228 This is similar to @code{-finstrument-functions-exclude-file-list},
15229 but this option sets the list of function names to be excluded from
15230 instrumentation.  The function name to be matched is its user-visible
15231 name, such as @code{vector<int> blah(const vector<int> &)}, not the
15232 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
15233 match is done on substrings: if the @var{sym} parameter is a substring
15234 of the function name, it is considered to be a match.
15235
15236 @item -fstack-check
15237 @opindex fstack-check
15238 Generate code to verify that you do not go beyond the boundary of the
15239 stack.  You should specify this flag if you are running in an
15240 environment with multiple threads, but only rarely need to specify it in
15241 a single-threaded environment since stack overflow is automatically
15242 detected on nearly all systems if there is only one stack.
15243
15244 Note that this switch does not actually cause checking to be done; the
15245 operating system or the language runtime must do that.  The switch causes
15246 generation of code to ensure that they see the stack being extended.
15247
15248 You can additionally specify a string parameter: @code{no} means no
15249 checking, @code{generic} means force the use of old-style checking,
15250 @code{specific} means use the best checking method and is equivalent
15251 to bare @option{-fstack-check}.
15252
15253 Old-style checking is a generic mechanism that requires no specific
15254 target support in the compiler but comes with the following drawbacks:
15255
15256 @enumerate
15257 @item
15258 Modified allocation strategy for large objects: they will always be
15259 allocated dynamically if their size exceeds a fixed threshold.
15260
15261 @item
15262 Fixed limit on the size of the static frame of functions: when it is
15263 topped by a particular function, stack checking is not reliable and
15264 a warning is issued by the compiler.
15265
15266 @item
15267 Inefficiency: because of both the modified allocation strategy and the
15268 generic implementation, the performances of the code are hampered.
15269 @end enumerate
15270
15271 Note that old-style stack checking is also the fallback method for
15272 @code{specific} if no target support has been added in the compiler.
15273
15274 @item -fstack-limit-register=@var{reg}
15275 @itemx -fstack-limit-symbol=@var{sym}
15276 @itemx -fno-stack-limit
15277 @opindex fstack-limit-register
15278 @opindex fstack-limit-symbol
15279 @opindex fno-stack-limit
15280 Generate code to ensure that the stack does not grow beyond a certain value,
15281 either the value of a register or the address of a symbol.  If the stack
15282 would grow beyond the value, a signal is raised.  For most targets,
15283 the signal is raised before the stack overruns the boundary, so
15284 it is possible to catch the signal without taking special precautions.
15285
15286 For instance, if the stack starts at absolute address @samp{0x80000000}
15287 and grows downwards, you can use the flags
15288 @option{-fstack-limit-symbol=__stack_limit} and
15289 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
15290 of 128KB@.  Note that this may only work with the GNU linker.
15291
15292 @cindex aliasing of parameters
15293 @cindex parameters, aliased
15294 @item -fargument-alias
15295 @itemx -fargument-noalias
15296 @itemx -fargument-noalias-global
15297 @itemx -fargument-noalias-anything
15298 @opindex fargument-alias
15299 @opindex fargument-noalias
15300 @opindex fargument-noalias-global
15301 @opindex fargument-noalias-anything
15302 Specify the possible relationships among parameters and between
15303 parameters and global data.
15304
15305 @option{-fargument-alias} specifies that arguments (parameters) may
15306 alias each other and may alias global storage.@*
15307 @option{-fargument-noalias} specifies that arguments do not alias
15308 each other, but may alias global storage.@*
15309 @option{-fargument-noalias-global} specifies that arguments do not
15310 alias each other and do not alias global storage.
15311 @option{-fargument-noalias-anything} specifies that arguments do not
15312 alias any other storage.
15313
15314 Each language will automatically use whatever option is required by
15315 the language standard.  You should not need to use these options yourself.
15316
15317 @item -fleading-underscore
15318 @opindex fleading-underscore
15319 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15320 change the way C symbols are represented in the object file.  One use
15321 is to help link with legacy assembly code.
15322
15323 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15324 generate code that is not binary compatible with code generated without that
15325 switch.  Use it to conform to a non-default application binary interface.
15326 Not all targets provide complete support for this switch.
15327
15328 @item -ftls-model=@var{model}
15329 @opindex ftls-model
15330 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15331 The @var{model} argument should be one of @code{global-dynamic},
15332 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15333
15334 The default without @option{-fpic} is @code{initial-exec}; with
15335 @option{-fpic} the default is @code{global-dynamic}.
15336
15337 @item -fvisibility=@var{default|internal|hidden|protected}
15338 @opindex fvisibility
15339 Set the default ELF image symbol visibility to the specified option---all
15340 symbols will be marked with this unless overridden within the code.
15341 Using this feature can very substantially improve linking and
15342 load times of shared object libraries, produce more optimized
15343 code, provide near-perfect API export and prevent symbol clashes.
15344 It is @strong{strongly} recommended that you use this in any shared objects
15345 you distribute.
15346
15347 Despite the nomenclature, @code{default} always means public ie;
15348 available to be linked against from outside the shared object.
15349 @code{protected} and @code{internal} are pretty useless in real-world
15350 usage so the only other commonly used option will be @code{hidden}.
15351 The default if @option{-fvisibility} isn't specified is
15352 @code{default}, i.e., make every
15353 symbol public---this causes the same behavior as previous versions of
15354 GCC@.
15355
15356 A good explanation of the benefits offered by ensuring ELF
15357 symbols have the correct visibility is given by ``How To Write
15358 Shared Libraries'' by Ulrich Drepper (which can be found at
15359 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15360 solution made possible by this option to marking things hidden when
15361 the default is public is to make the default hidden and mark things
15362 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15363 and @code{__attribute__ ((visibility("default")))} instead of
15364 @code{__declspec(dllexport)} you get almost identical semantics with
15365 identical syntax.  This is a great boon to those working with
15366 cross-platform projects.
15367
15368 For those adding visibility support to existing code, you may find
15369 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15370 the declarations you wish to set visibility for with (for example)
15371 @samp{#pragma GCC visibility push(hidden)} and
15372 @samp{#pragma GCC visibility pop}.
15373 Bear in mind that symbol visibility should be viewed @strong{as
15374 part of the API interface contract} and thus all new code should
15375 always specify visibility when it is not the default ie; declarations
15376 only for use within the local DSO should @strong{always} be marked explicitly
15377 as hidden as so to avoid PLT indirection overheads---making this
15378 abundantly clear also aids readability and self-documentation of the code.
15379 Note that due to ISO C++ specification requirements, operator new and
15380 operator delete must always be of default visibility.
15381
15382 Be aware that headers from outside your project, in particular system
15383 headers and headers from any other library you use, may not be
15384 expecting to be compiled with visibility other than the default.  You
15385 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15386 before including any such headers.
15387
15388 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15389 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15390 no modifications.  However, this means that calls to @samp{extern}
15391 functions with no explicit visibility will use the PLT, so it is more
15392 effective to use @samp{__attribute ((visibility))} and/or
15393 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15394 declarations should be treated as hidden.
15395
15396 Note that @samp{-fvisibility} does affect C++ vague linkage
15397 entities. This means that, for instance, an exception class that will
15398 be thrown between DSOs must be explicitly marked with default
15399 visibility so that the @samp{type_info} nodes will be unified between
15400 the DSOs.
15401
15402 An overview of these techniques, their benefits and how to use them
15403 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15404
15405 @end table
15406
15407 @c man end
15408
15409 @node Environment Variables
15410 @section Environment Variables Affecting GCC
15411 @cindex environment variables
15412
15413 @c man begin ENVIRONMENT
15414 This section describes several environment variables that affect how GCC
15415 operates.  Some of them work by specifying directories or prefixes to use
15416 when searching for various kinds of files.  Some are used to specify other
15417 aspects of the compilation environment.
15418
15419 Note that you can also specify places to search using options such as
15420 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15421 take precedence over places specified using environment variables, which
15422 in turn take precedence over those specified by the configuration of GCC@.
15423 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15424 GNU Compiler Collection (GCC) Internals}.
15425
15426 @table @env
15427 @item LANG
15428 @itemx LC_CTYPE
15429 @c @itemx LC_COLLATE
15430 @itemx LC_MESSAGES
15431 @c @itemx LC_MONETARY
15432 @c @itemx LC_NUMERIC
15433 @c @itemx LC_TIME
15434 @itemx LC_ALL
15435 @findex LANG
15436 @findex LC_CTYPE
15437 @c @findex LC_COLLATE
15438 @findex LC_MESSAGES
15439 @c @findex LC_MONETARY
15440 @c @findex LC_NUMERIC
15441 @c @findex LC_TIME
15442 @findex LC_ALL
15443 @cindex locale
15444 These environment variables control the way that GCC uses
15445 localization information that allow GCC to work with different
15446 national conventions.  GCC inspects the locale categories
15447 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15448 so.  These locale categories can be set to any value supported by your
15449 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15450 Kingdom encoded in UTF-8.
15451
15452 The @env{LC_CTYPE} environment variable specifies character
15453 classification.  GCC uses it to determine the character boundaries in
15454 a string; this is needed for some multibyte encodings that contain quote
15455 and escape characters that would otherwise be interpreted as a string
15456 end or escape.
15457
15458 The @env{LC_MESSAGES} environment variable specifies the language to
15459 use in diagnostic messages.
15460
15461 If the @env{LC_ALL} environment variable is set, it overrides the value
15462 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15463 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15464 environment variable.  If none of these variables are set, GCC
15465 defaults to traditional C English behavior.
15466
15467 @item TMPDIR
15468 @findex TMPDIR
15469 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15470 files.  GCC uses temporary files to hold the output of one stage of
15471 compilation which is to be used as input to the next stage: for example,
15472 the output of the preprocessor, which is the input to the compiler
15473 proper.
15474
15475 @item GCC_EXEC_PREFIX
15476 @findex GCC_EXEC_PREFIX
15477 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15478 names of the subprograms executed by the compiler.  No slash is added
15479 when this prefix is combined with the name of a subprogram, but you can
15480 specify a prefix that ends with a slash if you wish.
15481
15482 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15483 an appropriate prefix to use based on the pathname it was invoked with.
15484
15485 If GCC cannot find the subprogram using the specified prefix, it
15486 tries looking in the usual places for the subprogram.
15487
15488 The default value of @env{GCC_EXEC_PREFIX} is
15489 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15490 the installed compiler. In many cases @var{prefix} is the value
15491 of @code{prefix} when you ran the @file{configure} script.
15492
15493 Other prefixes specified with @option{-B} take precedence over this prefix.
15494
15495 This prefix is also used for finding files such as @file{crt0.o} that are
15496 used for linking.
15497
15498 In addition, the prefix is used in an unusual way in finding the
15499 directories to search for header files.  For each of the standard
15500 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15501 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15502 replacing that beginning with the specified prefix to produce an
15503 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15504 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15505 These alternate directories are searched first; the standard directories
15506 come next. If a standard directory begins with the configured
15507 @var{prefix} then the value of @var{prefix} is replaced by
15508 @env{GCC_EXEC_PREFIX} when looking for header files.
15509
15510 @item COMPILER_PATH
15511 @findex COMPILER_PATH
15512 The value of @env{COMPILER_PATH} is a colon-separated list of
15513 directories, much like @env{PATH}.  GCC tries the directories thus
15514 specified when searching for subprograms, if it can't find the
15515 subprograms using @env{GCC_EXEC_PREFIX}.
15516
15517 @item LIBRARY_PATH
15518 @findex LIBRARY_PATH
15519 The value of @env{LIBRARY_PATH} is a colon-separated list of
15520 directories, much like @env{PATH}.  When configured as a native compiler,
15521 GCC tries the directories thus specified when searching for special
15522 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15523 using GCC also uses these directories when searching for ordinary
15524 libraries for the @option{-l} option (but directories specified with
15525 @option{-L} come first).
15526
15527 @item LANG
15528 @findex LANG
15529 @cindex locale definition
15530 This variable is used to pass locale information to the compiler.  One way in
15531 which this information is used is to determine the character set to be used
15532 when character literals, string literals and comments are parsed in C and C++.
15533 When the compiler is configured to allow multibyte characters,
15534 the following values for @env{LANG} are recognized:
15535
15536 @table @samp
15537 @item C-JIS
15538 Recognize JIS characters.
15539 @item C-SJIS
15540 Recognize SJIS characters.
15541 @item C-EUCJP
15542 Recognize EUCJP characters.
15543 @end table
15544
15545 If @env{LANG} is not defined, or if it has some other value, then the
15546 compiler will use mblen and mbtowc as defined by the default locale to
15547 recognize and translate multibyte characters.
15548 @end table
15549
15550 @noindent
15551 Some additional environments variables affect the behavior of the
15552 preprocessor.
15553
15554 @include cppenv.texi
15555
15556 @c man end
15557
15558 @node Precompiled Headers
15559 @section Using Precompiled Headers
15560 @cindex precompiled headers
15561 @cindex speed of compilation
15562
15563 Often large projects have many header files that are included in every
15564 source file.  The time the compiler takes to process these header files
15565 over and over again can account for nearly all of the time required to
15566 build the project.  To make builds faster, GCC allows users to
15567 `precompile' a header file; then, if builds can use the precompiled
15568 header file they will be much faster.
15569
15570 To create a precompiled header file, simply compile it as you would any
15571 other file, if necessary using the @option{-x} option to make the driver
15572 treat it as a C or C++ header file.  You will probably want to use a
15573 tool like @command{make} to keep the precompiled header up-to-date when
15574 the headers it contains change.
15575
15576 A precompiled header file will be searched for when @code{#include} is
15577 seen in the compilation.  As it searches for the included file
15578 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15579 compiler looks for a precompiled header in each directory just before it
15580 looks for the include file in that directory.  The name searched for is
15581 the name specified in the @code{#include} with @samp{.gch} appended.  If
15582 the precompiled header file can't be used, it is ignored.
15583
15584 For instance, if you have @code{#include "all.h"}, and you have
15585 @file{all.h.gch} in the same directory as @file{all.h}, then the
15586 precompiled header file will be used if possible, and the original
15587 header will be used otherwise.
15588
15589 Alternatively, you might decide to put the precompiled header file in a
15590 directory and use @option{-I} to ensure that directory is searched
15591 before (or instead of) the directory containing the original header.
15592 Then, if you want to check that the precompiled header file is always
15593 used, you can put a file of the same name as the original header in this
15594 directory containing an @code{#error} command.
15595
15596 This also works with @option{-include}.  So yet another way to use
15597 precompiled headers, good for projects not designed with precompiled
15598 header files in mind, is to simply take most of the header files used by
15599 a project, include them from another header file, precompile that header
15600 file, and @option{-include} the precompiled header.  If the header files
15601 have guards against multiple inclusion, they will be skipped because
15602 they've already been included (in the precompiled header).
15603
15604 If you need to precompile the same header file for different
15605 languages, targets, or compiler options, you can instead make a
15606 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15607 header in the directory, perhaps using @option{-o}.  It doesn't matter
15608 what you call the files in the directory, every precompiled header in
15609 the directory will be considered.  The first precompiled header
15610 encountered in the directory that is valid for this compilation will
15611 be used; they're searched in no particular order.
15612
15613 There are many other possibilities, limited only by your imagination,
15614 good sense, and the constraints of your build system.
15615
15616 A precompiled header file can be used only when these conditions apply:
15617
15618 @itemize
15619 @item
15620 Only one precompiled header can be used in a particular compilation.
15621
15622 @item
15623 A precompiled header can't be used once the first C token is seen.  You
15624 can have preprocessor directives before a precompiled header; you can
15625 even include a precompiled header from inside another header, so long as
15626 there are no C tokens before the @code{#include}.
15627
15628 @item
15629 The precompiled header file must be produced for the same language as
15630 the current compilation.  You can't use a C precompiled header for a C++
15631 compilation.
15632
15633 @item
15634 The precompiled header file must have been produced by the same compiler
15635 binary as the current compilation is using.
15636
15637 @item
15638 Any macros defined before the precompiled header is included must
15639 either be defined in the same way as when the precompiled header was
15640 generated, or must not affect the precompiled header, which usually
15641 means that they don't appear in the precompiled header at all.
15642
15643 The @option{-D} option is one way to define a macro before a
15644 precompiled header is included; using a @code{#define} can also do it.
15645 There are also some options that define macros implicitly, like
15646 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15647 defined this way.
15648
15649 @item If debugging information is output when using the precompiled
15650 header, using @option{-g} or similar, the same kind of debugging information
15651 must have been output when building the precompiled header.  However,
15652 a precompiled header built using @option{-g} can be used in a compilation
15653 when no debugging information is being output.
15654
15655 @item The same @option{-m} options must generally be used when building
15656 and using the precompiled header.  @xref{Submodel Options},
15657 for any cases where this rule is relaxed.
15658
15659 @item Each of the following options must be the same when building and using
15660 the precompiled header:
15661
15662 @gccoptlist{-fexceptions}
15663
15664 @item
15665 Some other command-line options starting with @option{-f},
15666 @option{-p}, or @option{-O} must be defined in the same way as when
15667 the precompiled header was generated.  At present, it's not clear
15668 which options are safe to change and which are not; the safest choice
15669 is to use exactly the same options when generating and using the
15670 precompiled header.  The following are known to be safe:
15671
15672 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15673 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15674 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15675 -pedantic-errors}
15676
15677 @end itemize
15678
15679 For all of these except the last, the compiler will automatically
15680 ignore the precompiled header if the conditions aren't met.  If you
15681 find an option combination that doesn't work and doesn't cause the
15682 precompiled header to be ignored, please consider filing a bug report,
15683 see @ref{Bugs}.
15684
15685 If you do use differing options when generating and using the
15686 precompiled header, the actual behavior will be a mixture of the
15687 behavior for the options.  For instance, if you use @option{-g} to
15688 generate the precompiled header but not when using it, you may or may
15689 not get debugging information for routines in the precompiled header.
15690
15691 @node Running Protoize
15692 @section Running Protoize
15693
15694 The program @code{protoize} is an optional part of GCC@.  You can use
15695 it to add prototypes to a program, thus converting the program to ISO
15696 C in one respect.  The companion program @code{unprotoize} does the
15697 reverse: it removes argument types from any prototypes that are found.
15698
15699 When you run these programs, you must specify a set of source files as
15700 command line arguments.  The conversion programs start out by compiling
15701 these files to see what functions they define.  The information gathered
15702 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15703
15704 After scanning comes actual conversion.  The specified files are all
15705 eligible to be converted; any files they include (whether sources or
15706 just headers) are eligible as well.
15707
15708 But not all the eligible files are converted.  By default,
15709 @code{protoize} and @code{unprotoize} convert only source and header
15710 files in the current directory.  You can specify additional directories
15711 whose files should be converted with the @option{-d @var{directory}}
15712 option.  You can also specify particular files to exclude with the
15713 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15714 directory name matches one of the specified directory names, and its
15715 name within the directory has not been excluded.
15716
15717 Basic conversion with @code{protoize} consists of rewriting most
15718 function definitions and function declarations to specify the types of
15719 the arguments.  The only ones not rewritten are those for varargs
15720 functions.
15721
15722 @code{protoize} optionally inserts prototype declarations at the
15723 beginning of the source file, to make them available for any calls that
15724 precede the function's definition.  Or it can insert prototype
15725 declarations with block scope in the blocks where undeclared functions
15726 are called.
15727
15728 Basic conversion with @code{unprotoize} consists of rewriting most
15729 function declarations to remove any argument types, and rewriting
15730 function definitions to the old-style pre-ISO form.
15731
15732 Both conversion programs print a warning for any function declaration or
15733 definition that they can't convert.  You can suppress these warnings
15734 with @option{-q}.
15735
15736 The output from @code{protoize} or @code{unprotoize} replaces the
15737 original source file.  The original file is renamed to a name ending
15738 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15739 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15740 for DOS) file already exists, then the source file is simply discarded.
15741
15742 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15743 scan the program and collect information about the functions it uses.
15744 So neither of these programs will work until GCC is installed.
15745
15746 Here is a table of the options you can use with @code{protoize} and
15747 @code{unprotoize}.  Each option works with both programs unless
15748 otherwise stated.
15749
15750 @table @code
15751 @item -B @var{directory}
15752 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15753 usual directory (normally @file{/usr/local/lib}).  This file contains
15754 prototype information about standard system functions.  This option
15755 applies only to @code{protoize}.
15756
15757 @item -c @var{compilation-options}
15758 Use @var{compilation-options} as the options when running @command{gcc} to
15759 produce the @samp{.X} files.  The special option @option{-aux-info} is
15760 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15761
15762 Note that the compilation options must be given as a single argument to
15763 @code{protoize} or @code{unprotoize}.  If you want to specify several
15764 @command{gcc} options, you must quote the entire set of compilation options
15765 to make them a single word in the shell.
15766
15767 There are certain @command{gcc} arguments that you cannot use, because they
15768 would produce the wrong kind of output.  These include @option{-g},
15769 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15770 the @var{compilation-options}, they are ignored.
15771
15772 @item -C
15773 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15774 systems) instead of @samp{.c}.  This is convenient if you are converting
15775 a C program to C++.  This option applies only to @code{protoize}.
15776
15777 @item -g
15778 Add explicit global declarations.  This means inserting explicit
15779 declarations at the beginning of each source file for each function
15780 that is called in the file and was not declared.  These declarations
15781 precede the first function definition that contains a call to an
15782 undeclared function.  This option applies only to @code{protoize}.
15783
15784 @item -i @var{string}
15785 Indent old-style parameter declarations with the string @var{string}.
15786 This option applies only to @code{protoize}.
15787
15788 @code{unprotoize} converts prototyped function definitions to old-style
15789 function definitions, where the arguments are declared between the
15790 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15791 uses five spaces as the indentation.  If you want to indent with just
15792 one space instead, use @option{-i " "}.
15793
15794 @item -k
15795 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15796 is finished.
15797
15798 @item -l
15799 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15800 a prototype declaration for each function in each block which calls the
15801 function without any declaration.  This option applies only to
15802 @code{protoize}.
15803
15804 @item -n
15805 Make no real changes.  This mode just prints information about the conversions
15806 that would have been done without @option{-n}.
15807
15808 @item -N
15809 Make no @samp{.save} files.  The original files are simply deleted.
15810 Use this option with caution.
15811
15812 @item -p @var{program}
15813 Use the program @var{program} as the compiler.  Normally, the name
15814 @file{gcc} is used.
15815
15816 @item -q
15817 Work quietly.  Most warnings are suppressed.
15818
15819 @item -v
15820 Print the version number, just like @option{-v} for @command{gcc}.
15821 @end table
15822
15823 If you need special compiler options to compile one of your program's
15824 source files, then you should generate that file's @samp{.X} file
15825 specially, by running @command{gcc} on that source file with the
15826 appropriate options and the option @option{-aux-info}.  Then run
15827 @code{protoize} on the entire set of files.  @code{protoize} will use
15828 the existing @samp{.X} file because it is newer than the source file.
15829 For example:
15830
15831 @smallexample
15832 gcc -Dfoo=bar file1.c -aux-info file1.X
15833 protoize *.c
15834 @end smallexample
15835
15836 @noindent
15837 You need to include the special files along with the rest in the
15838 @code{protoize} command, even though their @samp{.X} files already
15839 exist, because otherwise they won't get converted.
15840
15841 @xref{Protoize Caveats}, for more information on how to use
15842 @code{protoize} successfully.