OSDN Git Service

2008-01-31 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / doc / invoke.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2 @c 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
6
7 @ignore
8 @c man begin INCLUDE
9 @include gcc-vers.texi
10 @c man end
11
12 @c man begin COPYRIGHT
13 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
14 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
15 Free Software Foundation, Inc.
16
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.2 or
19 any later version published by the Free Software Foundation; with the
20 Invariant Sections being ``GNU General Public License'' and ``Funding
21 Free Software'', the Front-Cover texts being (a) (see below), and with
22 the Back-Cover Texts being (b) (see below).  A copy of the license is
23 included in the gfdl(7) man page.
24
25 (a) The FSF's Front-Cover Text is:
26
27      A GNU Manual
28
29 (b) The FSF's Back-Cover Text is:
30
31      You have freedom to copy and modify this GNU Manual, like GNU
32      software.  Copies published by the Free Software Foundation raise
33      funds for GNU development.
34 @c man end
35 @c Set file name and title for the man page.
36 @setfilename gcc
37 @settitle GNU project C and C++ compiler
38 @c man begin SYNOPSIS
39 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
40     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
41     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
42     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
43     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
44     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
45     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
46
47 Only the most useful options are listed here; see below for the
48 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
49 @c man end
50 @c man begin SEEALSO
51 gpl(7), gfdl(7), fsf-funding(7),
52 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
53 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
54 @file{ld}, @file{binutils} and @file{gdb}.
55 @c man end
56 @c man begin BUGS
57 For instructions on reporting bugs, see
58 @w{@value{BUGURL}}.
59 @c man end
60 @c man begin AUTHOR
61 See the Info entry for @command{gcc}, or
62 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
63 for contributors to GCC@.
64 @c man end
65 @end ignore
66
67 @node Invoking GCC
68 @chapter GCC Command Options
69 @cindex GCC command options
70 @cindex command options
71 @cindex options, GCC command
72
73 @c man begin DESCRIPTION
74 When you invoke GCC, it normally does preprocessing, compilation,
75 assembly and linking.  The ``overall options'' allow you to stop this
76 process at an intermediate stage.  For example, the @option{-c} option
77 says not to run the linker.  Then the output consists of object files
78 output by the assembler.
79
80 Other options are passed on to one stage of processing.  Some options
81 control the preprocessor and others the compiler itself.  Yet other
82 options control the assembler and linker; most of these are not
83 documented here, since you rarely need to use any of them.
84
85 @cindex C compilation options
86 Most of the command line options that you can use with GCC are useful
87 for C programs; when an option is only useful with another language
88 (usually C++), the explanation says so explicitly.  If the description
89 for a particular option does not mention a source language, you can use
90 that option with all supported languages.
91
92 @cindex C++ compilation options
93 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
94 options for compiling C++ programs.
95
96 @cindex grouping options
97 @cindex options, grouping
98 The @command{gcc} program accepts options and file names as operands.  Many
99 options have multi-letter names; therefore multiple single-letter options
100 may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
101 -r}}.
102
103 @cindex order of options
104 @cindex options, order
105 You can mix options and other arguments.  For the most part, the order
106 you use doesn't matter.  Order does matter when you use several
107 options of the same kind; for example, if you specify @option{-L} more
108 than once, the directories are searched in the order specified.  Also,
109 the placement of the @option{-l} option is significant.
110
111 Many options have long names starting with @samp{-f} or with
112 @samp{-W}---for example,
113 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
114 these have both positive and negative forms; the negative form of
115 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
116 only one of these two forms, whichever one is not the default.
117
118 @c man end
119
120 @xref{Option Index}, for an index to GCC's options.
121
122 @menu
123 * Option Summary::      Brief list of all options, without explanations.
124 * Overall Options::     Controlling the kind of output:
125                         an executable, object files, assembler files,
126                         or preprocessed source.
127 * Invoking G++::        Compiling C++ programs.
128 * C Dialect Options::   Controlling the variant of C language compiled.
129 * C++ Dialect Options:: Variations on C++.
130 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
131                         and Objective-C++.
132 * Language Independent Options:: Controlling how diagnostics should be
133                         formatted.
134 * Warning Options::     How picky should the compiler be?
135 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
136 * Optimize Options::    How much optimization?
137 * Preprocessor Options:: Controlling header files and macro definitions.
138                          Also, getting dependency information for Make.
139 * Assembler Options::   Passing options to the assembler.
140 * Link Options::        Specifying libraries and so on.
141 * Directory Options::   Where to find header files and libraries.
142                         Where to find the compiler executable files.
143 * Spec Files::          How to pass switches to sub-processes.
144 * Target Options::      Running a cross-compiler, or an old version of GCC.
145 * Submodel Options::    Specifying minor hardware or convention variations,
146                         such as 68010 vs 68020.
147 * Code Gen Options::    Specifying conventions for function calls, data layout
148                         and register usage.
149 * Environment Variables:: Env vars that affect GCC.
150 * Precompiled Headers:: Compiling a header once, and using it many times.
151 * Running Protoize::    Automatically adding or removing function prototypes.
152 @end menu
153
154 @c man begin OPTIONS
155
156 @node Option Summary
157 @section Option Summary
158
159 Here is a summary of all the options, grouped by type.  Explanations are
160 in the following sections.
161
162 @table @emph
163 @item Overall Options
164 @xref{Overall Options,,Options Controlling the Kind of Output}.
165 @gccoptlist{-c  -S  -E  -o @var{file}  -combine  -pipe  -pass-exit-codes  @gol
166 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{]}  --target-help  @gol
167 --version @@@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 -Wignored-qualifiers @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 -fno-merge-debug-strings -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{
319 -falign-functions[=@var{n}] -falign-jumps[=@var{n}] @gol
320 -falign-labels[=@var{n}] -falign-loops[=@var{n}] -fassociative-math @gol
321 -fauto-inc-dec -fbranch-probabilities -fbranch-target-load-optimize @gol
322 -fbranch-target-load-optimize2 -fbtr-bb-exclusive -fcaller-saves @gol
323 -fcheck-data-deps -fcprop-registers -fcrossjumping -fcse-follow-jumps @gol
324 -fcse-skip-blocks -fcx-limited-range -fdata-sections -fdce -fdce @gol
325 -fdelayed-branch -fdelete-null-pointer-checks -fdse -fdse @gol
326 -fearly-inlining -fexpensive-optimizations -ffast-math @gol
327 -ffinite-math-only -ffloat-store -fforward-propagate @gol
328 -ffunction-sections -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm @gol
329 -fgcse-sm -fif-conversion -fif-conversion2 -finline-functions @gol
330 -finline-functions-called-once -finline-limit=@var{n} @gol
331 -finline-small-functions -fipa-cp -fipa-marix-reorg -fipa-pta @gol 
332 -fipa-pure-const -fipa-reference -fipa-struct-reorg @gol
333 -fipa-type-escape -fivopts -fkeep-inline-functions -fkeep-static-consts @gol
334 -fmerge-all-constants -fmerge-constants -fmodulo-sched @gol
335 -fmodulo-sched-allow-regmoves -fmove-loop-invariants -fmudflap @gol
336 -fmudflapir -fmudflapth -fno-branch-count-reg -fno-default-inline @gol
337 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
338 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
339 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
340 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
341 -fomit-frame-pointer -foptimize-register-move -foptimize-sibling-calls @gol
342 -fpeel-loops -fpredictive-commoning -fprefetch-loop-arrays @gol
343 -fprofile-generate -fprofile-use -fprofile-values -freciprocal-math @gol
344 -fregmove -frename-registers -freorder-blocks @gol
345 -freorder-blocks-and-partition -freorder-functions @gol
346 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
347 -frounding-math -frtl-abstract-sequences -fsched2-use-superblocks @gol
348 -fsched2-use-traces -fsched-spec-load -fsched-spec-load-dangerous @gol
349 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
350 -fschedule-insns -fschedule-insns2 -fsection-anchors -fsee @gol
351 -fsignaling-nans -fsingle-precision-constant -fsplit-ivs-in-unroller @gol
352 -fsplit-wide-types -fstack-protector -fstack-protector-all @gol
353 -fstrict-aliasing -fstrict-overflow -fthread-jumps -ftracer -ftree-ccp @gol
354 -ftree-ch -ftree-copy-prop -ftree-copyrename -ftree-dce @gol
355 -ftree-dominator-opts -ftree-dse -ftree-fre -ftree-loop-im @gol
356 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
357 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-reassoc -ftree-salias @gol
358 -ftree-sink -ftree-sra -ftree-store-ccp -ftree-ter @gol
359 -ftree-vect-loop-version -ftree-vectorize -ftree-vrp -funit-at-a-time @gol
360 -funroll-all-loops -funroll-loops -funsafe-loop-optimizations @gol
361 -funsafe-math-optimizations -funswitch-loops @gol
362 -fvariable-expansion-in-unroller -fvect-cost-model -fvpt -fweb @gol
363 -fwhole-program @gol
364 --param @var{name}=@var{value}
365 -O  -O0  -O1  -O2  -O3  -Os}
366
367 @item Preprocessor Options
368 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
369 @gccoptlist{-A@var{question}=@var{answer} @gol
370 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
371 -C  -dD  -dI  -dM  -dN @gol
372 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
373 -idirafter @var{dir} @gol
374 -include @var{file}  -imacros @var{file} @gol
375 -iprefix @var{file}  -iwithprefix @var{dir} @gol
376 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
377 -imultilib @var{dir} -isysroot @var{dir} @gol
378 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
379 -P  -fworking-directory  -remap @gol
380 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
381 -Xpreprocessor @var{option}}
382
383 @item Assembler Option
384 @xref{Assembler Options,,Passing Options to the Assembler}.
385 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
386
387 @item Linker Options
388 @xref{Link Options,,Options for Linking}.
389 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
390 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
391 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
392 -Wl,@var{option}  -Xlinker @var{option} @gol
393 -u @var{symbol}}
394
395 @item Directory Options
396 @xref{Directory Options,,Options for Directory Search}.
397 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
398 -specs=@var{file}  -I- --sysroot=@var{dir}}
399
400 @item Target Options
401 @c I wrote this xref this way to avoid overfull hbox. -- rms
402 @xref{Target Options}.
403 @gccoptlist{-V @var{version}  -b @var{machine}}
404
405 @item Machine Dependent Options
406 @xref{Submodel Options,,Hardware Models and Configurations}.
407 @c This list is ordered alphanumerically by subsection name.
408 @c Try and put the significant identifier (CPU or system) first,
409 @c so users have a clue at guessing where the ones they want will be.
410
411 @emph{ARC Options}
412 @gccoptlist{-EB  -EL @gol
413 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
414 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
415
416 @emph{ARM Options}
417 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
418 -mabi=@var{name} @gol
419 -mapcs-stack-check  -mno-apcs-stack-check @gol
420 -mapcs-float  -mno-apcs-float @gol
421 -mapcs-reentrant  -mno-apcs-reentrant @gol
422 -msched-prolog  -mno-sched-prolog @gol
423 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
424 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
425 -mthumb-interwork  -mno-thumb-interwork @gol
426 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
427 -mstructure-size-boundary=@var{n} @gol
428 -mabort-on-noreturn @gol
429 -mlong-calls  -mno-long-calls @gol
430 -msingle-pic-base  -mno-single-pic-base @gol
431 -mpic-register=@var{reg} @gol
432 -mnop-fun-dllimport @gol
433 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
434 -mpoke-function-name @gol
435 -mthumb  -marm @gol
436 -mtpcs-frame  -mtpcs-leaf-frame @gol
437 -mcaller-super-interworking  -mcallee-super-interworking @gol
438 -mtp=@var{name}}
439
440 @emph{AVR Options}
441 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
442 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
443
444 @emph{Blackfin Options}
445 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
446 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
447 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
448 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
449 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
450 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
451 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
452 -mfast-fp -minline-plt}
453
454 @emph{CRIS Options}
455 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
456 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
457 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
458 -mstack-align  -mdata-align  -mconst-align @gol
459 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
460 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
461 -mmul-bug-workaround  -mno-mul-bug-workaround}
462
463 @emph{CRX Options}
464 @gccoptlist{-mmac -mpush-args}
465
466 @emph{Darwin Options}
467 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
468 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
469 -client_name  -compatibility_version  -current_version @gol
470 -dead_strip @gol
471 -dependency-file  -dylib_file  -dylinker_install_name @gol
472 -dynamic  -dynamiclib  -exported_symbols_list @gol
473 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
474 -force_flat_namespace  -headerpad_max_install_names @gol
475 -iframework @gol
476 -image_base  -init  -install_name  -keep_private_externs @gol
477 -multi_module  -multiply_defined  -multiply_defined_unused @gol
478 -noall_load   -no_dead_strip_inits_and_terms @gol
479 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
480 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
481 -private_bundle  -read_only_relocs  -sectalign @gol
482 -sectobjectsymbols  -whyload  -seg1addr @gol
483 -sectcreate  -sectobjectsymbols  -sectorder @gol
484 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
485 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
486 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
487 -single_module  -static  -sub_library  -sub_umbrella @gol
488 -twolevel_namespace  -umbrella  -undefined @gol
489 -unexported_symbols_list  -weak_reference_mismatches @gol
490 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
491 -mkernel -mone-byte-bool}
492
493 @emph{DEC Alpha Options}
494 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
495 -mieee  -mieee-with-inexact  -mieee-conformant @gol
496 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
497 -mtrap-precision=@var{mode}  -mbuild-constants @gol
498 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
499 -mbwx  -mmax  -mfix  -mcix @gol
500 -mfloat-vax  -mfloat-ieee @gol
501 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
502 -msmall-text  -mlarge-text @gol
503 -mmemory-latency=@var{time}}
504
505 @emph{DEC Alpha/VMS Options}
506 @gccoptlist{-mvms-return-codes}
507
508 @emph{FRV Options}
509 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
510 -mhard-float  -msoft-float @gol
511 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
512 -mdouble  -mno-double @gol
513 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
514 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
515 -mlinked-fp  -mlong-calls  -malign-labels @gol
516 -mlibrary-pic  -macc-4  -macc-8 @gol
517 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
518 -moptimize-membar -mno-optimize-membar @gol
519 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
520 -mvliw-branch  -mno-vliw-branch @gol
521 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
522 -mno-nested-cond-exec  -mtomcat-stats @gol
523 -mTLS -mtls @gol
524 -mcpu=@var{cpu}}
525
526 @emph{GNU/Linux Options}
527 @gccoptlist{-muclibc}
528
529 @emph{H8/300 Options}
530 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
531
532 @emph{HPPA Options}
533 @gccoptlist{-march=@var{architecture-type} @gol
534 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
535 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
536 -mfixed-range=@var{register-range} @gol
537 -mjump-in-delay -mlinker-opt -mlong-calls @gol
538 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
539 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
540 -mno-jump-in-delay  -mno-long-load-store @gol
541 -mno-portable-runtime  -mno-soft-float @gol
542 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
543 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
544 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
545 -munix=@var{unix-std}  -nolibdld  -static  -threads}
546
547 @emph{i386 and x86-64 Options}
548 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
549 -mfpmath=@var{unit} @gol
550 -masm=@var{dialect}  -mno-fancy-math-387 @gol
551 -mno-fp-ret-in-387  -msoft-float @gol
552 -mno-wide-multiply  -mrtd  -malign-double @gol
553 -mpreferred-stack-boundary=@var{num} -mcx16 -msahf -mrecip @gol
554 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 @gol
555 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
556 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
557 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
558 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
559 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
560 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
561 -mcmodel=@var{code-model} @gol
562 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
563 -mfused-madd -mno-fused-madd}
564
565 @emph{IA-64 Options}
566 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
567 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
568 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
569 -minline-float-divide-max-throughput @gol
570 -minline-int-divide-min-latency @gol
571 -minline-int-divide-max-throughput  @gol
572 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
573 -mno-dwarf2-asm -mearly-stop-bits @gol
574 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
575 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
576 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
577 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
578 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
579 -mno-sched-prefer-non-data-spec-insns @gol
580 -mno-sched-prefer-non-control-spec-insns @gol
581 -mno-sched-count-spec-in-critical-path}
582
583 @emph{M32R/D Options}
584 @gccoptlist{-m32r2 -m32rx -m32r @gol
585 -mdebug @gol
586 -malign-loops -mno-align-loops @gol
587 -missue-rate=@var{number} @gol
588 -mbranch-cost=@var{number} @gol
589 -mmodel=@var{code-size-model-type} @gol
590 -msdata=@var{sdata-type} @gol
591 -mno-flush-func -mflush-func=@var{name} @gol
592 -mno-flush-trap -mflush-trap=@var{number} @gol
593 -G @var{num}}
594
595 @emph{M32C Options}
596 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
597
598 @emph{M680x0 Options}
599 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
600 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
601 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
602 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
603 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
604 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
605 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
606 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library}
607
608 @emph{M68hc1x Options}
609 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
610 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
611 -msoft-reg-count=@var{count}}
612
613 @emph{MCore Options}
614 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
615 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
616 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
617 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
618 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
619
620 @emph{MIPS Options}
621 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
622 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips64 @gol
623 -mips16  -mno-mips16  -mflip-mips16 @gol
624 -minterlink-mips16  -mno-interlink-mips16 @gol
625 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
626 -mshared  -mno-shared  -mxgot  -mno-xgot  -mgp32  -mgp64 @gol
627 -mfp32  -mfp64  -mhard-float  -msoft-float @gol
628 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
629 -msmartmips  -mno-smartmips @gol
630 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
631 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
632 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
633 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
634 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
635 -membedded-data  -mno-embedded-data @gol
636 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
637 -mcode-readable=@var{setting} @gol
638 -msplit-addresses  -mno-split-addresses @gol
639 -mexplicit-relocs  -mno-explicit-relocs @gol
640 -mcheck-zero-division  -mno-check-zero-division @gol
641 -mdivide-traps  -mdivide-breaks @gol
642 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
643 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
644 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
645 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
646 -mfix-sb1  -mno-fix-sb1 @gol
647 -mflush-func=@var{func}  -mno-flush-func @gol
648 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
649 -mfp-exceptions -mno-fp-exceptions @gol
650 -mvr4130-align -mno-vr4130-align}
651
652 @emph{MMIX Options}
653 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
654 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
655 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
656 -mno-base-addresses  -msingle-exit  -mno-single-exit}
657
658 @emph{MN10300 Options}
659 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
660 -mam33  -mno-am33 @gol
661 -mam33-2  -mno-am33-2 @gol
662 -mreturn-pointer-on-d0 @gol
663 -mno-crt0  -mrelax}
664
665 @emph{MT Options}
666 @gccoptlist{-mno-crt0 -mbacc -msim @gol
667 -march=@var{cpu-type} }
668
669 @emph{PDP-11 Options}
670 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
671 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
672 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
673 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
674 -mbranch-expensive  -mbranch-cheap @gol
675 -msplit  -mno-split  -munix-asm  -mdec-asm}
676
677 @emph{PowerPC Options}
678 See RS/6000 and PowerPC Options.
679
680 @emph{RS/6000 and PowerPC Options}
681 @gccoptlist{-mcpu=@var{cpu-type} @gol
682 -mtune=@var{cpu-type} @gol
683 -mpower  -mno-power  -mpower2  -mno-power2 @gol
684 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
685 -maltivec  -mno-altivec @gol
686 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
687 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
688 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
689 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
690 -mnew-mnemonics  -mold-mnemonics @gol
691 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
692 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
693 -malign-power  -malign-natural @gol
694 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
695 -mstring  -mno-string  -mupdate  -mno-update @gol
696 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
697 -mstrict-align  -mno-strict-align  -mrelocatable @gol
698 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
699 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
700 -mdynamic-no-pic  -maltivec  -mswdiv @gol
701 -mprioritize-restricted-insns=@var{priority} @gol
702 -msched-costly-dep=@var{dependence_type} @gol
703 -minsert-sched-nops=@var{scheme} @gol
704 -mcall-sysv  -mcall-netbsd @gol
705 -maix-struct-return  -msvr4-struct-return @gol
706 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
707 -misel -mno-isel @gol
708 -misel=yes  -misel=no @gol
709 -mspe -mno-spe @gol
710 -mspe=yes  -mspe=no @gol
711 -mpaired @gol
712 -mvrsave -mno-vrsave @gol
713 -mmulhw -mno-mulhw @gol
714 -mdlmzb -mno-dlmzb @gol
715 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
716 -mprototype  -mno-prototype @gol
717 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
718 -msdata=@var{opt}  -mvxworks  -mwindiss  -G @var{num}  -pthread}
719
720 @emph{S/390 and zSeries Options}
721 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
722 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
723 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
724 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
725 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
726 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
727 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
728
729 @emph{Score Options}
730 @gccoptlist{-meb -mel @gol
731 -mnhwloop @gol
732 -muls @gol
733 -mmac @gol
734 -mscore5 -mscore5u -mscore7 -mscore7d}
735
736 @emph{SH Options}
737 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
738 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
739 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
740 -m5-64media  -m5-64media-nofpu @gol
741 -m5-32media  -m5-32media-nofpu @gol
742 -m5-compact  -m5-compact-nofpu @gol
743 -mb  -ml  -mdalign  -mrelax @gol
744 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
745 -mieee  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
746 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
747 -mdivsi3_libfunc=@var{name}  @gol
748 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
749  -minvalid-symbols}
750
751 @emph{SPARC Options}
752 @gccoptlist{-mcpu=@var{cpu-type} @gol
753 -mtune=@var{cpu-type} @gol
754 -mcmodel=@var{code-model} @gol
755 -m32  -m64  -mapp-regs  -mno-app-regs @gol
756 -mfaster-structs  -mno-faster-structs @gol
757 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
758 -mhard-quad-float  -msoft-quad-float @gol
759 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
760 -mstack-bias  -mno-stack-bias @gol
761 -munaligned-doubles  -mno-unaligned-doubles @gol
762 -mv8plus  -mno-v8plus  -mvis  -mno-vis
763 -threads -pthreads -pthread}
764
765 @emph{SPU Options}
766 @gccoptlist{-mwarn-reloc -merror-reloc @gol
767 -msafe-dma -munsafe-dma @gol
768 -mbranch-hints @gol
769 -msmall-mem -mlarge-mem -mstdmain @gol
770 -mfixed-range=@var{register-range}}
771
772 @emph{System V Options}
773 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
774
775 @emph{V850 Options}
776 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
777 -mprolog-function  -mno-prolog-function  -mspace @gol
778 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
779 -mapp-regs  -mno-app-regs @gol
780 -mdisable-callt  -mno-disable-callt @gol
781 -mv850e1 @gol
782 -mv850e @gol
783 -mv850  -mbig-switch}
784
785 @emph{VAX Options}
786 @gccoptlist{-mg  -mgnu  -munix}
787
788 @emph{VxWorks Options}
789 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
790 -Xbind-lazy  -Xbind-now}
791
792 @emph{x86-64 Options}
793 See i386 and x86-64 Options.
794
795 @emph{Xstormy16 Options}
796 @gccoptlist{-msim}
797
798 @emph{Xtensa Options}
799 @gccoptlist{-mconst16 -mno-const16 @gol
800 -mfused-madd  -mno-fused-madd @gol
801 -mtext-section-literals  -mno-text-section-literals @gol
802 -mtarget-align  -mno-target-align @gol
803 -mlongcalls  -mno-longcalls}
804
805 @emph{zSeries Options}
806 See S/390 and zSeries Options.
807
808 @item Code Generation Options
809 @xref{Code Gen Options,,Options for Code Generation Conventions}.
810 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
811 -ffixed-@var{reg}  -fexceptions @gol
812 -fnon-call-exceptions  -funwind-tables @gol
813 -fasynchronous-unwind-tables @gol
814 -finhibit-size-directive  -finstrument-functions @gol
815 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
816 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
817 -fno-common  -fno-ident @gol
818 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
819 -fno-jump-tables @gol
820 -frecord-gcc-switches @gol
821 -freg-struct-return  -fshort-enums @gol
822 -fshort-double  -fshort-wchar @gol
823 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
824 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
825 -fno-stack-limit  -fargument-alias  -fargument-noalias @gol
826 -fargument-noalias-global  -fargument-noalias-anything @gol
827 -fleading-underscore  -ftls-model=@var{model} @gol
828 -ftrapv  -fwrapv  -fbounds-check @gol
829 -fvisibility}
830 @end table
831
832 @menu
833 * Overall Options::     Controlling the kind of output:
834                         an executable, object files, assembler files,
835                         or preprocessed source.
836 * C Dialect Options::   Controlling the variant of C language compiled.
837 * C++ Dialect Options:: Variations on C++.
838 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
839                         and Objective-C++.
840 * Language Independent Options:: Controlling how diagnostics should be
841                         formatted.
842 * Warning Options::     How picky should the compiler be?
843 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
844 * Optimize Options::    How much optimization?
845 * Preprocessor Options:: Controlling header files and macro definitions.
846                          Also, getting dependency information for Make.
847 * Assembler Options::   Passing options to the assembler.
848 * Link Options::        Specifying libraries and so on.
849 * Directory Options::   Where to find header files and libraries.
850                         Where to find the compiler executable files.
851 * Spec Files::          How to pass switches to sub-processes.
852 * Target Options::      Running a cross-compiler, or an old version of GCC.
853 @end menu
854
855 @node Overall Options
856 @section Options Controlling the Kind of Output
857
858 Compilation can involve up to four stages: preprocessing, compilation
859 proper, assembly and linking, always in that order.  GCC is capable of
860 preprocessing and compiling several files either into several
861 assembler input files, or into one assembler input file; then each
862 assembler input file produces an object file, and linking combines all
863 the object files (those newly compiled, and those specified as input)
864 into an executable file.
865
866 @cindex file name suffix
867 For any given input file, the file name suffix determines what kind of
868 compilation is done:
869
870 @table @gcctabopt
871 @item @var{file}.c
872 C source code which must be preprocessed.
873
874 @item @var{file}.i
875 C source code which should not be preprocessed.
876
877 @item @var{file}.ii
878 C++ source code which should not be preprocessed.
879
880 @item @var{file}.m
881 Objective-C source code.  Note that you must link with the @file{libobjc}
882 library to make an Objective-C program work.
883
884 @item @var{file}.mi
885 Objective-C source code which should not be preprocessed.
886
887 @item @var{file}.mm
888 @itemx @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.  Note that @samp{.M} refers
891 to a literal capital M@.
892
893 @item @var{file}.mii
894 Objective-C++ source code which should not be preprocessed.
895
896 @item @var{file}.h
897 C, C++, Objective-C or Objective-C++ header file to be turned into a
898 precompiled header.
899
900 @item @var{file}.cc
901 @itemx @var{file}.cp
902 @itemx @var{file}.cxx
903 @itemx @var{file}.cpp
904 @itemx @var{file}.CPP
905 @itemx @var{file}.c++
906 @itemx @var{file}.C
907 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
908 the last two letters must both be literally @samp{x}.  Likewise,
909 @samp{.C} refers to a literal capital C@.
910
911 @item @var{file}.mm
912 @itemx @var{file}.M
913 Objective-C++ source code which must be preprocessed.
914
915 @item @var{file}.mii
916 Objective-C++ source code which should not be preprocessed.
917
918 @item @var{file}.hh
919 @itemx @var{file}.H
920 @itemx @var{file}.hp
921 @itemx @var{file}.hxx
922 @itemx @var{file}.hpp
923 @itemx @var{file}.HPP
924 @itemx @var{file}.h++
925 @itemx @var{file}.tcc
926 C++ header file to be turned into a precompiled header.
927
928 @item @var{file}.f
929 @itemx @var{file}.for
930 @itemx @var{file}.FOR
931 Fixed form Fortran source code which should not be preprocessed.
932
933 @item @var{file}.F
934 @itemx @var{file}.fpp
935 @itemx @var{file}.FPP
936 Fixed form Fortran source code which must be preprocessed (with the traditional
937 preprocessor).
938
939 @item @var{file}.f90
940 @itemx @var{file}.f95
941 Free form Fortran source code which should not be preprocessed.
942
943 @item @var{file}.F90
944 @itemx @var{file}.F95
945 Free form Fortran source code which must be preprocessed (with the
946 traditional preprocessor).
947
948 @c FIXME: Descriptions of Java file types.
949 @c @var{file}.java
950 @c @var{file}.class
951 @c @var{file}.zip
952 @c @var{file}.jar
953
954 @item @var{file}.ads
955 Ada source code file which contains a library unit declaration (a
956 declaration of a package, subprogram, or generic, or a generic
957 instantiation), or a library unit renaming declaration (a package,
958 generic, or subprogram renaming declaration).  Such files are also
959 called @dfn{specs}.
960
961 @itemx @var{file}.adb
962 Ada source code file containing a library unit body (a subprogram or
963 package body).  Such files are also called @dfn{bodies}.
964
965 @c GCC also knows about some suffixes for languages not yet included:
966 @c Pascal:
967 @c @var{file}.p
968 @c @var{file}.pas
969 @c Ratfor:
970 @c @var{file}.r
971
972 @item @var{file}.s
973 Assembler code.
974
975 @item @var{file}.S
976 @itemx @var{file}.sx
977 Assembler code which must be preprocessed.
978
979 @item @var{other}
980 An object file to be fed straight into linking.
981 Any file name with no recognized suffix is treated this way.
982 @end table
983
984 @opindex x
985 You can specify the input language explicitly with the @option{-x} option:
986
987 @table @gcctabopt
988 @item -x @var{language}
989 Specify explicitly the @var{language} for the following input files
990 (rather than letting the compiler choose a default based on the file
991 name suffix).  This option applies to all following input files until
992 the next @option{-x} option.  Possible values for @var{language} are:
993 @smallexample
994 c  c-header  c-cpp-output
995 c++  c++-header  c++-cpp-output
996 objective-c  objective-c-header  objective-c-cpp-output
997 objective-c++ objective-c++-header objective-c++-cpp-output
998 assembler  assembler-with-cpp
999 ada
1000 f95  f95-cpp-input
1001 java
1002 treelang
1003 @end smallexample
1004
1005 @item -x none
1006 Turn off any specification of a language, so that subsequent files are
1007 handled according to their file name suffixes (as they are if @option{-x}
1008 has not been used at all).
1009
1010 @item -pass-exit-codes
1011 @opindex pass-exit-codes
1012 Normally the @command{gcc} program will exit with the code of 1 if any
1013 phase of the compiler returns a non-success return code.  If you specify
1014 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1015 numerically highest error produced by any phase that returned an error
1016 indication.  The C, C++, and Fortran frontends return 4, if an internal
1017 compiler error is encountered.
1018 @end table
1019
1020 If you only want some of the stages of compilation, you can use
1021 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1022 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1023 @command{gcc} is to stop.  Note that some combinations (for example,
1024 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1025
1026 @table @gcctabopt
1027 @item -c
1028 @opindex c
1029 Compile or assemble the source files, but do not link.  The linking
1030 stage simply is not done.  The ultimate output is in the form of an
1031 object file for each source file.
1032
1033 By default, the object file name for a source file is made by replacing
1034 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1035
1036 Unrecognized input files, not requiring compilation or assembly, are
1037 ignored.
1038
1039 @item -S
1040 @opindex S
1041 Stop after the stage of compilation proper; do not assemble.  The output
1042 is in the form of an assembler code file for each non-assembler input
1043 file specified.
1044
1045 By default, the assembler file name for a source file is made by
1046 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1047
1048 Input files that don't require compilation are ignored.
1049
1050 @item -E
1051 @opindex E
1052 Stop after the preprocessing stage; do not run the compiler proper.  The
1053 output is in the form of preprocessed source code, which is sent to the
1054 standard output.
1055
1056 Input files which don't require preprocessing are ignored.
1057
1058 @cindex output file option
1059 @item -o @var{file}
1060 @opindex o
1061 Place output in file @var{file}.  This applies regardless to whatever
1062 sort of output is being produced, whether it be an executable file,
1063 an object file, an assembler file or preprocessed C code.
1064
1065 If @option{-o} is not specified, the default is to put an executable
1066 file in @file{a.out}, the object file for
1067 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1068 assembler file in @file{@var{source}.s}, a precompiled header file in
1069 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1070 standard output.
1071
1072 @item -v
1073 @opindex v
1074 Print (on standard error output) the commands executed to run the stages
1075 of compilation.  Also print the version number of the compiler driver
1076 program and of the preprocessor and the compiler proper.
1077
1078 @item -###
1079 @opindex ###
1080 Like @option{-v} except the commands are not executed and all command
1081 arguments are quoted.  This is useful for shell scripts to capture the
1082 driver-generated command lines.
1083
1084 @item -pipe
1085 @opindex pipe
1086 Use pipes rather than temporary files for communication between the
1087 various stages of compilation.  This fails to work on some systems where
1088 the assembler is unable to read from a pipe; but the GNU assembler has
1089 no trouble.
1090
1091 @item -combine
1092 @opindex combine
1093 If you are compiling multiple source files, this option tells the driver
1094 to pass all the source files to the compiler at once (for those
1095 languages for which the compiler can handle this).  This will allow
1096 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1097 language for which this is supported is C@.  If you pass source files for
1098 multiple languages to the driver, using this option, the driver will invoke
1099 the compiler(s) that support IMA once each, passing each compiler all the
1100 source files appropriate for it.  For those languages that do not support
1101 IMA this option will be ignored, and the compiler will be invoked once for
1102 each source file in that language.  If you use this option in conjunction
1103 with @option{-save-temps}, the compiler will generate multiple
1104 pre-processed files
1105 (one for each source file), but only one (combined) @file{.o} or
1106 @file{.s} file.
1107
1108 @item --help
1109 @opindex help
1110 Print (on the standard output) a description of the command line options
1111 understood by @command{gcc}.  If the @option{-v} option is also specified
1112 then @option{--help} will also be passed on to the various processes
1113 invoked by @command{gcc}, so that they can display the command line options
1114 they accept.  If the @option{-Wextra} option has also been specified
1115 (prior to the @option{--help} option), then command line options which
1116 have no documentation associated with them will also be displayed.
1117
1118 @item --target-help
1119 @opindex target-help
1120 Print (on the standard output) a description of target-specific command
1121 line options for each tool.  For some targets extra target-specific
1122 information may also be printed.
1123
1124 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1125 Print (on the standard output) a description of the command line
1126 options understood by the compiler that fit into a specific class.
1127 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1128 @samp{params}, or @var{language}:
1129
1130 @table @asis
1131 @item @samp{optimizers}
1132 This will display all of the optimization options supported by the
1133 compiler.
1134
1135 @item @samp{warnings}
1136 This will display all of the options controlling warning messages
1137 produced by the compiler.
1138
1139 @item @samp{target}
1140 This will display target-specific options.  Unlike the
1141 @option{--target-help} option however, target-specific options of the
1142 linker and assembler will not be displayed.  This is because those
1143 tools do not currently support the extended @option{--help=} syntax.
1144
1145 @item @samp{params}
1146 This will display the values recognized by the @option{--param}
1147 option.
1148
1149 @item @var{language}
1150 This will display the options supported for @var{language}, where 
1151 @var{language} is the name of one of the languages supported in this 
1152 version of GCC.
1153
1154 @item @samp{common}
1155 This will display the options that are common to all languages.
1156 @end table
1157
1158 It is possible to further refine the output of the @option{--help=}
1159 option by adding a comma separated list of qualifiers after the
1160 class.  These can be any from the following list:
1161
1162 @table @asis
1163 @item @samp{undocumented}
1164 Display only those options which are undocumented.
1165
1166 @item @samp{joined}
1167 Display options which take an argument that appears after an equal
1168 sign in the same continuous piece of text, such as:
1169 @samp{--help=target}.
1170
1171 @item @samp{separate}
1172 Display options which take an argument that appears as a separate word
1173 following the original option, such as: @samp{-o output-file}.
1174 @end table
1175
1176 Thus for example to display all the undocumented target-specific
1177 switches supported by the compiler the following can be used:
1178
1179 @smallexample
1180 --help=target,undocumented
1181 @end smallexample
1182
1183 The sense of a qualifier can be inverted by prefixing it with the
1184 @var{^} character, so for example to display all binary warning
1185 options (i.e. ones that are either on or off and that do not take an
1186 argument), which have a description the following can be used:
1187
1188 @smallexample
1189 --help=warnings,^joined,^undocumented
1190 @end smallexample
1191
1192 A class can also be used as a qualifier, although this usually
1193 restricts the output by so much that there is nothing to display.  One
1194 case where it does work however is when one of the classes is
1195 @var{target}.  So for example to display all the target-specific
1196 optimization options the following can be used:
1197
1198 @smallexample
1199 --help=target,optimizers
1200 @end smallexample
1201
1202 The @option{--help=} option can be repeated on the command line.  Each
1203 successive use will display its requested class of options, skipping
1204 those that have already been displayed.
1205
1206 If the @option{-Q} option appears on the command line before the
1207 @option{--help=} option, then the descriptive text displayed by
1208 @option{--help=} is changed.  Instead of describing the displayed
1209 options, an indication is given as to whether the option is enabled,
1210 disabled or set to a specific value (assuming that the compiler
1211 knows this at the point where the @option{--help=} option is used).
1212
1213 Here is a truncated example from the ARM port of @command{gcc}:
1214
1215 @smallexample
1216   % gcc -Q -mabi=2 --help=target -c
1217   The following options are target specific:
1218   -mabi=                                2
1219   -mabort-on-noreturn                   [disabled]
1220   -mapcs                                [disabled]
1221 @end smallexample
1222
1223 The output is sensitive to the effects of previous command line
1224 options, so for example it is possible to find out which optimizations
1225 are enabled at @option{-O2} by using:
1226
1227 @smallexample
1228 -O2 --help=optimizers
1229 @end smallexample
1230
1231 Alternatively you can discover which binary optimizations are enabled
1232 by @option{-O3} by using:
1233
1234 @smallexample
1235 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1236 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1237 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1238 @end smallexample
1239
1240 @item --version
1241 @opindex version
1242 Display the version number and copyrights of the invoked GCC@.
1243
1244 @include @value{srcdir}/../libiberty/at-file.texi
1245 @end table
1246
1247 @node Invoking G++
1248 @section Compiling C++ Programs
1249
1250 @cindex suffixes for C++ source
1251 @cindex C++ source file suffixes
1252 C++ source files conventionally use one of the suffixes @samp{.C},
1253 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1254 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1255 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1256 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1257 files with these names and compiles them as C++ programs even if you
1258 call the compiler the same way as for compiling C programs (usually
1259 with the name @command{gcc}).
1260
1261 @findex g++
1262 @findex c++
1263 However, the use of @command{gcc} does not add the C++ library.
1264 @command{g++} is a program that calls GCC and treats @samp{.c},
1265 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1266 files unless @option{-x} is used, and automatically specifies linking
1267 against the C++ library.  This program is also useful when
1268 precompiling a C header file with a @samp{.h} extension for use in C++
1269 compilations.  On many systems, @command{g++} is also installed with
1270 the name @command{c++}.
1271
1272 @cindex invoking @command{g++}
1273 When you compile C++ programs, you may specify many of the same
1274 command-line options that you use for compiling programs in any
1275 language; or command-line options meaningful for C and related
1276 languages; or options that are meaningful only for C++ programs.
1277 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1278 explanations of options for languages related to C@.
1279 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1280 explanations of options that are meaningful only for C++ programs.
1281
1282 @node C Dialect Options
1283 @section Options Controlling C Dialect
1284 @cindex dialect options
1285 @cindex language dialect options
1286 @cindex options, dialect
1287
1288 The following options control the dialect of C (or languages derived
1289 from C, such as C++, Objective-C and Objective-C++) that the compiler
1290 accepts:
1291
1292 @table @gcctabopt
1293 @cindex ANSI support
1294 @cindex ISO support
1295 @item -ansi
1296 @opindex ansi
1297 In C mode, this is equivalent to @samp{-std=c89}. In C++ mode, it is
1298 equivalent to @samp{-std=c++98}.
1299
1300 This turns off certain features of GCC that are incompatible with ISO
1301 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1302 such as the @code{asm} and @code{typeof} keywords, and
1303 predefined macros such as @code{unix} and @code{vax} that identify the
1304 type of system you are using.  It also enables the undesirable and
1305 rarely used ISO trigraph feature.  For the C compiler,
1306 it disables recognition of C++ style @samp{//} comments as well as
1307 the @code{inline} keyword.
1308
1309 The alternate keywords @code{__asm__}, @code{__extension__},
1310 @code{__inline__} and @code{__typeof__} continue to work despite
1311 @option{-ansi}.  You would not want to use them in an ISO C program, of
1312 course, but it is useful to put them in header files that might be included
1313 in compilations done with @option{-ansi}.  Alternate predefined macros
1314 such as @code{__unix__} and @code{__vax__} are also available, with or
1315 without @option{-ansi}.
1316
1317 The @option{-ansi} option does not cause non-ISO programs to be
1318 rejected gratuitously.  For that, @option{-pedantic} is required in
1319 addition to @option{-ansi}.  @xref{Warning Options}.
1320
1321 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1322 option is used.  Some header files may notice this macro and refrain
1323 from declaring certain functions or defining certain macros that the
1324 ISO standard doesn't call for; this is to avoid interfering with any
1325 programs that might use these names for other things.
1326
1327 Functions that would normally be built in but do not have semantics
1328 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1329 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1330 built-in functions provided by GCC}, for details of the functions
1331 affected.
1332
1333 @item -std=
1334 @opindex std
1335 Determine the language standard. @xref{Standards,,Language Standards
1336 Supported by GCC}, for details of these standard versions.  This option
1337 is currently only supported when compiling C or C++. 
1338
1339 A value for this option must be provided; possible values are
1340
1341 @table @samp
1342 @item c89
1343 @itemx iso9899:1990
1344 ISO C90 (same as @option{-ansi}).
1345
1346 @item iso9899:199409
1347 ISO C90 as modified in amendment 1.
1348
1349 @item c99
1350 @itemx c9x
1351 @itemx iso9899:1999
1352 @itemx iso9899:199x
1353 ISO C99.  Note that this standard is not yet fully supported; see
1354 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1355 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1356
1357 @item gnu89
1358 Default, ISO C90 plus GNU extensions (including some C99 features).
1359
1360 @item gnu99
1361 @itemx gnu9x
1362 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
1363 this will become the default.  The name @samp{gnu9x} is deprecated.
1364
1365 @item c++98
1366 The 1998 ISO C++ standard plus amendments.
1367
1368 @item gnu++98
1369 The same as @option{-std=c++98} plus GNU extensions.  This is the
1370 default for C++ code.
1371
1372 @item c++0x
1373 The working draft of the upcoming ISO C++0x standard. This option
1374 enables experimental features that are likely to be included in
1375 C++0x. The working draft is constantly changing, and any feature that is
1376 enabled by this flag may be removed from future versions of GCC if it is
1377 not part of the C++0x standard.
1378
1379 @item gnu++0x
1380 The same as @option{-std=c++0x} plus GNU extensions. As with
1381 @option{-std=c++0x}, this option enables experimental features that may
1382 be removed in future versions of GCC.
1383 @end table
1384
1385 Even when this option is not specified, you can still use some of the
1386 features of newer standards in so far as they do not conflict with
1387 previous C standards.  For example, you may use @code{__restrict__} even
1388 when @option{-std=c99} is not specified.
1389
1390 The @option{-std} options specifying some version of ISO C have the same
1391 effects as @option{-ansi}, except that features that were not in ISO C90
1392 but are in the specified version (for example, @samp{//} comments and
1393 the @code{inline} keyword in ISO C99) are not disabled.
1394
1395 @item -fgnu89-inline
1396 @opindex fgnu89-inline
1397 The option @option{-fgnu89-inline} tells GCC to use the traditional
1398 GNU semantics for @code{inline} functions when in C99 mode.
1399 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1400 is accepted and ignored by GCC versions 4.1.3 up to but not including
1401 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1402 C99 mode.  Using this option is roughly equivalent to adding the
1403 @code{gnu_inline} function attribute to all inline functions
1404 (@pxref{Function Attributes}).
1405
1406 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1407 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1408 specifies the default behavior).  This option was first supported in
1409 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1410
1411 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1412 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1413 in effect for @code{inline} functions.  @xref{Common Predefined
1414 Macros,,,cpp,The C Preprocessor}.
1415
1416 @item -aux-info @var{filename}
1417 @opindex aux-info
1418 Output to the given filename prototyped declarations for all functions
1419 declared and/or defined in a translation unit, including those in header
1420 files.  This option is silently ignored in any language other than C@.
1421
1422 Besides declarations, the file indicates, in comments, the origin of
1423 each declaration (source file and line), whether the declaration was
1424 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1425 @samp{O} for old, respectively, in the first character after the line
1426 number and the colon), and whether it came from a declaration or a
1427 definition (@samp{C} or @samp{F}, respectively, in the following
1428 character).  In the case of function definitions, a K&R-style list of
1429 arguments followed by their declarations is also provided, inside
1430 comments, after the declaration.
1431
1432 @item -fno-asm
1433 @opindex fno-asm
1434 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1435 keyword, so that code can use these words as identifiers.  You can use
1436 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1437 instead.  @option{-ansi} implies @option{-fno-asm}.
1438
1439 In C++, this switch only affects the @code{typeof} keyword, since
1440 @code{asm} and @code{inline} are standard keywords.  You may want to
1441 use the @option{-fno-gnu-keywords} flag instead, which has the same
1442 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1443 switch only affects the @code{asm} and @code{typeof} keywords, since
1444 @code{inline} is a standard keyword in ISO C99.
1445
1446 @item -fno-builtin
1447 @itemx -fno-builtin-@var{function}
1448 @opindex fno-builtin
1449 @cindex built-in functions
1450 Don't recognize built-in functions that do not begin with
1451 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1452 functions provided by GCC}, for details of the functions affected,
1453 including those which are not built-in functions when @option{-ansi} or
1454 @option{-std} options for strict ISO C conformance are used because they
1455 do not have an ISO standard meaning.
1456
1457 GCC normally generates special code to handle certain built-in functions
1458 more efficiently; for instance, calls to @code{alloca} may become single
1459 instructions that adjust the stack directly, and calls to @code{memcpy}
1460 may become inline copy loops.  The resulting code is often both smaller
1461 and faster, but since the function calls no longer appear as such, you
1462 cannot set a breakpoint on those calls, nor can you change the behavior
1463 of the functions by linking with a different library.  In addition,
1464 when a function is recognized as a built-in function, GCC may use
1465 information about that function to warn about problems with calls to
1466 that function, or to generate more efficient code, even if the
1467 resulting code still contains calls to that function.  For example,
1468 warnings are given with @option{-Wformat} for bad calls to
1469 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1470 known not to modify global memory.
1471
1472 With the @option{-fno-builtin-@var{function}} option
1473 only the built-in function @var{function} is
1474 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1475 function is named this is not built-in in this version of GCC, this
1476 option is ignored.  There is no corresponding
1477 @option{-fbuiltin-@var{function}} option; if you wish to enable
1478 built-in functions selectively when using @option{-fno-builtin} or
1479 @option{-ffreestanding}, you may define macros such as:
1480
1481 @smallexample
1482 #define abs(n)          __builtin_abs ((n))
1483 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1484 @end smallexample
1485
1486 @item -fhosted
1487 @opindex fhosted
1488 @cindex hosted environment
1489
1490 Assert that compilation takes place in a hosted environment.  This implies
1491 @option{-fbuiltin}.  A hosted environment is one in which the
1492 entire standard library is available, and in which @code{main} has a return
1493 type of @code{int}.  Examples are nearly everything except a kernel.
1494 This is equivalent to @option{-fno-freestanding}.
1495
1496 @item -ffreestanding
1497 @opindex ffreestanding
1498 @cindex hosted environment
1499
1500 Assert that compilation takes place in a freestanding environment.  This
1501 implies @option{-fno-builtin}.  A freestanding environment
1502 is one in which the standard library may not exist, and program startup may
1503 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1504 This is equivalent to @option{-fno-hosted}.
1505
1506 @xref{Standards,,Language Standards Supported by GCC}, for details of
1507 freestanding and hosted environments.
1508
1509 @item -fopenmp
1510 @opindex fopenmp
1511 @cindex openmp parallel
1512 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1513 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1514 compiler generates parallel code according to the OpenMP Application
1515 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.  This option
1516 implies @option{-pthread}, and thus is only supported on targets that
1517 have support for @option{-pthread}.
1518
1519 @item -fms-extensions
1520 @opindex fms-extensions
1521 Accept some non-standard constructs used in Microsoft header files.
1522
1523 Some cases of unnamed fields in structures and unions are only
1524 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1525 fields within structs/unions}, for details.
1526
1527 @item -trigraphs
1528 @opindex trigraphs
1529 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1530 options for strict ISO C conformance) implies @option{-trigraphs}.
1531
1532 @item -no-integrated-cpp
1533 @opindex no-integrated-cpp
1534 Performs a compilation in two passes: preprocessing and compiling.  This
1535 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1536 @option{-B} option.  The user supplied compilation step can then add in
1537 an additional preprocessing step after normal preprocessing but before
1538 compiling.  The default is to use the integrated cpp (internal cpp)
1539
1540 The semantics of this option will change if "cc1", "cc1plus", and
1541 "cc1obj" are merged.
1542
1543 @cindex traditional C language
1544 @cindex C language, traditional
1545 @item -traditional
1546 @itemx -traditional-cpp
1547 @opindex traditional-cpp
1548 @opindex traditional
1549 Formerly, these options caused GCC to attempt to emulate a pre-standard
1550 C compiler.  They are now only supported with the @option{-E} switch.
1551 The preprocessor continues to support a pre-standard mode.  See the GNU
1552 CPP manual for details.
1553
1554 @item -fcond-mismatch
1555 @opindex fcond-mismatch
1556 Allow conditional expressions with mismatched types in the second and
1557 third arguments.  The value of such an expression is void.  This option
1558 is not supported for C++.
1559
1560 @item -flax-vector-conversions
1561 @opindex flax-vector-conversions
1562 Allow implicit conversions between vectors with differing numbers of
1563 elements and/or incompatible element types.  This option should not be
1564 used for new code.
1565
1566 @item -funsigned-char
1567 @opindex funsigned-char
1568 Let the type @code{char} be unsigned, like @code{unsigned char}.
1569
1570 Each kind of machine has a default for what @code{char} should
1571 be.  It is either like @code{unsigned char} by default or like
1572 @code{signed char} by default.
1573
1574 Ideally, a portable program should always use @code{signed char} or
1575 @code{unsigned char} when it depends on the signedness of an object.
1576 But many programs have been written to use plain @code{char} and
1577 expect it to be signed, or expect it to be unsigned, depending on the
1578 machines they were written for.  This option, and its inverse, let you
1579 make such a program work with the opposite default.
1580
1581 The type @code{char} is always a distinct type from each of
1582 @code{signed char} or @code{unsigned char}, even though its behavior
1583 is always just like one of those two.
1584
1585 @item -fsigned-char
1586 @opindex fsigned-char
1587 Let the type @code{char} be signed, like @code{signed char}.
1588
1589 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1590 the negative form of @option{-funsigned-char}.  Likewise, the option
1591 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1592
1593 @item -fsigned-bitfields
1594 @itemx -funsigned-bitfields
1595 @itemx -fno-signed-bitfields
1596 @itemx -fno-unsigned-bitfields
1597 @opindex fsigned-bitfields
1598 @opindex funsigned-bitfields
1599 @opindex fno-signed-bitfields
1600 @opindex fno-unsigned-bitfields
1601 These options control whether a bit-field is signed or unsigned, when the
1602 declaration does not use either @code{signed} or @code{unsigned}.  By
1603 default, such a bit-field is signed, because this is consistent: the
1604 basic integer types such as @code{int} are signed types.
1605 @end table
1606
1607 @node C++ Dialect Options
1608 @section Options Controlling C++ Dialect
1609
1610 @cindex compiler options, C++
1611 @cindex C++ options, command line
1612 @cindex options, C++
1613 This section describes the command-line options that are only meaningful
1614 for C++ programs; but you can also use most of the GNU compiler options
1615 regardless of what language your program is in.  For example, you
1616 might compile a file @code{firstClass.C} like this:
1617
1618 @smallexample
1619 g++ -g -frepo -O -c firstClass.C
1620 @end smallexample
1621
1622 @noindent
1623 In this example, only @option{-frepo} is an option meant
1624 only for C++ programs; you can use the other options with any
1625 language supported by GCC@.
1626
1627 Here is a list of options that are @emph{only} for compiling C++ programs:
1628
1629 @table @gcctabopt
1630
1631 @item -fabi-version=@var{n}
1632 @opindex fabi-version
1633 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1634 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1635 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1636 the version that conforms most closely to the C++ ABI specification.
1637 Therefore, the ABI obtained using version 0 will change as ABI bugs
1638 are fixed.
1639
1640 The default is version 2.
1641
1642 @item -fno-access-control
1643 @opindex fno-access-control
1644 Turn off all access checking.  This switch is mainly useful for working
1645 around bugs in the access control code.
1646
1647 @item -fcheck-new
1648 @opindex fcheck-new
1649 Check that the pointer returned by @code{operator new} is non-null
1650 before attempting to modify the storage allocated.  This check is
1651 normally unnecessary because the C++ standard specifies that
1652 @code{operator new} will only return @code{0} if it is declared
1653 @samp{throw()}, in which case the compiler will always check the
1654 return value even without this option.  In all other cases, when
1655 @code{operator new} has a non-empty exception specification, memory
1656 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1657 @samp{new (nothrow)}.
1658
1659 @item -fconserve-space
1660 @opindex fconserve-space
1661 Put uninitialized or runtime-initialized global variables into the
1662 common segment, as C does.  This saves space in the executable at the
1663 cost of not diagnosing duplicate definitions.  If you compile with this
1664 flag and your program mysteriously crashes after @code{main()} has
1665 completed, you may have an object that is being destroyed twice because
1666 two definitions were merged.
1667
1668 This option is no longer useful on most targets, now that support has
1669 been added for putting variables into BSS without making them common.
1670
1671 @item -ffriend-injection
1672 @opindex ffriend-injection
1673 Inject friend functions into the enclosing namespace, so that they are
1674 visible outside the scope of the class in which they are declared.
1675 Friend functions were documented to work this way in the old Annotated
1676 C++ Reference Manual, and versions of G++ before 4.1 always worked
1677 that way.  However, in ISO C++ a friend function which is not declared
1678 in an enclosing scope can only be found using argument dependent
1679 lookup.  This option causes friends to be injected as they were in
1680 earlier releases.
1681
1682 This option is for compatibility, and may be removed in a future
1683 release of G++.
1684
1685 @item -fno-elide-constructors
1686 @opindex fno-elide-constructors
1687 The C++ standard allows an implementation to omit creating a temporary
1688 which is only used to initialize another object of the same type.
1689 Specifying this option disables that optimization, and forces G++ to
1690 call the copy constructor in all cases.
1691
1692 @item -fno-enforce-eh-specs
1693 @opindex fno-enforce-eh-specs
1694 Don't generate code to check for violation of exception specifications
1695 at runtime.  This option violates the C++ standard, but may be useful
1696 for reducing code size in production builds, much like defining
1697 @samp{NDEBUG}.  This does not give user code permission to throw
1698 exceptions in violation of the exception specifications; the compiler
1699 will still optimize based on the specifications, so throwing an
1700 unexpected exception will result in undefined behavior.
1701
1702 @item -ffor-scope
1703 @itemx -fno-for-scope
1704 @opindex ffor-scope
1705 @opindex fno-for-scope
1706 If @option{-ffor-scope} is specified, the scope of variables declared in
1707 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1708 as specified by the C++ standard.
1709 If @option{-fno-for-scope} is specified, the scope of variables declared in
1710 a @i{for-init-statement} extends to the end of the enclosing scope,
1711 as was the case in old versions of G++, and other (traditional)
1712 implementations of C++.
1713
1714 The default if neither flag is given to follow the standard,
1715 but to allow and give a warning for old-style code that would
1716 otherwise be invalid, or have different behavior.
1717
1718 @item -fno-gnu-keywords
1719 @opindex fno-gnu-keywords
1720 Do not recognize @code{typeof} as a keyword, so that code can use this
1721 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1722 @option{-ansi} implies @option{-fno-gnu-keywords}.
1723
1724 @item -fno-implicit-templates
1725 @opindex fno-implicit-templates
1726 Never emit code for non-inline templates which are instantiated
1727 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1728 @xref{Template Instantiation}, for more information.
1729
1730 @item -fno-implicit-inline-templates
1731 @opindex fno-implicit-inline-templates
1732 Don't emit code for implicit instantiations of inline templates, either.
1733 The default is to handle inlines differently so that compiles with and
1734 without optimization will need the same set of explicit instantiations.
1735
1736 @item -fno-implement-inlines
1737 @opindex fno-implement-inlines
1738 To save space, do not emit out-of-line copies of inline functions
1739 controlled by @samp{#pragma implementation}.  This will cause linker
1740 errors if these functions are not inlined everywhere they are called.
1741
1742 @item -fms-extensions
1743 @opindex fms-extensions
1744 Disable pedantic warnings about constructs used in MFC, such as implicit
1745 int and getting a pointer to member function via non-standard syntax.
1746
1747 @item -fno-nonansi-builtins
1748 @opindex fno-nonansi-builtins
1749 Disable built-in declarations of functions that are not mandated by
1750 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1751 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1752
1753 @item -fno-operator-names
1754 @opindex fno-operator-names
1755 Do not treat the operator name keywords @code{and}, @code{bitand},
1756 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1757 synonyms as keywords.
1758
1759 @item -fno-optional-diags
1760 @opindex fno-optional-diags
1761 Disable diagnostics that the standard says a compiler does not need to
1762 issue.  Currently, the only such diagnostic issued by G++ is the one for
1763 a name having multiple meanings within a class.
1764
1765 @item -fpermissive
1766 @opindex fpermissive
1767 Downgrade some diagnostics about nonconformant code from errors to
1768 warnings.  Thus, using @option{-fpermissive} will allow some
1769 nonconforming code to compile.
1770
1771 @item -frepo
1772 @opindex frepo
1773 Enable automatic template instantiation at link time.  This option also
1774 implies @option{-fno-implicit-templates}.  @xref{Template
1775 Instantiation}, for more information.
1776
1777 @item -fno-rtti
1778 @opindex fno-rtti
1779 Disable generation of information about every class with virtual
1780 functions for use by the C++ runtime type identification features
1781 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1782 of the language, you can save some space by using this flag.  Note that
1783 exception handling uses the same information, but it will generate it as
1784 needed. The @samp{dynamic_cast} operator can still be used for casts that
1785 do not require runtime type information, i.e. casts to @code{void *} or to
1786 unambiguous base classes.
1787
1788 @item -fstats
1789 @opindex fstats
1790 Emit statistics about front-end processing at the end of the compilation.
1791 This information is generally only useful to the G++ development team.
1792
1793 @item -ftemplate-depth-@var{n}
1794 @opindex ftemplate-depth
1795 Set the maximum instantiation depth for template classes to @var{n}.
1796 A limit on the template instantiation depth is needed to detect
1797 endless recursions during template class instantiation.  ANSI/ISO C++
1798 conforming programs must not rely on a maximum depth greater than 17.
1799
1800 @item -fno-threadsafe-statics
1801 @opindex fno-threadsafe-statics
1802 Do not emit the extra code to use the routines specified in the C++
1803 ABI for thread-safe initialization of local statics.  You can use this
1804 option to reduce code size slightly in code that doesn't need to be
1805 thread-safe.
1806
1807 @item -fuse-cxa-atexit
1808 @opindex fuse-cxa-atexit
1809 Register destructors for objects with static storage duration with the
1810 @code{__cxa_atexit} function rather than the @code{atexit} function.
1811 This option is required for fully standards-compliant handling of static
1812 destructors, but will only work if your C library supports
1813 @code{__cxa_atexit}.
1814
1815 @item -fno-use-cxa-get-exception-ptr
1816 @opindex fno-use-cxa-get-exception-ptr
1817 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1818 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1819 if the runtime routine is not available.
1820
1821 @item -fvisibility-inlines-hidden
1822 @opindex fvisibility-inlines-hidden
1823 This switch declares that the user does not attempt to compare
1824 pointers to inline methods where the addresses of the two functions
1825 were taken in different shared objects.
1826
1827 The effect of this is that GCC may, effectively, mark inline methods with
1828 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1829 appear in the export table of a DSO and do not require a PLT indirection
1830 when used within the DSO@.  Enabling this option can have a dramatic effect
1831 on load and link times of a DSO as it massively reduces the size of the
1832 dynamic export table when the library makes heavy use of templates.
1833
1834 The behavior of this switch is not quite the same as marking the
1835 methods as hidden directly, because it does not affect static variables
1836 local to the function or cause the compiler to deduce that
1837 the function is defined in only one shared object.
1838
1839 You may mark a method as having a visibility explicitly to negate the
1840 effect of the switch for that method.  For example, if you do want to
1841 compare pointers to a particular inline method, you might mark it as
1842 having default visibility.  Marking the enclosing class with explicit
1843 visibility will have no effect.
1844
1845 Explicitly instantiated inline methods are unaffected by this option
1846 as their linkage might otherwise cross a shared library boundary.
1847 @xref{Template Instantiation}.
1848
1849 @item -fvisibility-ms-compat
1850 @opindex fvisibility-ms-compat
1851 This flag attempts to use visibility settings to make GCC's C++
1852 linkage model compatible with that of Microsoft Visual Studio.
1853
1854 The flag makes these changes to GCC's linkage model:
1855
1856 @enumerate
1857 @item
1858 It sets the default visibility to @code{hidden}, like
1859 @option{-fvisibility=hidden}.
1860
1861 @item
1862 Types, but not their members, are not hidden by default.
1863
1864 @item
1865 The One Definition Rule is relaxed for types without explicit
1866 visibility specifications which are defined in more than one different
1867 shared object: those declarations are permitted if they would have
1868 been permitted when this option was not used.
1869 @end enumerate
1870
1871 In new code it is better to use @option{-fvisibility=hidden} and
1872 export those classes which are intended to be externally visible.
1873 Unfortunately it is possible for code to rely, perhaps accidentally,
1874 on the Visual Studio behavior.
1875
1876 Among the consequences of these changes are that static data members
1877 of the same type with the same name but defined in different shared
1878 objects will be different, so changing one will not change the other;
1879 and that pointers to function members defined in different shared
1880 objects may not compare equal.  When this flag is given, it is a
1881 violation of the ODR to define types with the same name differently.
1882
1883 @item -fno-weak
1884 @opindex fno-weak
1885 Do not use weak symbol support, even if it is provided by the linker.
1886 By default, G++ will use weak symbols if they are available.  This
1887 option exists only for testing, and should not be used by end-users;
1888 it will result in inferior code and has no benefits.  This option may
1889 be removed in a future release of G++.
1890
1891 @item -nostdinc++
1892 @opindex nostdinc++
1893 Do not search for header files in the standard directories specific to
1894 C++, but do still search the other standard directories.  (This option
1895 is used when building the C++ library.)
1896 @end table
1897
1898 In addition, these optimization, warning, and code generation options
1899 have meanings only for C++ programs:
1900
1901 @table @gcctabopt
1902 @item -fno-default-inline
1903 @opindex fno-default-inline
1904 Do not assume @samp{inline} for functions defined inside a class scope.
1905 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1906 functions will have linkage like inline functions; they just won't be
1907 inlined by default.
1908
1909 @item -Wabi @r{(C++ only)}
1910 @opindex Wabi
1911 Warn when G++ generates code that is probably not compatible with the
1912 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1913 all such cases, there are probably some cases that are not warned about,
1914 even though G++ is generating incompatible code.  There may also be
1915 cases where warnings are emitted even though the code that is generated
1916 will be compatible.
1917
1918 You should rewrite your code to avoid these warnings if you are
1919 concerned about the fact that code generated by G++ may not be binary
1920 compatible with code generated by other compilers.
1921
1922 The known incompatibilities at this point include:
1923
1924 @itemize @bullet
1925
1926 @item
1927 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1928 pack data into the same byte as a base class.  For example:
1929
1930 @smallexample
1931 struct A @{ virtual void f(); int f1 : 1; @};
1932 struct B : public A @{ int f2 : 1; @};
1933 @end smallexample
1934
1935 @noindent
1936 In this case, G++ will place @code{B::f2} into the same byte
1937 as@code{A::f1}; other compilers will not.  You can avoid this problem
1938 by explicitly padding @code{A} so that its size is a multiple of the
1939 byte size on your platform; that will cause G++ and other compilers to
1940 layout @code{B} identically.
1941
1942 @item
1943 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1944 tail padding when laying out virtual bases.  For example:
1945
1946 @smallexample
1947 struct A @{ virtual void f(); char c1; @};
1948 struct B @{ B(); char c2; @};
1949 struct C : public A, public virtual B @{@};
1950 @end smallexample
1951
1952 @noindent
1953 In this case, G++ will not place @code{B} into the tail-padding for
1954 @code{A}; other compilers will.  You can avoid this problem by
1955 explicitly padding @code{A} so that its size is a multiple of its
1956 alignment (ignoring virtual base classes); that will cause G++ and other
1957 compilers to layout @code{C} identically.
1958
1959 @item
1960 Incorrect handling of bit-fields with declared widths greater than that
1961 of their underlying types, when the bit-fields appear in a union.  For
1962 example:
1963
1964 @smallexample
1965 union U @{ int i : 4096; @};
1966 @end smallexample
1967
1968 @noindent
1969 Assuming that an @code{int} does not have 4096 bits, G++ will make the
1970 union too small by the number of bits in an @code{int}.
1971
1972 @item
1973 Empty classes can be placed at incorrect offsets.  For example:
1974
1975 @smallexample
1976 struct A @{@};
1977
1978 struct B @{
1979   A a;
1980   virtual void f ();
1981 @};
1982
1983 struct C : public B, public A @{@};
1984 @end smallexample
1985
1986 @noindent
1987 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
1988 it should be placed at offset zero.  G++ mistakenly believes that the
1989 @code{A} data member of @code{B} is already at offset zero.
1990
1991 @item
1992 Names of template functions whose types involve @code{typename} or
1993 template template parameters can be mangled incorrectly.
1994
1995 @smallexample
1996 template <typename Q>
1997 void f(typename Q::X) @{@}
1998
1999 template <template <typename> class Q>
2000 void f(typename Q<int>::X) @{@}
2001 @end smallexample
2002
2003 @noindent
2004 Instantiations of these templates may be mangled incorrectly.
2005
2006 @end itemize
2007
2008 @item -Wctor-dtor-privacy @r{(C++ only)}
2009 @opindex Wctor-dtor-privacy
2010 Warn when a class seems unusable because all the constructors or
2011 destructors in that class are private, and it has neither friends nor
2012 public static member functions.
2013
2014 @item -Wnon-virtual-dtor @r{(C++ only)}
2015 @opindex Wnon-virtual-dtor
2016 Warn when a class has virtual functions and accessible non-virtual
2017 destructor, in which case it would be possible but unsafe to delete
2018 an instance of a derived class through a pointer to the base class.
2019 This warning is also enabled if -Weffc++ is specified.
2020
2021 @item -Wreorder @r{(C++ only)}
2022 @opindex Wreorder
2023 @cindex reordering, warning
2024 @cindex warning for reordering of member initializers
2025 Warn when the order of member initializers given in the code does not
2026 match the order in which they must be executed.  For instance:
2027
2028 @smallexample
2029 struct A @{
2030   int i;
2031   int j;
2032   A(): j (0), i (1) @{ @}
2033 @};
2034 @end smallexample
2035
2036 The compiler will rearrange the member initializers for @samp{i}
2037 and @samp{j} to match the declaration order of the members, emitting
2038 a warning to that effect.  This warning is enabled by @option{-Wall}.
2039 @end table
2040
2041 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2042
2043 @table @gcctabopt
2044 @item -Weffc++ @r{(C++ only)}
2045 @opindex Weffc++
2046 Warn about violations of the following style guidelines from Scott Meyers'
2047 @cite{Effective C++} book:
2048
2049 @itemize @bullet
2050 @item
2051 Item 11:  Define a copy constructor and an assignment operator for classes
2052 with dynamically allocated memory.
2053
2054 @item
2055 Item 12:  Prefer initialization to assignment in constructors.
2056
2057 @item
2058 Item 14:  Make destructors virtual in base classes.
2059
2060 @item
2061 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2062
2063 @item
2064 Item 23:  Don't try to return a reference when you must return an object.
2065
2066 @end itemize
2067
2068 Also warn about violations of the following style guidelines from
2069 Scott Meyers' @cite{More Effective C++} book:
2070
2071 @itemize @bullet
2072 @item
2073 Item 6:  Distinguish between prefix and postfix forms of increment and
2074 decrement operators.
2075
2076 @item
2077 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2078
2079 @end itemize
2080
2081 When selecting this option, be aware that the standard library
2082 headers do not obey all of these guidelines; use @samp{grep -v}
2083 to filter out those warnings.
2084
2085 @item -Wno-deprecated @r{(C++ only)}
2086 @opindex Wno-deprecated
2087 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
2088
2089 @item -Wstrict-null-sentinel @r{(C++ only)}
2090 @opindex Wstrict-null-sentinel
2091 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2092 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2093 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2094 it is guaranteed to of the same size as a pointer.  But this use is
2095 not portable across different compilers.
2096
2097 @item -Wno-non-template-friend @r{(C++ only)}
2098 @opindex Wno-non-template-friend
2099 Disable warnings when non-templatized friend functions are declared
2100 within a template.  Since the advent of explicit template specification
2101 support in G++, if the name of the friend is an unqualified-id (i.e.,
2102 @samp{friend foo(int)}), the C++ language specification demands that the
2103 friend declare or define an ordinary, nontemplate function.  (Section
2104 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2105 could be interpreted as a particular specialization of a templatized
2106 function.  Because this non-conforming behavior is no longer the default
2107 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2108 check existing code for potential trouble spots and is on by default.
2109 This new compiler behavior can be turned off with
2110 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2111 but disables the helpful warning.
2112
2113 @item -Wold-style-cast @r{(C++ only)}
2114 @opindex Wold-style-cast
2115 Warn if an old-style (C-style) cast to a non-void type is used within
2116 a C++ program.  The new-style casts (@samp{dynamic_cast},
2117 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2118 less vulnerable to unintended effects and much easier to search for.
2119
2120 @item -Woverloaded-virtual @r{(C++ only)}
2121 @opindex Woverloaded-virtual
2122 @cindex overloaded virtual fn, warning
2123 @cindex warning for overloaded virtual fn
2124 Warn when a function declaration hides virtual functions from a
2125 base class.  For example, in:
2126
2127 @smallexample
2128 struct A @{
2129   virtual void f();
2130 @};
2131
2132 struct B: public A @{
2133   void f(int);
2134 @};
2135 @end smallexample
2136
2137 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2138 like:
2139
2140 @smallexample
2141 B* b;
2142 b->f();
2143 @end smallexample
2144
2145 will fail to compile.
2146
2147 @item -Wno-pmf-conversions @r{(C++ only)}
2148 @opindex Wno-pmf-conversions
2149 Disable the diagnostic for converting a bound pointer to member function
2150 to a plain pointer.
2151
2152 @item -Wsign-promo @r{(C++ only)}
2153 @opindex Wsign-promo
2154 Warn when overload resolution chooses a promotion from unsigned or
2155 enumerated type to a signed type, over a conversion to an unsigned type of
2156 the same size.  Previous versions of G++ would try to preserve
2157 unsignedness, but the standard mandates the current behavior.
2158
2159 @smallexample
2160 struct A @{
2161   operator int ();
2162   A& operator = (int);
2163 @};
2164
2165 main ()
2166 @{
2167   A a,b;
2168   a = b;
2169 @}
2170 @end smallexample
2171
2172 In this example, G++ will synthesize a default @samp{A& operator =
2173 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2174 @end table
2175
2176 @node Objective-C and Objective-C++ Dialect Options
2177 @section Options Controlling Objective-C and Objective-C++ Dialects
2178
2179 @cindex compiler options, Objective-C and Objective-C++
2180 @cindex Objective-C and Objective-C++ options, command line
2181 @cindex options, Objective-C and Objective-C++
2182 (NOTE: This manual does not describe the Objective-C and Objective-C++
2183 languages themselves.  See @xref{Standards,,Language Standards
2184 Supported by GCC}, for references.)
2185
2186 This section describes the command-line options that are only meaningful
2187 for Objective-C and Objective-C++ programs, but you can also use most of
2188 the language-independent GNU compiler options.
2189 For example, you might compile a file @code{some_class.m} like this:
2190
2191 @smallexample
2192 gcc -g -fgnu-runtime -O -c some_class.m
2193 @end smallexample
2194
2195 @noindent
2196 In this example, @option{-fgnu-runtime} is an option meant only for
2197 Objective-C and Objective-C++ programs; you can use the other options with
2198 any language supported by GCC@.
2199
2200 Note that since Objective-C is an extension of the C language, Objective-C
2201 compilations may also use options specific to the C front-end (e.g.,
2202 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2203 C++-specific options (e.g., @option{-Wabi}).
2204
2205 Here is a list of options that are @emph{only} for compiling Objective-C
2206 and Objective-C++ programs:
2207
2208 @table @gcctabopt
2209 @item -fconstant-string-class=@var{class-name}
2210 @opindex fconstant-string-class
2211 Use @var{class-name} as the name of the class to instantiate for each
2212 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2213 class name is @code{NXConstantString} if the GNU runtime is being used, and
2214 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2215 @option{-fconstant-cfstrings} option, if also present, will override the
2216 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2217 to be laid out as constant CoreFoundation strings.
2218
2219 @item -fgnu-runtime
2220 @opindex fgnu-runtime
2221 Generate object code compatible with the standard GNU Objective-C
2222 runtime.  This is the default for most types of systems.
2223
2224 @item -fnext-runtime
2225 @opindex fnext-runtime
2226 Generate output compatible with the NeXT runtime.  This is the default
2227 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2228 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2229 used.
2230
2231 @item -fno-nil-receivers
2232 @opindex fno-nil-receivers
2233 Assume that all Objective-C message dispatches (e.g.,
2234 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2235 is not @code{nil}.  This allows for more efficient entry points in the runtime
2236 to be used.  Currently, this option is only available in conjunction with
2237 the NeXT runtime on Mac OS X 10.3 and later.
2238
2239 @item -fobjc-call-cxx-cdtors
2240 @opindex fobjc-call-cxx-cdtors
2241 For each Objective-C class, check if any of its instance variables is a
2242 C++ object with a non-trivial default constructor.  If so, synthesize a
2243 special @code{- (id) .cxx_construct} instance method that will run
2244 non-trivial default constructors on any such instance variables, in order,
2245 and then return @code{self}.  Similarly, check if any instance variable
2246 is a C++ object with a non-trivial destructor, and if so, synthesize a
2247 special @code{- (void) .cxx_destruct} method that will run
2248 all such default destructors, in reverse order.
2249
2250 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2251 thusly generated will only operate on instance variables declared in the
2252 current Objective-C class, and not those inherited from superclasses.  It
2253 is the responsibility of the Objective-C runtime to invoke all such methods
2254 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2255 will be invoked by the runtime immediately after a new object
2256 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2257 be invoked immediately before the runtime deallocates an object instance.
2258
2259 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2260 support for invoking the @code{- (id) .cxx_construct} and
2261 @code{- (void) .cxx_destruct} methods.
2262
2263 @item -fobjc-direct-dispatch
2264 @opindex fobjc-direct-dispatch
2265 Allow fast jumps to the message dispatcher.  On Darwin this is
2266 accomplished via the comm page.
2267
2268 @item -fobjc-exceptions
2269 @opindex fobjc-exceptions
2270 Enable syntactic support for structured exception handling in Objective-C,
2271 similar to what is offered by C++ and Java.  This option is
2272 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2273 earlier.
2274
2275 @smallexample
2276   @@try @{
2277     @dots{}
2278        @@throw expr;
2279     @dots{}
2280   @}
2281   @@catch (AnObjCClass *exc) @{
2282     @dots{}
2283       @@throw expr;
2284     @dots{}
2285       @@throw;
2286     @dots{}
2287   @}
2288   @@catch (AnotherClass *exc) @{
2289     @dots{}
2290   @}
2291   @@catch (id allOthers) @{
2292     @dots{}
2293   @}
2294   @@finally @{
2295     @dots{}
2296       @@throw expr;
2297     @dots{}
2298   @}
2299 @end smallexample
2300
2301 The @code{@@throw} statement may appear anywhere in an Objective-C or
2302 Objective-C++ program; when used inside of a @code{@@catch} block, the
2303 @code{@@throw} may appear without an argument (as shown above), in which case
2304 the object caught by the @code{@@catch} will be rethrown.
2305
2306 Note that only (pointers to) Objective-C objects may be thrown and
2307 caught using this scheme.  When an object is thrown, it will be caught
2308 by the nearest @code{@@catch} clause capable of handling objects of that type,
2309 analogously to how @code{catch} blocks work in C++ and Java.  A
2310 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2311 any and all Objective-C exceptions not caught by previous @code{@@catch}
2312 clauses (if any).
2313
2314 The @code{@@finally} clause, if present, will be executed upon exit from the
2315 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2316 regardless of whether any exceptions are thrown, caught or rethrown
2317 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2318 of the @code{finally} clause in Java.
2319
2320 There are several caveats to using the new exception mechanism:
2321
2322 @itemize @bullet
2323 @item
2324 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2325 idioms provided by the @code{NSException} class, the new
2326 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2327 systems, due to additional functionality needed in the (NeXT) Objective-C
2328 runtime.
2329
2330 @item
2331 As mentioned above, the new exceptions do not support handling
2332 types other than Objective-C objects.   Furthermore, when used from
2333 Objective-C++, the Objective-C exception model does not interoperate with C++
2334 exceptions at this time.  This means you cannot @code{@@throw} an exception
2335 from Objective-C and @code{catch} it in C++, or vice versa
2336 (i.e., @code{throw @dots{} @@catch}).
2337 @end itemize
2338
2339 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2340 blocks for thread-safe execution:
2341
2342 @smallexample
2343   @@synchronized (ObjCClass *guard) @{
2344     @dots{}
2345   @}
2346 @end smallexample
2347
2348 Upon entering the @code{@@synchronized} block, a thread of execution shall
2349 first check whether a lock has been placed on the corresponding @code{guard}
2350 object by another thread.  If it has, the current thread shall wait until
2351 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2352 the current thread will place its own lock on it, execute the code contained in
2353 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2354 making @code{guard} available to other threads).
2355
2356 Unlike Java, Objective-C does not allow for entire methods to be marked
2357 @code{@@synchronized}.  Note that throwing exceptions out of
2358 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2359 to be unlocked properly.
2360
2361 @item -fobjc-gc
2362 @opindex fobjc-gc
2363 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2364
2365 @item -freplace-objc-classes
2366 @opindex freplace-objc-classes
2367 Emit a special marker instructing @command{ld(1)} not to statically link in
2368 the resulting object file, and allow @command{dyld(1)} to load it in at
2369 run time instead.  This is used in conjunction with the Fix-and-Continue
2370 debugging mode, where the object file in question may be recompiled and
2371 dynamically reloaded in the course of program execution, without the need
2372 to restart the program itself.  Currently, Fix-and-Continue functionality
2373 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2374 and later.
2375
2376 @item -fzero-link
2377 @opindex fzero-link
2378 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2379 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2380 compile time) with static class references that get initialized at load time,
2381 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2382 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2383 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2384 for individual class implementations to be modified during program execution.
2385
2386 @item -gen-decls
2387 @opindex gen-decls
2388 Dump interface declarations for all classes seen in the source file to a
2389 file named @file{@var{sourcename}.decl}.
2390
2391 @item -Wassign-intercept
2392 @opindex Wassign-intercept
2393 Warn whenever an Objective-C assignment is being intercepted by the
2394 garbage collector.
2395
2396 @item -Wno-protocol
2397 @opindex Wno-protocol
2398 If a class is declared to implement a protocol, a warning is issued for
2399 every method in the protocol that is not implemented by the class.  The
2400 default behavior is to issue a warning for every method not explicitly
2401 implemented in the class, even if a method implementation is inherited
2402 from the superclass.  If you use the @option{-Wno-protocol} option, then
2403 methods inherited from the superclass are considered to be implemented,
2404 and no warning is issued for them.
2405
2406 @item -Wselector
2407 @opindex Wselector
2408 Warn if multiple methods of different types for the same selector are
2409 found during compilation.  The check is performed on the list of methods
2410 in the final stage of compilation.  Additionally, a check is performed
2411 for each selector appearing in a @code{@@selector(@dots{})}
2412 expression, and a corresponding method for that selector has been found
2413 during compilation.  Because these checks scan the method table only at
2414 the end of compilation, these warnings are not produced if the final
2415 stage of compilation is not reached, for example because an error is
2416 found during compilation, or because the @option{-fsyntax-only} option is
2417 being used.
2418
2419 @item -Wstrict-selector-match
2420 @opindex Wstrict-selector-match
2421 Warn if multiple methods with differing argument and/or return types are
2422 found for a given selector when attempting to send a message using this
2423 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2424 is off (which is the default behavior), the compiler will omit such warnings
2425 if any differences found are confined to types which share the same size
2426 and alignment.
2427
2428 @item -Wundeclared-selector
2429 @opindex Wundeclared-selector
2430 Warn if a @code{@@selector(@dots{})} expression referring to an
2431 undeclared selector is found.  A selector is considered undeclared if no
2432 method with that name has been declared before the
2433 @code{@@selector(@dots{})} expression, either explicitly in an
2434 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2435 an @code{@@implementation} section.  This option always performs its
2436 checks as soon as a @code{@@selector(@dots{})} expression is found,
2437 while @option{-Wselector} only performs its checks in the final stage of
2438 compilation.  This also enforces the coding style convention
2439 that methods and selectors must be declared before being used.
2440
2441 @item -print-objc-runtime-info
2442 @opindex print-objc-runtime-info
2443 Generate C header describing the largest structure that is passed by
2444 value, if any.
2445
2446 @end table
2447
2448 @node Language Independent Options
2449 @section Options to Control Diagnostic Messages Formatting
2450 @cindex options to control diagnostics formatting
2451 @cindex diagnostic messages
2452 @cindex message formatting
2453
2454 Traditionally, diagnostic messages have been formatted irrespective of
2455 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2456 below can be used to control the diagnostic messages formatting
2457 algorithm, e.g.@: how many characters per line, how often source location
2458 information should be reported.  Right now, only the C++ front end can
2459 honor these options.  However it is expected, in the near future, that
2460 the remaining front ends would be able to digest them correctly.
2461
2462 @table @gcctabopt
2463 @item -fmessage-length=@var{n}
2464 @opindex fmessage-length
2465 Try to format error messages so that they fit on lines of about @var{n}
2466 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2467 the front ends supported by GCC@.  If @var{n} is zero, then no
2468 line-wrapping will be done; each error message will appear on a single
2469 line.
2470
2471 @opindex fdiagnostics-show-location
2472 @item -fdiagnostics-show-location=once
2473 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2474 reporter to emit @emph{once} source location information; that is, in
2475 case the message is too long to fit on a single physical line and has to
2476 be wrapped, the source location won't be emitted (as prefix) again,
2477 over and over, in subsequent continuation lines.  This is the default
2478 behavior.
2479
2480 @item -fdiagnostics-show-location=every-line
2481 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2482 messages reporter to emit the same source location information (as
2483 prefix) for physical lines that result from the process of breaking
2484 a message which is too long to fit on a single line.
2485
2486 @item -fdiagnostics-show-option
2487 @opindex fdiagnostics-show-option
2488 This option instructs the diagnostic machinery to add text to each
2489 diagnostic emitted, which indicates which command line option directly
2490 controls that diagnostic, when such an option is known to the
2491 diagnostic machinery.
2492
2493 @item -Wcoverage-mismatch
2494 @opindex Wcoverage-mismatch
2495 Warn if feedback profiles do not match when using the
2496 @option{-fprofile-use} option.
2497 If a source file was changed between @option{-fprofile-gen} and
2498 @option{-fprofile-use}, the files with the profile feedback can fail
2499 to match the source file and GCC can not use the profile feedback
2500 information.  By default, GCC emits an error message in this case.
2501 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2502 error.  GCC does not use appropriate feedback profiles, so using this
2503 option can result in poorly optimized code.  This option is useful
2504 only in the case of very minor changes such as bug fixes to an
2505 existing code-base.
2506
2507 @end table
2508
2509 @node Warning Options
2510 @section Options to Request or Suppress Warnings
2511 @cindex options to control warnings
2512 @cindex warning messages
2513 @cindex messages, warning
2514 @cindex suppressing warnings
2515
2516 Warnings are diagnostic messages that report constructions which
2517 are not inherently erroneous but which are risky or suggest there
2518 may have been an error.
2519
2520 The following language-independent options do not enable specific
2521 warnings but control the kinds of diagnostics produced by GCC.
2522
2523 @table @gcctabopt
2524 @cindex syntax checking
2525 @item -fsyntax-only
2526 @opindex fsyntax-only
2527 Check the code for syntax errors, but don't do anything beyond that.
2528
2529 @item -w
2530 @opindex w
2531 Inhibit all warning messages.
2532
2533 @item -Werror
2534 @opindex Werror
2535 Make all warnings into errors.
2536
2537 @item -Werror=
2538 @opindex Werror=
2539 Make the specified warning into an error.  The specifier for a warning
2540 is appended, for example @option{-Werror=switch} turns the warnings
2541 controlled by @option{-Wswitch} into errors.  This switch takes a
2542 negative form, to be used to negate @option{-Werror} for specific
2543 warnings, for example @option{-Wno-error=switch} makes
2544 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2545 is in effect.  You can use the @option{-fdiagnostics-show-option}
2546 option to have each controllable warning amended with the option which
2547 controls it, to determine what to use with this option.
2548
2549 Note that specifying @option{-Werror=}@var{foo} automatically implies
2550 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2551 imply anything.
2552
2553 @item -Wfatal-errors
2554 @opindex Wfatal-errors
2555 This option causes the compiler to abort compilation on the first error
2556 occurred rather than trying to keep going and printing further error
2557 messages.
2558
2559 @end table
2560
2561 You can request many specific warnings with options beginning
2562 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2563 implicit declarations.  Each of these specific warning options also
2564 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2565 example, @option{-Wno-implicit}.  This manual lists only one of the
2566 two forms, whichever is not the default.  For further,
2567 language-specific options also refer to @ref{C++ Dialect Options} and
2568 @ref{Objective-C and Objective-C++ Dialect Options}.
2569
2570 @table @gcctabopt
2571 @item -pedantic
2572 @opindex pedantic
2573 Issue all the warnings demanded by strict ISO C and ISO C++;
2574 reject all programs that use forbidden extensions, and some other
2575 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2576 version of the ISO C standard specified by any @option{-std} option used.
2577
2578 Valid ISO C and ISO C++ programs should compile properly with or without
2579 this option (though a rare few will require @option{-ansi} or a
2580 @option{-std} option specifying the required version of ISO C)@.  However,
2581 without this option, certain GNU extensions and traditional C and C++
2582 features are supported as well.  With this option, they are rejected.
2583
2584 @option{-pedantic} does not cause warning messages for use of the
2585 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2586 warnings are also disabled in the expression that follows
2587 @code{__extension__}.  However, only system header files should use
2588 these escape routes; application programs should avoid them.
2589 @xref{Alternate Keywords}.
2590
2591 Some users try to use @option{-pedantic} to check programs for strict ISO
2592 C conformance.  They soon find that it does not do quite what they want:
2593 it finds some non-ISO practices, but not all---only those for which
2594 ISO C @emph{requires} a diagnostic, and some others for which
2595 diagnostics have been added.
2596
2597 A feature to report any failure to conform to ISO C might be useful in
2598 some instances, but would require considerable additional work and would
2599 be quite different from @option{-pedantic}.  We don't have plans to
2600 support such a feature in the near future.
2601
2602 Where the standard specified with @option{-std} represents a GNU
2603 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2604 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2605 extended dialect is based.  Warnings from @option{-pedantic} are given
2606 where they are required by the base standard.  (It would not make sense
2607 for such warnings to be given only for features not in the specified GNU
2608 C dialect, since by definition the GNU dialects of C include all
2609 features the compiler supports with the given option, and there would be
2610 nothing to warn about.)
2611
2612 @item -pedantic-errors
2613 @opindex pedantic-errors
2614 Like @option{-pedantic}, except that errors are produced rather than
2615 warnings.
2616
2617 @item -Wall
2618 @opindex Wall
2619 This enables all the warnings about constructions that some users
2620 consider questionable, and that are easy to avoid (or modify to
2621 prevent the warning), even in conjunction with macros.  This also
2622 enables some language-specific warnings described in @ref{C++ Dialect
2623 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2624
2625 @option{-Wall} turns on the following warning flags:
2626
2627 @gccoptlist{-Waddress   @gol
2628 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2629 -Wc++0x-compat  @gol
2630 -Wchar-subscripts  @gol
2631 -Wimplicit-int  @gol
2632 -Wimplicit-function-declaration  @gol
2633 -Wcomment  @gol
2634 -Wformat   @gol
2635 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2636 -Wmissing-braces  @gol
2637 -Wnonnull  @gol
2638 -Wparentheses  @gol
2639 -Wpointer-sign  @gol
2640 -Wreorder   @gol
2641 -Wreturn-type  @gol
2642 -Wsequence-point  @gol
2643 -Wsign-compare @r{(only in C++)}  @gol
2644 -Wstrict-aliasing  @gol
2645 -Wstrict-overflow=1  @gol
2646 -Wswitch  @gol
2647 -Wtrigraphs  @gol
2648 -Wuninitialized @r{(only with} @option{-O1} @r{and above)}  @gol
2649 -Wunknown-pragmas  @gol
2650 -Wunused-function  @gol
2651 -Wunused-label     @gol
2652 -Wunused-value     @gol
2653 -Wunused-variable  @gol
2654 }
2655
2656 Note that some warning flags are not implied by @option{-Wall}.  Some of
2657 them warn about constructions that users generally do not consider
2658 questionable, but which occasionally you might wish to check for;
2659 others warn about constructions that are necessary or hard to avoid in
2660 some cases, and there is no simple way to modify the code to suppress
2661 the warning. Some of them are enabled by @option{-Wextra} but many of
2662 them must be enabled individually.
2663
2664 @item -Wextra
2665 @opindex W
2666 @opindex Wextra
2667 This enables some extra warning flags that are not enabled by
2668 @option{-Wall}. (This option used to be called @option{-W}.  The older
2669 name is still supported, but the newer name is more descriptive.)
2670
2671 @gccoptlist{-Wclobbered  @gol
2672 -Wempty-body  @gol
2673 -Wignored-qualifiers @gol
2674 -Wmissing-field-initializers  @gol
2675 -Wmissing-parameter-type @r{(C only)}  @gol
2676 -Wold-style-declaration @r{(C only)}  @gol
2677 -Woverride-init  @gol
2678 -Wsign-compare  @gol
2679 -Wtype-limits  @gol
2680 -Wuninitialized @r{(only with} @option{-O1} @r{and above)}  @gol
2681 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2682 }
2683
2684 The option @option{-Wextra} also prints warning messages for the
2685 following cases:
2686
2687 @itemize @bullet
2688
2689 @item
2690 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2691 @samp{>}, or @samp{>=}.
2692
2693 @item 
2694 (C++ only) An enumerator and a non-enumerator both appear in a
2695 conditional expression.
2696
2697 @item 
2698 (C++ only) A non-static reference or non-static @samp{const} member
2699 appears in a class without constructors.
2700
2701 @item 
2702 (C++ only) Ambiguous virtual bases.
2703
2704 @item 
2705 (C++ only) Subscripting an array which has been declared @samp{register}.
2706
2707 @item 
2708 (C++ only) Taking the address of a variable which has been declared
2709 @samp{register}.
2710
2711 @item 
2712 (C++ only) A base class is not initialized in a derived class' copy
2713 constructor.
2714
2715 @end itemize
2716
2717 @item -Wno-import
2718 @opindex Wno-import
2719 Inhibit warning messages about the use of @samp{#import}.
2720
2721 @item -Wchar-subscripts
2722 @opindex Wchar-subscripts
2723 Warn if an array subscript has type @code{char}.  This is a common cause
2724 of error, as programmers often forget that this type is signed on some
2725 machines.
2726 This warning is enabled by @option{-Wall}.
2727
2728 @item -Wcomment
2729 @opindex Wcomment
2730 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2731 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2732 This warning is enabled by @option{-Wall}.
2733
2734 @item -Wformat
2735 @opindex Wformat
2736 @opindex ffreestanding
2737 @opindex fno-builtin
2738 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2739 the arguments supplied have types appropriate to the format string
2740 specified, and that the conversions specified in the format string make
2741 sense.  This includes standard functions, and others specified by format
2742 attributes (@pxref{Function Attributes}), in the @code{printf},
2743 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2744 not in the C standard) families (or other target-specific families).
2745 Which functions are checked without format attributes having been
2746 specified depends on the standard version selected, and such checks of
2747 functions without the attribute specified are disabled by
2748 @option{-ffreestanding} or @option{-fno-builtin}.
2749
2750 The formats are checked against the format features supported by GNU
2751 libc version 2.2.  These include all ISO C90 and C99 features, as well
2752 as features from the Single Unix Specification and some BSD and GNU
2753 extensions.  Other library implementations may not support all these
2754 features; GCC does not support warning about features that go beyond a
2755 particular library's limitations.  However, if @option{-pedantic} is used
2756 with @option{-Wformat}, warnings will be given about format features not
2757 in the selected standard version (but not for @code{strfmon} formats,
2758 since those are not in any version of the C standard).  @xref{C Dialect
2759 Options,,Options Controlling C Dialect}.
2760
2761 Since @option{-Wformat} also checks for null format arguments for
2762 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2763
2764 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2765 aspects of format checking, the options @option{-Wformat-y2k},
2766 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2767 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2768 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2769
2770 @item -Wformat-y2k
2771 @opindex Wformat-y2k
2772 If @option{-Wformat} is specified, also warn about @code{strftime}
2773 formats which may yield only a two-digit year.
2774
2775 @item -Wno-format-extra-args
2776 @opindex Wno-format-extra-args
2777 If @option{-Wformat} is specified, do not warn about excess arguments to a
2778 @code{printf} or @code{scanf} format function.  The C standard specifies
2779 that such arguments are ignored.
2780
2781 Where the unused arguments lie between used arguments that are
2782 specified with @samp{$} operand number specifications, normally
2783 warnings are still given, since the implementation could not know what
2784 type to pass to @code{va_arg} to skip the unused arguments.  However,
2785 in the case of @code{scanf} formats, this option will suppress the
2786 warning if the unused arguments are all pointers, since the Single
2787 Unix Specification says that such unused arguments are allowed.
2788
2789 @item -Wno-format-zero-length
2790 @opindex Wno-format-zero-length
2791 If @option{-Wformat} is specified, do not warn about zero-length formats.
2792 The C standard specifies that zero-length formats are allowed.
2793
2794 @item -Wformat-nonliteral
2795 @opindex Wformat-nonliteral
2796 If @option{-Wformat} is specified, also warn if the format string is not a
2797 string literal and so cannot be checked, unless the format function
2798 takes its format arguments as a @code{va_list}.
2799
2800 @item -Wformat-security
2801 @opindex Wformat-security
2802 If @option{-Wformat} is specified, also warn about uses of format
2803 functions that represent possible security problems.  At present, this
2804 warns about calls to @code{printf} and @code{scanf} functions where the
2805 format string is not a string literal and there are no format arguments,
2806 as in @code{printf (foo);}.  This may be a security hole if the format
2807 string came from untrusted input and contains @samp{%n}.  (This is
2808 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2809 in future warnings may be added to @option{-Wformat-security} that are not
2810 included in @option{-Wformat-nonliteral}.)
2811
2812 @item -Wformat=2
2813 @opindex Wformat=2
2814 Enable @option{-Wformat} plus format checks not included in
2815 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2816 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2817
2818 @item -Wnonnull
2819 @opindex Wnonnull
2820 Warn about passing a null pointer for arguments marked as
2821 requiring a non-null value by the @code{nonnull} function attribute.
2822
2823 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2824 can be disabled with the @option{-Wno-nonnull} option.
2825
2826 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2827 @opindex Winit-self
2828 Warn about uninitialized variables which are initialized with themselves.
2829 Note this option can only be used with the @option{-Wuninitialized} option,
2830 which in turn only works with @option{-O1} and above.
2831
2832 For example, GCC will warn about @code{i} being uninitialized in the
2833 following snippet only when @option{-Winit-self} has been specified:
2834 @smallexample
2835 @group
2836 int f()
2837 @{
2838   int i = i;
2839   return i;
2840 @}
2841 @end group
2842 @end smallexample
2843
2844 @item -Wimplicit-int
2845 @opindex Wimplicit-int
2846 Warn when a declaration does not specify a type.
2847 This warning is enabled by @option{-Wall}.
2848
2849 @item -Wimplicit-function-declaration
2850 @opindex Wimplicit-function-declaration
2851 @opindex Wno-implicit-function-declaration
2852 Give a warning whenever a function is used before being declared. In
2853 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2854 enabled by default and it is made into an error by
2855 @option{-pedantic-errors}. This warning is also enabled by
2856 @option{-Wall}.
2857
2858 @item -Wimplicit
2859 @opindex Wimplicit
2860 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2861 This warning is enabled by @option{-Wall}.
2862
2863 @item -Wignored-qualifiers
2864 @opindex Wignored-qualifiers
2865 @opindex Wno-ignored-qualifiers
2866 Warn if the return type of a function has a type qualifier
2867 such as @code{const}.  For ISO C such a type qualifier has no effect,
2868 since the value returned by a function is not an lvalue.
2869 For C++, the warning is only emitted for scalar types or @code{void}.
2870 ISO C prohibits qualified @code{void} return types on function
2871 definitions, so such return types always receive a warning
2872 even without this option.
2873
2874 This warning is also enabled by @option{-Wextra}.
2875
2876 @item -Wmain
2877 @opindex Wmain
2878 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
2879 function with external linkage, returning int, taking either zero
2880 arguments, two, or three arguments of appropriate types.
2881 This warning is enabled by @option{-Wall}.
2882
2883 @item -Wmissing-braces
2884 @opindex Wmissing-braces
2885 Warn if an aggregate or union initializer is not fully bracketed.  In
2886 the following example, the initializer for @samp{a} is not fully
2887 bracketed, but that for @samp{b} is fully bracketed.
2888
2889 @smallexample
2890 int a[2][2] = @{ 0, 1, 2, 3 @};
2891 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2892 @end smallexample
2893
2894 This warning is enabled by @option{-Wall}.
2895
2896 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2897 @opindex Wmissing-include-dirs
2898 Warn if a user-supplied include directory does not exist.
2899
2900 @item -Wparentheses
2901 @opindex Wparentheses
2902 Warn if parentheses are omitted in certain contexts, such
2903 as when there is an assignment in a context where a truth value
2904 is expected, or when operators are nested whose precedence people
2905 often get confused about.
2906
2907 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2908 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2909 interpretation from that of ordinary mathematical notation.
2910
2911 Also warn about constructions where there may be confusion to which
2912 @code{if} statement an @code{else} branch belongs.  Here is an example of
2913 such a case:
2914
2915 @smallexample
2916 @group
2917 @{
2918   if (a)
2919     if (b)
2920       foo ();
2921   else
2922     bar ();
2923 @}
2924 @end group
2925 @end smallexample
2926
2927 In C/C++, every @code{else} branch belongs to the innermost possible
2928 @code{if} statement, which in this example is @code{if (b)}.  This is
2929 often not what the programmer expected, as illustrated in the above
2930 example by indentation the programmer chose.  When there is the
2931 potential for this confusion, GCC will issue a warning when this flag
2932 is specified.  To eliminate the warning, add explicit braces around
2933 the innermost @code{if} statement so there is no way the @code{else}
2934 could belong to the enclosing @code{if}.  The resulting code would
2935 look like this:
2936
2937 @smallexample
2938 @group
2939 @{
2940   if (a)
2941     @{
2942       if (b)
2943         foo ();
2944       else
2945         bar ();
2946     @}
2947 @}
2948 @end group
2949 @end smallexample
2950
2951 This warning is enabled by @option{-Wall}.
2952
2953 @item -Wsequence-point
2954 @opindex Wsequence-point
2955 Warn about code that may have undefined semantics because of violations
2956 of sequence point rules in the C and C++ standards.
2957
2958 The C and C++ standards defines the order in which expressions in a C/C++
2959 program are evaluated in terms of @dfn{sequence points}, which represent
2960 a partial ordering between the execution of parts of the program: those
2961 executed before the sequence point, and those executed after it.  These
2962 occur after the evaluation of a full expression (one which is not part
2963 of a larger expression), after the evaluation of the first operand of a
2964 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
2965 function is called (but after the evaluation of its arguments and the
2966 expression denoting the called function), and in certain other places.
2967 Other than as expressed by the sequence point rules, the order of
2968 evaluation of subexpressions of an expression is not specified.  All
2969 these rules describe only a partial order rather than a total order,
2970 since, for example, if two functions are called within one expression
2971 with no sequence point between them, the order in which the functions
2972 are called is not specified.  However, the standards committee have
2973 ruled that function calls do not overlap.
2974
2975 It is not specified when between sequence points modifications to the
2976 values of objects take effect.  Programs whose behavior depends on this
2977 have undefined behavior; the C and C++ standards specify that ``Between
2978 the previous and next sequence point an object shall have its stored
2979 value modified at most once by the evaluation of an expression.
2980 Furthermore, the prior value shall be read only to determine the value
2981 to be stored.''.  If a program breaks these rules, the results on any
2982 particular implementation are entirely unpredictable.
2983
2984 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
2985 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
2986 diagnosed by this option, and it may give an occasional false positive
2987 result, but in general it has been found fairly effective at detecting
2988 this sort of problem in programs.
2989
2990 The standard is worded confusingly, therefore there is some debate
2991 over the precise meaning of the sequence point rules in subtle cases.
2992 Links to discussions of the problem, including proposed formal
2993 definitions, may be found on the GCC readings page, at
2994 @w{@uref{http://gcc.gnu.org/readings.html}}.
2995
2996 This warning is enabled by @option{-Wall} for C and C++.
2997
2998 @item -Wreturn-type
2999 @opindex Wreturn-type
3000 @opindex Wno-return-type
3001 Warn whenever a function is defined with a return-type that defaults
3002 to @code{int}.  Also warn about any @code{return} statement with no
3003 return-value in a function whose return-type is not @code{void}
3004 (falling off the end of the function body is considered returning
3005 without a value), and about a @code{return} statement with a
3006 expression in a function whose return-type is @code{void}.
3007
3008 For C++, a function without return type always produces a diagnostic
3009 message, even when @option{-Wno-return-type} is specified.  The only
3010 exceptions are @samp{main} and functions defined in system headers.
3011
3012 This warning is enabled by @option{-Wall}.
3013
3014 @item -Wswitch
3015 @opindex Wswitch
3016 Warn whenever a @code{switch} statement has an index of enumerated type
3017 and lacks a @code{case} for one or more of the named codes of that
3018 enumeration.  (The presence of a @code{default} label prevents this
3019 warning.)  @code{case} labels outside the enumeration range also
3020 provoke warnings when this option is used.
3021 This warning is enabled by @option{-Wall}.
3022
3023 @item -Wswitch-default
3024 @opindex Wswitch-switch
3025 Warn whenever a @code{switch} statement does not have a @code{default}
3026 case.
3027
3028 @item -Wswitch-enum
3029 @opindex Wswitch-enum
3030 Warn whenever a @code{switch} statement has an index of enumerated type
3031 and lacks a @code{case} for one or more of the named codes of that
3032 enumeration.  @code{case} labels outside the enumeration range also
3033 provoke warnings when this option is used.
3034
3035 @item -Wtrigraphs
3036 @opindex Wtrigraphs
3037 Warn if any trigraphs are encountered that might change the meaning of
3038 the program (trigraphs within comments are not warned about).
3039 This warning is enabled by @option{-Wall}.
3040
3041 @item -Wunused-function
3042 @opindex Wunused-function
3043 Warn whenever a static function is declared but not defined or a
3044 non-inline static function is unused.
3045 This warning is enabled by @option{-Wall}.
3046
3047 @item -Wunused-label
3048 @opindex Wunused-label
3049 Warn whenever a label is declared but not used.
3050 This warning is enabled by @option{-Wall}.
3051
3052 To suppress this warning use the @samp{unused} attribute
3053 (@pxref{Variable Attributes}).
3054
3055 @item -Wunused-parameter
3056 @opindex Wunused-parameter
3057 Warn whenever a function parameter is unused aside from its declaration.
3058
3059 To suppress this warning use the @samp{unused} attribute
3060 (@pxref{Variable Attributes}).
3061
3062 @item -Wunused-variable
3063 @opindex Wunused-variable
3064 Warn whenever a local variable or non-constant static variable is unused
3065 aside from its declaration.
3066 This warning is enabled by @option{-Wall}.
3067
3068 To suppress this warning use the @samp{unused} attribute
3069 (@pxref{Variable Attributes}).
3070
3071 @item -Wunused-value
3072 @opindex Wunused-value
3073 Warn whenever a statement computes a result that is explicitly not
3074 used. To suppress this warning cast the unused expression to
3075 @samp{void}. This includes an expression-statement or the left-hand
3076 side of a comma expression that contains no side effects. For example,
3077 an expression such as @samp{x[i,j]} will cause a warning, while
3078 @samp{x[(void)i,j]} will not.
3079
3080 This warning is enabled by @option{-Wall}.
3081
3082 @item -Wunused
3083 @opindex Wunused
3084 All the above @option{-Wunused} options combined.
3085
3086 In order to get a warning about an unused function parameter, you must
3087 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3088 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3089
3090 @item -Wuninitialized
3091 @opindex Wuninitialized
3092 Warn if an automatic variable is used without first being initialized or
3093 if a variable may be clobbered by a @code{setjmp} call.
3094
3095 These warnings are possible only in optimizing compilation,
3096 because they require data flow information that is computed only
3097 when optimizing.  If you do not specify @option{-O}, you will not get
3098 these warnings. Instead, GCC will issue a warning about @option{-Wuninitialized}
3099 requiring @option{-O}.
3100
3101 If you want to warn about code which uses the uninitialized value of the
3102 variable in its own initializer, use the @option{-Winit-self} option.
3103
3104 These warnings occur for individual uninitialized or clobbered
3105 elements of structure, union or array variables as well as for
3106 variables which are uninitialized or clobbered as a whole.  They do
3107 not occur for variables or elements declared @code{volatile}.  Because
3108 these warnings depend on optimization, the exact variables or elements
3109 for which there are warnings will depend on the precise optimization
3110 options and version of GCC used.
3111
3112 Note that there may be no warning about a variable that is used only
3113 to compute a value that itself is never used, because such
3114 computations may be deleted by data flow analysis before the warnings
3115 are printed.
3116
3117 These warnings are made optional because GCC is not smart
3118 enough to see all the reasons why the code might be correct
3119 despite appearing to have an error.  Here is one example of how
3120 this can happen:
3121
3122 @smallexample
3123 @group
3124 @{
3125   int x;
3126   switch (y)
3127     @{
3128     case 1: x = 1;
3129       break;
3130     case 2: x = 4;
3131       break;
3132     case 3: x = 5;
3133     @}
3134   foo (x);
3135 @}
3136 @end group
3137 @end smallexample
3138
3139 @noindent
3140 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3141 always initialized, but GCC doesn't know this.  Here is
3142 another common case:
3143
3144 @smallexample
3145 @{
3146   int save_y;
3147   if (change_y) save_y = y, y = new_y;
3148   @dots{}
3149   if (change_y) y = save_y;
3150 @}
3151 @end smallexample
3152
3153 @noindent
3154 This has no bug because @code{save_y} is used only if it is set.
3155
3156 @cindex @code{longjmp} warnings
3157 This option also warns when a non-volatile automatic variable might be
3158 changed by a call to @code{longjmp}.  These warnings as well are possible
3159 only in optimizing compilation.
3160
3161 The compiler sees only the calls to @code{setjmp}.  It cannot know
3162 where @code{longjmp} will be called; in fact, a signal handler could
3163 call it at any point in the code.  As a result, you may get a warning
3164 even when there is in fact no problem because @code{longjmp} cannot
3165 in fact be called at the place which would cause a problem.
3166
3167 Some spurious warnings can be avoided if you declare all the functions
3168 you use that never return as @code{noreturn}.  @xref{Function
3169 Attributes}.
3170
3171 This warning is enabled by @option{-Wall} or @option{-Wextra} in
3172 optimizing compilations (@option{-O1} and above).
3173
3174 @item -Wunknown-pragmas
3175 @opindex Wunknown-pragmas
3176 @cindex warning for unknown pragmas
3177 @cindex unknown pragmas, warning
3178 @cindex pragmas, warning of unknown
3179 Warn when a #pragma directive is encountered which is not understood by
3180 GCC@.  If this command line option is used, warnings will even be issued
3181 for unknown pragmas in system header files.  This is not the case if
3182 the warnings were only enabled by the @option{-Wall} command line option.
3183
3184 @item -Wno-pragmas
3185 @opindex Wno-pragmas
3186 @opindex Wpragmas
3187 Do not warn about misuses of pragmas, such as incorrect parameters,
3188 invalid syntax, or conflicts between pragmas.  See also
3189 @samp{-Wunknown-pragmas}.
3190
3191 @item -Wstrict-aliasing
3192 @opindex Wstrict-aliasing
3193 This option is only active when @option{-fstrict-aliasing} is active.
3194 It warns about code which might break the strict aliasing rules that the
3195 compiler is using for optimization.  The warning does not catch all
3196 cases, but does attempt to catch the more common pitfalls.  It is
3197 included in @option{-Wall}.
3198 It is equivalent to @option{-Wstrict-aliasing=3}
3199
3200 @item -Wstrict-aliasing=n
3201 @opindex Wstrict-aliasing=n
3202 This option is only active when @option{-fstrict-aliasing} is active.
3203 It warns about code which might break the strict aliasing rules that the
3204 compiler is using for optimization.
3205 Higher levels correspond to higher accuracy (fewer false positives).
3206 Higher levels also correspond to more effort, similar to the way -O works.
3207 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3208 with n=3.
3209
3210 Level 1: Most aggressive, quick, least accurate.
3211 Possibly useful when higher levels
3212 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3213 false negatives.  However, it has many false positives.
3214 Warns for all pointer conversions between possibly incompatible types, 
3215 even if never dereferenced.  Runs in the frontend only.
3216
3217 Level 2: Aggressive, quick, not too precise.
3218 May still have many false positives (not as many as level 1 though),
3219 and few false negatives (but possibly more than level 1).
3220 Unlike level 1, it only warns when an address is taken.  Warns about
3221 incomplete types.  Runs in the frontend only.
3222
3223 Level 3 (default for @option{-Wstrict-aliasing}): 
3224 Should have very few false positives and few false 
3225 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3226 Takes care of the common punn+dereference pattern in the frontend:
3227 @code{*(int*)&some_float}.
3228 If optimization is enabled, it also runs in the backend, where it deals 
3229 with multiple statement cases using flow-sensitive points-to information.
3230 Only warns when the converted pointer is dereferenced.
3231 Does not warn about incomplete types.
3232
3233 @item -Wstrict-overflow
3234 @itemx -Wstrict-overflow=@var{n}
3235 @opindex Wstrict-overflow
3236 This option is only active when @option{-fstrict-overflow} is active.
3237 It warns about cases where the compiler optimizes based on the
3238 assumption that signed overflow does not occur.  Note that it does not
3239 warn about all cases where the code might overflow: it only warns
3240 about cases where the compiler implements some optimization.  Thus
3241 this warning depends on the optimization level.
3242
3243 An optimization which assumes that signed overflow does not occur is
3244 perfectly safe if the values of the variables involved are such that
3245 overflow never does, in fact, occur.  Therefore this warning can
3246 easily give a false positive: a warning about code which is not
3247 actually a problem.  To help focus on important issues, several
3248 warning levels are defined.  No warnings are issued for the use of
3249 undefined signed overflow when estimating how many iterations a loop
3250 will require, in particular when determining whether a loop will be
3251 executed at all.
3252
3253 @table @gcctabopt
3254 @item -Wstrict-overflow=1
3255 Warn about cases which are both questionable and easy to avoid.  For
3256 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3257 compiler will simplify this to @code{1}.  This level of
3258 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3259 are not, and must be explicitly requested.
3260
3261 @item -Wstrict-overflow=2
3262 Also warn about other cases where a comparison is simplified to a
3263 constant.  For example: @code{abs (x) >= 0}.  This can only be
3264 simplified when @option{-fstrict-overflow} is in effect, because
3265 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3266 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3267 @option{-Wstrict-overflow=2}.
3268
3269 @item -Wstrict-overflow=3
3270 Also warn about other cases where a comparison is simplified.  For
3271 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3272
3273 @item -Wstrict-overflow=4
3274 Also warn about other simplifications not covered by the above cases.
3275 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3276
3277 @item -Wstrict-overflow=5
3278 Also warn about cases where the compiler reduces the magnitude of a
3279 constant involved in a comparison.  For example: @code{x + 2 > y} will
3280 be simplified to @code{x + 1 >= y}.  This is reported only at the
3281 highest warning level because this simplification applies to many
3282 comparisons, so this warning level will give a very large number of
3283 false positives.
3284 @end table
3285
3286 @item -Warray-bounds
3287 @opindex Wno-array-bounds
3288 @opindex Warray-bounds
3289 This option is only active when @option{-ftree-vrp} is active
3290 (default for -O2 and above). It warns about subscripts to arrays
3291 that are always out of bounds. This warning is enabled by @option{-Wall}.
3292
3293 @item -Wno-div-by-zero
3294 @opindex Wno-div-by-zero
3295 @opindex Wdiv-by-zero
3296 Do not warn about compile-time integer division by zero.  Floating point
3297 division by zero is not warned about, as it can be a legitimate way of
3298 obtaining infinities and NaNs.
3299
3300 @item -Wsystem-headers
3301 @opindex Wsystem-headers
3302 @cindex warnings from system headers
3303 @cindex system headers, warnings from
3304 Print warning messages for constructs found in system header files.
3305 Warnings from system headers are normally suppressed, on the assumption
3306 that they usually do not indicate real problems and would only make the
3307 compiler output harder to read.  Using this command line option tells
3308 GCC to emit warnings from system headers as if they occurred in user
3309 code.  However, note that using @option{-Wall} in conjunction with this
3310 option will @emph{not} warn about unknown pragmas in system
3311 headers---for that, @option{-Wunknown-pragmas} must also be used.
3312
3313 @item -Wfloat-equal
3314 @opindex Wfloat-equal
3315 Warn if floating point values are used in equality comparisons.
3316
3317 The idea behind this is that sometimes it is convenient (for the
3318 programmer) to consider floating-point values as approximations to
3319 infinitely precise real numbers.  If you are doing this, then you need
3320 to compute (by analyzing the code, or in some other way) the maximum or
3321 likely maximum error that the computation introduces, and allow for it
3322 when performing comparisons (and when producing output, but that's a
3323 different problem).  In particular, instead of testing for equality, you
3324 would check to see whether the two values have ranges that overlap; and
3325 this is done with the relational operators, so equality comparisons are
3326 probably mistaken.
3327
3328 @item -Wtraditional @r{(C only)}
3329 @opindex Wtraditional
3330 Warn about certain constructs that behave differently in traditional and
3331 ISO C@.  Also warn about ISO C constructs that have no traditional C
3332 equivalent, and/or problematic constructs which should be avoided.
3333
3334 @itemize @bullet
3335 @item
3336 Macro parameters that appear within string literals in the macro body.
3337 In traditional C macro replacement takes place within string literals,
3338 but does not in ISO C@.
3339
3340 @item
3341 In traditional C, some preprocessor directives did not exist.
3342 Traditional preprocessors would only consider a line to be a directive
3343 if the @samp{#} appeared in column 1 on the line.  Therefore
3344 @option{-Wtraditional} warns about directives that traditional C
3345 understands but would ignore because the @samp{#} does not appear as the
3346 first character on the line.  It also suggests you hide directives like
3347 @samp{#pragma} not understood by traditional C by indenting them.  Some
3348 traditional implementations would not recognize @samp{#elif}, so it
3349 suggests avoiding it altogether.
3350
3351 @item
3352 A function-like macro that appears without arguments.
3353
3354 @item
3355 The unary plus operator.
3356
3357 @item
3358 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3359 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3360 constants.)  Note, these suffixes appear in macros defined in the system
3361 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3362 Use of these macros in user code might normally lead to spurious
3363 warnings, however GCC's integrated preprocessor has enough context to
3364 avoid warning in these cases.
3365
3366 @item
3367 A function declared external in one block and then used after the end of
3368 the block.
3369
3370 @item
3371 A @code{switch} statement has an operand of type @code{long}.
3372
3373 @item
3374 A non-@code{static} function declaration follows a @code{static} one.
3375 This construct is not accepted by some traditional C compilers.
3376
3377 @item
3378 The ISO type of an integer constant has a different width or
3379 signedness from its traditional type.  This warning is only issued if
3380 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3381 typically represent bit patterns, are not warned about.
3382
3383 @item
3384 Usage of ISO string concatenation is detected.
3385
3386 @item
3387 Initialization of automatic aggregates.
3388
3389 @item
3390 Identifier conflicts with labels.  Traditional C lacks a separate
3391 namespace for labels.
3392
3393 @item
3394 Initialization of unions.  If the initializer is zero, the warning is
3395 omitted.  This is done under the assumption that the zero initializer in
3396 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3397 initializer warnings and relies on default initialization to zero in the
3398 traditional C case.
3399
3400 @item
3401 Conversions by prototypes between fixed/floating point values and vice
3402 versa.  The absence of these prototypes when compiling with traditional
3403 C would cause serious problems.  This is a subset of the possible
3404 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3405
3406 @item
3407 Use of ISO C style function definitions.  This warning intentionally is
3408 @emph{not} issued for prototype declarations or variadic functions
3409 because these ISO C features will appear in your code when using
3410 libiberty's traditional C compatibility macros, @code{PARAMS} and
3411 @code{VPARAMS}.  This warning is also bypassed for nested functions
3412 because that feature is already a GCC extension and thus not relevant to
3413 traditional C compatibility.
3414 @end itemize
3415
3416 @item -Wtraditional-conversion @r{(C only)}
3417 @opindex Wtraditional-conversion
3418 Warn if a prototype causes a type conversion that is different from what
3419 would happen to the same argument in the absence of a prototype.  This
3420 includes conversions of fixed point to floating and vice versa, and
3421 conversions changing the width or signedness of a fixed point argument
3422 except when the same as the default promotion.
3423
3424 @item -Wdeclaration-after-statement @r{(C only)}
3425 @opindex Wdeclaration-after-statement
3426 Warn when a declaration is found after a statement in a block.  This
3427 construct, known from C++, was introduced with ISO C99 and is by default
3428 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3429 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3430
3431 @item -Wundef
3432 @opindex Wundef
3433 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3434
3435 @item -Wno-endif-labels
3436 @opindex Wno-endif-labels
3437 @opindex Wendif-labels
3438 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3439
3440 @item -Wshadow
3441 @opindex Wshadow
3442 Warn whenever a local variable shadows another local variable, parameter or
3443 global variable or whenever a built-in function is shadowed.
3444
3445 @item -Wlarger-than-@var{len}
3446 @opindex Wlarger-than
3447 Warn whenever an object of larger than @var{len} bytes is defined.
3448
3449 @item -Wunsafe-loop-optimizations
3450 @opindex Wunsafe-loop-optimizations
3451 Warn if the loop cannot be optimized because the compiler could not
3452 assume anything on the bounds of the loop indices.  With
3453 @option{-funsafe-loop-optimizations} warn if the compiler made
3454 such assumptions.
3455
3456 @item -Wpointer-arith
3457 @opindex Wpointer-arith
3458 Warn about anything that depends on the ``size of'' a function type or
3459 of @code{void}.  GNU C assigns these types a size of 1, for
3460 convenience in calculations with @code{void *} pointers and pointers
3461 to functions.  In C++, warn also when an arithmetic operation involves
3462 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3463
3464 @item -Wtype-limits
3465 @opindex Wtype-limits
3466 @opindex Wno-type-limits
3467 Warn if a comparison is always true or always false due to the limited
3468 range of the data type, but do not warn for constant expressions.  For
3469 example, warn if an unsigned variable is compared against zero with
3470 @samp{<} or @samp{>=}.  This warning is also enabled by
3471 @option{-Wextra}.
3472
3473 @item -Wbad-function-cast @r{(C only)}
3474 @opindex Wbad-function-cast
3475 Warn whenever a function call is cast to a non-matching type.
3476 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3477
3478 @item -Wc++-compat
3479 Warn about ISO C constructs that are outside of the common subset of
3480 ISO C and ISO C++, e.g.@: request for implicit conversion from
3481 @code{void *} to a pointer to non-@code{void} type.
3482
3483 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3484 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3485 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3486 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3487
3488 @item -Wcast-qual
3489 @opindex Wcast-qual
3490 Warn whenever a pointer is cast so as to remove a type qualifier from
3491 the target type.  For example, warn if a @code{const char *} is cast
3492 to an ordinary @code{char *}.
3493
3494 @item -Wcast-align
3495 @opindex Wcast-align
3496 Warn whenever a pointer is cast such that the required alignment of the
3497 target is increased.  For example, warn if a @code{char *} is cast to
3498 an @code{int *} on machines where integers can only be accessed at
3499 two- or four-byte boundaries.
3500
3501 @item -Wwrite-strings
3502 @opindex Wwrite-strings
3503 When compiling C, give string constants the type @code{const
3504 char[@var{length}]} so that
3505 copying the address of one into a non-@code{const} @code{char *}
3506 pointer will get a warning; when compiling C++, warn about the
3507 deprecated conversion from string literals to @code{char *}.  This
3508 warning, by default, is enabled for C++ programs.
3509 These warnings will help you find at
3510 compile time code that can try to write into a string constant, but
3511 only if you have been very careful about using @code{const} in
3512 declarations and prototypes.  Otherwise, it will just be a nuisance;
3513 this is why we did not make @option{-Wall} request these warnings.
3514
3515 @item -Wclobbered
3516 @opindex Wclobbered
3517 Warn for variables that might be changed by @samp{longjmp} or
3518 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3519
3520 @item -Wconversion
3521 @opindex Wconversion
3522 @opindex Wno-conversion
3523 Warn for implicit conversions that may alter a value. This includes
3524 conversions between real and integer, like @code{abs (x)} when
3525 @code{x} is @code{double}; conversions between signed and unsigned,
3526 like @code{unsigned ui = -1}; and conversions to smaller types, like
3527 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3528 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3529 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3530 conversions between signed and unsigned integers can be disabled by
3531 using @option{-Wno-sign-conversion}.
3532
3533 For C++, also warn for conversions between @code{NULL} and non-pointer
3534 types; confusing overload resolution for user-defined conversions; and
3535 conversions that will never use a type conversion operator:
3536 conversions to @code{void}, the same type, a base class or a reference
3537 to them. Warnings about conversions between signed and unsigned
3538 integers are disabled by default in C++ unless
3539 @option{-Wsign-conversion} is explicitly enabled.
3540
3541 @item -Wempty-body
3542 @opindex Wempty-body
3543 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3544 while} statement.  Additionally, in C++, warn when an empty body occurs
3545 in a @samp{while} or @samp{for} statement with no whitespacing before
3546 the semicolon.  This warning is also enabled by @option{-Wextra}.
3547
3548 @item -Wsign-compare
3549 @opindex Wsign-compare
3550 @cindex warning for comparison of signed and unsigned values
3551 @cindex comparison of signed and unsigned values, warning
3552 @cindex signed and unsigned values, comparison warning
3553 Warn when a comparison between signed and unsigned values could produce
3554 an incorrect result when the signed value is converted to unsigned.
3555 This warning is also enabled by @option{-Wextra}; to get the other warnings
3556 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3557
3558 @item -Wsign-conversion
3559 @opindex Wsign-conversion
3560 @opindex Wno-sign-conversion
3561 Warn for implicit conversions that may change the sign of an integer
3562 value, like assigning a signed integer expression to an unsigned
3563 integer variable. An explicit cast silences the warning. In C, this
3564 option is enabled also by @option{-Wconversion}.
3565
3566 @item -Waddress
3567 @opindex Waddress
3568 @opindex Wno-address
3569 Warn about suspicious uses of memory addresses. These include using
3570 the address of a function in a conditional expression, such as
3571 @code{void func(void); if (func)}, and comparisons against the memory
3572 address of a string literal, such as @code{if (x == "abc")}.  Such
3573 uses typically indicate a programmer error: the address of a function
3574 always evaluates to true, so their use in a conditional usually
3575 indicate that the programmer forgot the parentheses in a function
3576 call; and comparisons against string literals result in unspecified
3577 behavior and are not portable in C, so they usually indicate that the
3578 programmer intended to use @code{strcmp}.  This warning is enabled by
3579 @option{-Wall}.
3580
3581 @item -Wlogical-op
3582 @opindex Wlogical-op
3583 @opindex Wno-logical-op
3584 Warn about suspicious uses of logical operators in expressions.
3585 This includes using logical operators in contexts where a
3586 bit-wise operator is likely to be expected.
3587
3588 @item -Waggregate-return
3589 @opindex Waggregate-return
3590 Warn if any functions that return structures or unions are defined or
3591 called.  (In languages where you can return an array, this also elicits
3592 a warning.)
3593
3594 @item -Wno-attributes
3595 @opindex Wno-attributes
3596 @opindex Wattributes
3597 Do not warn if an unexpected @code{__attribute__} is used, such as
3598 unrecognized attributes, function attributes applied to variables,
3599 etc.  This will not stop errors for incorrect use of supported
3600 attributes.
3601
3602 @item -Wstrict-prototypes @r{(C only)}
3603 @opindex Wstrict-prototypes
3604 Warn if a function is declared or defined without specifying the
3605 argument types.  (An old-style function definition is permitted without
3606 a warning if preceded by a declaration which specifies the argument
3607 types.)
3608
3609 @item -Wold-style-declaration @r{(C only)}
3610 @opindex Wold-style-declaration
3611 Warn for obsolescent usages, according to the C Standard, in a
3612 declaration. For example, warn if storage-class specifiers like
3613 @code{static} are not the first things in a declaration.  This warning
3614 is also enabled by @option{-Wextra}.
3615
3616 @item -Wold-style-definition @r{(C only)}
3617 @opindex Wold-style-definition
3618 Warn if an old-style function definition is used.  A warning is given
3619 even if there is a previous prototype.
3620
3621 @item -Wmissing-parameter-type @r{(C only)}
3622 @opindex Wmissing-parameter-type
3623 A function parameter is declared without a type specifier in K&R-style
3624 functions:
3625
3626 @smallexample
3627 void foo(bar) @{ @}
3628 @end smallexample
3629
3630 This warning is also enabled by @option{-Wextra}.
3631
3632 @item -Wmissing-prototypes @r{(C only)}
3633 @opindex Wmissing-prototypes
3634 Warn if a global function is defined without a previous prototype
3635 declaration.  This warning is issued even if the definition itself
3636 provides a prototype.  The aim is to detect global functions that fail
3637 to be declared in header files.
3638
3639 @item -Wmissing-declarations @r{(C and C++ only)}
3640 @opindex Wmissing-declarations
3641 Warn if a global function is defined without a previous declaration.
3642 Do so even if the definition itself provides a prototype.
3643 Use this option to detect global functions that are not declared in
3644 header files.  In C++, no warnings are issued for function templates,
3645 or for inline functions, or for functions in anonymous namespaces.
3646
3647 @item -Wmissing-field-initializers
3648 @opindex Wmissing-field-initializers
3649 @opindex W
3650 @opindex Wextra
3651 Warn if a structure's initializer has some fields missing.  For
3652 example, the following code would cause such a warning, because
3653 @code{x.h} is implicitly zero:
3654
3655 @smallexample
3656 struct s @{ int f, g, h; @};
3657 struct s x = @{ 3, 4 @};
3658 @end smallexample
3659
3660 This option does not warn about designated initializers, so the following
3661 modification would not trigger a warning:
3662
3663 @smallexample
3664 struct s @{ int f, g, h; @};
3665 struct s x = @{ .f = 3, .g = 4 @};
3666 @end smallexample
3667
3668 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3669 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3670
3671 @item -Wmissing-noreturn
3672 @opindex Wmissing-noreturn
3673 Warn about functions which might be candidates for attribute @code{noreturn}.
3674 Note these are only possible candidates, not absolute ones.  Care should
3675 be taken to manually verify functions actually do not ever return before
3676 adding the @code{noreturn} attribute, otherwise subtle code generation
3677 bugs could be introduced.  You will not get a warning for @code{main} in
3678 hosted C environments.
3679
3680 @item -Wmissing-format-attribute
3681 @opindex Wmissing-format-attribute
3682 @opindex Wformat
3683 Warn about function pointers which might be candidates for @code{format}
3684 attributes.  Note these are only possible candidates, not absolute ones.
3685 GCC will guess that function pointers with @code{format} attributes that
3686 are used in assignment, initialization, parameter passing or return
3687 statements should have a corresponding @code{format} attribute in the
3688 resulting type.  I.e.@: the left-hand side of the assignment or
3689 initialization, the type of the parameter variable, or the return type
3690 of the containing function respectively should also have a @code{format}
3691 attribute to avoid the warning.
3692
3693 GCC will also warn about function definitions which might be
3694 candidates for @code{format} attributes.  Again, these are only
3695 possible candidates.  GCC will guess that @code{format} attributes
3696 might be appropriate for any function that calls a function like
3697 @code{vprintf} or @code{vscanf}, but this might not always be the
3698 case, and some functions for which @code{format} attributes are
3699 appropriate may not be detected.
3700
3701 @item -Wno-multichar
3702 @opindex Wno-multichar
3703 @opindex Wmultichar
3704 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3705 Usually they indicate a typo in the user's code, as they have
3706 implementation-defined values, and should not be used in portable code.
3707
3708 @item -Wnormalized=<none|id|nfc|nfkc>
3709 @opindex Wnormalized
3710 @cindex NFC
3711 @cindex NFKC
3712 @cindex character set, input normalization
3713 In ISO C and ISO C++, two identifiers are different if they are
3714 different sequences of characters.  However, sometimes when characters
3715 outside the basic ASCII character set are used, you can have two
3716 different character sequences that look the same.  To avoid confusion,
3717 the ISO 10646 standard sets out some @dfn{normalization rules} which
3718 when applied ensure that two sequences that look the same are turned into
3719 the same sequence.  GCC can warn you if you are using identifiers which
3720 have not been normalized; this option controls that warning.
3721
3722 There are four levels of warning that GCC supports.  The default is
3723 @option{-Wnormalized=nfc}, which warns about any identifier which is
3724 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3725 recommended form for most uses.
3726
3727 Unfortunately, there are some characters which ISO C and ISO C++ allow
3728 in identifiers that when turned into NFC aren't allowable as
3729 identifiers.  That is, there's no way to use these symbols in portable
3730 ISO C or C++ and have all your identifiers in NFC.
3731 @option{-Wnormalized=id} suppresses the warning for these characters.
3732 It is hoped that future versions of the standards involved will correct
3733 this, which is why this option is not the default.
3734
3735 You can switch the warning off for all characters by writing
3736 @option{-Wnormalized=none}.  You would only want to do this if you
3737 were using some other normalization scheme (like ``D''), because
3738 otherwise you can easily create bugs that are literally impossible to see.
3739
3740 Some characters in ISO 10646 have distinct meanings but look identical
3741 in some fonts or display methodologies, especially once formatting has
3742 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3743 LETTER N'', will display just like a regular @code{n} which has been
3744 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3745 normalization scheme to convert all these into a standard form as
3746 well, and GCC will warn if your code is not in NFKC if you use
3747 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3748 about every identifier that contains the letter O because it might be
3749 confused with the digit 0, and so is not the default, but may be
3750 useful as a local coding convention if the programming environment is
3751 unable to be fixed to display these characters distinctly.
3752
3753 @item -Wno-deprecated-declarations
3754 @opindex Wno-deprecated-declarations
3755 Do not warn about uses of functions (@pxref{Function Attributes}),
3756 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3757 Attributes}) marked as deprecated by using the @code{deprecated}
3758 attribute.
3759
3760 @item -Wno-overflow
3761 @opindex Wno-overflow
3762 Do not warn about compile-time overflow in constant expressions.
3763
3764 @item -Woverride-init
3765 @opindex Woverride-init
3766 @opindex W
3767 @opindex Wextra
3768 Warn if an initialized field without side effects is overridden when
3769 using designated initializers (@pxref{Designated Inits, , Designated
3770 Initializers}).
3771
3772 This warning is included in @option{-Wextra}.  To get other
3773 @option{-Wextra} warnings without this one, use @samp{-Wextra
3774 -Wno-override-init}.
3775
3776 @item -Wpacked
3777 @opindex Wpacked
3778 Warn if a structure is given the packed attribute, but the packed
3779 attribute has no effect on the layout or size of the structure.
3780 Such structures may be mis-aligned for little benefit.  For
3781 instance, in this code, the variable @code{f.x} in @code{struct bar}
3782 will be misaligned even though @code{struct bar} does not itself
3783 have the packed attribute:
3784
3785 @smallexample
3786 @group
3787 struct foo @{
3788   int x;
3789   char a, b, c, d;
3790 @} __attribute__((packed));
3791 struct bar @{
3792   char z;
3793   struct foo f;
3794 @};
3795 @end group
3796 @end smallexample
3797
3798 @item -Wpadded
3799 @opindex Wpadded
3800 Warn if padding is included in a structure, either to align an element
3801 of the structure or to align the whole structure.  Sometimes when this
3802 happens it is possible to rearrange the fields of the structure to
3803 reduce the padding and so make the structure smaller.
3804
3805 @item -Wredundant-decls
3806 @opindex Wredundant-decls
3807 Warn if anything is declared more than once in the same scope, even in
3808 cases where multiple declaration is valid and changes nothing.
3809
3810 @item -Wnested-externs @r{(C only)}
3811 @opindex Wnested-externs
3812 Warn if an @code{extern} declaration is encountered within a function.
3813
3814 @item -Wunreachable-code
3815 @opindex Wunreachable-code
3816 Warn if the compiler detects that code will never be executed.
3817
3818 This option is intended to warn when the compiler detects that at
3819 least a whole line of source code will never be executed, because
3820 some condition is never satisfied or because it is after a
3821 procedure that never returns.
3822
3823 It is possible for this option to produce a warning even though there
3824 are circumstances under which part of the affected line can be executed,
3825 so care should be taken when removing apparently-unreachable code.
3826
3827 For instance, when a function is inlined, a warning may mean that the
3828 line is unreachable in only one inlined copy of the function.
3829
3830 This option is not made part of @option{-Wall} because in a debugging
3831 version of a program there is often substantial code which checks
3832 correct functioning of the program and is, hopefully, unreachable
3833 because the program does work.  Another common use of unreachable
3834 code is to provide behavior which is selectable at compile-time.
3835
3836 @item -Winline
3837 @opindex Winline
3838 Warn if a function can not be inlined and it was declared as inline.
3839 Even with this option, the compiler will not warn about failures to
3840 inline functions declared in system headers.
3841
3842 The compiler uses a variety of heuristics to determine whether or not
3843 to inline a function.  For example, the compiler takes into account
3844 the size of the function being inlined and the amount of inlining
3845 that has already been done in the current function.  Therefore,
3846 seemingly insignificant changes in the source program can cause the
3847 warnings produced by @option{-Winline} to appear or disappear.
3848
3849 @item -Wno-invalid-offsetof @r{(C++ only)}
3850 @opindex Wno-invalid-offsetof
3851 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3852 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3853 to a non-POD type is undefined.  In existing C++ implementations,
3854 however, @samp{offsetof} typically gives meaningful results even when
3855 applied to certain kinds of non-POD types. (Such as a simple
3856 @samp{struct} that fails to be a POD type only by virtue of having a
3857 constructor.)  This flag is for users who are aware that they are
3858 writing nonportable code and who have deliberately chosen to ignore the
3859 warning about it.
3860
3861 The restrictions on @samp{offsetof} may be relaxed in a future version
3862 of the C++ standard.
3863
3864 @item -Wno-int-to-pointer-cast @r{(C only)}
3865 @opindex Wno-int-to-pointer-cast
3866 Suppress warnings from casts to pointer type of an integer of a
3867 different size.
3868
3869 @item -Wno-pointer-to-int-cast @r{(C only)}
3870 @opindex Wno-pointer-to-int-cast
3871 Suppress warnings from casts from a pointer to an integer type of a
3872 different size.
3873
3874 @item -Winvalid-pch
3875 @opindex Winvalid-pch
3876 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
3877 the search path but can't be used.
3878
3879 @item -Wlong-long
3880 @opindex Wlong-long
3881 @opindex Wno-long-long
3882 Warn if @samp{long long} type is used.  This is default.  To inhibit
3883 the warning messages, use @option{-Wno-long-long}.  Flags
3884 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
3885 only when @option{-pedantic} flag is used.
3886
3887 @item -Wvariadic-macros
3888 @opindex Wvariadic-macros
3889 @opindex Wno-variadic-macros
3890 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
3891 alternate syntax when in pedantic ISO C99 mode.  This is default.
3892 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
3893
3894 @item -Wvla
3895 @opindex Wvla
3896 @opindex Wno-vla
3897 Warn if variable length array is used in the code.
3898 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
3899 the variable length array.
3900
3901 @item -Wvolatile-register-var
3902 @opindex Wvolatile-register-var
3903 @opindex Wno-volatile-register-var
3904 Warn if a register variable is declared volatile.  The volatile
3905 modifier does not inhibit all optimizations that may eliminate reads
3906 and/or writes to register variables.
3907
3908 @item -Wdisabled-optimization
3909 @opindex Wdisabled-optimization
3910 Warn if a requested optimization pass is disabled.  This warning does
3911 not generally indicate that there is anything wrong with your code; it
3912 merely indicates that GCC's optimizers were unable to handle the code
3913 effectively.  Often, the problem is that your code is too big or too
3914 complex; GCC will refuse to optimize programs when the optimization
3915 itself is likely to take inordinate amounts of time.
3916
3917 @item -Wpointer-sign
3918 @opindex Wpointer-sign
3919 @opindex Wno-pointer-sign
3920 Warn for pointer argument passing or assignment with different signedness.
3921 This option is only supported for C and Objective-C@.  It is implied by
3922 @option{-Wall} and by @option{-pedantic}, which can be disabled with
3923 @option{-Wno-pointer-sign}.
3924
3925 @item -Wstack-protector
3926 @opindex Wstack-protector
3927 This option is only active when @option{-fstack-protector} is active.  It
3928 warns about functions that will not be protected against stack smashing.
3929
3930 @item -Woverlength-strings
3931 @opindex Woverlength-strings
3932 Warn about string constants which are longer than the ``minimum
3933 maximum'' length specified in the C standard.  Modern compilers
3934 generally allow string constants which are much longer than the
3935 standard's minimum limit, but very portable programs should avoid
3936 using longer strings.
3937
3938 The limit applies @emph{after} string constant concatenation, and does
3939 not count the trailing NUL@.  In C89, the limit was 509 characters; in
3940 C99, it was raised to 4095.  C++98 does not specify a normative
3941 minimum maximum, so we do not diagnose overlength strings in C++@.
3942
3943 This option is implied by @option{-pedantic}, and can be disabled with
3944 @option{-Wno-overlength-strings}.
3945 @end table
3946
3947 @node Debugging Options
3948 @section Options for Debugging Your Program or GCC
3949 @cindex options, debugging
3950 @cindex debugging information options
3951
3952 GCC has various special options that are used for debugging
3953 either your program or GCC:
3954
3955 @table @gcctabopt
3956 @item -g
3957 @opindex g
3958 Produce debugging information in the operating system's native format
3959 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
3960 information.
3961
3962 On most systems that use stabs format, @option{-g} enables use of extra
3963 debugging information that only GDB can use; this extra information
3964 makes debugging work better in GDB but will probably make other debuggers
3965 crash or
3966 refuse to read the program.  If you want to control for certain whether
3967 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
3968 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
3969
3970 GCC allows you to use @option{-g} with
3971 @option{-O}.  The shortcuts taken by optimized code may occasionally
3972 produce surprising results: some variables you declared may not exist
3973 at all; flow of control may briefly move where you did not expect it;
3974 some statements may not be executed because they compute constant
3975 results or their values were already at hand; some statements may
3976 execute in different places because they were moved out of loops.
3977
3978 Nevertheless it proves possible to debug optimized output.  This makes
3979 it reasonable to use the optimizer for programs that might have bugs.
3980
3981 The following options are useful when GCC is generated with the
3982 capability for more than one debugging format.
3983
3984 @item -ggdb
3985 @opindex ggdb
3986 Produce debugging information for use by GDB@.  This means to use the
3987 most expressive format available (DWARF 2, stabs, or the native format
3988 if neither of those are supported), including GDB extensions if at all
3989 possible.
3990
3991 @item -gstabs
3992 @opindex gstabs
3993 Produce debugging information in stabs format (if that is supported),
3994 without GDB extensions.  This is the format used by DBX on most BSD
3995 systems.  On MIPS, Alpha and System V Release 4 systems this option
3996 produces stabs debugging output which is not understood by DBX or SDB@.
3997 On System V Release 4 systems this option requires the GNU assembler.
3998
3999 @item -feliminate-unused-debug-symbols
4000 @opindex feliminate-unused-debug-symbols
4001 Produce debugging information in stabs format (if that is supported),
4002 for only symbols that are actually used.
4003
4004 @item -femit-class-debug-always
4005 Instead of emitting debugging information for a C++ class in only one
4006 object file, emit it in all object files using the class.  This option
4007 should be used only with debuggers that are unable to handle the way GCC
4008 normally emits debugging information for classes because using this
4009 option will increase the size of debugging information by as much as a
4010 factor of two.
4011
4012 @item -gstabs+
4013 @opindex gstabs+
4014 Produce debugging information in stabs format (if that is supported),
4015 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4016 use of these extensions is likely to make other debuggers crash or
4017 refuse to read the program.
4018
4019 @item -gcoff
4020 @opindex gcoff
4021 Produce debugging information in COFF format (if that is supported).
4022 This is the format used by SDB on most System V systems prior to
4023 System V Release 4.
4024
4025 @item -gxcoff
4026 @opindex gxcoff
4027 Produce debugging information in XCOFF format (if that is supported).
4028 This is the format used by the DBX debugger on IBM RS/6000 systems.
4029
4030 @item -gxcoff+
4031 @opindex gxcoff+
4032 Produce debugging information in XCOFF format (if that is supported),
4033 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4034 use of these extensions is likely to make other debuggers crash or
4035 refuse to read the program, and may cause assemblers other than the GNU
4036 assembler (GAS) to fail with an error.
4037
4038 @item -gdwarf-2
4039 @opindex gdwarf-2
4040 Produce debugging information in DWARF version 2 format (if that is
4041 supported).  This is the format used by DBX on IRIX 6.  With this
4042 option, GCC uses features of DWARF version 3 when they are useful;
4043 version 3 is upward compatible with version 2, but may still cause
4044 problems for older debuggers.
4045
4046 @item -gvms
4047 @opindex gvms
4048 Produce debugging information in VMS debug format (if that is
4049 supported).  This is the format used by DEBUG on VMS systems.
4050
4051 @item -g@var{level}
4052 @itemx -ggdb@var{level}
4053 @itemx -gstabs@var{level}
4054 @itemx -gcoff@var{level}
4055 @itemx -gxcoff@var{level}
4056 @itemx -gvms@var{level}
4057 Request debugging information and also use @var{level} to specify how
4058 much information.  The default level is 2.
4059
4060 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4061 @option{-g}.
4062
4063 Level 1 produces minimal information, enough for making backtraces in
4064 parts of the program that you don't plan to debug.  This includes
4065 descriptions of functions and external variables, but no information
4066 about local variables and no line numbers.
4067
4068 Level 3 includes extra information, such as all the macro definitions
4069 present in the program.  Some debuggers support macro expansion when
4070 you use @option{-g3}.
4071
4072 @option{-gdwarf-2} does not accept a concatenated debug level, because
4073 GCC used to support an option @option{-gdwarf} that meant to generate
4074 debug information in version 1 of the DWARF format (which is very
4075 different from version 2), and it would have been too confusing.  That
4076 debug format is long obsolete, but the option cannot be changed now.
4077 Instead use an additional @option{-g@var{level}} option to change the
4078 debug level for DWARF2.
4079
4080 @item -feliminate-dwarf2-dups
4081 @opindex feliminate-dwarf2-dups
4082 Compress DWARF2 debugging information by eliminating duplicated
4083 information about each symbol.  This option only makes sense when
4084 generating DWARF2 debugging information with @option{-gdwarf-2}.
4085
4086 @item -femit-struct-debug-baseonly
4087 Emit debug information for struct-like types
4088 only when the base name of the compilation source file
4089 matches the base name of file in which the struct was defined.
4090
4091 This option substantially reduces the size of debugging information,
4092 but at significant potential loss in type information to the debugger.
4093 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4094 See @option{-femit-struct-debug-detailed} for more detailed control.
4095
4096 This option works only with DWARF 2.
4097
4098 @item -femit-struct-debug-reduced
4099 Emit debug information for struct-like types
4100 only when the base name of the compilation source file
4101 matches the base name of file in which the type was defined,
4102 unless the struct is a template or defined in a system header.
4103
4104 This option significantly reduces the size of debugging information,
4105 with some potential loss in type information to the debugger.
4106 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4107 See @option{-femit-struct-debug-detailed} for more detailed control.
4108
4109 This option works only with DWARF 2.
4110
4111 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4112 Specify the struct-like types
4113 for which the compiler will generate debug information.
4114 The intent is to reduce duplicate struct debug information
4115 between different object files within the same program.
4116
4117 This option is a detailed version of
4118 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4119 which will serve for most needs.
4120
4121 A specification has the syntax
4122 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4123
4124 The optional first word limits the specification to
4125 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4126 A struct type is used directly when it is the type of a variable, member.
4127 Indirect uses arise through pointers to structs.
4128 That is, when use of an incomplete struct would be legal, the use is indirect.
4129 An example is
4130 @samp{struct one direct; struct two * indirect;}.
4131
4132 The optional second word limits the specification to
4133 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4134 Generic structs are a bit complicated to explain.
4135 For C++, these are non-explicit specializations of template classes,
4136 or non-template classes within the above.
4137 Other programming languages have generics,
4138 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4139
4140 The third word specifies the source files for those
4141 structs for which the compiler will emit debug information.
4142 The values @samp{none} and @samp{any} have the normal meaning.
4143 The value @samp{base} means that
4144 the base of name of the file in which the type declaration appears
4145 must match the base of the name of the main compilation file.
4146 In practice, this means that
4147 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4148 but types declared in other header will not.
4149 The value @samp{sys} means those types satisfying @samp{base}
4150 or declared in system or compiler headers.
4151
4152 You may need to experiment to determine the best settings for your application.
4153
4154 The default is @samp{-femit-struct-debug-detailed=all}.
4155
4156 This option works only with DWARF 2.
4157
4158 @item -fno-merge-debug-strings
4159 @opindex fmerge-debug-strings
4160 @opindex fno-merge-debug-strings
4161 Direct the linker to merge together strings which are identical in
4162 different object files.  This is not supported by all assemblers or
4163 linker.  This decreases the size of the debug information in the
4164 output file at the cost of increasing link processing time.  This is
4165 on by default.
4166
4167 @item -fdebug-prefix-map=@var{old}=@var{new}
4168 @opindex fdebug-prefix-map
4169 When compiling files in directory @file{@var{old}}, record debugging
4170 information describing them as in @file{@var{new}} instead.
4171
4172 @cindex @command{prof}
4173 @item -p
4174 @opindex p
4175 Generate extra code to write profile information suitable for the
4176 analysis program @command{prof}.  You must use this option when compiling
4177 the source files you want data about, and you must also use it when
4178 linking.
4179
4180 @cindex @command{gprof}
4181 @item -pg
4182 @opindex pg
4183 Generate extra code to write profile information suitable for the
4184 analysis program @command{gprof}.  You must use this option when compiling
4185 the source files you want data about, and you must also use it when
4186 linking.
4187
4188 @item -Q
4189 @opindex Q
4190 Makes the compiler print out each function name as it is compiled, and
4191 print some statistics about each pass when it finishes.
4192
4193 @item -ftime-report
4194 @opindex ftime-report
4195 Makes the compiler print some statistics about the time consumed by each
4196 pass when it finishes.
4197
4198 @item -fmem-report
4199 @opindex fmem-report
4200 Makes the compiler print some statistics about permanent memory
4201 allocation when it finishes.
4202
4203 @item -fpre-ipa-mem-report
4204 @opindex fpre-ipa-mem-report
4205 @item -fpost-ipa-mem-report
4206 @opindex fpost-ipa-mem-report
4207 Makes the compiler print some statistics about permanent memory
4208 allocation before or after interprocedural optimization.
4209
4210 @item -fprofile-arcs
4211 @opindex fprofile-arcs
4212 Add code so that program flow @dfn{arcs} are instrumented.  During
4213 execution the program records how many times each branch and call is
4214 executed and how many times it is taken or returns.  When the compiled
4215 program exits it saves this data to a file called
4216 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4217 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4218 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4219 @var{auxname} is generated from the name of the output file, if
4220 explicitly specified and it is not the final executable, otherwise it is
4221 the basename of the source file.  In both cases any suffix is removed
4222 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4223 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4224 @xref{Cross-profiling}.
4225
4226 @cindex @command{gcov}
4227 @item --coverage
4228 @opindex coverage
4229
4230 This option is used to compile and link code instrumented for coverage
4231 analysis.  The option is a synonym for @option{-fprofile-arcs}
4232 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4233 linking).  See the documentation for those options for more details.
4234
4235 @itemize
4236
4237 @item
4238 Compile the source files with @option{-fprofile-arcs} plus optimization
4239 and code generation options.  For test coverage analysis, use the
4240 additional @option{-ftest-coverage} option.  You do not need to profile
4241 every source file in a program.
4242
4243 @item
4244 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4245 (the latter implies the former).
4246
4247 @item
4248 Run the program on a representative workload to generate the arc profile
4249 information.  This may be repeated any number of times.  You can run
4250 concurrent instances of your program, and provided that the file system
4251 supports locking, the data files will be correctly updated.  Also
4252 @code{fork} calls are detected and correctly handled (double counting
4253 will not happen).
4254
4255 @item
4256 For profile-directed optimizations, compile the source files again with
4257 the same optimization and code generation options plus
4258 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4259 Control Optimization}).
4260
4261 @item
4262 For test coverage analysis, use @command{gcov} to produce human readable
4263 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4264 @command{gcov} documentation for further information.
4265
4266 @end itemize
4267
4268 With @option{-fprofile-arcs}, for each function of your program GCC
4269 creates a program flow graph, then finds a spanning tree for the graph.
4270 Only arcs that are not on the spanning tree have to be instrumented: the
4271 compiler adds code to count the number of times that these arcs are
4272 executed.  When an arc is the only exit or only entrance to a block, the
4273 instrumentation code can be added to the block; otherwise, a new basic
4274 block must be created to hold the instrumentation code.
4275
4276 @need 2000
4277 @item -ftest-coverage
4278 @opindex ftest-coverage
4279 Produce a notes file that the @command{gcov} code-coverage utility
4280 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4281 show program coverage.  Each source file's note file is called
4282 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4283 above for a description of @var{auxname} and instructions on how to
4284 generate test coverage data.  Coverage data will match the source files
4285 more closely, if you do not optimize.
4286
4287 @item -fdbg-cnt-list
4288 @opindex fdbg-cnt-list
4289 Print the name and the counter upperbound for all debug counters.
4290
4291 @item -fdbg-cnt=@var{counter-value-list}
4292 @opindex fdbg-cnt
4293 Set the internal debug counter upperbound. @var{counter-value-list} 
4294 is a comma-separated list of @var{name}:@var{value} pairs
4295 which sets the upperbound of each debug counter @var{name} to @var{value}.
4296 All debug counters have the initial upperbound of @var{UINT_MAX},
4297 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4298 e.g. With -fdbg-cnt=dce:10,tail_call:0
4299 dbg_cnt(dce) will return true only for first 10 invocations
4300 and dbg_cnt(tail_call) will return false always.
4301
4302 @item -d@var{letters}
4303 @item -fdump-rtl-@var{pass}
4304 @opindex d
4305 Says to make debugging dumps during compilation at times specified by
4306 @var{letters}.    This is used for debugging the RTL-based passes of the
4307 compiler.  The file names for most of the dumps are made by appending a
4308 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4309 from the name of the output file, if explicitly specified and it is not
4310 an executable, otherwise it is the basename of the source file. These
4311 switches may have different effects when @option{-E} is used for
4312 preprocessing.
4313
4314 Most debug dumps can be enabled either passing a letter to the @option{-d}
4315 option, or with a long @option{-fdump-rtl} switch; here are the possible
4316 letters for use in @var{letters} and @var{pass}, and their meanings:
4317
4318 @table @gcctabopt
4319 @item -dA
4320 @opindex dA
4321 Annotate the assembler output with miscellaneous debugging information.
4322
4323 @item -dB
4324 @itemx -fdump-rtl-bbro
4325 @opindex dB
4326 @opindex fdump-rtl-bbro
4327 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4328
4329 @item -dc
4330 @itemx -fdump-rtl-combine
4331 @opindex dc
4332 @opindex fdump-rtl-combine
4333 Dump after the RTL instruction combination pass, to the file
4334 @file{@var{file}.129r.combine}.
4335
4336 @item -dC
4337 @itemx -fdump-rtl-ce1
4338 @itemx -fdump-rtl-ce2
4339 @opindex dC
4340 @opindex fdump-rtl-ce1
4341 @opindex fdump-rtl-ce2
4342 @option{-dC} and @option{-fdump-rtl-ce1} enable dumping after the
4343 first if conversion, to the file @file{@var{file}.117r.ce1}.  @option{-dC}
4344 and @option{-fdump-rtl-ce2} enable dumping after the second if
4345 conversion, to the file @file{@var{file}.130r.ce2}.
4346
4347 @item -dd
4348 @itemx -fdump-rtl-btl
4349 @itemx -fdump-rtl-dbr
4350 @opindex dd
4351 @opindex fdump-rtl-btl
4352 @opindex fdump-rtl-dbr
4353 @option{-dd} and @option{-fdump-rtl-btl} enable dumping after branch
4354 target load optimization, to @file{@var{file}.31.btl}.  @option{-dd}
4355 and @option{-fdump-rtl-dbr} enable dumping after delayed branch
4356 scheduling, to @file{@var{file}.36.dbr}.
4357
4358 @item -dD
4359 @opindex dD
4360 Dump all macro definitions, at the end of preprocessing, in addition to
4361 normal output.
4362
4363 @item -dE
4364 @itemx -fdump-rtl-ce3
4365 @opindex dE
4366 @opindex fdump-rtl-ce3
4367 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4368
4369 @item -df
4370 @itemx -fdump-rtl-cfg
4371 @itemx -fdump-rtl-life
4372 @opindex df
4373 @opindex fdump-rtl-cfg
4374 @opindex fdump-rtl-life
4375 @option{-df} and @option{-fdump-rtl-cfg} enable dumping after control
4376 and data flow analysis, to @file{@var{file}.116r.cfg}.  @option{-df}
4377 and @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4378 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4379
4380 @item -dg
4381 @itemx -fdump-rtl-greg
4382 @opindex dg
4383 @opindex fdump-rtl-greg
4384 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4385
4386 @item -dG
4387 @itemx -fdump-rtl-gcse
4388 @itemx -fdump-rtl-bypass
4389 @opindex dG
4390 @opindex fdump-rtl-gcse
4391 @opindex fdump-rtl-bypass
4392 @option{-dG} and @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4393 @file{@var{file}.114r.gcse}.  @option{-dG} and @option{-fdump-rtl-bypass}
4394 enable dumping after jump bypassing and control flow optimizations, to
4395 @file{@var{file}.115r.bypass}.
4396
4397 @item -dh
4398 @itemx -fdump-rtl-eh
4399 @opindex dh
4400 @opindex fdump-rtl-eh
4401 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4402
4403 @item -di
4404 @itemx -fdump-rtl-sibling
4405 @opindex di
4406 @opindex fdump-rtl-sibling
4407 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4408
4409 @item -dj
4410 @itemx -fdump-rtl-jump
4411 @opindex dj
4412 @opindex fdump-rtl-jump
4413 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4414
4415 @item -dk
4416 @itemx -fdump-rtl-stack
4417 @opindex dk
4418 @opindex fdump-rtl-stack
4419 Dump after conversion from GCC's "flat register file" registers to the
4420 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4421
4422 @item -dl
4423 @itemx -fdump-rtl-lreg
4424 @opindex dl
4425 @opindex fdump-rtl-lreg
4426 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4427
4428 @item -dL
4429 @itemx -fdump-rtl-loop2
4430 @opindex dL
4431 @opindex fdump-rtl-loop2
4432 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4433 loop optimization pass, to @file{@var{file}.119r.loop2},
4434 @file{@var{file}.120r.loop2_init},
4435 @file{@var{file}.121r.loop2_invariant}, and
4436 @file{@var{file}.125r.loop2_done}.
4437
4438 @item -dm
4439 @itemx -fdump-rtl-sms
4440 @opindex dm
4441 @opindex fdump-rtl-sms
4442 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4443
4444 @item -dM
4445 @itemx -fdump-rtl-mach
4446 @opindex dM
4447 @opindex fdump-rtl-mach
4448 Dump after performing the machine dependent reorganization pass, to
4449 @file{@var{file}.155r.mach} if that pass exists.
4450
4451 @item -dn
4452 @itemx -fdump-rtl-rnreg
4453 @opindex dn
4454 @opindex fdump-rtl-rnreg
4455 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4456
4457 @item -dN
4458 @itemx -fdump-rtl-regmove
4459 @opindex dN
4460 @opindex fdump-rtl-regmove
4461 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4462
4463 @item -do
4464 @itemx -fdump-rtl-postreload
4465 @opindex do
4466 @opindex fdump-rtl-postreload
4467 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4468
4469 @item -dr
4470 @itemx -fdump-rtl-expand
4471 @opindex dr
4472 @opindex fdump-rtl-expand
4473 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4474
4475 @item -dR
4476 @itemx -fdump-rtl-sched2
4477 @opindex dR
4478 @opindex fdump-rtl-sched2
4479 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4480
4481 @item -ds
4482 @itemx -fdump-rtl-cse
4483 @opindex ds
4484 @opindex fdump-rtl-cse
4485 Dump after CSE (including the jump optimization that sometimes follows
4486 CSE), to @file{@var{file}.113r.cse}.
4487
4488 @item -dS
4489 @itemx -fdump-rtl-sched1
4490 @opindex dS
4491 @opindex fdump-rtl-sched1
4492 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4493
4494 @item -dt
4495 @itemx -fdump-rtl-cse2
4496 @opindex dt
4497 @opindex fdump-rtl-cse2
4498 Dump after the second CSE pass (including the jump optimization that
4499 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4500
4501 @item -dT
4502 @itemx -fdump-rtl-tracer
4503 @opindex dT
4504 @opindex fdump-rtl-tracer
4505 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4506
4507 @item -dV
4508 @itemx -fdump-rtl-vpt
4509 @itemx -fdump-rtl-vartrack
4510 @opindex dV
4511 @opindex fdump-rtl-vpt
4512 @opindex fdump-rtl-vartrack
4513 @option{-dV} and @option{-fdump-rtl-vpt} enable dumping after the value
4514 profile transformations, to @file{@var{file}.10.vpt}.  @option{-dV}
4515 and @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4516 to @file{@var{file}.154r.vartrack}.
4517
4518 @item -dw
4519 @itemx -fdump-rtl-flow2
4520 @opindex dw
4521 @opindex fdump-rtl-flow2
4522 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4523
4524 @item -dz
4525 @itemx -fdump-rtl-peephole2
4526 @opindex dz
4527 @opindex fdump-rtl-peephole2
4528 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4529
4530 @item -dZ
4531 @itemx -fdump-rtl-web
4532 @opindex dZ
4533 @opindex fdump-rtl-web
4534 Dump after live range splitting, to @file{@var{file}.126r.web}.
4535
4536 @item -da
4537 @itemx -fdump-rtl-all
4538 @opindex da
4539 @opindex fdump-rtl-all
4540 Produce all the dumps listed above.
4541
4542 @item -dH
4543 @opindex dH
4544 Produce a core dump whenever an error occurs.
4545
4546 @item -dm
4547 @opindex dm
4548 Print statistics on memory usage, at the end of the run, to
4549 standard error.
4550
4551 @item -dp
4552 @opindex dp
4553 Annotate the assembler output with a comment indicating which
4554 pattern and alternative was used.  The length of each instruction is
4555 also printed.
4556
4557 @item -dP
4558 @opindex dP
4559 Dump the RTL in the assembler output as a comment before each instruction.
4560 Also turns on @option{-dp} annotation.
4561
4562 @item -dv
4563 @opindex dv
4564 For each of the other indicated dump files (either with @option{-d} or
4565 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4566 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4567
4568 @item -dx
4569 @opindex dx
4570 Just generate RTL for a function instead of compiling it.  Usually used
4571 with @samp{r} (@option{-fdump-rtl-expand}).
4572
4573 @item -dy
4574 @opindex dy
4575 Dump debugging information during parsing, to standard error.
4576 @end table
4577
4578 @item -fdump-noaddr
4579 @opindex fdump-noaddr
4580 When doing debugging dumps (see @option{-d} option above), suppress
4581 address output.  This makes it more feasible to use diff on debugging
4582 dumps for compiler invocations with different compiler binaries and/or
4583 different text / bss / data / heap / stack / dso start locations.
4584
4585 @item -fdump-unnumbered
4586 @opindex fdump-unnumbered
4587 When doing debugging dumps (see @option{-d} option above), suppress instruction
4588 numbers and address output.  This makes it more feasible to
4589 use diff on debugging dumps for compiler invocations with different
4590 options, in particular with and without @option{-g}.
4591
4592 @item -fdump-translation-unit @r{(C++ only)}
4593 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4594 @opindex fdump-translation-unit
4595 Dump a representation of the tree structure for the entire translation
4596 unit to a file.  The file name is made by appending @file{.tu} to the
4597 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4598 controls the details of the dump as described for the
4599 @option{-fdump-tree} options.
4600
4601 @item -fdump-class-hierarchy @r{(C++ only)}
4602 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4603 @opindex fdump-class-hierarchy
4604 Dump a representation of each class's hierarchy and virtual function
4605 table layout to a file.  The file name is made by appending @file{.class}
4606 to the source file name.  If the @samp{-@var{options}} form is used,
4607 @var{options} controls the details of the dump as described for the
4608 @option{-fdump-tree} options.
4609
4610 @item -fdump-ipa-@var{switch}
4611 @opindex fdump-ipa
4612 Control the dumping at various stages of inter-procedural analysis
4613 language tree to a file.  The file name is generated by appending a switch
4614 specific suffix to the source file name.  The following dumps are possible:
4615
4616 @table @samp
4617 @item all
4618 Enables all inter-procedural analysis dumps; currently the only produced
4619 dump is the @samp{cgraph} dump.
4620
4621 @item cgraph
4622 Dumps information about call-graph optimization, unused function removal,
4623 and inlining decisions.
4624 @end table
4625
4626 @item -fdump-tree-@var{switch}
4627 @itemx -fdump-tree-@var{switch}-@var{options}
4628 @opindex fdump-tree
4629 Control the dumping at various stages of processing the intermediate
4630 language tree to a file.  The file name is generated by appending a switch
4631 specific suffix to the source file name.  If the @samp{-@var{options}}
4632 form is used, @var{options} is a list of @samp{-} separated options that
4633 control the details of the dump.  Not all options are applicable to all
4634 dumps, those which are not meaningful will be ignored.  The following
4635 options are available
4636
4637 @table @samp
4638 @item address
4639 Print the address of each node.  Usually this is not meaningful as it
4640 changes according to the environment and source file.  Its primary use
4641 is for tying up a dump file with a debug environment.
4642 @item slim
4643 Inhibit dumping of members of a scope or body of a function merely
4644 because that scope has been reached.  Only dump such items when they
4645 are directly reachable by some other path.  When dumping pretty-printed
4646 trees, this option inhibits dumping the bodies of control structures.
4647 @item raw
4648 Print a raw representation of the tree.  By default, trees are
4649 pretty-printed into a C-like representation.
4650 @item details
4651 Enable more detailed dumps (not honored by every dump option).
4652 @item stats
4653 Enable dumping various statistics about the pass (not honored by every dump
4654 option).
4655 @item blocks
4656 Enable showing basic block boundaries (disabled in raw dumps).
4657 @item vops
4658 Enable showing virtual operands for every statement.
4659 @item lineno
4660 Enable showing line numbers for statements.
4661 @item uid
4662 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4663 @item all
4664 Turn on all options, except @option{raw}, @option{slim} and @option{lineno}.
4665 @end table
4666
4667 The following tree dumps are possible:
4668 @table @samp
4669
4670 @item original
4671 Dump before any tree based optimization, to @file{@var{file}.original}.
4672
4673 @item optimized
4674 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4675
4676 @item inlined
4677 Dump after function inlining, to @file{@var{file}.inlined}.
4678
4679 @item gimple
4680 @opindex fdump-tree-gimple
4681 Dump each function before and after the gimplification pass to a file.  The
4682 file name is made by appending @file{.gimple} to the source file name.
4683
4684 @item cfg
4685 @opindex fdump-tree-cfg
4686 Dump the control flow graph of each function to a file.  The file name is
4687 made by appending @file{.cfg} to the source file name.
4688
4689 @item vcg
4690 @opindex fdump-tree-vcg
4691 Dump the control flow graph of each function to a file in VCG format.  The
4692 file name is made by appending @file{.vcg} to the source file name.  Note
4693 that if the file contains more than one function, the generated file cannot
4694 be used directly by VCG@.  You will need to cut and paste each function's
4695 graph into its own separate file first.
4696
4697 @item ch
4698 @opindex fdump-tree-ch
4699 Dump each function after copying loop headers.  The file name is made by
4700 appending @file{.ch} to the source file name.
4701
4702 @item ssa
4703 @opindex fdump-tree-ssa
4704 Dump SSA related information to a file.  The file name is made by appending
4705 @file{.ssa} to the source file name.
4706
4707 @item salias
4708 @opindex fdump-tree-salias
4709 Dump structure aliasing variable information to a file.  This file name
4710 is made by appending @file{.salias} to the source file name.
4711
4712 @item alias
4713 @opindex fdump-tree-alias
4714 Dump aliasing information for each function.  The file name is made by
4715 appending @file{.alias} to the source file name.
4716
4717 @item ccp
4718 @opindex fdump-tree-ccp
4719 Dump each function after CCP@.  The file name is made by appending
4720 @file{.ccp} to the source file name.
4721
4722 @item storeccp
4723 @opindex fdump-tree-storeccp
4724 Dump each function after STORE-CCP.  The file name is made by appending
4725 @file{.storeccp} to the source file name.
4726
4727 @item pre
4728 @opindex fdump-tree-pre
4729 Dump trees after partial redundancy elimination.  The file name is made
4730 by appending @file{.pre} to the source file name.
4731
4732 @item fre
4733 @opindex fdump-tree-fre
4734 Dump trees after full redundancy elimination.  The file name is made
4735 by appending @file{.fre} to the source file name.
4736
4737 @item copyprop
4738 @opindex fdump-tree-copyprop
4739 Dump trees after copy propagation.  The file name is made
4740 by appending @file{.copyprop} to the source file name.
4741
4742 @item store_copyprop
4743 @opindex fdump-tree-store_copyprop
4744 Dump trees after store copy-propagation.  The file name is made
4745 by appending @file{.store_copyprop} to the source file name.
4746
4747 @item dce
4748 @opindex fdump-tree-dce
4749 Dump each function after dead code elimination.  The file name is made by
4750 appending @file{.dce} to the source file name.
4751
4752 @item mudflap
4753 @opindex fdump-tree-mudflap
4754 Dump each function after adding mudflap instrumentation.  The file name is
4755 made by appending @file{.mudflap} to the source file name.
4756
4757 @item sra
4758 @opindex fdump-tree-sra
4759 Dump each function after performing scalar replacement of aggregates.  The
4760 file name is made by appending @file{.sra} to the source file name.
4761
4762 @item sink
4763 @opindex fdump-tree-sink
4764 Dump each function after performing code sinking.  The file name is made
4765 by appending @file{.sink} to the source file name.
4766
4767 @item dom
4768 @opindex fdump-tree-dom
4769 Dump each function after applying dominator tree optimizations.  The file
4770 name is made by appending @file{.dom} to the source file name.
4771
4772 @item dse
4773 @opindex fdump-tree-dse
4774 Dump each function after applying dead store elimination.  The file
4775 name is made by appending @file{.dse} to the source file name.
4776
4777 @item phiopt
4778 @opindex fdump-tree-phiopt
4779 Dump each function after optimizing PHI nodes into straightline code.  The file
4780 name is made by appending @file{.phiopt} to the source file name.
4781
4782 @item forwprop
4783 @opindex fdump-tree-forwprop
4784 Dump each function after forward propagating single use variables.  The file
4785 name is made by appending @file{.forwprop} to the source file name.
4786
4787 @item copyrename
4788 @opindex fdump-tree-copyrename
4789 Dump each function after applying the copy rename optimization.  The file
4790 name is made by appending @file{.copyrename} to the source file name.
4791
4792 @item nrv
4793 @opindex fdump-tree-nrv
4794 Dump each function after applying the named return value optimization on
4795 generic trees.  The file name is made by appending @file{.nrv} to the source
4796 file name.
4797
4798 @item vect
4799 @opindex fdump-tree-vect
4800 Dump each function after applying vectorization of loops.  The file name is
4801 made by appending @file{.vect} to the source file name.
4802
4803 @item vrp
4804 @opindex fdump-tree-vrp
4805 Dump each function after Value Range Propagation (VRP).  The file name
4806 is made by appending @file{.vrp} to the source file name.
4807
4808 @item all
4809 @opindex fdump-tree-all
4810 Enable all the available tree dumps with the flags provided in this option.
4811 @end table
4812
4813 @item -ftree-vectorizer-verbose=@var{n}
4814 @opindex ftree-vectorizer-verbose
4815 This option controls the amount of debugging output the vectorizer prints.
4816 This information is written to standard error, unless
4817 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4818 in which case it is output to the usual dump listing file, @file{.vect}.
4819 For @var{n}=0 no diagnostic information is reported.
4820 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4821 and the total number of loops that got vectorized.
4822 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4823 the first analysis phase (vect_analyze_loop_form) - i.e. countable,
4824 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4825 level that @option{-fdump-tree-vect-stats} uses.
4826 Higher verbosity levels mean either more information dumped for each
4827 reported loop, or same amount of information reported for more loops:
4828 If @var{n}=3, alignment related information is added to the reports.
4829 If @var{n}=4, data-references related information (e.g. memory dependences,
4830 memory access-patterns) is added to the reports.
4831 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4832 that did not pass the first analysis phase (i.e. may not be countable, or
4833 may have complicated control-flow).
4834 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4835 For @var{n}=7, all the information the vectorizer generates during its
4836 analysis and transformation is reported.  This is the same verbosity level
4837 that @option{-fdump-tree-vect-details} uses.
4838
4839 @item -frandom-seed=@var{string}
4840 @opindex frandom-string
4841 This option provides a seed that GCC uses when it would otherwise use
4842 random numbers.  It is used to generate certain symbol names
4843 that have to be different in every compiled file.  It is also used to
4844 place unique stamps in coverage data files and the object files that
4845 produce them.  You can use the @option{-frandom-seed} option to produce
4846 reproducibly identical object files.
4847
4848 The @var{string} should be different for every file you compile.
4849
4850 @item -fsched-verbose=@var{n}
4851 @opindex fsched-verbose
4852 On targets that use instruction scheduling, this option controls the
4853 amount of debugging output the scheduler prints.  This information is
4854 written to standard error, unless @option{-dS} or @option{-dR} is
4855 specified, in which case it is output to the usual dump
4856 listing file, @file{.sched} or @file{.sched2} respectively.  However
4857 for @var{n} greater than nine, the output is always printed to standard
4858 error.
4859
4860 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4861 same information as @option{-dRS}.  For @var{n} greater than one, it
4862 also output basic block probabilities, detailed ready list information
4863 and unit/insn info.  For @var{n} greater than two, it includes RTL
4864 at abort point, control-flow and regions info.  And for @var{n} over
4865 four, @option{-fsched-verbose} also includes dependence info.
4866
4867 @item -save-temps
4868 @opindex save-temps
4869 Store the usual ``temporary'' intermediate files permanently; place them
4870 in the current directory and name them based on the source file.  Thus,
4871 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4872 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4873 preprocessed @file{foo.i} output file even though the compiler now
4874 normally uses an integrated preprocessor.
4875
4876 When used in combination with the @option{-x} command line option,
4877 @option{-save-temps} is sensible enough to avoid over writing an
4878 input source file with the same extension as an intermediate file.
4879 The corresponding intermediate file may be obtained by renaming the
4880 source file before using @option{-save-temps}.
4881
4882 @item -time
4883 @opindex time
4884 Report the CPU time taken by each subprocess in the compilation
4885 sequence.  For C source files, this is the compiler proper and assembler
4886 (plus the linker if linking is done).  The output looks like this:
4887
4888 @smallexample
4889 # cc1 0.12 0.01
4890 # as 0.00 0.01
4891 @end smallexample
4892
4893 The first number on each line is the ``user time'', that is time spent
4894 executing the program itself.  The second number is ``system time'',
4895 time spent executing operating system routines on behalf of the program.
4896 Both numbers are in seconds.
4897
4898 @item -fvar-tracking
4899 @opindex fvar-tracking
4900 Run variable tracking pass.  It computes where variables are stored at each
4901 position in code.  Better debugging information is then generated
4902 (if the debugging information format supports this information).
4903
4904 It is enabled by default when compiling with optimization (@option{-Os},
4905 @option{-O}, @option{-O2}, ...), debugging information (@option{-g}) and
4906 the debug info format supports it.
4907
4908 @item -print-file-name=@var{library}
4909 @opindex print-file-name
4910 Print the full absolute name of the library file @var{library} that
4911 would be used when linking---and don't do anything else.  With this
4912 option, GCC does not compile or link anything; it just prints the
4913 file name.
4914
4915 @item -print-multi-directory
4916 @opindex print-multi-directory
4917 Print the directory name corresponding to the multilib selected by any
4918 other switches present in the command line.  This directory is supposed
4919 to exist in @env{GCC_EXEC_PREFIX}.
4920
4921 @item -print-multi-lib
4922 @opindex print-multi-lib
4923 Print the mapping from multilib directory names to compiler switches
4924 that enable them.  The directory name is separated from the switches by
4925 @samp{;}, and each switch starts with an @samp{@@} instead of the
4926 @samp{-}, without spaces between multiple switches.  This is supposed to
4927 ease shell-processing.
4928
4929 @item -print-prog-name=@var{program}
4930 @opindex print-prog-name
4931 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
4932
4933 @item -print-libgcc-file-name
4934 @opindex print-libgcc-file-name
4935 Same as @option{-print-file-name=libgcc.a}.
4936
4937 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
4938 but you do want to link with @file{libgcc.a}.  You can do
4939
4940 @smallexample
4941 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
4942 @end smallexample
4943
4944 @item -print-search-dirs
4945 @opindex print-search-dirs
4946 Print the name of the configured installation directory and a list of
4947 program and library directories @command{gcc} will search---and don't do anything else.
4948
4949 This is useful when @command{gcc} prints the error message
4950 @samp{installation problem, cannot exec cpp0: No such file or directory}.
4951 To resolve this you either need to put @file{cpp0} and the other compiler
4952 components where @command{gcc} expects to find them, or you can set the environment
4953 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
4954 Don't forget the trailing @samp{/}.
4955 @xref{Environment Variables}.
4956
4957 @item -print-sysroot-headers-suffix
4958 @opindex print-sysroot-headers-suffix
4959 Print the suffix added to the target sysroot when searching for
4960 headers, or give an error if the compiler is not configured with such
4961 a suffix---and don't do anything else.
4962
4963 @item -dumpmachine
4964 @opindex dumpmachine
4965 Print the compiler's target machine (for example,
4966 @samp{i686-pc-linux-gnu})---and don't do anything else.
4967
4968 @item -dumpversion
4969 @opindex dumpversion
4970 Print the compiler version (for example, @samp{3.0})---and don't do
4971 anything else.
4972
4973 @item -dumpspecs
4974 @opindex dumpspecs
4975 Print the compiler's built-in specs---and don't do anything else.  (This
4976 is used when GCC itself is being built.)  @xref{Spec Files}.
4977
4978 @item -feliminate-unused-debug-types
4979 @opindex feliminate-unused-debug-types
4980 Normally, when producing DWARF2 output, GCC will emit debugging
4981 information for all types declared in a compilation
4982 unit, regardless of whether or not they are actually used
4983 in that compilation unit.  Sometimes this is useful, such as
4984 if, in the debugger, you want to cast a value to a type that is
4985 not actually used in your program (but is declared).  More often,
4986 however, this results in a significant amount of wasted space.
4987 With this option, GCC will avoid producing debug symbol output
4988 for types that are nowhere used in the source file being compiled.
4989 @end table
4990
4991 @node Optimize Options
4992 @section Options That Control Optimization
4993 @cindex optimize options
4994 @cindex options, optimization
4995
4996 These options control various sorts of optimizations.
4997
4998 Without any optimization option, the compiler's goal is to reduce the
4999 cost of compilation and to make debugging produce the expected
5000 results.  Statements are independent: if you stop the program with a
5001 breakpoint between statements, you can then assign a new value to any
5002 variable or change the program counter to any other statement in the
5003 function and get exactly the results you would expect from the source
5004 code.
5005
5006 Turning on optimization flags makes the compiler attempt to improve
5007 the performance and/or code size at the expense of compilation time
5008 and possibly the ability to debug the program.
5009
5010 The compiler performs optimization based on the knowledge it has of
5011 the program.  Optimization levels @option{-O} and above, in
5012 particular, enable @emph{unit-at-a-time} mode, which allows the
5013 compiler to consider information gained from later functions in
5014 the file when compiling a function.  Compiling multiple files at
5015 once to a single output file in @emph{unit-at-a-time} mode allows
5016 the compiler to use information gained from all of the files when
5017 compiling each of them.
5018
5019 Not all optimizations are controlled directly by a flag.  Only
5020 optimizations that have a flag are listed.
5021
5022 @table @gcctabopt
5023 @item -O
5024 @itemx -O1
5025 @opindex O
5026 @opindex O1
5027 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5028 more memory for a large function.
5029
5030 With @option{-O}, the compiler tries to reduce code size and execution
5031 time, without performing any optimizations that take a great deal of
5032 compilation time.
5033
5034 @option{-O} turns on the following optimization flags:
5035 @gccoptlist{
5036 -fauto-inc-dec @gol
5037 -fcprop-registers @gol
5038 -fdce @gol
5039 -fdefer-pop @gol
5040 -fdelayed-branch @gol
5041 -fdse @gol
5042 -fguess-branch-probability @gol
5043 -fif-conversion2 @gol
5044 -fif-conversion @gol
5045 -finline-small-functions @gol
5046 -fipa-pure-const @gol
5047 -fipa-reference @gol
5048 -fmerge-constants
5049 -fsplit-wide-types @gol
5050 -ftree-ccp @gol
5051 -ftree-ch @gol
5052 -ftree-copyrename @gol
5053 -ftree-dce @gol
5054 -ftree-dominator-opts @gol
5055 -ftree-dse @gol
5056 -ftree-fre @gol
5057 -ftree-sra @gol
5058 -ftree-ter @gol
5059 -funit-at-a-time}
5060
5061 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5062 where doing so does not interfere with debugging.
5063
5064 @item -O2
5065 @opindex O2
5066 Optimize even more.  GCC performs nearly all supported optimizations
5067 that do not involve a space-speed tradeoff.  The compiler does not
5068 perform loop unrolling or function inlining when you specify @option{-O2}.
5069 As compared to @option{-O}, this option increases both compilation time
5070 and the performance of the generated code.
5071
5072 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5073 also turns on the following optimization flags:
5074 @gccoptlist{-fthread-jumps @gol
5075 -falign-functions  -falign-jumps @gol
5076 -falign-loops  -falign-labels @gol
5077 -fcaller-saves @gol
5078 -fcrossjumping @gol
5079 -fcse-follow-jumps  -fcse-skip-blocks @gol
5080 -fdelete-null-pointer-checks @gol
5081 -fexpensive-optimizations @gol
5082 -fgcse  -fgcse-lm  @gol
5083 -foptimize-sibling-calls @gol
5084 -fpeephole2 @gol
5085 -fregmove @gol
5086 -freorder-blocks  -freorder-functions @gol
5087 -frerun-cse-after-loop  @gol
5088 -fsched-interblock  -fsched-spec @gol
5089 -fschedule-insns  -fschedule-insns2 @gol
5090 -fstrict-aliasing -fstrict-overflow @gol
5091 -ftree-pre @gol
5092 -ftree-vrp}
5093
5094 Please note the warning under @option{-fgcse} about
5095 invoking @option{-O2} on programs that use computed gotos.
5096
5097 @item -O3
5098 @opindex O3
5099 Optimize yet more.  @option{-O3} turns on all optimizations specified by
5100 @option{-O2} and also turns on the @option{-finline-functions},
5101 @option{-funswitch-loops}, @option{-fpredictive-commoning} and
5102 @option{-fgcse-after-reload} options.
5103
5104 @item -O0
5105 @opindex O0
5106 Reduce compilation time and make debugging produce the expected
5107 results.  This is the default.
5108
5109 @item -Os
5110 @opindex Os
5111 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5112 do not typically increase code size.  It also performs further
5113 optimizations designed to reduce code size.
5114
5115 @option{-Os} disables the following optimization flags:
5116 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5117 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5118 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5119
5120 If you use multiple @option{-O} options, with or without level numbers,
5121 the last such option is the one that is effective.
5122 @end table
5123
5124 Options of the form @option{-f@var{flag}} specify machine-independent
5125 flags.  Most flags have both positive and negative forms; the negative
5126 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5127 below, only one of the forms is listed---the one you typically will
5128 use.  You can figure out the other form by either removing @samp{no-}
5129 or adding it.
5130
5131 The following options control specific optimizations.  They are either
5132 activated by @option{-O} options or are related to ones that are.  You
5133 can use the following flags in the rare cases when ``fine-tuning'' of
5134 optimizations to be performed is desired.
5135
5136 @table @gcctabopt
5137 @item -fno-default-inline
5138 @opindex fno-default-inline
5139 Do not make member functions inline by default merely because they are
5140 defined inside the class scope (C++ only).  Otherwise, when you specify
5141 @w{@option{-O}}, member functions defined inside class scope are compiled
5142 inline by default; i.e., you don't need to add @samp{inline} in front of
5143 the member function name.
5144
5145 @item -fno-defer-pop
5146 @opindex fno-defer-pop
5147 Always pop the arguments to each function call as soon as that function
5148 returns.  For machines which must pop arguments after a function call,
5149 the compiler normally lets arguments accumulate on the stack for several
5150 function calls and pops them all at once.
5151
5152 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5153
5154 @item -fforward-propagate
5155 @opindex fforward-propagate
5156 Perform a forward propagation pass on RTL.  The pass tries to combine two
5157 instructions and checks if the result can be simplified.  If loop unrolling
5158 is active, two passes are performed and the second is scheduled after
5159 loop unrolling.
5160
5161 This option is enabled by default at optimization levels @option{-O2},
5162 @option{-O3}, @option{-Os}.
5163
5164 @item -fomit-frame-pointer
5165 @opindex fomit-frame-pointer
5166 Don't keep the frame pointer in a register for functions that
5167 don't need one.  This avoids the instructions to save, set up and
5168 restore frame pointers; it also makes an extra register available
5169 in many functions.  @strong{It also makes debugging impossible on
5170 some machines.}
5171
5172 On some machines, such as the VAX, this flag has no effect, because
5173 the standard calling sequence automatically handles the frame pointer
5174 and nothing is saved by pretending it doesn't exist.  The
5175 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5176 whether a target machine supports this flag.  @xref{Registers,,Register
5177 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5178
5179 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5180
5181 @item -foptimize-sibling-calls
5182 @opindex foptimize-sibling-calls
5183 Optimize sibling and tail recursive calls.
5184
5185 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5186
5187 @item -fno-inline
5188 @opindex fno-inline
5189 Don't pay attention to the @code{inline} keyword.  Normally this option
5190 is used to keep the compiler from expanding any functions inline.
5191 Note that if you are not optimizing, no functions can be expanded inline.
5192
5193 @item -finline-small-functions
5194 @opindex finline-small-functions
5195 Integrate functions into their callers when their body is smaller than expected
5196 function call code (so overall size of program gets smaller).  The compiler
5197 heuristically decides which functions are simple enough to be worth integrating
5198 in this way.
5199
5200 Enabled at level @option{-O2}.
5201
5202 @item -finline-functions
5203 @opindex finline-functions
5204 Integrate all simple functions into their callers.  The compiler
5205 heuristically decides which functions are simple enough to be worth
5206 integrating in this way.
5207
5208 If all calls to a given function are integrated, and the function is
5209 declared @code{static}, then the function is normally not output as
5210 assembler code in its own right.
5211
5212 Enabled at level @option{-O3}.
5213
5214 @item -finline-functions-called-once
5215 @opindex finline-functions-called-once
5216 Consider all @code{static} functions called once for inlining into their
5217 caller even if they are not marked @code{inline}.  If a call to a given
5218 function is integrated, then the function is not output as assembler code
5219 in its own right.
5220
5221 Enabled if @option{-funit-at-a-time} is enabled.
5222
5223 @item -fearly-inlining
5224 @opindex fearly-inlining
5225 Inline functions marked by @code{always_inline} and functions whose body seems
5226 smaller than the function call overhead early before doing
5227 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5228 makes profiling significantly cheaper and usually inlining faster on programs
5229 having large chains of nested wrapper functions.
5230
5231 Enabled by default.
5232
5233 @item -finline-limit=@var{n}
5234 @opindex finline-limit
5235 By default, GCC limits the size of functions that can be inlined.  This flag
5236 allows the control of this limit for functions that are explicitly marked as
5237 inline (i.e., marked with the inline keyword or defined within the class
5238 definition in c++).  @var{n} is the size of functions that can be inlined in
5239 number of pseudo instructions (not counting parameter handling).  The default
5240 value of @var{n} is 600.
5241 Increasing this value can result in more inlined code at
5242 the cost of compilation time and memory consumption.  Decreasing usually makes
5243 the compilation faster and less code will be inlined (which presumably
5244 means slower programs).  This option is particularly useful for programs that
5245 use inlining heavily such as those based on recursive templates with C++.
5246
5247 Inlining is actually controlled by a number of parameters, which may be
5248 specified individually by using @option{--param @var{name}=@var{value}}.
5249 The @option{-finline-limit=@var{n}} option sets some of these parameters
5250 as follows:
5251
5252 @table @gcctabopt
5253 @item max-inline-insns-single
5254  is set to @var{n}/2.
5255 @item max-inline-insns-auto
5256  is set to @var{n}/2.
5257 @item min-inline-insns
5258  is set to 130 or @var{n}/4, whichever is smaller.
5259 @item max-inline-insns-rtl
5260  is set to @var{n}.
5261 @end table
5262
5263 See below for a documentation of the individual
5264 parameters controlling inlining.
5265
5266 @emph{Note:} pseudo instruction represents, in this particular context, an
5267 abstract measurement of function's size.  In no way does it represent a count
5268 of assembly instructions and as such its exact meaning might change from one
5269 release to an another.
5270
5271 @item -fkeep-inline-functions
5272 @opindex fkeep-inline-functions
5273 In C, emit @code{static} functions that are declared @code{inline}
5274 into the object file, even if the function has been inlined into all
5275 of its callers.  This switch does not affect functions using the
5276 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5277 inline functions into the object file.
5278
5279 @item -fkeep-static-consts
5280 @opindex fkeep-static-consts
5281 Emit variables declared @code{static const} when optimization isn't turned
5282 on, even if the variables aren't referenced.
5283
5284 GCC enables this option by default.  If you want to force the compiler to
5285 check if the variable was referenced, regardless of whether or not
5286 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5287
5288 @item -fmerge-constants
5289 @opindex fmerge-constants
5290 Attempt to merge identical constants (string constants and floating point
5291 constants) across compilation units.
5292
5293 This option is the default for optimized compilation if the assembler and
5294 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5295 behavior.
5296
5297 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5298
5299 @item -fmerge-all-constants
5300 @opindex fmerge-all-constants
5301 Attempt to merge identical constants and identical variables.
5302
5303 This option implies @option{-fmerge-constants}.  In addition to
5304 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5305 arrays or initialized constant variables with integral or floating point
5306 types.  Languages like C or C++ require each non-automatic variable to
5307 have distinct location, so using this option will result in non-conforming
5308 behavior.
5309
5310 @item -fmodulo-sched
5311 @opindex fmodulo-sched
5312 Perform swing modulo scheduling immediately before the first scheduling
5313 pass.  This pass looks at innermost loops and reorders their
5314 instructions by overlapping different iterations.
5315
5316 @item -fmodulo-sched-allow-regmoves
5317 @opindex fmodulo-sched-allow-regmoves
5318 Perform more aggressive SMS based modulo scheduling with register moves
5319 allowed.  By setting this flag certain anti-dependences edges will be
5320 deleted which will trigger the generation of reg-moves based on the
5321 life-range analysis.  This option is effective only with
5322 @option{-fmodulo-sched} enabled.
5323
5324 @item -fno-branch-count-reg
5325 @opindex fno-branch-count-reg
5326 Do not use ``decrement and branch'' instructions on a count register,
5327 but instead generate a sequence of instructions that decrement a
5328 register, compare it against zero, then branch based upon the result.
5329 This option is only meaningful on architectures that support such
5330 instructions, which include x86, PowerPC, IA-64 and S/390.
5331
5332 The default is @option{-fbranch-count-reg}.
5333
5334 @item -fno-function-cse
5335 @opindex fno-function-cse
5336 Do not put function addresses in registers; make each instruction that
5337 calls a constant function contain the function's address explicitly.
5338
5339 This option results in less efficient code, but some strange hacks
5340 that alter the assembler output may be confused by the optimizations
5341 performed when this option is not used.
5342
5343 The default is @option{-ffunction-cse}
5344
5345 @item -fno-zero-initialized-in-bss
5346 @opindex fno-zero-initialized-in-bss
5347 If the target supports a BSS section, GCC by default puts variables that
5348 are initialized to zero into BSS@.  This can save space in the resulting
5349 code.
5350
5351 This option turns off this behavior because some programs explicitly
5352 rely on variables going to the data section.  E.g., so that the
5353 resulting executable can find the beginning of that section and/or make
5354 assumptions based on that.
5355
5356 The default is @option{-fzero-initialized-in-bss}.
5357
5358 @item -fmudflap -fmudflapth -fmudflapir
5359 @opindex fmudflap
5360 @opindex fmudflapth
5361 @opindex fmudflapir
5362 @cindex bounds checking
5363 @cindex mudflap
5364 For front-ends that support it (C and C++), instrument all risky
5365 pointer/array dereferencing operations, some standard library
5366 string/heap functions, and some other associated constructs with
5367 range/validity tests.  Modules so instrumented should be immune to
5368 buffer overflows, invalid heap use, and some other classes of C/C++
5369 programming errors.  The instrumentation relies on a separate runtime
5370 library (@file{libmudflap}), which will be linked into a program if
5371 @option{-fmudflap} is given at link time.  Run-time behavior of the
5372 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5373 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5374 for its options.
5375
5376 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5377 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5378 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5379 instrumentation should ignore pointer reads.  This produces less
5380 instrumentation (and therefore faster execution) and still provides
5381 some protection against outright memory corrupting writes, but allows
5382 erroneously read data to propagate within a program.
5383
5384 @item -fthread-jumps
5385 @opindex fthread-jumps
5386 Perform optimizations where we check to see if a jump branches to a
5387 location where another comparison subsumed by the first is found.  If
5388 so, the first branch is redirected to either the destination of the
5389 second branch or a point immediately following it, depending on whether
5390 the condition is known to be true or false.
5391
5392 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5393
5394 @item -fsplit-wide-types
5395 @opindex fsplit-wide-types
5396 When using a type that occupies multiple registers, such as @code{long
5397 long} on a 32-bit system, split the registers apart and allocate them
5398 independently.  This normally generates better code for those types,
5399 but may make debugging more difficult.
5400
5401 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5402 @option{-Os}.
5403
5404 @item -fcse-follow-jumps
5405 @opindex fcse-follow-jumps
5406 In common subexpression elimination (CSE), scan through jump instructions
5407 when the target of the jump is not reached by any other path.  For
5408 example, when CSE encounters an @code{if} statement with an
5409 @code{else} clause, CSE will follow the jump when the condition
5410 tested is false.
5411
5412 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5413
5414 @item -fcse-skip-blocks
5415 @opindex fcse-skip-blocks
5416 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5417 follow jumps which conditionally skip over blocks.  When CSE
5418 encounters a simple @code{if} statement with no else clause,
5419 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5420 body of the @code{if}.
5421
5422 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5423
5424 @item -frerun-cse-after-loop
5425 @opindex frerun-cse-after-loop
5426 Re-run common subexpression elimination after loop optimizations has been
5427 performed.
5428
5429 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5430
5431 @item -fgcse
5432 @opindex fgcse
5433 Perform a global common subexpression elimination pass.
5434 This pass also performs global constant and copy propagation.
5435
5436 @emph{Note:} When compiling a program using computed gotos, a GCC
5437 extension, you may get better runtime performance if you disable
5438 the global common subexpression elimination pass by adding
5439 @option{-fno-gcse} to the command line.
5440
5441 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5442
5443 @item -fgcse-lm
5444 @opindex fgcse-lm
5445 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5446 attempt to move loads which are only killed by stores into themselves.  This
5447 allows a loop containing a load/store sequence to be changed to a load outside
5448 the loop, and a copy/store within the loop.
5449
5450 Enabled by default when gcse is enabled.
5451
5452 @item -fgcse-sm
5453 @opindex fgcse-sm
5454 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5455 global common subexpression elimination.  This pass will attempt to move
5456 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5457 loops containing a load/store sequence can be changed to a load before
5458 the loop and a store after the loop.
5459
5460 Not enabled at any optimization level.
5461
5462 @item -fgcse-las
5463 @opindex fgcse-las
5464 When @option{-fgcse-las} is enabled, the global common subexpression
5465 elimination pass eliminates redundant loads that come after stores to the
5466 same memory location (both partial and full redundancies).
5467
5468 Not enabled at any optimization level.
5469
5470 @item -fgcse-after-reload
5471 @opindex fgcse-after-reload
5472 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5473 pass is performed after reload.  The purpose of this pass is to cleanup
5474 redundant spilling.
5475
5476 @item -funsafe-loop-optimizations
5477 @opindex funsafe-loop-optimizations
5478 If given, the loop optimizer will assume that loop indices do not
5479 overflow, and that the loops with nontrivial exit condition are not
5480 infinite.  This enables a wider range of loop optimizations even if
5481 the loop optimizer itself cannot prove that these assumptions are valid.
5482 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5483 if it finds this kind of loop.
5484
5485 @item -fcrossjumping
5486 @opindex fcrossjumping
5487 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5488 resulting code may or may not perform better than without cross-jumping.
5489
5490 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5491
5492 @item -fauto-inc-dec
5493 @opindex fauto-inc-dec
5494 Combine increments or decrements of addresses with memory accesses.
5495 This pass is always skipped on architectures that do not have
5496 instructions to support this.  Enabled by default at @option{-O} and
5497 higher on architectures that support this.
5498
5499 @item -fdce
5500 @opindex fdce
5501 Perform dead code elimination (DCE) on RTL.
5502 Enabled by default at @option{-O} and higher.
5503
5504 @item -fdse
5505 @opindex fdse
5506 Perform dead store elimination (DSE) on RTL.
5507 Enabled by default at @option{-O} and higher.
5508
5509 @item -fif-conversion
5510 @opindex fif-conversion
5511 Attempt to transform conditional jumps into branch-less equivalents.  This
5512 include use of conditional moves, min, max, set flags and abs instructions, and
5513 some tricks doable by standard arithmetics.  The use of conditional execution
5514 on chips where it is available is controlled by @code{if-conversion2}.
5515
5516 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5517
5518 @item -fif-conversion2
5519 @opindex fif-conversion2
5520 Use conditional execution (where available) to transform conditional jumps into
5521 branch-less equivalents.
5522
5523 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5524
5525 @item -fdelete-null-pointer-checks
5526 @opindex fdelete-null-pointer-checks
5527 Use global dataflow analysis to identify and eliminate useless checks
5528 for null pointers.  The compiler assumes that dereferencing a null
5529 pointer would have halted the program.  If a pointer is checked after
5530 it has already been dereferenced, it cannot be null.
5531
5532 In some environments, this assumption is not true, and programs can
5533 safely dereference null pointers.  Use
5534 @option{-fno-delete-null-pointer-checks} to disable this optimization
5535 for programs which depend on that behavior.
5536
5537 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5538
5539 @item -fexpensive-optimizations
5540 @opindex fexpensive-optimizations
5541 Perform a number of minor optimizations that are relatively expensive.
5542
5543 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5544
5545 @item -foptimize-register-move
5546 @itemx -fregmove
5547 @opindex foptimize-register-move
5548 @opindex fregmove
5549 Attempt to reassign register numbers in move instructions and as
5550 operands of other simple instructions in order to maximize the amount of
5551 register tying.  This is especially helpful on machines with two-operand
5552 instructions.
5553
5554 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5555 optimization.
5556
5557 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5558
5559 @item -fdelayed-branch
5560 @opindex fdelayed-branch
5561 If supported for the target machine, attempt to reorder instructions
5562 to exploit instruction slots available after delayed branch
5563 instructions.
5564
5565 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5566
5567 @item -fschedule-insns
5568 @opindex fschedule-insns
5569 If supported for the target machine, attempt to reorder instructions to
5570 eliminate execution stalls due to required data being unavailable.  This
5571 helps machines that have slow floating point or memory load instructions
5572 by allowing other instructions to be issued until the result of the load
5573 or floating point instruction is required.
5574
5575 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5576
5577 @item -fschedule-insns2
5578 @opindex fschedule-insns2
5579 Similar to @option{-fschedule-insns}, but requests an additional pass of
5580 instruction scheduling after register allocation has been done.  This is
5581 especially useful on machines with a relatively small number of
5582 registers and where memory load instructions take more than one cycle.
5583
5584 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5585
5586 @item -fno-sched-interblock
5587 @opindex fno-sched-interblock
5588 Don't schedule instructions across basic blocks.  This is normally
5589 enabled by default when scheduling before register allocation, i.e.@:
5590 with @option{-fschedule-insns} or at @option{-O2} or higher.
5591
5592 @item -fno-sched-spec
5593 @opindex fno-sched-spec
5594 Don't allow speculative motion of non-load instructions.  This is normally
5595 enabled by default when scheduling before register allocation, i.e.@:
5596 with @option{-fschedule-insns} or at @option{-O2} or higher.
5597
5598 @item -fsched-spec-load
5599 @opindex fsched-spec-load
5600 Allow speculative motion of some load instructions.  This only makes
5601 sense when scheduling before register allocation, i.e.@: with
5602 @option{-fschedule-insns} or at @option{-O2} or higher.
5603
5604 @item -fsched-spec-load-dangerous
5605 @opindex fsched-spec-load-dangerous
5606 Allow speculative motion of more load instructions.  This only makes
5607 sense when scheduling before register allocation, i.e.@: with
5608 @option{-fschedule-insns} or at @option{-O2} or higher.
5609
5610 @item -fsched-stalled-insns
5611 @itemx -fsched-stalled-insns=@var{n}
5612 @opindex fsched-stalled-insns
5613 Define how many insns (if any) can be moved prematurely from the queue
5614 of stalled insns into the ready list, during the second scheduling pass.
5615 @option{-fno-sched-stalled-insns} means that no insns will be moved
5616 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
5617 on how many queued insns can be moved prematurely.
5618 @option{-fsched-stalled-insns} without a value is equivalent to
5619 @option{-fsched-stalled-insns=1}.
5620
5621 @item -fsched-stalled-insns-dep
5622 @itemx -fsched-stalled-insns-dep=@var{n}
5623 @opindex fsched-stalled-insns-dep
5624 Define how many insn groups (cycles) will be examined for a dependency
5625 on a stalled insn that is candidate for premature removal from the queue
5626 of stalled insns.  This has an effect only during the second scheduling pass,
5627 and only if @option{-fsched-stalled-insns} is used.
5628 @option{-fno-sched-stalled-insns-dep} is equivalent to
5629 @option{-fsched-stalled-insns-dep=0}.
5630 @option{-fsched-stalled-insns-dep} without a value is equivalent to
5631 @option{-fsched-stalled-insns-dep=1}.
5632
5633 @item -fsched2-use-superblocks
5634 @opindex fsched2-use-superblocks
5635 When scheduling after register allocation, do use superblock scheduling
5636 algorithm.  Superblock scheduling allows motion across basic block boundaries
5637 resulting on faster schedules.  This option is experimental, as not all machine
5638 descriptions used by GCC model the CPU closely enough to avoid unreliable
5639 results from the algorithm.
5640
5641 This only makes sense when scheduling after register allocation, i.e.@: with
5642 @option{-fschedule-insns2} or at @option{-O2} or higher.
5643
5644 @item -fsched2-use-traces
5645 @opindex fsched2-use-traces
5646 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5647 allocation and additionally perform code duplication in order to increase the
5648 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5649 trace formation.
5650
5651 This mode should produce faster but significantly longer programs.  Also
5652 without @option{-fbranch-probabilities} the traces constructed may not
5653 match the reality and hurt the performance.  This only makes
5654 sense when scheduling after register allocation, i.e.@: with
5655 @option{-fschedule-insns2} or at @option{-O2} or higher.
5656
5657 @item -fsee
5658 @opindex fsee
5659 Eliminate redundant sign extension instructions and move the non-redundant
5660 ones to optimal placement using lazy code motion (LCM).
5661
5662 @item -freschedule-modulo-scheduled-loops
5663 @opindex freschedule-modulo-scheduled-loops
5664 The modulo scheduling comes before the traditional scheduling, if a loop
5665 was modulo scheduled we may want to prevent the later scheduling passes
5666 from changing its schedule, we use this option to control that.
5667
5668 @item -fcaller-saves
5669 @opindex fcaller-saves
5670 Enable values to be allocated in registers that will be clobbered by
5671 function calls, by emitting extra instructions to save and restore the
5672 registers around such calls.  Such allocation is done only when it
5673 seems to result in better code than would otherwise be produced.
5674
5675 This option is always enabled by default on certain machines, usually
5676 those which have no call-preserved registers to use instead.
5677
5678 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5679
5680 @item -ftree-reassoc
5681 @opindex ftree-reassoc
5682 Perform reassociation on trees.  This flag is enabled by default
5683 at @option{-O} and higher.
5684
5685 @item -ftree-pre
5686 @opindex ftree-pre
5687 Perform partial redundancy elimination (PRE) on trees.  This flag is
5688 enabled by default at @option{-O2} and @option{-O3}.
5689
5690 @item -ftree-fre
5691 @opindex ftree-fre
5692 Perform full redundancy elimination (FRE) on trees.  The difference
5693 between FRE and PRE is that FRE only considers expressions
5694 that are computed on all paths leading to the redundant computation.
5695 This analysis is faster than PRE, though it exposes fewer redundancies.
5696 This flag is enabled by default at @option{-O} and higher.
5697
5698 @item -ftree-copy-prop
5699 @opindex ftree-copy-prop
5700 Perform copy propagation on trees.  This pass eliminates unnecessary
5701 copy operations.  This flag is enabled by default at @option{-O} and
5702 higher.
5703
5704 @item -ftree-salias
5705 @opindex ftree-salias
5706 Perform structural alias analysis on trees.  This flag
5707 is enabled by default at @option{-O} and higher.
5708
5709 @item -fipa-pure-const
5710 @opindex fipa-pure-const
5711 Discover which functions are pure or constant.
5712 Enabled by default at @option{-O} and higher.
5713
5714 @item -fipa-reference
5715 @opindex fipa-reference
5716 Discover which static variables do not escape cannot escape the
5717 compilation unit.
5718 Enabled by default at @option{-O} and higher.
5719
5720 @item -fipa-struct-reorg
5721 @opindex fipa-struct-reorg
5722 Perform structure reorganization optimization, that change C-like structures 
5723 layout in order to better utilize spatial locality.  This transformation is 
5724 affective for programs containing arrays of structures.  Available in two 
5725 compilation modes: profile-based (enabled with @option{-fprofile-generate})
5726 or static (which uses built-in heuristics).  Require @option{-fipa-type-escape}
5727 to provide the safety of this transformation.  It works only in whole program
5728 mode, so it requires @option{-fwhole-program} and @option{-combine} to be
5729 enabled.  Structures considered @samp{cold} by this transformation are not
5730 affected (see @option{--param struct-reorg-cold-struct-ratio=@var{value}}).
5731
5732 With this flag, the program debug info reflects a new structure layout.
5733
5734 @item -fipa-pta
5735 @opindex fipa-pta
5736 Perform interprocedural pointer analysis.
5737
5738 @item -fipa-cp
5739 @opindex fipa-cp
5740 Perform interprocedural constant propagation.
5741 This optimization analyzes the program to determine when values passed
5742 to functions are constants and then optimizes accordingly.  
5743 This optimization can substantially increase performance
5744 if the application has constants passed to functions, but
5745 because this optimization can create multiple copies of functions,
5746 it may significantly increase code size.
5747
5748 @item -fipa-matrix-reorg
5749 @opindex fipa-matrix-reorg
5750 Perform matrix flattening and transposing.
5751 Matrix flattening tries to replace a m-dimensional matrix 
5752 with its equivalent n-dimensional matrix, where n < m.
5753 This reduces the level of indirection needed for accessing the elements
5754 of the matrix. The second optimization is matrix transposing that
5755 attemps to change the order of the matrix's dimensions in order to 
5756 improve cache locality.
5757 Both optimizations need fwhole-program flag. 
5758 Transposing is enabled only if profiling information is avaliable.
5759
5760
5761 @item -ftree-sink
5762 @opindex ftree-sink
5763 Perform forward store motion  on trees.  This flag is
5764 enabled by default at @option{-O} and higher.
5765
5766 @item -ftree-ccp
5767 @opindex ftree-ccp
5768 Perform sparse conditional constant propagation (CCP) on trees.  This
5769 pass only operates on local scalar variables and is enabled by default
5770 at @option{-O} and higher.
5771
5772 @item -ftree-store-ccp
5773 @opindex ftree-store-ccp
5774 Perform sparse conditional constant propagation (CCP) on trees.  This
5775 pass operates on both local scalar variables and memory stores and
5776 loads (global variables, structures, arrays, etc).  This flag is
5777 enabled by default at @option{-O2} and higher.
5778
5779 @item -ftree-dce
5780 @opindex ftree-dce
5781 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5782 default at @option{-O} and higher.
5783
5784 @item -ftree-dominator-opts
5785 @opindex ftree-dominator-opts
5786 Perform a variety of simple scalar cleanups (constant/copy
5787 propagation, redundancy elimination, range propagation and expression
5788 simplification) based on a dominator tree traversal.  This also
5789 performs jump threading (to reduce jumps to jumps). This flag is
5790 enabled by default at @option{-O} and higher.
5791
5792 @item -ftree-dse
5793 @opindex ftree-dse
5794 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5795 a memory location which will later be overwritten by another store without
5796 any intervening loads.  In this case the earlier store can be deleted.  This
5797 flag is enabled by default at @option{-O} and higher.
5798
5799 @item -ftree-ch
5800 @opindex ftree-ch
5801 Perform loop header copying on trees.  This is beneficial since it increases
5802 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5803 is enabled by default at @option{-O} and higher.  It is not enabled
5804 for @option{-Os}, since it usually increases code size.
5805
5806 @item -ftree-loop-optimize
5807 @opindex ftree-loop-optimize
5808 Perform loop optimizations on trees.  This flag is enabled by default
5809 at @option{-O} and higher.
5810
5811 @item -ftree-loop-linear
5812 @opindex ftree-loop-linear
5813 Perform linear loop transformations on tree.  This flag can improve cache
5814 performance and allow further loop optimizations to take place.
5815
5816 @item -fcheck-data-deps
5817 @opindex fcheck-data-deps
5818 Compare the results of several data dependence analyzers.  This option
5819 is used for debugging the data dependence analyzers.
5820
5821 @item -ftree-loop-im
5822 @opindex ftree-loop-im
5823 Perform loop invariant motion on trees.  This pass moves only invariants that
5824 would be hard to handle at RTL level (function calls, operations that expand to
5825 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5826 operands of conditions that are invariant out of the loop, so that we can use
5827 just trivial invariantness analysis in loop unswitching.  The pass also includes
5828 store motion.
5829
5830 @item -ftree-loop-ivcanon
5831 @opindex ftree-loop-ivcanon
5832 Create a canonical counter for number of iterations in the loop for that
5833 determining number of iterations requires complicated analysis.  Later
5834 optimizations then may determine the number easily.  Useful especially
5835 in connection with unrolling.
5836
5837 @item -fivopts
5838 @opindex fivopts
5839 Perform induction variable optimizations (strength reduction, induction
5840 variable merging and induction variable elimination) on trees.
5841
5842 @item -ftree-parallelize-loops=n
5843 @opindex ftree-parallelize-loops
5844 Parallelize loops, i.e., split their iteration space to run in n threads.
5845 This is only possible for loops whose iterations are independent
5846 and can be arbitrarily reordered.  The optimization is only
5847 profitable on multiprocessor machines, for loops that are CPU-intensive,
5848 rather than constrained e.g. by memory bandwidth.  This option
5849 implies @option{-pthread}, and thus is only supported on targets
5850 that have support for @option{-pthread}.
5851
5852 @item -ftree-sra
5853 @opindex ftree-sra
5854 Perform scalar replacement of aggregates.  This pass replaces structure
5855 references with scalars to prevent committing structures to memory too
5856 early.  This flag is enabled by default at @option{-O} and higher.
5857
5858 @item -ftree-copyrename
5859 @opindex ftree-copyrename
5860 Perform copy renaming on trees.  This pass attempts to rename compiler
5861 temporaries to other variables at copy locations, usually resulting in
5862 variable names which more closely resemble the original variables.  This flag
5863 is enabled by default at @option{-O} and higher.
5864
5865 @item -ftree-ter
5866 @opindex ftree-ter
5867 Perform temporary expression replacement during the SSA->normal phase.  Single
5868 use/single def temporaries are replaced at their use location with their
5869 defining expression.  This results in non-GIMPLE code, but gives the expanders
5870 much more complex trees to work on resulting in better RTL generation.  This is
5871 enabled by default at @option{-O} and higher.
5872
5873 @item -ftree-vectorize
5874 @opindex ftree-vectorize
5875 Perform loop vectorization on trees.
5876
5877 @item -ftree-vect-loop-version
5878 @opindex ftree-vect-loop-version
5879 Perform loop versioning when doing loop vectorization on trees.  When a loop
5880 appears to be vectorizable except that data alignment or data dependence cannot
5881 be determined at compile time then vectorized and non-vectorized versions of
5882 the loop are generated along with runtime checks for alignment or dependence
5883 to control which version is executed.  This option is enabled by default
5884 except at level @option{-Os} where it is disabled.
5885
5886 @item -fvect-cost-model
5887 @opindex fvect-cost-model
5888 Enable cost model for vectorization.
5889
5890 @item -ftree-vrp
5891 @opindex ftree-vrp
5892 Perform Value Range Propagation on trees.  This is similar to the
5893 constant propagation pass, but instead of values, ranges of values are
5894 propagated.  This allows the optimizers to remove unnecessary range
5895 checks like array bound checks and null pointer checks.  This is
5896 enabled by default at @option{-O2} and higher.  Null pointer check
5897 elimination is only done if @option{-fdelete-null-pointer-checks} is
5898 enabled.
5899
5900 @item -ftracer
5901 @opindex ftracer
5902 Perform tail duplication to enlarge superblock size.  This transformation
5903 simplifies the control flow of the function allowing other optimizations to do
5904 better job.
5905
5906 @item -funroll-loops
5907 @opindex funroll-loops
5908 Unroll loops whose number of iterations can be determined at compile
5909 time or upon entry to the loop.  @option{-funroll-loops} implies
5910 @option{-frerun-cse-after-loop}.  This option makes code larger,
5911 and may or may not make it run faster.
5912
5913 @item -funroll-all-loops
5914 @opindex funroll-all-loops
5915 Unroll all loops, even if their number of iterations is uncertain when
5916 the loop is entered.  This usually makes programs run more slowly.
5917 @option{-funroll-all-loops} implies the same options as
5918 @option{-funroll-loops},
5919
5920 @item -fsplit-ivs-in-unroller
5921 @opindex fsplit-ivs-in-unroller
5922 Enables expressing of values of induction variables in later iterations
5923 of the unrolled loop using the value in the first iteration.  This breaks
5924 long dependency chains, thus improving efficiency of the scheduling passes.
5925
5926 Combination of @option{-fweb} and CSE is often sufficient to obtain the
5927 same effect.  However in cases the loop body is more complicated than
5928 a single basic block, this is not reliable.  It also does not work at all
5929 on some of the architectures due to restrictions in the CSE pass.
5930
5931 This optimization is enabled by default.
5932
5933 @item -fvariable-expansion-in-unroller
5934 @opindex fvariable-expansion-in-unroller
5935 With this option, the compiler will create multiple copies of some
5936 local variables when unrolling a loop which can result in superior code.
5937
5938 @item -fpredictive-commoning
5939 @opindex fpredictive-commoning
5940 Perform predictive commoning optimization, i.e., reusing computations
5941 (especially memory loads and stores) performed in previous
5942 iterations of loops.
5943
5944 This option is enabled at level @option{-O3}.
5945
5946 @item -fprefetch-loop-arrays
5947 @opindex fprefetch-loop-arrays
5948 If supported by the target machine, generate instructions to prefetch
5949 memory to improve the performance of loops that access large arrays.
5950
5951 This option may generate better or worse code; results are highly
5952 dependent on the structure of loops within the source code.
5953
5954 Disabled at level @option{-Os}.
5955
5956 @item -fno-peephole
5957 @itemx -fno-peephole2
5958 @opindex fno-peephole
5959 @opindex fno-peephole2
5960 Disable any machine-specific peephole optimizations.  The difference
5961 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
5962 are implemented in the compiler; some targets use one, some use the
5963 other, a few use both.
5964
5965 @option{-fpeephole} is enabled by default.
5966 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5967
5968 @item -fno-guess-branch-probability
5969 @opindex fno-guess-branch-probability
5970 Do not guess branch probabilities using heuristics.
5971
5972 GCC will use heuristics to guess branch probabilities if they are
5973 not provided by profiling feedback (@option{-fprofile-arcs}).  These
5974 heuristics are based on the control flow graph.  If some branch probabilities
5975 are specified by @samp{__builtin_expect}, then the heuristics will be
5976 used to guess branch probabilities for the rest of the control flow graph,
5977 taking the @samp{__builtin_expect} info into account.  The interactions
5978 between the heuristics and @samp{__builtin_expect} can be complex, and in
5979 some cases, it may be useful to disable the heuristics so that the effects
5980 of @samp{__builtin_expect} are easier to understand.
5981
5982 The default is @option{-fguess-branch-probability} at levels
5983 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5984
5985 @item -freorder-blocks
5986 @opindex freorder-blocks
5987 Reorder basic blocks in the compiled function in order to reduce number of
5988 taken branches and improve code locality.
5989
5990 Enabled at levels @option{-O2}, @option{-O3}.
5991
5992 @item -freorder-blocks-and-partition
5993 @opindex freorder-blocks-and-partition
5994 In addition to reordering basic blocks in the compiled function, in order
5995 to reduce number of taken branches, partitions hot and cold basic blocks
5996 into separate sections of the assembly and .o files, to improve
5997 paging and cache locality performance.
5998
5999 This optimization is automatically turned off in the presence of
6000 exception handling, for linkonce sections, for functions with a user-defined
6001 section attribute and on any architecture that does not support named
6002 sections.
6003
6004 @item -freorder-functions
6005 @opindex freorder-functions
6006 Reorder functions in the object file in order to
6007 improve code locality.  This is implemented by using special
6008 subsections @code{.text.hot} for most frequently executed functions and
6009 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
6010 the linker so object file format must support named sections and linker must
6011 place them in a reasonable way.
6012
6013 Also profile feedback must be available in to make this option effective.  See
6014 @option{-fprofile-arcs} for details.
6015
6016 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6017
6018 @item -fstrict-aliasing
6019 @opindex fstrict-aliasing
6020 Allows the compiler to assume the strictest aliasing rules applicable to
6021 the language being compiled.  For C (and C++), this activates
6022 optimizations based on the type of expressions.  In particular, an
6023 object of one type is assumed never to reside at the same address as an
6024 object of a different type, unless the types are almost the same.  For
6025 example, an @code{unsigned int} can alias an @code{int}, but not a
6026 @code{void*} or a @code{double}.  A character type may alias any other
6027 type.
6028
6029 Pay special attention to code like this:
6030 @smallexample
6031 union a_union @{
6032   int i;
6033   double d;
6034 @};
6035
6036 int f() @{
6037   a_union t;
6038   t.d = 3.0;
6039   return t.i;
6040 @}
6041 @end smallexample
6042 The practice of reading from a different union member than the one most
6043 recently written to (called ``type-punning'') is common.  Even with
6044 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
6045 is accessed through the union type.  So, the code above will work as
6046 expected.  However, this code might not:
6047 @smallexample
6048 int f() @{
6049   a_union t;
6050   int* ip;
6051   t.d = 3.0;
6052   ip = &t.i;
6053   return *ip;
6054 @}
6055 @end smallexample
6056
6057 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
6058
6059 @item -fstrict-overflow
6060 @opindex fstrict-overflow
6061 Allow the compiler to assume strict signed overflow rules, depending
6062 on the language being compiled.  For C (and C++) this means that
6063 overflow when doing arithmetic with signed numbers is undefined, which
6064 means that the compiler may assume that it will not happen.  This
6065 permits various optimizations.  For example, the compiler will assume
6066 that an expression like @code{i + 10 > i} will always be true for
6067 signed @code{i}.  This assumption is only valid if signed overflow is
6068 undefined, as the expression is false if @code{i + 10} overflows when
6069 using twos complement arithmetic.  When this option is in effect any
6070 attempt to determine whether an operation on signed numbers will
6071 overflow must be written carefully to not actually involve overflow.
6072
6073 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
6074 that signed overflow is fully defined: it wraps.  When
6075 @option{-fwrapv} is used, there is no difference between
6076 @option{-fstrict-overflow} and @option{-fno-strict-overflow}.  With
6077 @option{-fwrapv} certain types of overflow are permitted.  For
6078 example, if the compiler gets an overflow when doing arithmetic on
6079 constants, the overflowed value can still be used with
6080 @option{-fwrapv}, but not otherwise.
6081
6082 The @option{-fstrict-overflow} option is enabled at levels
6083 @option{-O2}, @option{-O3}, @option{-Os}.
6084
6085 @item -falign-functions
6086 @itemx -falign-functions=@var{n}
6087 @opindex falign-functions
6088 Align the start of functions to the next power-of-two greater than
6089 @var{n}, skipping up to @var{n} bytes.  For instance,
6090 @option{-falign-functions=32} aligns functions to the next 32-byte
6091 boundary, but @option{-falign-functions=24} would align to the next
6092 32-byte boundary only if this can be done by skipping 23 bytes or less.
6093
6094 @option{-fno-align-functions} and @option{-falign-functions=1} are
6095 equivalent and mean that functions will not be aligned.
6096
6097 Some assemblers only support this flag when @var{n} is a power of two;
6098 in that case, it is rounded up.
6099
6100 If @var{n} is not specified or is zero, use a machine-dependent default.
6101
6102 Enabled at levels @option{-O2}, @option{-O3}.
6103
6104 @item -falign-labels
6105 @itemx -falign-labels=@var{n}
6106 @opindex falign-labels
6107 Align all branch targets to a power-of-two boundary, skipping up to
6108 @var{n} bytes like @option{-falign-functions}.  This option can easily
6109 make code slower, because it must insert dummy operations for when the
6110 branch target is reached in the usual flow of the code.
6111
6112 @option{-fno-align-labels} and @option{-falign-labels=1} are
6113 equivalent and mean that labels will not be aligned.
6114
6115 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6116 are greater than this value, then their values are used instead.
6117
6118 If @var{n} is not specified or is zero, use a machine-dependent default
6119 which is very likely to be @samp{1}, meaning no alignment.
6120
6121 Enabled at levels @option{-O2}, @option{-O3}.
6122
6123 @item -falign-loops
6124 @itemx -falign-loops=@var{n}
6125 @opindex falign-loops
6126 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6127 like @option{-falign-functions}.  The hope is that the loop will be
6128 executed many times, which will make up for any execution of the dummy
6129 operations.
6130
6131 @option{-fno-align-loops} and @option{-falign-loops=1} are
6132 equivalent and mean that loops will not be aligned.
6133
6134 If @var{n} is not specified or is zero, use a machine-dependent default.
6135
6136 Enabled at levels @option{-O2}, @option{-O3}.
6137
6138 @item -falign-jumps
6139 @itemx -falign-jumps=@var{n}
6140 @opindex falign-jumps
6141 Align branch targets to a power-of-two boundary, for branch targets
6142 where the targets can only be reached by jumping, skipping up to @var{n}
6143 bytes like @option{-falign-functions}.  In this case, no dummy operations
6144 need be executed.
6145
6146 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6147 equivalent and mean that loops will not be aligned.
6148
6149 If @var{n} is not specified or is zero, use a machine-dependent default.
6150
6151 Enabled at levels @option{-O2}, @option{-O3}.
6152
6153 @item -funit-at-a-time
6154 @opindex funit-at-a-time
6155 Parse the whole compilation unit before starting to produce code.
6156 This allows some extra optimizations to take place but consumes
6157 more memory (in general).  There are some compatibility issues
6158 with @emph{unit-at-a-time} mode:
6159 @itemize @bullet
6160 @item
6161 enabling @emph{unit-at-a-time} mode may change the order
6162 in which functions, variables, and top-level @code{asm} statements
6163 are emitted, and will likely break code relying on some particular
6164 ordering.  The majority of such top-level @code{asm} statements,
6165 though, can be replaced by @code{section} attributes.  The
6166 @option{fno-toplevel-reorder} option may be used to keep the ordering
6167 used in the input file, at the cost of some optimizations.
6168
6169 @item
6170 @emph{unit-at-a-time} mode removes unreferenced static variables
6171 and functions.  This may result in undefined references
6172 when an @code{asm} statement refers directly to variables or functions
6173 that are otherwise unused.  In that case either the variable/function
6174 shall be listed as an operand of the @code{asm} statement operand or,
6175 in the case of top-level @code{asm} statements the attribute @code{used}
6176 shall be used on the declaration.
6177
6178 @item
6179 Static functions now can use non-standard passing conventions that
6180 may break @code{asm} statements calling functions directly.  Again,
6181 attribute @code{used} will prevent this behavior.
6182 @end itemize
6183
6184 As a temporary workaround, @option{-fno-unit-at-a-time} can be used,
6185 but this scheme may not be supported by future releases of GCC@.
6186
6187 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6188
6189 @item -fno-toplevel-reorder
6190 @opindex fno-toplevel-reorder
6191 Do not reorder top-level functions, variables, and @code{asm}
6192 statements.  Output them in the same order that they appear in the
6193 input file.  When this option is used, unreferenced static variables
6194 will not be removed.  This option is intended to support existing code
6195 which relies on a particular ordering.  For new code, it is better to
6196 use attributes.
6197
6198 @item -fweb
6199 @opindex fweb
6200 Constructs webs as commonly used for register allocation purposes and assign
6201 each web individual pseudo register.  This allows the register allocation pass
6202 to operate on pseudos directly, but also strengthens several other optimization
6203 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6204 however, make debugging impossible, since variables will no longer stay in a
6205 ``home register''.
6206
6207 Enabled by default with @option{-funroll-loops}.
6208
6209 @item -fwhole-program
6210 @opindex fwhole-program
6211 Assume that the current compilation unit represents whole program being
6212 compiled.  All public functions and variables with the exception of @code{main}
6213 and those merged by attribute @code{externally_visible} become static functions
6214 and in a affect gets more aggressively optimized by interprocedural optimizers.
6215 While this option is equivalent to proper use of @code{static} keyword for
6216 programs consisting of single file, in combination with option
6217 @option{--combine} this flag can be used to compile most of smaller scale C
6218 programs since the functions and variables become local for the whole combined
6219 compilation unit, not for the single source file itself.
6220
6221 This option is not supported for Fortran programs.
6222
6223 @item -fcprop-registers
6224 @opindex fcprop-registers
6225 After register allocation and post-register allocation instruction splitting,
6226 we perform a copy-propagation pass to try to reduce scheduling dependencies
6227 and occasionally eliminate the copy.
6228
6229 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6230
6231 @item -fprofile-generate
6232 @opindex fprofile-generate
6233
6234 Enable options usually used for instrumenting application to produce
6235 profile useful for later recompilation with profile feedback based
6236 optimization.  You must use @option{-fprofile-generate} both when
6237 compiling and when linking your program.
6238
6239 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6240
6241 @item -fprofile-use
6242 @opindex fprofile-use
6243 Enable profile feedback directed optimizations, and optimizations
6244 generally profitable only with profile feedback available.
6245
6246 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6247 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6248
6249 By default, GCC emits an error message if the feedback profiles do not
6250 match the source code.  This error can be turned into a warning by using
6251 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6252 code.
6253 @end table
6254
6255 The following options control compiler behavior regarding floating
6256 point arithmetic.  These options trade off between speed and
6257 correctness.  All must be specifically enabled.
6258
6259 @table @gcctabopt
6260 @item -ffloat-store
6261 @opindex ffloat-store
6262 Do not store floating point variables in registers, and inhibit other
6263 options that might change whether a floating point value is taken from a
6264 register or memory.
6265
6266 @cindex floating point precision
6267 This option prevents undesirable excess precision on machines such as
6268 the 68000 where the floating registers (of the 68881) keep more
6269 precision than a @code{double} is supposed to have.  Similarly for the
6270 x86 architecture.  For most programs, the excess precision does only
6271 good, but a few programs rely on the precise definition of IEEE floating
6272 point.  Use @option{-ffloat-store} for such programs, after modifying
6273 them to store all pertinent intermediate computations into variables.
6274
6275 @item -ffast-math
6276 @opindex ffast-math
6277 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
6278 @option{-ffinite-math-only}, @option{-fno-rounding-math},
6279 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
6280
6281 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6282
6283 This option is not turned on by any @option{-O} option since
6284 it can result in incorrect output for programs which depend on
6285 an exact implementation of IEEE or ISO rules/specifications for
6286 math functions. It may, however, yield faster code for programs
6287 that do not require the guarantees of these specifications.
6288
6289 @item -fno-math-errno
6290 @opindex fno-math-errno
6291 Do not set ERRNO after calling math functions that are executed
6292 with a single instruction, e.g., sqrt.  A program that relies on
6293 IEEE exceptions for math error handling may want to use this flag
6294 for speed while maintaining IEEE arithmetic compatibility.
6295
6296 This option is not turned on by any @option{-O} option since
6297 it can result in incorrect output for programs which depend on
6298 an exact implementation of IEEE or ISO rules/specifications for
6299 math functions. It may, however, yield faster code for programs
6300 that do not require the guarantees of these specifications.
6301
6302 The default is @option{-fmath-errno}.
6303
6304 On Darwin systems, the math library never sets @code{errno}.  There is
6305 therefore no reason for the compiler to consider the possibility that
6306 it might, and @option{-fno-math-errno} is the default.
6307
6308 @item -funsafe-math-optimizations
6309 @opindex funsafe-math-optimizations
6310
6311 Allow optimizations for floating-point arithmetic that (a) assume
6312 that arguments and results are valid and (b) may violate IEEE or
6313 ANSI standards.  When used at link-time, it may include libraries
6314 or startup files that change the default FPU control word or other
6315 similar optimizations.
6316
6317 This option is not turned on by any @option{-O} option since
6318 it can result in incorrect output for programs which depend on
6319 an exact implementation of IEEE or ISO rules/specifications for
6320 math functions. It may, however, yield faster code for programs
6321 that do not require the guarantees of these specifications.
6322 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
6323 @option{-fassociative-math} and @option{-freciprocal-math}.
6324
6325 The default is @option{-fno-unsafe-math-optimizations}.
6326
6327 @item -fassociative-math
6328 @opindex fassociative-math
6329
6330 Allow re-association of operands in series of floating-point operations.
6331 This violates the ISO C and C++ language standard by possibly changing
6332 computation result.  NOTE: re-ordering may change the sign of zero as
6333 well as ignore NaNs and inhibit or create underflow or overflow (and
6334 thus cannot be used on a code which relies on rounding behavior like
6335 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6336 and thus may not be used when ordered comparisons are required.
6337 This option requires that both @option{-fno-signed-zeros} and
6338 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
6339 much sense with @option{-frounding-math}.
6340
6341 The default is @option{-fno-associative-math}.
6342
6343 @item -freciprocal-math
6344 @opindex freciprocal-math
6345
6346 Allow the reciprocal of a value to be used instead of dividing by
6347 the value if this enables optimizations.  For example @code{x / y}
6348 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6349 is subject to common subexpression elimination.  Note that this loses
6350 precision and increases the number of flops operating on the value.
6351
6352 The default is @option{-fno-reciprocal-math}.
6353
6354 @item -ffinite-math-only
6355 @opindex ffinite-math-only
6356 Allow optimizations for floating-point arithmetic that assume
6357 that arguments and results are not NaNs or +-Infs.
6358
6359 This option is not turned on by any @option{-O} option since
6360 it can result in incorrect output for programs which depend on
6361 an exact implementation of IEEE or ISO rules/specifications for
6362 math functions. It may, however, yield faster code for programs
6363 that do not require the guarantees of these specifications.
6364
6365 The default is @option{-fno-finite-math-only}.
6366
6367 @item -fno-signed-zeros
6368 @opindex fno-signed-zeros
6369 Allow optimizations for floating point arithmetic that ignore the
6370 signedness of zero.  IEEE arithmetic specifies the behavior of
6371 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6372 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6373 This option implies that the sign of a zero result isn't significant.
6374
6375 The default is @option{-fsigned-zeros}.
6376
6377 @item -fno-trapping-math
6378 @opindex fno-trapping-math
6379 Compile code assuming that floating-point operations cannot generate
6380 user-visible traps.  These traps include division by zero, overflow,
6381 underflow, inexact result and invalid operation.  This option requires
6382 that @option{-fno-signaling-nans} be in effect.  Setting this option may
6383 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
6384
6385 This option should never be turned on by any @option{-O} option since
6386 it can result in incorrect output for programs which depend on
6387 an exact implementation of IEEE or ISO rules/specifications for
6388 math functions.
6389
6390 The default is @option{-ftrapping-math}.
6391
6392 @item -frounding-math
6393 @opindex frounding-math
6394 Disable transformations and optimizations that assume default floating
6395 point rounding behavior.  This is round-to-zero for all floating point
6396 to integer conversions, and round-to-nearest for all other arithmetic
6397 truncations.  This option should be specified for programs that change
6398 the FP rounding mode dynamically, or that may be executed with a
6399 non-default rounding mode.  This option disables constant folding of
6400 floating point expressions at compile-time (which may be affected by
6401 rounding mode) and arithmetic transformations that are unsafe in the
6402 presence of sign-dependent rounding modes.
6403
6404 The default is @option{-fno-rounding-math}.
6405
6406 This option is experimental and does not currently guarantee to
6407 disable all GCC optimizations that are affected by rounding mode.
6408 Future versions of GCC may provide finer control of this setting
6409 using C99's @code{FENV_ACCESS} pragma.  This command line option
6410 will be used to specify the default state for @code{FENV_ACCESS}.
6411
6412 @item -frtl-abstract-sequences
6413 @opindex frtl-abstract-sequences
6414 It is a size optimization method. This option is to find identical
6415 sequences of code, which can be turned into pseudo-procedures  and
6416 then  replace  all  occurrences with  calls to  the  newly created
6417 subroutine. It is kind of an opposite of @option{-finline-functions}.
6418 This optimization runs at RTL level.
6419
6420 @item -fsignaling-nans
6421 @opindex fsignaling-nans
6422 Compile code assuming that IEEE signaling NaNs may generate user-visible
6423 traps during floating-point operations.  Setting this option disables
6424 optimizations that may change the number of exceptions visible with
6425 signaling NaNs.  This option implies @option{-ftrapping-math}.
6426
6427 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6428 be defined.
6429
6430 The default is @option{-fno-signaling-nans}.
6431
6432 This option is experimental and does not currently guarantee to
6433 disable all GCC optimizations that affect signaling NaN behavior.
6434
6435 @item -fsingle-precision-constant
6436 @opindex fsingle-precision-constant
6437 Treat floating point constant as single precision constant instead of
6438 implicitly converting it to double precision constant.
6439
6440 @item -fcx-limited-range
6441 @opindex fcx-limited-range
6442 When enabled, this option states that a range reduction step is not
6443 needed when performing complex division.  The default is
6444 @option{-fno-cx-limited-range}, but is enabled by @option{-ffast-math}.
6445
6446 This option controls the default setting of the ISO C99
6447 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6448 all languages.
6449
6450 @end table
6451
6452 The following options control optimizations that may improve
6453 performance, but are not enabled by any @option{-O} options.  This
6454 section includes experimental options that may produce broken code.
6455
6456 @table @gcctabopt
6457 @item -fbranch-probabilities
6458 @opindex fbranch-probabilities
6459 After running a program compiled with @option{-fprofile-arcs}
6460 (@pxref{Debugging Options,, Options for Debugging Your Program or
6461 @command{gcc}}), you can compile it a second time using
6462 @option{-fbranch-probabilities}, to improve optimizations based on
6463 the number of times each branch was taken.  When the program
6464 compiled with @option{-fprofile-arcs} exits it saves arc execution
6465 counts to a file called @file{@var{sourcename}.gcda} for each source
6466 file.  The information in this data file is very dependent on the
6467 structure of the generated code, so you must use the same source code
6468 and the same optimization options for both compilations.
6469
6470 With @option{-fbranch-probabilities}, GCC puts a
6471 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6472 These can be used to improve optimization.  Currently, they are only
6473 used in one place: in @file{reorg.c}, instead of guessing which path a
6474 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6475 exactly determine which path is taken more often.
6476
6477 @item -fprofile-values
6478 @opindex fprofile-values
6479 If combined with @option{-fprofile-arcs}, it adds code so that some
6480 data about values of expressions in the program is gathered.
6481
6482 With @option{-fbranch-probabilities}, it reads back the data gathered
6483 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6484 notes to instructions for their later usage in optimizations.
6485
6486 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6487
6488 @item -fvpt
6489 @opindex fvpt
6490 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6491 a code to gather information about values of expressions.
6492
6493 With @option{-fbranch-probabilities}, it reads back the data gathered
6494 and actually performs the optimizations based on them.
6495 Currently the optimizations include specialization of division operation
6496 using the knowledge about the value of the denominator.
6497
6498 @item -frename-registers
6499 @opindex frename-registers
6500 Attempt to avoid false dependencies in scheduled code by making use
6501 of registers left over after register allocation.  This optimization
6502 will most benefit processors with lots of registers.  Depending on the
6503 debug information format adopted by the target, however, it can
6504 make debugging impossible, since variables will no longer stay in
6505 a ``home register''.
6506
6507 Enabled by default with @option{-funroll-loops}.
6508
6509 @item -ftracer
6510 @opindex ftracer
6511 Perform tail duplication to enlarge superblock size.  This transformation
6512 simplifies the control flow of the function allowing other optimizations to do
6513 better job.
6514
6515 Enabled with @option{-fprofile-use}.
6516
6517 @item -funroll-loops
6518 @opindex funroll-loops
6519 Unroll loops whose number of iterations can be determined at compile time or
6520 upon entry to the loop.  @option{-funroll-loops} implies
6521 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6522 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6523 small constant number of iterations).  This option makes code larger, and may
6524 or may not make it run faster.
6525
6526 Enabled with @option{-fprofile-use}.
6527
6528 @item -funroll-all-loops
6529 @opindex funroll-all-loops
6530 Unroll all loops, even if their number of iterations is uncertain when
6531 the loop is entered.  This usually makes programs run more slowly.
6532 @option{-funroll-all-loops} implies the same options as
6533 @option{-funroll-loops}.
6534
6535 @item -fpeel-loops
6536 @opindex fpeel-loops
6537 Peels the loops for that there is enough information that they do not
6538 roll much (from profile feedback).  It also turns on complete loop peeling
6539 (i.e.@: complete removal of loops with small constant number of iterations).
6540
6541 Enabled with @option{-fprofile-use}.
6542
6543 @item -fmove-loop-invariants
6544 @opindex fmove-loop-invariants
6545 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6546 at level @option{-O1}
6547
6548 @item -funswitch-loops
6549 @opindex funswitch-loops
6550 Move branches with loop invariant conditions out of the loop, with duplicates
6551 of the loop on both branches (modified according to result of the condition).
6552
6553 @item -ffunction-sections
6554 @itemx -fdata-sections
6555 @opindex ffunction-sections
6556 @opindex fdata-sections
6557 Place each function or data item into its own section in the output
6558 file if the target supports arbitrary sections.  The name of the
6559 function or the name of the data item determines the section's name
6560 in the output file.
6561
6562 Use these options on systems where the linker can perform optimizations
6563 to improve locality of reference in the instruction space.  Most systems
6564 using the ELF object format and SPARC processors running Solaris 2 have
6565 linkers with such optimizations.  AIX may have these optimizations in
6566 the future.
6567
6568 Only use these options when there are significant benefits from doing
6569 so.  When you specify these options, the assembler and linker will
6570 create larger object and executable files and will also be slower.
6571 You will not be able to use @code{gprof} on all systems if you
6572 specify this option and you may have problems with debugging if
6573 you specify both this option and @option{-g}.
6574
6575 @item -fbranch-target-load-optimize
6576 @opindex fbranch-target-load-optimize
6577 Perform branch target register load optimization before prologue / epilogue
6578 threading.
6579 The use of target registers can typically be exposed only during reload,
6580 thus hoisting loads out of loops and doing inter-block scheduling needs
6581 a separate optimization pass.
6582
6583 @item -fbranch-target-load-optimize2
6584 @opindex fbranch-target-load-optimize2
6585 Perform branch target register load optimization after prologue / epilogue
6586 threading.
6587
6588 @item -fbtr-bb-exclusive
6589 @opindex fbtr-bb-exclusive
6590 When performing branch target register load optimization, don't reuse
6591 branch target registers in within any basic block.
6592
6593 @item -fstack-protector
6594 @opindex fstack-protector
6595 Emit extra code to check for buffer overflows, such as stack smashing
6596 attacks.  This is done by adding a guard variable to functions with
6597 vulnerable objects.  This includes functions that call alloca, and
6598 functions with buffers larger than 8 bytes.  The guards are initialized
6599 when a function is entered and then checked when the function exits.
6600 If a guard check fails, an error message is printed and the program exits.
6601
6602 @item -fstack-protector-all
6603 @opindex fstack-protector-all
6604 Like @option{-fstack-protector} except that all functions are protected.
6605
6606 @item -fsection-anchors
6607 @opindex fsection-anchors
6608 Try to reduce the number of symbolic address calculations by using
6609 shared ``anchor'' symbols to address nearby objects.  This transformation
6610 can help to reduce the number of GOT entries and GOT accesses on some
6611 targets.
6612
6613 For example, the implementation of the following function @code{foo}:
6614
6615 @smallexample
6616 static int a, b, c;
6617 int foo (void) @{ return a + b + c; @}
6618 @end smallexample
6619
6620 would usually calculate the addresses of all three variables, but if you
6621 compile it with @option{-fsection-anchors}, it will access the variables
6622 from a common anchor point instead.  The effect is similar to the
6623 following pseudocode (which isn't valid C):
6624
6625 @smallexample
6626 int foo (void)
6627 @{
6628   register int *xr = &x;
6629   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6630 @}
6631 @end smallexample
6632
6633 Not all targets support this option.
6634
6635 @item --param @var{name}=@var{value}
6636 @opindex param
6637 In some places, GCC uses various constants to control the amount of
6638 optimization that is done.  For example, GCC will not inline functions
6639 that contain more that a certain number of instructions.  You can
6640 control some of these constants on the command-line using the
6641 @option{--param} option.
6642
6643 The names of specific parameters, and the meaning of the values, are
6644 tied to the internals of the compiler, and are subject to change
6645 without notice in future releases.
6646
6647 In each case, the @var{value} is an integer.  The allowable choices for
6648 @var{name} are given in the following table:
6649
6650 @table @gcctabopt
6651 @item salias-max-implicit-fields
6652 The maximum number of fields in a variable without direct
6653 structure accesses for which structure aliasing will consider trying
6654 to track each field.  The default is 5
6655
6656 @item salias-max-array-elements
6657 The maximum number of elements an array can have and its elements
6658 still be tracked individually by structure aliasing. The default is 4
6659
6660 @item sra-max-structure-size
6661 The maximum structure size, in bytes, at which the scalar replacement
6662 of aggregates (SRA) optimization will perform block copies.  The
6663 default value, 0, implies that GCC will select the most appropriate
6664 size itself.
6665
6666 @item sra-field-structure-ratio
6667 The threshold ratio (as a percentage) between instantiated fields and
6668 the complete structure size.  We say that if the ratio of the number
6669 of bytes in instantiated fields to the number of bytes in the complete
6670 structure exceeds this parameter, then block copies are not used.  The
6671 default is 75.
6672
6673 @item struct-reorg-cold-struct-ratio
6674 The threshold ratio (as a percentage) between a structure frequency
6675 and the frequency of the hottest structure in the program.  This parameter
6676 is used by struct-reorg optimization enabled by @option{-fipa-struct-reorg}.
6677 We say that if the ratio of a structure frequency, calculated by profiling, 
6678 to the hottest structure frequency in the program is less than this 
6679 parameter, then structure reorganization is not applied to this structure.
6680 The default is 10.
6681
6682 @item max-crossjump-edges
6683 The maximum number of incoming edges to consider for crossjumping.
6684 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6685 the number of edges incoming to each block.  Increasing values mean
6686 more aggressive optimization, making the compile time increase with
6687 probably small improvement in executable size.
6688
6689 @item min-crossjump-insns
6690 The minimum number of instructions which must be matched at the end
6691 of two blocks before crossjumping will be performed on them.  This
6692 value is ignored in the case where all instructions in the block being
6693 crossjumped from are matched.  The default value is 5.
6694
6695 @item max-grow-copy-bb-insns
6696 The maximum code size expansion factor when copying basic blocks
6697 instead of jumping.  The expansion is relative to a jump instruction.
6698 The default value is 8.
6699
6700 @item max-goto-duplication-insns
6701 The maximum number of instructions to duplicate to a block that jumps
6702 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6703 passes, GCC factors computed gotos early in the compilation process,
6704 and unfactors them as late as possible.  Only computed jumps at the
6705 end of a basic blocks with no more than max-goto-duplication-insns are
6706 unfactored.  The default value is 8.
6707
6708 @item max-delay-slot-insn-search
6709 The maximum number of instructions to consider when looking for an
6710 instruction to fill a delay slot.  If more than this arbitrary number of
6711 instructions is searched, the time savings from filling the delay slot
6712 will be minimal so stop searching.  Increasing values mean more
6713 aggressive optimization, making the compile time increase with probably
6714 small improvement in executable run time.
6715
6716 @item max-delay-slot-live-search
6717 When trying to fill delay slots, the maximum number of instructions to
6718 consider when searching for a block with valid live register
6719 information.  Increasing this arbitrarily chosen value means more
6720 aggressive optimization, increasing the compile time.  This parameter
6721 should be removed when the delay slot code is rewritten to maintain the
6722 control-flow graph.
6723
6724 @item max-gcse-memory
6725 The approximate maximum amount of memory that will be allocated in
6726 order to perform the global common subexpression elimination
6727 optimization.  If more memory than specified is required, the
6728 optimization will not be done.
6729
6730 @item max-gcse-passes
6731 The maximum number of passes of GCSE to run.  The default is 1.
6732
6733 @item max-pending-list-length
6734 The maximum number of pending dependencies scheduling will allow
6735 before flushing the current state and starting over.  Large functions
6736 with few branches or calls can create excessively large lists which
6737 needlessly consume memory and resources.
6738
6739 @item max-inline-insns-single
6740 Several parameters control the tree inliner used in gcc.
6741 This number sets the maximum number of instructions (counted in GCC's
6742 internal representation) in a single function that the tree inliner
6743 will consider for inlining.  This only affects functions declared
6744 inline and methods implemented in a class declaration (C++).
6745 The default value is 450.
6746
6747 @item max-inline-insns-auto
6748 When you use @option{-finline-functions} (included in @option{-O3}),
6749 a lot of functions that would otherwise not be considered for inlining
6750 by the compiler will be investigated.  To those functions, a different
6751 (more restrictive) limit compared to functions declared inline can
6752 be applied.
6753 The default value is 90.
6754
6755 @item large-function-insns
6756 The limit specifying really large functions.  For functions larger than this
6757 limit after inlining inlining is constrained by
6758 @option{--param large-function-growth}.  This parameter is useful primarily
6759 to avoid extreme compilation time caused by non-linear algorithms used by the
6760 backend.
6761 This parameter is ignored when @option{-funit-at-a-time} is not used.
6762 The default value is 2700.
6763
6764 @item large-function-growth
6765 Specifies maximal growth of large function caused by inlining in percents.
6766 This parameter is ignored when @option{-funit-at-a-time} is not used.
6767 The default value is 100 which limits large function growth to 2.0 times
6768 the original size.
6769
6770 @item large-unit-insns
6771 The limit specifying large translation unit.  Growth caused by inlining of
6772 units larger than this limit is limited by @option{--param inline-unit-growth}.
6773 For small units this might be too tight (consider unit consisting of function A
6774 that is inline and B that just calls A three time.  If B is small relative to
6775 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6776 large units consisting of small inlininable functions however the overall unit
6777 growth limit is needed to avoid exponential explosion of code size.  Thus for
6778 smaller units, the size is increased to @option{--param large-unit-insns}
6779 before applying @option{--param inline-unit-growth}.  The default is 10000
6780
6781 @item inline-unit-growth
6782 Specifies maximal overall growth of the compilation unit caused by inlining.
6783 This parameter is ignored when @option{-funit-at-a-time} is not used.
6784 The default value is 30 which limits unit growth to 1.3 times the original
6785 size.
6786
6787 @item large-stack-frame
6788 The limit specifying large stack frames.  While inlining the algorithm is trying
6789 to not grow past this limit too much.  Default value is 256 bytes.
6790
6791 @item large-stack-frame-growth
6792 Specifies maximal growth of large stack frames caused by inlining in percents.
6793 The default value is 1000 which limits large stack frame growth to 11 times
6794 the original size.
6795
6796 @item max-inline-insns-recursive
6797 @itemx max-inline-insns-recursive-auto
6798 Specifies maximum number of instructions out-of-line copy of self recursive inline
6799 function can grow into by performing recursive inlining.
6800
6801 For functions declared inline @option{--param max-inline-insns-recursive} is
6802 taken into account.  For function not declared inline, recursive inlining
6803 happens only when @option{-finline-functions} (included in @option{-O3}) is
6804 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6805 default value is 450.
6806
6807 @item max-inline-recursive-depth
6808 @itemx max-inline-recursive-depth-auto
6809 Specifies maximum recursion depth used by the recursive inlining.
6810
6811 For functions declared inline @option{--param max-inline-recursive-depth} is
6812 taken into account.  For function not declared inline, recursive inlining
6813 happens only when @option{-finline-functions} (included in @option{-O3}) is
6814 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6815 default value is 8.
6816
6817 @item min-inline-recursive-probability
6818 Recursive inlining is profitable only for function having deep recursion
6819 in average and can hurt for function having little recursion depth by
6820 increasing the prologue size or complexity of function body to other
6821 optimizers.
6822
6823 When profile feedback is available (see @option{-fprofile-generate}) the actual
6824 recursion depth can be guessed from probability that function will recurse via
6825 given call expression.  This parameter limits inlining only to call expression
6826 whose probability exceeds given threshold (in percents).  The default value is
6827 10.
6828
6829 @item inline-call-cost
6830 Specify cost of call instruction relative to simple arithmetics operations
6831 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
6832 functions and at the same time increases size of leaf function that is believed to
6833 reduce function size by being inlined.  In effect it increases amount of
6834 inlining for code having large abstraction penalty (many functions that just
6835 pass the arguments to other functions) and decrease inlining for code with low
6836 abstraction penalty.  The default value is 12.
6837
6838 @item min-vect-loop-bound
6839 The minimum number of iterations under which a loop will not get vectorized
6840 when @option{-ftree-vectorize} is used.  The number of iterations after
6841 vectorization needs to be greater than the value specified by this option
6842 to allow vectorization.  The default value is 0.
6843
6844 @item max-unrolled-insns
6845 The maximum number of instructions that a loop should have if that loop
6846 is unrolled, and if the loop is unrolled, it determines how many times
6847 the loop code is unrolled.
6848
6849 @item max-average-unrolled-insns
6850 The maximum number of instructions biased by probabilities of their execution
6851 that a loop should have if that loop is unrolled, and if the loop is unrolled,
6852 it determines how many times the loop code is unrolled.
6853
6854 @item max-unroll-times
6855 The maximum number of unrollings of a single loop.
6856
6857 @item max-peeled-insns
6858 The maximum number of instructions that a loop should have if that loop
6859 is peeled, and if the loop is peeled, it determines how many times
6860 the loop code is peeled.
6861
6862 @item max-peel-times
6863 The maximum number of peelings of a single loop.
6864
6865 @item max-completely-peeled-insns
6866 The maximum number of insns of a completely peeled loop.
6867
6868 @item max-completely-peel-times
6869 The maximum number of iterations of a loop to be suitable for complete peeling.
6870
6871 @item max-unswitch-insns
6872 The maximum number of insns of an unswitched loop.
6873
6874 @item max-unswitch-level
6875 The maximum number of branches unswitched in a single loop.
6876
6877 @item lim-expensive
6878 The minimum cost of an expensive expression in the loop invariant motion.
6879
6880 @item iv-consider-all-candidates-bound
6881 Bound on number of candidates for induction variables below that
6882 all candidates are considered for each use in induction variable
6883 optimizations.  Only the most relevant candidates are considered
6884 if there are more candidates, to avoid quadratic time complexity.
6885
6886 @item iv-max-considered-uses
6887 The induction variable optimizations give up on loops that contain more
6888 induction variable uses.
6889
6890 @item iv-always-prune-cand-set-bound
6891 If number of candidates in the set is smaller than this value,
6892 we always try to remove unnecessary ivs from the set during its
6893 optimization when a new iv is added to the set.
6894
6895 @item scev-max-expr-size
6896 Bound on size of expressions used in the scalar evolutions analyzer.
6897 Large expressions slow the analyzer.
6898
6899 @item omega-max-vars
6900 The maximum number of variables in an Omega constraint system.
6901 The default value is 128.
6902
6903 @item omega-max-geqs
6904 The maximum number of inequalities in an Omega constraint system.
6905 The default value is 256.
6906
6907 @item omega-max-eqs
6908 The maximum number of equalities in an Omega constraint system.
6909 The default value is 128.
6910
6911 @item omega-max-wild-cards
6912 The maximum number of wildcard variables that the Omega solver will
6913 be able to insert.  The default value is 18.
6914
6915 @item omega-hash-table-size
6916 The size of the hash table in the Omega solver.  The default value is
6917 550.
6918
6919 @item omega-max-keys
6920 The maximal number of keys used by the Omega solver.  The default
6921 value is 500.
6922
6923 @item omega-eliminate-redundant-constraints
6924 When set to 1, use expensive methods to eliminate all redundant
6925 constraints.  The default value is 0.
6926
6927 @item vect-max-version-for-alignment-checks
6928 The maximum number of runtime checks that can be performed when
6929 doing loop versioning for alignment in the vectorizer.  See option
6930 ftree-vect-loop-version for more information.
6931
6932 @item vect-max-version-for-alias-checks
6933 The maximum number of runtime checks that can be performed when
6934 doing loop versioning for alias in the vectorizer.  See option
6935 ftree-vect-loop-version for more information.
6936
6937 @item max-iterations-to-track
6938
6939 The maximum number of iterations of a loop the brute force algorithm
6940 for analysis of # of iterations of the loop tries to evaluate.
6941
6942 @item hot-bb-count-fraction
6943 Select fraction of the maximal count of repetitions of basic block in program
6944 given basic block needs to have to be considered hot.
6945
6946 @item hot-bb-frequency-fraction
6947 Select fraction of the maximal frequency of executions of basic block in
6948 function given basic block needs to have to be considered hot
6949
6950 @item max-predicted-iterations
6951 The maximum number of loop iterations we predict statically.  This is useful
6952 in cases where function contain single loop with known bound and other loop
6953 with unknown.  We predict the known number of iterations correctly, while
6954 the unknown number of iterations average to roughly 10.  This means that the
6955 loop without bounds would appear artificially cold relative to the other one.
6956
6957 @item align-threshold
6958
6959 Select fraction of the maximal frequency of executions of basic block in
6960 function given basic block will get aligned.
6961
6962 @item align-loop-iterations
6963
6964 A loop expected to iterate at lest the selected number of iterations will get
6965 aligned.
6966
6967 @item tracer-dynamic-coverage
6968 @itemx tracer-dynamic-coverage-feedback
6969
6970 This value is used to limit superblock formation once the given percentage of
6971 executed instructions is covered.  This limits unnecessary code size
6972 expansion.
6973
6974 The @option{tracer-dynamic-coverage-feedback} is used only when profile
6975 feedback is available.  The real profiles (as opposed to statically estimated
6976 ones) are much less balanced allowing the threshold to be larger value.
6977
6978 @item tracer-max-code-growth
6979 Stop tail duplication once code growth has reached given percentage.  This is
6980 rather hokey argument, as most of the duplicates will be eliminated later in
6981 cross jumping, so it may be set to much higher values than is the desired code
6982 growth.
6983
6984 @item tracer-min-branch-ratio
6985
6986 Stop reverse growth when the reverse probability of best edge is less than this
6987 threshold (in percent).
6988
6989 @item tracer-min-branch-ratio
6990 @itemx tracer-min-branch-ratio-feedback
6991
6992 Stop forward growth if the best edge do have probability lower than this
6993 threshold.
6994
6995 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
6996 compilation for profile feedback and one for compilation without.  The value
6997 for compilation with profile feedback needs to be more conservative (higher) in
6998 order to make tracer effective.
6999
7000 @item max-cse-path-length
7001
7002 Maximum number of basic blocks on path that cse considers.  The default is 10.
7003
7004 @item max-cse-insns
7005 The maximum instructions CSE process before flushing. The default is 1000.
7006
7007 @item max-aliased-vops
7008
7009 Maximum number of virtual operands per function allowed to represent
7010 aliases before triggering the alias partitioning heuristic.  Alias
7011 partitioning reduces compile times and memory consumption needed for
7012 aliasing at the expense of precision loss in alias information.  The
7013 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
7014 for -O3.
7015
7016 Notice that if a function contains more memory statements than the
7017 value of this parameter, it is not really possible to achieve this
7018 reduction.  In this case, the compiler will use the number of memory
7019 statements as the value for @option{max-aliased-vops}.
7020
7021 @item avg-aliased-vops
7022
7023 Average number of virtual operands per statement allowed to represent
7024 aliases before triggering the alias partitioning heuristic.  This
7025 works in conjunction with @option{max-aliased-vops}.  If a function
7026 contains more than @option{max-aliased-vops} virtual operators, then
7027 memory symbols will be grouped into memory partitions until either the
7028 total number of virtual operators is below @option{max-aliased-vops}
7029 or the average number of virtual operators per memory statement is
7030 below @option{avg-aliased-vops}.  The default value for this parameter
7031 is 1 for -O1 and -O2, and 3 for -O3.
7032
7033 @item ggc-min-expand
7034
7035 GCC uses a garbage collector to manage its own memory allocation.  This
7036 parameter specifies the minimum percentage by which the garbage
7037 collector's heap should be allowed to expand between collections.
7038 Tuning this may improve compilation speed; it has no effect on code
7039 generation.
7040
7041 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
7042 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
7043 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
7044 GCC is not able to calculate RAM on a particular platform, the lower
7045 bound of 30% is used.  Setting this parameter and
7046 @option{ggc-min-heapsize} to zero causes a full collection to occur at
7047 every opportunity.  This is extremely slow, but can be useful for
7048 debugging.
7049
7050 @item ggc-min-heapsize
7051
7052 Minimum size of the garbage collector's heap before it begins bothering
7053 to collect garbage.  The first collection occurs after the heap expands
7054 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
7055 tuning this may improve compilation speed, and has no effect on code
7056 generation.
7057
7058 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
7059 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
7060 with a lower bound of 4096 (four megabytes) and an upper bound of
7061 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
7062 particular platform, the lower bound is used.  Setting this parameter
7063 very large effectively disables garbage collection.  Setting this
7064 parameter and @option{ggc-min-expand} to zero causes a full collection
7065 to occur at every opportunity.
7066
7067 @item max-reload-search-insns
7068 The maximum number of instruction reload should look backward for equivalent
7069 register.  Increasing values mean more aggressive optimization, making the
7070 compile time increase with probably slightly better performance.  The default
7071 value is 100.
7072
7073 @item max-cselib-memory-locations
7074 The maximum number of memory locations cselib should take into account.
7075 Increasing values mean more aggressive optimization, making the compile time
7076 increase with probably slightly better performance.  The default value is 500.
7077
7078 @item max-flow-memory-locations
7079 Similar as @option{max-cselib-memory-locations} but for dataflow liveness.
7080 The default value is 100.
7081
7082 @item reorder-blocks-duplicate
7083 @itemx reorder-blocks-duplicate-feedback
7084
7085 Used by basic block reordering pass to decide whether to use unconditional
7086 branch or duplicate the code on its destination.  Code is duplicated when its
7087 estimated size is smaller than this value multiplied by the estimated size of
7088 unconditional jump in the hot spots of the program.
7089
7090 The @option{reorder-block-duplicate-feedback} is used only when profile
7091 feedback is available and may be set to higher values than
7092 @option{reorder-block-duplicate} since information about the hot spots is more
7093 accurate.
7094
7095 @item max-sched-ready-insns
7096 The maximum number of instructions ready to be issued the scheduler should
7097 consider at any given time during the first scheduling pass.  Increasing
7098 values mean more thorough searches, making the compilation time increase
7099 with probably little benefit.  The default value is 100.
7100
7101 @item max-sched-region-blocks
7102 The maximum number of blocks in a region to be considered for
7103 interblock scheduling.  The default value is 10.
7104
7105 @item max-sched-region-insns
7106 The maximum number of insns in a region to be considered for
7107 interblock scheduling.  The default value is 100.
7108
7109 @item min-spec-prob
7110 The minimum probability (in percents) of reaching a source block
7111 for interblock speculative scheduling.  The default value is 40.
7112
7113 @item max-sched-extend-regions-iters
7114 The maximum number of iterations through CFG to extend regions.
7115 0 - disable region extension,
7116 N - do at most N iterations.
7117 The default value is 0.
7118
7119 @item max-sched-insn-conflict-delay
7120 The maximum conflict delay for an insn to be considered for speculative motion.
7121 The default value is 3.
7122
7123 @item sched-spec-prob-cutoff
7124 The minimal probability of speculation success (in percents), so that
7125 speculative insn will be scheduled.
7126 The default value is 40.
7127
7128 @item max-last-value-rtl
7129
7130 The maximum size measured as number of RTLs that can be recorded in an expression
7131 in combiner for a pseudo register as last known value of that register.  The default
7132 is 10000.
7133
7134 @item integer-share-limit
7135 Small integer constants can use a shared data structure, reducing the
7136 compiler's memory usage and increasing its speed.  This sets the maximum
7137 value of a shared integer constant's.  The default value is 256.
7138
7139 @item min-virtual-mappings
7140 Specifies the minimum number of virtual mappings in the incremental
7141 SSA updater that should be registered to trigger the virtual mappings
7142 heuristic defined by virtual-mappings-ratio.  The default value is
7143 100.
7144
7145 @item virtual-mappings-ratio
7146 If the number of virtual mappings is virtual-mappings-ratio bigger
7147 than the number of virtual symbols to be updated, then the incremental
7148 SSA updater switches to a full update for those symbols.  The default
7149 ratio is 3.
7150
7151 @item ssp-buffer-size
7152 The minimum size of buffers (i.e. arrays) that will receive stack smashing
7153 protection when @option{-fstack-protection} is used.
7154
7155 @item max-jump-thread-duplication-stmts
7156 Maximum number of statements allowed in a block that needs to be
7157 duplicated when threading jumps.
7158
7159 @item max-fields-for-field-sensitive
7160 Maximum number of fields in a structure we will treat in
7161 a field sensitive manner during pointer analysis.
7162
7163 @item prefetch-latency
7164 Estimate on average number of instructions that are executed before
7165 prefetch finishes.  The distance we prefetch ahead is proportional
7166 to this constant.  Increasing this number may also lead to less
7167 streams being prefetched (see @option{simultaneous-prefetches}).
7168
7169 @item simultaneous-prefetches
7170 Maximum number of prefetches that can run at the same time.
7171
7172 @item l1-cache-line-size
7173 The size of cache line in L1 cache, in bytes.
7174
7175 @item l1-cache-size
7176 The size of L1 cache, in kilobytes.
7177
7178 @item l2-cache-size
7179 The size of L2 cache, in kilobytes.
7180
7181 @item use-canonical-types
7182 Whether the compiler should use the ``canonical'' type system.  By
7183 default, this should always be 1, which uses a more efficient internal
7184 mechanism for comparing types in C++ and Objective-C++.  However, if
7185 bugs in the canonical type system are causing compilation failures,
7186 set this value to 0 to disable canonical types.
7187
7188 @item max-partial-antic-length
7189 Maximum length of the partial antic set computed during the tree
7190 partial redundancy elimination optimization (@option{-ftree-pre}) when
7191 optimizing at @option{-O3} and above.  For some sorts of source code
7192 the enhanced partial redundancy elimination optimization can run away,
7193 consuming all of the memory available on the host machine.  This
7194 parameter sets a limit on the length of the sets that are computed,
7195 which prevents the runaway behaviour.  Setting a value of 0 for
7196 this paramter will allow an unlimited set length.
7197
7198 @item sccvn-max-scc-size
7199 Maximum size of a strongly connected component (SCC) during SCCVN
7200 processing.  If this limit is hit, SCCVN processing for the whole
7201 function will not be done and optimizations depending on it will
7202 be disabled.  The default maximum SCC size is 10000.
7203
7204 @end table
7205 @end table
7206
7207 @node Preprocessor Options
7208 @section Options Controlling the Preprocessor
7209 @cindex preprocessor options
7210 @cindex options, preprocessor
7211
7212 These options control the C preprocessor, which is run on each C source
7213 file before actual compilation.
7214
7215 If you use the @option{-E} option, nothing is done except preprocessing.
7216 Some of these options make sense only together with @option{-E} because
7217 they cause the preprocessor output to be unsuitable for actual
7218 compilation.
7219
7220 @table @gcctabopt
7221 @opindex Wp
7222 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7223 and pass @var{option} directly through to the preprocessor.  If
7224 @var{option} contains commas, it is split into multiple options at the
7225 commas.  However, many options are modified, translated or interpreted
7226 by the compiler driver before being passed to the preprocessor, and
7227 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7228 interface is undocumented and subject to change, so whenever possible
7229 you should avoid using @option{-Wp} and let the driver handle the
7230 options instead.
7231
7232 @item -Xpreprocessor @var{option}
7233 @opindex preprocessor
7234 Pass @var{option} as an option to the preprocessor.  You can use this to
7235 supply system-specific preprocessor options which GCC does not know how to
7236 recognize.
7237
7238 If you want to pass an option that takes an argument, you must use
7239 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7240 @end table
7241
7242 @include cppopts.texi
7243
7244 @node Assembler Options
7245 @section Passing Options to the Assembler
7246
7247 @c prevent bad page break with this line
7248 You can pass options to the assembler.
7249
7250 @table @gcctabopt
7251 @item -Wa,@var{option}
7252 @opindex Wa
7253 Pass @var{option} as an option to the assembler.  If @var{option}
7254 contains commas, it is split into multiple options at the commas.
7255
7256 @item -Xassembler @var{option}
7257 @opindex Xassembler
7258 Pass @var{option} as an option to the assembler.  You can use this to
7259 supply system-specific assembler options which GCC does not know how to
7260 recognize.
7261
7262 If you want to pass an option that takes an argument, you must use
7263 @option{-Xassembler} twice, once for the option and once for the argument.
7264
7265 @end table
7266
7267 @node Link Options
7268 @section Options for Linking
7269 @cindex link options
7270 @cindex options, linking
7271
7272 These options come into play when the compiler links object files into
7273 an executable output file.  They are meaningless if the compiler is
7274 not doing a link step.
7275
7276 @table @gcctabopt
7277 @cindex file names
7278 @item @var{object-file-name}
7279 A file name that does not end in a special recognized suffix is
7280 considered to name an object file or library.  (Object files are
7281 distinguished from libraries by the linker according to the file
7282 contents.)  If linking is done, these object files are used as input
7283 to the linker.
7284
7285 @item -c
7286 @itemx -S
7287 @itemx -E
7288 @opindex c
7289 @opindex S
7290 @opindex E
7291 If any of these options is used, then the linker is not run, and
7292 object file names should not be used as arguments.  @xref{Overall
7293 Options}.
7294
7295 @cindex Libraries
7296 @item -l@var{library}
7297 @itemx -l @var{library}
7298 @opindex l
7299 Search the library named @var{library} when linking.  (The second
7300 alternative with the library as a separate argument is only for
7301 POSIX compliance and is not recommended.)
7302
7303 It makes a difference where in the command you write this option; the
7304 linker searches and processes libraries and object files in the order they
7305 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7306 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7307 to functions in @samp{z}, those functions may not be loaded.
7308
7309 The linker searches a standard list of directories for the library,
7310 which is actually a file named @file{lib@var{library}.a}.  The linker
7311 then uses this file as if it had been specified precisely by name.
7312
7313 The directories searched include several standard system directories
7314 plus any that you specify with @option{-L}.
7315
7316 Normally the files found this way are library files---archive files
7317 whose members are object files.  The linker handles an archive file by
7318 scanning through it for members which define symbols that have so far
7319 been referenced but not defined.  But if the file that is found is an
7320 ordinary object file, it is linked in the usual fashion.  The only
7321 difference between using an @option{-l} option and specifying a file name
7322 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7323 and searches several directories.
7324
7325 @item -lobjc
7326 @opindex lobjc
7327 You need this special case of the @option{-l} option in order to
7328 link an Objective-C or Objective-C++ program.
7329
7330 @item -nostartfiles
7331 @opindex nostartfiles
7332 Do not use the standard system startup files when linking.
7333 The standard system libraries are used normally, unless @option{-nostdlib}
7334 or @option{-nodefaultlibs} is used.
7335
7336 @item -nodefaultlibs
7337 @opindex nodefaultlibs
7338 Do not use the standard system libraries when linking.
7339 Only the libraries you specify will be passed to the linker.
7340 The standard startup files are used normally, unless @option{-nostartfiles}
7341 is used.  The compiler may generate calls to @code{memcmp},
7342 @code{memset}, @code{memcpy} and @code{memmove}.
7343 These entries are usually resolved by entries in
7344 libc.  These entry points should be supplied through some other
7345 mechanism when this option is specified.
7346
7347 @item -nostdlib
7348 @opindex nostdlib
7349 Do not use the standard system startup files or libraries when linking.
7350 No startup files and only the libraries you specify will be passed to
7351 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7352 @code{memcpy} and @code{memmove}.
7353 These entries are usually resolved by entries in
7354 libc.  These entry points should be supplied through some other
7355 mechanism when this option is specified.
7356
7357 @cindex @option{-lgcc}, use with @option{-nostdlib}
7358 @cindex @option{-nostdlib} and unresolved references
7359 @cindex unresolved references and @option{-nostdlib}
7360 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7361 @cindex @option{-nodefaultlibs} and unresolved references
7362 @cindex unresolved references and @option{-nodefaultlibs}
7363 One of the standard libraries bypassed by @option{-nostdlib} and
7364 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7365 that GCC uses to overcome shortcomings of particular machines, or special
7366 needs for some languages.
7367 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7368 Collection (GCC) Internals},
7369 for more discussion of @file{libgcc.a}.)
7370 In most cases, you need @file{libgcc.a} even when you want to avoid
7371 other standard libraries.  In other words, when you specify @option{-nostdlib}
7372 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7373 This ensures that you have no unresolved references to internal GCC
7374 library subroutines.  (For example, @samp{__main}, used to ensure C++
7375 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7376 GNU Compiler Collection (GCC) Internals}.)
7377
7378 @item -pie
7379 @opindex pie
7380 Produce a position independent executable on targets which support it.
7381 For predictable results, you must also specify the same set of options
7382 that were used to generate code (@option{-fpie}, @option{-fPIE},
7383 or model suboptions) when you specify this option.
7384
7385 @item -rdynamic
7386 @opindex rdynamic
7387 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7388 that support it. This instructs the linker to add all symbols, not
7389 only used ones, to the dynamic symbol table. This option is needed
7390 for some uses of @code{dlopen} or to allow obtaining backtraces
7391 from within a program.
7392
7393 @item -s
7394 @opindex s
7395 Remove all symbol table and relocation information from the executable.
7396
7397 @item -static
7398 @opindex static
7399 On systems that support dynamic linking, this prevents linking with the shared
7400 libraries.  On other systems, this option has no effect.
7401
7402 @item -shared
7403 @opindex shared
7404 Produce a shared object which can then be linked with other objects to
7405 form an executable.  Not all systems support this option.  For predictable
7406 results, you must also specify the same set of options that were used to
7407 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7408 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7409 needs to build supplementary stub code for constructors to work.  On
7410 multi-libbed systems, @samp{gcc -shared} must select the correct support
7411 libraries to link against.  Failing to supply the correct flags may lead
7412 to subtle defects.  Supplying them in cases where they are not necessary
7413 is innocuous.}
7414
7415 @item -shared-libgcc
7416 @itemx -static-libgcc
7417 @opindex shared-libgcc
7418 @opindex static-libgcc
7419 On systems that provide @file{libgcc} as a shared library, these options
7420 force the use of either the shared or static version respectively.
7421 If no shared version of @file{libgcc} was built when the compiler was
7422 configured, these options have no effect.
7423
7424 There are several situations in which an application should use the
7425 shared @file{libgcc} instead of the static version.  The most common
7426 of these is when the application wishes to throw and catch exceptions
7427 across different shared libraries.  In that case, each of the libraries
7428 as well as the application itself should use the shared @file{libgcc}.
7429
7430 Therefore, the G++ and GCJ drivers automatically add
7431 @option{-shared-libgcc} whenever you build a shared library or a main
7432 executable, because C++ and Java programs typically use exceptions, so
7433 this is the right thing to do.
7434
7435 If, instead, you use the GCC driver to create shared libraries, you may
7436 find that they will not always be linked with the shared @file{libgcc}.
7437 If GCC finds, at its configuration time, that you have a non-GNU linker
7438 or a GNU linker that does not support option @option{--eh-frame-hdr},
7439 it will link the shared version of @file{libgcc} into shared libraries
7440 by default.  Otherwise, it will take advantage of the linker and optimize
7441 away the linking with the shared version of @file{libgcc}, linking with
7442 the static version of libgcc by default.  This allows exceptions to
7443 propagate through such shared libraries, without incurring relocation
7444 costs at library load time.
7445
7446 However, if a library or main executable is supposed to throw or catch
7447 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7448 for the languages used in the program, or using the option
7449 @option{-shared-libgcc}, such that it is linked with the shared
7450 @file{libgcc}.
7451
7452 @item -symbolic
7453 @opindex symbolic
7454 Bind references to global symbols when building a shared object.  Warn
7455 about any unresolved references (unless overridden by the link editor
7456 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7457 this option.
7458
7459 @item -Xlinker @var{option}
7460 @opindex Xlinker
7461 Pass @var{option} as an option to the linker.  You can use this to
7462 supply system-specific linker options which GCC does not know how to
7463 recognize.
7464
7465 If you want to pass an option that takes an argument, you must use
7466 @option{-Xlinker} twice, once for the option and once for the argument.
7467 For example, to pass @option{-assert definitions}, you must write
7468 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7469 @option{-Xlinker "-assert definitions"}, because this passes the entire
7470 string as a single argument, which is not what the linker expects.
7471
7472 @item -Wl,@var{option}
7473 @opindex Wl
7474 Pass @var{option} as an option to the linker.  If @var{option} contains
7475 commas, it is split into multiple options at the commas.
7476
7477 @item -u @var{symbol}
7478 @opindex u
7479 Pretend the symbol @var{symbol} is undefined, to force linking of
7480 library modules to define it.  You can use @option{-u} multiple times with
7481 different symbols to force loading of additional library modules.
7482 @end table
7483
7484 @node Directory Options
7485 @section Options for Directory Search
7486 @cindex directory options
7487 @cindex options, directory search
7488 @cindex search path
7489
7490 These options specify directories to search for header files, for
7491 libraries and for parts of the compiler:
7492
7493 @table @gcctabopt
7494 @item -I@var{dir}
7495 @opindex I
7496 Add the directory @var{dir} to the head of the list of directories to be
7497 searched for header files.  This can be used to override a system header
7498 file, substituting your own version, since these directories are
7499 searched before the system header file directories.  However, you should
7500 not use this option to add directories that contain vendor-supplied
7501 system header files (use @option{-isystem} for that).  If you use more than
7502 one @option{-I} option, the directories are scanned in left-to-right
7503 order; the standard system directories come after.
7504
7505 If a standard system include directory, or a directory specified with
7506 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7507 option will be ignored.  The directory will still be searched but as a
7508 system directory at its normal position in the system include chain.
7509 This is to ensure that GCC's procedure to fix buggy system headers and
7510 the ordering for the include_next directive are not inadvertently changed.
7511 If you really need to change the search order for system directories,
7512 use the @option{-nostdinc} and/or @option{-isystem} options.
7513
7514 @item -iquote@var{dir}
7515 @opindex iquote
7516 Add the directory @var{dir} to the head of the list of directories to
7517 be searched for header files only for the case of @samp{#include
7518 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7519 otherwise just like @option{-I}.
7520
7521 @item -L@var{dir}
7522 @opindex L
7523 Add directory @var{dir} to the list of directories to be searched
7524 for @option{-l}.
7525
7526 @item -B@var{prefix}
7527 @opindex B
7528 This option specifies where to find the executables, libraries,
7529 include files, and data files of the compiler itself.
7530
7531 The compiler driver program runs one or more of the subprograms
7532 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7533 @var{prefix} as a prefix for each program it tries to run, both with and
7534 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7535
7536 For each subprogram to be run, the compiler driver first tries the
7537 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7538 was not specified, the driver tries two standard prefixes, which are
7539 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7540 those results in a file name that is found, the unmodified program
7541 name is searched for using the directories specified in your
7542 @env{PATH} environment variable.
7543
7544 The compiler will check to see if the path provided by the @option{-B}
7545 refers to a directory, and if necessary it will add a directory
7546 separator character at the end of the path.
7547
7548 @option{-B} prefixes that effectively specify directory names also apply
7549 to libraries in the linker, because the compiler translates these
7550 options into @option{-L} options for the linker.  They also apply to
7551 includes files in the preprocessor, because the compiler translates these
7552 options into @option{-isystem} options for the preprocessor.  In this case,
7553 the compiler appends @samp{include} to the prefix.
7554
7555 The run-time support file @file{libgcc.a} can also be searched for using
7556 the @option{-B} prefix, if needed.  If it is not found there, the two
7557 standard prefixes above are tried, and that is all.  The file is left
7558 out of the link if it is not found by those means.
7559
7560 Another way to specify a prefix much like the @option{-B} prefix is to use
7561 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7562 Variables}.
7563
7564 As a special kludge, if the path provided by @option{-B} is
7565 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7566 9, then it will be replaced by @file{[dir/]include}.  This is to help
7567 with boot-strapping the compiler.
7568
7569 @item -specs=@var{file}
7570 @opindex specs
7571 Process @var{file} after the compiler reads in the standard @file{specs}
7572 file, in order to override the defaults that the @file{gcc} driver
7573 program uses when determining what switches to pass to @file{cc1},
7574 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7575 @option{-specs=@var{file}} can be specified on the command line, and they
7576 are processed in order, from left to right.
7577
7578 @item --sysroot=@var{dir}
7579 @opindex sysroot
7580 Use @var{dir} as the logical root directory for headers and libraries.
7581 For example, if the compiler would normally search for headers in
7582 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7583 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7584
7585 If you use both this option and the @option{-isysroot} option, then
7586 the @option{--sysroot} option will apply to libraries, but the
7587 @option{-isysroot} option will apply to header files.
7588
7589 The GNU linker (beginning with version 2.16) has the necessary support
7590 for this option.  If your linker does not support this option, the
7591 header file aspect of @option{--sysroot} will still work, but the
7592 library aspect will not.
7593
7594 @item -I-
7595 @opindex I-
7596 This option has been deprecated.  Please use @option{-iquote} instead for
7597 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7598 Any directories you specify with @option{-I} options before the @option{-I-}
7599 option are searched only for the case of @samp{#include "@var{file}"};
7600 they are not searched for @samp{#include <@var{file}>}.
7601
7602 If additional directories are specified with @option{-I} options after
7603 the @option{-I-}, these directories are searched for all @samp{#include}
7604 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7605 this way.)
7606
7607 In addition, the @option{-I-} option inhibits the use of the current
7608 directory (where the current input file came from) as the first search
7609 directory for @samp{#include "@var{file}"}.  There is no way to
7610 override this effect of @option{-I-}.  With @option{-I.} you can specify
7611 searching the directory which was current when the compiler was
7612 invoked.  That is not exactly the same as what the preprocessor does
7613 by default, but it is often satisfactory.
7614
7615 @option{-I-} does not inhibit the use of the standard system directories
7616 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7617 independent.
7618 @end table
7619
7620 @c man end
7621
7622 @node Spec Files
7623 @section Specifying subprocesses and the switches to pass to them
7624 @cindex Spec Files
7625
7626 @command{gcc} is a driver program.  It performs its job by invoking a
7627 sequence of other programs to do the work of compiling, assembling and
7628 linking.  GCC interprets its command-line parameters and uses these to
7629 deduce which programs it should invoke, and which command-line options
7630 it ought to place on their command lines.  This behavior is controlled
7631 by @dfn{spec strings}.  In most cases there is one spec string for each
7632 program that GCC can invoke, but a few programs have multiple spec
7633 strings to control their behavior.  The spec strings built into GCC can
7634 be overridden by using the @option{-specs=} command-line switch to specify
7635 a spec file.
7636
7637 @dfn{Spec files} are plaintext files that are used to construct spec
7638 strings.  They consist of a sequence of directives separated by blank
7639 lines.  The type of directive is determined by the first non-whitespace
7640 character on the line and it can be one of the following:
7641
7642 @table @code
7643 @item %@var{command}
7644 Issues a @var{command} to the spec file processor.  The commands that can
7645 appear here are:
7646
7647 @table @code
7648 @item %include <@var{file}>
7649 @cindex %include
7650 Search for @var{file} and insert its text at the current point in the
7651 specs file.
7652
7653 @item %include_noerr <@var{file}>
7654 @cindex %include_noerr
7655 Just like @samp{%include}, but do not generate an error message if the include
7656 file cannot be found.
7657
7658 @item %rename @var{old_name} @var{new_name}
7659 @cindex %rename
7660 Rename the spec string @var{old_name} to @var{new_name}.
7661
7662 @end table
7663
7664 @item *[@var{spec_name}]:
7665 This tells the compiler to create, override or delete the named spec
7666 string.  All lines after this directive up to the next directive or
7667 blank line are considered to be the text for the spec string.  If this
7668 results in an empty string then the spec will be deleted.  (Or, if the
7669 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7670 does not currently exist a new spec will be created.  If the spec does
7671 exist then its contents will be overridden by the text of this
7672 directive, unless the first character of that text is the @samp{+}
7673 character, in which case the text will be appended to the spec.
7674
7675 @item [@var{suffix}]:
7676 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7677 and up to the next directive or blank line are considered to make up the
7678 spec string for the indicated suffix.  When the compiler encounters an
7679 input file with the named suffix, it will processes the spec string in
7680 order to work out how to compile that file.  For example:
7681
7682 @smallexample
7683 .ZZ:
7684 z-compile -input %i
7685 @end smallexample
7686
7687 This says that any input file whose name ends in @samp{.ZZ} should be
7688 passed to the program @samp{z-compile}, which should be invoked with the
7689 command-line switch @option{-input} and with the result of performing the
7690 @samp{%i} substitution.  (See below.)
7691
7692 As an alternative to providing a spec string, the text that follows a
7693 suffix directive can be one of the following:
7694
7695 @table @code
7696 @item @@@var{language}
7697 This says that the suffix is an alias for a known @var{language}.  This is
7698 similar to using the @option{-x} command-line switch to GCC to specify a
7699 language explicitly.  For example:
7700
7701 @smallexample
7702 .ZZ:
7703 @@c++
7704 @end smallexample
7705
7706 Says that .ZZ files are, in fact, C++ source files.
7707
7708 @item #@var{name}
7709 This causes an error messages saying:
7710
7711 @smallexample
7712 @var{name} compiler not installed on this system.
7713 @end smallexample
7714 @end table
7715
7716 GCC already has an extensive list of suffixes built into it.
7717 This directive will add an entry to the end of the list of suffixes, but
7718 since the list is searched from the end backwards, it is effectively
7719 possible to override earlier entries using this technique.
7720
7721 @end table
7722
7723 GCC has the following spec strings built into it.  Spec files can
7724 override these strings or create their own.  Note that individual
7725 targets can also add their own spec strings to this list.
7726
7727 @smallexample
7728 asm          Options to pass to the assembler
7729 asm_final    Options to pass to the assembler post-processor
7730 cpp          Options to pass to the C preprocessor
7731 cc1          Options to pass to the C compiler
7732 cc1plus      Options to pass to the C++ compiler
7733 endfile      Object files to include at the end of the link
7734 link         Options to pass to the linker
7735 lib          Libraries to include on the command line to the linker
7736 libgcc       Decides which GCC support library to pass to the linker
7737 linker       Sets the name of the linker
7738 predefines   Defines to be passed to the C preprocessor
7739 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7740              by default
7741 startfile    Object files to include at the start of the link
7742 @end smallexample
7743
7744 Here is a small example of a spec file:
7745
7746 @smallexample
7747 %rename lib                 old_lib
7748
7749 *lib:
7750 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7751 @end smallexample
7752
7753 This example renames the spec called @samp{lib} to @samp{old_lib} and
7754 then overrides the previous definition of @samp{lib} with a new one.
7755 The new definition adds in some extra command-line options before
7756 including the text of the old definition.
7757
7758 @dfn{Spec strings} are a list of command-line options to be passed to their
7759 corresponding program.  In addition, the spec strings can contain
7760 @samp{%}-prefixed sequences to substitute variable text or to
7761 conditionally insert text into the command line.  Using these constructs
7762 it is possible to generate quite complex command lines.
7763
7764 Here is a table of all defined @samp{%}-sequences for spec
7765 strings.  Note that spaces are not generated automatically around the
7766 results of expanding these sequences.  Therefore you can concatenate them
7767 together or combine them with constant text in a single argument.
7768
7769 @table @code
7770 @item %%
7771 Substitute one @samp{%} into the program name or argument.
7772
7773 @item %i
7774 Substitute the name of the input file being processed.
7775
7776 @item %b
7777 Substitute the basename of the input file being processed.
7778 This is the substring up to (and not including) the last period
7779 and not including the directory.
7780
7781 @item %B
7782 This is the same as @samp{%b}, but include the file suffix (text after
7783 the last period).
7784
7785 @item %d
7786 Marks the argument containing or following the @samp{%d} as a
7787 temporary file name, so that that file will be deleted if GCC exits
7788 successfully.  Unlike @samp{%g}, this contributes no text to the
7789 argument.
7790
7791 @item %g@var{suffix}
7792 Substitute a file name that has suffix @var{suffix} and is chosen
7793 once per compilation, and mark the argument in the same way as
7794 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
7795 name is now chosen in a way that is hard to predict even when previously
7796 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
7797 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
7798 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
7799 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
7800 was simply substituted with a file name chosen once per compilation,
7801 without regard to any appended suffix (which was therefore treated
7802 just like ordinary text), making such attacks more likely to succeed.
7803
7804 @item %u@var{suffix}
7805 Like @samp{%g}, but generates a new temporary file name even if
7806 @samp{%u@var{suffix}} was already seen.
7807
7808 @item %U@var{suffix}
7809 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
7810 new one if there is no such last file name.  In the absence of any
7811 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
7812 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
7813 would involve the generation of two distinct file names, one
7814 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
7815 simply substituted with a file name chosen for the previous @samp{%u},
7816 without regard to any appended suffix.
7817
7818 @item %j@var{suffix}
7819 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
7820 writable, and if save-temps is off; otherwise, substitute the name
7821 of a temporary file, just like @samp{%u}.  This temporary file is not
7822 meant for communication between processes, but rather as a junk
7823 disposal mechanism.
7824
7825 @item %|@var{suffix}
7826 @itemx %m@var{suffix}
7827 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
7828 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
7829 all.  These are the two most common ways to instruct a program that it
7830 should read from standard input or write to standard output.  If you
7831 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
7832 construct: see for example @file{f/lang-specs.h}.
7833
7834 @item %.@var{SUFFIX}
7835 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
7836 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
7837 terminated by the next space or %.
7838
7839 @item %w
7840 Marks the argument containing or following the @samp{%w} as the
7841 designated output file of this compilation.  This puts the argument
7842 into the sequence of arguments that @samp{%o} will substitute later.
7843
7844 @item %o
7845 Substitutes the names of all the output files, with spaces
7846 automatically placed around them.  You should write spaces
7847 around the @samp{%o} as well or the results are undefined.
7848 @samp{%o} is for use in the specs for running the linker.
7849 Input files whose names have no recognized suffix are not compiled
7850 at all, but they are included among the output files, so they will
7851 be linked.
7852
7853 @item %O
7854 Substitutes the suffix for object files.  Note that this is
7855 handled specially when it immediately follows @samp{%g, %u, or %U},
7856 because of the need for those to form complete file names.  The
7857 handling is such that @samp{%O} is treated exactly as if it had already
7858 been substituted, except that @samp{%g, %u, and %U} do not currently
7859 support additional @var{suffix} characters following @samp{%O} as they would
7860 following, for example, @samp{.o}.
7861
7862 @item %p
7863 Substitutes the standard macro predefinitions for the
7864 current target machine.  Use this when running @code{cpp}.
7865
7866 @item %P
7867 Like @samp{%p}, but puts @samp{__} before and after the name of each
7868 predefined macro, except for macros that start with @samp{__} or with
7869 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
7870 C@.
7871
7872 @item %I
7873 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7874 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7875 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7876 and @option{-imultilib} as necessary.
7877
7878 @item %s
7879 Current argument is the name of a library or startup file of some sort.
7880 Search for that file in a standard list of directories and substitute
7881 the full name found.
7882
7883 @item %e@var{str}
7884 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7885 Use this when inconsistent options are detected.
7886
7887 @item %(@var{name})
7888 Substitute the contents of spec string @var{name} at this point.
7889
7890 @item %[@var{name}]
7891 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7892
7893 @item %x@{@var{option}@}
7894 Accumulate an option for @samp{%X}.
7895
7896 @item %X
7897 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7898 spec string.
7899
7900 @item %Y
7901 Output the accumulated assembler options specified by @option{-Wa}.
7902
7903 @item %Z
7904 Output the accumulated preprocessor options specified by @option{-Wp}.
7905
7906 @item %a
7907 Process the @code{asm} spec.  This is used to compute the
7908 switches to be passed to the assembler.
7909
7910 @item %A
7911 Process the @code{asm_final} spec.  This is a spec string for
7912 passing switches to an assembler post-processor, if such a program is
7913 needed.
7914
7915 @item %l
7916 Process the @code{link} spec.  This is the spec for computing the
7917 command line passed to the linker.  Typically it will make use of the
7918 @samp{%L %G %S %D and %E} sequences.
7919
7920 @item %D
7921 Dump out a @option{-L} option for each directory that GCC believes might
7922 contain startup files.  If the target supports multilibs then the
7923 current multilib directory will be prepended to each of these paths.
7924
7925 @item %L
7926 Process the @code{lib} spec.  This is a spec string for deciding which
7927 libraries should be included on the command line to the linker.
7928
7929 @item %G
7930 Process the @code{libgcc} spec.  This is a spec string for deciding
7931 which GCC support library should be included on the command line to the linker.
7932
7933 @item %S
7934 Process the @code{startfile} spec.  This is a spec for deciding which
7935 object files should be the first ones passed to the linker.  Typically
7936 this might be a file named @file{crt0.o}.
7937
7938 @item %E
7939 Process the @code{endfile} spec.  This is a spec string that specifies
7940 the last object files that will be passed to the linker.
7941
7942 @item %C
7943 Process the @code{cpp} spec.  This is used to construct the arguments
7944 to be passed to the C preprocessor.
7945
7946 @item %1
7947 Process the @code{cc1} spec.  This is used to construct the options to be
7948 passed to the actual C compiler (@samp{cc1}).
7949
7950 @item %2
7951 Process the @code{cc1plus} spec.  This is used to construct the options to be
7952 passed to the actual C++ compiler (@samp{cc1plus}).
7953
7954 @item %*
7955 Substitute the variable part of a matched option.  See below.
7956 Note that each comma in the substituted string is replaced by
7957 a single space.
7958
7959 @item %<@code{S}
7960 Remove all occurrences of @code{-S} from the command line.  Note---this
7961 command is position dependent.  @samp{%} commands in the spec string
7962 before this one will see @code{-S}, @samp{%} commands in the spec string
7963 after this one will not.
7964
7965 @item %:@var{function}(@var{args})
7966 Call the named function @var{function}, passing it @var{args}.
7967 @var{args} is first processed as a nested spec string, then split
7968 into an argument vector in the usual fashion.  The function returns
7969 a string which is processed as if it had appeared literally as part
7970 of the current spec.
7971
7972 The following built-in spec functions are provided:
7973
7974 @table @code
7975 @item @code{getenv}
7976 The @code{getenv} spec function takes two arguments: an environment
7977 variable name and a string.  If the environment variable is not
7978 defined, a fatal error is issued.  Otherwise, the return value is the
7979 value of the environment variable concatenated with the string.  For
7980 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
7981
7982 @smallexample
7983 %:getenv(TOPDIR /include)
7984 @end smallexample
7985
7986 expands to @file{/path/to/top/include}.
7987
7988 @item @code{if-exists}
7989 The @code{if-exists} spec function takes one argument, an absolute
7990 pathname to a file.  If the file exists, @code{if-exists} returns the
7991 pathname.  Here is a small example of its usage:
7992
7993 @smallexample
7994 *startfile:
7995 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7996 @end smallexample
7997
7998 @item @code{if-exists-else}
7999 The @code{if-exists-else} spec function is similar to the @code{if-exists}
8000 spec function, except that it takes two arguments.  The first argument is
8001 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
8002 returns the pathname.  If it does not exist, it returns the second argument.
8003 This way, @code{if-exists-else} can be used to select one file or another,
8004 based on the existence of the first.  Here is a small example of its usage:
8005
8006 @smallexample
8007 *startfile:
8008 crt0%O%s %:if-exists(crti%O%s) \
8009 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
8010 @end smallexample
8011
8012 @item @code{replace-outfile}
8013 The @code{replace-outfile} spec function takes two arguments.  It looks for the
8014 first argument in the outfiles array and replaces it with the second argument.  Here
8015 is a small example of its usage:
8016
8017 @smallexample
8018 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
8019 @end smallexample
8020
8021 @item @code{print-asm-header}
8022 The @code{print-asm-header} function takes no arguments and simply
8023 prints a banner like:
8024
8025 @smallexample
8026 Assembler options
8027 =================
8028
8029 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
8030 @end smallexample
8031
8032 It is used to separate compiler options from assembler options
8033 in the @option{--target-help} output.
8034 @end table
8035
8036 @item %@{@code{S}@}
8037 Substitutes the @code{-S} switch, if that switch was given to GCC@.
8038 If that switch was not specified, this substitutes nothing.  Note that
8039 the leading dash is omitted when specifying this option, and it is
8040 automatically inserted if the substitution is performed.  Thus the spec
8041 string @samp{%@{foo@}} would match the command-line option @option{-foo}
8042 and would output the command line option @option{-foo}.
8043
8044 @item %W@{@code{S}@}
8045 Like %@{@code{S}@} but mark last argument supplied within as a file to be
8046 deleted on failure.
8047
8048 @item %@{@code{S}*@}
8049 Substitutes all the switches specified to GCC whose names start
8050 with @code{-S}, but which also take an argument.  This is used for
8051 switches like @option{-o}, @option{-D}, @option{-I}, etc.
8052 GCC considers @option{-o foo} as being
8053 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
8054 text, including the space.  Thus two arguments would be generated.
8055
8056 @item %@{@code{S}*&@code{T}*@}
8057 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
8058 (the order of @code{S} and @code{T} in the spec is not significant).
8059 There can be any number of ampersand-separated variables; for each the
8060 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
8061
8062 @item %@{@code{S}:@code{X}@}
8063 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
8064
8065 @item %@{!@code{S}:@code{X}@}
8066 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
8067
8068 @item %@{@code{S}*:@code{X}@}
8069 Substitutes @code{X} if one or more switches whose names start with
8070 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
8071 once, no matter how many such switches appeared.  However, if @code{%*}
8072 appears somewhere in @code{X}, then @code{X} will be substituted once
8073 for each matching switch, with the @code{%*} replaced by the part of
8074 that switch that matched the @code{*}.
8075
8076 @item %@{.@code{S}:@code{X}@}
8077 Substitutes @code{X}, if processing a file with suffix @code{S}.
8078
8079 @item %@{!.@code{S}:@code{X}@}
8080 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
8081
8082 @item %@{,@code{S}:@code{X}@}
8083 Substitutes @code{X}, if processing a file for language @code{S}.
8084
8085 @item %@{!,@code{S}:@code{X}@}
8086 Substitutes @code{X}, if not processing a file for language @code{S}.
8087
8088 @item %@{@code{S}|@code{P}:@code{X}@}
8089 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
8090 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
8091 @code{*} sequences as well, although they have a stronger binding than
8092 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
8093 alternatives must be starred, and only the first matching alternative
8094 is substituted.
8095
8096 For example, a spec string like this:
8097
8098 @smallexample
8099 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
8100 @end smallexample
8101
8102 will output the following command-line options from the following input
8103 command-line options:
8104
8105 @smallexample
8106 fred.c        -foo -baz
8107 jim.d         -bar -boggle
8108 -d fred.c     -foo -baz -boggle
8109 -d jim.d      -bar -baz -boggle
8110 @end smallexample
8111
8112 @item %@{S:X; T:Y; :D@}
8113
8114 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
8115 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
8116 be as many clauses as you need.  This may be combined with @code{.},
8117 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
8118
8119
8120 @end table
8121
8122 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
8123 construct may contain other nested @samp{%} constructs or spaces, or
8124 even newlines.  They are processed as usual, as described above.
8125 Trailing white space in @code{X} is ignored.  White space may also
8126 appear anywhere on the left side of the colon in these constructs,
8127 except between @code{.} or @code{*} and the corresponding word.
8128
8129 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8130 handled specifically in these constructs.  If another value of
8131 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8132 @option{-W} switch is found later in the command line, the earlier
8133 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8134 just one letter, which passes all matching options.
8135
8136 The character @samp{|} at the beginning of the predicate text is used to
8137 indicate that a command should be piped to the following command, but
8138 only if @option{-pipe} is specified.
8139
8140 It is built into GCC which switches take arguments and which do not.
8141 (You might think it would be useful to generalize this to allow each
8142 compiler's spec to say which switches take arguments.  But this cannot
8143 be done in a consistent fashion.  GCC cannot even decide which input
8144 files have been specified without knowing which switches take arguments,
8145 and it must know which input files to compile in order to tell which
8146 compilers to run).
8147
8148 GCC also knows implicitly that arguments starting in @option{-l} are to be
8149 treated as compiler output files, and passed to the linker in their
8150 proper position among the other output files.
8151
8152 @c man begin OPTIONS
8153
8154 @node Target Options
8155 @section Specifying Target Machine and Compiler Version
8156 @cindex target options
8157 @cindex cross compiling
8158 @cindex specifying machine version
8159 @cindex specifying compiler version and target machine
8160 @cindex compiler version, specifying
8161 @cindex target machine, specifying
8162
8163 The usual way to run GCC is to run the executable called @file{gcc}, or
8164 @file{<machine>-gcc} when cross-compiling, or
8165 @file{<machine>-gcc-<version>} to run a version other than the one that
8166 was installed last.  Sometimes this is inconvenient, so GCC provides
8167 options that will switch to another cross-compiler or version.
8168
8169 @table @gcctabopt
8170 @item -b @var{machine}
8171 @opindex b
8172 The argument @var{machine} specifies the target machine for compilation.
8173
8174 The value to use for @var{machine} is the same as was specified as the
8175 machine type when configuring GCC as a cross-compiler.  For
8176 example, if a cross-compiler was configured with @samp{configure
8177 arm-elf}, meaning to compile for an arm processor with elf binaries,
8178 then you would specify @option{-b arm-elf} to run that cross compiler.
8179 Because there are other options beginning with @option{-b}, the
8180 configuration must contain a hyphen.
8181
8182 @item -V @var{version}
8183 @opindex V
8184 The argument @var{version} specifies which version of GCC to run.
8185 This is useful when multiple versions are installed.  For example,
8186 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8187 @end table
8188
8189 The @option{-V} and @option{-b} options work by running the
8190 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8191 use them if you can just run that directly.
8192
8193 @node Submodel Options
8194 @section Hardware Models and Configurations
8195 @cindex submodel options
8196 @cindex specifying hardware config
8197 @cindex hardware models and configurations, specifying
8198 @cindex machine dependent options
8199
8200 Earlier we discussed the standard option @option{-b} which chooses among
8201 different installed compilers for completely different target
8202 machines, such as VAX vs.@: 68000 vs.@: 80386.
8203
8204 In addition, each of these target machine types can have its own
8205 special options, starting with @samp{-m}, to choose among various
8206 hardware models or configurations---for example, 68010 vs 68020,
8207 floating coprocessor or none.  A single installed version of the
8208 compiler can compile for any model or configuration, according to the
8209 options specified.
8210
8211 Some configurations of the compiler also support additional special
8212 options, usually for compatibility with other compilers on the same
8213 platform.
8214
8215 @c This list is ordered alphanumerically by subsection name.
8216 @c It should be the same order and spelling as these options are listed
8217 @c in Machine Dependent Options
8218
8219 @menu
8220 * ARC Options::
8221 * ARM Options::
8222 * AVR Options::
8223 * Blackfin Options::
8224 * CRIS Options::
8225 * CRX Options::
8226 * Darwin Options::
8227 * DEC Alpha Options::
8228 * DEC Alpha/VMS Options::
8229 * FRV Options::
8230 * GNU/Linux Options::
8231 * H8/300 Options::
8232 * HPPA Options::
8233 * i386 and x86-64 Options::
8234 * IA-64 Options::
8235 * M32C Options::
8236 * M32R/D Options::
8237 * M680x0 Options::
8238 * M68hc1x Options::
8239 * MCore Options::
8240 * MIPS Options::
8241 * MMIX Options::
8242 * MN10300 Options::
8243 * MT Options::
8244 * PDP-11 Options::
8245 * PowerPC Options::
8246 * RS/6000 and PowerPC Options::
8247 * S/390 and zSeries Options::
8248 * Score Options::
8249 * SH Options::
8250 * SPARC Options::
8251 * SPU Options::
8252 * System V Options::
8253 * V850 Options::
8254 * VAX Options::
8255 * VxWorks Options::
8256 * x86-64 Options::
8257 * Xstormy16 Options::
8258 * Xtensa Options::
8259 * zSeries Options::
8260 @end menu
8261
8262 @node ARC Options
8263 @subsection ARC Options
8264 @cindex ARC Options
8265
8266 These options are defined for ARC implementations:
8267
8268 @table @gcctabopt
8269 @item -EL
8270 @opindex EL
8271 Compile code for little endian mode.  This is the default.
8272
8273 @item -EB
8274 @opindex EB
8275 Compile code for big endian mode.
8276
8277 @item -mmangle-cpu
8278 @opindex mmangle-cpu
8279 Prepend the name of the cpu to all public symbol names.
8280 In multiple-processor systems, there are many ARC variants with different
8281 instruction and register set characteristics.  This flag prevents code
8282 compiled for one cpu to be linked with code compiled for another.
8283 No facility exists for handling variants that are ``almost identical''.
8284 This is an all or nothing option.
8285
8286 @item -mcpu=@var{cpu}
8287 @opindex mcpu
8288 Compile code for ARC variant @var{cpu}.
8289 Which variants are supported depend on the configuration.
8290 All variants support @option{-mcpu=base}, this is the default.
8291
8292 @item -mtext=@var{text-section}
8293 @itemx -mdata=@var{data-section}
8294 @itemx -mrodata=@var{readonly-data-section}
8295 @opindex mtext
8296 @opindex mdata
8297 @opindex mrodata
8298 Put functions, data, and readonly data in @var{text-section},
8299 @var{data-section}, and @var{readonly-data-section} respectively
8300 by default.  This can be overridden with the @code{section} attribute.
8301 @xref{Variable Attributes}.
8302
8303 @end table
8304
8305 @node ARM Options
8306 @subsection ARM Options
8307 @cindex ARM options
8308
8309 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8310 architectures:
8311
8312 @table @gcctabopt
8313 @item -mabi=@var{name}
8314 @opindex mabi
8315 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8316 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8317
8318 @item -mapcs-frame
8319 @opindex mapcs-frame
8320 Generate a stack frame that is compliant with the ARM Procedure Call
8321 Standard for all functions, even if this is not strictly necessary for
8322 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8323 with this option will cause the stack frames not to be generated for
8324 leaf functions.  The default is @option{-mno-apcs-frame}.
8325
8326 @item -mapcs
8327 @opindex mapcs
8328 This is a synonym for @option{-mapcs-frame}.
8329
8330 @ignore
8331 @c not currently implemented
8332 @item -mapcs-stack-check
8333 @opindex mapcs-stack-check
8334 Generate code to check the amount of stack space available upon entry to
8335 every function (that actually uses some stack space).  If there is
8336 insufficient space available then either the function
8337 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8338 called, depending upon the amount of stack space required.  The run time
8339 system is required to provide these functions.  The default is
8340 @option{-mno-apcs-stack-check}, since this produces smaller code.
8341
8342 @c not currently implemented
8343 @item -mapcs-float
8344 @opindex mapcs-float
8345 Pass floating point arguments using the float point registers.  This is
8346 one of the variants of the APCS@.  This option is recommended if the
8347 target hardware has a floating point unit or if a lot of floating point
8348 arithmetic is going to be performed by the code.  The default is
8349 @option{-mno-apcs-float}, since integer only code is slightly increased in
8350 size if @option{-mapcs-float} is used.
8351
8352 @c not currently implemented
8353 @item -mapcs-reentrant
8354 @opindex mapcs-reentrant
8355 Generate reentrant, position independent code.  The default is
8356 @option{-mno-apcs-reentrant}.
8357 @end ignore
8358
8359 @item -mthumb-interwork
8360 @opindex mthumb-interwork
8361 Generate code which supports calling between the ARM and Thumb
8362 instruction sets.  Without this option the two instruction sets cannot
8363 be reliably used inside one program.  The default is
8364 @option{-mno-thumb-interwork}, since slightly larger code is generated
8365 when @option{-mthumb-interwork} is specified.
8366
8367 @item -mno-sched-prolog
8368 @opindex mno-sched-prolog
8369 Prevent the reordering of instructions in the function prolog, or the
8370 merging of those instruction with the instructions in the function's
8371 body.  This means that all functions will start with a recognizable set
8372 of instructions (or in fact one of a choice from a small set of
8373 different function prologues), and this information can be used to
8374 locate the start if functions inside an executable piece of code.  The
8375 default is @option{-msched-prolog}.
8376
8377 @item -mhard-float
8378 @opindex mhard-float
8379 Generate output containing floating point instructions.  This is the
8380 default.
8381
8382 @item -msoft-float
8383 @opindex msoft-float
8384 Generate output containing library calls for floating point.
8385 @strong{Warning:} the requisite libraries are not available for all ARM
8386 targets.  Normally the facilities of the machine's usual C compiler are
8387 used, but this cannot be done directly in cross-compilation.  You must make
8388 your own arrangements to provide suitable library functions for
8389 cross-compilation.
8390
8391 @option{-msoft-float} changes the calling convention in the output file;
8392 therefore, it is only useful if you compile @emph{all} of a program with
8393 this option.  In particular, you need to compile @file{libgcc.a}, the
8394 library that comes with GCC, with @option{-msoft-float} in order for
8395 this to work.
8396
8397 @item -mfloat-abi=@var{name}
8398 @opindex mfloat-abi
8399 Specifies which ABI to use for floating point values.  Permissible values
8400 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8401
8402 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8403 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8404 of floating point instructions, but still uses the soft-float calling
8405 conventions.
8406
8407 @item -mlittle-endian
8408 @opindex mlittle-endian
8409 Generate code for a processor running in little-endian mode.  This is
8410 the default for all standard configurations.
8411
8412 @item -mbig-endian
8413 @opindex mbig-endian
8414 Generate code for a processor running in big-endian mode; the default is
8415 to compile code for a little-endian processor.
8416
8417 @item -mwords-little-endian
8418 @opindex mwords-little-endian
8419 This option only applies when generating code for big-endian processors.
8420 Generate code for a little-endian word order but a big-endian byte
8421 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8422 option should only be used if you require compatibility with code for
8423 big-endian ARM processors generated by versions of the compiler prior to
8424 2.8.
8425
8426 @item -mcpu=@var{name}
8427 @opindex mcpu
8428 This specifies the name of the target ARM processor.  GCC uses this name
8429 to determine what kind of instructions it can emit when generating
8430 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8431 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8432 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8433 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8434 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8435 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8436 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8437 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8438 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8439 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8440 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8441 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8442 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8443 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8444 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-m3},
8445 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8446
8447 @itemx -mtune=@var{name}
8448 @opindex mtune
8449 This option is very similar to the @option{-mcpu=} option, except that
8450 instead of specifying the actual target processor type, and hence
8451 restricting which instructions can be used, it specifies that GCC should
8452 tune the performance of the code as if the target were of the type
8453 specified in this option, but still choosing the instructions that it
8454 will generate based on the cpu specified by a @option{-mcpu=} option.
8455 For some ARM implementations better performance can be obtained by using
8456 this option.
8457
8458 @item -march=@var{name}
8459 @opindex march
8460 This specifies the name of the target ARM architecture.  GCC uses this
8461 name to determine what kind of instructions it can emit when generating
8462 assembly code.  This option can be used in conjunction with or instead
8463 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8464 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8465 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8466 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv7}, @samp{armv7-a},
8467 @samp{armv7-r}, @samp{armv7-m}, @samp{iwmmxt}, @samp{ep9312}.
8468
8469 @item -mfpu=@var{name}
8470 @itemx -mfpe=@var{number}
8471 @itemx -mfp=@var{number}
8472 @opindex mfpu
8473 @opindex mfpe
8474 @opindex mfp
8475 This specifies what floating point hardware (or hardware emulation) is
8476 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8477 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
8478 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8479 with older versions of GCC@.
8480
8481 If @option{-msoft-float} is specified this specifies the format of
8482 floating point values.
8483
8484 @item -mstructure-size-boundary=@var{n}
8485 @opindex mstructure-size-boundary
8486 The size of all structures and unions will be rounded up to a multiple
8487 of the number of bits set by this option.  Permissible values are 8, 32
8488 and 64.  The default value varies for different toolchains.  For the COFF
8489 targeted toolchain the default value is 8.  A value of 64 is only allowed
8490 if the underlying ABI supports it.
8491
8492 Specifying the larger number can produce faster, more efficient code, but
8493 can also increase the size of the program.  Different values are potentially
8494 incompatible.  Code compiled with one value cannot necessarily expect to
8495 work with code or libraries compiled with another value, if they exchange
8496 information using structures or unions.
8497
8498 @item -mabort-on-noreturn
8499 @opindex mabort-on-noreturn
8500 Generate a call to the function @code{abort} at the end of a
8501 @code{noreturn} function.  It will be executed if the function tries to
8502 return.
8503
8504 @item -mlong-calls
8505 @itemx -mno-long-calls
8506 @opindex mlong-calls
8507 @opindex mno-long-calls
8508 Tells the compiler to perform function calls by first loading the
8509 address of the function into a register and then performing a subroutine
8510 call on this register.  This switch is needed if the target function
8511 will lie outside of the 64 megabyte addressing range of the offset based
8512 version of subroutine call instruction.
8513
8514 Even if this switch is enabled, not all function calls will be turned
8515 into long calls.  The heuristic is that static functions, functions
8516 which have the @samp{short-call} attribute, functions that are inside
8517 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8518 definitions have already been compiled within the current compilation
8519 unit, will not be turned into long calls.  The exception to this rule is
8520 that weak function definitions, functions with the @samp{long-call}
8521 attribute or the @samp{section} attribute, and functions that are within
8522 the scope of a @samp{#pragma long_calls} directive, will always be
8523 turned into long calls.
8524
8525 This feature is not enabled by default.  Specifying
8526 @option{-mno-long-calls} will restore the default behavior, as will
8527 placing the function calls within the scope of a @samp{#pragma
8528 long_calls_off} directive.  Note these switches have no effect on how
8529 the compiler generates code to handle function calls via function
8530 pointers.
8531
8532 @item -mnop-fun-dllimport
8533 @opindex mnop-fun-dllimport
8534 Disable support for the @code{dllimport} attribute.
8535
8536 @item -msingle-pic-base
8537 @opindex msingle-pic-base
8538 Treat the register used for PIC addressing as read-only, rather than
8539 loading it in the prologue for each function.  The run-time system is
8540 responsible for initializing this register with an appropriate value
8541 before execution begins.
8542
8543 @item -mpic-register=@var{reg}
8544 @opindex mpic-register
8545 Specify the register to be used for PIC addressing.  The default is R10
8546 unless stack-checking is enabled, when R9 is used.
8547
8548 @item -mcirrus-fix-invalid-insns
8549 @opindex mcirrus-fix-invalid-insns
8550 @opindex mno-cirrus-fix-invalid-insns
8551 Insert NOPs into the instruction stream to in order to work around
8552 problems with invalid Maverick instruction combinations.  This option
8553 is only valid if the @option{-mcpu=ep9312} option has been used to
8554 enable generation of instructions for the Cirrus Maverick floating
8555 point co-processor.  This option is not enabled by default, since the
8556 problem is only present in older Maverick implementations.  The default
8557 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8558 switch.
8559
8560 @item -mpoke-function-name
8561 @opindex mpoke-function-name
8562 Write the name of each function into the text section, directly
8563 preceding the function prologue.  The generated code is similar to this:
8564
8565 @smallexample
8566      t0
8567          .ascii "arm_poke_function_name", 0
8568          .align
8569      t1
8570          .word 0xff000000 + (t1 - t0)
8571      arm_poke_function_name
8572          mov     ip, sp
8573          stmfd   sp!, @{fp, ip, lr, pc@}
8574          sub     fp, ip, #4
8575 @end smallexample
8576
8577 When performing a stack backtrace, code can inspect the value of
8578 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8579 location @code{pc - 12} and the top 8 bits are set, then we know that
8580 there is a function name embedded immediately preceding this location
8581 and has length @code{((pc[-3]) & 0xff000000)}.
8582
8583 @item -mthumb
8584 @opindex mthumb
8585 Generate code for the Thumb instruction set.  The default is to
8586 use the 32-bit ARM instruction set.
8587 This option automatically enables either 16-bit Thumb-1 or
8588 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8589 and @option{-march=@var{name}} options.
8590
8591 @item -mtpcs-frame
8592 @opindex mtpcs-frame
8593 Generate a stack frame that is compliant with the Thumb Procedure Call
8594 Standard for all non-leaf functions.  (A leaf function is one that does
8595 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8596
8597 @item -mtpcs-leaf-frame
8598 @opindex mtpcs-leaf-frame
8599 Generate a stack frame that is compliant with the Thumb Procedure Call
8600 Standard for all leaf functions.  (A leaf function is one that does
8601 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8602
8603 @item -mcallee-super-interworking
8604 @opindex mcallee-super-interworking
8605 Gives all externally visible functions in the file being compiled an ARM
8606 instruction set header which switches to Thumb mode before executing the
8607 rest of the function.  This allows these functions to be called from
8608 non-interworking code.
8609
8610 @item -mcaller-super-interworking
8611 @opindex mcaller-super-interworking
8612 Allows calls via function pointers (including virtual functions) to
8613 execute correctly regardless of whether the target code has been
8614 compiled for interworking or not.  There is a small overhead in the cost
8615 of executing a function pointer if this option is enabled.
8616
8617 @item -mtp=@var{name}
8618 @opindex mtp
8619 Specify the access model for the thread local storage pointer.  The valid
8620 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8621 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8622 (supported in the arm6k architecture), and @option{auto}, which uses the
8623 best available method for the selected processor.  The default setting is
8624 @option{auto}.
8625
8626 @end table
8627
8628 @node AVR Options
8629 @subsection AVR Options
8630 @cindex AVR Options
8631
8632 These options are defined for AVR implementations:
8633
8634 @table @gcctabopt
8635 @item -mmcu=@var{mcu}
8636 @opindex mmcu
8637 Specify ATMEL AVR instruction set or MCU type.
8638
8639 Instruction set avr1 is for the minimal AVR core, not supported by the C
8640 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8641 attiny11, attiny12, attiny15, attiny28).
8642
8643 Instruction set avr2 (default) is for the classic AVR core with up to
8644 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8645 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8646 at90c8534, at90s8535).
8647
8648 Instruction set avr3 is for the classic AVR core with up to 128K program
8649 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8650
8651 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8652 memory space (MCU types: atmega8, atmega83, atmega85).
8653
8654 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8655 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8656 atmega64, atmega128, at43usb355, at94k).
8657
8658 @item -msize
8659 @opindex msize
8660 Output instruction sizes to the asm file.
8661
8662 @item -minit-stack=@var{N}
8663 @opindex minit-stack
8664 Specify the initial stack address, which may be a symbol or numeric value,
8665 @samp{__stack} is the default.
8666
8667 @item -mno-interrupts
8668 @opindex mno-interrupts
8669 Generated code is not compatible with hardware interrupts.
8670 Code size will be smaller.
8671
8672 @item -mcall-prologues
8673 @opindex mcall-prologues
8674 Functions prologues/epilogues expanded as call to appropriate
8675 subroutines.  Code size will be smaller.
8676
8677 @item -mno-tablejump
8678 @opindex mno-tablejump
8679 Do not generate tablejump insns which sometimes increase code size.
8680
8681 @item -mtiny-stack
8682 @opindex mtiny-stack
8683 Change only the low 8 bits of the stack pointer.
8684
8685 @item -mint8
8686 @opindex mint8
8687 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8688 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8689 and long long will be 4 bytes.  Please note that this option does not
8690 comply to the C standards, but it will provide you with smaller code
8691 size.
8692 @end table
8693
8694 @node Blackfin Options
8695 @subsection Blackfin Options
8696 @cindex Blackfin Options
8697
8698 @table @gcctabopt
8699 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8700 @opindex mcpu=
8701 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8702 can be one of @samp{bf522}, @samp{bf523}, @samp{bf524},
8703 @samp{bf525}, @samp{bf526}, @samp{bf527},
8704 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8705 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8706 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
8707 @samp{bf561}.
8708 The optional @var{sirevision} specifies the silicon revision of the target
8709 Blackfin processor.  Any workarounds available for the targeted silicon revision
8710 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8711 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8712 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8713 hexadecimal digits representing the major and minor numbers in the silicon
8714 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8715 is not defined.  If @var{sirevision} is @samp{any}, the
8716 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8717 If this optional @var{sirevision} is not used, GCC assumes the latest known
8718 silicon revision of the targeted Blackfin processor.
8719
8720 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8721 Only the processor macro is defined.
8722 Without this option, @samp{bf532} is used as the processor by default.
8723 The corresponding predefined processor macros for @var{cpu} is to
8724 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8725 provided by libgloss to be linked in if @option{-msim} is not given.
8726
8727 @item -msim
8728 @opindex msim
8729 Specifies that the program will be run on the simulator.  This causes
8730 the simulator BSP provided by libgloss to be linked in.  This option
8731 has effect only for @samp{bfin-elf} toolchain.
8732 Certain other options, such as @option{-mid-shared-library} and
8733 @option{-mfdpic}, imply @option{-msim}.
8734
8735 @item -momit-leaf-frame-pointer
8736 @opindex momit-leaf-frame-pointer
8737 Don't keep the frame pointer in a register for leaf functions.  This
8738 avoids the instructions to save, set up and restore frame pointers and
8739 makes an extra register available in leaf functions.  The option
8740 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8741 which might make debugging harder.
8742
8743 @item -mspecld-anomaly
8744 @opindex mspecld-anomaly
8745 When enabled, the compiler will ensure that the generated code does not
8746 contain speculative loads after jump instructions. If this option is used,
8747 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8748
8749 @item -mno-specld-anomaly
8750 @opindex mno-specld-anomaly
8751 Don't generate extra code to prevent speculative loads from occurring.
8752
8753 @item -mcsync-anomaly
8754 @opindex mcsync-anomaly
8755 When enabled, the compiler will ensure that the generated code does not
8756 contain CSYNC or SSYNC instructions too soon after conditional branches.
8757 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8758
8759 @item -mno-csync-anomaly
8760 @opindex mno-csync-anomaly
8761 Don't generate extra code to prevent CSYNC or SSYNC instructions from
8762 occurring too soon after a conditional branch.
8763
8764 @item -mlow-64k
8765 @opindex mlow-64k
8766 When enabled, the compiler is free to take advantage of the knowledge that
8767 the entire program fits into the low 64k of memory.
8768
8769 @item -mno-low-64k
8770 @opindex mno-low-64k
8771 Assume that the program is arbitrarily large.  This is the default.
8772
8773 @item -mstack-check-l1
8774 @opindex mstack-check-l1
8775 Do stack checking using information placed into L1 scratchpad memory by the
8776 uClinux kernel.
8777
8778 @item -mid-shared-library
8779 @opindex mid-shared-library
8780 Generate code that supports shared libraries via the library ID method.
8781 This allows for execute in place and shared libraries in an environment
8782 without virtual memory management.  This option implies @option{-fPIC}.
8783 With a @samp{bfin-elf} target, this option implies @option{-msim}.
8784
8785 @item -mno-id-shared-library
8786 @opindex mno-id-shared-library
8787 Generate code that doesn't assume ID based shared libraries are being used.
8788 This is the default.
8789
8790 @item -mleaf-id-shared-library
8791 @opindex mleaf-id-shared-library
8792 Generate code that supports shared libraries via the library ID method,
8793 but assumes that this library or executable won't link against any other
8794 ID shared libraries.  That allows the compiler to use faster code for jumps
8795 and calls.
8796
8797 @item -mno-leaf-id-shared-library
8798 @opindex mno-leaf-id-shared-library
8799 Do not assume that the code being compiled won't link against any ID shared
8800 libraries.  Slower code will be generated for jump and call insns.
8801
8802 @item -mshared-library-id=n
8803 @opindex mshared-library-id
8804 Specified the identification number of the ID based shared library being
8805 compiled.  Specifying a value of 0 will generate more compact code, specifying
8806 other values will force the allocation of that number to the current
8807 library but is no more space or time efficient than omitting this option.
8808
8809 @item -msep-data
8810 @opindex msep-data
8811 Generate code that allows the data segment to be located in a different
8812 area of memory from the text segment.  This allows for execute in place in
8813 an environment without virtual memory management by eliminating relocations
8814 against the text section.
8815
8816 @item -mno-sep-data
8817 @opindex mno-sep-data
8818 Generate code that assumes that the data segment follows the text segment.
8819 This is the default.
8820
8821 @item -mlong-calls
8822 @itemx -mno-long-calls
8823 @opindex mlong-calls
8824 @opindex mno-long-calls
8825 Tells the compiler to perform function calls by first loading the
8826 address of the function into a register and then performing a subroutine
8827 call on this register.  This switch is needed if the target function
8828 will lie outside of the 24 bit addressing range of the offset based
8829 version of subroutine call instruction.
8830
8831 This feature is not enabled by default.  Specifying
8832 @option{-mno-long-calls} will restore the default behavior.  Note these
8833 switches have no effect on how the compiler generates code to handle
8834 function calls via function pointers.
8835
8836 @item -mfast-fp
8837 @opindex mfast-fp
8838 Link with the fast floating-point library. This library relaxes some of
8839 the IEEE floating-point standard's rules for checking inputs against
8840 Not-a-Number (NAN), in the interest of performance.
8841
8842 @item -minline-plt
8843 @opindex minline-plt
8844 Enable inlining of PLT entries in function calls to functions that are
8845 not known to bind locally.  It has no effect without @option{-mfdpic}.
8846 @end table
8847
8848 @node CRIS Options
8849 @subsection CRIS Options
8850 @cindex CRIS Options
8851
8852 These options are defined specifically for the CRIS ports.
8853
8854 @table @gcctabopt
8855 @item -march=@var{architecture-type}
8856 @itemx -mcpu=@var{architecture-type}
8857 @opindex march
8858 @opindex mcpu
8859 Generate code for the specified architecture.  The choices for
8860 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
8861 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
8862 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
8863 @samp{v10}.
8864
8865 @item -mtune=@var{architecture-type}
8866 @opindex mtune
8867 Tune to @var{architecture-type} everything applicable about the generated
8868 code, except for the ABI and the set of available instructions.  The
8869 choices for @var{architecture-type} are the same as for
8870 @option{-march=@var{architecture-type}}.
8871
8872 @item -mmax-stack-frame=@var{n}
8873 @opindex mmax-stack-frame
8874 Warn when the stack frame of a function exceeds @var{n} bytes.
8875
8876 @item -melinux-stacksize=@var{n}
8877 @opindex melinux-stacksize
8878 Only available with the @samp{cris-axis-aout} target.  Arranges for
8879 indications in the program to the kernel loader that the stack of the
8880 program should be set to @var{n} bytes.
8881
8882 @item -metrax4
8883 @itemx -metrax100
8884 @opindex metrax4
8885 @opindex metrax100
8886 The options @option{-metrax4} and @option{-metrax100} are synonyms for
8887 @option{-march=v3} and @option{-march=v8} respectively.
8888
8889 @item -mmul-bug-workaround
8890 @itemx -mno-mul-bug-workaround
8891 @opindex mmul-bug-workaround
8892 @opindex mno-mul-bug-workaround
8893 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
8894 models where it applies.  This option is active by default.
8895
8896 @item -mpdebug
8897 @opindex mpdebug
8898 Enable CRIS-specific verbose debug-related information in the assembly
8899 code.  This option also has the effect to turn off the @samp{#NO_APP}
8900 formatted-code indicator to the assembler at the beginning of the
8901 assembly file.
8902
8903 @item -mcc-init
8904 @opindex mcc-init
8905 Do not use condition-code results from previous instruction; always emit
8906 compare and test instructions before use of condition codes.
8907
8908 @item -mno-side-effects
8909 @opindex mno-side-effects
8910 Do not emit instructions with side-effects in addressing modes other than
8911 post-increment.
8912
8913 @item -mstack-align
8914 @itemx -mno-stack-align
8915 @itemx -mdata-align
8916 @itemx -mno-data-align
8917 @itemx -mconst-align
8918 @itemx -mno-const-align
8919 @opindex mstack-align
8920 @opindex mno-stack-align
8921 @opindex mdata-align
8922 @opindex mno-data-align
8923 @opindex mconst-align
8924 @opindex mno-const-align
8925 These options (no-options) arranges (eliminate arrangements) for the
8926 stack-frame, individual data and constants to be aligned for the maximum
8927 single data access size for the chosen CPU model.  The default is to
8928 arrange for 32-bit alignment.  ABI details such as structure layout are
8929 not affected by these options.
8930
8931 @item -m32-bit
8932 @itemx -m16-bit
8933 @itemx -m8-bit
8934 @opindex m32-bit
8935 @opindex m16-bit
8936 @opindex m8-bit
8937 Similar to the stack- data- and const-align options above, these options
8938 arrange for stack-frame, writable data and constants to all be 32-bit,
8939 16-bit or 8-bit aligned.  The default is 32-bit alignment.
8940
8941 @item -mno-prologue-epilogue
8942 @itemx -mprologue-epilogue
8943 @opindex mno-prologue-epilogue
8944 @opindex mprologue-epilogue
8945 With @option{-mno-prologue-epilogue}, the normal function prologue and
8946 epilogue that sets up the stack-frame are omitted and no return
8947 instructions or return sequences are generated in the code.  Use this
8948 option only together with visual inspection of the compiled code: no
8949 warnings or errors are generated when call-saved registers must be saved,
8950 or storage for local variable needs to be allocated.
8951
8952 @item -mno-gotplt
8953 @itemx -mgotplt
8954 @opindex mno-gotplt
8955 @opindex mgotplt
8956 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
8957 instruction sequences that load addresses for functions from the PLT part
8958 of the GOT rather than (traditional on other architectures) calls to the
8959 PLT@.  The default is @option{-mgotplt}.
8960
8961 @item -maout
8962 @opindex maout
8963 Legacy no-op option only recognized with the cris-axis-aout target.
8964
8965 @item -melf
8966 @opindex melf
8967 Legacy no-op option only recognized with the cris-axis-elf and
8968 cris-axis-linux-gnu targets.
8969
8970 @item -melinux
8971 @opindex melinux
8972 Only recognized with the cris-axis-aout target, where it selects a
8973 GNU/linux-like multilib, include files and instruction set for
8974 @option{-march=v8}.
8975
8976 @item -mlinux
8977 @opindex mlinux
8978 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
8979
8980 @item -sim
8981 @opindex sim
8982 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
8983 to link with input-output functions from a simulator library.  Code,
8984 initialized data and zero-initialized data are allocated consecutively.
8985
8986 @item -sim2
8987 @opindex sim2
8988 Like @option{-sim}, but pass linker options to locate initialized data at
8989 0x40000000 and zero-initialized data at 0x80000000.
8990 @end table
8991
8992 @node CRX Options
8993 @subsection CRX Options
8994 @cindex CRX Options
8995
8996 These options are defined specifically for the CRX ports.
8997
8998 @table @gcctabopt
8999
9000 @item -mmac
9001 @opindex mmac
9002 Enable the use of multiply-accumulate instructions. Disabled by default.
9003
9004 @item -mpush-args
9005 @opindex mpush-args
9006 Push instructions will be used to pass outgoing arguments when functions
9007 are called. Enabled by default.
9008 @end table
9009
9010 @node Darwin Options
9011 @subsection Darwin Options
9012 @cindex Darwin options
9013
9014 These options are defined for all architectures running the Darwin operating
9015 system.
9016
9017 FSF GCC on Darwin does not create ``fat'' object files; it will create
9018 an object file for the single architecture that it was built to
9019 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
9020 @option{-arch} options are used; it does so by running the compiler or
9021 linker multiple times and joining the results together with
9022 @file{lipo}.
9023
9024 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
9025 @samp{i686}) is determined by the flags that specify the ISA
9026 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
9027 @option{-force_cpusubtype_ALL} option can be used to override this.
9028
9029 The Darwin tools vary in their behavior when presented with an ISA
9030 mismatch.  The assembler, @file{as}, will only permit instructions to
9031 be used that are valid for the subtype of the file it is generating,
9032 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
9033 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
9034 and print an error if asked to create a shared library with a less
9035 restrictive subtype than its input files (for instance, trying to put
9036 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
9037 for executables, @file{ld}, will quietly give the executable the most
9038 restrictive subtype of any of its input files.
9039
9040 @table @gcctabopt
9041 @item -F@var{dir}
9042 @opindex F
9043 Add the framework directory @var{dir} to the head of the list of
9044 directories to be searched for header files.  These directories are
9045 interleaved with those specified by @option{-I} options and are
9046 scanned in a left-to-right order.
9047
9048 A framework directory is a directory with frameworks in it.  A
9049 framework is a directory with a @samp{"Headers"} and/or
9050 @samp{"PrivateHeaders"} directory contained directly in it that ends
9051 in @samp{".framework"}.  The name of a framework is the name of this
9052 directory excluding the @samp{".framework"}.  Headers associated with
9053 the framework are found in one of those two directories, with
9054 @samp{"Headers"} being searched first.  A subframework is a framework
9055 directory that is in a framework's @samp{"Frameworks"} directory.
9056 Includes of subframework headers can only appear in a header of a
9057 framework that contains the subframework, or in a sibling subframework
9058 header.  Two subframeworks are siblings if they occur in the same
9059 framework.  A subframework should not have the same name as a
9060 framework, a warning will be issued if this is violated.  Currently a
9061 subframework cannot have subframeworks, in the future, the mechanism
9062 may be extended to support this.  The standard frameworks can be found
9063 in @samp{"/System/Library/Frameworks"} and
9064 @samp{"/Library/Frameworks"}.  An example include looks like
9065 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
9066 the name of the framework and header.h is found in the
9067 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
9068
9069 @item -iframework@var{dir}
9070 @opindex iframework
9071 Like @option{-F} except the directory is a treated as a system
9072 directory.  The main difference between this @option{-iframework} and
9073 @option{-F} is that with @option{-iframework} the compiler does not
9074 warn about constructs contained within header files found via
9075 @var{dir}.  This option is valid only for the C family of languages.
9076
9077 @item -gused
9078 @opindex gused
9079 Emit debugging information for symbols that are used.  For STABS
9080 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
9081 This is by default ON@.
9082
9083 @item -gfull
9084 @opindex gfull
9085 Emit debugging information for all symbols and types.
9086
9087 @item -mmacosx-version-min=@var{version}
9088 The earliest version of MacOS X that this executable will run on
9089 is @var{version}.  Typical values of @var{version} include @code{10.1},
9090 @code{10.2}, and @code{10.3.9}.
9091
9092 If the compiler was built to use the system's headers by default,
9093 then the default for this option is the system version on which the
9094 compiler is running, otherwise the default is to make choices which
9095 are compatible with as many systems and code bases as possible.
9096
9097 @item -mkernel
9098 @opindex mkernel
9099 Enable kernel development mode.  The @option{-mkernel} option sets
9100 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
9101 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
9102 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
9103 applicable.  This mode also sets @option{-mno-altivec},
9104 @option{-msoft-float}, @option{-fno-builtin} and
9105 @option{-mlong-branch} for PowerPC targets.
9106
9107 @item -mone-byte-bool
9108 @opindex mone-byte-bool
9109 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
9110 By default @samp{sizeof(bool)} is @samp{4} when compiling for
9111 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
9112 option has no effect on x86.
9113
9114 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
9115 to generate code that is not binary compatible with code generated
9116 without that switch.  Using this switch may require recompiling all
9117 other modules in a program, including system libraries.  Use this
9118 switch to conform to a non-default data model.
9119
9120 @item -mfix-and-continue
9121 @itemx -ffix-and-continue
9122 @itemx -findirect-data
9123 @opindex mfix-and-continue
9124 @opindex ffix-and-continue
9125 @opindex findirect-data
9126 Generate code suitable for fast turn around development.  Needed to
9127 enable gdb to dynamically load @code{.o} files into already running
9128 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
9129 are provided for backwards compatibility.
9130
9131 @item -all_load
9132 @opindex all_load
9133 Loads all members of static archive libraries.
9134 See man ld(1) for more information.
9135
9136 @item -arch_errors_fatal
9137 @opindex arch_errors_fatal
9138 Cause the errors having to do with files that have the wrong architecture
9139 to be fatal.
9140
9141 @item -bind_at_load
9142 @opindex bind_at_load
9143 Causes the output file to be marked such that the dynamic linker will
9144 bind all undefined references when the file is loaded or launched.
9145
9146 @item -bundle
9147 @opindex bundle
9148 Produce a Mach-o bundle format file.
9149 See man ld(1) for more information.
9150
9151 @item -bundle_loader @var{executable}
9152 @opindex bundle_loader
9153 This option specifies the @var{executable} that will be loading the build
9154 output file being linked.  See man ld(1) for more information.
9155
9156 @item -dynamiclib
9157 @opindex dynamiclib
9158 When passed this option, GCC will produce a dynamic library instead of
9159 an executable when linking, using the Darwin @file{libtool} command.
9160
9161 @item -force_cpusubtype_ALL
9162 @opindex force_cpusubtype_ALL
9163 This causes GCC's output file to have the @var{ALL} subtype, instead of
9164 one controlled by the @option{-mcpu} or @option{-march} option.
9165
9166 @item -allowable_client  @var{client_name}
9167 @itemx -client_name
9168 @itemx -compatibility_version
9169 @itemx -current_version
9170 @itemx -dead_strip
9171 @itemx -dependency-file
9172 @itemx -dylib_file
9173 @itemx -dylinker_install_name
9174 @itemx -dynamic
9175 @itemx -exported_symbols_list
9176 @itemx -filelist
9177 @itemx -flat_namespace
9178 @itemx -force_flat_namespace
9179 @itemx -headerpad_max_install_names
9180 @itemx -image_base
9181 @itemx -init
9182 @itemx -install_name
9183 @itemx -keep_private_externs
9184 @itemx -multi_module
9185 @itemx -multiply_defined
9186 @itemx -multiply_defined_unused
9187 @itemx -noall_load
9188 @itemx -no_dead_strip_inits_and_terms
9189 @itemx -nofixprebinding
9190 @itemx -nomultidefs
9191 @itemx -noprebind
9192 @itemx -noseglinkedit
9193 @itemx -pagezero_size
9194 @itemx -prebind
9195 @itemx -prebind_all_twolevel_modules
9196 @itemx -private_bundle
9197 @itemx -read_only_relocs
9198 @itemx -sectalign
9199 @itemx -sectobjectsymbols
9200 @itemx -whyload
9201 @itemx -seg1addr
9202 @itemx -sectcreate
9203 @itemx -sectobjectsymbols
9204 @itemx -sectorder
9205 @itemx -segaddr
9206 @itemx -segs_read_only_addr
9207 @itemx -segs_read_write_addr
9208 @itemx -seg_addr_table
9209 @itemx -seg_addr_table_filename
9210 @itemx -seglinkedit
9211 @itemx -segprot
9212 @itemx -segs_read_only_addr
9213 @itemx -segs_read_write_addr
9214 @itemx -single_module
9215 @itemx -static
9216 @itemx -sub_library
9217 @itemx -sub_umbrella
9218 @itemx -twolevel_namespace
9219 @itemx -umbrella
9220 @itemx -undefined
9221 @itemx -unexported_symbols_list
9222 @itemx -weak_reference_mismatches
9223 @itemx -whatsloaded
9224
9225 @opindex allowable_client
9226 @opindex client_name
9227 @opindex compatibility_version
9228 @opindex current_version
9229 @opindex dead_strip
9230 @opindex dependency-file
9231 @opindex dylib_file
9232 @opindex dylinker_install_name
9233 @opindex dynamic
9234 @opindex exported_symbols_list
9235 @opindex filelist
9236 @opindex flat_namespace
9237 @opindex force_flat_namespace
9238 @opindex headerpad_max_install_names
9239 @opindex image_base
9240 @opindex init
9241 @opindex install_name
9242 @opindex keep_private_externs
9243 @opindex multi_module
9244 @opindex multiply_defined
9245 @opindex multiply_defined_unused
9246 @opindex noall_load
9247 @opindex no_dead_strip_inits_and_terms
9248 @opindex nofixprebinding
9249 @opindex nomultidefs
9250 @opindex noprebind
9251 @opindex noseglinkedit
9252 @opindex pagezero_size
9253 @opindex prebind
9254 @opindex prebind_all_twolevel_modules
9255 @opindex private_bundle
9256 @opindex read_only_relocs
9257 @opindex sectalign
9258 @opindex sectobjectsymbols
9259 @opindex whyload
9260 @opindex seg1addr
9261 @opindex sectcreate
9262 @opindex sectobjectsymbols
9263 @opindex sectorder
9264 @opindex segaddr
9265 @opindex segs_read_only_addr
9266 @opindex segs_read_write_addr
9267 @opindex seg_addr_table
9268 @opindex seg_addr_table_filename
9269 @opindex seglinkedit
9270 @opindex segprot
9271 @opindex segs_read_only_addr
9272 @opindex segs_read_write_addr
9273 @opindex single_module
9274 @opindex static
9275 @opindex sub_library
9276 @opindex sub_umbrella
9277 @opindex twolevel_namespace
9278 @opindex umbrella
9279 @opindex undefined
9280 @opindex unexported_symbols_list
9281 @opindex weak_reference_mismatches
9282 @opindex whatsloaded
9283
9284 These options are passed to the Darwin linker.  The Darwin linker man page
9285 describes them in detail.
9286 @end table
9287
9288 @node DEC Alpha Options
9289 @subsection DEC Alpha Options
9290
9291 These @samp{-m} options are defined for the DEC Alpha implementations:
9292
9293 @table @gcctabopt
9294 @item -mno-soft-float
9295 @itemx -msoft-float
9296 @opindex mno-soft-float
9297 @opindex msoft-float
9298 Use (do not use) the hardware floating-point instructions for
9299 floating-point operations.  When @option{-msoft-float} is specified,
9300 functions in @file{libgcc.a} will be used to perform floating-point
9301 operations.  Unless they are replaced by routines that emulate the
9302 floating-point operations, or compiled in such a way as to call such
9303 emulations routines, these routines will issue floating-point
9304 operations.   If you are compiling for an Alpha without floating-point
9305 operations, you must ensure that the library is built so as not to call
9306 them.
9307
9308 Note that Alpha implementations without floating-point operations are
9309 required to have floating-point registers.
9310
9311 @item -mfp-reg
9312 @itemx -mno-fp-regs
9313 @opindex mfp-reg
9314 @opindex mno-fp-regs
9315 Generate code that uses (does not use) the floating-point register set.
9316 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9317 register set is not used, floating point operands are passed in integer
9318 registers as if they were integers and floating-point results are passed
9319 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9320 so any function with a floating-point argument or return value called by code
9321 compiled with @option{-mno-fp-regs} must also be compiled with that
9322 option.
9323
9324 A typical use of this option is building a kernel that does not use,
9325 and hence need not save and restore, any floating-point registers.
9326
9327 @item -mieee
9328 @opindex mieee
9329 The Alpha architecture implements floating-point hardware optimized for
9330 maximum performance.  It is mostly compliant with the IEEE floating
9331 point standard.  However, for full compliance, software assistance is
9332 required.  This option generates code fully IEEE compliant code
9333 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9334 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9335 defined during compilation.  The resulting code is less efficient but is
9336 able to correctly support denormalized numbers and exceptional IEEE
9337 values such as not-a-number and plus/minus infinity.  Other Alpha
9338 compilers call this option @option{-ieee_with_no_inexact}.
9339
9340 @item -mieee-with-inexact
9341 @opindex mieee-with-inexact
9342 This is like @option{-mieee} except the generated code also maintains
9343 the IEEE @var{inexact-flag}.  Turning on this option causes the
9344 generated code to implement fully-compliant IEEE math.  In addition to
9345 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9346 macro.  On some Alpha implementations the resulting code may execute
9347 significantly slower than the code generated by default.  Since there is
9348 very little code that depends on the @var{inexact-flag}, you should
9349 normally not specify this option.  Other Alpha compilers call this
9350 option @option{-ieee_with_inexact}.
9351
9352 @item -mfp-trap-mode=@var{trap-mode}
9353 @opindex mfp-trap-mode
9354 This option controls what floating-point related traps are enabled.
9355 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9356 The trap mode can be set to one of four values:
9357
9358 @table @samp
9359 @item n
9360 This is the default (normal) setting.  The only traps that are enabled
9361 are the ones that cannot be disabled in software (e.g., division by zero
9362 trap).
9363
9364 @item u
9365 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9366 as well.
9367
9368 @item su
9369 Like @samp{u}, but the instructions are marked to be safe for software
9370 completion (see Alpha architecture manual for details).
9371
9372 @item sui
9373 Like @samp{su}, but inexact traps are enabled as well.
9374 @end table
9375
9376 @item -mfp-rounding-mode=@var{rounding-mode}
9377 @opindex mfp-rounding-mode
9378 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9379 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9380 of:
9381
9382 @table @samp
9383 @item n
9384 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9385 the nearest machine number or towards the even machine number in case
9386 of a tie.
9387
9388 @item m
9389 Round towards minus infinity.
9390
9391 @item c
9392 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9393
9394 @item d
9395 Dynamic rounding mode.  A field in the floating point control register
9396 (@var{fpcr}, see Alpha architecture reference manual) controls the
9397 rounding mode in effect.  The C library initializes this register for
9398 rounding towards plus infinity.  Thus, unless your program modifies the
9399 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9400 @end table
9401
9402 @item -mtrap-precision=@var{trap-precision}
9403 @opindex mtrap-precision
9404 In the Alpha architecture, floating point traps are imprecise.  This
9405 means without software assistance it is impossible to recover from a
9406 floating trap and program execution normally needs to be terminated.
9407 GCC can generate code that can assist operating system trap handlers
9408 in determining the exact location that caused a floating point trap.
9409 Depending on the requirements of an application, different levels of
9410 precisions can be selected:
9411
9412 @table @samp
9413 @item p
9414 Program precision.  This option is the default and means a trap handler
9415 can only identify which program caused a floating point exception.
9416
9417 @item f
9418 Function precision.  The trap handler can determine the function that
9419 caused a floating point exception.
9420
9421 @item i
9422 Instruction precision.  The trap handler can determine the exact
9423 instruction that caused a floating point exception.
9424 @end table
9425
9426 Other Alpha compilers provide the equivalent options called
9427 @option{-scope_safe} and @option{-resumption_safe}.
9428
9429 @item -mieee-conformant
9430 @opindex mieee-conformant
9431 This option marks the generated code as IEEE conformant.  You must not
9432 use this option unless you also specify @option{-mtrap-precision=i} and either
9433 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9434 is to emit the line @samp{.eflag 48} in the function prologue of the
9435 generated assembly file.  Under DEC Unix, this has the effect that
9436 IEEE-conformant math library routines will be linked in.
9437
9438 @item -mbuild-constants
9439 @opindex mbuild-constants
9440 Normally GCC examines a 32- or 64-bit integer constant to
9441 see if it can construct it from smaller constants in two or three
9442 instructions.  If it cannot, it will output the constant as a literal and
9443 generate code to load it from the data segment at runtime.
9444
9445 Use this option to require GCC to construct @emph{all} integer constants
9446 using code, even if it takes more instructions (the maximum is six).
9447
9448 You would typically use this option to build a shared library dynamic
9449 loader.  Itself a shared library, it must relocate itself in memory
9450 before it can find the variables and constants in its own data segment.
9451
9452 @item -malpha-as
9453 @itemx -mgas
9454 @opindex malpha-as
9455 @opindex mgas
9456 Select whether to generate code to be assembled by the vendor-supplied
9457 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9458
9459 @item -mbwx
9460 @itemx -mno-bwx
9461 @itemx -mcix
9462 @itemx -mno-cix
9463 @itemx -mfix
9464 @itemx -mno-fix
9465 @itemx -mmax
9466 @itemx -mno-max
9467 @opindex mbwx
9468 @opindex mno-bwx
9469 @opindex mcix
9470 @opindex mno-cix
9471 @opindex mfix
9472 @opindex mno-fix
9473 @opindex mmax
9474 @opindex mno-max
9475 Indicate whether GCC should generate code to use the optional BWX,
9476 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9477 sets supported by the CPU type specified via @option{-mcpu=} option or that
9478 of the CPU on which GCC was built if none was specified.
9479
9480 @item -mfloat-vax
9481 @itemx -mfloat-ieee
9482 @opindex mfloat-vax
9483 @opindex mfloat-ieee
9484 Generate code that uses (does not use) VAX F and G floating point
9485 arithmetic instead of IEEE single and double precision.
9486
9487 @item -mexplicit-relocs
9488 @itemx -mno-explicit-relocs
9489 @opindex mexplicit-relocs
9490 @opindex mno-explicit-relocs
9491 Older Alpha assemblers provided no way to generate symbol relocations
9492 except via assembler macros.  Use of these macros does not allow
9493 optimal instruction scheduling.  GNU binutils as of version 2.12
9494 supports a new syntax that allows the compiler to explicitly mark
9495 which relocations should apply to which instructions.  This option
9496 is mostly useful for debugging, as GCC detects the capabilities of
9497 the assembler when it is built and sets the default accordingly.
9498
9499 @item -msmall-data
9500 @itemx -mlarge-data
9501 @opindex msmall-data
9502 @opindex mlarge-data
9503 When @option{-mexplicit-relocs} is in effect, static data is
9504 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9505 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9506 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9507 16-bit relocations off of the @code{$gp} register.  This limits the
9508 size of the small data area to 64KB, but allows the variables to be
9509 directly accessed via a single instruction.
9510
9511 The default is @option{-mlarge-data}.  With this option the data area
9512 is limited to just below 2GB@.  Programs that require more than 2GB of
9513 data must use @code{malloc} or @code{mmap} to allocate the data in the
9514 heap instead of in the program's data segment.
9515
9516 When generating code for shared libraries, @option{-fpic} implies
9517 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9518
9519 @item -msmall-text
9520 @itemx -mlarge-text
9521 @opindex msmall-text
9522 @opindex mlarge-text
9523 When @option{-msmall-text} is used, the compiler assumes that the
9524 code of the entire program (or shared library) fits in 4MB, and is
9525 thus reachable with a branch instruction.  When @option{-msmall-data}
9526 is used, the compiler can assume that all local symbols share the
9527 same @code{$gp} value, and thus reduce the number of instructions
9528 required for a function call from 4 to 1.
9529
9530 The default is @option{-mlarge-text}.
9531
9532 @item -mcpu=@var{cpu_type}
9533 @opindex mcpu
9534 Set the instruction set and instruction scheduling parameters for
9535 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9536 style name or the corresponding chip number.  GCC supports scheduling
9537 parameters for the EV4, EV5 and EV6 family of processors and will
9538 choose the default values for the instruction set from the processor
9539 you specify.  If you do not specify a processor type, GCC will default
9540 to the processor on which the compiler was built.
9541
9542 Supported values for @var{cpu_type} are
9543
9544 @table @samp
9545 @item ev4
9546 @itemx ev45
9547 @itemx 21064
9548 Schedules as an EV4 and has no instruction set extensions.
9549
9550 @item ev5
9551 @itemx 21164
9552 Schedules as an EV5 and has no instruction set extensions.
9553
9554 @item ev56
9555 @itemx 21164a
9556 Schedules as an EV5 and supports the BWX extension.
9557
9558 @item pca56
9559 @itemx 21164pc
9560 @itemx 21164PC
9561 Schedules as an EV5 and supports the BWX and MAX extensions.
9562
9563 @item ev6
9564 @itemx 21264
9565 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9566
9567 @item ev67
9568 @itemx 21264a
9569 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9570 @end table
9571
9572 @item -mtune=@var{cpu_type}
9573 @opindex mtune
9574 Set only the instruction scheduling parameters for machine type
9575 @var{cpu_type}.  The instruction set is not changed.
9576
9577 @item -mmemory-latency=@var{time}
9578 @opindex mmemory-latency
9579 Sets the latency the scheduler should assume for typical memory
9580 references as seen by the application.  This number is highly
9581 dependent on the memory access patterns used by the application
9582 and the size of the external cache on the machine.
9583
9584 Valid options for @var{time} are
9585
9586 @table @samp
9587 @item @var{number}
9588 A decimal number representing clock cycles.
9589
9590 @item L1
9591 @itemx L2
9592 @itemx L3
9593 @itemx main
9594 The compiler contains estimates of the number of clock cycles for
9595 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9596 (also called Dcache, Scache, and Bcache), as well as to main memory.
9597 Note that L3 is only valid for EV5.
9598
9599 @end table
9600 @end table
9601
9602 @node DEC Alpha/VMS Options
9603 @subsection DEC Alpha/VMS Options
9604
9605 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9606
9607 @table @gcctabopt
9608 @item -mvms-return-codes
9609 @opindex mvms-return-codes
9610 Return VMS condition codes from main.  The default is to return POSIX
9611 style condition (e.g.@: error) codes.
9612 @end table
9613
9614 @node FRV Options
9615 @subsection FRV Options
9616 @cindex FRV Options
9617
9618 @table @gcctabopt
9619 @item -mgpr-32
9620 @opindex mgpr-32
9621
9622 Only use the first 32 general purpose registers.
9623
9624 @item -mgpr-64
9625 @opindex mgpr-64
9626
9627 Use all 64 general purpose registers.
9628
9629 @item -mfpr-32
9630 @opindex mfpr-32
9631
9632 Use only the first 32 floating point registers.
9633
9634 @item -mfpr-64
9635 @opindex mfpr-64
9636
9637 Use all 64 floating point registers
9638
9639 @item -mhard-float
9640 @opindex mhard-float
9641
9642 Use hardware instructions for floating point operations.
9643
9644 @item -msoft-float
9645 @opindex msoft-float
9646
9647 Use library routines for floating point operations.
9648
9649 @item -malloc-cc
9650 @opindex malloc-cc
9651
9652 Dynamically allocate condition code registers.
9653
9654 @item -mfixed-cc
9655 @opindex mfixed-cc
9656
9657 Do not try to dynamically allocate condition code registers, only
9658 use @code{icc0} and @code{fcc0}.
9659
9660 @item -mdword
9661 @opindex mdword
9662
9663 Change ABI to use double word insns.
9664
9665 @item -mno-dword
9666 @opindex mno-dword
9667
9668 Do not use double word instructions.
9669
9670 @item -mdouble
9671 @opindex mdouble
9672
9673 Use floating point double instructions.
9674
9675 @item -mno-double
9676 @opindex mno-double
9677
9678 Do not use floating point double instructions.
9679
9680 @item -mmedia
9681 @opindex mmedia
9682
9683 Use media instructions.
9684
9685 @item -mno-media
9686 @opindex mno-media
9687
9688 Do not use media instructions.
9689
9690 @item -mmuladd
9691 @opindex mmuladd
9692
9693 Use multiply and add/subtract instructions.
9694
9695 @item -mno-muladd
9696 @opindex mno-muladd
9697
9698 Do not use multiply and add/subtract instructions.
9699
9700 @item -mfdpic
9701 @opindex mfdpic
9702
9703 Select the FDPIC ABI, that uses function descriptors to represent
9704 pointers to functions.  Without any PIC/PIE-related options, it
9705 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9706 assumes GOT entries and small data are within a 12-bit range from the
9707 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9708 are computed with 32 bits.
9709 With a @samp{bfin-elf} target, this option implies @option{-msim}.
9710
9711 @item -minline-plt
9712 @opindex minline-plt
9713
9714 Enable inlining of PLT entries in function calls to functions that are
9715 not known to bind locally.  It has no effect without @option{-mfdpic}.
9716 It's enabled by default if optimizing for speed and compiling for
9717 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9718 optimization option such as @option{-O3} or above is present in the
9719 command line.
9720
9721 @item -mTLS
9722 @opindex TLS
9723
9724 Assume a large TLS segment when generating thread-local code.
9725
9726 @item -mtls
9727 @opindex tls
9728
9729 Do not assume a large TLS segment when generating thread-local code.
9730
9731 @item -mgprel-ro
9732 @opindex mgprel-ro
9733
9734 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9735 that is known to be in read-only sections.  It's enabled by default,
9736 except for @option{-fpic} or @option{-fpie}: even though it may help
9737 make the global offset table smaller, it trades 1 instruction for 4.
9738 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9739 one of which may be shared by multiple symbols, and it avoids the need
9740 for a GOT entry for the referenced symbol, so it's more likely to be a
9741 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
9742
9743 @item -multilib-library-pic
9744 @opindex multilib-library-pic
9745
9746 Link with the (library, not FD) pic libraries.  It's implied by
9747 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
9748 @option{-fpic} without @option{-mfdpic}.  You should never have to use
9749 it explicitly.
9750
9751 @item -mlinked-fp
9752 @opindex mlinked-fp
9753
9754 Follow the EABI requirement of always creating a frame pointer whenever
9755 a stack frame is allocated.  This option is enabled by default and can
9756 be disabled with @option{-mno-linked-fp}.
9757
9758 @item -mlong-calls
9759 @opindex mlong-calls
9760
9761 Use indirect addressing to call functions outside the current
9762 compilation unit.  This allows the functions to be placed anywhere
9763 within the 32-bit address space.
9764
9765 @item -malign-labels
9766 @opindex malign-labels
9767
9768 Try to align labels to an 8-byte boundary by inserting nops into the
9769 previous packet.  This option only has an effect when VLIW packing
9770 is enabled.  It doesn't create new packets; it merely adds nops to
9771 existing ones.
9772
9773 @item -mlibrary-pic
9774 @opindex mlibrary-pic
9775
9776 Generate position-independent EABI code.
9777
9778 @item -macc-4
9779 @opindex macc-4
9780
9781 Use only the first four media accumulator registers.
9782
9783 @item -macc-8
9784 @opindex macc-8
9785
9786 Use all eight media accumulator registers.
9787
9788 @item -mpack
9789 @opindex mpack
9790
9791 Pack VLIW instructions.
9792
9793 @item -mno-pack
9794 @opindex mno-pack
9795
9796 Do not pack VLIW instructions.
9797
9798 @item -mno-eflags
9799 @opindex mno-eflags
9800
9801 Do not mark ABI switches in e_flags.
9802
9803 @item -mcond-move
9804 @opindex mcond-move
9805
9806 Enable the use of conditional-move instructions (default).
9807
9808 This switch is mainly for debugging the compiler and will likely be removed
9809 in a future version.
9810
9811 @item -mno-cond-move
9812 @opindex mno-cond-move
9813
9814 Disable the use of conditional-move instructions.
9815
9816 This switch is mainly for debugging the compiler and will likely be removed
9817 in a future version.
9818
9819 @item -mscc
9820 @opindex mscc
9821
9822 Enable the use of conditional set instructions (default).
9823
9824 This switch is mainly for debugging the compiler and will likely be removed
9825 in a future version.
9826
9827 @item -mno-scc
9828 @opindex mno-scc
9829
9830 Disable the use of conditional set instructions.
9831
9832 This switch is mainly for debugging the compiler and will likely be removed
9833 in a future version.
9834
9835 @item -mcond-exec
9836 @opindex mcond-exec
9837
9838 Enable the use of conditional execution (default).
9839
9840 This switch is mainly for debugging the compiler and will likely be removed
9841 in a future version.
9842
9843 @item -mno-cond-exec
9844 @opindex mno-cond-exec
9845
9846 Disable the use of conditional execution.
9847
9848 This switch is mainly for debugging the compiler and will likely be removed
9849 in a future version.
9850
9851 @item -mvliw-branch
9852 @opindex mvliw-branch
9853
9854 Run a pass to pack branches into VLIW instructions (default).
9855
9856 This switch is mainly for debugging the compiler and will likely be removed
9857 in a future version.
9858
9859 @item -mno-vliw-branch
9860 @opindex mno-vliw-branch
9861
9862 Do not run a pass to pack branches into VLIW instructions.
9863
9864 This switch is mainly for debugging the compiler and will likely be removed
9865 in a future version.
9866
9867 @item -mmulti-cond-exec
9868 @opindex mmulti-cond-exec
9869
9870 Enable optimization of @code{&&} and @code{||} in conditional execution
9871 (default).
9872
9873 This switch is mainly for debugging the compiler and will likely be removed
9874 in a future version.
9875
9876 @item -mno-multi-cond-exec
9877 @opindex mno-multi-cond-exec
9878
9879 Disable optimization of @code{&&} and @code{||} in conditional execution.
9880
9881 This switch is mainly for debugging the compiler and will likely be removed
9882 in a future version.
9883
9884 @item -mnested-cond-exec
9885 @opindex mnested-cond-exec
9886
9887 Enable nested conditional execution optimizations (default).
9888
9889 This switch is mainly for debugging the compiler and will likely be removed
9890 in a future version.
9891
9892 @item -mno-nested-cond-exec
9893 @opindex mno-nested-cond-exec
9894
9895 Disable nested conditional execution optimizations.
9896
9897 This switch is mainly for debugging the compiler and will likely be removed
9898 in a future version.
9899
9900 @item -moptimize-membar
9901 @opindex moptimize-membar
9902
9903 This switch removes redundant @code{membar} instructions from the
9904 compiler generated code.  It is enabled by default.
9905
9906 @item -mno-optimize-membar
9907 @opindex mno-optimize-membar
9908
9909 This switch disables the automatic removal of redundant @code{membar}
9910 instructions from the generated code.
9911
9912 @item -mtomcat-stats
9913 @opindex mtomcat-stats
9914
9915 Cause gas to print out tomcat statistics.
9916
9917 @item -mcpu=@var{cpu}
9918 @opindex mcpu
9919
9920 Select the processor type for which to generate code.  Possible values are
9921 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
9922 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
9923
9924 @end table
9925
9926 @node GNU/Linux Options
9927 @subsection GNU/Linux Options
9928
9929 These @samp{-m} options are defined for GNU/Linux targets:
9930
9931 @table @gcctabopt
9932 @item -mglibc
9933 @opindex mglibc
9934 Use the GNU C library instead of uClibc.  This is the default except
9935 on @samp{*-*-linux-*uclibc*} targets.
9936
9937 @item -muclibc
9938 @opindex muclibc
9939 Use uClibc instead of the GNU C library.  This is the default on
9940 @samp{*-*-linux-*uclibc*} targets.
9941 @end table
9942
9943 @node H8/300 Options
9944 @subsection H8/300 Options
9945
9946 These @samp{-m} options are defined for the H8/300 implementations:
9947
9948 @table @gcctabopt
9949 @item -mrelax
9950 @opindex mrelax
9951 Shorten some address references at link time, when possible; uses the
9952 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
9953 ld, Using ld}, for a fuller description.
9954
9955 @item -mh
9956 @opindex mh
9957 Generate code for the H8/300H@.
9958
9959 @item -ms
9960 @opindex ms
9961 Generate code for the H8S@.
9962
9963 @item -mn
9964 @opindex mn
9965 Generate code for the H8S and H8/300H in the normal mode.  This switch
9966 must be used either with @option{-mh} or @option{-ms}.
9967
9968 @item -ms2600
9969 @opindex ms2600
9970 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
9971
9972 @item -mint32
9973 @opindex mint32
9974 Make @code{int} data 32 bits by default.
9975
9976 @item -malign-300
9977 @opindex malign-300
9978 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
9979 The default for the H8/300H and H8S is to align longs and floats on 4
9980 byte boundaries.
9981 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
9982 This option has no effect on the H8/300.
9983 @end table
9984
9985 @node HPPA Options
9986 @subsection HPPA Options
9987 @cindex HPPA Options
9988
9989 These @samp{-m} options are defined for the HPPA family of computers:
9990
9991 @table @gcctabopt
9992 @item -march=@var{architecture-type}
9993 @opindex march
9994 Generate code for the specified architecture.  The choices for
9995 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
9996 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
9997 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
9998 architecture option for your machine.  Code compiled for lower numbered
9999 architectures will run on higher numbered architectures, but not the
10000 other way around.
10001
10002 @item -mpa-risc-1-0
10003 @itemx -mpa-risc-1-1
10004 @itemx -mpa-risc-2-0
10005 @opindex mpa-risc-1-0
10006 @opindex mpa-risc-1-1
10007 @opindex mpa-risc-2-0
10008 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
10009
10010 @item -mbig-switch
10011 @opindex mbig-switch
10012 Generate code suitable for big switch tables.  Use this option only if
10013 the assembler/linker complain about out of range branches within a switch
10014 table.
10015
10016 @item -mjump-in-delay
10017 @opindex mjump-in-delay
10018 Fill delay slots of function calls with unconditional jump instructions
10019 by modifying the return pointer for the function call to be the target
10020 of the conditional jump.
10021
10022 @item -mdisable-fpregs
10023 @opindex mdisable-fpregs
10024 Prevent floating point registers from being used in any manner.  This is
10025 necessary for compiling kernels which perform lazy context switching of
10026 floating point registers.  If you use this option and attempt to perform
10027 floating point operations, the compiler will abort.
10028
10029 @item -mdisable-indexing
10030 @opindex mdisable-indexing
10031 Prevent the compiler from using indexing address modes.  This avoids some
10032 rather obscure problems when compiling MIG generated code under MACH@.
10033
10034 @item -mno-space-regs
10035 @opindex mno-space-regs
10036 Generate code that assumes the target has no space registers.  This allows
10037 GCC to generate faster indirect calls and use unscaled index address modes.
10038
10039 Such code is suitable for level 0 PA systems and kernels.
10040
10041 @item -mfast-indirect-calls
10042 @opindex mfast-indirect-calls
10043 Generate code that assumes calls never cross space boundaries.  This
10044 allows GCC to emit code which performs faster indirect calls.
10045
10046 This option will not work in the presence of shared libraries or nested
10047 functions.
10048
10049 @item -mfixed-range=@var{register-range}
10050 @opindex mfixed-range
10051 Generate code treating the given register range as fixed registers.
10052 A fixed register is one that the register allocator can not use.  This is
10053 useful when compiling kernel code.  A register range is specified as
10054 two registers separated by a dash.  Multiple register ranges can be
10055 specified separated by a comma.
10056
10057 @item -mlong-load-store
10058 @opindex mlong-load-store
10059 Generate 3-instruction load and store sequences as sometimes required by
10060 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
10061 the HP compilers.
10062
10063 @item -mportable-runtime
10064 @opindex mportable-runtime
10065 Use the portable calling conventions proposed by HP for ELF systems.
10066
10067 @item -mgas
10068 @opindex mgas
10069 Enable the use of assembler directives only GAS understands.
10070
10071 @item -mschedule=@var{cpu-type}
10072 @opindex mschedule
10073 Schedule code according to the constraints for the machine type
10074 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
10075 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
10076 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
10077 proper scheduling option for your machine.  The default scheduling is
10078 @samp{8000}.
10079
10080 @item -mlinker-opt
10081 @opindex mlinker-opt
10082 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
10083 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
10084 linkers in which they give bogus error messages when linking some programs.
10085
10086 @item -msoft-float
10087 @opindex msoft-float
10088 Generate output containing library calls for floating point.
10089 @strong{Warning:} the requisite libraries are not available for all HPPA
10090 targets.  Normally the facilities of the machine's usual C compiler are
10091 used, but this cannot be done directly in cross-compilation.  You must make
10092 your own arrangements to provide suitable library functions for
10093 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
10094 does provide software floating point support.
10095
10096 @option{-msoft-float} changes the calling convention in the output file;
10097 therefore, it is only useful if you compile @emph{all} of a program with
10098 this option.  In particular, you need to compile @file{libgcc.a}, the
10099 library that comes with GCC, with @option{-msoft-float} in order for
10100 this to work.
10101
10102 @item -msio
10103 @opindex msio
10104 Generate the predefine, @code{_SIO}, for server IO@.  The default is
10105 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
10106 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
10107 options are available under HP-UX and HI-UX@.
10108
10109 @item -mgnu-ld
10110 @opindex gnu-ld
10111 Use GNU ld specific options.  This passes @option{-shared} to ld when
10112 building a shared library.  It is the default when GCC is configured,
10113 explicitly or implicitly, with the GNU linker.  This option does not
10114 have any affect on which ld is called, it only changes what parameters
10115 are passed to that ld.  The ld that is called is determined by the
10116 @option{--with-ld} configure option, GCC's program search path, and
10117 finally by the user's @env{PATH}.  The linker used by GCC can be printed
10118 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
10119 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
10120
10121 @item -mhp-ld
10122 @opindex hp-ld
10123 Use HP ld specific options.  This passes @option{-b} to ld when building
10124 a shared library and passes @option{+Accept TypeMismatch} to ld on all
10125 links.  It is the default when GCC is configured, explicitly or
10126 implicitly, with the HP linker.  This option does not have any affect on
10127 which ld is called, it only changes what parameters are passed to that
10128 ld.  The ld that is called is determined by the @option{--with-ld}
10129 configure option, GCC's program search path, and finally by the user's
10130 @env{PATH}.  The linker used by GCC can be printed using @samp{which
10131 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
10132 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
10133
10134 @item -mlong-calls
10135 @opindex mno-long-calls
10136 Generate code that uses long call sequences.  This ensures that a call
10137 is always able to reach linker generated stubs.  The default is to generate
10138 long calls only when the distance from the call site to the beginning
10139 of the function or translation unit, as the case may be, exceeds a
10140 predefined limit set by the branch type being used.  The limits for
10141 normal calls are 7,600,000 and 240,000 bytes, respectively for the
10142 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
10143 240,000 bytes.
10144
10145 Distances are measured from the beginning of functions when using the
10146 @option{-ffunction-sections} option, or when using the @option{-mgas}
10147 and @option{-mno-portable-runtime} options together under HP-UX with
10148 the SOM linker.
10149
10150 It is normally not desirable to use this option as it will degrade
10151 performance.  However, it may be useful in large applications,
10152 particularly when partial linking is used to build the application.
10153
10154 The types of long calls used depends on the capabilities of the
10155 assembler and linker, and the type of code being generated.  The
10156 impact on systems that support long absolute calls, and long pic
10157 symbol-difference or pc-relative calls should be relatively small.
10158 However, an indirect call is used on 32-bit ELF systems in pic code
10159 and it is quite long.
10160
10161 @item -munix=@var{unix-std}
10162 @opindex march
10163 Generate compiler predefines and select a startfile for the specified
10164 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10165 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10166 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10167 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10168 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10169 and later.
10170
10171 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10172 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10173 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10174 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10175 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10176 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10177
10178 It is @emph{important} to note that this option changes the interfaces
10179 for various library routines.  It also affects the operational behavior
10180 of the C library.  Thus, @emph{extreme} care is needed in using this
10181 option.
10182
10183 Library code that is intended to operate with more than one UNIX
10184 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10185 as appropriate.  Most GNU software doesn't provide this capability.
10186
10187 @item -nolibdld
10188 @opindex nolibdld
10189 Suppress the generation of link options to search libdld.sl when the
10190 @option{-static} option is specified on HP-UX 10 and later.
10191
10192 @item -static
10193 @opindex static
10194 The HP-UX implementation of setlocale in libc has a dependency on
10195 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10196 when the @option{-static} option is specified, special link options
10197 are needed to resolve this dependency.
10198
10199 On HP-UX 10 and later, the GCC driver adds the necessary options to
10200 link with libdld.sl when the @option{-static} option is specified.
10201 This causes the resulting binary to be dynamic.  On the 64-bit port,
10202 the linkers generate dynamic binaries by default in any case.  The
10203 @option{-nolibdld} option can be used to prevent the GCC driver from
10204 adding these link options.
10205
10206 @item -threads
10207 @opindex threads
10208 Add support for multithreading with the @dfn{dce thread} library
10209 under HP-UX@.  This option sets flags for both the preprocessor and
10210 linker.
10211 @end table
10212
10213 @node i386 and x86-64 Options
10214 @subsection Intel 386 and AMD x86-64 Options
10215 @cindex i386 Options
10216 @cindex x86-64 Options
10217 @cindex Intel 386 Options
10218 @cindex AMD x86-64 Options
10219
10220 These @samp{-m} options are defined for the i386 and x86-64 family of
10221 computers:
10222
10223 @table @gcctabopt
10224 @item -mtune=@var{cpu-type}
10225 @opindex mtune
10226 Tune to @var{cpu-type} everything applicable about the generated code, except
10227 for the ABI and the set of available instructions.  The choices for
10228 @var{cpu-type} are:
10229 @table @emph
10230 @item generic
10231 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10232 If you know the CPU on which your code will run, then you should use
10233 the corresponding @option{-mtune} option instead of
10234 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10235 of your application will have, then you should use this option.
10236
10237 As new processors are deployed in the marketplace, the behavior of this
10238 option will change.  Therefore, if you upgrade to a newer version of
10239 GCC, the code generated option will change to reflect the processors
10240 that were most common when that version of GCC was released.
10241
10242 There is no @option{-march=generic} option because @option{-march}
10243 indicates the instruction set the compiler can use, and there is no
10244 generic instruction set applicable to all processors.  In contrast,
10245 @option{-mtune} indicates the processor (or, in this case, collection of
10246 processors) for which the code is optimized.
10247 @item native
10248 This selects the CPU to tune for at compilation time by determining
10249 the processor type of the compiling machine.  Using @option{-mtune=native}
10250 will produce code optimized for the local machine under the constraints
10251 of the selected instruction set.  Using @option{-march=native} will
10252 enable all instruction subsets supported by the local machine (hence
10253 the result might not run on different machines).
10254 @item i386
10255 Original Intel's i386 CPU@.
10256 @item i486
10257 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10258 @item i586, pentium
10259 Intel Pentium CPU with no MMX support.
10260 @item pentium-mmx
10261 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10262 @item pentiumpro
10263 Intel PentiumPro CPU@.
10264 @item i686
10265 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10266 instruction set will be used, so the code will run on all i686 family chips.
10267 @item pentium2
10268 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10269 @item pentium3, pentium3m
10270 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10271 support.
10272 @item pentium-m
10273 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10274 support.  Used by Centrino notebooks.
10275 @item pentium4, pentium4m
10276 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10277 @item prescott
10278 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10279 set support.
10280 @item nocona
10281 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10282 SSE2 and SSE3 instruction set support.
10283 @item core2
10284 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10285 instruction set support.
10286 @item k6
10287 AMD K6 CPU with MMX instruction set support.
10288 @item k6-2, k6-3
10289 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
10290 @item athlon, athlon-tbird
10291 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
10292 support.
10293 @item athlon-4, athlon-xp, athlon-mp
10294 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
10295 instruction set support.
10296 @item k8, opteron, athlon64, athlon-fx
10297 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10298 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
10299 @item k8-sse3, opteron-sse3, athlon64-sse3
10300 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10301 @item amdfam10, barcelona
10302 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10303 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10304 instruction set extensions.)
10305 @item winchip-c6
10306 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10307 set support.
10308 @item winchip2
10309 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
10310 instruction set support.
10311 @item c3
10312 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
10313 implemented for this chip.)
10314 @item c3-2
10315 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10316 implemented for this chip.)
10317 @item geode
10318 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10319 @end table
10320
10321 While picking a specific @var{cpu-type} will schedule things appropriately
10322 for that particular chip, the compiler will not generate any code that
10323 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10324 being used.
10325
10326 @item -march=@var{cpu-type}
10327 @opindex march
10328 Generate instructions for the machine type @var{cpu-type}.  The choices
10329 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10330 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10331
10332 @item -mcpu=@var{cpu-type}
10333 @opindex mcpu
10334 A deprecated synonym for @option{-mtune}.
10335
10336 @item -mfpmath=@var{unit}
10337 @opindex march
10338 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10339 for @var{unit} are:
10340
10341 @table @samp
10342 @item 387
10343 Use the standard 387 floating point coprocessor present majority of chips and
10344 emulated otherwise.  Code compiled with this option will run almost everywhere.
10345 The temporary results are computed in 80bit precision instead of precision
10346 specified by the type resulting in slightly different results compared to most
10347 of other chips.  See @option{-ffloat-store} for more detailed description.
10348
10349 This is the default choice for i386 compiler.
10350
10351 @item sse
10352 Use scalar floating point instructions present in the SSE instruction set.
10353 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10354 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10355 instruction set supports only single precision arithmetics, thus the double and
10356 extended precision arithmetics is still done using 387.  Later version, present
10357 only in Pentium4 and the future AMD x86-64 chips supports double precision
10358 arithmetics too.
10359
10360 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10361 or @option{-msse2} switches to enable SSE extensions and make this option
10362 effective.  For the x86-64 compiler, these extensions are enabled by default.
10363
10364 The resulting code should be considerably faster in the majority of cases and avoid
10365 the numerical instability problems of 387 code, but may break some existing
10366 code that expects temporaries to be 80bit.
10367
10368 This is the default choice for the x86-64 compiler.
10369
10370 @item sse,387
10371 Attempt to utilize both instruction sets at once.  This effectively double the
10372 amount of available registers and on chips with separate execution units for
10373 387 and SSE the execution resources too.  Use this option with care, as it is
10374 still experimental, because the GCC register allocator does not model separate
10375 functional units well resulting in instable performance.
10376 @end table
10377
10378 @item -masm=@var{dialect}
10379 @opindex masm=@var{dialect}
10380 Output asm instructions using selected @var{dialect}.  Supported
10381 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10382 not support @samp{intel}.
10383
10384 @item -mieee-fp
10385 @itemx -mno-ieee-fp
10386 @opindex mieee-fp
10387 @opindex mno-ieee-fp
10388 Control whether or not the compiler uses IEEE floating point
10389 comparisons.  These handle correctly the case where the result of a
10390 comparison is unordered.
10391
10392 @item -msoft-float
10393 @opindex msoft-float
10394 Generate output containing library calls for floating point.
10395 @strong{Warning:} the requisite libraries are not part of GCC@.
10396 Normally the facilities of the machine's usual C compiler are used, but
10397 this can't be done directly in cross-compilation.  You must make your
10398 own arrangements to provide suitable library functions for
10399 cross-compilation.
10400
10401 On machines where a function returns floating point results in the 80387
10402 register stack, some floating point opcodes may be emitted even if
10403 @option{-msoft-float} is used.
10404
10405 @item -mno-fp-ret-in-387
10406 @opindex mno-fp-ret-in-387
10407 Do not use the FPU registers for return values of functions.
10408
10409 The usual calling convention has functions return values of types
10410 @code{float} and @code{double} in an FPU register, even if there
10411 is no FPU@.  The idea is that the operating system should emulate
10412 an FPU@.
10413
10414 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10415 in ordinary CPU registers instead.
10416
10417 @item -mno-fancy-math-387
10418 @opindex mno-fancy-math-387
10419 Some 387 emulators do not support the @code{sin}, @code{cos} and
10420 @code{sqrt} instructions for the 387.  Specify this option to avoid
10421 generating those instructions.  This option is the default on FreeBSD,
10422 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10423 indicates that the target cpu will always have an FPU and so the
10424 instruction will not need emulation.  As of revision 2.6.1, these
10425 instructions are not generated unless you also use the
10426 @option{-funsafe-math-optimizations} switch.
10427
10428 @item -malign-double
10429 @itemx -mno-align-double
10430 @opindex malign-double
10431 @opindex mno-align-double
10432 Control whether GCC aligns @code{double}, @code{long double}, and
10433 @code{long long} variables on a two word boundary or a one word
10434 boundary.  Aligning @code{double} variables on a two word boundary will
10435 produce code that runs somewhat faster on a @samp{Pentium} at the
10436 expense of more memory.
10437
10438 On x86-64, @option{-malign-double} is enabled by default.
10439
10440 @strong{Warning:} if you use the @option{-malign-double} switch,
10441 structures containing the above types will be aligned differently than
10442 the published application binary interface specifications for the 386
10443 and will not be binary compatible with structures in code compiled
10444 without that switch.
10445
10446 @item -m96bit-long-double
10447 @itemx -m128bit-long-double
10448 @opindex m96bit-long-double
10449 @opindex m128bit-long-double
10450 These switches control the size of @code{long double} type.  The i386
10451 application binary interface specifies the size to be 96 bits,
10452 so @option{-m96bit-long-double} is the default in 32 bit mode.
10453
10454 Modern architectures (Pentium and newer) would prefer @code{long double}
10455 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10456 conforming to the ABI, this would not be possible.  So specifying a
10457 @option{-m128bit-long-double} will align @code{long double}
10458 to a 16 byte boundary by padding the @code{long double} with an additional
10459 32 bit zero.
10460
10461 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10462 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10463
10464 Notice that neither of these options enable any extra precision over the x87
10465 standard of 80 bits for a @code{long double}.
10466
10467 @strong{Warning:} if you override the default value for your target ABI, the
10468 structures and arrays containing @code{long double} variables will change
10469 their size as well as function calling convention for function taking
10470 @code{long double} will be modified.  Hence they will not be binary
10471 compatible with arrays or structures in code compiled without that switch.
10472
10473 @item -mmlarge-data-threshold=@var{number}
10474 @opindex mlarge-data-threshold=@var{number}
10475 When @option{-mcmodel=medium} is specified, the data greater than
10476 @var{threshold} are placed in large data section.  This value must be the
10477 same across all object linked into the binary and defaults to 65535.
10478
10479 @item -mrtd
10480 @opindex mrtd
10481 Use a different function-calling convention, in which functions that
10482 take a fixed number of arguments return with the @code{ret} @var{num}
10483 instruction, which pops their arguments while returning.  This saves one
10484 instruction in the caller since there is no need to pop the arguments
10485 there.
10486
10487 You can specify that an individual function is called with this calling
10488 sequence with the function attribute @samp{stdcall}.  You can also
10489 override the @option{-mrtd} option by using the function attribute
10490 @samp{cdecl}.  @xref{Function Attributes}.
10491
10492 @strong{Warning:} this calling convention is incompatible with the one
10493 normally used on Unix, so you cannot use it if you need to call
10494 libraries compiled with the Unix compiler.
10495
10496 Also, you must provide function prototypes for all functions that
10497 take variable numbers of arguments (including @code{printf});
10498 otherwise incorrect code will be generated for calls to those
10499 functions.
10500
10501 In addition, seriously incorrect code will result if you call a
10502 function with too many arguments.  (Normally, extra arguments are
10503 harmlessly ignored.)
10504
10505 @item -mregparm=@var{num}
10506 @opindex mregparm
10507 Control how many registers are used to pass integer arguments.  By
10508 default, no registers are used to pass arguments, and at most 3
10509 registers can be used.  You can control this behavior for a specific
10510 function by using the function attribute @samp{regparm}.
10511 @xref{Function Attributes}.
10512
10513 @strong{Warning:} if you use this switch, and
10514 @var{num} is nonzero, then you must build all modules with the same
10515 value, including any libraries.  This includes the system libraries and
10516 startup modules.
10517
10518 @item -msseregparm
10519 @opindex msseregparm
10520 Use SSE register passing conventions for float and double arguments
10521 and return values.  You can control this behavior for a specific
10522 function by using the function attribute @samp{sseregparm}.
10523 @xref{Function Attributes}.
10524
10525 @strong{Warning:} if you use this switch then you must build all
10526 modules with the same value, including any libraries.  This includes
10527 the system libraries and startup modules.
10528
10529 @item -mpc32
10530 @itemx -mpc64
10531 @itemx -mpc80
10532 @opindex mpc32
10533 @opindex mpc64
10534 @opindex mpc80
10535
10536 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10537 is specified, the significands of results of floating-point operations are
10538 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10539 significands of results of floating-point operations to 53 bits (double
10540 precision) and @option{-mpc80} rounds the significands of results of
10541 floating-point operations to 64 bits (extended double precision), which is
10542 the default.  When this option is used, floating-point operations in higher
10543 precisions are not available to the programmer without setting the FPU
10544 control word explicitly.
10545
10546 Setting the rounding of floating-point operations to less than the default
10547 80 bits can speed some programs by 2% or more.  Note that some mathematical
10548 libraries assume that extended precision (80 bit) floating-point operations
10549 are enabled by default; routines in such libraries could suffer significant
10550 loss of accuracy, typically through so-called "catastrophic cancellation",
10551 when this option is used to set the precision to less than extended precision. 
10552
10553 @item -mstackrealign
10554 @opindex mstackrealign
10555 Realign the stack at entry.  On the Intel x86, the
10556 @option{-mstackrealign} option will generate an alternate prologue and
10557 epilogue that realigns the runtime stack.  This supports mixing legacy
10558 codes that keep a 4-byte aligned stack with modern codes that keep a
10559 16-byte stack for SSE compatibility.  The alternate prologue and
10560 epilogue are slower and bigger than the regular ones, and the
10561 alternate prologue requires an extra scratch register; this lowers the
10562 number of registers available if used in conjunction with the
10563 @code{regparm} attribute.  The @option{-mstackrealign} option is
10564 incompatible with the nested function prologue; this is considered a
10565 hard error.  See also the attribute @code{force_align_arg_pointer},
10566 applicable to individual functions.
10567
10568 @item -mpreferred-stack-boundary=@var{num}
10569 @opindex mpreferred-stack-boundary
10570 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10571 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10572 the default is 4 (16 bytes or 128 bits).
10573
10574 On Pentium and PentiumPro, @code{double} and @code{long double} values
10575 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10576 suffer significant run time performance penalties.  On Pentium III, the
10577 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10578 properly if it is not 16 byte aligned.
10579
10580 To ensure proper alignment of this values on the stack, the stack boundary
10581 must be as aligned as that required by any value stored on the stack.
10582 Further, every function must be generated such that it keeps the stack
10583 aligned.  Thus calling a function compiled with a higher preferred
10584 stack boundary from a function compiled with a lower preferred stack
10585 boundary will most likely misalign the stack.  It is recommended that
10586 libraries that use callbacks always use the default setting.
10587
10588 This extra alignment does consume extra stack space, and generally
10589 increases code size.  Code that is sensitive to stack space usage, such
10590 as embedded systems and operating system kernels, may want to reduce the
10591 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10592
10593 @item -mmmx
10594 @itemx -mno-mmx
10595 @item -msse
10596 @itemx -mno-sse
10597 @item -msse2
10598 @itemx -mno-sse2
10599 @item -msse3
10600 @itemx -mno-sse3
10601 @item -mssse3
10602 @itemx -mno-ssse3
10603 @item -msse4.1
10604 @itemx -mno-sse4.1
10605 @item -msse4.2
10606 @itemx -mno-sse4.2
10607 @item -msse4
10608 @itemx -mno-sse4
10609 @item -msse4a
10610 @item -mno-sse4a
10611 @item -msse5
10612 @itemx -mno-sse5
10613 @item -m3dnow
10614 @itemx -mno-3dnow
10615 @item -mpopcnt
10616 @itemx -mno-popcnt
10617 @item -mabm
10618 @itemx -mno-abm
10619 @opindex mmmx
10620 @opindex mno-mmx
10621 @opindex msse
10622 @opindex mno-sse
10623 @opindex m3dnow
10624 @opindex mno-3dnow
10625 These switches enable or disable the use of instructions in the MMX,
10626 SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4A, SSE5, ABM or 3DNow! extended
10627 instruction sets.
10628 These extensions are also available as built-in functions: see
10629 @ref{X86 Built-in Functions}, for details of the functions enabled and
10630 disabled by these switches.
10631
10632 To have SSE/SSE2 instructions generated automatically from floating-point
10633 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10634
10635 These options will enable GCC to use these extended instructions in
10636 generated code, even without @option{-mfpmath=sse}.  Applications which
10637 perform runtime CPU detection must compile separate files for each
10638 supported architecture, using the appropriate flags.  In particular,
10639 the file containing the CPU detection code should be compiled without
10640 these options.
10641
10642 @item -mcx16
10643 @opindex mcx16
10644 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10645 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10646 data types.  This is useful for high resolution counters that could be updated
10647 by multiple processors (or cores).  This instruction is generated as part of
10648 atomic built-in functions: see @ref{Atomic Builtins} for details.
10649
10650 @item -msahf
10651 @opindex msahf
10652 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10653 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10654 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10655 SAHF are load and store instructions, respectively, for certain status flags.
10656 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10657 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10658
10659 @item -mrecip
10660 @opindex mrecip
10661 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10662 vectorized variants RCPPS and RSQRTPS) with an additional Newton-Rhapson step
10663 to increase precision instead of DIVSS and SQRTSS (and their vectorized
10664 variants) for single precision floating point arguments.  These instructions
10665 are generated only when @option{-funsafe-math-optimizations} is enabled
10666 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
10667 Note that while the throughput of the sequence is higher than the throughput
10668 of the non-reciprocal instruction, the precision of the sequence can be
10669 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
10670
10671 @item -mveclibabi=@var{type}
10672 @opindex mveclibabi
10673 Specifies the ABI type to use for vectorizing intrinsics using an
10674 external library.  Supported types are @code{acml} for the AMD
10675 math core library style of interfacing.  GCC will currently emit
10676 calls to @code{__vrd2_sin}, @code{__vrd2_cos}, @code{__vrd2_exp},
10677 @code{__vrd2_log}, @code{__vrd2_log2}, @code{__vrd2_log10},
10678 @code{__vrs4_sinf}, @code{__vrs4_cosf}, @code{__vrs4_expf},
10679 @code{__vrs4_logf}, @code{__vrs4_log2f}, @code{__vrs4_log10f}
10680 and @code{__vrs4_powf} when using this type and @option{-ftree-vectorize}
10681 is enabled.  A ACML ABI compatible library will have to be specified
10682 at link time.
10683
10684 @item -mpush-args
10685 @itemx -mno-push-args
10686 @opindex mpush-args
10687 @opindex mno-push-args
10688 Use PUSH operations to store outgoing parameters.  This method is shorter
10689 and usually equally fast as method using SUB/MOV operations and is enabled
10690 by default.  In some cases disabling it may improve performance because of
10691 improved scheduling and reduced dependencies.
10692
10693 @item -maccumulate-outgoing-args
10694 @opindex maccumulate-outgoing-args
10695 If enabled, the maximum amount of space required for outgoing arguments will be
10696 computed in the function prologue.  This is faster on most modern CPUs
10697 because of reduced dependencies, improved scheduling and reduced stack usage
10698 when preferred stack boundary is not equal to 2.  The drawback is a notable
10699 increase in code size.  This switch implies @option{-mno-push-args}.
10700
10701 @item -mthreads
10702 @opindex mthreads
10703 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
10704 on thread-safe exception handling must compile and link all code with the
10705 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
10706 @option{-D_MT}; when linking, it links in a special thread helper library
10707 @option{-lmingwthrd} which cleans up per thread exception handling data.
10708
10709 @item -mno-align-stringops
10710 @opindex mno-align-stringops
10711 Do not align destination of inlined string operations.  This switch reduces
10712 code size and improves performance in case the destination is already aligned,
10713 but GCC doesn't know about it.
10714
10715 @item -minline-all-stringops
10716 @opindex minline-all-stringops
10717 By default GCC inlines string operations only when destination is known to be
10718 aligned at least to 4 byte boundary.  This enables more inlining, increase code
10719 size, but may improve performance of code that depends on fast memcpy, strlen
10720 and memset for short lengths.
10721
10722 @item -minline-stringops-dynamically
10723 @opindex minline-stringops-dynamically
10724 For string operation of unknown size, inline runtime checks so for small
10725 blocks inline code is used, while for large blocks library call is used.
10726
10727 @item -mstringop-strategy=@var{alg}
10728 @opindex mstringop-strategy=@var{alg}
10729 Overwrite internal decision heuristic about particular algorithm to inline
10730 string operation with.  The allowed values are @code{rep_byte},
10731 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
10732 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
10733 expanding inline loop, @code{libcall} for always expanding library call.
10734
10735 @item -momit-leaf-frame-pointer
10736 @opindex momit-leaf-frame-pointer
10737 Don't keep the frame pointer in a register for leaf functions.  This
10738 avoids the instructions to save, set up and restore frame pointers and
10739 makes an extra register available in leaf functions.  The option
10740 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10741 which might make debugging harder.
10742
10743 @item -mtls-direct-seg-refs
10744 @itemx -mno-tls-direct-seg-refs
10745 @opindex mtls-direct-seg-refs
10746 Controls whether TLS variables may be accessed with offsets from the
10747 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
10748 or whether the thread base pointer must be added.  Whether or not this
10749 is legal depends on the operating system, and whether it maps the
10750 segment to cover the entire TLS area.
10751
10752 For systems that use GNU libc, the default is on.
10753
10754 @item -mfused-madd
10755 @itemx -mno-fused-madd
10756 @opindex mfused-madd
10757 Enable automatic generation of fused floating point multiply-add instructions
10758 if the ISA supports such instructions.  The -mfused-madd option is on by
10759 default.  The fused multiply-add instructions have a different
10760 rounding behavior compared to executing a multiply followed by an add.
10761 @end table
10762
10763 These @samp{-m} switches are supported in addition to the above
10764 on AMD x86-64 processors in 64-bit environments.
10765
10766 @table @gcctabopt
10767 @item -m32
10768 @itemx -m64
10769 @opindex m32
10770 @opindex m64
10771 Generate code for a 32-bit or 64-bit environment.
10772 The 32-bit environment sets int, long and pointer to 32 bits and
10773 generates code that runs on any i386 system.
10774 The 64-bit environment sets int to 32 bits and long and pointer
10775 to 64 bits and generates code for AMD's x86-64 architecture. For
10776 darwin only the -m64 option turns off the @option{-fno-pic} and
10777 @option{-mdynamic-no-pic} options.
10778
10779 @item -mno-red-zone
10780 @opindex no-red-zone
10781 Do not use a so called red zone for x86-64 code.  The red zone is mandated
10782 by the x86-64 ABI, it is a 128-byte area beyond the location of the
10783 stack pointer that will not be modified by signal or interrupt handlers
10784 and therefore can be used for temporary data without adjusting the stack
10785 pointer.  The flag @option{-mno-red-zone} disables this red zone.
10786
10787 @item -mcmodel=small
10788 @opindex mcmodel=small
10789 Generate code for the small code model: the program and its symbols must
10790 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
10791 Programs can be statically or dynamically linked.  This is the default
10792 code model.
10793
10794 @item -mcmodel=kernel
10795 @opindex mcmodel=kernel
10796 Generate code for the kernel code model.  The kernel runs in the
10797 negative 2 GB of the address space.
10798 This model has to be used for Linux kernel code.
10799
10800 @item -mcmodel=medium
10801 @opindex mcmodel=medium
10802 Generate code for the medium model: The program is linked in the lower 2
10803 GB of the address space but symbols can be located anywhere in the
10804 address space.  Programs can be statically or dynamically linked, but
10805 building of shared libraries are not supported with the medium model.
10806
10807 @item -mcmodel=large
10808 @opindex mcmodel=large
10809 Generate code for the large model: This model makes no assumptions
10810 about addresses and sizes of sections.
10811 @end table
10812
10813 @node IA-64 Options
10814 @subsection IA-64 Options
10815 @cindex IA-64 Options
10816
10817 These are the @samp{-m} options defined for the Intel IA-64 architecture.
10818
10819 @table @gcctabopt
10820 @item -mbig-endian
10821 @opindex mbig-endian
10822 Generate code for a big endian target.  This is the default for HP-UX@.
10823
10824 @item -mlittle-endian
10825 @opindex mlittle-endian
10826 Generate code for a little endian target.  This is the default for AIX5
10827 and GNU/Linux.
10828
10829 @item -mgnu-as
10830 @itemx -mno-gnu-as
10831 @opindex mgnu-as
10832 @opindex mno-gnu-as
10833 Generate (or don't) code for the GNU assembler.  This is the default.
10834 @c Also, this is the default if the configure option @option{--with-gnu-as}
10835 @c is used.
10836
10837 @item -mgnu-ld
10838 @itemx -mno-gnu-ld
10839 @opindex mgnu-ld
10840 @opindex mno-gnu-ld
10841 Generate (or don't) code for the GNU linker.  This is the default.
10842 @c Also, this is the default if the configure option @option{--with-gnu-ld}
10843 @c is used.
10844
10845 @item -mno-pic
10846 @opindex mno-pic
10847 Generate code that does not use a global pointer register.  The result
10848 is not position independent code, and violates the IA-64 ABI@.
10849
10850 @item -mvolatile-asm-stop
10851 @itemx -mno-volatile-asm-stop
10852 @opindex mvolatile-asm-stop
10853 @opindex mno-volatile-asm-stop
10854 Generate (or don't) a stop bit immediately before and after volatile asm
10855 statements.
10856
10857 @item -mregister-names
10858 @itemx -mno-register-names
10859 @opindex mregister-names
10860 @opindex mno-register-names
10861 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
10862 the stacked registers.  This may make assembler output more readable.
10863
10864 @item -mno-sdata
10865 @itemx -msdata
10866 @opindex mno-sdata
10867 @opindex msdata
10868 Disable (or enable) optimizations that use the small data section.  This may
10869 be useful for working around optimizer bugs.
10870
10871 @item -mconstant-gp
10872 @opindex mconstant-gp
10873 Generate code that uses a single constant global pointer value.  This is
10874 useful when compiling kernel code.
10875
10876 @item -mauto-pic
10877 @opindex mauto-pic
10878 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
10879 This is useful when compiling firmware code.
10880
10881 @item -minline-float-divide-min-latency
10882 @opindex minline-float-divide-min-latency
10883 Generate code for inline divides of floating point values
10884 using the minimum latency algorithm.
10885
10886 @item -minline-float-divide-max-throughput
10887 @opindex minline-float-divide-max-throughput
10888 Generate code for inline divides of floating point values
10889 using the maximum throughput algorithm.
10890
10891 @item -minline-int-divide-min-latency
10892 @opindex minline-int-divide-min-latency
10893 Generate code for inline divides of integer values
10894 using the minimum latency algorithm.
10895
10896 @item -minline-int-divide-max-throughput
10897 @opindex minline-int-divide-max-throughput
10898 Generate code for inline divides of integer values
10899 using the maximum throughput algorithm.
10900
10901 @item -minline-sqrt-min-latency
10902 @opindex minline-sqrt-min-latency
10903 Generate code for inline square roots
10904 using the minimum latency algorithm.
10905
10906 @item -minline-sqrt-max-throughput
10907 @opindex minline-sqrt-max-throughput
10908 Generate code for inline square roots
10909 using the maximum throughput algorithm.
10910
10911 @item -mno-dwarf2-asm
10912 @itemx -mdwarf2-asm
10913 @opindex mno-dwarf2-asm
10914 @opindex mdwarf2-asm
10915 Don't (or do) generate assembler code for the DWARF2 line number debugging
10916 info.  This may be useful when not using the GNU assembler.
10917
10918 @item -mearly-stop-bits
10919 @itemx -mno-early-stop-bits
10920 @opindex mearly-stop-bits
10921 @opindex mno-early-stop-bits
10922 Allow stop bits to be placed earlier than immediately preceding the
10923 instruction that triggered the stop bit.  This can improve instruction
10924 scheduling, but does not always do so.
10925
10926 @item -mfixed-range=@var{register-range}
10927 @opindex mfixed-range
10928 Generate code treating the given register range as fixed registers.
10929 A fixed register is one that the register allocator can not use.  This is
10930 useful when compiling kernel code.  A register range is specified as
10931 two registers separated by a dash.  Multiple register ranges can be
10932 specified separated by a comma.
10933
10934 @item -mtls-size=@var{tls-size}
10935 @opindex mtls-size
10936 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
10937 64.
10938
10939 @item -mtune=@var{cpu-type}
10940 @opindex mtune
10941 Tune the instruction scheduling for a particular CPU, Valid values are
10942 itanium, itanium1, merced, itanium2, and mckinley.
10943
10944 @item -mt
10945 @itemx -pthread
10946 @opindex mt
10947 @opindex pthread
10948 Add support for multithreading using the POSIX threads library.  This
10949 option sets flags for both the preprocessor and linker.  It does
10950 not affect the thread safety of object code produced by the compiler or
10951 that of libraries supplied with it.  These are HP-UX specific flags.
10952
10953 @item -milp32
10954 @itemx -mlp64
10955 @opindex milp32
10956 @opindex mlp64
10957 Generate code for a 32-bit or 64-bit environment.
10958 The 32-bit environment sets int, long and pointer to 32 bits.
10959 The 64-bit environment sets int to 32 bits and long and pointer
10960 to 64 bits.  These are HP-UX specific flags.
10961
10962 @item -mno-sched-br-data-spec
10963 @itemx -msched-br-data-spec
10964 @opindex mno-sched-br-data-spec
10965 @opindex msched-br-data-spec
10966 (Dis/En)able data speculative scheduling before reload.
10967 This will result in generation of the ld.a instructions and
10968 the corresponding check instructions (ld.c / chk.a).
10969 The default is 'disable'.
10970
10971 @item -msched-ar-data-spec
10972 @itemx -mno-sched-ar-data-spec
10973 @opindex msched-ar-data-spec
10974 @opindex mno-sched-ar-data-spec
10975 (En/Dis)able data speculative scheduling after reload.
10976 This will result in generation of the ld.a instructions and
10977 the corresponding check instructions (ld.c / chk.a).
10978 The default is 'enable'.
10979
10980 @item -mno-sched-control-spec
10981 @itemx -msched-control-spec
10982 @opindex mno-sched-control-spec
10983 @opindex msched-control-spec
10984 (Dis/En)able control speculative scheduling.  This feature is
10985 available only during region scheduling (i.e. before reload).
10986 This will result in generation of the ld.s instructions and
10987 the corresponding check instructions chk.s .
10988 The default is 'disable'.
10989
10990 @item -msched-br-in-data-spec
10991 @itemx -mno-sched-br-in-data-spec
10992 @opindex msched-br-in-data-spec
10993 @opindex mno-sched-br-in-data-spec
10994 (En/Dis)able speculative scheduling of the instructions that
10995 are dependent on the data speculative loads before reload.
10996 This is effective only with @option{-msched-br-data-spec} enabled.
10997 The default is 'enable'.
10998
10999 @item -msched-ar-in-data-spec
11000 @itemx -mno-sched-ar-in-data-spec
11001 @opindex msched-ar-in-data-spec
11002 @opindex mno-sched-ar-in-data-spec
11003 (En/Dis)able speculative scheduling of the instructions that
11004 are dependent on the data speculative loads after reload.
11005 This is effective only with @option{-msched-ar-data-spec} enabled.
11006 The default is 'enable'.
11007
11008 @item -msched-in-control-spec
11009 @itemx -mno-sched-in-control-spec
11010 @opindex msched-in-control-spec
11011 @opindex mno-sched-in-control-spec
11012 (En/Dis)able speculative scheduling of the instructions that
11013 are dependent on the control speculative loads.
11014 This is effective only with @option{-msched-control-spec} enabled.
11015 The default is 'enable'.
11016
11017 @item -msched-ldc
11018 @itemx -mno-sched-ldc
11019 @opindex msched-ldc
11020 @opindex mno-sched-ldc
11021 (En/Dis)able use of simple data speculation checks ld.c .
11022 If disabled, only chk.a instructions will be emitted to check
11023 data speculative loads.
11024 The default is 'enable'.
11025
11026 @item -mno-sched-control-ldc
11027 @itemx -msched-control-ldc
11028 @opindex mno-sched-control-ldc
11029 @opindex msched-control-ldc
11030 (Dis/En)able use of ld.c instructions to check control speculative loads.
11031 If enabled, in case of control speculative load with no speculatively
11032 scheduled dependent instructions this load will be emitted as ld.sa and
11033 ld.c will be used to check it.
11034 The default is 'disable'.
11035
11036 @item -mno-sched-spec-verbose
11037 @itemx -msched-spec-verbose
11038 @opindex mno-sched-spec-verbose
11039 @opindex msched-spec-verbose
11040 (Dis/En)able printing of the information about speculative motions.
11041
11042 @item -mno-sched-prefer-non-data-spec-insns
11043 @itemx -msched-prefer-non-data-spec-insns
11044 @opindex mno-sched-prefer-non-data-spec-insns
11045 @opindex msched-prefer-non-data-spec-insns
11046 If enabled, data speculative instructions will be chosen for schedule
11047 only if there are no other choices at the moment.  This will make
11048 the use of the data speculation much more conservative.
11049 The default is 'disable'.
11050
11051 @item -mno-sched-prefer-non-control-spec-insns
11052 @itemx -msched-prefer-non-control-spec-insns
11053 @opindex mno-sched-prefer-non-control-spec-insns
11054 @opindex msched-prefer-non-control-spec-insns
11055 If enabled, control speculative instructions will be chosen for schedule
11056 only if there are no other choices at the moment.  This will make
11057 the use of the control speculation much more conservative.
11058 The default is 'disable'.
11059
11060 @item -mno-sched-count-spec-in-critical-path
11061 @itemx -msched-count-spec-in-critical-path
11062 @opindex mno-sched-count-spec-in-critical-path
11063 @opindex msched-count-spec-in-critical-path
11064 If enabled, speculative dependencies will be considered during
11065 computation of the instructions priorities.  This will make the use of the
11066 speculation a bit more conservative.
11067 The default is 'disable'.
11068
11069 @end table
11070
11071 @node M32C Options
11072 @subsection M32C Options
11073 @cindex M32C options
11074
11075 @table @gcctabopt
11076 @item -mcpu=@var{name}
11077 @opindex mcpu=
11078 Select the CPU for which code is generated.  @var{name} may be one of
11079 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
11080 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
11081 the M32C/80 series.
11082
11083 @item -msim
11084 @opindex msim
11085 Specifies that the program will be run on the simulator.  This causes
11086 an alternate runtime library to be linked in which supports, for
11087 example, file I/O.  You must not use this option when generating
11088 programs that will run on real hardware; you must provide your own
11089 runtime library for whatever I/O functions are needed.
11090
11091 @item -memregs=@var{number}
11092 @opindex memregs=
11093 Specifies the number of memory-based pseudo-registers GCC will use
11094 during code generation.  These pseudo-registers will be used like real
11095 registers, so there is a tradeoff between GCC's ability to fit the
11096 code into available registers, and the performance penalty of using
11097 memory instead of registers.  Note that all modules in a program must
11098 be compiled with the same value for this option.  Because of that, you
11099 must not use this option with the default runtime libraries gcc
11100 builds.
11101
11102 @end table
11103
11104 @node M32R/D Options
11105 @subsection M32R/D Options
11106 @cindex M32R/D options
11107
11108 These @option{-m} options are defined for Renesas M32R/D architectures:
11109
11110 @table @gcctabopt
11111 @item -m32r2
11112 @opindex m32r2
11113 Generate code for the M32R/2@.
11114
11115 @item -m32rx
11116 @opindex m32rx
11117 Generate code for the M32R/X@.
11118
11119 @item -m32r
11120 @opindex m32r
11121 Generate code for the M32R@.  This is the default.
11122
11123 @item -mmodel=small
11124 @opindex mmodel=small
11125 Assume all objects live in the lower 16MB of memory (so that their addresses
11126 can be loaded with the @code{ld24} instruction), and assume all subroutines
11127 are reachable with the @code{bl} instruction.
11128 This is the default.
11129
11130 The addressability of a particular object can be set with the
11131 @code{model} attribute.
11132
11133 @item -mmodel=medium
11134 @opindex mmodel=medium
11135 Assume objects may be anywhere in the 32-bit address space (the compiler
11136 will generate @code{seth/add3} instructions to load their addresses), and
11137 assume all subroutines are reachable with the @code{bl} instruction.
11138
11139 @item -mmodel=large
11140 @opindex mmodel=large
11141 Assume objects may be anywhere in the 32-bit address space (the compiler
11142 will generate @code{seth/add3} instructions to load their addresses), and
11143 assume subroutines may not be reachable with the @code{bl} instruction
11144 (the compiler will generate the much slower @code{seth/add3/jl}
11145 instruction sequence).
11146
11147 @item -msdata=none
11148 @opindex msdata=none
11149 Disable use of the small data area.  Variables will be put into
11150 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11151 @code{section} attribute has been specified).
11152 This is the default.
11153
11154 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11155 Objects may be explicitly put in the small data area with the
11156 @code{section} attribute using one of these sections.
11157
11158 @item -msdata=sdata
11159 @opindex msdata=sdata
11160 Put small global and static data in the small data area, but do not
11161 generate special code to reference them.
11162
11163 @item -msdata=use
11164 @opindex msdata=use
11165 Put small global and static data in the small data area, and generate
11166 special instructions to reference them.
11167
11168 @item -G @var{num}
11169 @opindex G
11170 @cindex smaller data references
11171 Put global and static objects less than or equal to @var{num} bytes
11172 into the small data or bss sections instead of the normal data or bss
11173 sections.  The default value of @var{num} is 8.
11174 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11175 for this option to have any effect.
11176
11177 All modules should be compiled with the same @option{-G @var{num}} value.
11178 Compiling with different values of @var{num} may or may not work; if it
11179 doesn't the linker will give an error message---incorrect code will not be
11180 generated.
11181
11182 @item -mdebug
11183 @opindex mdebug
11184 Makes the M32R specific code in the compiler display some statistics
11185 that might help in debugging programs.
11186
11187 @item -malign-loops
11188 @opindex malign-loops
11189 Align all loops to a 32-byte boundary.
11190
11191 @item -mno-align-loops
11192 @opindex mno-align-loops
11193 Do not enforce a 32-byte alignment for loops.  This is the default.
11194
11195 @item -missue-rate=@var{number}
11196 @opindex missue-rate=@var{number}
11197 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11198 or 2.
11199
11200 @item -mbranch-cost=@var{number}
11201 @opindex mbranch-cost=@var{number}
11202 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11203 preferred over conditional code, if it is 2, then the opposite will
11204 apply.
11205
11206 @item -mflush-trap=@var{number}
11207 @opindex mflush-trap=@var{number}
11208 Specifies the trap number to use to flush the cache.  The default is
11209 12.  Valid numbers are between 0 and 15 inclusive.
11210
11211 @item -mno-flush-trap
11212 @opindex mno-flush-trap
11213 Specifies that the cache cannot be flushed by using a trap.
11214
11215 @item -mflush-func=@var{name}
11216 @opindex mflush-func=@var{name}
11217 Specifies the name of the operating system function to call to flush
11218 the cache.  The default is @emph{_flush_cache}, but a function call
11219 will only be used if a trap is not available.
11220
11221 @item -mno-flush-func
11222 @opindex mno-flush-func
11223 Indicates that there is no OS function for flushing the cache.
11224
11225 @end table
11226
11227 @node M680x0 Options
11228 @subsection M680x0 Options
11229 @cindex M680x0 options
11230
11231 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11232 The default settings depend on which architecture was selected when
11233 the compiler was configured; the defaults for the most common choices
11234 are given below.
11235
11236 @table @gcctabopt
11237 @item -march=@var{arch}
11238 @opindex march
11239 Generate code for a specific M680x0 or ColdFire instruction set
11240 architecture.  Permissible values of @var{arch} for M680x0
11241 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11242 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11243 architectures are selected according to Freescale's ISA classification
11244 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11245 @samp{isab} and @samp{isac}.
11246
11247 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11248 code for a ColdFire target.  The @var{arch} in this macro is one of the
11249 @option{-march} arguments given above.
11250
11251 When used together, @option{-march} and @option{-mtune} select code
11252 that runs on a family of similar processors but that is optimized
11253 for a particular microarchitecture.
11254
11255 @item -mcpu=@var{cpu}
11256 @opindex mcpu
11257 Generate code for a specific M680x0 or ColdFire processor.
11258 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11259 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11260 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11261 below, which also classifies the CPUs into families:
11262
11263 @multitable @columnfractions 0.20 0.80
11264 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11265 @item @samp{51qe} @tab @samp{51qe}
11266 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11267 @item @samp{5206e} @tab @samp{5206e}
11268 @item @samp{5208} @tab @samp{5207} @samp{5208}
11269 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11270 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11271 @item @samp{5216} @tab @samp{5214} @samp{5216}
11272 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11273 @item @samp{5225} @tab @samp{5224} @samp{5225}
11274 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11275 @item @samp{5249} @tab @samp{5249}
11276 @item @samp{5250} @tab @samp{5250}
11277 @item @samp{5271} @tab @samp{5270} @samp{5271}
11278 @item @samp{5272} @tab @samp{5272}
11279 @item @samp{5275} @tab @samp{5274} @samp{5275}
11280 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11281 @item @samp{5307} @tab @samp{5307}
11282 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11283 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11284 @item @samp{5407} @tab @samp{5407}
11285 @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}
11286 @end multitable
11287
11288 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11289 @var{arch} is compatible with @var{cpu}.  Other combinations of
11290 @option{-mcpu} and @option{-march} are rejected.
11291
11292 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11293 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11294 where the value of @var{family} is given by the table above.
11295
11296 @item -mtune=@var{tune}
11297 @opindex mtune
11298 Tune the code for a particular microarchitecture, within the
11299 constraints set by @option{-march} and @option{-mcpu}.
11300 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11301 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11302 and @samp{cpu32}.  The ColdFire microarchitectures
11303 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11304
11305 You can also use @option{-mtune=68020-40} for code that needs
11306 to run relatively well on 68020, 68030 and 68040 targets.
11307 @option{-mtune=68020-60} is similar but includes 68060 targets
11308 as well.  These two options select the same tuning decisions as
11309 @option{-m68020-40} and @option{-m68020-60} respectively.
11310
11311 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11312 when tuning for 680x0 architecture @var{arch}.  It also defines
11313 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11314 option is used.  If gcc is tuning for a range of architectures,
11315 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11316 it defines the macros for every architecture in the range.
11317
11318 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11319 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11320 of the arguments given above.
11321
11322 @item -m68000
11323 @itemx -mc68000
11324 @opindex m68000
11325 @opindex mc68000
11326 Generate output for a 68000.  This is the default
11327 when the compiler is configured for 68000-based systems.
11328 It is equivalent to @option{-march=68000}.
11329
11330 Use this option for microcontrollers with a 68000 or EC000 core,
11331 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11332
11333 @item -m68010
11334 @opindex m68010
11335 Generate output for a 68010.  This is the default
11336 when the compiler is configured for 68010-based systems.
11337 It is equivalent to @option{-march=68010}.
11338
11339 @item -m68020
11340 @itemx -mc68020
11341 @opindex m68020
11342 @opindex mc68020
11343 Generate output for a 68020.  This is the default
11344 when the compiler is configured for 68020-based systems.
11345 It is equivalent to @option{-march=68020}.
11346
11347 @item -m68030
11348 @opindex m68030
11349 Generate output for a 68030.  This is the default when the compiler is
11350 configured for 68030-based systems.  It is equivalent to
11351 @option{-march=68030}.
11352
11353 @item -m68040
11354 @opindex m68040
11355 Generate output for a 68040.  This is the default when the compiler is
11356 configured for 68040-based systems.  It is equivalent to
11357 @option{-march=68040}.
11358
11359 This option inhibits the use of 68881/68882 instructions that have to be
11360 emulated by software on the 68040.  Use this option if your 68040 does not
11361 have code to emulate those instructions.
11362
11363 @item -m68060
11364 @opindex m68060
11365 Generate output for a 68060.  This is the default when the compiler is
11366 configured for 68060-based systems.  It is equivalent to
11367 @option{-march=68060}.
11368
11369 This option inhibits the use of 68020 and 68881/68882 instructions that
11370 have to be emulated by software on the 68060.  Use this option if your 68060
11371 does not have code to emulate those instructions.
11372
11373 @item -mcpu32
11374 @opindex mcpu32
11375 Generate output for a CPU32.  This is the default
11376 when the compiler is configured for CPU32-based systems.
11377 It is equivalent to @option{-march=cpu32}.
11378
11379 Use this option for microcontrollers with a
11380 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11381 68336, 68340, 68341, 68349 and 68360.
11382
11383 @item -m5200
11384 @opindex m5200
11385 Generate output for a 520X ColdFire CPU.  This is the default
11386 when the compiler is configured for 520X-based systems.
11387 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11388 in favor of that option.
11389
11390 Use this option for microcontroller with a 5200 core, including
11391 the MCF5202, MCF5203, MCF5204 and MCF5206.
11392
11393 @item -m5206e
11394 @opindex m5206e
11395 Generate output for a 5206e ColdFire CPU.  The option is now
11396 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11397
11398 @item -m528x
11399 @opindex m528x
11400 Generate output for a member of the ColdFire 528X family.
11401 The option is now deprecated in favor of the equivalent
11402 @option{-mcpu=528x}.
11403
11404 @item -m5307
11405 @opindex m5307
11406 Generate output for a ColdFire 5307 CPU.  The option is now deprecated
11407 in favor of the equivalent @option{-mcpu=5307}.
11408
11409 @item -m5407
11410 @opindex m5407
11411 Generate output for a ColdFire 5407 CPU.  The option is now deprecated
11412 in favor of the equivalent @option{-mcpu=5407}.
11413
11414 @item -mcfv4e
11415 @opindex mcfv4e
11416 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11417 This includes use of hardware floating point instructions.
11418 The option is equivalent to @option{-mcpu=547x}, and is now
11419 deprecated in favor of that option.
11420
11421 @item -m68020-40
11422 @opindex m68020-40
11423 Generate output for a 68040, without using any of the new instructions.
11424 This results in code which can run relatively efficiently on either a
11425 68020/68881 or a 68030 or a 68040.  The generated code does use the
11426 68881 instructions that are emulated on the 68040.
11427
11428 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11429
11430 @item -m68020-60
11431 @opindex m68020-60
11432 Generate output for a 68060, without using any of the new instructions.
11433 This results in code which can run relatively efficiently on either a
11434 68020/68881 or a 68030 or a 68040.  The generated code does use the
11435 68881 instructions that are emulated on the 68060.
11436
11437 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11438
11439 @item -mhard-float
11440 @itemx -m68881
11441 @opindex mhard-float
11442 @opindex m68881
11443 Generate floating-point instructions.  This is the default for 68020
11444 and above, and for ColdFire devices that have an FPU.  It defines the
11445 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11446 on ColdFire targets.
11447
11448 @item -msoft-float
11449 @opindex msoft-float
11450 Do not generate floating-point instructions; use library calls instead.
11451 This is the default for 68000, 68010, and 68832 targets.  It is also
11452 the default for ColdFire devices that have no FPU.
11453
11454 @item -mdiv
11455 @itemx -mno-div
11456 @opindex mdiv
11457 @opindex mno-div
11458 Generate (do not generate) ColdFire hardware divide and remainder
11459 instructions.  If @option{-march} is used without @option{-mcpu},
11460 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11461 architectures.  Otherwise, the default is taken from the target CPU
11462 (either the default CPU, or the one specified by @option{-mcpu}).  For
11463 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11464 @option{-mcpu=5206e}.
11465
11466 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11467
11468 @item -mshort
11469 @opindex mshort
11470 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11471 Additionally, parameters passed on the stack are also aligned to a
11472 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11473
11474 @item -mno-short
11475 @opindex mno-short
11476 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11477
11478 @item -mnobitfield
11479 @itemx -mno-bitfield
11480 @opindex mnobitfield
11481 @opindex mno-bitfield
11482 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11483 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11484
11485 @item -mbitfield
11486 @opindex mbitfield
11487 Do use the bit-field instructions.  The @option{-m68020} option implies
11488 @option{-mbitfield}.  This is the default if you use a configuration
11489 designed for a 68020.
11490
11491 @item -mrtd
11492 @opindex mrtd
11493 Use a different function-calling convention, in which functions
11494 that take a fixed number of arguments return with the @code{rtd}
11495 instruction, which pops their arguments while returning.  This
11496 saves one instruction in the caller since there is no need to pop
11497 the arguments there.
11498
11499 This calling convention is incompatible with the one normally
11500 used on Unix, so you cannot use it if you need to call libraries
11501 compiled with the Unix compiler.
11502
11503 Also, you must provide function prototypes for all functions that
11504 take variable numbers of arguments (including @code{printf});
11505 otherwise incorrect code will be generated for calls to those
11506 functions.
11507
11508 In addition, seriously incorrect code will result if you call a
11509 function with too many arguments.  (Normally, extra arguments are
11510 harmlessly ignored.)
11511
11512 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11513 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11514
11515 @item -mno-rtd
11516 @opindex mno-rtd
11517 Do not use the calling conventions selected by @option{-mrtd}.
11518 This is the default.
11519
11520 @item -malign-int
11521 @itemx -mno-align-int
11522 @opindex malign-int
11523 @opindex mno-align-int
11524 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11525 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11526 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11527 Aligning variables on 32-bit boundaries produces code that runs somewhat
11528 faster on processors with 32-bit busses at the expense of more memory.
11529
11530 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11531 align structures containing the above types  differently than
11532 most published application binary interface specifications for the m68k.
11533
11534 @item -mpcrel
11535 @opindex mpcrel
11536 Use the pc-relative addressing mode of the 68000 directly, instead of
11537 using a global offset table.  At present, this option implies @option{-fpic},
11538 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11539 not presently supported with @option{-mpcrel}, though this could be supported for
11540 68020 and higher processors.
11541
11542 @item -mno-strict-align
11543 @itemx -mstrict-align
11544 @opindex mno-strict-align
11545 @opindex mstrict-align
11546 Do not (do) assume that unaligned memory references will be handled by
11547 the system.
11548
11549 @item -msep-data
11550 Generate code that allows the data segment to be located in a different
11551 area of memory from the text segment.  This allows for execute in place in
11552 an environment without virtual memory management.  This option implies
11553 @option{-fPIC}.
11554
11555 @item -mno-sep-data
11556 Generate code that assumes that the data segment follows the text segment.
11557 This is the default.
11558
11559 @item -mid-shared-library
11560 Generate code that supports shared libraries via the library ID method.
11561 This allows for execute in place and shared libraries in an environment
11562 without virtual memory management.  This option implies @option{-fPIC}.
11563
11564 @item -mno-id-shared-library
11565 Generate code that doesn't assume ID based shared libraries are being used.
11566 This is the default.
11567
11568 @item -mshared-library-id=n
11569 Specified the identification number of the ID based shared library being
11570 compiled.  Specifying a value of 0 will generate more compact code, specifying
11571 other values will force the allocation of that number to the current
11572 library but is no more space or time efficient than omitting this option.
11573
11574 @end table
11575
11576 @node M68hc1x Options
11577 @subsection M68hc1x Options
11578 @cindex M68hc1x options
11579
11580 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11581 microcontrollers.  The default values for these options depends on
11582 which style of microcontroller was selected when the compiler was configured;
11583 the defaults for the most common choices are given below.
11584
11585 @table @gcctabopt
11586 @item -m6811
11587 @itemx -m68hc11
11588 @opindex m6811
11589 @opindex m68hc11
11590 Generate output for a 68HC11.  This is the default
11591 when the compiler is configured for 68HC11-based systems.
11592
11593 @item -m6812
11594 @itemx -m68hc12
11595 @opindex m6812
11596 @opindex m68hc12
11597 Generate output for a 68HC12.  This is the default
11598 when the compiler is configured for 68HC12-based systems.
11599
11600 @item -m68S12
11601 @itemx -m68hcs12
11602 @opindex m68S12
11603 @opindex m68hcs12
11604 Generate output for a 68HCS12.
11605
11606 @item -mauto-incdec
11607 @opindex mauto-incdec
11608 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11609 addressing modes.
11610
11611 @item -minmax
11612 @itemx -nominmax
11613 @opindex minmax
11614 @opindex mnominmax
11615 Enable the use of 68HC12 min and max instructions.
11616
11617 @item -mlong-calls
11618 @itemx -mno-long-calls
11619 @opindex mlong-calls
11620 @opindex mno-long-calls
11621 Treat all calls as being far away (near).  If calls are assumed to be
11622 far away, the compiler will use the @code{call} instruction to
11623 call a function and the @code{rtc} instruction for returning.
11624
11625 @item -mshort
11626 @opindex mshort
11627 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11628
11629 @item -msoft-reg-count=@var{count}
11630 @opindex msoft-reg-count
11631 Specify the number of pseudo-soft registers which are used for the
11632 code generation.  The maximum number is 32.  Using more pseudo-soft
11633 register may or may not result in better code depending on the program.
11634 The default is 4 for 68HC11 and 2 for 68HC12.
11635
11636 @end table
11637
11638 @node MCore Options
11639 @subsection MCore Options
11640 @cindex MCore options
11641
11642 These are the @samp{-m} options defined for the Motorola M*Core
11643 processors.
11644
11645 @table @gcctabopt
11646
11647 @item -mhardlit
11648 @itemx -mno-hardlit
11649 @opindex mhardlit
11650 @opindex mno-hardlit
11651 Inline constants into the code stream if it can be done in two
11652 instructions or less.
11653
11654 @item -mdiv
11655 @itemx -mno-div
11656 @opindex mdiv
11657 @opindex mno-div
11658 Use the divide instruction.  (Enabled by default).
11659
11660 @item -mrelax-immediate
11661 @itemx -mno-relax-immediate
11662 @opindex mrelax-immediate
11663 @opindex mno-relax-immediate
11664 Allow arbitrary sized immediates in bit operations.
11665
11666 @item -mwide-bitfields
11667 @itemx -mno-wide-bitfields
11668 @opindex mwide-bitfields
11669 @opindex mno-wide-bitfields
11670 Always treat bit-fields as int-sized.
11671
11672 @item -m4byte-functions
11673 @itemx -mno-4byte-functions
11674 @opindex m4byte-functions
11675 @opindex mno-4byte-functions
11676 Force all functions to be aligned to a four byte boundary.
11677
11678 @item -mcallgraph-data
11679 @itemx -mno-callgraph-data
11680 @opindex mcallgraph-data
11681 @opindex mno-callgraph-data
11682 Emit callgraph information.
11683
11684 @item -mslow-bytes
11685 @itemx -mno-slow-bytes
11686 @opindex mslow-bytes
11687 @opindex mno-slow-bytes
11688 Prefer word access when reading byte quantities.
11689
11690 @item -mlittle-endian
11691 @itemx -mbig-endian
11692 @opindex mlittle-endian
11693 @opindex mbig-endian
11694 Generate code for a little endian target.
11695
11696 @item -m210
11697 @itemx -m340
11698 @opindex m210
11699 @opindex m340
11700 Generate code for the 210 processor.
11701 @end table
11702
11703 @node MIPS Options
11704 @subsection MIPS Options
11705 @cindex MIPS options
11706
11707 @table @gcctabopt
11708
11709 @item -EB
11710 @opindex EB
11711 Generate big-endian code.
11712
11713 @item -EL
11714 @opindex EL
11715 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
11716 configurations.
11717
11718 @item -march=@var{arch}
11719 @opindex march
11720 Generate code that will run on @var{arch}, which can be the name of a
11721 generic MIPS ISA, or the name of a particular processor.
11722 The ISA names are:
11723 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
11724 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
11725 The processor names are:
11726 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
11727 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
11728 @samp{5kc}, @samp{5kf},
11729 @samp{20kc},
11730 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
11731 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
11732 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
11733 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
11734 @samp{m4k},
11735 @samp{orion},
11736 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
11737 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
11738 @samp{rm7000}, @samp{rm9000},
11739 @samp{sb1},
11740 @samp{sr71000},
11741 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
11742 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
11743 The special value @samp{from-abi} selects the
11744 most compatible architecture for the selected ABI (that is,
11745 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
11746
11747 In processor names, a final @samp{000} can be abbreviated as @samp{k}
11748 (for example, @samp{-march=r2k}).  Prefixes are optional, and
11749 @samp{vr} may be written @samp{r}.
11750
11751 Names of the form @samp{@var{n}f2_1} refer to processors with
11752 FPUs clocked at half the rate of the core, names of the form
11753 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
11754 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
11755 processors with FPUs clocked a ratio of 3:2 with respect to the core.
11756 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
11757 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
11758 accepted as synonyms for @samp{@var{n}f1_1}.
11759
11760 GCC defines two macros based on the value of this option.  The first
11761 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
11762 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
11763 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
11764 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
11765 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
11766
11767 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
11768 above.  In other words, it will have the full prefix and will not
11769 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
11770 the macro names the resolved architecture (either @samp{"mips1"} or
11771 @samp{"mips3"}).  It names the default architecture when no
11772 @option{-march} option is given.
11773
11774 @item -mtune=@var{arch}
11775 @opindex mtune
11776 Optimize for @var{arch}.  Among other things, this option controls
11777 the way instructions are scheduled, and the perceived cost of arithmetic
11778 operations.  The list of @var{arch} values is the same as for
11779 @option{-march}.
11780
11781 When this option is not used, GCC will optimize for the processor
11782 specified by @option{-march}.  By using @option{-march} and
11783 @option{-mtune} together, it is possible to generate code that will
11784 run on a family of processors, but optimize the code for one
11785 particular member of that family.
11786
11787 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
11788 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
11789 @samp{-march} ones described above.
11790
11791 @item -mips1
11792 @opindex mips1
11793 Equivalent to @samp{-march=mips1}.
11794
11795 @item -mips2
11796 @opindex mips2
11797 Equivalent to @samp{-march=mips2}.
11798
11799 @item -mips3
11800 @opindex mips3
11801 Equivalent to @samp{-march=mips3}.
11802
11803 @item -mips4
11804 @opindex mips4
11805 Equivalent to @samp{-march=mips4}.
11806
11807 @item -mips32
11808 @opindex mips32
11809 Equivalent to @samp{-march=mips32}.
11810
11811 @item -mips32r2
11812 @opindex mips32r2
11813 Equivalent to @samp{-march=mips32r2}.
11814
11815 @item -mips64
11816 @opindex mips64
11817 Equivalent to @samp{-march=mips64}.
11818
11819 @item -mips16
11820 @itemx -mno-mips16
11821 @opindex mips16
11822 @opindex mno-mips16
11823 Generate (do not generate) MIPS16 code.  If GCC is targetting a
11824 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
11825
11826 MIPS16 code generation can also be controlled on a per-function basis
11827 by means of @code{mips16} and @code{nomips16} attributes.  
11828 @xref{Function Attributes}, for more information.
11829
11830 @item -mflip-mips16
11831 @opindex mflip-mips16
11832 Generate MIPS16 code on alternating functions.  This option is provided
11833 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
11834 not intended for ordinary use in compiling user code.
11835
11836 @item -minterlink-mips16
11837 @itemx -mno-interlink-mips16
11838 @opindex minterlink-mips16
11839 @opindex mno-interlink-mips16
11840 Require (do not require) that non-MIPS16 code be link-compatible with
11841 MIPS16 code.
11842
11843 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
11844 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
11845 therefore disables direct jumps unless GCC knows that the target of the
11846 jump is not MIPS16.
11847
11848 @item -mabi=32
11849 @itemx -mabi=o64
11850 @itemx -mabi=n32
11851 @itemx -mabi=64
11852 @itemx -mabi=eabi
11853 @opindex mabi=32
11854 @opindex mabi=o64
11855 @opindex mabi=n32
11856 @opindex mabi=64
11857 @opindex mabi=eabi
11858 Generate code for the given ABI@.
11859
11860 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
11861 generates 64-bit code when you select a 64-bit architecture, but you
11862 can use @option{-mgp32} to get 32-bit code instead.
11863
11864 For information about the O64 ABI, see
11865 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
11866
11867 GCC supports a variant of the o32 ABI in which floating-point registers
11868 are 64 rather than 32 bits wide.  You can select this combination with
11869 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
11870 and @samp{mfhc1} instructions and is therefore only supported for
11871 MIPS32R2 processors.
11872
11873 The register assignments for arguments and return values remain the
11874 same, but each scalar value is passed in a single 64-bit register
11875 rather than a pair of 32-bit registers.  For example, scalar
11876 floating-point values are returned in @samp{$f0} only, not a
11877 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
11878 remains the same, but all 64 bits are saved.
11879
11880 @item -mabicalls
11881 @itemx -mno-abicalls
11882 @opindex mabicalls
11883 @opindex mno-abicalls
11884 Generate (do not generate) code that is suitable for SVR4-style
11885 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
11886 systems.
11887
11888 @item -mshared
11889 @itemx -mno-shared
11890 Generate (do not generate) code that is fully position-independent,
11891 and that can therefore be linked into shared libraries.  This option
11892 only affects @option{-mabicalls}.
11893
11894 All @option{-mabicalls} code has traditionally been position-independent,
11895 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
11896 as an extension, the GNU toolchain allows executables to use absolute
11897 accesses for locally-binding symbols.  It can also use shorter GP
11898 initialization sequences and generate direct calls to locally-defined
11899 functions.  This mode is selected by @option{-mno-shared}.
11900
11901 @option{-mno-shared} depends on binutils 2.16 or higher and generates
11902 objects that can only be linked by the GNU linker.  However, the option
11903 does not affect the ABI of the final executable; it only affects the ABI
11904 of relocatable objects.  Using @option{-mno-shared} will generally make
11905 executables both smaller and quicker.
11906
11907 @option{-mshared} is the default.
11908
11909 @item -mxgot
11910 @itemx -mno-xgot
11911 @opindex mxgot
11912 @opindex mno-xgot
11913 Lift (do not lift) the usual restrictions on the size of the global
11914 offset table.
11915
11916 GCC normally uses a single instruction to load values from the GOT@.
11917 While this is relatively efficient, it will only work if the GOT
11918 is smaller than about 64k.  Anything larger will cause the linker
11919 to report an error such as:
11920
11921 @cindex relocation truncated to fit (MIPS)
11922 @smallexample
11923 relocation truncated to fit: R_MIPS_GOT16 foobar
11924 @end smallexample
11925
11926 If this happens, you should recompile your code with @option{-mxgot}.
11927 It should then work with very large GOTs, although it will also be
11928 less efficient, since it will take three instructions to fetch the
11929 value of a global symbol.
11930
11931 Note that some linkers can create multiple GOTs.  If you have such a
11932 linker, you should only need to use @option{-mxgot} when a single object
11933 file accesses more than 64k's worth of GOT entries.  Very few do.
11934
11935 These options have no effect unless GCC is generating position
11936 independent code.
11937
11938 @item -mgp32
11939 @opindex mgp32
11940 Assume that general-purpose registers are 32 bits wide.
11941
11942 @item -mgp64
11943 @opindex mgp64
11944 Assume that general-purpose registers are 64 bits wide.
11945
11946 @item -mfp32
11947 @opindex mfp32
11948 Assume that floating-point registers are 32 bits wide.
11949
11950 @item -mfp64
11951 @opindex mfp64
11952 Assume that floating-point registers are 64 bits wide.
11953
11954 @item -mhard-float
11955 @opindex mhard-float
11956 Use floating-point coprocessor instructions.
11957
11958 @item -msoft-float
11959 @opindex msoft-float
11960 Do not use floating-point coprocessor instructions.  Implement
11961 floating-point calculations using library calls instead.
11962
11963 @item -msingle-float
11964 @opindex msingle-float
11965 Assume that the floating-point coprocessor only supports single-precision
11966 operations.
11967
11968 @item -mdouble-float
11969 @opindex mdouble-float
11970 Assume that the floating-point coprocessor supports double-precision
11971 operations.  This is the default.
11972
11973 @item -mllsc
11974 @itemx -mno-llsc
11975 @opindex mllsc
11976 @opindex mno-llsc
11977 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
11978 implement atomic memory built-in functions.  When neither option is
11979 specified, GCC will use the instructions if the target architecture
11980 supports them.
11981
11982 @option{-mllsc} is useful if the runtime environment can emulate the
11983 instructions and @option{-mno-llsc} can be useful when compiling for
11984 nonstandard ISAs.  You can make either option the default by
11985 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
11986 respectively.  @option{--with-llsc} is the default for some
11987 configurations; see the installation documentation for details.
11988
11989 @item -mdsp
11990 @itemx -mno-dsp
11991 @opindex mdsp
11992 @opindex mno-dsp
11993 Use (do not use) revision 1 of the MIPS DSP ASE.
11994 @xref{MIPS DSP Built-in Functions}.  This option defines the
11995 preprocessor macro @samp{__mips_dsp}.  It also defines
11996 @samp{__mips_dsp_rev} to 1.
11997
11998 @item -mdspr2
11999 @itemx -mno-dspr2
12000 @opindex mdspr2
12001 @opindex mno-dspr2
12002 Use (do not use) revision 2 of the MIPS DSP ASE.
12003 @xref{MIPS DSP Built-in Functions}.  This option defines the
12004 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
12005 It also defines @samp{__mips_dsp_rev} to 2.
12006
12007 @item -msmartmips
12008 @itemx -mno-smartmips
12009 @opindex msmartmips
12010 @opindex mno-smartmips
12011 Use (do not use) the MIPS SmartMIPS ASE.
12012
12013 @item -mpaired-single
12014 @itemx -mno-paired-single
12015 @opindex mpaired-single
12016 @opindex mno-paired-single
12017 Use (do not use) paired-single floating-point instructions.
12018 @xref{MIPS Paired-Single Support}.  This option requires
12019 hardware floating-point support to be enabled.
12020
12021 @item -mdmx
12022 @itemx -mno-mdmx
12023 @opindex mdmx
12024 @opindex mno-mdmx
12025 Use (do not use) MIPS Digital Media Extension instructions.
12026 This option can only be used when generating 64-bit code and requires
12027 hardware floating-point support to be enabled.
12028
12029 @item -mips3d
12030 @itemx -mno-mips3d
12031 @opindex mips3d
12032 @opindex mno-mips3d
12033 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
12034 The option @option{-mips3d} implies @option{-mpaired-single}.
12035
12036 @item -mmt
12037 @itemx -mno-mt
12038 @opindex mmt
12039 @opindex mno-mt
12040 Use (do not use) MT Multithreading instructions.
12041
12042 @item -mlong64
12043 @opindex mlong64
12044 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
12045 an explanation of the default and the way that the pointer size is
12046 determined.
12047
12048 @item -mlong32
12049 @opindex mlong32
12050 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
12051
12052 The default size of @code{int}s, @code{long}s and pointers depends on
12053 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
12054 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
12055 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
12056 or the same size as integer registers, whichever is smaller.
12057
12058 @item -msym32
12059 @itemx -mno-sym32
12060 @opindex msym32
12061 @opindex mno-sym32
12062 Assume (do not assume) that all symbols have 32-bit values, regardless
12063 of the selected ABI@.  This option is useful in combination with
12064 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
12065 to generate shorter and faster references to symbolic addresses.
12066
12067 @item -G @var{num}
12068 @opindex G
12069 Put definitions of externally-visible data in a small data section
12070 if that data is no bigger than @var{num} bytes.  GCC can then access
12071 the data more efficiently; see @option{-mgpopt} for details.
12072
12073 The default @option{-G} option depends on the configuration.
12074
12075 @item -mlocal-sdata
12076 @itemx -mno-local-sdata
12077 @opindex mlocal-sdata
12078 @opindex mno-local-sdata
12079 Extend (do not extend) the @option{-G} behavior to local data too,
12080 such as to static variables in C.  @option{-mlocal-sdata} is the
12081 default for all configurations.
12082
12083 If the linker complains that an application is using too much small data,
12084 you might want to try rebuilding the less performance-critical parts with
12085 @option{-mno-local-sdata}.  You might also want to build large
12086 libraries with @option{-mno-local-sdata}, so that the libraries leave
12087 more room for the main program.
12088
12089 @item -mextern-sdata
12090 @itemx -mno-extern-sdata
12091 @opindex mextern-sdata
12092 @opindex mno-extern-sdata
12093 Assume (do not assume) that externally-defined data will be in
12094 a small data section if that data is within the @option{-G} limit.
12095 @option{-mextern-sdata} is the default for all configurations.
12096
12097 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
12098 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
12099 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
12100 is placed in a small data section.  If @var{Var} is defined by another
12101 module, you must either compile that module with a high-enough
12102 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
12103 definition.  If @var{Var} is common, you must link the application
12104 with a high-enough @option{-G} setting.
12105
12106 The easiest way of satisfying these restrictions is to compile
12107 and link every module with the same @option{-G} option.  However,
12108 you may wish to build a library that supports several different
12109 small data limits.  You can do this by compiling the library with
12110 the highest supported @option{-G} setting and additionally using
12111 @option{-mno-extern-sdata} to stop the library from making assumptions
12112 about externally-defined data.
12113
12114 @item -mgpopt
12115 @itemx -mno-gpopt
12116 @opindex mgpopt
12117 @opindex mno-gpopt
12118 Use (do not use) GP-relative accesses for symbols that are known to be
12119 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
12120 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
12121 configurations.
12122
12123 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
12124 might not hold the value of @code{_gp}.  For example, if the code is
12125 part of a library that might be used in a boot monitor, programs that
12126 call boot monitor routines will pass an unknown value in @code{$gp}.
12127 (In such situations, the boot monitor itself would usually be compiled
12128 with @option{-G0}.)
12129
12130 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
12131 @option{-mno-extern-sdata}.
12132
12133 @item -membedded-data
12134 @itemx -mno-embedded-data
12135 @opindex membedded-data
12136 @opindex mno-embedded-data
12137 Allocate variables to the read-only data section first if possible, then
12138 next in the small data section if possible, otherwise in data.  This gives
12139 slightly slower code than the default, but reduces the amount of RAM required
12140 when executing, and thus may be preferred for some embedded systems.
12141
12142 @item -muninit-const-in-rodata
12143 @itemx -mno-uninit-const-in-rodata
12144 @opindex muninit-const-in-rodata
12145 @opindex mno-uninit-const-in-rodata
12146 Put uninitialized @code{const} variables in the read-only data section.
12147 This option is only meaningful in conjunction with @option{-membedded-data}.
12148
12149 @item -mcode-readable=@var{setting}
12150 @opindex mcode-readable
12151 Specify whether GCC may generate code that reads from executable sections.
12152 There are three possible settings:
12153
12154 @table @gcctabopt
12155 @item -mcode-readable=yes
12156 Instructions may freely access executable sections.  This is the
12157 default setting.
12158
12159 @item -mcode-readable=pcrel
12160 MIPS16 PC-relative load instructions can access executable sections,
12161 but other instructions must not do so.  This option is useful on 4KSc
12162 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12163 It is also useful on processors that can be configured to have a dual
12164 instruction/data SRAM interface and that, like the M4K, automatically
12165 redirect PC-relative loads to the instruction RAM.
12166
12167 @item -mcode-readable=no
12168 Instructions must not access executable sections.  This option can be
12169 useful on targets that are configured to have a dual instruction/data
12170 SRAM interface but that (unlike the M4K) do not automatically redirect
12171 PC-relative loads to the instruction RAM.
12172 @end table
12173
12174 @item -msplit-addresses
12175 @itemx -mno-split-addresses
12176 @opindex msplit-addresses
12177 @opindex mno-split-addresses
12178 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12179 relocation operators.  This option has been superseded by
12180 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12181
12182 @item -mexplicit-relocs
12183 @itemx -mno-explicit-relocs
12184 @opindex mexplicit-relocs
12185 @opindex mno-explicit-relocs
12186 Use (do not use) assembler relocation operators when dealing with symbolic
12187 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12188 is to use assembler macros instead.
12189
12190 @option{-mexplicit-relocs} is the default if GCC was configured
12191 to use an assembler that supports relocation operators.
12192
12193 @item -mcheck-zero-division
12194 @itemx -mno-check-zero-division
12195 @opindex mcheck-zero-division
12196 @opindex mno-check-zero-division
12197 Trap (do not trap) on integer division by zero.
12198
12199 The default is @option{-mcheck-zero-division}.
12200
12201 @item -mdivide-traps
12202 @itemx -mdivide-breaks
12203 @opindex mdivide-traps
12204 @opindex mdivide-breaks
12205 MIPS systems check for division by zero by generating either a
12206 conditional trap or a break instruction.  Using traps results in
12207 smaller code, but is only supported on MIPS II and later.  Also, some
12208 versions of the Linux kernel have a bug that prevents trap from
12209 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12210 allow conditional traps on architectures that support them and
12211 @option{-mdivide-breaks} to force the use of breaks.
12212
12213 The default is usually @option{-mdivide-traps}, but this can be
12214 overridden at configure time using @option{--with-divide=breaks}.
12215 Divide-by-zero checks can be completely disabled using
12216 @option{-mno-check-zero-division}.
12217
12218 @item -mmemcpy
12219 @itemx -mno-memcpy
12220 @opindex mmemcpy
12221 @opindex mno-memcpy
12222 Force (do not force) the use of @code{memcpy()} for non-trivial block
12223 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12224 most constant-sized copies.
12225
12226 @item -mlong-calls
12227 @itemx -mno-long-calls
12228 @opindex mlong-calls
12229 @opindex mno-long-calls
12230 Disable (do not disable) use of the @code{jal} instruction.  Calling
12231 functions using @code{jal} is more efficient but requires the caller
12232 and callee to be in the same 256 megabyte segment.
12233
12234 This option has no effect on abicalls code.  The default is
12235 @option{-mno-long-calls}.
12236
12237 @item -mmad
12238 @itemx -mno-mad
12239 @opindex mmad
12240 @opindex mno-mad
12241 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12242 instructions, as provided by the R4650 ISA@.
12243
12244 @item -mfused-madd
12245 @itemx -mno-fused-madd
12246 @opindex mfused-madd
12247 @opindex mno-fused-madd
12248 Enable (disable) use of the floating point multiply-accumulate
12249 instructions, when they are available.  The default is
12250 @option{-mfused-madd}.
12251
12252 When multiply-accumulate instructions are used, the intermediate
12253 product is calculated to infinite precision and is not subject to
12254 the FCSR Flush to Zero bit.  This may be undesirable in some
12255 circumstances.
12256
12257 @item -nocpp
12258 @opindex nocpp
12259 Tell the MIPS assembler to not run its preprocessor over user
12260 assembler files (with a @samp{.s} suffix) when assembling them.
12261
12262 @item -mfix-r4000
12263 @itemx -mno-fix-r4000
12264 @opindex mfix-r4000
12265 @opindex mno-fix-r4000
12266 Work around certain R4000 CPU errata:
12267 @itemize @minus
12268 @item
12269 A double-word or a variable shift may give an incorrect result if executed
12270 immediately after starting an integer division.
12271 @item
12272 A double-word or a variable shift may give an incorrect result if executed
12273 while an integer multiplication is in progress.
12274 @item
12275 An integer division may give an incorrect result if started in a delay slot
12276 of a taken branch or a jump.
12277 @end itemize
12278
12279 @item -mfix-r4400
12280 @itemx -mno-fix-r4400
12281 @opindex mfix-r4400
12282 @opindex mno-fix-r4400
12283 Work around certain R4400 CPU errata:
12284 @itemize @minus
12285 @item
12286 A double-word or a variable shift may give an incorrect result if executed
12287 immediately after starting an integer division.
12288 @end itemize
12289
12290 @item -mfix-vr4120
12291 @itemx -mno-fix-vr4120
12292 @opindex mfix-vr4120
12293 Work around certain VR4120 errata:
12294 @itemize @minus
12295 @item
12296 @code{dmultu} does not always produce the correct result.
12297 @item
12298 @code{div} and @code{ddiv} do not always produce the correct result if one
12299 of the operands is negative.
12300 @end itemize
12301 The workarounds for the division errata rely on special functions in
12302 @file{libgcc.a}.  At present, these functions are only provided by
12303 the @code{mips64vr*-elf} configurations.
12304
12305 Other VR4120 errata require a nop to be inserted between certain pairs of
12306 instructions.  These errata are handled by the assembler, not by GCC itself.
12307
12308 @item -mfix-vr4130
12309 @opindex mfix-vr4130
12310 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12311 workarounds are implemented by the assembler rather than by GCC,
12312 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12313 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12314 instructions are available instead.
12315
12316 @item -mfix-sb1
12317 @itemx -mno-fix-sb1
12318 @opindex mfix-sb1
12319 Work around certain SB-1 CPU core errata.
12320 (This flag currently works around the SB-1 revision 2
12321 ``F1'' and ``F2'' floating point errata.)
12322
12323 @item -mflush-func=@var{func}
12324 @itemx -mno-flush-func
12325 @opindex mflush-func
12326 Specifies the function to call to flush the I and D caches, or to not
12327 call any such function.  If called, the function must take the same
12328 arguments as the common @code{_flush_func()}, that is, the address of the
12329 memory range for which the cache is being flushed, the size of the
12330 memory range, and the number 3 (to flush both caches).  The default
12331 depends on the target GCC was configured for, but commonly is either
12332 @samp{_flush_func} or @samp{__cpu_flush}.
12333
12334 @item mbranch-cost=@var{num}
12335 @opindex mbranch-cost
12336 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12337 This cost is only a heuristic and is not guaranteed to produce
12338 consistent results across releases.  A zero cost redundantly selects
12339 the default, which is based on the @option{-mtune} setting.
12340
12341 @item -mbranch-likely
12342 @itemx -mno-branch-likely
12343 @opindex mbranch-likely
12344 @opindex mno-branch-likely
12345 Enable or disable use of Branch Likely instructions, regardless of the
12346 default for the selected architecture.  By default, Branch Likely
12347 instructions may be generated if they are supported by the selected
12348 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12349 and processors which implement those architectures; for those, Branch
12350 Likely instructions will not be generated by default because the MIPS32
12351 and MIPS64 architectures specifically deprecate their use.
12352
12353 @item -mfp-exceptions
12354 @itemx -mno-fp-exceptions
12355 @opindex mfp-exceptions
12356 Specifies whether FP exceptions are enabled.  This affects how we schedule
12357 FP instructions for some processors.  The default is that FP exceptions are
12358 enabled.
12359
12360 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12361 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12362 FP pipe.
12363
12364 @item -mvr4130-align
12365 @itemx -mno-vr4130-align
12366 @opindex mvr4130-align
12367 The VR4130 pipeline is two-way superscalar, but can only issue two
12368 instructions together if the first one is 8-byte aligned.  When this
12369 option is enabled, GCC will align pairs of instructions that it
12370 thinks should execute in parallel.
12371
12372 This option only has an effect when optimizing for the VR4130.
12373 It normally makes code faster, but at the expense of making it bigger.
12374 It is enabled by default at optimization level @option{-O3}.
12375 @end table
12376
12377 @node MMIX Options
12378 @subsection MMIX Options
12379 @cindex MMIX Options
12380
12381 These options are defined for the MMIX:
12382
12383 @table @gcctabopt
12384 @item -mlibfuncs
12385 @itemx -mno-libfuncs
12386 @opindex mlibfuncs
12387 @opindex mno-libfuncs
12388 Specify that intrinsic library functions are being compiled, passing all
12389 values in registers, no matter the size.
12390
12391 @item -mepsilon
12392 @itemx -mno-epsilon
12393 @opindex mepsilon
12394 @opindex mno-epsilon
12395 Generate floating-point comparison instructions that compare with respect
12396 to the @code{rE} epsilon register.
12397
12398 @item -mabi=mmixware
12399 @itemx -mabi=gnu
12400 @opindex mabi-mmixware
12401 @opindex mabi=gnu
12402 Generate code that passes function parameters and return values that (in
12403 the called function) are seen as registers @code{$0} and up, as opposed to
12404 the GNU ABI which uses global registers @code{$231} and up.
12405
12406 @item -mzero-extend
12407 @itemx -mno-zero-extend
12408 @opindex mzero-extend
12409 @opindex mno-zero-extend
12410 When reading data from memory in sizes shorter than 64 bits, use (do not
12411 use) zero-extending load instructions by default, rather than
12412 sign-extending ones.
12413
12414 @item -mknuthdiv
12415 @itemx -mno-knuthdiv
12416 @opindex mknuthdiv
12417 @opindex mno-knuthdiv
12418 Make the result of a division yielding a remainder have the same sign as
12419 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12420 remainder follows the sign of the dividend.  Both methods are
12421 arithmetically valid, the latter being almost exclusively used.
12422
12423 @item -mtoplevel-symbols
12424 @itemx -mno-toplevel-symbols
12425 @opindex mtoplevel-symbols
12426 @opindex mno-toplevel-symbols
12427 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12428 code can be used with the @code{PREFIX} assembly directive.
12429
12430 @item -melf
12431 @opindex melf
12432 Generate an executable in the ELF format, rather than the default
12433 @samp{mmo} format used by the @command{mmix} simulator.
12434
12435 @item -mbranch-predict
12436 @itemx -mno-branch-predict
12437 @opindex mbranch-predict
12438 @opindex mno-branch-predict
12439 Use (do not use) the probable-branch instructions, when static branch
12440 prediction indicates a probable branch.
12441
12442 @item -mbase-addresses
12443 @itemx -mno-base-addresses
12444 @opindex mbase-addresses
12445 @opindex mno-base-addresses
12446 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12447 base address automatically generates a request (handled by the assembler
12448 and the linker) for a constant to be set up in a global register.  The
12449 register is used for one or more base address requests within the range 0
12450 to 255 from the value held in the register.  The generally leads to short
12451 and fast code, but the number of different data items that can be
12452 addressed is limited.  This means that a program that uses lots of static
12453 data may require @option{-mno-base-addresses}.
12454
12455 @item -msingle-exit
12456 @itemx -mno-single-exit
12457 @opindex msingle-exit
12458 @opindex mno-single-exit
12459 Force (do not force) generated code to have a single exit point in each
12460 function.
12461 @end table
12462
12463 @node MN10300 Options
12464 @subsection MN10300 Options
12465 @cindex MN10300 options
12466
12467 These @option{-m} options are defined for Matsushita MN10300 architectures:
12468
12469 @table @gcctabopt
12470 @item -mmult-bug
12471 @opindex mmult-bug
12472 Generate code to avoid bugs in the multiply instructions for the MN10300
12473 processors.  This is the default.
12474
12475 @item -mno-mult-bug
12476 @opindex mno-mult-bug
12477 Do not generate code to avoid bugs in the multiply instructions for the
12478 MN10300 processors.
12479
12480 @item -mam33
12481 @opindex mam33
12482 Generate code which uses features specific to the AM33 processor.
12483
12484 @item -mno-am33
12485 @opindex mno-am33
12486 Do not generate code which uses features specific to the AM33 processor.  This
12487 is the default.
12488
12489 @item -mreturn-pointer-on-d0
12490 @opindex mreturn-pointer-on-d0
12491 When generating a function which returns a pointer, return the pointer
12492 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12493 only in a0, and attempts to call such functions without a prototype
12494 would result in errors.  Note that this option is on by default; use
12495 @option{-mno-return-pointer-on-d0} to disable it.
12496
12497 @item -mno-crt0
12498 @opindex mno-crt0
12499 Do not link in the C run-time initialization object file.
12500
12501 @item -mrelax
12502 @opindex mrelax
12503 Indicate to the linker that it should perform a relaxation optimization pass
12504 to shorten branches, calls and absolute memory addresses.  This option only
12505 has an effect when used on the command line for the final link step.
12506
12507 This option makes symbolic debugging impossible.
12508 @end table
12509
12510 @node MT Options
12511 @subsection MT Options
12512 @cindex MT options
12513
12514 These @option{-m} options are defined for Morpho MT architectures:
12515
12516 @table @gcctabopt
12517
12518 @item -march=@var{cpu-type}
12519 @opindex march
12520 Generate code that will run on @var{cpu-type}, which is the name of a system
12521 representing a certain processor type.  Possible values for
12522 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
12523 @samp{ms1-16-003} and @samp{ms2}.
12524
12525 When this option is not used, the default is @option{-march=ms1-16-002}.
12526
12527 @item -mbacc
12528 @opindex mbacc
12529 Use byte loads and stores when generating code.
12530
12531 @item -mno-bacc
12532 @opindex mno-bacc
12533 Do not use byte loads and stores when generating code.
12534
12535 @item -msim
12536 @opindex msim
12537 Use simulator runtime
12538
12539 @item -mno-crt0
12540 @opindex mno-crt0
12541 Do not link in the C run-time initialization object file
12542 @file{crti.o}.  Other run-time initialization and termination files
12543 such as @file{startup.o} and @file{exit.o} are still included on the
12544 linker command line.
12545
12546 @end table
12547
12548 @node PDP-11 Options
12549 @subsection PDP-11 Options
12550 @cindex PDP-11 Options
12551
12552 These options are defined for the PDP-11:
12553
12554 @table @gcctabopt
12555 @item -mfpu
12556 @opindex mfpu
12557 Use hardware FPP floating point.  This is the default.  (FIS floating
12558 point on the PDP-11/40 is not supported.)
12559
12560 @item -msoft-float
12561 @opindex msoft-float
12562 Do not use hardware floating point.
12563
12564 @item -mac0
12565 @opindex mac0
12566 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12567
12568 @item -mno-ac0
12569 @opindex mno-ac0
12570 Return floating-point results in memory.  This is the default.
12571
12572 @item -m40
12573 @opindex m40
12574 Generate code for a PDP-11/40.
12575
12576 @item -m45
12577 @opindex m45
12578 Generate code for a PDP-11/45.  This is the default.
12579
12580 @item -m10
12581 @opindex m10
12582 Generate code for a PDP-11/10.
12583
12584 @item -mbcopy-builtin
12585 @opindex bcopy-builtin
12586 Use inline @code{movmemhi} patterns for copying memory.  This is the
12587 default.
12588
12589 @item -mbcopy
12590 @opindex mbcopy
12591 Do not use inline @code{movmemhi} patterns for copying memory.
12592
12593 @item -mint16
12594 @itemx -mno-int32
12595 @opindex mint16
12596 @opindex mno-int32
12597 Use 16-bit @code{int}.  This is the default.
12598
12599 @item -mint32
12600 @itemx -mno-int16
12601 @opindex mint32
12602 @opindex mno-int16
12603 Use 32-bit @code{int}.
12604
12605 @item -mfloat64
12606 @itemx -mno-float32
12607 @opindex mfloat64
12608 @opindex mno-float32
12609 Use 64-bit @code{float}.  This is the default.
12610
12611 @item -mfloat32
12612 @itemx -mno-float64
12613 @opindex mfloat32
12614 @opindex mno-float64
12615 Use 32-bit @code{float}.
12616
12617 @item -mabshi
12618 @opindex mabshi
12619 Use @code{abshi2} pattern.  This is the default.
12620
12621 @item -mno-abshi
12622 @opindex mno-abshi
12623 Do not use @code{abshi2} pattern.
12624
12625 @item -mbranch-expensive
12626 @opindex mbranch-expensive
12627 Pretend that branches are expensive.  This is for experimenting with
12628 code generation only.
12629
12630 @item -mbranch-cheap
12631 @opindex mbranch-cheap
12632 Do not pretend that branches are expensive.  This is the default.
12633
12634 @item -msplit
12635 @opindex msplit
12636 Generate code for a system with split I&D@.
12637
12638 @item -mno-split
12639 @opindex mno-split
12640 Generate code for a system without split I&D@.  This is the default.
12641
12642 @item -munix-asm
12643 @opindex munix-asm
12644 Use Unix assembler syntax.  This is the default when configured for
12645 @samp{pdp11-*-bsd}.
12646
12647 @item -mdec-asm
12648 @opindex mdec-asm
12649 Use DEC assembler syntax.  This is the default when configured for any
12650 PDP-11 target other than @samp{pdp11-*-bsd}.
12651 @end table
12652
12653 @node PowerPC Options
12654 @subsection PowerPC Options
12655 @cindex PowerPC options
12656
12657 These are listed under @xref{RS/6000 and PowerPC Options}.
12658
12659 @node RS/6000 and PowerPC Options
12660 @subsection IBM RS/6000 and PowerPC Options
12661 @cindex RS/6000 and PowerPC Options
12662 @cindex IBM RS/6000 and PowerPC Options
12663
12664 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12665 @table @gcctabopt
12666 @item -mpower
12667 @itemx -mno-power
12668 @itemx -mpower2
12669 @itemx -mno-power2
12670 @itemx -mpowerpc
12671 @itemx -mno-powerpc
12672 @itemx -mpowerpc-gpopt
12673 @itemx -mno-powerpc-gpopt
12674 @itemx -mpowerpc-gfxopt
12675 @itemx -mno-powerpc-gfxopt
12676 @itemx -mpowerpc64
12677 @itemx -mno-powerpc64
12678 @itemx -mmfcrf
12679 @itemx -mno-mfcrf
12680 @itemx -mpopcntb
12681 @itemx -mno-popcntb
12682 @itemx -mfprnd
12683 @itemx -mno-fprnd
12684 @itemx -mcmpb
12685 @itemx -mno-cmpb
12686 @itemx -mmfpgpr
12687 @itemx -mno-mfpgpr
12688 @itemx -mhard-dfp
12689 @itemx -mno-hard-dfp
12690 @opindex mpower
12691 @opindex mno-power
12692 @opindex mpower2
12693 @opindex mno-power2
12694 @opindex mpowerpc
12695 @opindex mno-powerpc
12696 @opindex mpowerpc-gpopt
12697 @opindex mno-powerpc-gpopt
12698 @opindex mpowerpc-gfxopt
12699 @opindex mno-powerpc-gfxopt
12700 @opindex mpowerpc64
12701 @opindex mno-powerpc64
12702 @opindex mmfcrf
12703 @opindex mno-mfcrf
12704 @opindex mpopcntb
12705 @opindex mno-popcntb
12706 @opindex mfprnd
12707 @opindex mno-fprnd
12708 @opindex mcmpb
12709 @opindex mno-cmpb
12710 @opindex mmfpgpr
12711 @opindex mno-mfpgpr
12712 @opindex mhard-dfp
12713 @opindex mno-hard-dfp
12714 GCC supports two related instruction set architectures for the
12715 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
12716 instructions supported by the @samp{rios} chip set used in the original
12717 RS/6000 systems and the @dfn{PowerPC} instruction set is the
12718 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
12719 the IBM 4xx, 6xx, and follow-on microprocessors.
12720
12721 Neither architecture is a subset of the other.  However there is a
12722 large common subset of instructions supported by both.  An MQ
12723 register is included in processors supporting the POWER architecture.
12724
12725 You use these options to specify which instructions are available on the
12726 processor you are using.  The default value of these options is
12727 determined when configuring GCC@.  Specifying the
12728 @option{-mcpu=@var{cpu_type}} overrides the specification of these
12729 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
12730 rather than the options listed above.
12731
12732 The @option{-mpower} option allows GCC to generate instructions that
12733 are found only in the POWER architecture and to use the MQ register.
12734 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
12735 to generate instructions that are present in the POWER2 architecture but
12736 not the original POWER architecture.
12737
12738 The @option{-mpowerpc} option allows GCC to generate instructions that
12739 are found only in the 32-bit subset of the PowerPC architecture.
12740 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
12741 GCC to use the optional PowerPC architecture instructions in the
12742 General Purpose group, including floating-point square root.  Specifying
12743 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
12744 use the optional PowerPC architecture instructions in the Graphics
12745 group, including floating-point select.
12746
12747 The @option{-mmfcrf} option allows GCC to generate the move from
12748 condition register field instruction implemented on the POWER4
12749 processor and other processors that support the PowerPC V2.01
12750 architecture.
12751 The @option{-mpopcntb} option allows GCC to generate the popcount and
12752 double precision FP reciprocal estimate instruction implemented on the
12753 POWER5 processor and other processors that support the PowerPC V2.02
12754 architecture.
12755 The @option{-mfprnd} option allows GCC to generate the FP round to
12756 integer instructions implemented on the POWER5+ processor and other
12757 processors that support the PowerPC V2.03 architecture.
12758 The @option{-mcmpb} option allows GCC to generate the compare bytes
12759 instruction implemented on the POWER6 processor and other processors
12760 that support the PowerPC V2.05 architecture.
12761 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
12762 general purpose register instructions implemented on the POWER6X
12763 processor and other processors that support the extended PowerPC V2.05
12764 architecture.
12765 The @option{-mhard-dfp} option allows GCC to generate the decimal floating
12766 point instructions implemented on some POWER processors.
12767
12768 The @option{-mpowerpc64} option allows GCC to generate the additional
12769 64-bit instructions that are found in the full PowerPC64 architecture
12770 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
12771 @option{-mno-powerpc64}.
12772
12773 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
12774 will use only the instructions in the common subset of both
12775 architectures plus some special AIX common-mode calls, and will not use
12776 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
12777 permits GCC to use any instruction from either architecture and to
12778 allow use of the MQ register; specify this for the Motorola MPC601.
12779
12780 @item -mnew-mnemonics
12781 @itemx -mold-mnemonics
12782 @opindex mnew-mnemonics
12783 @opindex mold-mnemonics
12784 Select which mnemonics to use in the generated assembler code.  With
12785 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
12786 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
12787 assembler mnemonics defined for the POWER architecture.  Instructions
12788 defined in only one architecture have only one mnemonic; GCC uses that
12789 mnemonic irrespective of which of these options is specified.
12790
12791 GCC defaults to the mnemonics appropriate for the architecture in
12792 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
12793 value of these option.  Unless you are building a cross-compiler, you
12794 should normally not specify either @option{-mnew-mnemonics} or
12795 @option{-mold-mnemonics}, but should instead accept the default.
12796
12797 @item -mcpu=@var{cpu_type}
12798 @opindex mcpu
12799 Set architecture type, register usage, choice of mnemonics, and
12800 instruction scheduling parameters for machine type @var{cpu_type}.
12801 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
12802 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
12803 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
12804 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
12805 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
12806 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
12807 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
12808 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
12809 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
12810 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
12811
12812 @option{-mcpu=common} selects a completely generic processor.  Code
12813 generated under this option will run on any POWER or PowerPC processor.
12814 GCC will use only the instructions in the common subset of both
12815 architectures, and will not use the MQ register.  GCC assumes a generic
12816 processor model for scheduling purposes.
12817
12818 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
12819 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
12820 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
12821 types, with an appropriate, generic processor model assumed for
12822 scheduling purposes.
12823
12824 The other options specify a specific processor.  Code generated under
12825 those options will run best on that processor, and may not run at all on
12826 others.
12827
12828 The @option{-mcpu} options automatically enable or disable the
12829 following options:
12830
12831 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
12832 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
12833 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
12834
12835 The particular options set for any particular CPU will vary between
12836 compiler versions, depending on what setting seems to produce optimal
12837 code for that CPU; it doesn't necessarily reflect the actual hardware's
12838 capabilities.  If you wish to set an individual option to a particular
12839 value, you may specify it after the @option{-mcpu} option, like
12840 @samp{-mcpu=970 -mno-altivec}.
12841
12842 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
12843 not enabled or disabled by the @option{-mcpu} option at present because
12844 AIX does not have full support for these options.  You may still
12845 enable or disable them individually if you're sure it'll work in your
12846 environment.
12847
12848 @item -mtune=@var{cpu_type}
12849 @opindex mtune
12850 Set the instruction scheduling parameters for machine type
12851 @var{cpu_type}, but do not set the architecture type, register usage, or
12852 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
12853 values for @var{cpu_type} are used for @option{-mtune} as for
12854 @option{-mcpu}.  If both are specified, the code generated will use the
12855 architecture, registers, and mnemonics set by @option{-mcpu}, but the
12856 scheduling parameters set by @option{-mtune}.
12857
12858 @item -mswdiv
12859 @itemx -mno-swdiv
12860 @opindex mswdiv
12861 @opindex mno-swdiv
12862 Generate code to compute division as reciprocal estimate and iterative
12863 refinement, creating opportunities for increased throughput.  This
12864 feature requires: optional PowerPC Graphics instruction set for single
12865 precision and FRE instruction for double precision, assuming divides
12866 cannot generate user-visible traps, and the domain values not include
12867 Infinities, denormals or zero denominator.
12868
12869 @item -maltivec
12870 @itemx -mno-altivec
12871 @opindex maltivec
12872 @opindex mno-altivec
12873 Generate code that uses (does not use) AltiVec instructions, and also
12874 enable the use of built-in functions that allow more direct access to
12875 the AltiVec instruction set.  You may also need to set
12876 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
12877 enhancements.
12878
12879 @item -mvrsave
12880 @item -mno-vrsave
12881 @opindex mvrsave
12882 @opindex mno-vrsave
12883 Generate VRSAVE instructions when generating AltiVec code.
12884
12885 @item -msecure-plt
12886 @opindex msecure-plt
12887 Generate code that allows ld and ld.so to build executables and shared
12888 libraries with non-exec .plt and .got sections.  This is a PowerPC
12889 32-bit SYSV ABI option.
12890
12891 @item -mbss-plt
12892 @opindex mbss-plt
12893 Generate code that uses a BSS .plt section that ld.so fills in, and
12894 requires .plt and .got sections that are both writable and executable.
12895 This is a PowerPC 32-bit SYSV ABI option.
12896
12897 @item -misel
12898 @itemx -mno-isel
12899 @opindex misel
12900 @opindex mno-isel
12901 This switch enables or disables the generation of ISEL instructions.
12902
12903 @item -misel=@var{yes/no}
12904 This switch has been deprecated.  Use @option{-misel} and
12905 @option{-mno-isel} instead.
12906
12907 @item -mspe
12908 @itemx -mno-spe
12909 @opindex mspe
12910 @opindex mno-spe
12911 This switch enables or disables the generation of SPE simd
12912 instructions.
12913
12914 @item -mpaired
12915 @itemx -mno-paired
12916 @opindex mpaired
12917 @opindex mno-paired
12918 This switch enables or disables the generation of PAIRED simd
12919 instructions.
12920
12921 @item -mspe=@var{yes/no}
12922 This option has been deprecated.  Use @option{-mspe} and
12923 @option{-mno-spe} instead.
12924
12925 @item -mfloat-gprs=@var{yes/single/double/no}
12926 @itemx -mfloat-gprs
12927 @opindex mfloat-gprs
12928 This switch enables or disables the generation of floating point
12929 operations on the general purpose registers for architectures that
12930 support it.
12931
12932 The argument @var{yes} or @var{single} enables the use of
12933 single-precision floating point operations.
12934
12935 The argument @var{double} enables the use of single and
12936 double-precision floating point operations.
12937
12938 The argument @var{no} disables floating point operations on the
12939 general purpose registers.
12940
12941 This option is currently only available on the MPC854x.
12942
12943 @item -m32
12944 @itemx -m64
12945 @opindex m32
12946 @opindex m64
12947 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
12948 targets (including GNU/Linux).  The 32-bit environment sets int, long
12949 and pointer to 32 bits and generates code that runs on any PowerPC
12950 variant.  The 64-bit environment sets int to 32 bits and long and
12951 pointer to 64 bits, and generates code for PowerPC64, as for
12952 @option{-mpowerpc64}.
12953
12954 @item -mfull-toc
12955 @itemx -mno-fp-in-toc
12956 @itemx -mno-sum-in-toc
12957 @itemx -mminimal-toc
12958 @opindex mfull-toc
12959 @opindex mno-fp-in-toc
12960 @opindex mno-sum-in-toc
12961 @opindex mminimal-toc
12962 Modify generation of the TOC (Table Of Contents), which is created for
12963 every executable file.  The @option{-mfull-toc} option is selected by
12964 default.  In that case, GCC will allocate at least one TOC entry for
12965 each unique non-automatic variable reference in your program.  GCC
12966 will also place floating-point constants in the TOC@.  However, only
12967 16,384 entries are available in the TOC@.
12968
12969 If you receive a linker error message that saying you have overflowed
12970 the available TOC space, you can reduce the amount of TOC space used
12971 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
12972 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
12973 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
12974 generate code to calculate the sum of an address and a constant at
12975 run-time instead of putting that sum into the TOC@.  You may specify one
12976 or both of these options.  Each causes GCC to produce very slightly
12977 slower and larger code at the expense of conserving TOC space.
12978
12979 If you still run out of space in the TOC even when you specify both of
12980 these options, specify @option{-mminimal-toc} instead.  This option causes
12981 GCC to make only one TOC entry for every file.  When you specify this
12982 option, GCC will produce code that is slower and larger but which
12983 uses extremely little TOC space.  You may wish to use this option
12984 only on files that contain less frequently executed code.
12985
12986 @item -maix64
12987 @itemx -maix32
12988 @opindex maix64
12989 @opindex maix32
12990 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
12991 @code{long} type, and the infrastructure needed to support them.
12992 Specifying @option{-maix64} implies @option{-mpowerpc64} and
12993 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
12994 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
12995
12996 @item -mxl-compat
12997 @itemx -mno-xl-compat
12998 @opindex mxl-compat
12999 @opindex mno-xl-compat
13000 Produce code that conforms more closely to IBM XL compiler semantics
13001 when using AIX-compatible ABI.  Pass floating-point arguments to
13002 prototyped functions beyond the register save area (RSA) on the stack
13003 in addition to argument FPRs.  Do not assume that most significant
13004 double in 128-bit long double value is properly rounded when comparing
13005 values and converting to double.  Use XL symbol names for long double
13006 support routines.
13007
13008 The AIX calling convention was extended but not initially documented to
13009 handle an obscure K&R C case of calling a function that takes the
13010 address of its arguments with fewer arguments than declared.  IBM XL
13011 compilers access floating point arguments which do not fit in the
13012 RSA from the stack when a subroutine is compiled without
13013 optimization.  Because always storing floating-point arguments on the
13014 stack is inefficient and rarely needed, this option is not enabled by
13015 default and only is necessary when calling subroutines compiled by IBM
13016 XL compilers without optimization.
13017
13018 @item -mpe
13019 @opindex mpe
13020 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
13021 application written to use message passing with special startup code to
13022 enable the application to run.  The system must have PE installed in the
13023 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
13024 must be overridden with the @option{-specs=} option to specify the
13025 appropriate directory location.  The Parallel Environment does not
13026 support threads, so the @option{-mpe} option and the @option{-pthread}
13027 option are incompatible.
13028
13029 @item -malign-natural
13030 @itemx -malign-power
13031 @opindex malign-natural
13032 @opindex malign-power
13033 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
13034 @option{-malign-natural} overrides the ABI-defined alignment of larger
13035 types, such as floating-point doubles, on their natural size-based boundary.
13036 The option @option{-malign-power} instructs GCC to follow the ABI-specified
13037 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
13038
13039 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
13040 is not supported.
13041
13042 @item -msoft-float
13043 @itemx -mhard-float
13044 @opindex msoft-float
13045 @opindex mhard-float
13046 Generate code that does not use (uses) the floating-point register set.
13047 Software floating point emulation is provided if you use the
13048 @option{-msoft-float} option, and pass the option to GCC when linking.
13049
13050 @item -mmultiple
13051 @itemx -mno-multiple
13052 @opindex mmultiple
13053 @opindex mno-multiple
13054 Generate code that uses (does not use) the load multiple word
13055 instructions and the store multiple word instructions.  These
13056 instructions are generated by default on POWER systems, and not
13057 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
13058 endian PowerPC systems, since those instructions do not work when the
13059 processor is in little endian mode.  The exceptions are PPC740 and
13060 PPC750 which permit the instructions usage in little endian mode.
13061
13062 @item -mstring
13063 @itemx -mno-string
13064 @opindex mstring
13065 @opindex mno-string
13066 Generate code that uses (does not use) the load string instructions
13067 and the store string word instructions to save multiple registers and
13068 do small block moves.  These instructions are generated by default on
13069 POWER systems, and not generated on PowerPC systems.  Do not use
13070 @option{-mstring} on little endian PowerPC systems, since those
13071 instructions do not work when the processor is in little endian mode.
13072 The exceptions are PPC740 and PPC750 which permit the instructions
13073 usage in little endian mode.
13074
13075 @item -mupdate
13076 @itemx -mno-update
13077 @opindex mupdate
13078 @opindex mno-update
13079 Generate code that uses (does not use) the load or store instructions
13080 that update the base register to the address of the calculated memory
13081 location.  These instructions are generated by default.  If you use
13082 @option{-mno-update}, there is a small window between the time that the
13083 stack pointer is updated and the address of the previous frame is
13084 stored, which means code that walks the stack frame across interrupts or
13085 signals may get corrupted data.
13086
13087 @item -mfused-madd
13088 @itemx -mno-fused-madd
13089 @opindex mfused-madd
13090 @opindex mno-fused-madd
13091 Generate code that uses (does not use) the floating point multiply and
13092 accumulate instructions.  These instructions are generated by default if
13093 hardware floating is used.
13094
13095 @item -mmulhw
13096 @itemx -mno-mulhw
13097 @opindex mmulhw
13098 @opindex mno-mulhw
13099 Generate code that uses (does not use) the half-word multiply and
13100 multiply-accumulate instructions on the IBM 405 and 440 processors.
13101 These instructions are generated by default when targetting those
13102 processors.
13103
13104 @item -mdlmzb
13105 @itemx -mno-dlmzb
13106 @opindex mdlmzb
13107 @opindex mno-dlmzb
13108 Generate code that uses (does not use) the string-search @samp{dlmzb}
13109 instruction on the IBM 405 and 440 processors.  This instruction is
13110 generated by default when targetting those processors.
13111
13112 @item -mno-bit-align
13113 @itemx -mbit-align
13114 @opindex mno-bit-align
13115 @opindex mbit-align
13116 On System V.4 and embedded PowerPC systems do not (do) force structures
13117 and unions that contain bit-fields to be aligned to the base type of the
13118 bit-field.
13119
13120 For example, by default a structure containing nothing but 8
13121 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
13122 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
13123 the structure would be aligned to a 1 byte boundary and be one byte in
13124 size.
13125
13126 @item -mno-strict-align
13127 @itemx -mstrict-align
13128 @opindex mno-strict-align
13129 @opindex mstrict-align
13130 On System V.4 and embedded PowerPC systems do not (do) assume that
13131 unaligned memory references will be handled by the system.
13132
13133 @item -mrelocatable
13134 @itemx -mno-relocatable
13135 @opindex mrelocatable
13136 @opindex mno-relocatable
13137 On embedded PowerPC systems generate code that allows (does not allow)
13138 the program to be relocated to a different address at runtime.  If you
13139 use @option{-mrelocatable} on any module, all objects linked together must
13140 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
13141
13142 @item -mrelocatable-lib
13143 @itemx -mno-relocatable-lib
13144 @opindex mrelocatable-lib
13145 @opindex mno-relocatable-lib
13146 On embedded PowerPC systems generate code that allows (does not allow)
13147 the program to be relocated to a different address at runtime.  Modules
13148 compiled with @option{-mrelocatable-lib} can be linked with either modules
13149 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
13150 with modules compiled with the @option{-mrelocatable} options.
13151
13152 @item -mno-toc
13153 @itemx -mtoc
13154 @opindex mno-toc
13155 @opindex mtoc
13156 On System V.4 and embedded PowerPC systems do not (do) assume that
13157 register 2 contains a pointer to a global area pointing to the addresses
13158 used in the program.
13159
13160 @item -mlittle
13161 @itemx -mlittle-endian
13162 @opindex mlittle
13163 @opindex mlittle-endian
13164 On System V.4 and embedded PowerPC systems compile code for the
13165 processor in little endian mode.  The @option{-mlittle-endian} option is
13166 the same as @option{-mlittle}.
13167
13168 @item -mbig
13169 @itemx -mbig-endian
13170 @opindex mbig
13171 @opindex mbig-endian
13172 On System V.4 and embedded PowerPC systems compile code for the
13173 processor in big endian mode.  The @option{-mbig-endian} option is
13174 the same as @option{-mbig}.
13175
13176 @item -mdynamic-no-pic
13177 @opindex mdynamic-no-pic
13178 On Darwin and Mac OS X systems, compile code so that it is not
13179 relocatable, but that its external references are relocatable.  The
13180 resulting code is suitable for applications, but not shared
13181 libraries.
13182
13183 @item -mprioritize-restricted-insns=@var{priority}
13184 @opindex mprioritize-restricted-insns
13185 This option controls the priority that is assigned to
13186 dispatch-slot restricted instructions during the second scheduling
13187 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13188 @var{no/highest/second-highest} priority to dispatch slot restricted
13189 instructions.
13190
13191 @item -msched-costly-dep=@var{dependence_type}
13192 @opindex msched-costly-dep
13193 This option controls which dependences are considered costly
13194 by the target during instruction scheduling.  The argument
13195 @var{dependence_type} takes one of the following values:
13196 @var{no}: no dependence is costly,
13197 @var{all}: all dependences are costly,
13198 @var{true_store_to_load}: a true dependence from store to load is costly,
13199 @var{store_to_load}: any dependence from store to load is costly,
13200 @var{number}: any dependence which latency >= @var{number} is costly.
13201
13202 @item -minsert-sched-nops=@var{scheme}
13203 @opindex minsert-sched-nops
13204 This option controls which nop insertion scheme will be used during
13205 the second scheduling pass.  The argument @var{scheme} takes one of the
13206 following values:
13207 @var{no}: Don't insert nops.
13208 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13209 according to the scheduler's grouping.
13210 @var{regroup_exact}: Insert nops to force costly dependent insns into
13211 separate groups.  Insert exactly as many nops as needed to force an insn
13212 to a new group, according to the estimated processor grouping.
13213 @var{number}: Insert nops to force costly dependent insns into
13214 separate groups.  Insert @var{number} nops to force an insn to a new group.
13215
13216 @item -mcall-sysv
13217 @opindex mcall-sysv
13218 On System V.4 and embedded PowerPC systems compile code using calling
13219 conventions that adheres to the March 1995 draft of the System V
13220 Application Binary Interface, PowerPC processor supplement.  This is the
13221 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13222
13223 @item -mcall-sysv-eabi
13224 @opindex mcall-sysv-eabi
13225 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13226
13227 @item -mcall-sysv-noeabi
13228 @opindex mcall-sysv-noeabi
13229 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13230
13231 @item -mcall-solaris
13232 @opindex mcall-solaris
13233 On System V.4 and embedded PowerPC systems compile code for the Solaris
13234 operating system.
13235
13236 @item -mcall-linux
13237 @opindex mcall-linux
13238 On System V.4 and embedded PowerPC systems compile code for the
13239 Linux-based GNU system.
13240
13241 @item -mcall-gnu
13242 @opindex mcall-gnu
13243 On System V.4 and embedded PowerPC systems compile code for the
13244 Hurd-based GNU system.
13245
13246 @item -mcall-netbsd
13247 @opindex mcall-netbsd
13248 On System V.4 and embedded PowerPC systems compile code for the
13249 NetBSD operating system.
13250
13251 @item -maix-struct-return
13252 @opindex maix-struct-return
13253 Return all structures in memory (as specified by the AIX ABI)@.
13254
13255 @item -msvr4-struct-return
13256 @opindex msvr4-struct-return
13257 Return structures smaller than 8 bytes in registers (as specified by the
13258 SVR4 ABI)@.
13259
13260 @item -mabi=@var{abi-type}
13261 @opindex mabi
13262 Extend the current ABI with a particular extension, or remove such extension.
13263 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13264 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13265
13266 @item -mabi=spe
13267 @opindex mabi=spe
13268 Extend the current ABI with SPE ABI extensions.  This does not change
13269 the default ABI, instead it adds the SPE ABI extensions to the current
13270 ABI@.
13271
13272 @item -mabi=no-spe
13273 @opindex mabi=no-spe
13274 Disable Booke SPE ABI extensions for the current ABI@.
13275
13276 @item -mabi=ibmlongdouble
13277 @opindex mabi=ibmlongdouble
13278 Change the current ABI to use IBM extended precision long double.
13279 This is a PowerPC 32-bit SYSV ABI option.
13280
13281 @item -mabi=ieeelongdouble
13282 @opindex mabi=ieeelongdouble
13283 Change the current ABI to use IEEE extended precision long double.
13284 This is a PowerPC 32-bit Linux ABI option.
13285
13286 @item -mprototype
13287 @itemx -mno-prototype
13288 @opindex mprototype
13289 @opindex mno-prototype
13290 On System V.4 and embedded PowerPC systems assume that all calls to
13291 variable argument functions are properly prototyped.  Otherwise, the
13292 compiler must insert an instruction before every non prototyped call to
13293 set or clear bit 6 of the condition code register (@var{CR}) to
13294 indicate whether floating point values were passed in the floating point
13295 registers in case the function takes a variable arguments.  With
13296 @option{-mprototype}, only calls to prototyped variable argument functions
13297 will set or clear the bit.
13298
13299 @item -msim
13300 @opindex msim
13301 On embedded PowerPC systems, assume that the startup module is called
13302 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13303 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
13304 configurations.
13305
13306 @item -mmvme
13307 @opindex mmvme
13308 On embedded PowerPC systems, assume that the startup module is called
13309 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13310 @file{libc.a}.
13311
13312 @item -mads
13313 @opindex mads
13314 On embedded PowerPC systems, assume that the startup module is called
13315 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13316 @file{libc.a}.
13317
13318 @item -myellowknife
13319 @opindex myellowknife
13320 On embedded PowerPC systems, assume that the startup module is called
13321 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13322 @file{libc.a}.
13323
13324 @item -mvxworks
13325 @opindex mvxworks
13326 On System V.4 and embedded PowerPC systems, specify that you are
13327 compiling for a VxWorks system.
13328
13329 @item -mwindiss
13330 @opindex mwindiss
13331 Specify that you are compiling for the WindISS simulation environment.
13332
13333 @item -memb
13334 @opindex memb
13335 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13336 header to indicate that @samp{eabi} extended relocations are used.
13337
13338 @item -meabi
13339 @itemx -mno-eabi
13340 @opindex meabi
13341 @opindex mno-eabi
13342 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13343 Embedded Applications Binary Interface (eabi) which is a set of
13344 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13345 means that the stack is aligned to an 8 byte boundary, a function
13346 @code{__eabi} is called to from @code{main} to set up the eabi
13347 environment, and the @option{-msdata} option can use both @code{r2} and
13348 @code{r13} to point to two separate small data areas.  Selecting
13349 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13350 do not call an initialization function from @code{main}, and the
13351 @option{-msdata} option will only use @code{r13} to point to a single
13352 small data area.  The @option{-meabi} option is on by default if you
13353 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13354
13355 @item -msdata=eabi
13356 @opindex msdata=eabi
13357 On System V.4 and embedded PowerPC systems, put small initialized
13358 @code{const} global and static data in the @samp{.sdata2} section, which
13359 is pointed to by register @code{r2}.  Put small initialized
13360 non-@code{const} global and static data in the @samp{.sdata} section,
13361 which is pointed to by register @code{r13}.  Put small uninitialized
13362 global and static data in the @samp{.sbss} section, which is adjacent to
13363 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13364 incompatible with the @option{-mrelocatable} option.  The
13365 @option{-msdata=eabi} option also sets the @option{-memb} option.
13366
13367 @item -msdata=sysv
13368 @opindex msdata=sysv
13369 On System V.4 and embedded PowerPC systems, put small global and static
13370 data in the @samp{.sdata} section, which is pointed to by register
13371 @code{r13}.  Put small uninitialized global and static data in the
13372 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13373 The @option{-msdata=sysv} option is incompatible with the
13374 @option{-mrelocatable} option.
13375
13376 @item -msdata=default
13377 @itemx -msdata
13378 @opindex msdata=default
13379 @opindex msdata
13380 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13381 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13382 same as @option{-msdata=sysv}.
13383
13384 @item -msdata-data
13385 @opindex msdata-data
13386 On System V.4 and embedded PowerPC systems, put small global
13387 data in the @samp{.sdata} section.  Put small uninitialized global
13388 data in the @samp{.sbss} section.  Do not use register @code{r13}
13389 to address small data however.  This is the default behavior unless
13390 other @option{-msdata} options are used.
13391
13392 @item -msdata=none
13393 @itemx -mno-sdata
13394 @opindex msdata=none
13395 @opindex mno-sdata
13396 On embedded PowerPC systems, put all initialized global and static data
13397 in the @samp{.data} section, and all uninitialized data in the
13398 @samp{.bss} section.
13399
13400 @item -G @var{num}
13401 @opindex G
13402 @cindex smaller data references (PowerPC)
13403 @cindex .sdata/.sdata2 references (PowerPC)
13404 On embedded PowerPC systems, put global and static items less than or
13405 equal to @var{num} bytes into the small data or bss sections instead of
13406 the normal data or bss section.  By default, @var{num} is 8.  The
13407 @option{-G @var{num}} switch is also passed to the linker.
13408 All modules should be compiled with the same @option{-G @var{num}} value.
13409
13410 @item -mregnames
13411 @itemx -mno-regnames
13412 @opindex mregnames
13413 @opindex mno-regnames
13414 On System V.4 and embedded PowerPC systems do (do not) emit register
13415 names in the assembly language output using symbolic forms.
13416
13417 @item -mlongcall
13418 @itemx -mno-longcall
13419 @opindex mlongcall
13420 @opindex mno-longcall
13421 By default assume that all calls are far away so that a longer more
13422 expensive calling sequence is required.  This is required for calls
13423 further than 32 megabytes (33,554,432 bytes) from the current location.
13424 A short call will be generated if the compiler knows
13425 the call cannot be that far away.  This setting can be overridden by
13426 the @code{shortcall} function attribute, or by @code{#pragma
13427 longcall(0)}.
13428
13429 Some linkers are capable of detecting out-of-range calls and generating
13430 glue code on the fly.  On these systems, long calls are unnecessary and
13431 generate slower code.  As of this writing, the AIX linker can do this,
13432 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13433 to the GNU linker for 32-bit PowerPC systems as well.
13434
13435 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13436 callee, L42'', plus a ``branch island'' (glue code).  The two target
13437 addresses represent the callee and the ``branch island''.  The
13438 Darwin/PPC linker will prefer the first address and generate a ``bl
13439 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13440 otherwise, the linker will generate ``bl L42'' to call the ``branch
13441 island''.  The ``branch island'' is appended to the body of the
13442 calling function; it computes the full 32-bit address of the callee
13443 and jumps to it.
13444
13445 On Mach-O (Darwin) systems, this option directs the compiler emit to
13446 the glue for every direct call, and the Darwin linker decides whether
13447 to use or discard it.
13448
13449 In the future, we may cause GCC to ignore all longcall specifications
13450 when the linker is known to generate glue.
13451
13452 @item -pthread
13453 @opindex pthread
13454 Adds support for multithreading with the @dfn{pthreads} library.
13455 This option sets flags for both the preprocessor and linker.
13456
13457 @end table
13458
13459 @node S/390 and zSeries Options
13460 @subsection S/390 and zSeries Options
13461 @cindex S/390 and zSeries Options
13462
13463 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13464
13465 @table @gcctabopt
13466 @item -mhard-float
13467 @itemx -msoft-float
13468 @opindex mhard-float
13469 @opindex msoft-float
13470 Use (do not use) the hardware floating-point instructions and registers
13471 for floating-point operations.  When @option{-msoft-float} is specified,
13472 functions in @file{libgcc.a} will be used to perform floating-point
13473 operations.  When @option{-mhard-float} is specified, the compiler
13474 generates IEEE floating-point instructions.  This is the default.
13475
13476 @item -mlong-double-64
13477 @itemx -mlong-double-128
13478 @opindex mlong-double-64
13479 @opindex mlong-double-128
13480 These switches control the size of @code{long double} type. A size
13481 of 64bit makes the @code{long double} type equivalent to the @code{double}
13482 type. This is the default.
13483
13484 @item -mbackchain
13485 @itemx -mno-backchain
13486 @opindex mbackchain
13487 @opindex mno-backchain
13488 Store (do not store) the address of the caller's frame as backchain pointer
13489 into the callee's stack frame.
13490 A backchain may be needed to allow debugging using tools that do not understand
13491 DWARF-2 call frame information.
13492 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13493 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13494 the backchain is placed into the topmost word of the 96/160 byte register
13495 save area.
13496
13497 In general, code compiled with @option{-mbackchain} is call-compatible with
13498 code compiled with @option{-mmo-backchain}; however, use of the backchain
13499 for debugging purposes usually requires that the whole binary is built with
13500 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13501 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13502 to build a linux kernel use @option{-msoft-float}.
13503
13504 The default is to not maintain the backchain.
13505
13506 @item -mpacked-stack
13507 @item -mno-packed-stack
13508 @opindex mpacked-stack
13509 @opindex mno-packed-stack
13510 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13511 specified, the compiler uses the all fields of the 96/160 byte register save
13512 area only for their default purpose; unused fields still take up stack space.
13513 When @option{-mpacked-stack} is specified, register save slots are densely
13514 packed at the top of the register save area; unused space is reused for other
13515 purposes, allowing for more efficient use of the available stack space.
13516 However, when @option{-mbackchain} is also in effect, the topmost word of
13517 the save area is always used to store the backchain, and the return address
13518 register is always saved two words below the backchain.
13519
13520 As long as the stack frame backchain is not used, code generated with
13521 @option{-mpacked-stack} is call-compatible with code generated with
13522 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13523 S/390 or zSeries generated code that uses the stack frame backchain at run
13524 time, not just for debugging purposes.  Such code is not call-compatible
13525 with code compiled with @option{-mpacked-stack}.  Also, note that the
13526 combination of @option{-mbackchain},
13527 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13528 to build a linux kernel use @option{-msoft-float}.
13529
13530 The default is to not use the packed stack layout.
13531
13532 @item -msmall-exec
13533 @itemx -mno-small-exec
13534 @opindex msmall-exec
13535 @opindex mno-small-exec
13536 Generate (or do not generate) code using the @code{bras} instruction
13537 to do subroutine calls.
13538 This only works reliably if the total executable size does not
13539 exceed 64k.  The default is to use the @code{basr} instruction instead,
13540 which does not have this limitation.
13541
13542 @item -m64
13543 @itemx -m31
13544 @opindex m64
13545 @opindex m31
13546 When @option{-m31} is specified, generate code compliant to the
13547 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13548 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13549 particular to generate 64-bit instructions.  For the @samp{s390}
13550 targets, the default is @option{-m31}, while the @samp{s390x}
13551 targets default to @option{-m64}.
13552
13553 @item -mzarch
13554 @itemx -mesa
13555 @opindex mzarch
13556 @opindex mesa
13557 When @option{-mzarch} is specified, generate code using the
13558 instructions available on z/Architecture.
13559 When @option{-mesa} is specified, generate code using the
13560 instructions available on ESA/390.  Note that @option{-mesa} is
13561 not possible with @option{-m64}.
13562 When generating code compliant to the GNU/Linux for S/390 ABI,
13563 the default is @option{-mesa}.  When generating code compliant
13564 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13565
13566 @item -mmvcle
13567 @itemx -mno-mvcle
13568 @opindex mmvcle
13569 @opindex mno-mvcle
13570 Generate (or do not generate) code using the @code{mvcle} instruction
13571 to perform block moves.  When @option{-mno-mvcle} is specified,
13572 use a @code{mvc} loop instead.  This is the default unless optimizing for
13573 size.
13574
13575 @item -mdebug
13576 @itemx -mno-debug
13577 @opindex mdebug
13578 @opindex mno-debug
13579 Print (or do not print) additional debug information when compiling.
13580 The default is to not print debug information.
13581
13582 @item -march=@var{cpu-type}
13583 @opindex march
13584 Generate code that will run on @var{cpu-type}, which is the name of a system
13585 representing a certain processor type.  Possible values for
13586 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13587 When generating code using the instructions available on z/Architecture,
13588 the default is @option{-march=z900}.  Otherwise, the default is
13589 @option{-march=g5}.
13590
13591 @item -mtune=@var{cpu-type}
13592 @opindex mtune
13593 Tune to @var{cpu-type} everything applicable about the generated code,
13594 except for the ABI and the set of available instructions.
13595 The list of @var{cpu-type} values is the same as for @option{-march}.
13596 The default is the value used for @option{-march}.
13597
13598 @item -mtpf-trace
13599 @itemx -mno-tpf-trace
13600 @opindex mtpf-trace
13601 @opindex mno-tpf-trace
13602 Generate code that adds (does not add) in TPF OS specific branches to trace
13603 routines in the operating system.  This option is off by default, even
13604 when compiling for the TPF OS@.
13605
13606 @item -mfused-madd
13607 @itemx -mno-fused-madd
13608 @opindex mfused-madd
13609 @opindex mno-fused-madd
13610 Generate code that uses (does not use) the floating point multiply and
13611 accumulate instructions.  These instructions are generated by default if
13612 hardware floating point is used.
13613
13614 @item -mwarn-framesize=@var{framesize}
13615 @opindex mwarn-framesize
13616 Emit a warning if the current function exceeds the given frame size.  Because
13617 this is a compile time check it doesn't need to be a real problem when the program
13618 runs.  It is intended to identify functions which most probably cause
13619 a stack overflow.  It is useful to be used in an environment with limited stack
13620 size e.g.@: the linux kernel.
13621
13622 @item -mwarn-dynamicstack
13623 @opindex mwarn-dynamicstack
13624 Emit a warning if the function calls alloca or uses dynamically
13625 sized arrays.  This is generally a bad idea with a limited stack size.
13626
13627 @item -mstack-guard=@var{stack-guard}
13628 @item -mstack-size=@var{stack-size}
13629 @opindex mstack-guard
13630 @opindex mstack-size
13631 If these options are provided the s390 back end emits additional instructions in
13632 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13633 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13634 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13635 the frame size of the compiled function is chosen.
13636 These options are intended to be used to help debugging stack overflow problems.
13637 The additionally emitted code causes only little overhead and hence can also be
13638 used in production like systems without greater performance degradation.  The given
13639 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13640 @var{stack-guard} without exceeding 64k.
13641 In order to be efficient the extra code makes the assumption that the stack starts
13642 at an address aligned to the value given by @var{stack-size}.
13643 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13644 @end table
13645
13646 @node Score Options
13647 @subsection Score Options
13648 @cindex Score Options
13649
13650 These options are defined for Score implementations:
13651
13652 @table @gcctabopt
13653 @item -meb
13654 @opindex meb
13655 Compile code for big endian mode.  This is the default.
13656
13657 @item -mel
13658 @opindex mel
13659 Compile code for little endian mode. 
13660
13661 @item -mnhwloop
13662 @opindex mnhwloop
13663 Disable generate bcnz instruction.
13664
13665 @item -muls
13666 @opindex muls
13667 Enable generate unaligned load and store instruction.
13668
13669 @item -mmac
13670 @opindex mmac
13671 Enable the use of multiply-accumulate instructions. Disabled by default. 
13672
13673 @item -mscore5
13674 @opindex mscore5
13675 Specify the SCORE5 as the target architecture.
13676
13677 @item -mscore5u
13678 @opindex mscore5u
13679 Specify the SCORE5U of the target architecture.
13680
13681 @item -mscore7
13682 @opindex mscore7
13683 Specify the SCORE7 as the target architecture. This is the default.
13684
13685 @item -mscore7d
13686 @opindex mscore7d
13687 Specify the SCORE7D as the target architecture.
13688 @end table
13689
13690 @node SH Options
13691 @subsection SH Options
13692
13693 These @samp{-m} options are defined for the SH implementations:
13694
13695 @table @gcctabopt
13696 @item -m1
13697 @opindex m1
13698 Generate code for the SH1.
13699
13700 @item -m2
13701 @opindex m2
13702 Generate code for the SH2.
13703
13704 @item -m2e
13705 Generate code for the SH2e.
13706
13707 @item -m3
13708 @opindex m3
13709 Generate code for the SH3.
13710
13711 @item -m3e
13712 @opindex m3e
13713 Generate code for the SH3e.
13714
13715 @item -m4-nofpu
13716 @opindex m4-nofpu
13717 Generate code for the SH4 without a floating-point unit.
13718
13719 @item -m4-single-only
13720 @opindex m4-single-only
13721 Generate code for the SH4 with a floating-point unit that only
13722 supports single-precision arithmetic.
13723
13724 @item -m4-single
13725 @opindex m4-single
13726 Generate code for the SH4 assuming the floating-point unit is in
13727 single-precision mode by default.
13728
13729 @item -m4
13730 @opindex m4
13731 Generate code for the SH4.
13732
13733 @item -m4a-nofpu
13734 @opindex m4a-nofpu
13735 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
13736 floating-point unit is not used.
13737
13738 @item -m4a-single-only
13739 @opindex m4a-single-only
13740 Generate code for the SH4a, in such a way that no double-precision
13741 floating point operations are used.
13742
13743 @item -m4a-single
13744 @opindex m4a-single
13745 Generate code for the SH4a assuming the floating-point unit is in
13746 single-precision mode by default.
13747
13748 @item -m4a
13749 @opindex m4a
13750 Generate code for the SH4a.
13751
13752 @item -m4al
13753 @opindex m4al
13754 Same as @option{-m4a-nofpu}, except that it implicitly passes
13755 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
13756 instructions at the moment.
13757
13758 @item -mb
13759 @opindex mb
13760 Compile code for the processor in big endian mode.
13761
13762 @item -ml
13763 @opindex ml
13764 Compile code for the processor in little endian mode.
13765
13766 @item -mdalign
13767 @opindex mdalign
13768 Align doubles at 64-bit boundaries.  Note that this changes the calling
13769 conventions, and thus some functions from the standard C library will
13770 not work unless you recompile it first with @option{-mdalign}.
13771
13772 @item -mrelax
13773 @opindex mrelax
13774 Shorten some address references at link time, when possible; uses the
13775 linker option @option{-relax}.
13776
13777 @item -mbigtable
13778 @opindex mbigtable
13779 Use 32-bit offsets in @code{switch} tables.  The default is to use
13780 16-bit offsets.
13781
13782 @item -mfmovd
13783 @opindex mfmovd
13784 Enable the use of the instruction @code{fmovd}.
13785
13786 @item -mhitachi
13787 @opindex mhitachi
13788 Comply with the calling conventions defined by Renesas.
13789
13790 @item -mrenesas
13791 @opindex mhitachi
13792 Comply with the calling conventions defined by Renesas.
13793
13794 @item -mno-renesas
13795 @opindex mhitachi
13796 Comply with the calling conventions defined for GCC before the Renesas
13797 conventions were available.  This option is the default for all
13798 targets of the SH toolchain except for @samp{sh-symbianelf}.
13799
13800 @item -mnomacsave
13801 @opindex mnomacsave
13802 Mark the @code{MAC} register as call-clobbered, even if
13803 @option{-mhitachi} is given.
13804
13805 @item -mieee
13806 @opindex mieee
13807 Increase IEEE-compliance of floating-point code.
13808 At the moment, this is equivalent to @option{-fno-finite-math-only}.
13809 When generating 16 bit SH opcodes, getting IEEE-conforming results for
13810 comparisons of NANs / infinities incurs extra overhead in every
13811 floating point comparison, therefore the default is set to
13812 @option{-ffinite-math-only}.
13813
13814 @item -minline-ic_invalidate
13815 @opindex minline-ic_invalidate
13816 Inline code to invalidate instruction cache entries after setting up
13817 nested function trampolines.
13818 This option has no effect if -musermode is in effect and the selected
13819 code generation option (e.g. -m4) does not allow the use of the icbi
13820 instruction.
13821 If the selected code generation option does not allow the use of the icbi
13822 instruction, and -musermode is not in effect, the inlined code will
13823 manipulate the instruction cache address array directly with an associative
13824 write.  This not only requires privileged mode, but it will also
13825 fail if the cache line had been mapped via the TLB and has become unmapped.
13826
13827 @item -misize
13828 @opindex misize
13829 Dump instruction size and location in the assembly code.
13830
13831 @item -mpadstruct
13832 @opindex mpadstruct
13833 This option is deprecated.  It pads structures to multiple of 4 bytes,
13834 which is incompatible with the SH ABI@.
13835
13836 @item -mspace
13837 @opindex mspace
13838 Optimize for space instead of speed.  Implied by @option{-Os}.
13839
13840 @item -mprefergot
13841 @opindex mprefergot
13842 When generating position-independent code, emit function calls using
13843 the Global Offset Table instead of the Procedure Linkage Table.
13844
13845 @item -musermode
13846 @opindex musermode
13847 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
13848 if the inlined code would not work in user mode.
13849 This is the default when the target is @code{sh-*-linux*}.
13850
13851 @item -multcost=@var{number}
13852 @opindex multcost=@var{number}
13853 Set the cost to assume for a multiply insn.
13854
13855 @item -mdiv=@var{strategy}
13856 @opindex mdiv=@var{strategy}
13857 Set the division strategy to use for SHmedia code.  @var{strategy} must be
13858 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
13859 inv:call2, inv:fp .
13860 "fp" performs the operation in floating point.  This has a very high latency,
13861 but needs only a few instructions, so it might be a good choice if
13862 your code has enough easily exploitable ILP to allow the compiler to
13863 schedule the floating point instructions together with other instructions.
13864 Division by zero causes a floating point exception.
13865 "inv" uses integer operations to calculate the inverse of the divisor,
13866 and then multiplies the dividend with the inverse.  This strategy allows
13867 cse and hoisting of the inverse calculation.  Division by zero calculates
13868 an unspecified result, but does not trap.
13869 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
13870 have been found, or if the entire operation has been hoisted to the same
13871 place, the last stages of the inverse calculation are intertwined with the
13872 final multiply to reduce the overall latency, at the expense of using a few
13873 more instructions, and thus offering fewer scheduling opportunities with
13874 other code.
13875 "call" calls a library function that usually implements the inv:minlat
13876 strategy.
13877 This gives high code density for m5-*media-nofpu compilations.
13878 "call2" uses a different entry point of the same library function, where it
13879 assumes that a pointer to a lookup table has already been set up, which
13880 exposes the pointer load to cse / code hoisting optimizations.
13881 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
13882 code generation, but if the code stays unoptimized, revert to the "call",
13883 "call2", or "fp" strategies, respectively.  Note that the
13884 potentially-trapping side effect of division by zero is carried by a
13885 separate instruction, so it is possible that all the integer instructions
13886 are hoisted out, but the marker for the side effect stays where it is.
13887 A recombination to fp operations or a call is not possible in that case.
13888 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
13889 that the inverse calculation was nor separated from the multiply, they speed
13890 up division where the dividend fits into 20 bits (plus sign where applicable),
13891 by inserting a test to skip a number of operations in this case; this test
13892 slows down the case of larger dividends.  inv20u assumes the case of a such
13893 a small dividend to be unlikely, and inv20l assumes it to be likely.
13894
13895 @item -mdivsi3_libfunc=@var{name}
13896 @opindex mdivsi3_libfunc=@var{name}
13897 Set the name of the library function used for 32 bit signed division to
13898 @var{name}.  This only affect the name used in the call and inv:call
13899 division strategies, and the compiler will still expect the same
13900 sets of input/output/clobbered registers as if this option was not present.
13901
13902 @item -madjust-unroll
13903 @opindex madjust-unroll
13904 Throttle unrolling to avoid thrashing target registers.
13905 This option only has an effect if the gcc code base supports the
13906 TARGET_ADJUST_UNROLL_MAX target hook.
13907
13908 @item -mindexed-addressing
13909 @opindex mindexed-addressing
13910 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
13911 This is only safe if the hardware and/or OS implement 32 bit wrap-around
13912 semantics for the indexed addressing mode.  The architecture allows the
13913 implementation of processors with 64 bit MMU, which the OS could use to
13914 get 32 bit addressing, but since no current hardware implementation supports
13915 this or any other way to make the indexed addressing mode safe to use in
13916 the 32 bit ABI, the default is -mno-indexed-addressing.
13917
13918 @item -mgettrcost=@var{number}
13919 @opindex mgettrcost=@var{number}
13920 Set the cost assumed for the gettr instruction to @var{number}.
13921 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
13922
13923 @item -mpt-fixed
13924 @opindex mpt-fixed
13925 Assume pt* instructions won't trap.  This will generally generate better
13926 scheduled code, but is unsafe on current hardware.  The current architecture
13927 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
13928 This has the unintentional effect of making it unsafe to schedule ptabs /
13929 ptrel before a branch, or hoist it out of a loop.  For example,
13930 __do_global_ctors, a part of libgcc that runs constructors at program
13931 startup, calls functions in a list which is delimited by @minus{}1.  With the
13932 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
13933 That means that all the constructors will be run a bit quicker, but when
13934 the loop comes to the end of the list, the program crashes because ptabs
13935 loads @minus{}1 into a target register.  Since this option is unsafe for any
13936 hardware implementing the current architecture specification, the default
13937 is -mno-pt-fixed.  Unless the user specifies a specific cost with
13938 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
13939 this deters register allocation using target registers for storing
13940 ordinary integers.
13941
13942 @item -minvalid-symbols
13943 @opindex minvalid-symbols
13944 Assume symbols might be invalid.  Ordinary function symbols generated by
13945 the compiler will always be valid to load with movi/shori/ptabs or
13946 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
13947 to generate symbols that will cause ptabs / ptrel to trap.
13948 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
13949 It will then prevent cross-basic-block cse, hoisting and most scheduling
13950 of symbol loads.  The default is @option{-mno-invalid-symbols}.
13951 @end table
13952
13953 @node SPARC Options
13954 @subsection SPARC Options
13955 @cindex SPARC options
13956
13957 These @samp{-m} options are supported on the SPARC:
13958
13959 @table @gcctabopt
13960 @item -mno-app-regs
13961 @itemx -mapp-regs
13962 @opindex mno-app-regs
13963 @opindex mapp-regs
13964 Specify @option{-mapp-regs} to generate output using the global registers
13965 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
13966 is the default.
13967
13968 To be fully SVR4 ABI compliant at the cost of some performance loss,
13969 specify @option{-mno-app-regs}.  You should compile libraries and system
13970 software with this option.
13971
13972 @item -mfpu
13973 @itemx -mhard-float
13974 @opindex mfpu
13975 @opindex mhard-float
13976 Generate output containing floating point instructions.  This is the
13977 default.
13978
13979 @item -mno-fpu
13980 @itemx -msoft-float
13981 @opindex mno-fpu
13982 @opindex msoft-float
13983 Generate output containing library calls for floating point.
13984 @strong{Warning:} the requisite libraries are not available for all SPARC
13985 targets.  Normally the facilities of the machine's usual C compiler are
13986 used, but this cannot be done directly in cross-compilation.  You must make
13987 your own arrangements to provide suitable library functions for
13988 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
13989 @samp{sparclite-*-*} do provide software floating point support.
13990
13991 @option{-msoft-float} changes the calling convention in the output file;
13992 therefore, it is only useful if you compile @emph{all} of a program with
13993 this option.  In particular, you need to compile @file{libgcc.a}, the
13994 library that comes with GCC, with @option{-msoft-float} in order for
13995 this to work.
13996
13997 @item -mhard-quad-float
13998 @opindex mhard-quad-float
13999 Generate output containing quad-word (long double) floating point
14000 instructions.
14001
14002 @item -msoft-quad-float
14003 @opindex msoft-quad-float
14004 Generate output containing library calls for quad-word (long double)
14005 floating point instructions.  The functions called are those specified
14006 in the SPARC ABI@.  This is the default.
14007
14008 As of this writing, there are no SPARC implementations that have hardware
14009 support for the quad-word floating point instructions.  They all invoke
14010 a trap handler for one of these instructions, and then the trap handler
14011 emulates the effect of the instruction.  Because of the trap handler overhead,
14012 this is much slower than calling the ABI library routines.  Thus the
14013 @option{-msoft-quad-float} option is the default.
14014
14015 @item -mno-unaligned-doubles
14016 @itemx -munaligned-doubles
14017 @opindex mno-unaligned-doubles
14018 @opindex munaligned-doubles
14019 Assume that doubles have 8 byte alignment.  This is the default.
14020
14021 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
14022 alignment only if they are contained in another type, or if they have an
14023 absolute address.  Otherwise, it assumes they have 4 byte alignment.
14024 Specifying this option avoids some rare compatibility problems with code
14025 generated by other compilers.  It is not the default because it results
14026 in a performance loss, especially for floating point code.
14027
14028 @item -mno-faster-structs
14029 @itemx -mfaster-structs
14030 @opindex mno-faster-structs
14031 @opindex mfaster-structs
14032 With @option{-mfaster-structs}, the compiler assumes that structures
14033 should have 8 byte alignment.  This enables the use of pairs of
14034 @code{ldd} and @code{std} instructions for copies in structure
14035 assignment, in place of twice as many @code{ld} and @code{st} pairs.
14036 However, the use of this changed alignment directly violates the SPARC
14037 ABI@.  Thus, it's intended only for use on targets where the developer
14038 acknowledges that their resulting code will not be directly in line with
14039 the rules of the ABI@.
14040
14041 @item -mimpure-text
14042 @opindex mimpure-text
14043 @option{-mimpure-text}, used in addition to @option{-shared}, tells
14044 the compiler to not pass @option{-z text} to the linker when linking a
14045 shared object.  Using this option, you can link position-dependent
14046 code into a shared object.
14047
14048 @option{-mimpure-text} suppresses the ``relocations remain against
14049 allocatable but non-writable sections'' linker error message.
14050 However, the necessary relocations will trigger copy-on-write, and the
14051 shared object is not actually shared across processes.  Instead of
14052 using @option{-mimpure-text}, you should compile all source code with
14053 @option{-fpic} or @option{-fPIC}.
14054
14055 This option is only available on SunOS and Solaris.
14056
14057 @item -mcpu=@var{cpu_type}
14058 @opindex mcpu
14059 Set the instruction set, register set, and instruction scheduling parameters
14060 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
14061 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
14062 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
14063 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
14064 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
14065
14066 Default instruction scheduling parameters are used for values that select
14067 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
14068 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
14069
14070 Here is a list of each supported architecture and their supported
14071 implementations.
14072
14073 @smallexample
14074     v7:             cypress
14075     v8:             supersparc, hypersparc
14076     sparclite:      f930, f934, sparclite86x
14077     sparclet:       tsc701
14078     v9:             ultrasparc, ultrasparc3, niagara, niagara2
14079 @end smallexample
14080
14081 By default (unless configured otherwise), GCC generates code for the V7
14082 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
14083 additionally optimizes it for the Cypress CY7C602 chip, as used in the
14084 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
14085 SPARCStation 1, 2, IPX etc.
14086
14087 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
14088 architecture.  The only difference from V7 code is that the compiler emits
14089 the integer multiply and integer divide instructions which exist in SPARC-V8
14090 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
14091 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
14092 2000 series.
14093
14094 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
14095 the SPARC architecture.  This adds the integer multiply, integer divide step
14096 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
14097 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
14098 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
14099 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
14100 MB86934 chip, which is the more recent SPARClite with FPU@.
14101
14102 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
14103 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
14104 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
14105 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
14106 optimizes it for the TEMIC SPARClet chip.
14107
14108 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
14109 architecture.  This adds 64-bit integer and floating-point move instructions,
14110 3 additional floating-point condition code registers and conditional move
14111 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
14112 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
14113 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
14114 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
14115 @option{-mcpu=niagara}, the compiler additionally optimizes it for
14116 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
14117 additionally optimizes it for Sun UltraSPARC T2 chips.
14118
14119 @item -mtune=@var{cpu_type}
14120 @opindex mtune
14121 Set the instruction scheduling parameters for machine type
14122 @var{cpu_type}, but do not set the instruction set or register set that the
14123 option @option{-mcpu=@var{cpu_type}} would.
14124
14125 The same values for @option{-mcpu=@var{cpu_type}} can be used for
14126 @option{-mtune=@var{cpu_type}}, but the only useful values are those
14127 that select a particular cpu implementation.  Those are @samp{cypress},
14128 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
14129 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
14130 @samp{ultrasparc3}, @samp{niagara}, and @samp{niagara2}.
14131
14132 @item -mv8plus
14133 @itemx -mno-v8plus
14134 @opindex mv8plus
14135 @opindex mno-v8plus
14136 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
14137 difference from the V8 ABI is that the global and out registers are
14138 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
14139 mode for all SPARC-V9 processors.
14140
14141 @item -mvis
14142 @itemx -mno-vis
14143 @opindex mvis
14144 @opindex mno-vis
14145 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
14146 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
14147 @end table
14148
14149 These @samp{-m} options are supported in addition to the above
14150 on SPARC-V9 processors in 64-bit environments:
14151
14152 @table @gcctabopt
14153 @item -mlittle-endian
14154 @opindex mlittle-endian
14155 Generate code for a processor running in little-endian mode.  It is only
14156 available for a few configurations and most notably not on Solaris and Linux.
14157
14158 @item -m32
14159 @itemx -m64
14160 @opindex m32
14161 @opindex m64
14162 Generate code for a 32-bit or 64-bit environment.
14163 The 32-bit environment sets int, long and pointer to 32 bits.
14164 The 64-bit environment sets int to 32 bits and long and pointer
14165 to 64 bits.
14166
14167 @item -mcmodel=medlow
14168 @opindex mcmodel=medlow
14169 Generate code for the Medium/Low code model: 64-bit addresses, programs
14170 must be linked in the low 32 bits of memory.  Programs can be statically
14171 or dynamically linked.
14172
14173 @item -mcmodel=medmid
14174 @opindex mcmodel=medmid
14175 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14176 must be linked in the low 44 bits of memory, the text and data segments must
14177 be less than 2GB in size and the data segment must be located within 2GB of
14178 the text segment.
14179
14180 @item -mcmodel=medany
14181 @opindex mcmodel=medany
14182 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14183 may be linked anywhere in memory, the text and data segments must be less
14184 than 2GB in size and the data segment must be located within 2GB of the
14185 text segment.
14186
14187 @item -mcmodel=embmedany
14188 @opindex mcmodel=embmedany
14189 Generate code for the Medium/Anywhere code model for embedded systems:
14190 64-bit addresses, the text and data segments must be less than 2GB in
14191 size, both starting anywhere in memory (determined at link time).  The
14192 global register %g4 points to the base of the data segment.  Programs
14193 are statically linked and PIC is not supported.
14194
14195 @item -mstack-bias
14196 @itemx -mno-stack-bias
14197 @opindex mstack-bias
14198 @opindex mno-stack-bias
14199 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14200 frame pointer if present, are offset by @minus{}2047 which must be added back
14201 when making stack frame references.  This is the default in 64-bit mode.
14202 Otherwise, assume no such offset is present.
14203 @end table
14204
14205 These switches are supported in addition to the above on Solaris:
14206
14207 @table @gcctabopt
14208 @item -threads
14209 @opindex threads
14210 Add support for multithreading using the Solaris threads library.  This
14211 option sets flags for both the preprocessor and linker.  This option does
14212 not affect the thread safety of object code produced by the compiler or
14213 that of libraries supplied with it.
14214
14215 @item -pthreads
14216 @opindex pthreads
14217 Add support for multithreading using the POSIX threads library.  This
14218 option sets flags for both the preprocessor and linker.  This option does
14219 not affect the thread safety of object code produced  by the compiler or
14220 that of libraries supplied with it.
14221
14222 @item -pthread
14223 @opindex pthread
14224 This is a synonym for @option{-pthreads}.
14225 @end table
14226
14227 @node SPU Options
14228 @subsection SPU Options
14229 @cindex SPU options
14230
14231 These @samp{-m} options are supported on the SPU:
14232
14233 @table @gcctabopt
14234 @item -mwarn-reloc
14235 @itemx -merror-reloc
14236 @opindex mwarn-reloc
14237 @opindex merror-reloc
14238
14239 The loader for SPU does not handle dynamic relocations.  By default, GCC
14240 will give an error when it generates code that requires a dynamic
14241 relocation.  @option{-mno-error-reloc} disables the error,
14242 @option{-mwarn-reloc} will generate a warning instead.
14243
14244 @item -msafe-dma
14245 @itemx -munsafe-dma
14246 @opindex msafe-dma
14247 @opindex munsafe-dma
14248
14249 Instructions which initiate or test completion of DMA must not be
14250 reordered with respect to loads and stores of the memory which is being
14251 accessed.  Users typically address this problem using the volatile
14252 keyword, but that can lead to inefficient code in places where the
14253 memory is known to not change.  Rather than mark the memory as volatile
14254 we treat the DMA instructions as potentially effecting all memory.  With
14255 @option{-munsafe-dma} users must use the volatile keyword to protect
14256 memory accesses.
14257
14258 @item -mbranch-hints
14259 @opindex mbranch-hints
14260
14261 By default, GCC will generate a branch hint instruction to avoid
14262 pipeline stalls for always taken or probably taken branches.  A hint
14263 will not be generated closer than 8 instructions away from its branch.
14264 There is little reason to disable them, except for debugging purposes,
14265 or to make an object a little bit smaller.
14266
14267 @item -msmall-mem
14268 @itemx -mlarge-mem
14269 @opindex msmall-mem
14270 @opindex mlarge-mem
14271
14272 By default, GCC generates code assuming that addresses are never larger
14273 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14274 a full 32 bit address.
14275
14276 @item -mstdmain
14277 @opindex mstdmain
14278
14279 By default, GCC links against startup code that assumes the SPU-style
14280 main function interface (which has an unconventional parameter list).
14281 With @option{-mstdmain}, GCC will link your program against startup
14282 code that assumes a C99-style interface to @code{main}, including a
14283 local copy of @code{argv} strings.
14284
14285 @item -mfixed-range=@var{register-range}
14286 @opindex mfixed-range
14287 Generate code treating the given register range as fixed registers.
14288 A fixed register is one that the register allocator can not use.  This is
14289 useful when compiling kernel code.  A register range is specified as
14290 two registers separated by a dash.  Multiple register ranges can be
14291 specified separated by a comma.
14292
14293 @end table
14294
14295 @node System V Options
14296 @subsection Options for System V
14297
14298 These additional options are available on System V Release 4 for
14299 compatibility with other compilers on those systems:
14300
14301 @table @gcctabopt
14302 @item -G
14303 @opindex G
14304 Create a shared object.
14305 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14306
14307 @item -Qy
14308 @opindex Qy
14309 Identify the versions of each tool used by the compiler, in a
14310 @code{.ident} assembler directive in the output.
14311
14312 @item -Qn
14313 @opindex Qn
14314 Refrain from adding @code{.ident} directives to the output file (this is
14315 the default).
14316
14317 @item -YP,@var{dirs}
14318 @opindex YP
14319 Search the directories @var{dirs}, and no others, for libraries
14320 specified with @option{-l}.
14321
14322 @item -Ym,@var{dir}
14323 @opindex Ym
14324 Look in the directory @var{dir} to find the M4 preprocessor.
14325 The assembler uses this option.
14326 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14327 @c the generic assembler that comes with Solaris takes just -Ym.
14328 @end table
14329
14330 @node V850 Options
14331 @subsection V850 Options
14332 @cindex V850 Options
14333
14334 These @samp{-m} options are defined for V850 implementations:
14335
14336 @table @gcctabopt
14337 @item -mlong-calls
14338 @itemx -mno-long-calls
14339 @opindex mlong-calls
14340 @opindex mno-long-calls
14341 Treat all calls as being far away (near).  If calls are assumed to be
14342 far away, the compiler will always load the functions address up into a
14343 register, and call indirect through the pointer.
14344
14345 @item -mno-ep
14346 @itemx -mep
14347 @opindex mno-ep
14348 @opindex mep
14349 Do not optimize (do optimize) basic blocks that use the same index
14350 pointer 4 or more times to copy pointer into the @code{ep} register, and
14351 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14352 option is on by default if you optimize.
14353
14354 @item -mno-prolog-function
14355 @itemx -mprolog-function
14356 @opindex mno-prolog-function
14357 @opindex mprolog-function
14358 Do not use (do use) external functions to save and restore registers
14359 at the prologue and epilogue of a function.  The external functions
14360 are slower, but use less code space if more than one function saves
14361 the same number of registers.  The @option{-mprolog-function} option
14362 is on by default if you optimize.
14363
14364 @item -mspace
14365 @opindex mspace
14366 Try to make the code as small as possible.  At present, this just turns
14367 on the @option{-mep} and @option{-mprolog-function} options.
14368
14369 @item -mtda=@var{n}
14370 @opindex mtda
14371 Put static or global variables whose size is @var{n} bytes or less into
14372 the tiny data area that register @code{ep} points to.  The tiny data
14373 area can hold up to 256 bytes in total (128 bytes for byte references).
14374
14375 @item -msda=@var{n}
14376 @opindex msda
14377 Put static or global variables whose size is @var{n} bytes or less into
14378 the small data area that register @code{gp} points to.  The small data
14379 area can hold up to 64 kilobytes.
14380
14381 @item -mzda=@var{n}
14382 @opindex mzda
14383 Put static or global variables whose size is @var{n} bytes or less into
14384 the first 32 kilobytes of memory.
14385
14386 @item -mv850
14387 @opindex mv850
14388 Specify that the target processor is the V850.
14389
14390 @item -mbig-switch
14391 @opindex mbig-switch
14392 Generate code suitable for big switch tables.  Use this option only if
14393 the assembler/linker complain about out of range branches within a switch
14394 table.
14395
14396 @item -mapp-regs
14397 @opindex mapp-regs
14398 This option will cause r2 and r5 to be used in the code generated by
14399 the compiler.  This setting is the default.
14400
14401 @item -mno-app-regs
14402 @opindex mno-app-regs
14403 This option will cause r2 and r5 to be treated as fixed registers.
14404
14405 @item -mv850e1
14406 @opindex mv850e1
14407 Specify that the target processor is the V850E1.  The preprocessor
14408 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14409 this option is used.
14410
14411 @item -mv850e
14412 @opindex mv850e
14413 Specify that the target processor is the V850E@.  The preprocessor
14414 constant @samp{__v850e__} will be defined if this option is used.
14415
14416 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14417 are defined then a default target processor will be chosen and the
14418 relevant @samp{__v850*__} preprocessor constant will be defined.
14419
14420 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14421 defined, regardless of which processor variant is the target.
14422
14423 @item -mdisable-callt
14424 @opindex mdisable-callt
14425 This option will suppress generation of the CALLT instruction for the
14426 v850e and v850e1 flavors of the v850 architecture.  The default is
14427 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14428
14429 @end table
14430
14431 @node VAX Options
14432 @subsection VAX Options
14433 @cindex VAX options
14434
14435 These @samp{-m} options are defined for the VAX:
14436
14437 @table @gcctabopt
14438 @item -munix
14439 @opindex munix
14440 Do not output certain jump instructions (@code{aobleq} and so on)
14441 that the Unix assembler for the VAX cannot handle across long
14442 ranges.
14443
14444 @item -mgnu
14445 @opindex mgnu
14446 Do output those jump instructions, on the assumption that you
14447 will assemble with the GNU assembler.
14448
14449 @item -mg
14450 @opindex mg
14451 Output code for g-format floating point numbers instead of d-format.
14452 @end table
14453
14454 @node VxWorks Options
14455 @subsection VxWorks Options
14456 @cindex VxWorks Options
14457
14458 The options in this section are defined for all VxWorks targets.
14459 Options specific to the target hardware are listed with the other
14460 options for that target.
14461
14462 @table @gcctabopt
14463 @item -mrtp
14464 @opindex mrtp
14465 GCC can generate code for both VxWorks kernels and real time processes
14466 (RTPs).  This option switches from the former to the latter.  It also
14467 defines the preprocessor macro @code{__RTP__}.
14468
14469 @item -non-static
14470 @opindex non-static
14471 Link an RTP executable against shared libraries rather than static
14472 libraries.  The options @option{-static} and @option{-shared} can
14473 also be used for RTPs (@pxref{Link Options}); @option{-static}
14474 is the default.
14475
14476 @item -Bstatic
14477 @itemx -Bdynamic
14478 @opindex Bstatic
14479 @opindex Bdynamic
14480 These options are passed down to the linker.  They are defined for
14481 compatibility with Diab.
14482
14483 @item -Xbind-lazy
14484 @opindex Xbind-lazy
14485 Enable lazy binding of function calls.  This option is equivalent to
14486 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14487
14488 @item -Xbind-now
14489 @opindex Xbind-now
14490 Disable lazy binding of function calls.  This option is the default and
14491 is defined for compatibility with Diab.
14492 @end table
14493
14494 @node x86-64 Options
14495 @subsection x86-64 Options
14496 @cindex x86-64 options
14497
14498 These are listed under @xref{i386 and x86-64 Options}.
14499
14500 @node Xstormy16 Options
14501 @subsection Xstormy16 Options
14502 @cindex Xstormy16 Options
14503
14504 These options are defined for Xstormy16:
14505
14506 @table @gcctabopt
14507 @item -msim
14508 @opindex msim
14509 Choose startup files and linker script suitable for the simulator.
14510 @end table
14511
14512 @node Xtensa Options
14513 @subsection Xtensa Options
14514 @cindex Xtensa Options
14515
14516 These options are supported for Xtensa targets:
14517
14518 @table @gcctabopt
14519 @item -mconst16
14520 @itemx -mno-const16
14521 @opindex mconst16
14522 @opindex mno-const16
14523 Enable or disable use of @code{CONST16} instructions for loading
14524 constant values.  The @code{CONST16} instruction is currently not a
14525 standard option from Tensilica.  When enabled, @code{CONST16}
14526 instructions are always used in place of the standard @code{L32R}
14527 instructions.  The use of @code{CONST16} is enabled by default only if
14528 the @code{L32R} instruction is not available.
14529
14530 @item -mfused-madd
14531 @itemx -mno-fused-madd
14532 @opindex mfused-madd
14533 @opindex mno-fused-madd
14534 Enable or disable use of fused multiply/add and multiply/subtract
14535 instructions in the floating-point option.  This has no effect if the
14536 floating-point option is not also enabled.  Disabling fused multiply/add
14537 and multiply/subtract instructions forces the compiler to use separate
14538 instructions for the multiply and add/subtract operations.  This may be
14539 desirable in some cases where strict IEEE 754-compliant results are
14540 required: the fused multiply add/subtract instructions do not round the
14541 intermediate result, thereby producing results with @emph{more} bits of
14542 precision than specified by the IEEE standard.  Disabling fused multiply
14543 add/subtract instructions also ensures that the program output is not
14544 sensitive to the compiler's ability to combine multiply and add/subtract
14545 operations.
14546
14547 @item -mtext-section-literals
14548 @itemx -mno-text-section-literals
14549 @opindex mtext-section-literals
14550 @opindex mno-text-section-literals
14551 Control the treatment of literal pools.  The default is
14552 @option{-mno-text-section-literals}, which places literals in a separate
14553 section in the output file.  This allows the literal pool to be placed
14554 in a data RAM/ROM, and it also allows the linker to combine literal
14555 pools from separate object files to remove redundant literals and
14556 improve code size.  With @option{-mtext-section-literals}, the literals
14557 are interspersed in the text section in order to keep them as close as
14558 possible to their references.  This may be necessary for large assembly
14559 files.
14560
14561 @item -mtarget-align
14562 @itemx -mno-target-align
14563 @opindex mtarget-align
14564 @opindex mno-target-align
14565 When this option is enabled, GCC instructs the assembler to
14566 automatically align instructions to reduce branch penalties at the
14567 expense of some code density.  The assembler attempts to widen density
14568 instructions to align branch targets and the instructions following call
14569 instructions.  If there are not enough preceding safe density
14570 instructions to align a target, no widening will be performed.  The
14571 default is @option{-mtarget-align}.  These options do not affect the
14572 treatment of auto-aligned instructions like @code{LOOP}, which the
14573 assembler will always align, either by widening density instructions or
14574 by inserting no-op instructions.
14575
14576 @item -mlongcalls
14577 @itemx -mno-longcalls
14578 @opindex mlongcalls
14579 @opindex mno-longcalls
14580 When this option is enabled, GCC instructs the assembler to translate
14581 direct calls to indirect calls unless it can determine that the target
14582 of a direct call is in the range allowed by the call instruction.  This
14583 translation typically occurs for calls to functions in other source
14584 files.  Specifically, the assembler translates a direct @code{CALL}
14585 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14586 The default is @option{-mno-longcalls}.  This option should be used in
14587 programs where the call target can potentially be out of range.  This
14588 option is implemented in the assembler, not the compiler, so the
14589 assembly code generated by GCC will still show direct call
14590 instructions---look at the disassembled object code to see the actual
14591 instructions.  Note that the assembler will use an indirect call for
14592 every cross-file call, not just those that really will be out of range.
14593 @end table
14594
14595 @node zSeries Options
14596 @subsection zSeries Options
14597 @cindex zSeries options
14598
14599 These are listed under @xref{S/390 and zSeries Options}.
14600
14601 @node Code Gen Options
14602 @section Options for Code Generation Conventions
14603 @cindex code generation conventions
14604 @cindex options, code generation
14605 @cindex run-time options
14606
14607 These machine-independent options control the interface conventions
14608 used in code generation.
14609
14610 Most of them have both positive and negative forms; the negative form
14611 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14612 one of the forms is listed---the one which is not the default.  You
14613 can figure out the other form by either removing @samp{no-} or adding
14614 it.
14615
14616 @table @gcctabopt
14617 @item -fbounds-check
14618 @opindex fbounds-check
14619 For front-ends that support it, generate additional code to check that
14620 indices used to access arrays are within the declared range.  This is
14621 currently only supported by the Java and Fortran front-ends, where
14622 this option defaults to true and false respectively.
14623
14624 @item -ftrapv
14625 @opindex ftrapv
14626 This option generates traps for signed overflow on addition, subtraction,
14627 multiplication operations.
14628
14629 @item -fwrapv
14630 @opindex fwrapv
14631 This option instructs the compiler to assume that signed arithmetic
14632 overflow of addition, subtraction and multiplication wraps around
14633 using twos-complement representation.  This flag enables some optimizations
14634 and disables others.  This option is enabled by default for the Java
14635 front-end, as required by the Java language specification.
14636
14637 @item -fexceptions
14638 @opindex fexceptions
14639 Enable exception handling.  Generates extra code needed to propagate
14640 exceptions.  For some targets, this implies GCC will generate frame
14641 unwind information for all functions, which can produce significant data
14642 size overhead, although it does not affect execution.  If you do not
14643 specify this option, GCC will enable it by default for languages like
14644 C++ which normally require exception handling, and disable it for
14645 languages like C that do not normally require it.  However, you may need
14646 to enable this option when compiling C code that needs to interoperate
14647 properly with exception handlers written in C++.  You may also wish to
14648 disable this option if you are compiling older C++ programs that don't
14649 use exception handling.
14650
14651 @item -fnon-call-exceptions
14652 @opindex fnon-call-exceptions
14653 Generate code that allows trapping instructions to throw exceptions.
14654 Note that this requires platform-specific runtime support that does
14655 not exist everywhere.  Moreover, it only allows @emph{trapping}
14656 instructions to throw exceptions, i.e.@: memory references or floating
14657 point instructions.  It does not allow exceptions to be thrown from
14658 arbitrary signal handlers such as @code{SIGALRM}.
14659
14660 @item -funwind-tables
14661 @opindex funwind-tables
14662 Similar to @option{-fexceptions}, except that it will just generate any needed
14663 static data, but will not affect the generated code in any other way.
14664 You will normally not enable this option; instead, a language processor
14665 that needs this handling would enable it on your behalf.
14666
14667 @item -fasynchronous-unwind-tables
14668 @opindex fasynchronous-unwind-tables
14669 Generate unwind table in dwarf2 format, if supported by target machine.  The
14670 table is exact at each instruction boundary, so it can be used for stack
14671 unwinding from asynchronous events (such as debugger or garbage collector).
14672
14673 @item -fpcc-struct-return
14674 @opindex fpcc-struct-return
14675 Return ``short'' @code{struct} and @code{union} values in memory like
14676 longer ones, rather than in registers.  This convention is less
14677 efficient, but it has the advantage of allowing intercallability between
14678 GCC-compiled files and files compiled with other compilers, particularly
14679 the Portable C Compiler (pcc).
14680
14681 The precise convention for returning structures in memory depends
14682 on the target configuration macros.
14683
14684 Short structures and unions are those whose size and alignment match
14685 that of some integer type.
14686
14687 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
14688 switch is not binary compatible with code compiled with the
14689 @option{-freg-struct-return} switch.
14690 Use it to conform to a non-default application binary interface.
14691
14692 @item -freg-struct-return
14693 @opindex freg-struct-return
14694 Return @code{struct} and @code{union} values in registers when possible.
14695 This is more efficient for small structures than
14696 @option{-fpcc-struct-return}.
14697
14698 If you specify neither @option{-fpcc-struct-return} nor
14699 @option{-freg-struct-return}, GCC defaults to whichever convention is
14700 standard for the target.  If there is no standard convention, GCC
14701 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
14702 the principal compiler.  In those cases, we can choose the standard, and
14703 we chose the more efficient register return alternative.
14704
14705 @strong{Warning:} code compiled with the @option{-freg-struct-return}
14706 switch is not binary compatible with code compiled with the
14707 @option{-fpcc-struct-return} switch.
14708 Use it to conform to a non-default application binary interface.
14709
14710 @item -fshort-enums
14711 @opindex fshort-enums
14712 Allocate to an @code{enum} type only as many bytes as it needs for the
14713 declared range of possible values.  Specifically, the @code{enum} type
14714 will be equivalent to the smallest integer type which has enough room.
14715
14716 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
14717 code that is not binary compatible with code generated without that switch.
14718 Use it to conform to a non-default application binary interface.
14719
14720 @item -fshort-double
14721 @opindex fshort-double
14722 Use the same size for @code{double} as for @code{float}.
14723
14724 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
14725 code that is not binary compatible with code generated without that switch.
14726 Use it to conform to a non-default application binary interface.
14727
14728 @item -fshort-wchar
14729 @opindex fshort-wchar
14730 Override the underlying type for @samp{wchar_t} to be @samp{short
14731 unsigned int} instead of the default for the target.  This option is
14732 useful for building programs to run under WINE@.
14733
14734 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
14735 code that is not binary compatible with code generated without that switch.
14736 Use it to conform to a non-default application binary interface.
14737
14738 @item -fno-common
14739 @opindex fno-common
14740 In C, allocate even uninitialized global variables in the data section of the
14741 object file, rather than generating them as common blocks.  This has the
14742 effect that if the same variable is declared (without @code{extern}) in
14743 two different compilations, you will get an error when you link them.
14744 The only reason this might be useful is if you wish to verify that the
14745 program will work on other systems which always work this way.
14746
14747 @item -fno-ident
14748 @opindex fno-ident
14749 Ignore the @samp{#ident} directive.
14750
14751 @item -finhibit-size-directive
14752 @opindex finhibit-size-directive
14753 Don't output a @code{.size} assembler directive, or anything else that
14754 would cause trouble if the function is split in the middle, and the
14755 two halves are placed at locations far apart in memory.  This option is
14756 used when compiling @file{crtstuff.c}; you should not need to use it
14757 for anything else.
14758
14759 @item -fverbose-asm
14760 @opindex fverbose-asm
14761 Put extra commentary information in the generated assembly code to
14762 make it more readable.  This option is generally only of use to those
14763 who actually need to read the generated assembly code (perhaps while
14764 debugging the compiler itself).
14765
14766 @option{-fno-verbose-asm}, the default, causes the
14767 extra information to be omitted and is useful when comparing two assembler
14768 files.
14769
14770 @item -frecord-gcc-switches
14771 @opindex frecord-gcc-switches
14772 This switch causes the command line that was used to invoke the
14773 compiler to be recorded into the object file that is being created.
14774 This switch is only implemented on some targets and the exact format
14775 of the recording is target and binary file format dependent, but it
14776 usually takes the form of a section containing ASCII text.  This
14777 switch is related to the @option{-fverbose-asm} switch, but that
14778 switch only records information in the assembler output file as
14779 comments, so it never reaches the object file.
14780
14781 @item -fpic
14782 @opindex fpic
14783 @cindex global offset table
14784 @cindex PIC
14785 Generate position-independent code (PIC) suitable for use in a shared
14786 library, if supported for the target machine.  Such code accesses all
14787 constant addresses through a global offset table (GOT)@.  The dynamic
14788 loader resolves the GOT entries when the program starts (the dynamic
14789 loader is not part of GCC; it is part of the operating system).  If
14790 the GOT size for the linked executable exceeds a machine-specific
14791 maximum size, you get an error message from the linker indicating that
14792 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
14793 instead.  (These maximums are 8k on the SPARC and 32k
14794 on the m68k and RS/6000.  The 386 has no such limit.)
14795
14796 Position-independent code requires special support, and therefore works
14797 only on certain machines.  For the 386, GCC supports PIC for System V
14798 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
14799 position-independent.
14800
14801 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14802 are defined to 1.
14803
14804 @item -fPIC
14805 @opindex fPIC
14806 If supported for the target machine, emit position-independent code,
14807 suitable for dynamic linking and avoiding any limit on the size of the
14808 global offset table.  This option makes a difference on the m68k,
14809 PowerPC and SPARC@.
14810
14811 Position-independent code requires special support, and therefore works
14812 only on certain machines.
14813
14814 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14815 are defined to 2.
14816
14817 @item -fpie
14818 @itemx -fPIE
14819 @opindex fpie
14820 @opindex fPIE
14821 These options are similar to @option{-fpic} and @option{-fPIC}, but
14822 generated position independent code can be only linked into executables.
14823 Usually these options are used when @option{-pie} GCC option will be
14824 used during linking.
14825
14826 @option{-fpie} and @option{-fPIE} both define the macros
14827 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
14828 for @option{-fpie} and 2 for @option{-fPIE}.
14829
14830 @item -fno-jump-tables
14831 @opindex fno-jump-tables
14832 Do not use jump tables for switch statements even where it would be
14833 more efficient than other code generation strategies.  This option is
14834 of use in conjunction with @option{-fpic} or @option{-fPIC} for
14835 building code which forms part of a dynamic linker and cannot
14836 reference the address of a jump table.  On some targets, jump tables
14837 do not require a GOT and this option is not needed.
14838
14839 @item -ffixed-@var{reg}
14840 @opindex ffixed
14841 Treat the register named @var{reg} as a fixed register; generated code
14842 should never refer to it (except perhaps as a stack pointer, frame
14843 pointer or in some other fixed role).
14844
14845 @var{reg} must be the name of a register.  The register names accepted
14846 are machine-specific and are defined in the @code{REGISTER_NAMES}
14847 macro in the machine description macro file.
14848
14849 This flag does not have a negative form, because it specifies a
14850 three-way choice.
14851
14852 @item -fcall-used-@var{reg}
14853 @opindex fcall-used
14854 Treat the register named @var{reg} as an allocable register that is
14855 clobbered by function calls.  It may be allocated for temporaries or
14856 variables that do not live across a call.  Functions compiled this way
14857 will not save and restore the register @var{reg}.
14858
14859 It is an error to used this flag with the frame pointer or stack pointer.
14860 Use of this flag for other registers that have fixed pervasive roles in
14861 the machine's execution model will produce disastrous results.
14862
14863 This flag does not have a negative form, because it specifies a
14864 three-way choice.
14865
14866 @item -fcall-saved-@var{reg}
14867 @opindex fcall-saved
14868 Treat the register named @var{reg} as an allocable register saved by
14869 functions.  It may be allocated even for temporaries or variables that
14870 live across a call.  Functions compiled this way will save and restore
14871 the register @var{reg} if they use it.
14872
14873 It is an error to used this flag with the frame pointer or stack pointer.
14874 Use of this flag for other registers that have fixed pervasive roles in
14875 the machine's execution model will produce disastrous results.
14876
14877 A different sort of disaster will result from the use of this flag for
14878 a register in which function values may be returned.
14879
14880 This flag does not have a negative form, because it specifies a
14881 three-way choice.
14882
14883 @item -fpack-struct[=@var{n}]
14884 @opindex fpack-struct
14885 Without a value specified, pack all structure members together without
14886 holes.  When a value is specified (which must be a small power of two), pack
14887 structure members according to this value, representing the maximum
14888 alignment (that is, objects with default alignment requirements larger than
14889 this will be output potentially unaligned at the next fitting location.
14890
14891 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
14892 code that is not binary compatible with code generated without that switch.
14893 Additionally, it makes the code suboptimal.
14894 Use it to conform to a non-default application binary interface.
14895
14896 @item -finstrument-functions
14897 @opindex finstrument-functions
14898 Generate instrumentation calls for entry and exit to functions.  Just
14899 after function entry and just before function exit, the following
14900 profiling functions will be called with the address of the current
14901 function and its call site.  (On some platforms,
14902 @code{__builtin_return_address} does not work beyond the current
14903 function, so the call site information may not be available to the
14904 profiling functions otherwise.)
14905
14906 @smallexample
14907 void __cyg_profile_func_enter (void *this_fn,
14908                                void *call_site);
14909 void __cyg_profile_func_exit  (void *this_fn,
14910                                void *call_site);
14911 @end smallexample
14912
14913 The first argument is the address of the start of the current function,
14914 which may be looked up exactly in the symbol table.
14915
14916 This instrumentation is also done for functions expanded inline in other
14917 functions.  The profiling calls will indicate where, conceptually, the
14918 inline function is entered and exited.  This means that addressable
14919 versions of such functions must be available.  If all your uses of a
14920 function are expanded inline, this may mean an additional expansion of
14921 code size.  If you use @samp{extern inline} in your C code, an
14922 addressable version of such functions must be provided.  (This is
14923 normally the case anyways, but if you get lucky and the optimizer always
14924 expands the functions inline, you might have gotten away without
14925 providing static copies.)
14926
14927 A function may be given the attribute @code{no_instrument_function}, in
14928 which case this instrumentation will not be done.  This can be used, for
14929 example, for the profiling functions listed above, high-priority
14930 interrupt routines, and any functions from which the profiling functions
14931 cannot safely be called (perhaps signal handlers, if the profiling
14932 routines generate output or allocate memory).
14933
14934 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
14935 @opindex finstrument-functions-exclude-file-list
14936
14937 Set the list of functions that are excluded from instrumentation (see
14938 the description of @code{-finstrument-functions}).  If the file that
14939 contains a function definition matches with one of @var{file}, then
14940 that function is not instrumented.  The match is done on substrings:
14941 if the @var{file} parameter is a substring of the file name, it is
14942 considered to be a match.
14943
14944 For example,
14945 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
14946 will exclude any inline function defined in files whose pathnames
14947 contain @code{/bits/stl} or @code{include/sys}.
14948
14949 If, for some reason, you want to include letter @code{','} in one of
14950 @var{sym}, write @code{'\,'}. For example,
14951 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
14952 (note the single quote surrounding the option).
14953
14954 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
14955 @opindex finstrument-functions-exclude-function-list
14956
14957 This is similar to @code{-finstrument-functions-exclude-file-list},
14958 but this option sets the list of function names to be excluded from
14959 instrumentation.  The function name to be matched is its user-visible
14960 name, such as @code{vector<int> blah(const vector<int> &)}, not the
14961 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
14962 match is done on substrings: if the @var{sym} parameter is a substring
14963 of the function name, it is considered to be a match.
14964
14965 @item -fstack-check
14966 @opindex fstack-check
14967 Generate code to verify that you do not go beyond the boundary of the
14968 stack.  You should specify this flag if you are running in an
14969 environment with multiple threads, but only rarely need to specify it in
14970 a single-threaded environment since stack overflow is automatically
14971 detected on nearly all systems if there is only one stack.
14972
14973 Note that this switch does not actually cause checking to be done; the
14974 operating system must do that.  The switch causes generation of code
14975 to ensure that the operating system sees the stack being extended.
14976
14977 @item -fstack-limit-register=@var{reg}
14978 @itemx -fstack-limit-symbol=@var{sym}
14979 @itemx -fno-stack-limit
14980 @opindex fstack-limit-register
14981 @opindex fstack-limit-symbol
14982 @opindex fno-stack-limit
14983 Generate code to ensure that the stack does not grow beyond a certain value,
14984 either the value of a register or the address of a symbol.  If the stack
14985 would grow beyond the value, a signal is raised.  For most targets,
14986 the signal is raised before the stack overruns the boundary, so
14987 it is possible to catch the signal without taking special precautions.
14988
14989 For instance, if the stack starts at absolute address @samp{0x80000000}
14990 and grows downwards, you can use the flags
14991 @option{-fstack-limit-symbol=__stack_limit} and
14992 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
14993 of 128KB@.  Note that this may only work with the GNU linker.
14994
14995 @cindex aliasing of parameters
14996 @cindex parameters, aliased
14997 @item -fargument-alias
14998 @itemx -fargument-noalias
14999 @itemx -fargument-noalias-global
15000 @itemx -fargument-noalias-anything
15001 @opindex fargument-alias
15002 @opindex fargument-noalias
15003 @opindex fargument-noalias-global
15004 @opindex fargument-noalias-anything
15005 Specify the possible relationships among parameters and between
15006 parameters and global data.
15007
15008 @option{-fargument-alias} specifies that arguments (parameters) may
15009 alias each other and may alias global storage.@*
15010 @option{-fargument-noalias} specifies that arguments do not alias
15011 each other, but may alias global storage.@*
15012 @option{-fargument-noalias-global} specifies that arguments do not
15013 alias each other and do not alias global storage.
15014 @option{-fargument-noalias-anything} specifies that arguments do not
15015 alias any other storage.
15016
15017 Each language will automatically use whatever option is required by
15018 the language standard.  You should not need to use these options yourself.
15019
15020 @item -fleading-underscore
15021 @opindex fleading-underscore
15022 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15023 change the way C symbols are represented in the object file.  One use
15024 is to help link with legacy assembly code.
15025
15026 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15027 generate code that is not binary compatible with code generated without that
15028 switch.  Use it to conform to a non-default application binary interface.
15029 Not all targets provide complete support for this switch.
15030
15031 @item -ftls-model=@var{model}
15032 @opindex ftls-model
15033 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15034 The @var{model} argument should be one of @code{global-dynamic},
15035 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15036
15037 The default without @option{-fpic} is @code{initial-exec}; with
15038 @option{-fpic} the default is @code{global-dynamic}.
15039
15040 @item -fvisibility=@var{default|internal|hidden|protected}
15041 @opindex fvisibility
15042 Set the default ELF image symbol visibility to the specified option---all
15043 symbols will be marked with this unless overridden within the code.
15044 Using this feature can very substantially improve linking and
15045 load times of shared object libraries, produce more optimized
15046 code, provide near-perfect API export and prevent symbol clashes.
15047 It is @strong{strongly} recommended that you use this in any shared objects
15048 you distribute.
15049
15050 Despite the nomenclature, @code{default} always means public ie;
15051 available to be linked against from outside the shared object.
15052 @code{protected} and @code{internal} are pretty useless in real-world
15053 usage so the only other commonly used option will be @code{hidden}.
15054 The default if @option{-fvisibility} isn't specified is
15055 @code{default}, i.e., make every
15056 symbol public---this causes the same behavior as previous versions of
15057 GCC@.
15058
15059 A good explanation of the benefits offered by ensuring ELF
15060 symbols have the correct visibility is given by ``How To Write
15061 Shared Libraries'' by Ulrich Drepper (which can be found at
15062 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15063 solution made possible by this option to marking things hidden when
15064 the default is public is to make the default hidden and mark things
15065 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15066 and @code{__attribute__ ((visibility("default")))} instead of
15067 @code{__declspec(dllexport)} you get almost identical semantics with
15068 identical syntax.  This is a great boon to those working with
15069 cross-platform projects.
15070
15071 For those adding visibility support to existing code, you may find
15072 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15073 the declarations you wish to set visibility for with (for example)
15074 @samp{#pragma GCC visibility push(hidden)} and
15075 @samp{#pragma GCC visibility pop}.
15076 Bear in mind that symbol visibility should be viewed @strong{as
15077 part of the API interface contract} and thus all new code should
15078 always specify visibility when it is not the default ie; declarations
15079 only for use within the local DSO should @strong{always} be marked explicitly
15080 as hidden as so to avoid PLT indirection overheads---making this
15081 abundantly clear also aids readability and self-documentation of the code.
15082 Note that due to ISO C++ specification requirements, operator new and
15083 operator delete must always be of default visibility.
15084
15085 Be aware that headers from outside your project, in particular system
15086 headers and headers from any other library you use, may not be
15087 expecting to be compiled with visibility other than the default.  You
15088 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15089 before including any such headers.
15090
15091 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15092 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15093 no modifications.  However, this means that calls to @samp{extern}
15094 functions with no explicit visibility will use the PLT, so it is more
15095 effective to use @samp{__attribute ((visibility))} and/or
15096 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15097 declarations should be treated as hidden.
15098
15099 Note that @samp{-fvisibility} does affect C++ vague linkage
15100 entities. This means that, for instance, an exception class that will
15101 be thrown between DSOs must be explicitly marked with default
15102 visibility so that the @samp{type_info} nodes will be unified between
15103 the DSOs.
15104
15105 An overview of these techniques, their benefits and how to use them
15106 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15107
15108 @end table
15109
15110 @c man end
15111
15112 @node Environment Variables
15113 @section Environment Variables Affecting GCC
15114 @cindex environment variables
15115
15116 @c man begin ENVIRONMENT
15117 This section describes several environment variables that affect how GCC
15118 operates.  Some of them work by specifying directories or prefixes to use
15119 when searching for various kinds of files.  Some are used to specify other
15120 aspects of the compilation environment.
15121
15122 Note that you can also specify places to search using options such as
15123 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15124 take precedence over places specified using environment variables, which
15125 in turn take precedence over those specified by the configuration of GCC@.
15126 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15127 GNU Compiler Collection (GCC) Internals}.
15128
15129 @table @env
15130 @item LANG
15131 @itemx LC_CTYPE
15132 @c @itemx LC_COLLATE
15133 @itemx LC_MESSAGES
15134 @c @itemx LC_MONETARY
15135 @c @itemx LC_NUMERIC
15136 @c @itemx LC_TIME
15137 @itemx LC_ALL
15138 @findex LANG
15139 @findex LC_CTYPE
15140 @c @findex LC_COLLATE
15141 @findex LC_MESSAGES
15142 @c @findex LC_MONETARY
15143 @c @findex LC_NUMERIC
15144 @c @findex LC_TIME
15145 @findex LC_ALL
15146 @cindex locale
15147 These environment variables control the way that GCC uses
15148 localization information that allow GCC to work with different
15149 national conventions.  GCC inspects the locale categories
15150 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15151 so.  These locale categories can be set to any value supported by your
15152 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15153 Kingdom encoded in UTF-8.
15154
15155 The @env{LC_CTYPE} environment variable specifies character
15156 classification.  GCC uses it to determine the character boundaries in
15157 a string; this is needed for some multibyte encodings that contain quote
15158 and escape characters that would otherwise be interpreted as a string
15159 end or escape.
15160
15161 The @env{LC_MESSAGES} environment variable specifies the language to
15162 use in diagnostic messages.
15163
15164 If the @env{LC_ALL} environment variable is set, it overrides the value
15165 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15166 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15167 environment variable.  If none of these variables are set, GCC
15168 defaults to traditional C English behavior.
15169
15170 @item TMPDIR
15171 @findex TMPDIR
15172 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15173 files.  GCC uses temporary files to hold the output of one stage of
15174 compilation which is to be used as input to the next stage: for example,
15175 the output of the preprocessor, which is the input to the compiler
15176 proper.
15177
15178 @item GCC_EXEC_PREFIX
15179 @findex GCC_EXEC_PREFIX
15180 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15181 names of the subprograms executed by the compiler.  No slash is added
15182 when this prefix is combined with the name of a subprogram, but you can
15183 specify a prefix that ends with a slash if you wish.
15184
15185 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15186 an appropriate prefix to use based on the pathname it was invoked with.
15187
15188 If GCC cannot find the subprogram using the specified prefix, it
15189 tries looking in the usual places for the subprogram.
15190
15191 The default value of @env{GCC_EXEC_PREFIX} is
15192 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15193 the installed compiler. In many cases @var{prefix} is the value
15194 of @code{prefix} when you ran the @file{configure} script.
15195
15196 Other prefixes specified with @option{-B} take precedence over this prefix.
15197
15198 This prefix is also used for finding files such as @file{crt0.o} that are
15199 used for linking.
15200
15201 In addition, the prefix is used in an unusual way in finding the
15202 directories to search for header files.  For each of the standard
15203 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15204 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15205 replacing that beginning with the specified prefix to produce an
15206 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15207 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15208 These alternate directories are searched first; the standard directories
15209 come next. If a standard directory begins with the configured
15210 @var{prefix} then the value of @var{prefix} is replaced by
15211 @env{GCC_EXEC_PREFIX} when looking for header files.
15212
15213 @item COMPILER_PATH
15214 @findex COMPILER_PATH
15215 The value of @env{COMPILER_PATH} is a colon-separated list of
15216 directories, much like @env{PATH}.  GCC tries the directories thus
15217 specified when searching for subprograms, if it can't find the
15218 subprograms using @env{GCC_EXEC_PREFIX}.
15219
15220 @item LIBRARY_PATH
15221 @findex LIBRARY_PATH
15222 The value of @env{LIBRARY_PATH} is a colon-separated list of
15223 directories, much like @env{PATH}.  When configured as a native compiler,
15224 GCC tries the directories thus specified when searching for special
15225 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15226 using GCC also uses these directories when searching for ordinary
15227 libraries for the @option{-l} option (but directories specified with
15228 @option{-L} come first).
15229
15230 @item LANG
15231 @findex LANG
15232 @cindex locale definition
15233 This variable is used to pass locale information to the compiler.  One way in
15234 which this information is used is to determine the character set to be used
15235 when character literals, string literals and comments are parsed in C and C++.
15236 When the compiler is configured to allow multibyte characters,
15237 the following values for @env{LANG} are recognized:
15238
15239 @table @samp
15240 @item C-JIS
15241 Recognize JIS characters.
15242 @item C-SJIS
15243 Recognize SJIS characters.
15244 @item C-EUCJP
15245 Recognize EUCJP characters.
15246 @end table
15247
15248 If @env{LANG} is not defined, or if it has some other value, then the
15249 compiler will use mblen and mbtowc as defined by the default locale to
15250 recognize and translate multibyte characters.
15251 @end table
15252
15253 @noindent
15254 Some additional environments variables affect the behavior of the
15255 preprocessor.
15256
15257 @include cppenv.texi
15258
15259 @c man end
15260
15261 @node Precompiled Headers
15262 @section Using Precompiled Headers
15263 @cindex precompiled headers
15264 @cindex speed of compilation
15265
15266 Often large projects have many header files that are included in every
15267 source file.  The time the compiler takes to process these header files
15268 over and over again can account for nearly all of the time required to
15269 build the project.  To make builds faster, GCC allows users to
15270 `precompile' a header file; then, if builds can use the precompiled
15271 header file they will be much faster.
15272
15273 To create a precompiled header file, simply compile it as you would any
15274 other file, if necessary using the @option{-x} option to make the driver
15275 treat it as a C or C++ header file.  You will probably want to use a
15276 tool like @command{make} to keep the precompiled header up-to-date when
15277 the headers it contains change.
15278
15279 A precompiled header file will be searched for when @code{#include} is
15280 seen in the compilation.  As it searches for the included file
15281 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15282 compiler looks for a precompiled header in each directory just before it
15283 looks for the include file in that directory.  The name searched for is
15284 the name specified in the @code{#include} with @samp{.gch} appended.  If
15285 the precompiled header file can't be used, it is ignored.
15286
15287 For instance, if you have @code{#include "all.h"}, and you have
15288 @file{all.h.gch} in the same directory as @file{all.h}, then the
15289 precompiled header file will be used if possible, and the original
15290 header will be used otherwise.
15291
15292 Alternatively, you might decide to put the precompiled header file in a
15293 directory and use @option{-I} to ensure that directory is searched
15294 before (or instead of) the directory containing the original header.
15295 Then, if you want to check that the precompiled header file is always
15296 used, you can put a file of the same name as the original header in this
15297 directory containing an @code{#error} command.
15298
15299 This also works with @option{-include}.  So yet another way to use
15300 precompiled headers, good for projects not designed with precompiled
15301 header files in mind, is to simply take most of the header files used by
15302 a project, include them from another header file, precompile that header
15303 file, and @option{-include} the precompiled header.  If the header files
15304 have guards against multiple inclusion, they will be skipped because
15305 they've already been included (in the precompiled header).
15306
15307 If you need to precompile the same header file for different
15308 languages, targets, or compiler options, you can instead make a
15309 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15310 header in the directory, perhaps using @option{-o}.  It doesn't matter
15311 what you call the files in the directory, every precompiled header in
15312 the directory will be considered.  The first precompiled header
15313 encountered in the directory that is valid for this compilation will
15314 be used; they're searched in no particular order.
15315
15316 There are many other possibilities, limited only by your imagination,
15317 good sense, and the constraints of your build system.
15318
15319 A precompiled header file can be used only when these conditions apply:
15320
15321 @itemize
15322 @item
15323 Only one precompiled header can be used in a particular compilation.
15324
15325 @item
15326 A precompiled header can't be used once the first C token is seen.  You
15327 can have preprocessor directives before a precompiled header; you can
15328 even include a precompiled header from inside another header, so long as
15329 there are no C tokens before the @code{#include}.
15330
15331 @item
15332 The precompiled header file must be produced for the same language as
15333 the current compilation.  You can't use a C precompiled header for a C++
15334 compilation.
15335
15336 @item
15337 The precompiled header file must have been produced by the same compiler
15338 binary as the current compilation is using.
15339
15340 @item
15341 Any macros defined before the precompiled header is included must
15342 either be defined in the same way as when the precompiled header was
15343 generated, or must not affect the precompiled header, which usually
15344 means that they don't appear in the precompiled header at all.
15345
15346 The @option{-D} option is one way to define a macro before a
15347 precompiled header is included; using a @code{#define} can also do it.
15348 There are also some options that define macros implicitly, like
15349 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15350 defined this way.
15351
15352 @item If debugging information is output when using the precompiled
15353 header, using @option{-g} or similar, the same kind of debugging information
15354 must have been output when building the precompiled header.  However,
15355 a precompiled header built using @option{-g} can be used in a compilation
15356 when no debugging information is being output.
15357
15358 @item The same @option{-m} options must generally be used when building
15359 and using the precompiled header.  @xref{Submodel Options},
15360 for any cases where this rule is relaxed.
15361
15362 @item Each of the following options must be the same when building and using
15363 the precompiled header:
15364
15365 @gccoptlist{-fexceptions -funit-at-a-time}
15366
15367 @item
15368 Some other command-line options starting with @option{-f},
15369 @option{-p}, or @option{-O} must be defined in the same way as when
15370 the precompiled header was generated.  At present, it's not clear
15371 which options are safe to change and which are not; the safest choice
15372 is to use exactly the same options when generating and using the
15373 precompiled header.  The following are known to be safe:
15374
15375 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15376 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15377 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15378 -pedantic-errors}
15379
15380 @end itemize
15381
15382 For all of these except the last, the compiler will automatically
15383 ignore the precompiled header if the conditions aren't met.  If you
15384 find an option combination that doesn't work and doesn't cause the
15385 precompiled header to be ignored, please consider filing a bug report,
15386 see @ref{Bugs}.
15387
15388 If you do use differing options when generating and using the
15389 precompiled header, the actual behavior will be a mixture of the
15390 behavior for the options.  For instance, if you use @option{-g} to
15391 generate the precompiled header but not when using it, you may or may
15392 not get debugging information for routines in the precompiled header.
15393
15394 @node Running Protoize
15395 @section Running Protoize
15396
15397 The program @code{protoize} is an optional part of GCC@.  You can use
15398 it to add prototypes to a program, thus converting the program to ISO
15399 C in one respect.  The companion program @code{unprotoize} does the
15400 reverse: it removes argument types from any prototypes that are found.
15401
15402 When you run these programs, you must specify a set of source files as
15403 command line arguments.  The conversion programs start out by compiling
15404 these files to see what functions they define.  The information gathered
15405 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15406
15407 After scanning comes actual conversion.  The specified files are all
15408 eligible to be converted; any files they include (whether sources or
15409 just headers) are eligible as well.
15410
15411 But not all the eligible files are converted.  By default,
15412 @code{protoize} and @code{unprotoize} convert only source and header
15413 files in the current directory.  You can specify additional directories
15414 whose files should be converted with the @option{-d @var{directory}}
15415 option.  You can also specify particular files to exclude with the
15416 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15417 directory name matches one of the specified directory names, and its
15418 name within the directory has not been excluded.
15419
15420 Basic conversion with @code{protoize} consists of rewriting most
15421 function definitions and function declarations to specify the types of
15422 the arguments.  The only ones not rewritten are those for varargs
15423 functions.
15424
15425 @code{protoize} optionally inserts prototype declarations at the
15426 beginning of the source file, to make them available for any calls that
15427 precede the function's definition.  Or it can insert prototype
15428 declarations with block scope in the blocks where undeclared functions
15429 are called.
15430
15431 Basic conversion with @code{unprotoize} consists of rewriting most
15432 function declarations to remove any argument types, and rewriting
15433 function definitions to the old-style pre-ISO form.
15434
15435 Both conversion programs print a warning for any function declaration or
15436 definition that they can't convert.  You can suppress these warnings
15437 with @option{-q}.
15438
15439 The output from @code{protoize} or @code{unprotoize} replaces the
15440 original source file.  The original file is renamed to a name ending
15441 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15442 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15443 for DOS) file already exists, then the source file is simply discarded.
15444
15445 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15446 scan the program and collect information about the functions it uses.
15447 So neither of these programs will work until GCC is installed.
15448
15449 Here is a table of the options you can use with @code{protoize} and
15450 @code{unprotoize}.  Each option works with both programs unless
15451 otherwise stated.
15452
15453 @table @code
15454 @item -B @var{directory}
15455 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15456 usual directory (normally @file{/usr/local/lib}).  This file contains
15457 prototype information about standard system functions.  This option
15458 applies only to @code{protoize}.
15459
15460 @item -c @var{compilation-options}
15461 Use @var{compilation-options} as the options when running @command{gcc} to
15462 produce the @samp{.X} files.  The special option @option{-aux-info} is
15463 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15464
15465 Note that the compilation options must be given as a single argument to
15466 @code{protoize} or @code{unprotoize}.  If you want to specify several
15467 @command{gcc} options, you must quote the entire set of compilation options
15468 to make them a single word in the shell.
15469
15470 There are certain @command{gcc} arguments that you cannot use, because they
15471 would produce the wrong kind of output.  These include @option{-g},
15472 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15473 the @var{compilation-options}, they are ignored.
15474
15475 @item -C
15476 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15477 systems) instead of @samp{.c}.  This is convenient if you are converting
15478 a C program to C++.  This option applies only to @code{protoize}.
15479
15480 @item -g
15481 Add explicit global declarations.  This means inserting explicit
15482 declarations at the beginning of each source file for each function
15483 that is called in the file and was not declared.  These declarations
15484 precede the first function definition that contains a call to an
15485 undeclared function.  This option applies only to @code{protoize}.
15486
15487 @item -i @var{string}
15488 Indent old-style parameter declarations with the string @var{string}.
15489 This option applies only to @code{protoize}.
15490
15491 @code{unprotoize} converts prototyped function definitions to old-style
15492 function definitions, where the arguments are declared between the
15493 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15494 uses five spaces as the indentation.  If you want to indent with just
15495 one space instead, use @option{-i " "}.
15496
15497 @item -k
15498 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15499 is finished.
15500
15501 @item -l
15502 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15503 a prototype declaration for each function in each block which calls the
15504 function without any declaration.  This option applies only to
15505 @code{protoize}.
15506
15507 @item -n
15508 Make no real changes.  This mode just prints information about the conversions
15509 that would have been done without @option{-n}.
15510
15511 @item -N
15512 Make no @samp{.save} files.  The original files are simply deleted.
15513 Use this option with caution.
15514
15515 @item -p @var{program}
15516 Use the program @var{program} as the compiler.  Normally, the name
15517 @file{gcc} is used.
15518
15519 @item -q
15520 Work quietly.  Most warnings are suppressed.
15521
15522 @item -v
15523 Print the version number, just like @option{-v} for @command{gcc}.
15524 @end table
15525
15526 If you need special compiler options to compile one of your program's
15527 source files, then you should generate that file's @samp{.X} file
15528 specially, by running @command{gcc} on that source file with the
15529 appropriate options and the option @option{-aux-info}.  Then run
15530 @code{protoize} on the entire set of files.  @code{protoize} will use
15531 the existing @samp{.X} file because it is newer than the source file.
15532 For example:
15533
15534 @smallexample
15535 gcc -Dfoo=bar file1.c -aux-info file1.X
15536 protoize *.c
15537 @end smallexample
15538
15539 @noindent
15540 You need to include the special files along with the rest in the
15541 @code{protoize} command, even though their @samp{.X} files already
15542 exist, because otherwise they won't get converted.
15543
15544 @xref{Protoize Caveats}, for more information on how to use
15545 @code{protoize} successfully.