re PR fortran/26682 (gfortran fails with -fwhole-program optimization)
[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
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,
15 2007 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 @@@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++  -Wno-deprecated  -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-declarations @gol
234 -Wdisabled-optimization  -Wno-div-by-zero  @gol
235 -Wempty-body  -Wno-endif-labels @gol
236 -Werror  -Werror=* @gol
237 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
238 -Wno-format-extra-args -Wformat-nonliteral @gol
239 -Wformat-security  -Wformat-y2k @gol
240 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
241 -Wimport  -Wno-import  -Winit-self  -Winline @gol
242 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
243 -Winvalid-pch -Wlarger-than-@var{len}  -Wunsafe-loop-optimizations @gol
244 -Wlogical-op -Wlong-long @gol
245 -Wmain  -Wmissing-braces  -Wmissing-field-initializers @gol
246 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
247 -Wmissing-noreturn @gol
248 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
249 -Woverlength-strings  -Wpacked  -Wpadded @gol
250 -Wparentheses  -Wpointer-arith  -Wno-pointer-to-int-cast @gol
251 -Wredundant-decls @gol
252 -Wreturn-type  -Wsequence-point  -Wshadow @gol
253 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
254 -Wstrict-aliasing -Wstrict-aliasing=n @gol
255 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
256 -Wswitch  -Wswitch-default  -Wswitch-enum @gol
257 -Wsystem-headers  -Wtrigraphs  -Wtype-limits  -Wundef  -Wuninitialized @gol
258 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
259 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
260 -Wunused-value  -Wunused-variable @gol
261 -Wvariadic-macros -Wvla @gol
262 -Wvolatile-register-var  -Wwrite-strings}
263
264 @item C-only Warning Options
265 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
266 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
267 -Wold-style-declaration  -Wold-style-definition @gol
268 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
269 -Wdeclaration-after-statement -Wpointer-sign}
270
271 @item Debugging Options
272 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
273 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
274 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
275 -fdump-noaddr -fdump-unnumbered  -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
276 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
277 -fdump-ipa-all -fdump-ipa-cgraph @gol
278 -fdump-tree-all @gol
279 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
280 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
281 -fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
282 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
283 -fdump-tree-ch @gol
284 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
285 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
286 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
287 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
288 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-nrv -fdump-tree-vect @gol
293 -fdump-tree-sink @gol
294 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
295 -fdump-tree-salias @gol
296 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
298 -ftree-vectorizer-verbose=@var{n} @gol
299 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
300 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
301 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
302 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
303 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
304 -ftest-coverage  -ftime-report -fvar-tracking @gol
305 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
306 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
307 -fdebug-prefix-map=@var{old}=@var{new} @gol
308 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
309 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
310 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
311 -print-multi-directory  -print-multi-lib @gol
312 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
313 -print-sysroot-headers-suffix @gol
314 -save-temps  -time}
315
316 @item Optimization Options
317 @xref{Optimize Options,,Options that Control Optimization}.
318 @gccoptlist{-falign-functions=@var{n}  -falign-jumps=@var{n} @gol
319 -falign-labels=@var{n}  -falign-loops=@var{n}  @gol
320 -fbounds-check -fmudflap -fmudflapth -fmudflapir @gol
321 -fbranch-probabilities -fprofile-values -fvpt -fbranch-target-load-optimize @gol
322 -fbranch-target-load-optimize2 -fbtr-bb-exclusive @gol
323 -fcaller-saves  -fcprop-registers  -fcse-follow-jumps @gol
324 -fcse-skip-blocks  -fcx-limited-range  -fdata-sections @gol
325 -fdelayed-branch  -fdelete-null-pointer-checks -fearly-inlining @gol
326 -fexpensive-optimizations  -ffast-math  -ffloat-store @gol
327 -fforce-addr  -fforward-propagate  -ffunction-sections @gol
328 -fgcse  -fgcse-lm  -fgcse-sm  -fgcse-las  -fgcse-after-reload @gol
329 -fcrossjumping  -fif-conversion  -fif-conversion2 @gol
330 -finline-functions  -finline-functions-called-once @gol
331 -finline-small-functions -finline-limit=@var{n}  -fkeep-inline-functions @gol
332 -fkeep-static-consts  -fmerge-constants  -fmerge-all-constants @gol
333 -fmodulo-sched -fmodulo-sched-allow-regmoves -fno-branch-count-reg @gol
334 -fno-default-inline  -fno-defer-pop -fmove-loop-invariants @gol
335 -fno-function-cse  -fno-guess-branch-probability @gol
336 -fno-inline  -fno-math-errno  -fno-peephole  -fno-peephole2 @gol
337 -funsafe-math-optimizations  -funsafe-loop-optimizations @gol
338 -ffinite-math-only  -fno-signed-zeros @gol
339 -fno-toplevel-reorder -fno-trapping-math  -fno-zero-initialized-in-bss @gol
340 -fomit-frame-pointer  -foptimize-register-move @gol
341 -foptimize-sibling-calls  -fpredictive-commoning -fprefetch-loop-arrays @gol
342 -fprofile-generate -fprofile-use @gol
343 -fregmove  -frename-registers @gol
344 -freorder-blocks  -freorder-blocks-and-partition -freorder-functions @gol
345 -frerun-cse-after-loop @gol
346 -frounding-math -frtl-abstract-sequences @gol
347 -fschedule-insns  -fschedule-insns2 @gol
348 -fno-sched-interblock  -fno-sched-spec  -fsched-spec-load @gol
349 -fsched-spec-load-dangerous  @gol
350 -fsched-stalled-insns=@var{n} -fsched-stalled-insns-dep=@var{n} @gol
351 -fsched2-use-superblocks @gol
352 -fsched2-use-traces -fsee -freschedule-modulo-scheduled-loops @gol
353 -fsection-anchors  -fsignaling-nans  -fsingle-precision-constant @gol
354 -fno-split-wide-types -fstack-protector  -fstack-protector-all @gol
355 -fstrict-aliasing  -fstrict-overflow  -ftracer  -fthread-jumps @gol
356 -funroll-all-loops  -funroll-loops  -fpeel-loops @gol
357 -fsplit-ivs-in-unroller -funswitch-loops @gol
358 -fvariable-expansion-in-unroller -ftree-reassoc @gol
359 -ftree-pre  -ftree-ccp  -ftree-dce -ftree-loop-optimize @gol
360 -ftree-loop-linear -ftree-loop-im -ftree-loop-ivcanon -fivopts @gol
361 -fcheck-data-deps -ftree-parallelize-loops @gol
362 -ftree-dominator-opts -ftree-dse -ftree-copyrename -ftree-sink @gol
363 -ftree-ch -ftree-sra -ftree-ter -ftree-fre -ftree-vectorize @gol
364 -ftree-vect-loop-version -fvect-cost-model -ftree-salias -fipa-pta -fweb @gol
365 -ftree-copy-prop -ftree-store-ccp -ftree-store-copy-prop -fwhole-program @gol
366 --param @var{name}=@var{value}
367 -O  -O0  -O1  -O2  -O3  -Os}
368
369 @item Preprocessor Options
370 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
371 @gccoptlist{-A@var{question}=@var{answer} @gol
372 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
373 -C  -dD  -dI  -dM  -dN @gol
374 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
375 -idirafter @var{dir} @gol
376 -include @var{file}  -imacros @var{file} @gol
377 -iprefix @var{file}  -iwithprefix @var{dir} @gol
378 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
379 -imultilib @var{dir} -isysroot @var{dir} @gol
380 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
381 -P  -fworking-directory  -remap @gol
382 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
383 -Xpreprocessor @var{option}}
384
385 @item Assembler Option
386 @xref{Assembler Options,,Passing Options to the Assembler}.
387 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
388
389 @item Linker Options
390 @xref{Link Options,,Options for Linking}.
391 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
392 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
393 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
394 -Wl,@var{option}  -Xlinker @var{option} @gol
395 -u @var{symbol}}
396
397 @item Directory Options
398 @xref{Directory Options,,Options for Directory Search}.
399 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
400 -specs=@var{file}  -I- --sysroot=@var{dir}}
401
402 @item Target Options
403 @c I wrote this xref this way to avoid overfull hbox. -- rms
404 @xref{Target Options}.
405 @gccoptlist{-V @var{version}  -b @var{machine}}
406
407 @item Machine Dependent Options
408 @xref{Submodel Options,,Hardware Models and Configurations}.
409 @c This list is ordered alphanumerically by subsection name.
410 @c Try and put the significant identifier (CPU or system) first,
411 @c so users have a clue at guessing where the ones they want will be.
412
413 @emph{ARC Options}
414 @gccoptlist{-EB  -EL @gol
415 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
416 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
417
418 @emph{ARM Options}
419 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
420 -mabi=@var{name} @gol
421 -mapcs-stack-check  -mno-apcs-stack-check @gol
422 -mapcs-float  -mno-apcs-float @gol
423 -mapcs-reentrant  -mno-apcs-reentrant @gol
424 -msched-prolog  -mno-sched-prolog @gol
425 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
426 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
427 -mthumb-interwork  -mno-thumb-interwork @gol
428 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
429 -mstructure-size-boundary=@var{n} @gol
430 -mabort-on-noreturn @gol
431 -mlong-calls  -mno-long-calls @gol
432 -msingle-pic-base  -mno-single-pic-base @gol
433 -mpic-register=@var{reg} @gol
434 -mnop-fun-dllimport @gol
435 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
436 -mpoke-function-name @gol
437 -mthumb  -marm @gol
438 -mtpcs-frame  -mtpcs-leaf-frame @gol
439 -mcaller-super-interworking  -mcallee-super-interworking @gol
440 -mtp=@var{name}}
441
442 @emph{AVR Options}
443 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
444 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
445
446 @emph{Blackfin Options}
447 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
448 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
449 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
450 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
451 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
452 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
453 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
454 -mfast-fp -minline-plt}
455
456 @emph{CRIS Options}
457 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
458 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
459 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
460 -mstack-align  -mdata-align  -mconst-align @gol
461 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
462 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
463 -mmul-bug-workaround  -mno-mul-bug-workaround}
464
465 @emph{CRX Options}
466 @gccoptlist{-mmac -mpush-args}
467
468 @emph{Darwin Options}
469 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
470 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
471 -client_name  -compatibility_version  -current_version @gol
472 -dead_strip @gol
473 -dependency-file  -dylib_file  -dylinker_install_name @gol
474 -dynamic  -dynamiclib  -exported_symbols_list @gol
475 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
476 -force_flat_namespace  -headerpad_max_install_names @gol
477 -iframework @gol
478 -image_base  -init  -install_name  -keep_private_externs @gol
479 -multi_module  -multiply_defined  -multiply_defined_unused @gol
480 -noall_load   -no_dead_strip_inits_and_terms @gol
481 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
482 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
483 -private_bundle  -read_only_relocs  -sectalign @gol
484 -sectobjectsymbols  -whyload  -seg1addr @gol
485 -sectcreate  -sectobjectsymbols  -sectorder @gol
486 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
487 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
488 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
489 -single_module  -static  -sub_library  -sub_umbrella @gol
490 -twolevel_namespace  -umbrella  -undefined @gol
491 -unexported_symbols_list  -weak_reference_mismatches @gol
492 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
493 -mkernel -mone-byte-bool}
494
495 @emph{DEC Alpha Options}
496 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
497 -mieee  -mieee-with-inexact  -mieee-conformant @gol
498 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
499 -mtrap-precision=@var{mode}  -mbuild-constants @gol
500 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
501 -mbwx  -mmax  -mfix  -mcix @gol
502 -mfloat-vax  -mfloat-ieee @gol
503 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
504 -msmall-text  -mlarge-text @gol
505 -mmemory-latency=@var{time}}
506
507 @emph{DEC Alpha/VMS Options}
508 @gccoptlist{-mvms-return-codes}
509
510 @emph{FRV Options}
511 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
512 -mhard-float  -msoft-float @gol
513 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
514 -mdouble  -mno-double @gol
515 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
516 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
517 -mlinked-fp  -mlong-calls  -malign-labels @gol
518 -mlibrary-pic  -macc-4  -macc-8 @gol
519 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
520 -moptimize-membar -mno-optimize-membar @gol
521 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
522 -mvliw-branch  -mno-vliw-branch @gol
523 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
524 -mno-nested-cond-exec  -mtomcat-stats @gol
525 -mTLS -mtls @gol
526 -mcpu=@var{cpu}}
527
528 @emph{GNU/Linux Options}
529 @gccoptlist{-muclibc}
530
531 @emph{H8/300 Options}
532 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
533
534 @emph{HPPA Options}
535 @gccoptlist{-march=@var{architecture-type} @gol
536 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
537 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
538 -mfixed-range=@var{register-range} @gol
539 -mjump-in-delay -mlinker-opt -mlong-calls @gol
540 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
541 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
542 -mno-jump-in-delay  -mno-long-load-store @gol
543 -mno-portable-runtime  -mno-soft-float @gol
544 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
545 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
546 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
547 -munix=@var{unix-std}  -nolibdld  -static  -threads}
548
549 @emph{i386 and x86-64 Options}
550 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
551 -mfpmath=@var{unit} @gol
552 -masm=@var{dialect}  -mno-fancy-math-387 @gol
553 -mno-fp-ret-in-387  -msoft-float @gol
554 -mno-wide-multiply  -mrtd  -malign-double @gol
555 -mpreferred-stack-boundary=@var{num} -mcx16 -msahf -mrecip @gol
556 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 @gol
557 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
558 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
559 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
560 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
561 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
562 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
563 -mcmodel=@var{code-model} @gol
564 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
565 -mfused-madd -mno-fused-madd}
566
567 @emph{IA-64 Options}
568 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
569 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
570 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
571 -minline-float-divide-max-throughput @gol
572 -minline-int-divide-min-latency @gol
573 -minline-int-divide-max-throughput  @gol
574 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
575 -mno-dwarf2-asm -mearly-stop-bits @gol
576 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
577 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
578 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
579 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
580 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
581 -mno-sched-prefer-non-data-spec-insns @gol
582 -mno-sched-prefer-non-control-spec-insns @gol
583 -mno-sched-count-spec-in-critical-path}
584
585 @emph{M32R/D Options}
586 @gccoptlist{-m32r2 -m32rx -m32r @gol
587 -mdebug @gol
588 -malign-loops -mno-align-loops @gol
589 -missue-rate=@var{number} @gol
590 -mbranch-cost=@var{number} @gol
591 -mmodel=@var{code-size-model-type} @gol
592 -msdata=@var{sdata-type} @gol
593 -mno-flush-func -mflush-func=@var{name} @gol
594 -mno-flush-trap -mflush-trap=@var{number} @gol
595 -G @var{num}}
596
597 @emph{M32C Options}
598 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
599
600 @emph{M680x0 Options}
601 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
602 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
603 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
604 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
605 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
606 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
607 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
608 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library}
609
610 @emph{M68hc1x Options}
611 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
612 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
613 -msoft-reg-count=@var{count}}
614
615 @emph{MCore Options}
616 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
617 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
618 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
619 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
620 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
621
622 @emph{MIPS Options}
623 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
624 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips64 @gol
625 -mips16  -mno-mips16  -mflip-mips16 @gol
626 -minterlink-mips16  -mno-interlink-mips16 @gol
627 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
628 -mshared  -mno-shared  -mxgot  -mno-xgot  -mgp32  -mgp64 @gol
629 -mfp32  -mfp64  -mhard-float  -msoft-float @gol
630 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
631 -msmartmips  -mno-smartmips @gol
632 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
633 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
634 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
635 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
636 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
637 -membedded-data  -mno-embedded-data @gol
638 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
639 -mcode-readable=@var{setting} @gol
640 -msplit-addresses  -mno-split-addresses @gol
641 -mexplicit-relocs  -mno-explicit-relocs @gol
642 -mcheck-zero-division  -mno-check-zero-division @gol
643 -mdivide-traps  -mdivide-breaks @gol
644 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
645 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
646 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
647 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
648 -mfix-sb1  -mno-fix-sb1 @gol
649 -mflush-func=@var{func}  -mno-flush-func @gol
650 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
651 -mfp-exceptions -mno-fp-exceptions @gol
652 -mvr4130-align -mno-vr4130-align}
653
654 @emph{MMIX Options}
655 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
656 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
657 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
658 -mno-base-addresses  -msingle-exit  -mno-single-exit}
659
660 @emph{MN10300 Options}
661 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
662 -mam33  -mno-am33 @gol
663 -mam33-2  -mno-am33-2 @gol
664 -mreturn-pointer-on-d0 @gol
665 -mno-crt0  -mrelax}
666
667 @emph{MT Options}
668 @gccoptlist{-mno-crt0 -mbacc -msim @gol
669 -march=@var{cpu-type} }
670
671 @emph{PDP-11 Options}
672 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
673 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
674 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
675 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
676 -mbranch-expensive  -mbranch-cheap @gol
677 -msplit  -mno-split  -munix-asm  -mdec-asm}
678
679 @emph{PowerPC Options}
680 See RS/6000 and PowerPC Options.
681
682 @emph{RS/6000 and PowerPC Options}
683 @gccoptlist{-mcpu=@var{cpu-type} @gol
684 -mtune=@var{cpu-type} @gol
685 -mpower  -mno-power  -mpower2  -mno-power2 @gol
686 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
687 -maltivec  -mno-altivec @gol
688 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
689 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
690 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
691 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mdfp -mno-dfp @gol
692 -mnew-mnemonics  -mold-mnemonics @gol
693 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
694 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
695 -malign-power  -malign-natural @gol
696 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
697 -mstring  -mno-string  -mupdate  -mno-update @gol
698 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
699 -mstrict-align  -mno-strict-align  -mrelocatable @gol
700 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
701 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
702 -mdynamic-no-pic  -maltivec  -mswdiv @gol
703 -mprioritize-restricted-insns=@var{priority} @gol
704 -msched-costly-dep=@var{dependence_type} @gol
705 -minsert-sched-nops=@var{scheme} @gol
706 -mcall-sysv  -mcall-netbsd @gol
707 -maix-struct-return  -msvr4-struct-return @gol
708 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
709 -misel -mno-isel @gol
710 -misel=yes  -misel=no @gol
711 -mspe -mno-spe @gol
712 -mspe=yes  -mspe=no @gol
713 -mpaired @gol
714 -mvrsave -mno-vrsave @gol
715 -mmulhw -mno-mulhw @gol
716 -mdlmzb -mno-dlmzb @gol
717 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
718 -mprototype  -mno-prototype @gol
719 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
720 -msdata=@var{opt}  -mvxworks  -mwindiss  -G @var{num}  -pthread}
721
722 @emph{S/390 and zSeries Options}
723 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
724 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
725 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
726 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
727 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
728 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
729 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
730
731 @emph{Score Options}
732 @gccoptlist{-meb -mel @gol
733 -mnhwloop @gol
734 -muls @gol
735 -mmac @gol
736 -mscore5 -mscore5u -mscore7 -mscore7d}
737
738 @emph{SH Options}
739 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
740 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
741 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
742 -m5-64media  -m5-64media-nofpu @gol
743 -m5-32media  -m5-32media-nofpu @gol
744 -m5-compact  -m5-compact-nofpu @gol
745 -mb  -ml  -mdalign  -mrelax @gol
746 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
747 -mieee  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
748 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
749 -mdivsi3_libfunc=@var{name}  @gol
750 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
751  -minvalid-symbols}
752
753 @emph{SPARC Options}
754 @gccoptlist{-mcpu=@var{cpu-type} @gol
755 -mtune=@var{cpu-type} @gol
756 -mcmodel=@var{code-model} @gol
757 -m32  -m64  -mapp-regs  -mno-app-regs @gol
758 -mfaster-structs  -mno-faster-structs @gol
759 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
760 -mhard-quad-float  -msoft-quad-float @gol
761 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
762 -mstack-bias  -mno-stack-bias @gol
763 -munaligned-doubles  -mno-unaligned-doubles @gol
764 -mv8plus  -mno-v8plus  -mvis  -mno-vis
765 -threads -pthreads -pthread}
766
767 @emph{SPU Options}
768 @gccoptlist{-mwarn-reloc -merror-reloc @gol
769 -msafe-dma -munsafe-dma @gol
770 -mbranch-hints @gol
771 -msmall-mem -mlarge-mem -mstdmain @gol
772 -mfixed-range=@var{register-range}}
773
774 @emph{System V Options}
775 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
776
777 @emph{TMS320C3x/C4x Options}
778 @gccoptlist{-mcpu=@var{cpu}  -mbig  -msmall  -mregparm  -mmemparm @gol
779 -mfast-fix  -mmpyi  -mbk  -mti  -mdp-isr-reload @gol
780 -mrpts=@var{count}  -mrptb  -mdb  -mloop-unsigned @gol
781 -mparallel-insns  -mparallel-mpy  -mpreserve-float}
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 -mtext-section-literals  -mno-text-section-literals @gol
810 -mtarget-align  -mno-target-align @gol
811 -mlongcalls  -mno-longcalls}
812
813 @emph{zSeries Options}
814 See S/390 and zSeries Options.
815
816 @item Code Generation Options
817 @xref{Code Gen Options,,Options for Code Generation Conventions}.
818 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
819 -ffixed-@var{reg}  -fexceptions @gol
820 -fnon-call-exceptions  -funwind-tables @gol
821 -fasynchronous-unwind-tables @gol
822 -finhibit-size-directive  -finstrument-functions @gol
823 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
824 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
825 -fno-common  -fno-ident @gol
826 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
827 -fno-jump-tables @gol
828 -frecord-gcc-switches @gol
829 -freg-struct-return  -fshort-enums @gol
830 -fshort-double  -fshort-wchar @gol
831 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
832 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
833 -fargument-alias  -fargument-noalias @gol
834 -fargument-noalias-global  -fargument-noalias-anything
835 -fleading-underscore  -ftls-model=@var{model} @gol
836 -ftrapv  -fwrapv  -fbounds-check @gol
837 -fvisibility}
838 @end table
839
840 @menu
841 * Overall Options::     Controlling the kind of output:
842                         an executable, object files, assembler files,
843                         or preprocessed source.
844 * C Dialect Options::   Controlling the variant of C language compiled.
845 * C++ Dialect Options:: Variations on C++.
846 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
847                         and Objective-C++.
848 * Language Independent Options:: Controlling how diagnostics should be
849                         formatted.
850 * Warning Options::     How picky should the compiler be?
851 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
852 * Optimize Options::    How much optimization?
853 * Preprocessor Options:: Controlling header files and macro definitions.
854                          Also, getting dependency information for Make.
855 * Assembler Options::   Passing options to the assembler.
856 * Link Options::        Specifying libraries and so on.
857 * Directory Options::   Where to find header files and libraries.
858                         Where to find the compiler executable files.
859 * Spec Files::          How to pass switches to sub-processes.
860 * Target Options::      Running a cross-compiler, or an old version of GCC.
861 @end menu
862
863 @node Overall Options
864 @section Options Controlling the Kind of Output
865
866 Compilation can involve up to four stages: preprocessing, compilation
867 proper, assembly and linking, always in that order.  GCC is capable of
868 preprocessing and compiling several files either into several
869 assembler input files, or into one assembler input file; then each
870 assembler input file produces an object file, and linking combines all
871 the object files (those newly compiled, and those specified as input)
872 into an executable file.
873
874 @cindex file name suffix
875 For any given input file, the file name suffix determines what kind of
876 compilation is done:
877
878 @table @gcctabopt
879 @item @var{file}.c
880 C source code which must be preprocessed.
881
882 @item @var{file}.i
883 C source code which should not be preprocessed.
884
885 @item @var{file}.ii
886 C++ source code which should not be preprocessed.
887
888 @item @var{file}.m
889 Objective-C source code.  Note that you must link with the @file{libobjc}
890 library to make an Objective-C program work.
891
892 @item @var{file}.mi
893 Objective-C source code which should not be preprocessed.
894
895 @item @var{file}.mm
896 @itemx @var{file}.M
897 Objective-C++ source code.  Note that you must link with the @file{libobjc}
898 library to make an Objective-C++ program work.  Note that @samp{.M} refers
899 to a literal capital M@.
900
901 @item @var{file}.mii
902 Objective-C++ source code which should not be preprocessed.
903
904 @item @var{file}.h
905 C, C++, Objective-C or Objective-C++ header file to be turned into a
906 precompiled header.
907
908 @item @var{file}.cc
909 @itemx @var{file}.cp
910 @itemx @var{file}.cxx
911 @itemx @var{file}.cpp
912 @itemx @var{file}.CPP
913 @itemx @var{file}.c++
914 @itemx @var{file}.C
915 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
916 the last two letters must both be literally @samp{x}.  Likewise,
917 @samp{.C} refers to a literal capital C@.
918
919 @item @var{file}.mm
920 @itemx @var{file}.M
921 Objective-C++ source code which must be preprocessed.
922
923 @item @var{file}.mii
924 Objective-C++ source code which should not be preprocessed.
925
926 @item @var{file}.hh
927 @itemx @var{file}.H
928 @itemx @var{file}.hp
929 @itemx @var{file}.hxx
930 @itemx @var{file}.hpp
931 @itemx @var{file}.HPP
932 @itemx @var{file}.h++
933 @itemx @var{file}.tcc
934 C++ header file to be turned into a precompiled header.
935
936 @item @var{file}.f
937 @itemx @var{file}.for
938 @itemx @var{file}.FOR
939 Fixed form Fortran source code which should not be preprocessed.
940
941 @item @var{file}.F
942 @itemx @var{file}.fpp
943 @itemx @var{file}.FPP
944 Fixed form Fortran source code which must be preprocessed (with the traditional
945 preprocessor).
946
947 @item @var{file}.f90
948 @itemx @var{file}.f95
949 Free form Fortran source code which should not be preprocessed.
950
951 @item @var{file}.F90
952 @itemx @var{file}.F95
953 Free form Fortran source code which must be preprocessed (with the
954 traditional preprocessor).
955
956 @c FIXME: Descriptions of Java file types.
957 @c @var{file}.java
958 @c @var{file}.class
959 @c @var{file}.zip
960 @c @var{file}.jar
961
962 @item @var{file}.ads
963 Ada source code file which contains a library unit declaration (a
964 declaration of a package, subprogram, or generic, or a generic
965 instantiation), or a library unit renaming declaration (a package,
966 generic, or subprogram renaming declaration).  Such files are also
967 called @dfn{specs}.
968
969 @itemx @var{file}.adb
970 Ada source code file containing a library unit body (a subprogram or
971 package body).  Such files are also called @dfn{bodies}.
972
973 @c GCC also knows about some suffixes for languages not yet included:
974 @c Pascal:
975 @c @var{file}.p
976 @c @var{file}.pas
977 @c Ratfor:
978 @c @var{file}.r
979
980 @item @var{file}.s
981 Assembler code.
982
983 @item @var{file}.S
984 @itemx @var{file}.sx
985 Assembler code which must be preprocessed.
986
987 @item @var{other}
988 An object file to be fed straight into linking.
989 Any file name with no recognized suffix is treated this way.
990 @end table
991
992 @opindex x
993 You can specify the input language explicitly with the @option{-x} option:
994
995 @table @gcctabopt
996 @item -x @var{language}
997 Specify explicitly the @var{language} for the following input files
998 (rather than letting the compiler choose a default based on the file
999 name suffix).  This option applies to all following input files until
1000 the next @option{-x} option.  Possible values for @var{language} are:
1001 @smallexample
1002 c  c-header  c-cpp-output
1003 c++  c++-header  c++-cpp-output
1004 objective-c  objective-c-header  objective-c-cpp-output
1005 objective-c++ objective-c++-header objective-c++-cpp-output
1006 assembler  assembler-with-cpp
1007 ada
1008 f95  f95-cpp-input
1009 java
1010 treelang
1011 @end smallexample
1012
1013 @item -x none
1014 Turn off any specification of a language, so that subsequent files are
1015 handled according to their file name suffixes (as they are if @option{-x}
1016 has not been used at all).
1017
1018 @item -pass-exit-codes
1019 @opindex pass-exit-codes
1020 Normally the @command{gcc} program will exit with the code of 1 if any
1021 phase of the compiler returns a non-success return code.  If you specify
1022 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1023 numerically highest error produced by any phase that returned an error
1024 indication.  The C, C++, and Fortran frontends return 4, if an internal
1025 compiler error is encountered.
1026 @end table
1027
1028 If you only want some of the stages of compilation, you can use
1029 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1030 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1031 @command{gcc} is to stop.  Note that some combinations (for example,
1032 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1033
1034 @table @gcctabopt
1035 @item -c
1036 @opindex c
1037 Compile or assemble the source files, but do not link.  The linking
1038 stage simply is not done.  The ultimate output is in the form of an
1039 object file for each source file.
1040
1041 By default, the object file name for a source file is made by replacing
1042 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1043
1044 Unrecognized input files, not requiring compilation or assembly, are
1045 ignored.
1046
1047 @item -S
1048 @opindex S
1049 Stop after the stage of compilation proper; do not assemble.  The output
1050 is in the form of an assembler code file for each non-assembler input
1051 file specified.
1052
1053 By default, the assembler file name for a source file is made by
1054 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1055
1056 Input files that don't require compilation are ignored.
1057
1058 @item -E
1059 @opindex E
1060 Stop after the preprocessing stage; do not run the compiler proper.  The
1061 output is in the form of preprocessed source code, which is sent to the
1062 standard output.
1063
1064 Input files which don't require preprocessing are ignored.
1065
1066 @cindex output file option
1067 @item -o @var{file}
1068 @opindex o
1069 Place output in file @var{file}.  This applies regardless to whatever
1070 sort of output is being produced, whether it be an executable file,
1071 an object file, an assembler file or preprocessed C code.
1072
1073 If @option{-o} is not specified, the default is to put an executable
1074 file in @file{a.out}, the object file for
1075 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1076 assembler file in @file{@var{source}.s}, a precompiled header file in
1077 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1078 standard output.
1079
1080 @item -v
1081 @opindex v
1082 Print (on standard error output) the commands executed to run the stages
1083 of compilation.  Also print the version number of the compiler driver
1084 program and of the preprocessor and the compiler proper.
1085
1086 @item -###
1087 @opindex ###
1088 Like @option{-v} except the commands are not executed and all command
1089 arguments are quoted.  This is useful for shell scripts to capture the
1090 driver-generated command lines.
1091
1092 @item -pipe
1093 @opindex pipe
1094 Use pipes rather than temporary files for communication between the
1095 various stages of compilation.  This fails to work on some systems where
1096 the assembler is unable to read from a pipe; but the GNU assembler has
1097 no trouble.
1098
1099 @item -combine
1100 @opindex combine
1101 If you are compiling multiple source files, this option tells the driver
1102 to pass all the source files to the compiler at once (for those
1103 languages for which the compiler can handle this).  This will allow
1104 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1105 language for which this is supported is C@.  If you pass source files for
1106 multiple languages to the driver, using this option, the driver will invoke
1107 the compiler(s) that support IMA once each, passing each compiler all the
1108 source files appropriate for it.  For those languages that do not support
1109 IMA this option will be ignored, and the compiler will be invoked once for
1110 each source file in that language.  If you use this option in conjunction
1111 with @option{-save-temps}, the compiler will generate multiple
1112 pre-processed files
1113 (one for each source file), but only one (combined) @file{.o} or
1114 @file{.s} file.
1115
1116 @item --help
1117 @opindex help
1118 Print (on the standard output) a description of the command line options
1119 understood by @command{gcc}.  If the @option{-v} option is also specified
1120 then @option{--help} will also be passed on to the various processes
1121 invoked by @command{gcc}, so that they can display the command line options
1122 they accept.  If the @option{-Wextra} option has also been specified
1123 (prior to the @option{--help} option), then command line options which
1124 have no documentation associated with them will also be displayed.
1125
1126 @item --target-help
1127 @opindex target-help
1128 Print (on the standard output) a description of target-specific command
1129 line options for each tool.  For some targets extra target-specific
1130 information may also be printed.
1131
1132 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1133 Print (on the standard output) a description of the command line
1134 options understood by the compiler that fit into a specific class.
1135 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1136 @samp{params}, or @var{language}:
1137
1138 @table @asis
1139 @item @samp{optimizers}
1140 This will display all of the optimization options supported by the
1141 compiler.
1142
1143 @item @samp{warnings}
1144 This will display all of the options controlling warning messages
1145 produced by the compiler.
1146
1147 @item @samp{target}
1148 This will display target-specific options.  Unlike the
1149 @option{--target-help} option however, target-specific options of the
1150 linker and assembler will not be displayed.  This is because those
1151 tools do not currently support the extended @option{--help=} syntax.
1152
1153 @item @samp{params}
1154 This will display the values recognized by the @option{--param}
1155 option.
1156
1157 @item @var{language}
1158 This will display the options supported for @var{language}, where 
1159 @var{language} is the name of one of the languages supported in this 
1160 version of GCC.
1161
1162 @item @samp{common}
1163 This will display the options that are common to all languages.
1164 @end table
1165
1166 It is possible to further refine the output of the @option{--help=}
1167 option by adding a comma separated list of qualifiers after the
1168 class.  These can be any from the following list:
1169
1170 @table @asis
1171 @item @samp{undocumented}
1172 Display only those options which are undocumented.
1173
1174 @item @samp{joined}
1175 Display options which take an argument that appears after an equal
1176 sign in the same continuous piece of text, such as:
1177 @samp{--help=target}.
1178
1179 @item @samp{separate}
1180 Display options which take an argument that appears as a separate word
1181 following the original option, such as: @samp{-o output-file}.
1182 @end table
1183
1184 Thus for example to display all the undocumented target-specific
1185 switches supported by the compiler the following can be used:
1186
1187 @smallexample
1188 --help=target,undocumented
1189 @end smallexample
1190
1191 The sense of a qualifier can be inverted by prefixing it with the
1192 @var{^} character, so for example to display all binary warning
1193 options (i.e. ones that are either on or off and that do not take an
1194 argument), which have a description the following can be used:
1195
1196 @smallexample
1197 --help=warnings,^joined,^undocumented
1198 @end smallexample
1199
1200 A class can also be used as a qualifier, although this usually
1201 restricts the output by so much that there is nothing to display.  One
1202 case where it does work however is when one of the classes is
1203 @var{target}.  So for example to display all the target-specific
1204 optimization options the following can be used:
1205
1206 @smallexample
1207 --help=target,optimizers
1208 @end smallexample
1209
1210 The @option{--help=} option can be repeated on the command line.  Each
1211 successive use will display its requested class of options, skipping
1212 those that have already been displayed.
1213
1214 If the @option{-Q} option appears on the command line before the
1215 @option{--help=} option, then the descriptive text displayed by
1216 @option{--help=} is changed.  Instead of describing the displayed
1217 options, an indication is given as to whether the option is enabled,
1218 disabled or set to a specific value (assuming that the compiler
1219 knows this at the point where the @option{--help=} option is used).
1220
1221 Here is a truncated example from the ARM port of @command{gcc}:
1222
1223 @smallexample
1224   % gcc -Q -mabi=2 --help=target -c
1225   The following options are target specific:
1226   -mabi=                                2
1227   -mabort-on-noreturn                   [disabled]
1228   -mapcs                                [disabled]
1229 @end smallexample
1230
1231 The output is sensitive to the effects of previous command line
1232 options, so for example it is possible to find out which optimizations
1233 are enabled at @option{-O2} by using:
1234
1235 @smallexample
1236 -O2 --help=optimizers
1237 @end smallexample
1238
1239 Alternatively you can discover which binary optimizations are enabled
1240 by @option{-O3} by using:
1241
1242 @smallexample
1243 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1244 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1245 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1246 @end smallexample
1247
1248 @item --version
1249 @opindex version
1250 Display the version number and copyrights of the invoked GCC@.
1251
1252 @include @value{srcdir}/../libiberty/at-file.texi
1253 @end table
1254
1255 @node Invoking G++
1256 @section Compiling C++ Programs
1257
1258 @cindex suffixes for C++ source
1259 @cindex C++ source file suffixes
1260 C++ source files conventionally use one of the suffixes @samp{.C},
1261 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1262 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1263 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1264 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1265 files with these names and compiles them as C++ programs even if you
1266 call the compiler the same way as for compiling C programs (usually
1267 with the name @command{gcc}).
1268
1269 @findex g++
1270 @findex c++
1271 However, the use of @command{gcc} does not add the C++ library.
1272 @command{g++} is a program that calls GCC and treats @samp{.c},
1273 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1274 files unless @option{-x} is used, and automatically specifies linking
1275 against the C++ library.  This program is also useful when
1276 precompiling a C header file with a @samp{.h} extension for use in C++
1277 compilations.  On many systems, @command{g++} is also installed with
1278 the name @command{c++}.
1279
1280 @cindex invoking @command{g++}
1281 When you compile C++ programs, you may specify many of the same
1282 command-line options that you use for compiling programs in any
1283 language; or command-line options meaningful for C and related
1284 languages; or options that are meaningful only for C++ programs.
1285 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1286 explanations of options for languages related to C@.
1287 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1288 explanations of options that are meaningful only for C++ programs.
1289
1290 @node C Dialect Options
1291 @section Options Controlling C Dialect
1292 @cindex dialect options
1293 @cindex language dialect options
1294 @cindex options, dialect
1295
1296 The following options control the dialect of C (or languages derived
1297 from C, such as C++, Objective-C and Objective-C++) that the compiler
1298 accepts:
1299
1300 @table @gcctabopt
1301 @cindex ANSI support
1302 @cindex ISO support
1303 @item -ansi
1304 @opindex ansi
1305 In C mode, support all ISO C90 programs.  In C++ mode,
1306 remove GNU extensions that conflict with ISO C++.
1307
1308 This turns off certain features of GCC that are incompatible with ISO
1309 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1310 such as the @code{asm} and @code{typeof} keywords, and
1311 predefined macros such as @code{unix} and @code{vax} that identify the
1312 type of system you are using.  It also enables the undesirable and
1313 rarely used ISO trigraph feature.  For the C compiler,
1314 it disables recognition of C++ style @samp{//} comments as well as
1315 the @code{inline} keyword.
1316
1317 The alternate keywords @code{__asm__}, @code{__extension__},
1318 @code{__inline__} and @code{__typeof__} continue to work despite
1319 @option{-ansi}.  You would not want to use them in an ISO C program, of
1320 course, but it is useful to put them in header files that might be included
1321 in compilations done with @option{-ansi}.  Alternate predefined macros
1322 such as @code{__unix__} and @code{__vax__} are also available, with or
1323 without @option{-ansi}.
1324
1325 The @option{-ansi} option does not cause non-ISO programs to be
1326 rejected gratuitously.  For that, @option{-pedantic} is required in
1327 addition to @option{-ansi}.  @xref{Warning Options}.
1328
1329 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1330 option is used.  Some header files may notice this macro and refrain
1331 from declaring certain functions or defining certain macros that the
1332 ISO standard doesn't call for; this is to avoid interfering with any
1333 programs that might use these names for other things.
1334
1335 Functions which would normally be built in but do not have semantics
1336 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1337 functions with @option{-ansi} is used.  @xref{Other Builtins,,Other
1338 built-in functions provided by GCC}, for details of the functions
1339 affected.
1340
1341 @item -std=
1342 @opindex std
1343 Determine the language standard.  This option is currently only
1344 supported when compiling C or C++.  A value for this option must be
1345 provided; possible values are
1346
1347 @table @samp
1348 @item c89
1349 @itemx iso9899:1990
1350 ISO C90 (same as @option{-ansi}).
1351
1352 @item iso9899:199409
1353 ISO C90 as modified in amendment 1.
1354
1355 @item c99
1356 @itemx c9x
1357 @itemx iso9899:1999
1358 @itemx iso9899:199x
1359 ISO C99.  Note that this standard is not yet fully supported; see
1360 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1361 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1362
1363 @item gnu89
1364 Default, ISO C90 plus GNU extensions (including some C99 features).
1365
1366 @item gnu99
1367 @itemx gnu9x
1368 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
1369 this will become the default.  The name @samp{gnu9x} is deprecated.
1370
1371 @item c++98
1372 The 1998 ISO C++ standard plus amendments.
1373
1374 @item gnu++98
1375 The same as @option{-std=c++98} plus GNU extensions.  This is the
1376 default for C++ code.
1377
1378 @item c++0x
1379 The working draft of the upcoming ISO C++0x standard. This option
1380 enables experimental features that are likely to be included in
1381 C++0x. The working draft is constantly changing, and any feature that is
1382 enabled by this flag may be removed from future versions of GCC if it is
1383 not part of the C++0x standard.
1384
1385 @item gnu++0x
1386 The same as @option{-std=c++0x} plus GNU extensions. As with
1387 @option{-std=c++0x}, this option enables experimental features that may
1388 be removed in future versions of GCC.
1389 @end table
1390
1391 Even when this option is not specified, you can still use some of the
1392 features of newer standards in so far as they do not conflict with
1393 previous C standards.  For example, you may use @code{__restrict__} even
1394 when @option{-std=c99} is not specified.
1395
1396 The @option{-std} options specifying some version of ISO C have the same
1397 effects as @option{-ansi}, except that features that were not in ISO C90
1398 but are in the specified version (for example, @samp{//} comments and
1399 the @code{inline} keyword in ISO C99) are not disabled.
1400
1401 @xref{Standards,,Language Standards Supported by GCC}, for details of
1402 these standard versions.
1403
1404 @item -fgnu89-inline
1405 @opindex fgnu89-inline
1406 The option @option{-fgnu89-inline} tells GCC to use the traditional
1407 GNU semantics for @code{inline} functions when in C99 mode.
1408 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1409 is accepted and ignored by GCC versions 4.1.3 up to but not including
1410 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1411 C99 mode.  Using this option is roughly equivalent to adding the
1412 @code{gnu_inline} function attribute to all inline functions
1413 (@pxref{Function Attributes}).
1414
1415 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1416 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1417 specifies the default behavior).  This option was first supported in
1418 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1419
1420 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1421 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1422 in effect for @code{inline} functions.  @xref{Common Predefined
1423 Macros,,,cpp,The C Preprocessor}.
1424
1425 @item -aux-info @var{filename}
1426 @opindex aux-info
1427 Output to the given filename prototyped declarations for all functions
1428 declared and/or defined in a translation unit, including those in header
1429 files.  This option is silently ignored in any language other than C@.
1430
1431 Besides declarations, the file indicates, in comments, the origin of
1432 each declaration (source file and line), whether the declaration was
1433 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1434 @samp{O} for old, respectively, in the first character after the line
1435 number and the colon), and whether it came from a declaration or a
1436 definition (@samp{C} or @samp{F}, respectively, in the following
1437 character).  In the case of function definitions, a K&R-style list of
1438 arguments followed by their declarations is also provided, inside
1439 comments, after the declaration.
1440
1441 @item -fno-asm
1442 @opindex fno-asm
1443 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1444 keyword, so that code can use these words as identifiers.  You can use
1445 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1446 instead.  @option{-ansi} implies @option{-fno-asm}.
1447
1448 In C++, this switch only affects the @code{typeof} keyword, since
1449 @code{asm} and @code{inline} are standard keywords.  You may want to
1450 use the @option{-fno-gnu-keywords} flag instead, which has the same
1451 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1452 switch only affects the @code{asm} and @code{typeof} keywords, since
1453 @code{inline} is a standard keyword in ISO C99.
1454
1455 @item -fno-builtin
1456 @itemx -fno-builtin-@var{function}
1457 @opindex fno-builtin
1458 @cindex built-in functions
1459 Don't recognize built-in functions that do not begin with
1460 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1461 functions provided by GCC}, for details of the functions affected,
1462 including those which are not built-in functions when @option{-ansi} or
1463 @option{-std} options for strict ISO C conformance are used because they
1464 do not have an ISO standard meaning.
1465
1466 GCC normally generates special code to handle certain built-in functions
1467 more efficiently; for instance, calls to @code{alloca} may become single
1468 instructions that adjust the stack directly, and calls to @code{memcpy}
1469 may become inline copy loops.  The resulting code is often both smaller
1470 and faster, but since the function calls no longer appear as such, you
1471 cannot set a breakpoint on those calls, nor can you change the behavior
1472 of the functions by linking with a different library.  In addition,
1473 when a function is recognized as a built-in function, GCC may use
1474 information about that function to warn about problems with calls to
1475 that function, or to generate more efficient code, even if the
1476 resulting code still contains calls to that function.  For example,
1477 warnings are given with @option{-Wformat} for bad calls to
1478 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1479 known not to modify global memory.
1480
1481 With the @option{-fno-builtin-@var{function}} option
1482 only the built-in function @var{function} is
1483 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1484 function is named this is not built-in in this version of GCC, this
1485 option is ignored.  There is no corresponding
1486 @option{-fbuiltin-@var{function}} option; if you wish to enable
1487 built-in functions selectively when using @option{-fno-builtin} or
1488 @option{-ffreestanding}, you may define macros such as:
1489
1490 @smallexample
1491 #define abs(n)          __builtin_abs ((n))
1492 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1493 @end smallexample
1494
1495 @item -fhosted
1496 @opindex fhosted
1497 @cindex hosted environment
1498
1499 Assert that compilation takes place in a hosted environment.  This implies
1500 @option{-fbuiltin}.  A hosted environment is one in which the
1501 entire standard library is available, and in which @code{main} has a return
1502 type of @code{int}.  Examples are nearly everything except a kernel.
1503 This is equivalent to @option{-fno-freestanding}.
1504
1505 @item -ffreestanding
1506 @opindex ffreestanding
1507 @cindex hosted environment
1508
1509 Assert that compilation takes place in a freestanding environment.  This
1510 implies @option{-fno-builtin}.  A freestanding environment
1511 is one in which the standard library may not exist, and program startup may
1512 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1513 This is equivalent to @option{-fno-hosted}.
1514
1515 @xref{Standards,,Language Standards Supported by GCC}, for details of
1516 freestanding and hosted environments.
1517
1518 @item -fopenmp
1519 @opindex fopenmp
1520 @cindex openmp parallel
1521 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1522 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1523 compiler generates parallel code according to the OpenMP Application
1524 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.
1525
1526 @item -fms-extensions
1527 @opindex fms-extensions
1528 Accept some non-standard constructs used in Microsoft header files.
1529
1530 Some cases of unnamed fields in structures and unions are only
1531 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1532 fields within structs/unions}, for details.
1533
1534 @item -trigraphs
1535 @opindex trigraphs
1536 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1537 options for strict ISO C conformance) implies @option{-trigraphs}.
1538
1539 @item -no-integrated-cpp
1540 @opindex no-integrated-cpp
1541 Performs a compilation in two passes: preprocessing and compiling.  This
1542 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1543 @option{-B} option.  The user supplied compilation step can then add in
1544 an additional preprocessing step after normal preprocessing but before
1545 compiling.  The default is to use the integrated cpp (internal cpp)
1546
1547 The semantics of this option will change if "cc1", "cc1plus", and
1548 "cc1obj" are merged.
1549
1550 @cindex traditional C language
1551 @cindex C language, traditional
1552 @item -traditional
1553 @itemx -traditional-cpp
1554 @opindex traditional-cpp
1555 @opindex traditional
1556 Formerly, these options caused GCC to attempt to emulate a pre-standard
1557 C compiler.  They are now only supported with the @option{-E} switch.
1558 The preprocessor continues to support a pre-standard mode.  See the GNU
1559 CPP manual for details.
1560
1561 @item -fcond-mismatch
1562 @opindex fcond-mismatch
1563 Allow conditional expressions with mismatched types in the second and
1564 third arguments.  The value of such an expression is void.  This option
1565 is not supported for C++.
1566
1567 @item -flax-vector-conversions
1568 @opindex flax-vector-conversions
1569 Allow implicit conversions between vectors with differing numbers of
1570 elements and/or incompatible element types.  This option should not be
1571 used for new code.
1572
1573 @item -funsigned-char
1574 @opindex funsigned-char
1575 Let the type @code{char} be unsigned, like @code{unsigned char}.
1576
1577 Each kind of machine has a default for what @code{char} should
1578 be.  It is either like @code{unsigned char} by default or like
1579 @code{signed char} by default.
1580
1581 Ideally, a portable program should always use @code{signed char} or
1582 @code{unsigned char} when it depends on the signedness of an object.
1583 But many programs have been written to use plain @code{char} and
1584 expect it to be signed, or expect it to be unsigned, depending on the
1585 machines they were written for.  This option, and its inverse, let you
1586 make such a program work with the opposite default.
1587
1588 The type @code{char} is always a distinct type from each of
1589 @code{signed char} or @code{unsigned char}, even though its behavior
1590 is always just like one of those two.
1591
1592 @item -fsigned-char
1593 @opindex fsigned-char
1594 Let the type @code{char} be signed, like @code{signed char}.
1595
1596 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1597 the negative form of @option{-funsigned-char}.  Likewise, the option
1598 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1599
1600 @item -fsigned-bitfields
1601 @itemx -funsigned-bitfields
1602 @itemx -fno-signed-bitfields
1603 @itemx -fno-unsigned-bitfields
1604 @opindex fsigned-bitfields
1605 @opindex funsigned-bitfields
1606 @opindex fno-signed-bitfields
1607 @opindex fno-unsigned-bitfields
1608 These options control whether a bit-field is signed or unsigned, when the
1609 declaration does not use either @code{signed} or @code{unsigned}.  By
1610 default, such a bit-field is signed, because this is consistent: the
1611 basic integer types such as @code{int} are signed types.
1612 @end table
1613
1614 @node C++ Dialect Options
1615 @section Options Controlling C++ Dialect
1616
1617 @cindex compiler options, C++
1618 @cindex C++ options, command line
1619 @cindex options, C++
1620 This section describes the command-line options that are only meaningful
1621 for C++ programs; but you can also use most of the GNU compiler options
1622 regardless of what language your program is in.  For example, you
1623 might compile a file @code{firstClass.C} like this:
1624
1625 @smallexample
1626 g++ -g -frepo -O -c firstClass.C
1627 @end smallexample
1628
1629 @noindent
1630 In this example, only @option{-frepo} is an option meant
1631 only for C++ programs; you can use the other options with any
1632 language supported by GCC@.
1633
1634 Here is a list of options that are @emph{only} for compiling C++ programs:
1635
1636 @table @gcctabopt
1637
1638 @item -fabi-version=@var{n}
1639 @opindex fabi-version
1640 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1641 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1642 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1643 the version that conforms most closely to the C++ ABI specification.
1644 Therefore, the ABI obtained using version 0 will change as ABI bugs
1645 are fixed.
1646
1647 The default is version 2.
1648
1649 @item -fno-access-control
1650 @opindex fno-access-control
1651 Turn off all access checking.  This switch is mainly useful for working
1652 around bugs in the access control code.
1653
1654 @item -fcheck-new
1655 @opindex fcheck-new
1656 Check that the pointer returned by @code{operator new} is non-null
1657 before attempting to modify the storage allocated.  This check is
1658 normally unnecessary because the C++ standard specifies that
1659 @code{operator new} will only return @code{0} if it is declared
1660 @samp{throw()}, in which case the compiler will always check the
1661 return value even without this option.  In all other cases, when
1662 @code{operator new} has a non-empty exception specification, memory
1663 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1664 @samp{new (nothrow)}.
1665
1666 @item -fconserve-space
1667 @opindex fconserve-space
1668 Put uninitialized or runtime-initialized global variables into the
1669 common segment, as C does.  This saves space in the executable at the
1670 cost of not diagnosing duplicate definitions.  If you compile with this
1671 flag and your program mysteriously crashes after @code{main()} has
1672 completed, you may have an object that is being destroyed twice because
1673 two definitions were merged.
1674
1675 This option is no longer useful on most targets, now that support has
1676 been added for putting variables into BSS without making them common.
1677
1678 @item -ffriend-injection
1679 @opindex ffriend-injection
1680 Inject friend functions into the enclosing namespace, so that they are
1681 visible outside the scope of the class in which they are declared.
1682 Friend functions were documented to work this way in the old Annotated
1683 C++ Reference Manual, and versions of G++ before 4.1 always worked
1684 that way.  However, in ISO C++ a friend function which is not declared
1685 in an enclosing scope can only be found using argument dependent
1686 lookup.  This option causes friends to be injected as they were in
1687 earlier releases.
1688
1689 This option is for compatibility, and may be removed in a future
1690 release of G++.
1691
1692 @item -fno-elide-constructors
1693 @opindex fno-elide-constructors
1694 The C++ standard allows an implementation to omit creating a temporary
1695 which is only used to initialize another object of the same type.
1696 Specifying this option disables that optimization, and forces G++ to
1697 call the copy constructor in all cases.
1698
1699 @item -fno-enforce-eh-specs
1700 @opindex fno-enforce-eh-specs
1701 Don't generate code to check for violation of exception specifications
1702 at runtime.  This option violates the C++ standard, but may be useful
1703 for reducing code size in production builds, much like defining
1704 @samp{NDEBUG}.  This does not give user code permission to throw
1705 exceptions in violation of the exception specifications; the compiler
1706 will still optimize based on the specifications, so throwing an
1707 unexpected exception will result in undefined behavior.
1708
1709 @item -ffor-scope
1710 @itemx -fno-for-scope
1711 @opindex ffor-scope
1712 @opindex fno-for-scope
1713 If @option{-ffor-scope} is specified, the scope of variables declared in
1714 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1715 as specified by the C++ standard.
1716 If @option{-fno-for-scope} is specified, the scope of variables declared in
1717 a @i{for-init-statement} extends to the end of the enclosing scope,
1718 as was the case in old versions of G++, and other (traditional)
1719 implementations of C++.
1720
1721 The default if neither flag is given to follow the standard,
1722 but to allow and give a warning for old-style code that would
1723 otherwise be invalid, or have different behavior.
1724
1725 @item -fno-gnu-keywords
1726 @opindex fno-gnu-keywords
1727 Do not recognize @code{typeof} as a keyword, so that code can use this
1728 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1729 @option{-ansi} implies @option{-fno-gnu-keywords}.
1730
1731 @item -fno-implicit-templates
1732 @opindex fno-implicit-templates
1733 Never emit code for non-inline templates which are instantiated
1734 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1735 @xref{Template Instantiation}, for more information.
1736
1737 @item -fno-implicit-inline-templates
1738 @opindex fno-implicit-inline-templates
1739 Don't emit code for implicit instantiations of inline templates, either.
1740 The default is to handle inlines differently so that compiles with and
1741 without optimization will need the same set of explicit instantiations.
1742
1743 @item -fno-implement-inlines
1744 @opindex fno-implement-inlines
1745 To save space, do not emit out-of-line copies of inline functions
1746 controlled by @samp{#pragma implementation}.  This will cause linker
1747 errors if these functions are not inlined everywhere they are called.
1748
1749 @item -fms-extensions
1750 @opindex fms-extensions
1751 Disable pedantic warnings about constructs used in MFC, such as implicit
1752 int and getting a pointer to member function via non-standard syntax.
1753
1754 @item -fno-nonansi-builtins
1755 @opindex fno-nonansi-builtins
1756 Disable built-in declarations of functions that are not mandated by
1757 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1758 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1759
1760 @item -fno-operator-names
1761 @opindex fno-operator-names
1762 Do not treat the operator name keywords @code{and}, @code{bitand},
1763 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1764 synonyms as keywords.
1765
1766 @item -fno-optional-diags
1767 @opindex fno-optional-diags
1768 Disable diagnostics that the standard says a compiler does not need to
1769 issue.  Currently, the only such diagnostic issued by G++ is the one for
1770 a name having multiple meanings within a class.
1771
1772 @item -fpermissive
1773 @opindex fpermissive
1774 Downgrade some diagnostics about nonconformant code from errors to
1775 warnings.  Thus, using @option{-fpermissive} will allow some
1776 nonconforming code to compile.
1777
1778 @item -frepo
1779 @opindex frepo
1780 Enable automatic template instantiation at link time.  This option also
1781 implies @option{-fno-implicit-templates}.  @xref{Template
1782 Instantiation}, for more information.
1783
1784 @item -fno-rtti
1785 @opindex fno-rtti
1786 Disable generation of information about every class with virtual
1787 functions for use by the C++ runtime type identification features
1788 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1789 of the language, you can save some space by using this flag.  Note that
1790 exception handling uses the same information, but it will generate it as
1791 needed. The @samp{dynamic_cast} operator can still be used for casts that
1792 do not require runtime type information, i.e. casts to @code{void *} or to
1793 unambiguous base classes.
1794
1795 @item -fstats
1796 @opindex fstats
1797 Emit statistics about front-end processing at the end of the compilation.
1798 This information is generally only useful to the G++ development team.
1799
1800 @item -ftemplate-depth-@var{n}
1801 @opindex ftemplate-depth
1802 Set the maximum instantiation depth for template classes to @var{n}.
1803 A limit on the template instantiation depth is needed to detect
1804 endless recursions during template class instantiation.  ANSI/ISO C++
1805 conforming programs must not rely on a maximum depth greater than 17.
1806
1807 @item -fno-threadsafe-statics
1808 @opindex fno-threadsafe-statics
1809 Do not emit the extra code to use the routines specified in the C++
1810 ABI for thread-safe initialization of local statics.  You can use this
1811 option to reduce code size slightly in code that doesn't need to be
1812 thread-safe.
1813
1814 @item -fuse-cxa-atexit
1815 @opindex fuse-cxa-atexit
1816 Register destructors for objects with static storage duration with the
1817 @code{__cxa_atexit} function rather than the @code{atexit} function.
1818 This option is required for fully standards-compliant handling of static
1819 destructors, but will only work if your C library supports
1820 @code{__cxa_atexit}.
1821
1822 @item -fno-use-cxa-get-exception-ptr
1823 @opindex fno-use-cxa-get-exception-ptr
1824 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1825 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1826 if the runtime routine is not available.
1827
1828 @item -fvisibility-inlines-hidden
1829 @opindex fvisibility-inlines-hidden
1830 This switch declares that the user does not attempt to compare
1831 pointers to inline methods where the addresses of the two functions
1832 were taken in different shared objects.
1833
1834 The effect of this is that GCC may, effectively, mark inline methods with
1835 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1836 appear in the export table of a DSO and do not require a PLT indirection
1837 when used within the DSO@.  Enabling this option can have a dramatic effect
1838 on load and link times of a DSO as it massively reduces the size of the
1839 dynamic export table when the library makes heavy use of templates.
1840
1841 The behavior of this switch is not quite the same as marking the
1842 methods as hidden directly, because it does not affect static variables
1843 local to the function or cause the compiler to deduce that
1844 the function is defined in only one shared object.
1845
1846 You may mark a method as having a visibility explicitly to negate the
1847 effect of the switch for that method.  For example, if you do want to
1848 compare pointers to a particular inline method, you might mark it as
1849 having default visibility.  Marking the enclosing class with explicit
1850 visibility will have no effect.
1851
1852 Explicitly instantiated inline methods are unaffected by this option
1853 as their linkage might otherwise cross a shared library boundary.
1854 @xref{Template Instantiation}.
1855
1856 @item -fvisibility-ms-compat
1857 @opindex fvisibility-ms-compat
1858 This flag attempts to use visibility settings to make GCC's C++
1859 linkage model compatible with that of Microsoft Visual Studio.
1860
1861 The flag makes these changes to GCC's linkage model:
1862
1863 @enumerate
1864 @item
1865 It sets the default visibility to @code{hidden}, like
1866 @option{-fvisibility=hidden}.
1867
1868 @item
1869 Types, but not their members, are not hidden by default.
1870
1871 @item
1872 The One Definition Rule is relaxed for types without explicit
1873 visibility specifications which are defined in more than one different
1874 shared object: those declarations are permitted if they would have
1875 been permitted when this option was not used.
1876 @end enumerate
1877
1878 In new code it is better to use @option{-fvisibility=hidden} and
1879 export those classes which are intended to be externally visible.
1880 Unfortunately it is possible for code to rely, perhaps accidentally,
1881 on the Visual Studio behavior.
1882
1883 Among the consequences of these changes are that static data members
1884 of the same type with the same name but defined in different shared
1885 objects will be different, so changing one will not change the other;
1886 and that pointers to function members defined in different shared
1887 objects may not compare equal.  When this flag is given, it is a
1888 violation of the ODR to define types with the same name differently.
1889
1890 @item -fno-weak
1891 @opindex fno-weak
1892 Do not use weak symbol support, even if it is provided by the linker.
1893 By default, G++ will use weak symbols if they are available.  This
1894 option exists only for testing, and should not be used by end-users;
1895 it will result in inferior code and has no benefits.  This option may
1896 be removed in a future release of G++.
1897
1898 @item -nostdinc++
1899 @opindex nostdinc++
1900 Do not search for header files in the standard directories specific to
1901 C++, but do still search the other standard directories.  (This option
1902 is used when building the C++ library.)
1903 @end table
1904
1905 In addition, these optimization, warning, and code generation options
1906 have meanings only for C++ programs:
1907
1908 @table @gcctabopt
1909 @item -fno-default-inline
1910 @opindex fno-default-inline
1911 Do not assume @samp{inline} for functions defined inside a class scope.
1912 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1913 functions will have linkage like inline functions; they just won't be
1914 inlined by default.
1915
1916 @item -Wabi @r{(C++ only)}
1917 @opindex Wabi
1918 Warn when G++ generates code that is probably not compatible with the
1919 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1920 all such cases, there are probably some cases that are not warned about,
1921 even though G++ is generating incompatible code.  There may also be
1922 cases where warnings are emitted even though the code that is generated
1923 will be compatible.
1924
1925 You should rewrite your code to avoid these warnings if you are
1926 concerned about the fact that code generated by G++ may not be binary
1927 compatible with code generated by other compilers.
1928
1929 The known incompatibilities at this point include:
1930
1931 @itemize @bullet
1932
1933 @item
1934 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1935 pack data into the same byte as a base class.  For example:
1936
1937 @smallexample
1938 struct A @{ virtual void f(); int f1 : 1; @};
1939 struct B : public A @{ int f2 : 1; @};
1940 @end smallexample
1941
1942 @noindent
1943 In this case, G++ will place @code{B::f2} into the same byte
1944 as@code{A::f1}; other compilers will not.  You can avoid this problem
1945 by explicitly padding @code{A} so that its size is a multiple of the
1946 byte size on your platform; that will cause G++ and other compilers to
1947 layout @code{B} identically.
1948
1949 @item
1950 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1951 tail padding when laying out virtual bases.  For example:
1952
1953 @smallexample
1954 struct A @{ virtual void f(); char c1; @};
1955 struct B @{ B(); char c2; @};
1956 struct C : public A, public virtual B @{@};
1957 @end smallexample
1958
1959 @noindent
1960 In this case, G++ will not place @code{B} into the tail-padding for
1961 @code{A}; other compilers will.  You can avoid this problem by
1962 explicitly padding @code{A} so that its size is a multiple of its
1963 alignment (ignoring virtual base classes); that will cause G++ and other
1964 compilers to layout @code{C} identically.
1965
1966 @item
1967 Incorrect handling of bit-fields with declared widths greater than that
1968 of their underlying types, when the bit-fields appear in a union.  For
1969 example:
1970
1971 @smallexample
1972 union U @{ int i : 4096; @};
1973 @end smallexample
1974
1975 @noindent
1976 Assuming that an @code{int} does not have 4096 bits, G++ will make the
1977 union too small by the number of bits in an @code{int}.
1978
1979 @item
1980 Empty classes can be placed at incorrect offsets.  For example:
1981
1982 @smallexample
1983 struct A @{@};
1984
1985 struct B @{
1986   A a;
1987   virtual void f ();
1988 @};
1989
1990 struct C : public B, public A @{@};
1991 @end smallexample
1992
1993 @noindent
1994 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
1995 it should be placed at offset zero.  G++ mistakenly believes that the
1996 @code{A} data member of @code{B} is already at offset zero.
1997
1998 @item
1999 Names of template functions whose types involve @code{typename} or
2000 template template parameters can be mangled incorrectly.
2001
2002 @smallexample
2003 template <typename Q>
2004 void f(typename Q::X) @{@}
2005
2006 template <template <typename> class Q>
2007 void f(typename Q<int>::X) @{@}
2008 @end smallexample
2009
2010 @noindent
2011 Instantiations of these templates may be mangled incorrectly.
2012
2013 @end itemize
2014
2015 @item -Wctor-dtor-privacy @r{(C++ only)}
2016 @opindex Wctor-dtor-privacy
2017 Warn when a class seems unusable because all the constructors or
2018 destructors in that class are private, and it has neither friends nor
2019 public static member functions.
2020
2021 @item -Wnon-virtual-dtor @r{(C++ only)}
2022 @opindex Wnon-virtual-dtor
2023 Warn when a class has virtual functions and accessible non-virtual
2024 destructor, in which case it would be possible but unsafe to delete
2025 an instance of a derived class through a pointer to the base class.
2026 This warning is also enabled if -Weffc++ is specified.
2027
2028 @item -Wreorder @r{(C++ only)}
2029 @opindex Wreorder
2030 @cindex reordering, warning
2031 @cindex warning for reordering of member initializers
2032 Warn when the order of member initializers given in the code does not
2033 match the order in which they must be executed.  For instance:
2034
2035 @smallexample
2036 struct A @{
2037   int i;
2038   int j;
2039   A(): j (0), i (1) @{ @}
2040 @};
2041 @end smallexample
2042
2043 The compiler will rearrange the member initializers for @samp{i}
2044 and @samp{j} to match the declaration order of the members, emitting
2045 a warning to that effect.  This warning is enabled by @option{-Wall}.
2046 @end table
2047
2048 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2049
2050 @table @gcctabopt
2051 @item -Weffc++ @r{(C++ only)}
2052 @opindex Weffc++
2053 Warn about violations of the following style guidelines from Scott Meyers'
2054 @cite{Effective C++} book:
2055
2056 @itemize @bullet
2057 @item
2058 Item 11:  Define a copy constructor and an assignment operator for classes
2059 with dynamically allocated memory.
2060
2061 @item
2062 Item 12:  Prefer initialization to assignment in constructors.
2063
2064 @item
2065 Item 14:  Make destructors virtual in base classes.
2066
2067 @item
2068 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2069
2070 @item
2071 Item 23:  Don't try to return a reference when you must return an object.
2072
2073 @end itemize
2074
2075 Also warn about violations of the following style guidelines from
2076 Scott Meyers' @cite{More Effective C++} book:
2077
2078 @itemize @bullet
2079 @item
2080 Item 6:  Distinguish between prefix and postfix forms of increment and
2081 decrement operators.
2082
2083 @item
2084 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2085
2086 @end itemize
2087
2088 When selecting this option, be aware that the standard library
2089 headers do not obey all of these guidelines; use @samp{grep -v}
2090 to filter out those warnings.
2091
2092 @item -Wno-deprecated @r{(C++ only)}
2093 @opindex Wno-deprecated
2094 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
2095
2096 @item -Wstrict-null-sentinel @r{(C++ only)}
2097 @opindex Wstrict-null-sentinel
2098 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2099 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2100 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2101 it is guaranteed to of the same size as a pointer.  But this use is
2102 not portable across different compilers.
2103
2104 @item -Wno-non-template-friend @r{(C++ only)}
2105 @opindex Wno-non-template-friend
2106 Disable warnings when non-templatized friend functions are declared
2107 within a template.  Since the advent of explicit template specification
2108 support in G++, if the name of the friend is an unqualified-id (i.e.,
2109 @samp{friend foo(int)}), the C++ language specification demands that the
2110 friend declare or define an ordinary, nontemplate function.  (Section
2111 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2112 could be interpreted as a particular specialization of a templatized
2113 function.  Because this non-conforming behavior is no longer the default
2114 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2115 check existing code for potential trouble spots and is on by default.
2116 This new compiler behavior can be turned off with
2117 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2118 but disables the helpful warning.
2119
2120 @item -Wold-style-cast @r{(C++ only)}
2121 @opindex Wold-style-cast
2122 Warn if an old-style (C-style) cast to a non-void type is used within
2123 a C++ program.  The new-style casts (@samp{dynamic_cast},
2124 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2125 less vulnerable to unintended effects and much easier to search for.
2126
2127 @item -Woverloaded-virtual @r{(C++ only)}
2128 @opindex Woverloaded-virtual
2129 @cindex overloaded virtual fn, warning
2130 @cindex warning for overloaded virtual fn
2131 Warn when a function declaration hides virtual functions from a
2132 base class.  For example, in:
2133
2134 @smallexample
2135 struct A @{
2136   virtual void f();
2137 @};
2138
2139 struct B: public A @{
2140   void f(int);
2141 @};
2142 @end smallexample
2143
2144 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2145 like:
2146
2147 @smallexample
2148 B* b;
2149 b->f();
2150 @end smallexample
2151
2152 will fail to compile.
2153
2154 @item -Wno-pmf-conversions @r{(C++ only)}
2155 @opindex Wno-pmf-conversions
2156 Disable the diagnostic for converting a bound pointer to member function
2157 to a plain pointer.
2158
2159 @item -Wsign-promo @r{(C++ only)}
2160 @opindex Wsign-promo
2161 Warn when overload resolution chooses a promotion from unsigned or
2162 enumerated type to a signed type, over a conversion to an unsigned type of
2163 the same size.  Previous versions of G++ would try to preserve
2164 unsignedness, but the standard mandates the current behavior.
2165
2166 @smallexample
2167 struct A @{
2168   operator int ();
2169   A& operator = (int);
2170 @};
2171
2172 main ()
2173 @{
2174   A a,b;
2175   a = b;
2176 @}
2177 @end smallexample
2178
2179 In this example, G++ will synthesize a default @samp{A& operator =
2180 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2181 @end table
2182
2183 @node Objective-C and Objective-C++ Dialect Options
2184 @section Options Controlling Objective-C and Objective-C++ Dialects
2185
2186 @cindex compiler options, Objective-C and Objective-C++
2187 @cindex Objective-C and Objective-C++ options, command line
2188 @cindex options, Objective-C and Objective-C++
2189 (NOTE: This manual does not describe the Objective-C and Objective-C++
2190 languages themselves.  See @xref{Standards,,Language Standards
2191 Supported by GCC}, for references.)
2192
2193 This section describes the command-line options that are only meaningful
2194 for Objective-C and Objective-C++ programs, but you can also use most of
2195 the language-independent GNU compiler options.
2196 For example, you might compile a file @code{some_class.m} like this:
2197
2198 @smallexample
2199 gcc -g -fgnu-runtime -O -c some_class.m
2200 @end smallexample
2201
2202 @noindent
2203 In this example, @option{-fgnu-runtime} is an option meant only for
2204 Objective-C and Objective-C++ programs; you can use the other options with
2205 any language supported by GCC@.
2206
2207 Note that since Objective-C is an extension of the C language, Objective-C
2208 compilations may also use options specific to the C front-end (e.g.,
2209 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2210 C++-specific options (e.g., @option{-Wabi}).
2211
2212 Here is a list of options that are @emph{only} for compiling Objective-C
2213 and Objective-C++ programs:
2214
2215 @table @gcctabopt
2216 @item -fconstant-string-class=@var{class-name}
2217 @opindex fconstant-string-class
2218 Use @var{class-name} as the name of the class to instantiate for each
2219 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2220 class name is @code{NXConstantString} if the GNU runtime is being used, and
2221 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2222 @option{-fconstant-cfstrings} option, if also present, will override the
2223 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2224 to be laid out as constant CoreFoundation strings.
2225
2226 @item -fgnu-runtime
2227 @opindex fgnu-runtime
2228 Generate object code compatible with the standard GNU Objective-C
2229 runtime.  This is the default for most types of systems.
2230
2231 @item -fnext-runtime
2232 @opindex fnext-runtime
2233 Generate output compatible with the NeXT runtime.  This is the default
2234 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2235 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2236 used.
2237
2238 @item -fno-nil-receivers
2239 @opindex fno-nil-receivers
2240 Assume that all Objective-C message dispatches (e.g.,
2241 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2242 is not @code{nil}.  This allows for more efficient entry points in the runtime
2243 to be used.  Currently, this option is only available in conjunction with
2244 the NeXT runtime on Mac OS X 10.3 and later.
2245
2246 @item -fobjc-call-cxx-cdtors
2247 @opindex fobjc-call-cxx-cdtors
2248 For each Objective-C class, check if any of its instance variables is a
2249 C++ object with a non-trivial default constructor.  If so, synthesize a
2250 special @code{- (id) .cxx_construct} instance method that will run
2251 non-trivial default constructors on any such instance variables, in order,
2252 and then return @code{self}.  Similarly, check if any instance variable
2253 is a C++ object with a non-trivial destructor, and if so, synthesize a
2254 special @code{- (void) .cxx_destruct} method that will run
2255 all such default destructors, in reverse order.
2256
2257 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2258 thusly generated will only operate on instance variables declared in the
2259 current Objective-C class, and not those inherited from superclasses.  It
2260 is the responsibility of the Objective-C runtime to invoke all such methods
2261 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2262 will be invoked by the runtime immediately after a new object
2263 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2264 be invoked immediately before the runtime deallocates an object instance.
2265
2266 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2267 support for invoking the @code{- (id) .cxx_construct} and
2268 @code{- (void) .cxx_destruct} methods.
2269
2270 @item -fobjc-direct-dispatch
2271 @opindex fobjc-direct-dispatch
2272 Allow fast jumps to the message dispatcher.  On Darwin this is
2273 accomplished via the comm page.
2274
2275 @item -fobjc-exceptions
2276 @opindex fobjc-exceptions
2277 Enable syntactic support for structured exception handling in Objective-C,
2278 similar to what is offered by C++ and Java.  This option is
2279 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2280 earlier.
2281
2282 @smallexample
2283   @@try @{
2284     @dots{}
2285        @@throw expr;
2286     @dots{}
2287   @}
2288   @@catch (AnObjCClass *exc) @{
2289     @dots{}
2290       @@throw expr;
2291     @dots{}
2292       @@throw;
2293     @dots{}
2294   @}
2295   @@catch (AnotherClass *exc) @{
2296     @dots{}
2297   @}
2298   @@catch (id allOthers) @{
2299     @dots{}
2300   @}
2301   @@finally @{
2302     @dots{}
2303       @@throw expr;
2304     @dots{}
2305   @}
2306 @end smallexample
2307
2308 The @code{@@throw} statement may appear anywhere in an Objective-C or
2309 Objective-C++ program; when used inside of a @code{@@catch} block, the
2310 @code{@@throw} may appear without an argument (as shown above), in which case
2311 the object caught by the @code{@@catch} will be rethrown.
2312
2313 Note that only (pointers to) Objective-C objects may be thrown and
2314 caught using this scheme.  When an object is thrown, it will be caught
2315 by the nearest @code{@@catch} clause capable of handling objects of that type,
2316 analogously to how @code{catch} blocks work in C++ and Java.  A
2317 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2318 any and all Objective-C exceptions not caught by previous @code{@@catch}
2319 clauses (if any).
2320
2321 The @code{@@finally} clause, if present, will be executed upon exit from the
2322 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2323 regardless of whether any exceptions are thrown, caught or rethrown
2324 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2325 of the @code{finally} clause in Java.
2326
2327 There are several caveats to using the new exception mechanism:
2328
2329 @itemize @bullet
2330 @item
2331 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2332 idioms provided by the @code{NSException} class, the new
2333 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2334 systems, due to additional functionality needed in the (NeXT) Objective-C
2335 runtime.
2336
2337 @item
2338 As mentioned above, the new exceptions do not support handling
2339 types other than Objective-C objects.   Furthermore, when used from
2340 Objective-C++, the Objective-C exception model does not interoperate with C++
2341 exceptions at this time.  This means you cannot @code{@@throw} an exception
2342 from Objective-C and @code{catch} it in C++, or vice versa
2343 (i.e., @code{throw @dots{} @@catch}).
2344 @end itemize
2345
2346 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2347 blocks for thread-safe execution:
2348
2349 @smallexample
2350   @@synchronized (ObjCClass *guard) @{
2351     @dots{}
2352   @}
2353 @end smallexample
2354
2355 Upon entering the @code{@@synchronized} block, a thread of execution shall
2356 first check whether a lock has been placed on the corresponding @code{guard}
2357 object by another thread.  If it has, the current thread shall wait until
2358 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2359 the current thread will place its own lock on it, execute the code contained in
2360 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2361 making @code{guard} available to other threads).
2362
2363 Unlike Java, Objective-C does not allow for entire methods to be marked
2364 @code{@@synchronized}.  Note that throwing exceptions out of
2365 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2366 to be unlocked properly.
2367
2368 @item -fobjc-gc
2369 @opindex fobjc-gc
2370 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2371
2372 @item -freplace-objc-classes
2373 @opindex freplace-objc-classes
2374 Emit a special marker instructing @command{ld(1)} not to statically link in
2375 the resulting object file, and allow @command{dyld(1)} to load it in at
2376 run time instead.  This is used in conjunction with the Fix-and-Continue
2377 debugging mode, where the object file in question may be recompiled and
2378 dynamically reloaded in the course of program execution, without the need
2379 to restart the program itself.  Currently, Fix-and-Continue functionality
2380 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2381 and later.
2382
2383 @item -fzero-link
2384 @opindex fzero-link
2385 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2386 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2387 compile time) with static class references that get initialized at load time,
2388 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2389 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2390 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2391 for individual class implementations to be modified during program execution.
2392
2393 @item -gen-decls
2394 @opindex gen-decls
2395 Dump interface declarations for all classes seen in the source file to a
2396 file named @file{@var{sourcename}.decl}.
2397
2398 @item -Wassign-intercept
2399 @opindex Wassign-intercept
2400 Warn whenever an Objective-C assignment is being intercepted by the
2401 garbage collector.
2402
2403 @item -Wno-protocol
2404 @opindex Wno-protocol
2405 If a class is declared to implement a protocol, a warning is issued for
2406 every method in the protocol that is not implemented by the class.  The
2407 default behavior is to issue a warning for every method not explicitly
2408 implemented in the class, even if a method implementation is inherited
2409 from the superclass.  If you use the @option{-Wno-protocol} option, then
2410 methods inherited from the superclass are considered to be implemented,
2411 and no warning is issued for them.
2412
2413 @item -Wselector
2414 @opindex Wselector
2415 Warn if multiple methods of different types for the same selector are
2416 found during compilation.  The check is performed on the list of methods
2417 in the final stage of compilation.  Additionally, a check is performed
2418 for each selector appearing in a @code{@@selector(@dots{})}
2419 expression, and a corresponding method for that selector has been found
2420 during compilation.  Because these checks scan the method table only at
2421 the end of compilation, these warnings are not produced if the final
2422 stage of compilation is not reached, for example because an error is
2423 found during compilation, or because the @option{-fsyntax-only} option is
2424 being used.
2425
2426 @item -Wstrict-selector-match
2427 @opindex Wstrict-selector-match
2428 Warn if multiple methods with differing argument and/or return types are
2429 found for a given selector when attempting to send a message using this
2430 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2431 is off (which is the default behavior), the compiler will omit such warnings
2432 if any differences found are confined to types which share the same size
2433 and alignment.
2434
2435 @item -Wundeclared-selector
2436 @opindex Wundeclared-selector
2437 Warn if a @code{@@selector(@dots{})} expression referring to an
2438 undeclared selector is found.  A selector is considered undeclared if no
2439 method with that name has been declared before the
2440 @code{@@selector(@dots{})} expression, either explicitly in an
2441 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2442 an @code{@@implementation} section.  This option always performs its
2443 checks as soon as a @code{@@selector(@dots{})} expression is found,
2444 while @option{-Wselector} only performs its checks in the final stage of
2445 compilation.  This also enforces the coding style convention
2446 that methods and selectors must be declared before being used.
2447
2448 @item -print-objc-runtime-info
2449 @opindex print-objc-runtime-info
2450 Generate C header describing the largest structure that is passed by
2451 value, if any.
2452
2453 @end table
2454
2455 @node Language Independent Options
2456 @section Options to Control Diagnostic Messages Formatting
2457 @cindex options to control diagnostics formatting
2458 @cindex diagnostic messages
2459 @cindex message formatting
2460
2461 Traditionally, diagnostic messages have been formatted irrespective of
2462 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2463 below can be used to control the diagnostic messages formatting
2464 algorithm, e.g.@: how many characters per line, how often source location
2465 information should be reported.  Right now, only the C++ front end can
2466 honor these options.  However it is expected, in the near future, that
2467 the remaining front ends would be able to digest them correctly.
2468
2469 @table @gcctabopt
2470 @item -fmessage-length=@var{n}
2471 @opindex fmessage-length
2472 Try to format error messages so that they fit on lines of about @var{n}
2473 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2474 the front ends supported by GCC@.  If @var{n} is zero, then no
2475 line-wrapping will be done; each error message will appear on a single
2476 line.
2477
2478 @opindex fdiagnostics-show-location
2479 @item -fdiagnostics-show-location=once
2480 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2481 reporter to emit @emph{once} source location information; that is, in
2482 case the message is too long to fit on a single physical line and has to
2483 be wrapped, the source location won't be emitted (as prefix) again,
2484 over and over, in subsequent continuation lines.  This is the default
2485 behavior.
2486
2487 @item -fdiagnostics-show-location=every-line
2488 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2489 messages reporter to emit the same source location information (as
2490 prefix) for physical lines that result from the process of breaking
2491 a message which is too long to fit on a single line.
2492
2493 @item -fdiagnostics-show-option
2494 @opindex fdiagnostics-show-option
2495 This option instructs the diagnostic machinery to add text to each
2496 diagnostic emitted, which indicates which command line option directly
2497 controls that diagnostic, when such an option is known to the
2498 diagnostic machinery.
2499
2500 @item -Wcoverage-mismatch
2501 @opindex Wcoverage-mismatch
2502 Warn if feedback profiles do not match when using the
2503 @option{-fprofile-use} option.
2504 If a source file was changed between @option{-fprofile-gen} and
2505 @option{-fprofile-use}, the files with the profile feedback can fail
2506 to match the source file and GCC can not use the profile feedback
2507 information.  By default, GCC emits an error message in this case.
2508 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2509 error.  GCC does not use appropriate feedback profiles, so using this
2510 option can result in poorly optimized code.  This option is useful
2511 only in the case of very minor changes such as bug fixes to an
2512 existing code-base.
2513
2514 @end table
2515
2516 @node Warning Options
2517 @section Options to Request or Suppress Warnings
2518 @cindex options to control warnings
2519 @cindex warning messages
2520 @cindex messages, warning
2521 @cindex suppressing warnings
2522
2523 Warnings are diagnostic messages that report constructions which
2524 are not inherently erroneous but which are risky or suggest there
2525 may have been an error.
2526
2527 You can request many specific warnings with options beginning @samp{-W},
2528 for example @option{-Wimplicit} to request warnings on implicit
2529 declarations.  Each of these specific warning options also has a
2530 negative form beginning @samp{-Wno-} to turn off warnings;
2531 for example, @option{-Wno-implicit}.  This manual lists only one of the
2532 two forms, whichever is not the default.
2533
2534 The following options control the amount and kinds of warnings produced
2535 by GCC; for further, language-specific options also refer to
2536 @ref{C++ Dialect Options} and @ref{Objective-C and Objective-C++ Dialect
2537 Options}.
2538
2539 @table @gcctabopt
2540 @cindex syntax checking
2541 @item -fsyntax-only
2542 @opindex fsyntax-only
2543 Check the code for syntax errors, but don't do anything beyond that.
2544
2545 @item -pedantic
2546 @opindex pedantic
2547 Issue all the warnings demanded by strict ISO C and ISO C++;
2548 reject all programs that use forbidden extensions, and some other
2549 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2550 version of the ISO C standard specified by any @option{-std} option used.
2551
2552 Valid ISO C and ISO C++ programs should compile properly with or without
2553 this option (though a rare few will require @option{-ansi} or a
2554 @option{-std} option specifying the required version of ISO C)@.  However,
2555 without this option, certain GNU extensions and traditional C and C++
2556 features are supported as well.  With this option, they are rejected.
2557
2558 @option{-pedantic} does not cause warning messages for use of the
2559 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2560 warnings are also disabled in the expression that follows
2561 @code{__extension__}.  However, only system header files should use
2562 these escape routes; application programs should avoid them.
2563 @xref{Alternate Keywords}.
2564
2565 Some users try to use @option{-pedantic} to check programs for strict ISO
2566 C conformance.  They soon find that it does not do quite what they want:
2567 it finds some non-ISO practices, but not all---only those for which
2568 ISO C @emph{requires} a diagnostic, and some others for which
2569 diagnostics have been added.
2570
2571 A feature to report any failure to conform to ISO C might be useful in
2572 some instances, but would require considerable additional work and would
2573 be quite different from @option{-pedantic}.  We don't have plans to
2574 support such a feature in the near future.
2575
2576 Where the standard specified with @option{-std} represents a GNU
2577 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2578 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2579 extended dialect is based.  Warnings from @option{-pedantic} are given
2580 where they are required by the base standard.  (It would not make sense
2581 for such warnings to be given only for features not in the specified GNU
2582 C dialect, since by definition the GNU dialects of C include all
2583 features the compiler supports with the given option, and there would be
2584 nothing to warn about.)
2585
2586 @item -pedantic-errors
2587 @opindex pedantic-errors
2588 Like @option{-pedantic}, except that errors are produced rather than
2589 warnings.
2590
2591 @item -w
2592 @opindex w
2593 Inhibit all warning messages.
2594
2595 @item -Wall
2596 @opindex Wall
2597 This enables all the warnings about constructions that some users
2598 consider questionable, and that are easy to avoid (or modify to
2599 prevent the warning), even in conjunction with macros.  This also
2600 enables some language-specific warnings described in @ref{C++ Dialect
2601 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2602
2603 @option{-Wall} turns on the following warning flags:
2604 @gccoptlist{ 
2605 -Waddress @gol
2606 -Warray-bounds (only with @option{-O2}) @gol
2607 -Wc++0x-compat @gol
2608 -Wchar-subscripts @gol
2609 -Wimplicit-int @gol
2610 -Wimplicit-function-declaration @gol
2611 -Wcomment @gol
2612 -Wformat  @gol
2613 -Wmain (only for C/ObjC and unless @option{-ffreestanding}) @gol
2614 -Wmissing-braces @gol
2615 -Wnonnull @gol
2616 -Wparentheses @gol
2617 -Wpointer-sign
2618 -Wreorder  @gol
2619 -Wreturn-type @gol
2620 -Wsequence-point @gol
2621 -Wsign-compare (only in C++) @gol
2622 -Wstrict-aliasing @gol
2623 -Wstrict-overflow @gol
2624 -Wswitch @gol
2625 -Wtrigraphs @gol
2626 -Wuninitialized (only with @option{-O1}, @option{-O2} or @option{-O3}) @gol
2627 -Wunknown-pragmas @gol
2628 -Wunused-function @gol
2629 -Wunused-label    @gol
2630 -Wunused-value    @gol
2631 -Wunused-variable @gol
2632 }
2633
2634 @item -Wno-import
2635 @opindex Wno-import
2636 Inhibit warning messages about the use of @samp{#import}.
2637
2638 @item -Wchar-subscripts
2639 @opindex Wchar-subscripts
2640 Warn if an array subscript has type @code{char}.  This is a common cause
2641 of error, as programmers often forget that this type is signed on some
2642 machines.
2643 This warning is enabled by @option{-Wall}.
2644
2645 @item -Wcomment
2646 @opindex Wcomment
2647 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2648 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2649 This warning is enabled by @option{-Wall}.
2650
2651 @item -Wfatal-errors
2652 @opindex Wfatal-errors
2653 This option causes the compiler to abort compilation on the first error
2654 occurred rather than trying to keep going and printing further error
2655 messages.
2656
2657 @item -Wformat
2658 @opindex Wformat
2659 @opindex ffreestanding
2660 @opindex fno-builtin
2661 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2662 the arguments supplied have types appropriate to the format string
2663 specified, and that the conversions specified in the format string make
2664 sense.  This includes standard functions, and others specified by format
2665 attributes (@pxref{Function Attributes}), in the @code{printf},
2666 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2667 not in the C standard) families (or other target-specific families).
2668 Which functions are checked without format attributes having been
2669 specified depends on the standard version selected, and such checks of
2670 functions without the attribute specified are disabled by
2671 @option{-ffreestanding} or @option{-fno-builtin}.
2672
2673 The formats are checked against the format features supported by GNU
2674 libc version 2.2.  These include all ISO C90 and C99 features, as well
2675 as features from the Single Unix Specification and some BSD and GNU
2676 extensions.  Other library implementations may not support all these
2677 features; GCC does not support warning about features that go beyond a
2678 particular library's limitations.  However, if @option{-pedantic} is used
2679 with @option{-Wformat}, warnings will be given about format features not
2680 in the selected standard version (but not for @code{strfmon} formats,
2681 since those are not in any version of the C standard).  @xref{C Dialect
2682 Options,,Options Controlling C Dialect}.
2683
2684 Since @option{-Wformat} also checks for null format arguments for
2685 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2686
2687 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2688 aspects of format checking, the options @option{-Wformat-y2k},
2689 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2690 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2691 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2692
2693 @item -Wformat-y2k
2694 @opindex Wformat-y2k
2695 If @option{-Wformat} is specified, also warn about @code{strftime}
2696 formats which may yield only a two-digit year.
2697
2698 @item -Wno-format-extra-args
2699 @opindex Wno-format-extra-args
2700 If @option{-Wformat} is specified, do not warn about excess arguments to a
2701 @code{printf} or @code{scanf} format function.  The C standard specifies
2702 that such arguments are ignored.
2703
2704 Where the unused arguments lie between used arguments that are
2705 specified with @samp{$} operand number specifications, normally
2706 warnings are still given, since the implementation could not know what
2707 type to pass to @code{va_arg} to skip the unused arguments.  However,
2708 in the case of @code{scanf} formats, this option will suppress the
2709 warning if the unused arguments are all pointers, since the Single
2710 Unix Specification says that such unused arguments are allowed.
2711
2712 @item -Wno-format-zero-length
2713 @opindex Wno-format-zero-length
2714 If @option{-Wformat} is specified, do not warn about zero-length formats.
2715 The C standard specifies that zero-length formats are allowed.
2716
2717 @item -Wformat-nonliteral
2718 @opindex Wformat-nonliteral
2719 If @option{-Wformat} is specified, also warn if the format string is not a
2720 string literal and so cannot be checked, unless the format function
2721 takes its format arguments as a @code{va_list}.
2722
2723 @item -Wformat-security
2724 @opindex Wformat-security
2725 If @option{-Wformat} is specified, also warn about uses of format
2726 functions that represent possible security problems.  At present, this
2727 warns about calls to @code{printf} and @code{scanf} functions where the
2728 format string is not a string literal and there are no format arguments,
2729 as in @code{printf (foo);}.  This may be a security hole if the format
2730 string came from untrusted input and contains @samp{%n}.  (This is
2731 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2732 in future warnings may be added to @option{-Wformat-security} that are not
2733 included in @option{-Wformat-nonliteral}.)
2734
2735 @item -Wformat=2
2736 @opindex Wformat=2
2737 Enable @option{-Wformat} plus format checks not included in
2738 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2739 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2740
2741 @item -Wnonnull
2742 @opindex Wnonnull
2743 Warn about passing a null pointer for arguments marked as
2744 requiring a non-null value by the @code{nonnull} function attribute.
2745
2746 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2747 can be disabled with the @option{-Wno-nonnull} option.
2748
2749 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2750 @opindex Winit-self
2751 Warn about uninitialized variables which are initialized with themselves.
2752 Note this option can only be used with the @option{-Wuninitialized} option,
2753 which in turn only works with @option{-O1} and above.
2754
2755 For example, GCC will warn about @code{i} being uninitialized in the
2756 following snippet only when @option{-Winit-self} has been specified:
2757 @smallexample
2758 @group
2759 int f()
2760 @{
2761   int i = i;
2762   return i;
2763 @}
2764 @end group
2765 @end smallexample
2766
2767 @item -Wimplicit-int
2768 @opindex Wimplicit-int
2769 Warn when a declaration does not specify a type.
2770 This warning is enabled by @option{-Wall}.
2771
2772 @item -Wimplicit-function-declaration
2773 @opindex Wimplicit-function-declaration
2774 @opindex Wno-implicit-function-declaration
2775 Give a warning whenever a function is used before being declared. In
2776 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2777 enabled by default and it is made into an error by
2778 @option{-pedantic-errors}. This warning is also enabled by
2779 @option{-Wall}.
2780
2781 @item -Wimplicit
2782 @opindex Wimplicit
2783 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2784 This warning is enabled by @option{-Wall}.
2785
2786 @item -Wmain
2787 @opindex Wmain
2788 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
2789 function with external linkage, returning int, taking either zero
2790 arguments, two, or three arguments of appropriate types.
2791 This warning is enabled by @option{-Wall}.
2792
2793 @item -Wmissing-braces
2794 @opindex Wmissing-braces
2795 Warn if an aggregate or union initializer is not fully bracketed.  In
2796 the following example, the initializer for @samp{a} is not fully
2797 bracketed, but that for @samp{b} is fully bracketed.
2798
2799 @smallexample
2800 int a[2][2] = @{ 0, 1, 2, 3 @};
2801 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2802 @end smallexample
2803
2804 This warning is enabled by @option{-Wall}.
2805
2806 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2807 @opindex Wmissing-include-dirs
2808 Warn if a user-supplied include directory does not exist.
2809
2810 @item -Wparentheses
2811 @opindex Wparentheses
2812 Warn if parentheses are omitted in certain contexts, such
2813 as when there is an assignment in a context where a truth value
2814 is expected, or when operators are nested whose precedence people
2815 often get confused about.
2816
2817 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2818 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2819 interpretation from that of ordinary mathematical notation.
2820
2821 Also warn about constructions where there may be confusion to which
2822 @code{if} statement an @code{else} branch belongs.  Here is an example of
2823 such a case:
2824
2825 @smallexample
2826 @group
2827 @{
2828   if (a)
2829     if (b)
2830       foo ();
2831   else
2832     bar ();
2833 @}
2834 @end group
2835 @end smallexample
2836
2837 In C/C++, every @code{else} branch belongs to the innermost possible
2838 @code{if} statement, which in this example is @code{if (b)}.  This is
2839 often not what the programmer expected, as illustrated in the above
2840 example by indentation the programmer chose.  When there is the
2841 potential for this confusion, GCC will issue a warning when this flag
2842 is specified.  To eliminate the warning, add explicit braces around
2843 the innermost @code{if} statement so there is no way the @code{else}
2844 could belong to the enclosing @code{if}.  The resulting code would
2845 look like this:
2846
2847 @smallexample
2848 @group
2849 @{
2850   if (a)
2851     @{
2852       if (b)
2853         foo ();
2854       else
2855         bar ();
2856     @}
2857 @}
2858 @end group
2859 @end smallexample
2860
2861 This warning is enabled by @option{-Wall}.
2862
2863 @item -Wsequence-point
2864 @opindex Wsequence-point
2865 Warn about code that may have undefined semantics because of violations
2866 of sequence point rules in the C and C++ standards.
2867
2868 The C and C++ standards defines the order in which expressions in a C/C++
2869 program are evaluated in terms of @dfn{sequence points}, which represent
2870 a partial ordering between the execution of parts of the program: those
2871 executed before the sequence point, and those executed after it.  These
2872 occur after the evaluation of a full expression (one which is not part
2873 of a larger expression), after the evaluation of the first operand of a
2874 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
2875 function is called (but after the evaluation of its arguments and the
2876 expression denoting the called function), and in certain other places.
2877 Other than as expressed by the sequence point rules, the order of
2878 evaluation of subexpressions of an expression is not specified.  All
2879 these rules describe only a partial order rather than a total order,
2880 since, for example, if two functions are called within one expression
2881 with no sequence point between them, the order in which the functions
2882 are called is not specified.  However, the standards committee have
2883 ruled that function calls do not overlap.
2884
2885 It is not specified when between sequence points modifications to the
2886 values of objects take effect.  Programs whose behavior depends on this
2887 have undefined behavior; the C and C++ standards specify that ``Between
2888 the previous and next sequence point an object shall have its stored
2889 value modified at most once by the evaluation of an expression.
2890 Furthermore, the prior value shall be read only to determine the value
2891 to be stored.''.  If a program breaks these rules, the results on any
2892 particular implementation are entirely unpredictable.
2893
2894 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
2895 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
2896 diagnosed by this option, and it may give an occasional false positive
2897 result, but in general it has been found fairly effective at detecting
2898 this sort of problem in programs.
2899
2900 The standard is worded confusingly, therefore there is some debate
2901 over the precise meaning of the sequence point rules in subtle cases.
2902 Links to discussions of the problem, including proposed formal
2903 definitions, may be found on the GCC readings page, at
2904 @w{@uref{http://gcc.gnu.org/readings.html}}.
2905
2906 This warning is enabled by @option{-Wall} for C and C++.
2907
2908 @item -Wreturn-type
2909 @opindex Wreturn-type
2910 @opindex Wno-return-type
2911 Warn whenever a function is defined with a return-type that defaults
2912 to @code{int}.  Also warn about any @code{return} statement with no
2913 return-value in a function whose return-type is not @code{void}
2914 (falling off the end of the function body is considered returning
2915 without a value), and about a @code{return} statement with a
2916 expression in a function whose return-type is @code{void}.
2917
2918 Also warn if the return type of a function has a type qualifier
2919 such as @code{const}.  For ISO C such a type qualifier has no effect,
2920 since the value returned by a function is not an lvalue.
2921 For C++, the warning is only emitted for scalar types or @code{void}.
2922 ISO C prohibits qualified @code{void} return types on function
2923 definitions, so such return types always receive a warning
2924 even without this option.
2925
2926 For C++, a function without return type always produces a diagnostic
2927 message, even when @option{-Wno-return-type} is specified.  The only
2928 exceptions are @samp{main} and functions defined in system headers.
2929
2930 This warning is enabled by @option{-Wall}.
2931
2932 @item -Wswitch
2933 @opindex Wswitch
2934 Warn whenever a @code{switch} statement has an index of enumerated type
2935 and lacks a @code{case} for one or more of the named codes of that
2936 enumeration.  (The presence of a @code{default} label prevents this
2937 warning.)  @code{case} labels outside the enumeration range also
2938 provoke warnings when this option is used.
2939 This warning is enabled by @option{-Wall}.
2940
2941 @item -Wswitch-default
2942 @opindex Wswitch-switch
2943 Warn whenever a @code{switch} statement does not have a @code{default}
2944 case.
2945
2946 @item -Wswitch-enum
2947 @opindex Wswitch-enum
2948 Warn whenever a @code{switch} statement has an index of enumerated type
2949 and lacks a @code{case} for one or more of the named codes of that
2950 enumeration.  @code{case} labels outside the enumeration range also
2951 provoke warnings when this option is used.
2952
2953 @item -Wtrigraphs
2954 @opindex Wtrigraphs
2955 Warn if any trigraphs are encountered that might change the meaning of
2956 the program (trigraphs within comments are not warned about).
2957 This warning is enabled by @option{-Wall}.
2958
2959 @item -Wunused-function
2960 @opindex Wunused-function
2961 Warn whenever a static function is declared but not defined or a
2962 non-inline static function is unused.
2963 This warning is enabled by @option{-Wall}.
2964
2965 @item -Wunused-label
2966 @opindex Wunused-label
2967 Warn whenever a label is declared but not used.
2968 This warning is enabled by @option{-Wall}.
2969
2970 To suppress this warning use the @samp{unused} attribute
2971 (@pxref{Variable Attributes}).
2972
2973 @item -Wunused-parameter
2974 @opindex Wunused-parameter
2975 Warn whenever a function parameter is unused aside from its declaration.
2976
2977 To suppress this warning use the @samp{unused} attribute
2978 (@pxref{Variable Attributes}).
2979
2980 @item -Wunused-variable
2981 @opindex Wunused-variable
2982 Warn whenever a local variable or non-constant static variable is unused
2983 aside from its declaration.
2984 This warning is enabled by @option{-Wall}.
2985
2986 To suppress this warning use the @samp{unused} attribute
2987 (@pxref{Variable Attributes}).
2988
2989 @item -Wunused-value
2990 @opindex Wunused-value
2991 Warn whenever a statement computes a result that is explicitly not
2992 used. To suppress this warning cast the unused expression to
2993 @samp{void}. This includes an expression-statement or the left-hand
2994 side of a comma expression that contains no side effects. For example,
2995 an expression such as @samp{x[i,j]} will cause a warning, while
2996 @samp{x[(void)i,j]} will not.
2997
2998 This warning is enabled by @option{-Wall}.
2999
3000 @item -Wunused
3001 @opindex Wunused
3002 All the above @option{-Wunused} options combined.
3003
3004 In order to get a warning about an unused function parameter, you must
3005 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3006 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3007
3008 @item -Wuninitialized
3009 @opindex Wuninitialized
3010 Warn if an automatic variable is used without first being initialized or
3011 if a variable may be clobbered by a @code{setjmp} call.
3012
3013 These warnings are possible only in optimizing compilation,
3014 because they require data flow information that is computed only
3015 when optimizing.  If you do not specify @option{-O}, you will not get
3016 these warnings. Instead, GCC will issue a warning about @option{-Wuninitialized}
3017 requiring @option{-O}.
3018
3019 If you want to warn about code which uses the uninitialized value of the
3020 variable in its own initializer, use the @option{-Winit-self} option.
3021
3022 These warnings occur for individual uninitialized or clobbered
3023 elements of structure, union or array variables as well as for
3024 variables which are uninitialized or clobbered as a whole.  They do
3025 not occur for variables or elements declared @code{volatile}.  Because
3026 these warnings depend on optimization, the exact variables or elements
3027 for which there are warnings will depend on the precise optimization
3028 options and version of GCC used.
3029
3030 Note that there may be no warning about a variable that is used only
3031 to compute a value that itself is never used, because such
3032 computations may be deleted by data flow analysis before the warnings
3033 are printed.
3034
3035 These warnings are made optional because GCC is not smart
3036 enough to see all the reasons why the code might be correct
3037 despite appearing to have an error.  Here is one example of how
3038 this can happen:
3039
3040 @smallexample
3041 @group
3042 @{
3043   int x;
3044   switch (y)
3045     @{
3046     case 1: x = 1;
3047       break;
3048     case 2: x = 4;
3049       break;
3050     case 3: x = 5;
3051     @}
3052   foo (x);
3053 @}
3054 @end group
3055 @end smallexample
3056
3057 @noindent
3058 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3059 always initialized, but GCC doesn't know this.  Here is
3060 another common case:
3061
3062 @smallexample
3063 @{
3064   int save_y;
3065   if (change_y) save_y = y, y = new_y;
3066   @dots{}
3067   if (change_y) y = save_y;
3068 @}
3069 @end smallexample
3070
3071 @noindent
3072 This has no bug because @code{save_y} is used only if it is set.
3073
3074 @cindex @code{longjmp} warnings
3075 This option also warns when a non-volatile automatic variable might be
3076 changed by a call to @code{longjmp}.  These warnings as well are possible
3077 only in optimizing compilation.
3078
3079 The compiler sees only the calls to @code{setjmp}.  It cannot know
3080 where @code{longjmp} will be called; in fact, a signal handler could
3081 call it at any point in the code.  As a result, you may get a warning
3082 even when there is in fact no problem because @code{longjmp} cannot
3083 in fact be called at the place which would cause a problem.
3084
3085 Some spurious warnings can be avoided if you declare all the functions
3086 you use that never return as @code{noreturn}.  @xref{Function
3087 Attributes}.
3088
3089 This warning is enabled by @option{-Wall}.
3090
3091 @item -Wunknown-pragmas
3092 @opindex Wunknown-pragmas
3093 @cindex warning for unknown pragmas
3094 @cindex unknown pragmas, warning
3095 @cindex pragmas, warning of unknown
3096 Warn when a #pragma directive is encountered which is not understood by
3097 GCC@.  If this command line option is used, warnings will even be issued
3098 for unknown pragmas in system header files.  This is not the case if
3099 the warnings were only enabled by the @option{-Wall} command line option.
3100
3101 @item -Wno-pragmas
3102 @opindex Wno-pragmas
3103 @opindex Wpragmas
3104 Do not warn about misuses of pragmas, such as incorrect parameters,
3105 invalid syntax, or conflicts between pragmas.  See also
3106 @samp{-Wunknown-pragmas}.
3107
3108 @item -Wstrict-aliasing
3109 @opindex Wstrict-aliasing
3110 This option is only active when @option{-fstrict-aliasing} is active.
3111 It warns about code which might break the strict aliasing rules that the
3112 compiler is using for optimization.  The warning does not catch all
3113 cases, but does attempt to catch the more common pitfalls.  It is
3114 included in @option{-Wall}.
3115 It is equivalent to @option{-Wstrict-aliasing=3}
3116
3117 @item -Wstrict-aliasing=n
3118 @opindex Wstrict-aliasing=n
3119 This option is only active when @option{-fstrict-aliasing} is active.
3120 It warns about code which might break the strict aliasing rules that the
3121 compiler is using for optimization.
3122 Higher levels correspond to higher accuracy (fewer false positives).
3123 Higher levels also correspond to more effort, similar to the way -O works.
3124 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3125 with n=3.
3126
3127 Level 1: Most aggressive, quick, least accurate.
3128 Possibly useful when higher levels
3129 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3130 false negatives.  However, it has many false positives.
3131 Warns for all pointer conversions between possibly incompatible types, 
3132 even if never dereferenced.  Runs in the frontend only.
3133
3134 Level 2: Aggressive, quick, not too precise.
3135 May still have many false positives (not as many as level 1 though),
3136 and few false negatives (but possibly more than level 1).
3137 Unlike level 1, it only warns when an address is taken.  Warns about
3138 incomplete types.  Runs in the frontend only.
3139
3140 Level 3 (default for @option{-Wstrict-aliasing}): 
3141 Should have very few false positives and few false 
3142 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3143 Takes care of the common punn+dereference pattern in the frontend:
3144 @code{*(int*)&some_float}.
3145 If optimization is enabled, it also runs in the backend, where it deals 
3146 with multiple statement cases using flow-sensitive points-to information.
3147 Only warns when the converted pointer is dereferenced.
3148 Does not warn about incomplete types.
3149
3150 @item -Wstrict-overflow
3151 @item -Wstrict-overflow=@var{n}
3152 @opindex Wstrict-overflow
3153 This option is only active when @option{-fstrict-overflow} is active.
3154 It warns about cases where the compiler optimizes based on the
3155 assumption that signed overflow does not occur.  Note that it does not
3156 warn about all cases where the code might overflow: it only warns
3157 about cases where the compiler implements some optimization.  Thus
3158 this warning depends on the optimization level.
3159
3160 An optimization which assumes that signed overflow does not occur is
3161 perfectly safe if the values of the variables involved are such that
3162 overflow never does, in fact, occur.  Therefore this warning can
3163 easily give a false positive: a warning about code which is not
3164 actually a problem.  To help focus on important issues, several
3165 warning levels are defined.  No warnings are issued for the use of
3166 undefined signed overflow when estimating how many iterations a loop
3167 will require, in particular when determining whether a loop will be
3168 executed at all.
3169
3170 @table @gcctabopt
3171 @item -Wstrict-overflow=1
3172 Warn about cases which are both questionable and easy to avoid.  For
3173 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3174 compiler will simplify this to @code{1}.  This level of
3175 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3176 are not, and must be explicitly requested.
3177
3178 @item -Wstrict-overflow=2
3179 Also warn about other cases where a comparison is simplified to a
3180 constant.  For example: @code{abs (x) >= 0}.  This can only be
3181 simplified when @option{-fstrict-overflow} is in effect, because
3182 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3183 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3184 @option{-Wstrict-overflow=2}.
3185
3186 @item -Wstrict-overflow=3
3187 Also warn about other cases where a comparison is simplified.  For
3188 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3189
3190 @item -Wstrict-overflow=4
3191 Also warn about other simplifications not covered by the above cases.
3192 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3193
3194 @item -Wstrict-overflow=5
3195 Also warn about cases where the compiler reduces the magnitude of a
3196 constant involved in a comparison.  For example: @code{x + 2 > y} will
3197 be simplified to @code{x + 1 >= y}.  This is reported only at the
3198 highest warning level because this simplification applies to many
3199 comparisons, so this warning level will give a very large number of
3200 false positives.
3201 @end table
3202
3203 @item -Warray-bounds
3204 @opindex Wno-array-bounds
3205 @opindex Warray-bounds
3206 This option is only active when @option{-ftree-vrp} is active
3207 (default for -O2 and above). It warns about subscripts to arrays
3208 that are always out of bounds. This warning is enabled by @option{-Wall}.
3209
3210 @end table
3211
3212 The following @option{-W@dots{}} options are not implied by @option{-Wall}.
3213 Some of them warn about constructions that users generally do not
3214 consider questionable, but which occasionally you might wish to check
3215 for; others warn about constructions that are necessary or hard to avoid
3216 in some cases, and there is no simple way to modify the code to suppress
3217 the warning.
3218
3219 @table @gcctabopt
3220 @item -Wextra
3221 @opindex W
3222 @opindex Wextra
3223 (This option used to be called @option{-W}.  The older name is still
3224 supported, but the newer name is more descriptive.)  Print extra warning
3225 messages for these events:
3226
3227 @itemize @bullet
3228 @item
3229 Warn if a comparison is always true or always false due to the limited
3230 range of the data type, but do not warn for constant expressions.  For
3231 example, warn if an unsigned variable is compared against zero with
3232 @samp{<} or @samp{>=}.  This warning can be independently controlled
3233 by @option{-Wtype-limits}.
3234
3235 @item @r{(C only)}
3236 Storage-class specifiers like @code{static} are not the first things
3237 in a declaration.  According to the C Standard, this usage is
3238 obsolescent.  This warning can be independently controlled by
3239 @option{-Wold-style-declaration}.
3240
3241 @item
3242 If @option{-Wall} or @option{-Wunused} is also specified, warn about unused
3243 arguments.
3244
3245 @item
3246 A comparison between signed and unsigned values could produce an
3247 incorrect result when the signed value is converted to unsigned.
3248 (But don't warn if @option{-Wno-sign-compare} is also specified.)
3249
3250 @item
3251 An aggregate has an initializer which does not initialize all members.
3252 This warning can be independently controlled by
3253 @option{-Wmissing-field-initializers}.
3254
3255 @item
3256 An initialized field without side effects is overridden when using
3257 designated initializers (@pxref{Designated Inits, , Designated
3258 Initializers}).  This warning can be independently controlled by
3259 @option{-Woverride-init}.
3260
3261 @item @r{(C only)}
3262 A function parameter is declared without a type specifier in K&R-style
3263 functions.  This warning can be independently controlled by
3264 @option{-Wmissing-parameter-type}.
3265
3266 @item
3267 An empty body occurs in an @samp{if}, @samp{else} or
3268 @samp{do while} statement. This warning can be independently
3269 controlled by @option{-Wempty-body}.
3270
3271 @item @r{(C++ only)}
3272 An empty body occurs in a @samp{while} or @samp{for} statement with no
3273 whitespacing before the semicolon. This warning can be independently
3274 controlled by @option{-Wempty-body}.
3275
3276 @item
3277 A pointer is compared against integer zero with @samp{<}, @samp{<=},
3278 @samp{>}, or @samp{>=}.
3279
3280 @item
3281 A variable might be changed by @samp{longjmp} or @samp{vfork}.
3282 This warning can be independently controlled by @option{-Wclobbered}.
3283
3284 @item @r{(C++ only)}
3285 An enumerator and a non-enumerator both appear in a conditional expression.
3286
3287 @item @r{(C++ only)}
3288 A non-static reference or non-static @samp{const} member appears in a
3289 class without constructors.
3290
3291 @item @r{(C++ only)}
3292 Ambiguous virtual bases.
3293
3294 @item @r{(C++ only)}
3295 Subscripting an array which has been declared @samp{register}.
3296
3297 @item @r{(C++ only)}
3298 Taking the address of a variable which has been declared @samp{register}.
3299
3300 @item @r{(C++ only)}
3301 A base class is not initialized in a derived class' copy constructor.
3302 @end itemize
3303
3304 @item -Wno-div-by-zero
3305 @opindex Wno-div-by-zero
3306 @opindex Wdiv-by-zero
3307 Do not warn about compile-time integer division by zero.  Floating point
3308 division by zero is not warned about, as it can be a legitimate way of
3309 obtaining infinities and NaNs.
3310
3311 @item -Wsystem-headers
3312 @opindex Wsystem-headers
3313 @cindex warnings from system headers
3314 @cindex system headers, warnings from
3315 Print warning messages for constructs found in system header files.
3316 Warnings from system headers are normally suppressed, on the assumption
3317 that they usually do not indicate real problems and would only make the
3318 compiler output harder to read.  Using this command line option tells
3319 GCC to emit warnings from system headers as if they occurred in user
3320 code.  However, note that using @option{-Wall} in conjunction with this
3321 option will @emph{not} warn about unknown pragmas in system
3322 headers---for that, @option{-Wunknown-pragmas} must also be used.
3323
3324 @item -Wfloat-equal
3325 @opindex Wfloat-equal
3326 Warn if floating point values are used in equality comparisons.
3327
3328 The idea behind this is that sometimes it is convenient (for the
3329 programmer) to consider floating-point values as approximations to
3330 infinitely precise real numbers.  If you are doing this, then you need
3331 to compute (by analyzing the code, or in some other way) the maximum or
3332 likely maximum error that the computation introduces, and allow for it
3333 when performing comparisons (and when producing output, but that's a
3334 different problem).  In particular, instead of testing for equality, you
3335 would check to see whether the two values have ranges that overlap; and
3336 this is done with the relational operators, so equality comparisons are
3337 probably mistaken.
3338
3339 @item -Wtraditional @r{(C only)}
3340 @opindex Wtraditional
3341 Warn about certain constructs that behave differently in traditional and
3342 ISO C@.  Also warn about ISO C constructs that have no traditional C
3343 equivalent, and/or problematic constructs which should be avoided.
3344
3345 @itemize @bullet
3346 @item
3347 Macro parameters that appear within string literals in the macro body.
3348 In traditional C macro replacement takes place within string literals,
3349 but does not in ISO C@.
3350
3351 @item
3352 In traditional C, some preprocessor directives did not exist.
3353 Traditional preprocessors would only consider a line to be a directive
3354 if the @samp{#} appeared in column 1 on the line.  Therefore
3355 @option{-Wtraditional} warns about directives that traditional C
3356 understands but would ignore because the @samp{#} does not appear as the
3357 first character on the line.  It also suggests you hide directives like
3358 @samp{#pragma} not understood by traditional C by indenting them.  Some
3359 traditional implementations would not recognize @samp{#elif}, so it
3360 suggests avoiding it altogether.
3361
3362 @item
3363 A function-like macro that appears without arguments.
3364
3365 @item
3366 The unary plus operator.
3367
3368 @item
3369 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3370 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3371 constants.)  Note, these suffixes appear in macros defined in the system
3372 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3373 Use of these macros in user code might normally lead to spurious
3374 warnings, however GCC's integrated preprocessor has enough context to
3375 avoid warning in these cases.
3376
3377 @item
3378 A function declared external in one block and then used after the end of
3379 the block.
3380
3381 @item
3382 A @code{switch} statement has an operand of type @code{long}.
3383
3384 @item
3385 A non-@code{static} function declaration follows a @code{static} one.
3386 This construct is not accepted by some traditional C compilers.
3387
3388 @item
3389 The ISO type of an integer constant has a different width or
3390 signedness from its traditional type.  This warning is only issued if
3391 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3392 typically represent bit patterns, are not warned about.
3393
3394 @item
3395 Usage of ISO string concatenation is detected.
3396
3397 @item
3398 Initialization of automatic aggregates.
3399
3400 @item
3401 Identifier conflicts with labels.  Traditional C lacks a separate
3402 namespace for labels.
3403
3404 @item
3405 Initialization of unions.  If the initializer is zero, the warning is
3406 omitted.  This is done under the assumption that the zero initializer in
3407 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3408 initializer warnings and relies on default initialization to zero in the
3409 traditional C case.
3410
3411 @item
3412 Conversions by prototypes between fixed/floating point values and vice
3413 versa.  The absence of these prototypes when compiling with traditional
3414 C would cause serious problems.  This is a subset of the possible
3415 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3416
3417 @item
3418 Use of ISO C style function definitions.  This warning intentionally is
3419 @emph{not} issued for prototype declarations or variadic functions
3420 because these ISO C features will appear in your code when using
3421 libiberty's traditional C compatibility macros, @code{PARAMS} and
3422 @code{VPARAMS}.  This warning is also bypassed for nested functions
3423 because that feature is already a GCC extension and thus not relevant to
3424 traditional C compatibility.
3425 @end itemize
3426
3427 @item -Wtraditional-conversion @r{(C only)}
3428 @opindex Wtraditional-conversion
3429 Warn if a prototype causes a type conversion that is different from what
3430 would happen to the same argument in the absence of a prototype.  This
3431 includes conversions of fixed point to floating and vice versa, and
3432 conversions changing the width or signedness of a fixed point argument
3433 except when the same as the default promotion.
3434
3435 @item -Wdeclaration-after-statement @r{(C only)}
3436 @opindex Wdeclaration-after-statement
3437 Warn when a declaration is found after a statement in a block.  This
3438 construct, known from C++, was introduced with ISO C99 and is by default
3439 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3440 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3441
3442 @item -Wundef
3443 @opindex Wundef
3444 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3445
3446 @item -Wno-endif-labels
3447 @opindex Wno-endif-labels
3448 @opindex Wendif-labels
3449 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3450
3451 @item -Wshadow
3452 @opindex Wshadow
3453 Warn whenever a local variable shadows another local variable, parameter or
3454 global variable or whenever a built-in function is shadowed.
3455
3456 @item -Wlarger-than-@var{len}
3457 @opindex Wlarger-than
3458 Warn whenever an object of larger than @var{len} bytes is defined.
3459
3460 @item -Wunsafe-loop-optimizations
3461 @opindex Wunsafe-loop-optimizations
3462 Warn if the loop cannot be optimized because the compiler could not
3463 assume anything on the bounds of the loop indices.  With
3464 @option{-funsafe-loop-optimizations} warn if the compiler made
3465 such assumptions.
3466
3467 @item -Wpointer-arith
3468 @opindex Wpointer-arith
3469 Warn about anything that depends on the ``size of'' a function type or
3470 of @code{void}.  GNU C assigns these types a size of 1, for
3471 convenience in calculations with @code{void *} pointers and pointers
3472 to functions.  In C++, warn also when an arithmetic operation involves
3473 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3474
3475 @item -Wtype-limits
3476 @opindex Wtype-limits
3477 @opindex Wno-type-limits
3478 Warn if a comparison is always true or always false due to the limited
3479 range of the data type, but do not warn for constant expressions.  For
3480 example, warn if an unsigned variable is compared against zero with
3481 @samp{<} or @samp{>=}.  This warning is also enabled by
3482 @option{-Wextra}.
3483
3484 @item -Wbad-function-cast @r{(C only)}
3485 @opindex Wbad-function-cast
3486 Warn whenever a function call is cast to a non-matching type.
3487 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3488
3489 @item -Wc++-compat
3490 Warn about ISO C constructs that are outside of the common subset of
3491 ISO C and ISO C++, e.g.@: request for implicit conversion from
3492 @code{void *} to a pointer to non-@code{void} type.
3493
3494 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3495 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3496 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3497 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3498
3499 @item -Wcast-qual
3500 @opindex Wcast-qual
3501 Warn whenever a pointer is cast so as to remove a type qualifier from
3502 the target type.  For example, warn if a @code{const char *} is cast
3503 to an ordinary @code{char *}.
3504
3505 @item -Wcast-align
3506 @opindex Wcast-align
3507 Warn whenever a pointer is cast such that the required alignment of the
3508 target is increased.  For example, warn if a @code{char *} is cast to
3509 an @code{int *} on machines where integers can only be accessed at
3510 two- or four-byte boundaries.
3511
3512 @item -Wwrite-strings
3513 @opindex Wwrite-strings
3514 When compiling C, give string constants the type @code{const
3515 char[@var{length}]} so that
3516 copying the address of one into a non-@code{const} @code{char *}
3517 pointer will get a warning; when compiling C++, warn about the
3518 deprecated conversion from string literals to @code{char *}.  This
3519 warning, by default, is enabled for C++ programs.
3520 These warnings will help you find at
3521 compile time code that can try to write into a string constant, but
3522 only if you have been very careful about using @code{const} in
3523 declarations and prototypes.  Otherwise, it will just be a nuisance;
3524 this is why we did not make @option{-Wall} request these warnings.
3525
3526 @item -Wclobbered
3527 @opindex Wclobbered
3528 Warn for variables that might be changed by @samp{longjmp} or
3529 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3530
3531 @item -Wconversion
3532 @opindex Wconversion
3533 @opindex Wno-conversion
3534 Warn for implicit conversions that may alter a value. This includes
3535 conversions between real and integer, like @code{abs (x)} when
3536 @code{x} is @code{double}; conversions between signed and unsigned,
3537 like @code{unsigned ui = -1}; and conversions to smaller types, like
3538 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3539 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3540 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3541 conversions between signed and unsigned integers can be disabled by
3542 using @option{-Wno-sign-conversion}.
3543
3544 For C++, also warn for conversions between @code{NULL} and non-pointer
3545 types; confusing overload resolution for user-defined conversions; and
3546 conversions that will never use a type conversion operator:
3547 conversions to @code{void}, the same type, a base class or a reference
3548 to them. Warnings about conversions between signed and unsigned
3549 integers are disabled by default in C++ unless
3550 @option{-Wsign-conversion} is explicitly enabled.
3551
3552 @item -Wempty-body
3553 @opindex Wempty-body
3554 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3555 while} statement.  Additionally, in C++, warn when an empty body occurs
3556 in a @samp{while} or @samp{for} statement with no whitespacing before
3557 the semicolon.  This warning is also enabled by @option{-Wextra}.
3558
3559 @item -Wsign-compare
3560 @opindex Wsign-compare
3561 @cindex warning for comparison of signed and unsigned values
3562 @cindex comparison of signed and unsigned values, warning
3563 @cindex signed and unsigned values, comparison warning
3564 Warn when a comparison between signed and unsigned values could produce
3565 an incorrect result when the signed value is converted to unsigned.
3566 This warning is also enabled by @option{-Wextra}; to get the other warnings
3567 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3568
3569 @item -Wsign-conversion
3570 @opindex Wsign-conversion
3571 @opindex Wno-sign-conversion
3572 Warn for implicit conversions that may change the sign of an integer
3573 value, like assigning a signed integer expression to an unsigned
3574 integer variable. An explicit cast silences the warning. In C, this
3575 option is enabled also by @option{-Wconversion}.
3576
3577 @item -Waddress
3578 @opindex Waddress
3579 @opindex Wno-address
3580 Warn about suspicious uses of memory addresses. These include using
3581 the address of a function in a conditional expression, such as
3582 @code{void func(void); if (func)}, and comparisons against the memory
3583 address of a string literal, such as @code{if (x == "abc")}.  Such
3584 uses typically indicate a programmer error: the address of a function
3585 always evaluates to true, so their use in a conditional usually
3586 indicate that the programmer forgot the parentheses in a function
3587 call; and comparisons against string literals result in unspecified
3588 behavior and are not portable in C, so they usually indicate that the
3589 programmer intended to use @code{strcmp}.  This warning is enabled by
3590 @option{-Wall}.
3591
3592 @item -Wlogical-op
3593 @opindex Wlogical-op
3594 @opindex Wno-logical-op
3595 Warn about suspicious uses of logical operators in expressions.
3596 This includes using logical operators in contexts where a
3597 bit-wise operator is likely to be expected.
3598
3599 @item -Waggregate-return
3600 @opindex Waggregate-return
3601 Warn if any functions that return structures or unions are defined or
3602 called.  (In languages where you can return an array, this also elicits
3603 a warning.)
3604
3605 @item -Wno-attributes
3606 @opindex Wno-attributes
3607 @opindex Wattributes
3608 Do not warn if an unexpected @code{__attribute__} is used, such as
3609 unrecognized attributes, function attributes applied to variables,
3610 etc.  This will not stop errors for incorrect use of supported
3611 attributes.
3612
3613 @item -Wstrict-prototypes @r{(C only)}
3614 @opindex Wstrict-prototypes
3615 Warn if a function is declared or defined without specifying the
3616 argument types.  (An old-style function definition is permitted without
3617 a warning if preceded by a declaration which specifies the argument
3618 types.)
3619
3620 @item -Wold-style-declaration @r{(C only)}
3621 @opindex Wold-style-declaration
3622 Warn for obsolescent usages, according to the C Standard, in a
3623 declaration. For example, warn if storage-class specifiers like
3624 @code{static} are not the first things in a declaration.  This warning
3625 is also enabled by @option{-Wextra}.
3626
3627 @item -Wold-style-definition @r{(C only)}
3628 @opindex Wold-style-definition
3629 Warn if an old-style function definition is used.  A warning is given
3630 even if there is a previous prototype.
3631
3632 @item -Wmissing-parameter-type @r{(C only)}
3633 @opindex Wmissing-parameter-type
3634 A function parameter is declared without a type specifier in K&R-style
3635 functions:
3636
3637 @smallexample
3638 void foo(bar) @{ @}
3639 @end smallexample
3640
3641 This warning is also enabled by @option{-Wextra}.
3642
3643 @item -Wmissing-prototypes @r{(C only)}
3644 @opindex Wmissing-prototypes
3645 Warn if a global function is defined without a previous prototype
3646 declaration.  This warning is issued even if the definition itself
3647 provides a prototype.  The aim is to detect global functions that fail
3648 to be declared in header files.
3649
3650 @item -Wmissing-declarations @r{(C and C++ only)}
3651 @opindex Wmissing-declarations
3652 Warn if a global function is defined without a previous declaration.
3653 Do so even if the definition itself provides a prototype.
3654 Use this option to detect global functions that are not declared in
3655 header files.  In C++, no warnings are issued for function templates,
3656 or for inline functions, or for functions in anonymous namespaces.
3657
3658 @item -Wmissing-field-initializers
3659 @opindex Wmissing-field-initializers
3660 @opindex W
3661 @opindex Wextra
3662 Warn if a structure's initializer has some fields missing.  For
3663 example, the following code would cause such a warning, because
3664 @code{x.h} is implicitly zero:
3665
3666 @smallexample
3667 struct s @{ int f, g, h; @};
3668 struct s x = @{ 3, 4 @};
3669 @end smallexample
3670
3671 This option does not warn about designated initializers, so the following
3672 modification would not trigger a warning:
3673
3674 @smallexample
3675 struct s @{ int f, g, h; @};
3676 struct s x = @{ .f = 3, .g = 4 @};
3677 @end smallexample
3678
3679 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3680 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3681
3682 @item -Wmissing-noreturn
3683 @opindex Wmissing-noreturn
3684 Warn about functions which might be candidates for attribute @code{noreturn}.
3685 Note these are only possible candidates, not absolute ones.  Care should
3686 be taken to manually verify functions actually do not ever return before
3687 adding the @code{noreturn} attribute, otherwise subtle code generation
3688 bugs could be introduced.  You will not get a warning for @code{main} in
3689 hosted C environments.
3690
3691 @item -Wmissing-format-attribute
3692 @opindex Wmissing-format-attribute
3693 @opindex Wformat
3694 Warn about function pointers which might be candidates for @code{format}
3695 attributes.  Note these are only possible candidates, not absolute ones.
3696 GCC will guess that function pointers with @code{format} attributes that
3697 are used in assignment, initialization, parameter passing or return
3698 statements should have a corresponding @code{format} attribute in the
3699 resulting type.  I.e.@: the left-hand side of the assignment or
3700 initialization, the type of the parameter variable, or the return type
3701 of the containing function respectively should also have a @code{format}
3702 attribute to avoid the warning.
3703
3704 GCC will also warn about function definitions which might be
3705 candidates for @code{format} attributes.  Again, these are only
3706 possible candidates.  GCC will guess that @code{format} attributes
3707 might be appropriate for any function that calls a function like
3708 @code{vprintf} or @code{vscanf}, but this might not always be the
3709 case, and some functions for which @code{format} attributes are
3710 appropriate may not be detected.
3711
3712 @item -Wno-multichar
3713 @opindex Wno-multichar
3714 @opindex Wmultichar
3715 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3716 Usually they indicate a typo in the user's code, as they have
3717 implementation-defined values, and should not be used in portable code.
3718
3719 @item -Wnormalized=<none|id|nfc|nfkc>
3720 @opindex Wnormalized
3721 @cindex NFC
3722 @cindex NFKC
3723 @cindex character set, input normalization
3724 In ISO C and ISO C++, two identifiers are different if they are
3725 different sequences of characters.  However, sometimes when characters
3726 outside the basic ASCII character set are used, you can have two
3727 different character sequences that look the same.  To avoid confusion,
3728 the ISO 10646 standard sets out some @dfn{normalization rules} which
3729 when applied ensure that two sequences that look the same are turned into
3730 the same sequence.  GCC can warn you if you are using identifiers which
3731 have not been normalized; this option controls that warning.
3732
3733 There are four levels of warning that GCC supports.  The default is
3734 @option{-Wnormalized=nfc}, which warns about any identifier which is
3735 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3736 recommended form for most uses.
3737
3738 Unfortunately, there are some characters which ISO C and ISO C++ allow
3739 in identifiers that when turned into NFC aren't allowable as
3740 identifiers.  That is, there's no way to use these symbols in portable
3741 ISO C or C++ and have all your identifiers in NFC.
3742 @option{-Wnormalized=id} suppresses the warning for these characters.
3743 It is hoped that future versions of the standards involved will correct
3744 this, which is why this option is not the default.
3745
3746 You can switch the warning off for all characters by writing
3747 @option{-Wnormalized=none}.  You would only want to do this if you
3748 were using some other normalization scheme (like ``D''), because
3749 otherwise you can easily create bugs that are literally impossible to see.
3750
3751 Some characters in ISO 10646 have distinct meanings but look identical
3752 in some fonts or display methodologies, especially once formatting has
3753 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3754 LETTER N'', will display just like a regular @code{n} which has been
3755 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3756 normalization scheme to convert all these into a standard form as
3757 well, and GCC will warn if your code is not in NFKC if you use
3758 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3759 about every identifier that contains the letter O because it might be
3760 confused with the digit 0, and so is not the default, but may be
3761 useful as a local coding convention if the programming environment is
3762 unable to be fixed to display these characters distinctly.
3763
3764 @item -Wno-deprecated-declarations
3765 @opindex Wno-deprecated-declarations
3766 Do not warn about uses of functions (@pxref{Function Attributes}),
3767 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3768 Attributes}) marked as deprecated by using the @code{deprecated}
3769 attribute.
3770
3771 @item -Wno-overflow
3772 @opindex Wno-overflow
3773 Do not warn about compile-time overflow in constant expressions.
3774
3775 @item -Woverride-init
3776 @opindex Woverride-init
3777 @opindex W
3778 @opindex Wextra
3779 Warn if an initialized field without side effects is overridden when
3780 using designated initializers (@pxref{Designated Inits, , Designated
3781 Initializers}).
3782
3783 This warning is included in @option{-Wextra}.  To get other
3784 @option{-Wextra} warnings without this one, use @samp{-Wextra
3785 -Wno-override-init}.
3786
3787 @item -Wpacked
3788 @opindex Wpacked
3789 Warn if a structure is given the packed attribute, but the packed
3790 attribute has no effect on the layout or size of the structure.
3791 Such structures may be mis-aligned for little benefit.  For
3792 instance, in this code, the variable @code{f.x} in @code{struct bar}
3793 will be misaligned even though @code{struct bar} does not itself
3794 have the packed attribute:
3795
3796 @smallexample
3797 @group
3798 struct foo @{
3799   int x;
3800   char a, b, c, d;
3801 @} __attribute__((packed));
3802 struct bar @{
3803   char z;
3804   struct foo f;
3805 @};
3806 @end group
3807 @end smallexample
3808
3809 @item -Wpadded
3810 @opindex Wpadded
3811 Warn if padding is included in a structure, either to align an element
3812 of the structure or to align the whole structure.  Sometimes when this
3813 happens it is possible to rearrange the fields of the structure to
3814 reduce the padding and so make the structure smaller.
3815
3816 @item -Wredundant-decls
3817 @opindex Wredundant-decls
3818 Warn if anything is declared more than once in the same scope, even in
3819 cases where multiple declaration is valid and changes nothing.
3820
3821 @item -Wnested-externs @r{(C only)}
3822 @opindex Wnested-externs
3823 Warn if an @code{extern} declaration is encountered within a function.
3824
3825 @item -Wunreachable-code
3826 @opindex Wunreachable-code
3827 Warn if the compiler detects that code will never be executed.
3828
3829 This option is intended to warn when the compiler detects that at
3830 least a whole line of source code will never be executed, because
3831 some condition is never satisfied or because it is after a
3832 procedure that never returns.
3833
3834 It is possible for this option to produce a warning even though there
3835 are circumstances under which part of the affected line can be executed,
3836 so care should be taken when removing apparently-unreachable code.
3837
3838 For instance, when a function is inlined, a warning may mean that the
3839 line is unreachable in only one inlined copy of the function.
3840
3841 This option is not made part of @option{-Wall} because in a debugging
3842 version of a program there is often substantial code which checks
3843 correct functioning of the program and is, hopefully, unreachable
3844 because the program does work.  Another common use of unreachable
3845 code is to provide behavior which is selectable at compile-time.
3846
3847 @item -Winline
3848 @opindex Winline
3849 Warn if a function can not be inlined and it was declared as inline.
3850 Even with this option, the compiler will not warn about failures to
3851 inline functions declared in system headers.
3852
3853 The compiler uses a variety of heuristics to determine whether or not
3854 to inline a function.  For example, the compiler takes into account
3855 the size of the function being inlined and the amount of inlining
3856 that has already been done in the current function.  Therefore,
3857 seemingly insignificant changes in the source program can cause the
3858 warnings produced by @option{-Winline} to appear or disappear.
3859
3860 @item -Wno-invalid-offsetof @r{(C++ only)}
3861 @opindex Wno-invalid-offsetof
3862 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3863 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3864 to a non-POD type is undefined.  In existing C++ implementations,
3865 however, @samp{offsetof} typically gives meaningful results even when
3866 applied to certain kinds of non-POD types. (Such as a simple
3867 @samp{struct} that fails to be a POD type only by virtue of having a
3868 constructor.)  This flag is for users who are aware that they are
3869 writing nonportable code and who have deliberately chosen to ignore the
3870 warning about it.
3871
3872 The restrictions on @samp{offsetof} may be relaxed in a future version
3873 of the C++ standard.
3874
3875 @item -Wno-int-to-pointer-cast @r{(C only)}
3876 @opindex Wno-int-to-pointer-cast
3877 Suppress warnings from casts to pointer type of an integer of a
3878 different size.
3879
3880 @item -Wno-pointer-to-int-cast @r{(C only)}
3881 @opindex Wno-pointer-to-int-cast
3882 Suppress warnings from casts from a pointer to an integer type of a
3883 different size.
3884
3885 @item -Winvalid-pch
3886 @opindex Winvalid-pch
3887 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
3888 the search path but can't be used.
3889
3890 @item -Wlong-long
3891 @opindex Wlong-long
3892 @opindex Wno-long-long
3893 Warn if @samp{long long} type is used.  This is default.  To inhibit
3894 the warning messages, use @option{-Wno-long-long}.  Flags
3895 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
3896 only when @option{-pedantic} flag is used.
3897
3898 @item -Wvariadic-macros
3899 @opindex Wvariadic-macros
3900 @opindex Wno-variadic-macros
3901 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
3902 alternate syntax when in pedantic ISO C99 mode.  This is default.
3903 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
3904
3905 @item -Wvla
3906 @opindex Wvla
3907 @opindex Wno-vla
3908 Warn if variable length array is used in the code.
3909 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
3910 the variable length array.
3911
3912 @item -Wvolatile-register-var
3913 @opindex Wvolatile-register-var
3914 @opindex Wno-volatile-register-var
3915 Warn if a register variable is declared volatile.  The volatile
3916 modifier does not inhibit all optimizations that may eliminate reads
3917 and/or writes to register variables.
3918
3919 @item -Wdisabled-optimization
3920 @opindex Wdisabled-optimization
3921 Warn if a requested optimization pass is disabled.  This warning does
3922 not generally indicate that there is anything wrong with your code; it
3923 merely indicates that GCC's optimizers were unable to handle the code
3924 effectively.  Often, the problem is that your code is too big or too
3925 complex; GCC will refuse to optimize programs when the optimization
3926 itself is likely to take inordinate amounts of time.
3927
3928 @item -Wpointer-sign
3929 @opindex Wpointer-sign
3930 @opindex Wno-pointer-sign
3931 Warn for pointer argument passing or assignment with different signedness.
3932 This option is only supported for C and Objective-C@.  It is implied by
3933 @option{-Wall} and by @option{-pedantic}, which can be disabled with
3934 @option{-Wno-pointer-sign}.
3935
3936 @item -Werror
3937 @opindex Werror
3938 Make all warnings into errors.
3939
3940 @item -Werror=
3941 @opindex Werror=
3942 Make the specified warning into an errors.  The specifier for a
3943 warning is appended, for example @option{-Werror=switch} turns the
3944 warnings controlled by @option{-Wswitch} into errors.  This switch
3945 takes a negative form, to be used to negate @option{-Werror} for
3946 specific warnings, for example @option{-Wno-error=switch} makes
3947 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
3948 is in effect.  You can use the @option{-fdiagnostics-show-option}
3949 option to have each controllable warning amended with the option which
3950 controls it, to determine what to use with this option.
3951
3952 Note that specifying @option{-Werror=}@var{foo} automatically implies
3953 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
3954 imply anything.
3955
3956 @item -Wstack-protector
3957 @opindex Wstack-protector
3958 This option is only active when @option{-fstack-protector} is active.  It
3959 warns about functions that will not be protected against stack smashing.
3960
3961 @item -Woverlength-strings
3962 @opindex Woverlength-strings
3963 Warn about string constants which are longer than the ``minimum
3964 maximum'' length specified in the C standard.  Modern compilers
3965 generally allow string constants which are much longer than the
3966 standard's minimum limit, but very portable programs should avoid
3967 using longer strings.
3968
3969 The limit applies @emph{after} string constant concatenation, and does
3970 not count the trailing NUL@.  In C89, the limit was 509 characters; in
3971 C99, it was raised to 4095.  C++98 does not specify a normative
3972 minimum maximum, so we do not diagnose overlength strings in C++@.
3973
3974 This option is implied by @option{-pedantic}, and can be disabled with
3975 @option{-Wno-overlength-strings}.
3976 @end table
3977
3978 @node Debugging Options
3979 @section Options for Debugging Your Program or GCC
3980 @cindex options, debugging
3981 @cindex debugging information options
3982
3983 GCC has various special options that are used for debugging
3984 either your program or GCC:
3985
3986 @table @gcctabopt
3987 @item -g
3988 @opindex g
3989 Produce debugging information in the operating system's native format
3990 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
3991 information.
3992
3993 On most systems that use stabs format, @option{-g} enables use of extra
3994 debugging information that only GDB can use; this extra information
3995 makes debugging work better in GDB but will probably make other debuggers
3996 crash or
3997 refuse to read the program.  If you want to control for certain whether
3998 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
3999 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
4000
4001 GCC allows you to use @option{-g} with
4002 @option{-O}.  The shortcuts taken by optimized code may occasionally
4003 produce surprising results: some variables you declared may not exist
4004 at all; flow of control may briefly move where you did not expect it;
4005 some statements may not be executed because they compute constant
4006 results or their values were already at hand; some statements may
4007 execute in different places because they were moved out of loops.
4008
4009 Nevertheless it proves possible to debug optimized output.  This makes
4010 it reasonable to use the optimizer for programs that might have bugs.
4011
4012 The following options are useful when GCC is generated with the
4013 capability for more than one debugging format.
4014
4015 @item -ggdb
4016 @opindex ggdb
4017 Produce debugging information for use by GDB@.  This means to use the
4018 most expressive format available (DWARF 2, stabs, or the native format
4019 if neither of those are supported), including GDB extensions if at all
4020 possible.
4021
4022 @item -gstabs
4023 @opindex gstabs
4024 Produce debugging information in stabs format (if that is supported),
4025 without GDB extensions.  This is the format used by DBX on most BSD
4026 systems.  On MIPS, Alpha and System V Release 4 systems this option
4027 produces stabs debugging output which is not understood by DBX or SDB@.
4028 On System V Release 4 systems this option requires the GNU assembler.
4029
4030 @item -feliminate-unused-debug-symbols
4031 @opindex feliminate-unused-debug-symbols
4032 Produce debugging information in stabs format (if that is supported),
4033 for only symbols that are actually used.
4034
4035 @item -femit-class-debug-always
4036 Instead of emitting debugging information for a C++ class in only one
4037 object file, emit it in all object files using the class.  This option
4038 should be used only with debuggers that are unable to handle the way GCC
4039 normally emits debugging information for classes because using this
4040 option will increase the size of debugging information by as much as a
4041 factor of two.
4042
4043 @item -gstabs+
4044 @opindex gstabs+
4045 Produce debugging information in stabs format (if that is supported),
4046 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4047 use of these extensions is likely to make other debuggers crash or
4048 refuse to read the program.
4049
4050 @item -gcoff
4051 @opindex gcoff
4052 Produce debugging information in COFF format (if that is supported).
4053 This is the format used by SDB on most System V systems prior to
4054 System V Release 4.
4055
4056 @item -gxcoff
4057 @opindex gxcoff
4058 Produce debugging information in XCOFF format (if that is supported).
4059 This is the format used by the DBX debugger on IBM RS/6000 systems.
4060
4061 @item -gxcoff+
4062 @opindex gxcoff+
4063 Produce debugging information in XCOFF format (if that is supported),
4064 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4065 use of these extensions is likely to make other debuggers crash or
4066 refuse to read the program, and may cause assemblers other than the GNU
4067 assembler (GAS) to fail with an error.
4068
4069 @item -gdwarf-2
4070 @opindex gdwarf-2
4071 Produce debugging information in DWARF version 2 format (if that is
4072 supported).  This is the format used by DBX on IRIX 6.  With this
4073 option, GCC uses features of DWARF version 3 when they are useful;
4074 version 3 is upward compatible with version 2, but may still cause
4075 problems for older debuggers.
4076
4077 @item -gvms
4078 @opindex gvms
4079 Produce debugging information in VMS debug format (if that is
4080 supported).  This is the format used by DEBUG on VMS systems.
4081
4082 @item -g@var{level}
4083 @itemx -ggdb@var{level}
4084 @itemx -gstabs@var{level}
4085 @itemx -gcoff@var{level}
4086 @itemx -gxcoff@var{level}
4087 @itemx -gvms@var{level}
4088 Request debugging information and also use @var{level} to specify how
4089 much information.  The default level is 2.
4090
4091 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4092 @option{-g}.
4093
4094 Level 1 produces minimal information, enough for making backtraces in
4095 parts of the program that you don't plan to debug.  This includes
4096 descriptions of functions and external variables, but no information
4097 about local variables and no line numbers.
4098
4099 Level 3 includes extra information, such as all the macro definitions
4100 present in the program.  Some debuggers support macro expansion when
4101 you use @option{-g3}.
4102
4103 @option{-gdwarf-2} does not accept a concatenated debug level, because
4104 GCC used to support an option @option{-gdwarf} that meant to generate
4105 debug information in version 1 of the DWARF format (which is very
4106 different from version 2), and it would have been too confusing.  That
4107 debug format is long obsolete, but the option cannot be changed now.
4108 Instead use an additional @option{-g@var{level}} option to change the
4109 debug level for DWARF2.
4110
4111 @item -feliminate-dwarf2-dups
4112 @opindex feliminate-dwarf2-dups
4113 Compress DWARF2 debugging information by eliminating duplicated
4114 information about each symbol.  This option only makes sense when
4115 generating DWARF2 debugging information with @option{-gdwarf-2}.
4116
4117 @item -femit-struct-debug-baseonly
4118 Emit debug information for struct-like types
4119 only when the base name of the compilation source file
4120 matches the base name of file in which the struct was defined.
4121
4122 This option substantially reduces the size of debugging information,
4123 but at significant potential loss in type information to the debugger.
4124 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4125 See @option{-femit-struct-debug-detailed} for more detailed control.
4126
4127 This option works only with DWARF 2.
4128
4129 @item -femit-struct-debug-reduced
4130 Emit debug information for struct-like types
4131 only when the base name of the compilation source file
4132 matches the base name of file in which the type was defined,
4133 unless the struct is a template or defined in a system header.
4134
4135 This option significantly reduces the size of debugging information,
4136 with some potential loss in type information to the debugger.
4137 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4138 See @option{-femit-struct-debug-detailed} for more detailed control.
4139
4140 This option works only with DWARF 2.
4141
4142 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4143 Specify the struct-like types
4144 for which the compiler will generate debug information.
4145 The intent is to reduce duplicate struct debug information
4146 between different object files within the same program.
4147
4148 This option is a detailed version of
4149 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4150 which will serve for most needs.
4151
4152 A specification has the syntax
4153 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4154
4155 The optional first word limits the specification to
4156 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4157 A struct type is used directly when it is the type of a variable, member.
4158 Indirect uses arise through pointers to structs.
4159 That is, when use of an incomplete struct would be legal, the use is indirect.
4160 An example is
4161 @samp{struct one direct; struct two * indirect;}.
4162
4163 The optional second word limits the specification to
4164 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4165 Generic structs are a bit complicated to explain.
4166 For C++, these are non-explicit specializations of template classes,
4167 or non-template classes within the above.
4168 Other programming languages have generics,
4169 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4170
4171 The third word specifies the source files for those
4172 structs for which the compiler will emit debug information.
4173 The values @samp{none} and @samp{any} have the normal meaning.
4174 The value @samp{base} means that
4175 the base of name of the file in which the type declaration appears
4176 must match the base of the name of the main compilation file.
4177 In practice, this means that
4178 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4179 but types declared in other header will not.
4180 The value @samp{sys} means those types satisfying @samp{base}
4181 or declared in system or compiler headers.
4182
4183 You may need to experiment to determine the best settings for your application.
4184
4185 The default is @samp{-femit-struct-debug-detailed=all}.
4186
4187 This option works only with DWARF 2.
4188
4189 @item -fdebug-prefix-map=@var{old}=@var{new}
4190 @opindex fdebug-prefix-map
4191 When compiling files in directory @file{@var{old}}, record debugging
4192 information describing them as in @file{@var{new}} instead.
4193
4194 @cindex @command{prof}
4195 @item -p
4196 @opindex p
4197 Generate extra code to write profile information suitable for the
4198 analysis program @command{prof}.  You must use this option when compiling
4199 the source files you want data about, and you must also use it when
4200 linking.
4201
4202 @cindex @command{gprof}
4203 @item -pg
4204 @opindex pg
4205 Generate extra code to write profile information suitable for the
4206 analysis program @command{gprof}.  You must use this option when compiling
4207 the source files you want data about, and you must also use it when
4208 linking.
4209
4210 @item -Q
4211 @opindex Q
4212 Makes the compiler print out each function name as it is compiled, and
4213 print some statistics about each pass when it finishes.
4214
4215 @item -ftime-report
4216 @opindex ftime-report
4217 Makes the compiler print some statistics about the time consumed by each
4218 pass when it finishes.
4219
4220 @item -fmem-report
4221 @opindex fmem-report
4222 Makes the compiler print some statistics about permanent memory
4223 allocation when it finishes.
4224
4225 @item -fpre-ipa-mem-report
4226 @opindex fpre-ipa-mem-report
4227 @item -fpost-ipa-mem-report
4228 @opindex fpost-ipa-mem-report
4229 Makes the compiler print some statistics about permanent memory
4230 allocation before or after interprocedural optimization.
4231
4232 @item -fprofile-arcs
4233 @opindex fprofile-arcs
4234 Add code so that program flow @dfn{arcs} are instrumented.  During
4235 execution the program records how many times each branch and call is
4236 executed and how many times it is taken or returns.  When the compiled
4237 program exits it saves this data to a file called
4238 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4239 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4240 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4241 @var{auxname} is generated from the name of the output file, if
4242 explicitly specified and it is not the final executable, otherwise it is
4243 the basename of the source file.  In both cases any suffix is removed
4244 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4245 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4246 @xref{Cross-profiling}.
4247
4248 @cindex @command{gcov}
4249 @item --coverage
4250 @opindex coverage
4251
4252 This option is used to compile and link code instrumented for coverage
4253 analysis.  The option is a synonym for @option{-fprofile-arcs}
4254 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4255 linking).  See the documentation for those options for more details.
4256
4257 @itemize
4258
4259 @item
4260 Compile the source files with @option{-fprofile-arcs} plus optimization
4261 and code generation options.  For test coverage analysis, use the
4262 additional @option{-ftest-coverage} option.  You do not need to profile
4263 every source file in a program.
4264
4265 @item
4266 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4267 (the latter implies the former).
4268
4269 @item
4270 Run the program on a representative workload to generate the arc profile
4271 information.  This may be repeated any number of times.  You can run
4272 concurrent instances of your program, and provided that the file system
4273 supports locking, the data files will be correctly updated.  Also
4274 @code{fork} calls are detected and correctly handled (double counting
4275 will not happen).
4276
4277 @item
4278 For profile-directed optimizations, compile the source files again with
4279 the same optimization and code generation options plus
4280 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4281 Control Optimization}).
4282
4283 @item
4284 For test coverage analysis, use @command{gcov} to produce human readable
4285 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4286 @command{gcov} documentation for further information.
4287
4288 @end itemize
4289
4290 With @option{-fprofile-arcs}, for each function of your program GCC
4291 creates a program flow graph, then finds a spanning tree for the graph.
4292 Only arcs that are not on the spanning tree have to be instrumented: the
4293 compiler adds code to count the number of times that these arcs are
4294 executed.  When an arc is the only exit or only entrance to a block, the
4295 instrumentation code can be added to the block; otherwise, a new basic
4296 block must be created to hold the instrumentation code.
4297
4298 @need 2000
4299 @item -ftest-coverage
4300 @opindex ftest-coverage
4301 Produce a notes file that the @command{gcov} code-coverage utility
4302 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4303 show program coverage.  Each source file's note file is called
4304 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4305 above for a description of @var{auxname} and instructions on how to
4306 generate test coverage data.  Coverage data will match the source files
4307 more closely, if you do not optimize.
4308
4309 @item -fdbg-cnt-list
4310 @opindex fdbg-cnt-list
4311 Print the name and the counter upperbound for all debug counters.
4312
4313 @item -fdbg-cnt=@var{counter-value-list}
4314 @opindex fdbg-cnt
4315 Set the internal debug counter upperbound. @var{counter-value-list} 
4316 is a comma-separated list of @var{name}:@var{value} pairs
4317 which sets the upperbound of each debug counter @var{name} to @var{value}.
4318 All debug counters have the initial upperbound of @var{UINT_MAX},
4319 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4320 e.g. With -fdbg-cnt=dce:10,tail_call:0
4321 dbg_cnt(dce) will return true only for first 10 invocations
4322 and dbg_cnt(tail_call) will return false always.
4323
4324 @item -d@var{letters}
4325 @item -fdump-rtl-@var{pass}
4326 @opindex d
4327 Says to make debugging dumps during compilation at times specified by
4328 @var{letters}.    This is used for debugging the RTL-based passes of the
4329 compiler.  The file names for most of the dumps are made by appending a
4330 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4331 from the name of the output file, if explicitly specified and it is not
4332 an executable, otherwise it is the basename of the source file. These
4333 switches may have different effects when @option{-E} is used for
4334 preprocessing.
4335
4336 Most debug dumps can be enabled either passing a letter to the @option{-d}
4337 option, or with a long @option{-fdump-rtl} switch; here are the possible
4338 letters for use in @var{letters} and @var{pass}, and their meanings:
4339
4340 @table @gcctabopt
4341 @item -dA
4342 @opindex dA
4343 Annotate the assembler output with miscellaneous debugging information.
4344
4345 @item -dB
4346 @itemx -fdump-rtl-bbro
4347 @opindex dB
4348 @opindex fdump-rtl-bbro
4349 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4350
4351 @item -dc
4352 @itemx -fdump-rtl-combine
4353 @opindex dc
4354 @opindex fdump-rtl-combine
4355 Dump after the RTL instruction combination pass, to the file
4356 @file{@var{file}.129r.combine}.
4357
4358 @item -dC
4359 @itemx -fdump-rtl-ce1
4360 @itemx -fdump-rtl-ce2
4361 @opindex dC
4362 @opindex fdump-rtl-ce1
4363 @opindex fdump-rtl-ce2
4364 @option{-dC} and @option{-fdump-rtl-ce1} enable dumping after the
4365 first if conversion, to the file @file{@var{file}.117r.ce1}.  @option{-dC}
4366 and @option{-fdump-rtl-ce2} enable dumping after the second if
4367 conversion, to the file @file{@var{file}.130r.ce2}.
4368
4369 @item -dd
4370 @itemx -fdump-rtl-btl
4371 @itemx -fdump-rtl-dbr
4372 @opindex dd
4373 @opindex fdump-rtl-btl
4374 @opindex fdump-rtl-dbr
4375 @option{-dd} and @option{-fdump-rtl-btl} enable dumping after branch
4376 target load optimization, to @file{@var{file}.31.btl}.  @option{-dd}
4377 and @option{-fdump-rtl-dbr} enable dumping after delayed branch
4378 scheduling, to @file{@var{file}.36.dbr}.
4379
4380 @item -dD
4381 @opindex dD
4382 Dump all macro definitions, at the end of preprocessing, in addition to
4383 normal output.
4384
4385 @item -dE
4386 @itemx -fdump-rtl-ce3
4387 @opindex dE
4388 @opindex fdump-rtl-ce3
4389 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4390
4391 @item -df
4392 @itemx -fdump-rtl-cfg
4393 @itemx -fdump-rtl-life
4394 @opindex df
4395 @opindex fdump-rtl-cfg
4396 @opindex fdump-rtl-life
4397 @option{-df} and @option{-fdump-rtl-cfg} enable dumping after control
4398 and data flow analysis, to @file{@var{file}.116r.cfg}.  @option{-df}
4399 and @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4400 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4401
4402 @item -dg
4403 @itemx -fdump-rtl-greg
4404 @opindex dg
4405 @opindex fdump-rtl-greg
4406 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4407
4408 @item -dG
4409 @itemx -fdump-rtl-gcse
4410 @itemx -fdump-rtl-bypass
4411 @opindex dG
4412 @opindex fdump-rtl-gcse
4413 @opindex fdump-rtl-bypass
4414 @option{-dG} and @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4415 @file{@var{file}.114r.gcse}.  @option{-dG} and @option{-fdump-rtl-bypass}
4416 enable dumping after jump bypassing and control flow optimizations, to
4417 @file{@var{file}.115r.bypass}.
4418
4419 @item -dh
4420 @itemx -fdump-rtl-eh
4421 @opindex dh
4422 @opindex fdump-rtl-eh
4423 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4424
4425 @item -di
4426 @itemx -fdump-rtl-sibling
4427 @opindex di
4428 @opindex fdump-rtl-sibling
4429 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4430
4431 @item -dj
4432 @itemx -fdump-rtl-jump
4433 @opindex dj
4434 @opindex fdump-rtl-jump
4435 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4436
4437 @item -dk
4438 @itemx -fdump-rtl-stack
4439 @opindex dk
4440 @opindex fdump-rtl-stack
4441 Dump after conversion from GCC's "flat register file" registers to the
4442 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4443
4444 @item -dl
4445 @itemx -fdump-rtl-lreg
4446 @opindex dl
4447 @opindex fdump-rtl-lreg
4448 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4449
4450 @item -dL
4451 @itemx -fdump-rtl-loop2
4452 @opindex dL
4453 @opindex fdump-rtl-loop2
4454 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4455 loop optimization pass, to @file{@var{file}.119r.loop2},
4456 @file{@var{file}.120r.loop2_init},
4457 @file{@var{file}.121r.loop2_invariant}, and
4458 @file{@var{file}.125r.loop2_done}.
4459
4460 @item -dm
4461 @itemx -fdump-rtl-sms
4462 @opindex dm
4463 @opindex fdump-rtl-sms
4464 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4465
4466 @item -dM
4467 @itemx -fdump-rtl-mach
4468 @opindex dM
4469 @opindex fdump-rtl-mach
4470 Dump after performing the machine dependent reorganization pass, to
4471 @file{@var{file}.155r.mach} if that pass exists.
4472
4473 @item -dn
4474 @itemx -fdump-rtl-rnreg
4475 @opindex dn
4476 @opindex fdump-rtl-rnreg
4477 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4478
4479 @item -dN
4480 @itemx -fdump-rtl-regmove
4481 @opindex dN
4482 @opindex fdump-rtl-regmove
4483 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4484
4485 @item -do
4486 @itemx -fdump-rtl-postreload
4487 @opindex do
4488 @opindex fdump-rtl-postreload
4489 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4490
4491 @item -dr
4492 @itemx -fdump-rtl-expand
4493 @opindex dr
4494 @opindex fdump-rtl-expand
4495 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4496
4497 @item -dR
4498 @itemx -fdump-rtl-sched2
4499 @opindex dR
4500 @opindex fdump-rtl-sched2
4501 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4502
4503 @item -ds
4504 @itemx -fdump-rtl-cse
4505 @opindex ds
4506 @opindex fdump-rtl-cse
4507 Dump after CSE (including the jump optimization that sometimes follows
4508 CSE), to @file{@var{file}.113r.cse}.
4509
4510 @item -dS
4511 @itemx -fdump-rtl-sched1
4512 @opindex dS
4513 @opindex fdump-rtl-sched1
4514 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4515
4516 @item -dt
4517 @itemx -fdump-rtl-cse2
4518 @opindex dt
4519 @opindex fdump-rtl-cse2
4520 Dump after the second CSE pass (including the jump optimization that
4521 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4522
4523 @item -dT
4524 @itemx -fdump-rtl-tracer
4525 @opindex dT
4526 @opindex fdump-rtl-tracer
4527 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4528
4529 @item -dV
4530 @itemx -fdump-rtl-vpt
4531 @itemx -fdump-rtl-vartrack
4532 @opindex dV
4533 @opindex fdump-rtl-vpt
4534 @opindex fdump-rtl-vartrack
4535 @option{-dV} and @option{-fdump-rtl-vpt} enable dumping after the value
4536 profile transformations, to @file{@var{file}.10.vpt}.  @option{-dV}
4537 and @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4538 to @file{@var{file}.154r.vartrack}.
4539
4540 @item -dw
4541 @itemx -fdump-rtl-flow2
4542 @opindex dw
4543 @opindex fdump-rtl-flow2
4544 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4545
4546 @item -dz
4547 @itemx -fdump-rtl-peephole2
4548 @opindex dz
4549 @opindex fdump-rtl-peephole2
4550 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4551
4552 @item -dZ
4553 @itemx -fdump-rtl-web
4554 @opindex dZ
4555 @opindex fdump-rtl-web
4556 Dump after live range splitting, to @file{@var{file}.126r.web}.
4557
4558 @item -da
4559 @itemx -fdump-rtl-all
4560 @opindex da
4561 @opindex fdump-rtl-all
4562 Produce all the dumps listed above.
4563
4564 @item -dH
4565 @opindex dH
4566 Produce a core dump whenever an error occurs.
4567
4568 @item -dm
4569 @opindex dm
4570 Print statistics on memory usage, at the end of the run, to
4571 standard error.
4572
4573 @item -dp
4574 @opindex dp
4575 Annotate the assembler output with a comment indicating which
4576 pattern and alternative was used.  The length of each instruction is
4577 also printed.
4578
4579 @item -dP
4580 @opindex dP
4581 Dump the RTL in the assembler output as a comment before each instruction.
4582 Also turns on @option{-dp} annotation.
4583
4584 @item -dv
4585 @opindex dv
4586 For each of the other indicated dump files (either with @option{-d} or
4587 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4588 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4589
4590 @item -dx
4591 @opindex dx
4592 Just generate RTL for a function instead of compiling it.  Usually used
4593 with @samp{r} (@option{-fdump-rtl-expand}).
4594
4595 @item -dy
4596 @opindex dy
4597 Dump debugging information during parsing, to standard error.
4598 @end table
4599
4600 @item -fdump-noaddr
4601 @opindex fdump-noaddr
4602 When doing debugging dumps (see @option{-d} option above), suppress
4603 address output.  This makes it more feasible to use diff on debugging
4604 dumps for compiler invocations with different compiler binaries and/or
4605 different text / bss / data / heap / stack / dso start locations.
4606
4607 @item -fdump-unnumbered
4608 @opindex fdump-unnumbered
4609 When doing debugging dumps (see @option{-d} option above), suppress instruction
4610 numbers and address output.  This makes it more feasible to
4611 use diff on debugging dumps for compiler invocations with different
4612 options, in particular with and without @option{-g}.
4613
4614 @item -fdump-translation-unit @r{(C++ only)}
4615 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4616 @opindex fdump-translation-unit
4617 Dump a representation of the tree structure for the entire translation
4618 unit to a file.  The file name is made by appending @file{.tu} to the
4619 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4620 controls the details of the dump as described for the
4621 @option{-fdump-tree} options.
4622
4623 @item -fdump-class-hierarchy @r{(C++ only)}
4624 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4625 @opindex fdump-class-hierarchy
4626 Dump a representation of each class's hierarchy and virtual function
4627 table layout to a file.  The file name is made by appending @file{.class}
4628 to the source file name.  If the @samp{-@var{options}} form is used,
4629 @var{options} controls the details of the dump as described for the
4630 @option{-fdump-tree} options.
4631
4632 @item -fdump-ipa-@var{switch}
4633 @opindex fdump-ipa
4634 Control the dumping at various stages of inter-procedural analysis
4635 language tree to a file.  The file name is generated by appending a switch
4636 specific suffix to the source file name.  The following dumps are possible:
4637
4638 @table @samp
4639 @item all
4640 Enables all inter-procedural analysis dumps; currently the only produced
4641 dump is the @samp{cgraph} dump.
4642
4643 @item cgraph
4644 Dumps information about call-graph optimization, unused function removal,
4645 and inlining decisions.
4646 @end table
4647
4648 @item -fdump-tree-@var{switch}
4649 @itemx -fdump-tree-@var{switch}-@var{options}
4650 @opindex fdump-tree
4651 Control the dumping at various stages of processing the intermediate
4652 language tree to a file.  The file name is generated by appending a switch
4653 specific suffix to the source file name.  If the @samp{-@var{options}}
4654 form is used, @var{options} is a list of @samp{-} separated options that
4655 control the details of the dump.  Not all options are applicable to all
4656 dumps, those which are not meaningful will be ignored.  The following
4657 options are available
4658
4659 @table @samp
4660 @item address
4661 Print the address of each node.  Usually this is not meaningful as it
4662 changes according to the environment and source file.  Its primary use
4663 is for tying up a dump file with a debug environment.
4664 @item slim
4665 Inhibit dumping of members of a scope or body of a function merely
4666 because that scope has been reached.  Only dump such items when they
4667 are directly reachable by some other path.  When dumping pretty-printed
4668 trees, this option inhibits dumping the bodies of control structures.
4669 @item raw
4670 Print a raw representation of the tree.  By default, trees are
4671 pretty-printed into a C-like representation.
4672 @item details
4673 Enable more detailed dumps (not honored by every dump option).
4674 @item stats
4675 Enable dumping various statistics about the pass (not honored by every dump
4676 option).
4677 @item blocks
4678 Enable showing basic block boundaries (disabled in raw dumps).
4679 @item vops
4680 Enable showing virtual operands for every statement.
4681 @item lineno
4682 Enable showing line numbers for statements.
4683 @item uid
4684 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4685 @item all
4686 Turn on all options, except @option{raw}, @option{slim} and @option{lineno}.
4687 @end table
4688
4689 The following tree dumps are possible:
4690 @table @samp
4691
4692 @item original
4693 Dump before any tree based optimization, to @file{@var{file}.original}.
4694
4695 @item optimized
4696 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4697
4698 @item inlined
4699 Dump after function inlining, to @file{@var{file}.inlined}.
4700
4701 @item gimple
4702 @opindex fdump-tree-gimple
4703 Dump each function before and after the gimplification pass to a file.  The
4704 file name is made by appending @file{.gimple} to the source file name.
4705
4706 @item cfg
4707 @opindex fdump-tree-cfg
4708 Dump the control flow graph of each function to a file.  The file name is
4709 made by appending @file{.cfg} to the source file name.
4710
4711 @item vcg
4712 @opindex fdump-tree-vcg
4713 Dump the control flow graph of each function to a file in VCG format.  The
4714 file name is made by appending @file{.vcg} to the source file name.  Note
4715 that if the file contains more than one function, the generated file cannot
4716 be used directly by VCG@.  You will need to cut and paste each function's
4717 graph into its own separate file first.
4718
4719 @item ch
4720 @opindex fdump-tree-ch
4721 Dump each function after copying loop headers.  The file name is made by
4722 appending @file{.ch} to the source file name.
4723
4724 @item ssa
4725 @opindex fdump-tree-ssa
4726 Dump SSA related information to a file.  The file name is made by appending
4727 @file{.ssa} to the source file name.
4728
4729 @item salias
4730 @opindex fdump-tree-salias
4731 Dump structure aliasing variable information to a file.  This file name
4732 is made by appending @file{.salias} to the source file name.
4733
4734 @item alias
4735 @opindex fdump-tree-alias
4736 Dump aliasing information for each function.  The file name is made by
4737 appending @file{.alias} to the source file name.
4738
4739 @item ccp
4740 @opindex fdump-tree-ccp
4741 Dump each function after CCP@.  The file name is made by appending
4742 @file{.ccp} to the source file name.
4743
4744 @item storeccp
4745 @opindex fdump-tree-storeccp
4746 Dump each function after STORE-CCP.  The file name is made by appending
4747 @file{.storeccp} to the source file name.
4748
4749 @item pre
4750 @opindex fdump-tree-pre
4751 Dump trees after partial redundancy elimination.  The file name is made
4752 by appending @file{.pre} to the source file name.
4753
4754 @item fre
4755 @opindex fdump-tree-fre
4756 Dump trees after full redundancy elimination.  The file name is made
4757 by appending @file{.fre} to the source file name.
4758
4759 @item copyprop
4760 @opindex fdump-tree-copyprop
4761 Dump trees after copy propagation.  The file name is made
4762 by appending @file{.copyprop} to the source file name.
4763
4764 @item store_copyprop
4765 @opindex fdump-tree-store_copyprop
4766 Dump trees after store copy-propagation.  The file name is made
4767 by appending @file{.store_copyprop} to the source file name.
4768
4769 @item dce
4770 @opindex fdump-tree-dce
4771 Dump each function after dead code elimination.  The file name is made by
4772 appending @file{.dce} to the source file name.
4773
4774 @item mudflap
4775 @opindex fdump-tree-mudflap
4776 Dump each function after adding mudflap instrumentation.  The file name is
4777 made by appending @file{.mudflap} to the source file name.
4778
4779 @item sra
4780 @opindex fdump-tree-sra
4781 Dump each function after performing scalar replacement of aggregates.  The
4782 file name is made by appending @file{.sra} to the source file name.
4783
4784 @item sink
4785 @opindex fdump-tree-sink
4786 Dump each function after performing code sinking.  The file name is made
4787 by appending @file{.sink} to the source file name.
4788
4789 @item dom
4790 @opindex fdump-tree-dom
4791 Dump each function after applying dominator tree optimizations.  The file
4792 name is made by appending @file{.dom} to the source file name.
4793
4794 @item dse
4795 @opindex fdump-tree-dse
4796 Dump each function after applying dead store elimination.  The file
4797 name is made by appending @file{.dse} to the source file name.
4798
4799 @item phiopt
4800 @opindex fdump-tree-phiopt
4801 Dump each function after optimizing PHI nodes into straightline code.  The file
4802 name is made by appending @file{.phiopt} to the source file name.
4803
4804 @item forwprop
4805 @opindex fdump-tree-forwprop
4806 Dump each function after forward propagating single use variables.  The file
4807 name is made by appending @file{.forwprop} to the source file name.
4808
4809 @item copyrename
4810 @opindex fdump-tree-copyrename
4811 Dump each function after applying the copy rename optimization.  The file
4812 name is made by appending @file{.copyrename} to the source file name.
4813
4814 @item nrv
4815 @opindex fdump-tree-nrv
4816 Dump each function after applying the named return value optimization on
4817 generic trees.  The file name is made by appending @file{.nrv} to the source
4818 file name.
4819
4820 @item vect
4821 @opindex fdump-tree-vect
4822 Dump each function after applying vectorization of loops.  The file name is
4823 made by appending @file{.vect} to the source file name.
4824
4825 @item vrp
4826 @opindex fdump-tree-vrp
4827 Dump each function after Value Range Propagation (VRP).  The file name
4828 is made by appending @file{.vrp} to the source file name.
4829
4830 @item all
4831 @opindex fdump-tree-all
4832 Enable all the available tree dumps with the flags provided in this option.
4833 @end table
4834
4835 @item -ftree-vectorizer-verbose=@var{n}
4836 @opindex ftree-vectorizer-verbose
4837 This option controls the amount of debugging output the vectorizer prints.
4838 This information is written to standard error, unless
4839 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4840 in which case it is output to the usual dump listing file, @file{.vect}.
4841 For @var{n}=0 no diagnostic information is reported.
4842 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4843 and the total number of loops that got vectorized.
4844 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4845 the first analysis phase (vect_analyze_loop_form) - i.e. countable,
4846 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4847 level that @option{-fdump-tree-vect-stats} uses.
4848 Higher verbosity levels mean either more information dumped for each
4849 reported loop, or same amount of information reported for more loops:
4850 If @var{n}=3, alignment related information is added to the reports.
4851 If @var{n}=4, data-references related information (e.g. memory dependences,
4852 memory access-patterns) is added to the reports.
4853 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4854 that did not pass the first analysis phase (i.e. may not be countable, or
4855 may have complicated control-flow).
4856 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4857 For @var{n}=7, all the information the vectorizer generates during its
4858 analysis and transformation is reported.  This is the same verbosity level
4859 that @option{-fdump-tree-vect-details} uses.
4860
4861 @item -frandom-seed=@var{string}
4862 @opindex frandom-string
4863 This option provides a seed that GCC uses when it would otherwise use
4864 random numbers.  It is used to generate certain symbol names
4865 that have to be different in every compiled file.  It is also used to
4866 place unique stamps in coverage data files and the object files that
4867 produce them.  You can use the @option{-frandom-seed} option to produce
4868 reproducibly identical object files.
4869
4870 The @var{string} should be different for every file you compile.
4871
4872 @item -fsched-verbose=@var{n}
4873 @opindex fsched-verbose
4874 On targets that use instruction scheduling, this option controls the
4875 amount of debugging output the scheduler prints.  This information is
4876 written to standard error, unless @option{-dS} or @option{-dR} is
4877 specified, in which case it is output to the usual dump
4878 listing file, @file{.sched} or @file{.sched2} respectively.  However
4879 for @var{n} greater than nine, the output is always printed to standard
4880 error.
4881
4882 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4883 same information as @option{-dRS}.  For @var{n} greater than one, it
4884 also output basic block probabilities, detailed ready list information
4885 and unit/insn info.  For @var{n} greater than two, it includes RTL
4886 at abort point, control-flow and regions info.  And for @var{n} over
4887 four, @option{-fsched-verbose} also includes dependence info.
4888
4889 @item -save-temps
4890 @opindex save-temps
4891 Store the usual ``temporary'' intermediate files permanently; place them
4892 in the current directory and name them based on the source file.  Thus,
4893 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4894 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4895 preprocessed @file{foo.i} output file even though the compiler now
4896 normally uses an integrated preprocessor.
4897
4898 When used in combination with the @option{-x} command line option,
4899 @option{-save-temps} is sensible enough to avoid over writing an
4900 input source file with the same extension as an intermediate file.
4901 The corresponding intermediate file may be obtained by renaming the
4902 source file before using @option{-save-temps}.
4903
4904 @item -time
4905 @opindex time
4906 Report the CPU time taken by each subprocess in the compilation
4907 sequence.  For C source files, this is the compiler proper and assembler
4908 (plus the linker if linking is done).  The output looks like this:
4909
4910 @smallexample
4911 # cc1 0.12 0.01
4912 # as 0.00 0.01
4913 @end smallexample
4914
4915 The first number on each line is the ``user time'', that is time spent
4916 executing the program itself.  The second number is ``system time'',
4917 time spent executing operating system routines on behalf of the program.
4918 Both numbers are in seconds.
4919
4920 @item -fvar-tracking
4921 @opindex fvar-tracking
4922 Run variable tracking pass.  It computes where variables are stored at each
4923 position in code.  Better debugging information is then generated
4924 (if the debugging information format supports this information).
4925
4926 It is enabled by default when compiling with optimization (@option{-Os},
4927 @option{-O}, @option{-O2}, ...), debugging information (@option{-g}) and
4928 the debug info format supports it.
4929
4930 @item -print-file-name=@var{library}
4931 @opindex print-file-name
4932 Print the full absolute name of the library file @var{library} that
4933 would be used when linking---and don't do anything else.  With this
4934 option, GCC does not compile or link anything; it just prints the
4935 file name.
4936
4937 @item -print-multi-directory
4938 @opindex print-multi-directory
4939 Print the directory name corresponding to the multilib selected by any
4940 other switches present in the command line.  This directory is supposed
4941 to exist in @env{GCC_EXEC_PREFIX}.
4942
4943 @item -print-multi-lib
4944 @opindex print-multi-lib
4945 Print the mapping from multilib directory names to compiler switches
4946 that enable them.  The directory name is separated from the switches by
4947 @samp{;}, and each switch starts with an @samp{@@} instead of the
4948 @samp{-}, without spaces between multiple switches.  This is supposed to
4949 ease shell-processing.
4950
4951 @item -print-prog-name=@var{program}
4952 @opindex print-prog-name
4953 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
4954
4955 @item -print-libgcc-file-name
4956 @opindex print-libgcc-file-name
4957 Same as @option{-print-file-name=libgcc.a}.
4958
4959 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
4960 but you do want to link with @file{libgcc.a}.  You can do
4961
4962 @smallexample
4963 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
4964 @end smallexample
4965
4966 @item -print-search-dirs
4967 @opindex print-search-dirs
4968 Print the name of the configured installation directory and a list of
4969 program and library directories @command{gcc} will search---and don't do anything else.
4970
4971 This is useful when @command{gcc} prints the error message
4972 @samp{installation problem, cannot exec cpp0: No such file or directory}.
4973 To resolve this you either need to put @file{cpp0} and the other compiler
4974 components where @command{gcc} expects to find them, or you can set the environment
4975 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
4976 Don't forget the trailing @samp{/}.
4977 @xref{Environment Variables}.
4978
4979 @item -print-sysroot-headers-suffix
4980 @opindex print-sysroot-headers-suffix
4981 Print the suffix added to the target sysroot when searching for
4982 headers, or give an error if the compiler is not configured with such
4983 a suffix---and don't do anything else.
4984
4985 @item -dumpmachine
4986 @opindex dumpmachine
4987 Print the compiler's target machine (for example,
4988 @samp{i686-pc-linux-gnu})---and don't do anything else.
4989
4990 @item -dumpversion
4991 @opindex dumpversion
4992 Print the compiler version (for example, @samp{3.0})---and don't do
4993 anything else.
4994
4995 @item -dumpspecs
4996 @opindex dumpspecs
4997 Print the compiler's built-in specs---and don't do anything else.  (This
4998 is used when GCC itself is being built.)  @xref{Spec Files}.
4999
5000 @item -feliminate-unused-debug-types
5001 @opindex feliminate-unused-debug-types
5002 Normally, when producing DWARF2 output, GCC will emit debugging
5003 information for all types declared in a compilation
5004 unit, regardless of whether or not they are actually used
5005 in that compilation unit.  Sometimes this is useful, such as
5006 if, in the debugger, you want to cast a value to a type that is
5007 not actually used in your program (but is declared).  More often,
5008 however, this results in a significant amount of wasted space.
5009 With this option, GCC will avoid producing debug symbol output
5010 for types that are nowhere used in the source file being compiled.
5011 @end table
5012
5013 @node Optimize Options
5014 @section Options That Control Optimization
5015 @cindex optimize options
5016 @cindex options, optimization
5017
5018 These options control various sorts of optimizations.
5019
5020 Without any optimization option, the compiler's goal is to reduce the
5021 cost of compilation and to make debugging produce the expected
5022 results.  Statements are independent: if you stop the program with a
5023 breakpoint between statements, you can then assign a new value to any
5024 variable or change the program counter to any other statement in the
5025 function and get exactly the results you would expect from the source
5026 code.
5027
5028 Turning on optimization flags makes the compiler attempt to improve
5029 the performance and/or code size at the expense of compilation time
5030 and possibly the ability to debug the program.
5031
5032 The compiler performs optimization based on the knowledge it has of
5033 the program.  Optimization levels @option{-O} and above, in
5034 particular, enable @emph{unit-at-a-time} mode, which allows the
5035 compiler to consider information gained from later functions in
5036 the file when compiling a function.  Compiling multiple files at
5037 once to a single output file in @emph{unit-at-a-time} mode allows
5038 the compiler to use information gained from all of the files when
5039 compiling each of them.
5040
5041 Not all optimizations are controlled directly by a flag.  Only
5042 optimizations that have a flag are listed.
5043
5044 @table @gcctabopt
5045 @item -O
5046 @itemx -O1
5047 @opindex O
5048 @opindex O1
5049 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5050 more memory for a large function.
5051
5052 With @option{-O}, the compiler tries to reduce code size and execution
5053 time, without performing any optimizations that take a great deal of
5054 compilation time.
5055
5056 @option{-O} turns on the following optimization flags:
5057 @gccoptlist{-fdefer-pop @gol
5058 -fdelayed-branch @gol
5059 -fguess-branch-probability @gol
5060 -fcprop-registers @gol
5061 -fif-conversion @gol
5062 -fif-conversion2 @gol
5063 -fsplit-wide-types @gol
5064 -ftree-ccp @gol
5065 -ftree-dce @gol
5066 -ftree-dominator-opts @gol
5067 -ftree-dse @gol
5068 -ftree-ter @gol
5069 -ftree-sra @gol
5070 -ftree-copyrename @gol
5071 -ftree-fre @gol
5072 -ftree-ch @gol
5073 -funit-at-a-time @gol
5074 -finline-small-functions @gol
5075 -fmerge-constants}
5076
5077 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5078 where doing so does not interfere with debugging.
5079
5080 @item -O2
5081 @opindex O2
5082 Optimize even more.  GCC performs nearly all supported optimizations
5083 that do not involve a space-speed tradeoff.  The compiler does not
5084 perform loop unrolling or function inlining when you specify @option{-O2}.
5085 As compared to @option{-O}, this option increases both compilation time
5086 and the performance of the generated code.
5087
5088 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5089 also turns on the following optimization flags:
5090 @gccoptlist{-fthread-jumps @gol
5091 -fcrossjumping @gol
5092 -foptimize-sibling-calls @gol
5093 -fcse-follow-jumps  -fcse-skip-blocks @gol
5094 -fgcse  -fgcse-lm  @gol
5095 -fexpensive-optimizations @gol
5096 -frerun-cse-after-loop  @gol
5097 -fcaller-saves @gol
5098 -fpeephole2 @gol
5099 -fschedule-insns  -fschedule-insns2 @gol
5100 -fsched-interblock  -fsched-spec @gol
5101 -fregmove @gol
5102 -fstrict-aliasing -fstrict-overflow @gol
5103 -fdelete-null-pointer-checks @gol
5104 -freorder-blocks  -freorder-functions @gol
5105 -falign-functions  -falign-jumps @gol
5106 -falign-loops  -falign-labels @gol
5107 -ftree-vrp @gol
5108 -ftree-pre}
5109
5110 Please note the warning under @option{-fgcse} about
5111 invoking @option{-O2} on programs that use computed gotos.
5112
5113 @item -O3
5114 @opindex O3
5115 Optimize yet more.  @option{-O3} turns on all optimizations specified by
5116 @option{-O2} and also turns on the @option{-finline-functions},
5117 @option{-funswitch-loops}, @option{-fpredictive-commoning} and
5118 @option{-fgcse-after-reload} options.
5119
5120 @item -O0
5121 @opindex O0
5122 Reduce compilation time and make debugging produce the expected
5123 results.  This is the default.
5124
5125 @item -Os
5126 @opindex Os
5127 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5128 do not typically increase code size.  It also performs further
5129 optimizations designed to reduce code size.
5130
5131 @option{-Os} disables the following optimization flags:
5132 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5133 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5134 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5135
5136 If you use multiple @option{-O} options, with or without level numbers,
5137 the last such option is the one that is effective.
5138 @end table
5139
5140 Options of the form @option{-f@var{flag}} specify machine-independent
5141 flags.  Most flags have both positive and negative forms; the negative
5142 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5143 below, only one of the forms is listed---the one you typically will
5144 use.  You can figure out the other form by either removing @samp{no-}
5145 or adding it.
5146
5147 The following options control specific optimizations.  They are either
5148 activated by @option{-O} options or are related to ones that are.  You
5149 can use the following flags in the rare cases when ``fine-tuning'' of
5150 optimizations to be performed is desired.
5151
5152 @table @gcctabopt
5153 @item -fno-default-inline
5154 @opindex fno-default-inline
5155 Do not make member functions inline by default merely because they are
5156 defined inside the class scope (C++ only).  Otherwise, when you specify
5157 @w{@option{-O}}, member functions defined inside class scope are compiled
5158 inline by default; i.e., you don't need to add @samp{inline} in front of
5159 the member function name.
5160
5161 @item -fno-defer-pop
5162 @opindex fno-defer-pop
5163 Always pop the arguments to each function call as soon as that function
5164 returns.  For machines which must pop arguments after a function call,
5165 the compiler normally lets arguments accumulate on the stack for several
5166 function calls and pops them all at once.
5167
5168 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5169
5170 @item -fforce-addr
5171 @opindex fforce-addr
5172 Force memory address constants to be copied into registers before
5173 doing arithmetic on them.
5174
5175 @item -fforward-propagate
5176 @opindex fforward-propagate
5177 Perform a forward propagation pass on RTL.  The pass tries to combine two
5178 instructions and checks if the result can be simplified.  If loop unrolling
5179 is active, two passes are performed and the second is scheduled after
5180 loop unrolling.
5181
5182 This option is enabled by default at optimization levels @option{-O2},
5183 @option{-O3}, @option{-Os}.
5184
5185 @item -fomit-frame-pointer
5186 @opindex fomit-frame-pointer
5187 Don't keep the frame pointer in a register for functions that
5188 don't need one.  This avoids the instructions to save, set up and
5189 restore frame pointers; it also makes an extra register available
5190 in many functions.  @strong{It also makes debugging impossible on
5191 some machines.}
5192
5193 On some machines, such as the VAX, this flag has no effect, because
5194 the standard calling sequence automatically handles the frame pointer
5195 and nothing is saved by pretending it doesn't exist.  The
5196 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5197 whether a target machine supports this flag.  @xref{Registers,,Register
5198 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5199
5200 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5201
5202 @item -foptimize-sibling-calls
5203 @opindex foptimize-sibling-calls
5204 Optimize sibling and tail recursive calls.
5205
5206 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5207
5208 @item -fno-inline
5209 @opindex fno-inline
5210 Don't pay attention to the @code{inline} keyword.  Normally this option
5211 is used to keep the compiler from expanding any functions inline.
5212 Note that if you are not optimizing, no functions can be expanded inline.
5213
5214 @item -finline-small-functions
5215 @opindex finline-small-functions
5216 Integrate functions into their callers when their body is smaller than expected
5217 function call code (so overall size of program gets smaller).  The compiler
5218 heuristically decides which functions are simple enough to be worth integrating
5219 in this way.
5220
5221 Enabled at level @option{-O2}.
5222
5223 @item -finline-functions
5224 @opindex finline-functions
5225 Integrate all simple functions into their callers.  The compiler
5226 heuristically decides which functions are simple enough to be worth
5227 integrating in this way.
5228
5229 If all calls to a given function are integrated, and the function is
5230 declared @code{static}, then the function is normally not output as
5231 assembler code in its own right.
5232
5233 Enabled at level @option{-O3}.
5234
5235 @item -finline-functions-called-once
5236 @opindex finline-functions-called-once
5237 Consider all @code{static} functions called once for inlining into their
5238 caller even if they are not marked @code{inline}.  If a call to a given
5239 function is integrated, then the function is not output as assembler code
5240 in its own right.
5241
5242 Enabled if @option{-funit-at-a-time} is enabled.
5243
5244 @item -fearly-inlining
5245 @opindex fearly-inlining
5246 Inline functions marked by @code{always_inline} and functions whose body seems
5247 smaller than the function call overhead early before doing
5248 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5249 makes profiling significantly cheaper and usually inlining faster on programs
5250 having large chains of nested wrapper functions.
5251
5252 Enabled by default.
5253
5254 @item -finline-limit=@var{n}
5255 @opindex finline-limit
5256 By default, GCC limits the size of functions that can be inlined.  This flag
5257 allows the control of this limit for functions that are explicitly marked as
5258 inline (i.e., marked with the inline keyword or defined within the class
5259 definition in c++).  @var{n} is the size of functions that can be inlined in
5260 number of pseudo instructions (not counting parameter handling).  The default
5261 value of @var{n} is 600.
5262 Increasing this value can result in more inlined code at
5263 the cost of compilation time and memory consumption.  Decreasing usually makes
5264 the compilation faster and less code will be inlined (which presumably
5265 means slower programs).  This option is particularly useful for programs that
5266 use inlining heavily such as those based on recursive templates with C++.
5267
5268 Inlining is actually controlled by a number of parameters, which may be
5269 specified individually by using @option{--param @var{name}=@var{value}}.
5270 The @option{-finline-limit=@var{n}} option sets some of these parameters
5271 as follows:
5272
5273 @table @gcctabopt
5274 @item max-inline-insns-single
5275  is set to @var{n}/2.
5276 @item max-inline-insns-auto
5277  is set to @var{n}/2.
5278 @item min-inline-insns
5279  is set to 130 or @var{n}/4, whichever is smaller.
5280 @item max-inline-insns-rtl
5281  is set to @var{n}.
5282 @end table
5283
5284 See below for a documentation of the individual
5285 parameters controlling inlining.
5286
5287 @emph{Note:} pseudo instruction represents, in this particular context, an
5288 abstract measurement of function's size.  In no way does it represent a count
5289 of assembly instructions and as such its exact meaning might change from one
5290 release to an another.
5291
5292 @item -fkeep-inline-functions
5293 @opindex fkeep-inline-functions
5294 In C, emit @code{static} functions that are declared @code{inline}
5295 into the object file, even if the function has been inlined into all
5296 of its callers.  This switch does not affect functions using the
5297 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5298 inline functions into the object file.
5299
5300 @item -fkeep-static-consts
5301 @opindex fkeep-static-consts
5302 Emit variables declared @code{static const} when optimization isn't turned
5303 on, even if the variables aren't referenced.
5304
5305 GCC enables this option by default.  If you want to force the compiler to
5306 check if the variable was referenced, regardless of whether or not
5307 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5308
5309 @item -fmerge-constants
5310 Attempt to merge identical constants (string constants and floating point
5311 constants) across compilation units.
5312
5313 This option is the default for optimized compilation if the assembler and
5314 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5315 behavior.
5316
5317 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5318
5319 @item -fmerge-all-constants
5320 Attempt to merge identical constants and identical variables.
5321
5322 This option implies @option{-fmerge-constants}.  In addition to
5323 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5324 arrays or initialized constant variables with integral or floating point
5325 types.  Languages like C or C++ require each non-automatic variable to
5326 have distinct location, so using this option will result in non-conforming
5327 behavior.
5328
5329 @item -fmodulo-sched
5330 @opindex fmodulo-sched
5331 Perform swing modulo scheduling immediately before the first scheduling
5332 pass.  This pass looks at innermost loops and reorders their
5333 instructions by overlapping different iterations.
5334
5335 @item -fmodulo-sched-allow-regmoves
5336 @opindex fmodulo-sched-allow-regmoves
5337 Perform more aggressive SMS based modulo scheduling with register moves
5338 allowed.  By setting this flag certain anti-dependences edges will be
5339 deleted which will trigger the generation of reg-moves based on the
5340 life-range analysis.  This option is effective only with
5341 @option{-fmodulo-sched} enabled.
5342
5343 @item -fno-branch-count-reg
5344 @opindex fno-branch-count-reg
5345 Do not use ``decrement and branch'' instructions on a count register,
5346 but instead generate a sequence of instructions that decrement a
5347 register, compare it against zero, then branch based upon the result.
5348 This option is only meaningful on architectures that support such
5349 instructions, which include x86, PowerPC, IA-64 and S/390.
5350
5351 The default is @option{-fbranch-count-reg}.
5352
5353 @item -fno-function-cse
5354 @opindex fno-function-cse
5355 Do not put function addresses in registers; make each instruction that
5356 calls a constant function contain the function's address explicitly.
5357
5358 This option results in less efficient code, but some strange hacks
5359 that alter the assembler output may be confused by the optimizations
5360 performed when this option is not used.
5361
5362 The default is @option{-ffunction-cse}
5363
5364 @item -fno-zero-initialized-in-bss
5365 @opindex fno-zero-initialized-in-bss
5366 If the target supports a BSS section, GCC by default puts variables that
5367 are initialized to zero into BSS@.  This can save space in the resulting
5368 code.
5369
5370 This option turns off this behavior because some programs explicitly
5371 rely on variables going to the data section.  E.g., so that the
5372 resulting executable can find the beginning of that section and/or make
5373 assumptions based on that.
5374
5375 The default is @option{-fzero-initialized-in-bss}.
5376
5377 @item -fbounds-check
5378 @opindex fbounds-check
5379 For front-ends that support it, generate additional code to check that
5380 indices used to access arrays are within the declared range.  This is
5381 currently only supported by the Java and Fortran front-ends, where
5382 this option defaults to true and false respectively.
5383
5384 @item -fmudflap -fmudflapth -fmudflapir
5385 @opindex fmudflap
5386 @opindex fmudflapth
5387 @opindex fmudflapir
5388 @cindex bounds checking
5389 @cindex mudflap
5390 For front-ends that support it (C and C++), instrument all risky
5391 pointer/array dereferencing operations, some standard library
5392 string/heap functions, and some other associated constructs with
5393 range/validity tests.  Modules so instrumented should be immune to
5394 buffer overflows, invalid heap use, and some other classes of C/C++
5395 programming errors.  The instrumentation relies on a separate runtime
5396 library (@file{libmudflap}), which will be linked into a program if
5397 @option{-fmudflap} is given at link time.  Run-time behavior of the
5398 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5399 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5400 for its options.
5401
5402 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5403 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5404 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5405 instrumentation should ignore pointer reads.  This produces less
5406 instrumentation (and therefore faster execution) and still provides
5407 some protection against outright memory corrupting writes, but allows
5408 erroneously read data to propagate within a program.
5409
5410 @item -fthread-jumps
5411 @opindex fthread-jumps
5412 Perform optimizations where we check to see if a jump branches to a
5413 location where another comparison subsumed by the first is found.  If
5414 so, the first branch is redirected to either the destination of the
5415 second branch or a point immediately following it, depending on whether
5416 the condition is known to be true or false.
5417
5418 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5419
5420 @item -fsplit-wide-types
5421 @opindex fsplit-wide-types
5422 When using a type that occupies multiple registers, such as @code{long
5423 long} on a 32-bit system, split the registers apart and allocate them
5424 independently.  This normally generates better code for those types,
5425 but may make debugging more difficult.
5426
5427 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5428 @option{-Os}.
5429
5430 @item -fcse-follow-jumps
5431 @opindex fcse-follow-jumps
5432 In common subexpression elimination, scan through jump instructions
5433 when the target of the jump is not reached by any other path.  For
5434 example, when CSE encounters an @code{if} statement with an
5435 @code{else} clause, CSE will follow the jump when the condition
5436 tested is false.
5437
5438 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5439
5440 @item -fcse-skip-blocks
5441 @opindex fcse-skip-blocks
5442 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5443 follow jumps which conditionally skip over blocks.  When CSE
5444 encounters a simple @code{if} statement with no else clause,
5445 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5446 body of the @code{if}.
5447
5448 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5449
5450 @item -frerun-cse-after-loop
5451 @opindex frerun-cse-after-loop
5452 Re-run common subexpression elimination after loop optimizations has been
5453 performed.
5454
5455 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5456
5457 @item -fgcse
5458 @opindex fgcse
5459 Perform a global common subexpression elimination pass.
5460 This pass also performs global constant and copy propagation.
5461
5462 @emph{Note:} When compiling a program using computed gotos, a GCC
5463 extension, you may get better runtime performance if you disable
5464 the global common subexpression elimination pass by adding
5465 @option{-fno-gcse} to the command line.
5466
5467 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5468
5469 @item -fgcse-lm
5470 @opindex fgcse-lm
5471 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5472 attempt to move loads which are only killed by stores into themselves.  This
5473 allows a loop containing a load/store sequence to be changed to a load outside
5474 the loop, and a copy/store within the loop.
5475
5476 Enabled by default when gcse is enabled.
5477
5478 @item -fgcse-sm
5479 @opindex fgcse-sm
5480 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5481 global common subexpression elimination.  This pass will attempt to move
5482 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5483 loops containing a load/store sequence can be changed to a load before
5484 the loop and a store after the loop.
5485
5486 Not enabled at any optimization level.
5487
5488 @item -fgcse-las
5489 @opindex fgcse-las
5490 When @option{-fgcse-las} is enabled, the global common subexpression
5491 elimination pass eliminates redundant loads that come after stores to the
5492 same memory location (both partial and full redundancies).
5493
5494 Not enabled at any optimization level.
5495
5496 @item -fgcse-after-reload
5497 @opindex fgcse-after-reload
5498 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5499 pass is performed after reload.  The purpose of this pass is to cleanup
5500 redundant spilling.
5501
5502 @item -funsafe-loop-optimizations
5503 @opindex funsafe-loop-optimizations
5504 If given, the loop optimizer will assume that loop indices do not
5505 overflow, and that the loops with nontrivial exit condition are not
5506 infinite.  This enables a wider range of loop optimizations even if
5507 the loop optimizer itself cannot prove that these assumptions are valid.
5508 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5509 if it finds this kind of loop.
5510
5511 @item -fcrossjumping
5512 @opindex crossjumping
5513 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5514 resulting code may or may not perform better than without cross-jumping.
5515
5516 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5517
5518 @item -fif-conversion
5519 @opindex if-conversion
5520 Attempt to transform conditional jumps into branch-less equivalents.  This
5521 include use of conditional moves, min, max, set flags and abs instructions, and
5522 some tricks doable by standard arithmetics.  The use of conditional execution
5523 on chips where it is available is controlled by @code{if-conversion2}.
5524
5525 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5526
5527 @item -fif-conversion2
5528 @opindex if-conversion2
5529 Use conditional execution (where available) to transform conditional jumps into
5530 branch-less equivalents.
5531
5532 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5533
5534 @item -fdelete-null-pointer-checks
5535 @opindex fdelete-null-pointer-checks
5536 Use global dataflow analysis to identify and eliminate useless checks
5537 for null pointers.  The compiler assumes that dereferencing a null
5538 pointer would have halted the program.  If a pointer is checked after
5539 it has already been dereferenced, it cannot be null.
5540
5541 In some environments, this assumption is not true, and programs can
5542 safely dereference null pointers.  Use
5543 @option{-fno-delete-null-pointer-checks} to disable this optimization
5544 for programs which depend on that behavior.
5545
5546 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5547
5548 @item -fexpensive-optimizations
5549 @opindex fexpensive-optimizations
5550 Perform a number of minor optimizations that are relatively expensive.
5551
5552 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5553
5554 @item -foptimize-register-move
5555 @itemx -fregmove
5556 @opindex foptimize-register-move
5557 @opindex fregmove
5558 Attempt to reassign register numbers in move instructions and as
5559 operands of other simple instructions in order to maximize the amount of
5560 register tying.  This is especially helpful on machines with two-operand
5561 instructions.
5562
5563 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5564 optimization.
5565
5566 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5567
5568 @item -fdelayed-branch
5569 @opindex fdelayed-branch
5570 If supported for the target machine, attempt to reorder instructions
5571 to exploit instruction slots available after delayed branch
5572 instructions.
5573
5574 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5575
5576 @item -fschedule-insns
5577 @opindex fschedule-insns
5578 If supported for the target machine, attempt to reorder instructions to
5579 eliminate execution stalls due to required data being unavailable.  This
5580 helps machines that have slow floating point or memory load instructions
5581 by allowing other instructions to be issued until the result of the load
5582 or floating point instruction is required.
5583
5584 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5585
5586 @item -fschedule-insns2
5587 @opindex fschedule-insns2
5588 Similar to @option{-fschedule-insns}, but requests an additional pass of
5589 instruction scheduling after register allocation has been done.  This is
5590 especially useful on machines with a relatively small number of
5591 registers and where memory load instructions take more than one cycle.
5592
5593 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5594
5595 @item -fno-sched-interblock
5596 @opindex fno-sched-interblock
5597 Don't schedule instructions across basic blocks.  This is normally
5598 enabled by default when scheduling before register allocation, i.e.@:
5599 with @option{-fschedule-insns} or at @option{-O2} or higher.
5600
5601 @item -fno-sched-spec
5602 @opindex fno-sched-spec
5603 Don't allow speculative motion of non-load instructions.  This is normally
5604 enabled by default when scheduling before register allocation, i.e.@:
5605 with @option{-fschedule-insns} or at @option{-O2} or higher.
5606
5607 @item -fsched-spec-load
5608 @opindex fsched-spec-load
5609 Allow speculative motion of some load instructions.  This only makes
5610 sense when scheduling before register allocation, i.e.@: with
5611 @option{-fschedule-insns} or at @option{-O2} or higher.
5612
5613 @item -fsched-spec-load-dangerous
5614 @opindex fsched-spec-load-dangerous
5615 Allow speculative motion of more load instructions.  This only makes
5616 sense when scheduling before register allocation, i.e.@: with
5617 @option{-fschedule-insns} or at @option{-O2} or higher.
5618
5619 @item -fsched-stalled-insns=@var{n}
5620 @opindex fsched-stalled-insns
5621 Define how many insns (if any) can be moved prematurely from the queue
5622 of stalled insns into the ready list, during the second scheduling pass.
5623
5624 @item -fsched-stalled-insns-dep=@var{n}
5625 @opindex fsched-stalled-insns-dep
5626 Define how many insn groups (cycles) will be examined for a dependency
5627 on a stalled insn that is candidate for premature removal from the queue
5628 of stalled insns.  Has an effect only during the second scheduling pass,
5629 and only if @option{-fsched-stalled-insns} is used and its value is not zero.
5630
5631 @item -fsched2-use-superblocks
5632 @opindex fsched2-use-superblocks
5633 When scheduling after register allocation, do use superblock scheduling
5634 algorithm.  Superblock scheduling allows motion across basic block boundaries
5635 resulting on faster schedules.  This option is experimental, as not all machine
5636 descriptions used by GCC model the CPU closely enough to avoid unreliable
5637 results from the algorithm.
5638
5639 This only makes sense when scheduling after register allocation, i.e.@: with
5640 @option{-fschedule-insns2} or at @option{-O2} or higher.
5641
5642 @item -fsched2-use-traces
5643 @opindex fsched2-use-traces
5644 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5645 allocation and additionally perform code duplication in order to increase the
5646 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5647 trace formation.
5648
5649 This mode should produce faster but significantly longer programs.  Also
5650 without @option{-fbranch-probabilities} the traces constructed may not
5651 match the reality and hurt the performance.  This only makes
5652 sense when scheduling after register allocation, i.e.@: with
5653 @option{-fschedule-insns2} or at @option{-O2} or higher.
5654
5655 @item -fsee
5656 @opindex fsee
5657 Eliminates redundant extension instructions and move the non redundant
5658 ones to optimal placement using LCM.
5659
5660 @item -freschedule-modulo-scheduled-loops
5661 @opindex fscheduling-in-modulo-scheduled-loops
5662 The modulo scheduling comes before the traditional scheduling, if a loop
5663 was modulo scheduled we may want to prevent the later scheduling passes
5664 from changing its schedule, we use this option to control that.
5665
5666 @item -fcaller-saves
5667 @opindex fcaller-saves
5668 Enable values to be allocated in registers that will be clobbered by
5669 function calls, by emitting extra instructions to save and restore the
5670 registers around such calls.  Such allocation is done only when it
5671 seems to result in better code than would otherwise be produced.
5672
5673 This option is always enabled by default on certain machines, usually
5674 those which have no call-preserved registers to use instead.
5675
5676 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5677
5678 @item -ftree-reassoc
5679 Perform Reassociation on trees  This flag is enabled by default
5680 at @option{-O} and higher.
5681
5682 @item -ftree-pre
5683 Perform Partial Redundancy Elimination (PRE) on trees.  This flag is
5684 enabled by default at @option{-O2} and @option{-O3}.
5685
5686 @item -ftree-fre
5687 Perform Full Redundancy Elimination (FRE) on trees.  The difference
5688 between FRE and PRE is that FRE only considers expressions
5689 that are computed on all paths leading to the redundant computation.
5690 This analysis is faster than PRE, though it exposes fewer redundancies.
5691 This flag is enabled by default at @option{-O} and higher.
5692
5693 @item -ftree-copy-prop
5694 Perform copy propagation on trees.  This pass eliminates unnecessary
5695 copy operations.  This flag is enabled by default at @option{-O} and
5696 higher.
5697
5698 @item -ftree-store-copy-prop
5699 Perform copy propagation of memory loads and stores.  This pass
5700 eliminates unnecessary copy operations in memory references
5701 (structures, global variables, arrays, etc).  This flag is enabled by
5702 default at @option{-O2} and higher.
5703
5704 @item -ftree-salias
5705 Perform structural alias analysis on trees.  This flag
5706 is enabled by default at @option{-O} and higher.
5707
5708 @item -fipa-pta
5709 Perform interprocedural pointer analysis.
5710
5711 @item -ftree-sink
5712 Perform forward store motion  on trees.  This flag is
5713 enabled by default at @option{-O} and higher.
5714
5715 @item -ftree-ccp
5716 Perform sparse conditional constant propagation (CCP) on trees.  This
5717 pass only operates on local scalar variables and is enabled by default
5718 at @option{-O} and higher.
5719
5720 @item -ftree-store-ccp
5721 Perform sparse conditional constant propagation (CCP) on trees.  This
5722 pass operates on both local scalar variables and memory stores and
5723 loads (global variables, structures, arrays, etc).  This flag is
5724 enabled by default at @option{-O2} and higher.
5725
5726 @item -ftree-dce
5727 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5728 default at @option{-O} and higher.
5729
5730 @item -ftree-dominator-opts
5731 Perform a variety of simple scalar cleanups (constant/copy
5732 propagation, redundancy elimination, range propagation and expression
5733 simplification) based on a dominator tree traversal.  This also
5734 performs jump threading (to reduce jumps to jumps). This flag is
5735 enabled by default at @option{-O} and higher.
5736
5737 @item -ftree-dse
5738 @opindex ftree-dse
5739 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5740 a memory location which will later be overwritten by another store without
5741 any intervening loads.  In this case the earlier store can be deleted.  This
5742 flag is enabled by default at @option{-O} and higher.
5743
5744 @item -ftree-ch
5745 Perform loop header copying on trees.  This is beneficial since it increases
5746 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5747 is enabled by default at @option{-O} and higher.  It is not enabled
5748 for @option{-Os}, since it usually increases code size.
5749
5750 @item -ftree-loop-optimize
5751 Perform loop optimizations on trees.  This flag is enabled by default
5752 at @option{-O} and higher.
5753
5754 @item -ftree-loop-linear
5755 Perform linear loop transformations on tree.  This flag can improve cache
5756 performance and allow further loop optimizations to take place.
5757
5758 @item -fcheck-data-deps
5759 Compare the results of several data dependence analyzers.  This option
5760 is used for debugging the data dependence analyzers.
5761
5762 @item -ftree-loop-im
5763 Perform loop invariant motion on trees.  This pass moves only invariants that
5764 would be hard to handle at RTL level (function calls, operations that expand to
5765 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5766 operands of conditions that are invariant out of the loop, so that we can use
5767 just trivial invariantness analysis in loop unswitching.  The pass also includes
5768 store motion.
5769
5770 @item -ftree-loop-ivcanon
5771 Create a canonical counter for number of iterations in the loop for that
5772 determining number of iterations requires complicated analysis.  Later
5773 optimizations then may determine the number easily.  Useful especially
5774 in connection with unrolling.
5775
5776 @item -fivopts
5777 Perform induction variable optimizations (strength reduction, induction
5778 variable merging and induction variable elimination) on trees.
5779
5780 @item -ftree-parallelize-loops=n
5781 @opindex ftree-parallelize-loops=n
5782 Parallelize loops, i.e., split their iteration space to run in n threads.
5783 This is only possible for loops whose iterations are independent
5784 and can be arbitrarily reordered.  The optimization is only
5785 profitable on multiprocessor machines, for loops that are CPU-intensive,
5786 rather than constrained e.g. by memory bandwidth.
5787
5788 @item -ftree-sra
5789 Perform scalar replacement of aggregates.  This pass replaces structure
5790 references with scalars to prevent committing structures to memory too
5791 early.  This flag is enabled by default at @option{-O} and higher.
5792
5793 @item -ftree-copyrename
5794 Perform copy renaming on trees.  This pass attempts to rename compiler
5795 temporaries to other variables at copy locations, usually resulting in
5796 variable names which more closely resemble the original variables.  This flag
5797 is enabled by default at @option{-O} and higher.
5798
5799 @item -ftree-ter
5800 Perform temporary expression replacement during the SSA->normal phase.  Single
5801 use/single def temporaries are replaced at their use location with their
5802 defining expression.  This results in non-GIMPLE code, but gives the expanders
5803 much more complex trees to work on resulting in better RTL generation.  This is
5804 enabled by default at @option{-O} and higher.
5805
5806 @item -ftree-vectorize
5807 Perform loop vectorization on trees.
5808
5809 @item -ftree-vect-loop-version
5810 @opindex ftree-vect-loop-version
5811 Perform loop versioning when doing loop vectorization on trees.  When a loop
5812 appears to be vectorizable except that data alignment or data dependence cannot
5813 be determined at compile time then vectorized and non-vectorized versions of
5814 the loop are generated along with runtime checks for alignment or dependence
5815 to control which version is executed.  This option is enabled by default
5816 except at level @option{-Os} where it is disabled.
5817
5818 @item -fvect-cost-model
5819 Enable cost model for vectorization.
5820
5821 @item -ftree-vrp
5822 Perform Value Range Propagation on trees.  This is similar to the
5823 constant propagation pass, but instead of values, ranges of values are
5824 propagated.  This allows the optimizers to remove unnecessary range
5825 checks like array bound checks and null pointer checks.  This is
5826 enabled by default at @option{-O2} and higher.  Null pointer check
5827 elimination is only done if @option{-fdelete-null-pointer-checks} is
5828 enabled.
5829
5830 @item -ftracer
5831 @opindex ftracer
5832 Perform tail duplication to enlarge superblock size.  This transformation
5833 simplifies the control flow of the function allowing other optimizations to do
5834 better job.
5835
5836 @item -funroll-loops
5837 @opindex funroll-loops
5838 Unroll loops whose number of iterations can be determined at compile
5839 time or upon entry to the loop.  @option{-funroll-loops} implies
5840 @option{-frerun-cse-after-loop}.  This option makes code larger,
5841 and may or may not make it run faster.
5842
5843 @item -funroll-all-loops
5844 @opindex funroll-all-loops
5845 Unroll all loops, even if their number of iterations is uncertain when
5846 the loop is entered.  This usually makes programs run more slowly.
5847 @option{-funroll-all-loops} implies the same options as
5848 @option{-funroll-loops},
5849
5850 @item -fsplit-ivs-in-unroller
5851 @opindex fsplit-ivs-in-unroller
5852 Enables expressing of values of induction variables in later iterations
5853 of the unrolled loop using the value in the first iteration.  This breaks
5854 long dependency chains, thus improving efficiency of the scheduling passes.
5855
5856 Combination of @option{-fweb} and CSE is often sufficient to obtain the
5857 same effect.  However in cases the loop body is more complicated than
5858 a single basic block, this is not reliable.  It also does not work at all
5859 on some of the architectures due to restrictions in the CSE pass.
5860
5861 This optimization is enabled by default.
5862
5863 @item -fvariable-expansion-in-unroller
5864 @opindex fvariable-expansion-in-unroller
5865 With this option, the compiler will create multiple copies of some
5866 local variables when unrolling a loop which can result in superior code.
5867
5868 @item -fpredictive-commoning
5869 @opindex fpredictive-commoning
5870 Perform predictive commoning optimization, i.e., reusing computations
5871 (especially memory loads and stores) performed in previous
5872 iterations of loops.
5873
5874 This option is enabled at level @option{-O3}.
5875
5876 @item -fprefetch-loop-arrays
5877 @opindex fprefetch-loop-arrays
5878 If supported by the target machine, generate instructions to prefetch
5879 memory to improve the performance of loops that access large arrays.
5880
5881 This option may generate better or worse code; results are highly
5882 dependent on the structure of loops within the source code.
5883
5884 Disabled at level @option{-Os}.
5885
5886 @item -fno-peephole
5887 @itemx -fno-peephole2
5888 @opindex fno-peephole
5889 @opindex fno-peephole2
5890 Disable any machine-specific peephole optimizations.  The difference
5891 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
5892 are implemented in the compiler; some targets use one, some use the
5893 other, a few use both.
5894
5895 @option{-fpeephole} is enabled by default.
5896 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5897
5898 @item -fno-guess-branch-probability
5899 @opindex fno-guess-branch-probability
5900 Do not guess branch probabilities using heuristics.
5901
5902 GCC will use heuristics to guess branch probabilities if they are
5903 not provided by profiling feedback (@option{-fprofile-arcs}).  These
5904 heuristics are based on the control flow graph.  If some branch probabilities
5905 are specified by @samp{__builtin_expect}, then the heuristics will be
5906 used to guess branch probabilities for the rest of the control flow graph,
5907 taking the @samp{__builtin_expect} info into account.  The interactions
5908 between the heuristics and @samp{__builtin_expect} can be complex, and in
5909 some cases, it may be useful to disable the heuristics so that the effects
5910 of @samp{__builtin_expect} are easier to understand.
5911
5912 The default is @option{-fguess-branch-probability} at levels
5913 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5914
5915 @item -freorder-blocks
5916 @opindex freorder-blocks
5917 Reorder basic blocks in the compiled function in order to reduce number of
5918 taken branches and improve code locality.
5919
5920 Enabled at levels @option{-O2}, @option{-O3}.
5921
5922 @item -freorder-blocks-and-partition
5923 @opindex freorder-blocks-and-partition
5924 In addition to reordering basic blocks in the compiled function, in order
5925 to reduce number of taken branches, partitions hot and cold basic blocks
5926 into separate sections of the assembly and .o files, to improve
5927 paging and cache locality performance.
5928
5929 This optimization is automatically turned off in the presence of
5930 exception handling, for linkonce sections, for functions with a user-defined
5931 section attribute and on any architecture that does not support named
5932 sections.
5933
5934 @item -freorder-functions
5935 @opindex freorder-functions
5936 Reorder functions in the object file in order to
5937 improve code locality.  This is implemented by using special
5938 subsections @code{.text.hot} for most frequently executed functions and
5939 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
5940 the linker so object file format must support named sections and linker must
5941 place them in a reasonable way.
5942
5943 Also profile feedback must be available in to make this option effective.  See
5944 @option{-fprofile-arcs} for details.
5945
5946 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5947
5948 @item -fstrict-aliasing
5949 @opindex fstrict-aliasing
5950 Allows the compiler to assume the strictest aliasing rules applicable to
5951 the language being compiled.  For C (and C++), this activates
5952 optimizations based on the type of expressions.  In particular, an
5953 object of one type is assumed never to reside at the same address as an
5954 object of a different type, unless the types are almost the same.  For
5955 example, an @code{unsigned int} can alias an @code{int}, but not a
5956 @code{void*} or a @code{double}.  A character type may alias any other
5957 type.
5958
5959 Pay special attention to code like this:
5960 @smallexample
5961 union a_union @{
5962   int i;
5963   double d;
5964 @};
5965
5966 int f() @{
5967   a_union t;
5968   t.d = 3.0;
5969   return t.i;
5970 @}
5971 @end smallexample
5972 The practice of reading from a different union member than the one most
5973 recently written to (called ``type-punning'') is common.  Even with
5974 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
5975 is accessed through the union type.  So, the code above will work as
5976 expected.  However, this code might not:
5977 @smallexample
5978 int f() @{
5979   a_union t;
5980   int* ip;
5981   t.d = 3.0;
5982   ip = &t.i;
5983   return *ip;
5984 @}
5985 @end smallexample
5986
5987 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5988
5989 @item -fstrict-overflow
5990 @opindex fstrict-overflow
5991 Allow the compiler to assume strict signed overflow rules, depending
5992 on the language being compiled.  For C (and C++) this means that
5993 overflow when doing arithmetic with signed numbers is undefined, which
5994 means that the compiler may assume that it will not happen.  This
5995 permits various optimizations.  For example, the compiler will assume
5996 that an expression like @code{i + 10 > i} will always be true for
5997 signed @code{i}.  This assumption is only valid if signed overflow is
5998 undefined, as the expression is false if @code{i + 10} overflows when
5999 using twos complement arithmetic.  When this option is in effect any
6000 attempt to determine whether an operation on signed numbers will
6001 overflow must be written carefully to not actually involve overflow.
6002
6003 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
6004 that signed overflow is fully defined: it wraps.  When
6005 @option{-fwrapv} is used, there is no difference between
6006 @option{-fstrict-overflow} and @option{-fno-strict-overflow}.  With
6007 @option{-fwrapv} certain types of overflow are permitted.  For
6008 example, if the compiler gets an overflow when doing arithmetic on
6009 constants, the overflowed value can still be used with
6010 @option{-fwrapv}, but not otherwise.
6011
6012 The @option{-fstrict-overflow} option is enabled at levels
6013 @option{-O2}, @option{-O3}, @option{-Os}.
6014
6015 @item -falign-functions
6016 @itemx -falign-functions=@var{n}
6017 @opindex falign-functions
6018 Align the start of functions to the next power-of-two greater than
6019 @var{n}, skipping up to @var{n} bytes.  For instance,
6020 @option{-falign-functions=32} aligns functions to the next 32-byte
6021 boundary, but @option{-falign-functions=24} would align to the next
6022 32-byte boundary only if this can be done by skipping 23 bytes or less.
6023
6024 @option{-fno-align-functions} and @option{-falign-functions=1} are
6025 equivalent and mean that functions will not be aligned.
6026
6027 Some assemblers only support this flag when @var{n} is a power of two;
6028 in that case, it is rounded up.
6029
6030 If @var{n} is not specified or is zero, use a machine-dependent default.
6031
6032 Enabled at levels @option{-O2}, @option{-O3}.
6033
6034 @item -falign-labels
6035 @itemx -falign-labels=@var{n}
6036 @opindex falign-labels
6037 Align all branch targets to a power-of-two boundary, skipping up to
6038 @var{n} bytes like @option{-falign-functions}.  This option can easily
6039 make code slower, because it must insert dummy operations for when the
6040 branch target is reached in the usual flow of the code.
6041
6042 @option{-fno-align-labels} and @option{-falign-labels=1} are
6043 equivalent and mean that labels will not be aligned.
6044
6045 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6046 are greater than this value, then their values are used instead.
6047
6048 If @var{n} is not specified or is zero, use a machine-dependent default
6049 which is very likely to be @samp{1}, meaning no alignment.
6050
6051 Enabled at levels @option{-O2}, @option{-O3}.
6052
6053 @item -falign-loops
6054 @itemx -falign-loops=@var{n}
6055 @opindex falign-loops
6056 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6057 like @option{-falign-functions}.  The hope is that the loop will be
6058 executed many times, which will make up for any execution of the dummy
6059 operations.
6060
6061 @option{-fno-align-loops} and @option{-falign-loops=1} are
6062 equivalent and mean that loops will not be aligned.
6063
6064 If @var{n} is not specified or is zero, use a machine-dependent default.
6065
6066 Enabled at levels @option{-O2}, @option{-O3}.
6067
6068 @item -falign-jumps
6069 @itemx -falign-jumps=@var{n}
6070 @opindex falign-jumps
6071 Align branch targets to a power-of-two boundary, for branch targets
6072 where the targets can only be reached by jumping, skipping up to @var{n}
6073 bytes like @option{-falign-functions}.  In this case, no dummy operations
6074 need be executed.
6075
6076 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6077 equivalent and mean that loops will not be aligned.
6078
6079 If @var{n} is not specified or is zero, use a machine-dependent default.
6080
6081 Enabled at levels @option{-O2}, @option{-O3}.
6082
6083 @item -funit-at-a-time
6084 @opindex funit-at-a-time
6085 Parse the whole compilation unit before starting to produce code.
6086 This allows some extra optimizations to take place but consumes
6087 more memory (in general).  There are some compatibility issues
6088 with @emph{unit-at-a-time} mode:
6089 @itemize @bullet
6090 @item
6091 enabling @emph{unit-at-a-time} mode may change the order
6092 in which functions, variables, and top-level @code{asm} statements
6093 are emitted, and will likely break code relying on some particular
6094 ordering.  The majority of such top-level @code{asm} statements,
6095 though, can be replaced by @code{section} attributes.  The
6096 @option{fno-toplevel-reorder} option may be used to keep the ordering
6097 used in the input file, at the cost of some optimizations.
6098
6099 @item
6100 @emph{unit-at-a-time} mode removes unreferenced static variables
6101 and functions.  This may result in undefined references
6102 when an @code{asm} statement refers directly to variables or functions
6103 that are otherwise unused.  In that case either the variable/function
6104 shall be listed as an operand of the @code{asm} statement operand or,
6105 in the case of top-level @code{asm} statements the attribute @code{used}
6106 shall be used on the declaration.
6107
6108 @item
6109 Static functions now can use non-standard passing conventions that
6110 may break @code{asm} statements calling functions directly.  Again,
6111 attribute @code{used} will prevent this behavior.
6112 @end itemize
6113
6114 As a temporary workaround, @option{-fno-unit-at-a-time} can be used,
6115 but this scheme may not be supported by future releases of GCC@.
6116
6117 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6118
6119 @item -fno-toplevel-reorder
6120 Do not reorder top-level functions, variables, and @code{asm}
6121 statements.  Output them in the same order that they appear in the
6122 input file.  When this option is used, unreferenced static variables
6123 will not be removed.  This option is intended to support existing code
6124 which relies on a particular ordering.  For new code, it is better to
6125 use attributes.
6126
6127 @item -fweb
6128 @opindex fweb
6129 Constructs webs as commonly used for register allocation purposes and assign
6130 each web individual pseudo register.  This allows the register allocation pass
6131 to operate on pseudos directly, but also strengthens several other optimization
6132 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6133 however, make debugging impossible, since variables will no longer stay in a
6134 ``home register''.
6135
6136 Enabled by default with @option{-funroll-loops}.
6137
6138 @item -fwhole-program
6139 @opindex fwhole-program
6140 Assume that the current compilation unit represents whole program being
6141 compiled.  All public functions and variables with the exception of @code{main}
6142 and those merged by attribute @code{externally_visible} become static functions
6143 and in a affect gets more aggressively optimized by interprocedural optimizers.
6144 While this option is equivalent to proper use of @code{static} keyword for
6145 programs consisting of single file, in combination with option
6146 @option{--combine} this flag can be used to compile most of smaller scale C
6147 programs since the functions and variables become local for the whole combined
6148 compilation unit, not for the single source file itself.
6149
6150 This option is not supported for Fortran programs.
6151
6152 @item -fno-cprop-registers
6153 @opindex fno-cprop-registers
6154 After register allocation and post-register allocation instruction splitting,
6155 we perform a copy-propagation pass to try to reduce scheduling dependencies
6156 and occasionally eliminate the copy.
6157
6158 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6159
6160 @item -fprofile-generate
6161 @opindex fprofile-generate
6162
6163 Enable options usually used for instrumenting application to produce
6164 profile useful for later recompilation with profile feedback based
6165 optimization.  You must use @option{-fprofile-generate} both when
6166 compiling and when linking your program.
6167
6168 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6169
6170 @item -fprofile-use
6171 @opindex fprofile-use
6172 Enable profile feedback directed optimizations, and optimizations
6173 generally profitable only with profile feedback available.
6174
6175 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6176 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6177
6178 By default, GCC emits an error message if the feedback profiles do not
6179 match the source code.  This error can be turned into a warning by using
6180 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6181 code.
6182 @end table
6183
6184 The following options control compiler behavior regarding floating
6185 point arithmetic.  These options trade off between speed and
6186 correctness.  All must be specifically enabled.
6187
6188 @table @gcctabopt
6189 @item -ffloat-store
6190 @opindex ffloat-store
6191 Do not store floating point variables in registers, and inhibit other
6192 options that might change whether a floating point value is taken from a
6193 register or memory.
6194
6195 @cindex floating point precision
6196 This option prevents undesirable excess precision on machines such as
6197 the 68000 where the floating registers (of the 68881) keep more
6198 precision than a @code{double} is supposed to have.  Similarly for the
6199 x86 architecture.  For most programs, the excess precision does only
6200 good, but a few programs rely on the precise definition of IEEE floating
6201 point.  Use @option{-ffloat-store} for such programs, after modifying
6202 them to store all pertinent intermediate computations into variables.
6203
6204 @item -ffast-math
6205 @opindex ffast-math
6206 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, @*
6207 @option{-fno-trapping-math}, @option{-ffinite-math-only},
6208 @option{-fno-rounding-math}, @option{-fno-signaling-nans},
6209 @option{-fno-signed-zeros} and @option{fcx-limited-range}.
6210
6211 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6212
6213 This option is not turned on by any @option{-O} option since
6214 it can result in incorrect output for programs which depend on
6215 an exact implementation of IEEE or ISO rules/specifications for
6216 math functions. It may, however, yield faster code for programs
6217 that do not require the guarantees of these specifications.
6218
6219 @item -fno-math-errno
6220 @opindex fno-math-errno
6221 Do not set ERRNO after calling math functions that are executed
6222 with a single instruction, e.g., sqrt.  A program that relies on
6223 IEEE exceptions for math error handling may want to use this flag
6224 for speed while maintaining IEEE arithmetic compatibility.
6225
6226 This option is not turned on by any @option{-O} option since
6227 it can result in incorrect output for programs which depend on
6228 an exact implementation of IEEE or ISO rules/specifications for
6229 math functions. It may, however, yield faster code for programs
6230 that do not require the guarantees of these specifications.
6231
6232 The default is @option{-fmath-errno}.
6233
6234 On Darwin systems, the math library never sets @code{errno}.  There is
6235 therefore no reason for the compiler to consider the possibility that
6236 it might, and @option{-fno-math-errno} is the default.
6237
6238 @item -funsafe-math-optimizations
6239 @opindex funsafe-math-optimizations
6240
6241 Allow optimizations for floating-point arithmetic that (a) assume
6242 that arguments and results are valid and (b) may violate IEEE or
6243 ANSI standards.  When used at link-time, it may include libraries
6244 or startup files that change the default FPU control word or other
6245 similar optimizations.
6246
6247 This option is not turned on by any @option{-O} option since
6248 it can result in incorrect output for programs which depend on
6249 an exact implementation of IEEE or ISO rules/specifications for
6250 math functions. It may, however, yield faster code for programs
6251 that do not require the guarantees of these specifications.
6252 Enables @option{-freciprocal-math} and @option{-fassociative-math}.
6253
6254 The default is @option{-fno-unsafe-math-optimizations}.
6255
6256 @item -fassociative-math
6257 @opindex -fassociative-math
6258
6259 Allow re-association of operands in series of floating-point operations.
6260 This violates the ISO C and C++ language standard by possibly changing
6261 computation result.  NOTE: re-ordering may change the sign of zero as
6262 well as ignore NaNs and inhibit or create underflow or overflow (and
6263 thus cannot be used on a code which relies on rounding behavior like
6264 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6265 and thus may not be used when ordered comparisons are required.
6266 This flag doesn't make much sense without @option{-fno-signed-zeros}
6267 or @option{-fno-trapping-math} or with @option{-frounding-math}.
6268
6269 The default is @option{-fno-associative-math}.
6270
6271 @item -freciprocal-math
6272 @opindex -freciprocal-math
6273
6274 Allow the reciprocal of a value to be used instead of dividing by
6275 the value if this enables optimizations.  For example @code{x / y}
6276 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6277 is subject to common subexpression elimination.  Note that this loses
6278 precision and increases the number of flops operating on the value.
6279
6280 The default is @option{-fno-reciprocal-math}.
6281
6282 @item -ffinite-math-only
6283 @opindex ffinite-math-only
6284 Allow optimizations for floating-point arithmetic that assume
6285 that arguments and results are not NaNs or +-Infs.
6286
6287 This option is not turned on by any @option{-O} option since
6288 it can result in incorrect output for programs which depend on
6289 an exact implementation of IEEE or ISO rules/specifications for
6290 math functions. It may, however, yield faster code for programs
6291 that do not require the guarantees of these specifications.
6292
6293 The default is @option{-fno-finite-math-only}.
6294
6295 @item -fno-signed-zeros
6296 @opindex fno-signed-zeros
6297 Allow optimizations for floating point arithmetic that ignore the
6298 signedness of zero.  IEEE arithmetic specifies the behavior of
6299 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6300 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6301 This option implies that the sign of a zero result isn't significant.
6302
6303 The default is @option{-fsigned-zeros}.
6304
6305 @item -fno-trapping-math
6306 @opindex fno-trapping-math
6307 Compile code assuming that floating-point operations cannot generate
6308 user-visible traps.  These traps include division by zero, overflow,
6309 underflow, inexact result and invalid operation.  This option implies
6310 @option{-fno-signaling-nans}.  Setting this option may allow faster
6311 code if one relies on ``non-stop'' IEEE arithmetic, for example.
6312
6313 This option should never be turned on by any @option{-O} option since
6314 it can result in incorrect output for programs which depend on
6315 an exact implementation of IEEE or ISO rules/specifications for
6316 math functions.
6317
6318 The default is @option{-ftrapping-math}.
6319
6320 @item -frounding-math
6321 @opindex frounding-math
6322 Disable transformations and optimizations that assume default floating
6323 point rounding behavior.  This is round-to-zero for all floating point
6324 to integer conversions, and round-to-nearest for all other arithmetic
6325 truncations.  This option should be specified for programs that change
6326 the FP rounding mode dynamically, or that may be executed with a
6327 non-default rounding mode.  This option disables constant folding of
6328 floating point expressions at compile-time (which may be affected by
6329 rounding mode) and arithmetic transformations that are unsafe in the
6330 presence of sign-dependent rounding modes.
6331
6332 The default is @option{-fno-rounding-math}.
6333
6334 This option is experimental and does not currently guarantee to
6335 disable all GCC optimizations that are affected by rounding mode.
6336 Future versions of GCC may provide finer control of this setting
6337 using C99's @code{FENV_ACCESS} pragma.  This command line option
6338 will be used to specify the default state for @code{FENV_ACCESS}.
6339
6340 @item -frtl-abstract-sequences
6341 @opindex frtl-abstract-sequences
6342 It is a size optimization method. This option is to find identical
6343 sequences of code, which can be turned into pseudo-procedures  and
6344 then  replace  all  occurrences with  calls to  the  newly created
6345 subroutine. It is kind of an opposite of @option{-finline-functions}.
6346 This optimization runs at RTL level.
6347
6348 @item -fsignaling-nans
6349 @opindex fsignaling-nans
6350 Compile code assuming that IEEE signaling NaNs may generate user-visible
6351 traps during floating-point operations.  Setting this option disables
6352 optimizations that may change the number of exceptions visible with
6353 signaling NaNs.  This option implies @option{-ftrapping-math}.
6354
6355 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6356 be defined.
6357
6358 The default is @option{-fno-signaling-nans}.
6359
6360 This option is experimental and does not currently guarantee to
6361 disable all GCC optimizations that affect signaling NaN behavior.
6362
6363 @item -fsingle-precision-constant
6364 @opindex fsingle-precision-constant
6365 Treat floating point constant as single precision constant instead of
6366 implicitly converting it to double precision constant.
6367
6368 @item -fcx-limited-range
6369 @itemx -fno-cx-limited-range
6370 @opindex fcx-limited-range
6371 @opindex fno-cx-limited-range
6372 When enabled, this option states that a range reduction step is not
6373 needed when performing complex division.  The default is
6374 @option{-fno-cx-limited-range}, but is enabled by @option{-ffast-math}.
6375
6376 This option controls the default setting of the ISO C99
6377 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6378 all languages.
6379
6380 @end table
6381
6382 The following options control optimizations that may improve
6383 performance, but are not enabled by any @option{-O} options.  This
6384 section includes experimental options that may produce broken code.
6385
6386 @table @gcctabopt
6387 @item -fbranch-probabilities
6388 @opindex fbranch-probabilities
6389 After running a program compiled with @option{-fprofile-arcs}
6390 (@pxref{Debugging Options,, Options for Debugging Your Program or
6391 @command{gcc}}), you can compile it a second time using
6392 @option{-fbranch-probabilities}, to improve optimizations based on
6393 the number of times each branch was taken.  When the program
6394 compiled with @option{-fprofile-arcs} exits it saves arc execution
6395 counts to a file called @file{@var{sourcename}.gcda} for each source
6396 file.  The information in this data file is very dependent on the
6397 structure of the generated code, so you must use the same source code
6398 and the same optimization options for both compilations.
6399
6400 With @option{-fbranch-probabilities}, GCC puts a
6401 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6402 These can be used to improve optimization.  Currently, they are only
6403 used in one place: in @file{reorg.c}, instead of guessing which path a
6404 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6405 exactly determine which path is taken more often.
6406
6407 @item -fprofile-values
6408 @opindex fprofile-values
6409 If combined with @option{-fprofile-arcs}, it adds code so that some
6410 data about values of expressions in the program is gathered.
6411
6412 With @option{-fbranch-probabilities}, it reads back the data gathered
6413 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6414 notes to instructions for their later usage in optimizations.
6415
6416 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6417
6418 @item -fvpt
6419 @opindex fvpt
6420 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6421 a code to gather information about values of expressions.
6422
6423 With @option{-fbranch-probabilities}, it reads back the data gathered
6424 and actually performs the optimizations based on them.
6425 Currently the optimizations include specialization of division operation
6426 using the knowledge about the value of the denominator.
6427
6428 @item -frename-registers
6429 @opindex frename-registers
6430 Attempt to avoid false dependencies in scheduled code by making use
6431 of registers left over after register allocation.  This optimization
6432 will most benefit processors with lots of registers.  Depending on the
6433 debug information format adopted by the target, however, it can
6434 make debugging impossible, since variables will no longer stay in
6435 a ``home register''.
6436
6437 Enabled by default with @option{-funroll-loops}.
6438
6439 @item -ftracer
6440 @opindex ftracer
6441 Perform tail duplication to enlarge superblock size.  This transformation
6442 simplifies the control flow of the function allowing other optimizations to do
6443 better job.
6444
6445 Enabled with @option{-fprofile-use}.
6446
6447 @item -funroll-loops
6448 @opindex funroll-loops
6449 Unroll loops whose number of iterations can be determined at compile time or
6450 upon entry to the loop.  @option{-funroll-loops} implies
6451 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6452 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6453 small constant number of iterations).  This option makes code larger, and may
6454 or may not make it run faster.
6455
6456 Enabled with @option{-fprofile-use}.
6457
6458 @item -funroll-all-loops
6459 @opindex funroll-all-loops
6460 Unroll all loops, even if their number of iterations is uncertain when
6461 the loop is entered.  This usually makes programs run more slowly.
6462 @option{-funroll-all-loops} implies the same options as
6463 @option{-funroll-loops}.
6464
6465 @item -fpeel-loops
6466 @opindex fpeel-loops
6467 Peels the loops for that there is enough information that they do not
6468 roll much (from profile feedback).  It also turns on complete loop peeling
6469 (i.e.@: complete removal of loops with small constant number of iterations).
6470
6471 Enabled with @option{-fprofile-use}.
6472
6473 @item -fmove-loop-invariants
6474 @opindex fmove-loop-invariants
6475 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6476 at level @option{-O1}
6477
6478 @item -funswitch-loops
6479 @opindex funswitch-loops
6480 Move branches with loop invariant conditions out of the loop, with duplicates
6481 of the loop on both branches (modified according to result of the condition).
6482
6483 @item -ffunction-sections
6484 @itemx -fdata-sections
6485 @opindex ffunction-sections
6486 @opindex fdata-sections
6487 Place each function or data item into its own section in the output
6488 file if the target supports arbitrary sections.  The name of the
6489 function or the name of the data item determines the section's name
6490 in the output file.
6491
6492 Use these options on systems where the linker can perform optimizations
6493 to improve locality of reference in the instruction space.  Most systems
6494 using the ELF object format and SPARC processors running Solaris 2 have
6495 linkers with such optimizations.  AIX may have these optimizations in
6496 the future.
6497
6498 Only use these options when there are significant benefits from doing
6499 so.  When you specify these options, the assembler and linker will
6500 create larger object and executable files and will also be slower.
6501 You will not be able to use @code{gprof} on all systems if you
6502 specify this option and you may have problems with debugging if
6503 you specify both this option and @option{-g}.
6504
6505 @item -fbranch-target-load-optimize
6506 @opindex fbranch-target-load-optimize
6507 Perform branch target register load optimization before prologue / epilogue
6508 threading.
6509 The use of target registers can typically be exposed only during reload,
6510 thus hoisting loads out of loops and doing inter-block scheduling needs
6511 a separate optimization pass.
6512
6513 @item -fbranch-target-load-optimize2
6514 @opindex fbranch-target-load-optimize2
6515 Perform branch target register load optimization after prologue / epilogue
6516 threading.
6517
6518 @item -fbtr-bb-exclusive
6519 @opindex fbtr-bb-exclusive
6520 When performing branch target register load optimization, don't reuse
6521 branch target registers in within any basic block.
6522
6523 @item -fstack-protector
6524 Emit extra code to check for buffer overflows, such as stack smashing
6525 attacks.  This is done by adding a guard variable to functions with
6526 vulnerable objects.  This includes functions that call alloca, and
6527 functions with buffers larger than 8 bytes.  The guards are initialized
6528 when a function is entered and then checked when the function exits.
6529 If a guard check fails, an error message is printed and the program exits.
6530
6531 @item -fstack-protector-all
6532 Like @option{-fstack-protector} except that all functions are protected.
6533
6534 @item -fsection-anchors
6535 @opindex fsection-anchors
6536 Try to reduce the number of symbolic address calculations by using
6537 shared ``anchor'' symbols to address nearby objects.  This transformation
6538 can help to reduce the number of GOT entries and GOT accesses on some
6539 targets.
6540
6541 For example, the implementation of the following function @code{foo}:
6542
6543 @smallexample
6544 static int a, b, c;
6545 int foo (void) @{ return a + b + c; @}
6546 @end smallexample
6547
6548 would usually calculate the addresses of all three variables, but if you
6549 compile it with @option{-fsection-anchors}, it will access the variables
6550 from a common anchor point instead.  The effect is similar to the
6551 following pseudocode (which isn't valid C):
6552
6553 @smallexample
6554 int foo (void)
6555 @{
6556   register int *xr = &x;
6557   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6558 @}
6559 @end smallexample
6560
6561 Not all targets support this option.
6562
6563 @item --param @var{name}=@var{value}
6564 @opindex param
6565 In some places, GCC uses various constants to control the amount of
6566 optimization that is done.  For example, GCC will not inline functions
6567 that contain more that a certain number of instructions.  You can
6568 control some of these constants on the command-line using the
6569 @option{--param} option.
6570
6571 The names of specific parameters, and the meaning of the values, are
6572 tied to the internals of the compiler, and are subject to change
6573 without notice in future releases.
6574
6575 In each case, the @var{value} is an integer.  The allowable choices for
6576 @var{name} are given in the following table:
6577
6578 @table @gcctabopt
6579 @item salias-max-implicit-fields
6580 The maximum number of fields in a variable without direct
6581 structure accesses for which structure aliasing will consider trying
6582 to track each field.  The default is 5
6583
6584 @item salias-max-array-elements
6585 The maximum number of elements an array can have and its elements
6586 still be tracked individually by structure aliasing. The default is 4
6587
6588 @item sra-max-structure-size
6589 The maximum structure size, in bytes, at which the scalar replacement
6590 of aggregates (SRA) optimization will perform block copies.  The
6591 default value, 0, implies that GCC will select the most appropriate
6592 size itself.
6593
6594 @item sra-field-structure-ratio
6595 The threshold ratio (as a percentage) between instantiated fields and
6596 the complete structure size.  We say that if the ratio of the number
6597 of bytes in instantiated fields to the number of bytes in the complete
6598 structure exceeds this parameter, then block copies are not used.  The
6599 default is 75.
6600
6601 @item max-crossjump-edges
6602 The maximum number of incoming edges to consider for crossjumping.
6603 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6604 the number of edges incoming to each block.  Increasing values mean
6605 more aggressive optimization, making the compile time increase with
6606 probably small improvement in executable size.
6607
6608 @item min-crossjump-insns
6609 The minimum number of instructions which must be matched at the end
6610 of two blocks before crossjumping will be performed on them.  This
6611 value is ignored in the case where all instructions in the block being
6612 crossjumped from are matched.  The default value is 5.
6613
6614 @item max-grow-copy-bb-insns
6615 The maximum code size expansion factor when copying basic blocks
6616 instead of jumping.  The expansion is relative to a jump instruction.
6617 The default value is 8.
6618
6619 @item max-goto-duplication-insns
6620 The maximum number of instructions to duplicate to a block that jumps
6621 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6622 passes, GCC factors computed gotos early in the compilation process,
6623 and unfactors them as late as possible.  Only computed jumps at the
6624 end of a basic blocks with no more than max-goto-duplication-insns are
6625 unfactored.  The default value is 8.
6626
6627 @item max-delay-slot-insn-search
6628 The maximum number of instructions to consider when looking for an
6629 instruction to fill a delay slot.  If more than this arbitrary number of
6630 instructions is searched, the time savings from filling the delay slot
6631 will be minimal so stop searching.  Increasing values mean more
6632 aggressive optimization, making the compile time increase with probably
6633 small improvement in executable run time.
6634
6635 @item max-delay-slot-live-search
6636 When trying to fill delay slots, the maximum number of instructions to
6637 consider when searching for a block with valid live register
6638 information.  Increasing this arbitrarily chosen value means more
6639 aggressive optimization, increasing the compile time.  This parameter
6640 should be removed when the delay slot code is rewritten to maintain the
6641 control-flow graph.
6642
6643 @item max-gcse-memory
6644 The approximate maximum amount of memory that will be allocated in
6645 order to perform the global common subexpression elimination
6646 optimization.  If more memory than specified is required, the
6647 optimization will not be done.
6648
6649 @item max-gcse-passes
6650 The maximum number of passes of GCSE to run.  The default is 1.
6651
6652 @item max-pending-list-length
6653 The maximum number of pending dependencies scheduling will allow
6654 before flushing the current state and starting over.  Large functions
6655 with few branches or calls can create excessively large lists which
6656 needlessly consume memory and resources.
6657
6658 @item max-inline-insns-single
6659 Several parameters control the tree inliner used in gcc.
6660 This number sets the maximum number of instructions (counted in GCC's
6661 internal representation) in a single function that the tree inliner
6662 will consider for inlining.  This only affects functions declared
6663 inline and methods implemented in a class declaration (C++).
6664 The default value is 450.
6665
6666 @item max-inline-insns-auto
6667 When you use @option{-finline-functions} (included in @option{-O3}),
6668 a lot of functions that would otherwise not be considered for inlining
6669 by the compiler will be investigated.  To those functions, a different
6670 (more restrictive) limit compared to functions declared inline can
6671 be applied.
6672 The default value is 90.
6673
6674 @item large-function-insns
6675 The limit specifying really large functions.  For functions larger than this
6676 limit after inlining inlining is constrained by
6677 @option{--param large-function-growth}.  This parameter is useful primarily
6678 to avoid extreme compilation time caused by non-linear algorithms used by the
6679 backend.
6680 This parameter is ignored when @option{-funit-at-a-time} is not used.
6681 The default value is 2700.
6682
6683 @item large-function-growth
6684 Specifies maximal growth of large function caused by inlining in percents.
6685 This parameter is ignored when @option{-funit-at-a-time} is not used.
6686 The default value is 100 which limits large function growth to 2.0 times
6687 the original size.
6688
6689 @item large-unit-insns
6690 The limit specifying large translation unit.  Growth caused by inlining of
6691 units larger than this limit is limited by @option{--param inline-unit-growth}.
6692 For small units this might be too tight (consider unit consisting of function A
6693 that is inline and B that just calls A three time.  If B is small relative to
6694 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6695 large units consisting of small inlininable functions however the overall unit
6696 growth limit is needed to avoid exponential explosion of code size.  Thus for
6697 smaller units, the size is increased to @option{--param large-unit-insns}
6698 before applying @option{--param inline-unit-growth}.  The default is 10000
6699
6700 @item inline-unit-growth
6701 Specifies maximal overall growth of the compilation unit caused by inlining.
6702 This parameter is ignored when @option{-funit-at-a-time} is not used.
6703 The default value is 30 which limits unit growth to 1.3 times the original
6704 size.
6705
6706 @item large-stack-frame
6707 The limit specifying large stack frames.  While inlining the algorithm is trying
6708 to not grow past this limit too much.  Default value is 256 bytes.
6709
6710 @item large-stack-frame-growth
6711 Specifies maximal growth of large stack frames caused by inlining in percents.
6712 The default value is 1000 which limits large stack frame growth to 11 times
6713 the original size.
6714
6715 @item max-inline-insns-recursive
6716 @itemx max-inline-insns-recursive-auto
6717 Specifies maximum number of instructions out-of-line copy of self recursive inline
6718 function can grow into by performing recursive inlining.
6719
6720 For functions declared inline @option{--param max-inline-insns-recursive} is
6721 taken into account.  For function not declared inline, recursive inlining
6722 happens only when @option{-finline-functions} (included in @option{-O3}) is
6723 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6724 default value is 450.
6725
6726 @item max-inline-recursive-depth
6727 @itemx max-inline-recursive-depth-auto
6728 Specifies maximum recursion depth used by the recursive inlining.
6729
6730 For functions declared inline @option{--param max-inline-recursive-depth} is
6731 taken into account.  For function not declared inline, recursive inlining
6732 happens only when @option{-finline-functions} (included in @option{-O3}) is
6733 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6734 default value is 450.
6735
6736 @item min-inline-recursive-probability
6737 Recursive inlining is profitable only for function having deep recursion
6738 in average and can hurt for function having little recursion depth by
6739 increasing the prologue size or complexity of function body to other
6740 optimizers.
6741
6742 When profile feedback is available (see @option{-fprofile-generate}) the actual
6743 recursion depth can be guessed from probability that function will recurse via
6744 given call expression.  This parameter limits inlining only to call expression
6745 whose probability exceeds given threshold (in percents).  The default value is
6746 10.
6747
6748 @item inline-call-cost
6749 Specify cost of call instruction relative to simple arithmetics operations
6750 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
6751 functions and at the same time increases size of leaf function that is believed to
6752 reduce function size by being inlined.  In effect it increases amount of
6753 inlining for code having large abstraction penalty (many functions that just
6754 pass the arguments to other functions) and decrease inlining for code with low
6755 abstraction penalty.  The default value is 12.
6756
6757 @item min-vect-loop-bound
6758 The minimum number of iterations under which a loop will not get vectorized
6759 when @option{-ftree-vectorize} is used.  The number of iterations after
6760 vectorization needs to be greater than the value specified by this option
6761 to allow vectorization.  The default value is 0.
6762
6763 @item max-unrolled-insns
6764 The maximum number of instructions that a loop should have if that loop
6765 is unrolled, and if the loop is unrolled, it determines how many times
6766 the loop code is unrolled.
6767
6768 @item max-average-unrolled-insns
6769 The maximum number of instructions biased by probabilities of their execution
6770 that a loop should have if that loop is unrolled, and if the loop is unrolled,
6771 it determines how many times the loop code is unrolled.
6772
6773 @item max-unroll-times
6774 The maximum number of unrollings of a single loop.
6775
6776 @item max-peeled-insns
6777 The maximum number of instructions that a loop should have if that loop
6778 is peeled, and if the loop is peeled, it determines how many times
6779 the loop code is peeled.
6780
6781 @item max-peel-times
6782 The maximum number of peelings of a single loop.
6783
6784 @item max-completely-peeled-insns
6785 The maximum number of insns of a completely peeled loop.
6786
6787 @item max-completely-peel-times
6788 The maximum number of iterations of a loop to be suitable for complete peeling.
6789
6790 @item max-unswitch-insns
6791 The maximum number of insns of an unswitched loop.
6792
6793 @item max-unswitch-level
6794 The maximum number of branches unswitched in a single loop.
6795
6796 @item lim-expensive
6797 The minimum cost of an expensive expression in the loop invariant motion.
6798
6799 @item iv-consider-all-candidates-bound
6800 Bound on number of candidates for induction variables below that
6801 all candidates are considered for each use in induction variable
6802 optimizations.  Only the most relevant candidates are considered
6803 if there are more candidates, to avoid quadratic time complexity.
6804
6805 @item iv-max-considered-uses
6806 The induction variable optimizations give up on loops that contain more
6807 induction variable uses.
6808
6809 @item iv-always-prune-cand-set-bound
6810 If number of candidates in the set is smaller than this value,
6811 we always try to remove unnecessary ivs from the set during its
6812 optimization when a new iv is added to the set.
6813
6814 @item scev-max-expr-size
6815 Bound on size of expressions used in the scalar evolutions analyzer.
6816 Large expressions slow the analyzer.
6817
6818 @item omega-max-vars
6819 The maximum number of variables in an Omega constraint system.
6820 The default value is 128.
6821
6822 @item omega-max-geqs
6823 The maximum number of inequalities in an Omega constraint system.
6824 The default value is 256.
6825
6826 @item omega-max-eqs
6827 The maximum number of equalities in an Omega constraint system.
6828 The default value is 128.
6829
6830 @item omega-max-wild-cards
6831 The maximum number of wildcard variables that the Omega solver will
6832 be able to insert.  The default value is 18.
6833
6834 @item omega-hash-table-size
6835 The size of the hash table in the Omega solver.  The default value is
6836 550.
6837
6838 @item omega-max-keys
6839 The maximal number of keys used by the Omega solver.  The default
6840 value is 500.
6841
6842 @item omega-eliminate-redundant-constraints
6843 When set to 1, use expensive methods to eliminate all redundant
6844 constraints.  The default value is 0.
6845
6846 @item vect-max-version-for-alignment-checks
6847 The maximum number of runtime checks that can be performed when
6848 doing loop versioning for alignment in the vectorizer.  See option
6849 ftree-vect-loop-version for more information.
6850
6851 @item vect-max-version-for-alias-checks
6852 The maximum number of runtime checks that can be performed when
6853 doing loop versioning for alias in the vectorizer.  See option
6854 ftree-vect-loop-version for more information.
6855
6856 @item max-iterations-to-track
6857
6858 The maximum number of iterations of a loop the brute force algorithm
6859 for analysis of # of iterations of the loop tries to evaluate.
6860
6861 @item hot-bb-count-fraction
6862 Select fraction of the maximal count of repetitions of basic block in program
6863 given basic block needs to have to be considered hot.
6864
6865 @item hot-bb-frequency-fraction
6866 Select fraction of the maximal frequency of executions of basic block in
6867 function given basic block needs to have to be considered hot
6868
6869 @item max-predicted-iterations
6870 The maximum number of loop iterations we predict statically.  This is useful
6871 in cases where function contain single loop with known bound and other loop
6872 with unknown.  We predict the known number of iterations correctly, while
6873 the unknown number of iterations average to roughly 10.  This means that the
6874 loop without bounds would appear artificially cold relative to the other one.
6875
6876 @item tracer-dynamic-coverage
6877 @itemx tracer-dynamic-coverage-feedback
6878
6879 This value is used to limit superblock formation once the given percentage of
6880 executed instructions is covered.  This limits unnecessary code size
6881 expansion.
6882
6883 The @option{tracer-dynamic-coverage-feedback} is used only when profile
6884 feedback is available.  The real profiles (as opposed to statically estimated
6885 ones) are much less balanced allowing the threshold to be larger value.
6886
6887 @item tracer-max-code-growth
6888 Stop tail duplication once code growth has reached given percentage.  This is
6889 rather hokey argument, as most of the duplicates will be eliminated later in
6890 cross jumping, so it may be set to much higher values than is the desired code
6891 growth.
6892
6893 @item tracer-min-branch-ratio
6894
6895 Stop reverse growth when the reverse probability of best edge is less than this
6896 threshold (in percent).
6897
6898 @item tracer-min-branch-ratio
6899 @itemx tracer-min-branch-ratio-feedback
6900
6901 Stop forward growth if the best edge do have probability lower than this
6902 threshold.
6903
6904 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
6905 compilation for profile feedback and one for compilation without.  The value
6906 for compilation with profile feedback needs to be more conservative (higher) in
6907 order to make tracer effective.
6908
6909 @item max-cse-path-length
6910
6911 Maximum number of basic blocks on path that cse considers.  The default is 10.
6912
6913 @item max-cse-insns
6914 The maximum instructions CSE process before flushing. The default is 1000.
6915
6916 @item max-aliased-vops
6917
6918 Maximum number of virtual operands per function allowed to represent
6919 aliases before triggering the alias partitioning heuristic.  Alias
6920 partitioning reduces compile times and memory consumption needed for
6921 aliasing at the expense of precision loss in alias information.  The
6922 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
6923 for -O3.
6924
6925 Notice that if a function contains more memory statements than the
6926 value of this parameter, it is not really possible to achieve this
6927 reduction.  In this case, the compiler will use the number of memory
6928 statements as the value for @option{max-aliased-vops}.
6929
6930 @item avg-aliased-vops
6931
6932 Average number of virtual operands per statement allowed to represent
6933 aliases before triggering the alias partitioning heuristic.  This
6934 works in conjunction with @option{max-aliased-vops}.  If a function
6935 contains more than @option{max-aliased-vops} virtual operators, then
6936 memory symbols will be grouped into memory partitions until either the
6937 total number of virtual operators is below @option{max-aliased-vops}
6938 or the average number of virtual operators per memory statement is
6939 below @option{avg-aliased-vops}.  The default value for this parameter
6940 is 1 for -O1 and -O2, and 3 for -O3.
6941
6942 @item ggc-min-expand
6943
6944 GCC uses a garbage collector to manage its own memory allocation.  This
6945 parameter specifies the minimum percentage by which the garbage
6946 collector's heap should be allowed to expand between collections.
6947 Tuning this may improve compilation speed; it has no effect on code
6948 generation.
6949
6950 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
6951 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
6952 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
6953 GCC is not able to calculate RAM on a particular platform, the lower
6954 bound of 30% is used.  Setting this parameter and
6955 @option{ggc-min-heapsize} to zero causes a full collection to occur at
6956 every opportunity.  This is extremely slow, but can be useful for
6957 debugging.
6958
6959 @item ggc-min-heapsize
6960
6961 Minimum size of the garbage collector's heap before it begins bothering
6962 to collect garbage.  The first collection occurs after the heap expands
6963 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
6964 tuning this may improve compilation speed, and has no effect on code
6965 generation.
6966
6967 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
6968 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
6969 with a lower bound of 4096 (four megabytes) and an upper bound of
6970 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
6971 particular platform, the lower bound is used.  Setting this parameter
6972 very large effectively disables garbage collection.  Setting this
6973 parameter and @option{ggc-min-expand} to zero causes a full collection
6974 to occur at every opportunity.
6975
6976 @item max-reload-search-insns
6977 The maximum number of instruction reload should look backward for equivalent
6978 register.  Increasing values mean more aggressive optimization, making the
6979 compile time increase with probably slightly better performance.  The default
6980 value is 100.
6981
6982 @item max-cselib-memory-locations
6983 The maximum number of memory locations cselib should take into account.
6984 Increasing values mean more aggressive optimization, making the compile time
6985 increase with probably slightly better performance.  The default value is 500.
6986
6987 @item max-flow-memory-locations
6988 Similar as @option{max-cselib-memory-locations} but for dataflow liveness.
6989 The default value is 100.
6990
6991 @item reorder-blocks-duplicate
6992 @itemx reorder-blocks-duplicate-feedback
6993
6994 Used by basic block reordering pass to decide whether to use unconditional
6995 branch or duplicate the code on its destination.  Code is duplicated when its
6996 estimated size is smaller than this value multiplied by the estimated size of
6997 unconditional jump in the hot spots of the program.
6998
6999 The @option{reorder-block-duplicate-feedback} is used only when profile
7000 feedback is available and may be set to higher values than
7001 @option{reorder-block-duplicate} since information about the hot spots is more
7002 accurate.
7003
7004 @item max-sched-ready-insns
7005 The maximum number of instructions ready to be issued the scheduler should
7006 consider at any given time during the first scheduling pass.  Increasing
7007 values mean more thorough searches, making the compilation time increase
7008 with probably little benefit.  The default value is 100.
7009
7010 @item max-sched-region-blocks
7011 The maximum number of blocks in a region to be considered for
7012 interblock scheduling.  The default value is 10.
7013
7014 @item max-sched-region-insns
7015 The maximum number of insns in a region to be considered for
7016 interblock scheduling.  The default value is 100.
7017
7018 @item min-spec-prob
7019 The minimum probability (in percents) of reaching a source block
7020 for interblock speculative scheduling.  The default value is 40.
7021
7022 @item max-sched-extend-regions-iters
7023 The maximum number of iterations through CFG to extend regions.
7024 0 - disable region extension,
7025 N - do at most N iterations.
7026 The default value is 0.
7027
7028 @item max-sched-insn-conflict-delay
7029 The maximum conflict delay for an insn to be considered for speculative motion.
7030 The default value is 3.
7031
7032 @item sched-spec-prob-cutoff
7033 The minimal probability of speculation success (in percents), so that
7034 speculative insn will be scheduled.
7035 The default value is 40.
7036
7037 @item max-last-value-rtl
7038
7039 The maximum size measured as number of RTLs that can be recorded in an expression
7040 in combiner for a pseudo register as last known value of that register.  The default
7041 is 10000.
7042
7043 @item integer-share-limit
7044 Small integer constants can use a shared data structure, reducing the
7045 compiler's memory usage and increasing its speed.  This sets the maximum
7046 value of a shared integer constant's.  The default value is 256.
7047
7048 @item min-virtual-mappings
7049 Specifies the minimum number of virtual mappings in the incremental
7050 SSA updater that should be registered to trigger the virtual mappings
7051 heuristic defined by virtual-mappings-ratio.  The default value is
7052 100.
7053
7054 @item virtual-mappings-ratio
7055 If the number of virtual mappings is virtual-mappings-ratio bigger
7056 than the number of virtual symbols to be updated, then the incremental
7057 SSA updater switches to a full update for those symbols.  The default
7058 ratio is 3.
7059
7060 @item ssp-buffer-size
7061 The minimum size of buffers (i.e. arrays) that will receive stack smashing
7062 protection when @option{-fstack-protection} is used.
7063
7064 @item max-jump-thread-duplication-stmts
7065 Maximum number of statements allowed in a block that needs to be
7066 duplicated when threading jumps.
7067
7068 @item max-fields-for-field-sensitive
7069 Maximum number of fields in a structure we will treat in
7070 a field sensitive manner during pointer analysis.
7071
7072 @item prefetch-latency
7073 Estimate on average number of instructions that are executed before
7074 prefetch finishes.  The distance we prefetch ahead is proportional
7075 to this constant.  Increasing this number may also lead to less
7076 streams being prefetched (see @option{simultaneous-prefetches}).
7077
7078 @item simultaneous-prefetches
7079 Maximum number of prefetches that can run at the same time.
7080
7081 @item l1-cache-line-size
7082 The size of cache line in L1 cache, in bytes.
7083
7084 @item l1-cache-size
7085 The size of L1 cache, in kilobytes.
7086
7087 @item l2-cache-size
7088 The size of L2 cache, in kilobytes.
7089
7090 @item use-canonical-types
7091 Whether the compiler should use the ``canonical'' type system.  By
7092 default, this should always be 1, which uses a more efficient internal
7093 mechanism for comparing types in C++ and Objective-C++.  However, if
7094 bugs in the canonical type system are causing compilation failures,
7095 set this value to 0 to disable canonical types.
7096
7097 @end table
7098 @end table
7099
7100 @node Preprocessor Options
7101 @section Options Controlling the Preprocessor
7102 @cindex preprocessor options
7103 @cindex options, preprocessor
7104
7105 These options control the C preprocessor, which is run on each C source
7106 file before actual compilation.
7107
7108 If you use the @option{-E} option, nothing is done except preprocessing.
7109 Some of these options make sense only together with @option{-E} because
7110 they cause the preprocessor output to be unsuitable for actual
7111 compilation.
7112
7113 @table @gcctabopt
7114 @opindex Wp
7115 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7116 and pass @var{option} directly through to the preprocessor.  If
7117 @var{option} contains commas, it is split into multiple options at the
7118 commas.  However, many options are modified, translated or interpreted
7119 by the compiler driver before being passed to the preprocessor, and
7120 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7121 interface is undocumented and subject to change, so whenever possible
7122 you should avoid using @option{-Wp} and let the driver handle the
7123 options instead.
7124
7125 @item -Xpreprocessor @var{option}
7126 @opindex preprocessor
7127 Pass @var{option} as an option to the preprocessor.  You can use this to
7128 supply system-specific preprocessor options which GCC does not know how to
7129 recognize.
7130
7131 If you want to pass an option that takes an argument, you must use
7132 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7133 @end table
7134
7135 @include cppopts.texi
7136
7137 @node Assembler Options
7138 @section Passing Options to the Assembler
7139
7140 @c prevent bad page break with this line
7141 You can pass options to the assembler.
7142
7143 @table @gcctabopt
7144 @item -Wa,@var{option}
7145 @opindex Wa
7146 Pass @var{option} as an option to the assembler.  If @var{option}
7147 contains commas, it is split into multiple options at the commas.
7148
7149 @item -Xassembler @var{option}
7150 @opindex Xassembler
7151 Pass @var{option} as an option to the assembler.  You can use this to
7152 supply system-specific assembler options which GCC does not know how to
7153 recognize.
7154
7155 If you want to pass an option that takes an argument, you must use
7156 @option{-Xassembler} twice, once for the option and once for the argument.
7157
7158 @end table
7159
7160 @node Link Options
7161 @section Options for Linking
7162 @cindex link options
7163 @cindex options, linking
7164
7165 These options come into play when the compiler links object files into
7166 an executable output file.  They are meaningless if the compiler is
7167 not doing a link step.
7168
7169 @table @gcctabopt
7170 @cindex file names
7171 @item @var{object-file-name}
7172 A file name that does not end in a special recognized suffix is
7173 considered to name an object file or library.  (Object files are
7174 distinguished from libraries by the linker according to the file
7175 contents.)  If linking is done, these object files are used as input
7176 to the linker.
7177
7178 @item -c
7179 @itemx -S
7180 @itemx -E
7181 @opindex c
7182 @opindex S
7183 @opindex E
7184 If any of these options is used, then the linker is not run, and
7185 object file names should not be used as arguments.  @xref{Overall
7186 Options}.
7187
7188 @cindex Libraries
7189 @item -l@var{library}
7190 @itemx -l @var{library}
7191 @opindex l
7192 Search the library named @var{library} when linking.  (The second
7193 alternative with the library as a separate argument is only for
7194 POSIX compliance and is not recommended.)
7195
7196 It makes a difference where in the command you write this option; the
7197 linker searches and processes libraries and object files in the order they
7198 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7199 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7200 to functions in @samp{z}, those functions may not be loaded.
7201
7202 The linker searches a standard list of directories for the library,
7203 which is actually a file named @file{lib@var{library}.a}.  The linker
7204 then uses this file as if it had been specified precisely by name.
7205
7206 The directories searched include several standard system directories
7207 plus any that you specify with @option{-L}.
7208
7209 Normally the files found this way are library files---archive files
7210 whose members are object files.  The linker handles an archive file by
7211 scanning through it for members which define symbols that have so far
7212 been referenced but not defined.  But if the file that is found is an
7213 ordinary object file, it is linked in the usual fashion.  The only
7214 difference between using an @option{-l} option and specifying a file name
7215 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7216 and searches several directories.
7217
7218 @item -lobjc
7219 @opindex lobjc
7220 You need this special case of the @option{-l} option in order to
7221 link an Objective-C or Objective-C++ program.
7222
7223 @item -nostartfiles
7224 @opindex nostartfiles
7225 Do not use the standard system startup files when linking.
7226 The standard system libraries are used normally, unless @option{-nostdlib}
7227 or @option{-nodefaultlibs} is used.
7228
7229 @item -nodefaultlibs
7230 @opindex nodefaultlibs
7231 Do not use the standard system libraries when linking.
7232 Only the libraries you specify will be passed to the linker.
7233 The standard startup files are used normally, unless @option{-nostartfiles}
7234 is used.  The compiler may generate calls to @code{memcmp},
7235 @code{memset}, @code{memcpy} and @code{memmove}.
7236 These entries are usually resolved by entries in
7237 libc.  These entry points should be supplied through some other
7238 mechanism when this option is specified.
7239
7240 @item -nostdlib
7241 @opindex nostdlib
7242 Do not use the standard system startup files or libraries when linking.
7243 No startup files and only the libraries you specify will be passed to
7244 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7245 @code{memcpy} and @code{memmove}.
7246 These entries are usually resolved by entries in
7247 libc.  These entry points should be supplied through some other
7248 mechanism when this option is specified.
7249
7250 @cindex @option{-lgcc}, use with @option{-nostdlib}
7251 @cindex @option{-nostdlib} and unresolved references
7252 @cindex unresolved references and @option{-nostdlib}
7253 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7254 @cindex @option{-nodefaultlibs} and unresolved references
7255 @cindex unresolved references and @option{-nodefaultlibs}
7256 One of the standard libraries bypassed by @option{-nostdlib} and
7257 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7258 that GCC uses to overcome shortcomings of particular machines, or special
7259 needs for some languages.
7260 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7261 Collection (GCC) Internals},
7262 for more discussion of @file{libgcc.a}.)
7263 In most cases, you need @file{libgcc.a} even when you want to avoid
7264 other standard libraries.  In other words, when you specify @option{-nostdlib}
7265 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7266 This ensures that you have no unresolved references to internal GCC
7267 library subroutines.  (For example, @samp{__main}, used to ensure C++
7268 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7269 GNU Compiler Collection (GCC) Internals}.)
7270
7271 @item -pie
7272 @opindex pie
7273 Produce a position independent executable on targets which support it.
7274 For predictable results, you must also specify the same set of options
7275 that were used to generate code (@option{-fpie}, @option{-fPIE},
7276 or model suboptions) when you specify this option.
7277
7278 @item -rdynamic
7279 @opindex rdynamic
7280 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7281 that support it. This instructs the linker to add all symbols, not
7282 only used ones, to the dynamic symbol table. This option is needed
7283 for some uses of @code{dlopen} or to allow obtaining backtraces
7284 from within a program.
7285
7286 @item -s
7287 @opindex s
7288 Remove all symbol table and relocation information from the executable.
7289
7290 @item -static
7291 @opindex static
7292 On systems that support dynamic linking, this prevents linking with the shared
7293 libraries.  On other systems, this option has no effect.
7294
7295 @item -shared
7296 @opindex shared
7297 Produce a shared object which can then be linked with other objects to
7298 form an executable.  Not all systems support this option.  For predictable
7299 results, you must also specify the same set of options that were used to
7300 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7301 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7302 needs to build supplementary stub code for constructors to work.  On
7303 multi-libbed systems, @samp{gcc -shared} must select the correct support
7304 libraries to link against.  Failing to supply the correct flags may lead
7305 to subtle defects.  Supplying them in cases where they are not necessary
7306 is innocuous.}
7307
7308 @item -shared-libgcc
7309 @itemx -static-libgcc
7310 @opindex shared-libgcc
7311 @opindex static-libgcc
7312 On systems that provide @file{libgcc} as a shared library, these options
7313 force the use of either the shared or static version respectively.
7314 If no shared version of @file{libgcc} was built when the compiler was
7315 configured, these options have no effect.
7316
7317 There are several situations in which an application should use the
7318 shared @file{libgcc} instead of the static version.  The most common
7319 of these is when the application wishes to throw and catch exceptions
7320 across different shared libraries.  In that case, each of the libraries
7321 as well as the application itself should use the shared @file{libgcc}.
7322
7323 Therefore, the G++ and GCJ drivers automatically add
7324 @option{-shared-libgcc} whenever you build a shared library or a main
7325 executable, because C++ and Java programs typically use exceptions, so
7326 this is the right thing to do.
7327
7328 If, instead, you use the GCC driver to create shared libraries, you may
7329 find that they will not always be linked with the shared @file{libgcc}.
7330 If GCC finds, at its configuration time, that you have a non-GNU linker
7331 or a GNU linker that does not support option @option{--eh-frame-hdr},
7332 it will link the shared version of @file{libgcc} into shared libraries
7333 by default.  Otherwise, it will take advantage of the linker and optimize
7334 away the linking with the shared version of @file{libgcc}, linking with
7335 the static version of libgcc by default.  This allows exceptions to
7336 propagate through such shared libraries, without incurring relocation
7337 costs at library load time.
7338
7339 However, if a library or main executable is supposed to throw or catch
7340 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7341 for the languages used in the program, or using the option
7342 @option{-shared-libgcc}, such that it is linked with the shared
7343 @file{libgcc}.
7344
7345 @item -symbolic
7346 @opindex symbolic
7347 Bind references to global symbols when building a shared object.  Warn
7348 about any unresolved references (unless overridden by the link editor
7349 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7350 this option.
7351
7352 @item -Xlinker @var{option}
7353 @opindex Xlinker
7354 Pass @var{option} as an option to the linker.  You can use this to
7355 supply system-specific linker options which GCC does not know how to
7356 recognize.
7357
7358 If you want to pass an option that takes an argument, you must use
7359 @option{-Xlinker} twice, once for the option and once for the argument.
7360 For example, to pass @option{-assert definitions}, you must write
7361 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7362 @option{-Xlinker "-assert definitions"}, because this passes the entire
7363 string as a single argument, which is not what the linker expects.
7364
7365 @item -Wl,@var{option}
7366 @opindex Wl
7367 Pass @var{option} as an option to the linker.  If @var{option} contains
7368 commas, it is split into multiple options at the commas.
7369
7370 @item -u @var{symbol}
7371 @opindex u
7372 Pretend the symbol @var{symbol} is undefined, to force linking of
7373 library modules to define it.  You can use @option{-u} multiple times with
7374 different symbols to force loading of additional library modules.
7375 @end table
7376
7377 @node Directory Options
7378 @section Options for Directory Search
7379 @cindex directory options
7380 @cindex options, directory search
7381 @cindex search path
7382
7383 These options specify directories to search for header files, for
7384 libraries and for parts of the compiler:
7385
7386 @table @gcctabopt
7387 @item -I@var{dir}
7388 @opindex I
7389 Add the directory @var{dir} to the head of the list of directories to be
7390 searched for header files.  This can be used to override a system header
7391 file, substituting your own version, since these directories are
7392 searched before the system header file directories.  However, you should
7393 not use this option to add directories that contain vendor-supplied
7394 system header files (use @option{-isystem} for that).  If you use more than
7395 one @option{-I} option, the directories are scanned in left-to-right
7396 order; the standard system directories come after.
7397
7398 If a standard system include directory, or a directory specified with
7399 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7400 option will be ignored.  The directory will still be searched but as a
7401 system directory at its normal position in the system include chain.
7402 This is to ensure that GCC's procedure to fix buggy system headers and
7403 the ordering for the include_next directive are not inadvertently changed.
7404 If you really need to change the search order for system directories,
7405 use the @option{-nostdinc} and/or @option{-isystem} options.
7406
7407 @item -iquote@var{dir}
7408 @opindex iquote
7409 Add the directory @var{dir} to the head of the list of directories to
7410 be searched for header files only for the case of @samp{#include
7411 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7412 otherwise just like @option{-I}.
7413
7414 @item -L@var{dir}
7415 @opindex L
7416 Add directory @var{dir} to the list of directories to be searched
7417 for @option{-l}.
7418
7419 @item -B@var{prefix}
7420 @opindex B
7421 This option specifies where to find the executables, libraries,
7422 include files, and data files of the compiler itself.
7423
7424 The compiler driver program runs one or more of the subprograms
7425 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7426 @var{prefix} as a prefix for each program it tries to run, both with and
7427 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7428
7429 For each subprogram to be run, the compiler driver first tries the
7430 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7431 was not specified, the driver tries two standard prefixes, which are
7432 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7433 those results in a file name that is found, the unmodified program
7434 name is searched for using the directories specified in your
7435 @env{PATH} environment variable.
7436
7437 The compiler will check to see if the path provided by the @option{-B}
7438 refers to a directory, and if necessary it will add a directory
7439 separator character at the end of the path.
7440
7441 @option{-B} prefixes that effectively specify directory names also apply
7442 to libraries in the linker, because the compiler translates these
7443 options into @option{-L} options for the linker.  They also apply to
7444 includes files in the preprocessor, because the compiler translates these
7445 options into @option{-isystem} options for the preprocessor.  In this case,
7446 the compiler appends @samp{include} to the prefix.
7447
7448 The run-time support file @file{libgcc.a} can also be searched for using
7449 the @option{-B} prefix, if needed.  If it is not found there, the two
7450 standard prefixes above are tried, and that is all.  The file is left
7451 out of the link if it is not found by those means.
7452
7453 Another way to specify a prefix much like the @option{-B} prefix is to use
7454 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7455 Variables}.
7456
7457 As a special kludge, if the path provided by @option{-B} is
7458 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7459 9, then it will be replaced by @file{[dir/]include}.  This is to help
7460 with boot-strapping the compiler.
7461
7462 @item -specs=@var{file}
7463 @opindex specs
7464 Process @var{file} after the compiler reads in the standard @file{specs}
7465 file, in order to override the defaults that the @file{gcc} driver
7466 program uses when determining what switches to pass to @file{cc1},
7467 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7468 @option{-specs=@var{file}} can be specified on the command line, and they
7469 are processed in order, from left to right.
7470
7471 @item --sysroot=@var{dir}
7472 @opindex sysroot
7473 Use @var{dir} as the logical root directory for headers and libraries.
7474 For example, if the compiler would normally search for headers in
7475 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7476 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7477
7478 If you use both this option and the @option{-isysroot} option, then
7479 the @option{--sysroot} option will apply to libraries, but the
7480 @option{-isysroot} option will apply to header files.
7481
7482 The GNU linker (beginning with version 2.16) has the necessary support
7483 for this option.  If your linker does not support this option, the
7484 header file aspect of @option{--sysroot} will still work, but the
7485 library aspect will not.
7486
7487 @item -I-
7488 @opindex I-
7489 This option has been deprecated.  Please use @option{-iquote} instead for
7490 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7491 Any directories you specify with @option{-I} options before the @option{-I-}
7492 option are searched only for the case of @samp{#include "@var{file}"};
7493 they are not searched for @samp{#include <@var{file}>}.
7494
7495 If additional directories are specified with @option{-I} options after
7496 the @option{-I-}, these directories are searched for all @samp{#include}
7497 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7498 this way.)
7499
7500 In addition, the @option{-I-} option inhibits the use of the current
7501 directory (where the current input file came from) as the first search
7502 directory for @samp{#include "@var{file}"}.  There is no way to
7503 override this effect of @option{-I-}.  With @option{-I.} you can specify
7504 searching the directory which was current when the compiler was
7505 invoked.  That is not exactly the same as what the preprocessor does
7506 by default, but it is often satisfactory.
7507
7508 @option{-I-} does not inhibit the use of the standard system directories
7509 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7510 independent.
7511 @end table
7512
7513 @c man end
7514
7515 @node Spec Files
7516 @section Specifying subprocesses and the switches to pass to them
7517 @cindex Spec Files
7518
7519 @command{gcc} is a driver program.  It performs its job by invoking a
7520 sequence of other programs to do the work of compiling, assembling and
7521 linking.  GCC interprets its command-line parameters and uses these to
7522 deduce which programs it should invoke, and which command-line options
7523 it ought to place on their command lines.  This behavior is controlled
7524 by @dfn{spec strings}.  In most cases there is one spec string for each
7525 program that GCC can invoke, but a few programs have multiple spec
7526 strings to control their behavior.  The spec strings built into GCC can
7527 be overridden by using the @option{-specs=} command-line switch to specify
7528 a spec file.
7529
7530 @dfn{Spec files} are plaintext files that are used to construct spec
7531 strings.  They consist of a sequence of directives separated by blank
7532 lines.  The type of directive is determined by the first non-whitespace
7533 character on the line and it can be one of the following:
7534
7535 @table @code
7536 @item %@var{command}
7537 Issues a @var{command} to the spec file processor.  The commands that can
7538 appear here are:
7539
7540 @table @code
7541 @item %include <@var{file}>
7542 @cindex %include
7543 Search for @var{file} and insert its text at the current point in the
7544 specs file.
7545
7546 @item %include_noerr <@var{file}>
7547 @cindex %include_noerr
7548 Just like @samp{%include}, but do not generate an error message if the include
7549 file cannot be found.
7550
7551 @item %rename @var{old_name} @var{new_name}
7552 @cindex %rename
7553 Rename the spec string @var{old_name} to @var{new_name}.
7554
7555 @end table
7556
7557 @item *[@var{spec_name}]:
7558 This tells the compiler to create, override or delete the named spec
7559 string.  All lines after this directive up to the next directive or
7560 blank line are considered to be the text for the spec string.  If this
7561 results in an empty string then the spec will be deleted.  (Or, if the
7562 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7563 does not currently exist a new spec will be created.  If the spec does
7564 exist then its contents will be overridden by the text of this
7565 directive, unless the first character of that text is the @samp{+}
7566 character, in which case the text will be appended to the spec.
7567
7568 @item [@var{suffix}]:
7569 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7570 and up to the next directive or blank line are considered to make up the
7571 spec string for the indicated suffix.  When the compiler encounters an
7572 input file with the named suffix, it will processes the spec string in
7573 order to work out how to compile that file.  For example:
7574
7575 @smallexample
7576 .ZZ:
7577 z-compile -input %i
7578 @end smallexample
7579
7580 This says that any input file whose name ends in @samp{.ZZ} should be
7581 passed to the program @samp{z-compile}, which should be invoked with the
7582 command-line switch @option{-input} and with the result of performing the
7583 @samp{%i} substitution.  (See below.)
7584
7585 As an alternative to providing a spec string, the text that follows a
7586 suffix directive can be one of the following:
7587
7588 @table @code
7589 @item @@@var{language}
7590 This says that the suffix is an alias for a known @var{language}.  This is
7591 similar to using the @option{-x} command-line switch to GCC to specify a
7592 language explicitly.  For example:
7593
7594 @smallexample
7595 .ZZ:
7596 @@c++
7597 @end smallexample
7598
7599 Says that .ZZ files are, in fact, C++ source files.
7600
7601 @item #@var{name}
7602 This causes an error messages saying:
7603
7604 @smallexample
7605 @var{name} compiler not installed on this system.
7606 @end smallexample
7607 @end table
7608
7609 GCC already has an extensive list of suffixes built into it.
7610 This directive will add an entry to the end of the list of suffixes, but
7611 since the list is searched from the end backwards, it is effectively
7612 possible to override earlier entries using this technique.
7613
7614 @end table
7615
7616 GCC has the following spec strings built into it.  Spec files can
7617 override these strings or create their own.  Note that individual
7618 targets can also add their own spec strings to this list.
7619
7620 @smallexample
7621 asm          Options to pass to the assembler
7622 asm_final    Options to pass to the assembler post-processor
7623 cpp          Options to pass to the C preprocessor
7624 cc1          Options to pass to the C compiler
7625 cc1plus      Options to pass to the C++ compiler
7626 endfile      Object files to include at the end of the link
7627 link         Options to pass to the linker
7628 lib          Libraries to include on the command line to the linker
7629 libgcc       Decides which GCC support library to pass to the linker
7630 linker       Sets the name of the linker
7631 predefines   Defines to be passed to the C preprocessor
7632 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7633              by default
7634 startfile    Object files to include at the start of the link
7635 @end smallexample
7636
7637 Here is a small example of a spec file:
7638
7639 @smallexample
7640 %rename lib                 old_lib
7641
7642 *lib:
7643 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7644 @end smallexample
7645
7646 This example renames the spec called @samp{lib} to @samp{old_lib} and
7647 then overrides the previous definition of @samp{lib} with a new one.
7648 The new definition adds in some extra command-line options before
7649 including the text of the old definition.
7650
7651 @dfn{Spec strings} are a list of command-line options to be passed to their
7652 corresponding program.  In addition, the spec strings can contain
7653 @samp{%}-prefixed sequences to substitute variable text or to
7654 conditionally insert text into the command line.  Using these constructs
7655 it is possible to generate quite complex command lines.
7656
7657 Here is a table of all defined @samp{%}-sequences for spec
7658 strings.  Note that spaces are not generated automatically around the
7659 results of expanding these sequences.  Therefore you can concatenate them
7660 together or combine them with constant text in a single argument.
7661
7662 @table @code
7663 @item %%
7664 Substitute one @samp{%} into the program name or argument.
7665
7666 @item %i
7667 Substitute the name of the input file being processed.
7668
7669 @item %b
7670 Substitute the basename of the input file being processed.
7671 This is the substring up to (and not including) the last period
7672 and not including the directory.
7673
7674 @item %B
7675 This is the same as @samp{%b}, but include the file suffix (text after
7676 the last period).
7677
7678 @item %d
7679 Marks the argument containing or following the @samp{%d} as a
7680 temporary file name, so that that file will be deleted if GCC exits
7681 successfully.  Unlike @samp{%g}, this contributes no text to the
7682 argument.
7683
7684 @item %g@var{suffix}
7685 Substitute a file name that has suffix @var{suffix} and is chosen
7686 once per compilation, and mark the argument in the same way as
7687 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
7688 name is now chosen in a way that is hard to predict even when previously
7689 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
7690 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
7691 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
7692 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
7693 was simply substituted with a file name chosen once per compilation,
7694 without regard to any appended suffix (which was therefore treated
7695 just like ordinary text), making such attacks more likely to succeed.
7696
7697 @item %u@var{suffix}
7698 Like @samp{%g}, but generates a new temporary file name even if
7699 @samp{%u@var{suffix}} was already seen.
7700
7701 @item %U@var{suffix}
7702 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
7703 new one if there is no such last file name.  In the absence of any
7704 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
7705 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
7706 would involve the generation of two distinct file names, one
7707 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
7708 simply substituted with a file name chosen for the previous @samp{%u},
7709 without regard to any appended suffix.
7710
7711 @item %j@var{suffix}
7712 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
7713 writable, and if save-temps is off; otherwise, substitute the name
7714 of a temporary file, just like @samp{%u}.  This temporary file is not
7715 meant for communication between processes, but rather as a junk
7716 disposal mechanism.
7717
7718 @item %|@var{suffix}
7719 @itemx %m@var{suffix}
7720 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
7721 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
7722 all.  These are the two most common ways to instruct a program that it
7723 should read from standard input or write to standard output.  If you
7724 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
7725 construct: see for example @file{f/lang-specs.h}.
7726
7727 @item %.@var{SUFFIX}
7728 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
7729 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
7730 terminated by the next space or %.
7731
7732 @item %w
7733 Marks the argument containing or following the @samp{%w} as the
7734 designated output file of this compilation.  This puts the argument
7735 into the sequence of arguments that @samp{%o} will substitute later.
7736
7737 @item %o
7738 Substitutes the names of all the output files, with spaces
7739 automatically placed around them.  You should write spaces
7740 around the @samp{%o} as well or the results are undefined.
7741 @samp{%o} is for use in the specs for running the linker.
7742 Input files whose names have no recognized suffix are not compiled
7743 at all, but they are included among the output files, so they will
7744 be linked.
7745
7746 @item %O
7747 Substitutes the suffix for object files.  Note that this is
7748 handled specially when it immediately follows @samp{%g, %u, or %U},
7749 because of the need for those to form complete file names.  The
7750 handling is such that @samp{%O} is treated exactly as if it had already
7751 been substituted, except that @samp{%g, %u, and %U} do not currently
7752 support additional @var{suffix} characters following @samp{%O} as they would
7753 following, for example, @samp{.o}.
7754
7755 @item %p
7756 Substitutes the standard macro predefinitions for the
7757 current target machine.  Use this when running @code{cpp}.
7758
7759 @item %P
7760 Like @samp{%p}, but puts @samp{__} before and after the name of each
7761 predefined macro, except for macros that start with @samp{__} or with
7762 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
7763 C@.
7764
7765 @item %I
7766 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7767 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7768 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7769 and @option{-imultilib} as necessary.
7770
7771 @item %s
7772 Current argument is the name of a library or startup file of some sort.
7773 Search for that file in a standard list of directories and substitute
7774 the full name found.
7775
7776 @item %e@var{str}
7777 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7778 Use this when inconsistent options are detected.
7779
7780 @item %(@var{name})
7781 Substitute the contents of spec string @var{name} at this point.
7782
7783 @item %[@var{name}]
7784 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7785
7786 @item %x@{@var{option}@}
7787 Accumulate an option for @samp{%X}.
7788
7789 @item %X
7790 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7791 spec string.
7792
7793 @item %Y
7794 Output the accumulated assembler options specified by @option{-Wa}.
7795
7796 @item %Z
7797 Output the accumulated preprocessor options specified by @option{-Wp}.
7798
7799 @item %a
7800 Process the @code{asm} spec.  This is used to compute the
7801 switches to be passed to the assembler.
7802
7803 @item %A
7804 Process the @code{asm_final} spec.  This is a spec string for
7805 passing switches to an assembler post-processor, if such a program is
7806 needed.
7807
7808 @item %l
7809 Process the @code{link} spec.  This is the spec for computing the
7810 command line passed to the linker.  Typically it will make use of the
7811 @samp{%L %G %S %D and %E} sequences.
7812
7813 @item %D
7814 Dump out a @option{-L} option for each directory that GCC believes might
7815 contain startup files.  If the target supports multilibs then the
7816 current multilib directory will be prepended to each of these paths.
7817
7818 @item %L
7819 Process the @code{lib} spec.  This is a spec string for deciding which
7820 libraries should be included on the command line to the linker.
7821
7822 @item %G
7823 Process the @code{libgcc} spec.  This is a spec string for deciding
7824 which GCC support library should be included on the command line to the linker.
7825
7826 @item %S
7827 Process the @code{startfile} spec.  This is a spec for deciding which
7828 object files should be the first ones passed to the linker.  Typically
7829 this might be a file named @file{crt0.o}.
7830
7831 @item %E
7832 Process the @code{endfile} spec.  This is a spec string that specifies
7833 the last object files that will be passed to the linker.
7834
7835 @item %C
7836 Process the @code{cpp} spec.  This is used to construct the arguments
7837 to be passed to the C preprocessor.
7838
7839 @item %1
7840 Process the @code{cc1} spec.  This is used to construct the options to be
7841 passed to the actual C compiler (@samp{cc1}).
7842
7843 @item %2
7844 Process the @code{cc1plus} spec.  This is used to construct the options to be
7845 passed to the actual C++ compiler (@samp{cc1plus}).
7846
7847 @item %*
7848 Substitute the variable part of a matched option.  See below.
7849 Note that each comma in the substituted string is replaced by
7850 a single space.
7851
7852 @item %<@code{S}
7853 Remove all occurrences of @code{-S} from the command line.  Note---this
7854 command is position dependent.  @samp{%} commands in the spec string
7855 before this one will see @code{-S}, @samp{%} commands in the spec string
7856 after this one will not.
7857
7858 @item %:@var{function}(@var{args})
7859 Call the named function @var{function}, passing it @var{args}.
7860 @var{args} is first processed as a nested spec string, then split
7861 into an argument vector in the usual fashion.  The function returns
7862 a string which is processed as if it had appeared literally as part
7863 of the current spec.
7864
7865 The following built-in spec functions are provided:
7866
7867 @table @code
7868 @item @code{getenv}
7869 The @code{getenv} spec function takes two arguments: an environment
7870 variable name and a string.  If the environment variable is not
7871 defined, a fatal error is issued.  Otherwise, the return value is the
7872 value of the environment variable concatenated with the string.  For
7873 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
7874
7875 @smallexample
7876 %:getenv(TOPDIR /include)
7877 @end smallexample
7878
7879 expands to @file{/path/to/top/include}.
7880
7881 @item @code{if-exists}
7882 The @code{if-exists} spec function takes one argument, an absolute
7883 pathname to a file.  If the file exists, @code{if-exists} returns the
7884 pathname.  Here is a small example of its usage:
7885
7886 @smallexample
7887 *startfile:
7888 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7889 @end smallexample
7890
7891 @item @code{if-exists-else}
7892 The @code{if-exists-else} spec function is similar to the @code{if-exists}
7893 spec function, except that it takes two arguments.  The first argument is
7894 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
7895 returns the pathname.  If it does not exist, it returns the second argument.
7896 This way, @code{if-exists-else} can be used to select one file or another,
7897 based on the existence of the first.  Here is a small example of its usage:
7898
7899 @smallexample
7900 *startfile:
7901 crt0%O%s %:if-exists(crti%O%s) \
7902 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
7903 @end smallexample
7904
7905 @item @code{replace-outfile}
7906 The @code{replace-outfile} spec function takes two arguments.  It looks for the
7907 first argument in the outfiles array and replaces it with the second argument.  Here
7908 is a small example of its usage:
7909
7910 @smallexample
7911 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
7912 @end smallexample
7913
7914 @item @code{print-asm-header}
7915 The @code{print-asm-header} function takes no arguments and simply
7916 prints a banner like:
7917
7918 @smallexample
7919 Assembler options
7920 =================
7921
7922 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
7923 @end smallexample
7924
7925 It is used to separate compiler options from assembler options
7926 in the @option{--target-help} output.
7927 @end table
7928
7929 @item %@{@code{S}@}
7930 Substitutes the @code{-S} switch, if that switch was given to GCC@.
7931 If that switch was not specified, this substitutes nothing.  Note that
7932 the leading dash is omitted when specifying this option, and it is
7933 automatically inserted if the substitution is performed.  Thus the spec
7934 string @samp{%@{foo@}} would match the command-line option @option{-foo}
7935 and would output the command line option @option{-foo}.
7936
7937 @item %W@{@code{S}@}
7938 Like %@{@code{S}@} but mark last argument supplied within as a file to be
7939 deleted on failure.
7940
7941 @item %@{@code{S}*@}
7942 Substitutes all the switches specified to GCC whose names start
7943 with @code{-S}, but which also take an argument.  This is used for
7944 switches like @option{-o}, @option{-D}, @option{-I}, etc.
7945 GCC considers @option{-o foo} as being
7946 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
7947 text, including the space.  Thus two arguments would be generated.
7948
7949 @item %@{@code{S}*&@code{T}*@}
7950 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
7951 (the order of @code{S} and @code{T} in the spec is not significant).
7952 There can be any number of ampersand-separated variables; for each the
7953 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
7954
7955 @item %@{@code{S}:@code{X}@}
7956 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
7957
7958 @item %@{!@code{S}:@code{X}@}
7959 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
7960
7961 @item %@{@code{S}*:@code{X}@}
7962 Substitutes @code{X} if one or more switches whose names start with
7963 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
7964 once, no matter how many such switches appeared.  However, if @code{%*}
7965 appears somewhere in @code{X}, then @code{X} will be substituted once
7966 for each matching switch, with the @code{%*} replaced by the part of
7967 that switch that matched the @code{*}.
7968
7969 @item %@{.@code{S}:@code{X}@}
7970 Substitutes @code{X}, if processing a file with suffix @code{S}.
7971
7972 @item %@{!.@code{S}:@code{X}@}
7973 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
7974
7975 @item %@{,@code{S}:@code{X}@}
7976 Substitutes @code{X}, if processing a file for language @code{S}.
7977
7978 @item %@{!,@code{S}:@code{X}@}
7979 Substitutes @code{X}, if not processing a file for language @code{S}.
7980
7981 @item %@{@code{S}|@code{P}:@code{X}@}
7982 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
7983 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
7984 @code{*} sequences as well, although they have a stronger binding than
7985 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
7986 alternatives must be starred, and only the first matching alternative
7987 is substituted.
7988
7989 For example, a spec string like this:
7990
7991 @smallexample
7992 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
7993 @end smallexample
7994
7995 will output the following command-line options from the following input
7996 command-line options:
7997
7998 @smallexample
7999 fred.c        -foo -baz
8000 jim.d         -bar -boggle
8001 -d fred.c     -foo -baz -boggle
8002 -d jim.d      -bar -baz -boggle
8003 @end smallexample
8004
8005 @item %@{S:X; T:Y; :D@}
8006
8007 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
8008 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
8009 be as many clauses as you need.  This may be combined with @code{.},
8010 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
8011
8012
8013 @end table
8014
8015 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
8016 construct may contain other nested @samp{%} constructs or spaces, or
8017 even newlines.  They are processed as usual, as described above.
8018 Trailing white space in @code{X} is ignored.  White space may also
8019 appear anywhere on the left side of the colon in these constructs,
8020 except between @code{.} or @code{*} and the corresponding word.
8021
8022 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8023 handled specifically in these constructs.  If another value of
8024 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8025 @option{-W} switch is found later in the command line, the earlier
8026 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8027 just one letter, which passes all matching options.
8028
8029 The character @samp{|} at the beginning of the predicate text is used to
8030 indicate that a command should be piped to the following command, but
8031 only if @option{-pipe} is specified.
8032
8033 It is built into GCC which switches take arguments and which do not.
8034 (You might think it would be useful to generalize this to allow each
8035 compiler's spec to say which switches take arguments.  But this cannot
8036 be done in a consistent fashion.  GCC cannot even decide which input
8037 files have been specified without knowing which switches take arguments,
8038 and it must know which input files to compile in order to tell which
8039 compilers to run).
8040
8041 GCC also knows implicitly that arguments starting in @option{-l} are to be
8042 treated as compiler output files, and passed to the linker in their
8043 proper position among the other output files.
8044
8045 @c man begin OPTIONS
8046
8047 @node Target Options
8048 @section Specifying Target Machine and Compiler Version
8049 @cindex target options
8050 @cindex cross compiling
8051 @cindex specifying machine version
8052 @cindex specifying compiler version and target machine
8053 @cindex compiler version, specifying
8054 @cindex target machine, specifying
8055
8056 The usual way to run GCC is to run the executable called @file{gcc}, or
8057 @file{<machine>-gcc} when cross-compiling, or
8058 @file{<machine>-gcc-<version>} to run a version other than the one that
8059 was installed last.  Sometimes this is inconvenient, so GCC provides
8060 options that will switch to another cross-compiler or version.
8061
8062 @table @gcctabopt
8063 @item -b @var{machine}
8064 @opindex b
8065 The argument @var{machine} specifies the target machine for compilation.
8066
8067 The value to use for @var{machine} is the same as was specified as the
8068 machine type when configuring GCC as a cross-compiler.  For
8069 example, if a cross-compiler was configured with @samp{configure
8070 arm-elf}, meaning to compile for an arm processor with elf binaries,
8071 then you would specify @option{-b arm-elf} to run that cross compiler.
8072 Because there are other options beginning with @option{-b}, the
8073 configuration must contain a hyphen.
8074
8075 @item -V @var{version}
8076 @opindex V
8077 The argument @var{version} specifies which version of GCC to run.
8078 This is useful when multiple versions are installed.  For example,
8079 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8080 @end table
8081
8082 The @option{-V} and @option{-b} options work by running the
8083 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8084 use them if you can just run that directly.
8085
8086 @node Submodel Options
8087 @section Hardware Models and Configurations
8088 @cindex submodel options
8089 @cindex specifying hardware config
8090 @cindex hardware models and configurations, specifying
8091 @cindex machine dependent options
8092
8093 Earlier we discussed the standard option @option{-b} which chooses among
8094 different installed compilers for completely different target
8095 machines, such as VAX vs.@: 68000 vs.@: 80386.
8096
8097 In addition, each of these target machine types can have its own
8098 special options, starting with @samp{-m}, to choose among various
8099 hardware models or configurations---for example, 68010 vs 68020,
8100 floating coprocessor or none.  A single installed version of the
8101 compiler can compile for any model or configuration, according to the
8102 options specified.
8103
8104 Some configurations of the compiler also support additional special
8105 options, usually for compatibility with other compilers on the same
8106 platform.
8107
8108 @c This list is ordered alphanumerically by subsection name.
8109 @c It should be the same order and spelling as these options are listed
8110 @c in Machine Dependent Options
8111
8112 @menu
8113 * ARC Options::
8114 * ARM Options::
8115 * AVR Options::
8116 * Blackfin Options::
8117 * CRIS Options::
8118 * CRX Options::
8119 * Darwin Options::
8120 * DEC Alpha Options::
8121 * DEC Alpha/VMS Options::
8122 * FRV Options::
8123 * GNU/Linux Options::
8124 * H8/300 Options::
8125 * HPPA Options::
8126 * i386 and x86-64 Options::
8127 * IA-64 Options::
8128 * M32C Options::
8129 * M32R/D Options::
8130 * M680x0 Options::
8131 * M68hc1x Options::
8132 * MCore Options::
8133 * MIPS Options::
8134 * MMIX Options::
8135 * MN10300 Options::
8136 * MT Options::
8137 * PDP-11 Options::
8138 * PowerPC Options::
8139 * RS/6000 and PowerPC Options::
8140 * S/390 and zSeries Options::
8141 * Score Options::
8142 * SH Options::
8143 * SPARC Options::
8144 * SPU Options::
8145 * System V Options::
8146 * TMS320C3x/C4x Options::
8147 * V850 Options::
8148 * VAX Options::
8149 * VxWorks Options::
8150 * x86-64 Options::
8151 * Xstormy16 Options::
8152 * Xtensa Options::
8153 * zSeries Options::
8154 @end menu
8155
8156 @node ARC Options
8157 @subsection ARC Options
8158 @cindex ARC Options
8159
8160 These options are defined for ARC implementations:
8161
8162 @table @gcctabopt
8163 @item -EL
8164 @opindex EL
8165 Compile code for little endian mode.  This is the default.
8166
8167 @item -EB
8168 @opindex EB
8169 Compile code for big endian mode.
8170
8171 @item -mmangle-cpu
8172 @opindex mmangle-cpu
8173 Prepend the name of the cpu to all public symbol names.
8174 In multiple-processor systems, there are many ARC variants with different
8175 instruction and register set characteristics.  This flag prevents code
8176 compiled for one cpu to be linked with code compiled for another.
8177 No facility exists for handling variants that are ``almost identical''.
8178 This is an all or nothing option.
8179
8180 @item -mcpu=@var{cpu}
8181 @opindex mcpu
8182 Compile code for ARC variant @var{cpu}.
8183 Which variants are supported depend on the configuration.
8184 All variants support @option{-mcpu=base}, this is the default.
8185
8186 @item -mtext=@var{text-section}
8187 @itemx -mdata=@var{data-section}
8188 @itemx -mrodata=@var{readonly-data-section}
8189 @opindex mtext
8190 @opindex mdata
8191 @opindex mrodata
8192 Put functions, data, and readonly data in @var{text-section},
8193 @var{data-section}, and @var{readonly-data-section} respectively
8194 by default.  This can be overridden with the @code{section} attribute.
8195 @xref{Variable Attributes}.
8196
8197 @end table
8198
8199 @node ARM Options
8200 @subsection ARM Options
8201 @cindex ARM options
8202
8203 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8204 architectures:
8205
8206 @table @gcctabopt
8207 @item -mabi=@var{name}
8208 @opindex mabi
8209 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8210 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8211
8212 @item -mapcs-frame
8213 @opindex mapcs-frame
8214 Generate a stack frame that is compliant with the ARM Procedure Call
8215 Standard for all functions, even if this is not strictly necessary for
8216 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8217 with this option will cause the stack frames not to be generated for
8218 leaf functions.  The default is @option{-mno-apcs-frame}.
8219
8220 @item -mapcs
8221 @opindex mapcs
8222 This is a synonym for @option{-mapcs-frame}.
8223
8224 @ignore
8225 @c not currently implemented
8226 @item -mapcs-stack-check
8227 @opindex mapcs-stack-check
8228 Generate code to check the amount of stack space available upon entry to
8229 every function (that actually uses some stack space).  If there is
8230 insufficient space available then either the function
8231 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8232 called, depending upon the amount of stack space required.  The run time
8233 system is required to provide these functions.  The default is
8234 @option{-mno-apcs-stack-check}, since this produces smaller code.
8235
8236 @c not currently implemented
8237 @item -mapcs-float
8238 @opindex mapcs-float
8239 Pass floating point arguments using the float point registers.  This is
8240 one of the variants of the APCS@.  This option is recommended if the
8241 target hardware has a floating point unit or if a lot of floating point
8242 arithmetic is going to be performed by the code.  The default is
8243 @option{-mno-apcs-float}, since integer only code is slightly increased in
8244 size if @option{-mapcs-float} is used.
8245
8246 @c not currently implemented
8247 @item -mapcs-reentrant
8248 @opindex mapcs-reentrant
8249 Generate reentrant, position independent code.  The default is
8250 @option{-mno-apcs-reentrant}.
8251 @end ignore
8252
8253 @item -mthumb-interwork
8254 @opindex mthumb-interwork
8255 Generate code which supports calling between the ARM and Thumb
8256 instruction sets.  Without this option the two instruction sets cannot
8257 be reliably used inside one program.  The default is
8258 @option{-mno-thumb-interwork}, since slightly larger code is generated
8259 when @option{-mthumb-interwork} is specified.
8260
8261 @item -mno-sched-prolog
8262 @opindex mno-sched-prolog
8263 Prevent the reordering of instructions in the function prolog, or the
8264 merging of those instruction with the instructions in the function's
8265 body.  This means that all functions will start with a recognizable set
8266 of instructions (or in fact one of a choice from a small set of
8267 different function prologues), and this information can be used to
8268 locate the start if functions inside an executable piece of code.  The
8269 default is @option{-msched-prolog}.
8270
8271 @item -mhard-float
8272 @opindex mhard-float
8273 Generate output containing floating point instructions.  This is the
8274 default.
8275
8276 @item -msoft-float
8277 @opindex msoft-float
8278 Generate output containing library calls for floating point.
8279 @strong{Warning:} the requisite libraries are not available for all ARM
8280 targets.  Normally the facilities of the machine's usual C compiler are
8281 used, but this cannot be done directly in cross-compilation.  You must make
8282 your own arrangements to provide suitable library functions for
8283 cross-compilation.
8284
8285 @option{-msoft-float} changes the calling convention in the output file;
8286 therefore, it is only useful if you compile @emph{all} of a program with
8287 this option.  In particular, you need to compile @file{libgcc.a}, the
8288 library that comes with GCC, with @option{-msoft-float} in order for
8289 this to work.
8290
8291 @item -mfloat-abi=@var{name}
8292 @opindex mfloat-abi
8293 Specifies which ABI to use for floating point values.  Permissible values
8294 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8295
8296 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8297 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8298 of floating point instructions, but still uses the soft-float calling
8299 conventions.
8300
8301 @item -mlittle-endian
8302 @opindex mlittle-endian
8303 Generate code for a processor running in little-endian mode.  This is
8304 the default for all standard configurations.
8305
8306 @item -mbig-endian
8307 @opindex mbig-endian
8308 Generate code for a processor running in big-endian mode; the default is
8309 to compile code for a little-endian processor.
8310
8311 @item -mwords-little-endian
8312 @opindex mwords-little-endian
8313 This option only applies when generating code for big-endian processors.
8314 Generate code for a little-endian word order but a big-endian byte
8315 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8316 option should only be used if you require compatibility with code for
8317 big-endian ARM processors generated by versions of the compiler prior to
8318 2.8.
8319
8320 @item -mcpu=@var{name}
8321 @opindex mcpu
8322 This specifies the name of the target ARM processor.  GCC uses this name
8323 to determine what kind of instructions it can emit when generating
8324 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8325 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8326 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8327 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8328 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8329 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8330 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8331 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8332 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8333 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8334 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8335 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8336 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8337 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8338 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-m3},
8339 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8340
8341 @itemx -mtune=@var{name}
8342 @opindex mtune
8343 This option is very similar to the @option{-mcpu=} option, except that
8344 instead of specifying the actual target processor type, and hence
8345 restricting which instructions can be used, it specifies that GCC should
8346 tune the performance of the code as if the target were of the type
8347 specified in this option, but still choosing the instructions that it
8348 will generate based on the cpu specified by a @option{-mcpu=} option.
8349 For some ARM implementations better performance can be obtained by using
8350 this option.
8351
8352 @item -march=@var{name}
8353 @opindex march
8354 This specifies the name of the target ARM architecture.  GCC uses this
8355 name to determine what kind of instructions it can emit when generating
8356 assembly code.  This option can be used in conjunction with or instead
8357 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8358 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8359 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8360 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv7}, @samp{armv7-a},
8361 @samp{armv7-r}, @samp{armv7-m}, @samp{iwmmxt}, @samp{ep9312}.
8362
8363 @item -mfpu=@var{name}
8364 @itemx -mfpe=@var{number}
8365 @itemx -mfp=@var{number}
8366 @opindex mfpu
8367 @opindex mfpe
8368 @opindex mfp
8369 This specifies what floating point hardware (or hardware emulation) is
8370 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8371 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
8372 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8373 with older versions of GCC@.
8374
8375 If @option{-msoft-float} is specified this specifies the format of
8376 floating point values.
8377
8378 @item -mstructure-size-boundary=@var{n}
8379 @opindex mstructure-size-boundary
8380 The size of all structures and unions will be rounded up to a multiple
8381 of the number of bits set by this option.  Permissible values are 8, 32
8382 and 64.  The default value varies for different toolchains.  For the COFF
8383 targeted toolchain the default value is 8.  A value of 64 is only allowed
8384 if the underlying ABI supports it.
8385
8386 Specifying the larger number can produce faster, more efficient code, but
8387 can also increase the size of the program.  Different values are potentially
8388 incompatible.  Code compiled with one value cannot necessarily expect to
8389 work with code or libraries compiled with another value, if they exchange
8390 information using structures or unions.
8391
8392 @item -mabort-on-noreturn
8393 @opindex mabort-on-noreturn
8394 Generate a call to the function @code{abort} at the end of a
8395 @code{noreturn} function.  It will be executed if the function tries to
8396 return.
8397
8398 @item -mlong-calls
8399 @itemx -mno-long-calls
8400 @opindex mlong-calls
8401 @opindex mno-long-calls
8402 Tells the compiler to perform function calls by first loading the
8403 address of the function into a register and then performing a subroutine
8404 call on this register.  This switch is needed if the target function
8405 will lie outside of the 64 megabyte addressing range of the offset based
8406 version of subroutine call instruction.
8407
8408 Even if this switch is enabled, not all function calls will be turned
8409 into long calls.  The heuristic is that static functions, functions
8410 which have the @samp{short-call} attribute, functions that are inside
8411 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8412 definitions have already been compiled within the current compilation
8413 unit, will not be turned into long calls.  The exception to this rule is
8414 that weak function definitions, functions with the @samp{long-call}
8415 attribute or the @samp{section} attribute, and functions that are within
8416 the scope of a @samp{#pragma long_calls} directive, will always be
8417 turned into long calls.
8418
8419 This feature is not enabled by default.  Specifying
8420 @option{-mno-long-calls} will restore the default behavior, as will
8421 placing the function calls within the scope of a @samp{#pragma
8422 long_calls_off} directive.  Note these switches have no effect on how
8423 the compiler generates code to handle function calls via function
8424 pointers.
8425
8426 @item -mnop-fun-dllimport
8427 @opindex mnop-fun-dllimport
8428 Disable support for the @code{dllimport} attribute.
8429
8430 @item -msingle-pic-base
8431 @opindex msingle-pic-base
8432 Treat the register used for PIC addressing as read-only, rather than
8433 loading it in the prologue for each function.  The run-time system is
8434 responsible for initializing this register with an appropriate value
8435 before execution begins.
8436
8437 @item -mpic-register=@var{reg}
8438 @opindex mpic-register
8439 Specify the register to be used for PIC addressing.  The default is R10
8440 unless stack-checking is enabled, when R9 is used.
8441
8442 @item -mcirrus-fix-invalid-insns
8443 @opindex mcirrus-fix-invalid-insns
8444 @opindex mno-cirrus-fix-invalid-insns
8445 Insert NOPs into the instruction stream to in order to work around
8446 problems with invalid Maverick instruction combinations.  This option
8447 is only valid if the @option{-mcpu=ep9312} option has been used to
8448 enable generation of instructions for the Cirrus Maverick floating
8449 point co-processor.  This option is not enabled by default, since the
8450 problem is only present in older Maverick implementations.  The default
8451 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8452 switch.
8453
8454 @item -mpoke-function-name
8455 @opindex mpoke-function-name
8456 Write the name of each function into the text section, directly
8457 preceding the function prologue.  The generated code is similar to this:
8458
8459 @smallexample
8460      t0
8461          .ascii "arm_poke_function_name", 0
8462          .align
8463      t1
8464          .word 0xff000000 + (t1 - t0)
8465      arm_poke_function_name
8466          mov     ip, sp
8467          stmfd   sp!, @{fp, ip, lr, pc@}
8468          sub     fp, ip, #4
8469 @end smallexample
8470
8471 When performing a stack backtrace, code can inspect the value of
8472 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8473 location @code{pc - 12} and the top 8 bits are set, then we know that
8474 there is a function name embedded immediately preceding this location
8475 and has length @code{((pc[-3]) & 0xff000000)}.
8476
8477 @item -mthumb
8478 @opindex mthumb
8479 Generate code for the Thumb instruction set.  The default is to
8480 use the 32-bit ARM instruction set.
8481 This option automatically enables either 16-bit Thumb-1 or
8482 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8483 and @option{-march=@var{name}} options.
8484
8485 @item -mtpcs-frame
8486 @opindex mtpcs-frame
8487 Generate a stack frame that is compliant with the Thumb Procedure Call
8488 Standard for all non-leaf functions.  (A leaf function is one that does
8489 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8490
8491 @item -mtpcs-leaf-frame
8492 @opindex mtpcs-leaf-frame
8493 Generate a stack frame that is compliant with the Thumb Procedure Call
8494 Standard for all leaf functions.  (A leaf function is one that does
8495 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8496
8497 @item -mcallee-super-interworking
8498 @opindex mcallee-super-interworking
8499 Gives all externally visible functions in the file being compiled an ARM
8500 instruction set header which switches to Thumb mode before executing the
8501 rest of the function.  This allows these functions to be called from
8502 non-interworking code.
8503
8504 @item -mcaller-super-interworking
8505 @opindex mcaller-super-interworking
8506 Allows calls via function pointers (including virtual functions) to
8507 execute correctly regardless of whether the target code has been
8508 compiled for interworking or not.  There is a small overhead in the cost
8509 of executing a function pointer if this option is enabled.
8510
8511 @item -mtp=@var{name}
8512 @opindex mtp
8513 Specify the access model for the thread local storage pointer.  The valid
8514 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8515 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8516 (supported in the arm6k architecture), and @option{auto}, which uses the
8517 best available method for the selected processor.  The default setting is
8518 @option{auto}.
8519
8520 @end table
8521
8522 @node AVR Options
8523 @subsection AVR Options
8524 @cindex AVR Options
8525
8526 These options are defined for AVR implementations:
8527
8528 @table @gcctabopt
8529 @item -mmcu=@var{mcu}
8530 @opindex mmcu
8531 Specify ATMEL AVR instruction set or MCU type.
8532
8533 Instruction set avr1 is for the minimal AVR core, not supported by the C
8534 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8535 attiny11, attiny12, attiny15, attiny28).
8536
8537 Instruction set avr2 (default) is for the classic AVR core with up to
8538 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8539 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8540 at90c8534, at90s8535).
8541
8542 Instruction set avr3 is for the classic AVR core with up to 128K program
8543 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8544
8545 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8546 memory space (MCU types: atmega8, atmega83, atmega85).
8547
8548 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8549 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8550 atmega64, atmega128, at43usb355, at94k).
8551
8552 @item -msize
8553 @opindex msize
8554 Output instruction sizes to the asm file.
8555
8556 @item -minit-stack=@var{N}
8557 @opindex minit-stack
8558 Specify the initial stack address, which may be a symbol or numeric value,
8559 @samp{__stack} is the default.
8560
8561 @item -mno-interrupts
8562 @opindex mno-interrupts
8563 Generated code is not compatible with hardware interrupts.
8564 Code size will be smaller.
8565
8566 @item -mcall-prologues
8567 @opindex mcall-prologues
8568 Functions prologues/epilogues expanded as call to appropriate
8569 subroutines.  Code size will be smaller.
8570
8571 @item -mno-tablejump
8572 @opindex mno-tablejump
8573 Do not generate tablejump insns which sometimes increase code size.
8574
8575 @item -mtiny-stack
8576 @opindex mtiny-stack
8577 Change only the low 8 bits of the stack pointer.
8578
8579 @item -mint8
8580 @opindex mint8
8581 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8582 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8583 and long long will be 4 bytes.  Please note that this option does not
8584 comply to the C standards, but it will provide you with smaller code
8585 size.
8586 @end table
8587
8588 @node Blackfin Options
8589 @subsection Blackfin Options
8590 @cindex Blackfin Options
8591
8592 @table @gcctabopt
8593 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8594 @opindex mcpu=
8595 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8596 can be one of @samp{bf522}, @samp{bf525}, @samp{bf527},
8597 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8598 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8599 @samp{bf542}, @samp{bf544}, @samp{bf548}, @samp{bf549},
8600 @samp{bf561}.
8601 The optional @var{sirevision} specifies the silicon revision of the target
8602 Blackfin processor.  Any workarounds available for the targeted silicon revision
8603 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8604 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8605 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8606 hexadecimal digits representing the major and minor numbers in the silicon
8607 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8608 is not defined.  If @var{sirevision} is @samp{any}, the
8609 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8610 If this optional @var{sirevision} is not used, GCC assumes the latest known
8611 silicon revision of the targeted Blackfin processor.
8612
8613 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8614 Only the processor macro is defined.
8615 Without this option, @samp{bf532} is used as the processor by default.
8616 The corresponding predefined processor macros for @var{cpu} is to
8617 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8618 provided by libgloss to be linked in if @option{-msim} is not given.
8619
8620 @item -msim
8621 @opindex msim
8622 Specifies that the program will be run on the simulator.  This causes
8623 the simulator BSP provided by libgloss to be linked in.  This option
8624 has effect only for @samp{bfin-elf} toolchain.
8625
8626 @item -momit-leaf-frame-pointer
8627 @opindex momit-leaf-frame-pointer
8628 Don't keep the frame pointer in a register for leaf functions.  This
8629 avoids the instructions to save, set up and restore frame pointers and
8630 makes an extra register available in leaf functions.  The option
8631 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8632 which might make debugging harder.
8633
8634 @item -mspecld-anomaly
8635 @opindex mspecld-anomaly
8636 When enabled, the compiler will ensure that the generated code does not
8637 contain speculative loads after jump instructions. If this option is used,
8638 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8639
8640 @item -mno-specld-anomaly
8641 @opindex mno-specld-anomaly
8642 Don't generate extra code to prevent speculative loads from occurring.
8643
8644 @item -mcsync-anomaly
8645 @opindex mcsync-anomaly
8646 When enabled, the compiler will ensure that the generated code does not
8647 contain CSYNC or SSYNC instructions too soon after conditional branches.
8648 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8649
8650 @item -mno-csync-anomaly
8651 @opindex mno-csync-anomaly
8652 Don't generate extra code to prevent CSYNC or SSYNC instructions from
8653 occurring too soon after a conditional branch.
8654
8655 @item -mlow-64k
8656 @opindex mlow-64k
8657 When enabled, the compiler is free to take advantage of the knowledge that
8658 the entire program fits into the low 64k of memory.
8659
8660 @item -mno-low-64k
8661 @opindex mno-low-64k
8662 Assume that the program is arbitrarily large.  This is the default.
8663
8664 @item -mstack-check-l1
8665 @opindex mstack-check-l1
8666 Do stack checking using information placed into L1 scratchpad memory by the
8667 uClinux kernel.
8668
8669 @item -mid-shared-library
8670 @opindex mid-shared-library
8671 Generate code that supports shared libraries via the library ID method.
8672 This allows for execute in place and shared libraries in an environment
8673 without virtual memory management.  This option implies @option{-fPIC}.
8674
8675 @item -mno-id-shared-library
8676 @opindex mno-id-shared-library
8677 Generate code that doesn't assume ID based shared libraries are being used.
8678 This is the default.
8679
8680 @item -mleaf-id-shared-library
8681 @opindex mleaf-id-shared-library
8682 Generate code that supports shared libraries via the library ID method,
8683 but assumes that this library or executable won't link against any other
8684 ID shared libraries.  That allows the compiler to use faster code for jumps
8685 and calls.
8686
8687 @item -mno-leaf-id-shared-library
8688 @opindex mno-leaf-id-shared-library
8689 Do not assume that the code being compiled won't link against any ID shared
8690 libraries.  Slower code will be generated for jump and call insns.
8691
8692 @item -mshared-library-id=n
8693 @opindex mshared-library-id
8694 Specified the identification number of the ID based shared library being
8695 compiled.  Specifying a value of 0 will generate more compact code, specifying
8696 other values will force the allocation of that number to the current
8697 library but is no more space or time efficient than omitting this option.
8698
8699 @item -msep-data
8700 @opindex msep-data
8701 Generate code that allows the data segment to be located in a different
8702 area of memory from the text segment.  This allows for execute in place in
8703 an environment without virtual memory management by eliminating relocations
8704 against the text section.
8705
8706 @item -mno-sep-data
8707 @opindex mno-sep-data
8708 Generate code that assumes that the data segment follows the text segment.
8709 This is the default.
8710
8711 @item -mlong-calls
8712 @itemx -mno-long-calls
8713 @opindex mlong-calls
8714 @opindex mno-long-calls
8715 Tells the compiler to perform function calls by first loading the
8716 address of the function into a register and then performing a subroutine
8717 call on this register.  This switch is needed if the target function
8718 will lie outside of the 24 bit addressing range of the offset based
8719 version of subroutine call instruction.
8720
8721 This feature is not enabled by default.  Specifying
8722 @option{-mno-long-calls} will restore the default behavior.  Note these
8723 switches have no effect on how the compiler generates code to handle
8724 function calls via function pointers.
8725
8726 @item -mfast-fp
8727 @opindex mfast-fp
8728 Link with the fast floating-point library. This library relaxes some of
8729 the IEEE floating-point standard's rules for checking inputs against
8730 Not-a-Number (NAN), in the interest of performance.
8731
8732 @item -minline-plt
8733 @opindex minline-plt
8734 Enable inlining of PLT entries in function calls to functions that are
8735 not known to bind locally.  It has no effect without @option{-mfdpic}.
8736 @end table
8737
8738 @node CRIS Options
8739 @subsection CRIS Options
8740 @cindex CRIS Options
8741
8742 These options are defined specifically for the CRIS ports.
8743
8744 @table @gcctabopt
8745 @item -march=@var{architecture-type}
8746 @itemx -mcpu=@var{architecture-type}
8747 @opindex march
8748 @opindex mcpu
8749 Generate code for the specified architecture.  The choices for
8750 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
8751 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
8752 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
8753 @samp{v10}.
8754
8755 @item -mtune=@var{architecture-type}
8756 @opindex mtune
8757 Tune to @var{architecture-type} everything applicable about the generated
8758 code, except for the ABI and the set of available instructions.  The
8759 choices for @var{architecture-type} are the same as for
8760 @option{-march=@var{architecture-type}}.
8761
8762 @item -mmax-stack-frame=@var{n}
8763 @opindex mmax-stack-frame
8764 Warn when the stack frame of a function exceeds @var{n} bytes.
8765
8766 @item -melinux-stacksize=@var{n}
8767 @opindex melinux-stacksize
8768 Only available with the @samp{cris-axis-aout} target.  Arranges for
8769 indications in the program to the kernel loader that the stack of the
8770 program should be set to @var{n} bytes.
8771
8772 @item -metrax4
8773 @itemx -metrax100
8774 @opindex metrax4
8775 @opindex metrax100
8776 The options @option{-metrax4} and @option{-metrax100} are synonyms for
8777 @option{-march=v3} and @option{-march=v8} respectively.
8778
8779 @item -mmul-bug-workaround
8780 @itemx -mno-mul-bug-workaround
8781 @opindex mmul-bug-workaround
8782 @opindex mno-mul-bug-workaround
8783 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
8784 models where it applies.  This option is active by default.
8785
8786 @item -mpdebug
8787 @opindex mpdebug
8788 Enable CRIS-specific verbose debug-related information in the assembly
8789 code.  This option also has the effect to turn off the @samp{#NO_APP}
8790 formatted-code indicator to the assembler at the beginning of the
8791 assembly file.
8792
8793 @item -mcc-init
8794 @opindex mcc-init
8795 Do not use condition-code results from previous instruction; always emit
8796 compare and test instructions before use of condition codes.
8797
8798 @item -mno-side-effects
8799 @opindex mno-side-effects
8800 Do not emit instructions with side-effects in addressing modes other than
8801 post-increment.
8802
8803 @item -mstack-align
8804 @itemx -mno-stack-align
8805 @itemx -mdata-align
8806 @itemx -mno-data-align
8807 @itemx -mconst-align
8808 @itemx -mno-const-align
8809 @opindex mstack-align
8810 @opindex mno-stack-align
8811 @opindex mdata-align
8812 @opindex mno-data-align
8813 @opindex mconst-align
8814 @opindex mno-const-align
8815 These options (no-options) arranges (eliminate arrangements) for the
8816 stack-frame, individual data and constants to be aligned for the maximum
8817 single data access size for the chosen CPU model.  The default is to
8818 arrange for 32-bit alignment.  ABI details such as structure layout are
8819 not affected by these options.
8820
8821 @item -m32-bit
8822 @itemx -m16-bit
8823 @itemx -m8-bit
8824 @opindex m32-bit
8825 @opindex m16-bit
8826 @opindex m8-bit
8827 Similar to the stack- data- and const-align options above, these options
8828 arrange for stack-frame, writable data and constants to all be 32-bit,
8829 16-bit or 8-bit aligned.  The default is 32-bit alignment.
8830
8831 @item -mno-prologue-epilogue
8832 @itemx -mprologue-epilogue
8833 @opindex mno-prologue-epilogue
8834 @opindex mprologue-epilogue
8835 With @option{-mno-prologue-epilogue}, the normal function prologue and
8836 epilogue that sets up the stack-frame are omitted and no return
8837 instructions or return sequences are generated in the code.  Use this
8838 option only together with visual inspection of the compiled code: no
8839 warnings or errors are generated when call-saved registers must be saved,
8840 or storage for local variable needs to be allocated.
8841
8842 @item -mno-gotplt
8843 @itemx -mgotplt
8844 @opindex mno-gotplt
8845 @opindex mgotplt
8846 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
8847 instruction sequences that load addresses for functions from the PLT part
8848 of the GOT rather than (traditional on other architectures) calls to the
8849 PLT@.  The default is @option{-mgotplt}.
8850
8851 @item -maout
8852 @opindex maout
8853 Legacy no-op option only recognized with the cris-axis-aout target.
8854
8855 @item -melf
8856 @opindex melf
8857 Legacy no-op option only recognized with the cris-axis-elf and
8858 cris-axis-linux-gnu targets.
8859
8860 @item -melinux
8861 @opindex melinux
8862 Only recognized with the cris-axis-aout target, where it selects a
8863 GNU/linux-like multilib, include files and instruction set for
8864 @option{-march=v8}.
8865
8866 @item -mlinux
8867 @opindex mlinux
8868 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
8869
8870 @item -sim
8871 @opindex sim
8872 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
8873 to link with input-output functions from a simulator library.  Code,
8874 initialized data and zero-initialized data are allocated consecutively.
8875
8876 @item -sim2
8877 @opindex sim2
8878 Like @option{-sim}, but pass linker options to locate initialized data at
8879 0x40000000 and zero-initialized data at 0x80000000.
8880 @end table
8881
8882 @node CRX Options
8883 @subsection CRX Options
8884 @cindex CRX Options
8885
8886 These options are defined specifically for the CRX ports.
8887
8888 @table @gcctabopt
8889
8890 @item -mmac
8891 @opindex mmac
8892 Enable the use of multiply-accumulate instructions. Disabled by default.
8893
8894 @item -mpush-args
8895 @opindex mpush-args
8896 Push instructions will be used to pass outgoing arguments when functions
8897 are called. Enabled by default.
8898 @end table
8899
8900 @node Darwin Options
8901 @subsection Darwin Options
8902 @cindex Darwin options
8903
8904 These options are defined for all architectures running the Darwin operating
8905 system.
8906
8907 FSF GCC on Darwin does not create ``fat'' object files; it will create
8908 an object file for the single architecture that it was built to
8909 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
8910 @option{-arch} options are used; it does so by running the compiler or
8911 linker multiple times and joining the results together with
8912 @file{lipo}.
8913
8914 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
8915 @samp{i686}) is determined by the flags that specify the ISA
8916 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
8917 @option{-force_cpusubtype_ALL} option can be used to override this.
8918
8919 The Darwin tools vary in their behavior when presented with an ISA
8920 mismatch.  The assembler, @file{as}, will only permit instructions to
8921 be used that are valid for the subtype of the file it is generating,
8922 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
8923 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
8924 and print an error if asked to create a shared library with a less
8925 restrictive subtype than its input files (for instance, trying to put
8926 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
8927 for executables, @file{ld}, will quietly give the executable the most
8928 restrictive subtype of any of its input files.
8929
8930 @table @gcctabopt
8931 @item -F@var{dir}
8932 @opindex F
8933 Add the framework directory @var{dir} to the head of the list of
8934 directories to be searched for header files.  These directories are
8935 interleaved with those specified by @option{-I} options and are
8936 scanned in a left-to-right order.
8937
8938 A framework directory is a directory with frameworks in it.  A
8939 framework is a directory with a @samp{"Headers"} and/or
8940 @samp{"PrivateHeaders"} directory contained directly in it that ends
8941 in @samp{".framework"}.  The name of a framework is the name of this
8942 directory excluding the @samp{".framework"}.  Headers associated with
8943 the framework are found in one of those two directories, with
8944 @samp{"Headers"} being searched first.  A subframework is a framework
8945 directory that is in a framework's @samp{"Frameworks"} directory.
8946 Includes of subframework headers can only appear in a header of a
8947 framework that contains the subframework, or in a sibling subframework
8948 header.  Two subframeworks are siblings if they occur in the same
8949 framework.  A subframework should not have the same name as a
8950 framework, a warning will be issued if this is violated.  Currently a
8951 subframework cannot have subframeworks, in the future, the mechanism
8952 may be extended to support this.  The standard frameworks can be found
8953 in @samp{"/System/Library/Frameworks"} and
8954 @samp{"/Library/Frameworks"}.  An example include looks like
8955 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
8956 the name of the framework and header.h is found in the
8957 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
8958
8959 @item -iframework@var{dir}
8960 @opindex iframework
8961 Like @option{-F} except the directory is a treated as a system
8962 directory.  The main difference between this @option{-iframework} and
8963 @option{-F} is that with @option{-iframework} the compiler does not
8964 warn about constructs contained within header files found via
8965 @var{dir}.  This option is valid only for the C family of languages.
8966
8967 @item -gused
8968 @opindex gused
8969 Emit debugging information for symbols that are used.  For STABS
8970 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
8971 This is by default ON@.
8972
8973 @item -gfull
8974 @opindex gfull
8975 Emit debugging information for all symbols and types.
8976
8977 @item -mmacosx-version-min=@var{version}
8978 The earliest version of MacOS X that this executable will run on
8979 is @var{version}.  Typical values of @var{version} include @code{10.1},
8980 @code{10.2}, and @code{10.3.9}.
8981
8982 If the compiler was built to use the system's headers by default,
8983 then the default for this option is the system version on which the
8984 compiler is running, otherwise the default is to make choices which
8985 are compatible with as many systems and code bases as possible.
8986
8987 @item -mkernel
8988 @opindex mkernel
8989 Enable kernel development mode.  The @option{-mkernel} option sets
8990 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
8991 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
8992 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
8993 applicable.  This mode also sets @option{-mno-altivec},
8994 @option{-msoft-float}, @option{-fno-builtin} and
8995 @option{-mlong-branch} for PowerPC targets.
8996
8997 @item -mone-byte-bool
8998 @opindex mone-byte-bool
8999 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
9000 By default @samp{sizeof(bool)} is @samp{4} when compiling for
9001 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
9002 option has no effect on x86.
9003
9004 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
9005 to generate code that is not binary compatible with code generated
9006 without that switch.  Using this switch may require recompiling all
9007 other modules in a program, including system libraries.  Use this
9008 switch to conform to a non-default data model.
9009
9010 @item -mfix-and-continue
9011 @itemx -ffix-and-continue
9012 @itemx -findirect-data
9013 @opindex mfix-and-continue
9014 @opindex ffix-and-continue
9015 @opindex findirect-data
9016 Generate code suitable for fast turn around development.  Needed to
9017 enable gdb to dynamically load @code{.o} files into already running
9018 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
9019 are provided for backwards compatibility.
9020
9021 @item -all_load
9022 @opindex all_load
9023 Loads all members of static archive libraries.
9024 See man ld(1) for more information.
9025
9026 @item -arch_errors_fatal
9027 @opindex arch_errors_fatal
9028 Cause the errors having to do with files that have the wrong architecture
9029 to be fatal.
9030
9031 @item -bind_at_load
9032 @opindex bind_at_load
9033 Causes the output file to be marked such that the dynamic linker will
9034 bind all undefined references when the file is loaded or launched.
9035
9036 @item -bundle
9037 @opindex bundle
9038 Produce a Mach-o bundle format file.
9039 See man ld(1) for more information.
9040
9041 @item -bundle_loader @var{executable}
9042 @opindex bundle_loader
9043 This option specifies the @var{executable} that will be loading the build
9044 output file being linked.  See man ld(1) for more information.
9045
9046 @item -dynamiclib
9047 @opindex dynamiclib
9048 When passed this option, GCC will produce a dynamic library instead of
9049 an executable when linking, using the Darwin @file{libtool} command.
9050
9051 @item -force_cpusubtype_ALL
9052 @opindex force_cpusubtype_ALL
9053 This causes GCC's output file to have the @var{ALL} subtype, instead of
9054 one controlled by the @option{-mcpu} or @option{-march} option.
9055
9056 @item -allowable_client  @var{client_name}
9057 @itemx -client_name
9058 @itemx -compatibility_version
9059 @itemx -current_version
9060 @itemx -dead_strip
9061 @itemx -dependency-file
9062 @itemx -dylib_file
9063 @itemx -dylinker_install_name
9064 @itemx -dynamic
9065 @itemx -exported_symbols_list
9066 @itemx -filelist
9067 @itemx -flat_namespace
9068 @itemx -force_flat_namespace
9069 @itemx -headerpad_max_install_names
9070 @itemx -image_base
9071 @itemx -init
9072 @itemx -install_name
9073 @itemx -keep_private_externs
9074 @itemx -multi_module
9075 @itemx -multiply_defined
9076 @itemx -multiply_defined_unused
9077 @itemx -noall_load
9078 @itemx -no_dead_strip_inits_and_terms
9079 @itemx -nofixprebinding
9080 @itemx -nomultidefs
9081 @itemx -noprebind
9082 @itemx -noseglinkedit
9083 @itemx -pagezero_size
9084 @itemx -prebind
9085 @itemx -prebind_all_twolevel_modules
9086 @itemx -private_bundle
9087 @itemx -read_only_relocs
9088 @itemx -sectalign
9089 @itemx -sectobjectsymbols
9090 @itemx -whyload
9091 @itemx -seg1addr
9092 @itemx -sectcreate
9093 @itemx -sectobjectsymbols
9094 @itemx -sectorder
9095 @itemx -segaddr
9096 @itemx -segs_read_only_addr
9097 @itemx -segs_read_write_addr
9098 @itemx -seg_addr_table
9099 @itemx -seg_addr_table_filename
9100 @itemx -seglinkedit
9101 @itemx -segprot
9102 @itemx -segs_read_only_addr
9103 @itemx -segs_read_write_addr
9104 @itemx -single_module
9105 @itemx -static
9106 @itemx -sub_library
9107 @itemx -sub_umbrella
9108 @itemx -twolevel_namespace
9109 @itemx -umbrella
9110 @itemx -undefined
9111 @itemx -unexported_symbols_list
9112 @itemx -weak_reference_mismatches
9113 @itemx -whatsloaded
9114
9115 @opindex allowable_client
9116 @opindex client_name
9117 @opindex compatibility_version
9118 @opindex current_version
9119 @opindex dead_strip
9120 @opindex dependency-file
9121 @opindex dylib_file
9122 @opindex dylinker_install_name
9123 @opindex dynamic
9124 @opindex exported_symbols_list
9125 @opindex filelist
9126 @opindex flat_namespace
9127 @opindex force_flat_namespace
9128 @opindex headerpad_max_install_names
9129 @opindex image_base
9130 @opindex init
9131 @opindex install_name
9132 @opindex keep_private_externs
9133 @opindex multi_module
9134 @opindex multiply_defined
9135 @opindex multiply_defined_unused
9136 @opindex noall_load
9137 @opindex no_dead_strip_inits_and_terms
9138 @opindex nofixprebinding
9139 @opindex nomultidefs
9140 @opindex noprebind
9141 @opindex noseglinkedit
9142 @opindex pagezero_size
9143 @opindex prebind
9144 @opindex prebind_all_twolevel_modules
9145 @opindex private_bundle
9146 @opindex read_only_relocs
9147 @opindex sectalign
9148 @opindex sectobjectsymbols
9149 @opindex whyload
9150 @opindex seg1addr
9151 @opindex sectcreate
9152 @opindex sectobjectsymbols
9153 @opindex sectorder
9154 @opindex segaddr
9155 @opindex segs_read_only_addr
9156 @opindex segs_read_write_addr
9157 @opindex seg_addr_table
9158 @opindex seg_addr_table_filename
9159 @opindex seglinkedit
9160 @opindex segprot
9161 @opindex segs_read_only_addr
9162 @opindex segs_read_write_addr
9163 @opindex single_module
9164 @opindex static
9165 @opindex sub_library
9166 @opindex sub_umbrella
9167 @opindex twolevel_namespace
9168 @opindex umbrella
9169 @opindex undefined
9170 @opindex unexported_symbols_list
9171 @opindex weak_reference_mismatches
9172 @opindex whatsloaded
9173
9174 These options are passed to the Darwin linker.  The Darwin linker man page
9175 describes them in detail.
9176 @end table
9177
9178 @node DEC Alpha Options
9179 @subsection DEC Alpha Options
9180
9181 These @samp{-m} options are defined for the DEC Alpha implementations:
9182
9183 @table @gcctabopt
9184 @item -mno-soft-float
9185 @itemx -msoft-float
9186 @opindex mno-soft-float
9187 @opindex msoft-float
9188 Use (do not use) the hardware floating-point instructions for
9189 floating-point operations.  When @option{-msoft-float} is specified,
9190 functions in @file{libgcc.a} will be used to perform floating-point
9191 operations.  Unless they are replaced by routines that emulate the
9192 floating-point operations, or compiled in such a way as to call such
9193 emulations routines, these routines will issue floating-point
9194 operations.   If you are compiling for an Alpha without floating-point
9195 operations, you must ensure that the library is built so as not to call
9196 them.
9197
9198 Note that Alpha implementations without floating-point operations are
9199 required to have floating-point registers.
9200
9201 @item -mfp-reg
9202 @itemx -mno-fp-regs
9203 @opindex mfp-reg
9204 @opindex mno-fp-regs
9205 Generate code that uses (does not use) the floating-point register set.
9206 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9207 register set is not used, floating point operands are passed in integer
9208 registers as if they were integers and floating-point results are passed
9209 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9210 so any function with a floating-point argument or return value called by code
9211 compiled with @option{-mno-fp-regs} must also be compiled with that
9212 option.
9213
9214 A typical use of this option is building a kernel that does not use,
9215 and hence need not save and restore, any floating-point registers.
9216
9217 @item -mieee
9218 @opindex mieee
9219 The Alpha architecture implements floating-point hardware optimized for
9220 maximum performance.  It is mostly compliant with the IEEE floating
9221 point standard.  However, for full compliance, software assistance is
9222 required.  This option generates code fully IEEE compliant code
9223 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9224 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9225 defined during compilation.  The resulting code is less efficient but is
9226 able to correctly support denormalized numbers and exceptional IEEE
9227 values such as not-a-number and plus/minus infinity.  Other Alpha
9228 compilers call this option @option{-ieee_with_no_inexact}.
9229
9230 @item -mieee-with-inexact
9231 @opindex mieee-with-inexact
9232 This is like @option{-mieee} except the generated code also maintains
9233 the IEEE @var{inexact-flag}.  Turning on this option causes the
9234 generated code to implement fully-compliant IEEE math.  In addition to
9235 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9236 macro.  On some Alpha implementations the resulting code may execute
9237 significantly slower than the code generated by default.  Since there is
9238 very little code that depends on the @var{inexact-flag}, you should
9239 normally not specify this option.  Other Alpha compilers call this
9240 option @option{-ieee_with_inexact}.
9241
9242 @item -mfp-trap-mode=@var{trap-mode}
9243 @opindex mfp-trap-mode
9244 This option controls what floating-point related traps are enabled.
9245 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9246 The trap mode can be set to one of four values:
9247
9248 @table @samp
9249 @item n
9250 This is the default (normal) setting.  The only traps that are enabled
9251 are the ones that cannot be disabled in software (e.g., division by zero
9252 trap).
9253
9254 @item u
9255 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9256 as well.
9257
9258 @item su
9259 Like @samp{u}, but the instructions are marked to be safe for software
9260 completion (see Alpha architecture manual for details).
9261
9262 @item sui
9263 Like @samp{su}, but inexact traps are enabled as well.
9264 @end table
9265
9266 @item -mfp-rounding-mode=@var{rounding-mode}
9267 @opindex mfp-rounding-mode
9268 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9269 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9270 of:
9271
9272 @table @samp
9273 @item n
9274 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9275 the nearest machine number or towards the even machine number in case
9276 of a tie.
9277
9278 @item m
9279 Round towards minus infinity.
9280
9281 @item c
9282 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9283
9284 @item d
9285 Dynamic rounding mode.  A field in the floating point control register
9286 (@var{fpcr}, see Alpha architecture reference manual) controls the
9287 rounding mode in effect.  The C library initializes this register for
9288 rounding towards plus infinity.  Thus, unless your program modifies the
9289 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9290 @end table
9291
9292 @item -mtrap-precision=@var{trap-precision}
9293 @opindex mtrap-precision
9294 In the Alpha architecture, floating point traps are imprecise.  This
9295 means without software assistance it is impossible to recover from a
9296 floating trap and program execution normally needs to be terminated.
9297 GCC can generate code that can assist operating system trap handlers
9298 in determining the exact location that caused a floating point trap.
9299 Depending on the requirements of an application, different levels of
9300 precisions can be selected:
9301
9302 @table @samp
9303 @item p
9304 Program precision.  This option is the default and means a trap handler
9305 can only identify which program caused a floating point exception.
9306
9307 @item f
9308 Function precision.  The trap handler can determine the function that
9309 caused a floating point exception.
9310
9311 @item i
9312 Instruction precision.  The trap handler can determine the exact
9313 instruction that caused a floating point exception.
9314 @end table
9315
9316 Other Alpha compilers provide the equivalent options called
9317 @option{-scope_safe} and @option{-resumption_safe}.
9318
9319 @item -mieee-conformant
9320 @opindex mieee-conformant
9321 This option marks the generated code as IEEE conformant.  You must not
9322 use this option unless you also specify @option{-mtrap-precision=i} and either
9323 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9324 is to emit the line @samp{.eflag 48} in the function prologue of the
9325 generated assembly file.  Under DEC Unix, this has the effect that
9326 IEEE-conformant math library routines will be linked in.
9327
9328 @item -mbuild-constants
9329 @opindex mbuild-constants
9330 Normally GCC examines a 32- or 64-bit integer constant to
9331 see if it can construct it from smaller constants in two or three
9332 instructions.  If it cannot, it will output the constant as a literal and
9333 generate code to load it from the data segment at runtime.
9334
9335 Use this option to require GCC to construct @emph{all} integer constants
9336 using code, even if it takes more instructions (the maximum is six).
9337
9338 You would typically use this option to build a shared library dynamic
9339 loader.  Itself a shared library, it must relocate itself in memory
9340 before it can find the variables and constants in its own data segment.
9341
9342 @item -malpha-as
9343 @itemx -mgas
9344 @opindex malpha-as
9345 @opindex mgas
9346 Select whether to generate code to be assembled by the vendor-supplied
9347 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9348
9349 @item -mbwx
9350 @itemx -mno-bwx
9351 @itemx -mcix
9352 @itemx -mno-cix
9353 @itemx -mfix
9354 @itemx -mno-fix
9355 @itemx -mmax
9356 @itemx -mno-max
9357 @opindex mbwx
9358 @opindex mno-bwx
9359 @opindex mcix
9360 @opindex mno-cix
9361 @opindex mfix
9362 @opindex mno-fix
9363 @opindex mmax
9364 @opindex mno-max
9365 Indicate whether GCC should generate code to use the optional BWX,
9366 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9367 sets supported by the CPU type specified via @option{-mcpu=} option or that
9368 of the CPU on which GCC was built if none was specified.
9369
9370 @item -mfloat-vax
9371 @itemx -mfloat-ieee
9372 @opindex mfloat-vax
9373 @opindex mfloat-ieee
9374 Generate code that uses (does not use) VAX F and G floating point
9375 arithmetic instead of IEEE single and double precision.
9376
9377 @item -mexplicit-relocs
9378 @itemx -mno-explicit-relocs
9379 @opindex mexplicit-relocs
9380 @opindex mno-explicit-relocs
9381 Older Alpha assemblers provided no way to generate symbol relocations
9382 except via assembler macros.  Use of these macros does not allow
9383 optimal instruction scheduling.  GNU binutils as of version 2.12
9384 supports a new syntax that allows the compiler to explicitly mark
9385 which relocations should apply to which instructions.  This option
9386 is mostly useful for debugging, as GCC detects the capabilities of
9387 the assembler when it is built and sets the default accordingly.
9388
9389 @item -msmall-data
9390 @itemx -mlarge-data
9391 @opindex msmall-data
9392 @opindex mlarge-data
9393 When @option{-mexplicit-relocs} is in effect, static data is
9394 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9395 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9396 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9397 16-bit relocations off of the @code{$gp} register.  This limits the
9398 size of the small data area to 64KB, but allows the variables to be
9399 directly accessed via a single instruction.
9400
9401 The default is @option{-mlarge-data}.  With this option the data area
9402 is limited to just below 2GB@.  Programs that require more than 2GB of
9403 data must use @code{malloc} or @code{mmap} to allocate the data in the
9404 heap instead of in the program's data segment.
9405
9406 When generating code for shared libraries, @option{-fpic} implies
9407 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9408
9409 @item -msmall-text
9410 @itemx -mlarge-text
9411 @opindex msmall-text
9412 @opindex mlarge-text
9413 When @option{-msmall-text} is used, the compiler assumes that the
9414 code of the entire program (or shared library) fits in 4MB, and is
9415 thus reachable with a branch instruction.  When @option{-msmall-data}
9416 is used, the compiler can assume that all local symbols share the
9417 same @code{$gp} value, and thus reduce the number of instructions
9418 required for a function call from 4 to 1.
9419
9420 The default is @option{-mlarge-text}.
9421
9422 @item -mcpu=@var{cpu_type}
9423 @opindex mcpu
9424 Set the instruction set and instruction scheduling parameters for
9425 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9426 style name or the corresponding chip number.  GCC supports scheduling
9427 parameters for the EV4, EV5 and EV6 family of processors and will
9428 choose the default values for the instruction set from the processor
9429 you specify.  If you do not specify a processor type, GCC will default
9430 to the processor on which the compiler was built.
9431
9432 Supported values for @var{cpu_type} are
9433
9434 @table @samp
9435 @item ev4
9436 @itemx ev45
9437 @itemx 21064
9438 Schedules as an EV4 and has no instruction set extensions.
9439
9440 @item ev5
9441 @itemx 21164
9442 Schedules as an EV5 and has no instruction set extensions.
9443
9444 @item ev56
9445 @itemx 21164a
9446 Schedules as an EV5 and supports the BWX extension.
9447
9448 @item pca56
9449 @itemx 21164pc
9450 @itemx 21164PC
9451 Schedules as an EV5 and supports the BWX and MAX extensions.
9452
9453 @item ev6
9454 @itemx 21264
9455 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9456
9457 @item ev67
9458 @itemx 21264a
9459 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9460 @end table
9461
9462 @item -mtune=@var{cpu_type}
9463 @opindex mtune
9464 Set only the instruction scheduling parameters for machine type
9465 @var{cpu_type}.  The instruction set is not changed.
9466
9467 @item -mmemory-latency=@var{time}
9468 @opindex mmemory-latency
9469 Sets the latency the scheduler should assume for typical memory
9470 references as seen by the application.  This number is highly
9471 dependent on the memory access patterns used by the application
9472 and the size of the external cache on the machine.
9473
9474 Valid options for @var{time} are
9475
9476 @table @samp
9477 @item @var{number}
9478 A decimal number representing clock cycles.
9479
9480 @item L1
9481 @itemx L2
9482 @itemx L3
9483 @itemx main
9484 The compiler contains estimates of the number of clock cycles for
9485 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9486 (also called Dcache, Scache, and Bcache), as well as to main memory.
9487 Note that L3 is only valid for EV5.
9488
9489 @end table
9490 @end table
9491
9492 @node DEC Alpha/VMS Options
9493 @subsection DEC Alpha/VMS Options
9494
9495 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9496
9497 @table @gcctabopt
9498 @item -mvms-return-codes
9499 @opindex mvms-return-codes
9500 Return VMS condition codes from main.  The default is to return POSIX
9501 style condition (e.g.@: error) codes.
9502 @end table
9503
9504 @node FRV Options
9505 @subsection FRV Options
9506 @cindex FRV Options
9507
9508 @table @gcctabopt
9509 @item -mgpr-32
9510 @opindex mgpr-32
9511
9512 Only use the first 32 general purpose registers.
9513
9514 @item -mgpr-64
9515 @opindex mgpr-64
9516
9517 Use all 64 general purpose registers.
9518
9519 @item -mfpr-32
9520 @opindex mfpr-32
9521
9522 Use only the first 32 floating point registers.
9523
9524 @item -mfpr-64
9525 @opindex mfpr-64
9526
9527 Use all 64 floating point registers
9528
9529 @item -mhard-float
9530 @opindex mhard-float
9531
9532 Use hardware instructions for floating point operations.
9533
9534 @item -msoft-float
9535 @opindex msoft-float
9536
9537 Use library routines for floating point operations.
9538
9539 @item -malloc-cc
9540 @opindex malloc-cc
9541
9542 Dynamically allocate condition code registers.
9543
9544 @item -mfixed-cc
9545 @opindex mfixed-cc
9546
9547 Do not try to dynamically allocate condition code registers, only
9548 use @code{icc0} and @code{fcc0}.
9549
9550 @item -mdword
9551 @opindex mdword
9552
9553 Change ABI to use double word insns.
9554
9555 @item -mno-dword
9556 @opindex mno-dword
9557
9558 Do not use double word instructions.
9559
9560 @item -mdouble
9561 @opindex mdouble
9562
9563 Use floating point double instructions.
9564
9565 @item -mno-double
9566 @opindex mno-double
9567
9568 Do not use floating point double instructions.
9569
9570 @item -mmedia
9571 @opindex mmedia
9572
9573 Use media instructions.
9574
9575 @item -mno-media
9576 @opindex mno-media
9577
9578 Do not use media instructions.
9579
9580 @item -mmuladd
9581 @opindex mmuladd
9582
9583 Use multiply and add/subtract instructions.
9584
9585 @item -mno-muladd
9586 @opindex mno-muladd
9587
9588 Do not use multiply and add/subtract instructions.
9589
9590 @item -mfdpic
9591 @opindex mfdpic
9592
9593 Select the FDPIC ABI, that uses function descriptors to represent
9594 pointers to functions.  Without any PIC/PIE-related options, it
9595 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9596 assumes GOT entries and small data are within a 12-bit range from the
9597 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9598 are computed with 32 bits.
9599
9600 @item -minline-plt
9601 @opindex minline-plt
9602
9603 Enable inlining of PLT entries in function calls to functions that are
9604 not known to bind locally.  It has no effect without @option{-mfdpic}.
9605 It's enabled by default if optimizing for speed and compiling for
9606 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9607 optimization option such as @option{-O3} or above is present in the
9608 command line.
9609
9610 @item -mTLS
9611 @opindex TLS
9612
9613 Assume a large TLS segment when generating thread-local code.
9614
9615 @item -mtls
9616 @opindex tls
9617
9618 Do not assume a large TLS segment when generating thread-local code.
9619
9620 @item -mgprel-ro
9621 @opindex mgprel-ro
9622
9623 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9624 that is known to be in read-only sections.  It's enabled by default,
9625 except for @option{-fpic} or @option{-fpie}: even though it may help
9626 make the global offset table smaller, it trades 1 instruction for 4.
9627 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9628 one of which may be shared by multiple symbols, and it avoids the need
9629 for a GOT entry for the referenced symbol, so it's more likely to be a
9630 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
9631
9632 @item -multilib-library-pic
9633 @opindex multilib-library-pic
9634
9635 Link with the (library, not FD) pic libraries.  It's implied by
9636 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
9637 @option{-fpic} without @option{-mfdpic}.  You should never have to use
9638 it explicitly.
9639
9640 @item -mlinked-fp
9641 @opindex mlinked-fp
9642
9643 Follow the EABI requirement of always creating a frame pointer whenever
9644 a stack frame is allocated.  This option is enabled by default and can
9645 be disabled with @option{-mno-linked-fp}.
9646
9647 @item -mlong-calls
9648 @opindex mlong-calls
9649
9650 Use indirect addressing to call functions outside the current
9651 compilation unit.  This allows the functions to be placed anywhere
9652 within the 32-bit address space.
9653
9654 @item -malign-labels
9655 @opindex malign-labels
9656
9657 Try to align labels to an 8-byte boundary by inserting nops into the
9658 previous packet.  This option only has an effect when VLIW packing
9659 is enabled.  It doesn't create new packets; it merely adds nops to
9660 existing ones.
9661
9662 @item -mlibrary-pic
9663 @opindex mlibrary-pic
9664
9665 Generate position-independent EABI code.
9666
9667 @item -macc-4
9668 @opindex macc-4
9669
9670 Use only the first four media accumulator registers.
9671
9672 @item -macc-8
9673 @opindex macc-8
9674
9675 Use all eight media accumulator registers.
9676
9677 @item -mpack
9678 @opindex mpack
9679
9680 Pack VLIW instructions.
9681
9682 @item -mno-pack
9683 @opindex mno-pack
9684
9685 Do not pack VLIW instructions.
9686
9687 @item -mno-eflags
9688 @opindex mno-eflags
9689
9690 Do not mark ABI switches in e_flags.
9691
9692 @item -mcond-move
9693 @opindex mcond-move
9694
9695 Enable the use of conditional-move instructions (default).
9696
9697 This switch is mainly for debugging the compiler and will likely be removed
9698 in a future version.
9699
9700 @item -mno-cond-move
9701 @opindex mno-cond-move
9702
9703 Disable the use of conditional-move instructions.
9704
9705 This switch is mainly for debugging the compiler and will likely be removed
9706 in a future version.
9707
9708 @item -mscc
9709 @opindex mscc
9710
9711 Enable the use of conditional set instructions (default).
9712
9713 This switch is mainly for debugging the compiler and will likely be removed
9714 in a future version.
9715
9716 @item -mno-scc
9717 @opindex mno-scc
9718
9719 Disable the use of conditional set instructions.
9720
9721 This switch is mainly for debugging the compiler and will likely be removed
9722 in a future version.
9723
9724 @item -mcond-exec
9725 @opindex mcond-exec
9726
9727 Enable the use of conditional execution (default).
9728
9729 This switch is mainly for debugging the compiler and will likely be removed
9730 in a future version.
9731
9732 @item -mno-cond-exec
9733 @opindex mno-cond-exec
9734
9735 Disable the use of conditional execution.
9736
9737 This switch is mainly for debugging the compiler and will likely be removed
9738 in a future version.
9739
9740 @item -mvliw-branch
9741 @opindex mvliw-branch
9742
9743 Run a pass to pack branches into VLIW instructions (default).
9744
9745 This switch is mainly for debugging the compiler and will likely be removed
9746 in a future version.
9747
9748 @item -mno-vliw-branch
9749 @opindex mno-vliw-branch
9750
9751 Do not run a pass to pack branches into VLIW instructions.
9752
9753 This switch is mainly for debugging the compiler and will likely be removed
9754 in a future version.
9755
9756 @item -mmulti-cond-exec
9757 @opindex mmulti-cond-exec
9758
9759 Enable optimization of @code{&&} and @code{||} in conditional execution
9760 (default).
9761
9762 This switch is mainly for debugging the compiler and will likely be removed
9763 in a future version.
9764
9765 @item -mno-multi-cond-exec
9766 @opindex mno-multi-cond-exec
9767
9768 Disable optimization of @code{&&} and @code{||} in conditional execution.
9769
9770 This switch is mainly for debugging the compiler and will likely be removed
9771 in a future version.
9772
9773 @item -mnested-cond-exec
9774 @opindex mnested-cond-exec
9775
9776 Enable nested conditional execution optimizations (default).
9777
9778 This switch is mainly for debugging the compiler and will likely be removed
9779 in a future version.
9780
9781 @item -mno-nested-cond-exec
9782 @opindex mno-nested-cond-exec
9783
9784 Disable nested conditional execution optimizations.
9785
9786 This switch is mainly for debugging the compiler and will likely be removed
9787 in a future version.
9788
9789 @item -moptimize-membar
9790 @opindex moptimize-membar
9791
9792 This switch removes redundant @code{membar} instructions from the
9793 compiler generated code.  It is enabled by default.
9794
9795 @item -mno-optimize-membar
9796 @opindex mno-optimize-membar
9797
9798 This switch disables the automatic removal of redundant @code{membar}
9799 instructions from the generated code.
9800
9801 @item -mtomcat-stats
9802 @opindex mtomcat-stats
9803
9804 Cause gas to print out tomcat statistics.
9805
9806 @item -mcpu=@var{cpu}
9807 @opindex mcpu
9808
9809 Select the processor type for which to generate code.  Possible values are
9810 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
9811 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
9812
9813 @end table
9814
9815 @node GNU/Linux Options
9816 @subsection GNU/Linux Options
9817
9818 These @samp{-m} options are defined for GNU/Linux targets:
9819
9820 @table @gcctabopt
9821 @item -mglibc
9822 @opindex mglibc
9823 Use the GNU C library instead of uClibc.  This is the default except
9824 on @samp{*-*-linux-*uclibc*} targets.
9825
9826 @item -muclibc
9827 @opindex muclibc
9828 Use uClibc instead of the GNU C library.  This is the default on
9829 @samp{*-*-linux-*uclibc*} targets.
9830 @end table
9831
9832 @node H8/300 Options
9833 @subsection H8/300 Options
9834
9835 These @samp{-m} options are defined for the H8/300 implementations:
9836
9837 @table @gcctabopt
9838 @item -mrelax
9839 @opindex mrelax
9840 Shorten some address references at link time, when possible; uses the
9841 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
9842 ld, Using ld}, for a fuller description.
9843
9844 @item -mh
9845 @opindex mh
9846 Generate code for the H8/300H@.
9847
9848 @item -ms
9849 @opindex ms
9850 Generate code for the H8S@.
9851
9852 @item -mn
9853 @opindex mn
9854 Generate code for the H8S and H8/300H in the normal mode.  This switch
9855 must be used either with @option{-mh} or @option{-ms}.
9856
9857 @item -ms2600
9858 @opindex ms2600
9859 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
9860
9861 @item -mint32
9862 @opindex mint32
9863 Make @code{int} data 32 bits by default.
9864
9865 @item -malign-300
9866 @opindex malign-300
9867 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
9868 The default for the H8/300H and H8S is to align longs and floats on 4
9869 byte boundaries.
9870 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
9871 This option has no effect on the H8/300.
9872 @end table
9873
9874 @node HPPA Options
9875 @subsection HPPA Options
9876 @cindex HPPA Options
9877
9878 These @samp{-m} options are defined for the HPPA family of computers:
9879
9880 @table @gcctabopt
9881 @item -march=@var{architecture-type}
9882 @opindex march
9883 Generate code for the specified architecture.  The choices for
9884 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
9885 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
9886 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
9887 architecture option for your machine.  Code compiled for lower numbered
9888 architectures will run on higher numbered architectures, but not the
9889 other way around.
9890
9891 @item -mpa-risc-1-0
9892 @itemx -mpa-risc-1-1
9893 @itemx -mpa-risc-2-0
9894 @opindex mpa-risc-1-0
9895 @opindex mpa-risc-1-1
9896 @opindex mpa-risc-2-0
9897 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
9898
9899 @item -mbig-switch
9900 @opindex mbig-switch
9901 Generate code suitable for big switch tables.  Use this option only if
9902 the assembler/linker complain about out of range branches within a switch
9903 table.
9904
9905 @item -mjump-in-delay
9906 @opindex mjump-in-delay
9907 Fill delay slots of function calls with unconditional jump instructions
9908 by modifying the return pointer for the function call to be the target
9909 of the conditional jump.
9910
9911 @item -mdisable-fpregs
9912 @opindex mdisable-fpregs
9913 Prevent floating point registers from being used in any manner.  This is
9914 necessary for compiling kernels which perform lazy context switching of
9915 floating point registers.  If you use this option and attempt to perform
9916 floating point operations, the compiler will abort.
9917
9918 @item -mdisable-indexing
9919 @opindex mdisable-indexing
9920 Prevent the compiler from using indexing address modes.  This avoids some
9921 rather obscure problems when compiling MIG generated code under MACH@.
9922
9923 @item -mno-space-regs
9924 @opindex mno-space-regs
9925 Generate code that assumes the target has no space registers.  This allows
9926 GCC to generate faster indirect calls and use unscaled index address modes.
9927
9928 Such code is suitable for level 0 PA systems and kernels.
9929
9930 @item -mfast-indirect-calls
9931 @opindex mfast-indirect-calls
9932 Generate code that assumes calls never cross space boundaries.  This
9933 allows GCC to emit code which performs faster indirect calls.
9934
9935 This option will not work in the presence of shared libraries or nested
9936 functions.
9937
9938 @item -mfixed-range=@var{register-range}
9939 @opindex mfixed-range
9940 Generate code treating the given register range as fixed registers.
9941 A fixed register is one that the register allocator can not use.  This is
9942 useful when compiling kernel code.  A register range is specified as
9943 two registers separated by a dash.  Multiple register ranges can be
9944 specified separated by a comma.
9945
9946 @item -mlong-load-store
9947 @opindex mlong-load-store
9948 Generate 3-instruction load and store sequences as sometimes required by
9949 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
9950 the HP compilers.
9951
9952 @item -mportable-runtime
9953 @opindex mportable-runtime
9954 Use the portable calling conventions proposed by HP for ELF systems.
9955
9956 @item -mgas
9957 @opindex mgas
9958 Enable the use of assembler directives only GAS understands.
9959
9960 @item -mschedule=@var{cpu-type}
9961 @opindex mschedule
9962 Schedule code according to the constraints for the machine type
9963 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
9964 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
9965 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
9966 proper scheduling option for your machine.  The default scheduling is
9967 @samp{8000}.
9968
9969 @item -mlinker-opt
9970 @opindex mlinker-opt
9971 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
9972 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
9973 linkers in which they give bogus error messages when linking some programs.
9974
9975 @item -msoft-float
9976 @opindex msoft-float
9977 Generate output containing library calls for floating point.
9978 @strong{Warning:} the requisite libraries are not available for all HPPA
9979 targets.  Normally the facilities of the machine's usual C compiler are
9980 used, but this cannot be done directly in cross-compilation.  You must make
9981 your own arrangements to provide suitable library functions for
9982 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
9983 does provide software floating point support.
9984
9985 @option{-msoft-float} changes the calling convention in the output file;
9986 therefore, it is only useful if you compile @emph{all} of a program with
9987 this option.  In particular, you need to compile @file{libgcc.a}, the
9988 library that comes with GCC, with @option{-msoft-float} in order for
9989 this to work.
9990
9991 @item -msio
9992 @opindex msio
9993 Generate the predefine, @code{_SIO}, for server IO@.  The default is
9994 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
9995 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
9996 options are available under HP-UX and HI-UX@.
9997
9998 @item -mgnu-ld
9999 @opindex gnu-ld
10000 Use GNU ld specific options.  This passes @option{-shared} to ld when
10001 building a shared library.  It is the default when GCC is configured,
10002 explicitly or implicitly, with the GNU linker.  This option does not
10003 have any affect on which ld is called, it only changes what parameters
10004 are passed to that ld.  The ld that is called is determined by the
10005 @option{--with-ld} configure option, GCC's program search path, and
10006 finally by the user's @env{PATH}.  The linker used by GCC can be printed
10007 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
10008 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
10009
10010 @item -mhp-ld
10011 @opindex hp-ld
10012 Use HP ld specific options.  This passes @option{-b} to ld when building
10013 a shared library and passes @option{+Accept TypeMismatch} to ld on all
10014 links.  It is the default when GCC is configured, explicitly or
10015 implicitly, with the HP linker.  This option does not have any affect on
10016 which ld is called, it only changes what parameters are passed to that
10017 ld.  The ld that is called is determined by the @option{--with-ld}
10018 configure option, GCC's program search path, and finally by the user's
10019 @env{PATH}.  The linker used by GCC can be printed using @samp{which
10020 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
10021 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
10022
10023 @item -mlong-calls
10024 @opindex mno-long-calls
10025 Generate code that uses long call sequences.  This ensures that a call
10026 is always able to reach linker generated stubs.  The default is to generate
10027 long calls only when the distance from the call site to the beginning
10028 of the function or translation unit, as the case may be, exceeds a
10029 predefined limit set by the branch type being used.  The limits for
10030 normal calls are 7,600,000 and 240,000 bytes, respectively for the
10031 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
10032 240,000 bytes.
10033
10034 Distances are measured from the beginning of functions when using the
10035 @option{-ffunction-sections} option, or when using the @option{-mgas}
10036 and @option{-mno-portable-runtime} options together under HP-UX with
10037 the SOM linker.
10038
10039 It is normally not desirable to use this option as it will degrade
10040 performance.  However, it may be useful in large applications,
10041 particularly when partial linking is used to build the application.
10042
10043 The types of long calls used depends on the capabilities of the
10044 assembler and linker, and the type of code being generated.  The
10045 impact on systems that support long absolute calls, and long pic
10046 symbol-difference or pc-relative calls should be relatively small.
10047 However, an indirect call is used on 32-bit ELF systems in pic code
10048 and it is quite long.
10049
10050 @item -munix=@var{unix-std}
10051 @opindex march
10052 Generate compiler predefines and select a startfile for the specified
10053 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10054 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10055 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10056 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10057 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10058 and later.
10059
10060 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10061 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10062 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10063 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10064 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10065 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10066
10067 It is @emph{important} to note that this option changes the interfaces
10068 for various library routines.  It also affects the operational behavior
10069 of the C library.  Thus, @emph{extreme} care is needed in using this
10070 option.
10071
10072 Library code that is intended to operate with more than one UNIX
10073 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10074 as appropriate.  Most GNU software doesn't provide this capability.
10075
10076 @item -nolibdld
10077 @opindex nolibdld
10078 Suppress the generation of link options to search libdld.sl when the
10079 @option{-static} option is specified on HP-UX 10 and later.
10080
10081 @item -static
10082 @opindex static
10083 The HP-UX implementation of setlocale in libc has a dependency on
10084 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10085 when the @option{-static} option is specified, special link options
10086 are needed to resolve this dependency.
10087
10088 On HP-UX 10 and later, the GCC driver adds the necessary options to
10089 link with libdld.sl when the @option{-static} option is specified.
10090 This causes the resulting binary to be dynamic.  On the 64-bit port,
10091 the linkers generate dynamic binaries by default in any case.  The
10092 @option{-nolibdld} option can be used to prevent the GCC driver from
10093 adding these link options.
10094
10095 @item -threads
10096 @opindex threads
10097 Add support for multithreading with the @dfn{dce thread} library
10098 under HP-UX@.  This option sets flags for both the preprocessor and
10099 linker.
10100 @end table
10101
10102 @node i386 and x86-64 Options
10103 @subsection Intel 386 and AMD x86-64 Options
10104 @cindex i386 Options
10105 @cindex x86-64 Options
10106 @cindex Intel 386 Options
10107 @cindex AMD x86-64 Options
10108
10109 These @samp{-m} options are defined for the i386 and x86-64 family of
10110 computers:
10111
10112 @table @gcctabopt
10113 @item -mtune=@var{cpu-type}
10114 @opindex mtune
10115 Tune to @var{cpu-type} everything applicable about the generated code, except
10116 for the ABI and the set of available instructions.  The choices for
10117 @var{cpu-type} are:
10118 @table @emph
10119 @item generic
10120 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10121 If you know the CPU on which your code will run, then you should use
10122 the corresponding @option{-mtune} option instead of
10123 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10124 of your application will have, then you should use this option.
10125
10126 As new processors are deployed in the marketplace, the behavior of this
10127 option will change.  Therefore, if you upgrade to a newer version of
10128 GCC, the code generated option will change to reflect the processors
10129 that were most common when that version of GCC was released.
10130
10131 There is no @option{-march=generic} option because @option{-march}
10132 indicates the instruction set the compiler can use, and there is no
10133 generic instruction set applicable to all processors.  In contrast,
10134 @option{-mtune} indicates the processor (or, in this case, collection of
10135 processors) for which the code is optimized.
10136 @item native
10137 This selects the CPU to tune for at compilation time by determining
10138 the processor type of the compiling machine.  Using @option{-mtune=native}
10139 will produce code optimized for the local machine under the constraints
10140 of the selected instruction set.  Using @option{-march=native} will
10141 enable all instruction subsets supported by the local machine (hence
10142 the result might not run on different machines).
10143 @item i386
10144 Original Intel's i386 CPU@.
10145 @item i486
10146 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10147 @item i586, pentium
10148 Intel Pentium CPU with no MMX support.
10149 @item pentium-mmx
10150 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10151 @item pentiumpro
10152 Intel PentiumPro CPU@.
10153 @item i686
10154 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10155 instruction set will be used, so the code will run on all i686 family chips.
10156 @item pentium2
10157 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10158 @item pentium3, pentium3m
10159 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10160 support.
10161 @item pentium-m
10162 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10163 support.  Used by Centrino notebooks.
10164 @item pentium4, pentium4m
10165 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10166 @item prescott
10167 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10168 set support.
10169 @item nocona
10170 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10171 SSE2 and SSE3 instruction set support.
10172 @item core2
10173 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10174 instruction set support.
10175 @item k6
10176 AMD K6 CPU with MMX instruction set support.
10177 @item k6-2, k6-3
10178 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
10179 @item athlon, athlon-tbird
10180 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
10181 support.
10182 @item athlon-4, athlon-xp, athlon-mp
10183 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
10184 instruction set support.
10185 @item k8, opteron, athlon64, athlon-fx
10186 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10187 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
10188 @item k8-sse3, opteron-sse3, athlon64-sse3
10189 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10190 @item amdfam10, barcelona
10191 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10192 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10193 instruction set extensions.)
10194 @item winchip-c6
10195 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10196 set support.
10197 @item winchip2
10198 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
10199 instruction set support.
10200 @item c3
10201 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
10202 implemented for this chip.)
10203 @item c3-2
10204 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10205 implemented for this chip.)
10206 @item geode
10207 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10208 @end table
10209
10210 While picking a specific @var{cpu-type} will schedule things appropriately
10211 for that particular chip, the compiler will not generate any code that
10212 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10213 being used.
10214
10215 @item -march=@var{cpu-type}
10216 @opindex march
10217 Generate instructions for the machine type @var{cpu-type}.  The choices
10218 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10219 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10220
10221 @item -mcpu=@var{cpu-type}
10222 @opindex mcpu
10223 A deprecated synonym for @option{-mtune}.
10224
10225 @item -mfpmath=@var{unit}
10226 @opindex march
10227 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10228 for @var{unit} are:
10229
10230 @table @samp
10231 @item 387
10232 Use the standard 387 floating point coprocessor present majority of chips and
10233 emulated otherwise.  Code compiled with this option will run almost everywhere.
10234 The temporary results are computed in 80bit precision instead of precision
10235 specified by the type resulting in slightly different results compared to most
10236 of other chips.  See @option{-ffloat-store} for more detailed description.
10237
10238 This is the default choice for i386 compiler.
10239
10240 @item sse
10241 Use scalar floating point instructions present in the SSE instruction set.
10242 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10243 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10244 instruction set supports only single precision arithmetics, thus the double and
10245 extended precision arithmetics is still done using 387.  Later version, present
10246 only in Pentium4 and the future AMD x86-64 chips supports double precision
10247 arithmetics too.
10248
10249 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10250 or @option{-msse2} switches to enable SSE extensions and make this option
10251 effective.  For the x86-64 compiler, these extensions are enabled by default.
10252
10253 The resulting code should be considerably faster in the majority of cases and avoid
10254 the numerical instability problems of 387 code, but may break some existing
10255 code that expects temporaries to be 80bit.
10256
10257 This is the default choice for the x86-64 compiler.
10258
10259 @item sse,387
10260 Attempt to utilize both instruction sets at once.  This effectively double the
10261 amount of available registers and on chips with separate execution units for
10262 387 and SSE the execution resources too.  Use this option with care, as it is
10263 still experimental, because the GCC register allocator does not model separate
10264 functional units well resulting in instable performance.
10265 @end table
10266
10267 @item -masm=@var{dialect}
10268 @opindex masm=@var{dialect}
10269 Output asm instructions using selected @var{dialect}.  Supported
10270 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10271 not support @samp{intel}.
10272
10273 @item -mieee-fp
10274 @itemx -mno-ieee-fp
10275 @opindex mieee-fp
10276 @opindex mno-ieee-fp
10277 Control whether or not the compiler uses IEEE floating point
10278 comparisons.  These handle correctly the case where the result of a
10279 comparison is unordered.
10280
10281 @item -msoft-float
10282 @opindex msoft-float
10283 Generate output containing library calls for floating point.
10284 @strong{Warning:} the requisite libraries are not part of GCC@.
10285 Normally the facilities of the machine's usual C compiler are used, but
10286 this can't be done directly in cross-compilation.  You must make your
10287 own arrangements to provide suitable library functions for
10288 cross-compilation.
10289
10290 On machines where a function returns floating point results in the 80387
10291 register stack, some floating point opcodes may be emitted even if
10292 @option{-msoft-float} is used.
10293
10294 @item -mno-fp-ret-in-387
10295 @opindex mno-fp-ret-in-387
10296 Do not use the FPU registers for return values of functions.
10297
10298 The usual calling convention has functions return values of types
10299 @code{float} and @code{double} in an FPU register, even if there
10300 is no FPU@.  The idea is that the operating system should emulate
10301 an FPU@.
10302
10303 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10304 in ordinary CPU registers instead.
10305
10306 @item -mno-fancy-math-387
10307 @opindex mno-fancy-math-387
10308 Some 387 emulators do not support the @code{sin}, @code{cos} and
10309 @code{sqrt} instructions for the 387.  Specify this option to avoid
10310 generating those instructions.  This option is the default on FreeBSD,
10311 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10312 indicates that the target cpu will always have an FPU and so the
10313 instruction will not need emulation.  As of revision 2.6.1, these
10314 instructions are not generated unless you also use the
10315 @option{-funsafe-math-optimizations} switch.
10316
10317 @item -malign-double
10318 @itemx -mno-align-double
10319 @opindex malign-double
10320 @opindex mno-align-double
10321 Control whether GCC aligns @code{double}, @code{long double}, and
10322 @code{long long} variables on a two word boundary or a one word
10323 boundary.  Aligning @code{double} variables on a two word boundary will
10324 produce code that runs somewhat faster on a @samp{Pentium} at the
10325 expense of more memory.
10326
10327 On x86-64, @option{-malign-double} is enabled by default.
10328
10329 @strong{Warning:} if you use the @option{-malign-double} switch,
10330 structures containing the above types will be aligned differently than
10331 the published application binary interface specifications for the 386
10332 and will not be binary compatible with structures in code compiled
10333 without that switch.
10334
10335 @item -m96bit-long-double
10336 @itemx -m128bit-long-double
10337 @opindex m96bit-long-double
10338 @opindex m128bit-long-double
10339 These switches control the size of @code{long double} type.  The i386
10340 application binary interface specifies the size to be 96 bits,
10341 so @option{-m96bit-long-double} is the default in 32 bit mode.
10342
10343 Modern architectures (Pentium and newer) would prefer @code{long double}
10344 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10345 conforming to the ABI, this would not be possible.  So specifying a
10346 @option{-m128bit-long-double} will align @code{long double}
10347 to a 16 byte boundary by padding the @code{long double} with an additional
10348 32 bit zero.
10349
10350 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10351 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10352
10353 Notice that neither of these options enable any extra precision over the x87
10354 standard of 80 bits for a @code{long double}.
10355
10356 @strong{Warning:} if you override the default value for your target ABI, the
10357 structures and arrays containing @code{long double} variables will change
10358 their size as well as function calling convention for function taking
10359 @code{long double} will be modified.  Hence they will not be binary
10360 compatible with arrays or structures in code compiled without that switch.
10361
10362 @item -mmlarge-data-threshold=@var{number}
10363 @opindex mlarge-data-threshold=@var{number}
10364 When @option{-mcmodel=medium} is specified, the data greater than
10365 @var{threshold} are placed in large data section.  This value must be the
10366 same across all object linked into the binary and defaults to 65535.
10367
10368 @item -mrtd
10369 @opindex mrtd
10370 Use a different function-calling convention, in which functions that
10371 take a fixed number of arguments return with the @code{ret} @var{num}
10372 instruction, which pops their arguments while returning.  This saves one
10373 instruction in the caller since there is no need to pop the arguments
10374 there.
10375
10376 You can specify that an individual function is called with this calling
10377 sequence with the function attribute @samp{stdcall}.  You can also
10378 override the @option{-mrtd} option by using the function attribute
10379 @samp{cdecl}.  @xref{Function Attributes}.
10380
10381 @strong{Warning:} this calling convention is incompatible with the one
10382 normally used on Unix, so you cannot use it if you need to call
10383 libraries compiled with the Unix compiler.
10384
10385 Also, you must provide function prototypes for all functions that
10386 take variable numbers of arguments (including @code{printf});
10387 otherwise incorrect code will be generated for calls to those
10388 functions.
10389
10390 In addition, seriously incorrect code will result if you call a
10391 function with too many arguments.  (Normally, extra arguments are
10392 harmlessly ignored.)
10393
10394 @item -mregparm=@var{num}
10395 @opindex mregparm
10396 Control how many registers are used to pass integer arguments.  By
10397 default, no registers are used to pass arguments, and at most 3
10398 registers can be used.  You can control this behavior for a specific
10399 function by using the function attribute @samp{regparm}.
10400 @xref{Function Attributes}.
10401
10402 @strong{Warning:} if you use this switch, and
10403 @var{num} is nonzero, then you must build all modules with the same
10404 value, including any libraries.  This includes the system libraries and
10405 startup modules.
10406
10407 @item -msseregparm
10408 @opindex msseregparm
10409 Use SSE register passing conventions for float and double arguments
10410 and return values.  You can control this behavior for a specific
10411 function by using the function attribute @samp{sseregparm}.
10412 @xref{Function Attributes}.
10413
10414 @strong{Warning:} if you use this switch then you must build all
10415 modules with the same value, including any libraries.  This includes
10416 the system libraries and startup modules.
10417
10418 @item -mpc32
10419 @itemx -mpc64
10420 @itemx -mpc80
10421 @opindex mpc32
10422 @opindex mpc64
10423 @opindex mpc80
10424
10425 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10426 is specified, the significands of results of floating-point operations are
10427 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10428 significands of results of floating-point operations to 53 bits (double
10429 precision) and @option{-mpc80} rounds the significands of results of
10430 floating-point operations to 64 bits (extended double precision), which is
10431 the default.  When this option is used, floating-point operations in higher
10432 precisions are not available to the programmer without setting the FPU
10433 control word explicitly.
10434
10435 Setting the rounding of floating-point operations to less than the default
10436 80 bits can speed some programs by 2% or more.  Note that some mathematical
10437 libraries assume that extended precision (80 bit) floating-point operations
10438 are enabled by default; routines in such libraries could suffer significant
10439 loss of accuracy, typically through so-called "catastrophic cancellation",
10440 when this option is used to set the precision to less than extended precision. 
10441
10442 @item -mstackrealign
10443 @opindex mstackrealign
10444 Realign the stack at entry.  On the Intel x86, the
10445 @option{-mstackrealign} option will generate an alternate prologue and
10446 epilogue that realigns the runtime stack.  This supports mixing legacy
10447 codes that keep a 4-byte aligned stack with modern codes that keep a
10448 16-byte stack for SSE compatibility.  The alternate prologue and
10449 epilogue are slower and bigger than the regular ones, and the
10450 alternate prologue requires an extra scratch register; this lowers the
10451 number of registers available if used in conjunction with the
10452 @code{regparm} attribute.  The @option{-mstackrealign} option is
10453 incompatible with the nested function prologue; this is considered a
10454 hard error.  See also the attribute @code{force_align_arg_pointer},
10455 applicable to individual functions.
10456
10457 @item -mpreferred-stack-boundary=@var{num}
10458 @opindex mpreferred-stack-boundary
10459 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10460 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10461 the default is 4 (16 bytes or 128 bits).
10462
10463 On Pentium and PentiumPro, @code{double} and @code{long double} values
10464 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10465 suffer significant run time performance penalties.  On Pentium III, the
10466 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10467 properly if it is not 16 byte aligned.
10468
10469 To ensure proper alignment of this values on the stack, the stack boundary
10470 must be as aligned as that required by any value stored on the stack.
10471 Further, every function must be generated such that it keeps the stack
10472 aligned.  Thus calling a function compiled with a higher preferred
10473 stack boundary from a function compiled with a lower preferred stack
10474 boundary will most likely misalign the stack.  It is recommended that
10475 libraries that use callbacks always use the default setting.
10476
10477 This extra alignment does consume extra stack space, and generally
10478 increases code size.  Code that is sensitive to stack space usage, such
10479 as embedded systems and operating system kernels, may want to reduce the
10480 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10481
10482 @item -mmmx
10483 @itemx -mno-mmx
10484 @item -msse
10485 @itemx -mno-sse
10486 @item -msse2
10487 @itemx -mno-sse2
10488 @item -msse3
10489 @itemx -mno-sse3
10490 @item -mssse3
10491 @itemx -mno-ssse3
10492 @item -msse4.1
10493 @itemx -mno-sse4.1
10494 @item -msse4.2
10495 @itemx -mno-sse4.2
10496 @item -msse4
10497 @itemx -mno-sse4
10498 @item -msse4a
10499 @item -mno-sse4a
10500 @item -msse5
10501 @itemx -mno-sse5
10502 @item -m3dnow
10503 @itemx -mno-3dnow
10504 @item -mpopcnt
10505 @itemx -mno-popcnt
10506 @item -mabm
10507 @itemx -mno-abm
10508 @opindex mmmx
10509 @opindex mno-mmx
10510 @opindex msse
10511 @opindex mno-sse
10512 @opindex m3dnow
10513 @opindex mno-3dnow
10514 These switches enable or disable the use of instructions in the MMX,
10515 SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4A, SSE5, ABM or 3DNow! extended
10516 instruction sets.
10517 These extensions are also available as built-in functions: see
10518 @ref{X86 Built-in Functions}, for details of the functions enabled and
10519 disabled by these switches.
10520
10521 To have SSE/SSE2 instructions generated automatically from floating-point
10522 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10523
10524 These options will enable GCC to use these extended instructions in
10525 generated code, even without @option{-mfpmath=sse}.  Applications which
10526 perform runtime CPU detection must compile separate files for each
10527 supported architecture, using the appropriate flags.  In particular,
10528 the file containing the CPU detection code should be compiled without
10529 these options.
10530
10531 @item -mcx16
10532 @opindex mcx16
10533 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10534 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10535 data types.  This is useful for high resolution counters that could be updated
10536 by multiple processors (or cores).  This instruction is generated as part of
10537 atomic built-in functions: see @ref{Atomic Builtins} for details.
10538
10539 @item -msahf
10540 @opindex msahf
10541 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10542 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10543 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10544 SAHF are load and store instructions, respectively, for certain status flags.
10545 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10546 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10547
10548 @item -mrecip
10549 @opindex mrecip
10550 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10551 vectorized variants RCPPS and RSQRTPS) instead of DIVSS and SQRTSS (and their
10552 vectorized variants).  These instructions will be generated only when
10553 @option{-funsafe-math-optimizations} is enabled.
10554
10555 @item -mveclibabi=@var{type}
10556 @opindex mveclibabi
10557 Specifies the ABI type to use for vectorizing intrinsics using an
10558 external library.  Supported types are @code{acml} for the AMD
10559 math core library style of interfacing.  GCC will currently emit
10560 calls to @code{__vrd2_sin}, @code{__vrd2_cos}, @code{__vrd2_exp},
10561 @code{__vrd2_log}, @code{__vrd2_log2}, @code{__vrd2_log10},
10562 @code{__vrs4_sinf}, @code{__vrs4_cosf}, @code{__vrs4_expf},
10563 @code{__vrs4_logf}, @code{__vrs4_log2f}, @code{__vrs4_log10f}
10564 and @code{__vrs4_powf} when using this type and @option{-ftree-vectorize}
10565 is enabled.  A ACML ABI compatible library will have to be specified
10566 at link time.
10567
10568 @item -mpush-args
10569 @itemx -mno-push-args
10570 @opindex mpush-args
10571 @opindex mno-push-args
10572 Use PUSH operations to store outgoing parameters.  This method is shorter
10573 and usually equally fast as method using SUB/MOV operations and is enabled
10574 by default.  In some cases disabling it may improve performance because of
10575 improved scheduling and reduced dependencies.
10576
10577 @item -maccumulate-outgoing-args
10578 @opindex maccumulate-outgoing-args
10579 If enabled, the maximum amount of space required for outgoing arguments will be
10580 computed in the function prologue.  This is faster on most modern CPUs
10581 because of reduced dependencies, improved scheduling and reduced stack usage
10582 when preferred stack boundary is not equal to 2.  The drawback is a notable
10583 increase in code size.  This switch implies @option{-mno-push-args}.
10584
10585 @item -mthreads
10586 @opindex mthreads
10587 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
10588 on thread-safe exception handling must compile and link all code with the
10589 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
10590 @option{-D_MT}; when linking, it links in a special thread helper library
10591 @option{-lmingwthrd} which cleans up per thread exception handling data.
10592
10593 @item -mno-align-stringops
10594 @opindex mno-align-stringops
10595 Do not align destination of inlined string operations.  This switch reduces
10596 code size and improves performance in case the destination is already aligned,
10597 but GCC doesn't know about it.
10598
10599 @item -minline-all-stringops
10600 @opindex minline-all-stringops
10601 By default GCC inlines string operations only when destination is known to be
10602 aligned at least to 4 byte boundary.  This enables more inlining, increase code
10603 size, but may improve performance of code that depends on fast memcpy, strlen
10604 and memset for short lengths.
10605
10606 @item -minline-stringops-dynamically
10607 @opindex minline-stringops-dynamically
10608 For string operation of unknown size, inline runtime checks so for small
10609 blocks inline code is used, while for large blocks library call is used.
10610
10611 @item -mstringop-strategy=@var{alg}
10612 @opindex mstringop-strategy=@var{alg}
10613 Overwrite internal decision heuristic about particular algorithm to inline
10614 string operation with.  The allowed values are @code{rep_byte},
10615 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
10616 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
10617 expanding inline loop, @code{libcall} for always expanding library call.
10618
10619 @item -momit-leaf-frame-pointer
10620 @opindex momit-leaf-frame-pointer
10621 Don't keep the frame pointer in a register for leaf functions.  This
10622 avoids the instructions to save, set up and restore frame pointers and
10623 makes an extra register available in leaf functions.  The option
10624 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10625 which might make debugging harder.
10626
10627 @item -mtls-direct-seg-refs
10628 @itemx -mno-tls-direct-seg-refs
10629 @opindex mtls-direct-seg-refs
10630 Controls whether TLS variables may be accessed with offsets from the
10631 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
10632 or whether the thread base pointer must be added.  Whether or not this
10633 is legal depends on the operating system, and whether it maps the
10634 segment to cover the entire TLS area.
10635
10636 For systems that use GNU libc, the default is on.
10637
10638 @item -mfused-madd
10639 @itemx -mno-fused-madd
10640 @opindex mfused-madd
10641 Enable automatic generation of fused floating point multiply-add instructions
10642 if the ISA supports such instructions.  The -mfused-madd option is on by
10643 default.  The fused multiply-add instructions have a different
10644 rounding behavior compared to executing a multiply followed by an add.
10645 @end table
10646
10647 These @samp{-m} switches are supported in addition to the above
10648 on AMD x86-64 processors in 64-bit environments.
10649
10650 @table @gcctabopt
10651 @item -m32
10652 @itemx -m64
10653 @opindex m32
10654 @opindex m64
10655 Generate code for a 32-bit or 64-bit environment.
10656 The 32-bit environment sets int, long and pointer to 32 bits and
10657 generates code that runs on any i386 system.
10658 The 64-bit environment sets int to 32 bits and long and pointer
10659 to 64 bits and generates code for AMD's x86-64 architecture. For
10660 darwin only the -m64 option turns off the @option{-fno-pic} and
10661 @option{-mdynamic-no-pic} options.
10662
10663 @item -mno-red-zone
10664 @opindex no-red-zone
10665 Do not use a so called red zone for x86-64 code.  The red zone is mandated
10666 by the x86-64 ABI, it is a 128-byte area beyond the location of the
10667 stack pointer that will not be modified by signal or interrupt handlers
10668 and therefore can be used for temporary data without adjusting the stack
10669 pointer.  The flag @option{-mno-red-zone} disables this red zone.
10670
10671 @item -mcmodel=small
10672 @opindex mcmodel=small
10673 Generate code for the small code model: the program and its symbols must
10674 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
10675 Programs can be statically or dynamically linked.  This is the default
10676 code model.
10677
10678 @item -mcmodel=kernel
10679 @opindex mcmodel=kernel
10680 Generate code for the kernel code model.  The kernel runs in the
10681 negative 2 GB of the address space.
10682 This model has to be used for Linux kernel code.
10683
10684 @item -mcmodel=medium
10685 @opindex mcmodel=medium
10686 Generate code for the medium model: The program is linked in the lower 2
10687 GB of the address space but symbols can be located anywhere in the
10688 address space.  Programs can be statically or dynamically linked, but
10689 building of shared libraries are not supported with the medium model.
10690
10691 @item -mcmodel=large
10692 @opindex mcmodel=large
10693 Generate code for the large model: This model makes no assumptions
10694 about addresses and sizes of sections.
10695 @end table
10696
10697 @node IA-64 Options
10698 @subsection IA-64 Options
10699 @cindex IA-64 Options
10700
10701 These are the @samp{-m} options defined for the Intel IA-64 architecture.
10702
10703 @table @gcctabopt
10704 @item -mbig-endian
10705 @opindex mbig-endian
10706 Generate code for a big endian target.  This is the default for HP-UX@.
10707
10708 @item -mlittle-endian
10709 @opindex mlittle-endian
10710 Generate code for a little endian target.  This is the default for AIX5
10711 and GNU/Linux.
10712
10713 @item -mgnu-as
10714 @itemx -mno-gnu-as
10715 @opindex mgnu-as
10716 @opindex mno-gnu-as
10717 Generate (or don't) code for the GNU assembler.  This is the default.
10718 @c Also, this is the default if the configure option @option{--with-gnu-as}
10719 @c is used.
10720
10721 @item -mgnu-ld
10722 @itemx -mno-gnu-ld
10723 @opindex mgnu-ld
10724 @opindex mno-gnu-ld
10725 Generate (or don't) code for the GNU linker.  This is the default.
10726 @c Also, this is the default if the configure option @option{--with-gnu-ld}
10727 @c is used.
10728
10729 @item -mno-pic
10730 @opindex mno-pic
10731 Generate code that does not use a global pointer register.  The result
10732 is not position independent code, and violates the IA-64 ABI@.
10733
10734 @item -mvolatile-asm-stop
10735 @itemx -mno-volatile-asm-stop
10736 @opindex mvolatile-asm-stop
10737 @opindex mno-volatile-asm-stop
10738 Generate (or don't) a stop bit immediately before and after volatile asm
10739 statements.
10740
10741 @item -mregister-names
10742 @itemx -mno-register-names
10743 @opindex mregister-names
10744 @opindex mno-register-names
10745 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
10746 the stacked registers.  This may make assembler output more readable.
10747
10748 @item -mno-sdata
10749 @itemx -msdata
10750 @opindex mno-sdata
10751 @opindex msdata
10752 Disable (or enable) optimizations that use the small data section.  This may
10753 be useful for working around optimizer bugs.
10754
10755 @item -mconstant-gp
10756 @opindex mconstant-gp
10757 Generate code that uses a single constant global pointer value.  This is
10758 useful when compiling kernel code.
10759
10760 @item -mauto-pic
10761 @opindex mauto-pic
10762 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
10763 This is useful when compiling firmware code.
10764
10765 @item -minline-float-divide-min-latency
10766 @opindex minline-float-divide-min-latency
10767 Generate code for inline divides of floating point values
10768 using the minimum latency algorithm.
10769
10770 @item -minline-float-divide-max-throughput
10771 @opindex minline-float-divide-max-throughput
10772 Generate code for inline divides of floating point values
10773 using the maximum throughput algorithm.
10774
10775 @item -minline-int-divide-min-latency
10776 @opindex minline-int-divide-min-latency
10777 Generate code for inline divides of integer values
10778 using the minimum latency algorithm.
10779
10780 @item -minline-int-divide-max-throughput
10781 @opindex minline-int-divide-max-throughput
10782 Generate code for inline divides of integer values
10783 using the maximum throughput algorithm.
10784
10785 @item -minline-sqrt-min-latency
10786 @opindex minline-sqrt-min-latency
10787 Generate code for inline square roots
10788 using the minimum latency algorithm.
10789
10790 @item -minline-sqrt-max-throughput
10791 @opindex minline-sqrt-max-throughput
10792 Generate code for inline square roots
10793 using the maximum throughput algorithm.
10794
10795 @item -mno-dwarf2-asm
10796 @itemx -mdwarf2-asm
10797 @opindex mno-dwarf2-asm
10798 @opindex mdwarf2-asm
10799 Don't (or do) generate assembler code for the DWARF2 line number debugging
10800 info.  This may be useful when not using the GNU assembler.
10801
10802 @item -mearly-stop-bits
10803 @itemx -mno-early-stop-bits
10804 @opindex mearly-stop-bits
10805 @opindex mno-early-stop-bits
10806 Allow stop bits to be placed earlier than immediately preceding the
10807 instruction that triggered the stop bit.  This can improve instruction
10808 scheduling, but does not always do so.
10809
10810 @item -mfixed-range=@var{register-range}
10811 @opindex mfixed-range
10812 Generate code treating the given register range as fixed registers.
10813 A fixed register is one that the register allocator can not use.  This is
10814 useful when compiling kernel code.  A register range is specified as
10815 two registers separated by a dash.  Multiple register ranges can be
10816 specified separated by a comma.
10817
10818 @item -mtls-size=@var{tls-size}
10819 @opindex mtls-size
10820 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
10821 64.
10822
10823 @item -mtune=@var{cpu-type}
10824 @opindex mtune
10825 Tune the instruction scheduling for a particular CPU, Valid values are
10826 itanium, itanium1, merced, itanium2, and mckinley.
10827
10828 @item -mt
10829 @itemx -pthread
10830 @opindex mt
10831 @opindex pthread
10832 Add support for multithreading using the POSIX threads library.  This
10833 option sets flags for both the preprocessor and linker.  It does
10834 not affect the thread safety of object code produced by the compiler or
10835 that of libraries supplied with it.  These are HP-UX specific flags.
10836
10837 @item -milp32
10838 @itemx -mlp64
10839 @opindex milp32
10840 @opindex mlp64
10841 Generate code for a 32-bit or 64-bit environment.
10842 The 32-bit environment sets int, long and pointer to 32 bits.
10843 The 64-bit environment sets int to 32 bits and long and pointer
10844 to 64 bits.  These are HP-UX specific flags.
10845
10846 @item -mno-sched-br-data-spec
10847 @itemx -msched-br-data-spec
10848 @opindex mno-sched-br-data-spec
10849 @opindex msched-br-data-spec
10850 (Dis/En)able data speculative scheduling before reload.
10851 This will result in generation of the ld.a instructions and
10852 the corresponding check instructions (ld.c / chk.a).
10853 The default is 'disable'.
10854
10855 @item -msched-ar-data-spec
10856 @itemx -mno-sched-ar-data-spec
10857 @opindex msched-ar-data-spec
10858 @opindex mno-sched-ar-data-spec
10859 (En/Dis)able data speculative scheduling after reload.
10860 This will result in generation of the ld.a instructions and
10861 the corresponding check instructions (ld.c / chk.a).
10862 The default is 'enable'.
10863
10864 @item -mno-sched-control-spec
10865 @itemx -msched-control-spec
10866 @opindex mno-sched-control-spec
10867 @opindex msched-control-spec
10868 (Dis/En)able control speculative scheduling.  This feature is
10869 available only during region scheduling (i.e. before reload).
10870 This will result in generation of the ld.s instructions and
10871 the corresponding check instructions chk.s .
10872 The default is 'disable'.
10873
10874 @item -msched-br-in-data-spec
10875 @itemx -mno-sched-br-in-data-spec
10876 @opindex msched-br-in-data-spec
10877 @opindex mno-sched-br-in-data-spec
10878 (En/Dis)able speculative scheduling of the instructions that
10879 are dependent on the data speculative loads before reload.
10880 This is effective only with @option{-msched-br-data-spec} enabled.
10881 The default is 'enable'.
10882
10883 @item -msched-ar-in-data-spec
10884 @itemx -mno-sched-ar-in-data-spec
10885 @opindex msched-ar-in-data-spec
10886 @opindex mno-sched-ar-in-data-spec
10887 (En/Dis)able speculative scheduling of the instructions that
10888 are dependent on the data speculative loads after reload.
10889 This is effective only with @option{-msched-ar-data-spec} enabled.
10890 The default is 'enable'.
10891
10892 @item -msched-in-control-spec
10893 @itemx -mno-sched-in-control-spec
10894 @opindex msched-in-control-spec
10895 @opindex mno-sched-in-control-spec
10896 (En/Dis)able speculative scheduling of the instructions that
10897 are dependent on the control speculative loads.
10898 This is effective only with @option{-msched-control-spec} enabled.
10899 The default is 'enable'.
10900
10901 @item -msched-ldc
10902 @itemx -mno-sched-ldc
10903 @opindex msched-ldc
10904 @opindex mno-sched-ldc
10905 (En/Dis)able use of simple data speculation checks ld.c .
10906 If disabled, only chk.a instructions will be emitted to check
10907 data speculative loads.
10908 The default is 'enable'.
10909
10910 @item -mno-sched-control-ldc
10911 @itemx -msched-control-ldc
10912 @opindex mno-sched-control-ldc
10913 @opindex msched-control-ldc
10914 (Dis/En)able use of ld.c instructions to check control speculative loads.
10915 If enabled, in case of control speculative load with no speculatively
10916 scheduled dependent instructions this load will be emitted as ld.sa and
10917 ld.c will be used to check it.
10918 The default is 'disable'.
10919
10920 @item -mno-sched-spec-verbose
10921 @itemx -msched-spec-verbose
10922 @opindex mno-sched-spec-verbose
10923 @opindex msched-spec-verbose
10924 (Dis/En)able printing of the information about speculative motions.
10925
10926 @item -mno-sched-prefer-non-data-spec-insns
10927 @itemx -msched-prefer-non-data-spec-insns
10928 @opindex mno-sched-prefer-non-data-spec-insns
10929 @opindex msched-prefer-non-data-spec-insns
10930 If enabled, data speculative instructions will be chosen for schedule
10931 only if there are no other choices at the moment.  This will make
10932 the use of the data speculation much more conservative.
10933 The default is 'disable'.
10934
10935 @item -mno-sched-prefer-non-control-spec-insns
10936 @itemx -msched-prefer-non-control-spec-insns
10937 @opindex mno-sched-prefer-non-control-spec-insns
10938 @opindex msched-prefer-non-control-spec-insns
10939 If enabled, control speculative instructions will be chosen for schedule
10940 only if there are no other choices at the moment.  This will make
10941 the use of the control speculation much more conservative.
10942 The default is 'disable'.
10943
10944 @item -mno-sched-count-spec-in-critical-path
10945 @itemx -msched-count-spec-in-critical-path
10946 @opindex mno-sched-count-spec-in-critical-path
10947 @opindex msched-count-spec-in-critical-path
10948 If enabled, speculative dependencies will be considered during
10949 computation of the instructions priorities.  This will make the use of the
10950 speculation a bit more conservative.
10951 The default is 'disable'.
10952
10953 @end table
10954
10955 @node M32C Options
10956 @subsection M32C Options
10957 @cindex M32C options
10958
10959 @table @gcctabopt
10960 @item -mcpu=@var{name}
10961 @opindex mcpu=
10962 Select the CPU for which code is generated.  @var{name} may be one of
10963 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
10964 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
10965 the M32C/80 series.
10966
10967 @item -msim
10968 @opindex msim
10969 Specifies that the program will be run on the simulator.  This causes
10970 an alternate runtime library to be linked in which supports, for
10971 example, file I/O.  You must not use this option when generating
10972 programs that will run on real hardware; you must provide your own
10973 runtime library for whatever I/O functions are needed.
10974
10975 @item -memregs=@var{number}
10976 @opindex memregs=
10977 Specifies the number of memory-based pseudo-registers GCC will use
10978 during code generation.  These pseudo-registers will be used like real
10979 registers, so there is a tradeoff between GCC's ability to fit the
10980 code into available registers, and the performance penalty of using
10981 memory instead of registers.  Note that all modules in a program must
10982 be compiled with the same value for this option.  Because of that, you
10983 must not use this option with the default runtime libraries gcc
10984 builds.
10985
10986 @end table
10987
10988 @node M32R/D Options
10989 @subsection M32R/D Options
10990 @cindex M32R/D options
10991
10992 These @option{-m} options are defined for Renesas M32R/D architectures:
10993
10994 @table @gcctabopt
10995 @item -m32r2
10996 @opindex m32r2
10997 Generate code for the M32R/2@.
10998
10999 @item -m32rx
11000 @opindex m32rx
11001 Generate code for the M32R/X@.
11002
11003 @item -m32r
11004 @opindex m32r
11005 Generate code for the M32R@.  This is the default.
11006
11007 @item -mmodel=small
11008 @opindex mmodel=small
11009 Assume all objects live in the lower 16MB of memory (so that their addresses
11010 can be loaded with the @code{ld24} instruction), and assume all subroutines
11011 are reachable with the @code{bl} instruction.
11012 This is the default.
11013
11014 The addressability of a particular object can be set with the
11015 @code{model} attribute.
11016
11017 @item -mmodel=medium
11018 @opindex mmodel=medium
11019 Assume objects may be anywhere in the 32-bit address space (the compiler
11020 will generate @code{seth/add3} instructions to load their addresses), and
11021 assume all subroutines are reachable with the @code{bl} instruction.
11022
11023 @item -mmodel=large
11024 @opindex mmodel=large
11025 Assume objects may be anywhere in the 32-bit address space (the compiler
11026 will generate @code{seth/add3} instructions to load their addresses), and
11027 assume subroutines may not be reachable with the @code{bl} instruction
11028 (the compiler will generate the much slower @code{seth/add3/jl}
11029 instruction sequence).
11030
11031 @item -msdata=none
11032 @opindex msdata=none
11033 Disable use of the small data area.  Variables will be put into
11034 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11035 @code{section} attribute has been specified).
11036 This is the default.
11037
11038 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11039 Objects may be explicitly put in the small data area with the
11040 @code{section} attribute using one of these sections.
11041
11042 @item -msdata=sdata
11043 @opindex msdata=sdata
11044 Put small global and static data in the small data area, but do not
11045 generate special code to reference them.
11046
11047 @item -msdata=use
11048 @opindex msdata=use
11049 Put small global and static data in the small data area, and generate
11050 special instructions to reference them.
11051
11052 @item -G @var{num}
11053 @opindex G
11054 @cindex smaller data references
11055 Put global and static objects less than or equal to @var{num} bytes
11056 into the small data or bss sections instead of the normal data or bss
11057 sections.  The default value of @var{num} is 8.
11058 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11059 for this option to have any effect.
11060
11061 All modules should be compiled with the same @option{-G @var{num}} value.
11062 Compiling with different values of @var{num} may or may not work; if it
11063 doesn't the linker will give an error message---incorrect code will not be
11064 generated.
11065
11066 @item -mdebug
11067 @opindex mdebug
11068 Makes the M32R specific code in the compiler display some statistics
11069 that might help in debugging programs.
11070
11071 @item -malign-loops
11072 @opindex malign-loops
11073 Align all loops to a 32-byte boundary.
11074
11075 @item -mno-align-loops
11076 @opindex mno-align-loops
11077 Do not enforce a 32-byte alignment for loops.  This is the default.
11078
11079 @item -missue-rate=@var{number}
11080 @opindex missue-rate=@var{number}
11081 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11082 or 2.
11083
11084 @item -mbranch-cost=@var{number}
11085 @opindex mbranch-cost=@var{number}
11086 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11087 preferred over conditional code, if it is 2, then the opposite will
11088 apply.
11089
11090 @item -mflush-trap=@var{number}
11091 @opindex mflush-trap=@var{number}
11092 Specifies the trap number to use to flush the cache.  The default is
11093 12.  Valid numbers are between 0 and 15 inclusive.
11094
11095 @item -mno-flush-trap
11096 @opindex mno-flush-trap
11097 Specifies that the cache cannot be flushed by using a trap.
11098
11099 @item -mflush-func=@var{name}
11100 @opindex mflush-func=@var{name}
11101 Specifies the name of the operating system function to call to flush
11102 the cache.  The default is @emph{_flush_cache}, but a function call
11103 will only be used if a trap is not available.
11104
11105 @item -mno-flush-func
11106 @opindex mno-flush-func
11107 Indicates that there is no OS function for flushing the cache.
11108
11109 @end table
11110
11111 @node M680x0 Options
11112 @subsection M680x0 Options
11113 @cindex M680x0 options
11114
11115 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11116 The default settings depend on which architecture was selected when
11117 the compiler was configured; the defaults for the most common choices
11118 are given below.
11119
11120 @table @gcctabopt
11121 @item -march=@var{arch}
11122 @opindex march
11123 Generate code for a specific M680x0 or ColdFire instruction set
11124 architecture.  Permissible values of @var{arch} for M680x0
11125 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11126 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11127 architectures are selected according to Freescale's ISA classification
11128 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11129 @samp{isab} and @samp{isac}.
11130
11131 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11132 code for a ColdFire target.  The @var{arch} in this macro is one of the
11133 @option{-march} arguments given above.
11134
11135 When used together, @option{-march} and @option{-mtune} select code
11136 that runs on a family of similar processors but that is optimized
11137 for a particular microarchitecture.
11138
11139 @item -mcpu=@var{cpu}
11140 @opindex mcpu
11141 Generate code for a specific M680x0 or ColdFire processor.
11142 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11143 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11144 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11145 below, which also classifies the CPUs into families:
11146
11147 @multitable @columnfractions 0.20 0.80
11148 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11149 @item @samp{51qe} @tab @samp{51qe}
11150 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11151 @item @samp{5206e} @tab @samp{5206e}
11152 @item @samp{5208} @tab @samp{5207} @samp{5208}
11153 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11154 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11155 @item @samp{5216} @tab @samp{5214} @samp{5216}
11156 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11157 @item @samp{5225} @tab @samp{5224} @samp{5225}
11158 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11159 @item @samp{5249} @tab @samp{5249}
11160 @item @samp{5250} @tab @samp{5250}
11161 @item @samp{5271} @tab @samp{5270} @samp{5271}
11162 @item @samp{5272} @tab @samp{5272}
11163 @item @samp{5275} @tab @samp{5274} @samp{5275}
11164 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11165 @item @samp{5307} @tab @samp{5307}
11166 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11167 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11168 @item @samp{5407} @tab @samp{5407}
11169 @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}
11170 @end multitable
11171
11172 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11173 @var{arch} is compatible with @var{cpu}.  Other combinations of
11174 @option{-mcpu} and @option{-march} are rejected.
11175
11176 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11177 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11178 where the value of @var{family} is given by the table above.
11179
11180 @item -mtune=@var{tune}
11181 @opindex mtune
11182 Tune the code for a particular microarchitecture, within the
11183 constraints set by @option{-march} and @option{-mcpu}.
11184 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11185 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11186 and @samp{cpu32}.  The ColdFire microarchitectures
11187 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11188
11189 You can also use @option{-mtune=68020-40} for code that needs
11190 to run relatively well on 68020, 68030 and 68040 targets.
11191 @option{-mtune=68020-60} is similar but includes 68060 targets
11192 as well.  These two options select the same tuning decisions as
11193 @option{-m68020-40} and @option{-m68020-60} respectively.
11194
11195 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11196 when tuning for 680x0 architecture @var{arch}.  It also defines
11197 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11198 option is used.  If gcc is tuning for a range of architectures,
11199 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11200 it defines the macros for every architecture in the range.
11201
11202 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11203 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11204 of the arguments given above.
11205
11206 @item -m68000
11207 @itemx -mc68000
11208 @opindex m68000
11209 @opindex mc68000
11210 Generate output for a 68000.  This is the default
11211 when the compiler is configured for 68000-based systems.
11212 It is equivalent to @option{-march=68000}.
11213
11214 Use this option for microcontrollers with a 68000 or EC000 core,
11215 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11216
11217 @item -m68010
11218 @opindex m68010
11219 Generate output for a 68010.  This is the default
11220 when the compiler is configured for 68010-based systems.
11221 It is equivalent to @option{-march=68010}.
11222
11223 @item -m68020
11224 @itemx -mc68020
11225 @opindex m68020
11226 @opindex mc68020
11227 Generate output for a 68020.  This is the default
11228 when the compiler is configured for 68020-based systems.
11229 It is equivalent to @option{-march=68020}.
11230
11231 @item -m68030
11232 @opindex m68030
11233 Generate output for a 68030.  This is the default when the compiler is
11234 configured for 68030-based systems.  It is equivalent to
11235 @option{-march=68030}.
11236
11237 @item -m68040
11238 @opindex m68040
11239 Generate output for a 68040.  This is the default when the compiler is
11240 configured for 68040-based systems.  It is equivalent to
11241 @option{-march=68040}.
11242
11243 This option inhibits the use of 68881/68882 instructions that have to be
11244 emulated by software on the 68040.  Use this option if your 68040 does not
11245 have code to emulate those instructions.
11246
11247 @item -m68060
11248 @opindex m68060
11249 Generate output for a 68060.  This is the default when the compiler is
11250 configured for 68060-based systems.  It is equivalent to
11251 @option{-march=68060}.
11252
11253 This option inhibits the use of 68020 and 68881/68882 instructions that
11254 have to be emulated by software on the 68060.  Use this option if your 68060
11255 does not have code to emulate those instructions.
11256
11257 @item -mcpu32
11258 @opindex mcpu32
11259 Generate output for a CPU32.  This is the default
11260 when the compiler is configured for CPU32-based systems.
11261 It is equivalent to @option{-march=cpu32}.
11262
11263 Use this option for microcontrollers with a
11264 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11265 68336, 68340, 68341, 68349 and 68360.
11266
11267 @item -m5200
11268 @opindex m5200
11269 Generate output for a 520X ColdFire CPU.  This is the default
11270 when the compiler is configured for 520X-based systems.
11271 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11272 in favor of that option.
11273
11274 Use this option for microcontroller with a 5200 core, including
11275 the MCF5202, MCF5203, MCF5204 and MCF5206.
11276
11277 @item -m5206e
11278 @opindex m5206e
11279 Generate output for a 5206e ColdFire CPU.  The option is now
11280 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11281
11282 @item -m528x
11283 @opindex m528x
11284 Generate output for a member of the ColdFire 528X family.
11285 The option is now deprecated in favor of the equivalent
11286 @option{-mcpu=528x}.
11287
11288 @item -m5307
11289 @opindex m5307
11290 Generate output for a ColdFire 5307 CPU.  The option is now deprecated
11291 in favor of the equivalent @option{-mcpu=5307}.
11292
11293 @item -m5407
11294 @opindex m5407
11295 Generate output for a ColdFire 5407 CPU.  The option is now deprecated
11296 in favor of the equivalent @option{-mcpu=5407}.
11297
11298 @item -mcfv4e
11299 @opindex mcfv4e
11300 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11301 This includes use of hardware floating point instructions.
11302 The option is equivalent to @option{-mcpu=547x}, and is now
11303 deprecated in favor of that option.
11304
11305 @item -m68020-40
11306 @opindex m68020-40
11307 Generate output for a 68040, without using any of the new instructions.
11308 This results in code which can run relatively efficiently on either a
11309 68020/68881 or a 68030 or a 68040.  The generated code does use the
11310 68881 instructions that are emulated on the 68040.
11311
11312 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11313
11314 @item -m68020-60
11315 @opindex m68020-60
11316 Generate output for a 68060, without using any of the new instructions.
11317 This results in code which can run relatively efficiently on either a
11318 68020/68881 or a 68030 or a 68040.  The generated code does use the
11319 68881 instructions that are emulated on the 68060.
11320
11321 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11322
11323 @item -mhard-float
11324 @itemx -m68881
11325 @opindex mhard-float
11326 @opindex m68881
11327 Generate floating-point instructions.  This is the default for 68020
11328 and above, and for ColdFire devices that have an FPU.  It defines the
11329 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11330 on ColdFire targets.
11331
11332 @item -msoft-float
11333 @opindex msoft-float
11334 Do not generate floating-point instructions; use library calls instead.
11335 This is the default for 68000, 68010, and 68832 targets.  It is also
11336 the default for ColdFire devices that have no FPU.
11337
11338 @item -mdiv
11339 @itemx -mno-div
11340 @opindex mdiv
11341 @opindex mno-div
11342 Generate (do not generate) ColdFire hardware divide and remainder
11343 instructions.  If @option{-march} is used without @option{-mcpu},
11344 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11345 architectures.  Otherwise, the default is taken from the target CPU
11346 (either the default CPU, or the one specified by @option{-mcpu}).  For
11347 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11348 @option{-mcpu=5206e}.
11349
11350 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11351
11352 @item -mshort
11353 @opindex mshort
11354 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11355 Additionally, parameters passed on the stack are also aligned to a
11356 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11357
11358 @item -mno-short
11359 @opindex mno-short
11360 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11361
11362 @item -mnobitfield
11363 @itemx -mno-bitfield
11364 @opindex mnobitfield
11365 @opindex mno-bitfield
11366 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11367 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11368
11369 @item -mbitfield
11370 @opindex mbitfield
11371 Do use the bit-field instructions.  The @option{-m68020} option implies
11372 @option{-mbitfield}.  This is the default if you use a configuration
11373 designed for a 68020.
11374
11375 @item -mrtd
11376 @opindex mrtd
11377 Use a different function-calling convention, in which functions
11378 that take a fixed number of arguments return with the @code{rtd}
11379 instruction, which pops their arguments while returning.  This
11380 saves one instruction in the caller since there is no need to pop
11381 the arguments there.
11382
11383 This calling convention is incompatible with the one normally
11384 used on Unix, so you cannot use it if you need to call libraries
11385 compiled with the Unix compiler.
11386
11387 Also, you must provide function prototypes for all functions that
11388 take variable numbers of arguments (including @code{printf});
11389 otherwise incorrect code will be generated for calls to those
11390 functions.
11391
11392 In addition, seriously incorrect code will result if you call a
11393 function with too many arguments.  (Normally, extra arguments are
11394 harmlessly ignored.)
11395
11396 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11397 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11398
11399 @item -mno-rtd
11400 @opindex mno-rtd
11401 Do not use the calling conventions selected by @option{-mrtd}.
11402 This is the default.
11403
11404 @item -malign-int
11405 @itemx -mno-align-int
11406 @opindex malign-int
11407 @opindex mno-align-int
11408 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11409 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11410 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11411 Aligning variables on 32-bit boundaries produces code that runs somewhat
11412 faster on processors with 32-bit busses at the expense of more memory.
11413
11414 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11415 align structures containing the above types  differently than
11416 most published application binary interface specifications for the m68k.
11417
11418 @item -mpcrel
11419 @opindex mpcrel
11420 Use the pc-relative addressing mode of the 68000 directly, instead of
11421 using a global offset table.  At present, this option implies @option{-fpic},
11422 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11423 not presently supported with @option{-mpcrel}, though this could be supported for
11424 68020 and higher processors.
11425
11426 @item -mno-strict-align
11427 @itemx -mstrict-align
11428 @opindex mno-strict-align
11429 @opindex mstrict-align
11430 Do not (do) assume that unaligned memory references will be handled by
11431 the system.
11432
11433 @item -msep-data
11434 Generate code that allows the data segment to be located in a different
11435 area of memory from the text segment.  This allows for execute in place in
11436 an environment without virtual memory management.  This option implies
11437 @option{-fPIC}.
11438
11439 @item -mno-sep-data
11440 Generate code that assumes that the data segment follows the text segment.
11441 This is the default.
11442
11443 @item -mid-shared-library
11444 Generate code that supports shared libraries via the library ID method.
11445 This allows for execute in place and shared libraries in an environment
11446 without virtual memory management.  This option implies @option{-fPIC}.
11447
11448 @item -mno-id-shared-library
11449 Generate code that doesn't assume ID based shared libraries are being used.
11450 This is the default.
11451
11452 @item -mshared-library-id=n
11453 Specified the identification number of the ID based shared library being
11454 compiled.  Specifying a value of 0 will generate more compact code, specifying
11455 other values will force the allocation of that number to the current
11456 library but is no more space or time efficient than omitting this option.
11457
11458 @end table
11459
11460 @node M68hc1x Options
11461 @subsection M68hc1x Options
11462 @cindex M68hc1x options
11463
11464 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11465 microcontrollers.  The default values for these options depends on
11466 which style of microcontroller was selected when the compiler was configured;
11467 the defaults for the most common choices are given below.
11468
11469 @table @gcctabopt
11470 @item -m6811
11471 @itemx -m68hc11
11472 @opindex m6811
11473 @opindex m68hc11
11474 Generate output for a 68HC11.  This is the default
11475 when the compiler is configured for 68HC11-based systems.
11476
11477 @item -m6812
11478 @itemx -m68hc12
11479 @opindex m6812
11480 @opindex m68hc12
11481 Generate output for a 68HC12.  This is the default
11482 when the compiler is configured for 68HC12-based systems.
11483
11484 @item -m68S12
11485 @itemx -m68hcs12
11486 @opindex m68S12
11487 @opindex m68hcs12
11488 Generate output for a 68HCS12.
11489
11490 @item -mauto-incdec
11491 @opindex mauto-incdec
11492 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11493 addressing modes.
11494
11495 @item -minmax
11496 @itemx -nominmax
11497 @opindex minmax
11498 @opindex mnominmax
11499 Enable the use of 68HC12 min and max instructions.
11500
11501 @item -mlong-calls
11502 @itemx -mno-long-calls
11503 @opindex mlong-calls
11504 @opindex mno-long-calls
11505 Treat all calls as being far away (near).  If calls are assumed to be
11506 far away, the compiler will use the @code{call} instruction to
11507 call a function and the @code{rtc} instruction for returning.
11508
11509 @item -mshort
11510 @opindex mshort
11511 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11512
11513 @item -msoft-reg-count=@var{count}
11514 @opindex msoft-reg-count
11515 Specify the number of pseudo-soft registers which are used for the
11516 code generation.  The maximum number is 32.  Using more pseudo-soft
11517 register may or may not result in better code depending on the program.
11518 The default is 4 for 68HC11 and 2 for 68HC12.
11519
11520 @end table
11521
11522 @node MCore Options
11523 @subsection MCore Options
11524 @cindex MCore options
11525
11526 These are the @samp{-m} options defined for the Motorola M*Core
11527 processors.
11528
11529 @table @gcctabopt
11530
11531 @item -mhardlit
11532 @itemx -mno-hardlit
11533 @opindex mhardlit
11534 @opindex mno-hardlit
11535 Inline constants into the code stream if it can be done in two
11536 instructions or less.
11537
11538 @item -mdiv
11539 @itemx -mno-div
11540 @opindex mdiv
11541 @opindex mno-div
11542 Use the divide instruction.  (Enabled by default).
11543
11544 @item -mrelax-immediate
11545 @itemx -mno-relax-immediate
11546 @opindex mrelax-immediate
11547 @opindex mno-relax-immediate
11548 Allow arbitrary sized immediates in bit operations.
11549
11550 @item -mwide-bitfields
11551 @itemx -mno-wide-bitfields
11552 @opindex mwide-bitfields
11553 @opindex mno-wide-bitfields
11554 Always treat bit-fields as int-sized.
11555
11556 @item -m4byte-functions
11557 @itemx -mno-4byte-functions
11558 @opindex m4byte-functions
11559 @opindex mno-4byte-functions
11560 Force all functions to be aligned to a four byte boundary.
11561
11562 @item -mcallgraph-data
11563 @itemx -mno-callgraph-data
11564 @opindex mcallgraph-data
11565 @opindex mno-callgraph-data
11566 Emit callgraph information.
11567
11568 @item -mslow-bytes
11569 @itemx -mno-slow-bytes
11570 @opindex mslow-bytes
11571 @opindex mno-slow-bytes
11572 Prefer word access when reading byte quantities.
11573
11574 @item -mlittle-endian
11575 @itemx -mbig-endian
11576 @opindex mlittle-endian
11577 @opindex mbig-endian
11578 Generate code for a little endian target.
11579
11580 @item -m210
11581 @itemx -m340
11582 @opindex m210
11583 @opindex m340
11584 Generate code for the 210 processor.
11585 @end table
11586
11587 @node MIPS Options
11588 @subsection MIPS Options
11589 @cindex MIPS options
11590
11591 @table @gcctabopt
11592
11593 @item -EB
11594 @opindex EB
11595 Generate big-endian code.
11596
11597 @item -EL
11598 @opindex EL
11599 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
11600 configurations.
11601
11602 @item -march=@var{arch}
11603 @opindex march
11604 Generate code that will run on @var{arch}, which can be the name of a
11605 generic MIPS ISA, or the name of a particular processor.
11606 The ISA names are:
11607 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
11608 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
11609 The processor names are:
11610 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
11611 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
11612 @samp{5kc}, @samp{5kf},
11613 @samp{20kc},
11614 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
11615 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
11616 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
11617 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
11618 @samp{m4k},
11619 @samp{orion},
11620 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
11621 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
11622 @samp{rm7000}, @samp{rm9000},
11623 @samp{sb1},
11624 @samp{sr71000},
11625 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
11626 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
11627 The special value @samp{from-abi} selects the
11628 most compatible architecture for the selected ABI (that is,
11629 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
11630
11631 In processor names, a final @samp{000} can be abbreviated as @samp{k}
11632 (for example, @samp{-march=r2k}).  Prefixes are optional, and
11633 @samp{vr} may be written @samp{r}.
11634
11635 Names of the form @samp{@var{n}f2_1} refer to processors with
11636 FPUs clocked at half the rate of the core, names of the form
11637 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
11638 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
11639 processors with FPUs clocked a ratio of 3:2 with respect to the core.
11640 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
11641 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
11642 accepted as synonyms for @samp{@var{n}f1_1}.
11643
11644 GCC defines two macros based on the value of this option.  The first
11645 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
11646 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
11647 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
11648 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
11649 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
11650
11651 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
11652 above.  In other words, it will have the full prefix and will not
11653 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
11654 the macro names the resolved architecture (either @samp{"mips1"} or
11655 @samp{"mips3"}).  It names the default architecture when no
11656 @option{-march} option is given.
11657
11658 @item -mtune=@var{arch}
11659 @opindex mtune
11660 Optimize for @var{arch}.  Among other things, this option controls
11661 the way instructions are scheduled, and the perceived cost of arithmetic
11662 operations.  The list of @var{arch} values is the same as for
11663 @option{-march}.
11664
11665 When this option is not used, GCC will optimize for the processor
11666 specified by @option{-march}.  By using @option{-march} and
11667 @option{-mtune} together, it is possible to generate code that will
11668 run on a family of processors, but optimize the code for one
11669 particular member of that family.
11670
11671 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
11672 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
11673 @samp{-march} ones described above.
11674
11675 @item -mips1
11676 @opindex mips1
11677 Equivalent to @samp{-march=mips1}.
11678
11679 @item -mips2
11680 @opindex mips2
11681 Equivalent to @samp{-march=mips2}.
11682
11683 @item -mips3
11684 @opindex mips3
11685 Equivalent to @samp{-march=mips3}.
11686
11687 @item -mips4
11688 @opindex mips4
11689 Equivalent to @samp{-march=mips4}.
11690
11691 @item -mips32
11692 @opindex mips32
11693 Equivalent to @samp{-march=mips32}.
11694
11695 @item -mips32r2
11696 @opindex mips32r2
11697 Equivalent to @samp{-march=mips32r2}.
11698
11699 @item -mips64
11700 @opindex mips64
11701 Equivalent to @samp{-march=mips64}.
11702
11703 @item -mips16
11704 @itemx -mno-mips16
11705 @opindex mips16
11706 @opindex mno-mips16
11707 Generate (do not generate) MIPS16 code.  If GCC is targetting a
11708 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
11709
11710 MIPS16 code generation can also be controlled on a per-function basis
11711 by means of @code{mips16} and @code{nomips16} attributes.  
11712 @xref{Function Attributes}, for more information.
11713
11714 @item -mflip-mips16
11715 @opindex mflip-mips16
11716 Generate MIPS16 code on alternating functions.  This option is provided
11717 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
11718 not intended for ordinary use in compiling user code.
11719
11720 @item -minterlink-mips16
11721 @itemx -mno-interlink-mips16
11722 @opindex minterlink-mips16
11723 @opindex mno-interlink-mips16
11724 Require (do not require) that non-MIPS16 code be link-compatible with
11725 MIPS16 code.
11726
11727 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
11728 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
11729 therefore disables direct jumps unless GCC knows that the target of the
11730 jump is not MIPS16.
11731
11732 @item -mabi=32
11733 @itemx -mabi=o64
11734 @itemx -mabi=n32
11735 @itemx -mabi=64
11736 @itemx -mabi=eabi
11737 @opindex mabi=32
11738 @opindex mabi=o64
11739 @opindex mabi=n32
11740 @opindex mabi=64
11741 @opindex mabi=eabi
11742 Generate code for the given ABI@.
11743
11744 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
11745 generates 64-bit code when you select a 64-bit architecture, but you
11746 can use @option{-mgp32} to get 32-bit code instead.
11747
11748 For information about the O64 ABI, see
11749 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
11750
11751 GCC supports a variant of the o32 ABI in which floating-point registers
11752 are 64 rather than 32 bits wide.  You can select this combination with
11753 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
11754 and @samp{mfhc1} instructions and is therefore only supported for
11755 MIPS32R2 processors.
11756
11757 The register assignments for arguments and return values remain the
11758 same, but each scalar value is passed in a single 64-bit register
11759 rather than a pair of 32-bit registers.  For example, scalar
11760 floating-point values are returned in @samp{$f0} only, not a
11761 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
11762 remains the same, but all 64 bits are saved.
11763
11764 @item -mabicalls
11765 @itemx -mno-abicalls
11766 @opindex mabicalls
11767 @opindex mno-abicalls
11768 Generate (do not generate) code that is suitable for SVR4-style
11769 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
11770 systems.
11771
11772 @item -mshared
11773 @itemx -mno-shared
11774 Generate (do not generate) code that is fully position-independent,
11775 and that can therefore be linked into shared libraries.  This option
11776 only affects @option{-mabicalls}.
11777
11778 All @option{-mabicalls} code has traditionally been position-independent,
11779 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
11780 as an extension, the GNU toolchain allows executables to use absolute
11781 accesses for locally-binding symbols.  It can also use shorter GP
11782 initialization sequences and generate direct calls to locally-defined
11783 functions.  This mode is selected by @option{-mno-shared}.
11784
11785 @option{-mno-shared} depends on binutils 2.16 or higher and generates
11786 objects that can only be linked by the GNU linker.  However, the option
11787 does not affect the ABI of the final executable; it only affects the ABI
11788 of relocatable objects.  Using @option{-mno-shared} will generally make
11789 executables both smaller and quicker.
11790
11791 @option{-mshared} is the default.
11792
11793 @item -mxgot
11794 @itemx -mno-xgot
11795 @opindex mxgot
11796 @opindex mno-xgot
11797 Lift (do not lift) the usual restrictions on the size of the global
11798 offset table.
11799
11800 GCC normally uses a single instruction to load values from the GOT@.
11801 While this is relatively efficient, it will only work if the GOT
11802 is smaller than about 64k.  Anything larger will cause the linker
11803 to report an error such as:
11804
11805 @cindex relocation truncated to fit (MIPS)
11806 @smallexample
11807 relocation truncated to fit: R_MIPS_GOT16 foobar
11808 @end smallexample
11809
11810 If this happens, you should recompile your code with @option{-mxgot}.
11811 It should then work with very large GOTs, although it will also be
11812 less efficient, since it will take three instructions to fetch the
11813 value of a global symbol.
11814
11815 Note that some linkers can create multiple GOTs.  If you have such a
11816 linker, you should only need to use @option{-mxgot} when a single object
11817 file accesses more than 64k's worth of GOT entries.  Very few do.
11818
11819 These options have no effect unless GCC is generating position
11820 independent code.
11821
11822 @item -mgp32
11823 @opindex mgp32
11824 Assume that general-purpose registers are 32 bits wide.
11825
11826 @item -mgp64
11827 @opindex mgp64
11828 Assume that general-purpose registers are 64 bits wide.
11829
11830 @item -mfp32
11831 @opindex mfp32
11832 Assume that floating-point registers are 32 bits wide.
11833
11834 @item -mfp64
11835 @opindex mfp64
11836 Assume that floating-point registers are 64 bits wide.
11837
11838 @item -mhard-float
11839 @opindex mhard-float
11840 Use floating-point coprocessor instructions.
11841
11842 @item -msoft-float
11843 @opindex msoft-float
11844 Do not use floating-point coprocessor instructions.  Implement
11845 floating-point calculations using library calls instead.
11846
11847 @item -msingle-float
11848 @opindex msingle-float
11849 Assume that the floating-point coprocessor only supports single-precision
11850 operations.
11851
11852 @item -mdouble-float
11853 @opindex mdouble-float
11854 Assume that the floating-point coprocessor supports double-precision
11855 operations.  This is the default.
11856
11857 @item -mllsc
11858 @itemx -mno-llsc
11859 @opindex mllsc
11860 @opindex mno-llsc
11861 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
11862 implement atomic memory built-in functions.  When neither option is
11863 specified, GCC will use the instructions if the target architecture
11864 supports them.
11865
11866 @option{-mllsc} is useful if the runtime environment can emulate the
11867 instructions and @option{-mno-llsc} can be useful when compiling for
11868 nonstandard ISAs.  You can make either option the default by
11869 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
11870 respectively.  @option{--with-llsc} is the default for some
11871 configurations; see the installation documentation for details.
11872
11873 @item -mdsp
11874 @itemx -mno-dsp
11875 @opindex mdsp
11876 @opindex mno-dsp
11877 Use (do not use) revision 1 of the MIPS DSP ASE.
11878 @xref{MIPS DSP Built-in Functions}.  This option defines the
11879 preprocessor macro @samp{__mips_dsp}.  It also defines
11880 @samp{__mips_dsp_rev} to 1.
11881
11882 @item -mdspr2
11883 @itemx -mno-dspr2
11884 @opindex mdspr2
11885 @opindex mno-dspr2
11886 Use (do not use) revision 2 of the MIPS DSP ASE.
11887 @xref{MIPS DSP Built-in Functions}.  This option defines the
11888 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
11889 It also defines @samp{__mips_dsp_rev} to 2.
11890
11891 @item -msmartmips
11892 @itemx -mno-smartmips
11893 @opindex msmartmips
11894 @opindex mno-smartmips
11895 Use (do not use) the MIPS SmartMIPS ASE.
11896
11897 @item -mpaired-single
11898 @itemx -mno-paired-single
11899 @opindex mpaired-single
11900 @opindex mno-paired-single
11901 Use (do not use) paired-single floating-point instructions.
11902 @xref{MIPS Paired-Single Support}.  This option can only be used
11903 when generating 64-bit code and requires hardware floating-point
11904 support to be enabled.
11905
11906 @item -mdmx
11907 @itemx -mno-mdmx
11908 @opindex mdmx
11909 @opindex mno-mdmx
11910 Use (do not use) MIPS Digital Media Extension instructions.
11911 This option can only be used when generating 64-bit code and requires
11912 hardware floating-point support to be enabled.
11913
11914 @item -mips3d
11915 @itemx -mno-mips3d
11916 @opindex mips3d
11917 @opindex mno-mips3d
11918 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
11919 The option @option{-mips3d} implies @option{-mpaired-single}.
11920
11921 @item -mmt
11922 @itemx -mno-mt
11923 @opindex mmt
11924 @opindex mno-mt
11925 Use (do not use) MT Multithreading instructions.
11926
11927 @item -mlong64
11928 @opindex mlong64
11929 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
11930 an explanation of the default and the way that the pointer size is
11931 determined.
11932
11933 @item -mlong32
11934 @opindex mlong32
11935 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
11936
11937 The default size of @code{int}s, @code{long}s and pointers depends on
11938 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
11939 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
11940 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
11941 or the same size as integer registers, whichever is smaller.
11942
11943 @item -msym32
11944 @itemx -mno-sym32
11945 @opindex msym32
11946 @opindex mno-sym32
11947 Assume (do not assume) that all symbols have 32-bit values, regardless
11948 of the selected ABI@.  This option is useful in combination with
11949 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
11950 to generate shorter and faster references to symbolic addresses.
11951
11952 @item -G @var{num}
11953 @opindex G
11954 Put definitions of externally-visible data in a small data section
11955 if that data is no bigger than @var{num} bytes.  GCC can then access
11956 the data more efficiently; see @option{-mgpopt} for details.
11957
11958 The default @option{-G} option depends on the configuration.
11959
11960 @item -mlocal-sdata
11961 @itemx -mno-local-sdata
11962 @opindex mlocal-sdata
11963 @opindex mno-local-sdata
11964 Extend (do not extend) the @option{-G} behavior to local data too,
11965 such as to static variables in C.  @option{-mlocal-sdata} is the
11966 default for all configurations.
11967
11968 If the linker complains that an application is using too much small data,
11969 you might want to try rebuilding the less performance-critical parts with
11970 @option{-mno-local-sdata}.  You might also want to build large
11971 libraries with @option{-mno-local-sdata}, so that the libraries leave
11972 more room for the main program.
11973
11974 @item -mextern-sdata
11975 @itemx -mno-extern-sdata
11976 @opindex mextern-sdata
11977 @opindex mno-extern-sdata
11978 Assume (do not assume) that externally-defined data will be in
11979 a small data section if that data is within the @option{-G} limit.
11980 @option{-mextern-sdata} is the default for all configurations.
11981
11982 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
11983 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
11984 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
11985 is placed in a small data section.  If @var{Var} is defined by another
11986 module, you must either compile that module with a high-enough
11987 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
11988 definition.  If @var{Var} is common, you must link the application
11989 with a high-enough @option{-G} setting.
11990
11991 The easiest way of satisfying these restrictions is to compile
11992 and link every module with the same @option{-G} option.  However,
11993 you may wish to build a library that supports several different
11994 small data limits.  You can do this by compiling the library with
11995 the highest supported @option{-G} setting and additionally using
11996 @option{-mno-extern-sdata} to stop the library from making assumptions
11997 about externally-defined data.
11998
11999 @item -mgpopt
12000 @itemx -mno-gpopt
12001 @opindex mgpopt
12002 @opindex mno-gpopt
12003 Use (do not use) GP-relative accesses for symbols that are known to be
12004 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
12005 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
12006 configurations.
12007
12008 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
12009 might not hold the value of @code{_gp}.  For example, if the code is
12010 part of a library that might be used in a boot monitor, programs that
12011 call boot monitor routines will pass an unknown value in @code{$gp}.
12012 (In such situations, the boot monitor itself would usually be compiled
12013 with @option{-G0}.)
12014
12015 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
12016 @option{-mno-extern-sdata}.
12017
12018 @item -membedded-data
12019 @itemx -mno-embedded-data
12020 @opindex membedded-data
12021 @opindex mno-embedded-data
12022 Allocate variables to the read-only data section first if possible, then
12023 next in the small data section if possible, otherwise in data.  This gives
12024 slightly slower code than the default, but reduces the amount of RAM required
12025 when executing, and thus may be preferred for some embedded systems.
12026
12027 @item -muninit-const-in-rodata
12028 @itemx -mno-uninit-const-in-rodata
12029 @opindex muninit-const-in-rodata
12030 @opindex mno-uninit-const-in-rodata
12031 Put uninitialized @code{const} variables in the read-only data section.
12032 This option is only meaningful in conjunction with @option{-membedded-data}.
12033
12034 @item -mcode-readable=@var{setting}
12035 @opindex mcode-readable
12036 Specify whether GCC may generate code that reads from executable sections.
12037 There are three possible settings:
12038
12039 @table @gcctabopt
12040 @item -mcode-readable=yes
12041 Instructions may freely access executable sections.  This is the
12042 default setting.
12043
12044 @item -mcode-readable=pcrel
12045 MIPS16 PC-relative load instructions can access executable sections,
12046 but other instructions must not do so.  This option is useful on 4KSc
12047 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12048 It is also useful on processors that can be configured to have a dual
12049 instruction/data SRAM interface and that, like the M4K, automatically
12050 redirect PC-relative loads to the instruction RAM.
12051
12052 @item -mcode-readable=no
12053 Instructions must not access executable sections.  This option can be
12054 useful on targets that are configured to have a dual instruction/data
12055 SRAM interface but that (unlike the M4K) do not automatically redirect
12056 PC-relative loads to the instruction RAM.
12057 @end table
12058
12059 @item -msplit-addresses
12060 @itemx -mno-split-addresses
12061 @opindex msplit-addresses
12062 @opindex mno-split-addresses
12063 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12064 relocation operators.  This option has been superseded by
12065 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12066
12067 @item -mexplicit-relocs
12068 @itemx -mno-explicit-relocs
12069 @opindex mexplicit-relocs
12070 @opindex mno-explicit-relocs
12071 Use (do not use) assembler relocation operators when dealing with symbolic
12072 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12073 is to use assembler macros instead.
12074
12075 @option{-mexplicit-relocs} is the default if GCC was configured
12076 to use an assembler that supports relocation operators.
12077
12078 @item -mcheck-zero-division
12079 @itemx -mno-check-zero-division
12080 @opindex mcheck-zero-division
12081 @opindex mno-check-zero-division
12082 Trap (do not trap) on integer division by zero.
12083
12084 The default is @option{-mcheck-zero-division}.
12085
12086 @item -mdivide-traps
12087 @itemx -mdivide-breaks
12088 @opindex mdivide-traps
12089 @opindex mdivide-breaks
12090 MIPS systems check for division by zero by generating either a
12091 conditional trap or a break instruction.  Using traps results in
12092 smaller code, but is only supported on MIPS II and later.  Also, some
12093 versions of the Linux kernel have a bug that prevents trap from
12094 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12095 allow conditional traps on architectures that support them and
12096 @option{-mdivide-breaks} to force the use of breaks.
12097
12098 The default is usually @option{-mdivide-traps}, but this can be
12099 overridden at configure time using @option{--with-divide=breaks}.
12100 Divide-by-zero checks can be completely disabled using
12101 @option{-mno-check-zero-division}.
12102
12103 @item -mmemcpy
12104 @itemx -mno-memcpy
12105 @opindex mmemcpy
12106 @opindex mno-memcpy
12107 Force (do not force) the use of @code{memcpy()} for non-trivial block
12108 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12109 most constant-sized copies.
12110
12111 @item -mlong-calls
12112 @itemx -mno-long-calls
12113 @opindex mlong-calls
12114 @opindex mno-long-calls
12115 Disable (do not disable) use of the @code{jal} instruction.  Calling
12116 functions using @code{jal} is more efficient but requires the caller
12117 and callee to be in the same 256 megabyte segment.
12118
12119 This option has no effect on abicalls code.  The default is
12120 @option{-mno-long-calls}.
12121
12122 @item -mmad
12123 @itemx -mno-mad
12124 @opindex mmad
12125 @opindex mno-mad
12126 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12127 instructions, as provided by the R4650 ISA@.
12128
12129 @item -mfused-madd
12130 @itemx -mno-fused-madd
12131 @opindex mfused-madd
12132 @opindex mno-fused-madd
12133 Enable (disable) use of the floating point multiply-accumulate
12134 instructions, when they are available.  The default is
12135 @option{-mfused-madd}.
12136
12137 When multiply-accumulate instructions are used, the intermediate
12138 product is calculated to infinite precision and is not subject to
12139 the FCSR Flush to Zero bit.  This may be undesirable in some
12140 circumstances.
12141
12142 @item -nocpp
12143 @opindex nocpp
12144 Tell the MIPS assembler to not run its preprocessor over user
12145 assembler files (with a @samp{.s} suffix) when assembling them.
12146
12147 @item -mfix-r4000
12148 @itemx -mno-fix-r4000
12149 @opindex mfix-r4000
12150 @opindex mno-fix-r4000
12151 Work around certain R4000 CPU errata:
12152 @itemize @minus
12153 @item
12154 A double-word or a variable shift may give an incorrect result if executed
12155 immediately after starting an integer division.
12156 @item
12157 A double-word or a variable shift may give an incorrect result if executed
12158 while an integer multiplication is in progress.
12159 @item
12160 An integer division may give an incorrect result if started in a delay slot
12161 of a taken branch or a jump.
12162 @end itemize
12163
12164 @item -mfix-r4400
12165 @itemx -mno-fix-r4400
12166 @opindex mfix-r4400
12167 @opindex mno-fix-r4400
12168 Work around certain R4400 CPU errata:
12169 @itemize @minus
12170 @item
12171 A double-word or a variable shift may give an incorrect result if executed
12172 immediately after starting an integer division.
12173 @end itemize
12174
12175 @item -mfix-vr4120
12176 @itemx -mno-fix-vr4120
12177 @opindex mfix-vr4120
12178 Work around certain VR4120 errata:
12179 @itemize @minus
12180 @item
12181 @code{dmultu} does not always produce the correct result.
12182 @item
12183 @code{div} and @code{ddiv} do not always produce the correct result if one
12184 of the operands is negative.
12185 @end itemize
12186 The workarounds for the division errata rely on special functions in
12187 @file{libgcc.a}.  At present, these functions are only provided by
12188 the @code{mips64vr*-elf} configurations.
12189
12190 Other VR4120 errata require a nop to be inserted between certain pairs of
12191 instructions.  These errata are handled by the assembler, not by GCC itself.
12192
12193 @item -mfix-vr4130
12194 @opindex mfix-vr4130
12195 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12196 workarounds are implemented by the assembler rather than by GCC,
12197 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12198 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12199 instructions are available instead.
12200
12201 @item -mfix-sb1
12202 @itemx -mno-fix-sb1
12203 @opindex mfix-sb1
12204 Work around certain SB-1 CPU core errata.
12205 (This flag currently works around the SB-1 revision 2
12206 ``F1'' and ``F2'' floating point errata.)
12207
12208 @item -mflush-func=@var{func}
12209 @itemx -mno-flush-func
12210 @opindex mflush-func
12211 Specifies the function to call to flush the I and D caches, or to not
12212 call any such function.  If called, the function must take the same
12213 arguments as the common @code{_flush_func()}, that is, the address of the
12214 memory range for which the cache is being flushed, the size of the
12215 memory range, and the number 3 (to flush both caches).  The default
12216 depends on the target GCC was configured for, but commonly is either
12217 @samp{_flush_func} or @samp{__cpu_flush}.
12218
12219 @item mbranch-cost=@var{num}
12220 @opindex mbranch-cost
12221 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12222 This cost is only a heuristic and is not guaranteed to produce
12223 consistent results across releases.  A zero cost redundantly selects
12224 the default, which is based on the @option{-mtune} setting.
12225
12226 @item -mbranch-likely
12227 @itemx -mno-branch-likely
12228 @opindex mbranch-likely
12229 @opindex mno-branch-likely
12230 Enable or disable use of Branch Likely instructions, regardless of the
12231 default for the selected architecture.  By default, Branch Likely
12232 instructions may be generated if they are supported by the selected
12233 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12234 and processors which implement those architectures; for those, Branch
12235 Likely instructions will not be generated by default because the MIPS32
12236 and MIPS64 architectures specifically deprecate their use.
12237
12238 @item -mfp-exceptions
12239 @itemx -mno-fp-exceptions
12240 @opindex mfp-exceptions
12241 Specifies whether FP exceptions are enabled.  This affects how we schedule
12242 FP instructions for some processors.  The default is that FP exceptions are
12243 enabled.
12244
12245 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12246 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12247 FP pipe.
12248
12249 @item -mvr4130-align
12250 @itemx -mno-vr4130-align
12251 @opindex mvr4130-align
12252 The VR4130 pipeline is two-way superscalar, but can only issue two
12253 instructions together if the first one is 8-byte aligned.  When this
12254 option is enabled, GCC will align pairs of instructions that it
12255 thinks should execute in parallel.
12256
12257 This option only has an effect when optimizing for the VR4130.
12258 It normally makes code faster, but at the expense of making it bigger.
12259 It is enabled by default at optimization level @option{-O3}.
12260 @end table
12261
12262 @node MMIX Options
12263 @subsection MMIX Options
12264 @cindex MMIX Options
12265
12266 These options are defined for the MMIX:
12267
12268 @table @gcctabopt
12269 @item -mlibfuncs
12270 @itemx -mno-libfuncs
12271 @opindex mlibfuncs
12272 @opindex mno-libfuncs
12273 Specify that intrinsic library functions are being compiled, passing all
12274 values in registers, no matter the size.
12275
12276 @item -mepsilon
12277 @itemx -mno-epsilon
12278 @opindex mepsilon
12279 @opindex mno-epsilon
12280 Generate floating-point comparison instructions that compare with respect
12281 to the @code{rE} epsilon register.
12282
12283 @item -mabi=mmixware
12284 @itemx -mabi=gnu
12285 @opindex mabi-mmixware
12286 @opindex mabi=gnu
12287 Generate code that passes function parameters and return values that (in
12288 the called function) are seen as registers @code{$0} and up, as opposed to
12289 the GNU ABI which uses global registers @code{$231} and up.
12290
12291 @item -mzero-extend
12292 @itemx -mno-zero-extend
12293 @opindex mzero-extend
12294 @opindex mno-zero-extend
12295 When reading data from memory in sizes shorter than 64 bits, use (do not
12296 use) zero-extending load instructions by default, rather than
12297 sign-extending ones.
12298
12299 @item -mknuthdiv
12300 @itemx -mno-knuthdiv
12301 @opindex mknuthdiv
12302 @opindex mno-knuthdiv
12303 Make the result of a division yielding a remainder have the same sign as
12304 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12305 remainder follows the sign of the dividend.  Both methods are
12306 arithmetically valid, the latter being almost exclusively used.
12307
12308 @item -mtoplevel-symbols
12309 @itemx -mno-toplevel-symbols
12310 @opindex mtoplevel-symbols
12311 @opindex mno-toplevel-symbols
12312 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12313 code can be used with the @code{PREFIX} assembly directive.
12314
12315 @item -melf
12316 @opindex melf
12317 Generate an executable in the ELF format, rather than the default
12318 @samp{mmo} format used by the @command{mmix} simulator.
12319
12320 @item -mbranch-predict
12321 @itemx -mno-branch-predict
12322 @opindex mbranch-predict
12323 @opindex mno-branch-predict
12324 Use (do not use) the probable-branch instructions, when static branch
12325 prediction indicates a probable branch.
12326
12327 @item -mbase-addresses
12328 @itemx -mno-base-addresses
12329 @opindex mbase-addresses
12330 @opindex mno-base-addresses
12331 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12332 base address automatically generates a request (handled by the assembler
12333 and the linker) for a constant to be set up in a global register.  The
12334 register is used for one or more base address requests within the range 0
12335 to 255 from the value held in the register.  The generally leads to short
12336 and fast code, but the number of different data items that can be
12337 addressed is limited.  This means that a program that uses lots of static
12338 data may require @option{-mno-base-addresses}.
12339
12340 @item -msingle-exit
12341 @itemx -mno-single-exit
12342 @opindex msingle-exit
12343 @opindex mno-single-exit
12344 Force (do not force) generated code to have a single exit point in each
12345 function.
12346 @end table
12347
12348 @node MN10300 Options
12349 @subsection MN10300 Options
12350 @cindex MN10300 options
12351
12352 These @option{-m} options are defined for Matsushita MN10300 architectures:
12353
12354 @table @gcctabopt
12355 @item -mmult-bug
12356 @opindex mmult-bug
12357 Generate code to avoid bugs in the multiply instructions for the MN10300
12358 processors.  This is the default.
12359
12360 @item -mno-mult-bug
12361 @opindex mno-mult-bug
12362 Do not generate code to avoid bugs in the multiply instructions for the
12363 MN10300 processors.
12364
12365 @item -mam33
12366 @opindex mam33
12367 Generate code which uses features specific to the AM33 processor.
12368
12369 @item -mno-am33
12370 @opindex mno-am33
12371 Do not generate code which uses features specific to the AM33 processor.  This
12372 is the default.
12373
12374 @item -mreturn-pointer-on-d0
12375 @opindex mreturn-pointer-on-d0
12376 When generating a function which returns a pointer, return the pointer
12377 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12378 only in a0, and attempts to call such functions without a prototype
12379 would result in errors.  Note that this option is on by default; use
12380 @option{-mno-return-pointer-on-d0} to disable it.
12381
12382 @item -mno-crt0
12383 @opindex mno-crt0
12384 Do not link in the C run-time initialization object file.
12385
12386 @item -mrelax
12387 @opindex mrelax
12388 Indicate to the linker that it should perform a relaxation optimization pass
12389 to shorten branches, calls and absolute memory addresses.  This option only
12390 has an effect when used on the command line for the final link step.
12391
12392 This option makes symbolic debugging impossible.
12393 @end table
12394
12395 @node MT Options
12396 @subsection MT Options
12397 @cindex MT options
12398
12399 These @option{-m} options are defined for Morpho MT architectures:
12400
12401 @table @gcctabopt
12402
12403 @item -march=@var{cpu-type}
12404 @opindex march
12405 Generate code that will run on @var{cpu-type}, which is the name of a system
12406 representing a certain processor type.  Possible values for
12407 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
12408 @samp{ms1-16-003} and @samp{ms2}.
12409
12410 When this option is not used, the default is @option{-march=ms1-16-002}.
12411
12412 @item -mbacc
12413 @opindex mbacc
12414 Use byte loads and stores when generating code.
12415
12416 @item -mno-bacc
12417 @opindex mno-bacc
12418 Do not use byte loads and stores when generating code.
12419
12420 @item -msim
12421 @opindex msim
12422 Use simulator runtime
12423
12424 @item -mno-crt0
12425 @opindex mno-crt0
12426 Do not link in the C run-time initialization object file
12427 @file{crti.o}.  Other run-time initialization and termination files
12428 such as @file{startup.o} and @file{exit.o} are still included on the
12429 linker command line.
12430
12431 @end table
12432
12433 @node PDP-11 Options
12434 @subsection PDP-11 Options
12435 @cindex PDP-11 Options
12436
12437 These options are defined for the PDP-11:
12438
12439 @table @gcctabopt
12440 @item -mfpu
12441 @opindex mfpu
12442 Use hardware FPP floating point.  This is the default.  (FIS floating
12443 point on the PDP-11/40 is not supported.)
12444
12445 @item -msoft-float
12446 @opindex msoft-float
12447 Do not use hardware floating point.
12448
12449 @item -mac0
12450 @opindex mac0
12451 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12452
12453 @item -mno-ac0
12454 @opindex mno-ac0
12455 Return floating-point results in memory.  This is the default.
12456
12457 @item -m40
12458 @opindex m40
12459 Generate code for a PDP-11/40.
12460
12461 @item -m45
12462 @opindex m45
12463 Generate code for a PDP-11/45.  This is the default.
12464
12465 @item -m10
12466 @opindex m10
12467 Generate code for a PDP-11/10.
12468
12469 @item -mbcopy-builtin
12470 @opindex bcopy-builtin
12471 Use inline @code{movmemhi} patterns for copying memory.  This is the
12472 default.
12473
12474 @item -mbcopy
12475 @opindex mbcopy
12476 Do not use inline @code{movmemhi} patterns for copying memory.
12477
12478 @item -mint16
12479 @itemx -mno-int32
12480 @opindex mint16
12481 @opindex mno-int32
12482 Use 16-bit @code{int}.  This is the default.
12483
12484 @item -mint32
12485 @itemx -mno-int16
12486 @opindex mint32
12487 @opindex mno-int16
12488 Use 32-bit @code{int}.
12489
12490 @item -mfloat64
12491 @itemx -mno-float32
12492 @opindex mfloat64
12493 @opindex mno-float32
12494 Use 64-bit @code{float}.  This is the default.
12495
12496 @item -mfloat32
12497 @itemx -mno-float64
12498 @opindex mfloat32
12499 @opindex mno-float64
12500 Use 32-bit @code{float}.
12501
12502 @item -mabshi
12503 @opindex mabshi
12504 Use @code{abshi2} pattern.  This is the default.
12505
12506 @item -mno-abshi
12507 @opindex mno-abshi
12508 Do not use @code{abshi2} pattern.
12509
12510 @item -mbranch-expensive
12511 @opindex mbranch-expensive
12512 Pretend that branches are expensive.  This is for experimenting with
12513 code generation only.
12514
12515 @item -mbranch-cheap
12516 @opindex mbranch-cheap
12517 Do not pretend that branches are expensive.  This is the default.
12518
12519 @item -msplit
12520 @opindex msplit
12521 Generate code for a system with split I&D@.
12522
12523 @item -mno-split
12524 @opindex mno-split
12525 Generate code for a system without split I&D@.  This is the default.
12526
12527 @item -munix-asm
12528 @opindex munix-asm
12529 Use Unix assembler syntax.  This is the default when configured for
12530 @samp{pdp11-*-bsd}.
12531
12532 @item -mdec-asm
12533 @opindex mdec-asm
12534 Use DEC assembler syntax.  This is the default when configured for any
12535 PDP-11 target other than @samp{pdp11-*-bsd}.
12536 @end table
12537
12538 @node PowerPC Options
12539 @subsection PowerPC Options
12540 @cindex PowerPC options
12541
12542 These are listed under @xref{RS/6000 and PowerPC Options}.
12543
12544 @node RS/6000 and PowerPC Options
12545 @subsection IBM RS/6000 and PowerPC Options
12546 @cindex RS/6000 and PowerPC Options
12547 @cindex IBM RS/6000 and PowerPC Options
12548
12549 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12550 @table @gcctabopt
12551 @item -mpower
12552 @itemx -mno-power
12553 @itemx -mpower2
12554 @itemx -mno-power2
12555 @itemx -mpowerpc
12556 @itemx -mno-powerpc
12557 @itemx -mpowerpc-gpopt
12558 @itemx -mno-powerpc-gpopt
12559 @itemx -mpowerpc-gfxopt
12560 @itemx -mno-powerpc-gfxopt
12561 @itemx -mpowerpc64
12562 @itemx -mno-powerpc64
12563 @itemx -mmfcrf
12564 @itemx -mno-mfcrf
12565 @itemx -mpopcntb
12566 @itemx -mno-popcntb
12567 @itemx -mfprnd
12568 @itemx -mno-fprnd
12569 @itemx -mcmpb
12570 @itemx -mno-cmpb
12571 @itemx -mmfpgpr
12572 @itemx -mno-mfpgpr
12573 @itemx -mdfp
12574 @itemx -mno-dfp
12575 @opindex mpower
12576 @opindex mno-power
12577 @opindex mpower2
12578 @opindex mno-power2
12579 @opindex mpowerpc
12580 @opindex mno-powerpc
12581 @opindex mpowerpc-gpopt
12582 @opindex mno-powerpc-gpopt
12583 @opindex mpowerpc-gfxopt
12584 @opindex mno-powerpc-gfxopt
12585 @opindex mpowerpc64
12586 @opindex mno-powerpc64
12587 @opindex mmfcrf
12588 @opindex mno-mfcrf
12589 @opindex mpopcntb
12590 @opindex mno-popcntb
12591 @opindex mfprnd
12592 @opindex mno-fprnd
12593 @opindex mcmpb
12594 @opindex mno-cmpb
12595 @opindex mmfpgpr
12596 @opindex mno-mfpgpr
12597 @opindex mdfp
12598 @opindex mno-dfp
12599 GCC supports two related instruction set architectures for the
12600 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
12601 instructions supported by the @samp{rios} chip set used in the original
12602 RS/6000 systems and the @dfn{PowerPC} instruction set is the
12603 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
12604 the IBM 4xx, 6xx, and follow-on microprocessors.
12605
12606 Neither architecture is a subset of the other.  However there is a
12607 large common subset of instructions supported by both.  An MQ
12608 register is included in processors supporting the POWER architecture.
12609
12610 You use these options to specify which instructions are available on the
12611 processor you are using.  The default value of these options is
12612 determined when configuring GCC@.  Specifying the
12613 @option{-mcpu=@var{cpu_type}} overrides the specification of these
12614 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
12615 rather than the options listed above.
12616
12617 The @option{-mpower} option allows GCC to generate instructions that
12618 are found only in the POWER architecture and to use the MQ register.
12619 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
12620 to generate instructions that are present in the POWER2 architecture but
12621 not the original POWER architecture.
12622
12623 The @option{-mpowerpc} option allows GCC to generate instructions that
12624 are found only in the 32-bit subset of the PowerPC architecture.
12625 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
12626 GCC to use the optional PowerPC architecture instructions in the
12627 General Purpose group, including floating-point square root.  Specifying
12628 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
12629 use the optional PowerPC architecture instructions in the Graphics
12630 group, including floating-point select.
12631
12632 The @option{-mmfcrf} option allows GCC to generate the move from
12633 condition register field instruction implemented on the POWER4
12634 processor and other processors that support the PowerPC V2.01
12635 architecture.
12636 The @option{-mpopcntb} option allows GCC to generate the popcount and
12637 double precision FP reciprocal estimate instruction implemented on the
12638 POWER5 processor and other processors that support the PowerPC V2.02
12639 architecture.
12640 The @option{-mfprnd} option allows GCC to generate the FP round to
12641 integer instructions implemented on the POWER5+ processor and other
12642 processors that support the PowerPC V2.03 architecture.
12643 The @option{-mcmpb} option allows GCC to generate the compare bytes
12644 instruction implemented on the POWER6 processor and other processors
12645 that support the PowerPC V2.05 architecture.
12646 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
12647 general purpose register instructions implemented on the POWER6X
12648 processor and other processors that support the extended PowerPC V2.05
12649 architecture.
12650 The @option{-mdfp} option allows GCC to generate the decimal floating
12651 point instructions implemented on some POWER processors.
12652
12653 The @option{-mpowerpc64} option allows GCC to generate the additional
12654 64-bit instructions that are found in the full PowerPC64 architecture
12655 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
12656 @option{-mno-powerpc64}.
12657
12658 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
12659 will use only the instructions in the common subset of both
12660 architectures plus some special AIX common-mode calls, and will not use
12661 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
12662 permits GCC to use any instruction from either architecture and to
12663 allow use of the MQ register; specify this for the Motorola MPC601.
12664
12665 @item -mnew-mnemonics
12666 @itemx -mold-mnemonics
12667 @opindex mnew-mnemonics
12668 @opindex mold-mnemonics
12669 Select which mnemonics to use in the generated assembler code.  With
12670 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
12671 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
12672 assembler mnemonics defined for the POWER architecture.  Instructions
12673 defined in only one architecture have only one mnemonic; GCC uses that
12674 mnemonic irrespective of which of these options is specified.
12675
12676 GCC defaults to the mnemonics appropriate for the architecture in
12677 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
12678 value of these option.  Unless you are building a cross-compiler, you
12679 should normally not specify either @option{-mnew-mnemonics} or
12680 @option{-mold-mnemonics}, but should instead accept the default.
12681
12682 @item -mcpu=@var{cpu_type}
12683 @opindex mcpu
12684 Set architecture type, register usage, choice of mnemonics, and
12685 instruction scheduling parameters for machine type @var{cpu_type}.
12686 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
12687 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
12688 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
12689 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
12690 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
12691 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
12692 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
12693 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
12694 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
12695 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
12696
12697 @option{-mcpu=common} selects a completely generic processor.  Code
12698 generated under this option will run on any POWER or PowerPC processor.
12699 GCC will use only the instructions in the common subset of both
12700 architectures, and will not use the MQ register.  GCC assumes a generic
12701 processor model for scheduling purposes.
12702
12703 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
12704 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
12705 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
12706 types, with an appropriate, generic processor model assumed for
12707 scheduling purposes.
12708
12709 The other options specify a specific processor.  Code generated under
12710 those options will run best on that processor, and may not run at all on
12711 others.
12712
12713 The @option{-mcpu} options automatically enable or disable the
12714 following options:
12715
12716 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
12717 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
12718 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
12719
12720 The particular options set for any particular CPU will vary between
12721 compiler versions, depending on what setting seems to produce optimal
12722 code for that CPU; it doesn't necessarily reflect the actual hardware's
12723 capabilities.  If you wish to set an individual option to a particular
12724 value, you may specify it after the @option{-mcpu} option, like
12725 @samp{-mcpu=970 -mno-altivec}.
12726
12727 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
12728 not enabled or disabled by the @option{-mcpu} option at present because
12729 AIX does not have full support for these options.  You may still
12730 enable or disable them individually if you're sure it'll work in your
12731 environment.
12732
12733 @item -mtune=@var{cpu_type}
12734 @opindex mtune
12735 Set the instruction scheduling parameters for machine type
12736 @var{cpu_type}, but do not set the architecture type, register usage, or
12737 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
12738 values for @var{cpu_type} are used for @option{-mtune} as for
12739 @option{-mcpu}.  If both are specified, the code generated will use the
12740 architecture, registers, and mnemonics set by @option{-mcpu}, but the
12741 scheduling parameters set by @option{-mtune}.
12742
12743 @item -mswdiv
12744 @itemx -mno-swdiv
12745 @opindex mswdiv
12746 @opindex mno-swdiv
12747 Generate code to compute division as reciprocal estimate and iterative
12748 refinement, creating opportunities for increased throughput.  This
12749 feature requires: optional PowerPC Graphics instruction set for single
12750 precision and FRE instruction for double precision, assuming divides
12751 cannot generate user-visible traps, and the domain values not include
12752 Infinities, denormals or zero denominator.
12753
12754 @item -maltivec
12755 @itemx -mno-altivec
12756 @opindex maltivec
12757 @opindex mno-altivec
12758 Generate code that uses (does not use) AltiVec instructions, and also
12759 enable the use of built-in functions that allow more direct access to
12760 the AltiVec instruction set.  You may also need to set
12761 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
12762 enhancements.
12763
12764 @item -mvrsave
12765 @item -mno-vrsave
12766 @opindex mvrsave
12767 @opindex mno-vrsave
12768 Generate VRSAVE instructions when generating AltiVec code.
12769
12770 @item -msecure-plt
12771 @opindex msecure-plt
12772 Generate code that allows ld and ld.so to build executables and shared
12773 libraries with non-exec .plt and .got sections.  This is a PowerPC
12774 32-bit SYSV ABI option.
12775
12776 @item -mbss-plt
12777 @opindex mbss-plt
12778 Generate code that uses a BSS .plt section that ld.so fills in, and
12779 requires .plt and .got sections that are both writable and executable.
12780 This is a PowerPC 32-bit SYSV ABI option.
12781
12782 @item -misel
12783 @itemx -mno-isel
12784 @opindex misel
12785 @opindex mno-isel
12786 This switch enables or disables the generation of ISEL instructions.
12787
12788 @item -misel=@var{yes/no}
12789 This switch has been deprecated.  Use @option{-misel} and
12790 @option{-mno-isel} instead.
12791
12792 @item -mspe
12793 @itemx -mno-spe
12794 @opindex mspe
12795 @opindex mno-spe
12796 This switch enables or disables the generation of SPE simd
12797 instructions.
12798
12799 @item -mpaired
12800 @itemx -mno-paired
12801 @opindex mpaired
12802 @opindex mno-paired
12803 This switch enables or disables the generation of PAIRED simd
12804 instructions.
12805
12806 @item -mspe=@var{yes/no}
12807 This option has been deprecated.  Use @option{-mspe} and
12808 @option{-mno-spe} instead.
12809
12810 @item -mfloat-gprs=@var{yes/single/double/no}
12811 @itemx -mfloat-gprs
12812 @opindex mfloat-gprs
12813 This switch enables or disables the generation of floating point
12814 operations on the general purpose registers for architectures that
12815 support it.
12816
12817 The argument @var{yes} or @var{single} enables the use of
12818 single-precision floating point operations.
12819
12820 The argument @var{double} enables the use of single and
12821 double-precision floating point operations.
12822
12823 The argument @var{no} disables floating point operations on the
12824 general purpose registers.
12825
12826 This option is currently only available on the MPC854x.
12827
12828 @item -m32
12829 @itemx -m64
12830 @opindex m32
12831 @opindex m64
12832 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
12833 targets (including GNU/Linux).  The 32-bit environment sets int, long
12834 and pointer to 32 bits and generates code that runs on any PowerPC
12835 variant.  The 64-bit environment sets int to 32 bits and long and
12836 pointer to 64 bits, and generates code for PowerPC64, as for
12837 @option{-mpowerpc64}.
12838
12839 @item -mfull-toc
12840 @itemx -mno-fp-in-toc
12841 @itemx -mno-sum-in-toc
12842 @itemx -mminimal-toc
12843 @opindex mfull-toc
12844 @opindex mno-fp-in-toc
12845 @opindex mno-sum-in-toc
12846 @opindex mminimal-toc
12847 Modify generation of the TOC (Table Of Contents), which is created for
12848 every executable file.  The @option{-mfull-toc} option is selected by
12849 default.  In that case, GCC will allocate at least one TOC entry for
12850 each unique non-automatic variable reference in your program.  GCC
12851 will also place floating-point constants in the TOC@.  However, only
12852 16,384 entries are available in the TOC@.
12853
12854 If you receive a linker error message that saying you have overflowed
12855 the available TOC space, you can reduce the amount of TOC space used
12856 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
12857 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
12858 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
12859 generate code to calculate the sum of an address and a constant at
12860 run-time instead of putting that sum into the TOC@.  You may specify one
12861 or both of these options.  Each causes GCC to produce very slightly
12862 slower and larger code at the expense of conserving TOC space.
12863
12864 If you still run out of space in the TOC even when you specify both of
12865 these options, specify @option{-mminimal-toc} instead.  This option causes
12866 GCC to make only one TOC entry for every file.  When you specify this
12867 option, GCC will produce code that is slower and larger but which
12868 uses extremely little TOC space.  You may wish to use this option
12869 only on files that contain less frequently executed code.
12870
12871 @item -maix64
12872 @itemx -maix32
12873 @opindex maix64
12874 @opindex maix32
12875 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
12876 @code{long} type, and the infrastructure needed to support them.
12877 Specifying @option{-maix64} implies @option{-mpowerpc64} and
12878 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
12879 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
12880
12881 @item -mxl-compat
12882 @itemx -mno-xl-compat
12883 @opindex mxl-compat
12884 @opindex mno-xl-compat
12885 Produce code that conforms more closely to IBM XL compiler semantics
12886 when using AIX-compatible ABI.  Pass floating-point arguments to
12887 prototyped functions beyond the register save area (RSA) on the stack
12888 in addition to argument FPRs.  Do not assume that most significant
12889 double in 128-bit long double value is properly rounded when comparing
12890 values and converting to double.  Use XL symbol names for long double
12891 support routines.
12892
12893 The AIX calling convention was extended but not initially documented to
12894 handle an obscure K&R C case of calling a function that takes the
12895 address of its arguments with fewer arguments than declared.  IBM XL
12896 compilers access floating point arguments which do not fit in the
12897 RSA from the stack when a subroutine is compiled without
12898 optimization.  Because always storing floating-point arguments on the
12899 stack is inefficient and rarely needed, this option is not enabled by
12900 default and only is necessary when calling subroutines compiled by IBM
12901 XL compilers without optimization.
12902
12903 @item -mpe
12904 @opindex mpe
12905 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
12906 application written to use message passing with special startup code to
12907 enable the application to run.  The system must have PE installed in the
12908 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
12909 must be overridden with the @option{-specs=} option to specify the
12910 appropriate directory location.  The Parallel Environment does not
12911 support threads, so the @option{-mpe} option and the @option{-pthread}
12912 option are incompatible.
12913
12914 @item -malign-natural
12915 @itemx -malign-power
12916 @opindex malign-natural
12917 @opindex malign-power
12918 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
12919 @option{-malign-natural} overrides the ABI-defined alignment of larger
12920 types, such as floating-point doubles, on their natural size-based boundary.
12921 The option @option{-malign-power} instructs GCC to follow the ABI-specified
12922 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
12923
12924 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
12925 is not supported.
12926
12927 @item -msoft-float
12928 @itemx -mhard-float
12929 @opindex msoft-float
12930 @opindex mhard-float
12931 Generate code that does not use (uses) the floating-point register set.
12932 Software floating point emulation is provided if you use the
12933 @option{-msoft-float} option, and pass the option to GCC when linking.
12934
12935 @item -mmultiple
12936 @itemx -mno-multiple
12937 @opindex mmultiple
12938 @opindex mno-multiple
12939 Generate code that uses (does not use) the load multiple word
12940 instructions and the store multiple word instructions.  These
12941 instructions are generated by default on POWER systems, and not
12942 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
12943 endian PowerPC systems, since those instructions do not work when the
12944 processor is in little endian mode.  The exceptions are PPC740 and
12945 PPC750 which permit the instructions usage in little endian mode.
12946
12947 @item -mstring
12948 @itemx -mno-string
12949 @opindex mstring
12950 @opindex mno-string
12951 Generate code that uses (does not use) the load string instructions
12952 and the store string word instructions to save multiple registers and
12953 do small block moves.  These instructions are generated by default on
12954 POWER systems, and not generated on PowerPC systems.  Do not use
12955 @option{-mstring} on little endian PowerPC systems, since those
12956 instructions do not work when the processor is in little endian mode.
12957 The exceptions are PPC740 and PPC750 which permit the instructions
12958 usage in little endian mode.
12959
12960 @item -mupdate
12961 @itemx -mno-update
12962 @opindex mupdate
12963 @opindex mno-update
12964 Generate code that uses (does not use) the load or store instructions
12965 that update the base register to the address of the calculated memory
12966 location.  These instructions are generated by default.  If you use
12967 @option{-mno-update}, there is a small window between the time that the
12968 stack pointer is updated and the address of the previous frame is
12969 stored, which means code that walks the stack frame across interrupts or
12970 signals may get corrupted data.
12971
12972 @item -mfused-madd
12973 @itemx -mno-fused-madd
12974 @opindex mfused-madd
12975 @opindex mno-fused-madd
12976 Generate code that uses (does not use) the floating point multiply and
12977 accumulate instructions.  These instructions are generated by default if
12978 hardware floating is used.
12979
12980 @item -mmulhw
12981 @itemx -mno-mulhw
12982 @opindex mmulhw
12983 @opindex mno-mulhw
12984 Generate code that uses (does not use) the half-word multiply and
12985 multiply-accumulate instructions on the IBM 405 and 440 processors.
12986 These instructions are generated by default when targetting those
12987 processors.
12988
12989 @item -mdlmzb
12990 @itemx -mno-dlmzb
12991 @opindex mdlmzb
12992 @opindex mno-dlmzb
12993 Generate code that uses (does not use) the string-search @samp{dlmzb}
12994 instruction on the IBM 405 and 440 processors.  This instruction is
12995 generated by default when targetting those processors.
12996
12997 @item -mno-bit-align
12998 @itemx -mbit-align
12999 @opindex mno-bit-align
13000 @opindex mbit-align
13001 On System V.4 and embedded PowerPC systems do not (do) force structures
13002 and unions that contain bit-fields to be aligned to the base type of the
13003 bit-field.
13004
13005 For example, by default a structure containing nothing but 8
13006 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
13007 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
13008 the structure would be aligned to a 1 byte boundary and be one byte in
13009 size.
13010
13011 @item -mno-strict-align
13012 @itemx -mstrict-align
13013 @opindex mno-strict-align
13014 @opindex mstrict-align
13015 On System V.4 and embedded PowerPC systems do not (do) assume that
13016 unaligned memory references will be handled by the system.
13017
13018 @item -mrelocatable
13019 @itemx -mno-relocatable
13020 @opindex mrelocatable
13021 @opindex mno-relocatable
13022 On embedded PowerPC systems generate code that allows (does not allow)
13023 the program to be relocated to a different address at runtime.  If you
13024 use @option{-mrelocatable} on any module, all objects linked together must
13025 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
13026
13027 @item -mrelocatable-lib
13028 @itemx -mno-relocatable-lib
13029 @opindex mrelocatable-lib
13030 @opindex mno-relocatable-lib
13031 On embedded PowerPC systems generate code that allows (does not allow)
13032 the program to be relocated to a different address at runtime.  Modules
13033 compiled with @option{-mrelocatable-lib} can be linked with either modules
13034 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
13035 with modules compiled with the @option{-mrelocatable} options.
13036
13037 @item -mno-toc
13038 @itemx -mtoc
13039 @opindex mno-toc
13040 @opindex mtoc
13041 On System V.4 and embedded PowerPC systems do not (do) assume that
13042 register 2 contains a pointer to a global area pointing to the addresses
13043 used in the program.
13044
13045 @item -mlittle
13046 @itemx -mlittle-endian
13047 @opindex mlittle
13048 @opindex mlittle-endian
13049 On System V.4 and embedded PowerPC systems compile code for the
13050 processor in little endian mode.  The @option{-mlittle-endian} option is
13051 the same as @option{-mlittle}.
13052
13053 @item -mbig
13054 @itemx -mbig-endian
13055 @opindex mbig
13056 @opindex mbig-endian
13057 On System V.4 and embedded PowerPC systems compile code for the
13058 processor in big endian mode.  The @option{-mbig-endian} option is
13059 the same as @option{-mbig}.
13060
13061 @item -mdynamic-no-pic
13062 @opindex mdynamic-no-pic
13063 On Darwin and Mac OS X systems, compile code so that it is not
13064 relocatable, but that its external references are relocatable.  The
13065 resulting code is suitable for applications, but not shared
13066 libraries.
13067
13068 @item -mprioritize-restricted-insns=@var{priority}
13069 @opindex mprioritize-restricted-insns
13070 This option controls the priority that is assigned to
13071 dispatch-slot restricted instructions during the second scheduling
13072 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13073 @var{no/highest/second-highest} priority to dispatch slot restricted
13074 instructions.
13075
13076 @item -msched-costly-dep=@var{dependence_type}
13077 @opindex msched-costly-dep
13078 This option controls which dependences are considered costly
13079 by the target during instruction scheduling.  The argument
13080 @var{dependence_type} takes one of the following values:
13081 @var{no}: no dependence is costly,
13082 @var{all}: all dependences are costly,
13083 @var{true_store_to_load}: a true dependence from store to load is costly,
13084 @var{store_to_load}: any dependence from store to load is costly,
13085 @var{number}: any dependence which latency >= @var{number} is costly.
13086
13087 @item -minsert-sched-nops=@var{scheme}
13088 @opindex minsert-sched-nops
13089 This option controls which nop insertion scheme will be used during
13090 the second scheduling pass.  The argument @var{scheme} takes one of the
13091 following values:
13092 @var{no}: Don't insert nops.
13093 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13094 according to the scheduler's grouping.
13095 @var{regroup_exact}: Insert nops to force costly dependent insns into
13096 separate groups.  Insert exactly as many nops as needed to force an insn
13097 to a new group, according to the estimated processor grouping.
13098 @var{number}: Insert nops to force costly dependent insns into
13099 separate groups.  Insert @var{number} nops to force an insn to a new group.
13100
13101 @item -mcall-sysv
13102 @opindex mcall-sysv
13103 On System V.4 and embedded PowerPC systems compile code using calling
13104 conventions that adheres to the March 1995 draft of the System V
13105 Application Binary Interface, PowerPC processor supplement.  This is the
13106 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13107
13108 @item -mcall-sysv-eabi
13109 @opindex mcall-sysv-eabi
13110 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13111
13112 @item -mcall-sysv-noeabi
13113 @opindex mcall-sysv-noeabi
13114 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13115
13116 @item -mcall-solaris
13117 @opindex mcall-solaris
13118 On System V.4 and embedded PowerPC systems compile code for the Solaris
13119 operating system.
13120
13121 @item -mcall-linux
13122 @opindex mcall-linux
13123 On System V.4 and embedded PowerPC systems compile code for the
13124 Linux-based GNU system.
13125
13126 @item -mcall-gnu
13127 @opindex mcall-gnu
13128 On System V.4 and embedded PowerPC systems compile code for the
13129 Hurd-based GNU system.
13130
13131 @item -mcall-netbsd
13132 @opindex mcall-netbsd
13133 On System V.4 and embedded PowerPC systems compile code for the
13134 NetBSD operating system.
13135
13136 @item -maix-struct-return
13137 @opindex maix-struct-return
13138 Return all structures in memory (as specified by the AIX ABI)@.
13139
13140 @item -msvr4-struct-return
13141 @opindex msvr4-struct-return
13142 Return structures smaller than 8 bytes in registers (as specified by the
13143 SVR4 ABI)@.
13144
13145 @item -mabi=@var{abi-type}
13146 @opindex mabi
13147 Extend the current ABI with a particular extension, or remove such extension.
13148 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13149 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13150
13151 @item -mabi=spe
13152 @opindex mabi=spe
13153 Extend the current ABI with SPE ABI extensions.  This does not change
13154 the default ABI, instead it adds the SPE ABI extensions to the current
13155 ABI@.
13156
13157 @item -mabi=no-spe
13158 @opindex mabi=no-spe
13159 Disable Booke SPE ABI extensions for the current ABI@.
13160
13161 @item -mabi=ibmlongdouble
13162 @opindex mabi=ibmlongdouble
13163 Change the current ABI to use IBM extended precision long double.
13164 This is a PowerPC 32-bit SYSV ABI option.
13165
13166 @item -mabi=ieeelongdouble
13167 @opindex mabi=ieeelongdouble
13168 Change the current ABI to use IEEE extended precision long double.
13169 This is a PowerPC 32-bit Linux ABI option.
13170
13171 @item -mprototype
13172 @itemx -mno-prototype
13173 @opindex mprototype
13174 @opindex mno-prototype
13175 On System V.4 and embedded PowerPC systems assume that all calls to
13176 variable argument functions are properly prototyped.  Otherwise, the
13177 compiler must insert an instruction before every non prototyped call to
13178 set or clear bit 6 of the condition code register (@var{CR}) to
13179 indicate whether floating point values were passed in the floating point
13180 registers in case the function takes a variable arguments.  With
13181 @option{-mprototype}, only calls to prototyped variable argument functions
13182 will set or clear the bit.
13183
13184 @item -msim
13185 @opindex msim
13186 On embedded PowerPC systems, assume that the startup module is called
13187 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13188 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
13189 configurations.
13190
13191 @item -mmvme
13192 @opindex mmvme
13193 On embedded PowerPC systems, assume that the startup module is called
13194 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13195 @file{libc.a}.
13196
13197 @item -mads
13198 @opindex mads
13199 On embedded PowerPC systems, assume that the startup module is called
13200 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13201 @file{libc.a}.
13202
13203 @item -myellowknife
13204 @opindex myellowknife
13205 On embedded PowerPC systems, assume that the startup module is called
13206 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13207 @file{libc.a}.
13208
13209 @item -mvxworks
13210 @opindex mvxworks
13211 On System V.4 and embedded PowerPC systems, specify that you are
13212 compiling for a VxWorks system.
13213
13214 @item -mwindiss
13215 @opindex mwindiss
13216 Specify that you are compiling for the WindISS simulation environment.
13217
13218 @item -memb
13219 @opindex memb
13220 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13221 header to indicate that @samp{eabi} extended relocations are used.
13222
13223 @item -meabi
13224 @itemx -mno-eabi
13225 @opindex meabi
13226 @opindex mno-eabi
13227 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13228 Embedded Applications Binary Interface (eabi) which is a set of
13229 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13230 means that the stack is aligned to an 8 byte boundary, a function
13231 @code{__eabi} is called to from @code{main} to set up the eabi
13232 environment, and the @option{-msdata} option can use both @code{r2} and
13233 @code{r13} to point to two separate small data areas.  Selecting
13234 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13235 do not call an initialization function from @code{main}, and the
13236 @option{-msdata} option will only use @code{r13} to point to a single
13237 small data area.  The @option{-meabi} option is on by default if you
13238 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13239
13240 @item -msdata=eabi
13241 @opindex msdata=eabi
13242 On System V.4 and embedded PowerPC systems, put small initialized
13243 @code{const} global and static data in the @samp{.sdata2} section, which
13244 is pointed to by register @code{r2}.  Put small initialized
13245 non-@code{const} global and static data in the @samp{.sdata} section,
13246 which is pointed to by register @code{r13}.  Put small uninitialized
13247 global and static data in the @samp{.sbss} section, which is adjacent to
13248 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13249 incompatible with the @option{-mrelocatable} option.  The
13250 @option{-msdata=eabi} option also sets the @option{-memb} option.
13251
13252 @item -msdata=sysv
13253 @opindex msdata=sysv
13254 On System V.4 and embedded PowerPC systems, put small global and static
13255 data in the @samp{.sdata} section, which is pointed to by register
13256 @code{r13}.  Put small uninitialized global and static data in the
13257 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13258 The @option{-msdata=sysv} option is incompatible with the
13259 @option{-mrelocatable} option.
13260
13261 @item -msdata=default
13262 @itemx -msdata
13263 @opindex msdata=default
13264 @opindex msdata
13265 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13266 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13267 same as @option{-msdata=sysv}.
13268
13269 @item -msdata-data
13270 @opindex msdata-data
13271 On System V.4 and embedded PowerPC systems, put small global
13272 data in the @samp{.sdata} section.  Put small uninitialized global
13273 data in the @samp{.sbss} section.  Do not use register @code{r13}
13274 to address small data however.  This is the default behavior unless
13275 other @option{-msdata} options are used.
13276
13277 @item -msdata=none
13278 @itemx -mno-sdata
13279 @opindex msdata=none
13280 @opindex mno-sdata
13281 On embedded PowerPC systems, put all initialized global and static data
13282 in the @samp{.data} section, and all uninitialized data in the
13283 @samp{.bss} section.
13284
13285 @item -G @var{num}
13286 @opindex G
13287 @cindex smaller data references (PowerPC)
13288 @cindex .sdata/.sdata2 references (PowerPC)
13289 On embedded PowerPC systems, put global and static items less than or
13290 equal to @var{num} bytes into the small data or bss sections instead of
13291 the normal data or bss section.  By default, @var{num} is 8.  The
13292 @option{-G @var{num}} switch is also passed to the linker.
13293 All modules should be compiled with the same @option{-G @var{num}} value.
13294
13295 @item -mregnames
13296 @itemx -mno-regnames
13297 @opindex mregnames
13298 @opindex mno-regnames
13299 On System V.4 and embedded PowerPC systems do (do not) emit register
13300 names in the assembly language output using symbolic forms.
13301
13302 @item -mlongcall
13303 @itemx -mno-longcall
13304 @opindex mlongcall
13305 @opindex mno-longcall
13306 By default assume that all calls are far away so that a longer more
13307 expensive calling sequence is required.  This is required for calls
13308 further than 32 megabytes (33,554,432 bytes) from the current location.
13309 A short call will be generated if the compiler knows
13310 the call cannot be that far away.  This setting can be overridden by
13311 the @code{shortcall} function attribute, or by @code{#pragma
13312 longcall(0)}.
13313
13314 Some linkers are capable of detecting out-of-range calls and generating
13315 glue code on the fly.  On these systems, long calls are unnecessary and
13316 generate slower code.  As of this writing, the AIX linker can do this,
13317 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13318 to the GNU linker for 32-bit PowerPC systems as well.
13319
13320 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13321 callee, L42'', plus a ``branch island'' (glue code).  The two target
13322 addresses represent the callee and the ``branch island''.  The
13323 Darwin/PPC linker will prefer the first address and generate a ``bl
13324 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13325 otherwise, the linker will generate ``bl L42'' to call the ``branch
13326 island''.  The ``branch island'' is appended to the body of the
13327 calling function; it computes the full 32-bit address of the callee
13328 and jumps to it.
13329
13330 On Mach-O (Darwin) systems, this option directs the compiler emit to
13331 the glue for every direct call, and the Darwin linker decides whether
13332 to use or discard it.
13333
13334 In the future, we may cause GCC to ignore all longcall specifications
13335 when the linker is known to generate glue.
13336
13337 @item -pthread
13338 @opindex pthread
13339 Adds support for multithreading with the @dfn{pthreads} library.
13340 This option sets flags for both the preprocessor and linker.
13341
13342 @end table
13343
13344 @node S/390 and zSeries Options
13345 @subsection S/390 and zSeries Options
13346 @cindex S/390 and zSeries Options
13347
13348 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13349
13350 @table @gcctabopt
13351 @item -mhard-float
13352 @itemx -msoft-float
13353 @opindex mhard-float
13354 @opindex msoft-float
13355 Use (do not use) the hardware floating-point instructions and registers
13356 for floating-point operations.  When @option{-msoft-float} is specified,
13357 functions in @file{libgcc.a} will be used to perform floating-point
13358 operations.  When @option{-mhard-float} is specified, the compiler
13359 generates IEEE floating-point instructions.  This is the default.
13360
13361 @item -mlong-double-64
13362 @itemx -mlong-double-128
13363 @opindex mlong-double-64
13364 @opindex mlong-double-128
13365 These switches control the size of @code{long double} type. A size
13366 of 64bit makes the @code{long double} type equivalent to the @code{double}
13367 type. This is the default.
13368
13369 @item -mbackchain
13370 @itemx -mno-backchain
13371 @opindex mbackchain
13372 @opindex mno-backchain
13373 Store (do not store) the address of the caller's frame as backchain pointer
13374 into the callee's stack frame.
13375 A backchain may be needed to allow debugging using tools that do not understand
13376 DWARF-2 call frame information.
13377 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13378 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13379 the backchain is placed into the topmost word of the 96/160 byte register
13380 save area.
13381
13382 In general, code compiled with @option{-mbackchain} is call-compatible with
13383 code compiled with @option{-mmo-backchain}; however, use of the backchain
13384 for debugging purposes usually requires that the whole binary is built with
13385 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13386 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13387 to build a linux kernel use @option{-msoft-float}.
13388
13389 The default is to not maintain the backchain.
13390
13391 @item -mpacked-stack
13392 @item -mno-packed-stack
13393 @opindex mpacked-stack
13394 @opindex mno-packed-stack
13395 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13396 specified, the compiler uses the all fields of the 96/160 byte register save
13397 area only for their default purpose; unused fields still take up stack space.
13398 When @option{-mpacked-stack} is specified, register save slots are densely
13399 packed at the top of the register save area; unused space is reused for other
13400 purposes, allowing for more efficient use of the available stack space.
13401 However, when @option{-mbackchain} is also in effect, the topmost word of
13402 the save area is always used to store the backchain, and the return address
13403 register is always saved two words below the backchain.
13404
13405 As long as the stack frame backchain is not used, code generated with
13406 @option{-mpacked-stack} is call-compatible with code generated with
13407 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13408 S/390 or zSeries generated code that uses the stack frame backchain at run
13409 time, not just for debugging purposes.  Such code is not call-compatible
13410 with code compiled with @option{-mpacked-stack}.  Also, note that the
13411 combination of @option{-mbackchain},
13412 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13413 to build a linux kernel use @option{-msoft-float}.
13414
13415 The default is to not use the packed stack layout.
13416
13417 @item -msmall-exec
13418 @itemx -mno-small-exec
13419 @opindex msmall-exec
13420 @opindex mno-small-exec
13421 Generate (or do not generate) code using the @code{bras} instruction
13422 to do subroutine calls.
13423 This only works reliably if the total executable size does not
13424 exceed 64k.  The default is to use the @code{basr} instruction instead,
13425 which does not have this limitation.
13426
13427 @item -m64
13428 @itemx -m31
13429 @opindex m64
13430 @opindex m31
13431 When @option{-m31} is specified, generate code compliant to the
13432 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13433 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13434 particular to generate 64-bit instructions.  For the @samp{s390}
13435 targets, the default is @option{-m31}, while the @samp{s390x}
13436 targets default to @option{-m64}.
13437
13438 @item -mzarch
13439 @itemx -mesa
13440 @opindex mzarch
13441 @opindex mesa
13442 When @option{-mzarch} is specified, generate code using the
13443 instructions available on z/Architecture.
13444 When @option{-mesa} is specified, generate code using the
13445 instructions available on ESA/390.  Note that @option{-mesa} is
13446 not possible with @option{-m64}.
13447 When generating code compliant to the GNU/Linux for S/390 ABI,
13448 the default is @option{-mesa}.  When generating code compliant
13449 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13450
13451 @item -mmvcle
13452 @itemx -mno-mvcle
13453 @opindex mmvcle
13454 @opindex mno-mvcle
13455 Generate (or do not generate) code using the @code{mvcle} instruction
13456 to perform block moves.  When @option{-mno-mvcle} is specified,
13457 use a @code{mvc} loop instead.  This is the default unless optimizing for
13458 size.
13459
13460 @item -mdebug
13461 @itemx -mno-debug
13462 @opindex mdebug
13463 @opindex mno-debug
13464 Print (or do not print) additional debug information when compiling.
13465 The default is to not print debug information.
13466
13467 @item -march=@var{cpu-type}
13468 @opindex march
13469 Generate code that will run on @var{cpu-type}, which is the name of a system
13470 representing a certain processor type.  Possible values for
13471 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13472 When generating code using the instructions available on z/Architecture,
13473 the default is @option{-march=z900}.  Otherwise, the default is
13474 @option{-march=g5}.
13475
13476 @item -mtune=@var{cpu-type}
13477 @opindex mtune
13478 Tune to @var{cpu-type} everything applicable about the generated code,
13479 except for the ABI and the set of available instructions.
13480 The list of @var{cpu-type} values is the same as for @option{-march}.
13481 The default is the value used for @option{-march}.
13482
13483 @item -mtpf-trace
13484 @itemx -mno-tpf-trace
13485 @opindex mtpf-trace
13486 @opindex mno-tpf-trace
13487 Generate code that adds (does not add) in TPF OS specific branches to trace
13488 routines in the operating system.  This option is off by default, even
13489 when compiling for the TPF OS@.
13490
13491 @item -mfused-madd
13492 @itemx -mno-fused-madd
13493 @opindex mfused-madd
13494 @opindex mno-fused-madd
13495 Generate code that uses (does not use) the floating point multiply and
13496 accumulate instructions.  These instructions are generated by default if
13497 hardware floating point is used.
13498
13499 @item -mwarn-framesize=@var{framesize}
13500 @opindex mwarn-framesize
13501 Emit a warning if the current function exceeds the given frame size.  Because
13502 this is a compile time check it doesn't need to be a real problem when the program
13503 runs.  It is intended to identify functions which most probably cause
13504 a stack overflow.  It is useful to be used in an environment with limited stack
13505 size e.g.@: the linux kernel.
13506
13507 @item -mwarn-dynamicstack
13508 @opindex mwarn-dynamicstack
13509 Emit a warning if the function calls alloca or uses dynamically
13510 sized arrays.  This is generally a bad idea with a limited stack size.
13511
13512 @item -mstack-guard=@var{stack-guard}
13513 @item -mstack-size=@var{stack-size}
13514 @opindex mstack-guard
13515 @opindex mstack-size
13516 If these options are provided the s390 back end emits additional instructions in
13517 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13518 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13519 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13520 the frame size of the compiled function is chosen.
13521 These options are intended to be used to help debugging stack overflow problems.
13522 The additionally emitted code causes only little overhead and hence can also be
13523 used in production like systems without greater performance degradation.  The given
13524 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13525 @var{stack-guard} without exceeding 64k.
13526 In order to be efficient the extra code makes the assumption that the stack starts
13527 at an address aligned to the value given by @var{stack-size}.
13528 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13529 @end table
13530
13531 @node Score Options
13532 @subsection Score Options
13533 @cindex Score Options
13534
13535 These options are defined for Score implementations:
13536
13537 @table @gcctabopt
13538 @item -meb
13539 @opindex meb
13540 Compile code for big endian mode.  This is the default.
13541
13542 @item -mel
13543 @opindex mel
13544 Compile code for little endian mode. 
13545
13546 @item -mnhwloop
13547 @opindex mnhwloop
13548 Disable generate bcnz instruction.
13549
13550 @item -muls
13551 @opindex muls
13552 Enable generate unaligned load and store instruction.
13553
13554 @item -mmac
13555 @opindex mmac
13556 Enable the use of multiply-accumulate instructions. Disabled by default. 
13557
13558 @item -mscore5
13559 @opindex mscore5
13560 Specify the SCORE5 as the target architecture.
13561
13562 @item -mscore5u
13563 @opindex mscore5u
13564 Specify the SCORE5U of the target architecture.
13565
13566 @item -mscore7
13567 @opindex mscore7
13568 Specify the SCORE7 as the target architecture. This is the default.
13569
13570 @item -mscore7d
13571 @opindex mscore7d
13572 Specify the SCORE7D as the target architecture.
13573 @end table
13574
13575 @node SH Options
13576 @subsection SH Options
13577
13578 These @samp{-m} options are defined for the SH implementations:
13579
13580 @table @gcctabopt
13581 @item -m1
13582 @opindex m1
13583 Generate code for the SH1.
13584
13585 @item -m2
13586 @opindex m2
13587 Generate code for the SH2.
13588
13589 @item -m2e
13590 Generate code for the SH2e.
13591
13592 @item -m3
13593 @opindex m3
13594 Generate code for the SH3.
13595
13596 @item -m3e
13597 @opindex m3e
13598 Generate code for the SH3e.
13599
13600 @item -m4-nofpu
13601 @opindex m4-nofpu
13602 Generate code for the SH4 without a floating-point unit.
13603
13604 @item -m4-single-only
13605 @opindex m4-single-only
13606 Generate code for the SH4 with a floating-point unit that only
13607 supports single-precision arithmetic.
13608
13609 @item -m4-single
13610 @opindex m4-single
13611 Generate code for the SH4 assuming the floating-point unit is in
13612 single-precision mode by default.
13613
13614 @item -m4
13615 @opindex m4
13616 Generate code for the SH4.
13617
13618 @item -m4a-nofpu
13619 @opindex m4a-nofpu
13620 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
13621 floating-point unit is not used.
13622
13623 @item -m4a-single-only
13624 @opindex m4a-single-only
13625 Generate code for the SH4a, in such a way that no double-precision
13626 floating point operations are used.
13627
13628 @item -m4a-single
13629 @opindex m4a-single
13630 Generate code for the SH4a assuming the floating-point unit is in
13631 single-precision mode by default.
13632
13633 @item -m4a
13634 @opindex m4a
13635 Generate code for the SH4a.
13636
13637 @item -m4al
13638 @opindex m4al
13639 Same as @option{-m4a-nofpu}, except that it implicitly passes
13640 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
13641 instructions at the moment.
13642
13643 @item -mb
13644 @opindex mb
13645 Compile code for the processor in big endian mode.
13646
13647 @item -ml
13648 @opindex ml
13649 Compile code for the processor in little endian mode.
13650
13651 @item -mdalign
13652 @opindex mdalign
13653 Align doubles at 64-bit boundaries.  Note that this changes the calling
13654 conventions, and thus some functions from the standard C library will
13655 not work unless you recompile it first with @option{-mdalign}.
13656
13657 @item -mrelax
13658 @opindex mrelax
13659 Shorten some address references at link time, when possible; uses the
13660 linker option @option{-relax}.
13661
13662 @item -mbigtable
13663 @opindex mbigtable
13664 Use 32-bit offsets in @code{switch} tables.  The default is to use
13665 16-bit offsets.
13666
13667 @item -mfmovd
13668 @opindex mfmovd
13669 Enable the use of the instruction @code{fmovd}.
13670
13671 @item -mhitachi
13672 @opindex mhitachi
13673 Comply with the calling conventions defined by Renesas.
13674
13675 @item -mrenesas
13676 @opindex mhitachi
13677 Comply with the calling conventions defined by Renesas.
13678
13679 @item -mno-renesas
13680 @opindex mhitachi
13681 Comply with the calling conventions defined for GCC before the Renesas
13682 conventions were available.  This option is the default for all
13683 targets of the SH toolchain except for @samp{sh-symbianelf}.
13684
13685 @item -mnomacsave
13686 @opindex mnomacsave
13687 Mark the @code{MAC} register as call-clobbered, even if
13688 @option{-mhitachi} is given.
13689
13690 @item -mieee
13691 @opindex mieee
13692 Increase IEEE-compliance of floating-point code.
13693 At the moment, this is equivalent to @option{-fno-finite-math-only}.
13694 When generating 16 bit SH opcodes, getting IEEE-conforming results for
13695 comparisons of NANs / infinities incurs extra overhead in every
13696 floating point comparison, therefore the default is set to
13697 @option{-ffinite-math-only}.
13698
13699 @item -minline-ic_invalidate
13700 @opindex minline-ic_invalidate
13701 Inline code to invalidate instruction cache entries after setting up
13702 nested function trampolines.
13703 This option has no effect if -musermode is in effect and the selected
13704 code generation option (e.g. -m4) does not allow the use of the icbi
13705 instruction.
13706 If the selected code generation option does not allow the use of the icbi
13707 instruction, and -musermode is not in effect, the inlined code will
13708 manipulate the instruction cache address array directly with an associative
13709 write.  This not only requires privileged mode, but it will also
13710 fail if the cache line had been mapped via the TLB and has become unmapped.
13711
13712 @item -misize
13713 @opindex misize
13714 Dump instruction size and location in the assembly code.
13715
13716 @item -mpadstruct
13717 @opindex mpadstruct
13718 This option is deprecated.  It pads structures to multiple of 4 bytes,
13719 which is incompatible with the SH ABI@.
13720
13721 @item -mspace
13722 @opindex mspace
13723 Optimize for space instead of speed.  Implied by @option{-Os}.
13724
13725 @item -mprefergot
13726 @opindex mprefergot
13727 When generating position-independent code, emit function calls using
13728 the Global Offset Table instead of the Procedure Linkage Table.
13729
13730 @item -musermode
13731 @opindex musermode
13732 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
13733 if the inlined code would not work in user mode.
13734 This is the default when the target is @code{sh-*-linux*}.
13735
13736 @item -multcost=@var{number}
13737 @opindex multcost=@var{number}
13738 Set the cost to assume for a multiply insn.
13739
13740 @item -mdiv=@var{strategy}
13741 @opindex mdiv=@var{strategy}
13742 Set the division strategy to use for SHmedia code.  @var{strategy} must be
13743 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
13744 inv:call2, inv:fp .
13745 "fp" performs the operation in floating point.  This has a very high latency,
13746 but needs only a few instructions, so it might be a good choice if
13747 your code has enough easily exploitable ILP to allow the compiler to
13748 schedule the floating point instructions together with other instructions.
13749 Division by zero causes a floating point exception.
13750 "inv" uses integer operations to calculate the inverse of the divisor,
13751 and then multiplies the dividend with the inverse.  This strategy allows
13752 cse and hoisting of the inverse calculation.  Division by zero calculates
13753 an unspecified result, but does not trap.
13754 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
13755 have been found, or if the entire operation has been hoisted to the same
13756 place, the last stages of the inverse calculation are intertwined with the
13757 final multiply to reduce the overall latency, at the expense of using a few
13758 more instructions, and thus offering fewer scheduling opportunities with
13759 other code.
13760 "call" calls a library function that usually implements the inv:minlat
13761 strategy.
13762 This gives high code density for m5-*media-nofpu compilations.
13763 "call2" uses a different entry point of the same library function, where it
13764 assumes that a pointer to a lookup table has already been set up, which
13765 exposes the pointer load to cse / code hoisting optimizations.
13766 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
13767 code generation, but if the code stays unoptimized, revert to the "call",
13768 "call2", or "fp" strategies, respectively.  Note that the
13769 potentially-trapping side effect of division by zero is carried by a
13770 separate instruction, so it is possible that all the integer instructions
13771 are hoisted out, but the marker for the side effect stays where it is.
13772 A recombination to fp operations or a call is not possible in that case.
13773 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
13774 that the inverse calculation was nor separated from the multiply, they speed
13775 up division where the dividend fits into 20 bits (plus sign where applicable),
13776 by inserting a test to skip a number of operations in this case; this test
13777 slows down the case of larger dividends.  inv20u assumes the case of a such
13778 a small dividend to be unlikely, and inv20l assumes it to be likely.
13779
13780 @item -mdivsi3_libfunc=@var{name}
13781 @opindex mdivsi3_libfunc=@var{name}
13782 Set the name of the library function used for 32 bit signed division to
13783 @var{name}.  This only affect the name used in the call and inv:call
13784 division strategies, and the compiler will still expect the same
13785 sets of input/output/clobbered registers as if this option was not present.
13786
13787 @item -madjust-unroll
13788 @opindex madjust-unroll
13789 Throttle unrolling to avoid thrashing target registers.
13790 This option only has an effect if the gcc code base supports the
13791 TARGET_ADJUST_UNROLL_MAX target hook.
13792
13793 @item -mindexed-addressing
13794 @opindex mindexed-addressing
13795 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
13796 This is only safe if the hardware and/or OS implement 32 bit wrap-around
13797 semantics for the indexed addressing mode.  The architecture allows the
13798 implementation of processors with 64 bit MMU, which the OS could use to
13799 get 32 bit addressing, but since no current hardware implementation supports
13800 this or any other way to make the indexed addressing mode safe to use in
13801 the 32 bit ABI, the default is -mno-indexed-addressing.
13802
13803 @item -mgettrcost=@var{number}
13804 @opindex mgettrcost=@var{number}
13805 Set the cost assumed for the gettr instruction to @var{number}.
13806 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
13807
13808 @item -mpt-fixed
13809 @opindex mpt-fixed
13810 Assume pt* instructions won't trap.  This will generally generate better
13811 scheduled code, but is unsafe on current hardware.  The current architecture
13812 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
13813 This has the unintentional effect of making it unsafe to schedule ptabs /
13814 ptrel before a branch, or hoist it out of a loop.  For example,
13815 __do_global_ctors, a part of libgcc that runs constructors at program
13816 startup, calls functions in a list which is delimited by @minus{}1.  With the
13817 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
13818 That means that all the constructors will be run a bit quicker, but when
13819 the loop comes to the end of the list, the program crashes because ptabs
13820 loads @minus{}1 into a target register.  Since this option is unsafe for any
13821 hardware implementing the current architecture specification, the default
13822 is -mno-pt-fixed.  Unless the user specifies a specific cost with
13823 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
13824 this deters register allocation using target registers for storing
13825 ordinary integers.
13826
13827 @item -minvalid-symbols
13828 @opindex minvalid-symbols
13829 Assume symbols might be invalid.  Ordinary function symbols generated by
13830 the compiler will always be valid to load with movi/shori/ptabs or
13831 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
13832 to generate symbols that will cause ptabs / ptrel to trap.
13833 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
13834 It will then prevent cross-basic-block cse, hoisting and most scheduling
13835 of symbol loads.  The default is @option{-mno-invalid-symbols}.
13836 @end table
13837
13838 @node SPARC Options
13839 @subsection SPARC Options
13840 @cindex SPARC options
13841
13842 These @samp{-m} options are supported on the SPARC:
13843
13844 @table @gcctabopt
13845 @item -mno-app-regs
13846 @itemx -mapp-regs
13847 @opindex mno-app-regs
13848 @opindex mapp-regs
13849 Specify @option{-mapp-regs} to generate output using the global registers
13850 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
13851 is the default.
13852
13853 To be fully SVR4 ABI compliant at the cost of some performance loss,
13854 specify @option{-mno-app-regs}.  You should compile libraries and system
13855 software with this option.
13856
13857 @item -mfpu
13858 @itemx -mhard-float
13859 @opindex mfpu
13860 @opindex mhard-float
13861 Generate output containing floating point instructions.  This is the
13862 default.
13863
13864 @item -mno-fpu
13865 @itemx -msoft-float
13866 @opindex mno-fpu
13867 @opindex msoft-float
13868 Generate output containing library calls for floating point.
13869 @strong{Warning:} the requisite libraries are not available for all SPARC
13870 targets.  Normally the facilities of the machine's usual C compiler are
13871 used, but this cannot be done directly in cross-compilation.  You must make
13872 your own arrangements to provide suitable library functions for
13873 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
13874 @samp{sparclite-*-*} do provide software floating point support.
13875
13876 @option{-msoft-float} changes the calling convention in the output file;
13877 therefore, it is only useful if you compile @emph{all} of a program with
13878 this option.  In particular, you need to compile @file{libgcc.a}, the
13879 library that comes with GCC, with @option{-msoft-float} in order for
13880 this to work.
13881
13882 @item -mhard-quad-float
13883 @opindex mhard-quad-float
13884 Generate output containing quad-word (long double) floating point
13885 instructions.
13886
13887 @item -msoft-quad-float
13888 @opindex msoft-quad-float
13889 Generate output containing library calls for quad-word (long double)
13890 floating point instructions.  The functions called are those specified
13891 in the SPARC ABI@.  This is the default.
13892
13893 As of this writing, there are no SPARC implementations that have hardware
13894 support for the quad-word floating point instructions.  They all invoke
13895 a trap handler for one of these instructions, and then the trap handler
13896 emulates the effect of the instruction.  Because of the trap handler overhead,
13897 this is much slower than calling the ABI library routines.  Thus the
13898 @option{-msoft-quad-float} option is the default.
13899
13900 @item -mno-unaligned-doubles
13901 @itemx -munaligned-doubles
13902 @opindex mno-unaligned-doubles
13903 @opindex munaligned-doubles
13904 Assume that doubles have 8 byte alignment.  This is the default.
13905
13906 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
13907 alignment only if they are contained in another type, or if they have an
13908 absolute address.  Otherwise, it assumes they have 4 byte alignment.
13909 Specifying this option avoids some rare compatibility problems with code
13910 generated by other compilers.  It is not the default because it results
13911 in a performance loss, especially for floating point code.
13912
13913 @item -mno-faster-structs
13914 @itemx -mfaster-structs
13915 @opindex mno-faster-structs
13916 @opindex mfaster-structs
13917 With @option{-mfaster-structs}, the compiler assumes that structures
13918 should have 8 byte alignment.  This enables the use of pairs of
13919 @code{ldd} and @code{std} instructions for copies in structure
13920 assignment, in place of twice as many @code{ld} and @code{st} pairs.
13921 However, the use of this changed alignment directly violates the SPARC
13922 ABI@.  Thus, it's intended only for use on targets where the developer
13923 acknowledges that their resulting code will not be directly in line with
13924 the rules of the ABI@.
13925
13926 @item -mimpure-text
13927 @opindex mimpure-text
13928 @option{-mimpure-text}, used in addition to @option{-shared}, tells
13929 the compiler to not pass @option{-z text} to the linker when linking a
13930 shared object.  Using this option, you can link position-dependent
13931 code into a shared object.
13932
13933 @option{-mimpure-text} suppresses the ``relocations remain against
13934 allocatable but non-writable sections'' linker error message.
13935 However, the necessary relocations will trigger copy-on-write, and the
13936 shared object is not actually shared across processes.  Instead of
13937 using @option{-mimpure-text}, you should compile all source code with
13938 @option{-fpic} or @option{-fPIC}.
13939
13940 This option is only available on SunOS and Solaris.
13941
13942 @item -mcpu=@var{cpu_type}
13943 @opindex mcpu
13944 Set the instruction set, register set, and instruction scheduling parameters
13945 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
13946 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
13947 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
13948 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
13949 @samp{ultrasparc3}, and @samp{niagara}.
13950
13951 Default instruction scheduling parameters are used for values that select
13952 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
13953 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
13954
13955 Here is a list of each supported architecture and their supported
13956 implementations.
13957
13958 @smallexample
13959     v7:             cypress
13960     v8:             supersparc, hypersparc
13961     sparclite:      f930, f934, sparclite86x
13962     sparclet:       tsc701
13963     v9:             ultrasparc, ultrasparc3, niagara
13964 @end smallexample
13965
13966 By default (unless configured otherwise), GCC generates code for the V7
13967 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
13968 additionally optimizes it for the Cypress CY7C602 chip, as used in the
13969 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
13970 SPARCStation 1, 2, IPX etc.
13971
13972 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
13973 architecture.  The only difference from V7 code is that the compiler emits
13974 the integer multiply and integer divide instructions which exist in SPARC-V8
13975 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
13976 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
13977 2000 series.
13978
13979 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
13980 the SPARC architecture.  This adds the integer multiply, integer divide step
13981 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
13982 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
13983 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
13984 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
13985 MB86934 chip, which is the more recent SPARClite with FPU@.
13986
13987 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
13988 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
13989 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
13990 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
13991 optimizes it for the TEMIC SPARClet chip.
13992
13993 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
13994 architecture.  This adds 64-bit integer and floating-point move instructions,
13995 3 additional floating-point condition code registers and conditional move
13996 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
13997 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
13998 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
13999 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
14000 @option{-mcpu=niagara}, the compiler additionally optimizes it for
14001 Sun UltraSPARC T1 chips.
14002
14003 @item -mtune=@var{cpu_type}
14004 @opindex mtune
14005 Set the instruction scheduling parameters for machine type
14006 @var{cpu_type}, but do not set the instruction set or register set that the
14007 option @option{-mcpu=@var{cpu_type}} would.
14008
14009 The same values for @option{-mcpu=@var{cpu_type}} can be used for
14010 @option{-mtune=@var{cpu_type}}, but the only useful values are those
14011 that select a particular cpu implementation.  Those are @samp{cypress},
14012 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
14013 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
14014 @samp{ultrasparc3}, and @samp{niagara}.
14015
14016 @item -mv8plus
14017 @itemx -mno-v8plus
14018 @opindex mv8plus
14019 @opindex mno-v8plus
14020 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
14021 difference from the V8 ABI is that the global and out registers are
14022 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
14023 mode for all SPARC-V9 processors.
14024
14025 @item -mvis
14026 @itemx -mno-vis
14027 @opindex mvis
14028 @opindex mno-vis
14029 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
14030 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
14031 @end table
14032
14033 These @samp{-m} options are supported in addition to the above
14034 on SPARC-V9 processors in 64-bit environments:
14035
14036 @table @gcctabopt
14037 @item -mlittle-endian
14038 @opindex mlittle-endian
14039 Generate code for a processor running in little-endian mode.  It is only
14040 available for a few configurations and most notably not on Solaris and Linux.
14041
14042 @item -m32
14043 @itemx -m64
14044 @opindex m32
14045 @opindex m64
14046 Generate code for a 32-bit or 64-bit environment.
14047 The 32-bit environment sets int, long and pointer to 32 bits.
14048 The 64-bit environment sets int to 32 bits and long and pointer
14049 to 64 bits.
14050
14051 @item -mcmodel=medlow
14052 @opindex mcmodel=medlow
14053 Generate code for the Medium/Low code model: 64-bit addresses, programs
14054 must be linked in the low 32 bits of memory.  Programs can be statically
14055 or dynamically linked.
14056
14057 @item -mcmodel=medmid
14058 @opindex mcmodel=medmid
14059 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14060 must be linked in the low 44 bits of memory, the text and data segments must
14061 be less than 2GB in size and the data segment must be located within 2GB of
14062 the text segment.
14063
14064 @item -mcmodel=medany
14065 @opindex mcmodel=medany
14066 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14067 may be linked anywhere in memory, the text and data segments must be less
14068 than 2GB in size and the data segment must be located within 2GB of the
14069 text segment.
14070
14071 @item -mcmodel=embmedany
14072 @opindex mcmodel=embmedany
14073 Generate code for the Medium/Anywhere code model for embedded systems:
14074 64-bit addresses, the text and data segments must be less than 2GB in
14075 size, both starting anywhere in memory (determined at link time).  The
14076 global register %g4 points to the base of the data segment.  Programs
14077 are statically linked and PIC is not supported.
14078
14079 @item -mstack-bias
14080 @itemx -mno-stack-bias
14081 @opindex mstack-bias
14082 @opindex mno-stack-bias
14083 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14084 frame pointer if present, are offset by @minus{}2047 which must be added back
14085 when making stack frame references.  This is the default in 64-bit mode.
14086 Otherwise, assume no such offset is present.
14087 @end table
14088
14089 These switches are supported in addition to the above on Solaris:
14090
14091 @table @gcctabopt
14092 @item -threads
14093 @opindex threads
14094 Add support for multithreading using the Solaris threads library.  This
14095 option sets flags for both the preprocessor and linker.  This option does
14096 not affect the thread safety of object code produced by the compiler or
14097 that of libraries supplied with it.
14098
14099 @item -pthreads
14100 @opindex pthreads
14101 Add support for multithreading using the POSIX threads library.  This
14102 option sets flags for both the preprocessor and linker.  This option does
14103 not affect the thread safety of object code produced  by the compiler or
14104 that of libraries supplied with it.
14105
14106 @item -pthread
14107 @opindex pthread
14108 This is a synonym for @option{-pthreads}.
14109 @end table
14110
14111 @node SPU Options
14112 @subsection SPU Options
14113 @cindex SPU options
14114
14115 These @samp{-m} options are supported on the SPU:
14116
14117 @table @gcctabopt
14118 @item -mwarn-reloc
14119 @itemx -merror-reloc
14120 @opindex mwarn-reloc
14121 @opindex merror-reloc
14122
14123 The loader for SPU does not handle dynamic relocations.  By default, GCC
14124 will give an error when it generates code that requires a dynamic
14125 relocation.  @option{-mno-error-reloc} disables the error,
14126 @option{-mwarn-reloc} will generate a warning instead.
14127
14128 @item -msafe-dma
14129 @itemx -munsafe-dma
14130 @opindex msafe-dma
14131 @opindex munsafe-dma
14132
14133 Instructions which initiate or test completion of DMA must not be
14134 reordered with respect to loads and stores of the memory which is being
14135 accessed.  Users typically address this problem using the volatile
14136 keyword, but that can lead to inefficient code in places where the
14137 memory is known to not change.  Rather than mark the memory as volatile
14138 we treat the DMA instructions as potentially effecting all memory.  With
14139 @option{-munsafe-dma} users must use the volatile keyword to protect
14140 memory accesses.
14141
14142 @item -mbranch-hints
14143 @opindex mbranch-hints
14144
14145 By default, GCC will generate a branch hint instruction to avoid
14146 pipeline stalls for always taken or probably taken branches.  A hint
14147 will not be generated closer than 8 instructions away from its branch.
14148 There is little reason to disable them, except for debugging purposes,
14149 or to make an object a little bit smaller.
14150
14151 @item -msmall-mem
14152 @itemx -mlarge-mem
14153 @opindex msmall-mem
14154 @opindex mlarge-mem
14155
14156 By default, GCC generates code assuming that addresses are never larger
14157 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14158 a full 32 bit address.
14159
14160 @item -mstdmain
14161 @opindex mstdmain
14162
14163 By default, GCC links against startup code that assumes the SPU-style
14164 main function interface (which has an unconventional parameter list).
14165 With @option{-mstdmain}, GCC will link your program against startup
14166 code that assumes a C99-style interface to @code{main}, including a
14167 local copy of @code{argv} strings.
14168
14169 @item -mfixed-range=@var{register-range}
14170 @opindex mfixed-range
14171 Generate code treating the given register range as fixed registers.
14172 A fixed register is one that the register allocator can not use.  This is
14173 useful when compiling kernel code.  A register range is specified as
14174 two registers separated by a dash.  Multiple register ranges can be
14175 specified separated by a comma.
14176
14177 @end table
14178
14179 @node System V Options
14180 @subsection Options for System V
14181
14182 These additional options are available on System V Release 4 for
14183 compatibility with other compilers on those systems:
14184
14185 @table @gcctabopt
14186 @item -G
14187 @opindex G
14188 Create a shared object.
14189 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14190
14191 @item -Qy
14192 @opindex Qy
14193 Identify the versions of each tool used by the compiler, in a
14194 @code{.ident} assembler directive in the output.
14195
14196 @item -Qn
14197 @opindex Qn
14198 Refrain from adding @code{.ident} directives to the output file (this is
14199 the default).
14200
14201 @item -YP,@var{dirs}
14202 @opindex YP
14203 Search the directories @var{dirs}, and no others, for libraries
14204 specified with @option{-l}.
14205
14206 @item -Ym,@var{dir}
14207 @opindex Ym
14208 Look in the directory @var{dir} to find the M4 preprocessor.
14209 The assembler uses this option.
14210 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14211 @c the generic assembler that comes with Solaris takes just -Ym.
14212 @end table
14213
14214 @node TMS320C3x/C4x Options
14215 @subsection TMS320C3x/C4x Options
14216 @cindex TMS320C3x/C4x Options
14217
14218 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
14219
14220 @table @gcctabopt
14221
14222 @item -mcpu=@var{cpu_type}
14223 @opindex mcpu
14224 Set the instruction set, register set, and instruction scheduling
14225 parameters for machine type @var{cpu_type}.  Supported values for
14226 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
14227 @samp{c44}.  The default is @samp{c40} to generate code for the
14228 TMS320C40.
14229
14230 @item -mbig-memory
14231 @itemx -mbig
14232 @itemx -msmall-memory
14233 @itemx -msmall
14234 @opindex mbig-memory
14235 @opindex mbig
14236 @opindex msmall-memory
14237 @opindex msmall
14238 Generates code for the big or small memory model.  The small memory
14239 model assumed that all data fits into one 64K word page.  At run-time
14240 the data page (DP) register must be set to point to the 64K page
14241 containing the .bss and .data program sections.  The big memory model is
14242 the default and requires reloading of the DP register for every direct
14243 memory access.
14244
14245 @item -mbk
14246 @itemx -mno-bk
14247 @opindex mbk
14248 @opindex mno-bk
14249 Allow (disallow) allocation of general integer operands into the block
14250 count register BK@.
14251
14252 @item -mdb
14253 @itemx -mno-db
14254 @opindex mdb
14255 @opindex mno-db
14256 Enable (disable) generation of code using decrement and branch,
14257 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
14258 on the safe side, this is disabled for the C3x, since the maximum
14259 iteration count on the C3x is @math{2^{23} + 1} (but who iterates loops more than
14260 @math{2^{23}} times on the C3x?).  Note that GCC will try to reverse a loop so
14261 that it can utilize the decrement and branch instruction, but will give
14262 up if there is more than one memory reference in the loop.  Thus a loop
14263 where the loop counter is decremented can generate slightly more
14264 efficient code, in cases where the RPTB instruction cannot be utilized.
14265
14266 @item -mdp-isr-reload
14267 @itemx -mparanoid
14268 @opindex mdp-isr-reload
14269 @opindex mparanoid
14270 Force the DP register to be saved on entry to an interrupt service
14271 routine (ISR), reloaded to point to the data section, and restored on
14272 exit from the ISR@.  This should not be required unless someone has
14273 violated the small memory model by modifying the DP register, say within
14274 an object library.
14275
14276 @item -mmpyi
14277 @itemx -mno-mpyi
14278 @opindex mmpyi
14279 @opindex mno-mpyi
14280 For the C3x use the 24-bit MPYI instruction for integer multiplies
14281 instead of a library call to guarantee 32-bit results.  Note that if one
14282 of the operands is a constant, then the multiplication will be performed
14283 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
14284 then squaring operations are performed inline instead of a library call.
14285
14286 @item -mfast-fix
14287 @itemx -mno-fast-fix
14288 @opindex mfast-fix
14289 @opindex mno-fast-fix
14290 The C3x/C4x FIX instruction to convert a floating point value to an
14291 integer value chooses the nearest integer less than or equal to the
14292 floating point value rather than to the nearest integer.  Thus if the
14293 floating point number is negative, the result will be incorrectly
14294 truncated an additional code is necessary to detect and correct this
14295 case.  This option can be used to disable generation of the additional
14296 code required to correct the result.
14297
14298 @item -mrptb
14299 @itemx -mno-rptb
14300 @opindex mrptb
14301 @opindex mno-rptb
14302 Enable (disable) generation of repeat block sequences using the RPTB
14303 instruction for zero overhead looping.  The RPTB construct is only used
14304 for innermost loops that do not call functions or jump across the loop
14305 boundaries.  There is no advantage having nested RPTB loops due to the
14306 overhead required to save and restore the RC, RS, and RE registers.
14307 This is enabled by default with @option{-O2}.
14308
14309 @item -mrpts=@var{count}
14310 @itemx -mno-rpts
14311 @opindex mrpts
14312 @opindex mno-rpts
14313 Enable (disable) the use of the single instruction repeat instruction
14314 RPTS@.  If a repeat block contains a single instruction, and the loop
14315 count can be guaranteed to be less than the value @var{count}, GCC will
14316 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
14317 then a RPTS will be emitted even if the loop count cannot be determined
14318 at compile time.  Note that the repeated instruction following RPTS does
14319 not have to be reloaded from memory each iteration, thus freeing up the
14320 CPU buses for operands.  However, since interrupts are blocked by this
14321 instruction, it is disabled by default.
14322
14323 @item -mloop-unsigned
14324 @itemx -mno-loop-unsigned
14325 @opindex mloop-unsigned
14326 @opindex mno-loop-unsigned
14327 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
14328 is @math{2^{31} + 1} since these instructions test if the iteration count is
14329 negative to terminate the loop.  If the iteration count is unsigned
14330 there is a possibility than the @math{2^{31} + 1} maximum iteration count may be
14331 exceeded.  This switch allows an unsigned iteration count.
14332
14333 @item -mti
14334 @opindex mti
14335 Try to emit an assembler syntax that the TI assembler (asm30) is happy
14336 with.  This also enforces compatibility with the API employed by the TI
14337 C3x C compiler.  For example, long doubles are passed as structures
14338 rather than in floating point registers.
14339
14340 @item -mregparm
14341 @itemx -mmemparm
14342 @opindex mregparm
14343 @opindex mmemparm
14344 Generate code that uses registers (stack) for passing arguments to functions.
14345 By default, arguments are passed in registers where possible rather
14346 than by pushing arguments on to the stack.
14347
14348 @item -mparallel-insns
14349 @itemx -mno-parallel-insns
14350 @opindex mparallel-insns
14351 @opindex mno-parallel-insns
14352 Allow the generation of parallel instructions.  This is enabled by
14353 default with @option{-O2}.
14354
14355 @item -mparallel-mpy
14356 @itemx -mno-parallel-mpy
14357 @opindex mparallel-mpy
14358 @opindex mno-parallel-mpy
14359 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
14360 provided @option{-mparallel-insns} is also specified.  These instructions have
14361 tight register constraints which can pessimize the code generation
14362 of large functions.
14363
14364 @end table
14365
14366 @node V850 Options
14367 @subsection V850 Options
14368 @cindex V850 Options
14369
14370 These @samp{-m} options are defined for V850 implementations:
14371
14372 @table @gcctabopt
14373 @item -mlong-calls
14374 @itemx -mno-long-calls
14375 @opindex mlong-calls
14376 @opindex mno-long-calls
14377 Treat all calls as being far away (near).  If calls are assumed to be
14378 far away, the compiler will always load the functions address up into a
14379 register, and call indirect through the pointer.
14380
14381 @item -mno-ep
14382 @itemx -mep
14383 @opindex mno-ep
14384 @opindex mep
14385 Do not optimize (do optimize) basic blocks that use the same index
14386 pointer 4 or more times to copy pointer into the @code{ep} register, and
14387 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14388 option is on by default if you optimize.
14389
14390 @item -mno-prolog-function
14391 @itemx -mprolog-function
14392 @opindex mno-prolog-function
14393 @opindex mprolog-function
14394 Do not use (do use) external functions to save and restore registers
14395 at the prologue and epilogue of a function.  The external functions
14396 are slower, but use less code space if more than one function saves
14397 the same number of registers.  The @option{-mprolog-function} option
14398 is on by default if you optimize.
14399
14400 @item -mspace
14401 @opindex mspace
14402 Try to make the code as small as possible.  At present, this just turns
14403 on the @option{-mep} and @option{-mprolog-function} options.
14404
14405 @item -mtda=@var{n}
14406 @opindex mtda
14407 Put static or global variables whose size is @var{n} bytes or less into
14408 the tiny data area that register @code{ep} points to.  The tiny data
14409 area can hold up to 256 bytes in total (128 bytes for byte references).
14410
14411 @item -msda=@var{n}
14412 @opindex msda
14413 Put static or global variables whose size is @var{n} bytes or less into
14414 the small data area that register @code{gp} points to.  The small data
14415 area can hold up to 64 kilobytes.
14416
14417 @item -mzda=@var{n}
14418 @opindex mzda
14419 Put static or global variables whose size is @var{n} bytes or less into
14420 the first 32 kilobytes of memory.
14421
14422 @item -mv850
14423 @opindex mv850
14424 Specify that the target processor is the V850.
14425
14426 @item -mbig-switch
14427 @opindex mbig-switch
14428 Generate code suitable for big switch tables.  Use this option only if
14429 the assembler/linker complain about out of range branches within a switch
14430 table.
14431
14432 @item -mapp-regs
14433 @opindex mapp-regs
14434 This option will cause r2 and r5 to be used in the code generated by
14435 the compiler.  This setting is the default.
14436
14437 @item -mno-app-regs
14438 @opindex mno-app-regs
14439 This option will cause r2 and r5 to be treated as fixed registers.
14440
14441 @item -mv850e1
14442 @opindex mv850e1
14443 Specify that the target processor is the V850E1.  The preprocessor
14444 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14445 this option is used.
14446
14447 @item -mv850e
14448 @opindex mv850e
14449 Specify that the target processor is the V850E@.  The preprocessor
14450 constant @samp{__v850e__} will be defined if this option is used.
14451
14452 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14453 are defined then a default target processor will be chosen and the
14454 relevant @samp{__v850*__} preprocessor constant will be defined.
14455
14456 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14457 defined, regardless of which processor variant is the target.
14458
14459 @item -mdisable-callt
14460 @opindex mdisable-callt
14461 This option will suppress generation of the CALLT instruction for the
14462 v850e and v850e1 flavors of the v850 architecture.  The default is
14463 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14464
14465 @end table
14466
14467 @node VAX Options
14468 @subsection VAX Options
14469 @cindex VAX options
14470
14471 These @samp{-m} options are defined for the VAX:
14472
14473 @table @gcctabopt
14474 @item -munix
14475 @opindex munix
14476 Do not output certain jump instructions (@code{aobleq} and so on)
14477 that the Unix assembler for the VAX cannot handle across long
14478 ranges.
14479
14480 @item -mgnu
14481 @opindex mgnu
14482 Do output those jump instructions, on the assumption that you
14483 will assemble with the GNU assembler.
14484
14485 @item -mg
14486 @opindex mg
14487 Output code for g-format floating point numbers instead of d-format.
14488 @end table
14489
14490 @node VxWorks Options
14491 @subsection VxWorks Options
14492 @cindex VxWorks Options
14493
14494 The options in this section are defined for all VxWorks targets.
14495 Options specific to the target hardware are listed with the other
14496 options for that target.
14497
14498 @table @gcctabopt
14499 @item -mrtp
14500 @opindex mrtp
14501 GCC can generate code for both VxWorks kernels and real time processes
14502 (RTPs).  This option switches from the former to the latter.  It also
14503 defines the preprocessor macro @code{__RTP__}.
14504
14505 @item -non-static
14506 @opindex non-static
14507 Link an RTP executable against shared libraries rather than static
14508 libraries.  The options @option{-static} and @option{-shared} can
14509 also be used for RTPs (@pxref{Link Options}); @option{-static}
14510 is the default.
14511
14512 @item -Bstatic
14513 @itemx -Bdynamic
14514 @opindex Bstatic
14515 @opindex Bdynamic
14516 These options are passed down to the linker.  They are defined for
14517 compatibility with Diab.
14518
14519 @item -Xbind-lazy
14520 @opindex Xbind-lazy
14521 Enable lazy binding of function calls.  This option is equivalent to
14522 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14523
14524 @item -Xbind-now
14525 @opindex Xbind-now
14526 Disable lazy binding of function calls.  This option is the default and
14527 is defined for compatibility with Diab.
14528 @end table
14529
14530 @node x86-64 Options
14531 @subsection x86-64 Options
14532 @cindex x86-64 options
14533
14534 These are listed under @xref{i386 and x86-64 Options}.
14535
14536 @node Xstormy16 Options
14537 @subsection Xstormy16 Options
14538 @cindex Xstormy16 Options
14539
14540 These options are defined for Xstormy16:
14541
14542 @table @gcctabopt
14543 @item -msim
14544 @opindex msim
14545 Choose startup files and linker script suitable for the simulator.
14546 @end table
14547
14548 @node Xtensa Options
14549 @subsection Xtensa Options
14550 @cindex Xtensa Options
14551
14552 These options are supported for Xtensa targets:
14553
14554 @table @gcctabopt
14555 @item -mconst16
14556 @itemx -mno-const16
14557 @opindex mconst16
14558 @opindex mno-const16
14559 Enable or disable use of @code{CONST16} instructions for loading
14560 constant values.  The @code{CONST16} instruction is currently not a
14561 standard option from Tensilica.  When enabled, @code{CONST16}
14562 instructions are always used in place of the standard @code{L32R}
14563 instructions.  The use of @code{CONST16} is enabled by default only if
14564 the @code{L32R} instruction is not available.
14565
14566 @item -mfused-madd
14567 @itemx -mno-fused-madd
14568 @opindex mfused-madd
14569 @opindex mno-fused-madd
14570 Enable or disable use of fused multiply/add and multiply/subtract
14571 instructions in the floating-point option.  This has no effect if the
14572 floating-point option is not also enabled.  Disabling fused multiply/add
14573 and multiply/subtract instructions forces the compiler to use separate
14574 instructions for the multiply and add/subtract operations.  This may be
14575 desirable in some cases where strict IEEE 754-compliant results are
14576 required: the fused multiply add/subtract instructions do not round the
14577 intermediate result, thereby producing results with @emph{more} bits of
14578 precision than specified by the IEEE standard.  Disabling fused multiply
14579 add/subtract instructions also ensures that the program output is not
14580 sensitive to the compiler's ability to combine multiply and add/subtract
14581 operations.
14582
14583 @item -mtext-section-literals
14584 @itemx -mno-text-section-literals
14585 @opindex mtext-section-literals
14586 @opindex mno-text-section-literals
14587 Control the treatment of literal pools.  The default is
14588 @option{-mno-text-section-literals}, which places literals in a separate
14589 section in the output file.  This allows the literal pool to be placed
14590 in a data RAM/ROM, and it also allows the linker to combine literal
14591 pools from separate object files to remove redundant literals and
14592 improve code size.  With @option{-mtext-section-literals}, the literals
14593 are interspersed in the text section in order to keep them as close as
14594 possible to their references.  This may be necessary for large assembly
14595 files.
14596
14597 @item -mtarget-align
14598 @itemx -mno-target-align
14599 @opindex mtarget-align
14600 @opindex mno-target-align
14601 When this option is enabled, GCC instructs the assembler to
14602 automatically align instructions to reduce branch penalties at the
14603 expense of some code density.  The assembler attempts to widen density
14604 instructions to align branch targets and the instructions following call
14605 instructions.  If there are not enough preceding safe density
14606 instructions to align a target, no widening will be performed.  The
14607 default is @option{-mtarget-align}.  These options do not affect the
14608 treatment of auto-aligned instructions like @code{LOOP}, which the
14609 assembler will always align, either by widening density instructions or
14610 by inserting no-op instructions.
14611
14612 @item -mlongcalls
14613 @itemx -mno-longcalls
14614 @opindex mlongcalls
14615 @opindex mno-longcalls
14616 When this option is enabled, GCC instructs the assembler to translate
14617 direct calls to indirect calls unless it can determine that the target
14618 of a direct call is in the range allowed by the call instruction.  This
14619 translation typically occurs for calls to functions in other source
14620 files.  Specifically, the assembler translates a direct @code{CALL}
14621 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14622 The default is @option{-mno-longcalls}.  This option should be used in
14623 programs where the call target can potentially be out of range.  This
14624 option is implemented in the assembler, not the compiler, so the
14625 assembly code generated by GCC will still show direct call
14626 instructions---look at the disassembled object code to see the actual
14627 instructions.  Note that the assembler will use an indirect call for
14628 every cross-file call, not just those that really will be out of range.
14629 @end table
14630
14631 @node zSeries Options
14632 @subsection zSeries Options
14633 @cindex zSeries options
14634
14635 These are listed under @xref{S/390 and zSeries Options}.
14636
14637 @node Code Gen Options
14638 @section Options for Code Generation Conventions
14639 @cindex code generation conventions
14640 @cindex options, code generation
14641 @cindex run-time options
14642
14643 These machine-independent options control the interface conventions
14644 used in code generation.
14645
14646 Most of them have both positive and negative forms; the negative form
14647 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14648 one of the forms is listed---the one which is not the default.  You
14649 can figure out the other form by either removing @samp{no-} or adding
14650 it.
14651
14652 @table @gcctabopt
14653 @item -fbounds-check
14654 @opindex fbounds-check
14655 For front-ends that support it, generate additional code to check that
14656 indices used to access arrays are within the declared range.  This is
14657 currently only supported by the Java and Fortran front-ends, where
14658 this option defaults to true and false respectively.
14659
14660 @item -ftrapv
14661 @opindex ftrapv
14662 This option generates traps for signed overflow on addition, subtraction,
14663 multiplication operations.
14664
14665 @item -fwrapv
14666 @opindex fwrapv
14667 This option instructs the compiler to assume that signed arithmetic
14668 overflow of addition, subtraction and multiplication wraps around
14669 using twos-complement representation.  This flag enables some optimizations
14670 and disables others.  This option is enabled by default for the Java
14671 front-end, as required by the Java language specification.
14672
14673 @item -fexceptions
14674 @opindex fexceptions
14675 Enable exception handling.  Generates extra code needed to propagate
14676 exceptions.  For some targets, this implies GCC will generate frame
14677 unwind information for all functions, which can produce significant data
14678 size overhead, although it does not affect execution.  If you do not
14679 specify this option, GCC will enable it by default for languages like
14680 C++ which normally require exception handling, and disable it for
14681 languages like C that do not normally require it.  However, you may need
14682 to enable this option when compiling C code that needs to interoperate
14683 properly with exception handlers written in C++.  You may also wish to
14684 disable this option if you are compiling older C++ programs that don't
14685 use exception handling.
14686
14687 @item -fnon-call-exceptions
14688 @opindex fnon-call-exceptions
14689 Generate code that allows trapping instructions to throw exceptions.
14690 Note that this requires platform-specific runtime support that does
14691 not exist everywhere.  Moreover, it only allows @emph{trapping}
14692 instructions to throw exceptions, i.e.@: memory references or floating
14693 point instructions.  It does not allow exceptions to be thrown from
14694 arbitrary signal handlers such as @code{SIGALRM}.
14695
14696 @item -funwind-tables
14697 @opindex funwind-tables
14698 Similar to @option{-fexceptions}, except that it will just generate any needed
14699 static data, but will not affect the generated code in any other way.
14700 You will normally not enable this option; instead, a language processor
14701 that needs this handling would enable it on your behalf.
14702
14703 @item -fasynchronous-unwind-tables
14704 @opindex fasynchronous-unwind-tables
14705 Generate unwind table in dwarf2 format, if supported by target machine.  The
14706 table is exact at each instruction boundary, so it can be used for stack
14707 unwinding from asynchronous events (such as debugger or garbage collector).
14708
14709 @item -fpcc-struct-return
14710 @opindex fpcc-struct-return
14711 Return ``short'' @code{struct} and @code{union} values in memory like
14712 longer ones, rather than in registers.  This convention is less
14713 efficient, but it has the advantage of allowing intercallability between
14714 GCC-compiled files and files compiled with other compilers, particularly
14715 the Portable C Compiler (pcc).
14716
14717 The precise convention for returning structures in memory depends
14718 on the target configuration macros.
14719
14720 Short structures and unions are those whose size and alignment match
14721 that of some integer type.
14722
14723 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
14724 switch is not binary compatible with code compiled with the
14725 @option{-freg-struct-return} switch.
14726 Use it to conform to a non-default application binary interface.
14727
14728 @item -freg-struct-return
14729 @opindex freg-struct-return
14730 Return @code{struct} and @code{union} values in registers when possible.
14731 This is more efficient for small structures than
14732 @option{-fpcc-struct-return}.
14733
14734 If you specify neither @option{-fpcc-struct-return} nor
14735 @option{-freg-struct-return}, GCC defaults to whichever convention is
14736 standard for the target.  If there is no standard convention, GCC
14737 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
14738 the principal compiler.  In those cases, we can choose the standard, and
14739 we chose the more efficient register return alternative.
14740
14741 @strong{Warning:} code compiled with the @option{-freg-struct-return}
14742 switch is not binary compatible with code compiled with the
14743 @option{-fpcc-struct-return} switch.
14744 Use it to conform to a non-default application binary interface.
14745
14746 @item -fshort-enums
14747 @opindex fshort-enums
14748 Allocate to an @code{enum} type only as many bytes as it needs for the
14749 declared range of possible values.  Specifically, the @code{enum} type
14750 will be equivalent to the smallest integer type which has enough room.
14751
14752 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
14753 code that is not binary compatible with code generated without that switch.
14754 Use it to conform to a non-default application binary interface.
14755
14756 @item -fshort-double
14757 @opindex fshort-double
14758 Use the same size for @code{double} as for @code{float}.
14759
14760 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
14761 code that is not binary compatible with code generated without that switch.
14762 Use it to conform to a non-default application binary interface.
14763
14764 @item -fshort-wchar
14765 @opindex fshort-wchar
14766 Override the underlying type for @samp{wchar_t} to be @samp{short
14767 unsigned int} instead of the default for the target.  This option is
14768 useful for building programs to run under WINE@.
14769
14770 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
14771 code that is not binary compatible with code generated without that switch.
14772 Use it to conform to a non-default application binary interface.
14773
14774 @item -fno-common
14775 @opindex fno-common
14776 In C, allocate even uninitialized global variables in the data section of the
14777 object file, rather than generating them as common blocks.  This has the
14778 effect that if the same variable is declared (without @code{extern}) in
14779 two different compilations, you will get an error when you link them.
14780 The only reason this might be useful is if you wish to verify that the
14781 program will work on other systems which always work this way.
14782
14783 @item -fno-ident
14784 @opindex fno-ident
14785 Ignore the @samp{#ident} directive.
14786
14787 @item -finhibit-size-directive
14788 @opindex finhibit-size-directive
14789 Don't output a @code{.size} assembler directive, or anything else that
14790 would cause trouble if the function is split in the middle, and the
14791 two halves are placed at locations far apart in memory.  This option is
14792 used when compiling @file{crtstuff.c}; you should not need to use it
14793 for anything else.
14794
14795 @item -fverbose-asm
14796 @opindex fverbose-asm
14797 Put extra commentary information in the generated assembly code to
14798 make it more readable.  This option is generally only of use to those
14799 who actually need to read the generated assembly code (perhaps while
14800 debugging the compiler itself).
14801
14802 @option{-fno-verbose-asm}, the default, causes the
14803 extra information to be omitted and is useful when comparing two assembler
14804 files.
14805
14806 @item -frecord-gcc-switches
14807 @opindex frecord-gcc-switches
14808 This switch causes the command line that was used to invoke the
14809 compiler to be recorded into the object file that is being created.
14810 This switch is only implemented on some targets and the exact format
14811 of the recording is target and binary file format dependent, but it
14812 usually takes the form of a section containing ASCII text.  This
14813 switch is related to the @option{-fverbose-asm} switch, but that
14814 switch only records information in the assembler output file as
14815 comments, so it never reaches the object file.
14816
14817 @item -fpic
14818 @opindex fpic
14819 @cindex global offset table
14820 @cindex PIC
14821 Generate position-independent code (PIC) suitable for use in a shared
14822 library, if supported for the target machine.  Such code accesses all
14823 constant addresses through a global offset table (GOT)@.  The dynamic
14824 loader resolves the GOT entries when the program starts (the dynamic
14825 loader is not part of GCC; it is part of the operating system).  If
14826 the GOT size for the linked executable exceeds a machine-specific
14827 maximum size, you get an error message from the linker indicating that
14828 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
14829 instead.  (These maximums are 8k on the SPARC and 32k
14830 on the m68k and RS/6000.  The 386 has no such limit.)
14831
14832 Position-independent code requires special support, and therefore works
14833 only on certain machines.  For the 386, GCC supports PIC for System V
14834 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
14835 position-independent.
14836
14837 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14838 are defined to 1.
14839
14840 @item -fPIC
14841 @opindex fPIC
14842 If supported for the target machine, emit position-independent code,
14843 suitable for dynamic linking and avoiding any limit on the size of the
14844 global offset table.  This option makes a difference on the m68k,
14845 PowerPC and SPARC@.
14846
14847 Position-independent code requires special support, and therefore works
14848 only on certain machines.
14849
14850 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14851 are defined to 2.
14852
14853 @item -fpie
14854 @itemx -fPIE
14855 @opindex fpie
14856 @opindex fPIE
14857 These options are similar to @option{-fpic} and @option{-fPIC}, but
14858 generated position independent code can be only linked into executables.
14859 Usually these options are used when @option{-pie} GCC option will be
14860 used during linking.
14861
14862 @option{-fpie} and @option{-fPIE} both define the macros
14863 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
14864 for @option{-fpie} and 2 for @option{-fPIE}.
14865
14866 @item -fno-jump-tables
14867 @opindex fno-jump-tables
14868 Do not use jump tables for switch statements even where it would be
14869 more efficient than other code generation strategies.  This option is
14870 of use in conjunction with @option{-fpic} or @option{-fPIC} for
14871 building code which forms part of a dynamic linker and cannot
14872 reference the address of a jump table.  On some targets, jump tables
14873 do not require a GOT and this option is not needed.
14874
14875 @item -ffixed-@var{reg}
14876 @opindex ffixed
14877 Treat the register named @var{reg} as a fixed register; generated code
14878 should never refer to it (except perhaps as a stack pointer, frame
14879 pointer or in some other fixed role).
14880
14881 @var{reg} must be the name of a register.  The register names accepted
14882 are machine-specific and are defined in the @code{REGISTER_NAMES}
14883 macro in the machine description macro file.
14884
14885 This flag does not have a negative form, because it specifies a
14886 three-way choice.
14887
14888 @item -fcall-used-@var{reg}
14889 @opindex fcall-used
14890 Treat the register named @var{reg} as an allocable register that is
14891 clobbered by function calls.  It may be allocated for temporaries or
14892 variables that do not live across a call.  Functions compiled this way
14893 will not save and restore the register @var{reg}.
14894
14895 It is an error to used this flag with the frame pointer or stack pointer.
14896 Use of this flag for other registers that have fixed pervasive roles in
14897 the machine's execution model will produce disastrous results.
14898
14899 This flag does not have a negative form, because it specifies a
14900 three-way choice.
14901
14902 @item -fcall-saved-@var{reg}
14903 @opindex fcall-saved
14904 Treat the register named @var{reg} as an allocable register saved by
14905 functions.  It may be allocated even for temporaries or variables that
14906 live across a call.  Functions compiled this way will save and restore
14907 the register @var{reg} if they use it.
14908
14909 It is an error to used this flag with the frame pointer or stack pointer.
14910 Use of this flag for other registers that have fixed pervasive roles in
14911 the machine's execution model will produce disastrous results.
14912
14913 A different sort of disaster will result from the use of this flag for
14914 a register in which function values may be returned.
14915
14916 This flag does not have a negative form, because it specifies a
14917 three-way choice.
14918
14919 @item -fpack-struct[=@var{n}]
14920 @opindex fpack-struct
14921 Without a value specified, pack all structure members together without
14922 holes.  When a value is specified (which must be a small power of two), pack
14923 structure members according to this value, representing the maximum
14924 alignment (that is, objects with default alignment requirements larger than
14925 this will be output potentially unaligned at the next fitting location.
14926
14927 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
14928 code that is not binary compatible with code generated without that switch.
14929 Additionally, it makes the code suboptimal.
14930 Use it to conform to a non-default application binary interface.
14931
14932 @item -finstrument-functions
14933 @opindex finstrument-functions
14934 Generate instrumentation calls for entry and exit to functions.  Just
14935 after function entry and just before function exit, the following
14936 profiling functions will be called with the address of the current
14937 function and its call site.  (On some platforms,
14938 @code{__builtin_return_address} does not work beyond the current
14939 function, so the call site information may not be available to the
14940 profiling functions otherwise.)
14941
14942 @smallexample
14943 void __cyg_profile_func_enter (void *this_fn,
14944                                void *call_site);
14945 void __cyg_profile_func_exit  (void *this_fn,
14946                                void *call_site);
14947 @end smallexample
14948
14949 The first argument is the address of the start of the current function,
14950 which may be looked up exactly in the symbol table.
14951
14952 This instrumentation is also done for functions expanded inline in other
14953 functions.  The profiling calls will indicate where, conceptually, the
14954 inline function is entered and exited.  This means that addressable
14955 versions of such functions must be available.  If all your uses of a
14956 function are expanded inline, this may mean an additional expansion of
14957 code size.  If you use @samp{extern inline} in your C code, an
14958 addressable version of such functions must be provided.  (This is
14959 normally the case anyways, but if you get lucky and the optimizer always
14960 expands the functions inline, you might have gotten away without
14961 providing static copies.)
14962
14963 A function may be given the attribute @code{no_instrument_function}, in
14964 which case this instrumentation will not be done.  This can be used, for
14965 example, for the profiling functions listed above, high-priority
14966 interrupt routines, and any functions from which the profiling functions
14967 cannot safely be called (perhaps signal handlers, if the profiling
14968 routines generate output or allocate memory).
14969
14970 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
14971 @opindex finstrument-functions-exclude-file-list
14972
14973 Set the list of functions that are excluded from instrumentation (see
14974 the description of @code{-finstrument-functions}).  If the file that
14975 contains a function definition matches with one of @var{file}, then
14976 that function is not instrumented.  The match is done on substrings:
14977 if the @var{file} parameter is a substring of the file name, it is
14978 considered to be a match.
14979
14980 For example,
14981 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
14982 will exclude any inline function defined in files whose pathnames
14983 contain @code{/bits/stl} or @code{include/sys}.
14984
14985 If, for some reason, you want to include letter @code{','} in one of
14986 @var{sym}, write @code{'\,'}. For example,
14987 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
14988 (note the single quote surrounding the option).
14989
14990 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
14991 @opindex finstrument-functions-exclude-function-list
14992
14993 This is similar to @code{-finstrument-functions-exclude-file-list},
14994 but this option sets the list of function names to be excluded from
14995 instrumentation.  The function name to be matched is its user-visible
14996 name, such as @code{vector<int> blah(const vector<int> &)}, not the
14997 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
14998 match is done on substrings: if the @var{sym} parameter is a substring
14999 of the function name, it is considered to be a match.
15000
15001 @item -fstack-check
15002 @opindex fstack-check
15003 Generate code to verify that you do not go beyond the boundary of the
15004 stack.  You should specify this flag if you are running in an
15005 environment with multiple threads, but only rarely need to specify it in
15006 a single-threaded environment since stack overflow is automatically
15007 detected on nearly all systems if there is only one stack.
15008
15009 Note that this switch does not actually cause checking to be done; the
15010 operating system must do that.  The switch causes generation of code
15011 to ensure that the operating system sees the stack being extended.
15012
15013 @item -fstack-limit-register=@var{reg}
15014 @itemx -fstack-limit-symbol=@var{sym}
15015 @itemx -fno-stack-limit
15016 @opindex fstack-limit-register
15017 @opindex fstack-limit-symbol
15018 @opindex fno-stack-limit
15019 Generate code to ensure that the stack does not grow beyond a certain value,
15020 either the value of a register or the address of a symbol.  If the stack
15021 would grow beyond the value, a signal is raised.  For most targets,
15022 the signal is raised before the stack overruns the boundary, so
15023 it is possible to catch the signal without taking special precautions.
15024
15025 For instance, if the stack starts at absolute address @samp{0x80000000}
15026 and grows downwards, you can use the flags
15027 @option{-fstack-limit-symbol=__stack_limit} and
15028 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
15029 of 128KB@.  Note that this may only work with the GNU linker.
15030
15031 @cindex aliasing of parameters
15032 @cindex parameters, aliased
15033 @item -fargument-alias
15034 @itemx -fargument-noalias
15035 @itemx -fargument-noalias-global
15036 @itemx -fargument-noalias-anything
15037 @opindex fargument-alias
15038 @opindex fargument-noalias
15039 @opindex fargument-noalias-global
15040 @opindex fargument-noalias-anything
15041 Specify the possible relationships among parameters and between
15042 parameters and global data.
15043
15044 @option{-fargument-alias} specifies that arguments (parameters) may
15045 alias each other and may alias global storage.@*
15046 @option{-fargument-noalias} specifies that arguments do not alias
15047 each other, but may alias global storage.@*
15048 @option{-fargument-noalias-global} specifies that arguments do not
15049 alias each other and do not alias global storage.
15050 @option{-fargument-noalias-anything} specifies that arguments do not
15051 alias any other storage.
15052
15053 Each language will automatically use whatever option is required by
15054 the language standard.  You should not need to use these options yourself.
15055
15056 @item -fleading-underscore
15057 @opindex fleading-underscore
15058 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15059 change the way C symbols are represented in the object file.  One use
15060 is to help link with legacy assembly code.
15061
15062 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15063 generate code that is not binary compatible with code generated without that
15064 switch.  Use it to conform to a non-default application binary interface.
15065 Not all targets provide complete support for this switch.
15066
15067 @item -ftls-model=@var{model}
15068 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15069 The @var{model} argument should be one of @code{global-dynamic},
15070 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15071
15072 The default without @option{-fpic} is @code{initial-exec}; with
15073 @option{-fpic} the default is @code{global-dynamic}.
15074
15075 @item -fvisibility=@var{default|internal|hidden|protected}
15076 @opindex fvisibility
15077 Set the default ELF image symbol visibility to the specified option---all
15078 symbols will be marked with this unless overridden within the code.
15079 Using this feature can very substantially improve linking and
15080 load times of shared object libraries, produce more optimized
15081 code, provide near-perfect API export and prevent symbol clashes.
15082 It is @strong{strongly} recommended that you use this in any shared objects
15083 you distribute.
15084
15085 Despite the nomenclature, @code{default} always means public ie;
15086 available to be linked against from outside the shared object.
15087 @code{protected} and @code{internal} are pretty useless in real-world
15088 usage so the only other commonly used option will be @code{hidden}.
15089 The default if @option{-fvisibility} isn't specified is
15090 @code{default}, i.e., make every
15091 symbol public---this causes the same behavior as previous versions of
15092 GCC@.
15093
15094 A good explanation of the benefits offered by ensuring ELF
15095 symbols have the correct visibility is given by ``How To Write
15096 Shared Libraries'' by Ulrich Drepper (which can be found at
15097 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15098 solution made possible by this option to marking things hidden when
15099 the default is public is to make the default hidden and mark things
15100 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15101 and @code{__attribute__ ((visibility("default")))} instead of
15102 @code{__declspec(dllexport)} you get almost identical semantics with
15103 identical syntax.  This is a great boon to those working with
15104 cross-platform projects.
15105
15106 For those adding visibility support to existing code, you may find
15107 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15108 the declarations you wish to set visibility for with (for example)
15109 @samp{#pragma GCC visibility push(hidden)} and
15110 @samp{#pragma GCC visibility pop}.
15111 Bear in mind that symbol visibility should be viewed @strong{as
15112 part of the API interface contract} and thus all new code should
15113 always specify visibility when it is not the default ie; declarations
15114 only for use within the local DSO should @strong{always} be marked explicitly
15115 as hidden as so to avoid PLT indirection overheads---making this
15116 abundantly clear also aids readability and self-documentation of the code.
15117 Note that due to ISO C++ specification requirements, operator new and
15118 operator delete must always be of default visibility.
15119
15120 Be aware that headers from outside your project, in particular system
15121 headers and headers from any other library you use, may not be
15122 expecting to be compiled with visibility other than the default.  You
15123 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15124 before including any such headers.
15125
15126 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15127 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15128 no modifications.  However, this means that calls to @samp{extern}
15129 functions with no explicit visibility will use the PLT, so it is more
15130 effective to use @samp{__attribute ((visibility))} and/or
15131 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15132 declarations should be treated as hidden.
15133
15134 Note that @samp{-fvisibility} does affect C++ vague linkage
15135 entities. This means that, for instance, an exception class that will
15136 be thrown between DSOs must be explicitly marked with default
15137 visibility so that the @samp{type_info} nodes will be unified between
15138 the DSOs.
15139
15140 An overview of these techniques, their benefits and how to use them
15141 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15142
15143 @end table
15144
15145 @c man end
15146
15147 @node Environment Variables
15148 @section Environment Variables Affecting GCC
15149 @cindex environment variables
15150
15151 @c man begin ENVIRONMENT
15152 This section describes several environment variables that affect how GCC
15153 operates.  Some of them work by specifying directories or prefixes to use
15154 when searching for various kinds of files.  Some are used to specify other
15155 aspects of the compilation environment.
15156
15157 Note that you can also specify places to search using options such as
15158 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15159 take precedence over places specified using environment variables, which
15160 in turn take precedence over those specified by the configuration of GCC@.
15161 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15162 GNU Compiler Collection (GCC) Internals}.
15163
15164 @table @env
15165 @item LANG
15166 @itemx LC_CTYPE
15167 @c @itemx LC_COLLATE
15168 @itemx LC_MESSAGES
15169 @c @itemx LC_MONETARY
15170 @c @itemx LC_NUMERIC
15171 @c @itemx LC_TIME
15172 @itemx LC_ALL
15173 @findex LANG
15174 @findex LC_CTYPE
15175 @c @findex LC_COLLATE
15176 @findex LC_MESSAGES
15177 @c @findex LC_MONETARY
15178 @c @findex LC_NUMERIC
15179 @c @findex LC_TIME
15180 @findex LC_ALL
15181 @cindex locale
15182 These environment variables control the way that GCC uses
15183 localization information that allow GCC to work with different
15184 national conventions.  GCC inspects the locale categories
15185 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15186 so.  These locale categories can be set to any value supported by your
15187 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15188 Kingdom encoded in UTF-8.
15189
15190 The @env{LC_CTYPE} environment variable specifies character
15191 classification.  GCC uses it to determine the character boundaries in
15192 a string; this is needed for some multibyte encodings that contain quote
15193 and escape characters that would otherwise be interpreted as a string
15194 end or escape.
15195
15196 The @env{LC_MESSAGES} environment variable specifies the language to
15197 use in diagnostic messages.
15198
15199 If the @env{LC_ALL} environment variable is set, it overrides the value
15200 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15201 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15202 environment variable.  If none of these variables are set, GCC
15203 defaults to traditional C English behavior.
15204
15205 @item TMPDIR
15206 @findex TMPDIR
15207 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15208 files.  GCC uses temporary files to hold the output of one stage of
15209 compilation which is to be used as input to the next stage: for example,
15210 the output of the preprocessor, which is the input to the compiler
15211 proper.
15212
15213 @item GCC_EXEC_PREFIX
15214 @findex GCC_EXEC_PREFIX
15215 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15216 names of the subprograms executed by the compiler.  No slash is added
15217 when this prefix is combined with the name of a subprogram, but you can
15218 specify a prefix that ends with a slash if you wish.
15219
15220 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15221 an appropriate prefix to use based on the pathname it was invoked with.
15222
15223 If GCC cannot find the subprogram using the specified prefix, it
15224 tries looking in the usual places for the subprogram.
15225
15226 The default value of @env{GCC_EXEC_PREFIX} is
15227 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15228 the installed compiler. In many cases @var{prefix} is the value
15229 of @code{prefix} when you ran the @file{configure} script.
15230
15231 Other prefixes specified with @option{-B} take precedence over this prefix.
15232
15233 This prefix is also used for finding files such as @file{crt0.o} that are
15234 used for linking.
15235
15236 In addition, the prefix is used in an unusual way in finding the
15237 directories to search for header files.  For each of the standard
15238 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15239 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15240 replacing that beginning with the specified prefix to produce an
15241 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15242 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15243 These alternate directories are searched first; the standard directories
15244 come next. If a standard directory begins with the configured
15245 @var{prefix} then the value of @var{prefix} is replaced by
15246 @env{GCC_EXEC_PREFIX} when looking for header files.
15247
15248 @item COMPILER_PATH
15249 @findex COMPILER_PATH
15250 The value of @env{COMPILER_PATH} is a colon-separated list of
15251 directories, much like @env{PATH}.  GCC tries the directories thus
15252 specified when searching for subprograms, if it can't find the
15253 subprograms using @env{GCC_EXEC_PREFIX}.
15254
15255 @item LIBRARY_PATH
15256 @findex LIBRARY_PATH
15257 The value of @env{LIBRARY_PATH} is a colon-separated list of
15258 directories, much like @env{PATH}.  When configured as a native compiler,
15259 GCC tries the directories thus specified when searching for special
15260 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15261 using GCC also uses these directories when searching for ordinary
15262 libraries for the @option{-l} option (but directories specified with
15263 @option{-L} come first).
15264
15265 @item LANG
15266 @findex LANG
15267 @cindex locale definition
15268 This variable is used to pass locale information to the compiler.  One way in
15269 which this information is used is to determine the character set to be used
15270 when character literals, string literals and comments are parsed in C and C++.
15271 When the compiler is configured to allow multibyte characters,
15272 the following values for @env{LANG} are recognized:
15273
15274 @table @samp
15275 @item C-JIS
15276 Recognize JIS characters.
15277 @item C-SJIS
15278 Recognize SJIS characters.
15279 @item C-EUCJP
15280 Recognize EUCJP characters.
15281 @end table
15282
15283 If @env{LANG} is not defined, or if it has some other value, then the
15284 compiler will use mblen and mbtowc as defined by the default locale to
15285 recognize and translate multibyte characters.
15286 @end table
15287
15288 @noindent
15289 Some additional environments variables affect the behavior of the
15290 preprocessor.
15291
15292 @include cppenv.texi
15293
15294 @c man end
15295
15296 @node Precompiled Headers
15297 @section Using Precompiled Headers
15298 @cindex precompiled headers
15299 @cindex speed of compilation
15300
15301 Often large projects have many header files that are included in every
15302 source file.  The time the compiler takes to process these header files
15303 over and over again can account for nearly all of the time required to
15304 build the project.  To make builds faster, GCC allows users to
15305 `precompile' a header file; then, if builds can use the precompiled
15306 header file they will be much faster.
15307
15308 To create a precompiled header file, simply compile it as you would any
15309 other file, if necessary using the @option{-x} option to make the driver
15310 treat it as a C or C++ header file.  You will probably want to use a
15311 tool like @command{make} to keep the precompiled header up-to-date when
15312 the headers it contains change.
15313
15314 A precompiled header file will be searched for when @code{#include} is
15315 seen in the compilation.  As it searches for the included file
15316 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15317 compiler looks for a precompiled header in each directory just before it
15318 looks for the include file in that directory.  The name searched for is
15319 the name specified in the @code{#include} with @samp{.gch} appended.  If
15320 the precompiled header file can't be used, it is ignored.
15321
15322 For instance, if you have @code{#include "all.h"}, and you have
15323 @file{all.h.gch} in the same directory as @file{all.h}, then the
15324 precompiled header file will be used if possible, and the original
15325 header will be used otherwise.
15326
15327 Alternatively, you might decide to put the precompiled header file in a
15328 directory and use @option{-I} to ensure that directory is searched
15329 before (or instead of) the directory containing the original header.
15330 Then, if you want to check that the precompiled header file is always
15331 used, you can put a file of the same name as the original header in this
15332 directory containing an @code{#error} command.
15333
15334 This also works with @option{-include}.  So yet another way to use
15335 precompiled headers, good for projects not designed with precompiled
15336 header files in mind, is to simply take most of the header files used by
15337 a project, include them from another header file, precompile that header
15338 file, and @option{-include} the precompiled header.  If the header files
15339 have guards against multiple inclusion, they will be skipped because
15340 they've already been included (in the precompiled header).
15341
15342 If you need to precompile the same header file for different
15343 languages, targets, or compiler options, you can instead make a
15344 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15345 header in the directory, perhaps using @option{-o}.  It doesn't matter
15346 what you call the files in the directory, every precompiled header in
15347 the directory will be considered.  The first precompiled header
15348 encountered in the directory that is valid for this compilation will
15349 be used; they're searched in no particular order.
15350
15351 There are many other possibilities, limited only by your imagination,
15352 good sense, and the constraints of your build system.
15353
15354 A precompiled header file can be used only when these conditions apply:
15355
15356 @itemize
15357 @item
15358 Only one precompiled header can be used in a particular compilation.
15359
15360 @item
15361 A precompiled header can't be used once the first C token is seen.  You
15362 can have preprocessor directives before a precompiled header; you can
15363 even include a precompiled header from inside another header, so long as
15364 there are no C tokens before the @code{#include}.
15365
15366 @item
15367 The precompiled header file must be produced for the same language as
15368 the current compilation.  You can't use a C precompiled header for a C++
15369 compilation.
15370
15371 @item
15372 The precompiled header file must have been produced by the same compiler
15373 binary as the current compilation is using.
15374
15375 @item
15376 Any macros defined before the precompiled header is included must
15377 either be defined in the same way as when the precompiled header was
15378 generated, or must not affect the precompiled header, which usually
15379 means that they don't appear in the precompiled header at all.
15380
15381 The @option{-D} option is one way to define a macro before a
15382 precompiled header is included; using a @code{#define} can also do it.
15383 There are also some options that define macros implicitly, like
15384 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15385 defined this way.
15386
15387 @item If debugging information is output when using the precompiled
15388 header, using @option{-g} or similar, the same kind of debugging information
15389 must have been output when building the precompiled header.  However,
15390 a precompiled header built using @option{-g} can be used in a compilation
15391 when no debugging information is being output.
15392
15393 @item The same @option{-m} options must generally be used when building
15394 and using the precompiled header.  @xref{Submodel Options},
15395 for any cases where this rule is relaxed.
15396
15397 @item Each of the following options must be the same when building and using
15398 the precompiled header:
15399
15400 @gccoptlist{-fexceptions -funit-at-a-time}
15401
15402 @item
15403 Some other command-line options starting with @option{-f},
15404 @option{-p}, or @option{-O} must be defined in the same way as when
15405 the precompiled header was generated.  At present, it's not clear
15406 which options are safe to change and which are not; the safest choice
15407 is to use exactly the same options when generating and using the
15408 precompiled header.  The following are known to be safe:
15409
15410 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15411 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15412 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15413 -pedantic-errors}
15414
15415 @end itemize
15416
15417 For all of these except the last, the compiler will automatically
15418 ignore the precompiled header if the conditions aren't met.  If you
15419 find an option combination that doesn't work and doesn't cause the
15420 precompiled header to be ignored, please consider filing a bug report,
15421 see @ref{Bugs}.
15422
15423 If you do use differing options when generating and using the
15424 precompiled header, the actual behavior will be a mixture of the
15425 behavior for the options.  For instance, if you use @option{-g} to
15426 generate the precompiled header but not when using it, you may or may
15427 not get debugging information for routines in the precompiled header.
15428
15429 @node Running Protoize
15430 @section Running Protoize
15431
15432 The program @code{protoize} is an optional part of GCC@.  You can use
15433 it to add prototypes to a program, thus converting the program to ISO
15434 C in one respect.  The companion program @code{unprotoize} does the
15435 reverse: it removes argument types from any prototypes that are found.
15436
15437 When you run these programs, you must specify a set of source files as
15438 command line arguments.  The conversion programs start out by compiling
15439 these files to see what functions they define.  The information gathered
15440 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15441
15442 After scanning comes actual conversion.  The specified files are all
15443 eligible to be converted; any files they include (whether sources or
15444 just headers) are eligible as well.
15445
15446 But not all the eligible files are converted.  By default,
15447 @code{protoize} and @code{unprotoize} convert only source and header
15448 files in the current directory.  You can specify additional directories
15449 whose files should be converted with the @option{-d @var{directory}}
15450 option.  You can also specify particular files to exclude with the
15451 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15452 directory name matches one of the specified directory names, and its
15453 name within the directory has not been excluded.
15454
15455 Basic conversion with @code{protoize} consists of rewriting most
15456 function definitions and function declarations to specify the types of
15457 the arguments.  The only ones not rewritten are those for varargs
15458 functions.
15459
15460 @code{protoize} optionally inserts prototype declarations at the
15461 beginning of the source file, to make them available for any calls that
15462 precede the function's definition.  Or it can insert prototype
15463 declarations with block scope in the blocks where undeclared functions
15464 are called.
15465
15466 Basic conversion with @code{unprotoize} consists of rewriting most
15467 function declarations to remove any argument types, and rewriting
15468 function definitions to the old-style pre-ISO form.
15469
15470 Both conversion programs print a warning for any function declaration or
15471 definition that they can't convert.  You can suppress these warnings
15472 with @option{-q}.
15473
15474 The output from @code{protoize} or @code{unprotoize} replaces the
15475 original source file.  The original file is renamed to a name ending
15476 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15477 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15478 for DOS) file already exists, then the source file is simply discarded.
15479
15480 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15481 scan the program and collect information about the functions it uses.
15482 So neither of these programs will work until GCC is installed.
15483
15484 Here is a table of the options you can use with @code{protoize} and
15485 @code{unprotoize}.  Each option works with both programs unless
15486 otherwise stated.
15487
15488 @table @code
15489 @item -B @var{directory}
15490 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15491 usual directory (normally @file{/usr/local/lib}).  This file contains
15492 prototype information about standard system functions.  This option
15493 applies only to @code{protoize}.
15494
15495 @item -c @var{compilation-options}
15496 Use @var{compilation-options} as the options when running @command{gcc} to
15497 produce the @samp{.X} files.  The special option @option{-aux-info} is
15498 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15499
15500 Note that the compilation options must be given as a single argument to
15501 @code{protoize} or @code{unprotoize}.  If you want to specify several
15502 @command{gcc} options, you must quote the entire set of compilation options
15503 to make them a single word in the shell.
15504
15505 There are certain @command{gcc} arguments that you cannot use, because they
15506 would produce the wrong kind of output.  These include @option{-g},
15507 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15508 the @var{compilation-options}, they are ignored.
15509
15510 @item -C
15511 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15512 systems) instead of @samp{.c}.  This is convenient if you are converting
15513 a C program to C++.  This option applies only to @code{protoize}.
15514
15515 @item -g
15516 Add explicit global declarations.  This means inserting explicit
15517 declarations at the beginning of each source file for each function
15518 that is called in the file and was not declared.  These declarations
15519 precede the first function definition that contains a call to an
15520 undeclared function.  This option applies only to @code{protoize}.
15521
15522 @item -i @var{string}
15523 Indent old-style parameter declarations with the string @var{string}.
15524 This option applies only to @code{protoize}.
15525
15526 @code{unprotoize} converts prototyped function definitions to old-style
15527 function definitions, where the arguments are declared between the
15528 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15529 uses five spaces as the indentation.  If you want to indent with just
15530 one space instead, use @option{-i " "}.
15531
15532 @item -k
15533 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15534 is finished.
15535
15536 @item -l
15537 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15538 a prototype declaration for each function in each block which calls the
15539 function without any declaration.  This option applies only to
15540 @code{protoize}.
15541
15542 @item -n
15543 Make no real changes.  This mode just prints information about the conversions
15544 that would have been done without @option{-n}.
15545
15546 @item -N
15547 Make no @samp{.save} files.  The original files are simply deleted.
15548 Use this option with caution.
15549
15550 @item -p @var{program}
15551 Use the program @var{program} as the compiler.  Normally, the name
15552 @file{gcc} is used.
15553
15554 @item -q
15555 Work quietly.  Most warnings are suppressed.
15556
15557 @item -v
15558 Print the version number, just like @option{-v} for @command{gcc}.
15559 @end table
15560
15561 If you need special compiler options to compile one of your program's
15562 source files, then you should generate that file's @samp{.X} file
15563 specially, by running @command{gcc} on that source file with the
15564 appropriate options and the option @option{-aux-info}.  Then run
15565 @code{protoize} on the entire set of files.  @code{protoize} will use
15566 the existing @samp{.X} file because it is newer than the source file.
15567 For example:
15568
15569 @smallexample
15570 gcc -Dfoo=bar file1.c -aux-info file1.X
15571 protoize *.c
15572 @end smallexample
15573
15574 @noindent
15575 You need to include the special files along with the rest in the
15576 @code{protoize} command, even though their @samp{.X} files already
15577 exist, because otherwise they won't get converted.
15578
15579 @xref{Protoize Caveats}, for more information on how to use
15580 @code{protoize} successfully.